diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b77c2418..c3a8556f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "LLVM Manylinux", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12" + "image": "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm14" // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index f4efaecd..6c9aa8a1 100644 --- a/.github/workflows/upload-pypi.yml +++ b/.github/workflows/upload-pypi.yml @@ -22,7 +22,7 @@ jobs: build_sdist: runs-on: ubuntu-latest - container: ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12 + container: ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm14 steps: - uses: actions/checkout@v3 diff --git a/Manylinux2014_Compliant_Source/pkg/IR2Vec/core.cpp b/Manylinux2014_Compliant_Source/pkg/IR2Vec/core.cpp index 1f63651c..66df023a 100644 --- a/Manylinux2014_Compliant_Source/pkg/IR2Vec/core.cpp +++ b/Manylinux2014_Compliant_Source/pkg/IR2Vec/core.cpp @@ -101,9 +101,9 @@ PyObject *IR2Vec_generateEmbeddings(PyObject *self, PyObject *args) { // Thus , need to add one more .cpp in .so const char *mode = "\0"; - string vocab_path = seed_emb_path + "/seedEmbeddingVocab-300-llvm12.txt"; + string vocab_path = seed_emb_path + "/seedEmbeddingVocab-llvm14.txt"; // const char* - // vocab_path=(seed_emb_path+"/seedEmbeddingVocab-300-llvm12.txt").c_str(); // + // vocab_path=(seed_emb_path+"/seedEmbeddingVocab-300-llvm14.txt").c_str(); // // this should be exact path till .txt . *** NOT TAKING THIS AS USER // DEFINED/PROVIDED ARGS *** const char *level = "\0"; // remember that ir2vec accepts a char type for this diff --git a/Manylinux2014_Compliant_Source/pkg/Manifest.in b/Manylinux2014_Compliant_Source/pkg/Manifest.in index ec391c9d..d25b510d 100755 --- a/Manylinux2014_Compliant_Source/pkg/Manifest.in +++ b/Manylinux2014_Compliant_Source/pkg/Manifest.in @@ -1 +1 @@ -include ./seedEmbeddingVocab-300-llvm12.txt +include ./seedEmbeddingVocab-llvm14.txt diff --git a/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh b/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh index 17ba69e1..88143036 100644 --- a/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh +++ b/Manylinux2014_Compliant_Source/pkg/regen-oracle.sh @@ -6,19 +6,19 @@ cd src/test-suite rm -rf oracle -SEED_VERSION="llvm12" +SEED_VERSION="llvm14" SRC_WD="PE-benchmarks" DEST_FOLDER_LL="PE-benchmarks-llfiles-${SEED_VERSION}" DEST_FOLDER_SYM="oracle/SYM_${SEED_VERSION}_f" DEST_FOLDER_FA="oracle/FA_${SEED_VERSION}_f" -DEST_FOLDER_SYM_P="oracle/SYM_${SEED_VERSION}" -DEST_FOLDER_FA_P="oracle/FA_${SEED_VERSION}" +DEST_FOLDER_SYM_P="oracle/SYM_${SEED_VERSION}_p" +DEST_FOLDER_FA_P="oracle/FA_${SEED_VERSION}_p" mkdir -p ${DEST_FOLDER_LL} for d in ${SRC_WD}/*.c ${SRC_WD}/*.cpp ${SRC_WD}/*.cc; do echo "Compiling ${d} to IR" - name=$(basename ${d}) && oname=${name%.*} && clang -S -emit-llvm -Xclang -disable-O0-optnone ${d} -o ${DEST_FOLDER_LL}/${oname}.ll & + name=$(basename ${d}) && oname=${name%.*} && clang-14 -S -emit-llvm -Xclang -disable-O0-optnone ${d} -o ${DEST_FOLDER_LL}/${oname}.ll & done wait @@ -28,8 +28,7 @@ mkdir -p ${DEST_FOLDER_SYM_P} mkdir -p ${DEST_FOLDER_FA_P} IR2VEC_PATH=../../build/bin/ir2vec - -VOCAB_PATH="../../vocabulary/seedEmbeddingVocab-300-${SEED_VERSION}.txt" +VOCAB_PATH="../../vocabulary/seedEmbeddingVocab-${SEED_VERSION}.txt" while IFS= read -r d; do echo "Generating embeddings for ${d}" diff --git a/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py b/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py index 33ec77e3..51265052 100644 --- a/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py +++ b/Manylinux2014_Compliant_Source/pkg/tests/test_ir2vec.py @@ -56,8 +56,10 @@ def test_fa_p(): full_path = str((TEST_SUITE_DIR / file).resolve()).strip() output = IR2Vec.generateEmbeddings(full_path, "fa", "p") p_vectors.append(output["Program_List"]) + + print(TEST_SUITE_DIR) p_vectors_oracle = read_p_file( - TEST_SUITE_DIR / "oracle" / f"FA_{SEED_VERSION}" / "ir2vec.txt" + TEST_SUITE_DIR / "oracle" / f"FA_{SEED_VERSION}_p" / "ir2vec.txt" ) for idx, v in enumerate(p_vectors): assert v == pytest.approx(p_vectors_oracle[idx], abs=ABS_ACCURACY) @@ -69,8 +71,10 @@ def test_sym_p(): full_path = str((TEST_SUITE_DIR / file).resolve()).strip() output = IR2Vec.generateEmbeddings(full_path, "sym", "p") p_vectors.append(output["Program_List"]) + + print(TEST_SUITE_DIR) p_vectors_oracle = read_p_file( - TEST_SUITE_DIR / "oracle" / f"SYM_{SEED_VERSION}" / "ir2vec.txt" + TEST_SUITE_DIR / "oracle" / f"SYM_{SEED_VERSION}_p" / "ir2vec.txt" ) for idx, v in enumerate(p_vectors): assert v == pytest.approx(p_vectors_oracle[idx], abs=ABS_ACCURACY) @@ -83,6 +87,8 @@ def test_fa_f(): output = IR2Vec.generateEmbeddings(str(full_path).strip(), "fa", "f") for fun, vec in output["Function_Dict"].items(): f_vecs[full_path.name.strip()][fun.strip()] = vec + + print(TEST_SUITE_DIR) f_vecs_oracle = read_f_file( TEST_SUITE_DIR / "oracle" / f"FA_{SEED_VERSION}_f" / "ir2vec.txt" ) @@ -100,6 +106,8 @@ def test_sym_f(): output = IR2Vec.generateEmbeddings(str(full_path).strip(), "sym", "f") for fun, vec in output["Function_Dict"].items(): f_vecs[full_path.name.strip()][fun.strip()] = vec + + print(TEST_SUITE_DIR) f_vecs_oracle = read_f_file( TEST_SUITE_DIR / "oracle" / f"SYM_{SEED_VERSION}_f" / "ir2vec.txt" ) diff --git a/Manylinux2014_Compliant_Source/readme.md b/Manylinux2014_Compliant_Source/readme.md index 0b9c3ad0..276543c2 100755 --- a/Manylinux2014_Compliant_Source/readme.md +++ b/Manylinux2014_Compliant_Source/readme.md @@ -6,7 +6,7 @@ AUTHORS : SHIKHAR JAIN (IITH COMPILERS) & ANILAVA KUNDU (IITH COMPILERS) - In order to build from source you need to initiate a manylinux 2014 docker image and then use this source dir accordingly. - While building source it is necessary to have a static library of LLVM that has all other static libs within it. - These wheel files generated are specific for python abi versions as reflected by their names . But they will work on old/new *nix OSs. -- The package is specific for LLVM-12.0 and current IR2Vec main branch (1.1.0 verion) +- The package is specific for LLVM-14.0 and current IR2Vec main branch (1.1.0 verion) - Inorder to use source on a MANYLINUX2014 Docker image and build it , there are several dependencies w.r.t static libs and header files . - A static lib containing all the static libs of LLVM which can be found in llvm/buid_dir/lib. @@ -29,7 +29,7 @@ AUTHORS : SHIKHAR JAIN (IITH COMPILERS) & ANILAVA KUNDU (IITH COMPILERS) ``` - Dir "llvm" : You can get this from llvm-project/llvm/include. - Dir "llvm-c" : You can get this from llvm-project/llvm/include. - - "seedEmbeddingVocab-300-llvm12.txt" . You can get this from IR2Vec Source. + - "seedEmbeddingVocab-llvm14.txt" . You can get this from IR2Vec Source. ### In future we plan to automate wheel generation by integrating needed workflows in CI/CD pipeline. These wheels then will reflect changes in either IR2Vec or in LLVM project. diff --git a/README.md b/README.md index c6b1ed6a..6f50494c 100644 --- a/README.md +++ b/README.md @@ -25,21 +25,26 @@ Please see [here](https://compilers.cse.iith.ac.in/projects/ir2vec/) for more de ## Table Of Contents - [IR2Vec](#ir2vec) - - [LLVM Version Archive](#llvm-version-archive) - - [Table Of Contents](#table-of-contents) - - [Installation](#installation) + - [LLVM Version Archive](#llvm-version-archive) + - [Table Of Contents](#table-of-contents) + - [Installation](#installation) - [Python](#python) - - [C++](#cpp) - - [Requirements](#requirements) - - [Building from Source](#building-from-source) - - [Generating program representations](#generating-program-representations) - - [Using Binary](#using-binary) + - [Cpp](#cpp) + - [Requirements](#requirements) + - [Building from source](#building-from-source) + - [Generating program representations](#generating-program-representations) + - [Using Binary](#using-binary) + - [Command-Line options](#command-line-options) + - [Flow-Aware Embeddings](#flow-aware-embeddings) + - [Symbolic Embeddings](#symbolic-embeddings) - [Using Libraries](#using-libraries) - [Using Python package (IR2Vec-Wheels)](#using-python-package-ir2vec-wheels) - - [Experiments](#experiments) - - [Citation](#citation) - - [Contributions](#contributions) - - [License](#license) + - [Binaries, Libraries and Wheels - Artifacts](#binaries-libraries-and-wheels---artifacts) + - [Experiments](#experiments) + - [Note](#note) + - [Citation](#citation) + - [Contributions](#contributions) + - [License](#license) ## Installation @@ -127,16 +132,16 @@ Please use `--help` for further details. #### Flow-Aware Embeddings For all functions -* `` ir2vec -fa -vocab vocabulary/seedEmbeddingVocab-300-llvm12.txt -o -level -class `` +* `` ir2vec -fa -vocab vocabulary/seedEmbeddingVocab-llvm14.txt -o -level -class `` For a specific function -* `` ir2vec -fa -vocab vocabulary/seedEmbeddingVocab-300-llvm12.txt -o -level f -class -funcName=\`` +* `` ir2vec -fa -vocab vocabulary/seedEmbeddingVocab-llvm14.txt -o -level f -class -funcName=\`` #### Symbolic Embeddings For all functions - * `` ir2vec -sym -vocab vocabulary/seedEmbeddingVocab-300-llvm12.txt -o -level -class `` + * `` ir2vec -sym -vocab vocabulary/seedEmbeddingVocab-llvm14.txt -o -level -class `` For a specific function - * `` ir2vec -sym -vocab vocabulary/seedEmbeddingVocab-300-llvm12.txt -o -level f -class -funcName=\ `` + * `` ir2vec -sym -vocab vocabulary/seedEmbeddingVocab-llvm14.txt -o -level f -class -funcName=\ `` ## Using Libraries The libraries can be installed by passing the installation location to the `CMAKE_INSTALL_PREFIX` flag during `cmake` followed by `make install`. @@ -165,7 +170,7 @@ The following example snippet shows how to query the exposed vector representati // Creating object to generate FlowAware representation auto ir2vec = IR2Vec::Embeddings(, IR2Vec::IR2VecMode::FlowAware, - "./vocabulary/seedEmbeddingVocab-300-llvm12.txt"); + "./vocabulary/seedEmbeddingVocab-llvm14.txt"); // Getting Instruction vectors corresponding to the instructions in auto instVecMap = ir2vec.getInstVecMap(); diff --git a/experiments/Device_Mapping/DevMap.ipynb b/experiments/Device_Mapping/DevMap.ipynb index 6c789f82..a943cb90 100644 --- a/experiments/Device_Mapping/DevMap.ipynb +++ b/experiments/Device_Mapping/DevMap.ipynb @@ -285,22 +285,22 @@ "Accuracy Matrix: IR2Vec Vs. others\n", "\n", " Static Mapping Grewe et al. DeepTune NCC IR2Vec\n", - "AMD Tahiti 7970 58.823529 73.382353 83.676471 82.790 90.284006\n", - "NVIDIA GTX 970 56.911765 72.941176 80.294118 81.760 87.144993\n", - "Average 57.867647 73.161765 81.985294 82.275 88.714499\n", + "AMD Tahiti 7970 58.823529 73.382353 83.676471 82.790 91.766467\n", + "NVIDIA GTX 970 56.911765 72.941176 80.294118 81.760 86.976048\n", + "Average 57.867647 73.161765 81.985294 82.275 89.371257\n", "\n", "Speedup Matrix: IR2Vec Vs. others\n", "\n", " Static Mapping Grewe et al. DeepTune NCC IR2Vec\n", - "AMD Tahiti 7970 1.0 2.905822 3.335612 3.420 3.471963\n", - "NVIDIA GTX 970 1.0 1.264801 1.412222 1.390 1.433372\n", - "Average 1.0 2.085312 2.373917 2.405 2.452667\n" + "AMD Tahiti 7970 1.0 2.905822 3.335612 3.420 3.477054\n", + "NVIDIA GTX 970 1.0 1.264801 1.412222 1.390 1.453360\n", + "Average 1.0 2.085312 2.373917 2.405 2.465207\n" ] } ], "source": [ "raw_embeddings, fileIndexNum = readEmd_program(\n", - " \"./output/embeddings/Device_Mapping_Symbolic_llvm12.txt\"\n", + " \"./output/embeddings/Device_Mapping_Symbolic_llvm14.txt\"\n", ")\n", "ir2vec_sym = evaluate(max_depth=10, learning_rate=0.5, n_estimators=70, seed=104)" ] @@ -344,22 +344,22 @@ "Accuracy Matrix: IR2Vec Vs. others\n", "\n", " Static Mapping Grewe et al. DeepTune NCC IR2Vec\n", - "AMD Tahiti 7970 58.823529 73.382353 83.676471 82.790 92.825112\n", - "NVIDIA GTX 970 56.911765 72.941176 80.294118 81.760 89.686099\n", - "Average 57.867647 73.161765 81.985294 82.275 91.255605\n", + "AMD Tahiti 7970 58.823529 73.382353 83.676471 82.790 91.167665\n", + "NVIDIA GTX 970 56.911765 72.941176 80.294118 81.760 88.323353\n", + "Average 57.867647 73.161765 81.985294 82.275 89.745509\n", "\n", "Speedup Matrix: IR2Vec Vs. others\n", "\n", " Static Mapping Grewe et al. DeepTune NCC IR2Vec\n", - "AMD Tahiti 7970 1.0 2.905822 3.335612 3.420 3.510104\n", - "NVIDIA GTX 970 1.0 1.264801 1.412222 1.390 1.467221\n", - "Average 1.0 2.085312 2.373917 2.405 2.488663\n" + "AMD Tahiti 7970 1.0 2.905822 3.335612 3.420 3.450715\n", + "NVIDIA GTX 970 1.0 1.264801 1.412222 1.390 1.445097\n", + "Average 1.0 2.085312 2.373917 2.405 2.447906\n" ] } ], "source": [ "raw_embeddings, fileIndexNum = readEmd_program(\n", - " \"./output/embeddings/Device_Mapping_FlowAware_llvm12.txt\"\n", + " \"./output/embeddings/Device_Mapping_FlowAware_llvm14.txt\"\n", ")\n", "ir2vec_fa = evaluate(max_depth=10, learning_rate=0.5, n_estimators=70, seed=104)" ] @@ -468,8 +468,8 @@ "Geometric mean of Grewe et al. 1.22x\n", "Geometric mean of DeepTune 1.46x\n", "Geometric mean of Inst2Vec 1.40x\n", - "Geometric mean of IR2Vec Symbolic 1.559x\n", - "Geometric mean of IR2Vec Flow-Aware 1.581x\n" + "Geometric mean of IR2Vec Symbolic 1.566x\n", + "Geometric mean of IR2Vec Flow-Aware 1.552x\n" ] } ], @@ -498,8 +498,8 @@ "Geometric mean of Grewe et al. 1.11x\n", "Geometric mean of DeepTune 1.21x\n", "Geometric mean of Inst2Vec 1.21x\n", - "Geometric mean of IR2Vec Symbolic 1.237x\n", - "Geometric mean of IR2Vec Flow-Aware 1.261x\n" + "Geometric mean of IR2Vec Symbolic 1.248x\n", + "Geometric mean of IR2Vec Flow-Aware 1.258x\n" ] } ], @@ -528,8 +528,8 @@ "Geometric mean of Grewe et al. - 1.16x\n", "Geometric mean of DeepTune - 1.33x\n", "Geometric mean of Inst2Vec - 1.30x\n", - "Geometric mean of IR2Vec Symbolic 1.39x\n", - "Geometric mean of IR2Vec Flow-Aware 1.41x\n" + "Geometric mean of IR2Vec Symbolic 1.40x\n", + "Geometric mean of IR2Vec Flow-Aware 1.40x\n" ] } ], @@ -575,16 +575,16 @@ "text": [ "\n", "AMD Tahiti 7970\n", - " % Increase in SpeedUp over Grewe et al - 29.65\n", - " % Increase in SpeedUp over DeepTune - 7.96\n", - " % Increase in SpeedUp over Inst2Vec - 12.95\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 1.43\n", + " % Increase in SpeedUp over Grewe et al - 27.27\n", + " % Increase in SpeedUp over DeepTune - 5.98\n", + " % Increase in SpeedUp over Inst2Vec - 10.88\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.86\n", "\n", "NVIDIA GTX 970\n", - " % Increase in SpeedUp over Grewe et al - 13.77\n", - " % Increase in SpeedUp over DeepTune - 4.31\n", - " % Increase in SpeedUp over Inst2Vec - 3.93\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 1.92\n" + " % Increase in SpeedUp over Grewe et al - 13.51\n", + " % Increase in SpeedUp over DeepTune - 4.07\n", + " % Increase in SpeedUp over Inst2Vec - 3.7\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.8\n" ] } ], @@ -693,8 +693,8 @@ "Accuracy of Grewe et al. 70.29%\n", "Accuracy of DeepTune 83.24%\n", "Accuracy of Inst2Vec 82.35%\n", - "Accuracy of IR2Vec Symbolic 90.284%\n", - "Accuracy of IR2Vec Flow-Aware 92.825%\n" + "Accuracy of IR2Vec Symbolic 91.766%\n", + "Accuracy of IR2Vec Flow-Aware 91.168%\n" ] } ], @@ -721,8 +721,8 @@ "Accuracy of Grewe et al. 74.56%\n", "Accuracy of DeepTune 80.88%\n", "Accuracy of Inst2Vec 82.65%\n", - "Accuracy of IR2Vec Symbolic 87.145%\n", - "Accuracy of IR2Vec Flow-Aware 89.686%\n" + "Accuracy of IR2Vec Symbolic 86.976%\n", + "Accuracy of IR2Vec Flow-Aware 88.323%\n" ] } ], @@ -757,11 +757,11 @@ "text": [ "\n", "AMD Tahiti 7970\n", - " % Increase in SpeedUp over Grewe et al - 26.5\n", - " % Increase in SpeedUp over DeepTune - 10.93\n", - " % Increase in SpeedUp over Inst2Vec - 12.12\n", - " % Increase in SpeedUp over Inst2Vec-imm - 5.38\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 2.81\n" + " % Increase in SpeedUp over Grewe et al - 24.24\n", + " % Increase in SpeedUp over DeepTune - 8.95\n", + " % Increase in SpeedUp over Inst2Vec - 10.12\n", + " % Increase in SpeedUp over Inst2Vec-imm - 3.49\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.65\n" ] } ], @@ -801,11 +801,11 @@ "text": [ "\n", "NVIDIA GTX 970\n", - " % Increase in SpeedUp over Grewe et al - 22.96\n", - " % Increase in SpeedUp over DeepTune - 11.7\n", - " % Increase in SpeedUp over Inst2Vec - 9.69\n", - " % Increase in SpeedUp over Inst2Vec - 3.54\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 2.92\n" + " % Increase in SpeedUp over Grewe et al - 21.09\n", + " % Increase in SpeedUp over DeepTune - 10.0\n", + " % Increase in SpeedUp over Inst2Vec - 8.03\n", + " % Increase in SpeedUp over Inst2Vec - 1.97\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 1.55\n" ] } ], @@ -845,10 +845,10 @@ "name": "stdout", "output_type": "stream", "text": [ - " % Increase in SpeedUp over DeepTune - 11.3\n", - " % Increase in SpeedUp over Inst2Vec - 10.92\n", - " % Increase in SpeedUp over Inst2Vec - 4.47\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 2.86\n" + " % Increase in SpeedUp over DeepTune - 9.46\n", + " % Increase in SpeedUp over Inst2Vec - 9.08\n", + " % Increase in SpeedUp over Inst2Vec - 2.74\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.42\n" ] } ], @@ -871,7 +871,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, diff --git a/experiments/README.md b/experiments/README.md index 3e914794..c28a803d 100644 --- a/experiments/README.md +++ b/experiments/README.md @@ -32,8 +32,8 @@ Device_Mapping | |-- cgo17-nvidia.csv |-- output | |-- embeddings -| | |-- Device_Mapping_Symbolic_llvm12.txt -| | |-- Device_Mapping_FlowAware_llvm12.txt +| | |-- Device_Mapping_Symbolic_llvm14.txt +| | |-- Device_Mapping_FlowAware_llvm14.txt |-- DevMap.ipynb ``` ## Thread Coarsening @@ -60,8 +60,8 @@ Thread_Coarsening | |-- pact-2014-runtimes.csv |-- output | |-- embeddings -| | |-- Thread_Coarsening_Symbolic_llvm12.txt -| | |-- Thread_Coarsening_FlowAware_llvm12.txt +| | |-- Thread_Coarsening_Symbolic_llvm14.txt +| | |-- Thread_Coarsening_FlowAware_llvm14.txt |-- ThreadCoarsening.ipynb ``` ## Out_Of_Vocabulary diff --git a/experiments/Thread_Coarsening/ThreadCoarsening.ipynb b/experiments/Thread_Coarsening/ThreadCoarsening.ipynb index 29076e0d..bd227854 100644 --- a/experiments/Thread_Coarsening/ThreadCoarsening.ipynb +++ b/experiments/Thread_Coarsening/ThreadCoarsening.ipynb @@ -314,17 +314,17 @@ "Speedup Matrix: IR2Vec Vs. others\n", "\n", " Magni et al. DeepTune DeepTune-TL NCC IR2Vec\n", - "AMD Radeon HD 5900 1.210 1.10 1.1700 1.290 1.240354\n", - "AMD Tahiti 7970 1.010 1.05 1.2300 1.070 1.280314\n", - "NVIDIA GTX 480 0.860 1.10 1.1400 0.970 1.229201\n", - "NVIDIA Tesla K20c 0.940 0.99 0.9300 1.010 1.153582\n", - "Average 1.005 1.06 1.1175 1.086 1.225863\n" + "AMD Radeon HD 5900 1.210 1.10 1.1700 1.290 1.264561\n", + "AMD Tahiti 7970 1.010 1.05 1.2300 1.070 1.280941\n", + "NVIDIA GTX 480 0.860 1.10 1.1400 0.970 1.256149\n", + "NVIDIA Tesla K20c 0.940 0.99 0.9300 1.010 1.153211\n", + "Average 1.005 1.06 1.1175 1.086 1.238715\n" ] } ], "source": [ "raw_embeddings, fileIndex = readEmd_program(\n", - " \"./output/embeddings/Thread_Coarsening_Symbolic_llvm12.txt\"\n", + " \"./output/embeddings/Thread_Coarsening_Symbolic_llvm14.txt\"\n", ")\n", "ir2vec_sym = evaluate(max_depth=1, learning_rate=0.05, n_estimators=140)" ] @@ -364,17 +364,17 @@ "Speedup Matrix: IR2Vec Vs. others\n", "\n", " Magni et al. DeepTune DeepTune-TL NCC IR2Vec\n", - "AMD Radeon HD 5900 1.210 1.10 1.1700 1.290 1.240354\n", - "AMD Tahiti 7970 1.010 1.05 1.2300 1.070 1.301152\n", - "NVIDIA GTX 480 0.860 1.10 1.1400 0.970 1.256957\n", - "NVIDIA Tesla K20c 0.940 0.99 0.9300 1.010 1.155468\n", - "Average 1.005 1.06 1.1175 1.086 1.238483\n" + "AMD Radeon HD 5900 1.210 1.10 1.1700 1.290 1.263738\n", + "AMD Tahiti 7970 1.010 1.05 1.2300 1.070 1.294627\n", + "NVIDIA GTX 480 0.860 1.10 1.1400 0.970 1.256149\n", + "NVIDIA Tesla K20c 0.940 0.99 0.9300 1.010 1.147827\n", + "Average 1.005 1.06 1.1175 1.086 1.240585\n" ] } ], "source": [ "raw_embeddings, fileIndex = readEmd_program(\n", - " \"./output/embeddings/Thread_Coarsening_FlowAware_llvm12.txt\"\n", + " \"./output/embeddings/Thread_Coarsening_FlowAware_llvm14.txt\"\n", ")\n", "ir2vec_fa = evaluate(max_depth=1, learning_rate=0.05, n_estimators=140)" ] @@ -446,8 +446,8 @@ "Geometric mean of Magni et al. 0.86x\n", "Geometric mean of DeepTune 1.00x\n", "Geometric mean of Inst2Vec 1.04x\n", - "Geometric mean of IR2Vec Symbolic 1.17x\n", - "Geometric mean of IR2Vec Flow-Aware 1.18x\n" + "Geometric mean of IR2Vec Symbolic 1.18x\n", + "Geometric mean of IR2Vec Flow-Aware 1.19x\n" ] } ], @@ -523,8 +523,8 @@ "Geometric mean of DeepTune 1.14x\n", "Geometric mean of DeepTune-TL 1.14x\n", "Geometric mean of Inst2Vec 1.15x\n", - "Geometric mean of IR2Vec Symbolic 1.200x\n", - "Geometric mean of IR2Vec Flow-Aware 1.200x\n" + "Geometric mean of IR2Vec Symbolic 1.225x\n", + "Geometric mean of IR2Vec Flow-Aware 1.224x\n" ] } ], @@ -549,8 +549,8 @@ "Geometric mean of DeepTune 0.95x\n", "Geometric mean of DeepTune-TL 0.90x\n", "Geometric mean of Inst2Vec 1.04x\n", - "Geometric mean of IR2Vec Symbolic 1.204x\n", - "Geometric mean of IR2Vec Flow-Aware 1.229x\n" + "Geometric mean of IR2Vec Symbolic 1.205x\n", + "Geometric mean of IR2Vec Flow-Aware 1.220x\n" ] } ], @@ -573,8 +573,8 @@ "Geometric mean of DeepTune 0.94x\n", "Geometric mean of DeepTune-TL 0.99x\n", "Geometric mean of Inst2Vec 0.95x\n", - "Geometric mean of IR2Vec Symbolic 1.132x\n", - "Geometric mean of IR2Vec Flow-Aware 1.177x\n" + "Geometric mean of IR2Vec Symbolic 1.176x\n", + "Geometric mean of IR2Vec Flow-Aware 1.176x\n" ] } ], @@ -598,7 +598,7 @@ "Geometric mean of DeepTune-TL 1.01x\n", "Geometric mean of Inst2Vec 1.01x\n", "Geometric mean of IR2Vec Symbolic 1.129x\n", - "Geometric mean of IR2Vec Flow-Aware 1.131x\n" + "Geometric mean of IR2Vec Flow-Aware 1.123x\n" ] } ], @@ -625,32 +625,32 @@ "output_type": "stream", "text": [ "AMD Radeon HD 5900\n", - " % Increase in SpeedUp over Magni et al - 27.66\n", - " % Increase in SpeedUp over DeepTune - 5.26\n", - " % Increase in SpeedUp over DeepTune_TL - 5.26\n", - " % Increase in SpeedUp over Inst2Vec - 4.35\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 0.0\n", + " % Increase in SpeedUp over Magni et al - 30.21\n", + " % Increase in SpeedUp over DeepTune - 7.37\n", + " % Increase in SpeedUp over DeepTune_TL - 7.37\n", + " % Increase in SpeedUp over Inst2Vec - 6.43\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.08\n", "\n", "AMD Tahiti 7970\n", - " % Increase in SpeedUp over Magni et al - 25.41\n", - " % Increase in SpeedUp over DeepTune - 29.37\n", - " % Increase in SpeedUp over DeepTune_TL - 36.56\n", - " % Increase in SpeedUp over Inst2Vec - 18.17\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 2.08\n", + " % Increase in SpeedUp over Magni et al - 24.49\n", + " % Increase in SpeedUp over DeepTune - 28.42\n", + " % Increase in SpeedUp over DeepTune_TL - 35.56\n", + " % Increase in SpeedUp over Inst2Vec - 17.31\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 1.24\n", "\n", "NVIDIA GTX 480\n", - " % Increase in SpeedUp over Magni et al - 45.31\n", - " % Increase in SpeedUp over DeepTune - 25.21\n", - " % Increase in SpeedUp over DeepTune_TL - 18.89\n", - " % Increase in SpeedUp over Inst2Vec - 23.89\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 3.98\n", + " % Increase in SpeedUp over Magni et al - 45.19\n", + " % Increase in SpeedUp over DeepTune - 25.11\n", + " % Increase in SpeedUp over DeepTune_TL - 18.79\n", + " % Increase in SpeedUp over Inst2Vec - 23.79\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.0\n", "\n", "NVIDIA Tesla K20c\n", - " % Increase in SpeedUp over Magni et al - 52.84\n", - " % Increase in SpeedUp over DeepTune - 15.41\n", - " % Increase in SpeedUp over DeepTune_TL - 11.98\n", - " % Increase in SpeedUp over Inst2Vec - 11.98\n", - " % Increase in SpeedUp over IR2Vec Symbolic - 0.18\n" + " % Increase in SpeedUp over Magni et al - 51.76\n", + " % Increase in SpeedUp over DeepTune - 14.59\n", + " % Increase in SpeedUp over DeepTune_TL - 11.19\n", + " % Increase in SpeedUp over Inst2Vec - 11.19\n", + " % Increase in SpeedUp over IR2Vec Symbolic - 0.53\n" ] } ], @@ -704,7 +704,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, diff --git a/experiments/generate_IR2Vec_embeddings.sh b/experiments/generate_IR2Vec_embeddings.sh index fc0fa1e5..793e34c9 100644 --- a/experiments/generate_IR2Vec_embeddings.sh +++ b/experiments/generate_IR2Vec_embeddings.sh @@ -19,7 +19,7 @@ fi BUILD=$(realpath ${BUILD}) -Absolute_path_of_RepresentationFile=$(realpath ../vocabulary/seedEmbeddingVocab-300-llvm12.txt) +Absolute_path_of_RepresentationFile=$(realpath ../vocabulary/seedEmbeddingVocab-llvm14.txt) TASK_DIR=$1 if [ -z "${TASK_DIR}" ]; then @@ -45,10 +45,10 @@ fi if [ $EncodingType = "SYM" ]; then PASS="sym" - Trans_type="${TASK_DIR}_Symbolic_llvm12" + Trans_type="${TASK_DIR}_Symbolic_llvm14" elif [ $EncodingType = "FA" ]; then PASS="fa" - Trans_type="${TASK_DIR}_FlowAware_llvm12" + Trans_type="${TASK_DIR}_FlowAware_llvm14" else echo "Please enter SYM or FA for EncodingType" exit diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/Find_the_closest_pair_from_two_sorted_arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/Find_the_closest_pair_from_two_sorted_arrays.ll deleted file mode 100644 index f17e2be1..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/Find_the_closest_pair_from_two_sorted_arrays.ll +++ /dev/null @@ -1,235 +0,0 @@ -; ModuleID = 'PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp' -source_filename = "PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [22 x i8] c"The closest pair is [\00", align 1 -@.str.1 = private unnamed_addr constant [3 x i8] c", \00", align 1 -@.str.2 = private unnamed_addr constant [4 x i8] c"] \0A\00", align 1 -@__const.main.ar1 = private unnamed_addr constant [4 x i32] [i32 1, i32 4, i32 5, i32 7], align 16 -@__const.main.ar2 = private unnamed_addr constant [4 x i32] [i32 10, i32 20, i32 30, i32 40], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z12printClosestPiS_iii(i32* %0, i32* %1, i32 %2, i32 %3, i32 %4) #4 { - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - store i32 %4, i32* %10, align 4 - store i32 2147483647, i32* %11, align 4 - store i32 0, i32* %14, align 4 - %16 = load i32, i32* %9, align 4 - %17 = sub nsw i32 %16, 1 - store i32 %17, i32* %15, align 4 - br label %18 - -18: ; preds = %81, %5 - %19 = load i32, i32* %14, align 4 - %20 = load i32, i32* %8, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %25 - -22: ; preds = %18 - %23 = load i32, i32* %15, align 4 - %24 = icmp sge i32 %23, 0 - br label %25 - -25: ; preds = %22, %18 - %26 = phi i1 [ false, %18 ], [ %24, %22 ] - br i1 %26, label %27, label %82 - -27: ; preds = %25 - %28 = load i32*, i32** %6, align 8 - %29 = load i32, i32* %14, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - %32 = load i32, i32* %31, align 4 - %33 = load i32*, i32** %7, align 8 - %34 = load i32, i32* %15, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = add nsw i32 %32, %37 - %39 = load i32, i32* %10, align 4 - %40 = sub nsw i32 %38, %39 - %41 = call i32 @abs(i32 %40) #8 - %42 = load i32, i32* %11, align 4 - %43 = icmp slt i32 %41, %42 - br i1 %43, label %44, label %61 - -44: ; preds = %27 - %45 = load i32, i32* %14, align 4 - store i32 %45, i32* %12, align 4 - %46 = load i32, i32* %15, align 4 - store i32 %46, i32* %13, align 4 - %47 = load i32*, i32** %6, align 8 - %48 = load i32, i32* %14, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32*, i32** %7, align 8 - %53 = load i32, i32* %15, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = add nsw i32 %51, %56 - %58 = load i32, i32* %10, align 4 - %59 = sub nsw i32 %57, %58 - %60 = call i32 @abs(i32 %59) #8 - store i32 %60, i32* %11, align 4 - br label %61 - -61: ; preds = %44, %27 - %62 = load i32*, i32** %6, align 8 - %63 = load i32, i32* %14, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %62, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = load i32*, i32** %7, align 8 - %68 = load i32, i32* %15, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i32, i32* %67, i64 %69 - %71 = load i32, i32* %70, align 4 - %72 = add nsw i32 %66, %71 - %73 = load i32, i32* %10, align 4 - %74 = icmp sgt i32 %72, %73 - br i1 %74, label %75, label %78 - -75: ; preds = %61 - %76 = load i32, i32* %15, align 4 - %77 = add nsw i32 %76, -1 - store i32 %77, i32* %15, align 4 - br label %81 - -78: ; preds = %61 - %79 = load i32, i32* %14, align 4 - %80 = add nsw i32 %79, 1 - store i32 %80, i32* %14, align 4 - br label %81 - -81: ; preds = %78, %75 - br label %18, !llvm.loop !2 - -82: ; preds = %25 - %83 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) - %84 = load i32*, i32** %6, align 8 - %85 = load i32, i32* %12, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %84, i64 %86 - %88 = load i32, i32* %87, align 4 - %89 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %83, i32 %88) - %90 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %89, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.1, i64 0, i64 0)) - %91 = load i32*, i32** %7, align 8 - %92 = load i32, i32* %13, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %90, i32 %95) - %97 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %96, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.2, i64 0, i64 0)) - ret void -} - -; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca [4 x i32], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %7 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %7, i8* align 16 bitcast ([4 x i32]* @__const.main.ar1 to i8*), i64 16, i1 false) - %8 = bitcast [4 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %8, i8* align 16 bitcast ([4 x i32]* @__const.main.ar2 to i8*), i64 16, i1 false) - store i32 4, i32* %4, align 4 - store i32 4, i32* %5, align 4 - store i32 38, i32* %6, align 4 - %9 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %10 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 0 - %11 = load i32, i32* %4, align 4 - %12 = load i32, i32* %5, align 4 - %13 = load i32, i32* %6, align 4 - call void @_Z12printClosestPiS_iii(i32* %9, i32* %10, i32 %11, i32 %12, i32 %13) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readnone willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } -attributes #8 = { nounwind readnone willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll deleted file mode 100644 index 9c1f44e1..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll +++ /dev/null @@ -1,359 +0,0 @@ -; ModuleID = 'PE-benchmarks/Iterative_QuickSort.cpp' -source_filename = "PE-benchmarks/Iterative_QuickSort.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@__const.main.arr = private unnamed_addr constant [8 x i32] [i32 4, i32 3, i32 5, i32 2, i32 1, i32 3, i32 2, i32 3], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_Iterative_QuickSort.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %10 = load i32*, i32** %4, align 8 - %11 = load i32, i32* %6, align 4 - %12 = sext i32 %11 to i64 - %13 = getelementptr inbounds i32, i32* %10, i64 %12 - %14 = load i32, i32* %13, align 4 - store i32 %14, i32* %7, align 4 - %15 = load i32, i32* %5, align 4 - %16 = sub nsw i32 %15, 1 - store i32 %16, i32* %8, align 4 - %17 = load i32, i32* %5, align 4 - store i32 %17, i32* %9, align 4 - br label %18 - -18: ; preds = %43, %3 - %19 = load i32, i32* %9, align 4 - %20 = load i32, i32* %6, align 4 - %21 = sub nsw i32 %20, 1 - %22 = icmp sle i32 %19, %21 - br i1 %22, label %23, label %46 - -23: ; preds = %18 - %24 = load i32*, i32** %4, align 8 - %25 = load i32, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = load i32, i32* %7, align 4 - %30 = icmp sle i32 %28, %29 - br i1 %30, label %31, label %42 - -31: ; preds = %23 - %32 = load i32, i32* %8, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %8, align 4 - %34 = load i32*, i32** %4, align 8 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %34, i64 %36 - %38 = load i32*, i32** %4, align 8 - %39 = load i32, i32* %9, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - call void @_Z4swapPiS_(i32* %37, i32* %41) - br label %42 - -42: ; preds = %31, %23 - br label %43 - -43: ; preds = %42 - %44 = load i32, i32* %9, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %9, align 4 - br label %18, !llvm.loop !2 - -46: ; preds = %18 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %8, align 4 - %49 = add nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %47, i64 %50 - %52 = load i32*, i32** %4, align 8 - %53 = load i32, i32* %6, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - call void @_Z4swapPiS_(i32* %51, i32* %55) - %56 = load i32, i32* %8, align 4 - %57 = add nsw i32 %56, 1 - ret i32 %57 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z18quickSortIterativePiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %11 = load i32, i32* %6, align 4 - %12 = load i32, i32* %5, align 4 - %13 = sub nsw i32 %11, %12 - %14 = add nsw i32 %13, 1 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %7, align 8 - %17 = alloca i32, i64 %15, align 16 - store i64 %15, i64* %8, align 8 - store i32 -1, i32* %9, align 4 - %18 = load i32, i32* %5, align 4 - %19 = load i32, i32* %9, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %9, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %17, i64 %21 - store i32 %18, i32* %22, align 4 - %23 = load i32, i32* %6, align 4 - %24 = load i32, i32* %9, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %17, i64 %26 - store i32 %23, i32* %27, align 4 - br label %28 - -28: ; preds = %79, %3 - %29 = load i32, i32* %9, align 4 - %30 = icmp sge i32 %29, 0 - br i1 %30, label %31, label %80 - -31: ; preds = %28 - %32 = load i32, i32* %9, align 4 - %33 = add nsw i32 %32, -1 - store i32 %33, i32* %9, align 4 - %34 = sext i32 %32 to i64 - %35 = getelementptr inbounds i32, i32* %17, i64 %34 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %6, align 4 - %37 = load i32, i32* %9, align 4 - %38 = add nsw i32 %37, -1 - store i32 %38, i32* %9, align 4 - %39 = sext i32 %37 to i64 - %40 = getelementptr inbounds i32, i32* %17, i64 %39 - %41 = load i32, i32* %40, align 4 - store i32 %41, i32* %5, align 4 - %42 = load i32*, i32** %4, align 8 - %43 = load i32, i32* %5, align 4 - %44 = load i32, i32* %6, align 4 - %45 = call i32 @_Z9partitionPiii(i32* %42, i32 %43, i32 %44) - store i32 %45, i32* %10, align 4 - %46 = load i32, i32* %10, align 4 - %47 = sub nsw i32 %46, 1 - %48 = load i32, i32* %5, align 4 - %49 = icmp sgt i32 %47, %48 - br i1 %49, label %50, label %62 - -50: ; preds = %31 - %51 = load i32, i32* %5, align 4 - %52 = load i32, i32* %9, align 4 - %53 = add nsw i32 %52, 1 - store i32 %53, i32* %9, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %17, i64 %54 - store i32 %51, i32* %55, align 4 - %56 = load i32, i32* %10, align 4 - %57 = sub nsw i32 %56, 1 - %58 = load i32, i32* %9, align 4 - %59 = add nsw i32 %58, 1 - store i32 %59, i32* %9, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %17, i64 %60 - store i32 %57, i32* %61, align 4 - br label %62 - -62: ; preds = %50, %31 - %63 = load i32, i32* %10, align 4 - %64 = add nsw i32 %63, 1 - %65 = load i32, i32* %6, align 4 - %66 = icmp slt i32 %64, %65 - br i1 %66, label %67, label %79 - -67: ; preds = %62 - %68 = load i32, i32* %10, align 4 - %69 = add nsw i32 %68, 1 - %70 = load i32, i32* %9, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %9, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %17, i64 %72 - store i32 %69, i32* %73, align 4 - %74 = load i32, i32* %6, align 4 - %75 = load i32, i32* %9, align 4 - %76 = add nsw i32 %75, 1 - store i32 %76, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i32, i32* %17, i64 %77 - store i32 %74, i32* %78, align 4 - br label %79 - -79: ; preds = %67, %62 - br label %28, !llvm.loop !4 - -80: ; preds = %28 - %81 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %81) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #6 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %15) - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %16, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %18 - -18: ; preds = %10 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %6, !llvm.loop !5 - -21: ; preds = %6 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [8 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %5 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = sub nsw i32 %6, 1 - call void @_Z18quickSortIterativePiii(i32* %5, i32 0, i32 %7) - %8 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %9 = load i32, i32* %3, align 4 - call void @_Z8printArrPii(i32* %8, i32 %9) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_Iterative_QuickSort.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll deleted file mode 100644 index faf88051..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll +++ /dev/null @@ -1,3931 +0,0 @@ -; ModuleID = 'PE-benchmarks/Nearly_sorted_Algo.cpp' -source_filename = "PE-benchmarks/Nearly_sorted_Algo.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::priority_queue" = type <{ %"class.std::vector", %"struct.std::greater", [7 x i8] }> -%"class.std::vector" = type { %"struct.std::_Vector_base" } -%"struct.std::_Vector_base" = type { %"struct.std::_Vector_base>::_Vector_impl" } -%"struct.std::_Vector_base>::_Vector_impl" = type { %"struct.std::_Vector_base>::_Vector_impl_data" } -%"struct.std::_Vector_base>::_Vector_impl_data" = type { i32*, i32*, i32* } -%"struct.std::greater" = type { i8 } -%"class.__gnu_cxx::__normal_iterator.0" = type { i32* } -%"class.__gnu_cxx::__normal_iterator" = type { i32* } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__false_type" = type { i8 } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { %"struct.std::greater" } -%"struct.std::forward_iterator_tag" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } -%"class.std::move_iterator" = type { i32* } -%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { %"struct.std::greater" } -%"struct.std::integral_constant" = type { i8 } - -$_ZNSt6vectorIiSaIiEEC2Ev = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_ = comdat any - -$_ZNSt6vectorIiSaIiEED2Ev = comdat any - -$_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi = comdat any - -$_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv = comdat any - -$_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt8_DestroyIPiEvT_S1_ = comdat any - -$_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZSt4moveIRSt6vectorIiSaIiEEEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZNSt6vectorIiSaIiEEC2EOS1_ = comdat any - -$_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_ = comdat any - -$_ZNSt6vectorIiSaIiEE3endEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2IPiEERKNS0_IT_NS_11__enable_ifIXsr3std10__are_sameIS9_S8_EE7__valueES5_E6__typeEEE = comdat any - -$_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2EOS1_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_ = comdat any - -$_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_ = comdat any - -$_ZNSaIiEC2ERKS_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_ = comdat any - -$_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_ = comdat any - -$_ZNKSt6vectorIiSaIiEE6cbeginEv = comdat any - -$_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any - -$_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag = comdat any - -$_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_ = comdat any - -$_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_ = comdat any - -$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any - -$_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt13move_backwardIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_ = comdat any - -$_ZSt7advanceIPimEvRT_T0_ = comdat any - -$_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E = comdat any - -$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any - -$_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag = comdat any - -$_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E = comdat any - -$_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_ = comdat any - -$_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_ = comdat any - -$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_ = comdat any - -$_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_ = comdat any - -$_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZSt12__miter_baseIPiET_S1_ = comdat any - -$_ZNKSt13move_iteratorIPiE4baseEv = comdat any - -$_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_ = comdat any - -$_ZNSt13move_iteratorIPiEC2ES0_ = comdat any - -$_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_ = comdat any - -$_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE = comdat any - -$_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag = comdat any - -$_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_ = comdat any - -$_ZSt4copyIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any - -$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_ = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any - -$_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_ = comdat any - -$_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_ = comdat any - -$_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv = comdat any - -$_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEEEONSt16remove_referenceIT_E4typeEOS8_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE = comdat any - -$_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_ = comdat any - -$_ZNKSt7greaterIiEclERKiS2_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_ = comdat any - -$_ZNKSt6vectorIiSaIiEE5frontEv = comdat any - -$_ZNKSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv = comdat any - -$_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEE8pop_backEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv = comdat any - -$_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -$_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any - -$_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any - -$_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE = comdat any - -$_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl = comdat any - -$_ZNKSt6vectorIiSaIiEE5emptyEv = comdat any - -$_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_ = comdat any - -$_ZNKSt6vectorIiSaIiEE3endEv = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@__const.main.arr = private unnamed_addr constant [6 x i32] [i32 2, i32 6, i32 3, i32 12, i32 56, i32 8], align 16 -@.str.1 = private unnamed_addr constant [27 x i8] c"Following is sorted arrayn\00", align 1 -@.str.2 = private unnamed_addr constant [24 x i8] c"vector::_M_range_insert\00", align 1 -@.str.3 = private unnamed_addr constant [26 x i8] c"vector::_M_realloc_insert\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_Nearly_sorted_Algo.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::priority_queue", align 8 - %8 = alloca %"struct.std::greater", align 1 - %9 = alloca %"class.std::vector", align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %14 = load i32*, i32** %4, align 8 - %15 = load i32*, i32** %4, align 8 - %16 = load i32, i32* %6, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %15, i64 %17 - %19 = getelementptr inbounds i32, i32* %18, i64 1 - %20 = bitcast %"class.std::vector"* %9 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %20, i8 0, i64 24, i1 false) - call void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_(%"class.std::priority_queue"* nonnull dereferenceable(25) %7, i32* %14, i32* %19, %"struct.std::greater"* nonnull align 1 dereferenceable(1) %8, %"class.std::vector"* nonnull align 8 dereferenceable(24) %9) - to label %21 unwind label %46 - -21: ; preds = %3 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - store i32 0, i32* %12, align 4 - %22 = load i32, i32* %6, align 4 - %23 = add nsw i32 %22, 1 - store i32 %23, i32* %13, align 4 - br label %24 - -24: ; preds = %43, %21 - %25 = load i32, i32* %13, align 4 - %26 = load i32, i32* %5, align 4 - %27 = icmp slt i32 %25, %26 - br i1 %27, label %28, label %54 - -28: ; preds = %24 - %29 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %7) - to label %30 unwind label %50 - -30: ; preds = %28 - %31 = load i32, i32* %29, align 4 - %32 = load i32*, i32** %4, align 8 - %33 = load i32, i32* %12, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %12, align 4 - %35 = sext i32 %33 to i64 - %36 = getelementptr inbounds i32, i32* %32, i64 %35 - store i32 %31, i32* %36, align 4 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %7) - to label %37 unwind label %50 - -37: ; preds = %30 - %38 = load i32*, i32** %4, align 8 - %39 = load i32, i32* %13, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(%"class.std::priority_queue"* nonnull dereferenceable(25) %7, i32* nonnull align 4 dereferenceable(4) %41) - to label %42 unwind label %50 - -42: ; preds = %37 - br label %43 - -43: ; preds = %42 - %44 = load i32, i32* %13, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %13, align 4 - br label %24, !llvm.loop !2 - -46: ; preds = %3 - %47 = landingpad { i8*, i32 } - cleanup - %48 = extractvalue { i8*, i32 } %47, 0 - store i8* %48, i8** %10, align 8 - %49 = extractvalue { i8*, i32 } %47, 1 - store i32 %49, i32* %11, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - br label %71 - -50: ; preds = %62, %60, %55, %37, %30, %28 - %51 = landingpad { i8*, i32 } - cleanup - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(%"class.std::priority_queue"* nonnull dereferenceable(25) %7) #3 - br label %71 - -54: ; preds = %24 - br label %55 - -55: ; preds = %69, %54 - %56 = invoke zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %7) - to label %57 unwind label %50 - -57: ; preds = %55 - %58 = zext i1 %56 to i32 - %59 = icmp eq i32 %58, 0 - br i1 %59, label %60, label %70 - -60: ; preds = %57 - %61 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %7) - to label %62 unwind label %50 - -62: ; preds = %60 - %63 = load i32, i32* %61, align 4 - %64 = load i32*, i32** %4, align 8 - %65 = load i32, i32* %12, align 4 - %66 = add nsw i32 %65, 1 - store i32 %66, i32* %12, align 4 - %67 = sext i32 %65 to i64 - %68 = getelementptr inbounds i32, i32* %64, i64 %67 - store i32 %63, i32* %68, align 4 - invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %7) - to label %69 unwind label %50 - -69: ; preds = %62 - br label %55, !llvm.loop !4 - -70: ; preds = %57 - call void @llvm.trap() - unreachable - -71: ; preds = %50, %46 - %72 = load i8*, i8** %10, align 8 - %73 = load i32, i32* %11, align 4 - %74 = insertvalue { i8*, i32 } undef, i8* %72, 0 - %75 = insertvalue { i8*, i32 } %74, i32 %73, 1 - resume { i8*, i32 } %75 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_(%"class.std::priority_queue"* nonnull dereferenceable(25) %0, i32* %1, i32* %2, %"struct.std::greater"* nonnull align 1 dereferenceable(1) %3, %"class.std::vector"* nonnull align 8 dereferenceable(24) %4) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %6 = alloca %"class.std::priority_queue"*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"struct.std::greater"*, align 8 - %10 = alloca %"class.std::vector"*, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca i8*, align 8 - %14 = alloca i32, align 4 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca %"struct.std::greater", align 1 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store %"struct.std::greater"* %3, %"struct.std::greater"** %9, align 8 - store %"class.std::vector"* %4, %"class.std::vector"** %10, align 8 - %19 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %6, align 8 - %20 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %21 = load %"class.std::vector"*, %"class.std::vector"** %10, align 8 - %22 = call nonnull align 8 dereferenceable(24) %"class.std::vector"* @_ZSt4moveIRSt6vectorIiSaIiEEEONSt16remove_referenceIT_E4typeEOS5_(%"class.std::vector"* nonnull align 8 dereferenceable(24) %21) #3 - call void @_ZNSt6vectorIiSaIiEEC2EOS1_(%"class.std::vector"* nonnull dereferenceable(24) %20, %"class.std::vector"* nonnull align 8 dereferenceable(24) %22) #3 - %23 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 1 - %24 = load %"struct.std::greater"*, %"struct.std::greater"** %9, align 8 - %25 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %26 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %27 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %26) #3 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - store i32* %27, i32** %28, align 8 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2IPiEERKNS0_IT_NS_11__enable_ifIXsr3std10__are_sameIS9_S8_EE7__valueES5_E6__typeEEE(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %11, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %12) #3 - %29 = load i32*, i32** %7, align 8 - %30 = load i32*, i32** %8, align 8 - %31 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %11, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - %33 = invoke i32* @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_(%"class.std::vector"* nonnull dereferenceable(24) %25, i32* %32, i32* %29, i32* %30) - to label %34 unwind label %48 - -34: ; preds = %5 - %35 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %15, i32 0, i32 0 - store i32* %33, i32** %35, align 8 - %36 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %37 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %36) #3 - %38 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %16, i32 0, i32 0 - store i32* %37, i32** %38, align 8 - %39 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 0 - %40 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %39) #3 - %41 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - store i32* %40, i32** %41, align 8 - %42 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %19, i32 0, i32 1 - %43 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %16, i32 0, i32 0 - %44 = load i32*, i32** %43, align 8 - %45 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - %46 = load i32*, i32** %45, align 8 - invoke void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %44, i32* %46) - to label %47 unwind label %48 - -47: ; preds = %34 - ret void - -48: ; preds = %34, %5 - %49 = landingpad { i8*, i32 } - cleanup - %50 = extractvalue { i8*, i32 } %49, 0 - store i8* %50, i8** %13, align 8 - %51 = extractvalue { i8*, i32 } %49, 1 - store i32 %51, i32* %14, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %20) #3 - br label %52 - -52: ; preds = %48 - %53 = load i8*, i8** %13, align 8 - %54 = load i32, i32* %14, align 4 - %55 = insertvalue { i8*, i32 } undef, i8* %53, 0 - %56 = insertvalue { i8*, i32 } %55, i32 %54, 1 - resume { i8*, i32 } %56 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::vector"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %5 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %6 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %7 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %7 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %12 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %12 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %13, i32 0, i32 1 - %15 = load i32*, i32** %14, align 8 - %16 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %17 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %16) #3 - invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %10, i32* %15, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %17) - to label %18 unwind label %20 - -18: ; preds = %1 - %19 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %19) #3 - ret void - -20: ; preds = %1 - %21 = landingpad { i8*, i32 } - catch i8* null - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %3, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %4, align 4 - %24 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %24) #3 - br label %25 - -25: ; preds = %20 - %26 = load i8*, i8** %3, align 8 - call void @__clang_call_terminate(i8* %26) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %0) #7 comdat align 2 { - %2 = alloca %"class.std::priority_queue"*, align 8 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %2, align 8 - %3 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt6vectorIiSaIiEE5frontEv(%"class.std::vector"* nonnull dereferenceable(24) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %0) #4 comdat align 2 { - %2 = alloca %"class.std::priority_queue"*, align 8 - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %2, align 8 - %6 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %2, align 8 - %7 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 0 - %8 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %7) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %8, i32** %9, align 8 - %10 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 0 - %11 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %10) #3 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %11, i32** %12, align 8 - %13 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 1 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %15 = load i32*, i32** %14, align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - call void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %15, i32* %17) - %18 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %6, i32 0, i32 0 - call void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std::vector"* nonnull dereferenceable(24) %18) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(%"class.std::priority_queue"* nonnull dereferenceable(25) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::priority_queue"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = alloca %"struct.std::greater", align 1 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %3, align 8 - %9 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %8, i32 0, i32 0 - %10 = load i32*, i32** %4, align 8 - call void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %10) - %11 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %8, i32 0, i32 0 - %12 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %11) #3 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %12, i32** %13, align 8 - %14 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %8, i32 0, i32 0 - %15 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %14) #3 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - store i32* %15, i32** %16, align 8 - %17 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %8, i32 0, i32 1 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - call void @_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %19, i32* %21) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(%"class.std::priority_queue"* nonnull dereferenceable(25) %0) #7 comdat align 2 { - %2 = alloca %"class.std::priority_queue"*, align 8 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %2, align 8 - %3 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %3, i32 0, i32 0 - %5 = call zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(%"class.std::vector"* nonnull dereferenceable(24) %4) #3 - ret i1 %5 -} - -; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(%"class.std::priority_queue"* nonnull dereferenceable(25) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::priority_queue"*, align 8 - store %"class.std::priority_queue"* %0, %"class.std::priority_queue"** %2, align 8 - %3 = load %"class.std::priority_queue"*, %"class.std::priority_queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::priority_queue", %"class.std::priority_queue"* %3, i32 0, i32 0 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10printArrayPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %15) - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %16, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %18 - -18: ; preds = %10 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %6, !llvm.loop !5 - -21: ; preds = %6 - %22 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca [6 x i32], align 16 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - %5 = bitcast [6 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %3, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %2, align 4 - %9 = call i32 @_Z5sortKPiii(i32* %6, i32 %7, i32 %8) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str.1, i64 0, i64 0)) - %11 = getelementptr inbounds [6 x i32], [6 x i32]* %3, i64 0, i64 0 - %12 = load i32, i32* %4, align 4 - call void @_Z10printArrayPii(i32* %11, i32 %12) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #10 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %3 to %"struct.std::_Vector_base>::_Vector_impl_data"* - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl_data"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl_data"* %0, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %0, i32* %1, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store %"class.std::allocator"* %2, %"class.std::allocator"** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - call void @_ZSt8_DestroyIPiEvT_S1_(i32* %7, i32* %8) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 2 - %13 = load i32*, i32** %12, align 8 - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = ptrtoint i32* %13 to i64 - %19 = ptrtoint i32* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 4 - invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %5, i32* %9, i64 %21) - to label %22 unwind label %24 - -22: ; preds = %1 - %23 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %23) #3 - ret void - -24: ; preds = %1 - %25 = landingpad { i8*, i32 } - catch i8* null - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %3, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %4, align 4 - %28 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %28) #3 - br label %29 - -29: ; preds = %24 - %30 = load i8*, i8** %3, align 8 - call void @__clang_call_terminate(i8* %30) #16 - unreachable -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* %0, i32* %1) #4 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %3, align 8 - %6 = load i32*, i32** %4, align 8 - call void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* %5, i32* %6) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* %0, i32* %1) #7 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, i32* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"struct.std::_Vector_base"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = icmp ne i32* %8, null - br i1 %9, label %10, label %15 - -10: ; preds = %3 - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"class.std::allocator"* - %13 = load i32*, i32** %5, align 8 - %14 = load i64, i64* %6, align 8 - call void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %12, i32* %13, i64 %14) - br label %15 - -15: ; preds = %10, %3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(24) %"class.std::vector"* @_ZSt4moveIRSt6vectorIiSaIiEEEONSt16remove_referenceIT_E4typeEOS5_(%"class.std::vector"* nonnull align 8 dereferenceable(24) %0) #7 comdat { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - ret %"class.std::vector"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EOS1_(%"class.std::vector"* nonnull dereferenceable(24) %0, %"class.std::vector"* nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::vector"*, align 8 - %4 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - store %"class.std::vector"* %1, %"class.std::vector"** %4, align 8 - %5 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %6 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %7 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %8 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEEC2EOS1_(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %6, %"struct.std::_Vector_base"* nonnull align 8 dereferenceable(24) %8) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* %1, i32* %2, i32* %3) #4 comdat align 2 { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %7 = alloca %"class.std::vector"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i64, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %14 = alloca %"struct.std::__false_type", align 1 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %6, i32 0, i32 0 - store i32* %1, i32** %16, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32* %3, i32** %9, align 8 - %17 = load %"class.std::vector"*, %"class.std::vector"** %7, align 8 - %18 = call i32* @_ZNKSt6vectorIiSaIiEE6cbeginEv(%"class.std::vector"* nonnull dereferenceable(24) %17) #3 - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %11, i32 0, i32 0 - store i32* %18, i32** %19, align 8 - %20 = call i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %6, %"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %11) #3 - store i64 %20, i64* %10, align 8 - %21 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %17) #3 - %22 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %13, i32 0, i32 0 - store i32* %21, i32** %22, align 8 - %23 = load i64, i64* %10, align 8 - %24 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %13, i64 %23) #3 - %25 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - store i32* %24, i32** %25, align 8 - %26 = load i32*, i32** %8, align 8 - %27 = load i32*, i32** %9, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - call void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type(%"class.std::vector"* nonnull dereferenceable(24) %17, i32* %29, i32* %26, i32* %27) - %30 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %17) #3 - %31 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %15, i32 0, i32 0 - store i32* %30, i32** %31, align 8 - %32 = load i64, i64* %10, align 8 - %33 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %15, i64 %32) #3 - %34 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %33, i32** %34, align 8 - %35 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - ret i32* %36 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2IPiEERKNS0_IT_NS_11__enable_ifIXsr3std10__are_sameIS9_S8_EE7__valueES5_E6__typeEEE(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %1, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %5, i32 0, i32 0 - %7 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %8 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %7) #3 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %7 = alloca %"struct.std::greater", align 1 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %0, i32** %10, align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %11, align 8 - %12 = call nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %5) #3 - call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(1) %6) - %13 = bitcast %"class.__gnu_cxx::__normal_iterator"* %8 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator"* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = bitcast %"class.__gnu_cxx::__normal_iterator"* %9 to i8* - %16 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %15, i8* align 8 %16, i64 8, i1 false) - %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %8, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - call void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_(i32* %18, i32* %20, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %6) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EOS1_(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, %"struct.std::_Vector_base"* nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base"*, align 8 - %4 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %3, align 8 - store %"struct.std::_Vector_base"* %1, %"struct.std::_Vector_base"** %4, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %6, %"struct.std::_Vector_base>::_Vector_impl"* nonnull align 8 dereferenceable(24) %8) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %0, %"struct.std::_Vector_base>::_Vector_impl"* nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - %4 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %3, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %1, %"struct.std::_Vector_base>::_Vector_impl"** %4, align 8 - %5 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %3, align 8 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"class.std::allocator"* - %7 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %4, align 8 - %8 = call nonnull align 8 dereferenceable(24) %"struct.std::_Vector_base>::_Vector_impl"* @_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull align 8 dereferenceable(24) %7) #3 - %9 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %8 to %"class.std::allocator"* - call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %6, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %11 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %4, align 8 - %12 = call nonnull align 8 dereferenceable(24) %"struct.std::_Vector_base>::_Vector_impl"* @_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull align 8 dereferenceable(24) %11) #3 - %13 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %12 to %"struct.std::_Vector_base>::_Vector_impl_data"* - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %10, %"struct.std::_Vector_base>::_Vector_impl_data"* nonnull align 8 dereferenceable(24) %13) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(24) %"struct.std::_Vector_base>::_Vector_impl"* @_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull align 8 dereferenceable(24) %0) #7 comdat { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - ret %"struct.std::_Vector_base>::_Vector_impl"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, %"class.__gnu_cxx::new_allocator"* nonnull align 1 dereferenceable(1) %8) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %0, %"struct.std::_Vector_base>::_Vector_impl_data"* nonnull align 8 dereferenceable(24) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base>::_Vector_impl_data"*, align 8 - %4 = alloca %"struct.std::_Vector_base>::_Vector_impl_data"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl_data"* %0, %"struct.std::_Vector_base>::_Vector_impl_data"** %3, align 8 - store %"struct.std::_Vector_base>::_Vector_impl_data"* %1, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %5 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %19 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %18, i32 0, i32 2 - store i32* null, i32** %19, align 8 - %20 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %20, i32 0, i32 1 - store i32* null, i32** %21, align 8 - %22 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %4, align 8 - %23 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %22, i32 0, i32 0 - store i32* null, i32** %23, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"class.__gnu_cxx::new_allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store %"class.__gnu_cxx::new_allocator"* %1, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %1, %"class.__gnu_cxx::__normal_iterator.0"** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - %6 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %5) #3 - %7 = load i32*, i32** %6, align 8 - %8 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %4, align 8 - %9 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %8) #3 - %10 = load i32*, i32** %9, align 8 - %11 = ptrtoint i32* %7 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - ret i64 %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE6cbeginEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* %1, i32* %2, i32* %3) #4 comdat align 2 { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.std::__false_type", align 1 - %7 = alloca %"class.std::vector"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"struct.std::forward_iterator_tag", align 1 - %12 = alloca %"struct.std::random_access_iterator_tag", align 1 - %13 = alloca %"struct.std::random_access_iterator_tag", align 1 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %14, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32* %3, i32** %9, align 8 - %15 = load %"class.std::vector"*, %"class.std::vector"** %7, align 8 - %16 = bitcast %"class.__gnu_cxx::__normal_iterator"* %10 to i8* - %17 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %16, i8* align 8 %17, i64 8, i1 false) - %18 = load i32*, i32** %8, align 8 - %19 = load i32*, i32** %9, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** nonnull align 8 dereferenceable(8) %8) - %20 = bitcast %"struct.std::random_access_iterator_tag"* %12 to %"struct.std::forward_iterator_tag"* - %21 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - %22 = load i32*, i32** %21, align 8 - call void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag(%"class.std::vector"* nonnull dereferenceable(24) %15, i32* %22, i32* %18, i32* %19) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - store i64 %1, i64* %5, align 8 - %7 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = load i64, i64* %5, align 8 - %11 = getelementptr inbounds i32, i32* %9, i64 %10 - store i32* %11, i32** %6, align 8 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %3, i32** nonnull align 8 dereferenceable(8) %6) #3 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - ret i32* %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %0, i32** nonnull align 8 dereferenceable(8) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* %1, i32* %2, i32* %3) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.std::forward_iterator_tag", align 1 - %7 = alloca %"class.std::vector"*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca i32*, align 8 - %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = alloca i32*, align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %19 = alloca i64, align 8 - %20 = alloca i32*, align 8 - %21 = alloca i32*, align 8 - %22 = alloca i8*, align 8 - %23 = alloca i32, align 4 - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %24, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32* %3, i32** %9, align 8 - %25 = load %"class.std::vector"*, %"class.std::vector"** %7, align 8 - %26 = load i32*, i32** %8, align 8 - %27 = load i32*, i32** %9, align 8 - %28 = icmp ne i32* %26, %27 - br i1 %28, label %29, label %265 - -29: ; preds = %4 - %30 = load i32*, i32** %8, align 8 - %31 = load i32*, i32** %9, align 8 - %32 = call i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_(i32* %30, i32* %31) - store i64 %32, i64* %10, align 8 - %33 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %34 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %33, i32 0, i32 0 - %35 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %34 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %36 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %35, i32 0, i32 2 - %37 = load i32*, i32** %36, align 8 - %38 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %39 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %38, i32 0, i32 0 - %40 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %39 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %41 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %40, i32 0, i32 1 - %42 = load i32*, i32** %41, align 8 - %43 = ptrtoint i32* %37 to i64 - %44 = ptrtoint i32* %42 to i64 - %45 = sub i64 %43, %44 - %46 = sdiv exact i64 %45, 4 - %47 = load i64, i64* %10, align 8 - %48 = icmp uge i64 %46, %47 - br i1 %48, label %49, label %155 - -49: ; preds = %29 - %50 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %25) #3 - %51 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - store i32* %50, i32** %51, align 8 - %52 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %12, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %5) #3 - store i64 %52, i64* %11, align 8 - %53 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %54 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %53, i32 0, i32 0 - %55 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %54 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %56 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %55, i32 0, i32 1 - %57 = load i32*, i32** %56, align 8 - store i32* %57, i32** %13, align 8 - %58 = load i64, i64* %11, align 8 - %59 = load i64, i64* %10, align 8 - %60 = icmp ugt i64 %58, %59 - br i1 %60, label %61, label %106 - -61: ; preds = %49 - %62 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %63 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %62, i32 0, i32 0 - %64 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %63 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %65 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %64, i32 0, i32 1 - %66 = load i32*, i32** %65, align 8 - %67 = load i64, i64* %10, align 8 - %68 = sub i64 0, %67 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - %70 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %71 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %70, i32 0, i32 0 - %72 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %71 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %73 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %72, i32 0, i32 1 - %74 = load i32*, i32** %73, align 8 - %75 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %76 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %75, i32 0, i32 0 - %77 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %76 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %78 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %77, i32 0, i32 1 - %79 = load i32*, i32** %78, align 8 - %80 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %81 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %80) #3 - %82 = call i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %69, i32* %74, i32* %79, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %81) - %83 = load i64, i64* %10, align 8 - %84 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %85 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %84, i32 0, i32 0 - %86 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %85 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %87 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %86, i32 0, i32 1 - %88 = load i32*, i32** %87, align 8 - %89 = getelementptr inbounds i32, i32* %88, i64 %83 - store i32* %89, i32** %87, align 8 - %90 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %91 = load i32*, i32** %90, align 8 - %92 = load i32*, i32** %13, align 8 - %93 = load i64, i64* %10, align 8 - %94 = sub i64 0, %93 - %95 = getelementptr inbounds i32, i32* %92, i64 %94 - %96 = load i32*, i32** %13, align 8 - %97 = call i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* %91, i32* %95, i32* %96) - %98 = load i32*, i32** %8, align 8 - %99 = load i32*, i32** %9, align 8 - %100 = bitcast %"class.__gnu_cxx::__normal_iterator"* %14 to i8* - %101 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %100, i8* align 8 %101, i64 8, i1 false) - %102 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %14, i32 0, i32 0 - %103 = load i32*, i32** %102, align 8 - %104 = call i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(i32* %98, i32* %99, i32* %103) - %105 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %15, i32 0, i32 0 - store i32* %104, i32** %105, align 8 - br label %154 - -106: ; preds = %49 - %107 = load i32*, i32** %8, align 8 - store i32* %107, i32** %16, align 8 - %108 = load i64, i64* %11, align 8 - call void @_ZSt7advanceIPimEvRT_T0_(i32** nonnull align 8 dereferenceable(8) %16, i64 %108) - %109 = load i32*, i32** %16, align 8 - %110 = load i32*, i32** %9, align 8 - %111 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %112 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %111, i32 0, i32 0 - %113 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %112 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %114 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %113, i32 0, i32 1 - %115 = load i32*, i32** %114, align 8 - %116 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %117 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %116) #3 - %118 = call i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* %109, i32* %110, i32* %115, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %117) - %119 = load i64, i64* %10, align 8 - %120 = load i64, i64* %11, align 8 - %121 = sub i64 %119, %120 - %122 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %123 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %122, i32 0, i32 0 - %124 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %123 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %125 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %124, i32 0, i32 1 - %126 = load i32*, i32** %125, align 8 - %127 = getelementptr inbounds i32, i32* %126, i64 %121 - store i32* %127, i32** %125, align 8 - %128 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %129 = load i32*, i32** %128, align 8 - %130 = load i32*, i32** %13, align 8 - %131 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %132 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %131, i32 0, i32 0 - %133 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %132 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %134 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %133, i32 0, i32 1 - %135 = load i32*, i32** %134, align 8 - %136 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %137 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %136) #3 - %138 = call i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %129, i32* %130, i32* %135, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %137) - %139 = load i64, i64* %11, align 8 - %140 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %141 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %140, i32 0, i32 0 - %142 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %141 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %143 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %142, i32 0, i32 1 - %144 = load i32*, i32** %143, align 8 - %145 = getelementptr inbounds i32, i32* %144, i64 %139 - store i32* %145, i32** %143, align 8 - %146 = load i32*, i32** %8, align 8 - %147 = load i32*, i32** %16, align 8 - %148 = bitcast %"class.__gnu_cxx::__normal_iterator"* %17 to i8* - %149 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %148, i8* align 8 %149, i64 8, i1 false) - %150 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - %151 = load i32*, i32** %150, align 8 - %152 = call i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(i32* %146, i32* %147, i32* %151) - %153 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %18, i32 0, i32 0 - store i32* %152, i32** %153, align 8 - br label %154 - -154: ; preds = %106, %61 - br label %264 - -155: ; preds = %29 - %156 = load i64, i64* %10, align 8 - %157 = call i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* nonnull dereferenceable(24) %25, i64 %156, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.2, i64 0, i64 0)) - store i64 %157, i64* %19, align 8 - %158 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %159 = load i64, i64* %19, align 8 - %160 = call i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %158, i64 %159) - store i32* %160, i32** %20, align 8 - %161 = load i32*, i32** %20, align 8 - store i32* %161, i32** %21, align 8 - %162 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %163 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %162, i32 0, i32 0 - %164 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %163 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %165 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %164, i32 0, i32 0 - %166 = load i32*, i32** %165, align 8 - %167 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %168 = load i32*, i32** %167, align 8 - %169 = load i32*, i32** %20, align 8 - %170 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %171 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %170) #3 - %172 = invoke i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %166, i32* %168, i32* %169, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %171) - to label %173 unwind label %193 - -173: ; preds = %155 - store i32* %172, i32** %21, align 8 - %174 = load i32*, i32** %8, align 8 - %175 = load i32*, i32** %9, align 8 - %176 = load i32*, i32** %21, align 8 - %177 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %178 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %177) #3 - %179 = invoke i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* %174, i32* %175, i32* %176, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %178) - to label %180 unwind label %193 - -180: ; preds = %173 - store i32* %179, i32** %21, align 8 - %181 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %182 = load i32*, i32** %181, align 8 - %183 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %184 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %183, i32 0, i32 0 - %185 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %184 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %186 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %185, i32 0, i32 1 - %187 = load i32*, i32** %186, align 8 - %188 = load i32*, i32** %21, align 8 - %189 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %190 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %189) #3 - %191 = invoke i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %182, i32* %187, i32* %188, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %190) - to label %192 unwind label %193 - -192: ; preds = %180 - store i32* %191, i32** %21, align 8 - br label %214 - -193: ; preds = %180, %173, %155 - %194 = landingpad { i8*, i32 } - catch i8* null - %195 = extractvalue { i8*, i32 } %194, 0 - store i8* %195, i8** %22, align 8 - %196 = extractvalue { i8*, i32 } %194, 1 - store i32 %196, i32* %23, align 4 - br label %197 - -197: ; preds = %193 - %198 = load i8*, i8** %22, align 8 - %199 = call i8* @__cxa_begin_catch(i8* %198) #3 - %200 = load i32*, i32** %20, align 8 - %201 = load i32*, i32** %21, align 8 - %202 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %203 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %202) #3 - invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %200, i32* %201, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %203) - to label %204 unwind label %209 - -204: ; preds = %197 - %205 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %206 = load i32*, i32** %20, align 8 - %207 = load i64, i64* %19, align 8 - invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %205, i32* %206, i64 %207) - to label %208 unwind label %209 - -208: ; preds = %204 - invoke void @__cxa_rethrow() #17 - to label %274 unwind label %209 - -209: ; preds = %208, %204, %197 - %210 = landingpad { i8*, i32 } - cleanup - %211 = extractvalue { i8*, i32 } %210, 0 - store i8* %211, i8** %22, align 8 - %212 = extractvalue { i8*, i32 } %210, 1 - store i32 %212, i32* %23, align 4 - invoke void @__cxa_end_catch() - to label %213 unwind label %271 - -213: ; preds = %209 - br label %266 - -214: ; preds = %192 - %215 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %216 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %215, i32 0, i32 0 - %217 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %216 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %218 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %217, i32 0, i32 0 - %219 = load i32*, i32** %218, align 8 - %220 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %221 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %220, i32 0, i32 0 - %222 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %221 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %223 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %222, i32 0, i32 1 - %224 = load i32*, i32** %223, align 8 - %225 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %226 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %225) #3 - call void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %219, i32* %224, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %226) - %227 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %228 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %229 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %228, i32 0, i32 0 - %230 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %229 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %231 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %230, i32 0, i32 0 - %232 = load i32*, i32** %231, align 8 - %233 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %234 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %233, i32 0, i32 0 - %235 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %234 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %236 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %235, i32 0, i32 2 - %237 = load i32*, i32** %236, align 8 - %238 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %239 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %238, i32 0, i32 0 - %240 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %239 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %241 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %240, i32 0, i32 0 - %242 = load i32*, i32** %241, align 8 - %243 = ptrtoint i32* %237 to i64 - %244 = ptrtoint i32* %242 to i64 - %245 = sub i64 %243, %244 - %246 = sdiv exact i64 %245, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %227, i32* %232, i64 %246) - %247 = load i32*, i32** %20, align 8 - %248 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %249 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %248, i32 0, i32 0 - %250 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %249 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %251 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %250, i32 0, i32 0 - store i32* %247, i32** %251, align 8 - %252 = load i32*, i32** %21, align 8 - %253 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %254 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %253, i32 0, i32 0 - %255 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %254 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %256 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %255, i32 0, i32 1 - store i32* %252, i32** %256, align 8 - %257 = load i32*, i32** %20, align 8 - %258 = load i64, i64* %19, align 8 - %259 = getelementptr inbounds i32, i32* %257, i64 %258 - %260 = bitcast %"class.std::vector"* %25 to %"struct.std::_Vector_base"* - %261 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %260, i32 0, i32 0 - %262 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %261 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %263 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %262, i32 0, i32 2 - store i32* %259, i32** %263, align 8 - br label %264 - -264: ; preds = %214, %154 - br label %265 - -265: ; preds = %264, %4 - ret void - -266: ; preds = %213 - %267 = load i8*, i8** %22, align 8 - %268 = load i32, i32* %23, align 4 - %269 = insertvalue { i8*, i32 } undef, i8* %267, 0 - %270 = insertvalue { i8*, i32 } %269, i32 %268, 1 - resume { i8*, i32 } %270 - -271: ; preds = %209 - %272 = landingpad { i8*, i32 } - catch i8* null - %273 = extractvalue { i8*, i32 } %272, 0 - call void @__clang_call_terminate(i8* %273) #16 - unreachable - -274: ; preds = %208 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** nonnull align 8 dereferenceable(8) %0) #7 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_(i32* %0, i32* %1) #4 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca %"struct.std::random_access_iterator_tag", align 1 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %7 = load i32*, i32** %3, align 8 - %8 = load i32*, i32** %4, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** nonnull align 8 dereferenceable(8) %3) - %9 = call i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag(i32* %7, i32* %8) - ret i64 %9 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %1, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - %6 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %7 = load i32*, i32** %6, align 8 - %8 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %9 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %8) #3 - %10 = load i32*, i32** %9, align 8 - %11 = ptrtoint i32* %7 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - ret i64 %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = alloca %"class.std::move_iterator", align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = call i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* %11) - %13 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %9, i32 0, i32 0 - store i32* %12, i32** %13, align 8 - %14 = load i32*, i32** %6, align 8 - %15 = call i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* %14) - %16 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %10, i32 0, i32 0 - store i32* %15, i32** %16, align 8 - %17 = load i32*, i32** %7, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %19 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %10, i32 0, i32 0 - %22 = load i32*, i32** %21, align 8 - %23 = call i32* @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(i32* %20, i32* %22, i32* %17, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %18) - ret i32* %23 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %7) - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %9) - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %11) - ret i32* %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %2, i32** %9, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %10) - %12 = load i32*, i32** %7, align 8 - %13 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %12) - %14 = bitcast %"class.__gnu_cxx::__normal_iterator"* %8 to i8* - %15 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %8, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = call i32* @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_(i32* %11, i32* %13, i32* %17) - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %18, i32** %19, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - ret i32* %21 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt7advanceIPimEvRT_T0_(i32** nonnull align 8 dereferenceable(8) %0, i64 %1) #4 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"struct.std::random_access_iterator_tag", align 1 - %7 = alloca %"struct.std::random_access_iterator_tag", align 1 - store i32** %0, i32*** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load i64, i64* %4, align 8 - store i64 %8, i64* %5, align 8 - %9 = load i32**, i32*** %3, align 8 - %10 = load i64, i64* %5, align 8 - %11 = load i32**, i32*** %3, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** nonnull align 8 dereferenceable(8) %11) - call void @_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag(i32** nonnull align 8 dereferenceable(8) %9, i64 %10) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call i32* @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(i32* %9, i32* %10, i32* %11) - ret i32* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %9 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %10 = call i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %11 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %12 = sub i64 %10, %11 - %13 = load i64, i64* %5, align 8 - %14 = icmp ult i64 %12, %13 - br i1 %14, label %15, label %17 - -15: ; preds = %3 - %16 = load i8*, i8** %6, align 8 - call void @_ZSt20__throw_length_errorPKc(i8* %16) #17 - unreachable - -17: ; preds = %3 - %18 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %19 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - store i64 %19, i64* %8, align 8 - %20 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %8, i64* nonnull align 8 dereferenceable(8) %5) - %21 = load i64, i64* %20, align 8 - %22 = add i64 %18, %21 - store i64 %22, i64* %7, align 8 - %23 = load i64, i64* %7, align 8 - %24 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %25 = icmp ult i64 %23, %24 - br i1 %25, label %30, label %26 - -26: ; preds = %17 - %27 = load i64, i64* %7, align 8 - %28 = call i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %29 = icmp ugt i64 %27, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %26, %17 - %31 = call i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - br label %34 - -32: ; preds = %26 - %33 = load i64, i64* %7, align 8 - br label %34 - -34: ; preds = %32, %30 - %35 = phi i64 [ %31, %30 ], [ %33, %32 ] - ret i64 %35 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base"*, align 8 - %4 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = icmp ne i64 %6, 0 - br i1 %7, label %8, label %13 - -8: ; preds = %2 - %9 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"class.std::allocator"* - %11 = load i64, i64* %4, align 8 - %12 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %10, i64 %11) - br label %14 - -13: ; preds = %2 - br label %14 - -14: ; preds = %13, %8 - %15 = phi i32* [ %12, %8 ], [ null, %13 ] - ret i32* %15 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = alloca %"class.std::move_iterator", align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = call i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* %11) - %13 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %9, i32 0, i32 0 - store i32* %12, i32** %13, align 8 - %14 = load i32*, i32** %6, align 8 - %15 = call i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* %14) - %16 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %10, i32 0, i32 0 - store i32* %15, i32** %16, align 8 - %17 = load i32*, i32** %7, align 8 - %18 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %19 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %10, i32 0, i32 0 - %22 = load i32*, i32** %21, align 8 - %23 = call i32* @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(i32* %20, i32* %22, i32* %17, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %18) - ret i32* %23 -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag(i32* %0, i32* %1) #7 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = ptrtoint i32* %6 to i64 - %9 = ptrtoint i32* %7 to i64 - %10 = sub i64 %8, %9 - %11 = sdiv exact i64 %10, 4 - ret i64 %11 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca %"class.std::move_iterator", align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = alloca %"class.std::move_iterator", align 8 - %11 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %5, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %6, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %13 = bitcast %"class.std::move_iterator"* %9 to i8* - %14 = bitcast %"class.std::move_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = bitcast %"class.std::move_iterator"* %10 to i8* - %16 = bitcast %"class.std::move_iterator"* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %15, i8* align 8 %16, i64 8, i1 false) - %17 = load i32*, i32** %7, align 8 - %18 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %9, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %10, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - %22 = call i32* @_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %19, i32* %21, i32* %17) - ret i32* %22 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* %0) #4 comdat { - %2 = alloca %"class.std::move_iterator", align 8 - %3 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - %4 = call nonnull align 8 dereferenceable(8) i32** @_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_(i32** nonnull align 8 dereferenceable(8) %3) #3 - %5 = load i32*, i32** %4, align 8 - call void @_ZNSt13move_iteratorIPiEC2ES0_(%"class.std::move_iterator"* nonnull dereferenceable(8) %2, i32* %5) - %6 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %2, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - ret i32* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca %"class.std::move_iterator", align 8 - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - %8 = alloca %"class.std::move_iterator", align 8 - %9 = alloca %"class.std::move_iterator", align 8 - %10 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %4, i32 0, i32 0 - store i32* %0, i32** %10, align 8 - %11 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %11, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - %12 = bitcast %"class.std::move_iterator"* %8 to i8* - %13 = bitcast %"class.std::move_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %12, i8* align 8 %13, i64 8, i1 false) - %14 = bitcast %"class.std::move_iterator"* %9 to i8* - %15 = bitcast %"class.std::move_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = load i32*, i32** %6, align 8 - %17 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %8, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = call i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_(i32* %18, i32* %20, i32* %16) - ret i32* %21 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_(i32* %0, i32* %1, i32* %2) #4 comdat align 2 { - %4 = alloca %"class.std::move_iterator", align 8 - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.std::move_iterator", align 8 - %8 = alloca %"class.std::move_iterator", align 8 - %9 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %4, i32 0, i32 0 - store i32* %0, i32** %9, align 8 - %10 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %6, align 8 - %11 = bitcast %"class.std::move_iterator"* %7 to i8* - %12 = bitcast %"class.std::move_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = bitcast %"class.std::move_iterator"* %8 to i8* - %14 = bitcast %"class.std::move_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = load i32*, i32** %6, align 8 - %16 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %7, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %8, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = call i32* @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %17, i32* %19, i32* %15) - ret i32* %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca %"class.std::move_iterator", align 8 - %5 = alloca %"class.std::move_iterator", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.std::move_iterator", align 8 - %8 = alloca %"class.std::move_iterator", align 8 - %9 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %4, i32 0, i32 0 - store i32* %0, i32** %9, align 8 - %10 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %6, align 8 - %11 = bitcast %"class.std::move_iterator"* %7 to i8* - %12 = bitcast %"class.std::move_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %7, i32 0, i32 0 - %14 = load i32*, i32** %13, align 8 - %15 = call i32* @_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E(i32* %14) - %16 = bitcast %"class.std::move_iterator"* %8 to i8* - %17 = bitcast %"class.std::move_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %16, i8* align 8 %17, i64 8, i1 false) - %18 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %8, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = call i32* @_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E(i32* %19) - %21 = load i32*, i32** %6, align 8 - %22 = call i32* @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(i32* %15, i32* %20, i32* %21) - ret i32* %22 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %7) #3 - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 - %13 = call i32* @_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %12) - %14 = call i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %6, i32* %13) - ret i32* %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__miter_baseIPiEDTcl12__miter_basecldtfp_4baseEEESt13move_iteratorIT_E(i32* %0) #4 comdat { - %2 = alloca %"class.std::move_iterator", align 8 - %3 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %2, i32 0, i32 0 - store i32* %0, i32** %3, align 8 - %4 = call i32* @_ZNKSt13move_iteratorIPiE4baseEv(%"class.std::move_iterator"* nonnull dereferenceable(8) %2) - %5 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %4) - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %0, i32* %1) #7 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i32*, align 8 - store i32** %0, i32*** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiET_S1_(i32* %0) #7 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* %0, i32* %1, i32* %2) #7 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = bitcast i32* %17 to i8* - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 4, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32*, i32** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32, i32* %24, i64 %25 - ret i32* %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #10 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__miter_baseIPiET_S1_(i32* %0) #7 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNKSt13move_iteratorIPiE4baseEv(%"class.std::move_iterator"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"class.std::move_iterator"*, align 8 - store %"class.std::move_iterator"* %0, %"class.std::move_iterator"** %2, align 8 - %3 = load %"class.std::move_iterator"*, %"class.std::move_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_(i32** nonnull align 8 dereferenceable(8) %0) #7 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt13move_iteratorIPiEC2ES0_(%"class.std::move_iterator"* nonnull dereferenceable(8) %0, i32* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::move_iterator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::move_iterator"* %0, %"class.std::move_iterator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::move_iterator"*, %"class.std::move_iterator"** %3, align 8 - %6 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %5, i32 0, i32 0 - %7 = call nonnull align 8 dereferenceable(8) i32** @_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_(i32** nonnull align 8 dereferenceable(8) %4) #3 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %7) #3 - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 - %13 = call i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %12) - %14 = call i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %6, i32* %13) - ret i32* %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* %0, i32* %1, i32* %2) #7 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = bitcast i32* %20 to i8* - %22 = load i32*, i32** %4, align 8 - %23 = bitcast i32* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 4, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32*, i32** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - ret i32* %30 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %2, i32** %10, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - %11 = bitcast %"class.__gnu_cxx::__normal_iterator"* %8 to i8* - %12 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = load i32*, i32** %6, align 8 - %14 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %13) #3 - %15 = load i32*, i32** %7, align 8 - %16 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %15) #3 - %17 = bitcast %"class.__gnu_cxx::__normal_iterator"* %9 to i8* - %18 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %17, i8* align 8 %18, i64 8, i1 false) - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = call i32* @_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(i32* %20) #3 - %22 = call i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(i32* %14, i32* %16, i32* %21) - %23 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %8, i32 0, i32 0 - %24 = load i32*, i32** %23, align 8 - %25 = call i32* @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_(i32* %24, i32* %22) - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %25, i32** %26, align 8 - %27 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - ret i32* %28 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_(i32* %0, i32* %1) #7 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %0, i32** %7, align 8 - store i32* %1, i32** %5, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast %"class.__gnu_cxx::__normal_iterator"* %6 to i8* - %10 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %9, i8* align 8 %10, i64 8, i1 false) - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - %12 = load i32*, i32** %11, align 8 - %13 = call i32* @_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(i32* %12) #3 - %14 = ptrtoint i32* %8 to i64 - %15 = ptrtoint i32* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 4 - %18 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4, i64 %17) #3 - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %18, i32** %19, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - ret i32* %21 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(i32* %0) #7 comdat { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %2, i32 0, i32 0 - store i32* %0, i32** %3, align 8 - %4 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %2) #3 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* %0, i32* %1, i32* %2) #7 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = bitcast i32* %17 to i8* - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 4, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32*, i32** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32, i32* %24, i64 %25 - ret i32* %26 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag(i32** nonnull align 8 dereferenceable(8) %0, i64 %1) #7 comdat { - %3 = alloca %"struct.std::random_access_iterator_tag", align 1 - %4 = alloca i32**, align 8 - %5 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i64 %1, i64* %5, align 8 - %6 = load i64, i64* %5, align 8 - %7 = call i1 @llvm.is.constant.i64(i64 %6) - br i1 %7, label %8, label %15 - -8: ; preds = %2 - %9 = load i64, i64* %5, align 8 - %10 = icmp eq i64 %9, 1 - br i1 %10, label %11, label %15 - -11: ; preds = %8 - %12 = load i32**, i32*** %4, align 8 - %13 = load i32*, i32** %12, align 8 - %14 = getelementptr inbounds i32, i32* %13, i32 1 - store i32* %14, i32** %12, align 8 - br label %31 - -15: ; preds = %8, %2 - %16 = load i64, i64* %5, align 8 - %17 = call i1 @llvm.is.constant.i64(i64 %16) - br i1 %17, label %18, label %25 - -18: ; preds = %15 - %19 = load i64, i64* %5, align 8 - %20 = icmp eq i64 %19, -1 - br i1 %20, label %21, label %25 - -21: ; preds = %18 - %22 = load i32**, i32*** %4, align 8 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i32 -1 - store i32* %24, i32** %22, align 8 - br label %30 - -25: ; preds = %18, %15 - %26 = load i64, i64* %5, align 8 - %27 = load i32**, i32*** %4, align 8 - %28 = load i32*, i32** %27, align 8 - %29 = getelementptr inbounds i32, i32* %28, i64 %26 - store i32* %29, i32** %27, align 8 - br label %30 - -30: ; preds = %25, %21 - br label %31 - -31: ; preds = %30, %11 - ret void -} - -; Function Attrs: convergent nofree nosync nounwind readnone willreturn -declare i1 @llvm.is.constant.i64(i64) #13 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - %8 = load i32*, i32** %4, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(i32* %8, i32* %9, i32* %10) - ret i32* %11 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(i32* %0, i32* %1, i32* %2) #4 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt4copyIPiS0_ET0_T_S2_S1_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt4copyIPiS0_ET0_T_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %7) - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %9) - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %11) - ret i32* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %7) #3 - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 - %13 = call i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %12) - %14 = call i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %6, i32* %13) - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %4) #3 - %6 = call i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %6, i32 0, i32 1 - %8 = load i32*, i32** %7, align 8 - %9 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = ptrtoint i32* %8 to i64 - %15 = ptrtoint i32* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 4 - ret i64 %17 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #14 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - store i64 2305843009213693951, i64* %3, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #15 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* %0) #4 comdat { - %2 = alloca %"class.std::move_iterator", align 8 - %3 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - %4 = load i32*, i32** %3, align 8 - call void @_ZNSt13move_iteratorIPiEC2ES0_(%"class.std::move_iterator"* nonnull dereferenceable(8) %2, i32* %4) - %5 = getelementptr inbounds %"class.std::move_iterator", %"class.std::move_iterator"* %2, i32 0, i32 0 - %6 = load i32*, i32** %5, align 8 - ret i32* %6 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0, i32** nonnull align 8 dereferenceable(8) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %0) #7 comdat { - %2 = alloca %"struct.std::greater"*, align 8 - store %"struct.std::greater"* %0, %"struct.std::greater"** %2, align 8 - %3 = load %"struct.std::greater"*, %"struct.std::greater"** %2, align 8 - ret %"struct.std::greater"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::greater", align 1 - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %3, align 8 - %4 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %3, align 8 - %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - %6 = call nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %2) #3 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_RT0_(i32* %0, i32* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %2) #0 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %0, i32** %13, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %1, i32** %14, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %15 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %5, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %4) #3 - %16 = icmp slt i64 %15, 2 - br i1 %16, label %17, label %18 - -17: ; preds = %3 - br label %47 - -18: ; preds = %3 - %19 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %5, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %4) #3 - store i64 %19, i64* %7, align 8 - %20 = load i64, i64* %7, align 8 - %21 = sub nsw i64 %20, 2 - %22 = sdiv i64 %21, 2 - store i64 %22, i64* %8, align 8 - br label %23 - -23: ; preds = %18, %44 - %24 = load i64, i64* %8, align 8 - %25 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4, i64 %24) #3 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - store i32* %25, i32** %26, align 8 - %27 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %10) #3 - %28 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %27) #3 - %29 = load i32, i32* %28, align 4 - store i32 %29, i32* %9, align 4 - %30 = bitcast %"class.__gnu_cxx::__normal_iterator"* %11 to i8* - %31 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %30, i8* align 8 %31, i64 8, i1 false) - %32 = load i64, i64* %8, align 8 - %33 = load i64, i64* %7, align 8 - %34 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %35 = load i32, i32* %34, align 4 - %36 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %37 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12 to i8* - %38 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %36 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %37, i8* align 1 %38, i64 1, i1 false) - %39 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - %40 = load i32*, i32** %39, align 8 - call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %40, i64 %32, i64 %33, i32 %35) - %41 = load i64, i64* %8, align 8 - %42 = icmp eq i64 %41, 0 - br i1 %42, label %43, label %44 - -43: ; preds = %23 - br label %47 - -44: ; preds = %23 - %45 = load i64, i64* %8, align 8 - %46 = add nsw i64 %45, -1 - store i64 %46, i64* %8, align 8 - br label %23 - -47: ; preds = %43, %17 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %0) #7 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %0, i64 %1, i64 %2, i32 %3) #4 comdat { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %17 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %18 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 1 - %19 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %0, i32** %20, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - %21 = load i64, i64* %7, align 8 - store i64 %21, i64* %10, align 8 - %22 = load i64, i64* %7, align 8 - store i64 %22, i64* %11, align 8 - br label %23 - -23: ; preds = %48, %4 - %24 = load i64, i64* %11, align 8 - %25 = load i64, i64* %8, align 8 - %26 = sub nsw i64 %25, 1 - %27 = sdiv i64 %26, 2 - %28 = icmp slt i64 %24, %27 - br i1 %28, label %29, label %60 - -29: ; preds = %23 - %30 = load i64, i64* %11, align 8 - %31 = add nsw i64 %30, 1 - %32 = mul nsw i64 2, %31 - store i64 %32, i64* %11, align 8 - %33 = load i64, i64* %11, align 8 - %34 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5, i64 %33) #3 - %35 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - store i32* %34, i32** %35, align 8 - %36 = load i64, i64* %11, align 8 - %37 = sub nsw i64 %36, 1 - %38 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5, i64 %37) #3 - %39 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %13, i32 0, i32 0 - store i32* %38, i32** %39, align 8 - %40 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - %42 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %13, i32 0, i32 0 - %43 = load i32*, i32** %42, align 8 - %44 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(1) %6, i32* %41, i32* %43) - br i1 %44, label %45, label %48 - -45: ; preds = %29 - %46 = load i64, i64* %11, align 8 - %47 = add nsw i64 %46, -1 - store i64 %47, i64* %11, align 8 - br label %48 - -48: ; preds = %45, %29 - %49 = load i64, i64* %11, align 8 - %50 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5, i64 %49) #3 - %51 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %14, i32 0, i32 0 - store i32* %50, i32** %51, align 8 - %52 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %14) #3 - %53 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %52) #3 - %54 = load i32, i32* %53, align 4 - %55 = load i64, i64* %7, align 8 - %56 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5, i64 %55) #3 - %57 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %15, i32 0, i32 0 - store i32* %56, i32** %57, align 8 - %58 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %15) #3 - store i32 %54, i32* %58, align 4 - %59 = load i64, i64* %11, align 8 - store i64 %59, i64* %7, align 8 - br label %23, !llvm.loop !6 - -60: ; preds = %23 - %61 = load i64, i64* %8, align 8 - %62 = and i64 %61, 1 - %63 = icmp eq i64 %62, 0 - br i1 %63, label %64, label %87 - -64: ; preds = %60 - %65 = load i64, i64* %11, align 8 - %66 = load i64, i64* %8, align 8 - %67 = sub nsw i64 %66, 2 - %68 = sdiv i64 %67, 2 - %69 = icmp eq i64 %65, %68 - br i1 %69, label %70, label %87 - -70: ; preds = %64 - %71 = load i64, i64* %11, align 8 - %72 = add nsw i64 %71, 1 - %73 = mul nsw i64 2, %72 - store i64 %73, i64* %11, align 8 - %74 = load i64, i64* %11, align 8 - %75 = sub nsw i64 %74, 1 - %76 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5, i64 %75) #3 - %77 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %16, i32 0, i32 0 - store i32* %76, i32** %77, align 8 - %78 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %16) #3 - %79 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %78) #3 - %80 = load i32, i32* %79, align 4 - %81 = load i64, i64* %7, align 8 - %82 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5, i64 %81) #3 - %83 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %17, i32 0, i32 0 - store i32* %82, i32** %83, align 8 - %84 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %17) #3 - store i32 %80, i32* %84, align 4 - %85 = load i64, i64* %11, align 8 - %86 = sub nsw i64 %85, 1 - store i64 %86, i64* %7, align 8 - br label %87 - -87: ; preds = %70, %64, %60 - %88 = call nonnull align 1 dereferenceable(1) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEEEONSt16remove_referenceIT_E4typeEOS8_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %6) #3 - call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(1) %18, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %88) - %89 = bitcast %"class.__gnu_cxx::__normal_iterator"* %19 to i8* - %90 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %89, i8* align 8 %90, i64 8, i1 false) - %91 = load i64, i64* %7, align 8 - %92 = load i64, i64* %10, align 8 - %93 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %94 = load i32, i32* %93, align 4 - %95 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %19, i32 0, i32 0 - %96 = load i32*, i32** %95, align 8 - call void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(i32* %96, i64 %91, i64 %92, i32 %94, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 1 dereferenceable(1) %18) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(1) %0, i32* %1, i32* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %7, align 8 - %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %2, i32** %8, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %9 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %13 = call zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.std::greater"* nonnull dereferenceable(1) %10, i32* nonnull align 4 dereferenceable(4) %11, i32* nonnull align 4 dereferenceable(4) %12) - ret i1 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEEEONSt16remove_referenceIT_E4typeEOS8_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %0) #7 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2EONS0_15_Iter_comp_iterIS3_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(1) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %8) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(i32* %0, i64 %1, i64 %2, i32 %3, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 1 dereferenceable(1) %4) #4 comdat { - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %13 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %14 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %15 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - store i32* %0, i32** %16, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %4, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %10, align 8 - %17 = load i64, i64* %7, align 8 - %18 = sub nsw i64 %17, 1 - %19 = sdiv i64 %18, 2 - store i64 %19, i64* %11, align 8 - br label %20 - -20: ; preds = %34, %5 - %21 = load i64, i64* %7, align 8 - %22 = load i64, i64* %8, align 8 - %23 = icmp sgt i64 %21, %22 - br i1 %23, label %24, label %32 - -24: ; preds = %20 - %25 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %10, align 8 - %26 = load i64, i64* %11, align 8 - %27 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %6, i64 %26) #3 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - store i32* %27, i32** %28, align 8 - %29 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %12, i32 0, i32 0 - %30 = load i32*, i32** %29, align 8 - %31 = call zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(1) %25, i32* %30, i32* nonnull align 4 dereferenceable(4) %9) - br label %32 - -32: ; preds = %24, %20 - %33 = phi i1 [ false, %20 ], [ %31, %24 ] - br i1 %33, label %34, label %49 - -34: ; preds = %32 - %35 = load i64, i64* %11, align 8 - %36 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %6, i64 %35) #3 - %37 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %13, i32 0, i32 0 - store i32* %36, i32** %37, align 8 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %13) #3 - %39 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %38) #3 - %40 = load i32, i32* %39, align 4 - %41 = load i64, i64* %7, align 8 - %42 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %6, i64 %41) #3 - %43 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %14, i32 0, i32 0 - store i32* %42, i32** %43, align 8 - %44 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %14) #3 - store i32 %40, i32* %44, align 4 - %45 = load i64, i64* %11, align 8 - store i64 %45, i64* %7, align 8 - %46 = load i64, i64* %7, align 8 - %47 = sub nsw i64 %46, 1 - %48 = sdiv i64 %47, 2 - store i64 %48, i64* %11, align 8 - br label %20, !llvm.loop !7 - -49: ; preds = %32 - %50 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %51 = load i32, i32* %50, align 4 - %52 = load i64, i64* %7, align 8 - %53 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %6, i64 %52) #3 - %54 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %15, i32 0, i32 0 - store i32* %53, i32** %54, align 8 - %55 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %15) #3 - store i32 %51, i32* %55, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.std::greater"* nonnull dereferenceable(1) %0, i32* nonnull align 4 dereferenceable(4) %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::greater"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.std::greater"* %0, %"struct.std::greater"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.std::greater"*, %"struct.std::greater"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp sgt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %6 = alloca i32*, align 8 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %5, align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %8, i32 0, i32 0 - %10 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.std::greater"* nonnull dereferenceable(1) %9, i32* nonnull align 4 dereferenceable(4) %10, i32* nonnull align 4 dereferenceable(4) %11) - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt6vectorIiSaIiEE5frontEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %5 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %4) #3 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %3, i32 0, i32 0 - store i32* %5, i32** %6, align 8 - %7 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %3) #3 - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %7 = alloca %"struct.std::greater", align 1 - %8 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - %13 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %3) #3 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %30 - -15: ; preds = %2 - %16 = call nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %5) #3 - call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(1) %6) - %17 = call nonnull align 8 dereferenceable(8) %"class.__gnu_cxx::__normal_iterator"* @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %18 = bitcast %"class.__gnu_cxx::__normal_iterator"* %8 to i8* - %19 = bitcast %"class.__gnu_cxx::__normal_iterator"* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %19, i64 8, i1 false) - %20 = bitcast %"class.__gnu_cxx::__normal_iterator"* %9 to i8* - %21 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %20, i8* align 8 %21, i64 8, i1 false) - %22 = bitcast %"class.__gnu_cxx::__normal_iterator"* %10 to i8* - %23 = bitcast %"class.__gnu_cxx::__normal_iterator"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %8, i32 0, i32 0 - %25 = load i32*, i32** %24, align 8 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %9, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - call void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_(i32* %25, i32* %27, i32* %29, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %6) - br label %30 - -30: ; preds = %15, %2 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %6, i32 0, i32 1 - %8 = load i32*, i32** %7, align 8 - %9 = getelementptr inbounds i32, i32* %8, i32 -1 - store i32* %9, i32** %7, align 8 - %10 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"class.std::allocator"* - %13 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 1 - %17 = load i32*, i32** %16, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %12, i32* %17) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"class.__gnu_cxx::__normal_iterator"* @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds i32, i32* %5, i32 -1 - store i32* %6, i32** %4, align 8 - ret %"class.__gnu_cxx::__normal_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEENS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_SC_SC_RT0_(i32* %0, i32* %1, i32* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 1 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %0, i32** %12, align 8 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %6, i32 0, i32 0 - store i32* %1, i32** %13, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %7, i32 0, i32 0 - store i32* %2, i32** %14, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %15 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %7) #3 - %16 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %15) #3 - %17 = load i32, i32* %16, align 4 - store i32 %17, i32* %9, align 4 - %18 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %19 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %18) #3 - %20 = load i32, i32* %19, align 4 - %21 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %7) #3 - store i32 %20, i32* %21, align 4 - %22 = bitcast %"class.__gnu_cxx::__normal_iterator"* %10 to i8* - %23 = bitcast %"class.__gnu_cxx::__normal_iterator"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %6, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %5) #3 - %25 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %26 = load i32, i32* %25, align 4 - %27 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %28 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %27 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %28, i8* align 1 %29, i64 1, i1 false) - %30 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - %31 = load i32*, i32** %30, align 8 - call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %31, i64 0, i64 %24, i32 %26) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1) #7 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::vector"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %7 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %8 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %8 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %9, i32 0, i32 1 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %13 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %13 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %14, i32 0, i32 2 - %16 = load i32*, i32** %15, align 8 - %17 = icmp ne i32* %11, %16 - br i1 %17, label %18, label %34 - -18: ; preds = %2 - %19 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %20 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %20 to %"class.std::allocator"* - %22 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %23 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %23 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %24, i32 0, i32 1 - %26 = load i32*, i32** %25, align 8 - %27 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %21, i32* %26, i32* nonnull align 4 dereferenceable(4) %27) #3 - %28 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %29 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %28, i32 0, i32 0 - %30 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %29 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %30, i32 0, i32 1 - %32 = load i32*, i32** %31, align 8 - %33 = getelementptr inbounds i32, i32* %32, i32 1 - store i32* %33, i32** %31, align 8 - br label %40 - -34: ; preds = %2 - %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 - %36 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %35, i32** %36, align 8 - %37 = load i32*, i32** %4, align 8 - %38 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* nonnull dereferenceable(24) %6, i32* %39, i32* nonnull align 4 dereferenceable(4) %37) - br label %40 - -40: ; preds = %34, %18 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEESt7greaterIiEEvT_S9_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"struct.std::greater", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 1 - %7 = alloca %"struct.std::greater", align 1 - %8 = alloca i32, align 4 - %9 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - %13 = call nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %5) #3 - call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(1) %6) - %14 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4, i64 1) #3 - %15 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %9, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - %16 = call nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %9) #3 - %17 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %16) #3 - %18 = load i32, i32* %17, align 4 - store i32 %18, i32* %8, align 4 - %19 = bitcast %"class.__gnu_cxx::__normal_iterator"* %10 to i8* - %20 = bitcast %"class.__gnu_cxx::__normal_iterator"* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %19, i8* align 8 %20, i64 8, i1 false) - %21 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %3) #3 - %22 = sub nsw i64 %21, 1 - %23 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %8) #3 - %24 = load i32, i32* %23, align 4 - %25 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %10, i32 0, i32 0 - %26 = load i32*, i32** %25, align 8 - call void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(i32* %26, i64 %22, i64 0, i32 %24, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 1 dereferenceable(1) %6) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.std::vector"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i64, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %14, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %5, align 8 - store i32* %2, i32** %6, align 8 - %15 = load %"class.std::vector"*, %"class.std::vector"** %5, align 8 - %16 = call i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* nonnull dereferenceable(24) %15, i64 1, i8* getelementptr inbounds ([26 x i8], [26 x i8]* @.str.3, i64 0, i64 0)) - store i64 %16, i64* %7, align 8 - %17 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %18 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %17, i32 0, i32 0 - %19 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %18 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %20 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %19, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - store i32* %21, i32** %8, align 8 - %22 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %23 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %23 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %24, i32 0, i32 1 - %26 = load i32*, i32** %25, align 8 - store i32* %26, i32** %9, align 8 - %27 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %15) #3 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - store i32* %27, i32** %28, align 8 - %29 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - store i64 %29, i64* %10, align 8 - %30 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %31 = load i64, i64* %7, align 8 - %32 = call i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %30, i64 %31) - store i32* %32, i32** %12, align 8 - %33 = load i32*, i32** %12, align 8 - store i32* %33, i32** %13, align 8 - %34 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %35 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %35 to %"class.std::allocator"* - %37 = load i32*, i32** %12, align 8 - %38 = load i64, i64* %10, align 8 - %39 = getelementptr inbounds i32, i32* %37, i64 %38 - %40 = load i32*, i32** %6, align 8 - %41 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %40) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %36, i32* %39, i32* nonnull align 4 dereferenceable(4) %41) #3 - store i32* null, i32** %13, align 8 - %42 = load i32*, i32** %8, align 8 - %43 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %44 = load i32*, i32** %43, align 8 - %45 = load i32*, i32** %12, align 8 - %46 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %47 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %46) #3 - %48 = call i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* %42, i32* %44, i32* %45, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %47) #3 - store i32* %48, i32** %13, align 8 - %49 = load i32*, i32** %13, align 8 - %50 = getelementptr inbounds i32, i32* %49, i32 1 - store i32* %50, i32** %13, align 8 - %51 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %52 = load i32*, i32** %51, align 8 - %53 = load i32*, i32** %9, align 8 - %54 = load i32*, i32** %13, align 8 - %55 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %56 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %55) #3 - %57 = call i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* %52, i32* %53, i32* %54, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %56) #3 - store i32* %57, i32** %13, align 8 - %58 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %59 = load i32*, i32** %8, align 8 - %60 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %61 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %60, i32 0, i32 0 - %62 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %61 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %62, i32 0, i32 2 - %64 = load i32*, i32** %63, align 8 - %65 = load i32*, i32** %8, align 8 - %66 = ptrtoint i32* %64 to i64 - %67 = ptrtoint i32* %65 to i64 - %68 = sub i64 %66, %67 - %69 = sdiv exact i64 %68, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %58, i32* %59, i64 %69) - %70 = load i32*, i32** %12, align 8 - %71 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %72 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %71, i32 0, i32 0 - %73 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %72 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %74 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %73, i32 0, i32 0 - store i32* %70, i32** %74, align 8 - %75 = load i32*, i32** %13, align 8 - %76 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %77 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %76, i32 0, i32 0 - %78 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %77 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %78, i32 0, i32 1 - store i32* %75, i32** %79, align 8 - %80 = load i32*, i32** %12, align 8 - %81 = load i64, i64* %7, align 8 - %82 = getelementptr inbounds i32, i32* %80, i64 %81 - %83 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %84 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %83, i32 0, i32 0 - %85 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %84 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %86 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %85, i32 0, i32 2 - store i32* %82, i32** %86, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #7 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #7 comdat align 2 { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"struct.std::integral_constant", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %6, align 8 - %12 = load i32*, i32** %7, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %14 = call i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* %10, i32* %11, i32* %12, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13) #3 - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #7 comdat align 2 { - %5 = alloca %"struct.std::integral_constant", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %9, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = load i32*, i32** %8, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %14 = call i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %10, i32* %11, i32* %12, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13) #3 - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #7 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 - %13 = load i32*, i32** %7, align 8 - %14 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %13) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %16 = call i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* %10, i32* %12, i32* %14, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15) #3 - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #7 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i64, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = ptrtoint i32* %10 to i64 - %13 = ptrtoint i32* %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - store i64 %15, i64* %9, align 8 - %16 = load i64, i64* %9, align 8 - %17 = icmp sgt i64 %16, 0 - br i1 %17, label %18, label %25 - -18: ; preds = %4 - %19 = load i32*, i32** %7, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i32*, i32** %5, align 8 - %22 = bitcast i32* %21 to i8* - %23 = load i64, i64* %9, align 8 - %24 = mul i64 %23, 4 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %22, i64 %24, i1 false) - br label %25 - -25: ; preds = %18, %4 - %26 = load i32*, i32** %7, align 8 - %27 = load i64, i64* %9, align 8 - %28 = getelementptr inbounds i32, i32* %26, i64 %27 - ret i32* %28 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::greater", align 1 - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %4 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %5 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %4, i32 0, i32 0 - %6 = call nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* nonnull align 1 dereferenceable(1) %2) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - store i64 %1, i64* %5, align 8 - %7 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %8 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = load i64, i64* %5, align 8 - %11 = sub i64 0, %10 - %12 = getelementptr inbounds i32, i32* %9, i64 %11 - store i32* %12, i32** %6, align 8 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %3, i32** nonnull align 8 dereferenceable(8) %6) #3 - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - %14 = load i32*, i32** %13, align 8 - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %5 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %6 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %5) #3 - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %3, i32 0, i32 0 - store i32* %6, i32** %7, align 8 - %8 = call i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %5) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %4, i32 0, i32 0 - store i32* %8, i32** %9, align 8 - %10 = call zeroext i1 @_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %3, %"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %4) #3 - ret i1 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator.0"* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator.0"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %0, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - store %"class.__gnu_cxx::__normal_iterator.0"* %1, %"class.__gnu_cxx::__normal_iterator.0"** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %3, align 8 - %6 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %5) #3 - %7 = load i32*, i32** %6, align 8 - %8 = load %"class.__gnu_cxx::__normal_iterator.0"*, %"class.__gnu_cxx::__normal_iterator.0"** %4, align 8 - %9 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %8) #3 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.0", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.0", %"class.__gnu_cxx::__normal_iterator.0"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_Nearly_sorted_Algo.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { cold noreturn nounwind } -attributes #9 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { argmemonly nofree nosync nounwind willreturn } -attributes #11 = { noinline noreturn nounwind } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { convergent nofree nosync nounwind readnone willreturn } -attributes #14 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll deleted file mode 100644 index 938890e7..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll +++ /dev/null @@ -1,3087 +0,0 @@ -; ModuleID = 'PE-benchmarks/aho-corasick-algorithm.cpp' -source_filename = "PE-benchmarks/aho-corasick-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::queue" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } -%"class.__gnu_cxx::new_allocator.4" = type { i8 } - -$_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNSt5dequeIiSaIiEE5frontEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@out = dso_local global [500 x i32] zeroinitializer, align 16 -@f = dso_local global [500 x i32] zeroinitializer, align 16 -@g = dso_local global [500 x [26 x i32]] zeroinitializer, align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [6 x i8] c"Word \00", align 1 -@.str.1 = private unnamed_addr constant [15 x i8] c" appears from \00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c" to \00", align 1 -@.str.3 = private unnamed_addr constant [3 x i8] c"he\00", align 1 -@.str.4 = private unnamed_addr constant [4 x i8] c"she\00", align 1 -@.str.5 = private unnamed_addr constant [5 x i8] c"hers\00", align 1 -@.str.6 = private unnamed_addr constant [4 x i8] c"his\00", align 1 -@.str.7 = private unnamed_addr constant [9 x i8] c"ahishers\00", align 1 -@.str.8 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_aho_corasick_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::__cxx11::basic_string"* %0, i32 %1) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca %"class.std::queue", align 8 - %13 = alloca i32, align 4 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %3, align 8 - store i32 %1, i32* %4, align 4 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([500 x i32]* @out to i8*), i8 0, i64 2000, i1 false) - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([500 x [26 x i32]]* @g to i8*), i8 -1, i64 52000, i1 false) - store i32 1, i32* %5, align 4 - store i32 0, i32* %6, align 4 - br label %19 - -19: ; preds = %78, %2 - %20 = load i32, i32* %6, align 4 - %21 = load i32, i32* %4, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %81 - -23: ; preds = %19 - %24 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %3, align 8 - %25 = load i32, i32* %6, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %24, i64 %26 - store %"class.std::__cxx11::basic_string"* %27, %"class.std::__cxx11::basic_string"** %7, align 8 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %28 - -28: ; preds = %67, %23 - %29 = load i32, i32* %9, align 4 - %30 = sext i32 %29 to i64 - %31 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - %32 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %31) #3 - %33 = icmp ult i64 %30, %32 - br i1 %33, label %34, label %70 - -34: ; preds = %28 - %35 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %7, align 8 - %36 = load i32, i32* %9, align 4 - %37 = sext i32 %36 to i64 - %38 = call nonnull align 1 dereferenceable(1) i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %35, i64 %37) #3 - %39 = load i8, i8* %38, align 1 - %40 = sext i8 %39 to i32 - %41 = sub nsw i32 %40, 97 - store i32 %41, i32* %10, align 4 - %42 = load i32, i32* %8, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %43 - %45 = load i32, i32* %10, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds [26 x i32], [26 x i32]* %44, i64 0, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = icmp eq i32 %48, -1 - br i1 %49, label %50, label %59 - -50: ; preds = %34 - %51 = load i32, i32* %5, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %5, align 4 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %54 - %56 = load i32, i32* %10, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds [26 x i32], [26 x i32]* %55, i64 0, i64 %57 - store i32 %51, i32* %58, align 4 - br label %59 - -59: ; preds = %50, %34 - %60 = load i32, i32* %8, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %61 - %63 = load i32, i32* %10, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [26 x i32], [26 x i32]* %62, i64 0, i64 %64 - %66 = load i32, i32* %65, align 4 - store i32 %66, i32* %8, align 4 - br label %67 - -67: ; preds = %59 - %68 = load i32, i32* %9, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %9, align 4 - br label %28, !llvm.loop !2 - -70: ; preds = %28 - %71 = load i32, i32* %6, align 4 - %72 = shl i32 1, %71 - %73 = load i32, i32* %8, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %74 - %76 = load i32, i32* %75, align 4 - %77 = or i32 %76, %72 - store i32 %77, i32* %75, align 4 - br label %78 - -78: ; preds = %70 - %79 = load i32, i32* %6, align 4 - %80 = add nsw i32 %79, 1 - store i32 %80, i32* %6, align 4 - br label %19, !llvm.loop !4 - -81: ; preds = %19 - store i32 0, i32* %11, align 4 - br label %82 - -82: ; preds = %96, %81 - %83 = load i32, i32* %11, align 4 - %84 = icmp slt i32 %83, 26 - br i1 %84, label %85, label %99 - -85: ; preds = %82 - %86 = load i32, i32* %11, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = icmp eq i32 %89, -1 - br i1 %90, label %91, label %95 - -91: ; preds = %85 - %92 = load i32, i32* %11, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %93 - store i32 0, i32* %94, align 4 - br label %95 - -95: ; preds = %91, %85 - br label %96 - -96: ; preds = %95 - %97 = load i32, i32* %11, align 4 - %98 = add nsw i32 %97, 1 - store i32 %98, i32* %11, align 4 - br label %82, !llvm.loop !5 - -99: ; preds = %82 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([500 x i32]* @f to i8*), i8 -1, i64 2000, i1 false) - call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %12) - store i32 0, i32* %13, align 4 - br label %100 - -100: ; preds = %125, %99 - %101 = load i32, i32* %13, align 4 - %102 = icmp slt i32 %101, 26 - br i1 %102, label %103, label %128 - -103: ; preds = %100 - %104 = load i32, i32* %13, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %105 - %107 = load i32, i32* %106, align 4 - %108 = icmp ne i32 %107, 0 - br i1 %108, label %109, label %124 - -109: ; preds = %103 - %110 = load i32, i32* %13, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %111 - %113 = load i32, i32* %112, align 4 - %114 = sext i32 %113 to i64 - %115 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %114 - store i32 0, i32* %115, align 4 - %116 = load i32, i32* %13, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds [26 x i32], [26 x i32]* getelementptr inbounds ([500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 0), i64 0, i64 %117 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* nonnull dereferenceable(80) %12, i32* nonnull align 4 dereferenceable(4) %118) - to label %119 unwind label %120 - -119: ; preds = %109 - br label %124 - -120: ; preds = %169, %135, %133, %129, %109 - %121 = landingpad { i8*, i32 } - cleanup - %122 = extractvalue { i8*, i32 } %121, 0 - store i8* %122, i8** %14, align 8 - %123 = extractvalue { i8*, i32 } %121, 1 - store i32 %123, i32* %15, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %12) #3 - br label %216 - -124: ; preds = %119, %103 - br label %125 - -125: ; preds = %124 - %126 = load i32, i32* %13, align 4 - %127 = add nsw i32 %126, 1 - store i32 %127, i32* %13, align 4 - br label %100, !llvm.loop !6 - -128: ; preds = %100 - br label %129 - -129: ; preds = %213, %128 - %130 = invoke i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* nonnull dereferenceable(80) %12) - to label %131 unwind label %120 - -131: ; preds = %129 - %132 = icmp ne i64 %130, 0 - br i1 %132, label %133, label %214 - -133: ; preds = %131 - %134 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* nonnull dereferenceable(80) %12) - to label %135 unwind label %120 - -135: ; preds = %133 - %136 = load i32, i32* %134, align 4 - store i32 %136, i32* %16, align 4 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %12) - to label %137 unwind label %120 - -137: ; preds = %135 - store i32 0, i32* %17, align 4 - br label %138 - -138: ; preds = %210, %137 - %139 = load i32, i32* %17, align 4 - %140 = icmp sle i32 %139, 26 - br i1 %140, label %141, label %213 - -141: ; preds = %138 - %142 = load i32, i32* %16, align 4 - %143 = sext i32 %142 to i64 - %144 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %143 - %145 = load i32, i32* %17, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds [26 x i32], [26 x i32]* %144, i64 0, i64 %146 - %148 = load i32, i32* %147, align 4 - %149 = icmp ne i32 %148, -1 - br i1 %149, label %150, label %209 - -150: ; preds = %141 - %151 = load i32, i32* %16, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %152 - %154 = load i32, i32* %153, align 4 - store i32 %154, i32* %18, align 4 - br label %155 - -155: ; preds = %164, %150 - %156 = load i32, i32* %18, align 4 - %157 = sext i32 %156 to i64 - %158 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %157 - %159 = load i32, i32* %17, align 4 - %160 = sext i32 %159 to i64 - %161 = getelementptr inbounds [26 x i32], [26 x i32]* %158, i64 0, i64 %160 - %162 = load i32, i32* %161, align 4 - %163 = icmp eq i32 %162, -1 - br i1 %163, label %164, label %169 - -164: ; preds = %155 - %165 = load i32, i32* %18, align 4 - %166 = sext i32 %165 to i64 - %167 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %166 - %168 = load i32, i32* %167, align 4 - store i32 %168, i32* %18, align 4 - br label %155, !llvm.loop !7 - -169: ; preds = %155 - %170 = load i32, i32* %18, align 4 - %171 = sext i32 %170 to i64 - %172 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %171 - %173 = load i32, i32* %17, align 4 - %174 = sext i32 %173 to i64 - %175 = getelementptr inbounds [26 x i32], [26 x i32]* %172, i64 0, i64 %174 - %176 = load i32, i32* %175, align 4 - store i32 %176, i32* %18, align 4 - %177 = load i32, i32* %18, align 4 - %178 = load i32, i32* %16, align 4 - %179 = sext i32 %178 to i64 - %180 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %179 - %181 = load i32, i32* %17, align 4 - %182 = sext i32 %181 to i64 - %183 = getelementptr inbounds [26 x i32], [26 x i32]* %180, i64 0, i64 %182 - %184 = load i32, i32* %183, align 4 - %185 = sext i32 %184 to i64 - %186 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %185 - store i32 %177, i32* %186, align 4 - %187 = load i32, i32* %18, align 4 - %188 = sext i32 %187 to i64 - %189 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %188 - %190 = load i32, i32* %189, align 4 - %191 = load i32, i32* %16, align 4 - %192 = sext i32 %191 to i64 - %193 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %192 - %194 = load i32, i32* %17, align 4 - %195 = sext i32 %194 to i64 - %196 = getelementptr inbounds [26 x i32], [26 x i32]* %193, i64 0, i64 %195 - %197 = load i32, i32* %196, align 4 - %198 = sext i32 %197 to i64 - %199 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %198 - %200 = load i32, i32* %199, align 4 - %201 = or i32 %200, %190 - store i32 %201, i32* %199, align 4 - %202 = load i32, i32* %16, align 4 - %203 = sext i32 %202 to i64 - %204 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %203 - %205 = load i32, i32* %17, align 4 - %206 = sext i32 %205 to i64 - %207 = getelementptr inbounds [26 x i32], [26 x i32]* %204, i64 0, i64 %206 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* nonnull dereferenceable(80) %12, i32* nonnull align 4 dereferenceable(4) %207) - to label %208 unwind label %120 - -208: ; preds = %169 - br label %209 - -209: ; preds = %208, %141 - br label %210 - -210: ; preds = %209 - %211 = load i32, i32* %17, align 4 - %212 = add nsw i32 %211, 1 - store i32 %212, i32* %17, align 4 - br label %138, !llvm.loop !8 - -213: ; preds = %138 - br label %129, !llvm.loop !9 - -214: ; preds = %131 - %215 = load i32, i32* %5, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %12) #3 - ret i32 %215 - -216: ; preds = %120 - %217 = load i8*, i8** %14, align 8 - %218 = load i32, i32* %15, align 4 - %219 = insertvalue { i8*, i32 } undef, i8* %217, 0 - %220 = insertvalue { i8*, i32 } %219, i32 %218, 1 - resume { i8*, i32 } %220 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #5 - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: nounwind -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #2 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::queue"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::queue"*, %"class.std::queue"** %3, align 8 - %6 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %6, i32* nonnull align 4 dereferenceable(4) %7) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z13findNextStateic(i32 %0, i8 signext %1) #6 { - %3 = alloca i32, align 4 - %4 = alloca i8, align 1 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i8 %1, i8* %4, align 1 - %7 = load i32, i32* %3, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i8, i8* %4, align 1 - %9 = sext i8 %8 to i32 - %10 = sub nsw i32 %9, 97 - store i32 %10, i32* %6, align 4 - br label %11 - -11: ; preds = %20, %2 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %13 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [26 x i32], [26 x i32]* %14, i64 0, i64 %16 - %18 = load i32, i32* %17, align 4 - %19 = icmp eq i32 %18, -1 - br i1 %19, label %20, label %25 - -20: ; preds = %11 - %21 = load i32, i32* %5, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds [500 x i32], [500 x i32]* @f, i64 0, i64 %22 - %24 = load i32, i32* %23, align 4 - store i32 %24, i32* %5, align 4 - br label %11, !llvm.loop !10 - -25: ; preds = %11 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [500 x [26 x i32]], [500 x [26 x i32]]* @g, i64 0, i64 %27 - %29 = load i32, i32* %6, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [26 x i32], [26 x i32]* %28, i64 0, i64 %30 - %32 = load i32, i32* %31, align 4 - ret i32 %32 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(%"class.std::__cxx11::basic_string"* %0, i32 %1, %"class.std::__cxx11::basic_string"* %2) #4 { - %4 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %4, align 8 - store i32 %1, i32* %5, align 4 - %9 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %10 = load i32, i32* %5, align 4 - %11 = call i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::__cxx11::basic_string"* %9, i32 %10) - store i32 0, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %12 - -12: ; preds = %71, %3 - %13 = load i32, i32* %7, align 4 - %14 = sext i32 %13 to i64 - %15 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %16 = icmp ult i64 %14, %15 - br i1 %16, label %17, label %74 - -17: ; preds = %12 - %18 = load i32, i32* %6, align 4 - %19 = load i32, i32* %7, align 4 - %20 = sext i32 %19 to i64 - %21 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i64 %20) - %22 = load i8, i8* %21, align 1 - %23 = call i32 @_Z13findNextStateic(i32 %18, i8 signext %22) - store i32 %23, i32* %6, align 4 - %24 = load i32, i32* %6, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = icmp eq i32 %27, 0 - br i1 %28, label %29, label %30 - -29: ; preds = %17 - br label %71 - -30: ; preds = %17 - store i32 0, i32* %8, align 4 - br label %31 - -31: ; preds = %67, %30 - %32 = load i32, i32* %8, align 4 - %33 = load i32, i32* %5, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %70 - -35: ; preds = %31 - %36 = load i32, i32* %6, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds [500 x i32], [500 x i32]* @out, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %8, align 4 - %41 = shl i32 1, %40 - %42 = and i32 %39, %41 - %43 = icmp ne i32 %42, 0 - br i1 %43, label %44, label %66 - -44: ; preds = %35 - %45 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0)) - %46 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %46, i64 %48 - %50 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %45, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %49) - %51 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %50, i8* getelementptr inbounds ([15 x i8], [15 x i8]* @.str.1, i64 0, i64 0)) - %52 = load i32, i32* %7, align 4 - %53 = sext i32 %52 to i64 - %54 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %55 = load i32, i32* %8, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %54, i64 %56 - %58 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %57) #3 - %59 = sub i64 %53, %58 - %60 = add i64 %59, 1 - %61 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* nonnull dereferenceable(8) %51, i64 %60) - %62 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %61, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0)) - %63 = load i32, i32* %7, align 4 - %64 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %62, i32 %63) - %65 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %64, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %66 - -66: ; preds = %44, %35 - br label %67 - -67: ; preds = %66 - %68 = load i32, i32* %8, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %8, align 4 - br label %31, !llvm.loop !11 - -70: ; preds = %31 - br label %71 - -71: ; preds = %70, %29 - %72 = load i32, i32* %7, align 4 - %73 = add nsw i32 %72, 1 - store i32 %73, i32* %7, align 4 - br label %12, !llvm.loop !12 - -74: ; preds = %12 - ret void -} - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* nonnull dereferenceable(8), i64) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca [4 x %"class.std::__cxx11::basic_string"], align 16 - %3 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %4 = alloca %"class.std::allocator", align 1 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::allocator", align 1 - %9 = alloca %"class.std::allocator", align 1 - %10 = alloca i1, align 1 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::allocator", align 1 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - %15 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %2, i64 0, i64 0 - store i1 true, i1* %10, align 1 - store %"class.std::__cxx11::basic_string"* %15, %"class.std::__cxx11::basic_string"** %3, align 8 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.3, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %4) - to label %16 unwind label %30 - -16: ; preds = %0 - %17 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %15, i64 1 - store %"class.std::__cxx11::basic_string"* %17, %"class.std::__cxx11::basic_string"** %3, align 8 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) - to label %18 unwind label %34 - -18: ; preds = %16 - %19 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %17, i64 1 - store %"class.std::__cxx11::basic_string"* %19, %"class.std::__cxx11::basic_string"** %3, align 8 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.5, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %8) - to label %20 unwind label %38 - -20: ; preds = %18 - %21 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %19, i64 1 - store %"class.std::__cxx11::basic_string"* %21, %"class.std::__cxx11::basic_string"** %3, align 8 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %9) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %21, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.6, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) - to label %22 unwind label %42 - -22: ; preds = %20 - store i1 false, i1* %10, align 1 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %9) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11, i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str.7, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %12) - to label %23 unwind label %59 - -23: ; preds = %22 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 - store i32 4, i32* %13, align 4 - %24 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %2, i64 0, i64 0 - %25 = load i32, i32* %13, align 4 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %11) - to label %26 unwind label %63 - -26: ; preds = %23 - invoke void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(%"class.std::__cxx11::basic_string"* %24, i32 %25, %"class.std::__cxx11::basic_string"* %14) - to label %27 unwind label %67 - -27: ; preds = %26 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - %28 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %2, i32 0, i32 0 - %29 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %28, i64 4 - br label %72 - -30: ; preds = %0 - %31 = landingpad { i8*, i32 } - cleanup - %32 = extractvalue { i8*, i32 } %31, 0 - store i8* %32, i8** %5, align 8 - %33 = extractvalue { i8*, i32 } %31, 1 - store i32 %33, i32* %6, align 4 - br label %48 - -34: ; preds = %16 - %35 = landingpad { i8*, i32 } - cleanup - %36 = extractvalue { i8*, i32 } %35, 0 - store i8* %36, i8** %5, align 8 - %37 = extractvalue { i8*, i32 } %35, 1 - store i32 %37, i32* %6, align 4 - br label %47 - -38: ; preds = %18 - %39 = landingpad { i8*, i32 } - cleanup - %40 = extractvalue { i8*, i32 } %39, 0 - store i8* %40, i8** %5, align 8 - %41 = extractvalue { i8*, i32 } %39, 1 - store i32 %41, i32* %6, align 4 - br label %46 - -42: ; preds = %20 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %5, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %6, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %9) #3 - br label %46 - -46: ; preds = %42, %38 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - br label %47 - -47: ; preds = %46, %34 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - br label %48 - -48: ; preds = %47, %30 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %49 = load i1, i1* %10, align 1 - br i1 %49, label %50, label %58 - -50: ; preds = %48 - %51 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %3, align 8 - %52 = icmp eq %"class.std::__cxx11::basic_string"* %15, %51 - br i1 %52, label %57, label %53 - -53: ; preds = %53, %50 - %54 = phi %"class.std::__cxx11::basic_string"* [ %51, %50 ], [ %55, %53 ] - %55 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %54, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %55) #3 - %56 = icmp eq %"class.std::__cxx11::basic_string"* %55, %15 - br i1 %56, label %57, label %53 - -57: ; preds = %53, %50 - br label %58 - -58: ; preds = %57, %48 - br label %86 - -59: ; preds = %22 - %60 = landingpad { i8*, i32 } - cleanup - %61 = extractvalue { i8*, i32 } %60, 0 - store i8* %61, i8** %5, align 8 - %62 = extractvalue { i8*, i32 } %60, 1 - store i32 %62, i32* %6, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 - br label %78 - -63: ; preds = %23 - %64 = landingpad { i8*, i32 } - cleanup - %65 = extractvalue { i8*, i32 } %64, 0 - store i8* %65, i8** %5, align 8 - %66 = extractvalue { i8*, i32 } %64, 1 - store i32 %66, i32* %6, align 4 - br label %71 - -67: ; preds = %26 - %68 = landingpad { i8*, i32 } - cleanup - %69 = extractvalue { i8*, i32 } %68, 0 - store i8* %69, i8** %5, align 8 - %70 = extractvalue { i8*, i32 } %68, 1 - store i32 %70, i32* %6, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - br label %71 - -71: ; preds = %67, %63 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - br label %78 - -72: ; preds = %72, %27 - %73 = phi %"class.std::__cxx11::basic_string"* [ %29, %27 ], [ %74, %72 ] - %74 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %73, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %74) #3 - %75 = icmp eq %"class.std::__cxx11::basic_string"* %74, %28 - br i1 %75, label %76, label %72 - -76: ; preds = %72 - %77 = load i32, i32* %1, align 4 - ret i32 %77 - -78: ; preds = %71, %59 - %79 = getelementptr inbounds [4 x %"class.std::__cxx11::basic_string"], [4 x %"class.std::__cxx11::basic_string"]* %2, i32 0, i32 0 - %80 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %79, i64 4 - br label %81 - -81: ; preds = %81, %78 - %82 = phi %"class.std::__cxx11::basic_string"* [ %80, %78 ], [ %83, %81 ] - %83 = getelementptr inbounds %"class.std::__cxx11::basic_string", %"class.std::__cxx11::basic_string"* %82, i64 -1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %83) #3 - %84 = icmp eq %"class.std::__cxx11::basic_string"* %83, %79 - br i1 %84, label %85, label %81 - -85: ; preds = %81 - br label %86 - -86: ; preds = %85, %58 - %87 = load i8*, i8** %5, align 8 - %88 = load i32, i32* %6, align 4 - %89 = insertvalue { i8*, i32 } undef, i8* %87, 0 - %90 = insertvalue { i8*, i32 } %89, i32 %88, 1 - resume { i8*, i32 } %90 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %7, %"struct.std::_Deque_iterator"* %3, %"struct.std::_Deque_iterator"* %4, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %9) - to label %10 unwind label %12 - -10: ; preds = %1 - %11 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) #3 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %16) #3 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %0, %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"* %2, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %3) #6 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %14, i32** %20) #3 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %24, i64 %28) #3 - br label %29 - -29: ; preds = %9, %1 - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %30) #3 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #9 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #14 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #6 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, i32* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !13 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i64 %2) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.3", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load i32**, i32*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %7, i32** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32* %1) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = load i32*, i32** %4, align 8 - %9 = invoke i64 @_ZSt16__deque_buf_sizem(i64 4) - to label %10 unwind label %12 - -10: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, i32* %8, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %10 - ret void - -12: ; preds = %10, %2 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - call void @__clang_call_terminate(i8* %14) #14 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #6 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #10 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* noalias sret(%"class.std::allocator.3") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i32** %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %8 = bitcast %"class.std::allocator.3"* %7 to %"class.__gnu_cxx::new_allocator.4"* - %9 = load i32**, i32*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %8, i32** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator.3"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %2, align 8 - %3 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %2, align 8 - %4 = bitcast %"class.std::allocator.3"* %3 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store %"class.std::allocator.0"* %1, %"class.std::allocator.0"** %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i32** %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %47, i32** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #15 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, i32** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load i32**, i32*** %9, align 8 - %85 = getelementptr inbounds i32*, i32** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, i32** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds i32, i32* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #14 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #6 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - ret i32** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !14 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load i32**, i32*** %5, align 8 - %31 = load i32**, i32*** %7, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, i32** %30, i32** %31) #3 - invoke void @__cxa_rethrow() #15 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #14 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, i32** %1) #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds i32, i32* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store i32* %14, i32** %15, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - %7 = load i64, i64* %4, align 8 - %8 = call i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32** %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #16 - %16 = bitcast i8* %15 to i32** - ret i32** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #12 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #4 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %7 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret i32* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #16 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #6 comdat align 2 { - %1 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - ret i64 %1 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 -1 - %19 = icmp ne i32* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator.0"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %23, i32* %29, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - %37 = getelementptr inbounds i32, i32* %36, i32 1 - store i32* %37, i32** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, i32* nonnull align 4 dereferenceable(4) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.8, i64 0, i64 0)) #15 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i64 1 - store i32* %12, i32** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator.0"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = load i32*, i32** %4, align 8 - %30 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %29) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %22, i32* %28, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load i32**, i32*** %39, align 8 - %41 = getelementptr inbounds i32*, i32** %40, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, i32** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load i32*, i32** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store i32* %47, i32** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #6 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #11 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #6 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load i32*, i32** %22, align 8 - %24 = ptrtoint i32* %20 to i64 - %25 = ptrtoint i32* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 4 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = ptrtoint i32* %31 to i64 - %36 = ptrtoint i32* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 4 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #6 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #4 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %79, i32** %86, i32** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %95, i32** %102, i32** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store i32** %124, i32*** %11, align 8 - %125 = load i32**, i32*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %144, i32** %151, i32** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, i32** %159, i64 %164) #3 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, i32** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, i32** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #6 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %0, i32** %1) #6 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #6 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #6 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32**, i32*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32*, i32** %24, i64 %25 - ret i32** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #13 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #6 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32**, i32*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32*, i32** %27, i64 %29 - ret i32** %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 2 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 2 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 2 - %15 = load i32*, i32** %14, align 8 - %16 = getelementptr inbounds i32, i32* %15, i64 -1 - %17 = icmp ne i32* %9, %16 - br i1 %17, label %18, label %34 - -18: ; preds = %1 - %19 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %20 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %19) #3 - %21 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %23, i32 0, i32 2 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 - %26 = load i32*, i32** %25, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %20, i32* %26) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 2 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - %33 = getelementptr inbounds i32, i32* %32, i32 1 - store i32* %33, i32** %31, align 8 - br label %36 - -34: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %35 unwind label %37 - -35: ; preds = %34 - br label %36 - -36: ; preds = %35, %18 - ret void - -37: ; preds = %34 - %38 = landingpad { i8*, i32 } - catch i8* null - %39 = extractvalue { i8*, i32 } %38, 0 - call void @__clang_call_terminate(i8* %39) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1) #6 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 2 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i32* %11) #3 - %12 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %13 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 2 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 1 - %18 = load i32*, i32** %17, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32* %18) #3 - %19 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 2 - %23 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 2 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 3 - %28 = load i32**, i32*** %27, align 8 - %29 = getelementptr inbounds i32*, i32** %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %22, i32** %29) #3 - %30 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 2 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 1 - %35 = load i32*, i32** %34, align 8 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 2 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - store i32* %35, i32** %40, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1) #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_aho_corasick_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { noinline noreturn nounwind } -attributes #10 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { argmemonly nofree nosync nounwind willreturn } -attributes #14 = { noreturn nounwind } -attributes #15 = { noreturn } -attributes #16 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} -!13 = distinct !{!13, !3} -!14 = distinct !{!14, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll deleted file mode 100644 index 6217e62a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll +++ /dev/null @@ -1,297 +0,0 @@ -; ModuleID = 'PE-benchmarks/anagram-substring-search-search-permutations.cpp' -source_filename = "PE-benchmarks/anagram-substring-search-search-permutations.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [16 x i8] c"Found at Index \00", align 1 -@__const.main.txt = private unnamed_addr constant [11 x i8] c"BACDGABCDA\00", align 1 -@__const.main.pat = private unnamed_addr constant [5 x i8] c"ABCD\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z7comparePcS_(i8* %0, i8* %1) #4 { - %3 = alloca i1, align 1 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i8* %1, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %7 - -7: ; preds = %26, %2 - %8 = load i32, i32* %6, align 4 - %9 = icmp slt i32 %8, 256 - br i1 %9, label %10, label %29 - -10: ; preds = %7 - %11 = load i8*, i8** %4, align 8 - %12 = load i32, i32* %6, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - %15 = load i8, i8* %14, align 1 - %16 = sext i8 %15 to i32 - %17 = load i8*, i8** %5, align 8 - %18 = load i32, i32* %6, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i8, i8* %17, i64 %19 - %21 = load i8, i8* %20, align 1 - %22 = sext i8 %21 to i32 - %23 = icmp ne i32 %16, %22 - br i1 %23, label %24, label %25 - -24: ; preds = %10 - store i1 false, i1* %3, align 1 - br label %30 - -25: ; preds = %10 - br label %26 - -26: ; preds = %25 - %27 = load i32, i32* %6, align 4 - %28 = add nsw i32 %27, 1 - store i32 %28, i32* %6, align 4 - br label %7, !llvm.loop !2 - -29: ; preds = %7 - store i1 true, i1* %3, align 1 - br label %30 - -30: ; preds = %29, %24 - %31 = load i1, i1* %3, align 1 - ret i1 %31 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca [256 x i8], align 16 - %8 = alloca [256 x i8], align 16 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* %11) #10 - %13 = trunc i64 %12 to i32 - store i32 %13, i32* %5, align 4 - %14 = load i8*, i8** %4, align 8 - %15 = call i64 @strlen(i8* %14) #10 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = bitcast [256 x i8]* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %17, i8 0, i64 256, i1 false) - %18 = bitcast [256 x i8]* %8 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %18, i8 0, i64 256, i1 false) - store i32 0, i32* %9, align 4 - br label %19 - -19: ; preds = %42, %2 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %45 - -23: ; preds = %19 - %24 = load i8*, i8** %3, align 8 - %25 = load i32, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %24, i64 %26 - %28 = load i8, i8* %27, align 1 - %29 = sext i8 %28 to i64 - %30 = getelementptr inbounds [256 x i8], [256 x i8]* %7, i64 0, i64 %29 - %31 = load i8, i8* %30, align 1 - %32 = add i8 %31, 1 - store i8 %32, i8* %30, align 1 - %33 = load i8*, i8** %4, align 8 - %34 = load i32, i32* %9, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i8, i8* %33, i64 %35 - %37 = load i8, i8* %36, align 1 - %38 = sext i8 %37 to i64 - %39 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 %38 - %40 = load i8, i8* %39, align 1 - %41 = add i8 %40, 1 - store i8 %41, i8* %39, align 1 - br label %42 - -42: ; preds = %23 - %43 = load i32, i32* %9, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %9, align 4 - br label %19, !llvm.loop !4 - -45: ; preds = %19 - %46 = load i32, i32* %5, align 4 - store i32 %46, i32* %10, align 4 - br label %47 - -47: ; preds = %83, %45 - %48 = load i32, i32* %10, align 4 - %49 = load i32, i32* %6, align 4 - %50 = icmp slt i32 %48, %49 - br i1 %50, label %51, label %86 - -51: ; preds = %47 - %52 = getelementptr inbounds [256 x i8], [256 x i8]* %7, i64 0, i64 0 - %53 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 0 - %54 = call zeroext i1 @_Z7comparePcS_(i8* %52, i8* %53) - br i1 %54, label %55, label %62 - -55: ; preds = %51 - %56 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([16 x i8], [16 x i8]* @.str, i64 0, i64 0)) - %57 = load i32, i32* %10, align 4 - %58 = load i32, i32* %5, align 4 - %59 = sub nsw i32 %57, %58 - %60 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %56, i32 %59) - %61 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %60, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %62 - -62: ; preds = %55, %51 - %63 = load i8*, i8** %4, align 8 - %64 = load i32, i32* %10, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds i8, i8* %63, i64 %65 - %67 = load i8, i8* %66, align 1 - %68 = sext i8 %67 to i64 - %69 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 %68 - %70 = load i8, i8* %69, align 1 - %71 = add i8 %70, 1 - store i8 %71, i8* %69, align 1 - %72 = load i8*, i8** %4, align 8 - %73 = load i32, i32* %10, align 4 - %74 = load i32, i32* %5, align 4 - %75 = sub nsw i32 %73, %74 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i8, i8* %72, i64 %76 - %78 = load i8, i8* %77, align 1 - %79 = sext i8 %78 to i64 - %80 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 %79 - %81 = load i8, i8* %80, align 1 - %82 = add i8 %81, -1 - store i8 %82, i8* %80, align 1 - br label %83 - -83: ; preds = %62 - %84 = load i32, i32* %10, align 4 - %85 = add nsw i32 %84, 1 - store i32 %85, i32* %10, align 4 - br label %47, !llvm.loop !5 - -86: ; preds = %47 - %87 = getelementptr inbounds [256 x i8], [256 x i8]* %7, i64 0, i64 0 - %88 = getelementptr inbounds [256 x i8], [256 x i8]* %8, i64 0, i64 0 - %89 = call zeroext i1 @_Z7comparePcS_(i8* %87, i8* %88) - br i1 %89, label %90, label %97 - -90: ; preds = %86 - %91 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([16 x i8], [16 x i8]* @.str, i64 0, i64 0)) - %92 = load i32, i32* %6, align 4 - %93 = load i32, i32* %5, align 4 - %94 = sub nsw i32 %92, %93 - %95 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %91, i32 %94) - %96 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %95, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %97 - -97: ; preds = %90, %86 - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #6 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [11 x i8], align 1 - %3 = alloca [5 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [11 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %4, i8* align 1 getelementptr inbounds ([11 x i8], [11 x i8]* @__const.main.txt, i32 0, i32 0), i64 11, i1 false) - %5 = bitcast [5 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.pat, i32 0, i32 0), i64 5, i1 false) - %6 = getelementptr inbounds [5 x i8], [5 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [11 x i8], [11 x i8]* %2, i64 0, i64 0 - call void @_Z6searchPcS_(i8* %6, i8* %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll deleted file mode 100644 index bf65a43a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll +++ /dev/null @@ -1,555 +0,0 @@ -; ModuleID = 'PE-benchmarks/bellman-ford-algorithm.cpp' -source_filename = "PE-benchmarks/bellman-ford-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%struct.Graph = type { i32, i32, %struct.Edge* } -%struct.Edge = type { i32, i32, i32 } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@.str = private unnamed_addr constant [29 x i8] c"Vertex Distance from Source\0A\00", align 1 -@.str.1 = private unnamed_addr constant [10 x i8] c"%d \09\09 %d\0A\00", align 1 -@.str.2 = private unnamed_addr constant [37 x i8] c"Graph contains negative weight cycle\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_bellman_ford_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca %struct.Graph*, align 8 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 16) #9 - %7 = bitcast i8* %6 to %struct.Graph* - store %struct.Graph* %7, %struct.Graph** %5, align 8 - %8 = load i32, i32* %3, align 4 - %9 = load %struct.Graph*, %struct.Graph** %5, align 8 - %10 = getelementptr inbounds %struct.Graph, %struct.Graph* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load i32, i32* %4, align 4 - %12 = load %struct.Graph*, %struct.Graph** %5, align 8 - %13 = getelementptr inbounds %struct.Graph, %struct.Graph* %12, i32 0, i32 1 - store i32 %11, i32* %13, align 4 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 12) - %17 = extractvalue { i64, i1 } %16, 1 - %18 = extractvalue { i64, i1 } %16, 0 - %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias nonnull i8* @_Znam(i64 %19) #9 - %21 = bitcast i8* %20 to %struct.Edge* - %22 = load %struct.Graph*, %struct.Graph** %5, align 8 - %23 = getelementptr inbounds %struct.Graph, %struct.Graph* %22, i32 0, i32 2 - store %struct.Edge* %21, %struct.Edge** %23, align 8 - %24 = load %struct.Graph*, %struct.Graph** %5, align 8 - ret %struct.Graph* %24 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #6 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str, i64 0, i64 0)) - store i32 0, i32* %5, align 4 - br label %7 - -7: ; preds = %19, %2 - %8 = load i32, i32* %5, align 4 - %9 = load i32, i32* %4, align 4 - %10 = icmp slt i32 %8, %9 - br i1 %10, label %11, label %22 - -11: ; preds = %7 - %12 = load i32, i32* %5, align 4 - %13 = load i32*, i32** %3, align 8 - %14 = load i32, i32* %5, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i32, i32* %13, i64 %15 - %17 = load i32, i32* %16, align 4 - %18 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([10 x i8], [10 x i8]* @.str.1, i64 0, i64 0), i32 %12, i32 %17) - br label %19 - -19: ; preds = %11 - %20 = load i32, i32* %5, align 4 - %21 = add nsw i32 %20, 1 - store i32 %21, i32* %5, align 4 - br label %7, !llvm.loop !2 - -22: ; preds = %7 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { - %3 = alloca %struct.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - store %struct.Graph* %0, %struct.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %20 = load %struct.Graph*, %struct.Graph** %3, align 8 - %21 = getelementptr inbounds %struct.Graph, %struct.Graph* %20, i32 0, i32 0 - %22 = load i32, i32* %21, align 8 - store i32 %22, i32* %5, align 4 - %23 = load %struct.Graph*, %struct.Graph** %3, align 8 - %24 = getelementptr inbounds %struct.Graph, %struct.Graph* %23, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - store i32 %25, i32* %6, align 4 - %26 = load i32, i32* %5, align 4 - %27 = zext i32 %26 to i64 - %28 = call i8* @llvm.stacksave() - store i8* %28, i8** %7, align 8 - %29 = alloca i32, i64 %27, align 16 - store i64 %27, i64* %8, align 8 - store i32 0, i32* %9, align 4 - br label %30 - -30: ; preds = %38, %2 - %31 = load i32, i32* %9, align 4 - %32 = load i32, i32* %5, align 4 - %33 = icmp slt i32 %31, %32 - br i1 %33, label %34, label %41 - -34: ; preds = %30 - %35 = load i32, i32* %9, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %29, i64 %36 - store i32 2147483647, i32* %37, align 4 - br label %38 - -38: ; preds = %34 - %39 = load i32, i32* %9, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %9, align 4 - br label %30, !llvm.loop !4 - -41: ; preds = %30 - %42 = load i32, i32* %4, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %29, i64 %43 - store i32 0, i32* %44, align 4 - store i32 1, i32* %10, align 4 - br label %45 - -45: ; preds = %112, %41 - %46 = load i32, i32* %10, align 4 - %47 = load i32, i32* %5, align 4 - %48 = sub nsw i32 %47, 1 - %49 = icmp sle i32 %46, %48 - br i1 %49, label %50, label %115 - -50: ; preds = %45 - store i32 0, i32* %11, align 4 - br label %51 - -51: ; preds = %108, %50 - %52 = load i32, i32* %11, align 4 - %53 = load i32, i32* %6, align 4 - %54 = icmp slt i32 %52, %53 - br i1 %54, label %55, label %111 - -55: ; preds = %51 - %56 = load %struct.Graph*, %struct.Graph** %3, align 8 - %57 = getelementptr inbounds %struct.Graph, %struct.Graph* %56, i32 0, i32 2 - %58 = load %struct.Edge*, %struct.Edge** %57, align 8 - %59 = load i32, i32* %11, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds %struct.Edge, %struct.Edge* %58, i64 %60 - %62 = getelementptr inbounds %struct.Edge, %struct.Edge* %61, i32 0, i32 0 - %63 = load i32, i32* %62, align 4 - store i32 %63, i32* %12, align 4 - %64 = load %struct.Graph*, %struct.Graph** %3, align 8 - %65 = getelementptr inbounds %struct.Graph, %struct.Graph* %64, i32 0, i32 2 - %66 = load %struct.Edge*, %struct.Edge** %65, align 8 - %67 = load i32, i32* %11, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds %struct.Edge, %struct.Edge* %66, i64 %68 - %70 = getelementptr inbounds %struct.Edge, %struct.Edge* %69, i32 0, i32 1 - %71 = load i32, i32* %70, align 4 - store i32 %71, i32* %13, align 4 - %72 = load %struct.Graph*, %struct.Graph** %3, align 8 - %73 = getelementptr inbounds %struct.Graph, %struct.Graph* %72, i32 0, i32 2 - %74 = load %struct.Edge*, %struct.Edge** %73, align 8 - %75 = load i32, i32* %11, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds %struct.Edge, %struct.Edge* %74, i64 %76 - %78 = getelementptr inbounds %struct.Edge, %struct.Edge* %77, i32 0, i32 2 - %79 = load i32, i32* %78, align 4 - store i32 %79, i32* %14, align 4 - %80 = load i32, i32* %12, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i32, i32* %29, i64 %81 - %83 = load i32, i32* %82, align 4 - %84 = icmp ne i32 %83, 2147483647 - br i1 %84, label %85, label %107 - -85: ; preds = %55 - %86 = load i32, i32* %12, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %29, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = load i32, i32* %14, align 4 - %91 = add nsw i32 %89, %90 - %92 = load i32, i32* %13, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %29, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = icmp slt i32 %91, %95 - br i1 %96, label %97, label %107 - -97: ; preds = %85 - %98 = load i32, i32* %12, align 4 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i32, i32* %29, i64 %99 - %101 = load i32, i32* %100, align 4 - %102 = load i32, i32* %14, align 4 - %103 = add nsw i32 %101, %102 - %104 = load i32, i32* %13, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %29, i64 %105 - store i32 %103, i32* %106, align 4 - br label %107 - -107: ; preds = %97, %85, %55 - br label %108 - -108: ; preds = %107 - %109 = load i32, i32* %11, align 4 - %110 = add nsw i32 %109, 1 - store i32 %110, i32* %11, align 4 - br label %51, !llvm.loop !5 - -111: ; preds = %51 - br label %112 - -112: ; preds = %111 - %113 = load i32, i32* %10, align 4 - %114 = add nsw i32 %113, 1 - store i32 %114, i32* %10, align 4 - br label %45, !llvm.loop !6 - -115: ; preds = %45 - store i32 0, i32* %15, align 4 - br label %116 - -116: ; preds = %165, %115 - %117 = load i32, i32* %15, align 4 - %118 = load i32, i32* %6, align 4 - %119 = icmp slt i32 %117, %118 - br i1 %119, label %120, label %168 - -120: ; preds = %116 - %121 = load %struct.Graph*, %struct.Graph** %3, align 8 - %122 = getelementptr inbounds %struct.Graph, %struct.Graph* %121, i32 0, i32 2 - %123 = load %struct.Edge*, %struct.Edge** %122, align 8 - %124 = load i32, i32* %15, align 4 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds %struct.Edge, %struct.Edge* %123, i64 %125 - %127 = getelementptr inbounds %struct.Edge, %struct.Edge* %126, i32 0, i32 0 - %128 = load i32, i32* %127, align 4 - store i32 %128, i32* %16, align 4 - %129 = load %struct.Graph*, %struct.Graph** %3, align 8 - %130 = getelementptr inbounds %struct.Graph, %struct.Graph* %129, i32 0, i32 2 - %131 = load %struct.Edge*, %struct.Edge** %130, align 8 - %132 = load i32, i32* %15, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds %struct.Edge, %struct.Edge* %131, i64 %133 - %135 = getelementptr inbounds %struct.Edge, %struct.Edge* %134, i32 0, i32 1 - %136 = load i32, i32* %135, align 4 - store i32 %136, i32* %17, align 4 - %137 = load %struct.Graph*, %struct.Graph** %3, align 8 - %138 = getelementptr inbounds %struct.Graph, %struct.Graph* %137, i32 0, i32 2 - %139 = load %struct.Edge*, %struct.Edge** %138, align 8 - %140 = load i32, i32* %15, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds %struct.Edge, %struct.Edge* %139, i64 %141 - %143 = getelementptr inbounds %struct.Edge, %struct.Edge* %142, i32 0, i32 2 - %144 = load i32, i32* %143, align 4 - store i32 %144, i32* %18, align 4 - %145 = load i32, i32* %16, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds i32, i32* %29, i64 %146 - %148 = load i32, i32* %147, align 4 - %149 = icmp ne i32 %148, 2147483647 - br i1 %149, label %150, label %164 - -150: ; preds = %120 - %151 = load i32, i32* %16, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds i32, i32* %29, i64 %152 - %154 = load i32, i32* %153, align 4 - %155 = load i32, i32* %18, align 4 - %156 = add nsw i32 %154, %155 - %157 = load i32, i32* %17, align 4 - %158 = sext i32 %157 to i64 - %159 = getelementptr inbounds i32, i32* %29, i64 %158 - %160 = load i32, i32* %159, align 4 - %161 = icmp slt i32 %156, %160 - br i1 %161, label %162, label %164 - -162: ; preds = %150 - %163 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([37 x i8], [37 x i8]* @.str.2, i64 0, i64 0)) - store i32 1, i32* %19, align 4 - br label %170 - -164: ; preds = %150, %120 - br label %165 - -165: ; preds = %164 - %166 = load i32, i32* %15, align 4 - %167 = add nsw i32 %166, 1 - store i32 %167, i32* %15, align 4 - br label %116, !llvm.loop !7 - -168: ; preds = %116 - %169 = load i32, i32* %5, align 4 - call void @_Z8printArrPii(i32* %29, i32 %169) - store i32 1, i32* %19, align 4 - br label %170 - -170: ; preds = %168, %162 - %171 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %171) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #7 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #7 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca %struct.Graph*, align 8 - store i32 0, i32* %1, align 4 - store i32 5, i32* %2, align 4 - store i32 8, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call %struct.Graph* @_Z11createGraphii(i32 %5, i32 %6) - store %struct.Graph* %7, %struct.Graph** %4, align 8 - %8 = load %struct.Graph*, %struct.Graph** %4, align 8 - %9 = getelementptr inbounds %struct.Graph, %struct.Graph* %8, i32 0, i32 2 - %10 = load %struct.Edge*, %struct.Edge** %9, align 8 - %11 = getelementptr inbounds %struct.Edge, %struct.Edge* %10, i64 0 - %12 = getelementptr inbounds %struct.Edge, %struct.Edge* %11, i32 0, i32 0 - store i32 0, i32* %12, align 4 - %13 = load %struct.Graph*, %struct.Graph** %4, align 8 - %14 = getelementptr inbounds %struct.Graph, %struct.Graph* %13, i32 0, i32 2 - %15 = load %struct.Edge*, %struct.Edge** %14, align 8 - %16 = getelementptr inbounds %struct.Edge, %struct.Edge* %15, i64 0 - %17 = getelementptr inbounds %struct.Edge, %struct.Edge* %16, i32 0, i32 1 - store i32 1, i32* %17, align 4 - %18 = load %struct.Graph*, %struct.Graph** %4, align 8 - %19 = getelementptr inbounds %struct.Graph, %struct.Graph* %18, i32 0, i32 2 - %20 = load %struct.Edge*, %struct.Edge** %19, align 8 - %21 = getelementptr inbounds %struct.Edge, %struct.Edge* %20, i64 0 - %22 = getelementptr inbounds %struct.Edge, %struct.Edge* %21, i32 0, i32 2 - store i32 -1, i32* %22, align 4 - %23 = load %struct.Graph*, %struct.Graph** %4, align 8 - %24 = getelementptr inbounds %struct.Graph, %struct.Graph* %23, i32 0, i32 2 - %25 = load %struct.Edge*, %struct.Edge** %24, align 8 - %26 = getelementptr inbounds %struct.Edge, %struct.Edge* %25, i64 1 - %27 = getelementptr inbounds %struct.Edge, %struct.Edge* %26, i32 0, i32 0 - store i32 0, i32* %27, align 4 - %28 = load %struct.Graph*, %struct.Graph** %4, align 8 - %29 = getelementptr inbounds %struct.Graph, %struct.Graph* %28, i32 0, i32 2 - %30 = load %struct.Edge*, %struct.Edge** %29, align 8 - %31 = getelementptr inbounds %struct.Edge, %struct.Edge* %30, i64 1 - %32 = getelementptr inbounds %struct.Edge, %struct.Edge* %31, i32 0, i32 1 - store i32 2, i32* %32, align 4 - %33 = load %struct.Graph*, %struct.Graph** %4, align 8 - %34 = getelementptr inbounds %struct.Graph, %struct.Graph* %33, i32 0, i32 2 - %35 = load %struct.Edge*, %struct.Edge** %34, align 8 - %36 = getelementptr inbounds %struct.Edge, %struct.Edge* %35, i64 1 - %37 = getelementptr inbounds %struct.Edge, %struct.Edge* %36, i32 0, i32 2 - store i32 4, i32* %37, align 4 - %38 = load %struct.Graph*, %struct.Graph** %4, align 8 - %39 = getelementptr inbounds %struct.Graph, %struct.Graph* %38, i32 0, i32 2 - %40 = load %struct.Edge*, %struct.Edge** %39, align 8 - %41 = getelementptr inbounds %struct.Edge, %struct.Edge* %40, i64 2 - %42 = getelementptr inbounds %struct.Edge, %struct.Edge* %41, i32 0, i32 0 - store i32 1, i32* %42, align 4 - %43 = load %struct.Graph*, %struct.Graph** %4, align 8 - %44 = getelementptr inbounds %struct.Graph, %struct.Graph* %43, i32 0, i32 2 - %45 = load %struct.Edge*, %struct.Edge** %44, align 8 - %46 = getelementptr inbounds %struct.Edge, %struct.Edge* %45, i64 2 - %47 = getelementptr inbounds %struct.Edge, %struct.Edge* %46, i32 0, i32 1 - store i32 2, i32* %47, align 4 - %48 = load %struct.Graph*, %struct.Graph** %4, align 8 - %49 = getelementptr inbounds %struct.Graph, %struct.Graph* %48, i32 0, i32 2 - %50 = load %struct.Edge*, %struct.Edge** %49, align 8 - %51 = getelementptr inbounds %struct.Edge, %struct.Edge* %50, i64 2 - %52 = getelementptr inbounds %struct.Edge, %struct.Edge* %51, i32 0, i32 2 - store i32 3, i32* %52, align 4 - %53 = load %struct.Graph*, %struct.Graph** %4, align 8 - %54 = getelementptr inbounds %struct.Graph, %struct.Graph* %53, i32 0, i32 2 - %55 = load %struct.Edge*, %struct.Edge** %54, align 8 - %56 = getelementptr inbounds %struct.Edge, %struct.Edge* %55, i64 3 - %57 = getelementptr inbounds %struct.Edge, %struct.Edge* %56, i32 0, i32 0 - store i32 1, i32* %57, align 4 - %58 = load %struct.Graph*, %struct.Graph** %4, align 8 - %59 = getelementptr inbounds %struct.Graph, %struct.Graph* %58, i32 0, i32 2 - %60 = load %struct.Edge*, %struct.Edge** %59, align 8 - %61 = getelementptr inbounds %struct.Edge, %struct.Edge* %60, i64 3 - %62 = getelementptr inbounds %struct.Edge, %struct.Edge* %61, i32 0, i32 1 - store i32 3, i32* %62, align 4 - %63 = load %struct.Graph*, %struct.Graph** %4, align 8 - %64 = getelementptr inbounds %struct.Graph, %struct.Graph* %63, i32 0, i32 2 - %65 = load %struct.Edge*, %struct.Edge** %64, align 8 - %66 = getelementptr inbounds %struct.Edge, %struct.Edge* %65, i64 3 - %67 = getelementptr inbounds %struct.Edge, %struct.Edge* %66, i32 0, i32 2 - store i32 2, i32* %67, align 4 - %68 = load %struct.Graph*, %struct.Graph** %4, align 8 - %69 = getelementptr inbounds %struct.Graph, %struct.Graph* %68, i32 0, i32 2 - %70 = load %struct.Edge*, %struct.Edge** %69, align 8 - %71 = getelementptr inbounds %struct.Edge, %struct.Edge* %70, i64 4 - %72 = getelementptr inbounds %struct.Edge, %struct.Edge* %71, i32 0, i32 0 - store i32 1, i32* %72, align 4 - %73 = load %struct.Graph*, %struct.Graph** %4, align 8 - %74 = getelementptr inbounds %struct.Graph, %struct.Graph* %73, i32 0, i32 2 - %75 = load %struct.Edge*, %struct.Edge** %74, align 8 - %76 = getelementptr inbounds %struct.Edge, %struct.Edge* %75, i64 4 - %77 = getelementptr inbounds %struct.Edge, %struct.Edge* %76, i32 0, i32 1 - store i32 4, i32* %77, align 4 - %78 = load %struct.Graph*, %struct.Graph** %4, align 8 - %79 = getelementptr inbounds %struct.Graph, %struct.Graph* %78, i32 0, i32 2 - %80 = load %struct.Edge*, %struct.Edge** %79, align 8 - %81 = getelementptr inbounds %struct.Edge, %struct.Edge* %80, i64 4 - %82 = getelementptr inbounds %struct.Edge, %struct.Edge* %81, i32 0, i32 2 - store i32 2, i32* %82, align 4 - %83 = load %struct.Graph*, %struct.Graph** %4, align 8 - %84 = getelementptr inbounds %struct.Graph, %struct.Graph* %83, i32 0, i32 2 - %85 = load %struct.Edge*, %struct.Edge** %84, align 8 - %86 = getelementptr inbounds %struct.Edge, %struct.Edge* %85, i64 5 - %87 = getelementptr inbounds %struct.Edge, %struct.Edge* %86, i32 0, i32 0 - store i32 3, i32* %87, align 4 - %88 = load %struct.Graph*, %struct.Graph** %4, align 8 - %89 = getelementptr inbounds %struct.Graph, %struct.Graph* %88, i32 0, i32 2 - %90 = load %struct.Edge*, %struct.Edge** %89, align 8 - %91 = getelementptr inbounds %struct.Edge, %struct.Edge* %90, i64 5 - %92 = getelementptr inbounds %struct.Edge, %struct.Edge* %91, i32 0, i32 1 - store i32 2, i32* %92, align 4 - %93 = load %struct.Graph*, %struct.Graph** %4, align 8 - %94 = getelementptr inbounds %struct.Graph, %struct.Graph* %93, i32 0, i32 2 - %95 = load %struct.Edge*, %struct.Edge** %94, align 8 - %96 = getelementptr inbounds %struct.Edge, %struct.Edge* %95, i64 5 - %97 = getelementptr inbounds %struct.Edge, %struct.Edge* %96, i32 0, i32 2 - store i32 5, i32* %97, align 4 - %98 = load %struct.Graph*, %struct.Graph** %4, align 8 - %99 = getelementptr inbounds %struct.Graph, %struct.Graph* %98, i32 0, i32 2 - %100 = load %struct.Edge*, %struct.Edge** %99, align 8 - %101 = getelementptr inbounds %struct.Edge, %struct.Edge* %100, i64 6 - %102 = getelementptr inbounds %struct.Edge, %struct.Edge* %101, i32 0, i32 0 - store i32 3, i32* %102, align 4 - %103 = load %struct.Graph*, %struct.Graph** %4, align 8 - %104 = getelementptr inbounds %struct.Graph, %struct.Graph* %103, i32 0, i32 2 - %105 = load %struct.Edge*, %struct.Edge** %104, align 8 - %106 = getelementptr inbounds %struct.Edge, %struct.Edge* %105, i64 6 - %107 = getelementptr inbounds %struct.Edge, %struct.Edge* %106, i32 0, i32 1 - store i32 1, i32* %107, align 4 - %108 = load %struct.Graph*, %struct.Graph** %4, align 8 - %109 = getelementptr inbounds %struct.Graph, %struct.Graph* %108, i32 0, i32 2 - %110 = load %struct.Edge*, %struct.Edge** %109, align 8 - %111 = getelementptr inbounds %struct.Edge, %struct.Edge* %110, i64 6 - %112 = getelementptr inbounds %struct.Edge, %struct.Edge* %111, i32 0, i32 2 - store i32 1, i32* %112, align 4 - %113 = load %struct.Graph*, %struct.Graph** %4, align 8 - %114 = getelementptr inbounds %struct.Graph, %struct.Graph* %113, i32 0, i32 2 - %115 = load %struct.Edge*, %struct.Edge** %114, align 8 - %116 = getelementptr inbounds %struct.Edge, %struct.Edge* %115, i64 7 - %117 = getelementptr inbounds %struct.Edge, %struct.Edge* %116, i32 0, i32 0 - store i32 4, i32* %117, align 4 - %118 = load %struct.Graph*, %struct.Graph** %4, align 8 - %119 = getelementptr inbounds %struct.Graph, %struct.Graph* %118, i32 0, i32 2 - %120 = load %struct.Edge*, %struct.Edge** %119, align 8 - %121 = getelementptr inbounds %struct.Edge, %struct.Edge* %120, i64 7 - %122 = getelementptr inbounds %struct.Edge, %struct.Edge* %121, i32 0, i32 1 - store i32 3, i32* %122, align 4 - %123 = load %struct.Graph*, %struct.Graph** %4, align 8 - %124 = getelementptr inbounds %struct.Graph, %struct.Graph* %123, i32 0, i32 2 - %125 = load %struct.Edge*, %struct.Edge** %124, align 8 - %126 = getelementptr inbounds %struct.Edge, %struct.Edge* %125, i64 7 - %127 = getelementptr inbounds %struct.Edge, %struct.Edge* %126, i32 0, i32 2 - store i32 -3, i32* %127, align 4 - %128 = load %struct.Graph*, %struct.Graph** %4, align 8 - call void @_Z11BellmanFordP5Graphi(%struct.Graph* %128, i32 0) - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_bellman_ford_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #7 = { nofree nosync nounwind willreturn } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/bfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/bfs.ll deleted file mode 100644 index 08c9e264..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/bfs.ll +++ /dev/null @@ -1,1245 +0,0 @@ -; ModuleID = 'PE-benchmarks/bfs.cpp' -source_filename = "PE-benchmarks/bfs.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE5emptyEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5frontEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9pop_frontEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [38 x i8] c"Following is Breadth First Traversal \00", align 1 -@.str.2 = private unnamed_addr constant [27 x i8] c"(starting from vertex 2) \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_bfs.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #14 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) #7 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::list", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %13 = load %class.Graph*, %class.Graph** %3, align 8 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = sext i32 %15 to i64 - %17 = call noalias nonnull i8* @_Znam(i64 %16) #14 - store i8* %17, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %18 - -18: ; preds = %28, %2 - %19 = load i32, i32* %6, align 4 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %19, %21 - br i1 %22, label %23, label %31 - -23: ; preds = %18 - %24 = load i8*, i8** %5, align 8 - %25 = load i32, i32* %6, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %24, i64 %26 - store i8 0, i8* %27, align 1 - br label %28 - -28: ; preds = %23 - %29 = load i32, i32* %6, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %6, align 4 - br label %18, !llvm.loop !2 - -31: ; preds = %18 - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 - %32 = load i8*, i8** %5, align 8 - %33 = load i32, i32* %4, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - store i8 1, i8* %35, align 1 - invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7, i32* nonnull align 4 dereferenceable(4) %4) - to label %36 unwind label %82 - -36: ; preds = %31 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - br label %37 - -37: ; preds = %89, %36 - %38 = call zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 - %39 = xor i1 %38, true - br i1 %39, label %40, label %90 - -40: ; preds = %37 - %41 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt7__cxx114listIiSaIiEE5frontEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 - %42 = load i32, i32* %41, align 4 - store i32 %42, i32* %4, align 4 - %43 = load i32, i32* %4, align 4 - %44 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %43) - to label %45 unwind label %82 - -45: ; preds = %40 - %46 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %44, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - to label %47 unwind label %82 - -47: ; preds = %45 - call void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 - %48 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %49 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %48, align 8 - %50 = load i32, i32* %4, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %49, i64 %51 - %53 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %52) #3 - %54 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %53, %"struct.std::__detail::_List_node_base"** %54, align 8 - %55 = bitcast %"struct.std::_List_iterator"* %10 to i8* - %56 = bitcast %"struct.std::_List_iterator"* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %55, i8* align 8 %56, i64 8, i1 false) - br label %57 - -57: ; preds = %87, %47 - %58 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %59 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %58, align 8 - %60 = load i32, i32* %4, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %59, i64 %61 - %63 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %62) #3 - %64 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %12, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %63, %"struct.std::__detail::_List_node_base"** %64, align 8 - %65 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %10, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %12) #3 - br i1 %65, label %66, label %89 - -66: ; preds = %57 - %67 = load i8*, i8** %5, align 8 - %68 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %69 = load i32, i32* %68, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i8, i8* %67, i64 %70 - %72 = load i8, i8* %71, align 1 - %73 = trunc i8 %72 to i1 - br i1 %73, label %86, label %74 - -74: ; preds = %66 - %75 = load i8*, i8** %5, align 8 - %76 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %77 = load i32, i32* %76, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds i8, i8* %75, i64 %78 - store i8 1, i8* %79, align 1 - %80 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7, i32* nonnull align 4 dereferenceable(4) %80) - to label %81 unwind label %82 - -81: ; preds = %74 - br label %86 - -82: ; preds = %74, %45, %40, %31 - %83 = landingpad { i8*, i32 } - cleanup - %84 = extractvalue { i8*, i32 } %83, 0 - store i8* %84, i8** %8, align 8 - %85 = extractvalue { i8*, i32 } %83, 1 - store i32 %85, i32* %9, align 4 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 - br label %91 - -86: ; preds = %81, %66 - br label %87 - -87: ; preds = %86 - %88 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - br label %57, !llvm.loop !4 - -89: ; preds = %57 - br label %37, !llvm.loop !5 - -90: ; preds = %37 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 - ret void - -91: ; preds = %82 - %92 = load i8*, i8** %8, align 8 - %93 = load i32, i32* %9, align 4 - %94 = insertvalue { i8*, i32 } undef, i8* %92, 0 - %95 = insertvalue { i8*, i32 } %94, i32 %93, 1 - resume { i8*, i32 } %95 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - %5 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %4, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %6 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - %9 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %8, align 8 - %10 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - %11 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %10, i32 0, i32 0 - %12 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::__detail::_List_node_header"* %12 to %"struct.std::__detail::_List_node_base"* - %14 = icmp eq %"struct.std::__detail::_List_node_base"* %9, %13 - ret i1 %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt7__cxx114listIiSaIiEE5frontEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - %3 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %5 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %4) #3 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %5, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %3) #3 - ret i32* %7 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - %3 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %5 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %4) #3 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %5, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %8 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %7, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %4, %"struct.std::__detail::_List_node_base"* %8) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 3) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([38 x i8], [38 x i8]* @.str.1, i64 0, i64 0)) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %3, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str.2, i64 0, i64 0)) - call void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) %2, i32 2) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %3) #3 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %3 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %6 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::__detail::_List_node_header"* %8 to %"struct.std::__detail::_List_node_base"* - %10 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %9, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - store %"struct.std::__detail::_List_node_base"* %11, %"struct.std::__detail::_List_node_base"** %3, align 8 - br label %12 - -12: ; preds = %27, %1 - %13 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %14 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %15 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::__detail::_List_node_header"* %15 to %"struct.std::__detail::_List_node_base"* - %17 = icmp ne %"struct.std::__detail::_List_node_base"* %13, %16 - br i1 %17, label %18, label %31 - -18: ; preds = %12 - %19 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %20 = bitcast %"struct.std::__detail::_List_node_base"* %19 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %20, %"struct.std::_List_node"** %4, align 8 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %22 = bitcast %"struct.std::_List_node"* %21 to %"struct.std::__detail::_List_node_base"* - %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %22, i32 0, i32 0 - %24 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %23, align 8 - store %"struct.std::__detail::_List_node_base"* %24, %"struct.std::__detail::_List_node_base"** %3, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %26 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %25) - to label %27 unwind label %32 - -27: ; preds = %18 - store i32* %26, i32** %5, align 8 - %28 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6) #3 - %29 = load i32*, i32** %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %28, i32* %29) #3 - %30 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6, %"struct.std::_List_node"* %30) #3 - br label %12, !llvm.loop !6 - -31: ; preds = %12 - ret void - -32: ; preds = %18 - %33 = landingpad { i8*, i32 } - catch i8* null - %34 = extractvalue { i8*, i32 } %33, 0 - call void @__clang_call_terminate(i8* %34) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, %"struct.std::_List_node"* %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* %8, i64 1) - to label %9 unwind label %10 - -9: ; preds = %2 - ret void - -10: ; preds = %2 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %9 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %10 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %9) - store %"struct.std::_List_node"* %10, %"struct.std::_List_node"** %5, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %12 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) #3 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* %14) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %17 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %16) - %18 = load i32*, i32** %4, align 8 - %19 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %18) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, i32* %17, i32* nonnull align 4 dereferenceable(4) %19) #3 - %20 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"struct.std::_List_iterator", align 8 - %4 = alloca %"class.std::__cxx11::list"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %6, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %4, align 8 - %7 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %8 = bitcast %"class.std::__cxx11::list"* %7 to %"class.std::__cxx11::_List_base"* - invoke void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %8, i64 1) - to label %9 unwind label %21 - -9: ; preds = %2 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %11) #3 - %12 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %13 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %12, align 8 - %14 = bitcast %"struct.std::__detail::_List_node_base"* %13 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %14, %"struct.std::_List_node"** %5, align 8 - %15 = bitcast %"class.std::__cxx11::list"* %7 to %"class.std::__cxx11::_List_base"* - %16 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %15) #3 - %17 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %18 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %17) - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %16, i32* %18) #3 - %19 = bitcast %"class.std::__cxx11::list"* %7 to %"class.std::__cxx11::_List_base"* - %20 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %19, %"struct.std::_List_node"* %20) #3 - ret void - -21: ; preds = %2 - %22 = landingpad { i8*, i32 } - catch i8* null - %23 = extractvalue { i8*, i32 } %22, 0 - call void @__clang_call_terminate(i8* %23) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = sub i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16)) #2 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_bfs.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noinline noreturn nounwind } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/biconnectivity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/biconnectivity.ll deleted file mode 100644 index cc1e2bf7..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/biconnectivity.ll +++ /dev/null @@ -1,1280 +0,0 @@ -; ModuleID = 'PE-benchmarks/biconnectivity.cpp' -source_filename = "PE-benchmarks/biconnectivity.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time = internal global i32 0, align 4 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [5 x i8] c"Yes\0A\00", align 1 -@.str.1 = private unnamed_addr constant [4 x i8] c"No\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_biconnectivity.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #14 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, i32* nonnull align 4 dereferenceable(4) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, i32* %3, i32* %4, i32* %5) #7 align 2 { - %7 = alloca i1, align 1 - %8 = alloca %class.Graph*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i8*, align 8 - %11 = alloca i32*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = alloca i32, align 4 - %15 = alloca %"struct.std::_List_iterator", align 8 - %16 = alloca %"struct.std::_List_iterator", align 8 - %17 = alloca %"struct.std::_List_iterator", align 8 - %18 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %8, align 8 - store i32 %1, i32* %9, align 4 - store i8* %2, i8** %10, align 8 - store i32* %3, i32** %11, align 8 - store i32* %4, i32** %12, align 8 - store i32* %5, i32** %13, align 8 - %19 = load %class.Graph*, %class.Graph** %8, align 8 - store i32 0, i32* %14, align 4 - %20 = load i8*, i8** %10, align 8 - %21 = load i32, i32* %9, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i8, i8* %20, i64 %22 - store i8 1, i8* %23, align 1 - %24 = load i32, i32* @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* @_ZZN5Graph8isBCUtilEiPbPiS1_S1_E4time, align 4 - %26 = load i32*, i32** %12, align 8 - %27 = load i32, i32* %9, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - store i32 %25, i32* %29, align 4 - %30 = load i32*, i32** %11, align 8 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i32, i32* %30, i64 %32 - store i32 %25, i32* %33, align 4 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %34 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %35 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %34, align 8 - %36 = load i32, i32* %9, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %35, i64 %37 - %39 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %38) #3 - %40 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %16, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %39, %"struct.std::__detail::_List_node_base"** %40, align 8 - %41 = bitcast %"struct.std::_List_iterator"* %15 to i8* - %42 = bitcast %"struct.std::_List_iterator"* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %41, i8* align 8 %42, i64 8, i1 false) - br label %43 - -43: ; preds = %147, %6 - %44 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %45 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %44, align 8 - %46 = load i32, i32* %9, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %45, i64 %47 - %49 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %48) #3 - %50 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %17, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %49, %"struct.std::__detail::_List_node_base"** %50, align 8 - %51 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %15, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %17) #3 - br i1 %51, label %52, label %149 - -52: ; preds = %43 - %53 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %54 = load i32, i32* %53, align 4 - store i32 %54, i32* %18, align 4 - %55 = load i8*, i8** %10, align 8 - %56 = load i32, i32* %18, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i8, i8* %55, i64 %57 - %59 = load i8, i8* %58, align 1 - %60 = trunc i8 %59 to i1 - br i1 %60, label %122, label %61 - -61: ; preds = %52 - %62 = load i32, i32* %14, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %14, align 4 - %64 = load i32, i32* %9, align 4 - %65 = load i32*, i32** %13, align 8 - %66 = load i32, i32* %18, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i32, i32* %65, i64 %67 - store i32 %64, i32* %68, align 4 - %69 = load i32, i32* %18, align 4 - %70 = load i8*, i8** %10, align 8 - %71 = load i32*, i32** %11, align 8 - %72 = load i32*, i32** %12, align 8 - %73 = load i32*, i32** %13, align 8 - %74 = call zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnull dereferenceable(16) %19, i32 %69, i8* %70, i32* %71, i32* %72, i32* %73) - br i1 %74, label %75, label %76 - -75: ; preds = %61 - store i1 true, i1* %7, align 1 - br label %150 - -76: ; preds = %61 - %77 = load i32*, i32** %12, align 8 - %78 = load i32, i32* %9, align 4 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i32, i32* %77, i64 %79 - %81 = load i32*, i32** %12, align 8 - %82 = load i32, i32* %18, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds i32, i32* %81, i64 %83 - %85 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %80, i32* nonnull align 4 dereferenceable(4) %84) - %86 = load i32, i32* %85, align 4 - %87 = load i32*, i32** %12, align 8 - %88 = load i32, i32* %9, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds i32, i32* %87, i64 %89 - store i32 %86, i32* %90, align 4 - %91 = load i32*, i32** %13, align 8 - %92 = load i32, i32* %9, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = icmp eq i32 %95, -1 - br i1 %96, label %97, label %101 - -97: ; preds = %76 - %98 = load i32, i32* %14, align 4 - %99 = icmp sgt i32 %98, 1 - br i1 %99, label %100, label %101 - -100: ; preds = %97 - store i1 true, i1* %7, align 1 - br label %150 - -101: ; preds = %97, %76 - %102 = load i32*, i32** %13, align 8 - %103 = load i32, i32* %9, align 4 - %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i32, i32* %102, i64 %104 - %106 = load i32, i32* %105, align 4 - %107 = icmp ne i32 %106, -1 - br i1 %107, label %108, label %121 - -108: ; preds = %101 - %109 = load i32*, i32** %12, align 8 - %110 = load i32, i32* %18, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds i32, i32* %109, i64 %111 - %113 = load i32, i32* %112, align 4 - %114 = load i32*, i32** %11, align 8 - %115 = load i32, i32* %9, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - %118 = load i32, i32* %117, align 4 - %119 = icmp sge i32 %113, %118 - br i1 %119, label %120, label %121 - -120: ; preds = %108 - store i1 true, i1* %7, align 1 - br label %150 - -121: ; preds = %108, %101 - br label %146 - -122: ; preds = %52 - %123 = load i32, i32* %18, align 4 - %124 = load i32*, i32** %13, align 8 - %125 = load i32, i32* %9, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = icmp ne i32 %123, %128 - br i1 %129, label %130, label %145 - -130: ; preds = %122 - %131 = load i32*, i32** %12, align 8 - %132 = load i32, i32* %9, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i32, i32* %131, i64 %133 - %135 = load i32*, i32** %11, align 8 - %136 = load i32, i32* %18, align 4 - %137 = sext i32 %136 to i64 - %138 = getelementptr inbounds i32, i32* %135, i64 %137 - %139 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %134, i32* nonnull align 4 dereferenceable(4) %138) - %140 = load i32, i32* %139, align 4 - %141 = load i32*, i32** %12, align 8 - %142 = load i32, i32* %9, align 4 - %143 = sext i32 %142 to i64 - %144 = getelementptr inbounds i32, i32* %141, i64 %143 - store i32 %140, i32* %144, align 4 - br label %145 - -145: ; preds = %130, %122 - br label %146 - -146: ; preds = %145, %121 - br label %147 - -147: ; preds = %146 - %148 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - br label %43, !llvm.loop !2 - -149: ; preds = %43 - store i1 false, i1* %7, align 1 - br label %150 - -150: ; preds = %149, %120, %100, %75 - %151 = load i1, i1* %7, align 1 - ret i1 %151 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #8 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %10 = load %class.Graph*, %class.Graph** %3, align 8 - %11 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %12 = load i32, i32* %11, align 8 - %13 = sext i32 %12 to i64 - %14 = call noalias nonnull i8* @_Znam(i64 %13) #14 - store i8* %14, i8** %4, align 8 - %15 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %16 = load i32, i32* %15, align 8 - %17 = sext i32 %16 to i64 - %18 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %17, i64 4) - %19 = extractvalue { i64, i1 } %18, 1 - %20 = extractvalue { i64, i1 } %18, 0 - %21 = select i1 %19, i64 -1, i64 %20 - %22 = call noalias nonnull i8* @_Znam(i64 %21) #14 - %23 = bitcast i8* %22 to i32* - store i32* %23, i32** %5, align 8 - %24 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %25 = load i32, i32* %24, align 8 - %26 = sext i32 %25 to i64 - %27 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %26, i64 4) - %28 = extractvalue { i64, i1 } %27, 1 - %29 = extractvalue { i64, i1 } %27, 0 - %30 = select i1 %28, i64 -1, i64 %29 - %31 = call noalias nonnull i8* @_Znam(i64 %30) #14 - %32 = bitcast i8* %31 to i32* - store i32* %32, i32** %6, align 8 - %33 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %34 = load i32, i32* %33, align 8 - %35 = sext i32 %34 to i64 - %36 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %35, i64 4) - %37 = extractvalue { i64, i1 } %36, 1 - %38 = extractvalue { i64, i1 } %36, 0 - %39 = select i1 %37, i64 -1, i64 %38 - %40 = call noalias nonnull i8* @_Znam(i64 %39) #14 - %41 = bitcast i8* %40 to i32* - store i32* %41, i32** %7, align 8 - store i32 0, i32* %8, align 4 - br label %42 - -42: ; preds = %56, %1 - %43 = load i32, i32* %8, align 4 - %44 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %45 = load i32, i32* %44, align 8 - %46 = icmp slt i32 %43, %45 - br i1 %46, label %47, label %59 - -47: ; preds = %42 - %48 = load i32*, i32** %7, align 8 - %49 = load i32, i32* %8, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - store i32 -1, i32* %51, align 4 - %52 = load i8*, i8** %4, align 8 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i8, i8* %52, i64 %54 - store i8 0, i8* %55, align 1 - br label %56 - -56: ; preds = %47 - %57 = load i32, i32* %8, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %8, align 4 - br label %42, !llvm.loop !4 - -59: ; preds = %42 - %60 = load i8*, i8** %4, align 8 - %61 = load i32*, i32** %5, align 8 - %62 = load i32*, i32** %6, align 8 - %63 = load i32*, i32** %7, align 8 - %64 = call zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnull dereferenceable(16) %10, i32 0, i8* %60, i32* %61, i32* %62, i32* %63) - %65 = zext i1 %64 to i32 - %66 = icmp eq i32 %65, 1 - br i1 %66, label %67, label %68 - -67: ; preds = %59 - store i1 false, i1* %2, align 1 - br label %89 - -68: ; preds = %59 - store i32 0, i32* %9, align 4 - br label %69 - -69: ; preds = %85, %68 - %70 = load i32, i32* %9, align 4 - %71 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - %72 = load i32, i32* %71, align 8 - %73 = icmp slt i32 %70, %72 - br i1 %73, label %74, label %88 - -74: ; preds = %69 - %75 = load i8*, i8** %4, align 8 - %76 = load i32, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i8, i8* %75, i64 %77 - %79 = load i8, i8* %78, align 1 - %80 = trunc i8 %79 to i1 - %81 = zext i1 %80 to i32 - %82 = icmp eq i32 %81, 0 - br i1 %82, label %83, label %84 - -83: ; preds = %74 - store i1 false, i1* %2, align 1 - br label %89 - -84: ; preds = %74 - br label %85 - -85: ; preds = %84 - %86 = load i32, i32* %9, align 4 - %87 = add nsw i32 %86, 1 - store i32 %87, i32* %9, align 4 - br label %69, !llvm.loop !5 - -88: ; preds = %69 - store i1 true, i1* %2, align 1 - br label %89 - -89: ; preds = %88, %83, %67 - %90 = load i1, i1* %2, align 1 - ret i1 %90 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph, align 8 - %4 = alloca %class.Graph, align 8 - %5 = alloca %class.Graph, align 8 - %6 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1) - %7 = call zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferenceable(16) %2) - br i1 %7, label %8, label %10 - -8: ; preds = %0 - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) - br label %12 - -10: ; preds = %0 - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - br label %12 - -12: ; preds = %10, %8 - %13 = phi %"class.std::basic_ostream"* [ %9, %8 ], [ %11, %10 ] - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %3, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 1, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 2, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 3, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 2, i32 4) - %14 = call zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferenceable(16) %3) - br i1 %14, label %15, label %17 - -15: ; preds = %12 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) - br label %19 - -17: ; preds = %12 - %18 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - br label %19 - -19: ; preds = %17, %15 - %20 = phi %"class.std::basic_ostream"* [ %16, %15 ], [ %18, %17 ] - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %4, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 2) - %21 = call zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferenceable(16) %4) - br i1 %21, label %22, label %24 - -22: ; preds = %19 - %23 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) - br label %26 - -24: ; preds = %19 - %25 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - br label %26 - -26: ; preds = %24, %22 - %27 = phi %"class.std::basic_ostream"* [ %23, %22 ], [ %25, %24 ] - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %5, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 3, i32 4) - %28 = call zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferenceable(16) %5) - br i1 %28, label %29, label %31 - -29: ; preds = %26 - %30 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) - br label %33 - -31: ; preds = %26 - %32 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - br label %33 - -33: ; preds = %31, %29 - %34 = phi %"class.std::basic_ostream"* [ %30, %29 ], [ %32, %31 ] - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %6, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 2, i32 0) - %35 = call zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferenceable(16) %6) - br i1 %35, label %36, label %38 - -36: ; preds = %33 - %37 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) - br label %40 - -38: ; preds = %33 - %39 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - br label %40 - -40: ; preds = %38, %36 - %41 = phi %"class.std::basic_ostream"* [ %37, %36 ], [ %39, %38 ] - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_biconnectivity.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll deleted file mode 100644 index 9366ca56..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll +++ /dev/null @@ -1,246 +0,0 @@ -; ModuleID = 'PE-benchmarks/binary-insertion-sort.cpp' -source_filename = "PE-benchmarks/binary-insertion-sort.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.a = private unnamed_addr constant [11 x i32] [i32 37, i32 23, i32 0, i32 17, i32 12, i32 72, i32 31, i32 46, i32 100, i32 88, i32 54], align 16 -@.str = private unnamed_addr constant [16 x i8] c"Sorted array: \0A\00", align 1 -@.str.1 = private unnamed_addr constant [4 x i8] c"%d \00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z12binarySearchPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 { - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %11 = load i32, i32* %9, align 4 - %12 = load i32, i32* %8, align 4 - %13 = icmp sle i32 %11, %12 - br i1 %13, label %14, label %29 - -14: ; preds = %4 - %15 = load i32, i32* %7, align 4 - %16 = load i32*, i32** %6, align 8 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i32, i32* %16, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = icmp sgt i32 %15, %20 - br i1 %21, label %22, label %25 - -22: ; preds = %14 - %23 = load i32, i32* %8, align 4 - %24 = add nsw i32 %23, 1 - br label %27 - -25: ; preds = %14 - %26 = load i32, i32* %8, align 4 - br label %27 - -27: ; preds = %25, %22 - %28 = phi i32 [ %24, %22 ], [ %26, %25 ] - store i32 %28, i32* %5, align 4 - br label %66 - -29: ; preds = %4 - %30 = load i32, i32* %8, align 4 - %31 = load i32, i32* %9, align 4 - %32 = add nsw i32 %30, %31 - %33 = sdiv i32 %32, 2 - store i32 %33, i32* %10, align 4 - %34 = load i32, i32* %7, align 4 - %35 = load i32*, i32** %6, align 8 - %36 = load i32, i32* %10, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = icmp eq i32 %34, %39 - br i1 %40, label %41, label %44 - -41: ; preds = %29 - %42 = load i32, i32* %10, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %5, align 4 - br label %66 - -44: ; preds = %29 - %45 = load i32, i32* %7, align 4 - %46 = load i32*, i32** %6, align 8 - %47 = load i32, i32* %10, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = icmp sgt i32 %45, %50 - br i1 %51, label %52, label %59 - -52: ; preds = %44 - %53 = load i32*, i32** %6, align 8 - %54 = load i32, i32* %7, align 4 - %55 = load i32, i32* %10, align 4 - %56 = add nsw i32 %55, 1 - %57 = load i32, i32* %9, align 4 - %58 = call i32 @_Z12binarySearchPiiii(i32* %53, i32 %54, i32 %56, i32 %57) - store i32 %58, i32* %5, align 4 - br label %66 - -59: ; preds = %44 - %60 = load i32*, i32** %6, align 8 - %61 = load i32, i32* %7, align 4 - %62 = load i32, i32* %8, align 4 - %63 = load i32, i32* %10, align 4 - %64 = sub nsw i32 %63, 1 - %65 = call i32 @_Z12binarySearchPiiii(i32* %60, i32 %61, i32 %62, i32 %64) - store i32 %65, i32* %5, align 4 - br label %66 - -66: ; preds = %59, %52, %41, %27 - %67 = load i32, i32* %5, align 4 - ret i32 %67 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13insertionSortPii(i32* %0, i32 %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 1, i32* %5, align 4 - br label %10 - -10: ; preds = %50, %2 - %11 = load i32, i32* %5, align 4 - %12 = load i32, i32* %4, align 4 - %13 = icmp slt i32 %11, %12 - br i1 %13, label %14, label %53 - -14: ; preds = %10 - %15 = load i32, i32* %5, align 4 - %16 = sub nsw i32 %15, 1 - store i32 %16, i32* %7, align 4 - %17 = load i32*, i32** %3, align 8 - %18 = load i32, i32* %5, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = load i32, i32* %20, align 4 - store i32 %21, i32* %9, align 4 - %22 = load i32*, i32** %3, align 8 - %23 = load i32, i32* %9, align 4 - %24 = load i32, i32* %7, align 4 - %25 = call i32 @_Z12binarySearchPiiii(i32* %22, i32 %23, i32 0, i32 %24) - store i32 %25, i32* %6, align 4 - br label %26 - -26: ; preds = %30, %14 - %27 = load i32, i32* %7, align 4 - %28 = load i32, i32* %6, align 4 - %29 = icmp sge i32 %27, %28 - br i1 %29, label %30, label %43 - -30: ; preds = %26 - %31 = load i32*, i32** %3, align 8 - %32 = load i32, i32* %7, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = load i32*, i32** %3, align 8 - %37 = load i32, i32* %7, align 4 - %38 = add nsw i32 %37, 1 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i32, i32* %36, i64 %39 - store i32 %35, i32* %40, align 4 - %41 = load i32, i32* %7, align 4 - %42 = add nsw i32 %41, -1 - store i32 %42, i32* %7, align 4 - br label %26, !llvm.loop !2 - -43: ; preds = %26 - %44 = load i32, i32* %9, align 4 - %45 = load i32*, i32** %3, align 8 - %46 = load i32, i32* %7, align 4 - %47 = add nsw i32 %46, 1 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %45, i64 %48 - store i32 %44, i32* %49, align 4 - br label %50 - -50: ; preds = %43 - %51 = load i32, i32* %5, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %5, align 4 - br label %10, !llvm.loop !4 - -53: ; preds = %10 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca [11 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [11 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([11 x i32]* @__const.main.a to i8*), i64 44, i1 false) - store i32 11, i32* %3, align 4 - %6 = getelementptr inbounds [11 x i32], [11 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - call void @_Z13insertionSortPii(i32* %6, i32 %7) - %8 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([16 x i8], [16 x i8]* @.str, i64 0, i64 0)) - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %19, %0 - %10 = load i32, i32* %4, align 4 - %11 = load i32, i32* %3, align 4 - %12 = icmp slt i32 %10, %11 - br i1 %12, label %13, label %22 - -13: ; preds = %9 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [11 x i32], [11 x i32]* %2, i64 0, i64 %15 - %17 = load i32, i32* %16, align 4 - %18 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0), i32 %17) - br label %19 - -19: ; preds = %13 - %20 = load i32, i32* %4, align 4 - %21 = add nsw i32 %20, 1 - store i32 %21, i32* %4, align 4 - br label %9, !llvm.loop !5 - -22: ; preds = %9 - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #2 - -declare dso_local i32 @printf(i8*, ...) #3 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { argmemonly nofree nosync nounwind willreturn } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll deleted file mode 100644 index 7619d14a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll +++ /dev/null @@ -1,251 +0,0 @@ -; ModuleID = 'PE-benchmarks/binomial-coefficient.cpp' -source_filename = "PE-benchmarks/binomial-coefficient.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [12 x i8] c"Value of C[\00", align 1 -@.str.1 = private unnamed_addr constant [3 x i8] c"][\00", align 1 -@.str.2 = private unnamed_addr constant [6 x i8] c"] is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_binomial_coefficient.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z13binomialCoeffii(i32 %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %10 = load i32, i32* %3, align 4 - %11 = add nsw i32 %10, 1 - %12 = zext i32 %11 to i64 - %13 = load i32, i32* %4, align 4 - %14 = add nsw i32 %13, 1 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %5, align 8 - %17 = mul nuw i64 %12, %15 - %18 = alloca i32, i64 %17, align 16 - store i64 %12, i64* %6, align 8 - store i64 %15, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %19 - -19: ; preds = %78, %2 - %20 = load i32, i32* %8, align 4 - %21 = load i32, i32* %3, align 4 - %22 = icmp sle i32 %20, %21 - br i1 %22, label %23, label %81 - -23: ; preds = %19 - store i32 0, i32* %9, align 4 - br label %24 - -24: ; preds = %74, %23 - %25 = load i32, i32* %9, align 4 - %26 = load i32, i32* %8, align 4 - %27 = load i32, i32* %4, align 4 - %28 = call i32 @_Z3minii(i32 %26, i32 %27) - %29 = icmp sle i32 %25, %28 - br i1 %29, label %30, label %77 - -30: ; preds = %24 - %31 = load i32, i32* %9, align 4 - %32 = icmp eq i32 %31, 0 - br i1 %32, label %37, label %33 - -33: ; preds = %30 - %34 = load i32, i32* %9, align 4 - %35 = load i32, i32* %8, align 4 - %36 = icmp eq i32 %34, %35 - br i1 %36, label %37, label %45 - -37: ; preds = %33, %30 - %38 = load i32, i32* %8, align 4 - %39 = sext i32 %38 to i64 - %40 = mul nsw i64 %39, %15 - %41 = getelementptr inbounds i32, i32* %18, i64 %40 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - store i32 1, i32* %44, align 4 - br label %73 - -45: ; preds = %33 - %46 = load i32, i32* %8, align 4 - %47 = sub nsw i32 %46, 1 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %15 - %50 = getelementptr inbounds i32, i32* %18, i64 %49 - %51 = load i32, i32* %9, align 4 - %52 = sub nsw i32 %51, 1 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %50, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = load i32, i32* %8, align 4 - %57 = sub nsw i32 %56, 1 - %58 = sext i32 %57 to i64 - %59 = mul nsw i64 %58, %15 - %60 = getelementptr inbounds i32, i32* %18, i64 %59 - %61 = load i32, i32* %9, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i32, i32* %60, i64 %62 - %64 = load i32, i32* %63, align 4 - %65 = add nsw i32 %55, %64 - %66 = load i32, i32* %8, align 4 - %67 = sext i32 %66 to i64 - %68 = mul nsw i64 %67, %15 - %69 = getelementptr inbounds i32, i32* %18, i64 %68 - %70 = load i32, i32* %9, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - store i32 %65, i32* %72, align 4 - br label %73 - -73: ; preds = %45, %37 - br label %74 - -74: ; preds = %73 - %75 = load i32, i32* %9, align 4 - %76 = add nsw i32 %75, 1 - store i32 %76, i32* %9, align 4 - br label %24, !llvm.loop !2 - -77: ; preds = %24 - br label %78 - -78: ; preds = %77 - %79 = load i32, i32* %8, align 4 - %80 = add nsw i32 %79, 1 - store i32 %80, i32* %8, align 4 - br label %19, !llvm.loop !4 - -81: ; preds = %19 - %82 = load i32, i32* %3, align 4 - %83 = sext i32 %82 to i64 - %84 = mul nsw i64 %83, %15 - %85 = getelementptr inbounds i32, i32* %18, i64 %84 - %86 = load i32, i32* %4, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %85, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %90) - ret i32 %89 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3minii(i32 %0, i32 %1) #6 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 5, i32* %1, align 4 - store i32 2, i32* %2, align 4 - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([12 x i8], [12 x i8]* @.str, i64 0, i64 0)) - %4 = load i32, i32* %1, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %3, i32 %4) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %5, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.1, i64 0, i64 0)) - %7 = load i32, i32* %2, align 4 - %8 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %8, i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.2, i64 0, i64 0)) - %10 = load i32, i32* %1, align 4 - %11 = load i32, i32* %2, align 4 - %12 = call i32 @_Z13binomialCoeffii(i32 %10, i32 %11) - %13 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %9, i32 %12) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_binomial_coefficient.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/birthday-paradox.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/birthday-paradox.ll deleted file mode 100644 index 0d0d851c..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/birthday-paradox.ll +++ /dev/null @@ -1,94 +0,0 @@ -; ModuleID = 'PE-benchmarks/birthday-paradox.cpp' -source_filename = "PE-benchmarks/birthday-paradox.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_birthday_paradox.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z4findd(double %0) #4 { - %2 = alloca double, align 8 - store double %0, double* %2, align 8 - %3 = load double, double* %2, align 8 - %4 = fsub double 1.000000e+00, %3 - %5 = fdiv double 1.000000e+00, %4 - %6 = call double @log(double %5) #3 - %7 = fmul double 7.300000e+02, %6 - %8 = call double @sqrt(double %7) #3 - %9 = call double @llvm.ceil.f64(double %8) - %10 = fptosi double %9 to i32 - ret i32 %10 -} - -; Function Attrs: nounwind -declare dso_local double @sqrt(double) #2 - -; Function Attrs: nounwind -declare dso_local double @log(double) #2 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare double @llvm.ceil.f64(double) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = call i32 @_Z4findd(double 0x3FE6666666666666) - %2 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %1) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_birthday_paradox.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll deleted file mode 100644 index af0efdc4..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll +++ /dev/null @@ -1,585 +0,0 @@ -; ModuleID = 'PE-benchmarks/boolean-parenthesization-problem.cpp' -source_filename = "PE-benchmarks/boolean-parenthesization-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.symbols = private unnamed_addr constant [5 x i8] c"TTFT\00", align 1 -@__const.main.operators = private unnamed_addr constant [4 x i8] c"|&^\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_boolean_parenthesization_problem.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z12countParenthPcS_i(i8* %0, i8* %1, i32 %2) #4 { - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i8* %1, i8** %5, align 8 - store i32 %2, i32* %6, align 4 - %20 = load i32, i32* %6, align 4 - %21 = zext i32 %20 to i64 - %22 = load i32, i32* %6, align 4 - %23 = zext i32 %22 to i64 - %24 = call i8* @llvm.stacksave() - store i8* %24, i8** %7, align 8 - %25 = mul nuw i64 %21, %23 - %26 = alloca i32, i64 %25, align 16 - store i64 %21, i64* %8, align 8 - store i64 %23, i64* %9, align 8 - %27 = load i32, i32* %6, align 4 - %28 = zext i32 %27 to i64 - %29 = load i32, i32* %6, align 4 - %30 = zext i32 %29 to i64 - %31 = mul nuw i64 %28, %30 - %32 = alloca i32, i64 %31, align 16 - store i64 %28, i64* %10, align 8 - store i64 %30, i64* %11, align 8 - store i32 0, i32* %12, align 4 - br label %33 - -33: ; preds = %70, %3 - %34 = load i32, i32* %12, align 4 - %35 = load i32, i32* %6, align 4 - %36 = icmp slt i32 %34, %35 - br i1 %36, label %37, label %73 - -37: ; preds = %33 - %38 = load i8*, i8** %4, align 8 - %39 = load i32, i32* %12, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %38, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = sext i8 %42 to i32 - %44 = icmp eq i32 %43, 70 - %45 = zext i1 %44 to i64 - %46 = select i1 %44, i32 1, i32 0 - %47 = load i32, i32* %12, align 4 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %23 - %50 = getelementptr inbounds i32, i32* %26, i64 %49 - %51 = load i32, i32* %12, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - store i32 %46, i32* %53, align 4 - %54 = load i8*, i8** %4, align 8 - %55 = load i32, i32* %12, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i8, i8* %54, i64 %56 - %58 = load i8, i8* %57, align 1 - %59 = sext i8 %58 to i32 - %60 = icmp eq i32 %59, 84 - %61 = zext i1 %60 to i64 - %62 = select i1 %60, i32 1, i32 0 - %63 = load i32, i32* %12, align 4 - %64 = sext i32 %63 to i64 - %65 = mul nsw i64 %64, %30 - %66 = getelementptr inbounds i32, i32* %32, i64 %65 - %67 = load i32, i32* %12, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - store i32 %62, i32* %69, align 4 - br label %70 - -70: ; preds = %37 - %71 = load i32, i32* %12, align 4 - %72 = add nsw i32 %71, 1 - store i32 %72, i32* %12, align 4 - br label %33, !llvm.loop !2 - -73: ; preds = %33 - store i32 1, i32* %13, align 4 - br label %74 - -74: ; preds = %388, %73 - %75 = load i32, i32* %13, align 4 - %76 = load i32, i32* %6, align 4 - %77 = icmp slt i32 %75, %76 - br i1 %77, label %78, label %391 - -78: ; preds = %74 - store i32 0, i32* %14, align 4 - %79 = load i32, i32* %13, align 4 - store i32 %79, i32* %15, align 4 - br label %80 - -80: ; preds = %382, %78 - %81 = load i32, i32* %15, align 4 - %82 = load i32, i32* %6, align 4 - %83 = icmp slt i32 %81, %82 - br i1 %83, label %84, label %387 - -84: ; preds = %80 - %85 = load i32, i32* %14, align 4 - %86 = sext i32 %85 to i64 - %87 = mul nsw i64 %86, %23 - %88 = getelementptr inbounds i32, i32* %26, i64 %87 - %89 = load i32, i32* %15, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i32, i32* %88, i64 %90 - store i32 0, i32* %91, align 4 - %92 = load i32, i32* %14, align 4 - %93 = sext i32 %92 to i64 - %94 = mul nsw i64 %93, %30 - %95 = getelementptr inbounds i32, i32* %32, i64 %94 - %96 = load i32, i32* %15, align 4 - %97 = sext i32 %96 to i64 - %98 = getelementptr inbounds i32, i32* %95, i64 %97 - store i32 0, i32* %98, align 4 - store i32 0, i32* %16, align 4 - br label %99 - -99: ; preds = %378, %84 - %100 = load i32, i32* %16, align 4 - %101 = load i32, i32* %13, align 4 - %102 = icmp slt i32 %100, %101 - br i1 %102, label %103, label %381 - -103: ; preds = %99 - %104 = load i32, i32* %14, align 4 - %105 = load i32, i32* %16, align 4 - %106 = add nsw i32 %104, %105 - store i32 %106, i32* %17, align 4 - %107 = load i32, i32* %14, align 4 - %108 = sext i32 %107 to i64 - %109 = mul nsw i64 %108, %30 - %110 = getelementptr inbounds i32, i32* %32, i64 %109 - %111 = load i32, i32* %17, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %110, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i32, i32* %14, align 4 - %116 = sext i32 %115 to i64 - %117 = mul nsw i64 %116, %23 - %118 = getelementptr inbounds i32, i32* %26, i64 %117 - %119 = load i32, i32* %17, align 4 - %120 = sext i32 %119 to i64 - %121 = getelementptr inbounds i32, i32* %118, i64 %120 - %122 = load i32, i32* %121, align 4 - %123 = add nsw i32 %114, %122 - store i32 %123, i32* %18, align 4 - %124 = load i32, i32* %17, align 4 - %125 = add nsw i32 %124, 1 - %126 = sext i32 %125 to i64 - %127 = mul nsw i64 %126, %30 - %128 = getelementptr inbounds i32, i32* %32, i64 %127 - %129 = load i32, i32* %15, align 4 - %130 = sext i32 %129 to i64 - %131 = getelementptr inbounds i32, i32* %128, i64 %130 - %132 = load i32, i32* %131, align 4 - %133 = load i32, i32* %17, align 4 - %134 = add nsw i32 %133, 1 - %135 = sext i32 %134 to i64 - %136 = mul nsw i64 %135, %23 - %137 = getelementptr inbounds i32, i32* %26, i64 %136 - %138 = load i32, i32* %15, align 4 - %139 = sext i32 %138 to i64 - %140 = getelementptr inbounds i32, i32* %137, i64 %139 - %141 = load i32, i32* %140, align 4 - %142 = add nsw i32 %132, %141 - store i32 %142, i32* %19, align 4 - %143 = load i8*, i8** %5, align 8 - %144 = load i32, i32* %17, align 4 - %145 = sext i32 %144 to i64 - %146 = getelementptr inbounds i8, i8* %143, i64 %145 - %147 = load i8, i8* %146, align 1 - %148 = sext i8 %147 to i32 - %149 = icmp eq i32 %148, 38 - br i1 %149, label %150, label %209 - -150: ; preds = %103 - %151 = load i32, i32* %14, align 4 - %152 = sext i32 %151 to i64 - %153 = mul nsw i64 %152, %30 - %154 = getelementptr inbounds i32, i32* %32, i64 %153 - %155 = load i32, i32* %17, align 4 - %156 = sext i32 %155 to i64 - %157 = getelementptr inbounds i32, i32* %154, i64 %156 - %158 = load i32, i32* %157, align 4 - %159 = load i32, i32* %17, align 4 - %160 = add nsw i32 %159, 1 - %161 = sext i32 %160 to i64 - %162 = mul nsw i64 %161, %30 - %163 = getelementptr inbounds i32, i32* %32, i64 %162 - %164 = load i32, i32* %15, align 4 - %165 = sext i32 %164 to i64 - %166 = getelementptr inbounds i32, i32* %163, i64 %165 - %167 = load i32, i32* %166, align 4 - %168 = mul nsw i32 %158, %167 - %169 = load i32, i32* %14, align 4 - %170 = sext i32 %169 to i64 - %171 = mul nsw i64 %170, %30 - %172 = getelementptr inbounds i32, i32* %32, i64 %171 - %173 = load i32, i32* %15, align 4 - %174 = sext i32 %173 to i64 - %175 = getelementptr inbounds i32, i32* %172, i64 %174 - %176 = load i32, i32* %175, align 4 - %177 = add nsw i32 %176, %168 - store i32 %177, i32* %175, align 4 - %178 = load i32, i32* %18, align 4 - %179 = load i32, i32* %19, align 4 - %180 = mul nsw i32 %178, %179 - %181 = load i32, i32* %14, align 4 - %182 = sext i32 %181 to i64 - %183 = mul nsw i64 %182, %30 - %184 = getelementptr inbounds i32, i32* %32, i64 %183 - %185 = load i32, i32* %17, align 4 - %186 = sext i32 %185 to i64 - %187 = getelementptr inbounds i32, i32* %184, i64 %186 - %188 = load i32, i32* %187, align 4 - %189 = load i32, i32* %17, align 4 - %190 = add nsw i32 %189, 1 - %191 = sext i32 %190 to i64 - %192 = mul nsw i64 %191, %30 - %193 = getelementptr inbounds i32, i32* %32, i64 %192 - %194 = load i32, i32* %15, align 4 - %195 = sext i32 %194 to i64 - %196 = getelementptr inbounds i32, i32* %193, i64 %195 - %197 = load i32, i32* %196, align 4 - %198 = mul nsw i32 %188, %197 - %199 = sub nsw i32 %180, %198 - %200 = load i32, i32* %14, align 4 - %201 = sext i32 %200 to i64 - %202 = mul nsw i64 %201, %23 - %203 = getelementptr inbounds i32, i32* %26, i64 %202 - %204 = load i32, i32* %15, align 4 - %205 = sext i32 %204 to i64 - %206 = getelementptr inbounds i32, i32* %203, i64 %205 - %207 = load i32, i32* %206, align 4 - %208 = add nsw i32 %207, %199 - store i32 %208, i32* %206, align 4 - br label %209 - -209: ; preds = %150, %103 - %210 = load i8*, i8** %5, align 8 - %211 = load i32, i32* %17, align 4 - %212 = sext i32 %211 to i64 - %213 = getelementptr inbounds i8, i8* %210, i64 %212 - %214 = load i8, i8* %213, align 1 - %215 = sext i8 %214 to i32 - %216 = icmp eq i32 %215, 124 - br i1 %216, label %217, label %276 - -217: ; preds = %209 - %218 = load i32, i32* %14, align 4 - %219 = sext i32 %218 to i64 - %220 = mul nsw i64 %219, %23 - %221 = getelementptr inbounds i32, i32* %26, i64 %220 - %222 = load i32, i32* %17, align 4 - %223 = sext i32 %222 to i64 - %224 = getelementptr inbounds i32, i32* %221, i64 %223 - %225 = load i32, i32* %224, align 4 - %226 = load i32, i32* %17, align 4 - %227 = add nsw i32 %226, 1 - %228 = sext i32 %227 to i64 - %229 = mul nsw i64 %228, %23 - %230 = getelementptr inbounds i32, i32* %26, i64 %229 - %231 = load i32, i32* %15, align 4 - %232 = sext i32 %231 to i64 - %233 = getelementptr inbounds i32, i32* %230, i64 %232 - %234 = load i32, i32* %233, align 4 - %235 = mul nsw i32 %225, %234 - %236 = load i32, i32* %14, align 4 - %237 = sext i32 %236 to i64 - %238 = mul nsw i64 %237, %23 - %239 = getelementptr inbounds i32, i32* %26, i64 %238 - %240 = load i32, i32* %15, align 4 - %241 = sext i32 %240 to i64 - %242 = getelementptr inbounds i32, i32* %239, i64 %241 - %243 = load i32, i32* %242, align 4 - %244 = add nsw i32 %243, %235 - store i32 %244, i32* %242, align 4 - %245 = load i32, i32* %18, align 4 - %246 = load i32, i32* %19, align 4 - %247 = mul nsw i32 %245, %246 - %248 = load i32, i32* %14, align 4 - %249 = sext i32 %248 to i64 - %250 = mul nsw i64 %249, %23 - %251 = getelementptr inbounds i32, i32* %26, i64 %250 - %252 = load i32, i32* %17, align 4 - %253 = sext i32 %252 to i64 - %254 = getelementptr inbounds i32, i32* %251, i64 %253 - %255 = load i32, i32* %254, align 4 - %256 = load i32, i32* %17, align 4 - %257 = add nsw i32 %256, 1 - %258 = sext i32 %257 to i64 - %259 = mul nsw i64 %258, %23 - %260 = getelementptr inbounds i32, i32* %26, i64 %259 - %261 = load i32, i32* %15, align 4 - %262 = sext i32 %261 to i64 - %263 = getelementptr inbounds i32, i32* %260, i64 %262 - %264 = load i32, i32* %263, align 4 - %265 = mul nsw i32 %255, %264 - %266 = sub nsw i32 %247, %265 - %267 = load i32, i32* %14, align 4 - %268 = sext i32 %267 to i64 - %269 = mul nsw i64 %268, %30 - %270 = getelementptr inbounds i32, i32* %32, i64 %269 - %271 = load i32, i32* %15, align 4 - %272 = sext i32 %271 to i64 - %273 = getelementptr inbounds i32, i32* %270, i64 %272 - %274 = load i32, i32* %273, align 4 - %275 = add nsw i32 %274, %266 - store i32 %275, i32* %273, align 4 - br label %276 - -276: ; preds = %217, %209 - %277 = load i8*, i8** %5, align 8 - %278 = load i32, i32* %17, align 4 - %279 = sext i32 %278 to i64 - %280 = getelementptr inbounds i8, i8* %277, i64 %279 - %281 = load i8, i8* %280, align 1 - %282 = sext i8 %281 to i32 - %283 = icmp eq i32 %282, 94 - br i1 %283, label %284, label %377 - -284: ; preds = %276 - %285 = load i32, i32* %14, align 4 - %286 = sext i32 %285 to i64 - %287 = mul nsw i64 %286, %23 - %288 = getelementptr inbounds i32, i32* %26, i64 %287 - %289 = load i32, i32* %17, align 4 - %290 = sext i32 %289 to i64 - %291 = getelementptr inbounds i32, i32* %288, i64 %290 - %292 = load i32, i32* %291, align 4 - %293 = load i32, i32* %17, align 4 - %294 = add nsw i32 %293, 1 - %295 = sext i32 %294 to i64 - %296 = mul nsw i64 %295, %30 - %297 = getelementptr inbounds i32, i32* %32, i64 %296 - %298 = load i32, i32* %15, align 4 - %299 = sext i32 %298 to i64 - %300 = getelementptr inbounds i32, i32* %297, i64 %299 - %301 = load i32, i32* %300, align 4 - %302 = mul nsw i32 %292, %301 - %303 = load i32, i32* %14, align 4 - %304 = sext i32 %303 to i64 - %305 = mul nsw i64 %304, %30 - %306 = getelementptr inbounds i32, i32* %32, i64 %305 - %307 = load i32, i32* %17, align 4 - %308 = sext i32 %307 to i64 - %309 = getelementptr inbounds i32, i32* %306, i64 %308 - %310 = load i32, i32* %309, align 4 - %311 = load i32, i32* %17, align 4 - %312 = add nsw i32 %311, 1 - %313 = sext i32 %312 to i64 - %314 = mul nsw i64 %313, %23 - %315 = getelementptr inbounds i32, i32* %26, i64 %314 - %316 = load i32, i32* %15, align 4 - %317 = sext i32 %316 to i64 - %318 = getelementptr inbounds i32, i32* %315, i64 %317 - %319 = load i32, i32* %318, align 4 - %320 = mul nsw i32 %310, %319 - %321 = add nsw i32 %302, %320 - %322 = load i32, i32* %14, align 4 - %323 = sext i32 %322 to i64 - %324 = mul nsw i64 %323, %30 - %325 = getelementptr inbounds i32, i32* %32, i64 %324 - %326 = load i32, i32* %15, align 4 - %327 = sext i32 %326 to i64 - %328 = getelementptr inbounds i32, i32* %325, i64 %327 - %329 = load i32, i32* %328, align 4 - %330 = add nsw i32 %329, %321 - store i32 %330, i32* %328, align 4 - %331 = load i32, i32* %14, align 4 - %332 = sext i32 %331 to i64 - %333 = mul nsw i64 %332, %30 - %334 = getelementptr inbounds i32, i32* %32, i64 %333 - %335 = load i32, i32* %17, align 4 - %336 = sext i32 %335 to i64 - %337 = getelementptr inbounds i32, i32* %334, i64 %336 - %338 = load i32, i32* %337, align 4 - %339 = load i32, i32* %17, align 4 - %340 = add nsw i32 %339, 1 - %341 = sext i32 %340 to i64 - %342 = mul nsw i64 %341, %30 - %343 = getelementptr inbounds i32, i32* %32, i64 %342 - %344 = load i32, i32* %15, align 4 - %345 = sext i32 %344 to i64 - %346 = getelementptr inbounds i32, i32* %343, i64 %345 - %347 = load i32, i32* %346, align 4 - %348 = mul nsw i32 %338, %347 - %349 = load i32, i32* %14, align 4 - %350 = sext i32 %349 to i64 - %351 = mul nsw i64 %350, %23 - %352 = getelementptr inbounds i32, i32* %26, i64 %351 - %353 = load i32, i32* %17, align 4 - %354 = sext i32 %353 to i64 - %355 = getelementptr inbounds i32, i32* %352, i64 %354 - %356 = load i32, i32* %355, align 4 - %357 = load i32, i32* %17, align 4 - %358 = add nsw i32 %357, 1 - %359 = sext i32 %358 to i64 - %360 = mul nsw i64 %359, %23 - %361 = getelementptr inbounds i32, i32* %26, i64 %360 - %362 = load i32, i32* %15, align 4 - %363 = sext i32 %362 to i64 - %364 = getelementptr inbounds i32, i32* %361, i64 %363 - %365 = load i32, i32* %364, align 4 - %366 = mul nsw i32 %356, %365 - %367 = add nsw i32 %348, %366 - %368 = load i32, i32* %14, align 4 - %369 = sext i32 %368 to i64 - %370 = mul nsw i64 %369, %23 - %371 = getelementptr inbounds i32, i32* %26, i64 %370 - %372 = load i32, i32* %15, align 4 - %373 = sext i32 %372 to i64 - %374 = getelementptr inbounds i32, i32* %371, i64 %373 - %375 = load i32, i32* %374, align 4 - %376 = add nsw i32 %375, %367 - store i32 %376, i32* %374, align 4 - br label %377 - -377: ; preds = %284, %276 - br label %378 - -378: ; preds = %377 - %379 = load i32, i32* %16, align 4 - %380 = add nsw i32 %379, 1 - store i32 %380, i32* %16, align 4 - br label %99, !llvm.loop !4 - -381: ; preds = %99 - br label %382 - -382: ; preds = %381 - %383 = load i32, i32* %14, align 4 - %384 = add nsw i32 %383, 1 - store i32 %384, i32* %14, align 4 - %385 = load i32, i32* %15, align 4 - %386 = add nsw i32 %385, 1 - store i32 %386, i32* %15, align 4 - br label %80, !llvm.loop !5 - -387: ; preds = %80 - br label %388 - -388: ; preds = %387 - %389 = load i32, i32* %13, align 4 - %390 = add nsw i32 %389, 1 - store i32 %390, i32* %13, align 4 - br label %74, !llvm.loop !6 - -391: ; preds = %74 - %392 = mul nsw i64 0, %30 - %393 = getelementptr inbounds i32, i32* %32, i64 %392 - %394 = load i32, i32* %6, align 4 - %395 = sub nsw i32 %394, 1 - %396 = sext i32 %395 to i64 - %397 = getelementptr inbounds i32, i32* %393, i64 %396 - %398 = load i32, i32* %397, align 4 - %399 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %399) - ret i32 %398 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [5 x i8], align 1 - %3 = alloca [4 x i8], align 1 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [5 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.symbols, i32 0, i32 0), i64 5, i1 false) - %6 = bitcast [4 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %6, i8* align 1 getelementptr inbounds ([4 x i8], [4 x i8]* @__const.main.operators, i32 0, i32 0), i64 4, i1 false) - %7 = getelementptr inbounds [5 x i8], [5 x i8]* %2, i64 0, i64 0 - %8 = call i64 @strlen(i8* %7) #9 - %9 = trunc i64 %8 to i32 - store i32 %9, i32* %4, align 4 - %10 = getelementptr inbounds [5 x i8], [5 x i8]* %2, i64 0, i64 0 - %11 = getelementptr inbounds [4 x i8], [4 x i8]* %3, i64 0, i64 0 - %12 = load i32, i32* %4, align 4 - %13 = call i32 @_Z12countParenthPcS_i(i8* %10, i8* %11, i32 %12) - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %13) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_boolean_parenthesization_problem.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } -attributes #8 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll deleted file mode 100644 index 24f1adf1..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll +++ /dev/null @@ -1,680 +0,0 @@ -; ModuleID = 'PE-benchmarks/boruvkas-algorithm.cpp' -source_filename = "PE-benchmarks/boruvkas-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%struct.Graph = type { i32, i32, %struct.Edge* } -%struct.Edge = type { i32, i32, i32 } -%struct.subset = type { i32, i32 } - -@.str = private unnamed_addr constant [28 x i8] c"Edge %d-%d included in MST\0A\00", align 1 -@.str.1 = private unnamed_addr constant [21 x i8] c"Weight of MST is %d\0A\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { - %2 = alloca %struct.Graph*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca %struct.Edge*, align 8 - %6 = alloca %struct.subset*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - store %struct.Graph* %0, %struct.Graph** %2, align 8 - %18 = load %struct.Graph*, %struct.Graph** %2, align 8 - %19 = getelementptr inbounds %struct.Graph, %struct.Graph* %18, i32 0, i32 0 - %20 = load i32, i32* %19, align 8 - store i32 %20, i32* %3, align 4 - %21 = load %struct.Graph*, %struct.Graph** %2, align 8 - %22 = getelementptr inbounds %struct.Graph, %struct.Graph* %21, i32 0, i32 1 - %23 = load i32, i32* %22, align 4 - store i32 %23, i32* %4, align 4 - %24 = load %struct.Graph*, %struct.Graph** %2, align 8 - %25 = getelementptr inbounds %struct.Graph, %struct.Graph* %24, i32 0, i32 2 - %26 = load %struct.Edge*, %struct.Edge** %25, align 8 - store %struct.Edge* %26, %struct.Edge** %5, align 8 - %27 = load i32, i32* %3, align 4 - %28 = sext i32 %27 to i64 - %29 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %28, i64 8) - %30 = extractvalue { i64, i1 } %29, 1 - %31 = extractvalue { i64, i1 } %29, 0 - %32 = select i1 %30, i64 -1, i64 %31 - %33 = call noalias nonnull i8* @_Znam(i64 %32) #5 - %34 = bitcast i8* %33 to %struct.subset* - store %struct.subset* %34, %struct.subset** %6, align 8 - %35 = load i32, i32* %3, align 4 - %36 = sext i32 %35 to i64 - %37 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %36, i64 4) - %38 = extractvalue { i64, i1 } %37, 1 - %39 = extractvalue { i64, i1 } %37, 0 - %40 = select i1 %38, i64 -1, i64 %39 - %41 = call noalias nonnull i8* @_Znam(i64 %40) #5 - %42 = bitcast i8* %41 to i32* - store i32* %42, i32** %7, align 8 - store i32 0, i32* %8, align 4 - br label %43 - -43: ; preds = %63, %1 - %44 = load i32, i32* %8, align 4 - %45 = load i32, i32* %3, align 4 - %46 = icmp slt i32 %44, %45 - br i1 %46, label %47, label %66 - -47: ; preds = %43 - %48 = load i32, i32* %8, align 4 - %49 = load %struct.subset*, %struct.subset** %6, align 8 - %50 = load i32, i32* %8, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds %struct.subset, %struct.subset* %49, i64 %51 - %53 = getelementptr inbounds %struct.subset, %struct.subset* %52, i32 0, i32 0 - store i32 %48, i32* %53, align 4 - %54 = load %struct.subset*, %struct.subset** %6, align 8 - %55 = load i32, i32* %8, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds %struct.subset, %struct.subset* %54, i64 %56 - %58 = getelementptr inbounds %struct.subset, %struct.subset* %57, i32 0, i32 1 - store i32 0, i32* %58, align 4 - %59 = load i32*, i32** %7, align 8 - %60 = load i32, i32* %8, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i32, i32* %59, i64 %61 - store i32 -1, i32* %62, align 4 - br label %63 - -63: ; preds = %47 - %64 = load i32, i32* %8, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %8, align 4 - br label %43, !llvm.loop !2 - -66: ; preds = %43 - %67 = load i32, i32* %3, align 4 - store i32 %67, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %68 - -68: ; preds = %261, %66 - %69 = load i32, i32* %9, align 4 - %70 = icmp sgt i32 %69, 1 - br i1 %70, label %71, label %262 - -71: ; preds = %68 - store i32 0, i32* %11, align 4 - br label %72 - -72: ; preds = %81, %71 - %73 = load i32, i32* %11, align 4 - %74 = load i32, i32* %3, align 4 - %75 = icmp slt i32 %73, %74 - br i1 %75, label %76, label %84 - -76: ; preds = %72 - %77 = load i32*, i32** %7, align 8 - %78 = load i32, i32* %11, align 4 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i32, i32* %77, i64 %79 - store i32 -1, i32* %80, align 4 - br label %81 - -81: ; preds = %76 - %82 = load i32, i32* %11, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %11, align 4 - br label %72, !llvm.loop !4 - -84: ; preds = %72 - store i32 0, i32* %12, align 4 - br label %85 - -85: ; preds = %174, %84 - %86 = load i32, i32* %12, align 4 - %87 = load i32, i32* %4, align 4 - %88 = icmp slt i32 %86, %87 - br i1 %88, label %89, label %177 - -89: ; preds = %85 - %90 = load %struct.subset*, %struct.subset** %6, align 8 - %91 = load %struct.Edge*, %struct.Edge** %5, align 8 - %92 = load i32, i32* %12, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds %struct.Edge, %struct.Edge* %91, i64 %93 - %95 = getelementptr inbounds %struct.Edge, %struct.Edge* %94, i32 0, i32 0 - %96 = load i32, i32* %95, align 4 - %97 = call i32 @_Z4findP6subseti(%struct.subset* %90, i32 %96) - store i32 %97, i32* %13, align 4 - %98 = load %struct.subset*, %struct.subset** %6, align 8 - %99 = load %struct.Edge*, %struct.Edge** %5, align 8 - %100 = load i32, i32* %12, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds %struct.Edge, %struct.Edge* %99, i64 %101 - %103 = getelementptr inbounds %struct.Edge, %struct.Edge* %102, i32 0, i32 1 - %104 = load i32, i32* %103, align 4 - %105 = call i32 @_Z4findP6subseti(%struct.subset* %98, i32 %104) - store i32 %105, i32* %14, align 4 - %106 = load i32, i32* %13, align 4 - %107 = load i32, i32* %14, align 4 - %108 = icmp eq i32 %106, %107 - br i1 %108, label %109, label %110 - -109: ; preds = %89 - br label %174 - -110: ; preds = %89 - %111 = load i32*, i32** %7, align 8 - %112 = load i32, i32* %13, align 4 - %113 = sext i32 %112 to i64 - %114 = getelementptr inbounds i32, i32* %111, i64 %113 - %115 = load i32, i32* %114, align 4 - %116 = icmp eq i32 %115, -1 - br i1 %116, label %135, label %117 - -117: ; preds = %110 - %118 = load %struct.Edge*, %struct.Edge** %5, align 8 - %119 = load i32*, i32** %7, align 8 - %120 = load i32, i32* %13, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %119, i64 %121 - %123 = load i32, i32* %122, align 4 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds %struct.Edge, %struct.Edge* %118, i64 %124 - %126 = getelementptr inbounds %struct.Edge, %struct.Edge* %125, i32 0, i32 2 - %127 = load i32, i32* %126, align 4 - %128 = load %struct.Edge*, %struct.Edge** %5, align 8 - %129 = load i32, i32* %12, align 4 - %130 = sext i32 %129 to i64 - %131 = getelementptr inbounds %struct.Edge, %struct.Edge* %128, i64 %130 - %132 = getelementptr inbounds %struct.Edge, %struct.Edge* %131, i32 0, i32 2 - %133 = load i32, i32* %132, align 4 - %134 = icmp sgt i32 %127, %133 - br i1 %134, label %135, label %141 - -135: ; preds = %117, %110 - %136 = load i32, i32* %12, align 4 - %137 = load i32*, i32** %7, align 8 - %138 = load i32, i32* %13, align 4 - %139 = sext i32 %138 to i64 - %140 = getelementptr inbounds i32, i32* %137, i64 %139 - store i32 %136, i32* %140, align 4 - br label %141 - -141: ; preds = %135, %117 - %142 = load i32*, i32** %7, align 8 - %143 = load i32, i32* %14, align 4 - %144 = sext i32 %143 to i64 - %145 = getelementptr inbounds i32, i32* %142, i64 %144 - %146 = load i32, i32* %145, align 4 - %147 = icmp eq i32 %146, -1 - br i1 %147, label %166, label %148 - -148: ; preds = %141 - %149 = load %struct.Edge*, %struct.Edge** %5, align 8 - %150 = load i32*, i32** %7, align 8 - %151 = load i32, i32* %14, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds i32, i32* %150, i64 %152 - %154 = load i32, i32* %153, align 4 - %155 = sext i32 %154 to i64 - %156 = getelementptr inbounds %struct.Edge, %struct.Edge* %149, i64 %155 - %157 = getelementptr inbounds %struct.Edge, %struct.Edge* %156, i32 0, i32 2 - %158 = load i32, i32* %157, align 4 - %159 = load %struct.Edge*, %struct.Edge** %5, align 8 - %160 = load i32, i32* %12, align 4 - %161 = sext i32 %160 to i64 - %162 = getelementptr inbounds %struct.Edge, %struct.Edge* %159, i64 %161 - %163 = getelementptr inbounds %struct.Edge, %struct.Edge* %162, i32 0, i32 2 - %164 = load i32, i32* %163, align 4 - %165 = icmp sgt i32 %158, %164 - br i1 %165, label %166, label %172 - -166: ; preds = %148, %141 - %167 = load i32, i32* %12, align 4 - %168 = load i32*, i32** %7, align 8 - %169 = load i32, i32* %14, align 4 - %170 = sext i32 %169 to i64 - %171 = getelementptr inbounds i32, i32* %168, i64 %170 - store i32 %167, i32* %171, align 4 - br label %172 - -172: ; preds = %166, %148 - br label %173 - -173: ; preds = %172 - br label %174 - -174: ; preds = %173, %109 - %175 = load i32, i32* %12, align 4 - %176 = add nsw i32 %175, 1 - store i32 %176, i32* %12, align 4 - br label %85, !llvm.loop !5 - -177: ; preds = %85 - store i32 0, i32* %15, align 4 - br label %178 - -178: ; preds = %258, %177 - %179 = load i32, i32* %15, align 4 - %180 = load i32, i32* %3, align 4 - %181 = icmp slt i32 %179, %180 - br i1 %181, label %182, label %261 - -182: ; preds = %178 - %183 = load i32*, i32** %7, align 8 - %184 = load i32, i32* %15, align 4 - %185 = sext i32 %184 to i64 - %186 = getelementptr inbounds i32, i32* %183, i64 %185 - %187 = load i32, i32* %186, align 4 - %188 = icmp ne i32 %187, -1 - br i1 %188, label %189, label %257 - -189: ; preds = %182 - %190 = load %struct.subset*, %struct.subset** %6, align 8 - %191 = load %struct.Edge*, %struct.Edge** %5, align 8 - %192 = load i32*, i32** %7, align 8 - %193 = load i32, i32* %15, align 4 - %194 = sext i32 %193 to i64 - %195 = getelementptr inbounds i32, i32* %192, i64 %194 - %196 = load i32, i32* %195, align 4 - %197 = sext i32 %196 to i64 - %198 = getelementptr inbounds %struct.Edge, %struct.Edge* %191, i64 %197 - %199 = getelementptr inbounds %struct.Edge, %struct.Edge* %198, i32 0, i32 0 - %200 = load i32, i32* %199, align 4 - %201 = call i32 @_Z4findP6subseti(%struct.subset* %190, i32 %200) - store i32 %201, i32* %16, align 4 - %202 = load %struct.subset*, %struct.subset** %6, align 8 - %203 = load %struct.Edge*, %struct.Edge** %5, align 8 - %204 = load i32*, i32** %7, align 8 - %205 = load i32, i32* %15, align 4 - %206 = sext i32 %205 to i64 - %207 = getelementptr inbounds i32, i32* %204, i64 %206 - %208 = load i32, i32* %207, align 4 - %209 = sext i32 %208 to i64 - %210 = getelementptr inbounds %struct.Edge, %struct.Edge* %203, i64 %209 - %211 = getelementptr inbounds %struct.Edge, %struct.Edge* %210, i32 0, i32 1 - %212 = load i32, i32* %211, align 4 - %213 = call i32 @_Z4findP6subseti(%struct.subset* %202, i32 %212) - store i32 %213, i32* %17, align 4 - %214 = load i32, i32* %16, align 4 - %215 = load i32, i32* %17, align 4 - %216 = icmp eq i32 %214, %215 - br i1 %216, label %217, label %218 - -217: ; preds = %189 - br label %258 - -218: ; preds = %189 - %219 = load %struct.Edge*, %struct.Edge** %5, align 8 - %220 = load i32*, i32** %7, align 8 - %221 = load i32, i32* %15, align 4 - %222 = sext i32 %221 to i64 - %223 = getelementptr inbounds i32, i32* %220, i64 %222 - %224 = load i32, i32* %223, align 4 - %225 = sext i32 %224 to i64 - %226 = getelementptr inbounds %struct.Edge, %struct.Edge* %219, i64 %225 - %227 = getelementptr inbounds %struct.Edge, %struct.Edge* %226, i32 0, i32 2 - %228 = load i32, i32* %227, align 4 - %229 = load i32, i32* %10, align 4 - %230 = add nsw i32 %229, %228 - store i32 %230, i32* %10, align 4 - %231 = load %struct.Edge*, %struct.Edge** %5, align 8 - %232 = load i32*, i32** %7, align 8 - %233 = load i32, i32* %15, align 4 - %234 = sext i32 %233 to i64 - %235 = getelementptr inbounds i32, i32* %232, i64 %234 - %236 = load i32, i32* %235, align 4 - %237 = sext i32 %236 to i64 - %238 = getelementptr inbounds %struct.Edge, %struct.Edge* %231, i64 %237 - %239 = getelementptr inbounds %struct.Edge, %struct.Edge* %238, i32 0, i32 0 - %240 = load i32, i32* %239, align 4 - %241 = load %struct.Edge*, %struct.Edge** %5, align 8 - %242 = load i32*, i32** %7, align 8 - %243 = load i32, i32* %15, align 4 - %244 = sext i32 %243 to i64 - %245 = getelementptr inbounds i32, i32* %242, i64 %244 - %246 = load i32, i32* %245, align 4 - %247 = sext i32 %246 to i64 - %248 = getelementptr inbounds %struct.Edge, %struct.Edge* %241, i64 %247 - %249 = getelementptr inbounds %struct.Edge, %struct.Edge* %248, i32 0, i32 1 - %250 = load i32, i32* %249, align 4 - %251 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 %240, i32 %250) - %252 = load %struct.subset*, %struct.subset** %6, align 8 - %253 = load i32, i32* %16, align 4 - %254 = load i32, i32* %17, align 4 - call void @_Z5UnionP6subsetii(%struct.subset* %252, i32 %253, i32 %254) - %255 = load i32, i32* %9, align 4 - %256 = add nsw i32 %255, -1 - store i32 %256, i32* %9, align 4 - br label %257 - -257: ; preds = %218, %182 - br label %258 - -258: ; preds = %257, %217 - %259 = load i32, i32* %15, align 4 - %260 = add nsw i32 %259, 1 - store i32 %260, i32* %15, align 4 - br label %178, !llvm.loop !6 - -261: ; preds = %178 - br label %68, !llvm.loop !7 - -262: ; preds = %68 - %263 = load i32, i32* %10, align 4 - %264 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str.1, i64 0, i64 0), i32 %263) - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #2 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4findP6subseti(%struct.subset* %0, i32 %1) #0 { - %3 = alloca %struct.subset*, align 8 - %4 = alloca i32, align 4 - store %struct.subset* %0, %struct.subset** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %struct.subset*, %struct.subset** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = sext i32 %6 to i64 - %8 = getelementptr inbounds %struct.subset, %struct.subset* %5, i64 %7 - %9 = getelementptr inbounds %struct.subset, %struct.subset* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 4 - %11 = load i32, i32* %4, align 4 - %12 = icmp ne i32 %10, %11 - br i1 %12, label %13, label %27 - -13: ; preds = %2 - %14 = load %struct.subset*, %struct.subset** %3, align 8 - %15 = load %struct.subset*, %struct.subset** %3, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds %struct.subset, %struct.subset* %15, i64 %17 - %19 = getelementptr inbounds %struct.subset, %struct.subset* %18, i32 0, i32 0 - %20 = load i32, i32* %19, align 4 - %21 = call i32 @_Z4findP6subseti(%struct.subset* %14, i32 %20) - %22 = load %struct.subset*, %struct.subset** %3, align 8 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds %struct.subset, %struct.subset* %22, i64 %24 - %26 = getelementptr inbounds %struct.subset, %struct.subset* %25, i32 0, i32 0 - store i32 %21, i32* %26, align 4 - br label %27 - -27: ; preds = %13, %2 - %28 = load %struct.subset*, %struct.subset** %3, align 8 - %29 = load i32, i32* %4, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %struct.subset, %struct.subset* %28, i64 %30 - %32 = getelementptr inbounds %struct.subset, %struct.subset* %31, i32 0, i32 0 - %33 = load i32, i32* %32, align 4 - ret i32 %33 -} - -declare dso_local i32 @printf(i8*, ...) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5UnionP6subsetii(%struct.subset* %0, i32 %1, i32 %2) #0 { - %4 = alloca %struct.subset*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store %struct.subset* %0, %struct.subset** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %9 = load %struct.subset*, %struct.subset** %4, align 8 - %10 = load i32, i32* %5, align 4 - %11 = call i32 @_Z4findP6subseti(%struct.subset* %9, i32 %10) - store i32 %11, i32* %7, align 4 - %12 = load %struct.subset*, %struct.subset** %4, align 8 - %13 = load i32, i32* %6, align 4 - %14 = call i32 @_Z4findP6subseti(%struct.subset* %12, i32 %13) - store i32 %14, i32* %8, align 4 - %15 = load %struct.subset*, %struct.subset** %4, align 8 - %16 = load i32, i32* %7, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds %struct.subset, %struct.subset* %15, i64 %17 - %19 = getelementptr inbounds %struct.subset, %struct.subset* %18, i32 0, i32 1 - %20 = load i32, i32* %19, align 4 - %21 = load %struct.subset*, %struct.subset** %4, align 8 - %22 = load i32, i32* %8, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds %struct.subset, %struct.subset* %21, i64 %23 - %25 = getelementptr inbounds %struct.subset, %struct.subset* %24, i32 0, i32 1 - %26 = load i32, i32* %25, align 4 - %27 = icmp slt i32 %20, %26 - br i1 %27, label %28, label %35 - -28: ; preds = %3 - %29 = load i32, i32* %8, align 4 - %30 = load %struct.subset*, %struct.subset** %4, align 8 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.subset, %struct.subset* %30, i64 %32 - %34 = getelementptr inbounds %struct.subset, %struct.subset* %33, i32 0, i32 0 - store i32 %29, i32* %34, align 4 - br label %71 - -35: ; preds = %3 - %36 = load %struct.subset*, %struct.subset** %4, align 8 - %37 = load i32, i32* %7, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds %struct.subset, %struct.subset* %36, i64 %38 - %40 = getelementptr inbounds %struct.subset, %struct.subset* %39, i32 0, i32 1 - %41 = load i32, i32* %40, align 4 - %42 = load %struct.subset*, %struct.subset** %4, align 8 - %43 = load i32, i32* %8, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds %struct.subset, %struct.subset* %42, i64 %44 - %46 = getelementptr inbounds %struct.subset, %struct.subset* %45, i32 0, i32 1 - %47 = load i32, i32* %46, align 4 - %48 = icmp sgt i32 %41, %47 - br i1 %48, label %49, label %56 - -49: ; preds = %35 - %50 = load i32, i32* %7, align 4 - %51 = load %struct.subset*, %struct.subset** %4, align 8 - %52 = load i32, i32* %8, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds %struct.subset, %struct.subset* %51, i64 %53 - %55 = getelementptr inbounds %struct.subset, %struct.subset* %54, i32 0, i32 0 - store i32 %50, i32* %55, align 4 - br label %70 - -56: ; preds = %35 - %57 = load i32, i32* %7, align 4 - %58 = load %struct.subset*, %struct.subset** %4, align 8 - %59 = load i32, i32* %8, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds %struct.subset, %struct.subset* %58, i64 %60 - %62 = getelementptr inbounds %struct.subset, %struct.subset* %61, i32 0, i32 0 - store i32 %57, i32* %62, align 4 - %63 = load %struct.subset*, %struct.subset** %4, align 8 - %64 = load i32, i32* %7, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds %struct.subset, %struct.subset* %63, i64 %65 - %67 = getelementptr inbounds %struct.subset, %struct.subset* %66, i32 0, i32 1 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %67, align 4 - br label %70 - -70: ; preds = %56, %49 - br label %71 - -71: ; preds = %70, %28 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca %struct.Graph*, align 8 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 16) #5 - %7 = bitcast i8* %6 to %struct.Graph* - store %struct.Graph* %7, %struct.Graph** %5, align 8 - %8 = load i32, i32* %3, align 4 - %9 = load %struct.Graph*, %struct.Graph** %5, align 8 - %10 = getelementptr inbounds %struct.Graph, %struct.Graph* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load i32, i32* %4, align 4 - %12 = load %struct.Graph*, %struct.Graph** %5, align 8 - %13 = getelementptr inbounds %struct.Graph, %struct.Graph* %12, i32 0, i32 1 - store i32 %11, i32* %13, align 4 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 12) - %17 = extractvalue { i64, i1 } %16, 1 - %18 = extractvalue { i64, i1 } %16, 0 - %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias nonnull i8* @_Znam(i64 %19) #5 - %21 = bitcast i8* %20 to %struct.Edge* - %22 = load %struct.Graph*, %struct.Graph** %5, align 8 - %23 = getelementptr inbounds %struct.Graph, %struct.Graph* %22, i32 0, i32 2 - store %struct.Edge* %21, %struct.Edge** %23, align 8 - %24 = load %struct.Graph*, %struct.Graph** %5, align 8 - ret %struct.Graph* %24 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca %struct.Graph*, align 8 - store i32 0, i32* %1, align 4 - store i32 4, i32* %2, align 4 - store i32 5, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call %struct.Graph* @_Z11createGraphii(i32 %5, i32 %6) - store %struct.Graph* %7, %struct.Graph** %4, align 8 - %8 = load %struct.Graph*, %struct.Graph** %4, align 8 - %9 = getelementptr inbounds %struct.Graph, %struct.Graph* %8, i32 0, i32 2 - %10 = load %struct.Edge*, %struct.Edge** %9, align 8 - %11 = getelementptr inbounds %struct.Edge, %struct.Edge* %10, i64 0 - %12 = getelementptr inbounds %struct.Edge, %struct.Edge* %11, i32 0, i32 0 - store i32 0, i32* %12, align 4 - %13 = load %struct.Graph*, %struct.Graph** %4, align 8 - %14 = getelementptr inbounds %struct.Graph, %struct.Graph* %13, i32 0, i32 2 - %15 = load %struct.Edge*, %struct.Edge** %14, align 8 - %16 = getelementptr inbounds %struct.Edge, %struct.Edge* %15, i64 0 - %17 = getelementptr inbounds %struct.Edge, %struct.Edge* %16, i32 0, i32 1 - store i32 1, i32* %17, align 4 - %18 = load %struct.Graph*, %struct.Graph** %4, align 8 - %19 = getelementptr inbounds %struct.Graph, %struct.Graph* %18, i32 0, i32 2 - %20 = load %struct.Edge*, %struct.Edge** %19, align 8 - %21 = getelementptr inbounds %struct.Edge, %struct.Edge* %20, i64 0 - %22 = getelementptr inbounds %struct.Edge, %struct.Edge* %21, i32 0, i32 2 - store i32 10, i32* %22, align 4 - %23 = load %struct.Graph*, %struct.Graph** %4, align 8 - %24 = getelementptr inbounds %struct.Graph, %struct.Graph* %23, i32 0, i32 2 - %25 = load %struct.Edge*, %struct.Edge** %24, align 8 - %26 = getelementptr inbounds %struct.Edge, %struct.Edge* %25, i64 1 - %27 = getelementptr inbounds %struct.Edge, %struct.Edge* %26, i32 0, i32 0 - store i32 0, i32* %27, align 4 - %28 = load %struct.Graph*, %struct.Graph** %4, align 8 - %29 = getelementptr inbounds %struct.Graph, %struct.Graph* %28, i32 0, i32 2 - %30 = load %struct.Edge*, %struct.Edge** %29, align 8 - %31 = getelementptr inbounds %struct.Edge, %struct.Edge* %30, i64 1 - %32 = getelementptr inbounds %struct.Edge, %struct.Edge* %31, i32 0, i32 1 - store i32 2, i32* %32, align 4 - %33 = load %struct.Graph*, %struct.Graph** %4, align 8 - %34 = getelementptr inbounds %struct.Graph, %struct.Graph* %33, i32 0, i32 2 - %35 = load %struct.Edge*, %struct.Edge** %34, align 8 - %36 = getelementptr inbounds %struct.Edge, %struct.Edge* %35, i64 1 - %37 = getelementptr inbounds %struct.Edge, %struct.Edge* %36, i32 0, i32 2 - store i32 6, i32* %37, align 4 - %38 = load %struct.Graph*, %struct.Graph** %4, align 8 - %39 = getelementptr inbounds %struct.Graph, %struct.Graph* %38, i32 0, i32 2 - %40 = load %struct.Edge*, %struct.Edge** %39, align 8 - %41 = getelementptr inbounds %struct.Edge, %struct.Edge* %40, i64 2 - %42 = getelementptr inbounds %struct.Edge, %struct.Edge* %41, i32 0, i32 0 - store i32 0, i32* %42, align 4 - %43 = load %struct.Graph*, %struct.Graph** %4, align 8 - %44 = getelementptr inbounds %struct.Graph, %struct.Graph* %43, i32 0, i32 2 - %45 = load %struct.Edge*, %struct.Edge** %44, align 8 - %46 = getelementptr inbounds %struct.Edge, %struct.Edge* %45, i64 2 - %47 = getelementptr inbounds %struct.Edge, %struct.Edge* %46, i32 0, i32 1 - store i32 3, i32* %47, align 4 - %48 = load %struct.Graph*, %struct.Graph** %4, align 8 - %49 = getelementptr inbounds %struct.Graph, %struct.Graph* %48, i32 0, i32 2 - %50 = load %struct.Edge*, %struct.Edge** %49, align 8 - %51 = getelementptr inbounds %struct.Edge, %struct.Edge* %50, i64 2 - %52 = getelementptr inbounds %struct.Edge, %struct.Edge* %51, i32 0, i32 2 - store i32 5, i32* %52, align 4 - %53 = load %struct.Graph*, %struct.Graph** %4, align 8 - %54 = getelementptr inbounds %struct.Graph, %struct.Graph* %53, i32 0, i32 2 - %55 = load %struct.Edge*, %struct.Edge** %54, align 8 - %56 = getelementptr inbounds %struct.Edge, %struct.Edge* %55, i64 3 - %57 = getelementptr inbounds %struct.Edge, %struct.Edge* %56, i32 0, i32 0 - store i32 1, i32* %57, align 4 - %58 = load %struct.Graph*, %struct.Graph** %4, align 8 - %59 = getelementptr inbounds %struct.Graph, %struct.Graph* %58, i32 0, i32 2 - %60 = load %struct.Edge*, %struct.Edge** %59, align 8 - %61 = getelementptr inbounds %struct.Edge, %struct.Edge* %60, i64 3 - %62 = getelementptr inbounds %struct.Edge, %struct.Edge* %61, i32 0, i32 1 - store i32 3, i32* %62, align 4 - %63 = load %struct.Graph*, %struct.Graph** %4, align 8 - %64 = getelementptr inbounds %struct.Graph, %struct.Graph* %63, i32 0, i32 2 - %65 = load %struct.Edge*, %struct.Edge** %64, align 8 - %66 = getelementptr inbounds %struct.Edge, %struct.Edge* %65, i64 3 - %67 = getelementptr inbounds %struct.Edge, %struct.Edge* %66, i32 0, i32 2 - store i32 15, i32* %67, align 4 - %68 = load %struct.Graph*, %struct.Graph** %4, align 8 - %69 = getelementptr inbounds %struct.Graph, %struct.Graph* %68, i32 0, i32 2 - %70 = load %struct.Edge*, %struct.Edge** %69, align 8 - %71 = getelementptr inbounds %struct.Edge, %struct.Edge* %70, i64 4 - %72 = getelementptr inbounds %struct.Edge, %struct.Edge* %71, i32 0, i32 0 - store i32 2, i32* %72, align 4 - %73 = load %struct.Graph*, %struct.Graph** %4, align 8 - %74 = getelementptr inbounds %struct.Graph, %struct.Graph* %73, i32 0, i32 2 - %75 = load %struct.Edge*, %struct.Edge** %74, align 8 - %76 = getelementptr inbounds %struct.Edge, %struct.Edge* %75, i64 4 - %77 = getelementptr inbounds %struct.Edge, %struct.Edge* %76, i32 0, i32 1 - store i32 3, i32* %77, align 4 - %78 = load %struct.Graph*, %struct.Graph** %4, align 8 - %79 = getelementptr inbounds %struct.Graph, %struct.Graph* %78, i32 0, i32 2 - %80 = load %struct.Edge*, %struct.Edge** %79, align 8 - %81 = getelementptr inbounds %struct.Edge, %struct.Edge* %80, i64 4 - %82 = getelementptr inbounds %struct.Edge, %struct.Edge* %81, i32 0, i32 2 - store i32 4, i32* %82, align 4 - %83 = load %struct.Graph*, %struct.Graph** %4, align 8 - call void @_Z10boruvkaMSTP5Graph(%struct.Graph* %83) - ret i32 0 -} - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #2 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/box-stacking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/box-stacking.ll deleted file mode 100644 index 4797cbf7..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/box-stacking.ll +++ /dev/null @@ -1,509 +0,0 @@ -; ModuleID = 'PE-benchmarks/box-stacking.cpp' -source_filename = "PE-benchmarks/box-stacking.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%struct.Box = type { i32, i32, i32 } - -@__const.main.arr = private unnamed_addr constant [4 x %struct.Box] [%struct.Box { i32 4, i32 6, i32 7 }, %struct.Box { i32 1, i32 2, i32 3 }, %struct.Box { i32 4, i32 5, i32 6 }, %struct.Box { i32 10, i32 12, i32 32 }], align 16 -@.str = private unnamed_addr constant [44 x i8] c"The maximum possible height of stack is %d\0A\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3minii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z7comparePKvS0_(i8* %0, i8* %1) #0 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load i8*, i8** %4, align 8 - %6 = bitcast i8* %5 to %struct.Box* - %7 = getelementptr inbounds %struct.Box, %struct.Box* %6, i32 0, i32 2 - %8 = load i32, i32* %7, align 4 - %9 = load i8*, i8** %4, align 8 - %10 = bitcast i8* %9 to %struct.Box* - %11 = getelementptr inbounds %struct.Box, %struct.Box* %10, i32 0, i32 1 - %12 = load i32, i32* %11, align 4 - %13 = mul nsw i32 %8, %12 - %14 = load i8*, i8** %3, align 8 - %15 = bitcast i8* %14 to %struct.Box* - %16 = getelementptr inbounds %struct.Box, %struct.Box* %15, i32 0, i32 2 - %17 = load i32, i32* %16, align 4 - %18 = load i8*, i8** %3, align 8 - %19 = bitcast i8* %18 to %struct.Box* - %20 = getelementptr inbounds %struct.Box, %struct.Box* %19, i32 0, i32 1 - %21 = load i32, i32* %20, align 4 - %22 = mul nsw i32 %17, %21 - %23 = sub nsw i32 %13, %22 - ret i32 %23 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { - %3 = alloca %struct.Box*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store %struct.Box* %0, %struct.Box** %3, align 8 - store i32 %1, i32* %4, align 4 - %15 = load i32, i32* %4, align 4 - %16 = mul nsw i32 3, %15 - %17 = zext i32 %16 to i64 - %18 = call i8* @llvm.stacksave() - store i8* %18, i8** %5, align 8 - %19 = alloca %struct.Box, i64 %17, align 16 - store i64 %17, i64* %6, align 8 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - br label %20 - -20: ; preds = %163, %2 - %21 = load i32, i32* %8, align 4 - %22 = load i32, i32* %4, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %166 - -24: ; preds = %20 - %25 = load %struct.Box*, %struct.Box** %3, align 8 - %26 = load i32, i32* %8, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds %struct.Box, %struct.Box* %25, i64 %27 - %29 = getelementptr inbounds %struct.Box, %struct.Box* %28, i32 0, i32 0 - %30 = load i32, i32* %29, align 4 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %32 - %34 = getelementptr inbounds %struct.Box, %struct.Box* %33, i32 0, i32 0 - store i32 %30, i32* %34, align 4 - %35 = load %struct.Box*, %struct.Box** %3, align 8 - %36 = load i32, i32* %8, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds %struct.Box, %struct.Box* %35, i64 %37 - %39 = getelementptr inbounds %struct.Box, %struct.Box* %38, i32 0, i32 2 - %40 = load i32, i32* %39, align 4 - %41 = load %struct.Box*, %struct.Box** %3, align 8 - %42 = load i32, i32* %8, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds %struct.Box, %struct.Box* %41, i64 %43 - %45 = getelementptr inbounds %struct.Box, %struct.Box* %44, i32 0, i32 1 - %46 = load i32, i32* %45, align 4 - %47 = call i32 @_Z3maxii(i32 %40, i32 %46) - %48 = load i32, i32* %7, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %49 - %51 = getelementptr inbounds %struct.Box, %struct.Box* %50, i32 0, i32 2 - store i32 %47, i32* %51, align 4 - %52 = load %struct.Box*, %struct.Box** %3, align 8 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds %struct.Box, %struct.Box* %52, i64 %54 - %56 = getelementptr inbounds %struct.Box, %struct.Box* %55, i32 0, i32 2 - %57 = load i32, i32* %56, align 4 - %58 = load %struct.Box*, %struct.Box** %3, align 8 - %59 = load i32, i32* %8, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds %struct.Box, %struct.Box* %58, i64 %60 - %62 = getelementptr inbounds %struct.Box, %struct.Box* %61, i32 0, i32 1 - %63 = load i32, i32* %62, align 4 - %64 = call i32 @_Z3minii(i32 %57, i32 %63) - %65 = load i32, i32* %7, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %66 - %68 = getelementptr inbounds %struct.Box, %struct.Box* %67, i32 0, i32 1 - store i32 %64, i32* %68, align 4 - %69 = load i32, i32* %7, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %7, align 4 - %71 = load %struct.Box*, %struct.Box** %3, align 8 - %72 = load i32, i32* %8, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds %struct.Box, %struct.Box* %71, i64 %73 - %75 = getelementptr inbounds %struct.Box, %struct.Box* %74, i32 0, i32 1 - %76 = load i32, i32* %75, align 4 - %77 = load i32, i32* %7, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %78 - %80 = getelementptr inbounds %struct.Box, %struct.Box* %79, i32 0, i32 0 - store i32 %76, i32* %80, align 4 - %81 = load %struct.Box*, %struct.Box** %3, align 8 - %82 = load i32, i32* %8, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds %struct.Box, %struct.Box* %81, i64 %83 - %85 = getelementptr inbounds %struct.Box, %struct.Box* %84, i32 0, i32 0 - %86 = load i32, i32* %85, align 4 - %87 = load %struct.Box*, %struct.Box** %3, align 8 - %88 = load i32, i32* %8, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds %struct.Box, %struct.Box* %87, i64 %89 - %91 = getelementptr inbounds %struct.Box, %struct.Box* %90, i32 0, i32 2 - %92 = load i32, i32* %91, align 4 - %93 = call i32 @_Z3maxii(i32 %86, i32 %92) - %94 = load i32, i32* %7, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %95 - %97 = getelementptr inbounds %struct.Box, %struct.Box* %96, i32 0, i32 2 - store i32 %93, i32* %97, align 4 - %98 = load %struct.Box*, %struct.Box** %3, align 8 - %99 = load i32, i32* %8, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds %struct.Box, %struct.Box* %98, i64 %100 - %102 = getelementptr inbounds %struct.Box, %struct.Box* %101, i32 0, i32 0 - %103 = load i32, i32* %102, align 4 - %104 = load %struct.Box*, %struct.Box** %3, align 8 - %105 = load i32, i32* %8, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds %struct.Box, %struct.Box* %104, i64 %106 - %108 = getelementptr inbounds %struct.Box, %struct.Box* %107, i32 0, i32 2 - %109 = load i32, i32* %108, align 4 - %110 = call i32 @_Z3minii(i32 %103, i32 %109) - %111 = load i32, i32* %7, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %112 - %114 = getelementptr inbounds %struct.Box, %struct.Box* %113, i32 0, i32 1 - store i32 %110, i32* %114, align 4 - %115 = load i32, i32* %7, align 4 - %116 = add nsw i32 %115, 1 - store i32 %116, i32* %7, align 4 - %117 = load %struct.Box*, %struct.Box** %3, align 8 - %118 = load i32, i32* %8, align 4 - %119 = sext i32 %118 to i64 - %120 = getelementptr inbounds %struct.Box, %struct.Box* %117, i64 %119 - %121 = getelementptr inbounds %struct.Box, %struct.Box* %120, i32 0, i32 2 - %122 = load i32, i32* %121, align 4 - %123 = load i32, i32* %7, align 4 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %124 - %126 = getelementptr inbounds %struct.Box, %struct.Box* %125, i32 0, i32 0 - store i32 %122, i32* %126, align 4 - %127 = load %struct.Box*, %struct.Box** %3, align 8 - %128 = load i32, i32* %8, align 4 - %129 = sext i32 %128 to i64 - %130 = getelementptr inbounds %struct.Box, %struct.Box* %127, i64 %129 - %131 = getelementptr inbounds %struct.Box, %struct.Box* %130, i32 0, i32 0 - %132 = load i32, i32* %131, align 4 - %133 = load %struct.Box*, %struct.Box** %3, align 8 - %134 = load i32, i32* %8, align 4 - %135 = sext i32 %134 to i64 - %136 = getelementptr inbounds %struct.Box, %struct.Box* %133, i64 %135 - %137 = getelementptr inbounds %struct.Box, %struct.Box* %136, i32 0, i32 1 - %138 = load i32, i32* %137, align 4 - %139 = call i32 @_Z3maxii(i32 %132, i32 %138) - %140 = load i32, i32* %7, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %141 - %143 = getelementptr inbounds %struct.Box, %struct.Box* %142, i32 0, i32 2 - store i32 %139, i32* %143, align 4 - %144 = load %struct.Box*, %struct.Box** %3, align 8 - %145 = load i32, i32* %8, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds %struct.Box, %struct.Box* %144, i64 %146 - %148 = getelementptr inbounds %struct.Box, %struct.Box* %147, i32 0, i32 0 - %149 = load i32, i32* %148, align 4 - %150 = load %struct.Box*, %struct.Box** %3, align 8 - %151 = load i32, i32* %8, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds %struct.Box, %struct.Box* %150, i64 %152 - %154 = getelementptr inbounds %struct.Box, %struct.Box* %153, i32 0, i32 1 - %155 = load i32, i32* %154, align 4 - %156 = call i32 @_Z3minii(i32 %149, i32 %155) - %157 = load i32, i32* %7, align 4 - %158 = sext i32 %157 to i64 - %159 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %158 - %160 = getelementptr inbounds %struct.Box, %struct.Box* %159, i32 0, i32 1 - store i32 %156, i32* %160, align 4 - %161 = load i32, i32* %7, align 4 - %162 = add nsw i32 %161, 1 - store i32 %162, i32* %7, align 4 - br label %163 - -163: ; preds = %24 - %164 = load i32, i32* %8, align 4 - %165 = add nsw i32 %164, 1 - store i32 %165, i32* %8, align 4 - br label %20, !llvm.loop !2 - -166: ; preds = %20 - %167 = load i32, i32* %4, align 4 - %168 = mul nsw i32 3, %167 - store i32 %168, i32* %4, align 4 - %169 = bitcast %struct.Box* %19 to i8* - %170 = load i32, i32* %4, align 4 - %171 = sext i32 %170 to i64 - call void @qsort(i8* %169, i64 %171, i64 12, i32 (i8*, i8*)* @_Z7comparePKvS0_) - %172 = load i32, i32* %4, align 4 - %173 = zext i32 %172 to i64 - %174 = alloca i32, i64 %173, align 16 - store i64 %173, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %175 - -175: ; preds = %188, %166 - %176 = load i32, i32* %10, align 4 - %177 = load i32, i32* %4, align 4 - %178 = icmp slt i32 %176, %177 - br i1 %178, label %179, label %191 - -179: ; preds = %175 - %180 = load i32, i32* %10, align 4 - %181 = sext i32 %180 to i64 - %182 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %181 - %183 = getelementptr inbounds %struct.Box, %struct.Box* %182, i32 0, i32 0 - %184 = load i32, i32* %183, align 4 - %185 = load i32, i32* %10, align 4 - %186 = sext i32 %185 to i64 - %187 = getelementptr inbounds i32, i32* %174, i64 %186 - store i32 %184, i32* %187, align 4 - br label %188 - -188: ; preds = %179 - %189 = load i32, i32* %10, align 4 - %190 = add nsw i32 %189, 1 - store i32 %190, i32* %10, align 4 - br label %175, !llvm.loop !4 - -191: ; preds = %175 - store i32 1, i32* %11, align 4 - br label %192 - -192: ; preds = %260, %191 - %193 = load i32, i32* %11, align 4 - %194 = load i32, i32* %4, align 4 - %195 = icmp slt i32 %193, %194 - br i1 %195, label %196, label %263 - -196: ; preds = %192 - store i32 0, i32* %12, align 4 - br label %197 - -197: ; preds = %256, %196 - %198 = load i32, i32* %12, align 4 - %199 = load i32, i32* %11, align 4 - %200 = icmp slt i32 %198, %199 - br i1 %200, label %201, label %259 - -201: ; preds = %197 - %202 = load i32, i32* %11, align 4 - %203 = sext i32 %202 to i64 - %204 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %203 - %205 = getelementptr inbounds %struct.Box, %struct.Box* %204, i32 0, i32 1 - %206 = load i32, i32* %205, align 4 - %207 = load i32, i32* %12, align 4 - %208 = sext i32 %207 to i64 - %209 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %208 - %210 = getelementptr inbounds %struct.Box, %struct.Box* %209, i32 0, i32 1 - %211 = load i32, i32* %210, align 4 - %212 = icmp slt i32 %206, %211 - br i1 %212, label %213, label %255 - -213: ; preds = %201 - %214 = load i32, i32* %11, align 4 - %215 = sext i32 %214 to i64 - %216 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %215 - %217 = getelementptr inbounds %struct.Box, %struct.Box* %216, i32 0, i32 2 - %218 = load i32, i32* %217, align 4 - %219 = load i32, i32* %12, align 4 - %220 = sext i32 %219 to i64 - %221 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %220 - %222 = getelementptr inbounds %struct.Box, %struct.Box* %221, i32 0, i32 2 - %223 = load i32, i32* %222, align 4 - %224 = icmp slt i32 %218, %223 - br i1 %224, label %225, label %255 - -225: ; preds = %213 - %226 = load i32, i32* %11, align 4 - %227 = sext i32 %226 to i64 - %228 = getelementptr inbounds i32, i32* %174, i64 %227 - %229 = load i32, i32* %228, align 4 - %230 = load i32, i32* %12, align 4 - %231 = sext i32 %230 to i64 - %232 = getelementptr inbounds i32, i32* %174, i64 %231 - %233 = load i32, i32* %232, align 4 - %234 = load i32, i32* %11, align 4 - %235 = sext i32 %234 to i64 - %236 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %235 - %237 = getelementptr inbounds %struct.Box, %struct.Box* %236, i32 0, i32 0 - %238 = load i32, i32* %237, align 4 - %239 = add nsw i32 %233, %238 - %240 = icmp slt i32 %229, %239 - br i1 %240, label %241, label %255 - -241: ; preds = %225 - %242 = load i32, i32* %12, align 4 - %243 = sext i32 %242 to i64 - %244 = getelementptr inbounds i32, i32* %174, i64 %243 - %245 = load i32, i32* %244, align 4 - %246 = load i32, i32* %11, align 4 - %247 = sext i32 %246 to i64 - %248 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %247 - %249 = getelementptr inbounds %struct.Box, %struct.Box* %248, i32 0, i32 0 - %250 = load i32, i32* %249, align 4 - %251 = add nsw i32 %245, %250 - %252 = load i32, i32* %11, align 4 - %253 = sext i32 %252 to i64 - %254 = getelementptr inbounds i32, i32* %174, i64 %253 - store i32 %251, i32* %254, align 4 - br label %255 - -255: ; preds = %241, %225, %213, %201 - br label %256 - -256: ; preds = %255 - %257 = load i32, i32* %12, align 4 - %258 = add nsw i32 %257, 1 - store i32 %258, i32* %12, align 4 - br label %197, !llvm.loop !5 - -259: ; preds = %197 - br label %260 - -260: ; preds = %259 - %261 = load i32, i32* %11, align 4 - %262 = add nsw i32 %261, 1 - store i32 %262, i32* %11, align 4 - br label %192, !llvm.loop !6 - -263: ; preds = %192 - store i32 -1, i32* %13, align 4 - store i32 0, i32* %14, align 4 - br label %264 - -264: ; preds = %281, %263 - %265 = load i32, i32* %14, align 4 - %266 = load i32, i32* %4, align 4 - %267 = icmp slt i32 %265, %266 - br i1 %267, label %268, label %284 - -268: ; preds = %264 - %269 = load i32, i32* %13, align 4 - %270 = load i32, i32* %14, align 4 - %271 = sext i32 %270 to i64 - %272 = getelementptr inbounds i32, i32* %174, i64 %271 - %273 = load i32, i32* %272, align 4 - %274 = icmp slt i32 %269, %273 - br i1 %274, label %275, label %280 - -275: ; preds = %268 - %276 = load i32, i32* %14, align 4 - %277 = sext i32 %276 to i64 - %278 = getelementptr inbounds i32, i32* %174, i64 %277 - %279 = load i32, i32* %278, align 4 - store i32 %279, i32* %13, align 4 - br label %280 - -280: ; preds = %275, %268 - br label %281 - -281: ; preds = %280 - %282 = load i32, i32* %14, align 4 - %283 = add nsw i32 %282, 1 - store i32 %283, i32* %14, align 4 - br label %264, !llvm.loop !7 - -284: ; preds = %264 - %285 = load i32, i32* %13, align 4 - %286 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %286) - ret i32 %285 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -declare dso_local void @qsort(i8*, i64, i64, i32 (i8*, i8*)*) #3 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [4 x %struct.Box], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x %struct.Box]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x %struct.Box]* @__const.main.arr to i8*), i64 48, i1 false) - store i32 4, i32* %3, align 4 - %5 = getelementptr inbounds [4 x %struct.Box], [4 x %struct.Box]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %5, i32 %6) - %8 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([44 x i8], [44 x i8]* @.str, i64 0, i64 0), i32 %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -declare dso_local i32 @printf(i8*, ...) #3 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nofree nosync nounwind willreturn } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll deleted file mode 100644 index cd1c8880..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll +++ /dev/null @@ -1,466 +0,0 @@ -; ModuleID = 'PE-benchmarks/boyer-moore-algorithm.cpp' -source_filename = "PE-benchmarks/boyer-moore-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [27 x i8] c"pattern occurs at shift = \00", align 1 -@.str.1 = private unnamed_addr constant [9 x i8] c"ABAAABCD\00", align 1 -@.str.2 = private unnamed_addr constant [4 x i8] c"ABC\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_boyer_moore_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(%"class.std::__cxx11::basic_string"* %0, i32 %1, i32* %2) #4 { - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - store i32 %1, i32* %4, align 4 - store i32* %2, i32** %5, align 8 - store i32 0, i32* %6, align 4 - br label %7 - -7: ; preds = %15, %3 - %8 = load i32, i32* %6, align 4 - %9 = icmp slt i32 %8, 256 - br i1 %9, label %10, label %18 - -10: ; preds = %7 - %11 = load i32*, i32** %5, align 8 - %12 = load i32, i32* %6, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - store i32 -1, i32* %14, align 4 - br label %15 - -15: ; preds = %10 - %16 = load i32, i32* %6, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* %6, align 4 - br label %7, !llvm.loop !2 - -18: ; preds = %7 - store i32 0, i32* %6, align 4 - br label %19 - -19: ; preds = %33, %18 - %20 = load i32, i32* %6, align 4 - %21 = load i32, i32* %4, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %36 - -23: ; preds = %19 - %24 = load i32, i32* %6, align 4 - %25 = load i32*, i32** %5, align 8 - %26 = load i32, i32* %6, align 4 - %27 = sext i32 %26 to i64 - %28 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %27) - %29 = load i8, i8* %28, align 1 - %30 = sext i8 %29 to i32 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds i32, i32* %25, i64 %31 - store i32 %24, i32* %32, align 4 - br label %33 - -33: ; preds = %23 - %34 = load i32, i32* %6, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %6, align 4 - br label %19, !llvm.loop !4 - -36: ; preds = %19 - ret void -} - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"* %1) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca [256 x i32], align 16 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %3, align 4 - %15 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - %17 = load i32, i32* %3, align 4 - %18 = getelementptr inbounds [256 x i32], [256 x i32]* %5, i64 0, i64 0 - invoke void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(%"class.std::__cxx11::basic_string"* %6, i32 %17, i32* %18) - to label %19 unwind label %51 - -19: ; preds = %2 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - store i32 0, i32* %9, align 4 - br label %20 - -20: ; preds = %101, %19 - %21 = load i32, i32* %9, align 4 - %22 = load i32, i32* %4, align 4 - %23 = load i32, i32* %3, align 4 - %24 = sub nsw i32 %22, %23 - %25 = icmp sle i32 %21, %24 - br i1 %25, label %26, label %102 - -26: ; preds = %20 - %27 = load i32, i32* %3, align 4 - %28 = sub nsw i32 %27, 1 - store i32 %28, i32* %10, align 4 - br label %29 - -29: ; preds = %48, %26 - %30 = load i32, i32* %10, align 4 - %31 = icmp sge i32 %30, 0 - br i1 %31, label %32, label %46 - -32: ; preds = %29 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %34) - %36 = load i8, i8* %35, align 1 - %37 = sext i8 %36 to i32 - %38 = load i32, i32* %9, align 4 - %39 = load i32, i32* %10, align 4 - %40 = add nsw i32 %38, %39 - %41 = sext i32 %40 to i64 - %42 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %41) - %43 = load i8, i8* %42, align 1 - %44 = sext i8 %43 to i32 - %45 = icmp eq i32 %37, %44 - br label %46 - -46: ; preds = %32, %29 - %47 = phi i1 [ false, %29 ], [ %45, %32 ] - br i1 %47, label %48, label %55 - -48: ; preds = %46 - %49 = load i32, i32* %10, align 4 - %50 = add nsw i32 %49, -1 - store i32 %50, i32* %10, align 4 - br label %29, !llvm.loop !5 - -51: ; preds = %2 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %7, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %103 - -55: ; preds = %46 - %56 = load i32, i32* %10, align 4 - %57 = icmp slt i32 %56, 0 - br i1 %57, label %58, label %85 - -58: ; preds = %55 - %59 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str, i64 0, i64 0)) - %60 = load i32, i32* %9, align 4 - %61 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %59, i32 %60) - %62 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %61, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %63 = load i32, i32* %9, align 4 - %64 = load i32, i32* %3, align 4 - %65 = add nsw i32 %63, %64 - %66 = load i32, i32* %4, align 4 - %67 = icmp slt i32 %65, %66 - br i1 %67, label %68, label %80 - -68: ; preds = %58 - %69 = load i32, i32* %3, align 4 - %70 = load i32, i32* %9, align 4 - %71 = load i32, i32* %3, align 4 - %72 = add nsw i32 %70, %71 - %73 = sext i32 %72 to i64 - %74 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %73) - %75 = load i8, i8* %74, align 1 - %76 = sext i8 %75 to i64 - %77 = getelementptr inbounds [256 x i32], [256 x i32]* %5, i64 0, i64 %76 - %78 = load i32, i32* %77, align 4 - %79 = sub nsw i32 %69, %78 - br label %81 - -80: ; preds = %58 - br label %81 - -81: ; preds = %80, %68 - %82 = phi i32 [ %79, %68 ], [ 1, %80 ] - %83 = load i32, i32* %9, align 4 - %84 = add nsw i32 %83, %82 - store i32 %84, i32* %9, align 4 - br label %101 - -85: ; preds = %55 - store i32 1, i32* %11, align 4 - %86 = load i32, i32* %10, align 4 - %87 = load i32, i32* %9, align 4 - %88 = load i32, i32* %10, align 4 - %89 = add nsw i32 %87, %88 - %90 = sext i32 %89 to i64 - %91 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %90) - %92 = load i8, i8* %91, align 1 - %93 = sext i8 %92 to i64 - %94 = getelementptr inbounds [256 x i32], [256 x i32]* %5, i64 0, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = sub nsw i32 %86, %95 - store i32 %96, i32* %12, align 4 - %97 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %11, i32* nonnull align 4 dereferenceable(4) %12) - %98 = load i32, i32* %97, align 4 - %99 = load i32, i32* %9, align 4 - %100 = add nsw i32 %99, %98 - store i32 %100, i32* %9, align 4 - br label %101 - -101: ; preds = %85, %81 - br label %20, !llvm.loop !6 - -102: ; preds = %20 - ret void - -103: ; preds = %51 - %104 = load i8*, i8** %7, align 8 - %105 = load i32, i32* %8, align 4 - %106 = insertvalue { i8*, i32 } undef, i8* %104, 0 - %107 = insertvalue { i8*, i32 } %106, i32 %105, 1 - resume { i8*, i32 } %107 -} - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #5 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %16 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %20 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %12 unwind label %24 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %6) - to label %13 unwind label %28 - -13: ; preds = %12 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %8, %"class.std::__cxx11::basic_string"* %9) - to label %14 unwind label %32 - -14: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %15 = load i32, i32* %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %4, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - br label %39 - -20: ; preds = %10 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %4, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - br label %38 - -24: ; preds = %11 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %4, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %5, align 4 - br label %37 - -28: ; preds = %12 - %29 = landingpad { i8*, i32 } - cleanup - %30 = extractvalue { i8*, i32 } %29, 0 - store i8* %30, i8** %4, align 8 - %31 = extractvalue { i8*, i32 } %29, 1 - store i32 %31, i32* %5, align 4 - br label %36 - -32: ; preds = %13 - %33 = landingpad { i8*, i32 } - cleanup - %34 = extractvalue { i8*, i32 } %33, 0 - store i8* %34, i8** %4, align 8 - %35 = extractvalue { i8*, i32 } %33, 1 - store i32 %35, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %36 - -36: ; preds = %32, %28 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %37 - -37: ; preds = %36, %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %38 - -38: ; preds = %37, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %39 - -39: ; preds = %38, %16 - %40 = load i8*, i8** %4, align 8 - %41 = load i32, i32* %5, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_boyer_moore_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/channel-assignment.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/channel-assignment.ll deleted file mode 100644 index 81e84ea6..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/channel-assignment.ll +++ /dev/null @@ -1,299 +0,0 @@ -; ModuleID = 'PE-benchmarks/channel-assignment.cpp' -source_filename = "PE-benchmarks/channel-assignment.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [56 x i8] c"The number of maximum packets sent in the time slot is \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@.str.2 = private unnamed_addr constant [2 x i8] c"T\00", align 1 -@.str.3 = private unnamed_addr constant [5 x i8] c"-> R\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_channel_assignment.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* %0, i32 %1, i8* %2, i32* %3) #4 { - %5 = alloca i1, align 1 - %6 = alloca [4 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i8* %2, i8** %8, align 8 - store i32* %3, i32** %9, align 8 - store i32 0, i32* %10, align 4 - br label %11 - -11: ; preds = %60, %4 - %12 = load i32, i32* %10, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %63 - -14: ; preds = %11 - %15 = load [4 x i32]*, [4 x i32]** %6, align 8 - %16 = load i32, i32* %7, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %15, i64 %17 - %19 = load i32, i32* %10, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = icmp sgt i32 %22, 0 - br i1 %23, label %24, label %59 - -24: ; preds = %14 - %25 = load i8*, i8** %8, align 8 - %26 = load i32, i32* %10, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i8, i8* %25, i64 %27 - %29 = load i8, i8* %28, align 1 - %30 = trunc i8 %29 to i1 - br i1 %30, label %59, label %31 - -31: ; preds = %24 - %32 = load i8*, i8** %8, align 8 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - store i8 1, i8* %35, align 1 - %36 = load i32*, i32** %9, align 8 - %37 = load i32, i32* %10, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = icmp slt i32 %40, 0 - br i1 %41, label %52, label %42 - -42: ; preds = %31 - %43 = load [4 x i32]*, [4 x i32]** %6, align 8 - %44 = load i32*, i32** %9, align 8 - %45 = load i32, i32* %10, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %44, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = load i8*, i8** %8, align 8 - %50 = load i32*, i32** %9, align 8 - %51 = call zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* %43, i32 %48, i8* %49, i32* %50) - br i1 %51, label %52, label %58 - -52: ; preds = %42, %31 - %53 = load i32, i32* %7, align 4 - %54 = load i32*, i32** %9, align 8 - %55 = load i32, i32* %10, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - store i32 %53, i32* %57, align 4 - store i1 true, i1* %5, align 1 - br label %64 - -58: ; preds = %42 - br label %59 - -59: ; preds = %58, %24, %14 - br label %60 - -60: ; preds = %59 - %61 = load i32, i32* %10, align 4 - %62 = add nsw i32 %61, 1 - store i32 %62, i32* %10, align 4 - br label %11, !llvm.loop !2 - -63: ; preds = %11 - store i1 false, i1* %5, align 1 - br label %64 - -64: ; preds = %63, %52 - %65 = load i1, i1* %5, align 1 - ret i1 %65 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z6maxBPMPA4_i([4 x i32]* %0) #4 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca [4 x i32], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca [4 x i8], align 1 - %7 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - %8 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 0 - %9 = bitcast i32* %8 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %9, i8 -1, i64 16, i1 false) - store i32 0, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %10 - -10: ; preds = %24, %1 - %11 = load i32, i32* %5, align 4 - %12 = icmp slt i32 %11, 3 - br i1 %12, label %13, label %27 - -13: ; preds = %10 - %14 = getelementptr inbounds [4 x i8], [4 x i8]* %6, i64 0, i64 0 - call void @llvm.memset.p0i8.i64(i8* align 1 %14, i8 0, i64 4, i1 false) - %15 = load [4 x i32]*, [4 x i32]** %2, align 8 - %16 = load i32, i32* %5, align 4 - %17 = getelementptr inbounds [4 x i8], [4 x i8]* %6, i64 0, i64 0 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 0 - %19 = call zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* %15, i32 %16, i8* %17, i32* %18) - br i1 %19, label %20, label %23 - -20: ; preds = %13 - %21 = load i32, i32* %4, align 4 - %22 = add nsw i32 %21, 1 - store i32 %22, i32* %4, align 4 - br label %23 - -23: ; preds = %20, %13 - br label %24 - -24: ; preds = %23 - %25 = load i32, i32* %5, align 4 - %26 = add nsw i32 %25, 1 - store i32 %26, i32* %5, align 4 - br label %10, !llvm.loop !4 - -27: ; preds = %10 - %28 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([56 x i8], [56 x i8]* @.str, i64 0, i64 0)) - %29 = load i32, i32* %4, align 4 - %30 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %28, i32 %29) - %31 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %30, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - store i32 0, i32* %7, align 4 - br label %32 - -32: ; preds = %56, %27 - %33 = load i32, i32* %7, align 4 - %34 = icmp slt i32 %33, 4 - br i1 %34, label %35, label %59 - -35: ; preds = %32 - %36 = load i32, i32* %7, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = add nsw i32 %39, 1 - %41 = icmp ne i32 %40, 0 - br i1 %41, label %42, label %55 - -42: ; preds = %35 - %43 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - %44 = load i32, i32* %7, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds [4 x i32], [4 x i32]* %3, i64 0, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = add nsw i32 %47, 1 - %49 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %43, i32 %48) - %50 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %49, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.3, i64 0, i64 0)) - %51 = load i32, i32* %7, align 4 - %52 = add nsw i32 %51, 1 - %53 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %50, i32 %52) - %54 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %53, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %55 - -55: ; preds = %42, %35 - br label %56 - -56: ; preds = %55 - %57 = load i32, i32* %7, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %7, align 4 - br label %32, !llvm.loop !5 - -59: ; preds = %32 - %60 = load i32, i32* %4, align 4 - ret i32 %60 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #5 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [3 x [4 x i32]], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [3 x [4 x i32]]* %2 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %4, i8 0, i64 48, i1 false) - %5 = bitcast i8* %4 to [3 x [4 x i32]]* - %6 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %5, i32 0, i32 0 - %7 = getelementptr inbounds [4 x i32], [4 x i32]* %6, i32 0, i32 1 - store i32 2, i32* %7, align 4 - %8 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %5, i32 0, i32 1 - %9 = getelementptr inbounds [4 x i32], [4 x i32]* %8, i32 0, i32 0 - store i32 3, i32* %9, align 16 - %10 = getelementptr inbounds [4 x i32], [4 x i32]* %8, i32 0, i32 2 - store i32 1, i32* %10, align 8 - %11 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %5, i32 0, i32 2 - %12 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i32 0, i32 0 - store i32 2, i32* %12, align 16 - %13 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i32 0, i32 1 - store i32 4, i32* %13, align 4 - %14 = getelementptr inbounds [3 x [4 x i32]], [3 x [4 x i32]]* %2, i64 0, i64 0 - %15 = call i32 @_Z6maxBPMPA4_i([4 x i32]* %14) - store i32 %15, i32* %3, align 4 - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_channel_assignment.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/coin-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/coin-change.ll deleted file mode 100644 index 5f8e25c6..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/coin-change.ll +++ /dev/null @@ -1,267 +0,0 @@ -; ModuleID = 'PE-benchmarks/coin-change.cpp' -source_filename = "PE-benchmarks/coin-change.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [3 x i32] [i32 1, i32 2, i32 3], align 4 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_coin_change.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z5countPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i8*, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %14 = load i32, i32* %6, align 4 - %15 = add nsw i32 %14, 1 - %16 = zext i32 %15 to i64 - %17 = load i32, i32* %5, align 4 - %18 = zext i32 %17 to i64 - %19 = call i8* @llvm.stacksave() - store i8* %19, i8** %11, align 8 - %20 = mul nuw i64 %16, %18 - %21 = alloca i32, i64 %20, align 16 - store i64 %16, i64* %12, align 8 - store i64 %18, i64* %13, align 8 - store i32 0, i32* %7, align 4 - br label %22 - -22: ; preds = %32, %3 - %23 = load i32, i32* %7, align 4 - %24 = load i32, i32* %5, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %35 - -26: ; preds = %22 - %27 = mul nsw i64 0, %18 - %28 = getelementptr inbounds i32, i32* %21, i64 %27 - %29 = load i32, i32* %7, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - store i32 1, i32* %31, align 4 - br label %32 - -32: ; preds = %26 - %33 = load i32, i32* %7, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %7, align 4 - br label %22, !llvm.loop !2 - -35: ; preds = %22 - store i32 1, i32* %7, align 4 - br label %36 - -36: ; preds = %102, %35 - %37 = load i32, i32* %7, align 4 - %38 = load i32, i32* %6, align 4 - %39 = add nsw i32 %38, 1 - %40 = icmp slt i32 %37, %39 - br i1 %40, label %41, label %105 - -41: ; preds = %36 - store i32 0, i32* %8, align 4 - br label %42 - -42: ; preds = %98, %41 - %43 = load i32, i32* %8, align 4 - %44 = load i32, i32* %5, align 4 - %45 = icmp slt i32 %43, %44 - br i1 %45, label %46, label %101 - -46: ; preds = %42 - %47 = load i32, i32* %7, align 4 - %48 = load i32*, i32** %4, align 8 - %49 = load i32, i32* %8, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = sub nsw i32 %47, %52 - %54 = icmp sge i32 %53, 0 - br i1 %54, label %55, label %70 - -55: ; preds = %46 - %56 = load i32, i32* %7, align 4 - %57 = load i32*, i32** %4, align 8 - %58 = load i32, i32* %8, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - %61 = load i32, i32* %60, align 4 - %62 = sub nsw i32 %56, %61 - %63 = sext i32 %62 to i64 - %64 = mul nsw i64 %63, %18 - %65 = getelementptr inbounds i32, i32* %21, i64 %64 - %66 = load i32, i32* %8, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i32, i32* %65, i64 %67 - %69 = load i32, i32* %68, align 4 - br label %71 - -70: ; preds = %46 - br label %71 - -71: ; preds = %70, %55 - %72 = phi i32 [ %69, %55 ], [ 0, %70 ] - store i32 %72, i32* %9, align 4 - %73 = load i32, i32* %8, align 4 - %74 = icmp sge i32 %73, 1 - br i1 %74, label %75, label %85 - -75: ; preds = %71 - %76 = load i32, i32* %7, align 4 - %77 = sext i32 %76 to i64 - %78 = mul nsw i64 %77, %18 - %79 = getelementptr inbounds i32, i32* %21, i64 %78 - %80 = load i32, i32* %8, align 4 - %81 = sub nsw i32 %80, 1 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds i32, i32* %79, i64 %82 - %84 = load i32, i32* %83, align 4 - br label %86 - -85: ; preds = %71 - br label %86 - -86: ; preds = %85, %75 - %87 = phi i32 [ %84, %75 ], [ 0, %85 ] - store i32 %87, i32* %10, align 4 - %88 = load i32, i32* %9, align 4 - %89 = load i32, i32* %10, align 4 - %90 = add nsw i32 %88, %89 - %91 = load i32, i32* %7, align 4 - %92 = sext i32 %91 to i64 - %93 = mul nsw i64 %92, %18 - %94 = getelementptr inbounds i32, i32* %21, i64 %93 - %95 = load i32, i32* %8, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds i32, i32* %94, i64 %96 - store i32 %90, i32* %97, align 4 - br label %98 - -98: ; preds = %86 - %99 = load i32, i32* %8, align 4 - %100 = add nsw i32 %99, 1 - store i32 %100, i32* %8, align 4 - br label %42, !llvm.loop !4 - -101: ; preds = %42 - br label %102 - -102: ; preds = %101 - %103 = load i32, i32* %7, align 4 - %104 = add nsw i32 %103, 1 - store i32 %104, i32* %7, align 4 - br label %36, !llvm.loop !5 - -105: ; preds = %36 - %106 = load i32, i32* %6, align 4 - %107 = sext i32 %106 to i64 - %108 = mul nsw i64 %107, %18 - %109 = getelementptr inbounds i32, i32* %21, i64 %108 - %110 = load i32, i32* %5, align 4 - %111 = sub nsw i32 %110, 1 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %109, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i8*, i8** %11, align 8 - call void @llvm.stackrestore(i8* %115) - ret i32 %114 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [3 x i32], align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [3 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %5, i8* align 4 bitcast ([3 x i32]* @__const.main.arr to i8*), i64 12, i1 false) - store i32 3, i32* %3, align 4 - store i32 4, i32* %4, align 4 - %6 = getelementptr inbounds [3 x i32], [3 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = load i32, i32* %4, align 4 - %9 = call i32 @_Z5countPiii(i32* %6, i32 %7, i32 %8) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %9) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_coin_change.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/collect-maximum-points-in-a-grid-using-two-traversals.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/collect-maximum-points-in-a-grid-using-two-traversals.ll deleted file mode 100644 index 70b3fb31..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/collect-maximum-points-in-a-grid-using-two-traversals.ll +++ /dev/null @@ -1,496 +0,0 @@ -; ModuleID = 'PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp' -source_filename = "PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [5 x [4 x i32]] [[4 x i32] [i32 3, i32 6, i32 8, i32 2], [4 x i32] [i32 5, i32 2, i32 4, i32 3], [4 x i32] [i32 1, i32 1, i32 20, i32 10], [4 x i32] [i32 1, i32 1, i32 20, i32 10], [4 x i32] [i32 1, i32 1, i32 20, i32 10]], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [23 x i8] c"Maximum collection is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z7isValidiii(i32 %0, i32 %1, i32 %2) #4 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load i32, i32* %4, align 4 - %8 = icmp sge i32 %7, 0 - br i1 %8, label %9, label %24 - -9: ; preds = %3 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 5 - br i1 %11, label %12, label %24 - -12: ; preds = %9 - %13 = load i32, i32* %5, align 4 - %14 = icmp sge i32 %13, 0 - br i1 %14, label %15, label %24 - -15: ; preds = %12 - %16 = load i32, i32* %5, align 4 - %17 = icmp slt i32 %16, 4 - br i1 %17, label %18, label %24 - -18: ; preds = %15 - %19 = load i32, i32* %6, align 4 - %20 = icmp sge i32 %19, 0 - br i1 %20, label %21, label %24 - -21: ; preds = %18 - %22 = load i32, i32* %6, align 4 - %23 = icmp slt i32 %22, 4 - br label %24 - -24: ; preds = %21, %18, %15, %12, %9, %3 - %25 = phi i1 [ false, %18 ], [ false, %15 ], [ false, %12 ], [ false, %9 ], [ false, %3 ], [ %23, %21 ] - ret i1 %25 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32]]* %1, i32 %2, i32 %3, i32 %4) #5 { - %6 = alloca i32, align 4 - %7 = alloca [4 x i32]*, align 8 - %8 = alloca [4 x [4 x i32]]*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - %20 = alloca i32, align 4 - %21 = alloca i32, align 4 - %22 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %7, align 8 - store [4 x [4 x i32]]* %1, [4 x [4 x i32]]** %8, align 8 - store i32 %2, i32* %9, align 4 - store i32 %3, i32* %10, align 4 - store i32 %4, i32* %11, align 4 - %23 = load i32, i32* %9, align 4 - %24 = load i32, i32* %10, align 4 - %25 = load i32, i32* %11, align 4 - %26 = call zeroext i1 @_Z7isValidiii(i32 %23, i32 %24, i32 %25) - br i1 %26, label %28, label %27 - -27: ; preds = %5 - store i32 -2147483648, i32* %6, align 4 - br label %254 - -28: ; preds = %5 - %29 = load i32, i32* %9, align 4 - %30 = icmp eq i32 %29, 4 - br i1 %30, label %31, label %70 - -31: ; preds = %28 - %32 = load i32, i32* %10, align 4 - %33 = icmp eq i32 %32, 0 - br i1 %33, label %34, label %70 - -34: ; preds = %31 - %35 = load i32, i32* %11, align 4 - %36 = icmp eq i32 %35, 3 - br i1 %36, label %37, label %70 - -37: ; preds = %34 - %38 = load i32, i32* %10, align 4 - %39 = load i32, i32* %11, align 4 - %40 = icmp eq i32 %38, %39 - br i1 %40, label %41, label %50 - -41: ; preds = %37 - %42 = load [4 x i32]*, [4 x i32]** %7, align 8 - %43 = load i32, i32* %9, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [4 x i32], [4 x i32]* %42, i64 %44 - %46 = load i32, i32* %10, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [4 x i32], [4 x i32]* %45, i64 0, i64 %47 - %49 = load i32, i32* %48, align 4 - br label %68 - -50: ; preds = %37 - %51 = load [4 x i32]*, [4 x i32]** %7, align 8 - %52 = load i32, i32* %9, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [4 x i32], [4 x i32]* %51, i64 %53 - %55 = load i32, i32* %10, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds [4 x i32], [4 x i32]* %54, i64 0, i64 %56 - %58 = load i32, i32* %57, align 4 - %59 = load [4 x i32]*, [4 x i32]** %7, align 8 - %60 = load i32, i32* %9, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds [4 x i32], [4 x i32]* %59, i64 %61 - %63 = load i32, i32* %11, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [4 x i32], [4 x i32]* %62, i64 0, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = add nsw i32 %58, %66 - br label %68 - -68: ; preds = %50, %41 - %69 = phi i32 [ %49, %41 ], [ %67, %50 ] - store i32 %69, i32* %6, align 4 - br label %254 - -70: ; preds = %34, %31, %28 - %71 = load i32, i32* %9, align 4 - %72 = icmp eq i32 %71, 4 - br i1 %72, label %73, label %74 - -73: ; preds = %70 - store i32 -2147483648, i32* %6, align 4 - br label %254 - -74: ; preds = %70 - %75 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %76 = load i32, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %75, i64 %77 - %79 = load i32, i32* %10, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %78, i64 0, i64 %80 - %82 = load i32, i32* %11, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds [4 x i32], [4 x i32]* %81, i64 0, i64 %83 - %85 = load i32, i32* %84, align 4 - %86 = icmp ne i32 %85, -1 - br i1 %86, label %87, label %99 - -87: ; preds = %74 - %88 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %89 = load i32, i32* %9, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %88, i64 %90 - %92 = load i32, i32* %10, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %91, i64 0, i64 %93 - %95 = load i32, i32* %11, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds [4 x i32], [4 x i32]* %94, i64 0, i64 %96 - %98 = load i32, i32* %97, align 4 - store i32 %98, i32* %6, align 4 - br label %254 - -99: ; preds = %74 - store i32 -2147483648, i32* %12, align 4 - %100 = load i32, i32* %10, align 4 - %101 = load i32, i32* %11, align 4 - %102 = icmp eq i32 %100, %101 - br i1 %102, label %103, label %112 - -103: ; preds = %99 - %104 = load [4 x i32]*, [4 x i32]** %7, align 8 - %105 = load i32, i32* %9, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds [4 x i32], [4 x i32]* %104, i64 %106 - %108 = load i32, i32* %10, align 4 - %109 = sext i32 %108 to i64 - %110 = getelementptr inbounds [4 x i32], [4 x i32]* %107, i64 0, i64 %109 - %111 = load i32, i32* %110, align 4 - br label %130 - -112: ; preds = %99 - %113 = load [4 x i32]*, [4 x i32]** %7, align 8 - %114 = load i32, i32* %9, align 4 - %115 = sext i32 %114 to i64 - %116 = getelementptr inbounds [4 x i32], [4 x i32]* %113, i64 %115 - %117 = load i32, i32* %10, align 4 - %118 = sext i32 %117 to i64 - %119 = getelementptr inbounds [4 x i32], [4 x i32]* %116, i64 0, i64 %118 - %120 = load i32, i32* %119, align 4 - %121 = load [4 x i32]*, [4 x i32]** %7, align 8 - %122 = load i32, i32* %9, align 4 - %123 = sext i32 %122 to i64 - %124 = getelementptr inbounds [4 x i32], [4 x i32]* %121, i64 %123 - %125 = load i32, i32* %11, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds [4 x i32], [4 x i32]* %124, i64 0, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = add nsw i32 %120, %128 - br label %130 - -130: ; preds = %112, %103 - %131 = phi i32 [ %111, %103 ], [ %129, %112 ] - store i32 %131, i32* %13, align 4 - %132 = load i32, i32* %13, align 4 - %133 = load [4 x i32]*, [4 x i32]** %7, align 8 - %134 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %135 = load i32, i32* %9, align 4 - %136 = add nsw i32 %135, 1 - %137 = load i32, i32* %10, align 4 - %138 = load i32, i32* %11, align 4 - %139 = sub nsw i32 %138, 1 - %140 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %133, [4 x [4 x i32]]* %134, i32 %136, i32 %137, i32 %139) - %141 = add nsw i32 %132, %140 - store i32 %141, i32* %14, align 4 - %142 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %14) - %143 = load i32, i32* %142, align 4 - store i32 %143, i32* %12, align 4 - %144 = load i32, i32* %13, align 4 - %145 = load [4 x i32]*, [4 x i32]** %7, align 8 - %146 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %147 = load i32, i32* %9, align 4 - %148 = add nsw i32 %147, 1 - %149 = load i32, i32* %10, align 4 - %150 = load i32, i32* %11, align 4 - %151 = add nsw i32 %150, 1 - %152 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %145, [4 x [4 x i32]]* %146, i32 %148, i32 %149, i32 %151) - %153 = add nsw i32 %144, %152 - store i32 %153, i32* %15, align 4 - %154 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %15) - %155 = load i32, i32* %154, align 4 - store i32 %155, i32* %12, align 4 - %156 = load i32, i32* %13, align 4 - %157 = load [4 x i32]*, [4 x i32]** %7, align 8 - %158 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %159 = load i32, i32* %9, align 4 - %160 = add nsw i32 %159, 1 - %161 = load i32, i32* %10, align 4 - %162 = load i32, i32* %11, align 4 - %163 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %157, [4 x [4 x i32]]* %158, i32 %160, i32 %161, i32 %162) - %164 = add nsw i32 %156, %163 - store i32 %164, i32* %16, align 4 - %165 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %16) - %166 = load i32, i32* %165, align 4 - store i32 %166, i32* %12, align 4 - %167 = load i32, i32* %13, align 4 - %168 = load [4 x i32]*, [4 x i32]** %7, align 8 - %169 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %170 = load i32, i32* %9, align 4 - %171 = add nsw i32 %170, 1 - %172 = load i32, i32* %10, align 4 - %173 = sub nsw i32 %172, 1 - %174 = load i32, i32* %11, align 4 - %175 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %168, [4 x [4 x i32]]* %169, i32 %171, i32 %173, i32 %174) - %176 = add nsw i32 %167, %175 - store i32 %176, i32* %17, align 4 - %177 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %17) - %178 = load i32, i32* %177, align 4 - store i32 %178, i32* %12, align 4 - %179 = load i32, i32* %13, align 4 - %180 = load [4 x i32]*, [4 x i32]** %7, align 8 - %181 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %182 = load i32, i32* %9, align 4 - %183 = add nsw i32 %182, 1 - %184 = load i32, i32* %10, align 4 - %185 = sub nsw i32 %184, 1 - %186 = load i32, i32* %11, align 4 - %187 = sub nsw i32 %186, 1 - %188 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %180, [4 x [4 x i32]]* %181, i32 %183, i32 %185, i32 %187) - %189 = add nsw i32 %179, %188 - store i32 %189, i32* %18, align 4 - %190 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %18) - %191 = load i32, i32* %190, align 4 - store i32 %191, i32* %12, align 4 - %192 = load i32, i32* %13, align 4 - %193 = load [4 x i32]*, [4 x i32]** %7, align 8 - %194 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %195 = load i32, i32* %9, align 4 - %196 = add nsw i32 %195, 1 - %197 = load i32, i32* %10, align 4 - %198 = sub nsw i32 %197, 1 - %199 = load i32, i32* %11, align 4 - %200 = add nsw i32 %199, 1 - %201 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %193, [4 x [4 x i32]]* %194, i32 %196, i32 %198, i32 %200) - %202 = add nsw i32 %192, %201 - store i32 %202, i32* %19, align 4 - %203 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %19) - %204 = load i32, i32* %203, align 4 - store i32 %204, i32* %12, align 4 - %205 = load i32, i32* %13, align 4 - %206 = load [4 x i32]*, [4 x i32]** %7, align 8 - %207 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %208 = load i32, i32* %9, align 4 - %209 = add nsw i32 %208, 1 - %210 = load i32, i32* %10, align 4 - %211 = add nsw i32 %210, 1 - %212 = load i32, i32* %11, align 4 - %213 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %206, [4 x [4 x i32]]* %207, i32 %209, i32 %211, i32 %212) - %214 = add nsw i32 %205, %213 - store i32 %214, i32* %20, align 4 - %215 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %20) - %216 = load i32, i32* %215, align 4 - store i32 %216, i32* %12, align 4 - %217 = load i32, i32* %13, align 4 - %218 = load [4 x i32]*, [4 x i32]** %7, align 8 - %219 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %220 = load i32, i32* %9, align 4 - %221 = add nsw i32 %220, 1 - %222 = load i32, i32* %10, align 4 - %223 = add nsw i32 %222, 1 - %224 = load i32, i32* %11, align 4 - %225 = sub nsw i32 %224, 1 - %226 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %218, [4 x [4 x i32]]* %219, i32 %221, i32 %223, i32 %225) - %227 = add nsw i32 %217, %226 - store i32 %227, i32* %21, align 4 - %228 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %21) - %229 = load i32, i32* %228, align 4 - store i32 %229, i32* %12, align 4 - %230 = load i32, i32* %13, align 4 - %231 = load [4 x i32]*, [4 x i32]** %7, align 8 - %232 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %233 = load i32, i32* %9, align 4 - %234 = add nsw i32 %233, 1 - %235 = load i32, i32* %10, align 4 - %236 = add nsw i32 %235, 1 - %237 = load i32, i32* %11, align 4 - %238 = add nsw i32 %237, 1 - %239 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %231, [4 x [4 x i32]]* %232, i32 %234, i32 %236, i32 %238) - %240 = add nsw i32 %230, %239 - store i32 %240, i32* %22, align 4 - %241 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %12, i32* nonnull align 4 dereferenceable(4) %22) - %242 = load i32, i32* %241, align 4 - store i32 %242, i32* %12, align 4 - %243 = load i32, i32* %12, align 4 - %244 = load [4 x [4 x i32]]*, [4 x [4 x i32]]** %8, align 8 - %245 = load i32, i32* %9, align 4 - %246 = sext i32 %245 to i64 - %247 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %244, i64 %246 - %248 = load i32, i32* %10, align 4 - %249 = sext i32 %248 to i64 - %250 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %247, i64 0, i64 %249 - %251 = load i32, i32* %11, align 4 - %252 = sext i32 %251 to i64 - %253 = getelementptr inbounds [4 x i32], [4 x i32]* %250, i64 0, i64 %252 - store i32 %243, i32* %253, align 4 - store i32 %243, i32* %6, align 4 - br label %254 - -254: ; preds = %130, %87, %73, %68, %27 - %255 = load i32, i32* %6, align 4 - ret i32 %255 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z15geMaxCollectionPA4_i([4 x i32]* %0) #5 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca [5 x [4 x [4 x i32]]], align 16 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - %4 = getelementptr inbounds [5 x [4 x [4 x i32]]], [5 x [4 x [4 x i32]]]* %3, i64 0, i64 0 - %5 = bitcast [4 x [4 x i32]]* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %5, i8 -1, i64 320, i1 false) - %6 = load [4 x i32]*, [4 x i32]** %2, align 8 - %7 = getelementptr inbounds [5 x [4 x [4 x i32]]], [5 x [4 x [4 x i32]]]* %3, i64 0, i64 0 - %8 = call i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %6, [4 x [4 x i32]]* %7, i32 0, i32 0, i32 3) - ret i32 %8 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [5 x [4 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [5 x [4 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([5 x [4 x i32]]* @__const.main.arr to i8*), i64 80, i1 false) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str, i64 0, i64 0)) - %5 = getelementptr inbounds [5 x [4 x i32]], [5 x [4 x i32]]* %2, i64 0, i64 0 - %6 = call i32 @_Z15geMaxCollectionPA4_i([4 x i32]* %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %4, i32 %6) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/construction-of-lcp-array-from-suffix-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/construction-of-lcp-array-from-suffix-array.ll deleted file mode 100644 index 60756dc1..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/construction-of-lcp-array-from-suffix-array.ll +++ /dev/null @@ -1,4506 +0,0 @@ -; ModuleID = 'PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp' -source_filename = "PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%struct.suffix = type { i32, [2 x i32] } -%"class.std::vector" = type { %"struct.std::_Vector_base" } -%"struct.std::_Vector_base" = type { %"struct.std::_Vector_base>::_Vector_impl" } -%"struct.std::_Vector_base>::_Vector_impl" = type { %"struct.std::_Vector_base>::_Vector_impl_data" } -%"struct.std::_Vector_base>::_Vector_impl_data" = type { i32*, i32*, i32* } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { i32 (i64, i32, i64, i32)* } -%"class.__gnu_cxx::__normal_iterator" = type { i32* } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.__gnu_cxx::__normal_iterator.3" = type { i32* } -%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { i32 (i64, i32, i64, i32)* } -%"struct.__gnu_cxx::__ops::_Val_comp_iter" = type { i32 (i64, i32, i64, i32)* } -%"struct.std::integral_constant" = type { i8 } -%"struct.std::random_access_iterator_tag" = type { i8 } - -$_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_ = comdat any - -$_ZNSt6vectorIiSaIiEEC2Ev = comdat any - -$_ZNSt6vectorIiSaIiEE9push_backERKi = comdat any - -$_ZNSt6vectorIiSaIiEED2Ev = comdat any - -$_ZNKSt6vectorIiSaIiEE4sizeEv = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_ = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZNSt6vectorIiSaIiEEixEm = comdat any - -$_ZNSt6vectorIiSaIiEEC2ERKS1_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_ = comdat any - -$_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_ = comdat any - -$_ZSt4__lgl = comdat any - -$_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_ = comdat any - -$_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_ = comdat any - -$_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_ = comdat any - -$_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_ = comdat any - -$_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS3_EEEEONSt16remove_referenceIT_E4typeEOS9_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_ = comdat any - -$_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_ = comdat any - -$_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_ = comdat any - -$_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_ = comdat any - -$_ZSt9iter_swapIP6suffixS1_EvT_T0_ = comdat any - -$_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_ = comdat any - -$_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_ = comdat any - -$_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE = comdat any - -$_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIP6suffixET_S2_ = comdat any - -$_ZSt12__niter_wrapIP6suffixET_RKS2_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIP6suffixET_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_ = comdat any - -$_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZSt8_DestroyIPiEvT_S1_ = comdat any - -$_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_ = comdat any - -$_ZNSt6vectorIiSaIiEE3endEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc = comdat any - -$_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_ = comdat any - -$_ZNSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZNKSt6vectorIiSaIiEE8max_sizeEv = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE = comdat any - -$_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_ = comdat any - -$_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_ = comdat any - -$_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi = comdat any - -$_ZNSaIiEC2ERKS_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_ = comdat any - -$_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm = comdat any - -$_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E = comdat any - -$_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_ = comdat any - -$_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_ = comdat any - -$_ZSt6fill_nIPimiET_S1_T0_RKT1_ = comdat any - -$_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag = comdat any - -$_ZSt17__size_to_integerm = comdat any - -$_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_ = comdat any - -$_ZSt8__fill_aIPiiEvT_S1_RKT0_ = comdat any - -$_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_ = comdat any - -$_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_ = comdat any - -$_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E = comdat any - -$_ZNKSt6vectorIiSaIiEE5beginEv = comdat any - -$_ZNKSt6vectorIiSaIiEE3endEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_ = comdat any - -$_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any - -$_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_ = comdat any - -$_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_ = comdat any - -$_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_ = comdat any - -$_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_ = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_ = comdat any - -$_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE = comdat any - -$_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv = comdat any - -$_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [7 x i8] c"banana\00", align 1 -@.str.2 = private unnamed_addr constant [17 x i8] c"Suffix Array : \0A\00", align 1 -@.str.3 = private unnamed_addr constant [15 x i8] c"\0ALCP Array : \0A\00", align 1 -@.str.4 = private unnamed_addr constant [26 x i8] c"vector::_M_realloc_insert\00", align 1 -@.str.5 = private unnamed_addr constant [49 x i8] c"cannot create std::vector larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3cmp6suffixS_(i64 %0, i32 %1, i64 %2, i32 %3) #4 { - %5 = alloca %struct.suffix, align 4 - %6 = alloca { i64, i32 }, align 4 - %7 = alloca %struct.suffix, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 0 - store i64 %0, i64* %9, align 4 - %10 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 1 - store i32 %1, i32* %10, align 4 - %11 = bitcast %struct.suffix* %5 to i8* - %12 = bitcast { i64, i32 }* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %11, i8* align 4 %12, i64 12, i1 false) - %13 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %2, i64* %13, align 4 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %3, i32* %14, align 4 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = getelementptr inbounds %struct.suffix, %struct.suffix* %5, i32 0, i32 1 - %18 = getelementptr inbounds [2 x i32], [2 x i32]* %17, i64 0, i64 0 - %19 = load i32, i32* %18, align 4 - %20 = getelementptr inbounds %struct.suffix, %struct.suffix* %7, i32 0, i32 1 - %21 = getelementptr inbounds [2 x i32], [2 x i32]* %20, i64 0, i64 0 - %22 = load i32, i32* %21, align 4 - %23 = icmp eq i32 %19, %22 - br i1 %23, label %24, label %34 - -24: ; preds = %4 - %25 = getelementptr inbounds %struct.suffix, %struct.suffix* %5, i32 0, i32 1 - %26 = getelementptr inbounds [2 x i32], [2 x i32]* %25, i64 0, i64 1 - %27 = load i32, i32* %26, align 4 - %28 = getelementptr inbounds %struct.suffix, %struct.suffix* %7, i32 0, i32 1 - %29 = getelementptr inbounds [2 x i32], [2 x i32]* %28, i64 0, i64 1 - %30 = load i32, i32* %29, align 4 - %31 = icmp slt i32 %27, %30 - %32 = zext i1 %31 to i64 - %33 = select i1 %31, i32 1, i32 0 - br label %44 - -34: ; preds = %4 - %35 = getelementptr inbounds %struct.suffix, %struct.suffix* %5, i32 0, i32 1 - %36 = getelementptr inbounds [2 x i32], [2 x i32]* %35, i64 0, i64 0 - %37 = load i32, i32* %36, align 4 - %38 = getelementptr inbounds %struct.suffix, %struct.suffix* %7, i32 0, i32 1 - %39 = getelementptr inbounds [2 x i32], [2 x i32]* %38, i64 0, i64 0 - %40 = load i32, i32* %39, align 4 - %41 = icmp slt i32 %37, %40 - %42 = zext i1 %41 to i64 - %43 = select i1 %41, i32 1, i32 0 - br label %44 - -44: ; preds = %34, %24 - %45 = phi i32 [ %33, %24 ], [ %43, %34 ] - ret i32 %45 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::vector"* noalias sret(%"class.std::vector") align 8 %0, %"class.std::__cxx11::basic_string"* %1, i32 %2) #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i1, align 1 - %17 = alloca i32, align 4 - %18 = alloca i8*, align 8 - %19 = alloca i32, align 4 - %20 = bitcast %"class.std::vector"* %0 to i8* - store i8* %20, i8** %4, align 8 - store i32 %2, i32* %5, align 4 - %21 = load i32, i32* %5, align 4 - %22 = zext i32 %21 to i64 - %23 = call i8* @llvm.stacksave() - store i8* %23, i8** %6, align 8 - %24 = alloca %struct.suffix, i64 %22, align 16 - store i64 %22, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %25 - -25: ; preds = %66, %3 - %26 = load i32, i32* %8, align 4 - %27 = load i32, i32* %5, align 4 - %28 = icmp slt i32 %26, %27 - br i1 %28, label %29, label %69 - -29: ; preds = %25 - %30 = load i32, i32* %8, align 4 - %31 = load i32, i32* %8, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %32 - %34 = getelementptr inbounds %struct.suffix, %struct.suffix* %33, i32 0, i32 0 - store i32 %30, i32* %34, align 4 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %36) - %38 = load i8, i8* %37, align 1 - %39 = sext i8 %38 to i32 - %40 = sub nsw i32 %39, 97 - %41 = load i32, i32* %8, align 4 - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %42 - %44 = getelementptr inbounds %struct.suffix, %struct.suffix* %43, i32 0, i32 1 - %45 = getelementptr inbounds [2 x i32], [2 x i32]* %44, i64 0, i64 0 - store i32 %40, i32* %45, align 4 - %46 = load i32, i32* %8, align 4 - %47 = add nsw i32 %46, 1 - %48 = load i32, i32* %5, align 4 - %49 = icmp slt i32 %47, %48 - br i1 %49, label %50, label %58 - -50: ; preds = %29 - %51 = load i32, i32* %8, align 4 - %52 = add nsw i32 %51, 1 - %53 = sext i32 %52 to i64 - %54 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %53) - %55 = load i8, i8* %54, align 1 - %56 = sext i8 %55 to i32 - %57 = sub nsw i32 %56, 97 - br label %59 - -58: ; preds = %29 - br label %59 - -59: ; preds = %58, %50 - %60 = phi i32 [ %57, %50 ], [ -1, %58 ] - %61 = load i32, i32* %8, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %62 - %64 = getelementptr inbounds %struct.suffix, %struct.suffix* %63, i32 0, i32 1 - %65 = getelementptr inbounds [2 x i32], [2 x i32]* %64, i64 0, i64 1 - store i32 %60, i32* %65, align 4 - br label %66 - -66: ; preds = %59 - %67 = load i32, i32* %8, align 4 - %68 = add nsw i32 %67, 1 - store i32 %68, i32* %8, align 4 - br label %25, !llvm.loop !2 - -69: ; preds = %25 - %70 = load i32, i32* %5, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %71 - call void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%struct.suffix* %24, %struct.suffix* %72, i32 (i64, i32, i64, i32)* @_Z3cmp6suffixS_) - %73 = load i32, i32* %5, align 4 - %74 = zext i32 %73 to i64 - %75 = alloca i32, i64 %74, align 16 - store i64 %74, i64* %9, align 8 - store i32 4, i32* %10, align 4 - br label %76 - -76: ; preds = %204, %69 - %77 = load i32, i32* %10, align 4 - %78 = load i32, i32* %5, align 4 - %79 = mul nsw i32 2, %78 - %80 = icmp slt i32 %77, %79 - br i1 %80, label %81, label %207 - -81: ; preds = %76 - store i32 0, i32* %11, align 4 - %82 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 0 - %83 = getelementptr inbounds %struct.suffix, %struct.suffix* %82, i32 0, i32 1 - %84 = getelementptr inbounds [2 x i32], [2 x i32]* %83, i64 0, i64 0 - %85 = load i32, i32* %84, align 4 - store i32 %85, i32* %12, align 4 - %86 = load i32, i32* %11, align 4 - %87 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 0 - %88 = getelementptr inbounds %struct.suffix, %struct.suffix* %87, i32 0, i32 1 - %89 = getelementptr inbounds [2 x i32], [2 x i32]* %88, i64 0, i64 0 - store i32 %86, i32* %89, align 4 - %90 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 0 - %91 = getelementptr inbounds %struct.suffix, %struct.suffix* %90, i32 0, i32 0 - %92 = load i32, i32* %91, align 16 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %75, i64 %93 - store i32 0, i32* %94, align 4 - store i32 1, i32* %13, align 4 - br label %95 - -95: ; preds = %159, %81 - %96 = load i32, i32* %13, align 4 - %97 = load i32, i32* %5, align 4 - %98 = icmp slt i32 %96, %97 - br i1 %98, label %99, label %162 - -99: ; preds = %95 - %100 = load i32, i32* %13, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %101 - %103 = getelementptr inbounds %struct.suffix, %struct.suffix* %102, i32 0, i32 1 - %104 = getelementptr inbounds [2 x i32], [2 x i32]* %103, i64 0, i64 0 - %105 = load i32, i32* %104, align 4 - %106 = load i32, i32* %12, align 4 - %107 = icmp eq i32 %105, %106 - br i1 %107, label %108, label %136 - -108: ; preds = %99 - %109 = load i32, i32* %13, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %110 - %112 = getelementptr inbounds %struct.suffix, %struct.suffix* %111, i32 0, i32 1 - %113 = getelementptr inbounds [2 x i32], [2 x i32]* %112, i64 0, i64 1 - %114 = load i32, i32* %113, align 4 - %115 = load i32, i32* %13, align 4 - %116 = sub nsw i32 %115, 1 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %117 - %119 = getelementptr inbounds %struct.suffix, %struct.suffix* %118, i32 0, i32 1 - %120 = getelementptr inbounds [2 x i32], [2 x i32]* %119, i64 0, i64 1 - %121 = load i32, i32* %120, align 4 - %122 = icmp eq i32 %114, %121 - br i1 %122, label %123, label %136 - -123: ; preds = %108 - %124 = load i32, i32* %13, align 4 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %125 - %127 = getelementptr inbounds %struct.suffix, %struct.suffix* %126, i32 0, i32 1 - %128 = getelementptr inbounds [2 x i32], [2 x i32]* %127, i64 0, i64 0 - %129 = load i32, i32* %128, align 4 - store i32 %129, i32* %12, align 4 - %130 = load i32, i32* %11, align 4 - %131 = load i32, i32* %13, align 4 - %132 = sext i32 %131 to i64 - %133 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %132 - %134 = getelementptr inbounds %struct.suffix, %struct.suffix* %133, i32 0, i32 1 - %135 = getelementptr inbounds [2 x i32], [2 x i32]* %134, i64 0, i64 0 - store i32 %130, i32* %135, align 4 - br label %150 - -136: ; preds = %108, %99 - %137 = load i32, i32* %13, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %138 - %140 = getelementptr inbounds %struct.suffix, %struct.suffix* %139, i32 0, i32 1 - %141 = getelementptr inbounds [2 x i32], [2 x i32]* %140, i64 0, i64 0 - %142 = load i32, i32* %141, align 4 - store i32 %142, i32* %12, align 4 - %143 = load i32, i32* %11, align 4 - %144 = add nsw i32 %143, 1 - store i32 %144, i32* %11, align 4 - %145 = load i32, i32* %13, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %146 - %148 = getelementptr inbounds %struct.suffix, %struct.suffix* %147, i32 0, i32 1 - %149 = getelementptr inbounds [2 x i32], [2 x i32]* %148, i64 0, i64 0 - store i32 %144, i32* %149, align 4 - br label %150 - -150: ; preds = %136, %123 - %151 = load i32, i32* %13, align 4 - %152 = load i32, i32* %13, align 4 - %153 = sext i32 %152 to i64 - %154 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %153 - %155 = getelementptr inbounds %struct.suffix, %struct.suffix* %154, i32 0, i32 0 - %156 = load i32, i32* %155, align 4 - %157 = sext i32 %156 to i64 - %158 = getelementptr inbounds i32, i32* %75, i64 %157 - store i32 %151, i32* %158, align 4 - br label %159 - -159: ; preds = %150 - %160 = load i32, i32* %13, align 4 - %161 = add nsw i32 %160, 1 - store i32 %161, i32* %13, align 4 - br label %95, !llvm.loop !4 - -162: ; preds = %95 - store i32 0, i32* %14, align 4 - br label %163 - -163: ; preds = %197, %162 - %164 = load i32, i32* %14, align 4 - %165 = load i32, i32* %5, align 4 - %166 = icmp slt i32 %164, %165 - br i1 %166, label %167, label %200 - -167: ; preds = %163 - %168 = load i32, i32* %14, align 4 - %169 = sext i32 %168 to i64 - %170 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %169 - %171 = getelementptr inbounds %struct.suffix, %struct.suffix* %170, i32 0, i32 0 - %172 = load i32, i32* %171, align 4 - %173 = load i32, i32* %10, align 4 - %174 = sdiv i32 %173, 2 - %175 = add nsw i32 %172, %174 - store i32 %175, i32* %15, align 4 - %176 = load i32, i32* %15, align 4 - %177 = load i32, i32* %5, align 4 - %178 = icmp slt i32 %176, %177 - br i1 %178, label %179, label %189 - -179: ; preds = %167 - %180 = load i32, i32* %15, align 4 - %181 = sext i32 %180 to i64 - %182 = getelementptr inbounds i32, i32* %75, i64 %181 - %183 = load i32, i32* %182, align 4 - %184 = sext i32 %183 to i64 - %185 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %184 - %186 = getelementptr inbounds %struct.suffix, %struct.suffix* %185, i32 0, i32 1 - %187 = getelementptr inbounds [2 x i32], [2 x i32]* %186, i64 0, i64 0 - %188 = load i32, i32* %187, align 4 - br label %190 - -189: ; preds = %167 - br label %190 - -190: ; preds = %189, %179 - %191 = phi i32 [ %188, %179 ], [ -1, %189 ] - %192 = load i32, i32* %14, align 4 - %193 = sext i32 %192 to i64 - %194 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %193 - %195 = getelementptr inbounds %struct.suffix, %struct.suffix* %194, i32 0, i32 1 - %196 = getelementptr inbounds [2 x i32], [2 x i32]* %195, i64 0, i64 1 - store i32 %191, i32* %196, align 4 - br label %197 - -197: ; preds = %190 - %198 = load i32, i32* %14, align 4 - %199 = add nsw i32 %198, 1 - store i32 %199, i32* %14, align 4 - br label %163, !llvm.loop !5 - -200: ; preds = %163 - %201 = load i32, i32* %5, align 4 - %202 = sext i32 %201 to i64 - %203 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %202 - call void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%struct.suffix* %24, %struct.suffix* %203, i32 (i64, i32, i64, i32)* @_Z3cmp6suffixS_) - br label %204 - -204: ; preds = %200 - %205 = load i32, i32* %10, align 4 - %206 = mul nsw i32 %205, 2 - store i32 %206, i32* %10, align 4 - br label %76, !llvm.loop !6 - -207: ; preds = %76 - store i1 false, i1* %16, align 1 - call void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 - store i32 0, i32* %17, align 4 - br label %208 - -208: ; preds = %218, %207 - %209 = load i32, i32* %17, align 4 - %210 = load i32, i32* %5, align 4 - %211 = icmp slt i32 %209, %210 - br i1 %211, label %212, label %225 - -212: ; preds = %208 - %213 = load i32, i32* %17, align 4 - %214 = sext i32 %213 to i64 - %215 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 %214 - %216 = getelementptr inbounds %struct.suffix, %struct.suffix* %215, i32 0, i32 0 - invoke void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %216) - to label %217 unwind label %221 - -217: ; preds = %212 - br label %218 - -218: ; preds = %217 - %219 = load i32, i32* %17, align 4 - %220 = add nsw i32 %219, 1 - store i32 %220, i32* %17, align 4 - br label %208, !llvm.loop !7 - -221: ; preds = %212 - %222 = landingpad { i8*, i32 } - cleanup - %223 = extractvalue { i8*, i32 } %222, 0 - store i8* %223, i8** %18, align 8 - %224 = extractvalue { i8*, i32 } %222, 1 - store i32 %224, i32* %19, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 - br label %230 - -225: ; preds = %208 - store i1 true, i1* %16, align 1 - %226 = load i1, i1* %16, align 1 - br i1 %226, label %228, label %227 - -227: ; preds = %225 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 - br label %228 - -228: ; preds = %227, %225 - %229 = load i8*, i8** %6, align 8 - call void @llvm.stackrestore(i8* %229) - ret void - -230: ; preds = %221 - %231 = load i8*, i8** %18, align 8 - %232 = load i32, i32* %19, align 4 - %233 = insertvalue { i8*, i32 } undef, i8* %231, 0 - %234 = insertvalue { i8*, i32 } %233, i32 %232, 1 - resume { i8*, i32 } %234 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #7 - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%struct.suffix* %0, %struct.suffix* %1, i32 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca i32 (i64, i32, i64, i32)*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %6, align 8 - %8 = load %struct.suffix*, %struct.suffix** %4, align 8 - %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %6, align 8 - %11 = call i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_(i32 (i64, i32, i64, i32)* %10) - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %11, i32 (i64, i32, i64, i32)** %12, align 8 - %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %14 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %13, align 8 - call void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %8, %struct.suffix* %9, i32 (i64, i32, i64, i32)* %14) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #6 comdat align 2 { - %3 = alloca %"class.std::vector"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %7 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %8 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %8 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %9, i32 0, i32 1 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %13 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %13 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %14, i32 0, i32 2 - %16 = load i32*, i32** %15, align 8 - %17 = icmp ne i32* %11, %16 - br i1 %17, label %18, label %34 - -18: ; preds = %2 - %19 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %20 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %20 to %"class.std::allocator"* - %22 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %23 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %23 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %24, i32 0, i32 1 - %26 = load i32*, i32** %25, align 8 - %27 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %21, i32* %26, i32* nonnull align 4 dereferenceable(4) %27) #3 - %28 = bitcast %"class.std::vector"* %6 to %"struct.std::_Vector_base"* - %29 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %28, i32 0, i32 0 - %30 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %29 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %30, i32 0, i32 1 - %32 = load i32*, i32** %31, align 8 - %33 = getelementptr inbounds i32, i32* %32, i32 1 - store i32* %33, i32** %31, align 8 - br label %40 - -34: ; preds = %2 - %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 - %36 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - store i32* %35, i32** %36, align 8 - %37 = load i32*, i32** %4, align 8 - %38 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %39 = load i32*, i32** %38, align 8 - call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* nonnull dereferenceable(24) %6, i32* %39, i32* nonnull align 4 dereferenceable(4) %37) - br label %40 - -40: ; preds = %34, %18 - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::vector"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %5 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %6 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %7 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %7 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %12 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %12 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %14 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %13, i32 0, i32 1 - %15 = load i32*, i32** %14, align 8 - %16 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %17 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %16) #3 - invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %10, i32* %15, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %17) - to label %18 unwind label %20 - -18: ; preds = %1 - %19 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %19) #3 - ret void - -20: ; preds = %1 - %21 = landingpad { i8*, i32 } - catch i8* null - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %3, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %4, align 4 - %24 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %24) #3 - br label %25 - -25: ; preds = %20 - %26 = load i8*, i8** %3, align 8 - call void @__clang_call_terminate(i8* %26) #15 - unreachable -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #7 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(%"class.std::vector"* noalias sret(%"class.std::vector") align 8 %0, %"class.std::__cxx11::basic_string"* %1, %"class.std::vector"* %2) #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i1, align 1 - %7 = alloca i32, align 4 - %8 = alloca %"class.std::allocator", align 1 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - %11 = alloca %"class.std::vector", align 8 - %12 = alloca i32, align 4 - %13 = alloca %"class.std::allocator", align 1 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = bitcast %"class.std::vector"* %0 to i8* - store i8* %18, i8** %4, align 8 - %19 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %2) #3 - %20 = trunc i64 %19 to i32 - store i32 %20, i32* %5, align 4 - store i1 false, i1* %6, align 1 - %21 = load i32, i32* %5, align 4 - %22 = sext i32 %21 to i64 - store i32 0, i32* %7, align 4 - call void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %22, i32* nonnull align 4 dereferenceable(4) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %8) - to label %23 unwind label %42 - -23: ; preds = %3 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - store i32 0, i32* %12, align 4 - call void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %13) #3 - invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* nonnull dereferenceable(24) %11, i64 %25, i32* nonnull align 4 dereferenceable(4) %12, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13) - to label %26 unwind label %46 - -26: ; preds = %23 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %13) #3 - store i32 0, i32* %14, align 4 - br label %27 - -27: ; preds = %39, %26 - %28 = load i32, i32* %14, align 4 - %29 = load i32, i32* %5, align 4 - %30 = icmp slt i32 %28, %29 - br i1 %30, label %31, label %50 - -31: ; preds = %27 - %32 = load i32, i32* %14, align 4 - %33 = load i32, i32* %14, align 4 - %34 = sext i32 %33 to i64 - %35 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %2, i64 %34) #3 - %36 = load i32, i32* %35, align 4 - %37 = sext i32 %36 to i64 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %11, i64 %37) #3 - store i32 %32, i32* %38, align 4 - br label %39 - -39: ; preds = %31 - %40 = load i32, i32* %14, align 4 - %41 = add nsw i32 %40, 1 - store i32 %41, i32* %14, align 4 - br label %27, !llvm.loop !8 - -42: ; preds = %3 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %9, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %10, align 4 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - br label %134 - -46: ; preds = %23 - %47 = landingpad { i8*, i32 } - cleanup - %48 = extractvalue { i8*, i32 } %47, 0 - store i8* %48, i8** %9, align 8 - %49 = extractvalue { i8*, i32 } %47, 1 - store i32 %49, i32* %10, align 4 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %13) #3 - br label %133 - -50: ; preds = %27 - store i32 0, i32* %15, align 4 - store i32 0, i32* %16, align 4 - br label %51 - -51: ; preds = %126, %50 - %52 = load i32, i32* %16, align 4 - %53 = load i32, i32* %5, align 4 - %54 = icmp slt i32 %52, %53 - br i1 %54, label %55, label %129 - -55: ; preds = %51 - %56 = load i32, i32* %16, align 4 - %57 = sext i32 %56 to i64 - %58 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %11, i64 %57) #3 - %59 = load i32, i32* %58, align 4 - %60 = load i32, i32* %5, align 4 - %61 = sub nsw i32 %60, 1 - %62 = icmp eq i32 %59, %61 - br i1 %62, label %63, label %64 - -63: ; preds = %55 - store i32 0, i32* %15, align 4 - br label %126 - -64: ; preds = %55 - %65 = load i32, i32* %16, align 4 - %66 = sext i32 %65 to i64 - %67 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %11, i64 %66) #3 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %68, 1 - %70 = sext i32 %69 to i64 - %71 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %2, i64 %70) #3 - %72 = load i32, i32* %71, align 4 - store i32 %72, i32* %17, align 4 - br label %73 - -73: ; preds = %105, %64 - %74 = load i32, i32* %16, align 4 - %75 = load i32, i32* %15, align 4 - %76 = add nsw i32 %74, %75 - %77 = load i32, i32* %5, align 4 - %78 = icmp slt i32 %76, %77 - br i1 %78, label %79, label %103 - -79: ; preds = %73 - %80 = load i32, i32* %17, align 4 - %81 = load i32, i32* %15, align 4 - %82 = add nsw i32 %80, %81 - %83 = load i32, i32* %5, align 4 - %84 = icmp slt i32 %82, %83 - br i1 %84, label %85, label %103 - -85: ; preds = %79 - %86 = load i32, i32* %16, align 4 - %87 = load i32, i32* %15, align 4 - %88 = add nsw i32 %86, %87 - %89 = sext i32 %88 to i64 - %90 = invoke nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %89) - to label %91 unwind label %108 - -91: ; preds = %85 - %92 = load i8, i8* %90, align 1 - %93 = sext i8 %92 to i32 - %94 = load i32, i32* %17, align 4 - %95 = load i32, i32* %15, align 4 - %96 = add nsw i32 %94, %95 - %97 = sext i32 %96 to i64 - %98 = invoke nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %97) - to label %99 unwind label %108 - -99: ; preds = %91 - %100 = load i8, i8* %98, align 1 - %101 = sext i8 %100 to i32 - %102 = icmp eq i32 %93, %101 - br label %103 - -103: ; preds = %99, %79, %73 - %104 = phi i1 [ false, %79 ], [ false, %73 ], [ %102, %99 ] - br i1 %104, label %105, label %112 - -105: ; preds = %103 - %106 = load i32, i32* %15, align 4 - %107 = add nsw i32 %106, 1 - store i32 %107, i32* %15, align 4 - br label %73, !llvm.loop !9 - -108: ; preds = %91, %85 - %109 = landingpad { i8*, i32 } - cleanup - %110 = extractvalue { i8*, i32 } %109, 0 - store i8* %110, i8** %9, align 8 - %111 = extractvalue { i8*, i32 } %109, 1 - store i32 %111, i32* %10, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %11) #3 - br label %133 - -112: ; preds = %103 - %113 = load i32, i32* %15, align 4 - %114 = load i32, i32* %16, align 4 - %115 = sext i32 %114 to i64 - %116 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %11, i64 %115) #3 - %117 = load i32, i32* %116, align 4 - %118 = sext i32 %117 to i64 - %119 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %118) #3 - store i32 %113, i32* %119, align 4 - %120 = load i32, i32* %15, align 4 - %121 = icmp sgt i32 %120, 0 - br i1 %121, label %122, label %125 - -122: ; preds = %112 - %123 = load i32, i32* %15, align 4 - %124 = add nsw i32 %123, -1 - store i32 %124, i32* %15, align 4 - br label %125 - -125: ; preds = %122, %112 - br label %126 - -126: ; preds = %125, %63 - %127 = load i32, i32* %16, align 4 - %128 = add nsw i32 %127, 1 - store i32 %128, i32* %16, align 4 - br label %51, !llvm.loop !10 - -129: ; preds = %51 - store i1 true, i1* %6, align 1 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %11) #3 - %130 = load i1, i1* %6, align 1 - br i1 %130, label %132, label %131 - -131: ; preds = %129 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 - br label %132 - -132: ; preds = %131, %129 - ret void - -133: ; preds = %108, %46 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 - br label %134 - -134: ; preds = %133, %42 - %135 = load i8*, i8** %9, align 8 - %136 = load i32, i32* %10, align 4 - %137 = insertvalue { i8*, i32 } undef, i8* %135, 0 - %138 = insertvalue { i8*, i32 } %137, i32 %136, 1 - resume { i8*, i32 } %138 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %6, i32 0, i32 1 - %8 = load i32*, i32** %7, align 8 - %9 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 0 - %13 = load i32*, i32** %12, align 8 - %14 = ptrtoint i32* %8 to i64 - %15 = ptrtoint i32* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 4 - ret i64 %17 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca %"class.std::vector"*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - store %"class.std::vector"* %0, %"class.std::vector"** %5, align 8 - store i64 %1, i64* %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %11 = load %"class.std::vector"*, %"class.std::vector"** %5, align 8 - %12 = bitcast %"class.std::vector"* %11 to %"struct.std::_Vector_base"* - %13 = load i64, i64* %6, align 8 - %14 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %15 = call i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 %13, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %14) - %16 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %12, i64 %15, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %16) - %17 = load i64, i64* %6, align 8 - %18 = load i32*, i32** %7, align 8 - invoke void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi(%"class.std::vector"* nonnull dereferenceable(24) %11, i64 %17, i32* nonnull align 4 dereferenceable(4) %18) - to label %19 unwind label %20 - -19: ; preds = %4 - ret void - -20: ; preds = %4 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %9, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %10, align 4 - %24 = bitcast %"class.std::vector"* %11 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %24) #3 - br label %25 - -25: ; preds = %20 - %26 = load i8*, i8** %9, align 8 - %27 = load i32, i32* %10, align 4 - %28 = insertvalue { i8*, i32 } undef, i8* %26, 0 - %29 = insertvalue { i8*, i32 } %28, i32 %27, 1 - resume { i8*, i32 } %29 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::vector"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %6 = bitcast %"class.std::vector"* %5 to %"struct.std::_Vector_base"* - %7 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %7 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = load i64, i64* %4, align 8 - %12 = getelementptr inbounds i32, i32* %10, i64 %11 - ret i32* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* %0, i32 %1) #6 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %1, i32* %3, align 4 - store i32 0, i32* %4, align 4 - br label %5 - -5: ; preds = %16, %2 - %6 = load i32, i32* %4, align 4 - %7 = load i32, i32* %3, align 4 - %8 = icmp slt i32 %6, %7 - br i1 %8, label %9, label %19 - -9: ; preds = %5 - %10 = load i32, i32* %4, align 4 - %11 = sext i32 %10 to i64 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %11) #3 - %13 = load i32, i32* %12, align 4 - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %13) - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %14, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %16 - -16: ; preds = %9 - %17 = load i32, i32* %4, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %4, align 4 - br label %5, !llvm.loop !11 - -19: ; preds = %5 - %20 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator.0", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::vector", align 8 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca i32, align 4 - %9 = alloca %"class.std::vector", align 8 - %10 = alloca %"class.std::vector", align 8 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::vector", align 8 - %13 = alloca %"class.std::vector", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([7 x i8], [7 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %3) - to label %14 unwind label %35 - -14: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %15 unwind label %39 - -15: ; preds = %14 - %16 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %17 = trunc i64 %16 to i32 - invoke void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::vector"* sret(%"class.std::vector") align 8 %6, %"class.std::__cxx11::basic_string"* %7, i32 %17) - to label %18 unwind label %43 - -18: ; preds = %15 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - %19 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 - %20 = trunc i64 %19 to i32 - store i32 %20, i32* %8, align 4 - %21 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([17 x i8], [17 x i8]* @.str.2, i64 0, i64 0)) - to label %22 unwind label %47 - -22: ; preds = %18 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* nonnull dereferenceable(24) %9, %"class.std::vector"* nonnull align 8 dereferenceable(24) %6) - to label %23 unwind label %47 - -23: ; preds = %22 - %24 = load i32, i32* %8, align 4 - invoke void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* %9, i32 %24) - to label %25 unwind label %51 - -25: ; preds = %23 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %26 unwind label %47 - -26: ; preds = %25 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* nonnull dereferenceable(24) %12, %"class.std::vector"* nonnull align 8 dereferenceable(24) %6) - to label %27 unwind label %55 - -27: ; preds = %26 - invoke void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(%"class.std::vector"* sret(%"class.std::vector") align 8 %10, %"class.std::__cxx11::basic_string"* %11, %"class.std::vector"* %12) - to label %28 unwind label %59 - -28: ; preds = %27 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %12) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - %29 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([15 x i8], [15 x i8]* @.str.3, i64 0, i64 0)) - to label %30 unwind label %64 - -30: ; preds = %28 - invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* nonnull dereferenceable(24) %13, %"class.std::vector"* nonnull align 8 dereferenceable(24) %10) - to label %31 unwind label %64 - -31: ; preds = %30 - %32 = load i32, i32* %8, align 4 - invoke void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* %13, i32 %32) - to label %33 unwind label %68 - -33: ; preds = %31 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %13) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %10) #3 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %34 = load i32, i32* %1, align 4 - ret i32 %34 - -35: ; preds = %0 - %36 = landingpad { i8*, i32 } - cleanup - %37 = extractvalue { i8*, i32 } %36, 0 - store i8* %37, i8** %4, align 8 - %38 = extractvalue { i8*, i32 } %36, 1 - store i32 %38, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %3) #3 - br label %75 - -39: ; preds = %14 - %40 = landingpad { i8*, i32 } - cleanup - %41 = extractvalue { i8*, i32 } %40, 0 - store i8* %41, i8** %4, align 8 - %42 = extractvalue { i8*, i32 } %40, 1 - store i32 %42, i32* %5, align 4 - br label %74 - -43: ; preds = %15 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %4, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - br label %74 - -47: ; preds = %25, %22, %18 - %48 = landingpad { i8*, i32 } - cleanup - %49 = extractvalue { i8*, i32 } %48, 0 - store i8* %49, i8** %4, align 8 - %50 = extractvalue { i8*, i32 } %48, 1 - store i32 %50, i32* %5, align 4 - br label %73 - -51: ; preds = %23 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %4, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - br label %73 - -55: ; preds = %26 - %56 = landingpad { i8*, i32 } - cleanup - %57 = extractvalue { i8*, i32 } %56, 0 - store i8* %57, i8** %4, align 8 - %58 = extractvalue { i8*, i32 } %56, 1 - store i32 %58, i32* %5, align 4 - br label %63 - -59: ; preds = %27 - %60 = landingpad { i8*, i32 } - cleanup - %61 = extractvalue { i8*, i32 } %60, 0 - store i8* %61, i8** %4, align 8 - %62 = extractvalue { i8*, i32 } %60, 1 - store i32 %62, i32* %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %12) #3 - br label %63 - -63: ; preds = %59, %55 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - br label %73 - -64: ; preds = %30, %28 - %65 = landingpad { i8*, i32 } - cleanup - %66 = extractvalue { i8*, i32 } %65, 0 - store i8* %66, i8** %4, align 8 - %67 = extractvalue { i8*, i32 } %65, 1 - store i32 %67, i32* %5, align 4 - br label %72 - -68: ; preds = %31 - %69 = landingpad { i8*, i32 } - cleanup - %70 = extractvalue { i8*, i32 } %69, 0 - store i8* %70, i8** %4, align 8 - %71 = extractvalue { i8*, i32 } %69, 1 - store i32 %71, i32* %5, align 4 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %13) #3 - br label %72 - -72: ; preds = %68, %64 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %10) #3 - br label %73 - -73: ; preds = %72, %63, %51, %47 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 - br label %74 - -74: ; preds = %73, %43, %39 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %75 - -75: ; preds = %74, %35 - %76 = load i8*, i8** %4, align 8 - %77 = load i32, i32* %5, align 4 - %78 = insertvalue { i8*, i32 } undef, i8* %76, 0 - %79 = insertvalue { i8*, i32 } %78, i32 %77, 1 - resume { i8*, i32 } %79 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* nonnull dereferenceable(24) %0, %"class.std::vector"* nonnull align 8 dereferenceable(24) %1) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::vector"*, align 8 - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca %"class.std::allocator", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - store %"class.std::vector"* %1, %"class.std::vector"** %4, align 8 - %10 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %11 = bitcast %"class.std::vector"* %10 to %"struct.std::_Vector_base"* - %12 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %13 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %12) #3 - %14 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %15 = bitcast %"class.std::vector"* %14 to %"struct.std::_Vector_base"* - %16 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %15) #3 - call void @_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %5, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %16) - invoke void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %11, i64 %13, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) - to label %17 unwind label %41 - -17: ; preds = %2 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %5) #3 - %18 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %19 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %18) #3 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - store i32* %19, i32** %20, align 8 - %21 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %22 = call i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %21) #3 - %23 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - store i32* %22, i32** %23, align 8 - %24 = bitcast %"class.std::vector"* %10 to %"struct.std::_Vector_base"* - %25 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %25 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = bitcast %"class.std::vector"* %10 to %"struct.std::_Vector_base"* - %30 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %29) #3 - %31 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - %33 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = invoke i32* @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(i32* %32, i32* %34, i32* %28, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %30) - to label %36 unwind label %45 - -36: ; preds = %17 - %37 = bitcast %"class.std::vector"* %10 to %"struct.std::_Vector_base"* - %38 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %37, i32 0, i32 0 - %39 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %38 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %40 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %39, i32 0, i32 1 - store i32* %35, i32** %40, align 8 - ret void - -41: ; preds = %2 - %42 = landingpad { i8*, i32 } - cleanup - %43 = extractvalue { i8*, i32 } %42, 0 - store i8* %43, i8** %6, align 8 - %44 = extractvalue { i8*, i32 } %42, 1 - store i32 %44, i32* %7, align 4 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %5) #3 - br label %50 - -45: ; preds = %17 - %46 = landingpad { i8*, i32 } - cleanup - %47 = extractvalue { i8*, i32 } %46, 0 - store i8* %47, i8** %6, align 8 - %48 = extractvalue { i8*, i32 } %46, 1 - store i32 %48, i32* %7, align 4 - %49 = bitcast %"class.std::vector"* %10 to %"struct.std::_Vector_base"* - call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %49) #3 - br label %50 - -50: ; preds = %45, %41 - %51 = load i8*, i8** %6, align 8 - %52 = load i32, i32* %7, align 4 - %53 = insertvalue { i8*, i32 } undef, i8* %51, 0 - %54 = insertvalue { i8*, i32 } %53, i32 %52, 1 - resume { i8*, i32 } %54 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %3 to %"struct.std::_Vector_base>::_Vector_impl_data"* - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl_data"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl_data"* %0, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl_data"*, %"struct.std::_Vector_base>::_Vector_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, i32 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %9, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %10 = load %struct.suffix*, %struct.suffix** %5, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = icmp ne %struct.suffix* %10, %11 - br i1 %12, label %13, label %34 - -13: ; preds = %3 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = load %struct.suffix*, %struct.suffix** %6, align 8 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = load %struct.suffix*, %struct.suffix** %5, align 8 - %18 = ptrtoint %struct.suffix* %16 to i64 - %19 = ptrtoint %struct.suffix* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 12 - %22 = call i64 @_ZSt4__lgl(i64 %21) - %23 = mul nsw i64 %22, 2 - %24 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7 to i8* - %25 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - %26 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %27 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %26, align 8 - call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* %14, %struct.suffix* %15, i64 %23, i32 (i64, i32, i64, i32)* %27) - %28 = load %struct.suffix*, %struct.suffix** %5, align 8 - %29 = load %struct.suffix*, %struct.suffix** %6, align 8 - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %31 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %30, i8* align 8 %31, i64 8, i1 false) - %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %33 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %32, align 8 - call void @_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %28, %struct.suffix* %29, i32 (i64, i32, i64, i32)* %33) - br label %34 - -34: ; preds = %13, %3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFi6suffixS2_EEENS0_15_Iter_comp_iterIT_EES6_(i32 (i64, i32, i64, i32)* %0) #6 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %3 = alloca i32 (i64, i32, i64, i32)*, align 8 - store i32 (i64, i32, i64, i32)* %0, i32 (i64, i32, i64, i32)** %3, align 8 - %4 = call nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %3) #3 - %5 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %4, align 8 - call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %2, i32 (i64, i32, i64, i32)* %5) - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, i32 0, i32 0 - %7 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %6, align 8 - ret i32 (i64, i32, i64, i32)* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* %0, %struct.suffix* %1, i64 %2, i32 (i64, i32, i64, i32)* %3) #6 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.suffix*, align 8 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %13, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store i64 %2, i64* %8, align 8 - br label %14 - -14: ; preds = %33, %4 - %15 = load %struct.suffix*, %struct.suffix** %7, align 8 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = ptrtoint %struct.suffix* %15 to i64 - %18 = ptrtoint %struct.suffix* %16 to i64 - %19 = sub i64 %17, %18 - %20 = sdiv exact i64 %19, 12 - %21 = icmp sgt i64 %20, 16 - br i1 %21, label %22, label %51 - -22: ; preds = %14 - %23 = load i64, i64* %8, align 8 - %24 = icmp eq i64 %23, 0 - br i1 %24, label %25, label %33 - -25: ; preds = %22 - %26 = load %struct.suffix*, %struct.suffix** %6, align 8 - %27 = load %struct.suffix*, %struct.suffix** %7, align 8 - %28 = load %struct.suffix*, %struct.suffix** %7, align 8 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %32 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* %26, %struct.suffix* %27, %struct.suffix* %28, i32 (i64, i32, i64, i32)* %32) - br label %51 - -33: ; preds = %22 - %34 = load i64, i64* %8, align 8 - %35 = add nsw i64 %34, -1 - store i64 %35, i64* %8, align 8 - %36 = load %struct.suffix*, %struct.suffix** %6, align 8 - %37 = load %struct.suffix*, %struct.suffix** %7, align 8 - %38 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %39 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %38, i8* align 8 %39, i64 8, i1 false) - %40 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %41 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %40, align 8 - %42 = call %struct.suffix* @_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_(%struct.suffix* %36, %struct.suffix* %37, i32 (i64, i32, i64, i32)* %41) - store %struct.suffix* %42, %struct.suffix** %10, align 8 - %43 = load %struct.suffix*, %struct.suffix** %10, align 8 - %44 = load %struct.suffix*, %struct.suffix** %7, align 8 - %45 = load i64, i64* %8, align 8 - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12 to i8* - %47 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %46, i8* align 8 %47, i64 8, i1 false) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12, i32 0, i32 0 - %49 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %48, align 8 - call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* %43, %struct.suffix* %44, i64 %45, i32 (i64, i32, i64, i32)* %49) - %50 = load %struct.suffix*, %struct.suffix** %10, align 8 - store %struct.suffix* %50, %struct.suffix** %7, align 8 - br label %14, !llvm.loop !12 - -51: ; preds = %25, %14 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #4 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = call i64 @llvm.ctlz.i64(i64 %3, i1 true) - %5 = trunc i64 %4 to i32 - %6 = sub nsw i32 63, %5 - %7 = sext i32 %6 to i64 - ret i64 %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, i32 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %5, align 8 - %13 = ptrtoint %struct.suffix* %11 to i64 - %14 = ptrtoint %struct.suffix* %12 to i64 - %15 = sub i64 %13, %14 - %16 = sdiv exact i64 %15, 12 - %17 = icmp sgt i64 %16, 16 - br i1 %17, label %18, label %33 - -18: ; preds = %3 - %19 = load %struct.suffix*, %struct.suffix** %5, align 8 - %20 = load %struct.suffix*, %struct.suffix** %5, align 8 - %21 = getelementptr inbounds %struct.suffix, %struct.suffix* %20, i64 16 - %22 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7 to i8* - %23 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %25 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %19, %struct.suffix* %21, i32 (i64, i32, i64, i32)* %25) - %26 = load %struct.suffix*, %struct.suffix** %5, align 8 - %27 = getelementptr inbounds %struct.suffix, %struct.suffix* %26, i64 16 - %28 = load %struct.suffix*, %struct.suffix** %6, align 8 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %32 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %27, %struct.suffix* %28, i32 (i64, i32, i64, i32)* %32) - br label %40 - -33: ; preds = %3 - %34 = load %struct.suffix*, %struct.suffix** %5, align 8 - %35 = load %struct.suffix*, %struct.suffix** %6, align 8 - %36 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %37 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %36, i8* align 8 %37, i64 8, i1 false) - %38 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %39 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %38, align 8 - call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %34, %struct.suffix* %35, i32 (i64, i32, i64, i32)* %39) - br label %40 - -40: ; preds = %33, %18 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2, i32 (i64, i32, i64, i32)* %3) #6 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store %struct.suffix* %2, %struct.suffix** %8, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %7, align 8 - %13 = load %struct.suffix*, %struct.suffix** %8, align 8 - %14 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %15 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %17 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %16, align 8 - call void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* %11, %struct.suffix* %12, %struct.suffix* %13, i32 (i64, i32, i64, i32)* %17) - %18 = load %struct.suffix*, %struct.suffix** %6, align 8 - %19 = load %struct.suffix*, %struct.suffix** %7, align 8 - call void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* %18, %struct.suffix* %19, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, i32 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %11 = load %struct.suffix*, %struct.suffix** %5, align 8 - %12 = load %struct.suffix*, %struct.suffix** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %5, align 8 - %14 = ptrtoint %struct.suffix* %12 to i64 - %15 = ptrtoint %struct.suffix* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 12 - %18 = sdiv i64 %17, 2 - %19 = getelementptr inbounds %struct.suffix, %struct.suffix* %11, i64 %18 - store %struct.suffix* %19, %struct.suffix** %7, align 8 - %20 = load %struct.suffix*, %struct.suffix** %5, align 8 - %21 = load %struct.suffix*, %struct.suffix** %5, align 8 - %22 = getelementptr inbounds %struct.suffix, %struct.suffix* %21, i64 1 - %23 = load %struct.suffix*, %struct.suffix** %7, align 8 - %24 = load %struct.suffix*, %struct.suffix** %6, align 8 - %25 = getelementptr inbounds %struct.suffix, %struct.suffix* %24, i64 -1 - %26 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %27 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %26, i8* align 8 %27, i64 8, i1 false) - %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %29 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %28, align 8 - call void @_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.suffix* %20, %struct.suffix* %22, %struct.suffix* %23, %struct.suffix* %25, i32 (i64, i32, i64, i32)* %29) - %30 = load %struct.suffix*, %struct.suffix** %5, align 8 - %31 = getelementptr inbounds %struct.suffix, %struct.suffix* %30, i64 1 - %32 = load %struct.suffix*, %struct.suffix** %6, align 8 - %33 = load %struct.suffix*, %struct.suffix** %5, align 8 - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %35 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %34, i8* align 8 %35, i64 8, i1 false) - %36 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %37 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %36, align 8 - %38 = call %struct.suffix* @_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_(%struct.suffix* %31, %struct.suffix* %32, %struct.suffix* %33, i32 (i64, i32, i64, i32)* %37) - ret %struct.suffix* %38 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2, i32 (i64, i32, i64, i32)* %3) #6 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = alloca %struct.suffix*, align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store %struct.suffix* %2, %struct.suffix** %8, align 8 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %7, align 8 - call void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* %11, %struct.suffix* %12, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - %13 = load %struct.suffix*, %struct.suffix** %7, align 8 - store %struct.suffix* %13, %struct.suffix** %9, align 8 - br label %14 - -14: ; preds = %27, %4 - %15 = load %struct.suffix*, %struct.suffix** %9, align 8 - %16 = load %struct.suffix*, %struct.suffix** %8, align 8 - %17 = icmp ult %struct.suffix* %15, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %14 - %19 = load %struct.suffix*, %struct.suffix** %9, align 8 - %20 = load %struct.suffix*, %struct.suffix** %6, align 8 - %21 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %5, %struct.suffix* %19, %struct.suffix* %20) - br i1 %21, label %22, label %26 - -22: ; preds = %18 - %23 = load %struct.suffix*, %struct.suffix** %6, align 8 - %24 = load %struct.suffix*, %struct.suffix** %7, align 8 - %25 = load %struct.suffix*, %struct.suffix** %9, align 8 - call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* %23, %struct.suffix* %24, %struct.suffix* %25, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - br label %26 - -26: ; preds = %22, %18 - br label %27 - -27: ; preds = %26 - %28 = load %struct.suffix*, %struct.suffix** %9, align 8 - %29 = getelementptr inbounds %struct.suffix, %struct.suffix* %28, i32 1 - store %struct.suffix* %29, %struct.suffix** %9, align 8 - br label %14, !llvm.loop !13 - -30: ; preds = %14 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* %0, %struct.suffix* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %2) #6 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - br label %7 - -7: ; preds = %15, %3 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %4, align 8 - %10 = ptrtoint %struct.suffix* %8 to i64 - %11 = ptrtoint %struct.suffix* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %22 - -15: ; preds = %7 - %16 = load %struct.suffix*, %struct.suffix** %5, align 8 - %17 = getelementptr inbounds %struct.suffix, %struct.suffix* %16, i32 -1 - store %struct.suffix* %17, %struct.suffix** %5, align 8 - %18 = load %struct.suffix*, %struct.suffix** %4, align 8 - %19 = load %struct.suffix*, %struct.suffix** %5, align 8 - %20 = load %struct.suffix*, %struct.suffix** %5, align 8 - %21 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* %18, %struct.suffix* %19, %struct.suffix* %20, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %21) - br label %7, !llvm.loop !14 - -22: ; preds = %7 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* %0, %struct.suffix* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %2) #0 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca %struct.suffix, align 4 - %10 = alloca %struct.suffix, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %5, align 8 - %14 = load %struct.suffix*, %struct.suffix** %4, align 8 - %15 = ptrtoint %struct.suffix* %13 to i64 - %16 = ptrtoint %struct.suffix* %14 to i64 - %17 = sub i64 %15, %16 - %18 = sdiv exact i64 %17, 12 - %19 = icmp slt i64 %18, 2 - br i1 %19, label %20, label %21 - -20: ; preds = %3 - br label %61 - -21: ; preds = %3 - %22 = load %struct.suffix*, %struct.suffix** %5, align 8 - %23 = load %struct.suffix*, %struct.suffix** %4, align 8 - %24 = ptrtoint %struct.suffix* %22 to i64 - %25 = ptrtoint %struct.suffix* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 12 - store i64 %27, i64* %7, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub nsw i64 %28, 2 - %30 = sdiv i64 %29, 2 - store i64 %30, i64* %8, align 8 - br label %31 - -31: ; preds = %21, %58 - %32 = load %struct.suffix*, %struct.suffix** %4, align 8 - %33 = load i64, i64* %8, align 8 - %34 = getelementptr inbounds %struct.suffix, %struct.suffix* %32, i64 %33 - %35 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %34) #3 - %36 = bitcast %struct.suffix* %9 to i8* - %37 = bitcast %struct.suffix* %35 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %36, i8* align 4 %37, i64 12, i1 false) - %38 = load %struct.suffix*, %struct.suffix** %4, align 8 - %39 = load i64, i64* %8, align 8 - %40 = load i64, i64* %7, align 8 - %41 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %9) #3 - %42 = bitcast %struct.suffix* %10 to i8* - %43 = bitcast %struct.suffix* %41 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %42, i8* align 4 %43, i64 12, i1 false) - %44 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %45 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %44 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %45, i8* align 8 %46, i64 8, i1 false) - %47 = bitcast { i64, i32 }* %12 to i8* - %48 = bitcast %struct.suffix* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 12, i1 false) - %49 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %50 = load i64, i64* %49, align 4 - %51 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %52 = load i32, i32* %51, align 4 - %53 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %54 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %53, align 8 - call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* %38, i64 %39, i64 %40, i64 %50, i32 %52, i32 (i64, i32, i64, i32)* %54) - %55 = load i64, i64* %8, align 8 - %56 = icmp eq i64 %55, 0 - br i1 %56, label %57, label %58 - -57: ; preds = %31 - br label %61 - -58: ; preds = %31 - %59 = load i64, i64* %8, align 8 - %60 = add nsw i64 %59, -1 - store i64 %60, i64* %8, align 8 - br label %31 - -61: ; preds = %57, %20 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %0, %struct.suffix* %1, %struct.suffix* %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix, align 4 - %8 = alloca %struct.suffix, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %13 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = bitcast %struct.suffix* %8 to i8* - %19 = bitcast %struct.suffix* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.suffix* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call i32 %13(i64 %23, i32 %25, i64 %29, i32 %31) - %33 = icmp ne i32 %32, 0 - ret i1 %33 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %3) #6 comdat { - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %9 = alloca %struct.suffix, align 4 - %10 = alloca %struct.suffix, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - store %struct.suffix* %2, %struct.suffix** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %13 = load %struct.suffix*, %struct.suffix** %7, align 8 - %14 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %13) #3 - %15 = bitcast %struct.suffix* %9 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %5, align 8 - %18 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %17) #3 - %19 = load %struct.suffix*, %struct.suffix** %7, align 8 - %20 = bitcast %struct.suffix* %19 to i8* - %21 = bitcast %struct.suffix* %18 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = load %struct.suffix*, %struct.suffix** %5, align 8 - %23 = load %struct.suffix*, %struct.suffix** %6, align 8 - %24 = load %struct.suffix*, %struct.suffix** %5, align 8 - %25 = ptrtoint %struct.suffix* %23 to i64 - %26 = ptrtoint %struct.suffix* %24 to i64 - %27 = sub i64 %25, %26 - %28 = sdiv exact i64 %27, 12 - %29 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %9) #3 - %30 = bitcast %struct.suffix* %10 to i8* - %31 = bitcast %struct.suffix* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %33 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %32 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %33, i8* align 8 %34, i64 8, i1 false) - %35 = bitcast { i64, i32 }* %12 to i8* - %36 = bitcast %struct.suffix* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %35, i8* align 4 %36, i64 12, i1 false) - %37 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %38 = load i64, i64* %37, align 4 - %39 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %40 = load i32, i32* %39, align 4 - %41 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %42 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %41, align 8 - call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* %22, i64 0, i64 %28, i64 %38, i32 %40, i32 (i64, i32, i64, i32)* %42) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %0) #4 comdat { - %2 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %2, align 8 - %3 = load %struct.suffix*, %struct.suffix** %2, align 8 - ret %struct.suffix* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* %0, i64 %1, i64 %2, i64 %3, i32 %4, i32 (i64, i32, i64, i32)* %5) #6 comdat { - %7 = alloca %struct.suffix, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.suffix*, align 8 - %11 = alloca i64, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - %14 = alloca i64, align 8 - %15 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 8 - %16 = alloca %struct.suffix, align 4 - %17 = alloca { i64, i32 }, align 4 - %18 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %18, align 4 - %19 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %19, align 4 - %20 = bitcast %struct.suffix* %7 to i8* - %21 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %5, i32 (i64, i32, i64, i32)** %22, align 8 - store %struct.suffix* %0, %struct.suffix** %10, align 8 - store i64 %1, i64* %11, align 8 - store i64 %2, i64* %12, align 8 - %23 = load i64, i64* %11, align 8 - store i64 %23, i64* %13, align 8 - %24 = load i64, i64* %11, align 8 - store i64 %24, i64* %14, align 8 - br label %25 - -25: ; preds = %46, %6 - %26 = load i64, i64* %14, align 8 - %27 = load i64, i64* %12, align 8 - %28 = sub nsw i64 %27, 1 - %29 = sdiv i64 %28, 2 - %30 = icmp slt i64 %26, %29 - br i1 %30, label %31, label %57 - -31: ; preds = %25 - %32 = load i64, i64* %14, align 8 - %33 = add nsw i64 %32, 1 - %34 = mul nsw i64 2, %33 - store i64 %34, i64* %14, align 8 - %35 = load %struct.suffix*, %struct.suffix** %10, align 8 - %36 = load i64, i64* %14, align 8 - %37 = getelementptr inbounds %struct.suffix, %struct.suffix* %35, i64 %36 - %38 = load %struct.suffix*, %struct.suffix** %10, align 8 - %39 = load i64, i64* %14, align 8 - %40 = sub nsw i64 %39, 1 - %41 = getelementptr inbounds %struct.suffix, %struct.suffix* %38, i64 %40 - %42 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %9, %struct.suffix* %37, %struct.suffix* %41) - br i1 %42, label %43, label %46 - -43: ; preds = %31 - %44 = load i64, i64* %14, align 8 - %45 = add nsw i64 %44, -1 - store i64 %45, i64* %14, align 8 - br label %46 - -46: ; preds = %43, %31 - %47 = load %struct.suffix*, %struct.suffix** %10, align 8 - %48 = load i64, i64* %14, align 8 - %49 = getelementptr inbounds %struct.suffix, %struct.suffix* %47, i64 %48 - %50 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %49) #3 - %51 = load %struct.suffix*, %struct.suffix** %10, align 8 - %52 = load i64, i64* %11, align 8 - %53 = getelementptr inbounds %struct.suffix, %struct.suffix* %51, i64 %52 - %54 = bitcast %struct.suffix* %53 to i8* - %55 = bitcast %struct.suffix* %50 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %54, i8* align 4 %55, i64 12, i1 false) - %56 = load i64, i64* %14, align 8 - store i64 %56, i64* %11, align 8 - br label %25, !llvm.loop !15 - -57: ; preds = %25 - %58 = load i64, i64* %12, align 8 - %59 = and i64 %58, 1 - %60 = icmp eq i64 %59, 0 - br i1 %60, label %61, label %83 - -61: ; preds = %57 - %62 = load i64, i64* %14, align 8 - %63 = load i64, i64* %12, align 8 - %64 = sub nsw i64 %63, 2 - %65 = sdiv i64 %64, 2 - %66 = icmp eq i64 %62, %65 - br i1 %66, label %67, label %83 - -67: ; preds = %61 - %68 = load i64, i64* %14, align 8 - %69 = add nsw i64 %68, 1 - %70 = mul nsw i64 2, %69 - store i64 %70, i64* %14, align 8 - %71 = load %struct.suffix*, %struct.suffix** %10, align 8 - %72 = load i64, i64* %14, align 8 - %73 = sub nsw i64 %72, 1 - %74 = getelementptr inbounds %struct.suffix, %struct.suffix* %71, i64 %73 - %75 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %74) #3 - %76 = load %struct.suffix*, %struct.suffix** %10, align 8 - %77 = load i64, i64* %11, align 8 - %78 = getelementptr inbounds %struct.suffix, %struct.suffix* %76, i64 %77 - %79 = bitcast %struct.suffix* %78 to i8* - %80 = bitcast %struct.suffix* %75 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %79, i8* align 4 %80, i64 12, i1 false) - %81 = load i64, i64* %14, align 8 - %82 = sub nsw i64 %81, 1 - store i64 %82, i64* %11, align 8 - br label %83 - -83: ; preds = %67, %61, %57 - %84 = call nonnull align 8 dereferenceable(8) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS3_EEEEONSt16remove_referenceIT_E4typeEOS9_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %9) #3 - call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %15, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %84) - %85 = load %struct.suffix*, %struct.suffix** %10, align 8 - %86 = load i64, i64* %11, align 8 - %87 = load i64, i64* %13, align 8 - %88 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %7) #3 - %89 = bitcast %struct.suffix* %16 to i8* - %90 = bitcast %struct.suffix* %88 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %89, i8* align 4 %90, i64 12, i1 false) - %91 = bitcast { i64, i32 }* %17 to i8* - %92 = bitcast %struct.suffix* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %91, i8* align 4 %92, i64 12, i1 false) - %93 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 0 - %94 = load i64, i64* %93, align 4 - %95 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 1 - %96 = load i32, i32* %95, align 4 - call void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.suffix* %85, i64 %86, i64 %87, i64 %94, i32 %96, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 8 dereferenceable(8) %15) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS3_EEEEONSt16remove_referenceIT_E4typeEOS9_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %8) #3 - %10 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %9, align 8 - store i32 (i64, i32, i64, i32)* %10, i32 (i64, i32, i64, i32)** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.suffix* %0, i64 %1, i64 %2, i64 %3, i32 %4, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 8 dereferenceable(8) %5) #6 comdat { - %7 = alloca %struct.suffix, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %struct.suffix*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %13 = alloca i64, align 8 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %14, align 4 - %15 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %15, align 4 - %16 = bitcast %struct.suffix* %7 to i8* - %17 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %16, i8* align 4 %17, i64 12, i1 false) - store %struct.suffix* %0, %struct.suffix** %9, align 8 - store i64 %1, i64* %10, align 8 - store i64 %2, i64* %11, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %18 = load i64, i64* %10, align 8 - %19 = sub nsw i64 %18, 1 - %20 = sdiv i64 %19, 2 - store i64 %20, i64* %13, align 8 - br label %21 - -21: ; preds = %33, %6 - %22 = load i64, i64* %10, align 8 - %23 = load i64, i64* %11, align 8 - %24 = icmp sgt i64 %22, %23 - br i1 %24, label %25, label %31 - -25: ; preds = %21 - %26 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %27 = load %struct.suffix*, %struct.suffix** %9, align 8 - %28 = load i64, i64* %13, align 8 - %29 = getelementptr inbounds %struct.suffix, %struct.suffix* %27, i64 %28 - %30 = call zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %26, %struct.suffix* %29, %struct.suffix* nonnull align 4 dereferenceable(12) %7) - br label %31 - -31: ; preds = %25, %21 - %32 = phi i1 [ false, %21 ], [ %30, %25 ] - br i1 %32, label %33, label %47 - -33: ; preds = %31 - %34 = load %struct.suffix*, %struct.suffix** %9, align 8 - %35 = load i64, i64* %13, align 8 - %36 = getelementptr inbounds %struct.suffix, %struct.suffix* %34, i64 %35 - %37 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %36) #3 - %38 = load %struct.suffix*, %struct.suffix** %9, align 8 - %39 = load i64, i64* %10, align 8 - %40 = getelementptr inbounds %struct.suffix, %struct.suffix* %38, i64 %39 - %41 = bitcast %struct.suffix* %40 to i8* - %42 = bitcast %struct.suffix* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %41, i8* align 4 %42, i64 12, i1 false) - %43 = load i64, i64* %13, align 8 - store i64 %43, i64* %10, align 8 - %44 = load i64, i64* %10, align 8 - %45 = sub nsw i64 %44, 1 - %46 = sdiv i64 %45, 2 - store i64 %46, i64* %13, align 8 - br label %21, !llvm.loop !16 - -47: ; preds = %31 - %48 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %7) #3 - %49 = load %struct.suffix*, %struct.suffix** %9, align 8 - %50 = load i64, i64* %10, align 8 - %51 = getelementptr inbounds %struct.suffix, %struct.suffix* %49, i64 %50 - %52 = bitcast %struct.suffix* %51 to i8* - %53 = bitcast %struct.suffix* %48 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %52, i8* align 4 %53, i64 12, i1 false) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca i32 (i64, i32, i64, i32)**, align 8 - store i32 (i64, i32, i64, i32)** %0, i32 (i64, i32, i64, i32)*** %2, align 8 - %3 = load i32 (i64, i32, i64, i32)**, i32 (i64, i32, i64, i32)*** %2, align 8 - ret i32 (i64, i32, i64, i32)** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %0, %struct.suffix* %1, %struct.suffix* nonnull align 4 dereferenceable(12) %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix, align 4 - %8 = alloca %struct.suffix, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %11, i32 0, i32 0 - %13 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = bitcast %struct.suffix* %8 to i8* - %19 = bitcast %struct.suffix* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.suffix* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call i32 %13(i64 %23, i32 %25, i64 %29, i32 %31) - %33 = icmp ne i32 %32, 0 - ret i1 %33 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2, %struct.suffix* %3, i32 (i64, i32, i64, i32)* %4) #6 comdat { - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = alloca %struct.suffix*, align 8 - %10 = alloca %struct.suffix*, align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %6, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %4, i32 (i64, i32, i64, i32)** %11, align 8 - store %struct.suffix* %0, %struct.suffix** %7, align 8 - store %struct.suffix* %1, %struct.suffix** %8, align 8 - store %struct.suffix* %2, %struct.suffix** %9, align 8 - store %struct.suffix* %3, %struct.suffix** %10, align 8 - %12 = load %struct.suffix*, %struct.suffix** %8, align 8 - %13 = load %struct.suffix*, %struct.suffix** %9, align 8 - %14 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.suffix* %12, %struct.suffix* %13) - br i1 %14, label %15, label %34 - -15: ; preds = %5 - %16 = load %struct.suffix*, %struct.suffix** %9, align 8 - %17 = load %struct.suffix*, %struct.suffix** %10, align 8 - %18 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.suffix* %16, %struct.suffix* %17) - br i1 %18, label %19, label %22 - -19: ; preds = %15 - %20 = load %struct.suffix*, %struct.suffix** %7, align 8 - %21 = load %struct.suffix*, %struct.suffix** %9, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %20, %struct.suffix* %21) - br label %33 - -22: ; preds = %15 - %23 = load %struct.suffix*, %struct.suffix** %8, align 8 - %24 = load %struct.suffix*, %struct.suffix** %10, align 8 - %25 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.suffix* %23, %struct.suffix* %24) - br i1 %25, label %26, label %29 - -26: ; preds = %22 - %27 = load %struct.suffix*, %struct.suffix** %7, align 8 - %28 = load %struct.suffix*, %struct.suffix** %10, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %27, %struct.suffix* %28) - br label %32 - -29: ; preds = %22 - %30 = load %struct.suffix*, %struct.suffix** %7, align 8 - %31 = load %struct.suffix*, %struct.suffix** %8, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %30, %struct.suffix* %31) - br label %32 - -32: ; preds = %29, %26 - br label %33 - -33: ; preds = %32, %19 - br label %53 - -34: ; preds = %5 - %35 = load %struct.suffix*, %struct.suffix** %8, align 8 - %36 = load %struct.suffix*, %struct.suffix** %10, align 8 - %37 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.suffix* %35, %struct.suffix* %36) - br i1 %37, label %38, label %41 - -38: ; preds = %34 - %39 = load %struct.suffix*, %struct.suffix** %7, align 8 - %40 = load %struct.suffix*, %struct.suffix** %8, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %39, %struct.suffix* %40) - br label %52 - -41: ; preds = %34 - %42 = load %struct.suffix*, %struct.suffix** %9, align 8 - %43 = load %struct.suffix*, %struct.suffix** %10, align 8 - %44 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.suffix* %42, %struct.suffix* %43) - br i1 %44, label %45, label %48 - -45: ; preds = %41 - %46 = load %struct.suffix*, %struct.suffix** %7, align 8 - %47 = load %struct.suffix*, %struct.suffix** %10, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %46, %struct.suffix* %47) - br label %51 - -48: ; preds = %41 - %49 = load %struct.suffix*, %struct.suffix** %7, align 8 - %50 = load %struct.suffix*, %struct.suffix** %9, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %49, %struct.suffix* %50) - br label %51 - -51: ; preds = %48, %45 - br label %52 - -52: ; preds = %51, %38 - br label %53 - -53: ; preds = %52, %33 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local %struct.suffix* @_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2, i32 (i64, i32, i64, i32)* %3) #0 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix*, align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %3, i32 (i64, i32, i64, i32)** %9, align 8 - store %struct.suffix* %0, %struct.suffix** %6, align 8 - store %struct.suffix* %1, %struct.suffix** %7, align 8 - store %struct.suffix* %2, %struct.suffix** %8, align 8 - br label %10 - -10: ; preds = %4, %34 - br label %11 - -11: ; preds = %15, %10 - %12 = load %struct.suffix*, %struct.suffix** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %8, align 8 - %14 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %5, %struct.suffix* %12, %struct.suffix* %13) - br i1 %14, label %15, label %18 - -15: ; preds = %11 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = getelementptr inbounds %struct.suffix, %struct.suffix* %16, i32 1 - store %struct.suffix* %17, %struct.suffix** %6, align 8 - br label %11, !llvm.loop !17 - -18: ; preds = %11 - %19 = load %struct.suffix*, %struct.suffix** %7, align 8 - %20 = getelementptr inbounds %struct.suffix, %struct.suffix* %19, i32 -1 - store %struct.suffix* %20, %struct.suffix** %7, align 8 - br label %21 - -21: ; preds = %25, %18 - %22 = load %struct.suffix*, %struct.suffix** %8, align 8 - %23 = load %struct.suffix*, %struct.suffix** %7, align 8 - %24 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %5, %struct.suffix* %22, %struct.suffix* %23) - br i1 %24, label %25, label %28 - -25: ; preds = %21 - %26 = load %struct.suffix*, %struct.suffix** %7, align 8 - %27 = getelementptr inbounds %struct.suffix, %struct.suffix* %26, i32 -1 - store %struct.suffix* %27, %struct.suffix** %7, align 8 - br label %21, !llvm.loop !18 - -28: ; preds = %21 - %29 = load %struct.suffix*, %struct.suffix** %6, align 8 - %30 = load %struct.suffix*, %struct.suffix** %7, align 8 - %31 = icmp ult %struct.suffix* %29, %30 - br i1 %31, label %34, label %32 - -32: ; preds = %28 - %33 = load %struct.suffix*, %struct.suffix** %6, align 8 - ret %struct.suffix* %33 - -34: ; preds = %28 - %35 = load %struct.suffix*, %struct.suffix** %6, align 8 - %36 = load %struct.suffix*, %struct.suffix** %7, align 8 - call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %35, %struct.suffix* %36) - %37 = load %struct.suffix*, %struct.suffix** %6, align 8 - %38 = getelementptr inbounds %struct.suffix, %struct.suffix* %37, i32 1 - store %struct.suffix* %38, %struct.suffix** %6, align 8 - br label %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %0, %struct.suffix* %1) #4 comdat { - %3 = alloca %struct.suffix*, align 8 - %4 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %3, align 8 - store %struct.suffix* %1, %struct.suffix** %4, align 8 - %5 = load %struct.suffix*, %struct.suffix** %3, align 8 - %6 = load %struct.suffix*, %struct.suffix** %4, align 8 - call void @_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(%struct.suffix* nonnull align 4 dereferenceable(12) %5, %struct.suffix* nonnull align 4 dereferenceable(12) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(%struct.suffix* nonnull align 4 dereferenceable(12) %0, %struct.suffix* nonnull align 4 dereferenceable(12) %1) #4 comdat { - %3 = alloca %struct.suffix*, align 8 - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix, align 4 - store %struct.suffix* %0, %struct.suffix** %3, align 8 - store %struct.suffix* %1, %struct.suffix** %4, align 8 - %6 = load %struct.suffix*, %struct.suffix** %3, align 8 - %7 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %6) #3 - %8 = bitcast %struct.suffix* %5 to i8* - %9 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %8, i8* align 4 %9, i64 12, i1 false) - %10 = load %struct.suffix*, %struct.suffix** %4, align 8 - %11 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %10) #3 - %12 = load %struct.suffix*, %struct.suffix** %3, align 8 - %13 = bitcast %struct.suffix* %12 to i8* - %14 = bitcast %struct.suffix* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %13, i8* align 4 %14, i64 12, i1 false) - %15 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %5) #3 - %16 = load %struct.suffix*, %struct.suffix** %4, align 8 - %17 = bitcast %struct.suffix* %16 to i8* - %18 = bitcast %struct.suffix* %15 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %17, i8* align 4 %18, i64 12, i1 false) - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare i64 @llvm.ctlz.i64(i64, i1 immarg) #10 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, i32 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %struct.suffix, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %11, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %12 = load %struct.suffix*, %struct.suffix** %5, align 8 - %13 = load %struct.suffix*, %struct.suffix** %6, align 8 - %14 = icmp eq %struct.suffix* %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %3 - br label %55 - -16: ; preds = %3 - %17 = load %struct.suffix*, %struct.suffix** %5, align 8 - %18 = getelementptr inbounds %struct.suffix, %struct.suffix* %17, i64 1 - store %struct.suffix* %18, %struct.suffix** %7, align 8 - br label %19 - -19: ; preds = %52, %16 - %20 = load %struct.suffix*, %struct.suffix** %7, align 8 - %21 = load %struct.suffix*, %struct.suffix** %6, align 8 - %22 = icmp ne %struct.suffix* %20, %21 - br i1 %22, label %23, label %55 - -23: ; preds = %19 - %24 = load %struct.suffix*, %struct.suffix** %7, align 8 - %25 = load %struct.suffix*, %struct.suffix** %5, align 8 - %26 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %4, %struct.suffix* %24, %struct.suffix* %25) - br i1 %26, label %27, label %41 - -27: ; preds = %23 - %28 = load %struct.suffix*, %struct.suffix** %7, align 8 - %29 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %28) #3 - %30 = bitcast %struct.suffix* %8 to i8* - %31 = bitcast %struct.suffix* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %struct.suffix*, %struct.suffix** %5, align 8 - %33 = load %struct.suffix*, %struct.suffix** %7, align 8 - %34 = load %struct.suffix*, %struct.suffix** %7, align 8 - %35 = getelementptr inbounds %struct.suffix, %struct.suffix* %34, i64 1 - %36 = call %struct.suffix* @_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_(%struct.suffix* %32, %struct.suffix* %33, %struct.suffix* %35) - %37 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %8) #3 - %38 = load %struct.suffix*, %struct.suffix** %5, align 8 - %39 = bitcast %struct.suffix* %38 to i8* - %40 = bitcast %struct.suffix* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %39, i8* align 4 %40, i64 12, i1 false) - br label %51 - -41: ; preds = %23 - %42 = load %struct.suffix*, %struct.suffix** %7, align 8 - %43 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10 to i8* - %44 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %43, i8* align 8 %44, i64 8, i1 false) - %45 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10, i32 0, i32 0 - %46 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %45, align 8 - %47 = call i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i32 (i64, i32, i64, i32)* %46) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %47, i32 (i64, i32, i64, i32)** %48, align 8 - %49 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - %50 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %49, align 8 - call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* %42, i32 (i64, i32, i64, i32)* %50) - br label %51 - -51: ; preds = %41, %27 - br label %52 - -52: ; preds = %51 - %53 = load %struct.suffix*, %struct.suffix** %7, align 8 - %54 = getelementptr inbounds %struct.suffix, %struct.suffix* %53, i32 1 - store %struct.suffix* %54, %struct.suffix** %7, align 8 - br label %19, !llvm.loop !19 - -55: ; preds = %15, %19 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* %0, %struct.suffix* %1, i32 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %2, i32 (i64, i32, i64, i32)** %10, align 8 - store %struct.suffix* %0, %struct.suffix** %5, align 8 - store %struct.suffix* %1, %struct.suffix** %6, align 8 - %11 = load %struct.suffix*, %struct.suffix** %5, align 8 - store %struct.suffix* %11, %struct.suffix** %7, align 8 - br label %12 - -12: ; preds = %26, %3 - %13 = load %struct.suffix*, %struct.suffix** %7, align 8 - %14 = load %struct.suffix*, %struct.suffix** %6, align 8 - %15 = icmp ne %struct.suffix* %13, %14 - br i1 %15, label %16, label %29 - -16: ; preds = %12 - %17 = load %struct.suffix*, %struct.suffix** %7, align 8 - %18 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %19 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %19, i64 8, i1 false) - %20 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %21 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %20, align 8 - %22 = call i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i32 (i64, i32, i64, i32)* %21) - %23 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %22, i32 (i64, i32, i64, i32)** %23, align 8 - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - %25 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* %17, i32 (i64, i32, i64, i32)* %25) - br label %26 - -26: ; preds = %16 - %27 = load %struct.suffix*, %struct.suffix** %7, align 8 - %28 = getelementptr inbounds %struct.suffix, %struct.suffix* %27, i32 1 - store %struct.suffix* %28, %struct.suffix** %7, align 8 - br label %12, !llvm.loop !20 - -29: ; preds = %12 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2) #6 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = call %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* %7) - %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = call %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* %9) - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = call %struct.suffix* @_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* %8, %struct.suffix* %10, %struct.suffix* %11) - ret %struct.suffix* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* %0, i32 (i64, i32, i64, i32)* %1) #6 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix, align 4 - %6 = alloca %struct.suffix*, align 8 - %7 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %3, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %1, i32 (i64, i32, i64, i32)** %7, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - %8 = load %struct.suffix*, %struct.suffix** %4, align 8 - %9 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %8) #3 - %10 = bitcast %struct.suffix* %5 to i8* - %11 = bitcast %struct.suffix* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %10, i8* align 4 %11, i64 12, i1 false) - %12 = load %struct.suffix*, %struct.suffix** %4, align 8 - store %struct.suffix* %12, %struct.suffix** %6, align 8 - %13 = load %struct.suffix*, %struct.suffix** %6, align 8 - %14 = getelementptr inbounds %struct.suffix, %struct.suffix* %13, i32 -1 - store %struct.suffix* %14, %struct.suffix** %6, align 8 - br label %15 - -15: ; preds = %18, %2 - %16 = load %struct.suffix*, %struct.suffix** %6, align 8 - %17 = call zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %3, %struct.suffix* nonnull align 4 dereferenceable(12) %5, %struct.suffix* %16) - br i1 %17, label %18, label %27 - -18: ; preds = %15 - %19 = load %struct.suffix*, %struct.suffix** %6, align 8 - %20 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %19) #3 - %21 = load %struct.suffix*, %struct.suffix** %4, align 8 - %22 = bitcast %struct.suffix* %21 to i8* - %23 = bitcast %struct.suffix* %20 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %22, i8* align 4 %23, i64 12, i1 false) - %24 = load %struct.suffix*, %struct.suffix** %6, align 8 - store %struct.suffix* %24, %struct.suffix** %4, align 8 - %25 = load %struct.suffix*, %struct.suffix** %6, align 8 - %26 = getelementptr inbounds %struct.suffix, %struct.suffix* %25, i32 -1 - store %struct.suffix* %26, %struct.suffix** %6, align 8 - br label %15, !llvm.loop !21 - -27: ; preds = %15 - %28 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %5) #3 - %29 = load %struct.suffix*, %struct.suffix** %4, align 8 - %30 = bitcast %struct.suffix* %29 to i8* - %31 = bitcast %struct.suffix* %28 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFi6suffixS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i32 (i64, i32, i64, i32)* %0) #6 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, i32 0, i32 0 - store i32 (i64, i32, i64, i32)* %0, i32 (i64, i32, i64, i32)** %4, align 8 - %5 = call nonnull align 8 dereferenceable(8) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS3_EEEEONSt16remove_referenceIT_E4typeEOS9_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %3) #3 - call void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %2, i32 0, i32 0 - %7 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %6, align 8 - ret i32 (i64, i32, i64, i32)* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2) #6 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = call %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* %7) #3 - %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = call %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* %9) #3 - %11 = load %struct.suffix*, %struct.suffix** %6, align 8 - %12 = call %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* %11) #3 - %13 = call %struct.suffix* @_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* %8, %struct.suffix* %10, %struct.suffix* %12) - %14 = call %struct.suffix* @_ZSt12__niter_wrapIP6suffixET_RKS2_S2_(%struct.suffix** nonnull align 8 dereferenceable(8) %6, %struct.suffix* %13) - ret %struct.suffix* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* %0) #4 comdat { - %2 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %2, align 8 - %3 = load %struct.suffix*, %struct.suffix** %2, align 8 - ret %struct.suffix* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt12__niter_wrapIP6suffixET_RKS2_S2_(%struct.suffix** nonnull align 8 dereferenceable(8) %0, %struct.suffix* %1) #4 comdat { - %3 = alloca %struct.suffix**, align 8 - %4 = alloca %struct.suffix*, align 8 - store %struct.suffix** %0, %struct.suffix*** %3, align 8 - store %struct.suffix* %1, %struct.suffix** %4, align 8 - %5 = load %struct.suffix*, %struct.suffix** %4, align 8 - ret %struct.suffix* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2) #6 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %6, align 8 - %10 = call %struct.suffix* @_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* %7, %struct.suffix* %8, %struct.suffix* %9) - ret %struct.suffix* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* %0) #4 comdat { - %2 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %2, align 8 - %3 = load %struct.suffix*, %struct.suffix** %2, align 8 - ret %struct.suffix* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2) #6 comdat { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %7 = load %struct.suffix*, %struct.suffix** %4, align 8 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %6, align 8 - %10 = call %struct.suffix* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_(%struct.suffix* %7, %struct.suffix* %8, %struct.suffix* %9) - ret %struct.suffix* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.suffix* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_(%struct.suffix* %0, %struct.suffix* %1, %struct.suffix* %2) #4 comdat align 2 { - %4 = alloca %struct.suffix*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca i64, align 8 - store %struct.suffix* %0, %struct.suffix** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %8 = load %struct.suffix*, %struct.suffix** %5, align 8 - %9 = load %struct.suffix*, %struct.suffix** %4, align 8 - %10 = ptrtoint %struct.suffix* %8 to i64 - %11 = ptrtoint %struct.suffix* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds %struct.suffix, %struct.suffix* %17, i64 %19 - %21 = bitcast %struct.suffix* %20 to i8* - %22 = load %struct.suffix*, %struct.suffix** %4, align 8 - %23 = bitcast %struct.suffix* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 12, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load %struct.suffix*, %struct.suffix** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds %struct.suffix, %struct.suffix* %27, i64 %29 - ret %struct.suffix* %30 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #5 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %0, %struct.suffix* nonnull align 4 dereferenceable(12) %1, %struct.suffix* %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %5 = alloca %struct.suffix*, align 8 - %6 = alloca %struct.suffix*, align 8 - %7 = alloca %struct.suffix, align 4 - %8 = alloca %struct.suffix, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - store %struct.suffix* %1, %struct.suffix** %5, align 8 - store %struct.suffix* %2, %struct.suffix** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %11, i32 0, i32 0 - %13 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.suffix*, %struct.suffix** %5, align 8 - %15 = bitcast %struct.suffix* %7 to i8* - %16 = bitcast %struct.suffix* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.suffix*, %struct.suffix** %6, align 8 - %18 = bitcast %struct.suffix* %8 to i8* - %19 = bitcast %struct.suffix* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.suffix* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.suffix* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call i32 %13(i64 %23, i32 %25, i64 %29, i32 %31) - %33 = icmp ne i32 %32, 0 - ret i1 %33 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %8) #3 - %10 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %9, align 8 - store i32 (i64, i32, i64, i32)* %10, i32 (i64, i32, i64, i32)** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %0, i32 (i64, i32, i64, i32)* %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %4 = alloca i32 (i64, i32, i64, i32)*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %3, align 8 - store i32 (i64, i32, i64, i32)* %1, i32 (i64, i32, i64, i32)** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - %7 = call nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %4) #3 - %8 = load i32 (i64, i32, i64, i32)*, i32 (i64, i32, i64, i32)** %7, align 8 - store i32 (i64, i32, i64, i32)* %8, i32 (i64, i32, i64, i32)** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %0, i32* %1, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store %"class.std::allocator"* %2, %"class.std::allocator"** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - call void @_ZSt8_DestroyIPiEvT_S1_(i32* %7, i32* %8) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %11 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %10 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %11, i32 0, i32 2 - %13 = load i32*, i32** %12, align 8 - %14 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %15 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %14 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %15, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = ptrtoint i32* %13 to i64 - %19 = ptrtoint i32* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 4 - invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %5, i32* %9, i64 %21) - to label %22 unwind label %24 - -22: ; preds = %1 - %23 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %23) #3 - ret void - -24: ; preds = %1 - %25 = landingpad { i8*, i32 } - catch i8* null - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %3, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %4, align 4 - %28 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %28) #3 - br label %29 - -29: ; preds = %24 - %30 = load i8*, i8** %3, align 8 - call void @__clang_call_terminate(i8* %30) #15 - unreachable -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* %0, i32* %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %3, align 8 - %6 = load i32*, i32** %4, align 8 - call void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* %5, i32* %6) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* %0, i32* %1) #4 comdat align 2 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, i32* %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"struct.std::_Vector_base"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = icmp ne i32* %8, null - br i1 %9, label %10, label %15 - -10: ; preds = %3 - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %7, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"class.std::allocator"* - %13 = load i32*, i32** %5, align 8 - %14 = load i64, i64* %6, align 8 - call void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %12, i32* %13, i64 %14) - br label %15 - -15: ; preds = %10, %3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %0) unnamed_addr #8 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %3 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* nonnull dereferenceable(24) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %5 = alloca %"class.std::vector"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i64, align 8 - %11 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %4, i32 0, i32 0 - store i32* %1, i32** %14, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %5, align 8 - store i32* %2, i32** %6, align 8 - %15 = load %"class.std::vector"*, %"class.std::vector"** %5, align 8 - %16 = call i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* nonnull dereferenceable(24) %15, i64 1, i8* getelementptr inbounds ([26 x i8], [26 x i8]* @.str.4, i64 0, i64 0)) - store i64 %16, i64* %7, align 8 - %17 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %18 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %17, i32 0, i32 0 - %19 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %18 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %20 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %19, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - store i32* %21, i32** %8, align 8 - %22 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %23 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %23 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %24, i32 0, i32 1 - %26 = load i32*, i32** %25, align 8 - store i32* %26, i32** %9, align 8 - %27 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %15) #3 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %11, i32 0, i32 0 - store i32* %27, i32** %28, align 8 - %29 = call i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - store i64 %29, i64* %10, align 8 - %30 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %31 = load i64, i64* %7, align 8 - %32 = call i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %30, i64 %31) - store i32* %32, i32** %12, align 8 - %33 = load i32*, i32** %12, align 8 - store i32* %33, i32** %13, align 8 - %34 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %35 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %35 to %"class.std::allocator"* - %37 = load i32*, i32** %12, align 8 - %38 = load i64, i64* %10, align 8 - %39 = getelementptr inbounds i32, i32* %37, i64 %38 - %40 = load i32*, i32** %6, align 8 - %41 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %40) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %36, i32* %39, i32* nonnull align 4 dereferenceable(4) %41) #3 - store i32* null, i32** %13, align 8 - %42 = load i32*, i32** %8, align 8 - %43 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %44 = load i32*, i32** %43, align 8 - %45 = load i32*, i32** %12, align 8 - %46 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %47 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %46) #3 - %48 = call i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* %42, i32* %44, i32* %45, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %47) #3 - store i32* %48, i32** %13, align 8 - %49 = load i32*, i32** %13, align 8 - %50 = getelementptr inbounds i32, i32* %49, i32 1 - store i32* %50, i32** %13, align 8 - %51 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %4) #3 - %52 = load i32*, i32** %51, align 8 - %53 = load i32*, i32** %9, align 8 - %54 = load i32*, i32** %13, align 8 - %55 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %56 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %55) #3 - %57 = call i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* %52, i32* %53, i32* %54, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %56) #3 - store i32* %57, i32** %13, align 8 - %58 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %59 = load i32*, i32** %8, align 8 - %60 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %61 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %60, i32 0, i32 0 - %62 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %61 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %62, i32 0, i32 2 - %64 = load i32*, i32** %63, align 8 - %65 = load i32*, i32** %8, align 8 - %66 = ptrtoint i32* %64 to i64 - %67 = ptrtoint i32* %65 to i64 - %68 = sub i64 %66, %67 - %69 = sdiv exact i64 %68, 4 - call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %58, i32* %59, i64 %69) - %70 = load i32*, i32** %12, align 8 - %71 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %72 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %71, i32 0, i32 0 - %73 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %72 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %74 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %73, i32 0, i32 0 - store i32* %70, i32** %74, align 8 - %75 = load i32*, i32** %13, align 8 - %76 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %77 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %76, i32 0, i32 0 - %78 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %77 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %78, i32 0, i32 1 - store i32* %75, i32** %79, align 8 - %80 = load i32*, i32** %12, align 8 - %81 = load i64, i64* %7, align 8 - %82 = getelementptr inbounds i32, i32* %80, i64 %81 - %83 = bitcast %"class.std::vector"* %15 to %"struct.std::_Vector_base"* - %84 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %83, i32 0, i32 0 - %85 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %84 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %86 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %85, i32 0, i32 2 - store i32* %82, i32** %86, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #4 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %1, i8* %2) #6 comdat align 2 { - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %9 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %10 = call i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %11 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %12 = sub i64 %10, %11 - %13 = load i64, i64* %5, align 8 - %14 = icmp ult i64 %12, %13 - br i1 %14, label %15, label %17 - -15: ; preds = %3 - %16 = load i8*, i8** %6, align 8 - call void @_ZSt20__throw_length_errorPKc(i8* %16) #16 - unreachable - -17: ; preds = %3 - %18 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %19 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - store i64 %19, i64* %8, align 8 - %20 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %8, i64* nonnull align 8 dereferenceable(8) %5) - %21 = load i64, i64* %20, align 8 - %22 = add i64 %18, %21 - store i64 %22, i64* %7, align 8 - %23 = load i64, i64* %7, align 8 - %24 = call i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %25 = icmp ult i64 %23, %24 - br i1 %25, label %30, label %26 - -26: ; preds = %17 - %27 = load i64, i64* %7, align 8 - %28 = call i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - %29 = icmp ugt i64 %27, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %26, %17 - %31 = call i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %9) #3 - br label %34 - -32: ; preds = %26 - %33 = load i64, i64* %7, align 8 - br label %34 - -34: ; preds = %32, %30 - %35 = phi i64 [ %31, %30 ], [ %33, %32 ] - ret i64 %35 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator"* nonnull align 8 dereferenceable(8) %1) #4 comdat { - %3 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %4 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %1, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - %6 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %5) #3 - %7 = load i32*, i32** %6, align 8 - %8 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %4, align 8 - %9 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %8) #3 - %10 = load i32*, i32** %9, align 8 - %11 = ptrtoint i32* %7 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - ret i64 %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, i64 %1) #6 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base"*, align 8 - %4 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = icmp ne i64 %6, 0 - br i1 %7, label %8, label %13 - -8: ; preds = %2 - %9 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"class.std::allocator"* - %11 = load i64, i64* %4, align 8 - %12 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %10, i64 %11) - br label %14 - -13: ; preds = %2 - br label %14 - -14: ; preds = %13, %8 - %15 = phi i32* [ %12, %8 ], [ null, %13 ] - ret i32* %15 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat align 2 { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"struct.std::integral_constant", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %6, align 8 - %12 = load i32*, i32** %7, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %14 = call i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* %10, i32* %11, i32* %12, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13) #3 - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %2, align 8 - %3 = load %"class.std::vector"*, %"class.std::vector"** %2, align 8 - %4 = bitcast %"class.std::vector"* %3 to %"struct.std::_Vector_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %4) #3 - %6 = call i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #13 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #4 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - store i64 2305843009213693951, i64* %3, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"struct.std::_Vector_base"*, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %2, align 8 - %3 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #4 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #4 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* nonnull dereferenceable(8) %0, i32** nonnull align 8 dereferenceable(8) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator"* %0, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator"*, %"class.__gnu_cxx::__normal_iterator"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator", %"class.__gnu_cxx::__normal_iterator"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #6 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #14 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat align 2 { - %5 = alloca %"struct.std::integral_constant", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %9, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = load i32*, i32** %8, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %9, align 8 - %14 = call i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %10, i32* %11, i32* %12, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13) #3 - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 - %13 = load i32*, i32** %7, align 8 - %14 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %13) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %16 = call i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* %10, i32* %12, i32* %14, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15) #3 - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca i64, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = ptrtoint i32* %10 to i64 - %13 = ptrtoint i32* %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - store i64 %15, i64* %9, align 8 - %16 = load i64, i64* %9, align 8 - %17 = icmp sgt i64 %16, 0 - br i1 %17, label %18, label %25 - -18: ; preds = %4 - %19 = load i32*, i32** %7, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i32*, i32** %5, align 8 - %22 = bitcast i32* %21 to i8* - %23 = load i64, i64* %9, align 8 - %24 = mul i64 %23, 4 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %22, i64 %24, i1 false) - br label %25 - -25: ; preds = %18, %4 - %26 = load i32*, i32** %7, align 8 - %27 = load i64, i64* %9, align 8 - %28 = getelementptr inbounds i32, i32* %26, i64 %27 - ret i32* %28 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiET_S1_(i32* %0) #4 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) #6 comdat align 2 { - %3 = alloca i64, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"class.std::allocator", align 1 - store i64 %0, i64* %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %6 = load i64, i64* %3, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %5, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) #3 - %8 = call i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - %9 = icmp ugt i64 %6, %8 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %5) #3 - br i1 %9, label %10, label %11 - -10: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([49 x i8], [49 x i8]* @.str.5, i64 0, i64 0)) #16 - unreachable - -11: ; preds = %2 - %12 = load i64, i64* %3, align 8 - ret i64 %12 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, i64 %1, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %2) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"struct.std::_Vector_base"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %4, align 8 - store i64 %1, i64* %5, align 8 - store %"class.std::allocator"* %2, %"class.std::allocator"** %6, align 8 - %9 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %9, i32 0, i32 0 - %11 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %10, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %11) #3 - %12 = load i64, i64* %5, align 8 - invoke void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %9, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - cleanup - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %7, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %8, align 4 - call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %10) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %7, align 8 - %20 = load i32, i32* %8, align 4 - %21 = insertvalue { i8*, i32 } undef, i8* %19, 0 - %22 = insertvalue { i8*, i32 } %21, i32 %20, 1 - resume { i8*, i32 } %22 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi(%"class.std::vector"* nonnull dereferenceable(24) %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.std::vector"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::vector"*, %"class.std::vector"** %4, align 8 - %8 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %9 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %9 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %10, i32 0, i32 0 - %12 = load i32*, i32** %11, align 8 - %13 = load i64, i64* %5, align 8 - %14 = load i32*, i32** %6, align 8 - %15 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %16 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %15) #3 - %17 = call i32* @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E(i32* %12, i64 %13, i32* nonnull align 4 dereferenceable(4) %14, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %16) - %18 = bitcast %"class.std::vector"* %7 to %"struct.std::_Vector_base"* - %19 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %19 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %20, i32 0, i32 1 - store i32* %17, i32** %21, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, %"class.__gnu_cxx::new_allocator"* nonnull align 1 dereferenceable(1) %8) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"class.__gnu_cxx::new_allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store %"class.__gnu_cxx::new_allocator"* %1, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* nonnull dereferenceable(24) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base>::_Vector_impl"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - store %"struct.std::_Vector_base>::_Vector_impl"* %0, %"struct.std::_Vector_base>::_Vector_impl"** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %5 = load %"struct.std::_Vector_base>::_Vector_impl"*, %"struct.std::_Vector_base>::_Vector_impl"** %3, align 8 - %6 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"class.std::allocator"* - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %6, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) #3 - %8 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %5 to %"struct.std::_Vector_base>::_Vector_impl_data"* - call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* nonnull dereferenceable(24) %8) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %0, i64 %1) #6 comdat align 2 { - %3 = alloca %"struct.std::_Vector_base"*, align 8 - %4 = alloca i64, align 8 - store %"struct.std::_Vector_base"* %0, %"struct.std::_Vector_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"struct.std::_Vector_base"*, %"struct.std::_Vector_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = call i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* nonnull dereferenceable(24) %5, i64 %6) - %8 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %9 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %8 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %9, i32 0, i32 0 - store i32* %7, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %12 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %11 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %12, i32 0, i32 0 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %16 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %15 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %16, i32 0, i32 1 - store i32* %14, i32** %17, align 8 - %18 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %19 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %18 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %20 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %19, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - %22 = load i64, i64* %4, align 8 - %23 = getelementptr inbounds i32, i32* %21, i64 %22 - %24 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %25 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %24 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %25, i32 0, i32 2 - store i32* %23, i32** %26, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E(i32* %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #6 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - store i32* %0, i32** %5, align 8 - store i64 %1, i64* %6, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call i32* @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_(i32* %9, i64 %10, i32* nonnull align 4 dereferenceable(4) %11) - ret i32* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_(i32* %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - store i32* %0, i32** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - %8 = load i32*, i32** %4, align 8 - %9 = load i64, i64* %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call i32* @_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_(i32* %8, i64 %9, i32* nonnull align 4 dereferenceable(4) %10) - ret i32* %11 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_(i32* %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt6fill_nIPimiET_S1_T0_RKT1_(i32* %7, i64 %8, i32* nonnull align 4 dereferenceable(4) %9) - ret i32* %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt6fill_nIPimiET_S1_T0_RKT1_(i32* %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::random_access_iterator_tag", align 1 - %8 = alloca %"struct.std::random_access_iterator_tag", align 1 - store i32* %0, i32** %4, align 8 - store i64 %1, i64* %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = load i64, i64* %5, align 8 - %11 = call i64 @_ZSt17__size_to_integerm(i64 %10) - %12 = load i32*, i32** %6, align 8 - call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** nonnull align 8 dereferenceable(8) %4) - %13 = call i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(i32* %9, i64 %11, i32* nonnull align 4 dereferenceable(4) %12) - ret i32* %13 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(i32* %0, i64 %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::random_access_iterator_tag", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32*, align 8 - store i32* %0, i32** %6, align 8 - store i64 %1, i64* %7, align 8 - store i32* %2, i32** %8, align 8 - %9 = load i64, i64* %7, align 8 - %10 = icmp ule i64 %9, 0 - br i1 %10, label %11, label %13 - -11: ; preds = %3 - %12 = load i32*, i32** %6, align 8 - store i32* %12, i32** %4, align 8 - br label %22 - -13: ; preds = %3 - %14 = load i32*, i32** %6, align 8 - %15 = load i32*, i32** %6, align 8 - %16 = load i64, i64* %7, align 8 - %17 = getelementptr inbounds i32, i32* %15, i64 %16 - %18 = load i32*, i32** %8, align 8 - call void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(i32* %14, i32* %17, i32* nonnull align 4 dereferenceable(4) %18) - %19 = load i32*, i32** %6, align 8 - %20 = load i64, i64* %7, align 8 - %21 = getelementptr inbounds i32, i32* %19, i64 %20 - store i32* %21, i32** %4, align 8 - br label %22 - -22: ; preds = %13, %11 - %23 = load i32*, i32** %4, align 8 - ret i32* %23 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt17__size_to_integerm(i64 %0) #4 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - ret i64 %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(i32* %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - call void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_(i32* %7, i32* %8, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_(i32* %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %6, align 8 - %9 = load i32, i32* %8, align 4 - store i32 %9, i32* %7, align 4 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32*, i32** %4, align 8 - %12 = load i32*, i32** %5, align 8 - %13 = icmp ne i32* %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32, i32* %7, align 4 - %16 = load i32*, i32** %4, align 8 - store i32 %15, i32* %16, align 4 - br label %17 - -17: ; preds = %14 - %18 = load i32*, i32** %4, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 1 - store i32* %19, i32** %4, align 8 - br label %10, !llvm.loop !22 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx14__alloc_traitsISaIiEiE17_S_select_on_copyERKS1_(%"class.std::allocator"* noalias sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = bitcast %"class.std::allocator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(i32* %0, i32* %1, i32* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #6 comdat { - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"class.std::allocator"*, align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %6, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - store i32* %2, i32** %7, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %8, align 8 - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %9 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %10 to i8* - %16 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %15, i8* align 8 %16, i64 8, i1 false) - %17 = load i32*, i32** %7, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %10, i32 0, i32 0 - %21 = load i32*, i32** %20, align 8 - %22 = call i32* @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %19, i32* %21, i32* %17) - ret i32* %22 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 0 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = alloca %"class.std::vector"*, align 8 - store %"class.std::vector"* %0, %"class.std::vector"** %3, align 8 - %4 = load %"class.std::vector"*, %"class.std::vector"** %3, align 8 - %5 = bitcast %"class.std::vector"* %4 to %"struct.std::_Vector_base"* - %6 = getelementptr inbounds %"struct.std::_Vector_base", %"struct.std::_Vector_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Vector_base>::_Vector_impl"* %6 to %"struct.std::_Vector_base>::_Vector_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Vector_base>::_Vector_impl_data", %"struct.std::_Vector_base>::_Vector_impl_data"* %7, i32 0, i32 1 - call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* nonnull dereferenceable(8) %2, i32** nonnull align 8 dereferenceable(8) %8) #3 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %2, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_(%"class.std::allocator"* noalias sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) #4 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = bitcast %"class.std::allocator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %0, i32* %1, i32* %2) #6 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8, align 1 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %10, align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %11, align 8 - store i32* %2, i32** %6, align 8 - store i8 1, i8* %7, align 1 - %12 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %8 to i8* - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %12, i8* align 8 %13, i64 8, i1 false) - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %9 to i8* - %15 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = load i32*, i32** %6, align 8 - %17 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = call i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(i32* %18, i32* %20, i32* %16) - ret i32* %21 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(i32* %0, i32* %1, i32* %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %9, align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %6, align 8 - %11 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %7 to i8* - %12 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %8 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = load i32*, i32** %6, align 8 - %16 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = call i32* @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %17, i32* %19, i32* %15) - ret i32* %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %0, i32* %1, i32* %2) #6 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %10 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %11 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %11, align 8 - %12 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %12, align 8 - store i32* %2, i32** %6, align 8 - %13 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %8 to i8* - %14 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %13, i8* align 8 %14, i64 8, i1 false) - %15 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %16 = load i32*, i32** %15, align 8 - %17 = call i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(i32* %16) - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - store i32* %17, i32** %18, align 8 - %19 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %10 to i8* - %20 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %19, i8* align 8 %20, i64 8, i1 false) - %21 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %10, i32 0, i32 0 - %22 = load i32*, i32** %21, align 8 - %23 = call i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(i32* %22) - %24 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - store i32* %23, i32** %24, align 8 - %25 = load i32*, i32** %6, align 8 - %26 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %9, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = call i32* @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_(i32* %27, i32* %29, i32* %25) - ret i32* %30 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_(i32* %0, i32* %1, i32* %2) #6 comdat { - %4 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %5 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %8 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %9 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %4, i32 0, i32 0 - store i32* %0, i32** %9, align 8 - %10 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - store i32* %1, i32** %10, align 8 - store i32* %2, i32** %6, align 8 - %11 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %7 to i8* - %12 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %11, i8* align 8 %12, i64 8, i1 false) - %13 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %7, i32 0, i32 0 - %14 = load i32*, i32** %13, align 8 - %15 = call i32* @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(i32* %14) #3 - %16 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %8 to i8* - %17 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %16, i8* align 8 %17, i64 8, i1 false) - %18 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %8, i32 0, i32 0 - %19 = load i32*, i32** %18, align 8 - %20 = call i32* @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(i32* %19) #3 - %21 = load i32*, i32** %6, align 8 - %22 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %21) #3 - %23 = call i32* @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_(i32* %15, i32* %20, i32* %22) - %24 = call i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %6, i32* %23) - ret i32* %24 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEET_S8_(i32* %0) #4 comdat { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %3, i32 0, i32 0 - store i32* %0, i32** %4, align 8 - %5 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %2 to i8* - %6 = bitcast %"class.__gnu_cxx::__normal_iterator.3"* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %5, i8* align 8 %6, i64 8, i1 false) - %7 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %2, i32 0, i32 0 - %8 = load i32*, i32** %7, align 8 - ret i32* %8 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %0, i32* %1) #4 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i32*, align 8 - store i32** %0, i32*** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_(i32* %0, i32* %1, i32* %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPKiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS5_T0_EE(i32* %0) #4 comdat { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3", align 8 - %3 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %2, i32 0, i32 0 - store i32* %0, i32** %3, align 8 - %4 = call nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.3"* nonnull dereferenceable(8) %2) #3 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(i32* %0, i32* %1, i32* %2) #6 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* %0, i32* %1, i32* %2) #4 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = bitcast i32* %17 to i8* - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 4, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32*, i32** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32, i32* %24, i64 %25 - ret i32* %26 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.3"* nonnull dereferenceable(8) %0) #4 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::__normal_iterator.3"*, align 8 - store %"class.__gnu_cxx::__normal_iterator.3"* %0, %"class.__gnu_cxx::__normal_iterator.3"** %2, align 8 - %3 = load %"class.__gnu_cxx::__normal_iterator.3"*, %"class.__gnu_cxx::__normal_iterator.3"** %2, align 8 - %4 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %3, i32 0, i32 0 - ret i32** %4 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* nonnull dereferenceable(8) %0, i32** nonnull align 8 dereferenceable(8) %1) unnamed_addr #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::__normal_iterator.3"*, align 8 - %4 = alloca i32**, align 8 - store %"class.__gnu_cxx::__normal_iterator.3"* %0, %"class.__gnu_cxx::__normal_iterator.3"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"class.__gnu_cxx::__normal_iterator.3"*, %"class.__gnu_cxx::__normal_iterator.3"** %3, align 8 - %6 = getelementptr inbounds %"class.__gnu_cxx::__normal_iterator.3", %"class.__gnu_cxx::__normal_iterator.3"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32*, i32** %7, align 8 - store i32* %8, i32** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn } -attributes #6 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { nofree nosync nounwind willreturn } -attributes #8 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #11 = { noinline noreturn nounwind } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} -!13 = distinct !{!13, !3} -!14 = distinct !{!14, !3} -!15 = distinct !{!15, !3} -!16 = distinct !{!16, !3} -!17 = distinct !{!17, !3} -!18 = distinct !{!18, !3} -!19 = distinct !{!19, !3} -!20 = distinct !{!20, !3} -!21 = distinct !{!21, !3} -!22 = distinct !{!22, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll deleted file mode 100644 index f83794e3..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll +++ /dev/null @@ -1,183 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-1s-sorted-binary-array.cpp' -source_filename = "PE-benchmarks/count-1s-sorted-binary-array.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [7 x i8] c"\01\01\01\01\00\00\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [32 x i8] c"Count of 1's in given array is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_count_1s_sorted_binary_array.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z9countOnesPbii(i8* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %9 = load i32, i32* %7, align 4 - %10 = load i32, i32* %6, align 4 - %11 = icmp sge i32 %9, %10 - br i1 %11, label %12, label %65 - -12: ; preds = %3 - %13 = load i32, i32* %6, align 4 - %14 = load i32, i32* %7, align 4 - %15 = load i32, i32* %6, align 4 - %16 = sub nsw i32 %14, %15 - %17 = sdiv i32 %16, 2 - %18 = add nsw i32 %13, %17 - store i32 %18, i32* %8, align 4 - %19 = load i32, i32* %8, align 4 - %20 = load i32, i32* %7, align 4 - %21 = icmp eq i32 %19, %20 - br i1 %21, label %32, label %22 - -22: ; preds = %12 - %23 = load i8*, i8** %5, align 8 - %24 = load i32, i32* %8, align 4 - %25 = add nsw i32 %24, 1 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %23, i64 %26 - %28 = load i8, i8* %27, align 1 - %29 = trunc i8 %28 to i1 - %30 = zext i1 %29 to i32 - %31 = icmp eq i32 %30, 0 - br i1 %31, label %32, label %44 - -32: ; preds = %22, %12 - %33 = load i8*, i8** %5, align 8 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i8, i8* %33, i64 %35 - %37 = load i8, i8* %36, align 1 - %38 = trunc i8 %37 to i1 - %39 = zext i1 %38 to i32 - %40 = icmp eq i32 %39, 1 - br i1 %40, label %41, label %44 - -41: ; preds = %32 - %42 = load i32, i32* %8, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %4, align 4 - br label %66 - -44: ; preds = %32, %22 - %45 = load i8*, i8** %5, align 8 - %46 = load i32, i32* %8, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i8, i8* %45, i64 %47 - %49 = load i8, i8* %48, align 1 - %50 = trunc i8 %49 to i1 - %51 = zext i1 %50 to i32 - %52 = icmp eq i32 %51, 1 - br i1 %52, label %53, label %59 - -53: ; preds = %44 - %54 = load i8*, i8** %5, align 8 - %55 = load i32, i32* %8, align 4 - %56 = add nsw i32 %55, 1 - %57 = load i32, i32* %7, align 4 - %58 = call i32 @_Z9countOnesPbii(i8* %54, i32 %56, i32 %57) - store i32 %58, i32* %4, align 4 - br label %66 - -59: ; preds = %44 - %60 = load i8*, i8** %5, align 8 - %61 = load i32, i32* %6, align 4 - %62 = load i32, i32* %8, align 4 - %63 = sub nsw i32 %62, 1 - %64 = call i32 @_Z9countOnesPbii(i8* %60, i32 %61, i32 %63) - store i32 %64, i32* %4, align 4 - br label %66 - -65: ; preds = %3 - store i32 0, i32* %4, align 4 - br label %66 - -66: ; preds = %65, %59, %53, %41 - %67 = load i32, i32* %4, align 4 - ret i32 %67 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i8], align 1 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %4, i8* align 1 getelementptr inbounds ([7 x i8], [7 x i8]* @__const.main.arr, i32 0, i32 0), i64 7, i1 false) - store i32 7, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([32 x i8], [32 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [7 x i8], [7 x i8]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = sub nsw i32 %7, 1 - %9 = call i32 @_Z9countOnesPbii(i8* %6, i32 0, i32 %8) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %9) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_1s_sorted_binary_array.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-number-binary-strings-without-consecutive-1s.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/count-number-binary-strings-without-consecutive-1s.ll deleted file mode 100644 index 1e454e83..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-number-binary-strings-without-consecutive-1s.ll +++ /dev/null @@ -1,166 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp' -source_filename = "PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z12countStringsi(i32 %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %7 = load i32, i32* %2, align 4 - %8 = zext i32 %7 to i64 - %9 = call i8* @llvm.stacksave() - store i8* %9, i8** %3, align 8 - %10 = alloca i32, i64 %8, align 16 - store i64 %8, i64* %4, align 8 - %11 = load i32, i32* %2, align 4 - %12 = zext i32 %11 to i64 - %13 = alloca i32, i64 %12, align 16 - store i64 %12, i64* %5, align 8 - %14 = getelementptr inbounds i32, i32* %13, i64 0 - store i32 1, i32* %14, align 16 - %15 = getelementptr inbounds i32, i32* %10, i64 0 - store i32 1, i32* %15, align 16 - store i32 1, i32* %6, align 4 - br label %16 - -16: ; preds = %43, %1 - %17 = load i32, i32* %6, align 4 - %18 = load i32, i32* %2, align 4 - %19 = icmp slt i32 %17, %18 - br i1 %19, label %20, label %46 - -20: ; preds = %16 - %21 = load i32, i32* %6, align 4 - %22 = sub nsw i32 %21, 1 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i32, i32* %10, i64 %23 - %25 = load i32, i32* %24, align 4 - %26 = load i32, i32* %6, align 4 - %27 = sub nsw i32 %26, 1 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %13, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = add nsw i32 %25, %30 - %32 = load i32, i32* %6, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %10, i64 %33 - store i32 %31, i32* %34, align 4 - %35 = load i32, i32* %6, align 4 - %36 = sub nsw i32 %35, 1 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %10, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %6, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds i32, i32* %13, i64 %41 - store i32 %39, i32* %42, align 4 - br label %43 - -43: ; preds = %20 - %44 = load i32, i32* %6, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %6, align 4 - br label %16, !llvm.loop !2 - -46: ; preds = %16 - %47 = load i32, i32* %2, align 4 - %48 = sub nsw i32 %47, 1 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %10, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %2, align 4 - %53 = sub nsw i32 %52, 1 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %13, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = add nsw i32 %51, %56 - %58 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %58) - ret i32 %57 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %2 = call i32 @_Z12countStringsi(i32 3) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %2) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %3, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll deleted file mode 100644 index 4bf6cc3b..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll +++ /dev/null @@ -1,233 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp' -source_filename = "PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@lookup = dso_local global [101 x [501 x i64]] zeroinitializer, align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i64 @_Z8countRecii(i32 %0, i32 %1) #4 { - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp eq i32 %8, 0 - br i1 %9, label %10, label %14 - -10: ; preds = %2 - %11 = load i32, i32* %5, align 4 - %12 = icmp eq i32 %11, 0 - %13 = zext i1 %12 to i64 - store i64 %13, i64* %3, align 8 - br label %61 - -14: ; preds = %2 - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [101 x [501 x i64]], [101 x [501 x i64]]* @lookup, i64 0, i64 %16 - %18 = load i32, i32* %5, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [501 x i64], [501 x i64]* %17, i64 0, i64 %19 - %21 = load i64, i64* %20, align 8 - %22 = icmp ne i64 %21, -1 - br i1 %22, label %23, label %31 - -23: ; preds = %14 - %24 = load i32, i32* %4, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [101 x [501 x i64]], [101 x [501 x i64]]* @lookup, i64 0, i64 %25 - %27 = load i32, i32* %5, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [501 x i64], [501 x i64]* %26, i64 0, i64 %28 - %30 = load i64, i64* %29, align 8 - store i64 %30, i64* %3, align 8 - br label %61 - -31: ; preds = %14 - store i64 0, i64* %6, align 8 - store i32 0, i32* %7, align 4 - br label %32 - -32: ; preds = %50, %31 - %33 = load i32, i32* %7, align 4 - %34 = icmp slt i32 %33, 10 - br i1 %34, label %35, label %53 - -35: ; preds = %32 - %36 = load i32, i32* %5, align 4 - %37 = load i32, i32* %7, align 4 - %38 = sub nsw i32 %36, %37 - %39 = icmp sge i32 %38, 0 - br i1 %39, label %40, label %49 - -40: ; preds = %35 - %41 = load i32, i32* %4, align 4 - %42 = sub nsw i32 %41, 1 - %43 = load i32, i32* %5, align 4 - %44 = load i32, i32* %7, align 4 - %45 = sub nsw i32 %43, %44 - %46 = call i64 @_Z8countRecii(i32 %42, i32 %45) - %47 = load i64, i64* %6, align 8 - %48 = add i64 %47, %46 - store i64 %48, i64* %6, align 8 - br label %49 - -49: ; preds = %40, %35 - br label %50 - -50: ; preds = %49 - %51 = load i32, i32* %7, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %7, align 4 - br label %32, !llvm.loop !2 - -53: ; preds = %32 - %54 = load i64, i64* %6, align 8 - %55 = load i32, i32* %4, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds [101 x [501 x i64]], [101 x [501 x i64]]* @lookup, i64 0, i64 %56 - %58 = load i32, i32* %5, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [501 x i64], [501 x i64]* %57, i64 0, i64 %59 - store i64 %54, i64* %60, align 8 - store i64 %54, i64* %3, align 8 - br label %61 - -61: ; preds = %53, %23, %10 - %62 = load i64, i64* %3, align 8 - ret i64 %62 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i64 @_Z10finalCountii(i32 %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([101 x [501 x i64]]* @lookup to i8*), i8 -1, i64 404808, i1 false) - store i64 0, i64* %5, align 8 - store i32 1, i32* %6, align 4 - br label %7 - -7: ; preds = %25, %2 - %8 = load i32, i32* %6, align 4 - %9 = icmp sle i32 %8, 9 - br i1 %9, label %10, label %28 - -10: ; preds = %7 - %11 = load i32, i32* %4, align 4 - %12 = load i32, i32* %6, align 4 - %13 = sub nsw i32 %11, %12 - %14 = icmp sge i32 %13, 0 - br i1 %14, label %15, label %24 - -15: ; preds = %10 - %16 = load i32, i32* %3, align 4 - %17 = sub nsw i32 %16, 1 - %18 = load i32, i32* %4, align 4 - %19 = load i32, i32* %6, align 4 - %20 = sub nsw i32 %18, %19 - %21 = call i64 @_Z8countRecii(i32 %17, i32 %20) - %22 = load i64, i64* %5, align 8 - %23 = add i64 %22, %21 - store i64 %23, i64* %5, align 8 - br label %24 - -24: ; preds = %15, %10 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %6, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %6, align 4 - br label %7, !llvm.loop !4 - -28: ; preds = %7 - %29 = load i64, i64* %5, align 8 - ret i64 %29 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - store i32 5, i32* %3, align 4 - %4 = load i32, i32* %2, align 4 - %5 = load i32, i32* %3, align 4 - %6 = call i64 @_Z10finalCountii(i32 %4, i32 %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEy(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i64 %6) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEy(%"class.std::basic_ostream"* nonnull dereferenceable(8), i64) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll deleted file mode 100644 index 86900b41..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll +++ /dev/null @@ -1,150 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-possible-ways-to-construct-buildings.cpp' -source_filename = "PE-benchmarks/count-possible-ways-to-construct-buildings.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [19 x i8] c"Count of ways for \00", align 1 -@.str.1 = private unnamed_addr constant [14 x i8] c" sections is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9countWaysi(i32 %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - %10 = load i32, i32* %3, align 4 - %11 = icmp eq i32 %10, 1 - br i1 %11, label %12, label %13 - -12: ; preds = %1 - store i32 4, i32* %2, align 4 - br label %35 - -13: ; preds = %1 - store i32 1, i32* %4, align 4 - store i32 1, i32* %5, align 4 - store i32 2, i32* %8, align 4 - br label %14 - -14: ; preds = %25, %13 - %15 = load i32, i32* %8, align 4 - %16 = load i32, i32* %3, align 4 - %17 = icmp sle i32 %15, %16 - br i1 %17, label %18, label %28 - -18: ; preds = %14 - %19 = load i32, i32* %4, align 4 - store i32 %19, i32* %6, align 4 - %20 = load i32, i32* %5, align 4 - store i32 %20, i32* %7, align 4 - %21 = load i32, i32* %6, align 4 - %22 = load i32, i32* %7, align 4 - %23 = add nsw i32 %21, %22 - store i32 %23, i32* %5, align 4 - %24 = load i32, i32* %7, align 4 - store i32 %24, i32* %4, align 4 - br label %25 - -25: ; preds = %18 - %26 = load i32, i32* %8, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %8, align 4 - br label %14, !llvm.loop !2 - -28: ; preds = %14 - %29 = load i32, i32* %5, align 4 - %30 = load i32, i32* %4, align 4 - %31 = add nsw i32 %29, %30 - store i32 %31, i32* %9, align 4 - %32 = load i32, i32* %9, align 4 - %33 = load i32, i32* %9, align 4 - %34 = mul nsw i32 %32, %33 - store i32 %34, i32* %2, align 4 - br label %35 - -35: ; preds = %28, %12 - %36 = load i32, i32* %2, align 4 - ret i32 %36 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str, i64 0, i64 0)) - %4 = load i32, i32* %2, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %3, i32 %4) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %5, i8* getelementptr inbounds ([14 x i8], [14 x i8]* @.str.1, i64 0, i64 0)) - %7 = load i32, i32* %2, align 4 - %8 = call i32 @_Z9countWaysi(i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, i32 %8) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-ways-reach-nth-stair.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/count-ways-reach-nth-stair.ll deleted file mode 100644 index 76977e92..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-ways-reach-nth-stair.ll +++ /dev/null @@ -1,150 +0,0 @@ -; ModuleID = 'PE-benchmarks/count-ways-reach-nth-stair.cpp' -source_filename = "PE-benchmarks/count-ways-reach-nth-stair.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [19 x i8] c"Nuber of ways = %d\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z13countWaysUtilii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %9 = load i32, i32* %3, align 4 - %10 = zext i32 %9 to i64 - %11 = call i8* @llvm.stacksave() - store i8* %11, i8** %5, align 8 - %12 = alloca i32, i64 %10, align 16 - store i64 %10, i64* %6, align 8 - %13 = getelementptr inbounds i32, i32* %12, i64 0 - store i32 1, i32* %13, align 16 - %14 = getelementptr inbounds i32, i32* %12, i64 1 - store i32 1, i32* %14, align 4 - store i32 2, i32* %7, align 4 - br label %15 - -15: ; preds = %49, %2 - %16 = load i32, i32* %7, align 4 - %17 = load i32, i32* %3, align 4 - %18 = icmp slt i32 %16, %17 - br i1 %18, label %19, label %52 - -19: ; preds = %15 - %20 = load i32, i32* %7, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %12, i64 %21 - store i32 0, i32* %22, align 4 - store i32 1, i32* %8, align 4 - br label %23 - -23: ; preds = %45, %19 - %24 = load i32, i32* %8, align 4 - %25 = load i32, i32* %4, align 4 - %26 = icmp sle i32 %24, %25 - br i1 %26, label %27, label %31 - -27: ; preds = %23 - %28 = load i32, i32* %8, align 4 - %29 = load i32, i32* %7, align 4 - %30 = icmp sle i32 %28, %29 - br label %31 - -31: ; preds = %27, %23 - %32 = phi i1 [ false, %23 ], [ %30, %27 ] - br i1 %32, label %33, label %48 - -33: ; preds = %31 - %34 = load i32, i32* %7, align 4 - %35 = load i32, i32* %8, align 4 - %36 = sub nsw i32 %34, %35 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %12, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %7, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds i32, i32* %12, i64 %41 - %43 = load i32, i32* %42, align 4 - %44 = add nsw i32 %43, %39 - store i32 %44, i32* %42, align 4 - br label %45 - -45: ; preds = %33 - %46 = load i32, i32* %8, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %8, align 4 - br label %23, !llvm.loop !2 - -48: ; preds = %31 - br label %49 - -49: ; preds = %48 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 - br label %15, !llvm.loop !4 - -52: ; preds = %15 - %53 = load i32, i32* %3, align 4 - %54 = sub nsw i32 %53, 1 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %12, i64 %55 - %57 = load i32, i32* %56, align 4 - %58 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %58) - ret i32 %57 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9countWaysii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = add nsw i32 %5, 1 - %7 = load i32, i32* %4, align 4 - %8 = call i32 @_Z13countWaysUtilii(i32 %6, i32 %7) - ret i32 %8 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 4, i32* %2, align 4 - store i32 2, i32* %3, align 4 - %4 = load i32, i32* %2, align 4 - %5 = load i32, i32* %3, align 4 - %6 = call i32 @_Z9countWaysii(i32 %4, i32 %5) - %7 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str, i64 0, i64 0), i32 %6) - ret i32 0 -} - -declare dso_local i32 @printf(i8*, ...) #3 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind willreturn } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/cut-vertices.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/cut-vertices.ll deleted file mode 100644 index 6270a081..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/cut-vertices.ll +++ /dev/null @@ -1,1254 +0,0 @@ -; ModuleID = 'PE-benchmarks/cut-vertices.cpp' -source_filename = "PE-benchmarks/cut-vertices.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time = internal global i32 0, align 4 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [38 x i8] c"\0AArticulation points in first graph \0A\00", align 1 -@.str.2 = private unnamed_addr constant [39 x i8] c"\0AArticulation points in second graph \0A\00", align 1 -@.str.3 = private unnamed_addr constant [38 x i8] c"\0AArticulation points in third graph \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_cut_vertices.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #14 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, i32* nonnull align 4 dereferenceable(4) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, i32* %3, i32* %4, i32* %5, i8* %6) #7 align 2 { - %8 = alloca %class.Graph*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i8*, align 8 - %11 = alloca i32*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = alloca %"struct.std::_List_iterator", align 8 - %17 = alloca %"struct.std::_List_iterator", align 8 - %18 = alloca %"struct.std::_List_iterator", align 8 - %19 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %8, align 8 - store i32 %1, i32* %9, align 4 - store i8* %2, i8** %10, align 8 - store i32* %3, i32** %11, align 8 - store i32* %4, i32** %12, align 8 - store i32* %5, i32** %13, align 8 - store i8* %6, i8** %14, align 8 - %20 = load %class.Graph*, %class.Graph** %8, align 8 - store i32 0, i32* %15, align 4 - %21 = load i8*, i8** %10, align 8 - %22 = load i32, i32* %9, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i8, i8* %21, i64 %23 - store i8 1, i8* %24, align 1 - %25 = load i32, i32* @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time, align 4 - %26 = add nsw i32 %25, 1 - store i32 %26, i32* @_ZZN5Graph6APUtilEiPbPiS1_S1_S0_E4time, align 4 - %27 = load i32*, i32** %12, align 8 - %28 = load i32, i32* %9, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - store i32 %26, i32* %30, align 4 - %31 = load i32*, i32** %11, align 8 - %32 = load i32, i32* %9, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - store i32 %26, i32* %34, align 4 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %16) #3 - %35 = getelementptr inbounds %class.Graph, %class.Graph* %20, i32 0, i32 1 - %36 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %35, align 8 - %37 = load i32, i32* %9, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %36, i64 %38 - %40 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %39) #3 - %41 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %17, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %40, %"struct.std::__detail::_List_node_base"** %41, align 8 - %42 = bitcast %"struct.std::_List_iterator"* %16 to i8* - %43 = bitcast %"struct.std::_List_iterator"* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %42, i8* align 8 %43, i64 8, i1 false) - br label %44 - -44: ; preds = %154, %7 - %45 = getelementptr inbounds %class.Graph, %class.Graph* %20, i32 0, i32 1 - %46 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %45, align 8 - %47 = load i32, i32* %9, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %46, i64 %48 - %50 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %49) #3 - %51 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %18, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %50, %"struct.std::__detail::_List_node_base"** %51, align 8 - %52 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %16, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %18) #3 - br i1 %52, label %53, label %156 - -53: ; preds = %44 - %54 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %16) #3 - %55 = load i32, i32* %54, align 4 - store i32 %55, i32* %19, align 4 - %56 = load i8*, i8** %10, align 8 - %57 = load i32, i32* %19, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds i8, i8* %56, i64 %58 - %60 = load i8, i8* %59, align 1 - %61 = trunc i8 %60 to i1 - br i1 %61, label %129, label %62 - -62: ; preds = %53 - %63 = load i32, i32* %15, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %15, align 4 - %65 = load i32, i32* %9, align 4 - %66 = load i32*, i32** %13, align 8 - %67 = load i32, i32* %19, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - store i32 %65, i32* %69, align 4 - %70 = load i32, i32* %19, align 4 - %71 = load i8*, i8** %10, align 8 - %72 = load i32*, i32** %11, align 8 - %73 = load i32*, i32** %12, align 8 - %74 = load i32*, i32** %13, align 8 - %75 = load i8*, i8** %14, align 8 - call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull dereferenceable(16) %20, i32 %70, i8* %71, i32* %72, i32* %73, i32* %74, i8* %75) - %76 = load i32*, i32** %12, align 8 - %77 = load i32, i32* %9, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds i32, i32* %76, i64 %78 - %80 = load i32*, i32** %12, align 8 - %81 = load i32, i32* %19, align 4 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds i32, i32* %80, i64 %82 - %84 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %79, i32* nonnull align 4 dereferenceable(4) %83) - %85 = load i32, i32* %84, align 4 - %86 = load i32*, i32** %12, align 8 - %87 = load i32, i32* %9, align 4 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i32, i32* %86, i64 %88 - store i32 %85, i32* %89, align 4 - %90 = load i32*, i32** %13, align 8 - %91 = load i32, i32* %9, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i32, i32* %90, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = icmp eq i32 %94, -1 - br i1 %95, label %96, label %104 - -96: ; preds = %62 - %97 = load i32, i32* %15, align 4 - %98 = icmp sgt i32 %97, 1 - br i1 %98, label %99, label %104 - -99: ; preds = %96 - %100 = load i8*, i8** %14, align 8 - %101 = load i32, i32* %9, align 4 - %102 = sext i32 %101 to i64 - %103 = getelementptr inbounds i8, i8* %100, i64 %102 - store i8 1, i8* %103, align 1 - br label %104 - -104: ; preds = %99, %96, %62 - %105 = load i32*, i32** %13, align 8 - %106 = load i32, i32* %9, align 4 - %107 = sext i32 %106 to i64 - %108 = getelementptr inbounds i32, i32* %105, i64 %107 - %109 = load i32, i32* %108, align 4 - %110 = icmp ne i32 %109, -1 - br i1 %110, label %111, label %128 - -111: ; preds = %104 - %112 = load i32*, i32** %12, align 8 - %113 = load i32, i32* %19, align 4 - %114 = sext i32 %113 to i64 - %115 = getelementptr inbounds i32, i32* %112, i64 %114 - %116 = load i32, i32* %115, align 4 - %117 = load i32*, i32** %11, align 8 - %118 = load i32, i32* %9, align 4 - %119 = sext i32 %118 to i64 - %120 = getelementptr inbounds i32, i32* %117, i64 %119 - %121 = load i32, i32* %120, align 4 - %122 = icmp sge i32 %116, %121 - br i1 %122, label %123, label %128 - -123: ; preds = %111 - %124 = load i8*, i8** %14, align 8 - %125 = load i32, i32* %9, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i8, i8* %124, i64 %126 - store i8 1, i8* %127, align 1 - br label %128 - -128: ; preds = %123, %111, %104 - br label %153 - -129: ; preds = %53 - %130 = load i32, i32* %19, align 4 - %131 = load i32*, i32** %13, align 8 - %132 = load i32, i32* %9, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i32, i32* %131, i64 %133 - %135 = load i32, i32* %134, align 4 - %136 = icmp ne i32 %130, %135 - br i1 %136, label %137, label %152 - -137: ; preds = %129 - %138 = load i32*, i32** %12, align 8 - %139 = load i32, i32* %9, align 4 - %140 = sext i32 %139 to i64 - %141 = getelementptr inbounds i32, i32* %138, i64 %140 - %142 = load i32*, i32** %11, align 8 - %143 = load i32, i32* %19, align 4 - %144 = sext i32 %143 to i64 - %145 = getelementptr inbounds i32, i32* %142, i64 %144 - %146 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %141, i32* nonnull align 4 dereferenceable(4) %145) - %147 = load i32, i32* %146, align 4 - %148 = load i32*, i32** %12, align 8 - %149 = load i32, i32* %9, align 4 - %150 = sext i32 %149 to i64 - %151 = getelementptr inbounds i32, i32* %148, i64 %150 - store i32 %147, i32* %151, align 4 - br label %152 - -152: ; preds = %137, %129 - br label %153 - -153: ; preds = %152, %128 - br label %154 - -154: ; preds = %153 - %155 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %16) #3 - br label %44, !llvm.loop !2 - -156: ; preds = %44 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #8 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %11 = load %class.Graph*, %class.Graph** %2, align 8 - %12 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %13 = load i32, i32* %12, align 8 - %14 = sext i32 %13 to i64 - %15 = call noalias nonnull i8* @_Znam(i64 %14) #14 - store i8* %15, i8** %3, align 8 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %17 = load i32, i32* %16, align 8 - %18 = sext i32 %17 to i64 - %19 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %18, i64 4) - %20 = extractvalue { i64, i1 } %19, 1 - %21 = extractvalue { i64, i1 } %19, 0 - %22 = select i1 %20, i64 -1, i64 %21 - %23 = call noalias nonnull i8* @_Znam(i64 %22) #14 - %24 = bitcast i8* %23 to i32* - store i32* %24, i32** %4, align 8 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %26 = load i32, i32* %25, align 8 - %27 = sext i32 %26 to i64 - %28 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %27, i64 4) - %29 = extractvalue { i64, i1 } %28, 1 - %30 = extractvalue { i64, i1 } %28, 0 - %31 = select i1 %29, i64 -1, i64 %30 - %32 = call noalias nonnull i8* @_Znam(i64 %31) #14 - %33 = bitcast i8* %32 to i32* - store i32* %33, i32** %5, align 8 - %34 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %35 = load i32, i32* %34, align 8 - %36 = sext i32 %35 to i64 - %37 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %36, i64 4) - %38 = extractvalue { i64, i1 } %37, 1 - %39 = extractvalue { i64, i1 } %37, 0 - %40 = select i1 %38, i64 -1, i64 %39 - %41 = call noalias nonnull i8* @_Znam(i64 %40) #14 - %42 = bitcast i8* %41 to i32* - store i32* %42, i32** %6, align 8 - %43 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %44 = load i32, i32* %43, align 8 - %45 = sext i32 %44 to i64 - %46 = call noalias nonnull i8* @_Znam(i64 %45) #14 - store i8* %46, i8** %7, align 8 - store i32 0, i32* %8, align 4 - br label %47 - -47: ; preds = %65, %1 - %48 = load i32, i32* %8, align 4 - %49 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %50 = load i32, i32* %49, align 8 - %51 = icmp slt i32 %48, %50 - br i1 %51, label %52, label %68 - -52: ; preds = %47 - %53 = load i32*, i32** %6, align 8 - %54 = load i32, i32* %8, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %53, i64 %55 - store i32 -1, i32* %56, align 4 - %57 = load i8*, i8** %3, align 8 - %58 = load i32, i32* %8, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i8, i8* %57, i64 %59 - store i8 0, i8* %60, align 1 - %61 = load i8*, i8** %7, align 8 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i8, i8* %61, i64 %63 - store i8 0, i8* %64, align 1 - br label %65 - -65: ; preds = %52 - %66 = load i32, i32* %8, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %8, align 4 - br label %47, !llvm.loop !4 - -68: ; preds = %47 - store i32 0, i32* %9, align 4 - br label %69 - -69: ; preds = %91, %68 - %70 = load i32, i32* %9, align 4 - %71 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %72 = load i32, i32* %71, align 8 - %73 = icmp slt i32 %70, %72 - br i1 %73, label %74, label %94 - -74: ; preds = %69 - %75 = load i8*, i8** %3, align 8 - %76 = load i32, i32* %9, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i8, i8* %75, i64 %77 - %79 = load i8, i8* %78, align 1 - %80 = trunc i8 %79 to i1 - %81 = zext i1 %80 to i32 - %82 = icmp eq i32 %81, 0 - br i1 %82, label %83, label %90 - -83: ; preds = %74 - %84 = load i32, i32* %9, align 4 - %85 = load i8*, i8** %3, align 8 - %86 = load i32*, i32** %4, align 8 - %87 = load i32*, i32** %5, align 8 - %88 = load i32*, i32** %6, align 8 - %89 = load i8*, i8** %7, align 8 - call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull dereferenceable(16) %11, i32 %84, i8* %85, i32* %86, i32* %87, i32* %88, i8* %89) - br label %90 - -90: ; preds = %83, %74 - br label %91 - -91: ; preds = %90 - %92 = load i32, i32* %9, align 4 - %93 = add nsw i32 %92, 1 - store i32 %93, i32* %9, align 4 - br label %69, !llvm.loop !5 - -94: ; preds = %69 - store i32 0, i32* %10, align 4 - br label %95 - -95: ; preds = %114, %94 - %96 = load i32, i32* %10, align 4 - %97 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %98 = load i32, i32* %97, align 8 - %99 = icmp slt i32 %96, %98 - br i1 %99, label %100, label %117 - -100: ; preds = %95 - %101 = load i8*, i8** %7, align 8 - %102 = load i32, i32* %10, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds i8, i8* %101, i64 %103 - %105 = load i8, i8* %104, align 1 - %106 = trunc i8 %105 to i1 - %107 = zext i1 %106 to i32 - %108 = icmp eq i32 %107, 1 - br i1 %108, label %109, label %113 - -109: ; preds = %100 - %110 = load i32, i32* %10, align 4 - %111 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %110) - %112 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %111, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %113 - -113: ; preds = %109, %100 - br label %114 - -114: ; preds = %113 - %115 = load i32, i32* %10, align 4 - %116 = add nsw i32 %115, 1 - store i32 %116, i32* %10, align 4 - br label %95, !llvm.loop !6 - -117: ; preds = %95 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph, align 8 - %4 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([38 x i8], [38 x i8]* @.str.1, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - call void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %2) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([39 x i8], [39 x i8]* @.str.2, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %3, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 2, i32 3) - call void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %3) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([38 x i8], [38 x i8]* @.str.3, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %4, i32 7) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 2, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 6) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 3, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 4, i32 5) - call void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %4) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_cut_vertices.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll deleted file mode 100644 index f24c2486..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll +++ /dev/null @@ -1,165 +0,0 @@ -; ModuleID = 'PE-benchmarks/cutting-a-rod.cpp' -source_filename = "PE-benchmarks/cutting-a-rod.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.arr = private unnamed_addr constant [8 x i32] [i32 1, i32 5, i32 8, i32 9, i32 10, i32 17, i32 17, i32 20], align 16 -@.str = private unnamed_addr constant [32 x i8] c"Maximum Obtainable Value is %dn\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z6cutRodPii(i32* %0, i32 %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %10 = load i32, i32* %4, align 4 - %11 = add nsw i32 %10, 1 - %12 = zext i32 %11 to i64 - %13 = call i8* @llvm.stacksave() - store i8* %13, i8** %5, align 8 - %14 = alloca i32, i64 %12, align 16 - store i64 %12, i64* %6, align 8 - %15 = getelementptr inbounds i32, i32* %14, i64 0 - store i32 0, i32* %15, align 16 - store i32 1, i32* %7, align 4 - br label %16 - -16: ; preds = %49, %2 - %17 = load i32, i32* %7, align 4 - %18 = load i32, i32* %4, align 4 - %19 = icmp sle i32 %17, %18 - br i1 %19, label %20, label %52 - -20: ; preds = %16 - store i32 -2147483648, i32* %9, align 4 - store i32 0, i32* %8, align 4 - br label %21 - -21: ; preds = %41, %20 - %22 = load i32, i32* %8, align 4 - %23 = load i32, i32* %7, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %44 - -25: ; preds = %21 - %26 = load i32, i32* %9, align 4 - %27 = load i32*, i32** %3, align 8 - %28 = load i32, i32* %8, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - %31 = load i32, i32* %30, align 4 - %32 = load i32, i32* %7, align 4 - %33 = load i32, i32* %8, align 4 - %34 = sub nsw i32 %32, %33 - %35 = sub nsw i32 %34, 1 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %14, i64 %36 - %38 = load i32, i32* %37, align 4 - %39 = add nsw i32 %31, %38 - %40 = call i32 @_Z3maxii(i32 %26, i32 %39) - store i32 %40, i32* %9, align 4 - br label %41 - -41: ; preds = %25 - %42 = load i32, i32* %8, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %8, align 4 - br label %21, !llvm.loop !2 - -44: ; preds = %21 - %45 = load i32, i32* %9, align 4 - %46 = load i32, i32* %7, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i32, i32* %14, i64 %47 - store i32 %45, i32* %48, align 4 - br label %49 - -49: ; preds = %44 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 - br label %16, !llvm.loop !4 - -52: ; preds = %16 - %53 = load i32, i32* %4, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %14, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %57) - ret i32 %56 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [8 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %5 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call i32 @_Z6cutRodPii(i32* %5, i32 %6) - %8 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([32 x i8], [32 x i8]* @.str, i64 0, i64 0), i32 %7) - %9 = call i32 @getchar() - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -declare dso_local i32 @printf(i8*, ...) #4 - -declare dso_local i32 @getchar() #4 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind willreturn } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll deleted file mode 100644 index a1b9ed91..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll +++ /dev/null @@ -1,1040 +0,0 @@ -; ModuleID = 'PE-benchmarks/detect-cycle-in-a-graph.cpp' -source_filename = "PE-benchmarks/detect-cycle-in-a-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [21 x i8] c"Graph contains cycle\00", align 1 -@.str.1 = private unnamed_addr constant [28 x i8] c"Graph doesn't contain cycle\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_detect_cycle_in_a_graph.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #14 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, i8* %3) #7 align 2 { - %5 = alloca i1, align 1 - %6 = alloca %class.Graph*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %6, align 8 - store i32 %1, i32* %7, align 4 - store i8* %2, i8** %8, align 8 - store i8* %3, i8** %9, align 8 - %13 = load %class.Graph*, %class.Graph** %6, align 8 - %14 = load i8*, i8** %8, align 8 - %15 = load i32, i32* %7, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i8, i8* %14, i64 %16 - %18 = load i8, i8* %17, align 1 - %19 = trunc i8 %18 to i1 - %20 = zext i1 %19 to i32 - %21 = icmp eq i32 %20, 0 - br i1 %21, label %22, label %78 - -22: ; preds = %4 - %23 = load i8*, i8** %8, align 8 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %23, i64 %25 - store i8 1, i8* %26, align 1 - %27 = load i8*, i8** %9, align 8 - %28 = load i32, i32* %7, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i8, i8* %27, i64 %29 - store i8 1, i8* %30, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %31 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %32 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %31, align 8 - %33 = load i32, i32* %7, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %32, i64 %34 - %36 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %35) #3 - %37 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %36, %"struct.std::__detail::_List_node_base"** %37, align 8 - %38 = bitcast %"struct.std::_List_iterator"* %10 to i8* - %39 = bitcast %"struct.std::_List_iterator"* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %38, i8* align 8 %39, i64 8, i1 false) - br label %40 - -40: ; preds = %75, %22 - %41 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %42 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %41, align 8 - %43 = load i32, i32* %7, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %42, i64 %44 - %46 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %45) #3 - %47 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %12, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %46, %"struct.std::__detail::_List_node_base"** %47, align 8 - %48 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %10, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %12) #3 - br i1 %48, label %49, label %77 - -49: ; preds = %40 - %50 = load i8*, i8** %8, align 8 - %51 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %52 = load i32, i32* %51, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i8, i8* %50, i64 %53 - %55 = load i8, i8* %54, align 1 - %56 = trunc i8 %55 to i1 - br i1 %56, label %64, label %57 - -57: ; preds = %49 - %58 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %59 = load i32, i32* %58, align 4 - %60 = load i8*, i8** %8, align 8 - %61 = load i8*, i8** %9, align 8 - %62 = call zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnull dereferenceable(16) %13, i32 %59, i8* %60, i8* %61) - br i1 %62, label %63, label %64 - -63: ; preds = %57 - store i1 true, i1* %5, align 1 - br label %83 - -64: ; preds = %57, %49 - %65 = load i8*, i8** %9, align 8 - %66 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %67 = load i32, i32* %66, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i8, i8* %65, i64 %68 - %70 = load i8, i8* %69, align 1 - %71 = trunc i8 %70 to i1 - br i1 %71, label %72, label %73 - -72: ; preds = %64 - store i1 true, i1* %5, align 1 - br label %83 - -73: ; preds = %64 - br label %74 - -74: ; preds = %73 - br label %75 - -75: ; preds = %74 - %76 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - br label %40, !llvm.loop !2 - -77: ; preds = %40 - br label %78 - -78: ; preds = %77, %4 - %79 = load i8*, i8** %9, align 8 - %80 = load i32, i32* %7, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i8, i8* %79, i64 %81 - store i8 0, i8* %82, align 1 - store i1 false, i1* %5, align 1 - br label %83 - -83: ; preds = %78, %72, %63 - %84 = load i1, i1* %5, align 1 - ret i1 %84 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - %11 = sext i32 %10 to i64 - %12 = call noalias nonnull i8* @_Znam(i64 %11) #14 - store i8* %12, i8** %4, align 8 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = sext i32 %14 to i64 - %16 = call noalias nonnull i8* @_Znam(i64 %15) #14 - store i8* %16, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %17 - -17: ; preds = %31, %1 - %18 = load i32, i32* %6, align 4 - %19 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %20 = load i32, i32* %19, align 8 - %21 = icmp slt i32 %18, %20 - br i1 %21, label %22, label %34 - -22: ; preds = %17 - %23 = load i8*, i8** %4, align 8 - %24 = load i32, i32* %6, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %23, i64 %25 - store i8 0, i8* %26, align 1 - %27 = load i8*, i8** %5, align 8 - %28 = load i32, i32* %6, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i8, i8* %27, i64 %29 - store i8 0, i8* %30, align 1 - br label %31 - -31: ; preds = %22 - %32 = load i32, i32* %6, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %6, align 4 - br label %17, !llvm.loop !4 - -34: ; preds = %17 - store i32 0, i32* %7, align 4 - br label %35 - -35: ; preds = %47, %34 - %36 = load i32, i32* %7, align 4 - %37 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %38 = load i32, i32* %37, align 8 - %39 = icmp slt i32 %36, %38 - br i1 %39, label %40, label %50 - -40: ; preds = %35 - %41 = load i32, i32* %7, align 4 - %42 = load i8*, i8** %4, align 8 - %43 = load i8*, i8** %5, align 8 - %44 = call zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnull dereferenceable(16) %8, i32 %41, i8* %42, i8* %43) - br i1 %44, label %45, label %46 - -45: ; preds = %40 - store i1 true, i1* %2, align 1 - br label %51 - -46: ; preds = %40 - br label %47 - -47: ; preds = %46 - %48 = load i32, i32* %7, align 4 - %49 = add nsw i32 %48, 1 - store i32 %49, i32* %7, align 4 - br label %35, !llvm.loop !5 - -50: ; preds = %35 - store i1 false, i1* %2, align 1 - br label %51 - -51: ; preds = %50, %45 - %52 = load i1, i1* %2, align 1 - ret i1 %52 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 3) - %3 = call zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull dereferenceable(16) %2) - br i1 %3, label %4, label %6 - -4: ; preds = %0 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0)) - br label %8 - -6: ; preds = %0 - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str.1, i64 0, i64 0)) - br label %8 - -8: ; preds = %6, %4 - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_detect_cycle_in_a_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll deleted file mode 100644 index b88fb85f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll +++ /dev/null @@ -1,1039 +0,0 @@ -; ModuleID = 'PE-benchmarks/detect-cycle-undirected-graph.cpp' -source_filename = "PE-benchmarks/detect-cycle-undirected-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [22 x i8] c"Graph contains cycle\0A\00", align 1 -@.str.1 = private unnamed_addr constant [29 x i8] c"Graph doesn't contain cycle\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_detect_cycle_undirected_graph.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #14 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, i32* nonnull align 4 dereferenceable(4) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, i32 %3) #7 align 2 { - %5 = alloca i1, align 1 - %6 = alloca %class.Graph*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %6, align 8 - store i32 %1, i32* %7, align 4 - store i8* %2, i8** %8, align 8 - store i32 %3, i32* %9, align 4 - %13 = load %class.Graph*, %class.Graph** %6, align 8 - %14 = load i8*, i8** %8, align 8 - %15 = load i32, i32* %7, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i8, i8* %14, i64 %16 - store i8 1, i8* %17, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %19 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %18, align 8 - %20 = load i32, i32* %7, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %19, i64 %21 - %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %22) #3 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %10 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %60, %4 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %7, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %32) #3 - %34 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %12, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %33, %"struct.std::__detail::_List_node_base"** %34, align 8 - %35 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %10, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %12) #3 - br i1 %35, label %36, label %62 - -36: ; preds = %27 - %37 = load i8*, i8** %8, align 8 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %37, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = trunc i8 %42 to i1 - br i1 %43, label %52, label %44 - -44: ; preds = %36 - %45 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %46 = load i32, i32* %45, align 4 - %47 = load i8*, i8** %8, align 8 - %48 = load i32, i32* %7, align 4 - %49 = call zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull dereferenceable(16) %13, i32 %46, i8* %47, i32 %48) - br i1 %49, label %50, label %51 - -50: ; preds = %44 - store i1 true, i1* %5, align 1 - br label %63 - -51: ; preds = %44 - br label %59 - -52: ; preds = %36 - %53 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - %54 = load i32, i32* %53, align 4 - %55 = load i32, i32* %9, align 4 - %56 = icmp ne i32 %54, %55 - br i1 %56, label %57, label %58 - -57: ; preds = %52 - store i1 true, i1* %5, align 1 - br label %63 - -58: ; preds = %52 - br label %59 - -59: ; preds = %58, %51 - br label %60 - -60: ; preds = %59 - %61 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %10) #3 - br label %27, !llvm.loop !2 - -62: ; preds = %27 - store i1 false, i1* %5, align 1 - br label %63 - -63: ; preds = %62, %57, %50 - %64 = load i1, i1* %5, align 1 - ret i1 %64 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %7 = load %class.Graph*, %class.Graph** %3, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = sext i32 %9 to i64 - %11 = call noalias nonnull i8* @_Znam(i64 %10) #14 - store i8* %11, i8** %4, align 8 - store i32 0, i32* %5, align 4 - br label %12 - -12: ; preds = %22, %1 - %13 = load i32, i32* %5, align 4 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = icmp slt i32 %13, %15 - br i1 %16, label %17, label %25 - -17: ; preds = %12 - %18 = load i8*, i8** %4, align 8 - %19 = load i32, i32* %5, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i8, i8* %18, i64 %20 - store i8 0, i8* %21, align 1 - br label %22 - -22: ; preds = %17 - %23 = load i32, i32* %5, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %5, align 4 - br label %12, !llvm.loop !4 - -25: ; preds = %12 - store i32 0, i32* %6, align 4 - br label %26 - -26: ; preds = %45, %25 - %27 = load i32, i32* %6, align 4 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %29 = load i32, i32* %28, align 8 - %30 = icmp slt i32 %27, %29 - br i1 %30, label %31, label %48 - -31: ; preds = %26 - %32 = load i8*, i8** %4, align 8 - %33 = load i32, i32* %6, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - %36 = load i8, i8* %35, align 1 - %37 = trunc i8 %36 to i1 - br i1 %37, label %44, label %38 - -38: ; preds = %31 - %39 = load i32, i32* %6, align 4 - %40 = load i8*, i8** %4, align 8 - %41 = call zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull dereferenceable(16) %7, i32 %39, i8* %40, i32 -1) - br i1 %41, label %42, label %43 - -42: ; preds = %38 - store i1 true, i1* %2, align 1 - br label %49 - -43: ; preds = %38 - br label %44 - -44: ; preds = %43, %31 - br label %45 - -45: ; preds = %44 - %46 = load i32, i32* %6, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %6, align 4 - br label %26, !llvm.loop !5 - -48: ; preds = %26 - store i1 false, i1* %2, align 1 - br label %49 - -49: ; preds = %48, %42 - %50 = load i1, i1* %2, align 1 - ret i1 %50 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - %4 = call zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull dereferenceable(16) %2) - br i1 %4, label %5, label %7 - -5: ; preds = %0 - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) - br label %9 - -7: ; preds = %0 - %8 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.1, i64 0, i64 0)) - br label %9 - -9: ; preds = %7, %5 - %10 = phi %"class.std::basic_ostream"* [ %6, %5 ], [ %8, %7 ] - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %3, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 1, i32 2) - %11 = call zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull dereferenceable(16) %3) - br i1 %11, label %12, label %14 - -12: ; preds = %9 - %13 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) - br label %16 - -14: ; preds = %9 - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.1, i64 0, i64 0)) - br label %16 - -16: ; preds = %14, %12 - %17 = phi %"class.std::basic_ostream"* [ %13, %12 ], [ %15, %14 ] - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_detect_cycle_undirected_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfa-based-division.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/dfa-based-division.ll deleted file mode 100644 index 69f86506..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfa-based-division.ll +++ /dev/null @@ -1,202 +0,0 @@ -; ModuleID = 'PE-benchmarks/dfa-based-division.cpp' -source_filename = "PE-benchmarks/dfa-based-division.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [11 x i8] c"Divisible\0A\00", align 1 -@.str.1 = private unnamed_addr constant [32 x i8] c"Not Divisible: Remainder is %d\0A\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z10preprocessiPA2_i(i32 %0, [2 x i32]* %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca [2 x i32]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store [2 x i32]* %1, [2 x i32]** %4, align 8 - store i32 0, i32* %7, align 4 - br label %8 - -8: ; preds = %50, %2 - %9 = load i32, i32* %7, align 4 - %10 = load i32, i32* %3, align 4 - %11 = icmp slt i32 %9, %10 - br i1 %11, label %12, label %53 - -12: ; preds = %8 - %13 = load i32, i32* %7, align 4 - %14 = shl i32 %13, 1 - store i32 %14, i32* %5, align 4 - %15 = load i32, i32* %5, align 4 - %16 = load i32, i32* %3, align 4 - %17 = icmp slt i32 %15, %16 - br i1 %17, label %18, label %20 - -18: ; preds = %12 - %19 = load i32, i32* %5, align 4 - br label %24 - -20: ; preds = %12 - %21 = load i32, i32* %5, align 4 - %22 = load i32, i32* %3, align 4 - %23 = sub nsw i32 %21, %22 - br label %24 - -24: ; preds = %20, %18 - %25 = phi i32 [ %19, %18 ], [ %23, %20 ] - %26 = load [2 x i32]*, [2 x i32]** %4, align 8 - %27 = load i32, i32* %7, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [2 x i32], [2 x i32]* %26, i64 %28 - %30 = getelementptr inbounds [2 x i32], [2 x i32]* %29, i64 0, i64 0 - store i32 %25, i32* %30, align 4 - %31 = load i32, i32* %7, align 4 - %32 = shl i32 %31, 1 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %6, align 4 - %34 = load i32, i32* %6, align 4 - %35 = load i32, i32* %3, align 4 - %36 = icmp slt i32 %34, %35 - br i1 %36, label %37, label %39 - -37: ; preds = %24 - %38 = load i32, i32* %6, align 4 - br label %43 - -39: ; preds = %24 - %40 = load i32, i32* %6, align 4 - %41 = load i32, i32* %3, align 4 - %42 = sub nsw i32 %40, %41 - br label %43 - -43: ; preds = %39, %37 - %44 = phi i32 [ %38, %37 ], [ %42, %39 ] - %45 = load [2 x i32]*, [2 x i32]** %4, align 8 - %46 = load i32, i32* %7, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [2 x i32], [2 x i32]* %45, i64 %47 - %49 = getelementptr inbounds [2 x i32], [2 x i32]* %48, i64 0, i64 1 - store i32 %44, i32* %49, align 4 - br label %50 - -50: ; preds = %43 - %51 = load i32, i32* %7, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %7, align 4 - br label %8, !llvm.loop !2 - -53: ; preds = %8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 %0, i32* %1, [2 x i32]* %2) #1 { - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca [2 x i32]*, align 8 - store i32 %0, i32* %4, align 4 - store i32* %1, i32** %5, align 8 - store [2 x i32]* %2, [2 x i32]** %6, align 8 - %7 = load i32, i32* %4, align 4 - %8 = icmp ne i32 %7, 0 - br i1 %8, label %9, label %25 - -9: ; preds = %3 - %10 = load i32, i32* %4, align 4 - %11 = ashr i32 %10, 1 - %12 = load i32*, i32** %5, align 8 - %13 = load [2 x i32]*, [2 x i32]** %6, align 8 - call void @_Z15isDivisibleUtiliPiPA2_i(i32 %11, i32* %12, [2 x i32]* %13) - %14 = load [2 x i32]*, [2 x i32]** %6, align 8 - %15 = load i32*, i32** %5, align 8 - %16 = load i32, i32* %15, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [2 x i32], [2 x i32]* %14, i64 %17 - %19 = load i32, i32* %4, align 4 - %20 = and i32 %19, 1 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [2 x i32], [2 x i32]* %18, i64 0, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32*, i32** %5, align 8 - store i32 %23, i32* %24, align 4 - br label %25 - -25: ; preds = %9, %3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z11isDivisibleii(i32 %0, i32 %1) #1 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca [2 x i32]*, align 8 - %6 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %7 = load i32, i32* %4, align 4 - %8 = sext i32 %7 to i64 - %9 = mul i64 %8, 8 - %10 = call noalias i8* @malloc(i64 %9) #5 - %11 = bitcast i8* %10 to [2 x i32]* - store [2 x i32]* %11, [2 x i32]** %5, align 8 - %12 = load i32, i32* %4, align 4 - %13 = load [2 x i32]*, [2 x i32]** %5, align 8 - call void @_Z10preprocessiPA2_i(i32 %12, [2 x i32]* %13) - store i32 0, i32* %6, align 4 - %14 = load i32, i32* %3, align 4 - %15 = load [2 x i32]*, [2 x i32]** %5, align 8 - call void @_Z15isDivisibleUtiliPiPA2_i(i32 %14, i32* %6, [2 x i32]* %15) - %16 = load i32, i32* %6, align 4 - ret i32 %16 -} - -; Function Attrs: nounwind -declare dso_local noalias i8* @malloc(i64) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 47, i32* %2, align 4 - store i32 5, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call i32 @_Z11isDivisibleii(i32 %5, i32 %6) - store i32 %7, i32* %4, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp eq i32 %8, 0 - br i1 %9, label %10, label %12 - -10: ; preds = %0 - %11 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str, i64 0, i64 0)) - br label %15 - -12: ; preds = %0 - %13 = load i32, i32* %4, align 4 - %14 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([32 x i8], [32 x i8]* @.str.1, i64 0, i64 0), i32 %13) - br label %15 - -15: ; preds = %12, %10 - ret i32 0 -} - -declare dso_local i32 @printf(i8*, ...) #4 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/dfs.ll deleted file mode 100644 index e97251fe..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfs.ll +++ /dev/null @@ -1,936 +0,0 @@ -; ModuleID = 'PE-benchmarks/dfs.cpp' -source_filename = "PE-benchmarks/dfs.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [62 x i8] c"Following is Depth First Traversal (starting from vertex 2) \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_dfs.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #14 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - %15 = load i32, i32* %5, align 4 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %15) - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %16, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %19 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %18, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %19, i64 %21 - %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %22) #3 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %49, %3 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %5, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %32) #3 - %34 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %9, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %33, %"struct.std::__detail::_List_node_base"** %34, align 8 - %35 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9) #3 - br i1 %35, label %36, label %51 - -36: ; preds = %27 - %37 = load i8*, i8** %6, align 8 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %37, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = trunc i8 %42 to i1 - br i1 %43, label %48, label %44 - -44: ; preds = %36 - %45 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %46 = load i32, i32* %45, align 4 - %47 = load i8*, i8** %6, align 8 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %10, i32 %46, i8* %47) - br label %48 - -48: ; preds = %44, %36 - br label %49 - -49: ; preds = %48 - %50 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - br label %27, !llvm.loop !2 - -51: ; preds = %27 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph3DFSEi(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) #7 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %7 = load %class.Graph*, %class.Graph** %3, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = sext i32 %9 to i64 - %11 = call noalias nonnull i8* @_Znam(i64 %10) #14 - store i8* %11, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %12 - -12: ; preds = %22, %2 - %13 = load i32, i32* %6, align 4 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = icmp slt i32 %13, %15 - br i1 %16, label %17, label %25 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i8, i8* %18, i64 %20 - store i8 0, i8* %21, align 1 - br label %22 - -22: ; preds = %17 - %23 = load i32, i32* %6, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %6, align 4 - br label %12, !llvm.loop !4 - -25: ; preds = %12 - %26 = load i32, i32* %4, align 4 - %27 = load i8*, i8** %5, align 8 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %7, i32 %26, i8* %27) - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 3) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([62 x i8], [62 x i8]* @.str.1, i64 0, i64 0)) - call void @_ZN5Graph3DFSEi(%class.Graph* nonnull dereferenceable(16) %2, i32 2) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_dfs.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { builtin allocsize(0) } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/edit-distance.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/edit-distance.ll deleted file mode 100644 index 16bad09f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/edit-distance.ll +++ /dev/null @@ -1,493 +0,0 @@ -; ModuleID = 'PE-benchmarks/edit-distance.cpp' -source_filename = "PE-benchmarks/edit-distance.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@.str = private unnamed_addr constant [7 x i8] c"sunday\00", align 1 -@.str.1 = private unnamed_addr constant [9 x i8] c"saturday\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_edit_distance.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3miniii(i32 %0, i32 %1, i32 %2) #4 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %4, i32* nonnull align 4 dereferenceable(4) %5) - %8 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %7, i32* nonnull align 4 dereferenceable(4) %6) - %9 = load i32, i32* %8, align 4 - ret i32 %9 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #5 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"* %1, i32 %2, i32 %3) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = alloca %"class.std::__cxx11::basic_string", align 8 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 %2, i32* %6, align 4 - store i32 %3, i32* %7, align 4 - %18 = load i32, i32* %6, align 4 - %19 = icmp eq i32 %18, 0 - br i1 %19, label %20, label %22 - -20: ; preds = %4 - %21 = load i32, i32* %7, align 4 - store i32 %21, i32* %5, align 4 - br label %112 - -22: ; preds = %4 - %23 = load i32, i32* %7, align 4 - %24 = icmp eq i32 %23, 0 - br i1 %24, label %25, label %27 - -25: ; preds = %22 - %26 = load i32, i32* %6, align 4 - store i32 %26, i32* %5, align 4 - br label %112 - -27: ; preds = %22 - %28 = load i32, i32* %6, align 4 - %29 = sub nsw i32 %28, 1 - %30 = sext i32 %29 to i64 - %31 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %30) - %32 = load i8, i8* %31, align 1 - %33 = sext i8 %32 to i32 - %34 = load i32, i32* %7, align 4 - %35 = sub nsw i32 %34, 1 - %36 = sext i32 %35 to i64 - %37 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %36) - %38 = load i8, i8* %37, align 1 - %39 = sext i8 %38 to i32 - %40 = icmp eq i32 %33, %39 - br i1 %40, label %41, label %58 - -41: ; preds = %27 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - to label %42 unwind label %49 - -42: ; preds = %41 - %43 = load i32, i32* %6, align 4 - %44 = sub nsw i32 %43, 1 - %45 = load i32, i32* %7, align 4 - %46 = sub nsw i32 %45, 1 - %47 = invoke i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* %8, %"class.std::__cxx11::basic_string"* %9, i32 %44, i32 %46) - to label %48 unwind label %53 - -48: ; preds = %42 - store i32 %47, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %112 - -49: ; preds = %41 - %50 = landingpad { i8*, i32 } - cleanup - %51 = extractvalue { i8*, i32 } %50, 0 - store i8* %51, i8** %10, align 8 - %52 = extractvalue { i8*, i32 } %50, 1 - store i32 %52, i32* %11, align 4 - br label %57 - -53: ; preds = %42 - %54 = landingpad { i8*, i32 } - cleanup - %55 = extractvalue { i8*, i32 } %54, 0 - store i8* %55, i8** %10, align 8 - %56 = extractvalue { i8*, i32 } %54, 1 - store i32 %56, i32* %11, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %57 - -57: ; preds = %53, %49 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %114 - -58: ; preds = %27 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - to label %59 unwind label %83 - -59: ; preds = %58 - %60 = load i32, i32* %6, align 4 - %61 = load i32, i32* %7, align 4 - %62 = sub nsw i32 %61, 1 - %63 = invoke i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* %12, %"class.std::__cxx11::basic_string"* %13, i32 %60, i32 %62) - to label %64 unwind label %87 - -64: ; preds = %59 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - to label %65 unwind label %87 - -65: ; preds = %64 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - to label %66 unwind label %91 - -66: ; preds = %65 - %67 = load i32, i32* %6, align 4 - %68 = sub nsw i32 %67, 1 - %69 = load i32, i32* %7, align 4 - %70 = invoke i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* %14, %"class.std::__cxx11::basic_string"* %15, i32 %68, i32 %69) - to label %71 unwind label %95 - -71: ; preds = %66 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - to label %72 unwind label %95 - -72: ; preds = %71 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - to label %73 unwind label %99 - -73: ; preds = %72 - %74 = load i32, i32* %6, align 4 - %75 = sub nsw i32 %74, 1 - %76 = load i32, i32* %7, align 4 - %77 = sub nsw i32 %76, 1 - %78 = invoke i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* %16, %"class.std::__cxx11::basic_string"* %17, i32 %75, i32 %77) - to label %79 unwind label %103 - -79: ; preds = %73 - %80 = invoke i32 @_Z3miniii(i32 %63, i32 %70, i32 %78) - to label %81 unwind label %103 - -81: ; preds = %79 - %82 = add nsw i32 1, %80 - store i32 %82, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - br label %112 - -83: ; preds = %58 - %84 = landingpad { i8*, i32 } - cleanup - %85 = extractvalue { i8*, i32 } %84, 0 - store i8* %85, i8** %10, align 8 - %86 = extractvalue { i8*, i32 } %84, 1 - store i32 %86, i32* %11, align 4 - br label %111 - -87: ; preds = %64, %59 - %88 = landingpad { i8*, i32 } - cleanup - %89 = extractvalue { i8*, i32 } %88, 0 - store i8* %89, i8** %10, align 8 - %90 = extractvalue { i8*, i32 } %88, 1 - store i32 %90, i32* %11, align 4 - br label %110 - -91: ; preds = %65 - %92 = landingpad { i8*, i32 } - cleanup - %93 = extractvalue { i8*, i32 } %92, 0 - store i8* %93, i8** %10, align 8 - %94 = extractvalue { i8*, i32 } %92, 1 - store i32 %94, i32* %11, align 4 - br label %109 - -95: ; preds = %71, %66 - %96 = landingpad { i8*, i32 } - cleanup - %97 = extractvalue { i8*, i32 } %96, 0 - store i8* %97, i8** %10, align 8 - %98 = extractvalue { i8*, i32 } %96, 1 - store i32 %98, i32* %11, align 4 - br label %108 - -99: ; preds = %72 - %100 = landingpad { i8*, i32 } - cleanup - %101 = extractvalue { i8*, i32 } %100, 0 - store i8* %101, i8** %10, align 8 - %102 = extractvalue { i8*, i32 } %100, 1 - store i32 %102, i32* %11, align 4 - br label %107 - -103: ; preds = %79, %73 - %104 = landingpad { i8*, i32 } - cleanup - %105 = extractvalue { i8*, i32 } %104, 0 - store i8* %105, i8** %10, align 8 - %106 = extractvalue { i8*, i32 } %104, 1 - store i32 %106, i32* %11, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17) #3 - br label %107 - -107: ; preds = %103, %99 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16) #3 - br label %108 - -108: ; preds = %107, %95 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15) #3 - br label %109 - -109: ; preds = %108, %91 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - br label %110 - -110: ; preds = %109, %87 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - br label %111 - -111: ; preds = %110, %83 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - br label %114 - -112: ; preds = %81, %48, %25, %20 - %113 = load i32, i32* %5, align 4 - ret i32 %113 - -114: ; preds = %111, %57 - %115 = load i8*, i8** %10, align 8 - %116 = load i32, i32* %11, align 4 - %117 = insertvalue { i8*, i32 } undef, i8* %115, 0 - %118 = insertvalue { i8*, i32 } %117, i32 %116, 1 - resume { i8*, i32 } %118 -} - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([7 x i8], [7 x i8]* @.str, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %23 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %27 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %12 unwind label %31 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %6) - to label %13 unwind label %35 - -13: ; preds = %12 - %14 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %15 = trunc i64 %14 to i32 - %16 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - %17 = trunc i64 %16 to i32 - %18 = invoke i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* %8, %"class.std::__cxx11::basic_string"* %9, i32 %15, i32 %17) - to label %19 unwind label %39 - -19: ; preds = %13 - %20 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %18) - to label %21 unwind label %39 - -21: ; preds = %19 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %22 = load i32, i32* %1, align 4 - ret i32 %22 - -23: ; preds = %0 - %24 = landingpad { i8*, i32 } - cleanup - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %4, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - br label %46 - -27: ; preds = %10 - %28 = landingpad { i8*, i32 } - cleanup - %29 = extractvalue { i8*, i32 } %28, 0 - store i8* %29, i8** %4, align 8 - %30 = extractvalue { i8*, i32 } %28, 1 - store i32 %30, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - br label %45 - -31: ; preds = %11 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %4, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %5, align 4 - br label %44 - -35: ; preds = %12 - %36 = landingpad { i8*, i32 } - cleanup - %37 = extractvalue { i8*, i32 } %36, 0 - store i8* %37, i8** %4, align 8 - %38 = extractvalue { i8*, i32 } %36, 1 - store i32 %38, i32* %5, align 4 - br label %43 - -39: ; preds = %19, %13 - %40 = landingpad { i8*, i32 } - cleanup - %41 = extractvalue { i8*, i32 } %40, 0 - store i8* %41, i8** %4, align 8 - %42 = extractvalue { i8*, i32 } %40, 1 - store i32 %42, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %43 - -43: ; preds = %39, %35 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %44 - -44: ; preds = %43, %31 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %45 - -45: ; preds = %44, %27 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %46 - -46: ; preds = %45, %23 - %47 = load i8*, i8** %4, align 8 - %48 = load i32, i32* %5, align 4 - %49 = insertvalue { i8*, i32 } undef, i8* %47, 0 - %50 = insertvalue { i8*, i32 } %49, i32 %48, 1 - resume { i8*, i32 } %50 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_edit_distance.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll deleted file mode 100644 index b0a11913..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll +++ /dev/null @@ -1,328 +0,0 @@ -; ModuleID = 'PE-benchmarks/efficient-constructtion-of-finite-automata.cpp' -source_filename = "PE-benchmarks/efficient-constructtion-of-finite-automata.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"pattern found at index \00", align 1 -@__const.main.txt = private unnamed_addr constant [16 x i8] c"GEEKS FOR GEEKS\00", align 16 -@__const.main.pat = private unnamed_addr constant [6 x i8] c"GEEKS\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z15computeTransFunPciPA256_i(i8* %0, i32 %1, [256 x i32]* %2) #4 { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca [256 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store [256 x i32]* %2, [256 x i32]** %6, align 8 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %10 - -10: ; preds = %19, %3 - %11 = load i32, i32* %9, align 4 - %12 = icmp slt i32 %11, 256 - br i1 %12, label %13, label %22 - -13: ; preds = %10 - %14 = load [256 x i32]*, [256 x i32]** %6, align 8 - %15 = getelementptr inbounds [256 x i32], [256 x i32]* %14, i64 0 - %16 = load i32, i32* %9, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [256 x i32], [256 x i32]* %15, i64 0, i64 %17 - store i32 0, i32* %18, align 4 - br label %19 - -19: ; preds = %13 - %20 = load i32, i32* %9, align 4 - %21 = add nsw i32 %20, 1 - store i32 %21, i32* %9, align 4 - br label %10, !llvm.loop !2 - -22: ; preds = %10 - %23 = load [256 x i32]*, [256 x i32]** %6, align 8 - %24 = getelementptr inbounds [256 x i32], [256 x i32]* %23, i64 0 - %25 = load i8*, i8** %4, align 8 - %26 = getelementptr inbounds i8, i8* %25, i64 0 - %27 = load i8, i8* %26, align 1 - %28 = sext i8 %27 to i64 - %29 = getelementptr inbounds [256 x i32], [256 x i32]* %24, i64 0, i64 %28 - store i32 1, i32* %29, align 4 - store i32 1, i32* %7, align 4 - br label %30 - -30: ; preds = %88, %22 - %31 = load i32, i32* %7, align 4 - %32 = load i32, i32* %5, align 4 - %33 = icmp sle i32 %31, %32 - br i1 %33, label %34, label %91 - -34: ; preds = %30 - store i32 0, i32* %9, align 4 - br label %35 - -35: ; preds = %54, %34 - %36 = load i32, i32* %9, align 4 - %37 = icmp slt i32 %36, 256 - br i1 %37, label %38, label %57 - -38: ; preds = %35 - %39 = load [256 x i32]*, [256 x i32]** %6, align 8 - %40 = load i32, i32* %8, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds [256 x i32], [256 x i32]* %39, i64 %41 - %43 = load i32, i32* %9, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [256 x i32], [256 x i32]* %42, i64 0, i64 %44 - %46 = load i32, i32* %45, align 4 - %47 = load [256 x i32]*, [256 x i32]** %6, align 8 - %48 = load i32, i32* %7, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds [256 x i32], [256 x i32]* %47, i64 %49 - %51 = load i32, i32* %9, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds [256 x i32], [256 x i32]* %50, i64 0, i64 %52 - store i32 %46, i32* %53, align 4 - br label %54 - -54: ; preds = %38 - %55 = load i32, i32* %9, align 4 - %56 = add nsw i32 %55, 1 - store i32 %56, i32* %9, align 4 - br label %35, !llvm.loop !4 - -57: ; preds = %35 - %58 = load i32, i32* %7, align 4 - %59 = add nsw i32 %58, 1 - %60 = load [256 x i32]*, [256 x i32]** %6, align 8 - %61 = load i32, i32* %7, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds [256 x i32], [256 x i32]* %60, i64 %62 - %64 = load i8*, i8** %4, align 8 - %65 = load i32, i32* %7, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i8, i8* %64, i64 %66 - %68 = load i8, i8* %67, align 1 - %69 = sext i8 %68 to i64 - %70 = getelementptr inbounds [256 x i32], [256 x i32]* %63, i64 0, i64 %69 - store i32 %59, i32* %70, align 4 - %71 = load i32, i32* %7, align 4 - %72 = load i32, i32* %5, align 4 - %73 = icmp slt i32 %71, %72 - br i1 %73, label %74, label %87 - -74: ; preds = %57 - %75 = load [256 x i32]*, [256 x i32]** %6, align 8 - %76 = load i32, i32* %8, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds [256 x i32], [256 x i32]* %75, i64 %77 - %79 = load i8*, i8** %4, align 8 - %80 = load i32, i32* %7, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i8, i8* %79, i64 %81 - %83 = load i8, i8* %82, align 1 - %84 = sext i8 %83 to i64 - %85 = getelementptr inbounds [256 x i32], [256 x i32]* %78, i64 0, i64 %84 - %86 = load i32, i32* %85, align 4 - store i32 %86, i32* %8, align 4 - br label %87 - -87: ; preds = %74, %57 - br label %88 - -88: ; preds = %87 - %89 = load i32, i32* %7, align 4 - %90 = add nsw i32 %89, 1 - store i32 %90, i32* %7, align 4 - br label %30, !llvm.loop !5 - -91: ; preds = %30 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* %11) #10 - %13 = trunc i64 %12 to i32 - store i32 %13, i32* %5, align 4 - %14 = load i8*, i8** %4, align 8 - %15 = call i64 @strlen(i8* %14) #10 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = load i32, i32* %5, align 4 - %18 = add nsw i32 %17, 1 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 - %21 = alloca [256 x i32], i64 %19, align 16 - store i64 %19, i64* %8, align 8 - %22 = load i8*, i8** %3, align 8 - %23 = load i32, i32* %5, align 4 - call void @_Z15computeTransFunPciPA256_i(i8* %22, i32 %23, [256 x i32]* %21) - store i32 0, i32* %10, align 4 - store i32 0, i32* %9, align 4 - br label %24 - -24: ; preds = %52, %2 - %25 = load i32, i32* %9, align 4 - %26 = load i32, i32* %6, align 4 - %27 = icmp slt i32 %25, %26 - br i1 %27, label %28, label %55 - -28: ; preds = %24 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [256 x i32], [256 x i32]* %21, i64 %30 - %32 = load i8*, i8** %4, align 8 - %33 = load i32, i32* %9, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - %36 = load i8, i8* %35, align 1 - %37 = sext i8 %36 to i64 - %38 = getelementptr inbounds [256 x i32], [256 x i32]* %31, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %10, align 4 - %40 = load i32, i32* %10, align 4 - %41 = load i32, i32* %5, align 4 - %42 = icmp eq i32 %40, %41 - br i1 %42, label %43, label %51 - -43: ; preds = %28 - %44 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - %45 = load i32, i32* %9, align 4 - %46 = load i32, i32* %5, align 4 - %47 = sub nsw i32 %45, %46 - %48 = add nsw i32 %47, 1 - %49 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %44, i32 %48) - %50 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %49, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %51 - -51: ; preds = %43, %28 - br label %52 - -52: ; preds = %51 - %53 = load i32, i32* %9, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %9, align 4 - br label %24, !llvm.loop !6 - -55: ; preds = %24 - %56 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %56) - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #6 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #7 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [16 x i8], align 16 - %3 = alloca [6 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [16 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([16 x i8], [16 x i8]* @__const.main.txt, i32 0, i32 0), i64 16, i1 false) - %5 = bitcast [6 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([6 x i8], [6 x i8]* @__const.main.pat, i32 0, i32 0), i64 6, i1 false) - %6 = getelementptr inbounds [6 x i8], [6 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - call void @_Z6searchPcS_(i8* %6, i8* %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { nofree nosync nounwind willreturn } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll deleted file mode 100644 index 6087a12c..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll +++ /dev/null @@ -1,280 +0,0 @@ -; ModuleID = 'PE-benchmarks/egg-dropping-puzzle.cpp' -source_filename = "PE-benchmarks/egg-dropping-puzzle.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [75 x i8] c"nMinimum number of trials in worst case with %d eggs and %d floors is %d \0A\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %12 = load i32, i32* %3, align 4 - %13 = add nsw i32 %12, 1 - %14 = zext i32 %13 to i64 - %15 = load i32, i32* %4, align 4 - %16 = add nsw i32 %15, 1 - %17 = zext i32 %16 to i64 - %18 = call i8* @llvm.stacksave() - store i8* %18, i8** %5, align 8 - %19 = mul nuw i64 %14, %17 - %20 = alloca i32, i64 %19, align 16 - store i64 %14, i64* %6, align 8 - store i64 %17, i64* %7, align 8 - store i32 1, i32* %9, align 4 - br label %21 - -21: ; preds = %36, %2 - %22 = load i32, i32* %9, align 4 - %23 = load i32, i32* %3, align 4 - %24 = icmp sle i32 %22, %23 - br i1 %24, label %25, label %39 - -25: ; preds = %21 - %26 = load i32, i32* %9, align 4 - %27 = sext i32 %26 to i64 - %28 = mul nsw i64 %27, %17 - %29 = getelementptr inbounds i32, i32* %20, i64 %28 - %30 = getelementptr inbounds i32, i32* %29, i64 1 - store i32 1, i32* %30, align 4 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = mul nsw i64 %32, %17 - %34 = getelementptr inbounds i32, i32* %20, i64 %33 - %35 = getelementptr inbounds i32, i32* %34, i64 0 - store i32 0, i32* %35, align 4 - br label %36 - -36: ; preds = %25 - %37 = load i32, i32* %9, align 4 - %38 = add nsw i32 %37, 1 - store i32 %38, i32* %9, align 4 - br label %21, !llvm.loop !2 - -39: ; preds = %21 - store i32 1, i32* %10, align 4 - br label %40 - -40: ; preds = %51, %39 - %41 = load i32, i32* %10, align 4 - %42 = load i32, i32* %4, align 4 - %43 = icmp sle i32 %41, %42 - br i1 %43, label %44, label %54 - -44: ; preds = %40 - %45 = load i32, i32* %10, align 4 - %46 = mul nsw i64 1, %17 - %47 = getelementptr inbounds i32, i32* %20, i64 %46 - %48 = load i32, i32* %10, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - store i32 %45, i32* %50, align 4 - br label %51 - -51: ; preds = %44 - %52 = load i32, i32* %10, align 4 - %53 = add nsw i32 %52, 1 - store i32 %53, i32* %10, align 4 - br label %40, !llvm.loop !4 - -54: ; preds = %40 - store i32 2, i32* %9, align 4 - br label %55 - -55: ; preds = %127, %54 - %56 = load i32, i32* %9, align 4 - %57 = load i32, i32* %3, align 4 - %58 = icmp sle i32 %56, %57 - br i1 %58, label %59, label %130 - -59: ; preds = %55 - store i32 2, i32* %10, align 4 - br label %60 - -60: ; preds = %123, %59 - %61 = load i32, i32* %10, align 4 - %62 = load i32, i32* %4, align 4 - %63 = icmp sle i32 %61, %62 - br i1 %63, label %64, label %126 - -64: ; preds = %60 - %65 = load i32, i32* %9, align 4 - %66 = sext i32 %65 to i64 - %67 = mul nsw i64 %66, %17 - %68 = getelementptr inbounds i32, i32* %20, i64 %67 - %69 = load i32, i32* %10, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %68, i64 %70 - store i32 2147483647, i32* %71, align 4 - store i32 1, i32* %11, align 4 - br label %72 - -72: ; preds = %119, %64 - %73 = load i32, i32* %11, align 4 - %74 = load i32, i32* %10, align 4 - %75 = icmp sle i32 %73, %74 - br i1 %75, label %76, label %122 - -76: ; preds = %72 - %77 = load i32, i32* %9, align 4 - %78 = sub nsw i32 %77, 1 - %79 = sext i32 %78 to i64 - %80 = mul nsw i64 %79, %17 - %81 = getelementptr inbounds i32, i32* %20, i64 %80 - %82 = load i32, i32* %11, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %81, i64 %84 - %86 = load i32, i32* %85, align 4 - %87 = load i32, i32* %9, align 4 - %88 = sext i32 %87 to i64 - %89 = mul nsw i64 %88, %17 - %90 = getelementptr inbounds i32, i32* %20, i64 %89 - %91 = load i32, i32* %10, align 4 - %92 = load i32, i32* %11, align 4 - %93 = sub nsw i32 %91, %92 - %94 = sext i32 %93 to i64 - %95 = getelementptr inbounds i32, i32* %90, i64 %94 - %96 = load i32, i32* %95, align 4 - %97 = call i32 @_Z3maxii(i32 %86, i32 %96) - %98 = add nsw i32 1, %97 - store i32 %98, i32* %8, align 4 - %99 = load i32, i32* %8, align 4 - %100 = load i32, i32* %9, align 4 - %101 = sext i32 %100 to i64 - %102 = mul nsw i64 %101, %17 - %103 = getelementptr inbounds i32, i32* %20, i64 %102 - %104 = load i32, i32* %10, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %103, i64 %105 - %107 = load i32, i32* %106, align 4 - %108 = icmp slt i32 %99, %107 - br i1 %108, label %109, label %118 - -109: ; preds = %76 - %110 = load i32, i32* %8, align 4 - %111 = load i32, i32* %9, align 4 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %17 - %114 = getelementptr inbounds i32, i32* %20, i64 %113 - %115 = load i32, i32* %10, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - store i32 %110, i32* %117, align 4 - br label %118 - -118: ; preds = %109, %76 - br label %119 - -119: ; preds = %118 - %120 = load i32, i32* %11, align 4 - %121 = add nsw i32 %120, 1 - store i32 %121, i32* %11, align 4 - br label %72, !llvm.loop !5 - -122: ; preds = %72 - br label %123 - -123: ; preds = %122 - %124 = load i32, i32* %10, align 4 - %125 = add nsw i32 %124, 1 - store i32 %125, i32* %10, align 4 - br label %60, !llvm.loop !6 - -126: ; preds = %60 - br label %127 - -127: ; preds = %126 - %128 = load i32, i32* %9, align 4 - %129 = add nsw i32 %128, 1 - store i32 %129, i32* %9, align 4 - br label %55, !llvm.loop !7 - -130: ; preds = %55 - %131 = load i32, i32* %3, align 4 - %132 = sext i32 %131 to i64 - %133 = mul nsw i64 %132, %17 - %134 = getelementptr inbounds i32, i32* %20, i64 %133 - %135 = load i32, i32* %4, align 4 - %136 = sext i32 %135 to i64 - %137 = getelementptr inbounds i32, i32* %134, i64 %136 - %138 = load i32, i32* %137, align 4 - %139 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %139) - ret i32 %138 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 2, i32* %2, align 4 - store i32 36, i32* %3, align 4 - %4 = load i32, i32* %2, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %2, align 4 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z7eggDropii(i32 %6, i32 %7) - %9 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([75 x i8], [75 x i8]* @.str, i64 0, i64 0), i32 %4, i32 %5, i32 %8) - ret i32 0 -} - -declare dso_local i32 @printf(i8*, ...) #3 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind willreturn } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll deleted file mode 100644 index bb71f266..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll +++ /dev/null @@ -1,1676 +0,0 @@ -; ModuleID = 'PE-benchmarks/euler-circuit-directed-graph.cpp' -source_filename = "PE-benchmarks/euler-circuit-directed-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"*, i32* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE4sizeEv = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZN5GraphD2Ev = comdat any - -$_ZN5Graph7addEdgeEii = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any - -$_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [35 x i8] c"Given directed graph is eulerian n\00", align 1 -@.str.1 = private unnamed_addr constant [39 x i8] c"Given directed graph is NOT eulerian n\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_euler_circuit_directed_graph.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(24) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = load %class.Graph*, %class.Graph** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 0 - store i32 %7, i32* %8, align 8 - %9 = load i32, i32* %4, align 4 - %10 = sext i32 %9 to i64 - %11 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %10, i64 24) - %12 = extractvalue { i64, i1 } %11, 1 - %13 = extractvalue { i64, i1 } %11, 0 - %14 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %13, i64 8) - %15 = extractvalue { i64, i1 } %14, 1 - %16 = or i1 %12, %15 - %17 = extractvalue { i64, i1 } %14, 0 - %18 = select i1 %16, i64 -1, i64 %17 - %19 = call noalias nonnull i8* @_Znam(i64 %18) #15 - %20 = bitcast i8* %19 to i64* - store i64 %10, i64* %20, align 16 - %21 = getelementptr inbounds i8, i8* %19, i64 8 - %22 = bitcast i8* %21 to %"class.std::__cxx11::list"* - %23 = icmp eq i64 %10, 0 - br i1 %23, label %30, label %24 - -24: ; preds = %2 - %25 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %22, i64 %10 - br label %26 - -26: ; preds = %26, %24 - %27 = phi %"class.std::__cxx11::list"* [ %22, %24 ], [ %28, %26 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %27) #3 - %28 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %27, i64 1 - %29 = icmp eq %"class.std::__cxx11::list"* %28, %25 - br i1 %29, label %30, label %26 - -30: ; preds = %2, %26 - %31 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 1 - store %"class.std::__cxx11::list"* %22, %"class.std::__cxx11::list"** %31, align 8 - %32 = load i32, i32* %4, align 4 - %33 = sext i32 %32 to i64 - %34 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %33, i64 4) - %35 = extractvalue { i64, i1 } %34, 1 - %36 = extractvalue { i64, i1 } %34, 0 - %37 = select i1 %35, i64 -1, i64 %36 - %38 = call noalias nonnull i8* @_Znam(i64 %37) #15 - %39 = bitcast i8* %38 to i32* - %40 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 2 - store i32* %39, i32** %40, align 8 - store i32 0, i32* %5, align 4 - br label %41 - -41: ; preds = %51, %30 - %42 = load i32, i32* %5, align 4 - %43 = load i32, i32* %4, align 4 - %44 = icmp slt i32 %42, %43 - br i1 %44, label %45, label %54 - -45: ; preds = %41 - %46 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 2 - %47 = load i32*, i32** %46, align 8 - %48 = load i32, i32* %5, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - store i32 0, i32* %50, align 4 - br label %51 - -51: ; preds = %45 - %52 = load i32, i32* %5, align 4 - %53 = add nsw i32 %52, 1 - store i32 %53, i32* %5, align 4 - br label %41, !llvm.loop !2 - -54: ; preds = %41 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* nonnull dereferenceable(24) %0) #7 align 2 { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = call zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferenceable(24) %5) - %7 = zext i1 %6 to i32 - %8 = icmp eq i32 %7, 0 - br i1 %8, label %9, label %10 - -9: ; preds = %1 - store i1 false, i1* %2, align 1 - br label %37 - -10: ; preds = %1 - store i32 0, i32* %4, align 4 - br label %11 - -11: ; preds = %33, %10 - %12 = load i32, i32* %4, align 4 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = icmp slt i32 %12, %14 - br i1 %15, label %16, label %36 - -16: ; preds = %11 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - %18 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %17, align 8 - %19 = load i32, i32* %4, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %18, i64 %20 - %22 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %21) #3 - %23 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 2 - %24 = load i32*, i32** %23, align 8 - %25 = load i32, i32* %4, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = sext i32 %28 to i64 - %30 = icmp ne i64 %22, %29 - br i1 %30, label %31, label %32 - -31: ; preds = %16 - store i1 false, i1* %2, align 1 - br label %37 - -32: ; preds = %16 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %4, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %4, align 4 - br label %11, !llvm.loop !4 - -36: ; preds = %11 - store i1 true, i1* %2, align 1 - br label %37 - -37: ; preds = %36, %31, %9 - %38 = load i1, i1* %2, align 1 - ret i1 %38 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferenceable(24) %0) #7 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca %class.Graph, align 8 - %11 = alloca i32, align 4 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %15 = load %class.Graph*, %class.Graph** %3, align 8 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %17 = load i32, i32* %16, align 8 - %18 = zext i32 %17 to i64 - %19 = call i8* @llvm.stacksave() - store i8* %19, i8** %4, align 8 - %20 = alloca i8, i64 %18, align 16 - store i64 %18, i64* %5, align 8 - store i32 0, i32* %6, align 4 - br label %21 - -21: ; preds = %30, %1 - %22 = load i32, i32* %6, align 4 - %23 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %24 = load i32, i32* %23, align 8 - %25 = icmp slt i32 %22, %24 - br i1 %25, label %26, label %33 - -26: ; preds = %21 - %27 = load i32, i32* %6, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i8, i8* %20, i64 %28 - store i8 0, i8* %29, align 1 - br label %30 - -30: ; preds = %26 - %31 = load i32, i32* %6, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %6, align 4 - br label %21, !llvm.loop !5 - -33: ; preds = %21 - store i32 0, i32* %7, align 4 - br label %34 - -34: ; preds = %49, %33 - %35 = load i32, i32* %7, align 4 - %36 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %37 = load i32, i32* %36, align 8 - %38 = icmp slt i32 %35, %37 - br i1 %38, label %39, label %52 - -39: ; preds = %34 - %40 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %41 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %40, align 8 - %42 = load i32, i32* %7, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %41, i64 %43 - %45 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %44) #3 - %46 = icmp ugt i64 %45, 0 - br i1 %46, label %47, label %48 - -47: ; preds = %39 - br label %52 - -48: ; preds = %39 - br label %49 - -49: ; preds = %48 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 - br label %34, !llvm.loop !6 - -52: ; preds = %47, %34 - %53 = load i32, i32* %7, align 4 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %15, i32 %53, i8* %20) - store i32 0, i32* %8, align 4 - br label %54 - -54: ; preds = %77, %52 - %55 = load i32, i32* %8, align 4 - %56 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %57 = load i32, i32* %56, align 8 - %58 = icmp slt i32 %55, %57 - br i1 %58, label %59, label %80 - -59: ; preds = %54 - %60 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %61 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %60, align 8 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %61, i64 %63 - %65 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %64) #3 - %66 = icmp ugt i64 %65, 0 - br i1 %66, label %67, label %76 - -67: ; preds = %59 - %68 = load i32, i32* %8, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i8, i8* %20, i64 %69 - %71 = load i8, i8* %70, align 1 - %72 = trunc i8 %71 to i1 - %73 = zext i1 %72 to i32 - %74 = icmp eq i32 %73, 0 - br i1 %74, label %75, label %76 - -75: ; preds = %67 - store i1 false, i1* %2, align 1 - store i32 1, i32* %9, align 4 - br label %128 - -76: ; preds = %67, %59 - br label %77 - -77: ; preds = %76 - %78 = load i32, i32* %8, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %8, align 4 - br label %54, !llvm.loop !7 - -80: ; preds = %54 - call void @_ZN5Graph12getTransposeEv(%class.Graph* sret(%class.Graph) align 8 %10, %class.Graph* nonnull dereferenceable(24) %15) - store i32 0, i32* %11, align 4 - br label %81 - -81: ; preds = %90, %80 - %82 = load i32, i32* %11, align 4 - %83 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %84 = load i32, i32* %83, align 8 - %85 = icmp slt i32 %82, %84 - br i1 %85, label %86, label %93 - -86: ; preds = %81 - %87 = load i32, i32* %11, align 4 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i8, i8* %20, i64 %88 - store i8 0, i8* %89, align 1 - br label %90 - -90: ; preds = %86 - %91 = load i32, i32* %11, align 4 - %92 = add nsw i32 %91, 1 - store i32 %92, i32* %11, align 4 - br label %81, !llvm.loop !8 - -93: ; preds = %81 - %94 = load i32, i32* %7, align 4 - invoke void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %10, i32 %94, i8* %20) - to label %95 unwind label %118 - -95: ; preds = %93 - store i32 0, i32* %14, align 4 - br label %96 - -96: ; preds = %123, %95 - %97 = load i32, i32* %14, align 4 - %98 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 0 - %99 = load i32, i32* %98, align 8 - %100 = icmp slt i32 %97, %99 - br i1 %100, label %101, label %126 - -101: ; preds = %96 - %102 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %103 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %102, align 8 - %104 = load i32, i32* %14, align 4 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %103, i64 %105 - %107 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %106) #3 - %108 = icmp ugt i64 %107, 0 - br i1 %108, label %109, label %122 - -109: ; preds = %101 - %110 = load i32, i32* %14, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds i8, i8* %20, i64 %111 - %113 = load i8, i8* %112, align 1 - %114 = trunc i8 %113 to i1 - %115 = zext i1 %114 to i32 - %116 = icmp eq i32 %115, 0 - br i1 %116, label %117, label %122 - -117: ; preds = %109 - store i1 false, i1* %2, align 1 - store i32 1, i32* %9, align 4 - br label %127 - -118: ; preds = %93 - %119 = landingpad { i8*, i32 } - cleanup - %120 = extractvalue { i8*, i32 } %119, 0 - store i8* %120, i8** %12, align 8 - %121 = extractvalue { i8*, i32 } %119, 1 - store i32 %121, i32* %13, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %10) #3 - br label %131 - -122: ; preds = %109, %101 - br label %123 - -123: ; preds = %122 - %124 = load i32, i32* %14, align 4 - %125 = add nsw i32 %124, 1 - store i32 %125, i32* %14, align 4 - br label %96, !llvm.loop !9 - -126: ; preds = %96 - store i1 true, i1* %2, align 1 - store i32 1, i32* %9, align 4 - br label %127 - -127: ; preds = %126, %117 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %10) #3 - br label %128 - -128: ; preds = %127, %75 - %129 = load i8*, i8** %4, align 8 - call void @llvm.stackrestore(i8* %129) - %130 = load i1, i1* %2, align 1 - ret i1 %130 - -131: ; preds = %118 - %132 = load i8*, i8** %12, align 8 - %133 = load i32, i32* %13, align 4 - %134 = insertvalue { i8*, i32 } undef, i8* %132, 0 - %135 = insertvalue { i8*, i32 } %134, i32 %133, 1 - resume { i8*, i32 } %135 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = invoke i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %3) - to label %5 unwind label %6 - -5: ; preds = %1 - ret i64 %4 - -6: ; preds = %1 - %7 = landingpad { i8*, i32 } - catch i8* null - %8 = extractvalue { i8*, i32 } %7, 0 - call void @__clang_call_terminate(i8* %8) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %0, i32 %1, i8* %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %15 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %15, align 8 - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %16, i64 %18 - %20 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %19) #3 - %21 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %20, %"struct.std::__detail::_List_node_base"** %21, align 8 - %22 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %23 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - br label %24 - -24: ; preds = %46, %3 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %26 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %25, align 8 - %27 = load i32, i32* %5, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 %28 - %30 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %29) #3 - %31 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %9, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %30, %"struct.std::__detail::_List_node_base"** %31, align 8 - %32 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9) #3 - br i1 %32, label %33, label %48 - -33: ; preds = %24 - %34 = load i8*, i8** %6, align 8 - %35 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %36 = load i32, i32* %35, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %34, i64 %37 - %39 = load i8, i8* %38, align 1 - %40 = trunc i8 %39 to i1 - br i1 %40, label %45, label %41 - -41: ; preds = %33 - %42 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %43 = load i32, i32* %42, align 4 - %44 = load i8*, i8** %6, align 8 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %10, i32 %43, i8* %44) - br label %45 - -45: ; preds = %41, %33 - br label %46 - -46: ; preds = %45 - %47 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - br label %24, !llvm.loop !10 - -48: ; preds = %24 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%class.Graph) align 8 %0, %class.Graph* nonnull dereferenceable(24) %1) #7 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i8*, align 8 - %4 = alloca %class.Graph*, align 8 - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = bitcast %class.Graph* %0 to i8* - store i8* %12, i8** %3, align 8 - store %class.Graph* %1, %class.Graph** %4, align 8 - %13 = load %class.Graph*, %class.Graph** %4, align 8 - store i1 false, i1* %5, align 1 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(24) %0, i32 %15) - store i32 0, i32* %6, align 4 - br label %16 - -16: ; preds = %62, %2 - %17 = load i32, i32* %6, align 4 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 0 - %19 = load i32, i32* %18, align 8 - %20 = icmp slt i32 %17, %19 - br i1 %20, label %21, label %65 - -21: ; preds = %16 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %22 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %23 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %22, align 8 - %24 = load i32, i32* %6, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %23, i64 %25 - %27 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %28 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %27, %"struct.std::__detail::_List_node_base"** %28, align 8 - %29 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %30 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - br label %31 - -31: ; preds = %55, %21 - %32 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %33 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %32, align 8 - %34 = load i32, i32* %6, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %33, i64 %35 - %37 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %36) #3 - %38 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %9, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %37, %"struct.std::__detail::_List_node_base"** %38, align 8 - %39 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9) #3 - br i1 %39, label %40, label %61 - -40: ; preds = %31 - %41 = getelementptr inbounds %class.Graph, %class.Graph* %0, i32 0, i32 1 - %42 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %41, align 8 - %43 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %44 = load i32, i32* %43, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %42, i64 %45 - invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %46, i32* nonnull align 4 dereferenceable(4) %6) - to label %47 unwind label %57 - -47: ; preds = %40 - %48 = getelementptr inbounds %class.Graph, %class.Graph* %0, i32 0, i32 2 - %49 = load i32*, i32** %48, align 8 - %50 = load i32, i32* %6, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds i32, i32* %49, i64 %51 - %53 = load i32, i32* %52, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %52, align 4 - br label %55 - -55: ; preds = %47 - %56 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - br label %31, !llvm.loop !11 - -57: ; preds = %40 - %58 = landingpad { i8*, i32 } - cleanup - %59 = extractvalue { i8*, i32 } %58, 0 - store i8* %59, i8** %10, align 8 - %60 = extractvalue { i8*, i32 } %58, 1 - store i32 %60, i32* %11, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %0) #3 - br label %69 - -61: ; preds = %31 - br label %62 - -62: ; preds = %61 - %63 = load i32, i32* %6, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %6, align 4 - br label %16, !llvm.loop !12 - -65: ; preds = %16 - store i1 true, i1* %5, align 1 - %66 = load i1, i1* %5, align 1 - br i1 %66, label %68, label %67 - -67: ; preds = %65 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %0) #3 - br label %68 - -68: ; preds = %67, %65 - ret void - -69: ; preds = %57 - %70 = load i8*, i8** %10, align 8 - %71 = load i32, i32* %11, align 4 - %72 = insertvalue { i8*, i32 } undef, i8* %70, 0 - %73 = insertvalue { i8*, i32 } %72, i32 %71, 1 - resume { i8*, i32 } %73 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %16) #3 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* %9) #17 - br label %19 - -19: ; preds = %18, %1 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 2 - %21 = load i32*, i32** %20, align 8 - %22 = icmp eq i32* %21, null - br i1 %22, label %25, label %23 - -23: ; preds = %19 - %24 = bitcast i32* %21 to i8* - call void @_ZdaPv(i8* %24) #17 - br label %25 - -25: ; preds = %23, %19 - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #10 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #10 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #11 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(24) %2, i32 5) - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 1, i32 0) - to label %5 unwind label %16 - -5: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 0, i32 2) - to label %6 unwind label %16 - -6: ; preds = %5 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 2, i32 1) - to label %7 unwind label %16 - -7: ; preds = %6 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 0, i32 3) - to label %8 unwind label %16 - -8: ; preds = %7 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 3, i32 4) - to label %9 unwind label %16 - -9: ; preds = %8 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 4, i32 0) - to label %10 unwind label %16 - -10: ; preds = %9 - %11 = invoke zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* nonnull dereferenceable(24) %2) - to label %12 unwind label %16 - -12: ; preds = %10 - br i1 %11, label %13, label %20 - -13: ; preds = %12 - %14 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([35 x i8], [35 x i8]* @.str, i64 0, i64 0)) - to label %15 unwind label %16 - -15: ; preds = %13 - br label %23 - -16: ; preds = %20, %13, %10, %9, %8, %7, %6, %5, %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %3, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %4, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %2) #3 - br label %25 - -20: ; preds = %12 - %21 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([39 x i8], [39 x i8]* @.str.1, i64 0, i64 0)) - to label %22 unwind label %16 - -22: ; preds = %20 - br label %23 - -23: ; preds = %22, %15 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %2) #3 - %24 = load i32, i32* %1, align 4 - ret i32 %24 - -25: ; preds = %16 - %26 = load i8*, i8** %3, align 8 - %27 = load i32, i32* %4, align 4 - %28 = insertvalue { i8*, i32 } undef, i8* %26, 0 - %29 = insertvalue { i8*, i32 } %28, i32 %27, 1 - resume { i8*, i32 } %29 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %0, i32 %1, i32 %2) #7 comdat align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %14, i64 %16 - %18 = load i32, i32* %17, align 4 - %19 = add nsw i32 %18, 1 - store i32 %19, i32* %17, align 4 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %3) #3 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %3 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %6 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::__detail::_List_node_header"* %8 to %"struct.std::__detail::_List_node_base"* - %10 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %9, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - store %"struct.std::__detail::_List_node_base"* %11, %"struct.std::__detail::_List_node_base"** %3, align 8 - br label %12 - -12: ; preds = %27, %1 - %13 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %14 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %15 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::__detail::_List_node_header"* %15 to %"struct.std::__detail::_List_node_base"* - %17 = icmp ne %"struct.std::__detail::_List_node_base"* %13, %16 - br i1 %17, label %18, label %31 - -18: ; preds = %12 - %19 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %20 = bitcast %"struct.std::__detail::_List_node_base"* %19 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %20, %"struct.std::_List_node"** %4, align 8 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %22 = bitcast %"struct.std::_List_node"* %21 to %"struct.std::__detail::_List_node_base"* - %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %22, i32 0, i32 0 - %24 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %23, align 8 - store %"struct.std::__detail::_List_node_base"* %24, %"struct.std::__detail::_List_node_base"** %3, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %26 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %25) - to label %27 unwind label %32 - -27: ; preds = %18 - store i32* %26, i32** %5, align 8 - %28 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6) #3 - %29 = load i32*, i32** %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %28, i32* %29) #3 - %30 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6, %"struct.std::_List_node"* %30) #3 - br label %12, !llvm.loop !13 - -31: ; preds = %12 - ret void - -32: ; preds = %18 - %33 = landingpad { i8*, i32 } - catch i8* null - %34 = extractvalue { i8*, i32 } %33, 0 - call void @__clang_call_terminate(i8* %34) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, %"struct.std::_List_node"* %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* %8, i64 1) - to label %9 unwind label %10 - -9: ; preds = %2 - ret void - -10: ; preds = %2 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %9 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %10 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %9) - store %"struct.std::_List_node"* %10, %"struct.std::_List_node"** %5, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %12 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) #3 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* %14) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %17 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %16) - %18 = load i32*, i32** %4, align 8 - %19 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %18) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, i32* %17, i32* nonnull align 4 dereferenceable(4) %19) #3 - %20 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #19 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - %5 = call i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %4, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %5, i32 0, i32 1 - %7 = load i64, i64* %6, align 8 - ret i64 %7 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_euler_circuit_directed_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { nofree nosync nounwind willreturn } -attributes #11 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noinline noreturn nounwind } -attributes #14 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { noreturn nounwind } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } -attributes #19 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} -!13 = distinct !{!13, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll deleted file mode 100644 index a78e1813..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll +++ /dev/null @@ -1,1588 +0,0 @@ -; ModuleID = 'PE-benchmarks/eulerian-path-and-circuit.cpp' -source_filename = "PE-benchmarks/eulerian-path-and-circuit.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE4sizeEv = comdat any - -$_ZN5GraphC2Ei = comdat any - -$_ZN5GraphD2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv = comdat any - -$_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [23 x i8] c"graph is not Eulerian\0A\00", align 1 -@.str.1 = private unnamed_addr constant [24 x i8] c"graph has a Euler path\0A\00", align 1 -@.str.2 = private unnamed_addr constant [25 x i8] c"graph has a Euler cycle\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_eulerian_path_and_circuit.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #4 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, i32* nonnull align 4 dereferenceable(4) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2) #4 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %15 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %15, align 8 - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %16, i64 %18 - %20 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %19) #3 - %21 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %20, %"struct.std::__detail::_List_node_base"** %21, align 8 - %22 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %23 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - br label %24 - -24: ; preds = %46, %3 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %26 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %25, align 8 - %27 = load i32, i32* %5, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 %28 - %30 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %29) #3 - %31 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %9, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %30, %"struct.std::__detail::_List_node_base"** %31, align 8 - %32 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9) #3 - br i1 %32, label %33, label %48 - -33: ; preds = %24 - %34 = load i8*, i8** %6, align 8 - %35 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %36 = load i32, i32* %35, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %34, i64 %37 - %39 = load i8, i8* %38, align 1 - %40 = trunc i8 %39 to i1 - br i1 %40, label %45, label %41 - -41: ; preds = %33 - %42 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %43 = load i32, i32* %42, align 4 - %44 = load i8*, i8** %6, align 8 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %10, i32 %43, i8* %44) - br label %45 - -45: ; preds = %41, %33 - br label %46 - -46: ; preds = %45 - %47 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - br label %24, !llvm.loop !2 - -48: ; preds = %24 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #6 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dereferenceable(16) %0) #4 align 2 { - %2 = alloca i1, align 1 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - %11 = zext i32 %10 to i64 - %12 = call i8* @llvm.stacksave() - store i8* %12, i8** %4, align 8 - %13 = alloca i8, i64 %11, align 16 - store i64 %11, i64* %5, align 8 - store i32 0, i32* %6, align 4 - br label %14 - -14: ; preds = %23, %1 - %15 = load i32, i32* %6, align 4 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %17 = load i32, i32* %16, align 8 - %18 = icmp slt i32 %15, %17 - br i1 %18, label %19, label %26 - -19: ; preds = %14 - %20 = load i32, i32* %6, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i8, i8* %13, i64 %21 - store i8 0, i8* %22, align 1 - br label %23 - -23: ; preds = %19 - %24 = load i32, i32* %6, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %6, align 4 - br label %14, !llvm.loop !4 - -26: ; preds = %14 - store i32 0, i32* %6, align 4 - br label %27 - -27: ; preds = %42, %26 - %28 = load i32, i32* %6, align 4 - %29 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %30 = load i32, i32* %29, align 8 - %31 = icmp slt i32 %28, %30 - br i1 %31, label %32, label %45 - -32: ; preds = %27 - %33 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %34 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %33, align 8 - %35 = load i32, i32* %6, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %34, i64 %36 - %38 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %37) #3 - %39 = icmp ne i64 %38, 0 - br i1 %39, label %40, label %41 - -40: ; preds = %32 - br label %45 - -41: ; preds = %32 - br label %42 - -42: ; preds = %41 - %43 = load i32, i32* %6, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %6, align 4 - br label %27, !llvm.loop !5 - -45: ; preds = %40, %27 - %46 = load i32, i32* %6, align 4 - %47 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %48 = load i32, i32* %47, align 8 - %49 = icmp eq i32 %46, %48 - br i1 %49, label %50, label %51 - -50: ; preds = %45 - store i1 true, i1* %2, align 1 - store i32 1, i32* %7, align 4 - br label %80 - -51: ; preds = %45 - %52 = load i32, i32* %6, align 4 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %8, i32 %52, i8* %13) - store i32 0, i32* %6, align 4 - br label %53 - -53: ; preds = %76, %51 - %54 = load i32, i32* %6, align 4 - %55 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %56 = load i32, i32* %55, align 8 - %57 = icmp slt i32 %54, %56 - br i1 %57, label %58, label %79 - -58: ; preds = %53 - %59 = load i32, i32* %6, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i8, i8* %13, i64 %60 - %62 = load i8, i8* %61, align 1 - %63 = trunc i8 %62 to i1 - %64 = zext i1 %63 to i32 - %65 = icmp eq i32 %64, 0 - br i1 %65, label %66, label %75 - -66: ; preds = %58 - %67 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %68 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %67, align 8 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %68, i64 %70 - %72 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %71) #3 - %73 = icmp ugt i64 %72, 0 - br i1 %73, label %74, label %75 - -74: ; preds = %66 - store i1 false, i1* %2, align 1 - store i32 1, i32* %7, align 4 - br label %80 - -75: ; preds = %66, %58 - br label %76 - -76: ; preds = %75 - %77 = load i32, i32* %6, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %6, align 4 - br label %53, !llvm.loop !6 - -79: ; preds = %53 - store i1 true, i1* %2, align 1 - store i32 1, i32* %7, align 4 - br label %80 - -80: ; preds = %79, %74, %50 - %81 = load i8*, i8** %4, align 8 - call void @llvm.stackrestore(i8* %81) - %82 = load i1, i1* %2, align 1 - ret i1 %82 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #8 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = invoke i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %3) - to label %5 unwind label %6 - -5: ; preds = %1 - ret i64 %4 - -6: ; preds = %1 - %7 = landingpad { i8*, i32 } - catch i8* null - %8 = extractvalue { i8*, i32 } %7, 0 - call void @__clang_call_terminate(i8* %8) #15 - unreachable -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #8 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_ZN5Graph10isEulerianEv(%class.Graph* nonnull dereferenceable(16) %0) #4 align 2 { - %2 = alloca i32, align 4 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %6 = load %class.Graph*, %class.Graph** %3, align 8 - %7 = call zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dereferenceable(16) %6) - %8 = zext i1 %7 to i32 - %9 = icmp eq i32 %8, 0 - br i1 %9, label %10, label %11 - -10: ; preds = %1 - store i32 0, i32* %2, align 4 - br label %42 - -11: ; preds = %1 - store i32 0, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %12 - -12: ; preds = %30, %11 - %13 = load i32, i32* %5, align 4 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 0 - %15 = load i32, i32* %14, align 8 - %16 = icmp slt i32 %13, %15 - br i1 %16, label %17, label %33 - -17: ; preds = %12 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %6, i32 0, i32 1 - %19 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %18, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %19, i64 %21 - %23 = call i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %22) #3 - %24 = and i64 %23, 1 - %25 = icmp ne i64 %24, 0 - br i1 %25, label %26, label %29 - -26: ; preds = %17 - %27 = load i32, i32* %4, align 4 - %28 = add nsw i32 %27, 1 - store i32 %28, i32* %4, align 4 - br label %29 - -29: ; preds = %26, %17 - br label %30 - -30: ; preds = %29 - %31 = load i32, i32* %5, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %5, align 4 - br label %12, !llvm.loop !7 - -33: ; preds = %12 - %34 = load i32, i32* %4, align 4 - %35 = icmp sgt i32 %34, 2 - br i1 %35, label %36, label %37 - -36: ; preds = %33 - store i32 0, i32* %2, align 4 - br label %42 - -37: ; preds = %33 - %38 = load i32, i32* %4, align 4 - %39 = icmp ne i32 %38, 0 - %40 = zext i1 %39 to i64 - %41 = select i1 %39, i32 1, i32 2 - store i32 %41, i32* %2, align 4 - br label %42 - -42: ; preds = %37, %36, %10 - %43 = load i32, i32* %2, align 4 - ret i32 %43 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %0) #4 { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %4 = load %class.Graph*, %class.Graph** %2, align 8 - %5 = call i32 @_ZN5Graph10isEulerianEv(%class.Graph* nonnull dereferenceable(16) %4) - store i32 %5, i32* %3, align 4 - %6 = load i32, i32* %3, align 4 - %7 = icmp eq i32 %6, 0 - br i1 %7, label %8, label %10 - -8: ; preds = %1 - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str, i64 0, i64 0)) - br label %18 - -10: ; preds = %1 - %11 = load i32, i32* %3, align 4 - %12 = icmp eq i32 %11, 1 - br i1 %12, label %13, label %15 - -13: ; preds = %10 - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.1, i64 0, i64 0)) - br label %17 - -15: ; preds = %10 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([25 x i8], [25 x i8]* @.str.2, i64 0, i64 0)) - br label %17 - -17: ; preds = %15, %13 - br label %18 - -18: ; preds = %17, %8 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %class.Graph, align 8 - %6 = alloca %class.Graph, align 8 - %7 = alloca %class.Graph, align 8 - %8 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 5) - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 0) - to label %9 unwind label %39 - -9: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - to label %10 unwind label %39 - -10: ; preds = %9 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 1) - to label %11 unwind label %39 - -11: ; preds = %10 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 3) - to label %12 unwind label %39 - -12: ; preds = %11 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - to label %13 unwind label %39 - -13: ; preds = %12 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %2) - to label %14 unwind label %39 - -14: ; preds = %13 - invoke void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %5, i32 5) - to label %15 unwind label %39 - -15: ; preds = %14 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 0) - to label %16 unwind label %43 - -16: ; preds = %15 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 2) - to label %17 unwind label %43 - -17: ; preds = %16 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 1) - to label %18 unwind label %43 - -18: ; preds = %17 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 3) - to label %19 unwind label %43 - -19: ; preds = %18 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 3, i32 4) - to label %20 unwind label %43 - -20: ; preds = %19 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 4, i32 0) - to label %21 unwind label %43 - -21: ; preds = %20 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %5) - to label %22 unwind label %43 - -22: ; preds = %21 - invoke void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %6, i32 5) - to label %23 unwind label %43 - -23: ; preds = %22 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 1, i32 0) - to label %24 unwind label %47 - -24: ; preds = %23 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 0, i32 2) - to label %25 unwind label %47 - -25: ; preds = %24 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 2, i32 1) - to label %26 unwind label %47 - -26: ; preds = %25 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 0, i32 3) - to label %27 unwind label %47 - -27: ; preds = %26 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 3, i32 4) - to label %28 unwind label %47 - -28: ; preds = %27 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 1, i32 3) - to label %29 unwind label %47 - -29: ; preds = %28 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %6) - to label %30 unwind label %47 - -30: ; preds = %29 - invoke void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %7, i32 3) - to label %31 unwind label %47 - -31: ; preds = %30 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %7, i32 0, i32 1) - to label %32 unwind label %51 - -32: ; preds = %31 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %7, i32 1, i32 2) - to label %33 unwind label %51 - -33: ; preds = %32 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %7, i32 2, i32 0) - to label %34 unwind label %51 - -34: ; preds = %33 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %7) - to label %35 unwind label %51 - -35: ; preds = %34 - invoke void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %8, i32 3) - to label %36 unwind label %51 - -36: ; preds = %35 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %8) - to label %37 unwind label %55 - -37: ; preds = %36 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %8) #3 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %7) #3 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %6) #3 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %5) #3 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 - %38 = load i32, i32* %1, align 4 - ret i32 %38 - -39: ; preds = %14, %13, %12, %11, %10, %9, %0 - %40 = landingpad { i8*, i32 } - cleanup - %41 = extractvalue { i8*, i32 } %40, 0 - store i8* %41, i8** %3, align 8 - %42 = extractvalue { i8*, i32 } %40, 1 - store i32 %42, i32* %4, align 4 - br label %62 - -43: ; preds = %22, %21, %20, %19, %18, %17, %16, %15 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %3, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %4, align 4 - br label %61 - -47: ; preds = %30, %29, %28, %27, %26, %25, %24, %23 - %48 = landingpad { i8*, i32 } - cleanup - %49 = extractvalue { i8*, i32 } %48, 0 - store i8* %49, i8** %3, align 8 - %50 = extractvalue { i8*, i32 } %48, 1 - store i32 %50, i32* %4, align 4 - br label %60 - -51: ; preds = %35, %34, %33, %32, %31 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %3, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %4, align 4 - br label %59 - -55: ; preds = %36 - %56 = landingpad { i8*, i32 } - cleanup - %57 = extractvalue { i8*, i32 } %56, 0 - store i8* %57, i8** %3, align 8 - %58 = extractvalue { i8*, i32 } %56, 1 - store i32 %58, i32* %4, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %8) #3 - br label %59 - -59: ; preds = %55, %51 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %7) #3 - br label %60 - -60: ; preds = %59, %47 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %6) #3 - br label %61 - -61: ; preds = %60, %43 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %5) #3 - br label %62 - -62: ; preds = %61, %39 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 - br label %63 - -63: ; preds = %62 - %64 = load i8*, i8** %3, align 8 - %65 = load i32, i32* %4, align 4 - %66 = insertvalue { i8*, i32 } undef, i8* %64, 0 - %67 = insertvalue { i8*, i32 } %66, i32 %65, 1 - resume { i8*, i32 } %67 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 comdat align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #16 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %16) #3 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* %9) #17 - br label %19 - -19: ; preds = %18, %1 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #10 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #10 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #11 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %3) #3 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %3 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %6 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::__detail::_List_node_header"* %8 to %"struct.std::__detail::_List_node_base"* - %10 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %9, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - store %"struct.std::__detail::_List_node_base"* %11, %"struct.std::__detail::_List_node_base"** %3, align 8 - br label %12 - -12: ; preds = %27, %1 - %13 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %14 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %15 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::__detail::_List_node_header"* %15 to %"struct.std::__detail::_List_node_base"* - %17 = icmp ne %"struct.std::__detail::_List_node_base"* %13, %16 - br i1 %17, label %18, label %31 - -18: ; preds = %12 - %19 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %20 = bitcast %"struct.std::__detail::_List_node_base"* %19 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %20, %"struct.std::_List_node"** %4, align 8 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %22 = bitcast %"struct.std::_List_node"* %21 to %"struct.std::__detail::_List_node_base"* - %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %22, i32 0, i32 0 - %24 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %23, align 8 - store %"struct.std::__detail::_List_node_base"* %24, %"struct.std::__detail::_List_node_base"** %3, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %26 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %25) - to label %27 unwind label %32 - -27: ; preds = %18 - store i32* %26, i32** %5, align 8 - %28 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6) #3 - %29 = load i32*, i32** %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %28, i32* %29) #3 - %30 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6, %"struct.std::_List_node"* %30) #3 - br label %12, !llvm.loop !8 - -31: ; preds = %12 - ret void - -32: ; preds = %18 - %33 = landingpad { i8*, i32 } - catch i8* null - %34 = extractvalue { i8*, i32 } %33, 0 - call void @__clang_call_terminate(i8* %34) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1) #6 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, %"struct.std::_List_node"* %1) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* %8, i64 1) - to label %9 unwind label %10 - -9: ; preds = %2 - ret void - -10: ; preds = %2 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #15 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #6 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #6 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1) #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #5 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %9 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %10 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %9) - store %"struct.std::_List_node"* %10, %"struct.std::_List_node"** %5, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %12 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) #3 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* %14) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %17 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %16) - %18 = load i32*, i32** %4, align 8 - %19 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %18) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, i32* %17, i32* nonnull align 4 dereferenceable(4) %19) #3 - %20 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #6 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #6 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #5 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #6 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #5 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #19 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #11 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #6 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #5 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - %5 = call i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %4, i32 0, i32 0 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %5, i32 0, i32 1 - %7 = load i64, i64* %6, align 8 - ret i64 %7 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_eulerian_path_and_circuit.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } -attributes #8 = { nofree nosync nounwind willreturn } -attributes #9 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #11 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noinline noreturn nounwind } -attributes #14 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { noreturn nounwind } -attributes #16 = { builtin allocsize(0) } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn } -attributes #19 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll deleted file mode 100644 index 023f7d30..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll +++ /dev/null @@ -1,255 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-common-elements-three-sorted-arrays.cpp' -source_filename = "PE-benchmarks/find-common-elements-three-sorted-arrays.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@__const.main.ar1 = private unnamed_addr constant [6 x i32] [i32 1, i32 5, i32 10, i32 20, i32 40, i32 80], align 16 -@__const.main.ar2 = private unnamed_addr constant [5 x i32] [i32 6, i32 7, i32 20, i32 80, i32 100], align 16 -@__const.main.ar3 = private unnamed_addr constant [8 x i32] [i32 3, i32 4, i32 15, i32 20, i32 30, i32 70, i32 80, i32 120], align 16 -@.str.1 = private unnamed_addr constant [21 x i8] c"Common Elements are \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10findCommonPiS_S_iii(i32* %0, i32* %1, i32* %2, i32 %3, i32 %4, i32 %5) #4 { - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %7, align 8 - store i32* %1, i32** %8, align 8 - store i32* %2, i32** %9, align 8 - store i32 %3, i32* %10, align 4 - store i32 %4, i32* %11, align 4 - store i32 %5, i32* %12, align 4 - store i32 0, i32* %13, align 4 - store i32 0, i32* %14, align 4 - store i32 0, i32* %15, align 4 - br label %16 - -16: ; preds = %103, %6 - %17 = load i32, i32* %13, align 4 - %18 = load i32, i32* %10, align 4 - %19 = icmp slt i32 %17, %18 - br i1 %19, label %20, label %28 - -20: ; preds = %16 - %21 = load i32, i32* %14, align 4 - %22 = load i32, i32* %11, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %28 - -24: ; preds = %20 - %25 = load i32, i32* %15, align 4 - %26 = load i32, i32* %12, align 4 - %27 = icmp slt i32 %25, %26 - br label %28 - -28: ; preds = %24, %20, %16 - %29 = phi i1 [ false, %20 ], [ false, %16 ], [ %27, %24 ] - br i1 %29, label %30, label %104 - -30: ; preds = %28 - %31 = load i32*, i32** %7, align 8 - %32 = load i32, i32* %13, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = load i32*, i32** %8, align 8 - %37 = load i32, i32* %14, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = icmp eq i32 %35, %40 - br i1 %41, label %42, label %68 - -42: ; preds = %30 - %43 = load i32*, i32** %8, align 8 - %44 = load i32, i32* %14, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = load i32*, i32** %9, align 8 - %49 = load i32, i32* %15, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = icmp eq i32 %47, %52 - br i1 %53, label %54, label %68 - -54: ; preds = %42 - %55 = load i32*, i32** %7, align 8 - %56 = load i32, i32* %13, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %59) - %61 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %60, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - %62 = load i32, i32* %13, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %13, align 4 - %64 = load i32, i32* %14, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %14, align 4 - %66 = load i32, i32* %15, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %15, align 4 - br label %103 - -68: ; preds = %42, %30 - %69 = load i32*, i32** %7, align 8 - %70 = load i32, i32* %13, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = load i32*, i32** %8, align 8 - %75 = load i32, i32* %14, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %74, i64 %76 - %78 = load i32, i32* %77, align 4 - %79 = icmp slt i32 %73, %78 - br i1 %79, label %80, label %83 - -80: ; preds = %68 - %81 = load i32, i32* %13, align 4 - %82 = add nsw i32 %81, 1 - store i32 %82, i32* %13, align 4 - br label %102 - -83: ; preds = %68 - %84 = load i32*, i32** %8, align 8 - %85 = load i32, i32* %14, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %84, i64 %86 - %88 = load i32, i32* %87, align 4 - %89 = load i32*, i32** %9, align 8 - %90 = load i32, i32* %15, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i32, i32* %89, i64 %91 - %93 = load i32, i32* %92, align 4 - %94 = icmp slt i32 %88, %93 - br i1 %94, label %95, label %98 - -95: ; preds = %83 - %96 = load i32, i32* %14, align 4 - %97 = add nsw i32 %96, 1 - store i32 %97, i32* %14, align 4 - br label %101 - -98: ; preds = %83 - %99 = load i32, i32* %15, align 4 - %100 = add nsw i32 %99, 1 - store i32 %100, i32* %15, align 4 - br label %101 - -101: ; preds = %98, %95 - br label %102 - -102: ; preds = %101, %80 - br label %103 - -103: ; preds = %102, %54 - br label %16, !llvm.loop !2 - -104: ; preds = %28 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca [5 x i32], align 16 - %4 = alloca [8 x i32], align 16 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %8 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %8, i8* align 16 bitcast ([6 x i32]* @__const.main.ar1 to i8*), i64 24, i1 false) - %9 = bitcast [5 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %9, i8* align 16 bitcast ([5 x i32]* @__const.main.ar2 to i8*), i64 20, i1 false) - %10 = bitcast [8 x i32]* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %10, i8* align 16 bitcast ([8 x i32]* @__const.main.ar3 to i8*), i64 32, i1 false) - store i32 6, i32* %5, align 4 - store i32 5, i32* %6, align 4 - store i32 8, i32* %7, align 4 - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str.1, i64 0, i64 0)) - %12 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %13 = getelementptr inbounds [5 x i32], [5 x i32]* %3, i64 0, i64 0 - %14 = getelementptr inbounds [8 x i32], [8 x i32]* %4, i64 0, i64 0 - %15 = load i32, i32* %5, align 4 - %16 = load i32, i32* %6, align 4 - %17 = load i32, i32* %7, align 4 - call void @_Z10findCommonPiS_S_iii(i32* %12, i32* %13, i32* %14, i32 %15, i32 %16, i32 %17) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-k-closest-elements-given-value.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/find-k-closest-elements-given-value.ll deleted file mode 100644 index cd971d9e..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-k-closest-elements-given-value.ll +++ /dev/null @@ -1,331 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-k-closest-elements-given-value.cpp' -source_filename = "PE-benchmarks/find-k-closest-elements-given-value.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 -@__const.main.arr = private unnamed_addr constant [13 x i32] [i32 12, i32 16, i32 22, i32 30, i32 35, i32 39, i32 42, i32 45, i32 48, i32 50, i32 53, i32 55, i32 56], align 16 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z13findCrossOverPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 { - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %11 = load i32*, i32** %6, align 8 - %12 = load i32, i32* %8, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = load i32, i32* %9, align 4 - %17 = icmp sle i32 %15, %16 - br i1 %17, label %18, label %20 - -18: ; preds = %4 - %19 = load i32, i32* %8, align 4 - store i32 %19, i32* %5, align 4 - br label %75 - -20: ; preds = %4 - %21 = load i32*, i32** %6, align 8 - %22 = load i32, i32* %7, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i32, i32* %21, i64 %23 - %25 = load i32, i32* %24, align 4 - %26 = load i32, i32* %9, align 4 - %27 = icmp sgt i32 %25, %26 - br i1 %27, label %28, label %30 - -28: ; preds = %20 - %29 = load i32, i32* %7, align 4 - store i32 %29, i32* %5, align 4 - br label %75 - -30: ; preds = %20 - %31 = load i32, i32* %7, align 4 - %32 = load i32, i32* %8, align 4 - %33 = add nsw i32 %31, %32 - %34 = sdiv i32 %33, 2 - store i32 %34, i32* %10, align 4 - %35 = load i32*, i32** %6, align 8 - %36 = load i32, i32* %10, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = load i32, i32* %9, align 4 - %41 = icmp sle i32 %39, %40 - br i1 %41, label %42, label %53 - -42: ; preds = %30 - %43 = load i32*, i32** %6, align 8 - %44 = load i32, i32* %10, align 4 - %45 = add nsw i32 %44, 1 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %43, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = load i32, i32* %9, align 4 - %50 = icmp sgt i32 %48, %49 - br i1 %50, label %51, label %53 - -51: ; preds = %42 - %52 = load i32, i32* %10, align 4 - store i32 %52, i32* %5, align 4 - br label %75 - -53: ; preds = %42, %30 - %54 = load i32*, i32** %6, align 8 - %55 = load i32, i32* %10, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - %58 = load i32, i32* %57, align 4 - %59 = load i32, i32* %9, align 4 - %60 = icmp slt i32 %58, %59 - br i1 %60, label %61, label %68 - -61: ; preds = %53 - %62 = load i32*, i32** %6, align 8 - %63 = load i32, i32* %10, align 4 - %64 = add nsw i32 %63, 1 - %65 = load i32, i32* %8, align 4 - %66 = load i32, i32* %9, align 4 - %67 = call i32 @_Z13findCrossOverPiiii(i32* %62, i32 %64, i32 %65, i32 %66) - store i32 %67, i32* %5, align 4 - br label %75 - -68: ; preds = %53 - %69 = load i32*, i32** %6, align 8 - %70 = load i32, i32* %7, align 4 - %71 = load i32, i32* %10, align 4 - %72 = sub nsw i32 %71, 1 - %73 = load i32, i32* %9, align 4 - %74 = call i32 @_Z13findCrossOverPiiii(i32* %69, i32 %70, i32 %72, i32 %73) - store i32 %74, i32* %5, align 4 - br label %75 - -75: ; preds = %68, %61, %51, %28, %18 - %76 = load i32, i32* %5, align 4 - ret i32 %76 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 { - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %12 = load i32*, i32** %5, align 8 - %13 = load i32, i32* %8, align 4 - %14 = sub nsw i32 %13, 1 - %15 = load i32, i32* %6, align 4 - %16 = call i32 @_Z13findCrossOverPiiii(i32* %12, i32 0, i32 %14, i32 %15) - store i32 %16, i32* %9, align 4 - %17 = load i32, i32* %9, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %10, align 4 - store i32 0, i32* %11, align 4 - %19 = load i32*, i32** %5, align 8 - %20 = load i32, i32* %9, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %19, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32, i32* %6, align 4 - %25 = icmp eq i32 %23, %24 - br i1 %25, label %26, label %29 - -26: ; preds = %4 - %27 = load i32, i32* %9, align 4 - %28 = add nsw i32 %27, -1 - store i32 %28, i32* %9, align 4 - br label %29 - -29: ; preds = %26, %4 - br label %30 - -30: ; preds = %75, %29 - %31 = load i32, i32* %9, align 4 - %32 = icmp sge i32 %31, 0 - br i1 %32, label %33, label %41 - -33: ; preds = %30 - %34 = load i32, i32* %10, align 4 - %35 = load i32, i32* %8, align 4 - %36 = icmp slt i32 %34, %35 - br i1 %36, label %37, label %41 - -37: ; preds = %33 - %38 = load i32, i32* %11, align 4 - %39 = load i32, i32* %7, align 4 - %40 = icmp slt i32 %38, %39 - br label %41 - -41: ; preds = %37, %33, %30 - %42 = phi i1 [ false, %33 ], [ false, %30 ], [ %40, %37 ] - br i1 %42, label %43, label %78 - -43: ; preds = %41 - %44 = load i32, i32* %6, align 4 - %45 = load i32*, i32** %5, align 8 - %46 = load i32, i32* %9, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i32, i32* %45, i64 %47 - %49 = load i32, i32* %48, align 4 - %50 = sub nsw i32 %44, %49 - %51 = load i32*, i32** %5, align 8 - %52 = load i32, i32* %10, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %51, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = load i32, i32* %6, align 4 - %57 = sub nsw i32 %55, %56 - %58 = icmp slt i32 %50, %57 - br i1 %58, label %59, label %67 - -59: ; preds = %43 - %60 = load i32*, i32** %5, align 8 - %61 = load i32, i32* %9, align 4 - %62 = add nsw i32 %61, -1 - store i32 %62, i32* %9, align 4 - %63 = sext i32 %61 to i64 - %64 = getelementptr inbounds i32, i32* %60, i64 %63 - %65 = load i32, i32* %64, align 4 - %66 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %65) - br label %75 - -67: ; preds = %43 - %68 = load i32*, i32** %5, align 8 - %69 = load i32, i32* %10, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %10, align 4 - %71 = sext i32 %69 to i64 - %72 = getelementptr inbounds i32, i32* %68, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %73) - br label %75 - -75: ; preds = %67, %59 - %76 = load i32, i32* %11, align 4 - %77 = add nsw i32 %76, 1 - store i32 %77, i32* %11, align 4 - br label %30, !llvm.loop !2 - -78: ; preds = %41 - br label %79 - -79: ; preds = %88, %78 - %80 = load i32, i32* %11, align 4 - %81 = load i32, i32* %7, align 4 - %82 = icmp slt i32 %80, %81 - br i1 %82, label %83, label %86 - -83: ; preds = %79 - %84 = load i32, i32* %9, align 4 - %85 = icmp sge i32 %84, 0 - br label %86 - -86: ; preds = %83, %79 - %87 = phi i1 [ false, %79 ], [ %85, %83 ] - br i1 %87, label %88, label %98 - -88: ; preds = %86 - %89 = load i32*, i32** %5, align 8 - %90 = load i32, i32* %9, align 4 - %91 = add nsw i32 %90, -1 - store i32 %91, i32* %9, align 4 - %92 = sext i32 %90 to i64 - %93 = getelementptr inbounds i32, i32* %89, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %94) - %96 = load i32, i32* %11, align 4 - %97 = add nsw i32 %96, 1 - store i32 %97, i32* %11, align 4 - br label %79, !llvm.loop !4 - -98: ; preds = %86 - br label %99 - -99: ; preds = %109, %98 - %100 = load i32, i32* %11, align 4 - %101 = load i32, i32* %7, align 4 - %102 = icmp slt i32 %100, %101 - br i1 %102, label %103, label %107 - -103: ; preds = %99 - %104 = load i32, i32* %10, align 4 - %105 = load i32, i32* %8, align 4 - %106 = icmp slt i32 %104, %105 - br label %107 - -107: ; preds = %103, %99 - %108 = phi i1 [ false, %99 ], [ %106, %103 ] - br i1 %108, label %109, label %119 - -109: ; preds = %107 - %110 = load i32*, i32** %5, align 8 - %111 = load i32, i32* %10, align 4 - %112 = add nsw i32 %111, 1 - store i32 %112, i32* %10, align 4 - %113 = sext i32 %111 to i64 - %114 = getelementptr inbounds i32, i32* %110, i64 %113 - %115 = load i32, i32* %114, align 4 - %116 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %115) - %117 = load i32, i32* %11, align 4 - %118 = add nsw i32 %117, 1 - store i32 %118, i32* %11, align 4 - br label %99, !llvm.loop !5 - -119: ; preds = %107 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [13 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %6 = bitcast [13 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %6, i8* align 16 bitcast ([13 x i32]* @__const.main.arr to i8*), i64 52, i1 false) - store i32 13, i32* %3, align 4 - store i32 35, i32* %4, align 4 - store i32 4, i32* %5, align 4 - %7 = getelementptr inbounds [13 x i32], [13 x i32]* %2, i64 0, i64 0 - %8 = load i32, i32* %4, align 4 - %9 = load i32, i32* %3, align 4 - call void @_Z13printKclosestPiiii(i32* %7, i32 %8, i32 4, i32 %9) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll deleted file mode 100644 index 6f495e54..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll +++ /dev/null @@ -1,425 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp' -source_filename = "PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@x = dso_local global [8 x i32] [i32 0, i32 1, i32 1, i32 -1, i32 1, i32 0, i32 -1, i32 -1], align 16 -@y = dso_local global [8 x i32] [i32 1, i32 0, i32 1, i32 1, i32 -1, i32 -1, i32 0, i32 -1], align 16 -@dp = dso_local global [3 x [3 x i32]] zeroinitializer, align 16 -@__const.main.mat = private unnamed_addr constant [3 x [3 x i8]] [[3 x i8] c"acd", [3 x i8] c"hba", [3 x i8] c"igf"], align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z7isvalidii(i32 %0, i32 %1) #4 { - %3 = alloca i1, align 1 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %6, 0 - br i1 %7, label %17, label %8 - -8: ; preds = %2 - %9 = load i32, i32* %5, align 4 - %10 = icmp slt i32 %9, 0 - br i1 %10, label %17, label %11 - -11: ; preds = %8 - %12 = load i32, i32* %4, align 4 - %13 = icmp sge i32 %12, 3 - br i1 %13, label %17, label %14 - -14: ; preds = %11 - %15 = load i32, i32* %5, align 4 - %16 = icmp sge i32 %15, 3 - br i1 %16, label %17, label %18 - -17: ; preds = %14, %11, %8, %2 - store i1 false, i1* %3, align 1 - br label %19 - -18: ; preds = %14 - store i1 true, i1* %3, align 1 - br label %19 - -19: ; preds = %18, %17 - %20 = load i1, i1* %3, align 1 - ret i1 %20 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z10isadjacentcc(i8 signext %0, i8 signext %1) #4 { - %3 = alloca i8, align 1 - %4 = alloca i8, align 1 - store i8 %0, i8* %3, align 1 - store i8 %1, i8* %4, align 1 - %5 = load i8, i8* %4, align 1 - %6 = sext i8 %5 to i32 - %7 = load i8, i8* %3, align 1 - %8 = sext i8 %7 to i32 - %9 = sub nsw i32 %6, %8 - %10 = icmp eq i32 %9, 1 - ret i1 %10 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %0, i32 %1, i32 %2, i8 signext %3) #5 { - %5 = alloca i32, align 4 - %6 = alloca [3 x i8]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i8, align 1 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i8 %3, i8* %9, align 1 - %13 = load i32, i32* %7, align 4 - %14 = load i32, i32* %8, align 4 - %15 = call zeroext i1 @_Z7isvalidii(i32 %13, i32 %14) - br i1 %15, label %16, label %27 - -16: ; preds = %4 - %17 = load i8, i8* %9, align 1 - %18 = load [3 x i8]*, [3 x i8]** %6, align 8 - %19 = load i32, i32* %7, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [3 x i8], [3 x i8]* %18, i64 %20 - %22 = load i32, i32* %8, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [3 x i8], [3 x i8]* %21, i64 0, i64 %23 - %25 = load i8, i8* %24, align 1 - %26 = call zeroext i1 @_Z10isadjacentcc(i8 signext %17, i8 signext %25) - br i1 %26, label %28, label %27 - -27: ; preds = %16, %4 - store i32 0, i32* %5, align 4 - br label %86 - -28: ; preds = %16 - %29 = load i32, i32* %7, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* @dp, i64 0, i64 %30 - %32 = load i32, i32* %8, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [3 x i32], [3 x i32]* %31, i64 0, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = icmp ne i32 %35, -1 - br i1 %36, label %37, label %45 - -37: ; preds = %28 - %38 = load i32, i32* %7, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* @dp, i64 0, i64 %39 - %41 = load i32, i32* %8, align 4 - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds [3 x i32], [3 x i32]* %40, i64 0, i64 %42 - %44 = load i32, i32* %43, align 4 - store i32 %44, i32* %5, align 4 - br label %86 - -45: ; preds = %28 - store i32 0, i32* %10, align 4 - store i32 0, i32* %11, align 4 - br label %46 - -46: ; preds = %75, %45 - %47 = load i32, i32* %11, align 4 - %48 = icmp slt i32 %47, 8 - br i1 %48, label %49, label %78 - -49: ; preds = %46 - %50 = load [3 x i8]*, [3 x i8]** %6, align 8 - %51 = load i32, i32* %7, align 4 - %52 = load i32, i32* %11, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [8 x i32], [8 x i32]* @x, i64 0, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = add nsw i32 %51, %55 - %57 = load i32, i32* %8, align 4 - %58 = load i32, i32* %11, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [8 x i32], [8 x i32]* @y, i64 0, i64 %59 - %61 = load i32, i32* %60, align 4 - %62 = add nsw i32 %57, %61 - %63 = load [3 x i8]*, [3 x i8]** %6, align 8 - %64 = load i32, i32* %7, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds [3 x i8], [3 x i8]* %63, i64 %65 - %67 = load i32, i32* %8, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [3 x i8], [3 x i8]* %66, i64 0, i64 %68 - %70 = load i8, i8* %69, align 1 - %71 = call i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %50, i32 %56, i32 %62, i8 signext %70) - %72 = add nsw i32 1, %71 - store i32 %72, i32* %12, align 4 - %73 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %10, i32* nonnull align 4 dereferenceable(4) %12) - %74 = load i32, i32* %73, align 4 - store i32 %74, i32* %10, align 4 - br label %75 - -75: ; preds = %49 - %76 = load i32, i32* %11, align 4 - %77 = add nsw i32 %76, 1 - store i32 %77, i32* %11, align 4 - br label %46, !llvm.loop !2 - -78: ; preds = %46 - %79 = load i32, i32* %10, align 4 - %80 = load i32, i32* %7, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* @dp, i64 0, i64 %81 - %83 = load i32, i32* %8, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [3 x i32], [3 x i32]* %82, i64 0, i64 %84 - store i32 %79, i32* %85, align 4 - store i32 %79, i32* %5, align 4 - br label %86 - -86: ; preds = %78, %37, %27 - %87 = load i32, i32* %5, align 4 - ret i32 %87 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z6getLenPA3_cc([3 x i8]* %0, i8 signext %1) #5 { - %3 = alloca [3 x i8]*, align 8 - %4 = alloca i8, align 1 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %3, align 8 - store i8 %1, i8* %4, align 1 - call void @llvm.memset.p0i8.i64(i8* align 16 bitcast ([3 x [3 x i32]]* @dp to i8*), i8 -1, i64 36, i1 false) - store i32 0, i32* %5, align 4 - store i32 0, i32* %6, align 4 - br label %10 - -10: ; preds = %62, %2 - %11 = load i32, i32* %6, align 4 - %12 = icmp slt i32 %11, 3 - br i1 %12, label %13, label %65 - -13: ; preds = %10 - store i32 0, i32* %7, align 4 - br label %14 - -14: ; preds = %58, %13 - %15 = load i32, i32* %7, align 4 - %16 = icmp slt i32 %15, 3 - br i1 %16, label %17, label %61 - -17: ; preds = %14 - %18 = load [3 x i8]*, [3 x i8]** %3, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [3 x i8], [3 x i8]* %18, i64 %20 - %22 = load i32, i32* %7, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [3 x i8], [3 x i8]* %21, i64 0, i64 %23 - %25 = load i8, i8* %24, align 1 - %26 = sext i8 %25 to i32 - %27 = load i8, i8* %4, align 1 - %28 = sext i8 %27 to i32 - %29 = icmp eq i32 %26, %28 - br i1 %29, label %30, label %57 - -30: ; preds = %17 - store i32 0, i32* %8, align 4 - br label %31 - -31: ; preds = %53, %30 - %32 = load i32, i32* %8, align 4 - %33 = icmp slt i32 %32, 8 - br i1 %33, label %34, label %56 - -34: ; preds = %31 - %35 = load [3 x i8]*, [3 x i8]** %3, align 8 - %36 = load i32, i32* %6, align 4 - %37 = load i32, i32* %8, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds [8 x i32], [8 x i32]* @x, i64 0, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = add nsw i32 %36, %40 - %42 = load i32, i32* %7, align 4 - %43 = load i32, i32* %8, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [8 x i32], [8 x i32]* @y, i64 0, i64 %44 - %46 = load i32, i32* %45, align 4 - %47 = add nsw i32 %42, %46 - %48 = load i8, i8* %4, align 1 - %49 = call i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %35, i32 %41, i32 %47, i8 signext %48) - %50 = add nsw i32 1, %49 - store i32 %50, i32* %9, align 4 - %51 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %5, i32* nonnull align 4 dereferenceable(4) %9) - %52 = load i32, i32* %51, align 4 - store i32 %52, i32* %5, align 4 - br label %53 - -53: ; preds = %34 - %54 = load i32, i32* %8, align 4 - %55 = add nsw i32 %54, 1 - store i32 %55, i32* %8, align 4 - br label %31, !llvm.loop !4 - -56: ; preds = %31 - br label %57 - -57: ; preds = %56, %17 - br label %58 - -58: ; preds = %57 - %59 = load i32, i32* %7, align 4 - %60 = add nsw i32 %59, 1 - store i32 %60, i32* %7, align 4 - br label %14, !llvm.loop !5 - -61: ; preds = %14 - br label %62 - -62: ; preds = %61 - %63 = load i32, i32* %6, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %6, align 4 - br label %10, !llvm.loop !6 - -65: ; preds = %10 - %66 = load i32, i32* %5, align 4 - ret i32 %66 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [3 x [3 x i8]], align 1 - store i32 0, i32* %1, align 4 - %3 = bitcast [3 x [3 x i8]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %3, i8* align 1 getelementptr inbounds ([3 x [3 x i8]], [3 x [3 x i8]]* @__const.main.mat, i32 0, i32 0, i32 0), i64 9, i1 false) - %4 = getelementptr inbounds [3 x [3 x i8]], [3 x [3 x i8]]* %2, i64 0, i64 0 - %5 = call i32 @_Z6getLenPA3_cc([3 x i8]* %4, i8 signext 97) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %8 = getelementptr inbounds [3 x [3 x i8]], [3 x [3 x i8]]* %2, i64 0, i64 0 - %9 = call i32 @_Z6getLenPA3_cc([3 x i8]* %8, i8 signext 101) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %9) - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %10, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %12 = getelementptr inbounds [3 x [3 x i8]], [3 x [3 x i8]]* %2, i64 0, i64 0 - %13 = call i32 @_Z6getLenPA3_cc([3 x i8]* %12, i8 signext 98) - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %13) - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %14, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %16 = getelementptr inbounds [3 x [3 x i8]], [3 x [3 x i8]]* %2, i64 0, i64 0 - %17 = call i32 @_Z6getLenPA3_cc([3 x i8]* %16, i8 signext 102) - %18 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %17) - %19 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %18, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-minimum-number-of-coins-that-make-a-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/find-minimum-number-of-coins-that-make-a-change.ll deleted file mode 100644 index b5b7987d..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-minimum-number-of-coins-that-make-a-change.ll +++ /dev/null @@ -1,242 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp' -source_filename = "PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.coins = private unnamed_addr constant [4 x i32] [i32 9, i32 6, i32 5, i32 1], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [27 x i8] c"Minimum coins required is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z8minCoinsPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %13 = load i32, i32* %6, align 4 - %14 = add nsw i32 %13, 1 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %7, align 8 - %17 = alloca i32, i64 %15, align 16 - store i64 %15, i64* %8, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 0 - store i32 0, i32* %18, align 16 - store i32 1, i32* %9, align 4 - br label %19 - -19: ; preds = %27, %3 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %6, align 4 - %22 = icmp sle i32 %20, %21 - br i1 %22, label %23, label %30 - -23: ; preds = %19 - %24 = load i32, i32* %9, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %17, i64 %25 - store i32 2147483647, i32* %26, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i32, i32* %9, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %9, align 4 - br label %19, !llvm.loop !2 - -30: ; preds = %19 - store i32 1, i32* %10, align 4 - br label %31 - -31: ; preds = %81, %30 - %32 = load i32, i32* %10, align 4 - %33 = load i32, i32* %6, align 4 - %34 = icmp sle i32 %32, %33 - br i1 %34, label %35, label %84 - -35: ; preds = %31 - store i32 0, i32* %11, align 4 - br label %36 - -36: ; preds = %77, %35 - %37 = load i32, i32* %11, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %80 - -40: ; preds = %36 - %41 = load i32*, i32** %4, align 8 - %42 = load i32, i32* %11, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - %46 = load i32, i32* %10, align 4 - %47 = icmp sle i32 %45, %46 - br i1 %47, label %48, label %76 - -48: ; preds = %40 - %49 = load i32, i32* %10, align 4 - %50 = load i32*, i32** %4, align 8 - %51 = load i32, i32* %11, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - %54 = load i32, i32* %53, align 4 - %55 = sub nsw i32 %49, %54 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %17, i64 %56 - %58 = load i32, i32* %57, align 4 - store i32 %58, i32* %12, align 4 - %59 = load i32, i32* %12, align 4 - %60 = icmp ne i32 %59, 2147483647 - br i1 %60, label %61, label %75 - -61: ; preds = %48 - %62 = load i32, i32* %12, align 4 - %63 = add nsw i32 %62, 1 - %64 = load i32, i32* %10, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds i32, i32* %17, i64 %65 - %67 = load i32, i32* %66, align 4 - %68 = icmp slt i32 %63, %67 - br i1 %68, label %69, label %75 - -69: ; preds = %61 - %70 = load i32, i32* %12, align 4 - %71 = add nsw i32 %70, 1 - %72 = load i32, i32* %10, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i32, i32* %17, i64 %73 - store i32 %71, i32* %74, align 4 - br label %75 - -75: ; preds = %69, %61, %48 - br label %76 - -76: ; preds = %75, %40 - br label %77 - -77: ; preds = %76 - %78 = load i32, i32* %11, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %11, align 4 - br label %36, !llvm.loop !4 - -80: ; preds = %36 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %10, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %10, align 4 - br label %31, !llvm.loop !5 - -84: ; preds = %31 - %85 = load i32, i32* %6, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %17, i64 %86 - %88 = load i32, i32* %87, align 4 - %89 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %89) - ret i32 %88 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([4 x i32]* @__const.main.coins to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - store i32 11, i32* %4, align 4 - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str, i64 0, i64 0)) - %7 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %8 = load i32, i32* %3, align 4 - %9 = load i32, i32* %4, align 4 - %10 = call i32 @_Z8minCoinsPiii(i32* %7, i32 %8, i32 %9) - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, i32 %10) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-parity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/find-parity.ll deleted file mode 100644 index 8c74eb5a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-parity.ll +++ /dev/null @@ -1,123 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-parity.cpp' -source_filename = "PE-benchmarks/find-parity.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [14 x i8] c"Parity of no \00", align 1 -@.str.1 = private unnamed_addr constant [4 x i8] c" = \00", align 1 -@.str.2 = private unnamed_addr constant [4 x i8] c"odd\00", align 1 -@.str.3 = private unnamed_addr constant [5 x i8] c"even\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_find_parity.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9getParityj(i32 %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - store i32 0, i32* %3, align 4 - br label %4 - -4: ; preds = %7, %1 - %5 = load i32, i32* %2, align 4 - %6 = icmp ne i32 %5, 0 - br i1 %6, label %7, label %16 - -7: ; preds = %4 - %8 = load i32, i32* %3, align 4 - %9 = icmp ne i32 %8, 0 - %10 = xor i1 %9, true - %11 = zext i1 %10 to i32 - store i32 %11, i32* %3, align 4 - %12 = load i32, i32* %2, align 4 - %13 = load i32, i32* %2, align 4 - %14 = sub i32 %13, 1 - %15 = and i32 %12, %14 - store i32 %15, i32* %2, align 4 - br label %4, !llvm.loop !2 - -16: ; preds = %4 - %17 = load i32, i32* %3, align 4 - ret i32 %17 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 7, i32* %2, align 4 - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([14 x i8], [14 x i8]* @.str, i64 0, i64 0)) - %4 = load i32, i32* %2, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEj(%"class.std::basic_ostream"* nonnull dereferenceable(8) %3, i32 %4) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %5, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - %7 = load i32, i32* %2, align 4 - %8 = call i32 @_Z9getParityj(i32 %7) - %9 = icmp ne i32 %8, 0 - %10 = zext i1 %9 to i64 - %11 = select i1 %9, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.2, i64 0, i64 0), i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.3, i64 0, i64 0) - %12 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %6, i8* %11) - %13 = call i32 @getchar() - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEj(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local i32 @getchar() #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_parity.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-two-non-repeating-element.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/find-two-non-repeating-element.ll deleted file mode 100644 index a782413b..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-two-non-repeating-element.ll +++ /dev/null @@ -1,220 +0,0 @@ -; ModuleID = 'PE-benchmarks/find-two-non-repeating-element.cpp' -source_filename = "PE-benchmarks/find-two-non-repeating-element.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [8 x i32] [i32 2, i32 3, i32 7, i32 9, i32 11, i32 2, i32 3, i32 11], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [32 x i8] c"The non-repeating elements are \00", align 1 -@.str.1 = private unnamed_addr constant [6 x i8] c" and \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_find_two_non_repeating_element.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(i32* %0, i32 %1, i32* %2, i32* %3) #4 { - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32* %2, i32** %7, align 8 - store i32* %3, i32** %8, align 8 - %12 = load i32*, i32** %5, align 8 - %13 = getelementptr inbounds i32, i32* %12, i64 0 - %14 = load i32, i32* %13, align 4 - store i32 %14, i32* %9, align 4 - %15 = load i32*, i32** %7, align 8 - store i32 0, i32* %15, align 4 - %16 = load i32*, i32** %8, align 8 - store i32 0, i32* %16, align 4 - store i32 1, i32* %11, align 4 - br label %17 - -17: ; preds = %29, %4 - %18 = load i32, i32* %11, align 4 - %19 = load i32, i32* %6, align 4 - %20 = icmp slt i32 %18, %19 - br i1 %20, label %21, label %32 - -21: ; preds = %17 - %22 = load i32*, i32** %5, align 8 - %23 = load i32, i32* %11, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i32, i32* %22, i64 %24 - %26 = load i32, i32* %25, align 4 - %27 = load i32, i32* %9, align 4 - %28 = xor i32 %27, %26 - store i32 %28, i32* %9, align 4 - br label %29 - -29: ; preds = %21 - %30 = load i32, i32* %11, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %11, align 4 - br label %17, !llvm.loop !2 - -32: ; preds = %17 - %33 = load i32, i32* %9, align 4 - %34 = load i32, i32* %9, align 4 - %35 = sub nsw i32 %34, 1 - %36 = xor i32 %35, -1 - %37 = and i32 %33, %36 - store i32 %37, i32* %10, align 4 - store i32 0, i32* %11, align 4 - br label %38 - -38: ; preds = %72, %32 - %39 = load i32, i32* %11, align 4 - %40 = load i32, i32* %6, align 4 - %41 = icmp slt i32 %39, %40 - br i1 %41, label %42, label %75 - -42: ; preds = %38 - %43 = load i32*, i32** %5, align 8 - %44 = load i32, i32* %11, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = load i32, i32* %10, align 4 - %49 = and i32 %47, %48 - %50 = icmp ne i32 %49, 0 - br i1 %50, label %51, label %61 - -51: ; preds = %42 - %52 = load i32*, i32** %7, align 8 - %53 = load i32, i32* %52, align 4 - %54 = load i32*, i32** %5, align 8 - %55 = load i32, i32* %11, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - %58 = load i32, i32* %57, align 4 - %59 = xor i32 %53, %58 - %60 = load i32*, i32** %7, align 8 - store i32 %59, i32* %60, align 4 - br label %71 - -61: ; preds = %42 - %62 = load i32*, i32** %8, align 8 - %63 = load i32, i32* %62, align 4 - %64 = load i32*, i32** %5, align 8 - %65 = load i32, i32* %11, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %67, align 4 - %69 = xor i32 %63, %68 - %70 = load i32*, i32** %8, align 8 - store i32 %69, i32* %70, align 4 - br label %71 - -71: ; preds = %61, %51 - br label %72 - -72: ; preds = %71 - %73 = load i32, i32* %11, align 4 - %74 = add nsw i32 %73, 1 - store i32 %74, i32* %11, align 4 - br label %38, !llvm.loop !4 - -75: ; preds = %38 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca [8 x i32], align 16 - %2 = alloca i32*, align 8 - %3 = alloca i32*, align 8 - %4 = bitcast [8 x i32]* %1 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - %5 = call noalias nonnull i8* @_Znam(i64 16) #8 - %6 = bitcast i8* %5 to i32* - store i32* %6, i32** %2, align 8 - %7 = call noalias nonnull i8* @_Znam(i64 16) #8 - %8 = bitcast i8* %7 to i32* - store i32* %8, i32** %3, align 8 - %9 = getelementptr inbounds [8 x i32], [8 x i32]* %1, i64 0, i64 0 - %10 = load i32*, i32** %2, align 8 - %11 = load i32*, i32** %3, align 8 - call void @_Z19get2NonRepeatingNosPiiS_S_(i32* %9, i32 8, i32* %10, i32* %11) - %12 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([32 x i8], [32 x i8]* @.str, i64 0, i64 0)) - %13 = load i32*, i32** %2, align 8 - %14 = load i32, i32* %13, align 4 - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %12, i32 %14) - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %15, i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.1, i64 0, i64 0)) - %17 = load i32*, i32** %3, align 8 - %18 = load i32, i32* %17, align 4 - %19 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %16, i32 %18) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_find_two_non_repeating_element.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } -attributes #7 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll deleted file mode 100644 index 3fef4ed5..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll +++ /dev/null @@ -1,331 +0,0 @@ -; ModuleID = 'PE-benchmarks/finite-automata-algorithm.cpp' -source_filename = "PE-benchmarks/finite-automata-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [28 x i8] c"\0A Pattern found at index %d\00", align 1 -@.str.1 = private unnamed_addr constant [19 x i8] c"AABAACAADAABAAABAA\00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c"AABA\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z12getNextStatePciii(i8* %0, i32 %1, i32 %2, i32 %3) #0 { - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i8* %0, i8** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %7, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %27 - -15: ; preds = %4 - %16 = load i32, i32* %9, align 4 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %8, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i8, i8* %17, i64 %19 - %21 = load i8, i8* %20, align 1 - %22 = sext i8 %21 to i32 - %23 = icmp eq i32 %16, %22 - br i1 %23, label %24, label %27 - -24: ; preds = %15 - %25 = load i32, i32* %8, align 4 - %26 = add nsw i32 %25, 1 - store i32 %26, i32* %5, align 4 - br label %85 - -27: ; preds = %15, %4 - %28 = load i32, i32* %8, align 4 - store i32 %28, i32* %10, align 4 - br label %29 - -29: ; preds = %81, %27 - %30 = load i32, i32* %10, align 4 - %31 = icmp sgt i32 %30, 0 - br i1 %31, label %32, label %84 - -32: ; preds = %29 - %33 = load i8*, i8** %6, align 8 - %34 = load i32, i32* %10, align 4 - %35 = sub nsw i32 %34, 1 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %33, i64 %36 - %38 = load i8, i8* %37, align 1 - %39 = sext i8 %38 to i32 - %40 = load i32, i32* %9, align 4 - %41 = icmp eq i32 %39, %40 - br i1 %41, label %42, label %80 - -42: ; preds = %32 - store i32 0, i32* %11, align 4 - br label %43 - -43: ; preds = %69, %42 - %44 = load i32, i32* %11, align 4 - %45 = load i32, i32* %10, align 4 - %46 = sub nsw i32 %45, 1 - %47 = icmp slt i32 %44, %46 - br i1 %47, label %48, label %72 - -48: ; preds = %43 - %49 = load i8*, i8** %6, align 8 - %50 = load i32, i32* %11, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds i8, i8* %49, i64 %51 - %53 = load i8, i8* %52, align 1 - %54 = sext i8 %53 to i32 - %55 = load i8*, i8** %6, align 8 - %56 = load i32, i32* %8, align 4 - %57 = load i32, i32* %10, align 4 - %58 = sub nsw i32 %56, %57 - %59 = add nsw i32 %58, 1 - %60 = load i32, i32* %11, align 4 - %61 = add nsw i32 %59, %60 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i8, i8* %55, i64 %62 - %64 = load i8, i8* %63, align 1 - %65 = sext i8 %64 to i32 - %66 = icmp ne i32 %54, %65 - br i1 %66, label %67, label %68 - -67: ; preds = %48 - br label %72 - -68: ; preds = %48 - br label %69 - -69: ; preds = %68 - %70 = load i32, i32* %11, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %11, align 4 - br label %43, !llvm.loop !2 - -72: ; preds = %67, %43 - %73 = load i32, i32* %11, align 4 - %74 = load i32, i32* %10, align 4 - %75 = sub nsw i32 %74, 1 - %76 = icmp eq i32 %73, %75 - br i1 %76, label %77, label %79 - -77: ; preds = %72 - %78 = load i32, i32* %10, align 4 - store i32 %78, i32* %5, align 4 - br label %85 - -79: ; preds = %72 - br label %80 - -80: ; preds = %79, %32 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %10, align 4 - %83 = add nsw i32 %82, -1 - store i32 %83, i32* %10, align 4 - br label %29, !llvm.loop !4 - -84: ; preds = %29 - store i32 0, i32* %5, align 4 - br label %85 - -85: ; preds = %84, %77, %24 - %86 = load i32, i32* %5, align 4 - ret i32 %86 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z9computeTFPciPA256_i(i8* %0, i32 %1, [256 x i32]* %2) #0 { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca [256 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store [256 x i32]* %2, [256 x i32]** %6, align 8 - store i32 0, i32* %7, align 4 - br label %9 - -9: ; preds = %34, %3 - %10 = load i32, i32* %7, align 4 - %11 = load i32, i32* %5, align 4 - %12 = icmp sle i32 %10, %11 - br i1 %12, label %13, label %37 - -13: ; preds = %9 - store i32 0, i32* %8, align 4 - br label %14 - -14: ; preds = %30, %13 - %15 = load i32, i32* %8, align 4 - %16 = icmp slt i32 %15, 256 - br i1 %16, label %17, label %33 - -17: ; preds = %14 - %18 = load i8*, i8** %4, align 8 - %19 = load i32, i32* %5, align 4 - %20 = load i32, i32* %7, align 4 - %21 = load i32, i32* %8, align 4 - %22 = call i32 @_Z12getNextStatePciii(i8* %18, i32 %19, i32 %20, i32 %21) - %23 = load [256 x i32]*, [256 x i32]** %6, align 8 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [256 x i32], [256 x i32]* %23, i64 %25 - %27 = load i32, i32* %8, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [256 x i32], [256 x i32]* %26, i64 0, i64 %28 - store i32 %22, i32* %29, align 4 - br label %30 - -30: ; preds = %17 - %31 = load i32, i32* %8, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %8, align 4 - br label %14, !llvm.loop !5 - -33: ; preds = %14 - br label %34 - -34: ; preds = %33 - %35 = load i32, i32* %7, align 4 - %36 = add nsw i32 %35, 1 - store i32 %36, i32* %7, align 4 - br label %9, !llvm.loop !6 - -37: ; preds = %9 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* %11) #6 - %13 = trunc i64 %12 to i32 - store i32 %13, i32* %5, align 4 - %14 = load i8*, i8** %4, align 8 - %15 = call i64 @strlen(i8* %14) #6 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = load i32, i32* %5, align 4 - %18 = add nsw i32 %17, 1 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 - %21 = alloca [256 x i32], i64 %19, align 16 - store i64 %19, i64* %8, align 8 - %22 = load i8*, i8** %3, align 8 - %23 = load i32, i32* %5, align 4 - call void @_Z9computeTFPciPA256_i(i8* %22, i32 %23, [256 x i32]* %21) - store i32 0, i32* %10, align 4 - store i32 0, i32* %9, align 4 - br label %24 - -24: ; preds = %50, %2 - %25 = load i32, i32* %9, align 4 - %26 = load i32, i32* %6, align 4 - %27 = icmp slt i32 %25, %26 - br i1 %27, label %28, label %53 - -28: ; preds = %24 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [256 x i32], [256 x i32]* %21, i64 %30 - %32 = load i8*, i8** %4, align 8 - %33 = load i32, i32* %9, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i8, i8* %32, i64 %34 - %36 = load i8, i8* %35, align 1 - %37 = sext i8 %36 to i64 - %38 = getelementptr inbounds [256 x i32], [256 x i32]* %31, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %10, align 4 - %40 = load i32, i32* %10, align 4 - %41 = load i32, i32* %5, align 4 - %42 = icmp eq i32 %40, %41 - br i1 %42, label %43, label %49 - -43: ; preds = %28 - %44 = load i32, i32* %9, align 4 - %45 = load i32, i32* %5, align 4 - %46 = sub nsw i32 %44, %45 - %47 = add nsw i32 %46, 1 - %48 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 %47) - br label %49 - -49: ; preds = %43, %28 - br label %50 - -50: ; preds = %49 - %51 = load i32, i32* %9, align 4 - %52 = add nsw i32 %51, 1 - store i32 %52, i32* %9, align 4 - br label %24, !llvm.loop !7 - -53: ; preds = %24 - %54 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %54) - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #3 - -declare dso_local i32 @printf(i8*, ...) #4 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #3 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca i8*, align 8 - %3 = alloca i8*, align 8 - store i32 0, i32* %1, align 4 - store i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.1, i64 0, i64 0), i8** %2, align 8 - store i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), i8** %3, align 8 - %4 = load i8*, i8** %3, align 8 - %5 = load i8*, i8** %2, align 8 - call void @_Z6searchPcS_(i8* %4, i8* %5) - ret i32 0 -} - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nofree nosync nounwind willreturn } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/floyd-warshall.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/floyd-warshall.ll deleted file mode 100644 index 4e501875..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/floyd-warshall.ll +++ /dev/null @@ -1,342 +0,0 @@ -; ModuleID = 'PE-benchmarks/floyd-warshall.cpp' -source_filename = "PE-benchmarks/floyd-warshall.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [83 x i8] c"The following matrix shows the shortest distances between every pair of vertices \0A\00", align 1 -@.str.1 = private unnamed_addr constant [4 x i8] c"INF\00", align 1 -@.str.2 = private unnamed_addr constant [3 x i8] c"\09 \00", align 1 -@__const.main.graph = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 0, i32 5, i32 99999, i32 10], [4 x i32] [i32 99999, i32 0, i32 3, i32 99999], [4 x i32] [i32 99999, i32 99999, i32 0, i32 1], [4 x i32] [i32 99999, i32 99999, i32 99999, i32 0]], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_floyd_warshall.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca [4 x [4 x i32]], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %4, align 4 - br label %7 - -7: ; preds = %33, %1 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %8, 4 - br i1 %9, label %10, label %36 - -10: ; preds = %7 - store i32 0, i32* %5, align 4 - br label %11 - -11: ; preds = %29, %10 - %12 = load i32, i32* %5, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %32 - -14: ; preds = %11 - %15 = load [4 x i32]*, [4 x i32]** %2, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %15, i64 %17 - %19 = load i32, i32* %5, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %24 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [4 x i32], [4 x i32]* %25, i64 0, i64 %27 - store i32 %22, i32* %28, align 4 - br label %29 - -29: ; preds = %14 - %30 = load i32, i32* %5, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %5, align 4 - br label %11, !llvm.loop !2 - -32: ; preds = %11 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %4, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %4, align 4 - br label %7, !llvm.loop !4 - -36: ; preds = %7 - store i32 0, i32* %6, align 4 - br label %37 - -37: ; preds = %103, %36 - %38 = load i32, i32* %6, align 4 - %39 = icmp slt i32 %38, 4 - br i1 %39, label %40, label %106 - -40: ; preds = %37 - store i32 0, i32* %4, align 4 - br label %41 - -41: ; preds = %99, %40 - %42 = load i32, i32* %4, align 4 - %43 = icmp slt i32 %42, 4 - br i1 %43, label %44, label %102 - -44: ; preds = %41 - store i32 0, i32* %5, align 4 - br label %45 - -45: ; preds = %95, %44 - %46 = load i32, i32* %5, align 4 - %47 = icmp slt i32 %46, 4 - br i1 %47, label %48, label %98 - -48: ; preds = %45 - %49 = load i32, i32* %4, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %50 - %52 = load i32, i32* %6, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [4 x i32], [4 x i32]* %51, i64 0, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = load i32, i32* %6, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %57 - %59 = load i32, i32* %5, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [4 x i32], [4 x i32]* %58, i64 0, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %55, %62 - %64 = load i32, i32* %4, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %65 - %67 = load i32, i32* %5, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [4 x i32], [4 x i32]* %66, i64 0, i64 %68 - %70 = load i32, i32* %69, align 4 - %71 = icmp slt i32 %63, %70 - br i1 %71, label %72, label %94 - -72: ; preds = %48 - %73 = load i32, i32* %4, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %74 - %76 = load i32, i32* %6, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds [4 x i32], [4 x i32]* %75, i64 0, i64 %77 - %79 = load i32, i32* %78, align 4 - %80 = load i32, i32* %6, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %81 - %83 = load i32, i32* %5, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [4 x i32], [4 x i32]* %82, i64 0, i64 %84 - %86 = load i32, i32* %85, align 4 - %87 = add nsw i32 %79, %86 - %88 = load i32, i32* %4, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %89 - %91 = load i32, i32* %5, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds [4 x i32], [4 x i32]* %90, i64 0, i64 %92 - store i32 %87, i32* %93, align 4 - br label %94 - -94: ; preds = %72, %48 - br label %95 - -95: ; preds = %94 - %96 = load i32, i32* %5, align 4 - %97 = add nsw i32 %96, 1 - store i32 %97, i32* %5, align 4 - br label %45, !llvm.loop !5 - -98: ; preds = %45 - br label %99 - -99: ; preds = %98 - %100 = load i32, i32* %4, align 4 - %101 = add nsw i32 %100, 1 - store i32 %101, i32* %4, align 4 - br label %41, !llvm.loop !6 - -102: ; preds = %41 - br label %103 - -103: ; preds = %102 - %104 = load i32, i32* %6, align 4 - %105 = add nsw i32 %104, 1 - store i32 %105, i32* %6, align 4 - br label %37, !llvm.loop !7 - -106: ; preds = %37 - %107 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 0 - call void @_Z13printSolutionPA4_i([4 x i32]* %107) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #4 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([83 x i8], [83 x i8]* @.str, i64 0, i64 0)) - store i32 0, i32* %3, align 4 - br label %6 - -6: ; preds = %43, %1 - %7 = load i32, i32* %3, align 4 - %8 = icmp slt i32 %7, 4 - br i1 %8, label %9, label %46 - -9: ; preds = %6 - store i32 0, i32* %4, align 4 - br label %10 - -10: ; preds = %38, %9 - %11 = load i32, i32* %4, align 4 - %12 = icmp slt i32 %11, 4 - br i1 %12, label %13, label %41 - -13: ; preds = %10 - %14 = load [4 x i32]*, [4 x i32]** %2, align 8 - %15 = load i32, i32* %3, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 %16 - %18 = load i32, i32* %4, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [4 x i32], [4 x i32]* %17, i64 0, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = icmp eq i32 %21, 99999 - br i1 %22, label %23, label %26 - -23: ; preds = %13 - %24 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) - %25 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %24, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.2, i64 0, i64 0)) - br label %37 - -26: ; preds = %13 - %27 = load [4 x i32]*, [4 x i32]** %2, align 8 - %28 = load i32, i32* %3, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds [4 x i32], [4 x i32]* %27, i64 %29 - %31 = load i32, i32* %4, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [4 x i32], [4 x i32]* %30, i64 0, i64 %32 - %34 = load i32, i32* %33, align 4 - %35 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %34) - %36 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %35, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.2, i64 0, i64 0)) - br label %37 - -37: ; preds = %26, %23 - br label %38 - -38: ; preds = %37 - %39 = load i32, i32* %4, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %4, align 4 - br label %10, !llvm.loop !8 - -41: ; preds = %10 - %42 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %43 - -43: ; preds = %41 - %44 = load i32, i32* %3, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %3, align 4 - br label %6, !llvm.loop !9 - -46: ; preds = %6 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [4 x [4 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [4 x [4 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([4 x [4 x i32]]* @__const.main.graph to i8*), i64 64, i1 false) - %4 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %2, i64 0, i64 0 - call void @_Z13floydWarshallPA4_i([4 x i32]* %4) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_floyd_warshall.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/graph-coloring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/graph-coloring.ll deleted file mode 100644 index fa98a596..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/graph-coloring.ll +++ /dev/null @@ -1,1409 +0,0 @@ -; ModuleID = 'PE-benchmarks/graph-coloring.cpp' -source_filename = "PE-benchmarks/graph-coloring.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZN5GraphC2Ei = comdat any - -$_ZN5GraphD2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_ = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSaISt10_List_nodeIiEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [8 x i8] c"Vertex \00", align 1 -@.str.1 = private unnamed_addr constant [13 x i8] c" ---> Color \00", align 1 -@.str.2 = private unnamed_addr constant [22 x i8] c"Coloring of graph 1 \0A\00", align 1 -@.str.3 = private unnamed_addr constant [23 x i8] c"\0AColoring of graph 2 \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_graph_coloring.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #4 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, i32* nonnull align 4 dereferenceable(4) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull dereferenceable(16) %0) #4 align 2 { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca i64, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca i32, align 4 - %13 = alloca %"struct.std::_List_iterator", align 8 - %14 = alloca %"struct.std::_List_iterator", align 8 - %15 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %16 = load %class.Graph*, %class.Graph** %2, align 8 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %18 = load i32, i32* %17, align 8 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %3, align 8 - %21 = alloca i32, i64 %19, align 16 - store i64 %19, i64* %4, align 8 - %22 = getelementptr inbounds i32, i32* %21, i64 0 - store i32 0, i32* %22, align 16 - store i32 1, i32* %5, align 4 - br label %23 - -23: ; preds = %32, %1 - %24 = load i32, i32* %5, align 4 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %26 = load i32, i32* %25, align 8 - %27 = icmp slt i32 %24, %26 - br i1 %27, label %28, label %35 - -28: ; preds = %23 - %29 = load i32, i32* %5, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %21, i64 %30 - store i32 -1, i32* %31, align 4 - br label %32 - -32: ; preds = %28 - %33 = load i32, i32* %5, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %5, align 4 - br label %23, !llvm.loop !2 - -35: ; preds = %23 - %36 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %37 = load i32, i32* %36, align 8 - %38 = zext i32 %37 to i64 - %39 = alloca i8, i64 %38, align 16 - store i64 %38, i64* %6, align 8 - store i32 0, i32* %7, align 4 - br label %40 - -40: ; preds = %49, %35 - %41 = load i32, i32* %7, align 4 - %42 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %43 = load i32, i32* %42, align 8 - %44 = icmp slt i32 %41, %43 - br i1 %44, label %45, label %52 - -45: ; preds = %40 - %46 = load i32, i32* %7, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds i8, i8* %39, i64 %47 - store i8 0, i8* %48, align 1 - br label %49 - -49: ; preds = %45 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %7, align 4 - br label %40, !llvm.loop !4 - -52: ; preds = %40 - store i32 1, i32* %8, align 4 - br label %53 - -53: ; preds = %156, %52 - %54 = load i32, i32* %8, align 4 - %55 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %56 = load i32, i32* %55, align 8 - %57 = icmp slt i32 %54, %56 - br i1 %57, label %58, label %159 - -58: ; preds = %53 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %59 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %60 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %59, align 8 - %61 = load i32, i32* %8, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %60, i64 %62 - %64 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %63) #3 - %65 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %64, %"struct.std::__detail::_List_node_base"** %65, align 8 - %66 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %67 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %66, i8* align 8 %67, i64 8, i1 false) - br label %68 - -68: ; preds = %93, %58 - %69 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %70 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %69, align 8 - %71 = load i32, i32* %8, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %70, i64 %72 - %74 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %73) #3 - %75 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %74, %"struct.std::__detail::_List_node_base"** %75, align 8 - %76 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - br i1 %76, label %77, label %95 - -77: ; preds = %68 - %78 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %79 = load i32, i32* %78, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %21, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = icmp ne i32 %82, -1 - br i1 %83, label %84, label %92 - -84: ; preds = %77 - %85 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %86 = load i32, i32* %85, align 4 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %21, i64 %87 - %89 = load i32, i32* %88, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i8, i8* %39, i64 %90 - store i8 1, i8* %91, align 1 - br label %92 - -92: ; preds = %84, %77 - br label %93 - -93: ; preds = %92 - %94 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - br label %68, !llvm.loop !5 - -95: ; preds = %68 - store i32 0, i32* %12, align 4 - br label %96 - -96: ; preds = %111, %95 - %97 = load i32, i32* %12, align 4 - %98 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %99 = load i32, i32* %98, align 8 - %100 = icmp slt i32 %97, %99 - br i1 %100, label %101, label %114 - -101: ; preds = %96 - %102 = load i32, i32* %12, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds i8, i8* %39, i64 %103 - %105 = load i8, i8* %104, align 1 - %106 = trunc i8 %105 to i1 - %107 = zext i1 %106 to i32 - %108 = icmp eq i32 %107, 0 - br i1 %108, label %109, label %110 - -109: ; preds = %101 - br label %114 - -110: ; preds = %101 - br label %111 - -111: ; preds = %110 - %112 = load i32, i32* %12, align 4 - %113 = add nsw i32 %112, 1 - store i32 %113, i32* %12, align 4 - br label %96, !llvm.loop !6 - -114: ; preds = %109, %96 - %115 = load i32, i32* %12, align 4 - %116 = load i32, i32* %8, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %21, i64 %117 - store i32 %115, i32* %118, align 4 - %119 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %120 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %119, align 8 - %121 = load i32, i32* %8, align 4 - %122 = sext i32 %121 to i64 - %123 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %120, i64 %122 - %124 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %123) #3 - %125 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %13, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %124, %"struct.std::__detail::_List_node_base"** %125, align 8 - %126 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %127 = bitcast %"struct.std::_List_iterator"* %13 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %126, i8* align 8 %127, i64 8, i1 false) - br label %128 - -128: ; preds = %153, %114 - %129 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 1 - %130 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %129, align 8 - %131 = load i32, i32* %8, align 4 - %132 = sext i32 %131 to i64 - %133 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %130, i64 %132 - %134 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %133) #3 - %135 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %14, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %134, %"struct.std::__detail::_List_node_base"** %135, align 8 - %136 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %14) #3 - br i1 %136, label %137, label %155 - -137: ; preds = %128 - %138 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %139 = load i32, i32* %138, align 4 - %140 = sext i32 %139 to i64 - %141 = getelementptr inbounds i32, i32* %21, i64 %140 - %142 = load i32, i32* %141, align 4 - %143 = icmp ne i32 %142, -1 - br i1 %143, label %144, label %152 - -144: ; preds = %137 - %145 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %146 = load i32, i32* %145, align 4 - %147 = sext i32 %146 to i64 - %148 = getelementptr inbounds i32, i32* %21, i64 %147 - %149 = load i32, i32* %148, align 4 - %150 = sext i32 %149 to i64 - %151 = getelementptr inbounds i8, i8* %39, i64 %150 - store i8 0, i8* %151, align 1 - br label %152 - -152: ; preds = %144, %137 - br label %153 - -153: ; preds = %152 - %154 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - br label %128, !llvm.loop !7 - -155: ; preds = %128 - br label %156 - -156: ; preds = %155 - %157 = load i32, i32* %8, align 4 - %158 = add nsw i32 %157, 1 - store i32 %158, i32* %8, align 4 - br label %53, !llvm.loop !8 - -159: ; preds = %53 - store i32 0, i32* %15, align 4 - br label %160 - -160: ; preds = %176, %159 - %161 = load i32, i32* %15, align 4 - %162 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 - %163 = load i32, i32* %162, align 8 - %164 = icmp slt i32 %161, %163 - br i1 %164, label %165, label %179 - -165: ; preds = %160 - %166 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([8 x i8], [8 x i8]* @.str, i64 0, i64 0)) - %167 = load i32, i32* %15, align 4 - %168 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %166, i32 %167) - %169 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %168, i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str.1, i64 0, i64 0)) - %170 = load i32, i32* %15, align 4 - %171 = sext i32 %170 to i64 - %172 = getelementptr inbounds i32, i32* %21, i64 %171 - %173 = load i32, i32* %172, align 4 - %174 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %169, i32 %173) - %175 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %174, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %176 - -176: ; preds = %165 - %177 = load i32, i32* %15, align 4 - %178 = add nsw i32 %177, 1 - store i32 %178, i32* %15, align 4 - br label %160, !llvm.loop !9 - -179: ; preds = %160 - %180 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %180) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 5) - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1) - to label %6 unwind label %26 - -6: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - to label %7 unwind label %26 - -7: ; preds = %6 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 2) - to label %8 unwind label %26 - -8: ; preds = %7 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 3) - to label %9 unwind label %26 - -9: ; preds = %8 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3) - to label %10 unwind label %26 - -10: ; preds = %9 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - to label %11 unwind label %26 - -11: ; preds = %10 - %12 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str.2, i64 0, i64 0)) - to label %13 unwind label %26 - -13: ; preds = %11 - invoke void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull dereferenceable(16) %2) - to label %14 unwind label %26 - -14: ; preds = %13 - invoke void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %5, i32 5) - to label %15 unwind label %26 - -15: ; preds = %14 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 1) - to label %16 unwind label %30 - -16: ; preds = %15 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 2) - to label %17 unwind label %30 - -17: ; preds = %16 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 2) - to label %18 unwind label %30 - -18: ; preds = %17 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 4) - to label %19 unwind label %30 - -19: ; preds = %18 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 4) - to label %20 unwind label %30 - -20: ; preds = %19 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 4, i32 3) - to label %21 unwind label %30 - -21: ; preds = %20 - %22 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.3, i64 0, i64 0)) - to label %23 unwind label %30 - -23: ; preds = %21 - invoke void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull dereferenceable(16) %5) - to label %24 unwind label %30 - -24: ; preds = %23 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %5) #3 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 - %25 = load i32, i32* %1, align 4 - ret i32 %25 - -26: ; preds = %14, %13, %11, %10, %9, %8, %7, %6, %0 - %27 = landingpad { i8*, i32 } - cleanup - %28 = extractvalue { i8*, i32 } %27, 0 - store i8* %28, i8** %3, align 8 - %29 = extractvalue { i8*, i32 } %27, 1 - store i32 %29, i32* %4, align 4 - br label %34 - -30: ; preds = %23, %21, %20, %19, %18, %17, %16, %15 - %31 = landingpad { i8*, i32 } - cleanup - %32 = extractvalue { i8*, i32 } %31, 0 - store i8* %32, i8** %3, align 8 - %33 = extractvalue { i8*, i32 } %31, 1 - store i32 %33, i32* %4, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %5) #3 - br label %34 - -34: ; preds = %30, %26 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 - br label %35 - -35: ; preds = %34 - %36 = load i8*, i8** %3, align 8 - %37 = load i32, i32* %4, align 4 - %38 = insertvalue { i8*, i32 } undef, i8* %36, 0 - %39 = insertvalue { i8*, i32 } %38, i32 %37, 1 - resume { i8*, i32 } %39 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 comdat align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #15 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %16) #3 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* %9) #16 - br label %19 - -19: ; preds = %18, %1 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #10 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #10 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #11 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %3) #3 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %3 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca i32*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %6 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::__detail::_List_node_header"* %8 to %"struct.std::__detail::_List_node_base"* - %10 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %9, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - store %"struct.std::__detail::_List_node_base"* %11, %"struct.std::__detail::_List_node_base"** %3, align 8 - br label %12 - -12: ; preds = %27, %1 - %13 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %14 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %15 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::__detail::_List_node_header"* %15 to %"struct.std::__detail::_List_node_base"* - %17 = icmp ne %"struct.std::__detail::_List_node_base"* %13, %16 - br i1 %17, label %18, label %31 - -18: ; preds = %12 - %19 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %20 = bitcast %"struct.std::__detail::_List_node_base"* %19 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %20, %"struct.std::_List_node"** %4, align 8 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %22 = bitcast %"struct.std::_List_node"* %21 to %"struct.std::__detail::_List_node_base"* - %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %22, i32 0, i32 0 - %24 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %23, align 8 - store %"struct.std::__detail::_List_node_base"* %24, %"struct.std::__detail::_List_node_base"** %3, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %26 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %25) - to label %27 unwind label %32 - -27: ; preds = %18 - store i32* %26, i32** %5, align 8 - %28 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6) #3 - %29 = load i32*, i32** %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %28, i32* %29) #3 - %30 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6, %"struct.std::_List_node"* %30) #3 - br label %12, !llvm.loop !10 - -31: ; preds = %12 - ret void - -32: ; preds = %18 - %33 = landingpad { i8*, i32 } - catch i8* null - %34 = extractvalue { i8*, i32 } %33, 0 - call void @__clang_call_terminate(i8* %34) #17 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #17 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, %"struct.std::_List_node"* %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* %8, i64 1) - to label %9 unwind label %10 - -9: ; preds = %2 - ret void - -10: ; preds = %2 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #17 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #7 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #7 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1) #7 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %9 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %10 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %9) - store %"struct.std::_List_node"* %10, %"struct.std::_List_node"** %5, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %12 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) #3 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* %14) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %17 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %16) - %18 = load i32*, i32** %4, align 8 - %19 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %18) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, i32* %17, i32* nonnull align 4 dereferenceable(4) %19) #3 - %20 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #7 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #7 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #17 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #19 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #11 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #7 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_graph_coloring.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #11 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noinline noreturn nounwind } -attributes #14 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { builtin nounwind } -attributes #17 = { noreturn nounwind } -attributes #18 = { noreturn } -attributes #19 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll deleted file mode 100644 index fae4a66f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll +++ /dev/null @@ -1,386 +0,0 @@ -; ModuleID = 'PE-benchmarks/hamiltonian-cycle-backtracking.cpp' -source_filename = "PE-benchmarks/hamiltonian-cycle-backtracking.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [25 x i8] c"\0ASolution does not exist\00", align 1 -@.str.1 = private unnamed_addr constant [54 x i8] c"Solution Exists: Following is one Hamiltonian Cycle \0A\00", align 1 -@.str.2 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@__const.main.graph1 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\01", [5 x i8] c"\00\01\01\01\00"], align 16 -@__const.main.graph2 = private unnamed_addr constant [5 x [5 x i8]] [[5 x i8] c"\00\01\00\01\00", [5 x i8] c"\01\00\01\01\01", [5 x i8] c"\00\01\00\00\01", [5 x i8] c"\01\01\00\00\00", [5 x i8] c"\00\01\01\00\00"], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z6isSafeiPA5_bPii(i32 %0, [5 x i8]* %1, i32* %2, i32 %3) #4 { - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca [5 x i8]*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32 %0, i32* %6, align 4 - store [5 x i8]* %1, [5 x i8]** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - %11 = load [5 x i8]*, [5 x i8]** %7, align 8 - %12 = load i32*, i32** %8, align 8 - %13 = load i32, i32* %9, align 4 - %14 = sub nsw i32 %13, 1 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i32, i32* %12, i64 %15 - %17 = load i32, i32* %16, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [5 x i8], [5 x i8]* %11, i64 %18 - %20 = load i32, i32* %6, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [5 x i8], [5 x i8]* %19, i64 0, i64 %21 - %23 = load i8, i8* %22, align 1 - %24 = trunc i8 %23 to i1 - %25 = zext i1 %24 to i32 - %26 = icmp eq i32 %25, 0 - br i1 %26, label %27, label %28 - -27: ; preds = %4 - store i1 false, i1* %5, align 1 - br label %47 - -28: ; preds = %4 - store i32 0, i32* %10, align 4 - br label %29 - -29: ; preds = %43, %28 - %30 = load i32, i32* %10, align 4 - %31 = load i32, i32* %9, align 4 - %32 = icmp slt i32 %30, %31 - br i1 %32, label %33, label %46 - -33: ; preds = %29 - %34 = load i32*, i32** %8, align 8 - %35 = load i32, i32* %10, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %34, i64 %36 - %38 = load i32, i32* %37, align 4 - %39 = load i32, i32* %6, align 4 - %40 = icmp eq i32 %38, %39 - br i1 %40, label %41, label %42 - -41: ; preds = %33 - store i1 false, i1* %5, align 1 - br label %47 - -42: ; preds = %33 - br label %43 - -43: ; preds = %42 - %44 = load i32, i32* %10, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %10, align 4 - br label %29, !llvm.loop !2 - -46: ; preds = %29 - store i1 true, i1* %5, align 1 - br label %47 - -47: ; preds = %46, %41, %27 - %48 = load i1, i1* %5, align 1 - ret i1 %48 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %0, i32* %1, i32 %2) #5 { - %4 = alloca i1, align 1 - %5 = alloca [5 x i8]*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [5 x i8]* %0, [5 x i8]** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32 %2, i32* %7, align 4 - %9 = load i32, i32* %7, align 4 - %10 = icmp eq i32 %9, 5 - br i1 %10, label %11, label %32 - -11: ; preds = %3 - %12 = load [5 x i8]*, [5 x i8]** %5, align 8 - %13 = load i32*, i32** %6, align 8 - %14 = load i32, i32* %7, align 4 - %15 = sub nsw i32 %14, 1 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %13, i64 %16 - %18 = load i32, i32* %17, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [5 x i8], [5 x i8]* %12, i64 %19 - %21 = load i32*, i32** %6, align 8 - %22 = getelementptr inbounds i32, i32* %21, i64 0 - %23 = load i32, i32* %22, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [5 x i8], [5 x i8]* %20, i64 0, i64 %24 - %26 = load i8, i8* %25, align 1 - %27 = trunc i8 %26 to i1 - %28 = zext i1 %27 to i32 - %29 = icmp eq i32 %28, 1 - br i1 %29, label %30, label %31 - -30: ; preds = %11 - store i1 true, i1* %4, align 1 - br label %66 - -31: ; preds = %11 - store i1 false, i1* %4, align 1 - br label %66 - -32: ; preds = %3 - store i32 1, i32* %8, align 4 - br label %33 - -33: ; preds = %62, %32 - %34 = load i32, i32* %8, align 4 - %35 = icmp slt i32 %34, 5 - br i1 %35, label %36, label %65 - -36: ; preds = %33 - %37 = load i32, i32* %8, align 4 - %38 = load [5 x i8]*, [5 x i8]** %5, align 8 - %39 = load i32*, i32** %6, align 8 - %40 = load i32, i32* %7, align 4 - %41 = call zeroext i1 @_Z6isSafeiPA5_bPii(i32 %37, [5 x i8]* %38, i32* %39, i32 %40) - br i1 %41, label %42, label %61 - -42: ; preds = %36 - %43 = load i32, i32* %8, align 4 - %44 = load i32*, i32** %6, align 8 - %45 = load i32, i32* %7, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %44, i64 %46 - store i32 %43, i32* %47, align 4 - %48 = load [5 x i8]*, [5 x i8]** %5, align 8 - %49 = load i32*, i32** %6, align 8 - %50 = load i32, i32* %7, align 4 - %51 = add nsw i32 %50, 1 - %52 = call zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %48, i32* %49, i32 %51) - %53 = zext i1 %52 to i32 - %54 = icmp eq i32 %53, 1 - br i1 %54, label %55, label %56 - -55: ; preds = %42 - store i1 true, i1* %4, align 1 - br label %66 - -56: ; preds = %42 - %57 = load i32*, i32** %6, align 8 - %58 = load i32, i32* %7, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - store i32 -1, i32* %60, align 4 - br label %61 - -61: ; preds = %56, %36 - br label %62 - -62: ; preds = %61 - %63 = load i32, i32* %8, align 4 - %64 = add nsw i32 %63, 1 - store i32 %64, i32* %8, align 4 - br label %33, !llvm.loop !4 - -65: ; preds = %33 - store i1 false, i1* %4, align 1 - br label %66 - -66: ; preds = %65, %55, %31, %30 - %67 = load i1, i1* %4, align 1 - ret i1 %67 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %0) #5 { - %2 = alloca i1, align 1 - %3 = alloca [5 x i8]*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store [5 x i8]* %0, [5 x i8]** %3, align 8 - %6 = call noalias nonnull i8* @_Znam(i64 20) #9 - %7 = bitcast i8* %6 to i32* - store i32* %7, i32** %4, align 8 - store i32 0, i32* %5, align 4 - br label %8 - -8: ; preds = %16, %1 - %9 = load i32, i32* %5, align 4 - %10 = icmp slt i32 %9, 5 - br i1 %10, label %11, label %19 - -11: ; preds = %8 - %12 = load i32*, i32** %4, align 8 - %13 = load i32, i32* %5, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds i32, i32* %12, i64 %14 - store i32 -1, i32* %15, align 4 - br label %16 - -16: ; preds = %11 - %17 = load i32, i32* %5, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %5, align 4 - br label %8, !llvm.loop !5 - -19: ; preds = %8 - %20 = load i32*, i32** %4, align 8 - %21 = getelementptr inbounds i32, i32* %20, i64 0 - store i32 0, i32* %21, align 4 - %22 = load [5 x i8]*, [5 x i8]** %3, align 8 - %23 = load i32*, i32** %4, align 8 - %24 = call zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %22, i32* %23, i32 1) - %25 = zext i1 %24 to i32 - %26 = icmp eq i32 %25, 0 - br i1 %26, label %27, label %29 - -27: ; preds = %19 - %28 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([25 x i8], [25 x i8]* @.str, i64 0, i64 0)) - store i1 false, i1* %2, align 1 - br label %31 - -29: ; preds = %19 - %30 = load i32*, i32** %4, align 8 - call void @_Z13printSolutionPi(i32* %30) - store i1 true, i1* %2, align 1 - br label %31 - -31: ; preds = %29, %27 - %32 = load i1, i1* %2, align 1 - ret i1 %32 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPi(i32* %0) #5 { - %2 = alloca i32*, align 8 - %3 = alloca i32, align 4 - store i32* %0, i32** %2, align 8 - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([54 x i8], [54 x i8]* @.str.1, i64 0, i64 0)) - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %16, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 5 - br i1 %7, label %8, label %19 - -8: ; preds = %5 - %9 = load i32*, i32** %2, align 8 - %10 = load i32, i32* %3, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds i32, i32* %9, i64 %11 - %13 = load i32, i32* %12, align 4 - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %13) - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %14, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - br label %16 - -16: ; preds = %8 - %17 = load i32, i32* %3, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %3, align 4 - br label %5, !llvm.loop !6 - -19: ; preds = %5 - %20 = load i32*, i32** %2, align 8 - %21 = getelementptr inbounds i32, i32* %20, i64 0 - %22 = load i32, i32* %21, align 4 - %23 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %22) - %24 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %23, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - %25 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [5 x [5 x i8]], align 16 - %3 = alloca [5 x [5 x i8]], align 16 - store i32 0, i32* %1, align 4 - %4 = bitcast [5 x [5 x i8]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([5 x [5 x i8]], [5 x [5 x i8]]* @__const.main.graph1, i32 0, i32 0, i32 0), i64 25, i1 false) - %5 = getelementptr inbounds [5 x [5 x i8]], [5 x [5 x i8]]* %2, i64 0, i64 0 - %6 = call zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %5) - %7 = bitcast [5 x [5 x i8]]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %7, i8* align 16 getelementptr inbounds ([5 x [5 x i8]], [5 x [5 x i8]]* @__const.main.graph2, i32 0, i32 0, i32 0), i64 25, i1 false) - %8 = getelementptr inbounds [5 x [5 x i8]], [5 x [5 x i8]]* %3, i64 0, i64 0 - %9 = call zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll deleted file mode 100644 index 72d044d3..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll +++ /dev/null @@ -1,230 +0,0 @@ -; ModuleID = 'PE-benchmarks/insertion-sort-for-singly-linked-list.cpp' -source_filename = "PE-benchmarks/insertion-sort-for-singly-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%struct.Node = type { i32, %struct.Node* } - -@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 -@.str.1 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 -@.str.2 = private unnamed_addr constant [29 x i8] c"\0ALinked List after sorting \0A\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13insertionSortPP4Node(%struct.Node** %0) #0 { - %2 = alloca %struct.Node**, align 8 - %3 = alloca %struct.Node*, align 8 - %4 = alloca %struct.Node*, align 8 - %5 = alloca %struct.Node*, align 8 - store %struct.Node** %0, %struct.Node*** %2, align 8 - store %struct.Node* null, %struct.Node** %3, align 8 - %6 = load %struct.Node**, %struct.Node*** %2, align 8 - %7 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %7, %struct.Node** %4, align 8 - br label %8 - -8: ; preds = %11, %1 - %9 = load %struct.Node*, %struct.Node** %4, align 8 - %10 = icmp ne %struct.Node* %9, null - br i1 %10, label %11, label %17 - -11: ; preds = %8 - %12 = load %struct.Node*, %struct.Node** %4, align 8 - %13 = getelementptr inbounds %struct.Node, %struct.Node* %12, i32 0, i32 1 - %14 = load %struct.Node*, %struct.Node** %13, align 8 - store %struct.Node* %14, %struct.Node** %5, align 8 - %15 = load %struct.Node*, %struct.Node** %4, align 8 - call void @_Z12sortedInsertPP4NodeS0_(%struct.Node** %3, %struct.Node* %15) - %16 = load %struct.Node*, %struct.Node** %5, align 8 - store %struct.Node* %16, %struct.Node** %4, align 8 - br label %8, !llvm.loop !2 - -17: ; preds = %8 - %18 = load %struct.Node*, %struct.Node** %3, align 8 - %19 = load %struct.Node**, %struct.Node*** %2, align 8 - store %struct.Node* %18, %struct.Node** %19, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z12sortedInsertPP4NodeS0_(%struct.Node** %0, %struct.Node* %1) #1 { - %3 = alloca %struct.Node**, align 8 - %4 = alloca %struct.Node*, align 8 - %5 = alloca %struct.Node*, align 8 - store %struct.Node** %0, %struct.Node*** %3, align 8 - store %struct.Node* %1, %struct.Node** %4, align 8 - %6 = load %struct.Node**, %struct.Node*** %3, align 8 - %7 = load %struct.Node*, %struct.Node** %6, align 8 - %8 = icmp eq %struct.Node* %7, null - br i1 %8, label %18, label %9 - -9: ; preds = %2 - %10 = load %struct.Node**, %struct.Node*** %3, align 8 - %11 = load %struct.Node*, %struct.Node** %10, align 8 - %12 = getelementptr inbounds %struct.Node, %struct.Node* %11, i32 0, i32 0 - %13 = load i32, i32* %12, align 8 - %14 = load %struct.Node*, %struct.Node** %4, align 8 - %15 = getelementptr inbounds %struct.Node, %struct.Node* %14, i32 0, i32 0 - %16 = load i32, i32* %15, align 8 - %17 = icmp sge i32 %13, %16 - br i1 %17, label %18, label %25 - -18: ; preds = %9, %2 - %19 = load %struct.Node**, %struct.Node*** %3, align 8 - %20 = load %struct.Node*, %struct.Node** %19, align 8 - %21 = load %struct.Node*, %struct.Node** %4, align 8 - %22 = getelementptr inbounds %struct.Node, %struct.Node* %21, i32 0, i32 1 - store %struct.Node* %20, %struct.Node** %22, align 8 - %23 = load %struct.Node*, %struct.Node** %4, align 8 - %24 = load %struct.Node**, %struct.Node*** %3, align 8 - store %struct.Node* %23, %struct.Node** %24, align 8 - br label %58 - -25: ; preds = %9 - %26 = load %struct.Node**, %struct.Node*** %3, align 8 - %27 = load %struct.Node*, %struct.Node** %26, align 8 - store %struct.Node* %27, %struct.Node** %5, align 8 - br label %28 - -28: ; preds = %45, %25 - %29 = load %struct.Node*, %struct.Node** %5, align 8 - %30 = getelementptr inbounds %struct.Node, %struct.Node* %29, i32 0, i32 1 - %31 = load %struct.Node*, %struct.Node** %30, align 8 - %32 = icmp ne %struct.Node* %31, null - br i1 %32, label %33, label %43 - -33: ; preds = %28 - %34 = load %struct.Node*, %struct.Node** %5, align 8 - %35 = getelementptr inbounds %struct.Node, %struct.Node* %34, i32 0, i32 1 - %36 = load %struct.Node*, %struct.Node** %35, align 8 - %37 = getelementptr inbounds %struct.Node, %struct.Node* %36, i32 0, i32 0 - %38 = load i32, i32* %37, align 8 - %39 = load %struct.Node*, %struct.Node** %4, align 8 - %40 = getelementptr inbounds %struct.Node, %struct.Node* %39, i32 0, i32 0 - %41 = load i32, i32* %40, align 8 - %42 = icmp slt i32 %38, %41 - br label %43 - -43: ; preds = %33, %28 - %44 = phi i1 [ false, %28 ], [ %42, %33 ] - br i1 %44, label %45, label %49 - -45: ; preds = %43 - %46 = load %struct.Node*, %struct.Node** %5, align 8 - %47 = getelementptr inbounds %struct.Node, %struct.Node* %46, i32 0, i32 1 - %48 = load %struct.Node*, %struct.Node** %47, align 8 - store %struct.Node* %48, %struct.Node** %5, align 8 - br label %28, !llvm.loop !4 - -49: ; preds = %43 - %50 = load %struct.Node*, %struct.Node** %5, align 8 - %51 = getelementptr inbounds %struct.Node, %struct.Node* %50, i32 0, i32 1 - %52 = load %struct.Node*, %struct.Node** %51, align 8 - %53 = load %struct.Node*, %struct.Node** %4, align 8 - %54 = getelementptr inbounds %struct.Node, %struct.Node* %53, i32 0, i32 1 - store %struct.Node* %52, %struct.Node** %54, align 8 - %55 = load %struct.Node*, %struct.Node** %4, align 8 - %56 = load %struct.Node*, %struct.Node** %5, align 8 - %57 = getelementptr inbounds %struct.Node, %struct.Node* %56, i32 0, i32 1 - store %struct.Node* %55, %struct.Node** %57, align 8 - br label %58 - -58: ; preds = %49, %18 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%struct.Node* %0) #0 { - %2 = alloca %struct.Node*, align 8 - %3 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %2, align 8 - %4 = load %struct.Node*, %struct.Node** %2, align 8 - store %struct.Node* %4, %struct.Node** %3, align 8 - br label %5 - -5: ; preds = %8, %1 - %6 = load %struct.Node*, %struct.Node** %3, align 8 - %7 = icmp ne %struct.Node* %6, null - br i1 %7, label %8, label %16 - -8: ; preds = %5 - %9 = load %struct.Node*, %struct.Node** %3, align 8 - %10 = getelementptr inbounds %struct.Node, %struct.Node* %9, i32 0, i32 0 - %11 = load i32, i32* %10, align 8 - %12 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %11) - %13 = load %struct.Node*, %struct.Node** %3, align 8 - %14 = getelementptr inbounds %struct.Node, %struct.Node* %13, i32 0, i32 1 - %15 = load %struct.Node*, %struct.Node** %14, align 8 - store %struct.Node* %15, %struct.Node** %3, align 8 - br label %5, !llvm.loop !5 - -16: ; preds = %5 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #2 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%struct.Node** %0, i32 %1) #0 { - %3 = alloca %struct.Node**, align 8 - %4 = alloca i32, align 4 - %5 = alloca %struct.Node*, align 8 - store %struct.Node** %0, %struct.Node*** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 16) #5 - %7 = bitcast i8* %6 to %struct.Node* - store %struct.Node* %7, %struct.Node** %5, align 8 - %8 = load i32, i32* %4, align 4 - %9 = load %struct.Node*, %struct.Node** %5, align 8 - %10 = getelementptr inbounds %struct.Node, %struct.Node* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load %struct.Node**, %struct.Node*** %3, align 8 - %12 = load %struct.Node*, %struct.Node** %11, align 8 - %13 = load %struct.Node*, %struct.Node** %5, align 8 - %14 = getelementptr inbounds %struct.Node, %struct.Node* %13, i32 0, i32 1 - store %struct.Node* %12, %struct.Node** %14, align 8 - %15 = load %struct.Node*, %struct.Node** %5, align 8 - %16 = load %struct.Node**, %struct.Node*** %3, align 8 - store %struct.Node* %15, %struct.Node** %16, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #3 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca %struct.Node*, align 8 - store i32 0, i32* %1, align 4 - store %struct.Node* null, %struct.Node** %2, align 8 - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 5) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 20) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 4) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 3) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 30) - %3 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.1, i64 0, i64 0)) - %4 = load %struct.Node*, %struct.Node** %2, align 8 - call void @_Z9printListP4Node(%struct.Node* %4) - call void @_Z13insertionSortPP4Node(%struct.Node** %2) - %5 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.2, i64 0, i64 0)) - %6 = load %struct.Node*, %struct.Node** %2, align 8 - call void @_Z9printListP4Node(%struct.Node* %6) - ret i32 0 -} - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/karatsuba.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/karatsuba.ll deleted file mode 100644 index 2e58b52a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/karatsuba.ll +++ /dev/null @@ -1,1318 +0,0 @@ -; ModuleID = 'PE-benchmarks/karatsuba.cpp' -source_filename = "PE-benchmarks/karatsuba.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_ = comdat any - -$_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_ = comdat any - -$_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@.str = private unnamed_addr constant [5 x i8] c"%ld\0A\00", align 1 -@.str.1 = private unnamed_addr constant [5 x i8] c"1100\00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c"1010\00", align 1 -@.str.3 = private unnamed_addr constant [4 x i8] c"110\00", align 1 -@.str.4 = private unnamed_addr constant [3 x i8] c"11\00", align 1 -@.str.5 = private unnamed_addr constant [2 x i8] c"1\00", align 1 -@.str.6 = private unnamed_addr constant [2 x i8] c"0\00", align 1 -@.str.7 = private unnamed_addr constant [4 x i8] c"111\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_karatsuba.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(%"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - %10 = alloca i32, align 4 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %4, align 8 - store %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"** %5, align 8 - %12 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %13 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %6, align 4 - %15 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - %16 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15) #3 - %17 = trunc i64 %16 to i32 - store i32 %17, i32* %7, align 4 - %18 = load i32, i32* %6, align 4 - %19 = load i32, i32* %7, align 4 - %20 = icmp slt i32 %18, %19 - br i1 %20, label %21, label %37 - -21: ; preds = %2 - store i32 0, i32* %8, align 4 - br label %22 - -22: ; preds = %32, %21 - %23 = load i32, i32* %8, align 4 - %24 = load i32, i32* %7, align 4 - %25 = load i32, i32* %6, align 4 - %26 = sub nsw i32 %24, %25 - %27 = icmp slt i32 %23, %26 - br i1 %27, label %28, label %35 - -28: ; preds = %22 - %29 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %9, i8 signext 48, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %29) - %30 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %4, align 8 - %31 = call nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %30, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %32 - -32: ; preds = %28 - %33 = load i32, i32* %8, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %8, align 4 - br label %22, !llvm.loop !2 - -35: ; preds = %22 - %36 = load i32, i32* %7, align 4 - store i32 %36, i32* %3, align 4 - br label %59 - -37: ; preds = %2 - %38 = load i32, i32* %6, align 4 - %39 = load i32, i32* %7, align 4 - %40 = icmp sgt i32 %38, %39 - br i1 %40, label %41, label %56 - -41: ; preds = %37 - store i32 0, i32* %10, align 4 - br label %42 - -42: ; preds = %52, %41 - %43 = load i32, i32* %10, align 4 - %44 = load i32, i32* %6, align 4 - %45 = load i32, i32* %7, align 4 - %46 = sub nsw i32 %44, %45 - %47 = icmp slt i32 %43, %46 - br i1 %47, label %48, label %55 - -48: ; preds = %42 - %49 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %11, i8 signext 48, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %49) - %50 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - %51 = call nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %50, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %11) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - br label %52 - -52: ; preds = %48 - %53 = load i32, i32* %10, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %10, align 4 - br label %42, !llvm.loop !4 - -55: ; preds = %42 - br label %56 - -56: ; preds = %55, %37 - br label %57 - -57: ; preds = %56 - %58 = load i32, i32* %6, align 4 - store i32 %58, i32* %3, align 4 - br label %59 - -59: ; preds = %57, %35 - %60 = load i32, i32* %3, align 4 - ret i32 %60 -} - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, i8 signext %1, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) #4 comdat personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca i8, align 1 - %6 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %7 = alloca i1, align 1 - %8 = alloca %"class.std::allocator", align 1 - %9 = alloca %"class.std::allocator", align 1 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - %12 = alloca i64, align 8 - %13 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %13, i8** %4, align 8 - store i8 %1, i8* %5, align 1 - store %"class.std::__cxx11::basic_string"* %2, %"class.std::__cxx11::basic_string"** %6, align 8 - store i1 false, i1* %7, align 1 - %14 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %6, align 8 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %9, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - invoke void @_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %8, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) - to label %15 unwind label %28 - -15: ; preds = %3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %8) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %9) #3 - %16 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %6, align 8 - %17 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16) #3 - store i64 %17, i64* %12, align 8 - %18 = load i64, i64* %12, align 8 - %19 = add i64 %18, 1 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %19) - to label %20 unwind label %32 - -20: ; preds = %15 - %21 = load i8, i8* %5, align 1 - %22 = invoke nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEmc(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 1, i8 signext %21) - to label %23 unwind label %32 - -23: ; preds = %20 - %24 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %6, align 8 - %25 = invoke nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %24) - to label %26 unwind label %32 - -26: ; preds = %23 - store i1 true, i1* %7, align 1 - %27 = load i1, i1* %7, align 1 - br i1 %27, label %37, label %36 - -28: ; preds = %3 - %29 = landingpad { i8*, i32 } - cleanup - %30 = extractvalue { i8*, i32 } %29, 0 - store i8* %30, i8** %10, align 8 - %31 = extractvalue { i8*, i32 } %29, 1 - store i32 %31, i32* %11, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %9) #3 - br label %38 - -32: ; preds = %23, %20, %15 - %33 = landingpad { i8*, i32 } - cleanup - %34 = extractvalue { i8*, i32 } %33, 0 - store i8* %34, i8** %10, align 8 - %35 = extractvalue { i8*, i32 } %33, 1 - store i32 %35, i32* %11, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - br label %38 - -36: ; preds = %26 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - br label %37 - -37: ; preds = %36, %26 - ret void - -38: ; preds = %32, %28 - %39 = load i8*, i8** %10, align 8 - %40 = load i32, i32* %11, align 4 - %41 = insertvalue { i8*, i32 } undef, i8* %39, 0 - %42 = insertvalue { i8*, i32 } %41, i32 %40, 1 - resume { i8*, i32 } %42 -} - -; Function Attrs: nounwind -declare dso_local nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) #2 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"* %2) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %16, i8** %4, align 8 - store i1 false, i1* %5, align 1 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - %17 = invoke i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(%"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %18 unwind label %63 - -18: ; preds = %3 - store i32 %17, i32* %6, align 4 - store i32 0, i32* %9, align 4 - %19 = load i32, i32* %6, align 4 - %20 = sub nsw i32 %19, 1 - store i32 %20, i32* %10, align 4 - br label %21 - -21: ; preds = %60, %18 - %22 = load i32, i32* %10, align 4 - %23 = icmp sge i32 %22, 0 - br i1 %23, label %24, label %67 - -24: ; preds = %21 - %25 = load i32, i32* %10, align 4 - %26 = sext i32 %25 to i64 - %27 = invoke nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %26) - to label %28 unwind label %63 - -28: ; preds = %24 - %29 = load i8, i8* %27, align 1 - %30 = sext i8 %29 to i32 - %31 = sub nsw i32 %30, 48 - store i32 %31, i32* %11, align 4 - %32 = load i32, i32* %10, align 4 - %33 = sext i32 %32 to i64 - %34 = invoke nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i64 %33) - to label %35 unwind label %63 - -35: ; preds = %28 - %36 = load i8, i8* %34, align 1 - %37 = sext i8 %36 to i32 - %38 = sub nsw i32 %37, 48 - store i32 %38, i32* %12, align 4 - %39 = load i32, i32* %11, align 4 - %40 = load i32, i32* %12, align 4 - %41 = xor i32 %39, %40 - %42 = load i32, i32* %9, align 4 - %43 = xor i32 %41, %42 - %44 = add nsw i32 %43, 48 - store i32 %44, i32* %13, align 4 - %45 = load i32, i32* %13, align 4 - %46 = trunc i32 %45 to i8 - invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %14, i8 signext %46, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - to label %47 unwind label %63 - -47: ; preds = %35 - %48 = call nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - %49 = load i32, i32* %11, align 4 - %50 = load i32, i32* %12, align 4 - %51 = and i32 %49, %50 - %52 = load i32, i32* %12, align 4 - %53 = load i32, i32* %9, align 4 - %54 = and i32 %52, %53 - %55 = or i32 %51, %54 - %56 = load i32, i32* %11, align 4 - %57 = load i32, i32* %9, align 4 - %58 = and i32 %56, %57 - %59 = or i32 %55, %58 - store i32 %59, i32* %9, align 4 - br label %60 - -60: ; preds = %47 - %61 = load i32, i32* %10, align 4 - %62 = add nsw i32 %61, -1 - store i32 %62, i32* %10, align 4 - br label %21, !llvm.loop !5 - -63: ; preds = %70, %35, %28, %24, %3 - %64 = landingpad { i8*, i32 } - cleanup - %65 = extractvalue { i8*, i32 } %64, 0 - store i8* %65, i8** %7, align 8 - %66 = extractvalue { i8*, i32 } %64, 1 - store i32 %66, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - br label %77 - -67: ; preds = %21 - %68 = load i32, i32* %9, align 4 - %69 = icmp ne i32 %68, 0 - br i1 %69, label %70, label %73 - -70: ; preds = %67 - invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EES5_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %15, i8 signext 49, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - to label %71 unwind label %63 - -71: ; preds = %70 - %72 = call nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %15) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15) #3 - br label %73 - -73: ; preds = %71, %67 - store i1 true, i1* %5, align 1 - %74 = load i1, i1* %5, align 1 - br i1 %74, label %76, label %75 - -75: ; preds = %73 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - br label %76 - -76: ; preds = %75, %73 - ret void - -77: ; preds = %63 - %78 = load i8*, i8** %7, align 8 - %79 = load i32, i32* %8, align 4 - %80 = insertvalue { i8*, i32 } undef, i8* %78, 0 - %81 = insertvalue { i8*, i32 } %80, i32 %79, 1 - resume { i8*, i32 } %81 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -declare dso_local i32 @__gxx_personality_v0(...) - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"* %1) #4 { - %3 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 0) - %4 = load i8, i8* %3, align 1 - %5 = sext i8 %4 to i32 - %6 = sub nsw i32 %5, 48 - %7 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 0) - %8 = load i8, i8* %7, align 1 - %9 = sext i8 %8 to i32 - %10 = sub nsw i32 %9, 48 - %11 = mul nsw i32 %6, %10 - ret i32 %11 -} - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"* %1) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i64, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::__cxx11::basic_string", align 8 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca i64, align 8 - %16 = alloca %"class.std::__cxx11::basic_string", align 8 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - %18 = alloca i64, align 8 - %19 = alloca %"class.std::__cxx11::basic_string", align 8 - %20 = alloca %"class.std::__cxx11::basic_string", align 8 - %21 = alloca i64, align 8 - %22 = alloca %"class.std::__cxx11::basic_string", align 8 - %23 = alloca %"class.std::__cxx11::basic_string", align 8 - %24 = alloca %"class.std::__cxx11::basic_string", align 8 - %25 = alloca %"class.std::__cxx11::basic_string", align 8 - %26 = alloca %"class.std::__cxx11::basic_string", align 8 - %27 = alloca %"class.std::__cxx11::basic_string", align 8 - %28 = call i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(%"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - store i32 %28, i32* %4, align 4 - %29 = load i32, i32* %4, align 4 - %30 = icmp eq i32 %29, 0 - br i1 %30, label %31, label %32 - -31: ; preds = %2 - store i64 0, i64* %3, align 8 - br label %171 - -32: ; preds = %2 - %33 = load i32, i32* %4, align 4 - %34 = icmp eq i32 %33, 1 - br i1 %34, label %35, label %49 - -35: ; preds = %32 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - to label %36 unwind label %40 - -36: ; preds = %35 - %37 = invoke i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %5, %"class.std::__cxx11::basic_string"* %6) - to label %38 unwind label %44 - -38: ; preds = %36 - %39 = sext i32 %37 to i64 - store i64 %39, i64* %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %171 - -40: ; preds = %35 - %41 = landingpad { i8*, i32 } - cleanup - %42 = extractvalue { i8*, i32 } %41, 0 - store i8* %42, i8** %7, align 8 - %43 = extractvalue { i8*, i32 } %41, 1 - store i32 %43, i32* %8, align 4 - br label %48 - -44: ; preds = %36 - %45 = landingpad { i8*, i32 } - cleanup - %46 = extractvalue { i8*, i32 } %45, 0 - store i8* %46, i8** %7, align 8 - %47 = extractvalue { i8*, i32 } %45, 1 - store i32 %47, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %48 - -48: ; preds = %44, %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %173 - -49: ; preds = %32 - %50 = load i32, i32* %4, align 4 - %51 = sdiv i32 %50, 2 - store i32 %51, i32* %9, align 4 - %52 = load i32, i32* %4, align 4 - %53 = load i32, i32* %9, align 4 - %54 = sub nsw i32 %52, %53 - store i32 %54, i32* %10, align 4 - %55 = load i32, i32* %9, align 4 - %56 = sext i32 %55 to i64 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %11, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 0, i64 %56) - %57 = load i32, i32* %9, align 4 - %58 = sext i32 %57 to i64 - %59 = load i32, i32* %10, align 4 - %60 = sext i32 %59 to i64 - invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %12, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %58, i64 %60) - to label %61 unwind label %104 - -61: ; preds = %49 - %62 = load i32, i32* %9, align 4 - %63 = sext i32 %62 to i64 - invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %13, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 0, i64 %63) - to label %64 unwind label %108 - -64: ; preds = %61 - %65 = load i32, i32* %9, align 4 - %66 = sext i32 %65 to i64 - %67 = load i32, i32* %10, align 4 - %68 = sext i32 %67 to i64 - invoke void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %14, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %66, i64 %68) - to label %69 unwind label %112 - -69: ; preds = %64 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %11) - to label %70 unwind label %116 - -70: ; preds = %69 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %13) - to label %71 unwind label %120 - -71: ; preds = %70 - %72 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %16, %"class.std::__cxx11::basic_string"* %17) - to label %73 unwind label %124 - -73: ; preds = %71 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16) #3 - store i64 %72, i64* %15, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %12) - to label %74 unwind label %116 - -74: ; preds = %73 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %20, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %14) - to label %75 unwind label %129 - -75: ; preds = %74 - %76 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %19, %"class.std::__cxx11::basic_string"* %20) - to label %77 unwind label %133 - -77: ; preds = %75 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %20) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19) #3 - store i64 %76, i64* %18, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %23, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %11) - to label %78 unwind label %116 - -78: ; preds = %77 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %24, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %12) - to label %79 unwind label %138 - -79: ; preds = %78 - invoke void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %22, %"class.std::__cxx11::basic_string"* %23, %"class.std::__cxx11::basic_string"* %24) - to label %80 unwind label %142 - -80: ; preds = %79 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %26, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %13) - to label %81 unwind label %146 - -81: ; preds = %80 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %27, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %14) - to label %82 unwind label %150 - -82: ; preds = %81 - invoke void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %25, %"class.std::__cxx11::basic_string"* %26, %"class.std::__cxx11::basic_string"* %27) - to label %83 unwind label %154 - -83: ; preds = %82 - %84 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %22, %"class.std::__cxx11::basic_string"* %25) - to label %85 unwind label %158 - -85: ; preds = %83 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %25) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %27) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %26) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %22) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %24) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %23) #3 - store i64 %84, i64* %21, align 8 - %86 = load i64, i64* %15, align 8 - %87 = load i32, i32* %10, align 4 - %88 = mul nsw i32 2, %87 - %89 = shl i32 1, %88 - %90 = sext i32 %89 to i64 - %91 = mul nsw i64 %86, %90 - %92 = load i64, i64* %21, align 8 - %93 = load i64, i64* %15, align 8 - %94 = sub nsw i64 %92, %93 - %95 = load i64, i64* %18, align 8 - %96 = sub nsw i64 %94, %95 - %97 = load i32, i32* %10, align 4 - %98 = shl i32 1, %97 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %96, %99 - %101 = add nsw i64 %91, %100 - %102 = load i64, i64* %18, align 8 - %103 = add nsw i64 %101, %102 - store i64 %103, i64* %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - br label %171 - -104: ; preds = %49 - %105 = landingpad { i8*, i32 } - cleanup - %106 = extractvalue { i8*, i32 } %105, 0 - store i8* %106, i8** %7, align 8 - %107 = extractvalue { i8*, i32 } %105, 1 - store i32 %107, i32* %8, align 4 - br label %170 - -108: ; preds = %61 - %109 = landingpad { i8*, i32 } - cleanup - %110 = extractvalue { i8*, i32 } %109, 0 - store i8* %110, i8** %7, align 8 - %111 = extractvalue { i8*, i32 } %109, 1 - store i32 %111, i32* %8, align 4 - br label %169 - -112: ; preds = %64 - %113 = landingpad { i8*, i32 } - cleanup - %114 = extractvalue { i8*, i32 } %113, 0 - store i8* %114, i8** %7, align 8 - %115 = extractvalue { i8*, i32 } %113, 1 - store i32 %115, i32* %8, align 4 - br label %168 - -116: ; preds = %77, %73, %69 - %117 = landingpad { i8*, i32 } - cleanup - %118 = extractvalue { i8*, i32 } %117, 0 - store i8* %118, i8** %7, align 8 - %119 = extractvalue { i8*, i32 } %117, 1 - store i32 %119, i32* %8, align 4 - br label %167 - -120: ; preds = %70 - %121 = landingpad { i8*, i32 } - cleanup - %122 = extractvalue { i8*, i32 } %121, 0 - store i8* %122, i8** %7, align 8 - %123 = extractvalue { i8*, i32 } %121, 1 - store i32 %123, i32* %8, align 4 - br label %128 - -124: ; preds = %71 - %125 = landingpad { i8*, i32 } - cleanup - %126 = extractvalue { i8*, i32 } %125, 0 - store i8* %126, i8** %7, align 8 - %127 = extractvalue { i8*, i32 } %125, 1 - store i32 %127, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17) #3 - br label %128 - -128: ; preds = %124, %120 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %16) #3 - br label %167 - -129: ; preds = %74 - %130 = landingpad { i8*, i32 } - cleanup - %131 = extractvalue { i8*, i32 } %130, 0 - store i8* %131, i8** %7, align 8 - %132 = extractvalue { i8*, i32 } %130, 1 - store i32 %132, i32* %8, align 4 - br label %137 - -133: ; preds = %75 - %134 = landingpad { i8*, i32 } - cleanup - %135 = extractvalue { i8*, i32 } %134, 0 - store i8* %135, i8** %7, align 8 - %136 = extractvalue { i8*, i32 } %134, 1 - store i32 %136, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %20) #3 - br label %137 - -137: ; preds = %133, %129 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19) #3 - br label %167 - -138: ; preds = %78 - %139 = landingpad { i8*, i32 } - cleanup - %140 = extractvalue { i8*, i32 } %139, 0 - store i8* %140, i8** %7, align 8 - %141 = extractvalue { i8*, i32 } %139, 1 - store i32 %141, i32* %8, align 4 - br label %166 - -142: ; preds = %79 - %143 = landingpad { i8*, i32 } - cleanup - %144 = extractvalue { i8*, i32 } %143, 0 - store i8* %144, i8** %7, align 8 - %145 = extractvalue { i8*, i32 } %143, 1 - store i32 %145, i32* %8, align 4 - br label %165 - -146: ; preds = %80 - %147 = landingpad { i8*, i32 } - cleanup - %148 = extractvalue { i8*, i32 } %147, 0 - store i8* %148, i8** %7, align 8 - %149 = extractvalue { i8*, i32 } %147, 1 - store i32 %149, i32* %8, align 4 - br label %164 - -150: ; preds = %81 - %151 = landingpad { i8*, i32 } - cleanup - %152 = extractvalue { i8*, i32 } %151, 0 - store i8* %152, i8** %7, align 8 - %153 = extractvalue { i8*, i32 } %151, 1 - store i32 %153, i32* %8, align 4 - br label %163 - -154: ; preds = %82 - %155 = landingpad { i8*, i32 } - cleanup - %156 = extractvalue { i8*, i32 } %155, 0 - store i8* %156, i8** %7, align 8 - %157 = extractvalue { i8*, i32 } %155, 1 - store i32 %157, i32* %8, align 4 - br label %162 - -158: ; preds = %83 - %159 = landingpad { i8*, i32 } - cleanup - %160 = extractvalue { i8*, i32 } %159, 0 - store i8* %160, i8** %7, align 8 - %161 = extractvalue { i8*, i32 } %159, 1 - store i32 %161, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %25) #3 - br label %162 - -162: ; preds = %158, %154 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %27) #3 - br label %163 - -163: ; preds = %162, %150 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %26) #3 - br label %164 - -164: ; preds = %163, %146 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %22) #3 - br label %165 - -165: ; preds = %164, %142 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %24) #3 - br label %166 - -166: ; preds = %165, %138 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %23) #3 - br label %167 - -167: ; preds = %166, %137, %128, %116 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - br label %168 - -168: ; preds = %167, %112 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - br label %169 - -169: ; preds = %168, %108 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - br label %170 - -170: ; preds = %169, %104 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - br label %173 - -171: ; preds = %85, %38, %31 - %172 = load i64, i64* %3, align 8 - ret i64 %172 - -173: ; preds = %170, %48 - %174 = load i8*, i8** %7, align 8 - %175 = load i32, i32* %8, align 4 - %176 = insertvalue { i8*, i32 } undef, i8* %174, 0 - %177 = insertvalue { i8*, i32 } %176, i32 %175, 1 - resume { i8*, i32 } %177 -} - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64, i64) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca %"class.std::__cxx11::basic_string", align 8 - %2 = alloca %"class.std::allocator", align 1 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca %"class.std::allocator", align 1 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca %"class.std::allocator", align 1 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - %10 = alloca %"class.std::allocator", align 1 - %11 = alloca %"class.std::__cxx11::basic_string", align 8 - %12 = alloca %"class.std::allocator", align 1 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca %"class.std::allocator", align 1 - %15 = alloca %"class.std::__cxx11::basic_string", align 8 - %16 = alloca %"class.std::allocator", align 1 - %17 = alloca %"class.std::__cxx11::basic_string", align 8 - %18 = alloca %"class.std::allocator", align 1 - %19 = alloca %"class.std::__cxx11::basic_string", align 8 - %20 = alloca %"class.std::allocator", align 1 - %21 = alloca %"class.std::__cxx11::basic_string", align 8 - %22 = alloca %"class.std::allocator", align 1 - %23 = alloca %"class.std::__cxx11::basic_string", align 8 - %24 = alloca %"class.std::allocator", align 1 - %25 = alloca %"class.std::__cxx11::basic_string", align 8 - %26 = alloca %"class.std::allocator", align 1 - %27 = alloca %"class.std::__cxx11::basic_string", align 8 - %28 = alloca %"class.std::allocator", align 1 - %29 = alloca %"class.std::__cxx11::basic_string", align 8 - %30 = alloca %"class.std::allocator", align 1 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %2) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %2) - to label %31 unwind label %73 - -31: ; preds = %0 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %6) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %6) - to label %32 unwind label %77 - -32: ; preds = %31 - %33 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"* %5) - to label %34 unwind label %81 - -34: ; preds = %32 - %35 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %33) - to label %36 unwind label %81 - -36: ; preds = %34 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %2) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.3, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %8) - to label %37 unwind label %87 - -37: ; preds = %36 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %10) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %10) - to label %38 unwind label %91 - -38: ; preds = %37 - %39 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %7, %"class.std::__cxx11::basic_string"* %9) - to label %40 unwind label %95 - -40: ; preds = %38 - %41 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %39) - to label %42 unwind label %95 - -42: ; preds = %40 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %10) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %12) - to label %43 unwind label %101 - -43: ; preds = %42 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %14) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %14) - to label %44 unwind label %105 - -44: ; preds = %43 - %45 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %11, %"class.std::__cxx11::basic_string"* %13) - to label %46 unwind label %109 - -46: ; preds = %44 - %47 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %45) - to label %48 unwind label %109 - -48: ; preds = %46 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %16) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.5, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %16) - to label %49 unwind label %115 - -49: ; preds = %48 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %18) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %18) - to label %50 unwind label %119 - -50: ; preds = %49 - %51 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %15, %"class.std::__cxx11::basic_string"* %17) - to label %52 unwind label %123 - -52: ; preds = %50 - %53 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %51) - to label %54 unwind label %123 - -54: ; preds = %52 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %18) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %16) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %20) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.6, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %20) - to label %55 unwind label %129 - -55: ; preds = %54 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %22) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %21, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %22) - to label %56 unwind label %133 - -56: ; preds = %55 - %57 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %19, %"class.std::__cxx11::basic_string"* %21) - to label %58 unwind label %137 - -58: ; preds = %56 - %59 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %57) - to label %60 unwind label %137 - -60: ; preds = %58 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %21) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %22) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %20) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %24) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %23, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.7, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %24) - to label %61 unwind label %143 - -61: ; preds = %60 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %26) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %25, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.7, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %26) - to label %62 unwind label %147 - -62: ; preds = %61 - %63 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %23, %"class.std::__cxx11::basic_string"* %25) - to label %64 unwind label %151 - -64: ; preds = %62 - %65 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %63) - to label %66 unwind label %151 - -66: ; preds = %64 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %25) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %26) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %23) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %24) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %28) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %27, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %28) - to label %67 unwind label %157 - -67: ; preds = %66 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %30) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %29, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %30) - to label %68 unwind label %161 - -68: ; preds = %67 - %69 = invoke i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %27, %"class.std::__cxx11::basic_string"* %29) - to label %70 unwind label %165 - -70: ; preds = %68 - %71 = invoke i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 %69) - to label %72 unwind label %165 - -72: ; preds = %70 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %29) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %30) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %27) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %28) #3 - ret i32 0 - -73: ; preds = %0 - %74 = landingpad { i8*, i32 } - cleanup - %75 = extractvalue { i8*, i32 } %74, 0 - store i8* %75, i8** %3, align 8 - %76 = extractvalue { i8*, i32 } %74, 1 - store i32 %76, i32* %4, align 4 - br label %86 - -77: ; preds = %31 - %78 = landingpad { i8*, i32 } - cleanup - %79 = extractvalue { i8*, i32 } %78, 0 - store i8* %79, i8** %3, align 8 - %80 = extractvalue { i8*, i32 } %78, 1 - store i32 %80, i32* %4, align 4 - br label %85 - -81: ; preds = %34, %32 - %82 = landingpad { i8*, i32 } - cleanup - %83 = extractvalue { i8*, i32 } %82, 0 - store i8* %83, i8** %3, align 8 - %84 = extractvalue { i8*, i32 } %82, 1 - store i32 %84, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %85 - -85: ; preds = %81, %77 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - br label %86 - -86: ; preds = %85, %73 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %2) #3 - br label %171 - -87: ; preds = %36 - %88 = landingpad { i8*, i32 } - cleanup - %89 = extractvalue { i8*, i32 } %88, 0 - store i8* %89, i8** %3, align 8 - %90 = extractvalue { i8*, i32 } %88, 1 - store i32 %90, i32* %4, align 4 - br label %100 - -91: ; preds = %37 - %92 = landingpad { i8*, i32 } - cleanup - %93 = extractvalue { i8*, i32 } %92, 0 - store i8* %93, i8** %3, align 8 - %94 = extractvalue { i8*, i32 } %92, 1 - store i32 %94, i32* %4, align 4 - br label %99 - -95: ; preds = %40, %38 - %96 = landingpad { i8*, i32 } - cleanup - %97 = extractvalue { i8*, i32 } %96, 0 - store i8* %97, i8** %3, align 8 - %98 = extractvalue { i8*, i32 } %96, 1 - store i32 %98, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %99 - -99: ; preds = %95, %91 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %10) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - br label %100 - -100: ; preds = %99, %87 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 - br label %171 - -101: ; preds = %42 - %102 = landingpad { i8*, i32 } - cleanup - %103 = extractvalue { i8*, i32 } %102, 0 - store i8* %103, i8** %3, align 8 - %104 = extractvalue { i8*, i32 } %102, 1 - store i32 %104, i32* %4, align 4 - br label %114 - -105: ; preds = %43 - %106 = landingpad { i8*, i32 } - cleanup - %107 = extractvalue { i8*, i32 } %106, 0 - store i8* %107, i8** %3, align 8 - %108 = extractvalue { i8*, i32 } %106, 1 - store i32 %108, i32* %4, align 4 - br label %113 - -109: ; preds = %46, %44 - %110 = landingpad { i8*, i32 } - cleanup - %111 = extractvalue { i8*, i32 } %110, 0 - store i8* %111, i8** %3, align 8 - %112 = extractvalue { i8*, i32 } %110, 1 - store i32 %112, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - br label %113 - -113: ; preds = %109, %105 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %14) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %11) #3 - br label %114 - -114: ; preds = %113, %101 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 - br label %171 - -115: ; preds = %48 - %116 = landingpad { i8*, i32 } - cleanup - %117 = extractvalue { i8*, i32 } %116, 0 - store i8* %117, i8** %3, align 8 - %118 = extractvalue { i8*, i32 } %116, 1 - store i32 %118, i32* %4, align 4 - br label %128 - -119: ; preds = %49 - %120 = landingpad { i8*, i32 } - cleanup - %121 = extractvalue { i8*, i32 } %120, 0 - store i8* %121, i8** %3, align 8 - %122 = extractvalue { i8*, i32 } %120, 1 - store i32 %122, i32* %4, align 4 - br label %127 - -123: ; preds = %52, %50 - %124 = landingpad { i8*, i32 } - cleanup - %125 = extractvalue { i8*, i32 } %124, 0 - store i8* %125, i8** %3, align 8 - %126 = extractvalue { i8*, i32 } %124, 1 - store i32 %126, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %17) #3 - br label %127 - -127: ; preds = %123, %119 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %18) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %15) #3 - br label %128 - -128: ; preds = %127, %115 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %16) #3 - br label %171 - -129: ; preds = %54 - %130 = landingpad { i8*, i32 } - cleanup - %131 = extractvalue { i8*, i32 } %130, 0 - store i8* %131, i8** %3, align 8 - %132 = extractvalue { i8*, i32 } %130, 1 - store i32 %132, i32* %4, align 4 - br label %142 - -133: ; preds = %55 - %134 = landingpad { i8*, i32 } - cleanup - %135 = extractvalue { i8*, i32 } %134, 0 - store i8* %135, i8** %3, align 8 - %136 = extractvalue { i8*, i32 } %134, 1 - store i32 %136, i32* %4, align 4 - br label %141 - -137: ; preds = %58, %56 - %138 = landingpad { i8*, i32 } - cleanup - %139 = extractvalue { i8*, i32 } %138, 0 - store i8* %139, i8** %3, align 8 - %140 = extractvalue { i8*, i32 } %138, 1 - store i32 %140, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %21) #3 - br label %141 - -141: ; preds = %137, %133 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %22) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %19) #3 - br label %142 - -142: ; preds = %141, %129 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %20) #3 - br label %171 - -143: ; preds = %60 - %144 = landingpad { i8*, i32 } - cleanup - %145 = extractvalue { i8*, i32 } %144, 0 - store i8* %145, i8** %3, align 8 - %146 = extractvalue { i8*, i32 } %144, 1 - store i32 %146, i32* %4, align 4 - br label %156 - -147: ; preds = %61 - %148 = landingpad { i8*, i32 } - cleanup - %149 = extractvalue { i8*, i32 } %148, 0 - store i8* %149, i8** %3, align 8 - %150 = extractvalue { i8*, i32 } %148, 1 - store i32 %150, i32* %4, align 4 - br label %155 - -151: ; preds = %64, %62 - %152 = landingpad { i8*, i32 } - cleanup - %153 = extractvalue { i8*, i32 } %152, 0 - store i8* %153, i8** %3, align 8 - %154 = extractvalue { i8*, i32 } %152, 1 - store i32 %154, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %25) #3 - br label %155 - -155: ; preds = %151, %147 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %26) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %23) #3 - br label %156 - -156: ; preds = %155, %143 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %24) #3 - br label %171 - -157: ; preds = %66 - %158 = landingpad { i8*, i32 } - cleanup - %159 = extractvalue { i8*, i32 } %158, 0 - store i8* %159, i8** %3, align 8 - %160 = extractvalue { i8*, i32 } %158, 1 - store i32 %160, i32* %4, align 4 - br label %170 - -161: ; preds = %67 - %162 = landingpad { i8*, i32 } - cleanup - %163 = extractvalue { i8*, i32 } %162, 0 - store i8* %163, i8** %3, align 8 - %164 = extractvalue { i8*, i32 } %162, 1 - store i32 %164, i32* %4, align 4 - br label %169 - -165: ; preds = %70, %68 - %166 = landingpad { i8*, i32 } - cleanup - %167 = extractvalue { i8*, i32 } %166, 0 - store i8* %167, i8** %3, align 8 - %168 = extractvalue { i8*, i32 } %166, 1 - store i32 %168, i32* %4, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %29) #3 - br label %169 - -169: ; preds = %165, %161 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %30) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %27) #3 - br label %170 - -170: ; preds = %169, %157 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %28) #3 - br label %171 - -171: ; preds = %170, %156, %142, %128, %114, %100, %86 - %172 = load i8*, i8** %3, align 8 - %173 = load i32, i32* %4, align 4 - %174 = insertvalue { i8*, i32 } undef, i8* %172, 0 - %175 = insertvalue { i8*, i32 } %174, i32 %173, 1 - resume { i8*, i32 } %175 -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx14__alloc_traitsISaIcEcE17_S_select_on_copyERKS1_(%"class.std::allocator"* noalias sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) #4 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = bitcast %"class.std::allocator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %6) - ret void -} - -; Function Attrs: nounwind -declare dso_local void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(%"class.std::allocator"* sret(%"class.std::allocator") align 1, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -declare dso_local nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEmc(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64, i8 signext) #1 - -declare dso_local nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_(%"class.std::allocator"* noalias sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - %5 = bitcast %"class.std::allocator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %6 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - call void @_ZNSaIcEC1ERKS_(%"class.std::allocator"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1ERKS_(%"class.std::allocator"* nonnull dereferenceable(1), %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_karatsuba.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll deleted file mode 100644 index 4dab1349..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll +++ /dev/null @@ -1,315 +0,0 @@ -; ModuleID = 'PE-benchmarks/kmp-algorithm.cpp' -source_filename = "PE-benchmarks/kmp-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@.str = private unnamed_addr constant [27 x i8] c"Found pattern at index %d \00", align 1 -@__const.main.txt = private unnamed_addr constant [20 x i8] c"ABABDABACDABABCABAB\00", align 16 -@__const.main.pat = private unnamed_addr constant [10 x i8] c"ABABCABAB\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_kmp_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #4 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %11 = load i8*, i8** %3, align 8 - %12 = call i64 @strlen(i8* %11) #10 - %13 = trunc i64 %12 to i32 - store i32 %13, i32* %5, align 4 - %14 = load i8*, i8** %4, align 8 - %15 = call i64 @strlen(i8* %14) #10 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %6, align 4 - %17 = load i32, i32* %5, align 4 - %18 = zext i32 %17 to i64 - %19 = call i8* @llvm.stacksave() - store i8* %19, i8** %7, align 8 - %20 = alloca i32, i64 %18, align 16 - store i64 %18, i64* %8, align 8 - %21 = load i8*, i8** %3, align 8 - %22 = load i32, i32* %5, align 4 - call void @_Z15computeLPSArrayPciPi(i8* %21, i32 %22, i32* %20) - store i32 0, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %23 - -23: ; preds = %92, %2 - %24 = load i32, i32* %9, align 4 - %25 = load i32, i32* %6, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %93 - -27: ; preds = %23 - %28 = load i8*, i8** %3, align 8 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i8, i8* %28, i64 %30 - %32 = load i8, i8* %31, align 1 - %33 = sext i8 %32 to i32 - %34 = load i8*, i8** %4, align 8 - %35 = load i32, i32* %9, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %34, i64 %36 - %38 = load i8, i8* %37, align 1 - %39 = sext i8 %38 to i32 - %40 = icmp eq i32 %33, %39 - br i1 %40, label %41, label %46 - -41: ; preds = %27 - %42 = load i32, i32* %10, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %10, align 4 - %44 = load i32, i32* %9, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %9, align 4 - br label %46 - -46: ; preds = %41, %27 - %47 = load i32, i32* %10, align 4 - %48 = load i32, i32* %5, align 4 - %49 = icmp eq i32 %47, %48 - br i1 %49, label %50, label %60 - -50: ; preds = %46 - %51 = load i32, i32* %9, align 4 - %52 = load i32, i32* %10, align 4 - %53 = sub nsw i32 %51, %52 - %54 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str, i64 0, i64 0), i32 %53) - %55 = load i32, i32* %10, align 4 - %56 = sub nsw i32 %55, 1 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %20, i64 %57 - %59 = load i32, i32* %58, align 4 - store i32 %59, i32* %10, align 4 - br label %92 - -60: ; preds = %46 - %61 = load i32, i32* %9, align 4 - %62 = load i32, i32* %6, align 4 - %63 = icmp slt i32 %61, %62 - br i1 %63, label %64, label %91 - -64: ; preds = %60 - %65 = load i8*, i8** %3, align 8 - %66 = load i32, i32* %10, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %65, i64 %67 - %69 = load i8, i8* %68, align 1 - %70 = sext i8 %69 to i32 - %71 = load i8*, i8** %4, align 8 - %72 = load i32, i32* %9, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i8, i8* %71, i64 %73 - %75 = load i8, i8* %74, align 1 - %76 = sext i8 %75 to i32 - %77 = icmp ne i32 %70, %76 - br i1 %77, label %78, label %91 - -78: ; preds = %64 - %79 = load i32, i32* %10, align 4 - %80 = icmp ne i32 %79, 0 - br i1 %80, label %81, label %87 - -81: ; preds = %78 - %82 = load i32, i32* %10, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %20, i64 %84 - %86 = load i32, i32* %85, align 4 - store i32 %86, i32* %10, align 4 - br label %90 - -87: ; preds = %78 - %88 = load i32, i32* %9, align 4 - %89 = add nsw i32 %88, 1 - store i32 %89, i32* %9, align 4 - br label %90 - -90: ; preds = %87, %81 - br label %91 - -91: ; preds = %90, %64, %60 - br label %92 - -92: ; preds = %91, %50 - br label %23, !llvm.loop !2 - -93: ; preds = %23 - %94 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %94) - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #6 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z15computeLPSArrayPciPi(i8* %0, i32 %1, i32* %2) #7 { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32* %2, i32** %6, align 8 - store i32 0, i32* %7, align 4 - %9 = load i32*, i32** %6, align 8 - %10 = getelementptr inbounds i32, i32* %9, i64 0 - store i32 0, i32* %10, align 4 - store i32 1, i32* %8, align 4 - br label %11 - -11: ; preds = %57, %3 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %5, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %58 - -15: ; preds = %11 - %16 = load i8*, i8** %4, align 8 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i8, i8* %16, i64 %18 - %20 = load i8, i8* %19, align 1 - %21 = sext i8 %20 to i32 - %22 = load i8*, i8** %4, align 8 - %23 = load i32, i32* %7, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i8, i8* %22, i64 %24 - %26 = load i8, i8* %25, align 1 - %27 = sext i8 %26 to i32 - %28 = icmp eq i32 %21, %27 - br i1 %28, label %29, label %39 - -29: ; preds = %15 - %30 = load i32, i32* %7, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %7, align 4 - %32 = load i32, i32* %7, align 4 - %33 = load i32*, i32** %6, align 8 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - store i32 %32, i32* %36, align 4 - %37 = load i32, i32* %8, align 4 - %38 = add nsw i32 %37, 1 - store i32 %38, i32* %8, align 4 - br label %57 - -39: ; preds = %15 - %40 = load i32, i32* %7, align 4 - %41 = icmp ne i32 %40, 0 - br i1 %41, label %42, label %49 - -42: ; preds = %39 - %43 = load i32*, i32** %6, align 8 - %44 = load i32, i32* %7, align 4 - %45 = sub nsw i32 %44, 1 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %43, i64 %46 - %48 = load i32, i32* %47, align 4 - store i32 %48, i32* %7, align 4 - br label %56 - -49: ; preds = %39 - %50 = load i32*, i32** %6, align 8 - %51 = load i32, i32* %8, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - store i32 0, i32* %53, align 4 - %54 = load i32, i32* %8, align 4 - %55 = add nsw i32 %54, 1 - store i32 %55, i32* %8, align 4 - br label %56 - -56: ; preds = %49, %42 - br label %57 - -57: ; preds = %56, %29 - br label %11, !llvm.loop !4 - -58: ; preds = %11 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [20 x i8], align 16 - %3 = alloca [10 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [20 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([20 x i8], [20 x i8]* @__const.main.txt, i32 0, i32 0), i64 20, i1 false) - %5 = bitcast [10 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([10 x i8], [10 x i8]* @__const.main.pat, i32 0, i32 0), i64 10, i1 false) - %6 = getelementptr inbounds [10 x i8], [10 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [20 x i8], [20 x i8]* %2, i64 0, i64 0 - call void @_Z9KMPSearchPcS_(i8* %6, i8* %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_kmp_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nofree nosync nounwind willreturn } -attributes #7 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll deleted file mode 100644 index a0f1f65f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll +++ /dev/null @@ -1,323 +0,0 @@ -; ModuleID = 'PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp' -source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [7 x i32] [i32 12, i32 3, i32 5, i32 7, i32 4, i32 19, i32 26], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %11 = load i32, i32* %9, align 4 - %12 = icmp sgt i32 %11, 0 - br i1 %12, label %13, label %63 - -13: ; preds = %4 - %14 = load i32, i32* %9, align 4 - %15 = load i32, i32* %8, align 4 - %16 = load i32, i32* %7, align 4 - %17 = sub nsw i32 %15, %16 - %18 = add nsw i32 %17, 1 - %19 = icmp sle i32 %14, %18 - br i1 %19, label %20, label %63 - -20: ; preds = %13 - %21 = load i32*, i32** %6, align 8 - %22 = load i32, i32* %7, align 4 - %23 = load i32, i32* %8, align 4 - %24 = call i32 @_Z15randomPartitionPiii(i32* %21, i32 %22, i32 %23) - store i32 %24, i32* %10, align 4 - %25 = load i32, i32* %10, align 4 - %26 = load i32, i32* %7, align 4 - %27 = sub nsw i32 %25, %26 - %28 = load i32, i32* %9, align 4 - %29 = sub nsw i32 %28, 1 - %30 = icmp eq i32 %27, %29 - br i1 %30, label %31, label %37 - -31: ; preds = %20 - %32 = load i32*, i32** %6, align 8 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i32, i32* %32, i64 %34 - %36 = load i32, i32* %35, align 4 - store i32 %36, i32* %5, align 4 - br label %64 - -37: ; preds = %20 - %38 = load i32, i32* %10, align 4 - %39 = load i32, i32* %7, align 4 - %40 = sub nsw i32 %38, %39 - %41 = load i32, i32* %9, align 4 - %42 = sub nsw i32 %41, 1 - %43 = icmp sgt i32 %40, %42 - br i1 %43, label %44, label %51 - -44: ; preds = %37 - %45 = load i32*, i32** %6, align 8 - %46 = load i32, i32* %7, align 4 - %47 = load i32, i32* %10, align 4 - %48 = sub nsw i32 %47, 1 - %49 = load i32, i32* %9, align 4 - %50 = call i32 @_Z11kthSmallestPiiii(i32* %45, i32 %46, i32 %48, i32 %49) - store i32 %50, i32* %5, align 4 - br label %64 - -51: ; preds = %37 - %52 = load i32*, i32** %6, align 8 - %53 = load i32, i32* %10, align 4 - %54 = add nsw i32 %53, 1 - %55 = load i32, i32* %8, align 4 - %56 = load i32, i32* %9, align 4 - %57 = load i32, i32* %10, align 4 - %58 = sub nsw i32 %56, %57 - %59 = load i32, i32* %7, align 4 - %60 = add nsw i32 %58, %59 - %61 = sub nsw i32 %60, 1 - %62 = call i32 @_Z11kthSmallestPiiii(i32* %52, i32 %54, i32 %55, i32 %61) - store i32 %62, i32* %5, align 4 - br label %64 - -63: ; preds = %13, %4 - store i32 2147483647, i32* %5, align 4 - br label %64 - -64: ; preds = %63, %51, %44, %31 - %65 = load i32, i32* %5, align 4 - ret i32 %65 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z15randomPartitionPiii(i32* %0, i32 %1, i32 %2) #5 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %9 = load i32, i32* %6, align 4 - %10 = load i32, i32* %5, align 4 - %11 = sub nsw i32 %9, %10 - %12 = add nsw i32 %11, 1 - store i32 %12, i32* %7, align 4 - %13 = call i32 @rand() #3 - %14 = load i32, i32* %7, align 4 - %15 = srem i32 %13, %14 - store i32 %15, i32* %8, align 4 - %16 = load i32*, i32** %4, align 8 - %17 = load i32, i32* %5, align 4 - %18 = load i32, i32* %8, align 4 - %19 = add nsw i32 %17, %18 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i32, i32* %16, i64 %20 - %22 = load i32*, i32** %4, align 8 - %23 = load i32, i32* %6, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i32, i32* %22, i64 %24 - call void @_Z4swapPiS_(i32* %21, i32* %25) - %26 = load i32*, i32** %4, align 8 - %27 = load i32, i32* %5, align 4 - %28 = load i32, i32* %6, align 4 - %29 = call i32 @_Z9partitionPiii(i32* %26, i32 %27, i32 %28) - ret i32 %29 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #5 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #5 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %10 = load i32*, i32** %4, align 8 - %11 = load i32, i32* %6, align 4 - %12 = sext i32 %11 to i64 - %13 = getelementptr inbounds i32, i32* %10, i64 %12 - %14 = load i32, i32* %13, align 4 - store i32 %14, i32* %7, align 4 - %15 = load i32, i32* %5, align 4 - store i32 %15, i32* %8, align 4 - %16 = load i32, i32* %5, align 4 - store i32 %16, i32* %9, align 4 - br label %17 - -17: ; preds = %42, %3 - %18 = load i32, i32* %9, align 4 - %19 = load i32, i32* %6, align 4 - %20 = sub nsw i32 %19, 1 - %21 = icmp sle i32 %18, %20 - br i1 %21, label %22, label %45 - -22: ; preds = %17 - %23 = load i32*, i32** %4, align 8 - %24 = load i32, i32* %9, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = load i32, i32* %7, align 4 - %29 = icmp sle i32 %27, %28 - br i1 %29, label %30, label %41 - -30: ; preds = %22 - %31 = load i32*, i32** %4, align 8 - %32 = load i32, i32* %8, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %31, i64 %33 - %35 = load i32*, i32** %4, align 8 - %36 = load i32, i32* %9, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i32, i32* %35, i64 %37 - call void @_Z4swapPiS_(i32* %34, i32* %38) - %39 = load i32, i32* %8, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %8, align 4 - br label %41 - -41: ; preds = %30, %22 - br label %42 - -42: ; preds = %41 - %43 = load i32, i32* %9, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %9, align 4 - br label %17, !llvm.loop !2 - -45: ; preds = %17 - %46 = load i32*, i32** %4, align 8 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32*, i32** %4, align 8 - %51 = load i32, i32* %6, align 4 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds i32, i32* %50, i64 %52 - call void @_Z4swapPiS_(i32* %49, i32* %53) - %54 = load i32, i32* %8, align 4 - ret i32 %54 -} - -; Function Attrs: nounwind -declare dso_local i32 @rand() #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - store i32 3, i32* %4, align 4 - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([26 x i8], [26 x i8]* @.str, i64 0, i64 0)) - %7 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %8 = load i32, i32* %3, align 4 - %9 = sub nsw i32 %8, 1 - %10 = load i32, i32* %4, align 4 - %11 = call i32 @_Z11kthSmallestPiiii(i32* %7, i32 0, i32 %9, i32 %10) - %12 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, i32 %11) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll deleted file mode 100644 index 58f29cda..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll +++ /dev/null @@ -1,1697 +0,0 @@ -; ModuleID = 'PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp' -source_filename = "PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"struct.__gnu_cxx::__ops::_Iter_less_iter" = type { i8 } -%"struct.__gnu_cxx::__ops::_Iter_less_val" = type { i8 } -%"struct.__gnu_cxx::__ops::_Val_less_iter" = type { i8 } - -$_ZSt4sortIPiEvT_S1_ = comdat any - -$_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops16__iter_less_iterEv = comdat any - -$_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_ = comdat any - -$_ZSt4__lgl = comdat any - -$_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_ = comdat any - -$_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_ = comdat any - -$_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_ = comdat any - -$_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_ = comdat any - -$_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_ = comdat any - -$_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_ = comdat any - -$_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_ = comdat any - -$_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_ = comdat any - -$_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_less_iterEEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE = comdat any - -$_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_ = comdat any - -$_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_ = comdat any - -$_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_ = comdat any - -$_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_ = comdat any - -$_ZSt9iter_swapIPiS0_EvT_T0_ = comdat any - -$_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_ = comdat any - -$_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_ = comdat any - -$_ZSt13move_backwardIPiS0_ET0_T_S2_S1_ = comdat any - -$_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE = comdat any - -$_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__miter_baseIPiET_S1_ = comdat any - -$_ZSt12__niter_wrapIPiET_RKS1_S1_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZSt12__niter_baseIPiET_S1_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_ = comdat any - -$_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [7 x i32] [i32 12, i32 3, i32 5, i32 7, i32 4, i32 19, i32 26], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [26 x i8] c"K'th smallest element is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z10findMedianPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load i32*, i32** %3, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = sext i32 %7 to i64 - %9 = getelementptr inbounds i32, i32* %6, i64 %8 - call void @_ZSt4sortIPiEvT_S1_(i32* %5, i32* %9) - %10 = load i32*, i32** %3, align 8 - %11 = load i32, i32* %4, align 4 - %12 = sdiv i32 %11, 2 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %10, i64 %13 - %15 = load i32, i32* %14, align 4 - ret i32 %15 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(i32* %0, i32* %1) #4 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %7 = load i32*, i32** %3, align 8 - %8 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() - call void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %7, i32* %8) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i8*, align 8 - %13 = alloca i64, align 8 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - %17 = load i32, i32* %9, align 4 - %18 = icmp sgt i32 %17, 0 - br i1 %18, label %19, label %142 - -19: ; preds = %4 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %8, align 4 - %22 = load i32, i32* %7, align 4 - %23 = sub nsw i32 %21, %22 - %24 = add nsw i32 %23, 1 - %25 = icmp sle i32 %20, %24 - br i1 %25, label %26, label %142 - -26: ; preds = %19 - %27 = load i32, i32* %8, align 4 - %28 = load i32, i32* %7, align 4 - %29 = sub nsw i32 %27, %28 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %10, align 4 - %31 = load i32, i32* %10, align 4 - %32 = add nsw i32 %31, 4 - %33 = sdiv i32 %32, 5 - %34 = zext i32 %33 to i64 - %35 = call i8* @llvm.stacksave() - store i8* %35, i8** %12, align 8 - %36 = alloca i32, i64 %34, align 16 - store i64 %34, i64* %13, align 8 - store i32 0, i32* %11, align 4 - br label %37 - -37: ; preds = %55, %26 - %38 = load i32, i32* %11, align 4 - %39 = load i32, i32* %10, align 4 - %40 = sdiv i32 %39, 5 - %41 = icmp slt i32 %38, %40 - br i1 %41, label %42, label %58 - -42: ; preds = %37 - %43 = load i32*, i32** %6, align 8 - %44 = load i32, i32* %7, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %11, align 4 - %48 = mul nsw i32 %47, 5 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %46, i64 %49 - %51 = call i32 @_Z10findMedianPii(i32* %50, i32 5) - %52 = load i32, i32* %11, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %36, i64 %53 - store i32 %51, i32* %54, align 4 - br label %55 - -55: ; preds = %42 - %56 = load i32, i32* %11, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %11, align 4 - br label %37, !llvm.loop !2 - -58: ; preds = %37 - %59 = load i32, i32* %11, align 4 - %60 = mul nsw i32 %59, 5 - %61 = load i32, i32* %10, align 4 - %62 = icmp slt i32 %60, %61 - br i1 %62, label %63, label %80 - -63: ; preds = %58 - %64 = load i32*, i32** %6, align 8 - %65 = load i32, i32* %7, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %11, align 4 - %69 = mul nsw i32 %68, 5 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %67, i64 %70 - %72 = load i32, i32* %10, align 4 - %73 = srem i32 %72, 5 - %74 = call i32 @_Z10findMedianPii(i32* %71, i32 %73) - %75 = load i32, i32* %11, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %36, i64 %76 - store i32 %74, i32* %77, align 4 - %78 = load i32, i32* %11, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %11, align 4 - br label %80 - -80: ; preds = %63, %58 - %81 = load i32, i32* %11, align 4 - %82 = icmp eq i32 %81, 1 - br i1 %82, label %83, label %89 - -83: ; preds = %80 - %84 = load i32, i32* %11, align 4 - %85 = sub nsw i32 %84, 1 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i32, i32* %36, i64 %86 - %88 = load i32, i32* %87, align 4 - br label %95 - -89: ; preds = %80 - %90 = load i32, i32* %11, align 4 - %91 = sub nsw i32 %90, 1 - %92 = load i32, i32* %11, align 4 - %93 = sdiv i32 %92, 2 - %94 = call i32 @_Z11kthSmallestPiiii(i32* %36, i32 0, i32 %91, i32 %93) - br label %95 - -95: ; preds = %89, %83 - %96 = phi i32 [ %88, %83 ], [ %94, %89 ] - store i32 %96, i32* %14, align 4 - %97 = load i32*, i32** %6, align 8 - %98 = load i32, i32* %7, align 4 - %99 = load i32, i32* %8, align 4 - %100 = load i32, i32* %14, align 4 - %101 = call i32 @_Z9partitionPiiii(i32* %97, i32 %98, i32 %99, i32 %100) - store i32 %101, i32* %15, align 4 - %102 = load i32, i32* %15, align 4 - %103 = load i32, i32* %7, align 4 - %104 = sub nsw i32 %102, %103 - %105 = load i32, i32* %9, align 4 - %106 = sub nsw i32 %105, 1 - %107 = icmp eq i32 %104, %106 - br i1 %107, label %108, label %114 - -108: ; preds = %95 - %109 = load i32*, i32** %6, align 8 - %110 = load i32, i32* %15, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds i32, i32* %109, i64 %111 - %113 = load i32, i32* %112, align 4 - store i32 %113, i32* %5, align 4 - store i32 1, i32* %16, align 4 - br label %140 - -114: ; preds = %95 - %115 = load i32, i32* %15, align 4 - %116 = load i32, i32* %7, align 4 - %117 = sub nsw i32 %115, %116 - %118 = load i32, i32* %9, align 4 - %119 = sub nsw i32 %118, 1 - %120 = icmp sgt i32 %117, %119 - br i1 %120, label %121, label %128 - -121: ; preds = %114 - %122 = load i32*, i32** %6, align 8 - %123 = load i32, i32* %7, align 4 - %124 = load i32, i32* %15, align 4 - %125 = sub nsw i32 %124, 1 - %126 = load i32, i32* %9, align 4 - %127 = call i32 @_Z11kthSmallestPiiii(i32* %122, i32 %123, i32 %125, i32 %126) - store i32 %127, i32* %5, align 4 - store i32 1, i32* %16, align 4 - br label %140 - -128: ; preds = %114 - %129 = load i32*, i32** %6, align 8 - %130 = load i32, i32* %15, align 4 - %131 = add nsw i32 %130, 1 - %132 = load i32, i32* %8, align 4 - %133 = load i32, i32* %9, align 4 - %134 = load i32, i32* %15, align 4 - %135 = sub nsw i32 %133, %134 - %136 = load i32, i32* %7, align 4 - %137 = add nsw i32 %135, %136 - %138 = sub nsw i32 %137, 1 - %139 = call i32 @_Z11kthSmallestPiiii(i32* %129, i32 %131, i32 %132, i32 %138) - store i32 %139, i32* %5, align 4 - store i32 1, i32* %16, align 4 - br label %140 - -140: ; preds = %128, %121, %108 - %141 = load i8*, i8** %12, align 8 - call void @llvm.stackrestore(i8* %141) - br label %143 - -142: ; preds = %19, %4 - store i32 2147483647, i32* %5, align 4 - br label %143 - -143: ; preds = %142, %140 - %144 = load i32, i32* %5, align 4 - ret i32 %144 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %11 = load i32, i32* %6, align 4 - store i32 %11, i32* %9, align 4 - br label %12 - -12: ; preds = %26, %4 - %13 = load i32, i32* %9, align 4 - %14 = load i32, i32* %7, align 4 - %15 = icmp slt i32 %13, %14 - br i1 %15, label %16, label %29 - -16: ; preds = %12 - %17 = load i32*, i32** %5, align 8 - %18 = load i32, i32* %9, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = load i32, i32* %8, align 4 - %23 = icmp eq i32 %21, %22 - br i1 %23, label %24, label %25 - -24: ; preds = %16 - br label %29 - -25: ; preds = %16 - br label %26 - -26: ; preds = %25 - %27 = load i32, i32* %9, align 4 - %28 = add nsw i32 %27, 1 - store i32 %28, i32* %9, align 4 - br label %12, !llvm.loop !4 - -29: ; preds = %24, %12 - %30 = load i32*, i32** %5, align 8 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i32, i32* %30, i64 %32 - %34 = load i32*, i32** %5, align 8 - %35 = load i32, i32* %7, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i32, i32* %34, i64 %36 - call void @_Z4swapPiS_(i32* %33, i32* %37) - %38 = load i32, i32* %6, align 4 - store i32 %38, i32* %9, align 4 - %39 = load i32, i32* %6, align 4 - store i32 %39, i32* %10, align 4 - br label %40 - -40: ; preds = %65, %29 - %41 = load i32, i32* %10, align 4 - %42 = load i32, i32* %7, align 4 - %43 = sub nsw i32 %42, 1 - %44 = icmp sle i32 %41, %43 - br i1 %44, label %45, label %68 - -45: ; preds = %40 - %46 = load i32*, i32** %5, align 8 - %47 = load i32, i32* %10, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = load i32, i32* %8, align 4 - %52 = icmp sle i32 %50, %51 - br i1 %52, label %53, label %64 - -53: ; preds = %45 - %54 = load i32*, i32** %5, align 8 - %55 = load i32, i32* %9, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i32, i32* %54, i64 %56 - %58 = load i32*, i32** %5, align 8 - %59 = load i32, i32* %10, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - call void @_Z4swapPiS_(i32* %57, i32* %61) - %62 = load i32, i32* %9, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %9, align 4 - br label %64 - -64: ; preds = %53, %45 - br label %65 - -65: ; preds = %64 - %66 = load i32, i32* %10, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %10, align 4 - br label %40, !llvm.loop !5 - -68: ; preds = %40 - %69 = load i32*, i32** %5, align 8 - %70 = load i32, i32* %9, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32*, i32** %5, align 8 - %74 = load i32, i32* %7, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i32, i32* %73, i64 %75 - call void @_Z4swapPiS_(i32* %72, i32* %76) - %77 = load i32, i32* %9, align 4 - ret i32 %77 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #6 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - store i32 3, i32* %4, align 4 - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([26 x i8], [26 x i8]* @.str, i64 0, i64 0)) - %7 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %8 = load i32, i32* %3, align 4 - %9 = sub nsw i32 %8, 1 - %10 = load i32, i32* %4, align 4 - %11 = call i32 @_Z11kthSmallestPiiii(i32* %7, i32 0, i32 %9, i32 %10) - %12 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, i32 %11) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %8 = load i32*, i32** %4, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = icmp ne i32* %8, %9 - br i1 %10, label %11, label %24 - -11: ; preds = %2 - %12 = load i32*, i32** %4, align 8 - %13 = load i32*, i32** %5, align 8 - %14 = load i32*, i32** %5, align 8 - %15 = load i32*, i32** %4, align 8 - %16 = ptrtoint i32* %14 to i64 - %17 = ptrtoint i32* %15 to i64 - %18 = sub i64 %16, %17 - %19 = sdiv exact i64 %18, 4 - %20 = call i64 @_ZSt4__lgl(i64 %19) - %21 = mul nsw i64 %20, 2 - call void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(i32* %12, i32* %13, i64 %21) - %22 = load i32*, i32** %4, align 8 - %23 = load i32*, i32** %5, align 8 - call void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %22, i32* %23) - br label %24 - -24: ; preds = %11, %2 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops16__iter_less_iterEv() #6 comdat { - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(i32* %0, i32* %1, i64 %2) #4 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %9 = alloca i32*, align 8 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i64 %2, i64* %7, align 8 - br label %12 - -12: ; preds = %27, %3 - %13 = load i32*, i32** %6, align 8 - %14 = load i32*, i32** %5, align 8 - %15 = ptrtoint i32* %13 to i64 - %16 = ptrtoint i32* %14 to i64 - %17 = sub i64 %15, %16 - %18 = sdiv exact i64 %17, 4 - %19 = icmp sgt i64 %18, 16 - br i1 %19, label %20, label %37 - -20: ; preds = %12 - %21 = load i64, i64* %7, align 8 - %22 = icmp eq i64 %21, 0 - br i1 %22, label %23, label %27 - -23: ; preds = %20 - %24 = load i32*, i32** %5, align 8 - %25 = load i32*, i32** %6, align 8 - %26 = load i32*, i32** %6, align 8 - call void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* %24, i32* %25, i32* %26) - br label %37 - -27: ; preds = %20 - %28 = load i64, i64* %7, align 8 - %29 = add nsw i64 %28, -1 - store i64 %29, i64* %7, align 8 - %30 = load i32*, i32** %5, align 8 - %31 = load i32*, i32** %6, align 8 - %32 = call i32* @_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_(i32* %30, i32* %31) - store i32* %32, i32** %9, align 8 - %33 = load i32*, i32** %9, align 8 - %34 = load i32*, i32** %6, align 8 - %35 = load i64, i64* %7, align 8 - call void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(i32* %33, i32* %34, i64 %35) - %36 = load i32*, i32** %9, align 8 - store i32* %36, i32** %6, align 8 - br label %12, !llvm.loop !6 - -37: ; preds = %23, %12 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #6 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = call i64 @llvm.ctlz.i64(i64 %3, i1 true) - %5 = trunc i64 %4 to i32 - %6 = sub nsw i32 63, %5 - %7 = sext i32 %6 to i64 - ret i64 %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %4, align 8 - %11 = ptrtoint i32* %9 to i64 - %12 = ptrtoint i32* %10 to i64 - %13 = sub i64 %11, %12 - %14 = sdiv exact i64 %13, 4 - %15 = icmp sgt i64 %14, 16 - br i1 %15, label %16, label %23 - -16: ; preds = %2 - %17 = load i32*, i32** %4, align 8 - %18 = load i32*, i32** %4, align 8 - %19 = getelementptr inbounds i32, i32* %18, i64 16 - call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %17, i32* %19) - %20 = load i32*, i32** %4, align 8 - %21 = getelementptr inbounds i32, i32* %20, i64 16 - %22 = load i32*, i32** %5, align 8 - call void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %21, i32* %22) - br label %26 - -23: ; preds = %2 - %24 = load i32*, i32** %4, align 8 - %25 = load i32*, i32** %5, align 8 - call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %24, i32* %25) - br label %26 - -26: ; preds = %23, %16 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = load i32*, i32** %7, align 8 - call void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* %9, i32* %10, i32* %11) - %12 = load i32*, i32** %5, align 8 - %13 = load i32*, i32** %6, align 8 - call void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* %12, i32* %13, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %4) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %4, align 8 - %12 = ptrtoint i32* %10 to i64 - %13 = ptrtoint i32* %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 4 - %16 = sdiv i64 %15, 2 - %17 = getelementptr inbounds i32, i32* %9, i64 %16 - store i32* %17, i32** %6, align 8 - %18 = load i32*, i32** %4, align 8 - %19 = load i32*, i32** %4, align 8 - %20 = getelementptr inbounds i32, i32* %19, i64 1 - %21 = load i32*, i32** %6, align 8 - %22 = load i32*, i32** %5, align 8 - %23 = getelementptr inbounds i32, i32* %22, i64 -1 - call void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_(i32* %18, i32* %20, i32* %21, i32* %23) - %24 = load i32*, i32** %4, align 8 - %25 = getelementptr inbounds i32, i32* %24, i64 1 - %26 = load i32*, i32** %5, align 8 - %27 = load i32*, i32** %4, align 8 - %28 = call i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_(i32* %25, i32* %26, i32* %27) - ret i32* %28 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - call void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* %9, i32* %10, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %4) - %11 = load i32*, i32** %6, align 8 - store i32* %11, i32** %8, align 8 - br label %12 - -12: ; preds = %25, %3 - %13 = load i32*, i32** %8, align 8 - %14 = load i32*, i32** %7, align 8 - %15 = icmp ult i32* %13, %14 - br i1 %15, label %16, label %28 - -16: ; preds = %12 - %17 = load i32*, i32** %8, align 8 - %18 = load i32*, i32** %5, align 8 - %19 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %4, i32* %17, i32* %18) - br i1 %19, label %20, label %24 - -20: ; preds = %16 - %21 = load i32*, i32** %5, align 8 - %22 = load i32*, i32** %6, align 8 - %23 = load i32*, i32** %8, align 8 - call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* %21, i32* %22, i32* %23, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %4) - br label %24 - -24: ; preds = %20, %16 - br label %25 - -25: ; preds = %24 - %26 = load i32*, i32** %8, align 8 - %27 = getelementptr inbounds i32, i32* %26, i32 1 - store i32* %27, i32** %8, align 8 - br label %12, !llvm.loop !7 - -28: ; preds = %12 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* %0, i32* %1, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - br label %7 - -7: ; preds = %15, %3 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %22 - -15: ; preds = %7 - %16 = load i32*, i32** %5, align 8 - %17 = getelementptr inbounds i32, i32* %16, i32 -1 - store i32* %17, i32** %5, align 8 - %18 = load i32*, i32** %4, align 8 - %19 = load i32*, i32** %5, align 8 - %20 = load i32*, i32** %5, align 8 - %21 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* %18, i32* %19, i32* %20, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %21) - br label %7, !llvm.loop !8 - -22: ; preds = %7 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* %0, i32* %1, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %2) #0 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = load i32*, i32** %4, align 8 - %13 = ptrtoint i32* %11 to i64 - %14 = ptrtoint i32* %12 to i64 - %15 = sub i64 %13, %14 - %16 = sdiv exact i64 %15, 4 - %17 = icmp slt i64 %16, 2 - br i1 %17, label %18, label %19 - -18: ; preds = %3 - br label %47 - -19: ; preds = %3 - %20 = load i32*, i32** %5, align 8 - %21 = load i32*, i32** %4, align 8 - %22 = ptrtoint i32* %20 to i64 - %23 = ptrtoint i32* %21 to i64 - %24 = sub i64 %22, %23 - %25 = sdiv exact i64 %24, 4 - store i64 %25, i64* %7, align 8 - %26 = load i64, i64* %7, align 8 - %27 = sub nsw i64 %26, 2 - %28 = sdiv i64 %27, 2 - store i64 %28, i64* %8, align 8 - br label %29 - -29: ; preds = %19, %44 - %30 = load i32*, i32** %4, align 8 - %31 = load i64, i64* %8, align 8 - %32 = getelementptr inbounds i32, i32* %30, i64 %31 - %33 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %32) #3 - %34 = load i32, i32* %33, align 4 - store i32 %34, i32* %9, align 4 - %35 = load i32*, i32** %4, align 8 - %36 = load i64, i64* %8, align 8 - %37 = load i64, i64* %7, align 8 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %39 = load i32, i32* %38, align 4 - %40 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %6, align 8 - call void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(i32* %35, i64 %36, i64 %37, i32 %39) - %41 = load i64, i64* %8, align 8 - %42 = icmp eq i64 %41, 0 - br i1 %42, label %43, label %44 - -43: ; preds = %29 - br label %47 - -44: ; preds = %29 - %45 = load i64, i64* %8, align 8 - %46 = add nsw i64 %45, -1 - store i64 %46, i64* %8, align 8 - br label %29 - -47: ; preds = %43, %18 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %0, i32* %1, i32* %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* %0, i32* %1, i32* %2, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %3) #4 comdat { - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %8, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %9, align 4 - %14 = load i32*, i32** %5, align 8 - %15 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %14) #3 - %16 = load i32, i32* %15, align 4 - %17 = load i32*, i32** %7, align 8 - store i32 %16, i32* %17, align 4 - %18 = load i32*, i32** %5, align 8 - %19 = load i32*, i32** %6, align 8 - %20 = load i32*, i32** %5, align 8 - %21 = ptrtoint i32* %19 to i64 - %22 = ptrtoint i32* %20 to i64 - %23 = sub i64 %21, %22 - %24 = sdiv exact i64 %23, 4 - %25 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %26 = load i32, i32* %25, align 4 - %27 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %8, align 8 - call void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(i32* %18, i64 0, i64 %24, i32 %26) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %0) #6 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(i32* %0, i64 %1, i64 %2, i32 %3) #4 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val", align 1 - %13 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - store i32* %0, i32** %6, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - %14 = load i64, i64* %7, align 8 - store i64 %14, i64* %10, align 8 - %15 = load i64, i64* %7, align 8 - store i64 %15, i64* %11, align 8 - br label %16 - -16: ; preds = %37, %4 - %17 = load i64, i64* %11, align 8 - %18 = load i64, i64* %8, align 8 - %19 = sub nsw i64 %18, 1 - %20 = sdiv i64 %19, 2 - %21 = icmp slt i64 %17, %20 - br i1 %21, label %22, label %47 - -22: ; preds = %16 - %23 = load i64, i64* %11, align 8 - %24 = add nsw i64 %23, 1 - %25 = mul nsw i64 2, %24 - store i64 %25, i64* %11, align 8 - %26 = load i32*, i32** %6, align 8 - %27 = load i64, i64* %11, align 8 - %28 = getelementptr inbounds i32, i32* %26, i64 %27 - %29 = load i32*, i32** %6, align 8 - %30 = load i64, i64* %11, align 8 - %31 = sub nsw i64 %30, 1 - %32 = getelementptr inbounds i32, i32* %29, i64 %31 - %33 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %5, i32* %28, i32* %32) - br i1 %33, label %34, label %37 - -34: ; preds = %22 - %35 = load i64, i64* %11, align 8 - %36 = add nsw i64 %35, -1 - store i64 %36, i64* %11, align 8 - br label %37 - -37: ; preds = %34, %22 - %38 = load i32*, i32** %6, align 8 - %39 = load i64, i64* %11, align 8 - %40 = getelementptr inbounds i32, i32* %38, i64 %39 - %41 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %40) #3 - %42 = load i32, i32* %41, align 4 - %43 = load i32*, i32** %6, align 8 - %44 = load i64, i64* %7, align 8 - %45 = getelementptr inbounds i32, i32* %43, i64 %44 - store i32 %42, i32* %45, align 4 - %46 = load i64, i64* %11, align 8 - store i64 %46, i64* %7, align 8 - br label %16, !llvm.loop !9 - -47: ; preds = %16 - %48 = load i64, i64* %8, align 8 - %49 = and i64 %48, 1 - %50 = icmp eq i64 %49, 0 - br i1 %50, label %51, label %72 - -51: ; preds = %47 - %52 = load i64, i64* %11, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub nsw i64 %53, 2 - %55 = sdiv i64 %54, 2 - %56 = icmp eq i64 %52, %55 - br i1 %56, label %57, label %72 - -57: ; preds = %51 - %58 = load i64, i64* %11, align 8 - %59 = add nsw i64 %58, 1 - %60 = mul nsw i64 2, %59 - store i64 %60, i64* %11, align 8 - %61 = load i32*, i32** %6, align 8 - %62 = load i64, i64* %11, align 8 - %63 = sub nsw i64 %62, 1 - %64 = getelementptr inbounds i32, i32* %61, i64 %63 - %65 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %64) #3 - %66 = load i32, i32* %65, align 4 - %67 = load i32*, i32** %6, align 8 - %68 = load i64, i64* %7, align 8 - %69 = getelementptr inbounds i32, i32* %67, i64 %68 - store i32 %66, i32* %69, align 4 - %70 = load i64, i64* %11, align 8 - %71 = sub nsw i64 %70, 1 - store i64 %71, i64* %7, align 8 - br label %72 - -72: ; preds = %57, %51, %47 - %73 = call nonnull align 1 dereferenceable(1) %"struct.__gnu_cxx::__ops::_Iter_less_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_less_iterEEONSt16remove_referenceIT_E4typeEOS5_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %5) #3 - call void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE(%"struct.__gnu_cxx::__ops::_Iter_less_val"* nonnull dereferenceable(1) %12) - %74 = load i32*, i32** %6, align 8 - %75 = load i64, i64* %7, align 8 - %76 = load i64, i64* %10, align 8 - %77 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %78 = load i32, i32* %77, align 4 - call void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_(i32* %74, i64 %75, i64 %76, i32 %78, %"struct.__gnu_cxx::__ops::_Iter_less_val"* nonnull align 1 dereferenceable(1) %12) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"struct.__gnu_cxx::__ops::_Iter_less_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_less_iterEEONSt16remove_referenceIT_E4typeEOS5_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull align 1 dereferenceable(1) %0) #6 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_less_iter"*, %"struct.__gnu_cxx::__ops::_Iter_less_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_less_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE(%"struct.__gnu_cxx::__ops::_Iter_less_val"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %3, align 8 - %4 = load %"struct.__gnu_cxx::__ops::_Iter_less_val"*, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %3, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_(i32* %0, i64 %1, i64 %2, i32 %3, %"struct.__gnu_cxx::__ops::_Iter_less_val"* nonnull align 1 dereferenceable(1) %4) #4 comdat { - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val"*, align 8 - %11 = alloca i64, align 8 - store i32* %0, i32** %6, align 8 - store i64 %1, i64* %7, align 8 - store i64 %2, i64* %8, align 8 - store i32 %3, i32* %9, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_less_val"* %4, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %10, align 8 - %12 = load i64, i64* %7, align 8 - %13 = sub nsw i64 %12, 1 - %14 = sdiv i64 %13, 2 - store i64 %14, i64* %11, align 8 - br label %15 - -15: ; preds = %27, %5 - %16 = load i64, i64* %7, align 8 - %17 = load i64, i64* %8, align 8 - %18 = icmp sgt i64 %16, %17 - br i1 %18, label %19, label %25 - -19: ; preds = %15 - %20 = load %"struct.__gnu_cxx::__ops::_Iter_less_val"*, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %10, align 8 - %21 = load i32*, i32** %6, align 8 - %22 = load i64, i64* %11, align 8 - %23 = getelementptr inbounds i32, i32* %21, i64 %22 - %24 = call zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_less_val"* nonnull dereferenceable(1) %20, i32* %23, i32* nonnull align 4 dereferenceable(4) %9) - br label %25 - -25: ; preds = %19, %15 - %26 = phi i1 [ false, %15 ], [ %24, %19 ] - br i1 %26, label %27, label %40 - -27: ; preds = %25 - %28 = load i32*, i32** %6, align 8 - %29 = load i64, i64* %11, align 8 - %30 = getelementptr inbounds i32, i32* %28, i64 %29 - %31 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %30) #3 - %32 = load i32, i32* %31, align 4 - %33 = load i32*, i32** %6, align 8 - %34 = load i64, i64* %7, align 8 - %35 = getelementptr inbounds i32, i32* %33, i64 %34 - store i32 %32, i32* %35, align 4 - %36 = load i64, i64* %11, align 8 - store i64 %36, i64* %7, align 8 - %37 = load i64, i64* %7, align 8 - %38 = sub nsw i64 %37, 1 - %39 = sdiv i64 %38, 2 - store i64 %39, i64* %11, align 8 - br label %15, !llvm.loop !10 - -40: ; preds = %25 - %41 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %42 = load i32, i32* %41, align 4 - %43 = load i32*, i32** %6, align 8 - %44 = load i64, i64* %7, align 8 - %45 = getelementptr inbounds i32, i32* %43, i64 %44 - store i32 %42, i32* %45, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_less_val"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_val"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_less_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_less_val"*, %"struct.__gnu_cxx::__ops::_Iter_less_val"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_(i32* %0, i32* %1, i32* %2, i32* %3) #4 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32* %3, i32** %9, align 8 - %10 = load i32*, i32** %7, align 8 - %11 = load i32*, i32** %8, align 8 - %12 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %5, i32* %10, i32* %11) - br i1 %12, label %13, label %32 - -13: ; preds = %4 - %14 = load i32*, i32** %8, align 8 - %15 = load i32*, i32** %9, align 8 - %16 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %5, i32* %14, i32* %15) - br i1 %16, label %17, label %20 - -17: ; preds = %13 - %18 = load i32*, i32** %6, align 8 - %19 = load i32*, i32** %8, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %18, i32* %19) - br label %31 - -20: ; preds = %13 - %21 = load i32*, i32** %7, align 8 - %22 = load i32*, i32** %9, align 8 - %23 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %5, i32* %21, i32* %22) - br i1 %23, label %24, label %27 - -24: ; preds = %20 - %25 = load i32*, i32** %6, align 8 - %26 = load i32*, i32** %9, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %25, i32* %26) - br label %30 - -27: ; preds = %20 - %28 = load i32*, i32** %6, align 8 - %29 = load i32*, i32** %7, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %28, i32* %29) - br label %30 - -30: ; preds = %27, %24 - br label %31 - -31: ; preds = %30, %17 - br label %51 - -32: ; preds = %4 - %33 = load i32*, i32** %7, align 8 - %34 = load i32*, i32** %9, align 8 - %35 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %5, i32* %33, i32* %34) - br i1 %35, label %36, label %39 - -36: ; preds = %32 - %37 = load i32*, i32** %6, align 8 - %38 = load i32*, i32** %7, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %37, i32* %38) - br label %50 - -39: ; preds = %32 - %40 = load i32*, i32** %8, align 8 - %41 = load i32*, i32** %9, align 8 - %42 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %5, i32* %40, i32* %41) - br i1 %42, label %43, label %46 - -43: ; preds = %39 - %44 = load i32*, i32** %6, align 8 - %45 = load i32*, i32** %9, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %44, i32* %45) - br label %49 - -46: ; preds = %39 - %47 = load i32*, i32** %6, align 8 - %48 = load i32*, i32** %8, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %47, i32* %48) - br label %49 - -49: ; preds = %46, %43 - br label %50 - -50: ; preds = %49, %36 - br label %51 - -51: ; preds = %50, %31 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_(i32* %0, i32* %1, i32* %2) #9 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - store i32* %0, i32** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - br label %8 - -8: ; preds = %3, %32 - br label %9 - -9: ; preds = %13, %8 - %10 = load i32*, i32** %5, align 8 - %11 = load i32*, i32** %7, align 8 - %12 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %4, i32* %10, i32* %11) - br i1 %12, label %13, label %16 - -13: ; preds = %9 - %14 = load i32*, i32** %5, align 8 - %15 = getelementptr inbounds i32, i32* %14, i32 1 - store i32* %15, i32** %5, align 8 - br label %9, !llvm.loop !11 - -16: ; preds = %9 - %17 = load i32*, i32** %6, align 8 - %18 = getelementptr inbounds i32, i32* %17, i32 -1 - store i32* %18, i32** %6, align 8 - br label %19 - -19: ; preds = %23, %16 - %20 = load i32*, i32** %7, align 8 - %21 = load i32*, i32** %6, align 8 - %22 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %4, i32* %20, i32* %21) - br i1 %22, label %23, label %26 - -23: ; preds = %19 - %24 = load i32*, i32** %6, align 8 - %25 = getelementptr inbounds i32, i32* %24, i32 -1 - store i32* %25, i32** %6, align 8 - br label %19, !llvm.loop !12 - -26: ; preds = %19 - %27 = load i32*, i32** %5, align 8 - %28 = load i32*, i32** %6, align 8 - %29 = icmp ult i32* %27, %28 - br i1 %29, label %32, label %30 - -30: ; preds = %26 - %31 = load i32*, i32** %5, align 8 - ret i32* %31 - -32: ; preds = %26 - %33 = load i32*, i32** %5, align 8 - %34 = load i32*, i32** %6, align 8 - call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %33, i32* %34) - %35 = load i32*, i32** %5, align 8 - %36 = getelementptr inbounds i32, i32* %35, i32 1 - store i32* %36, i32** %5, align 8 - br label %8 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %0, i32* %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %3, align 8 - %6 = load i32*, i32** %4, align 8 - call void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i32* nonnull align 4 dereferenceable(4) %5, i32* nonnull align 4 dereferenceable(4) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %6) #3 - %8 = load i32, i32* %7, align 4 - store i32 %8, i32* %5, align 4 - %9 = load i32*, i32** %4, align 8 - %10 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 - %11 = load i32, i32* %10, align 4 - %12 = load i32*, i32** %3, align 8 - store i32 %11, i32* %12, align 4 - %13 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %5) #3 - %14 = load i32, i32* %13, align 4 - %15 = load i32*, i32** %4, align 8 - store i32 %14, i32* %15, align 4 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare i64 @llvm.ctlz.i64(i64, i1 immarg) #10 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %10 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %11 = load i32*, i32** %4, align 8 - %12 = load i32*, i32** %5, align 8 - %13 = icmp eq i32* %11, %12 - br i1 %13, label %14, label %15 - -14: ; preds = %2 - br label %44 - -15: ; preds = %2 - %16 = load i32*, i32** %4, align 8 - %17 = getelementptr inbounds i32, i32* %16, i64 1 - store i32* %17, i32** %6, align 8 - br label %18 - -18: ; preds = %41, %15 - %19 = load i32*, i32** %6, align 8 - %20 = load i32*, i32** %5, align 8 - %21 = icmp ne i32* %19, %20 - br i1 %21, label %22, label %44 - -22: ; preds = %18 - %23 = load i32*, i32** %6, align 8 - %24 = load i32*, i32** %4, align 8 - %25 = call zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* nonnull dereferenceable(1) %3, i32* %23, i32* %24) - br i1 %25, label %26, label %38 - -26: ; preds = %22 - %27 = load i32*, i32** %6, align 8 - %28 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %27) #3 - %29 = load i32, i32* %28, align 4 - store i32 %29, i32* %7, align 4 - %30 = load i32*, i32** %4, align 8 - %31 = load i32*, i32** %6, align 8 - %32 = load i32*, i32** %6, align 8 - %33 = getelementptr inbounds i32, i32* %32, i64 1 - %34 = call i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* %30, i32* %31, i32* %33) - %35 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %7) #3 - %36 = load i32, i32* %35, align 4 - %37 = load i32*, i32** %4, align 8 - store i32 %36, i32* %37, align 4 - br label %40 - -38: ; preds = %22 - %39 = load i32*, i32** %6, align 8 - call void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() - call void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* %39) - br label %40 - -40: ; preds = %38, %26 - br label %41 - -41: ; preds = %40 - %42 = load i32*, i32** %6, align 8 - %43 = getelementptr inbounds i32, i32* %42, i32 1 - store i32* %43, i32** %6, align 8 - br label %18, !llvm.loop !13 - -44: ; preds = %14, %18 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* %0, i32* %1) #4 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - %9 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %10 = load i32*, i32** %4, align 8 - store i32* %10, i32** %6, align 8 - br label %11 - -11: ; preds = %17, %2 - %12 = load i32*, i32** %6, align 8 - %13 = load i32*, i32** %5, align 8 - %14 = icmp ne i32* %12, %13 - br i1 %14, label %15, label %20 - -15: ; preds = %11 - %16 = load i32*, i32** %6, align 8 - call void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() - call void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* %16) - br label %17 - -17: ; preds = %15 - %18 = load i32*, i32** %6, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 1 - store i32* %19, i32** %6, align 8 - br label %11, !llvm.loop !14 - -20: ; preds = %11 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %7) - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %9) - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %11) - ret i32* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* %0) #4 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter", align 1 - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - store i32* %0, i32** %3, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %6) #3 - %8 = load i32, i32* %7, align 4 - store i32 %8, i32* %4, align 4 - %9 = load i32*, i32** %3, align 8 - store i32* %9, i32** %5, align 8 - %10 = load i32*, i32** %5, align 8 - %11 = getelementptr inbounds i32, i32* %10, i32 -1 - store i32* %11, i32** %5, align 8 - br label %12 - -12: ; preds = %15, %1 - %13 = load i32*, i32** %5, align 8 - %14 = call zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_less_iter"* nonnull dereferenceable(1) %2, i32* nonnull align 4 dereferenceable(4) %4, i32* %13) - br i1 %14, label %15, label %23 - -15: ; preds = %12 - %16 = load i32*, i32** %5, align 8 - %17 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %16) #3 - %18 = load i32, i32* %17, align 4 - %19 = load i32*, i32** %3, align 8 - store i32 %18, i32* %19, align 4 - %20 = load i32*, i32** %5, align 8 - store i32* %20, i32** %3, align 8 - %21 = load i32*, i32** %5, align 8 - %22 = getelementptr inbounds i32, i32* %21, i32 -1 - store i32* %22, i32** %5, align 8 - br label %12, !llvm.loop !15 - -23: ; preds = %12 - %24 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %4) #3 - %25 = load i32, i32* %24, align 4 - %26 = load i32*, i32** %3, align 8 - store i32 %25, i32* %26, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15__val_comp_iterENS0_15_Iter_less_iterE() #6 comdat { - %1 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %7) #3 - %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 - %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 - %13 = call i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* %8, i32* %10, i32* %12) - %14 = call i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %6, i32* %13) - ret i32* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__miter_baseIPiET_S1_(i32* %0) #6 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnull align 8 dereferenceable(8) %0, i32* %1) #6 comdat { - %3 = alloca i32**, align 8 - %4 = alloca i32*, align 8 - store i32** %0, i32*** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiET_S1_(i32* %0) #6 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* %0, i32* %1, i32* %2) #4 comdat { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load i32*, i32** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %6, align 8 - %10 = call i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* %7, i32* %8, i32* %9) - ret i32* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* %0, i32* %1, i32* %2) #6 comdat align 2 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = ptrtoint i32* %8 to i64 - %11 = ptrtoint i32* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 4 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32*, i32** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = bitcast i32* %20 to i8* - %22 = load i32*, i32** %4, align 8 - %23 = bitcast i32* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 4, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32*, i32** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - ret i32* %30 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_less_iter"* nonnull dereferenceable(1) %0, i32* nonnull align 4 dereferenceable(4) %1, i32* %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Val_less_iter"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"struct.__gnu_cxx::__ops::_Val_less_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_less_iter"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"struct.__gnu_cxx::__ops::_Val_less_iter"*, %"struct.__gnu_cxx::__ops::_Val_less_iter"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %9, %11 - ret i1 %12 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { nofree nosync nounwind readnone speculatable willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} -!13 = distinct !{!13, !3} -!14 = distinct !{!14, !3} -!15 = distinct !{!15, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll deleted file mode 100644 index 3fa86f5a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll +++ /dev/null @@ -1,314 +0,0 @@ -; ModuleID = 'PE-benchmarks/largest-independent-set-problem.cpp' -source_filename = "PE-benchmarks/largest-independent-set-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.node = type { i32, i32, %class.node*, %class.node* } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [40 x i8] c"Size of the Largest Independent Set is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_largest_independent_set_problem.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { - %2 = alloca i32, align 4 - %3 = alloca %class.node*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store %class.node* %0, %class.node** %3, align 8 - %6 = load %class.node*, %class.node** %3, align 8 - %7 = icmp eq %class.node* %6, null - br i1 %7, label %8, label %9 - -8: ; preds = %1 - store i32 0, i32* %2, align 4 - br label %91 - -9: ; preds = %1 - %10 = load %class.node*, %class.node** %3, align 8 - %11 = getelementptr inbounds %class.node, %class.node* %10, i32 0, i32 1 - %12 = load i32, i32* %11, align 4 - %13 = icmp ne i32 %12, 0 - br i1 %13, label %14, label %18 - -14: ; preds = %9 - %15 = load %class.node*, %class.node** %3, align 8 - %16 = getelementptr inbounds %class.node, %class.node* %15, i32 0, i32 1 - %17 = load i32, i32* %16, align 4 - store i32 %17, i32* %2, align 4 - br label %91 - -18: ; preds = %9 - %19 = load %class.node*, %class.node** %3, align 8 - %20 = getelementptr inbounds %class.node, %class.node* %19, i32 0, i32 2 - %21 = load %class.node*, %class.node** %20, align 8 - %22 = icmp eq %class.node* %21, null - br i1 %22, label %23, label %31 - -23: ; preds = %18 - %24 = load %class.node*, %class.node** %3, align 8 - %25 = getelementptr inbounds %class.node, %class.node* %24, i32 0, i32 3 - %26 = load %class.node*, %class.node** %25, align 8 - %27 = icmp eq %class.node* %26, null - br i1 %27, label %28, label %31 - -28: ; preds = %23 - %29 = load %class.node*, %class.node** %3, align 8 - %30 = getelementptr inbounds %class.node, %class.node* %29, i32 0, i32 1 - store i32 1, i32* %30, align 4 - store i32 1, i32* %2, align 4 - br label %91 - -31: ; preds = %23, %18 - %32 = load %class.node*, %class.node** %3, align 8 - %33 = getelementptr inbounds %class.node, %class.node* %32, i32 0, i32 2 - %34 = load %class.node*, %class.node** %33, align 8 - %35 = call i32 @_Z4LISSP4node(%class.node* %34) - %36 = load %class.node*, %class.node** %3, align 8 - %37 = getelementptr inbounds %class.node, %class.node* %36, i32 0, i32 3 - %38 = load %class.node*, %class.node** %37, align 8 - %39 = call i32 @_Z4LISSP4node(%class.node* %38) - %40 = add nsw i32 %35, %39 - store i32 %40, i32* %4, align 4 - store i32 1, i32* %5, align 4 - %41 = load %class.node*, %class.node** %3, align 8 - %42 = getelementptr inbounds %class.node, %class.node* %41, i32 0, i32 2 - %43 = load %class.node*, %class.node** %42, align 8 - %44 = icmp ne %class.node* %43, null - br i1 %44, label %45, label %61 - -45: ; preds = %31 - %46 = load %class.node*, %class.node** %3, align 8 - %47 = getelementptr inbounds %class.node, %class.node* %46, i32 0, i32 2 - %48 = load %class.node*, %class.node** %47, align 8 - %49 = getelementptr inbounds %class.node, %class.node* %48, i32 0, i32 2 - %50 = load %class.node*, %class.node** %49, align 8 - %51 = call i32 @_Z4LISSP4node(%class.node* %50) - %52 = load %class.node*, %class.node** %3, align 8 - %53 = getelementptr inbounds %class.node, %class.node* %52, i32 0, i32 2 - %54 = load %class.node*, %class.node** %53, align 8 - %55 = getelementptr inbounds %class.node, %class.node* %54, i32 0, i32 3 - %56 = load %class.node*, %class.node** %55, align 8 - %57 = call i32 @_Z4LISSP4node(%class.node* %56) - %58 = add nsw i32 %51, %57 - %59 = load i32, i32* %5, align 4 - %60 = add nsw i32 %59, %58 - store i32 %60, i32* %5, align 4 - br label %61 - -61: ; preds = %45, %31 - %62 = load %class.node*, %class.node** %3, align 8 - %63 = getelementptr inbounds %class.node, %class.node* %62, i32 0, i32 3 - %64 = load %class.node*, %class.node** %63, align 8 - %65 = icmp ne %class.node* %64, null - br i1 %65, label %66, label %82 - -66: ; preds = %61 - %67 = load %class.node*, %class.node** %3, align 8 - %68 = getelementptr inbounds %class.node, %class.node* %67, i32 0, i32 3 - %69 = load %class.node*, %class.node** %68, align 8 - %70 = getelementptr inbounds %class.node, %class.node* %69, i32 0, i32 2 - %71 = load %class.node*, %class.node** %70, align 8 - %72 = call i32 @_Z4LISSP4node(%class.node* %71) - %73 = load %class.node*, %class.node** %3, align 8 - %74 = getelementptr inbounds %class.node, %class.node* %73, i32 0, i32 3 - %75 = load %class.node*, %class.node** %74, align 8 - %76 = getelementptr inbounds %class.node, %class.node* %75, i32 0, i32 3 - %77 = load %class.node*, %class.node** %76, align 8 - %78 = call i32 @_Z4LISSP4node(%class.node* %77) - %79 = add nsw i32 %72, %78 - %80 = load i32, i32* %5, align 4 - %81 = add nsw i32 %80, %79 - store i32 %81, i32* %5, align 4 - br label %82 - -82: ; preds = %66, %61 - %83 = load i32, i32* %5, align 4 - %84 = load i32, i32* %4, align 4 - %85 = call i32 @_Z3maxii(i32 %83, i32 %84) - %86 = load %class.node*, %class.node** %3, align 8 - %87 = getelementptr inbounds %class.node, %class.node* %86, i32 0, i32 1 - store i32 %85, i32* %87, align 4 - %88 = load %class.node*, %class.node** %3, align 8 - %89 = getelementptr inbounds %class.node, %class.node* %88, i32 0, i32 1 - %90 = load i32, i32* %89, align 4 - store i32 %90, i32* %2, align 4 - br label %91 - -91: ; preds = %82, %28, %14, %8 - %92 = load i32, i32* %2, align 4 - ret i32 %92 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.node* @_Z7newNodei(i32 %0) #5 { - %2 = alloca i32, align 4 - %3 = alloca %class.node*, align 8 - store i32 %0, i32* %2, align 4 - %4 = call noalias nonnull i8* @_Znwm(i64 24) #9 - %5 = bitcast i8* %4 to %class.node* - %6 = bitcast %class.node* %5 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %6, i8 0, i64 24, i1 false) - store %class.node* %5, %class.node** %3, align 8 - %7 = load i32, i32* %2, align 4 - %8 = load %class.node*, %class.node** %3, align 8 - %9 = getelementptr inbounds %class.node, %class.node* %8, i32 0, i32 0 - store i32 %7, i32* %9, align 8 - %10 = load %class.node*, %class.node** %3, align 8 - %11 = getelementptr inbounds %class.node, %class.node* %10, i32 0, i32 3 - store %class.node* null, %class.node** %11, align 8 - %12 = load %class.node*, %class.node** %3, align 8 - %13 = getelementptr inbounds %class.node, %class.node* %12, i32 0, i32 2 - store %class.node* null, %class.node** %13, align 8 - %14 = load %class.node*, %class.node** %3, align 8 - %15 = getelementptr inbounds %class.node, %class.node* %14, i32 0, i32 1 - store i32 0, i32* %15, align 4 - %16 = load %class.node*, %class.node** %3, align 8 - ret %class.node* %16 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #7 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.node*, align 8 - store i32 0, i32* %1, align 4 - %3 = call %class.node* @_Z7newNodei(i32 20) - store %class.node* %3, %class.node** %2, align 8 - %4 = call %class.node* @_Z7newNodei(i32 8) - %5 = load %class.node*, %class.node** %2, align 8 - %6 = getelementptr inbounds %class.node, %class.node* %5, i32 0, i32 2 - store %class.node* %4, %class.node** %6, align 8 - %7 = call %class.node* @_Z7newNodei(i32 4) - %8 = load %class.node*, %class.node** %2, align 8 - %9 = getelementptr inbounds %class.node, %class.node* %8, i32 0, i32 2 - %10 = load %class.node*, %class.node** %9, align 8 - %11 = getelementptr inbounds %class.node, %class.node* %10, i32 0, i32 2 - store %class.node* %7, %class.node** %11, align 8 - %12 = call %class.node* @_Z7newNodei(i32 12) - %13 = load %class.node*, %class.node** %2, align 8 - %14 = getelementptr inbounds %class.node, %class.node* %13, i32 0, i32 2 - %15 = load %class.node*, %class.node** %14, align 8 - %16 = getelementptr inbounds %class.node, %class.node* %15, i32 0, i32 3 - store %class.node* %12, %class.node** %16, align 8 - %17 = call %class.node* @_Z7newNodei(i32 10) - %18 = load %class.node*, %class.node** %2, align 8 - %19 = getelementptr inbounds %class.node, %class.node* %18, i32 0, i32 2 - %20 = load %class.node*, %class.node** %19, align 8 - %21 = getelementptr inbounds %class.node, %class.node* %20, i32 0, i32 3 - %22 = load %class.node*, %class.node** %21, align 8 - %23 = getelementptr inbounds %class.node, %class.node* %22, i32 0, i32 2 - store %class.node* %17, %class.node** %23, align 8 - %24 = call %class.node* @_Z7newNodei(i32 14) - %25 = load %class.node*, %class.node** %2, align 8 - %26 = getelementptr inbounds %class.node, %class.node* %25, i32 0, i32 2 - %27 = load %class.node*, %class.node** %26, align 8 - %28 = getelementptr inbounds %class.node, %class.node* %27, i32 0, i32 3 - %29 = load %class.node*, %class.node** %28, align 8 - %30 = getelementptr inbounds %class.node, %class.node* %29, i32 0, i32 3 - store %class.node* %24, %class.node** %30, align 8 - %31 = call %class.node* @_Z7newNodei(i32 22) - %32 = load %class.node*, %class.node** %2, align 8 - %33 = getelementptr inbounds %class.node, %class.node* %32, i32 0, i32 3 - store %class.node* %31, %class.node** %33, align 8 - %34 = call %class.node* @_Z7newNodei(i32 25) - %35 = load %class.node*, %class.node** %2, align 8 - %36 = getelementptr inbounds %class.node, %class.node* %35, i32 0, i32 3 - %37 = load %class.node*, %class.node** %36, align 8 - %38 = getelementptr inbounds %class.node, %class.node* %37, i32 0, i32 3 - store %class.node* %34, %class.node** %38, align 8 - %39 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([40 x i8], [40 x i8]* @.str, i64 0, i64 0)) - %40 = load %class.node*, %class.node** %2, align 8 - %41 = call i32 @_Z4LISSP4node(%class.node* %40) - %42 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %39, i32 %41) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_largest_independent_set_problem.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll deleted file mode 100644 index 1fb060bb..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll +++ /dev/null @@ -1,186 +0,0 @@ -; ModuleID = 'PE-benchmarks/largest-sum-contiguous-subarray.cpp' -source_filename = "PE-benchmarks/largest-sum-contiguous-subarray.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [27 x i8] c"Maximum contiguous sum is \00", align 1 -@.str.1 = private unnamed_addr constant [16 x i8] c"Starting index \00", align 1 -@.str.2 = private unnamed_addr constant [14 x i8] c"Ending index \00", align 1 -@__const.main.a = private unnamed_addr constant [8 x i32] [i32 -2, i32 -3, i32 4, i32 -1, i32 -2, i32 1, i32 5, i32 -3], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z14maxSubArraySumPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 -2147483648, i32* %5, align 4 - store i32 0, i32* %6, align 4 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %11 - -11: ; preds = %37, %2 - %12 = load i32, i32* %10, align 4 - %13 = load i32, i32* %4, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %40 - -15: ; preds = %11 - %16 = load i32*, i32** %3, align 8 - %17 = load i32, i32* %10, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i32, i32* %16, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = load i32, i32* %6, align 4 - %22 = add nsw i32 %21, %20 - store i32 %22, i32* %6, align 4 - %23 = load i32, i32* %5, align 4 - %24 = load i32, i32* %6, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %30 - -26: ; preds = %15 - %27 = load i32, i32* %6, align 4 - store i32 %27, i32* %5, align 4 - %28 = load i32, i32* %9, align 4 - store i32 %28, i32* %7, align 4 - %29 = load i32, i32* %10, align 4 - store i32 %29, i32* %8, align 4 - br label %30 - -30: ; preds = %26, %15 - %31 = load i32, i32* %6, align 4 - %32 = icmp slt i32 %31, 0 - br i1 %32, label %33, label %36 - -33: ; preds = %30 - store i32 0, i32* %6, align 4 - %34 = load i32, i32* %10, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %9, align 4 - br label %36 - -36: ; preds = %33, %30 - br label %37 - -37: ; preds = %36 - %38 = load i32, i32* %10, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %10, align 4 - br label %11, !llvm.loop !2 - -40: ; preds = %11 - %41 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str, i64 0, i64 0)) - %42 = load i32, i32* %5, align 4 - %43 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %41, i32 %42) - %44 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %43, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %45 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([16 x i8], [16 x i8]* @.str.1, i64 0, i64 0)) - %46 = load i32, i32* %7, align 4 - %47 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %45, i32 %46) - %48 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %47, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %49 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %48, i8* getelementptr inbounds ([14 x i8], [14 x i8]* @.str.2, i64 0, i64 0)) - %50 = load i32, i32* %8, align 4 - %51 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %49, i32 %50) - %52 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %51, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - call void @llvm.trap() - unreachable -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [8 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([8 x i32]* @__const.main.a to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %6 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z14maxSubArraySumPii(i32* %6, i32 %7) - store i32 %8, i32* %4, align 4 - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { cold noreturn nounwind } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/lexicographic-rank-of-a-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/lexicographic-rank-of-a-string.ll deleted file mode 100644 index 7e7fcde0..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/lexicographic-rank-of-a-string.ll +++ /dev/null @@ -1,229 +0,0 @@ -; ModuleID = 'PE-benchmarks/lexicographic-rank-of-a-string.cpp' -source_filename = "PE-benchmarks/lexicographic-rank-of-a-string.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.str = private unnamed_addr constant [7 x i8] c"string\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4facti(i32 %0) #4 { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = icmp sle i32 %3, 1 - br i1 %4, label %5, label %6 - -5: ; preds = %1 - br label %12 - -6: ; preds = %1 - %7 = load i32, i32* %2, align 4 - %8 = load i32, i32* %2, align 4 - %9 = sub nsw i32 %8, 1 - %10 = call i32 @_Z4facti(i32 %9) - %11 = mul nsw i32 %7, %10 - br label %12 - -12: ; preds = %6, %5 - %13 = phi i32 [ 1, %5 ], [ %11, %6 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z18findSmallerInRightPcii(i8* %0, i32 %1, i32 %2) #5 { - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %7, align 4 - %9 = load i32, i32* %5, align 4 - %10 = add nsw i32 %9, 1 - store i32 %10, i32* %8, align 4 - br label %11 - -11: ; preds = %33, %3 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %6, align 4 - %14 = icmp sle i32 %12, %13 - br i1 %14, label %15, label %36 - -15: ; preds = %11 - %16 = load i8*, i8** %4, align 8 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i8, i8* %16, i64 %18 - %20 = load i8, i8* %19, align 1 - %21 = sext i8 %20 to i32 - %22 = load i8*, i8** %4, align 8 - %23 = load i32, i32* %5, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds i8, i8* %22, i64 %24 - %26 = load i8, i8* %25, align 1 - %27 = sext i8 %26 to i32 - %28 = icmp slt i32 %21, %27 - br i1 %28, label %29, label %32 - -29: ; preds = %15 - %30 = load i32, i32* %7, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %7, align 4 - br label %32 - -32: ; preds = %29, %15 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %8, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %8, align 4 - br label %11, !llvm.loop !2 - -36: ; preds = %11 - %37 = load i32, i32* %7, align 4 - ret i32 %37 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z8findRankPc(i8* %0) #4 { - %2 = alloca i8*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i8* %0, i8** %2, align 8 - %8 = load i8*, i8** %2, align 8 - %9 = call i64 @strlen(i8* %8) #9 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %3, align 4 - %11 = load i32, i32* %3, align 4 - %12 = call i32 @_Z4facti(i32 %11) - store i32 %12, i32* %4, align 4 - store i32 1, i32* %5, align 4 - store i32 0, i32* %7, align 4 - br label %13 - -13: ; preds = %33, %1 - %14 = load i32, i32* %7, align 4 - %15 = load i32, i32* %3, align 4 - %16 = icmp slt i32 %14, %15 - br i1 %16, label %17, label %36 - -17: ; preds = %13 - %18 = load i32, i32* %3, align 4 - %19 = load i32, i32* %7, align 4 - %20 = sub nsw i32 %18, %19 - %21 = load i32, i32* %4, align 4 - %22 = sdiv i32 %21, %20 - store i32 %22, i32* %4, align 4 - %23 = load i8*, i8** %2, align 8 - %24 = load i32, i32* %7, align 4 - %25 = load i32, i32* %3, align 4 - %26 = sub nsw i32 %25, 1 - %27 = call i32 @_Z18findSmallerInRightPcii(i8* %23, i32 %24, i32 %26) - store i32 %27, i32* %6, align 4 - %28 = load i32, i32* %6, align 4 - %29 = load i32, i32* %4, align 4 - %30 = mul nsw i32 %28, %29 - %31 = load i32, i32* %5, align 4 - %32 = add nsw i32 %31, %30 - store i32 %32, i32* %5, align 4 - br label %33 - -33: ; preds = %17 - %34 = load i32, i32* %7, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %7, align 4 - br label %13, !llvm.loop !4 - -36: ; preds = %13 - %37 = load i32, i32* %5, align 4 - ret i32 %37 -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i8], align 1 - store i32 0, i32* %1, align 4 - %3 = bitcast [7 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %3, i8* align 1 getelementptr inbounds ([7 x i8], [7 x i8]* @__const.main.str, i32 0, i32 0), i64 7, i1 false) - %4 = getelementptr inbounds [7 x i8], [7 x i8]* %2, i64 0, i64 0 - %5 = call i32 @_Z8findRankPc(i8* %4) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %5) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/little-and-big-endian-mystery.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/little-and-big-endian-mystery.ll deleted file mode 100644 index aa999f46..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/little-and-big-endian-mystery.ll +++ /dev/null @@ -1,72 +0,0 @@ -; ModuleID = 'PE-benchmarks/little-and-big-endian-mystery.cpp' -source_filename = "PE-benchmarks/little-and-big-endian-mystery.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [6 x i8] c" %.2x\00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z12show_mem_repPci(i8* %0, i32 %1) #0 { - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i8*, i8** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - %15 = load i8, i8* %14, align 1 - %16 = sext i8 %15 to i32 - %17 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0), i32 %16) - br label %18 - -18: ; preds = %10 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %6, !llvm.loop !2 - -21: ; preds = %6 - %22 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 19088743, i32* %2, align 4 - %3 = bitcast i32* %2 to i8* - call void @_Z12show_mem_repPci(i8* %3, i32 4) - %4 = call i32 @getchar() - ret i32 0 -} - -declare dso_local i32 @getchar() #1 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll deleted file mode 100644 index 634404aa..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll +++ /dev/null @@ -1,363 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-bitonic-subsequence.cpp' -source_filename = "PE-benchmarks/longest-bitonic-subsequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.arr = private unnamed_addr constant [16 x i32] [i32 0, i32 8, i32 4, i32 12, i32 2, i32 10, i32 6, i32 14, i32 1, i32 9, i32 5, i32 13, i32 3, i32 11, i32 7, i32 15], align 16 -@.str = private unnamed_addr constant [21 x i8] c"Length of LBS is %d\0A\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %10 = load i32, i32* %4, align 4 - %11 = sext i32 %10 to i64 - %12 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %11, i64 4) - %13 = extractvalue { i64, i1 } %12, 1 - %14 = extractvalue { i64, i1 } %12, 0 - %15 = select i1 %13, i64 -1, i64 %14 - %16 = call noalias nonnull i8* @_Znam(i64 %15) #6 - %17 = bitcast i8* %16 to i32* - store i32* %17, i32** %7, align 8 - store i32 0, i32* %5, align 4 - br label %18 - -18: ; preds = %27, %2 - %19 = load i32, i32* %5, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %30 - -22: ; preds = %18 - %23 = load i32*, i32** %7, align 8 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - store i32 1, i32* %26, align 4 - br label %27 - -27: ; preds = %22 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %18, !llvm.loop !2 - -30: ; preds = %18 - store i32 1, i32* %5, align 4 - br label %31 - -31: ; preds = %81, %30 - %32 = load i32, i32* %5, align 4 - %33 = load i32, i32* %4, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %84 - -35: ; preds = %31 - store i32 0, i32* %6, align 4 - br label %36 - -36: ; preds = %77, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %80 - -40: ; preds = %36 - %41 = load i32*, i32** %3, align 8 - %42 = load i32, i32* %5, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - %46 = load i32*, i32** %3, align 8 - %47 = load i32, i32* %6, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = icmp sgt i32 %45, %50 - br i1 %51, label %52, label %76 - -52: ; preds = %40 - %53 = load i32*, i32** %7, align 8 - %54 = load i32, i32* %5, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %53, i64 %55 - %57 = load i32, i32* %56, align 4 - %58 = load i32*, i32** %7, align 8 - %59 = load i32, i32* %6, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %62, 1 - %64 = icmp slt i32 %57, %63 - br i1 %64, label %65, label %76 - -65: ; preds = %52 - %66 = load i32*, i32** %7, align 8 - %67 = load i32, i32* %6, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds i32, i32* %66, i64 %68 - %70 = load i32, i32* %69, align 4 - %71 = add nsw i32 %70, 1 - %72 = load i32*, i32** %7, align 8 - %73 = load i32, i32* %5, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %72, i64 %74 - store i32 %71, i32* %75, align 4 - br label %76 - -76: ; preds = %65, %52, %40 - br label %77 - -77: ; preds = %76 - %78 = load i32, i32* %6, align 4 - %79 = add nsw i32 %78, 1 - store i32 %79, i32* %6, align 4 - br label %36, !llvm.loop !4 - -80: ; preds = %36 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %5, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %5, align 4 - br label %31, !llvm.loop !5 - -84: ; preds = %31 - %85 = load i32, i32* %4, align 4 - %86 = sext i32 %85 to i64 - %87 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %86, i64 4) - %88 = extractvalue { i64, i1 } %87, 1 - %89 = extractvalue { i64, i1 } %87, 0 - %90 = select i1 %88, i64 -1, i64 %89 - %91 = call noalias nonnull i8* @_Znam(i64 %90) #6 - %92 = bitcast i8* %91 to i32* - store i32* %92, i32** %8, align 8 - store i32 0, i32* %5, align 4 - br label %93 - -93: ; preds = %102, %84 - %94 = load i32, i32* %5, align 4 - %95 = load i32, i32* %4, align 4 - %96 = icmp slt i32 %94, %95 - br i1 %96, label %97, label %105 - -97: ; preds = %93 - %98 = load i32*, i32** %8, align 8 - %99 = load i32, i32* %5, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds i32, i32* %98, i64 %100 - store i32 1, i32* %101, align 4 - br label %102 - -102: ; preds = %97 - %103 = load i32, i32* %5, align 4 - %104 = add nsw i32 %103, 1 - store i32 %104, i32* %5, align 4 - br label %93, !llvm.loop !6 - -105: ; preds = %93 - %106 = load i32, i32* %4, align 4 - %107 = sub nsw i32 %106, 2 - store i32 %107, i32* %5, align 4 - br label %108 - -108: ; preds = %159, %105 - %109 = load i32, i32* %5, align 4 - %110 = icmp sge i32 %109, 0 - br i1 %110, label %111, label %162 - -111: ; preds = %108 - %112 = load i32, i32* %4, align 4 - %113 = sub nsw i32 %112, 1 - store i32 %113, i32* %6, align 4 - br label %114 - -114: ; preds = %155, %111 - %115 = load i32, i32* %6, align 4 - %116 = load i32, i32* %5, align 4 - %117 = icmp sgt i32 %115, %116 - br i1 %117, label %118, label %158 - -118: ; preds = %114 - %119 = load i32*, i32** %3, align 8 - %120 = load i32, i32* %5, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %119, i64 %121 - %123 = load i32, i32* %122, align 4 - %124 = load i32*, i32** %3, align 8 - %125 = load i32, i32* %6, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = icmp sgt i32 %123, %128 - br i1 %129, label %130, label %154 - -130: ; preds = %118 - %131 = load i32*, i32** %8, align 8 - %132 = load i32, i32* %5, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i32, i32* %131, i64 %133 - %135 = load i32, i32* %134, align 4 - %136 = load i32*, i32** %8, align 8 - %137 = load i32, i32* %6, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds i32, i32* %136, i64 %138 - %140 = load i32, i32* %139, align 4 - %141 = add nsw i32 %140, 1 - %142 = icmp slt i32 %135, %141 - br i1 %142, label %143, label %154 - -143: ; preds = %130 - %144 = load i32*, i32** %8, align 8 - %145 = load i32, i32* %6, align 4 - %146 = sext i32 %145 to i64 - %147 = getelementptr inbounds i32, i32* %144, i64 %146 - %148 = load i32, i32* %147, align 4 - %149 = add nsw i32 %148, 1 - %150 = load i32*, i32** %8, align 8 - %151 = load i32, i32* %5, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds i32, i32* %150, i64 %152 - store i32 %149, i32* %153, align 4 - br label %154 - -154: ; preds = %143, %130, %118 - br label %155 - -155: ; preds = %154 - %156 = load i32, i32* %6, align 4 - %157 = add nsw i32 %156, -1 - store i32 %157, i32* %6, align 4 - br label %114, !llvm.loop !7 - -158: ; preds = %114 - br label %159 - -159: ; preds = %158 - %160 = load i32, i32* %5, align 4 - %161 = add nsw i32 %160, -1 - store i32 %161, i32* %5, align 4 - br label %108, !llvm.loop !8 - -162: ; preds = %108 - %163 = load i32*, i32** %7, align 8 - %164 = getelementptr inbounds i32, i32* %163, i64 0 - %165 = load i32, i32* %164, align 4 - %166 = load i32*, i32** %8, align 8 - %167 = getelementptr inbounds i32, i32* %166, i64 0 - %168 = load i32, i32* %167, align 4 - %169 = add nsw i32 %165, %168 - %170 = sub nsw i32 %169, 1 - store i32 %170, i32* %9, align 4 - store i32 1, i32* %5, align 4 - br label %171 - -171: ; preds = %204, %162 - %172 = load i32, i32* %5, align 4 - %173 = load i32, i32* %4, align 4 - %174 = icmp slt i32 %172, %173 - br i1 %174, label %175, label %207 - -175: ; preds = %171 - %176 = load i32*, i32** %7, align 8 - %177 = load i32, i32* %5, align 4 - %178 = sext i32 %177 to i64 - %179 = getelementptr inbounds i32, i32* %176, i64 %178 - %180 = load i32, i32* %179, align 4 - %181 = load i32*, i32** %8, align 8 - %182 = load i32, i32* %5, align 4 - %183 = sext i32 %182 to i64 - %184 = getelementptr inbounds i32, i32* %181, i64 %183 - %185 = load i32, i32* %184, align 4 - %186 = add nsw i32 %180, %185 - %187 = sub nsw i32 %186, 1 - %188 = load i32, i32* %9, align 4 - %189 = icmp sgt i32 %187, %188 - br i1 %189, label %190, label %203 - -190: ; preds = %175 - %191 = load i32*, i32** %7, align 8 - %192 = load i32, i32* %5, align 4 - %193 = sext i32 %192 to i64 - %194 = getelementptr inbounds i32, i32* %191, i64 %193 - %195 = load i32, i32* %194, align 4 - %196 = load i32*, i32** %8, align 8 - %197 = load i32, i32* %5, align 4 - %198 = sext i32 %197 to i64 - %199 = getelementptr inbounds i32, i32* %196, i64 %198 - %200 = load i32, i32* %199, align 4 - %201 = add nsw i32 %195, %200 - %202 = sub nsw i32 %201, 1 - store i32 %202, i32* %9, align 4 - br label %203 - -203: ; preds = %190, %175 - br label %204 - -204: ; preds = %203 - %205 = load i32, i32* %5, align 4 - %206 = add nsw i32 %205, 1 - store i32 %206, i32* %5, align 4 - br label %171, !llvm.loop !9 - -207: ; preds = %171 - %208 = load i32, i32* %9, align 4 - ret i32 %208 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [16 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [16 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([16 x i32]* @__const.main.arr to i8*), i64 64, i1 false) - store i32 16, i32* %3, align 4 - %5 = getelementptr inbounds [16 x i32], [16 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call i32 @_Z3lbsPii(i32* %5, i32 %6) - %8 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0), i32 %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -declare dso_local i32 @printf(i8*, ...) #5 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #2 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { argmemonly nofree nosync nounwind willreturn } -attributes #5 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-even-length-substring-sum-first-second-half.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-even-length-substring-sum-first-second-half.ll deleted file mode 100644 index 1265223d..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-even-length-substring-sum-first-second-half.ll +++ /dev/null @@ -1,290 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp' -source_filename = "PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.str = private unnamed_addr constant [7 x i8] c"153803\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [28 x i8] c"Length of the substring is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z10findLengthPc(i8* %0) #4 { - %2 = alloca i8*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store i8* %0, i8** %2, align 8 - %13 = load i8*, i8** %2, align 8 - %14 = call i64 @strlen(i8* %13) #9 - %15 = trunc i64 %14 to i32 - store i32 %15, i32* %3, align 4 - store i32 0, i32* %4, align 4 - %16 = load i32, i32* %3, align 4 - %17 = zext i32 %16 to i64 - %18 = load i32, i32* %3, align 4 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %5, align 8 - %21 = mul nuw i64 %17, %19 - %22 = alloca i32, i64 %21, align 16 - store i64 %17, i64* %6, align 8 - store i64 %19, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %23 - -23: ; preds = %42, %1 - %24 = load i32, i32* %8, align 4 - %25 = load i32, i32* %3, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %45 - -27: ; preds = %23 - %28 = load i8*, i8** %2, align 8 - %29 = load i32, i32* %8, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i8, i8* %28, i64 %30 - %32 = load i8, i8* %31, align 1 - %33 = sext i8 %32 to i32 - %34 = sub nsw i32 %33, 48 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = mul nsw i64 %36, %19 - %38 = getelementptr inbounds i32, i32* %22, i64 %37 - %39 = load i32, i32* %8, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - store i32 %34, i32* %41, align 4 - br label %42 - -42: ; preds = %27 - %43 = load i32, i32* %8, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %8, align 4 - br label %23, !llvm.loop !2 - -45: ; preds = %23 - store i32 2, i32* %9, align 4 - br label %46 - -46: ; preds = %131, %45 - %47 = load i32, i32* %9, align 4 - %48 = load i32, i32* %3, align 4 - %49 = icmp sle i32 %47, %48 - br i1 %49, label %50, label %134 - -50: ; preds = %46 - store i32 0, i32* %10, align 4 - br label %51 - -51: ; preds = %127, %50 - %52 = load i32, i32* %10, align 4 - %53 = load i32, i32* %3, align 4 - %54 = load i32, i32* %9, align 4 - %55 = sub nsw i32 %53, %54 - %56 = add nsw i32 %55, 1 - %57 = icmp slt i32 %52, %56 - br i1 %57, label %58, label %130 - -58: ; preds = %51 - %59 = load i32, i32* %10, align 4 - %60 = load i32, i32* %9, align 4 - %61 = add nsw i32 %59, %60 - %62 = sub nsw i32 %61, 1 - store i32 %62, i32* %11, align 4 - %63 = load i32, i32* %9, align 4 - %64 = sdiv i32 %63, 2 - store i32 %64, i32* %12, align 4 - %65 = load i32, i32* %10, align 4 - %66 = sext i32 %65 to i64 - %67 = mul nsw i64 %66, %19 - %68 = getelementptr inbounds i32, i32* %22, i64 %67 - %69 = load i32, i32* %11, align 4 - %70 = load i32, i32* %12, align 4 - %71 = sub nsw i32 %69, %70 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %68, i64 %72 - %74 = load i32, i32* %73, align 4 - %75 = load i32, i32* %11, align 4 - %76 = load i32, i32* %12, align 4 - %77 = sub nsw i32 %75, %76 - %78 = add nsw i32 %77, 1 - %79 = sext i32 %78 to i64 - %80 = mul nsw i64 %79, %19 - %81 = getelementptr inbounds i32, i32* %22, i64 %80 - %82 = load i32, i32* %11, align 4 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds i32, i32* %81, i64 %83 - %85 = load i32, i32* %84, align 4 - %86 = add nsw i32 %74, %85 - %87 = load i32, i32* %10, align 4 - %88 = sext i32 %87 to i64 - %89 = mul nsw i64 %88, %19 - %90 = getelementptr inbounds i32, i32* %22, i64 %89 - %91 = load i32, i32* %11, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i32, i32* %90, i64 %92 - store i32 %86, i32* %93, align 4 - %94 = load i32, i32* %9, align 4 - %95 = srem i32 %94, 2 - %96 = icmp eq i32 %95, 0 - br i1 %96, label %97, label %126 - -97: ; preds = %58 - %98 = load i32, i32* %10, align 4 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %99, %19 - %101 = getelementptr inbounds i32, i32* %22, i64 %100 - %102 = load i32, i32* %11, align 4 - %103 = load i32, i32* %12, align 4 - %104 = sub nsw i32 %102, %103 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %101, i64 %105 - %107 = load i32, i32* %106, align 4 - %108 = load i32, i32* %11, align 4 - %109 = load i32, i32* %12, align 4 - %110 = sub nsw i32 %108, %109 - %111 = add nsw i32 %110, 1 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %19 - %114 = getelementptr inbounds i32, i32* %22, i64 %113 - %115 = load i32, i32* %11, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - %118 = load i32, i32* %117, align 4 - %119 = icmp eq i32 %107, %118 - br i1 %119, label %120, label %126 - -120: ; preds = %97 - %121 = load i32, i32* %9, align 4 - %122 = load i32, i32* %4, align 4 - %123 = icmp sgt i32 %121, %122 - br i1 %123, label %124, label %126 - -124: ; preds = %120 - %125 = load i32, i32* %9, align 4 - store i32 %125, i32* %4, align 4 - br label %126 - -126: ; preds = %124, %120, %97, %58 - br label %127 - -127: ; preds = %126 - %128 = load i32, i32* %10, align 4 - %129 = add nsw i32 %128, 1 - store i32 %129, i32* %10, align 4 - br label %51, !llvm.loop !4 - -130: ; preds = %51 - br label %131 - -131: ; preds = %130 - %132 = load i32, i32* %9, align 4 - %133 = add nsw i32 %132, 1 - store i32 %133, i32* %9, align 4 - br label %46, !llvm.loop !5 - -134: ; preds = %46 - %135 = load i32, i32* %4, align 4 - %136 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %136) - ret i32 %135 -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #6 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i8], align 1 - store i32 0, i32* %1, align 4 - %3 = bitcast [7 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %3, i8* align 1 getelementptr inbounds ([7 x i8], [7 x i8]* @__const.main.str, i32 0, i32 0), i64 7, i1 false) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0)) - %5 = getelementptr inbounds [7 x i8], [7 x i8]* %2, i64 0, i64 0 - %6 = call i32 @_Z10findLengthPc(i8* %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %4, i32 %6) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nofree nosync nounwind willreturn } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll deleted file mode 100644 index c48b6bec..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll +++ /dev/null @@ -1,153 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-increasing-subsequence.cpp' -source_filename = "PE-benchmarks/longest-increasing-subsequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.arr = private unnamed_addr constant [8 x i32] [i32 10, i32 22, i32 9, i32 33, i32 21, i32 50, i32 41, i32 60], align 16 -@.str = private unnamed_addr constant [21 x i8] c"Length of lis is %dn\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4_lisPiiS_(i32* %0, i32 %1, i32* %2) #0 { - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32* %0, i32** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32* %2, i32** %7, align 8 - %11 = load i32, i32* %6, align 4 - %12 = icmp eq i32 %11, 1 - br i1 %12, label %13, label %14 - -13: ; preds = %3 - store i32 1, i32* %4, align 4 - br label %59 - -14: ; preds = %3 - store i32 1, i32* %9, align 4 - store i32 1, i32* %10, align 4 - br label %15 - -15: ; preds = %46, %14 - %16 = load i32, i32* %10, align 4 - %17 = load i32, i32* %6, align 4 - %18 = icmp slt i32 %16, %17 - br i1 %18, label %19, label %49 - -19: ; preds = %15 - %20 = load i32*, i32** %5, align 8 - %21 = load i32, i32* %10, align 4 - %22 = load i32*, i32** %7, align 8 - %23 = call i32 @_Z4_lisPiiS_(i32* %20, i32 %21, i32* %22) - store i32 %23, i32* %8, align 4 - %24 = load i32*, i32** %5, align 8 - %25 = load i32, i32* %10, align 4 - %26 = sub nsw i32 %25, 1 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i32, i32* %24, i64 %27 - %29 = load i32, i32* %28, align 4 - %30 = load i32*, i32** %5, align 8 - %31 = load i32, i32* %6, align 4 - %32 = sub nsw i32 %31, 1 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds i32, i32* %30, i64 %33 - %35 = load i32, i32* %34, align 4 - %36 = icmp slt i32 %29, %35 - br i1 %36, label %37, label %45 - -37: ; preds = %19 - %38 = load i32, i32* %8, align 4 - %39 = add nsw i32 %38, 1 - %40 = load i32, i32* %9, align 4 - %41 = icmp sgt i32 %39, %40 - br i1 %41, label %42, label %45 - -42: ; preds = %37 - %43 = load i32, i32* %8, align 4 - %44 = add nsw i32 %43, 1 - store i32 %44, i32* %9, align 4 - br label %45 - -45: ; preds = %42, %37, %19 - br label %46 - -46: ; preds = %45 - %47 = load i32, i32* %10, align 4 - %48 = add nsw i32 %47, 1 - store i32 %48, i32* %10, align 4 - br label %15, !llvm.loop !2 - -49: ; preds = %15 - %50 = load i32*, i32** %7, align 8 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %9, align 4 - %53 = icmp slt i32 %51, %52 - br i1 %53, label %54, label %57 - -54: ; preds = %49 - %55 = load i32, i32* %9, align 4 - %56 = load i32*, i32** %7, align 8 - store i32 %55, i32* %56, align 4 - br label %57 - -57: ; preds = %54, %49 - %58 = load i32, i32* %9, align 4 - store i32 %58, i32* %4, align 4 - br label %59 - -59: ; preds = %57, %13 - %60 = load i32, i32* %4, align 4 - ret i32 %60 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3lisPii(i32* %0, i32 %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 1, i32* %5, align 4 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = call i32 @_Z4_lisPiiS_(i32* %6, i32 %7, i32* %5) - %9 = load i32, i32* %5, align 4 - ret i32 %9 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca [8 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([8 x i32]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 8, i32* %3, align 4 - %5 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call i32 @_Z3lisPii(i32* %5, i32 %6) - %8 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0), i32 %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #2 - -declare dso_local i32 @printf(i8*, ...) #3 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { argmemonly nofree nosync nounwind willreturn } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll deleted file mode 100644 index fb2d5927..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll +++ /dev/null @@ -1,466 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-palindrome-substring.cpp' -source_filename = "PE-benchmarks/longest-palindrome-substring.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [34 x i8] c"Longest palindrome substring is: \00", align 1 -@.str.1 = private unnamed_addr constant [17 x i8] c"forgeeksskeegfor\00", align 1 -@.str.2 = private unnamed_addr constant [13 x i8] c"\0ALength is: \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_longest_palindrome_substring.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store i32 %1, i32* %4, align 4 - store i32 %2, i32* %5, align 4 - %7 = load i32, i32* %4, align 4 - store i32 %7, i32* %6, align 4 - br label %8 - -8: ; preds = %18, %3 - %9 = load i32, i32* %6, align 4 - %10 = load i32, i32* %5, align 4 - %11 = icmp sle i32 %9, %10 - br i1 %11, label %12, label %21 - -12: ; preds = %8 - %13 = load i32, i32* %6, align 4 - %14 = sext i32 %13 to i64 - %15 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %14) - %16 = load i8, i8* %15, align 1 - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8 signext %16) - br label %18 - -18: ; preds = %12 - %19 = load i32, i32* %6, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %6, align 4 - br label %8, !llvm.loop !2 - -21: ; preds = %8 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8 signext) #1 - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%"class.std::__cxx11::basic_string"* %0) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca %"class.std::__cxx11::basic_string", align 8 - %14 = alloca i8*, align 8 - %15 = alloca i32, align 4 - %16 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - %17 = trunc i64 %16 to i32 - store i32 %17, i32* %2, align 4 - %18 = load i32, i32* %2, align 4 - %19 = zext i32 %18 to i64 - %20 = load i32, i32* %2, align 4 - %21 = zext i32 %20 to i64 - %22 = call i8* @llvm.stacksave() - store i8* %22, i8** %3, align 8 - %23 = mul nuw i64 %19, %21 - %24 = alloca i8, i64 %23, align 16 - store i64 %19, i64* %4, align 8 - store i64 %21, i64* %5, align 8 - %25 = mul nuw i64 %19, %21 - call void @llvm.memset.p0i8.i64(i8* align 16 %24, i8 0, i64 %25, i1 false) - store i32 1, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %26 - -26: ; preds = %38, %1 - %27 = load i32, i32* %7, align 4 - %28 = load i32, i32* %2, align 4 - %29 = icmp slt i32 %27, %28 - br i1 %29, label %30, label %41 - -30: ; preds = %26 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = mul nsw i64 %32, %21 - %34 = getelementptr inbounds i8, i8* %24, i64 %33 - %35 = load i32, i32* %7, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %34, i64 %36 - store i8 1, i8* %37, align 1 - br label %38 - -38: ; preds = %30 - %39 = load i32, i32* %7, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %7, align 4 - br label %26, !llvm.loop !4 - -41: ; preds = %26 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %42 - -42: ; preds = %71, %41 - %43 = load i32, i32* %9, align 4 - %44 = load i32, i32* %2, align 4 - %45 = sub nsw i32 %44, 1 - %46 = icmp slt i32 %43, %45 - br i1 %46, label %47, label %74 - -47: ; preds = %42 - %48 = load i32, i32* %9, align 4 - %49 = sext i32 %48 to i64 - %50 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %49) - %51 = load i8, i8* %50, align 1 - %52 = sext i8 %51 to i32 - %53 = load i32, i32* %9, align 4 - %54 = add nsw i32 %53, 1 - %55 = sext i32 %54 to i64 - %56 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %55) - %57 = load i8, i8* %56, align 1 - %58 = sext i8 %57 to i32 - %59 = icmp eq i32 %52, %58 - br i1 %59, label %60, label %70 - -60: ; preds = %47 - %61 = load i32, i32* %9, align 4 - %62 = sext i32 %61 to i64 - %63 = mul nsw i64 %62, %21 - %64 = getelementptr inbounds i8, i8* %24, i64 %63 - %65 = load i32, i32* %9, align 4 - %66 = add nsw i32 %65, 1 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %64, i64 %67 - store i8 1, i8* %68, align 1 - %69 = load i32, i32* %9, align 4 - store i32 %69, i32* %8, align 4 - store i32 2, i32* %6, align 4 - br label %70 - -70: ; preds = %60, %47 - br label %71 - -71: ; preds = %70 - %72 = load i32, i32* %9, align 4 - %73 = add nsw i32 %72, 1 - store i32 %73, i32* %9, align 4 - br label %42, !llvm.loop !5 - -74: ; preds = %42 - store i32 3, i32* %10, align 4 - br label %75 - -75: ; preds = %135, %74 - %76 = load i32, i32* %10, align 4 - %77 = load i32, i32* %2, align 4 - %78 = icmp sle i32 %76, %77 - br i1 %78, label %79, label %138 - -79: ; preds = %75 - store i32 0, i32* %11, align 4 - br label %80 - -80: ; preds = %131, %79 - %81 = load i32, i32* %11, align 4 - %82 = load i32, i32* %2, align 4 - %83 = load i32, i32* %10, align 4 - %84 = sub nsw i32 %82, %83 - %85 = add nsw i32 %84, 1 - %86 = icmp slt i32 %81, %85 - br i1 %86, label %87, label %134 - -87: ; preds = %80 - %88 = load i32, i32* %11, align 4 - %89 = load i32, i32* %10, align 4 - %90 = add nsw i32 %88, %89 - %91 = sub nsw i32 %90, 1 - store i32 %91, i32* %12, align 4 - %92 = load i32, i32* %11, align 4 - %93 = add nsw i32 %92, 1 - %94 = sext i32 %93 to i64 - %95 = mul nsw i64 %94, %21 - %96 = getelementptr inbounds i8, i8* %24, i64 %95 - %97 = load i32, i32* %12, align 4 - %98 = sub nsw i32 %97, 1 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i8, i8* %96, i64 %99 - %101 = load i8, i8* %100, align 1 - %102 = trunc i8 %101 to i1 - br i1 %102, label %103, label %130 - -103: ; preds = %87 - %104 = load i32, i32* %11, align 4 - %105 = sext i32 %104 to i64 - %106 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %105) - %107 = load i8, i8* %106, align 1 - %108 = sext i8 %107 to i32 - %109 = load i32, i32* %12, align 4 - %110 = sext i32 %109 to i64 - %111 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %110) - %112 = load i8, i8* %111, align 1 - %113 = sext i8 %112 to i32 - %114 = icmp eq i32 %108, %113 - br i1 %114, label %115, label %130 - -115: ; preds = %103 - %116 = load i32, i32* %11, align 4 - %117 = sext i32 %116 to i64 - %118 = mul nsw i64 %117, %21 - %119 = getelementptr inbounds i8, i8* %24, i64 %118 - %120 = load i32, i32* %12, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i8, i8* %119, i64 %121 - store i8 1, i8* %122, align 1 - %123 = load i32, i32* %10, align 4 - %124 = load i32, i32* %6, align 4 - %125 = icmp sgt i32 %123, %124 - br i1 %125, label %126, label %129 - -126: ; preds = %115 - %127 = load i32, i32* %11, align 4 - store i32 %127, i32* %8, align 4 - %128 = load i32, i32* %10, align 4 - store i32 %128, i32* %6, align 4 - br label %129 - -129: ; preds = %126, %115 - br label %130 - -130: ; preds = %129, %103, %87 - br label %131 - -131: ; preds = %130 - %132 = load i32, i32* %11, align 4 - %133 = add nsw i32 %132, 1 - store i32 %133, i32* %11, align 4 - br label %80, !llvm.loop !6 - -134: ; preds = %80 - br label %135 - -135: ; preds = %134 - %136 = load i32, i32* %10, align 4 - %137 = add nsw i32 %136, 1 - store i32 %137, i32* %10, align 4 - br label %75, !llvm.loop !7 - -138: ; preds = %75 - %139 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([34 x i8], [34 x i8]* @.str, i64 0, i64 0)) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - %140 = load i32, i32* %8, align 4 - %141 = load i32, i32* %8, align 4 - %142 = load i32, i32* %6, align 4 - %143 = add nsw i32 %141, %142 - %144 = sub nsw i32 %143, 1 - invoke void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* %13, i32 %140, i32 %144) - to label %145 unwind label %148 - -145: ; preds = %138 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - %146 = load i32, i32* %6, align 4 - %147 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %147) - ret i32 %146 - -148: ; preds = %138 - %149 = landingpad { i8*, i32 } - cleanup - %150 = extractvalue { i8*, i32 } %149, 0 - store i8* %150, i8** %14, align 8 - %151 = extractvalue { i8*, i32 } %149, 1 - store i32 %151, i32* %15, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %13) #3 - br label %152 - -152: ; preds = %148 - %153 = load i8*, i8** %14, align 8 - %154 = load i32, i32* %15, align 4 - %155 = insertvalue { i8*, i32 } undef, i8* %153, 0 - %156 = insertvalue { i8*, i32 } %155, i32 %154, 1 - resume { i8*, i32 } %156 -} - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([17 x i8], [17 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) - to label %7 unwind label %16 - -7: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - %8 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str.2, i64 0, i64 0)) - to label %9 unwind label %20 - -9: ; preds = %7 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %10 unwind label %20 - -10: ; preds = %9 - %11 = invoke i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%"class.std::__cxx11::basic_string"* %6) - to label %12 unwind label %24 - -12: ; preds = %10 - %13 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %8, i32 %11) - to label %14 unwind label %24 - -14: ; preds = %12 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %15 = load i32, i32* %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %4, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - br label %29 - -20: ; preds = %9, %7 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %4, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %5, align 4 - br label %28 - -24: ; preds = %12, %10 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %4, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %28 - -28: ; preds = %24, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %29 - -29: ; preds = %28, %16 - %30 = load i8*, i8** %4, align 8 - %31 = load i32, i32* %5, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_longest_palindrome_substring.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll deleted file mode 100644 index 9c57f7c6..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll +++ /dev/null @@ -1,297 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-palindromic-subsequence.cpp' -source_filename = "PE-benchmarks/longest-palindromic-subsequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.seq = private unnamed_addr constant [16 x i8] c"GEEKS FOR GEEKS\00", align 16 -@.str = private unnamed_addr constant [28 x i8] c"The lnegth of the LPS is %d\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp sgt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3lpsPc(i8* %0) #0 { - %2 = alloca i8*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - store i8* %0, i8** %2, align 8 - %10 = load i8*, i8** %2, align 8 - %11 = call i64 @strlen(i8* %10) #6 - %12 = trunc i64 %11 to i32 - store i32 %12, i32* %3, align 4 - %13 = load i32, i32* %3, align 4 - %14 = zext i32 %13 to i64 - %15 = load i32, i32* %3, align 4 - %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %7, align 8 - %18 = mul nuw i64 %14, %16 - %19 = alloca i32, i64 %18, align 16 - store i64 %14, i64* %8, align 8 - store i64 %16, i64* %9, align 8 - store i32 0, i32* %4, align 4 - br label %20 - -20: ; preds = %32, %1 - %21 = load i32, i32* %4, align 4 - %22 = load i32, i32* %3, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %35 - -24: ; preds = %20 - %25 = load i32, i32* %4, align 4 - %26 = sext i32 %25 to i64 - %27 = mul nsw i64 %26, %16 - %28 = getelementptr inbounds i32, i32* %19, i64 %27 - %29 = load i32, i32* %4, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - store i32 1, i32* %31, align 4 - br label %32 - -32: ; preds = %24 - %33 = load i32, i32* %4, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %4, align 4 - br label %20, !llvm.loop !2 - -35: ; preds = %20 - store i32 2, i32* %6, align 4 - br label %36 - -36: ; preds = %143, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %3, align 4 - %39 = icmp sle i32 %37, %38 - br i1 %39, label %40, label %146 - -40: ; preds = %36 - store i32 0, i32* %4, align 4 - br label %41 - -41: ; preds = %139, %40 - %42 = load i32, i32* %4, align 4 - %43 = load i32, i32* %3, align 4 - %44 = load i32, i32* %6, align 4 - %45 = sub nsw i32 %43, %44 - %46 = add nsw i32 %45, 1 - %47 = icmp slt i32 %42, %46 - br i1 %47, label %48, label %142 - -48: ; preds = %41 - %49 = load i32, i32* %4, align 4 - %50 = load i32, i32* %6, align 4 - %51 = add nsw i32 %49, %50 - %52 = sub nsw i32 %51, 1 - store i32 %52, i32* %5, align 4 - %53 = load i8*, i8** %2, align 8 - %54 = load i32, i32* %4, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i8, i8* %53, i64 %55 - %57 = load i8, i8* %56, align 1 - %58 = sext i8 %57 to i32 - %59 = load i8*, i8** %2, align 8 - %60 = load i32, i32* %5, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i8, i8* %59, i64 %61 - %63 = load i8, i8* %62, align 1 - %64 = sext i8 %63 to i32 - %65 = icmp eq i32 %58, %64 - br i1 %65, label %66, label %77 - -66: ; preds = %48 - %67 = load i32, i32* %6, align 4 - %68 = icmp eq i32 %67, 2 - br i1 %68, label %69, label %77 - -69: ; preds = %66 - %70 = load i32, i32* %4, align 4 - %71 = sext i32 %70 to i64 - %72 = mul nsw i64 %71, %16 - %73 = getelementptr inbounds i32, i32* %19, i64 %72 - %74 = load i32, i32* %5, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i32, i32* %73, i64 %75 - store i32 2, i32* %76, align 4 - br label %138 - -77: ; preds = %66, %48 - %78 = load i8*, i8** %2, align 8 - %79 = load i32, i32* %4, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i8, i8* %78, i64 %80 - %82 = load i8, i8* %81, align 1 - %83 = sext i8 %82 to i32 - %84 = load i8*, i8** %2, align 8 - %85 = load i32, i32* %5, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i8, i8* %84, i64 %86 - %88 = load i8, i8* %87, align 1 - %89 = sext i8 %88 to i32 - %90 = icmp eq i32 %83, %89 - br i1 %90, label %91, label %110 - -91: ; preds = %77 - %92 = load i32, i32* %4, align 4 - %93 = add nsw i32 %92, 1 - %94 = sext i32 %93 to i64 - %95 = mul nsw i64 %94, %16 - %96 = getelementptr inbounds i32, i32* %19, i64 %95 - %97 = load i32, i32* %5, align 4 - %98 = sub nsw i32 %97, 1 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i32, i32* %96, i64 %99 - %101 = load i32, i32* %100, align 4 - %102 = add nsw i32 %101, 2 - %103 = load i32, i32* %4, align 4 - %104 = sext i32 %103 to i64 - %105 = mul nsw i64 %104, %16 - %106 = getelementptr inbounds i32, i32* %19, i64 %105 - %107 = load i32, i32* %5, align 4 - %108 = sext i32 %107 to i64 - %109 = getelementptr inbounds i32, i32* %106, i64 %108 - store i32 %102, i32* %109, align 4 - br label %137 - -110: ; preds = %77 - %111 = load i32, i32* %4, align 4 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %16 - %114 = getelementptr inbounds i32, i32* %19, i64 %113 - %115 = load i32, i32* %5, align 4 - %116 = sub nsw i32 %115, 1 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %114, i64 %117 - %119 = load i32, i32* %118, align 4 - %120 = load i32, i32* %4, align 4 - %121 = add nsw i32 %120, 1 - %122 = sext i32 %121 to i64 - %123 = mul nsw i64 %122, %16 - %124 = getelementptr inbounds i32, i32* %19, i64 %123 - %125 = load i32, i32* %5, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - %128 = load i32, i32* %127, align 4 - %129 = call i32 @_Z3maxii(i32 %119, i32 %128) - %130 = load i32, i32* %4, align 4 - %131 = sext i32 %130 to i64 - %132 = mul nsw i64 %131, %16 - %133 = getelementptr inbounds i32, i32* %19, i64 %132 - %134 = load i32, i32* %5, align 4 - %135 = sext i32 %134 to i64 - %136 = getelementptr inbounds i32, i32* %133, i64 %135 - store i32 %129, i32* %136, align 4 - br label %137 - -137: ; preds = %110, %91 - br label %138 - -138: ; preds = %137, %69 - br label %139 - -139: ; preds = %138 - %140 = load i32, i32* %4, align 4 - %141 = add nsw i32 %140, 1 - store i32 %141, i32* %4, align 4 - br label %41, !llvm.loop !4 - -142: ; preds = %41 - br label %143 - -143: ; preds = %142 - %144 = load i32, i32* %6, align 4 - %145 = add nsw i32 %144, 1 - store i32 %145, i32* %6, align 4 - br label %36, !llvm.loop !5 - -146: ; preds = %36 - %147 = mul nsw i64 0, %16 - %148 = getelementptr inbounds i32, i32* %19, i64 %147 - %149 = load i32, i32* %3, align 4 - %150 = sub nsw i32 %149, 1 - %151 = sext i32 %150 to i64 - %152 = getelementptr inbounds i32, i32* %148, i64 %151 - %153 = load i32, i32* %152, align 4 - %154 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %154) - ret i32 %153 -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [16 x i8], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [16 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([16 x i8], [16 x i8]* @__const.main.seq, i32 0, i32 0), i64 16, i1 false) - %5 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - %6 = call i64 @strlen(i8* %5) #6 - %7 = trunc i64 %6 to i32 - store i32 %7, i32* %3, align 4 - %8 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - %9 = call i32 @_Z3lpsPc(i8* %8) - %10 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 %9) - %11 = call i32 @getchar() - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -declare dso_local i32 @printf(i8*, ...) #5 - -declare dso_local i32 @getchar() #5 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nofree nosync nounwind willreturn } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { argmemonly nofree nosync nounwind willreturn } -attributes #5 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll deleted file mode 100644 index f16b1c68..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll +++ /dev/null @@ -1,3862 +0,0 @@ -; ModuleID = 'PE-benchmarks/longest-path-directed-acyclic-graph.cpp' -source_filename = "PE-benchmarks/longest-path-directed-acyclic-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%class.AdjListNode = type { i32, i32 } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"struct.std::_List_node" = type { %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf" } -%"struct.__gnu_cxx::__aligned_membuf" = type { [8 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } -%"class.__gnu_cxx::new_allocator.4" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev = comdat any - -$_ZN11AdjListNodeC2Eii = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_ = comdat any - -$_ZNSt14_List_iteratorI11AdjListNodeEC2Ev = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorI11AdjListNodeES3_ = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv = comdat any - -$_ZNKSt14_List_iteratorI11AdjListNodeEdeEv = comdat any - -$_ZN11AdjListNode4getVEv = comdat any - -$_ZNSt14_List_iteratorI11AdjListNodeEppEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNKSt14_List_iteratorI11AdjListNodeEptEv = comdat any - -$_ZN11AdjListNode9getWeightEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev = comdat any - -$_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_ = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E = comdat any - -$_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m = comdat any - -$_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_ = comdat any - -$_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_ = comdat any - -$_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_ = comdat any - -$_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [5 x i8] c"INF \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.2 = private unnamed_addr constant [52 x i8] c"Following are longest distances from source vertex \00", align 1 -@.str.3 = private unnamed_addr constant [3 x i8] c" \0A\00", align 1 -@.str.4 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei -@_ZN5GraphD1Ev = dso_local unnamed_addr alias void (%class.Graph*), void (%class.Graph*)* @_ZN5GraphD2Ev - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #16 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %0) unnamed_addr #6 align 2 { - %2 = alloca %class.Graph*, align 8 - store %class.Graph* %0, %class.Graph** %2, align 8 - %3 = load %class.Graph*, %class.Graph** %2, align 8 - %4 = getelementptr inbounds %class.Graph, %class.Graph* %3, i32 0, i32 1 - %5 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %6 = icmp eq %"class.std::__cxx11::list"* %5, null - br i1 %6, label %19, label %7 - -7: ; preds = %1 - %8 = bitcast %"class.std::__cxx11::list"* %5 to i8* - %9 = getelementptr inbounds i8, i8* %8, i64 -8 - %10 = bitcast i8* %9 to i64* - %11 = load i64, i64* %10, align 8 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %5, i64 %11 - %13 = icmp eq %"class.std::__cxx11::list"* %5, %12 - br i1 %13, label %18, label %14 - -14: ; preds = %14, %7 - %15 = phi %"class.std::__cxx11::list"* [ %12, %7 ], [ %16, %14 ] - %16 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %15, i64 -1 - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %16) #3 - %17 = icmp eq %"class.std::__cxx11::list"* %16, %5 - br i1 %17, label %18, label %14 - -18: ; preds = %14, %7 - call void @_ZdaPv(i8* %9) #17 - br label %19 - -19: ; preds = %18, %1 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #7 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2, i32 %3) #8 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %class.AdjListNode, align 4 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %10 = load %class.Graph*, %class.Graph** %5, align 8 - %11 = load i32, i32* %7, align 4 - %12 = load i32, i32* %8, align 4 - call void @_ZN11AdjListNodeC2Eii(%class.AdjListNode* nonnull dereferenceable(8) %9, i32 %11, i32 %12) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, %class.AdjListNode* nonnull align 4 dereferenceable(8) %9) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN11AdjListNodeC2Eii(%class.AdjListNode* nonnull dereferenceable(8) %0, i32 %1, i32 %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %class.AdjListNode*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.AdjListNode* %0, %class.AdjListNode** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - %8 = load i32, i32* %5, align 4 - %9 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %7, i32 0, i32 0 - store i32 %8, i32* %9, align 4 - %10 = load i32, i32* %6, align 4 - %11 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %7, i32 0, i32 1 - store i32 %10, i32* %11, align 4 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %class.AdjListNode* nonnull align 4 dereferenceable(8) %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca %class.AdjListNode*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, %class.AdjListNode* nonnull align 4 dereferenceable(8) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, %"class.std::stack"* nonnull align 8 dereferenceable(80) %3) #8 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::stack"*, align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - %12 = alloca %class.AdjListNode, align 4 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i8* %2, i8** %7, align 8 - store %"class.std::stack"* %3, %"class.std::stack"** %8, align 8 - %13 = load %class.Graph*, %class.Graph** %5, align 8 - %14 = load i8*, i8** %7, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i8, i8* %14, i64 %16 - store i8 1, i8* %17, align 1 - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %19 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %18, align 8 - %20 = load i32, i32* %6, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %19, i64 %21 - %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %22) #3 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %51, %4 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %6, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %32) #3 - %34 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %33, %"struct.std::__detail::_List_node_base"** %34, align 8 - %35 = call zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - br i1 %35, label %36, label %53 - -36: ; preds = %27 - %37 = call nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %38 = bitcast %class.AdjListNode* %12 to i8* - %39 = bitcast %class.AdjListNode* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %38, i8* align 4 %39, i64 8, i1 false) - %40 = load i8*, i8** %7, align 8 - %41 = call i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* nonnull dereferenceable(8) %12) - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds i8, i8* %40, i64 %42 - %44 = load i8, i8* %43, align 1 - %45 = trunc i8 %44 to i1 - br i1 %45, label %50, label %46 - -46: ; preds = %36 - %47 = call i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* nonnull dereferenceable(8) %12) - %48 = load i8*, i8** %7, align 8 - %49 = load %"class.std::stack"*, %"class.std::stack"** %8, align 8 - call void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %13, i32 %47, i8* %48, %"class.std::stack"* nonnull align 8 dereferenceable(80) %49) - br label %50 - -50: ; preds = %46, %36 - br label %51 - -51: ; preds = %50 - %52 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - br label %27, !llvm.loop !2 - -53: ; preds = %27 - %54 = load %"class.std::stack"*, %"class.std::stack"** %8, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %54, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #10 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #9 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(24) %6) - ret %class.AdjListNode* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %class.AdjListNode*, align 8 - store %class.AdjListNode* %0, %class.AdjListNode** %2, align 8 - %3 = load %class.AdjListNode*, %class.AdjListNode** %2, align 8 - %4 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %3, i32 0, i32 0 - %5 = load i32, i32* %4, align 4 - ret i32 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #8 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %6, i32* nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) #8 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::stack", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca %"struct.std::_List_iterator", align 8 - %16 = alloca %"struct.std::_List_iterator", align 8 - %17 = alloca %"struct.std::_List_iterator", align 8 - %18 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %19 = load %class.Graph*, %class.Graph** %3, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %5) - %20 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = zext i32 %21 to i64 - %23 = call i8* @llvm.stacksave() - store i8* %23, i8** %6, align 8 - %24 = alloca i32, i64 %22, align 16 - store i64 %22, i64* %7, align 8 - %25 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %26 = load i32, i32* %25, align 8 - %27 = sext i32 %26 to i64 - %28 = invoke noalias nonnull i8* @_Znam(i64 %27) #16 - to label %29 unwind label %43 - -29: ; preds = %2 - store i8* %28, i8** %8, align 8 - store i32 0, i32* %11, align 4 - br label %30 - -30: ; preds = %40, %29 - %31 = load i32, i32* %11, align 4 - %32 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %33 = load i32, i32* %32, align 8 - %34 = icmp slt i32 %31, %33 - br i1 %34, label %35, label %47 - -35: ; preds = %30 - %36 = load i8*, i8** %8, align 8 - %37 = load i32, i32* %11, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i8, i8* %36, i64 %38 - store i8 0, i8* %39, align 1 - br label %40 - -40: ; preds = %35 - %41 = load i32, i32* %11, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %11, align 4 - br label %30, !llvm.loop !4 - -43: ; preds = %177, %171, %168, %144, %137, %124, %121, %94, %92, %87, %62, %2 - %44 = landingpad { i8*, i32 } - cleanup - %45 = extractvalue { i8*, i32 } %44, 0 - store i8* %45, i8** %9, align 8 - %46 = extractvalue { i8*, i32 } %44, 1 - store i32 %46, i32* %10, align 4 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %5) #3 - br label %191 - -47: ; preds = %30 - store i32 0, i32* %12, align 4 - br label %48 - -48: ; preds = %67, %47 - %49 = load i32, i32* %12, align 4 - %50 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %51 = load i32, i32* %50, align 8 - %52 = icmp slt i32 %49, %51 - br i1 %52, label %53, label %70 - -53: ; preds = %48 - %54 = load i8*, i8** %8, align 8 - %55 = load i32, i32* %12, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i8, i8* %54, i64 %56 - %58 = load i8, i8* %57, align 1 - %59 = trunc i8 %58 to i1 - %60 = zext i1 %59 to i32 - %61 = icmp eq i32 %60, 0 - br i1 %61, label %62, label %66 - -62: ; preds = %53 - %63 = load i32, i32* %12, align 4 - %64 = load i8*, i8** %8, align 8 - invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %19, i32 %63, i8* %64, %"class.std::stack"* nonnull align 8 dereferenceable(80) %5) - to label %65 unwind label %43 - -65: ; preds = %62 - br label %66 - -66: ; preds = %65, %53 - br label %67 - -67: ; preds = %66 - %68 = load i32, i32* %12, align 4 - %69 = add nsw i32 %68, 1 - store i32 %69, i32* %12, align 4 - br label %48, !llvm.loop !5 - -70: ; preds = %48 - store i32 0, i32* %13, align 4 - br label %71 - -71: ; preds = %80, %70 - %72 = load i32, i32* %13, align 4 - %73 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %74 = load i32, i32* %73, align 8 - %75 = icmp slt i32 %72, %74 - br i1 %75, label %76, label %83 - -76: ; preds = %71 - %77 = load i32, i32* %13, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds i32, i32* %24, i64 %78 - store i32 -2147483648, i32* %79, align 4 - br label %80 - -80: ; preds = %76 - %81 = load i32, i32* %13, align 4 - %82 = add nsw i32 %81, 1 - store i32 %82, i32* %13, align 4 - br label %71, !llvm.loop !6 - -83: ; preds = %71 - %84 = load i32, i32* %4, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i32, i32* %24, i64 %85 - store i32 0, i32* %86, align 4 - br label %87 - -87: ; preds = %155, %83 - %88 = invoke zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %5) - to label %89 unwind label %43 - -89: ; preds = %87 - %90 = zext i1 %88 to i32 - %91 = icmp eq i32 %90, 0 - br i1 %91, label %92, label %156 - -92: ; preds = %89 - %93 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %5) - to label %94 unwind label %43 - -94: ; preds = %92 - %95 = load i32, i32* %93, align 4 - store i32 %95, i32* %14, align 4 - invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %5) - to label %96 unwind label %43 - -96: ; preds = %94 - call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %97 = load i32, i32* %14, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i32, i32* %24, i64 %98 - %100 = load i32, i32* %99, align 4 - %101 = icmp ne i32 %100, -2147483648 - br i1 %101, label %102, label %155 - -102: ; preds = %96 - %103 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %104 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %103, align 8 - %105 = load i32, i32* %14, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %104, i64 %106 - %108 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %107) #3 - %109 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %16, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %108, %"struct.std::__detail::_List_node_base"** %109, align 8 - %110 = bitcast %"struct.std::_List_iterator"* %15 to i8* - %111 = bitcast %"struct.std::_List_iterator"* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %110, i8* align 8 %111, i64 8, i1 false) - br label %112 - -112: ; preds = %152, %102 - %113 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 1 - %114 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %113, align 8 - %115 = load i32, i32* %14, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %114, i64 %116 - %118 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %117) #3 - %119 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %17, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %118, %"struct.std::__detail::_List_node_base"** %119, align 8 - %120 = call zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %15, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %17) #3 - br i1 %120, label %121, label %154 - -121: ; preds = %112 - %122 = call %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %123 = invoke i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* nonnull dereferenceable(8) %122) - to label %124 unwind label %43 - -124: ; preds = %121 - %125 = sext i32 %123 to i64 - %126 = getelementptr inbounds i32, i32* %24, i64 %125 - %127 = load i32, i32* %126, align 4 - %128 = load i32, i32* %14, align 4 - %129 = sext i32 %128 to i64 - %130 = getelementptr inbounds i32, i32* %24, i64 %129 - %131 = load i32, i32* %130, align 4 - %132 = call %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %133 = invoke i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* nonnull dereferenceable(8) %132) - to label %134 unwind label %43 - -134: ; preds = %124 - %135 = add nsw i32 %131, %133 - %136 = icmp slt i32 %127, %135 - br i1 %136, label %137, label %151 - -137: ; preds = %134 - %138 = load i32, i32* %14, align 4 - %139 = sext i32 %138 to i64 - %140 = getelementptr inbounds i32, i32* %24, i64 %139 - %141 = load i32, i32* %140, align 4 - %142 = call %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %143 = invoke i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* nonnull dereferenceable(8) %142) - to label %144 unwind label %43 - -144: ; preds = %137 - %145 = add nsw i32 %141, %143 - %146 = call %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - %147 = invoke i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* nonnull dereferenceable(8) %146) - to label %148 unwind label %43 - -148: ; preds = %144 - %149 = sext i32 %147 to i64 - %150 = getelementptr inbounds i32, i32* %24, i64 %149 - store i32 %145, i32* %150, align 4 - br label %151 - -151: ; preds = %148, %134 - br label %152 - -152: ; preds = %151 - %153 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %15) #3 - br label %112, !llvm.loop !7 - -154: ; preds = %112 - br label %155 - -155: ; preds = %154, %96 - br label %87, !llvm.loop !8 - -156: ; preds = %89 - store i32 0, i32* %18, align 4 - br label %157 - -157: ; preds = %182, %156 - %158 = load i32, i32* %18, align 4 - %159 = getelementptr inbounds %class.Graph, %class.Graph* %19, i32 0, i32 0 - %160 = load i32, i32* %159, align 8 - %161 = icmp slt i32 %158, %160 - br i1 %161, label %162, label %185 - -162: ; preds = %157 - %163 = load i32, i32* %18, align 4 - %164 = sext i32 %163 to i64 - %165 = getelementptr inbounds i32, i32* %24, i64 %164 - %166 = load i32, i32* %165, align 4 - %167 = icmp eq i32 %166, -2147483648 - br i1 %167, label %168, label %171 - -168: ; preds = %162 - %169 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) - to label %170 unwind label %43 - -170: ; preds = %168 - br label %180 - -171: ; preds = %162 - %172 = load i32, i32* %18, align 4 - %173 = sext i32 %172 to i64 - %174 = getelementptr inbounds i32, i32* %24, i64 %173 - %175 = load i32, i32* %174, align 4 - %176 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %175) - to label %177 unwind label %43 - -177: ; preds = %171 - %178 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %176, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - to label %179 unwind label %43 - -179: ; preds = %177 - br label %180 - -180: ; preds = %179, %170 - %181 = phi %"class.std::basic_ostream"* [ %169, %170 ], [ %178, %179 ] - br label %182 - -182: ; preds = %180 - %183 = load i32, i32* %18, align 4 - %184 = add nsw i32 %183, 1 - store i32 %184, i32* %18, align 4 - br label %157, !llvm.loop !9 - -185: ; preds = %157 - %186 = load i8*, i8** %8, align 8 - %187 = icmp eq i8* %186, null - br i1 %187, label %189, label %188 - -188: ; preds = %185 - call void @_ZdaPv(i8* %186) #17 - br label %189 - -189: ; preds = %188, %185 - %190 = load i8*, i8** %6, align 8 - call void @llvm.stackrestore(i8* %190) - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %5) #3 - ret void - -191: ; preds = %43 - %192 = load i8*, i8** %9, align 8 - %193 = load i32, i32* %10, align 4 - %194 = insertvalue { i8*, i32 } undef, i8* %192, 0 - %195 = insertvalue { i8*, i32 } %194, i32 %193, 1 - resume { i8*, i32 } %195 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #11 - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i1 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(24) %6) - ret %class.AdjListNode* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %class.AdjListNode*, align 8 - store %class.AdjListNode* %0, %class.AdjListNode** %2, align 8 - %3 = load %class.AdjListNode*, %class.AdjListNode** %2, align 8 - %4 = getelementptr inbounds %class.AdjListNode, %class.AdjListNode* %3, i32 0, i32 1 - %5 = load i32, i32* %4, align 4 - ret i32 %5 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #11 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #12 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 6) - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1, i32 5) - to label %6 unwind label %26 - -6: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2, i32 3) - to label %7 unwind label %26 - -7: ; preds = %6 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 3, i32 6) - to label %8 unwind label %26 - -8: ; preds = %7 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 2, i32 2) - to label %9 unwind label %26 - -9: ; preds = %8 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 4, i32 4) - to label %10 unwind label %26 - -10: ; preds = %9 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 5, i32 2) - to label %11 unwind label %26 - -11: ; preds = %10 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3, i32 7) - to label %12 unwind label %26 - -12: ; preds = %11 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 5, i32 1) - to label %13 unwind label %26 - -13: ; preds = %12 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4, i32 -1) - to label %14 unwind label %26 - -14: ; preds = %13 - invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceable(16) %2, i32 4, i32 5, i32 -2) - to label %15 unwind label %26 - -15: ; preds = %14 - store i32 1, i32* %5, align 4 - %16 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([52 x i8], [52 x i8]* @.str.2, i64 0, i64 0)) - to label %17 unwind label %26 - -17: ; preds = %15 - %18 = load i32, i32* %5, align 4 - %19 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %16, i32 %18) - to label %20 unwind label %26 - -20: ; preds = %17 - %21 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %19, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.3, i64 0, i64 0)) - to label %22 unwind label %26 - -22: ; preds = %20 - %23 = load i32, i32* %5, align 4 - invoke void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenceable(16) %2, i32 %23) - to label %24 unwind label %26 - -24: ; preds = %22 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphD1Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 - %25 = load i32, i32* %1, align 4 - ret i32 %25 - -26: ; preds = %22, %20, %17, %15, %14, %13, %12, %11, %10, %9, %8, %7, %6, %0 - %27 = landingpad { i8*, i32 } - cleanup - %28 = extractvalue { i8*, i32 } %27, 0 - store i8* %28, i8** %3, align 8 - %29 = extractvalue { i8*, i32 } %27, 1 - store i32 %29, i32* %4, align 4 - call void @_ZN5GraphD1Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 - br label %30 - -30: ; preds = %26 - %31 = load i8*, i8** %3, align 8 - %32 = load i32, i32* %4, align 4 - %33 = insertvalue { i8*, i32 } undef, i8* %31, 0 - %34 = insertvalue { i8*, i32 } %33, i32 %32, 1 - resume { i8*, i32 } %34 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %3) #3 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %3 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - %5 = alloca %class.AdjListNode*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %6 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::__detail::_List_node_header"* %8 to %"struct.std::__detail::_List_node_base"* - %10 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %9, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - store %"struct.std::__detail::_List_node_base"* %11, %"struct.std::__detail::_List_node_base"** %3, align 8 - br label %12 - -12: ; preds = %27, %1 - %13 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %14 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %6, i32 0, i32 0 - %15 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::__detail::_List_node_header"* %15 to %"struct.std::__detail::_List_node_base"* - %17 = icmp ne %"struct.std::__detail::_List_node_base"* %13, %16 - br i1 %17, label %18, label %31 - -18: ; preds = %12 - %19 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %3, align 8 - %20 = bitcast %"struct.std::__detail::_List_node_base"* %19 to %"struct.std::_List_node"* - store %"struct.std::_List_node"* %20, %"struct.std::_List_node"** %4, align 8 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %22 = bitcast %"struct.std::_List_node"* %21 to %"struct.std::__detail::_List_node_base"* - %23 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %22, i32 0, i32 0 - %24 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %23, align 8 - store %"struct.std::__detail::_List_node_base"* %24, %"struct.std::__detail::_List_node_base"** %3, align 8 - %25 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %26 = invoke %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(24) %25) - to label %27 unwind label %32 - -27: ; preds = %18 - store %class.AdjListNode* %26, %class.AdjListNode** %5, align 8 - %28 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6) #3 - %29 = load %class.AdjListNode*, %class.AdjListNode** %5, align 8 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %28, %class.AdjListNode* %29) #3 - %30 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %6, %"struct.std::_List_node"* %30) #3 - br label %12, !llvm.loop !10 - -31: ; preds = %12 - ret void - -32: ; preds = %18 - %33 = landingpad { i8*, i32 } - catch i8* null - %34 = extractvalue { i8*, i32 } %33, 0 - call void @__clang_call_terminate(i8* %34) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call %class.AdjListNode* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(8) %4) #3 - ret %class.AdjListNode* %5 -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #18 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %class.AdjListNode* %1) #9 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %class.AdjListNode*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, %class.AdjListNode* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, %"struct.std::_List_node"* %1) #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca %"struct.std::_List_node"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %6 to %"class.std::allocator"* - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* %8, i64 1) - to label %9 unwind label %10 - -9: ; preds = %2 - ret void - -10: ; preds = %2 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %class.AdjListNode* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(8) %3) #3 - %5 = bitcast i8* %4 to %class.AdjListNode* - ret %class.AdjListNode* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [8 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %class.AdjListNode* %1) #9 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca %class.AdjListNode*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #7 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %7, %"struct.std::_Deque_iterator"* %3, %"struct.std::_Deque_iterator"* %4, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %9) - to label %10 unwind label %12 - -10: ; preds = %1 - %11 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) #3 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %16) #3 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %0, %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"* %2, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %3) #9 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #9 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #9 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %14, i32** %20) #3 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %24, i64 %28) #3 - br label %29 - -29: ; preds = %9, %1 - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %30) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #9 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, i32* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !11 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i64 %2) #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.3", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load i32**, i32*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %7, i32** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32* %1) #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = load i32*, i32** %4, align 8 - %9 = invoke i64 @_ZSt16__deque_buf_sizem(i64 4) - to label %10 unwind label %12 - -10: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, i32* %8, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %10 - ret void - -12: ; preds = %10, %2 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - call void @__clang_call_terminate(i8* %14) #18 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #9 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* noalias sret(%"class.std::allocator.3") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #9 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i32** %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %8 = bitcast %"class.std::allocator.3"* %7 to %"class.__gnu_cxx::new_allocator.4"* - %9 = load i32**, i32*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %8, i32** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.3"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %2, align 8 - %3 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %2, align 8 - %4 = bitcast %"class.std::allocator.3"* %3 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store %"class.std::allocator.0"* %1, %"class.std::allocator.0"** %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i32** %1, i64 %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, %class.AdjListNode* nonnull align 4 dereferenceable(8) %2) #8 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca %class.AdjListNode*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store %class.AdjListNode* %2, %class.AdjListNode** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load %class.AdjListNode*, %class.AdjListNode** %6, align 8 - %11 = call nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* nonnull align 4 dereferenceable(8) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, %class.AdjListNode* nonnull align 4 dereferenceable(8) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %class.AdjListNode* nonnull align 4 dereferenceable(8) %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca %class.AdjListNode*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %4, align 8 - %8 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %9 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %10 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %9) - store %"struct.std::_List_node"* %10, %"struct.std::_List_node"** %5, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %12 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) #3 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* %14) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %17 = call %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(24) %16) - %18 = load %class.AdjListNode*, %class.AdjListNode** %4, align 8 - %19 = call nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* nonnull align 4 dereferenceable(8) %18) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %class.AdjListNode* %17, %class.AdjListNode* nonnull align 4 dereferenceable(8) %19) #3 - %20 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* nonnull align 4 dereferenceable(8) %0) #9 comdat { - %2 = alloca %class.AdjListNode*, align 8 - store %class.AdjListNode* %0, %class.AdjListNode** %2, align 8 - %3 = load %class.AdjListNode*, %class.AdjListNode** %2, align 8 - ret %class.AdjListNode* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #9 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %class.AdjListNode* %1, %class.AdjListNode* nonnull align 4 dereferenceable(8) %2) #9 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %class.AdjListNode*, align 8 - %6 = alloca %class.AdjListNode*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %5, align 8 - store %class.AdjListNode* %2, %class.AdjListNode** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %class.AdjListNode*, %class.AdjListNode** %5, align 8 - %10 = load %class.AdjListNode*, %class.AdjListNode** %6, align 8 - %11 = call nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* nonnull align 4 dereferenceable(8) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %class.AdjListNode* %9, %class.AdjListNode* nonnull align 4 dereferenceable(8) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #9 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #18 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #19 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #20 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #9 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %class.AdjListNode* %1, %class.AdjListNode* nonnull align 4 dereferenceable(8) %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %class.AdjListNode*, align 8 - %6 = alloca %class.AdjListNode*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %class.AdjListNode* %1, %class.AdjListNode** %5, align 8 - store %class.AdjListNode* %2, %class.AdjListNode** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %class.AdjListNode*, %class.AdjListNode** %5, align 8 - %9 = bitcast %class.AdjListNode* %8 to i8* - %10 = bitcast i8* %9 to %class.AdjListNode* - %11 = load %class.AdjListNode*, %class.AdjListNode** %6, align 8 - %12 = call nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* nonnull align 4 dereferenceable(8) %11) #3 - %13 = bitcast %class.AdjListNode* %10 to i8* - %14 = bitcast %class.AdjListNode* %12 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %13, i8* align 4 %14, i64 8, i1 false) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #8 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 -1 - %19 = icmp ne i32* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator.0"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %23, i32* %29, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - %37 = getelementptr inbounds i32, i32* %36, i32 1 - store i32* %37, i32** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, i32* nonnull align 4 dereferenceable(4) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #9 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #8 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.4, i64 0, i64 0)) #19 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i64 1 - store i32* %12, i32** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator.0"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = load i32*, i32** %4, align 8 - %30 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %29) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %22, i32* %28, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load i32**, i32*** %39, align 8 - %41 = getelementptr inbounds i32*, i32** %40, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, i32** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load i32*, i32** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store i32* %47, i32** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #9 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #14 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %7 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, i32** %1) #9 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds i32, i32* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store i32* %14, i32** %15, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #9 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load i32*, i32** %22, align 8 - %24 = ptrtoint i32* %20 to i64 - %25 = ptrtoint i32* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 4 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = ptrtoint i32* %31 to i64 - %36 = ptrtoint i32* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 4 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #9 comdat align 2 { - %1 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - ret i64 %1 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #9 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #8 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %79, i32** %86, i32** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %95, i32** %102, i32** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store i32** %124, i32*** %11, align 8 - %125 = load i32**, i32*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %144, i32** %151, i32** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, i32** %159, i64 %164) #3 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, i32** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, i32** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #9 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - ret i32** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #9 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %0, i32** %1) #9 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #9 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #9 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32**, i32*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32*, i32** %24, i64 %25 - ret i32** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #10 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #8 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #9 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32**, i32*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32*, i32** %27, i64 %29 - ret i32** %30 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - %7 = load i64, i64* %4, align 8 - %8 = call i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32** %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #19 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #20 - %16 = bitcast i8* %15 to i32** - ret i32** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #19 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #20 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #15 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %47, i32** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #19 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, i32** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load i32**, i32*** %9, align 8 - %85 = getelementptr inbounds i32*, i32** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, i32** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds i32, i32* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #18 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !12 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load i32**, i32*** %5, align 8 - %31 = load i32**, i32*** %7, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, i32** %30, i32** %31) #3 - invoke void @__cxa_rethrow() #19 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #18 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #9 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - %6 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret i32* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3, i32** %12) #3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 3 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 1 - %15 = load i32*, i32** %14, align 8 - %16 = icmp ne i32* %9, %15 - br i1 %16, label %17, label %33 - -17: ; preds = %1 - %18 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 0 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i32 -1 - store i32* %24, i32** %22, align 8 - %25 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %26 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %25) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 3 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %26, i32* %32) #3 - br label %35 - -33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %34 unwind label %36 - -34: ; preds = %33 - br label %35 - -35: ; preds = %34, %17 - ret void - -36: ; preds = %33 - %37 = landingpad { i8*, i32 } - catch i8* null - %38 = extractvalue { i8*, i32 } %37, 0 - call void @__clang_call_terminate(i8* %38) #18 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1) #9 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #9 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %7, i32 0, i32 3 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 1 - %10 = load i32*, i32** %9, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4, i32* %10) #3 - %11 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %12 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %12 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %13, i32 0, i32 3 - %15 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 3 - %20 = load i32**, i32*** %19, align 8 - %21 = getelementptr inbounds i32*, i32** %20, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %14, i32** %21) #3 - %22 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 2 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i64 -1 - %29 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - store i32* %28, i32** %33, align 8 - %34 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %35 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %34) #3 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 3 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %35, i32* %41) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1) #9 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { argmemonly nofree nosync nounwind willreturn } -attributes #11 = { nofree nosync nounwind willreturn } -attributes #12 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noinline noreturn nounwind } -attributes #14 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #16 = { builtin allocsize(0) } -attributes #17 = { builtin nounwind } -attributes #18 = { noreturn nounwind } -attributes #19 = { noreturn } -attributes #20 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll deleted file mode 100644 index 082b4668..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll +++ /dev/null @@ -1,285 +0,0 @@ -; ModuleID = 'PE-benchmarks/m-coloring-problem.cpp' -source_filename = "PE-benchmarks/m-coloring-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [24 x i8] c"Solution does not exist\00", align 1 -@.str.1 = private unnamed_addr constant [53 x i8] c"Solution Exists: Following are the assigned colors \0A\00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c" %d \00", align 1 -@.str.3 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@__const.main.graph = private unnamed_addr constant [4 x [4 x i8]] [[4 x i8] c"\00\01\01\01", [4 x i8] c"\01\00\01\00", [4 x i8] c"\01\01\00\01", [4 x i8] c"\01\00\01\00"], align 16 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z6isSafeiPA4_bPii(i32 %0, [4 x i8]* %1, i32* %2, i32 %3) #0 { - %5 = alloca i1, align 1 - %6 = alloca i32, align 4 - %7 = alloca [4 x i8]*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store i32 %0, i32* %6, align 4 - store [4 x i8]* %1, [4 x i8]** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %11 - -11: ; preds = %34, %4 - %12 = load i32, i32* %10, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %37 - -14: ; preds = %11 - %15 = load [4 x i8]*, [4 x i8]** %7, align 8 - %16 = load i32, i32* %6, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i8], [4 x i8]* %15, i64 %17 - %19 = load i32, i32* %10, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i8], [4 x i8]* %18, i64 0, i64 %20 - %22 = load i8, i8* %21, align 1 - %23 = trunc i8 %22 to i1 - br i1 %23, label %24, label %33 - -24: ; preds = %14 - %25 = load i32, i32* %9, align 4 - %26 = load i32*, i32** %8, align 8 - %27 = load i32, i32* %10, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = icmp eq i32 %25, %30 - br i1 %31, label %32, label %33 - -32: ; preds = %24 - store i1 false, i1* %5, align 1 - br label %38 - -33: ; preds = %24, %14 - br label %34 - -34: ; preds = %33 - %35 = load i32, i32* %10, align 4 - %36 = add nsw i32 %35, 1 - store i32 %36, i32* %10, align 4 - br label %11, !llvm.loop !2 - -37: ; preds = %11 - store i1 true, i1* %5, align 1 - br label %38 - -38: ; preds = %37, %32 - %39 = load i1, i1* %5, align 1 - ret i1 %39 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %0, i32 %1, i32* %2, i32 %3) #1 { - %5 = alloca i1, align 1 - %6 = alloca [4 x i8]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store [4 x i8]* %0, [4 x i8]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - %11 = load i32, i32* %9, align 4 - %12 = icmp eq i32 %11, 4 - br i1 %12, label %13, label %14 - -13: ; preds = %4 - store i1 true, i1* %5, align 1 - br label %50 - -14: ; preds = %4 - store i32 1, i32* %10, align 4 - br label %15 - -15: ; preds = %46, %14 - %16 = load i32, i32* %10, align 4 - %17 = load i32, i32* %7, align 4 - %18 = icmp sle i32 %16, %17 - br i1 %18, label %19, label %49 - -19: ; preds = %15 - %20 = load i32, i32* %9, align 4 - %21 = load [4 x i8]*, [4 x i8]** %6, align 8 - %22 = load i32*, i32** %8, align 8 - %23 = load i32, i32* %10, align 4 - %24 = call zeroext i1 @_Z6isSafeiPA4_bPii(i32 %20, [4 x i8]* %21, i32* %22, i32 %23) - br i1 %24, label %25, label %45 - -25: ; preds = %19 - %26 = load i32, i32* %10, align 4 - %27 = load i32*, i32** %8, align 8 - %28 = load i32, i32* %9, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - store i32 %26, i32* %30, align 4 - %31 = load [4 x i8]*, [4 x i8]** %6, align 8 - %32 = load i32, i32* %7, align 4 - %33 = load i32*, i32** %8, align 8 - %34 = load i32, i32* %9, align 4 - %35 = add nsw i32 %34, 1 - %36 = call zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %31, i32 %32, i32* %33, i32 %35) - %37 = zext i1 %36 to i32 - %38 = icmp eq i32 %37, 1 - br i1 %38, label %39, label %40 - -39: ; preds = %25 - store i1 true, i1* %5, align 1 - br label %50 - -40: ; preds = %25 - %41 = load i32*, i32** %8, align 8 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - store i32 0, i32* %44, align 4 - br label %45 - -45: ; preds = %40, %19 - br label %46 - -46: ; preds = %45 - %47 = load i32, i32* %10, align 4 - %48 = add nsw i32 %47, 1 - store i32 %48, i32* %10, align 4 - br label %15, !llvm.loop !4 - -49: ; preds = %15 - store i1 false, i1* %5, align 1 - br label %50 - -50: ; preds = %49, %39, %13 - %51 = load i1, i1* %5, align 1 - ret i1 %51 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* %0, i32 %1) #1 { - %3 = alloca i1, align 1 - %4 = alloca [4 x i8]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca [4 x i32], align 16 - %7 = alloca i32, align 4 - store [4 x i8]* %0, [4 x i8]** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 0, i32* %7, align 4 - br label %8 - -8: ; preds = %15, %2 - %9 = load i32, i32* %7, align 4 - %10 = icmp slt i32 %9, 4 - br i1 %10, label %11, label %18 - -11: ; preds = %8 - %12 = load i32, i32* %7, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds [4 x i32], [4 x i32]* %6, i64 0, i64 %13 - store i32 0, i32* %14, align 4 - br label %15 - -15: ; preds = %11 - %16 = load i32, i32* %7, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* %7, align 4 - br label %8, !llvm.loop !5 - -18: ; preds = %8 - %19 = load [4 x i8]*, [4 x i8]** %4, align 8 - %20 = load i32, i32* %5, align 4 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %6, i64 0, i64 0 - %22 = call zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %19, i32 %20, i32* %21, i32 0) - %23 = zext i1 %22 to i32 - %24 = icmp eq i32 %23, 0 - br i1 %24, label %25, label %27 - -25: ; preds = %18 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - store i1 false, i1* %3, align 1 - br label %29 - -27: ; preds = %18 - %28 = getelementptr inbounds [4 x i32], [4 x i32]* %6, i64 0, i64 0 - call void @_Z13printSolutionPi(i32* %28) - store i1 true, i1* %3, align 1 - br label %29 - -29: ; preds = %27, %25 - %30 = load i1, i1* %3, align 1 - ret i1 %30 -} - -declare dso_local i32 @printf(i8*, ...) #2 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPi(i32* %0) #1 { - %2 = alloca i32*, align 8 - %3 = alloca i32, align 4 - store i32* %0, i32** %2, align 8 - %4 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([53 x i8], [53 x i8]* @.str.1, i64 0, i64 0)) - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %15, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 4 - br i1 %7, label %8, label %18 - -8: ; preds = %5 - %9 = load i32*, i32** %2, align 8 - %10 = load i32, i32* %3, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds i32, i32* %9, i64 %11 - %13 = load i32, i32* %12, align 4 - %14 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), i32 %13) - br label %15 - -15: ; preds = %8 - %16 = load i32, i32* %3, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* %3, align 4 - br label %5, !llvm.loop !6 - -18: ; preds = %5 - %19 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.3, i64 0, i64 0)) - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [4 x [4 x i8]], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x [4 x i8]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([4 x [4 x i8]], [4 x [4 x i8]]* @__const.main.graph, i32 0, i32 0, i32 0), i64 16, i1 false) - store i32 3, i32* %3, align 4 - %5 = getelementptr inbounds [4 x [4 x i8]], [4 x [4 x i8]]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* %5, i32 %6) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/magic-square.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/magic-square.ll deleted file mode 100644 index 4ac2f8ac..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/magic-square.ll +++ /dev/null @@ -1,293 +0,0 @@ -; ModuleID = 'PE-benchmarks/magic-square.cpp' -source_filename = "PE-benchmarks/magic-square.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"The Magic Square for n=\00", align 1 -@.str.1 = private unnamed_addr constant [29 x i8] c":\0ASum of each row or column \00", align 1 -@.str.2 = private unnamed_addr constant [4 x i8] c":\0A\0A\00", align 1 -@.str.3 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_magic_square.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z14generateSquarei(i32 %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %9 = load i32, i32* %2, align 4 - %10 = zext i32 %9 to i64 - %11 = load i32, i32* %2, align 4 - %12 = zext i32 %11 to i64 - %13 = call i8* @llvm.stacksave() - store i8* %13, i8** %3, align 8 - %14 = mul nuw i64 %10, %12 - %15 = alloca i32, i64 %14, align 16 - store i64 %10, i64* %4, align 8 - store i64 %12, i64* %5, align 8 - %16 = bitcast i32* %15 to i8* - %17 = mul nuw i64 %10, %12 - %18 = mul nuw i64 4, %17 - call void @llvm.memset.p0i8.i64(i8* align 16 %16, i8 0, i64 %18, i1 false) - %19 = load i32, i32* %2, align 4 - %20 = sdiv i32 %19, 2 - store i32 %20, i32* %6, align 4 - %21 = load i32, i32* %2, align 4 - %22 = sub nsw i32 %21, 1 - store i32 %22, i32* %7, align 4 - store i32 1, i32* %8, align 4 - br label %23 - -23: ; preds = %76, %61, %1 - %24 = load i32, i32* %8, align 4 - %25 = load i32, i32* %2, align 4 - %26 = load i32, i32* %2, align 4 - %27 = mul nsw i32 %25, %26 - %28 = icmp sle i32 %24, %27 - br i1 %28, label %29, label %81 - -29: ; preds = %23 - %30 = load i32, i32* %6, align 4 - %31 = icmp eq i32 %30, -1 - br i1 %31, label %32, label %39 - -32: ; preds = %29 - %33 = load i32, i32* %7, align 4 - %34 = load i32, i32* %2, align 4 - %35 = icmp eq i32 %33, %34 - br i1 %35, label %36, label %39 - -36: ; preds = %32 - %37 = load i32, i32* %2, align 4 - %38 = sub nsw i32 %37, 2 - store i32 %38, i32* %7, align 4 - store i32 0, i32* %6, align 4 - br label %51 - -39: ; preds = %32, %29 - %40 = load i32, i32* %7, align 4 - %41 = load i32, i32* %2, align 4 - %42 = icmp eq i32 %40, %41 - br i1 %42, label %43, label %44 - -43: ; preds = %39 - store i32 0, i32* %7, align 4 - br label %44 - -44: ; preds = %43, %39 - %45 = load i32, i32* %6, align 4 - %46 = icmp slt i32 %45, 0 - br i1 %46, label %47, label %50 - -47: ; preds = %44 - %48 = load i32, i32* %2, align 4 - %49 = sub nsw i32 %48, 1 - store i32 %49, i32* %6, align 4 - br label %50 - -50: ; preds = %47, %44 - br label %51 - -51: ; preds = %50, %36 - %52 = load i32, i32* %6, align 4 - %53 = sext i32 %52 to i64 - %54 = mul nsw i64 %53, %12 - %55 = getelementptr inbounds i32, i32* %15, i64 %54 - %56 = load i32, i32* %7, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = icmp ne i32 %59, 0 - br i1 %60, label %61, label %66 - -61: ; preds = %51 - %62 = load i32, i32* %7, align 4 - %63 = sub nsw i32 %62, 2 - store i32 %63, i32* %7, align 4 - %64 = load i32, i32* %6, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %6, align 4 - br label %23, !llvm.loop !2 - -66: ; preds = %51 - %67 = load i32, i32* %8, align 4 - %68 = add nsw i32 %67, 1 - store i32 %68, i32* %8, align 4 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = mul nsw i64 %70, %12 - %72 = getelementptr inbounds i32, i32* %15, i64 %71 - %73 = load i32, i32* %7, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %72, i64 %74 - store i32 %67, i32* %75, align 4 - br label %76 - -76: ; preds = %66 - %77 = load i32, i32* %7, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %7, align 4 - %79 = load i32, i32* %6, align 4 - %80 = add nsw i32 %79, -1 - store i32 %80, i32* %6, align 4 - br label %23, !llvm.loop !2 - -81: ; preds = %23 - %82 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - %83 = load i32, i32* %2, align 4 - %84 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %82, i32 %83) - %85 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %84, i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.1, i64 0, i64 0)) - %86 = load i32, i32* %2, align 4 - %87 = load i32, i32* %2, align 4 - %88 = load i32, i32* %2, align 4 - %89 = mul nsw i32 %87, %88 - %90 = add nsw i32 %89, 1 - %91 = mul nsw i32 %86, %90 - %92 = sdiv i32 %91, 2 - %93 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %85, i32 %92) - %94 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %93, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.2, i64 0, i64 0)) - store i32 0, i32* %6, align 4 - br label %95 - -95: ; preds = %120, %81 - %96 = load i32, i32* %6, align 4 - %97 = load i32, i32* %2, align 4 - %98 = icmp slt i32 %96, %97 - br i1 %98, label %99, label %123 - -99: ; preds = %95 - store i32 0, i32* %7, align 4 - br label %100 - -100: ; preds = %115, %99 - %101 = load i32, i32* %7, align 4 - %102 = load i32, i32* %2, align 4 - %103 = icmp slt i32 %101, %102 - br i1 %103, label %104, label %118 - -104: ; preds = %100 - %105 = load i32, i32* %6, align 4 - %106 = sext i32 %105 to i64 - %107 = mul nsw i64 %106, %12 - %108 = getelementptr inbounds i32, i32* %15, i64 %107 - %109 = load i32, i32* %7, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds i32, i32* %108, i64 %110 - %112 = load i32, i32* %111, align 4 - %113 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %112) - %114 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %113, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.3, i64 0, i64 0)) - br label %115 - -115: ; preds = %104 - %116 = load i32, i32* %7, align 4 - %117 = add nsw i32 %116, 1 - store i32 %117, i32* %7, align 4 - br label %100, !llvm.loop !4 - -118: ; preds = %100 - %119 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %120 - -120: ; preds = %118 - %121 = load i32, i32* %6, align 4 - %122 = add nsw i32 %121, 1 - store i32 %122, i32* %6, align 4 - br label %95, !llvm.loop !5 - -123: ; preds = %95 - %124 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %124) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 7, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - call void @_Z14generateSquarei(i32 %3) - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_magic_square.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll deleted file mode 100644 index 5fbea8fa..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll +++ /dev/null @@ -1,303 +0,0 @@ -; ModuleID = 'PE-benchmarks/matrix-chain-multiplication.cpp' -source_filename = "PE-benchmarks/matrix-chain-multiplication.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [4 x i32] [i32 1, i32 2, i32 3, i32 4], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [38 x i8] c"Minimum number of multiplications is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_matrix_chain_multiplication.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z16MatrixChainOrderPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %13 = load i32, i32* %4, align 4 - %14 = zext i32 %13 to i64 - %15 = load i32, i32* %4, align 4 - %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %5, align 8 - %18 = mul nuw i64 %14, %16 - %19 = alloca i32, i64 %18, align 16 - store i64 %14, i64* %6, align 8 - store i64 %16, i64* %7, align 8 - store i32 1, i32* %8, align 4 - br label %20 - -20: ; preds = %32, %2 - %21 = load i32, i32* %8, align 4 - %22 = load i32, i32* %4, align 4 - %23 = icmp slt i32 %21, %22 - br i1 %23, label %24, label %35 - -24: ; preds = %20 - %25 = load i32, i32* %8, align 4 - %26 = sext i32 %25 to i64 - %27 = mul nsw i64 %26, %16 - %28 = getelementptr inbounds i32, i32* %19, i64 %27 - %29 = load i32, i32* %8, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - store i32 0, i32* %31, align 4 - br label %32 - -32: ; preds = %24 - %33 = load i32, i32* %8, align 4 - %34 = add nsw i32 %33, 1 - store i32 %34, i32* %8, align 4 - br label %20, !llvm.loop !2 - -35: ; preds = %20 - store i32 2, i32* %11, align 4 - br label %36 - -36: ; preds = %132, %35 - %37 = load i32, i32* %11, align 4 - %38 = load i32, i32* %4, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %135 - -40: ; preds = %36 - store i32 1, i32* %8, align 4 - br label %41 - -41: ; preds = %128, %40 - %42 = load i32, i32* %8, align 4 - %43 = load i32, i32* %4, align 4 - %44 = load i32, i32* %11, align 4 - %45 = sub nsw i32 %43, %44 - %46 = add nsw i32 %45, 1 - %47 = icmp slt i32 %42, %46 - br i1 %47, label %48, label %131 - -48: ; preds = %41 - %49 = load i32, i32* %8, align 4 - %50 = load i32, i32* %11, align 4 - %51 = add nsw i32 %49, %50 - %52 = sub nsw i32 %51, 1 - store i32 %52, i32* %9, align 4 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = mul nsw i64 %54, %16 - %56 = getelementptr inbounds i32, i32* %19, i64 %55 - %57 = load i32, i32* %9, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds i32, i32* %56, i64 %58 - store i32 2147483647, i32* %59, align 4 - %60 = load i32, i32* %8, align 4 - store i32 %60, i32* %10, align 4 - br label %61 - -61: ; preds = %124, %48 - %62 = load i32, i32* %10, align 4 - %63 = load i32, i32* %9, align 4 - %64 = sub nsw i32 %63, 1 - %65 = icmp sle i32 %62, %64 - br i1 %65, label %66, label %127 - -66: ; preds = %61 - %67 = load i32, i32* %8, align 4 - %68 = sext i32 %67 to i64 - %69 = mul nsw i64 %68, %16 - %70 = getelementptr inbounds i32, i32* %19, i64 %69 - %71 = load i32, i32* %10, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %70, i64 %72 - %74 = load i32, i32* %73, align 4 - %75 = load i32, i32* %10, align 4 - %76 = add nsw i32 %75, 1 - %77 = sext i32 %76 to i64 - %78 = mul nsw i64 %77, %16 - %79 = getelementptr inbounds i32, i32* %19, i64 %78 - %80 = load i32, i32* %9, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds i32, i32* %79, i64 %81 - %83 = load i32, i32* %82, align 4 - %84 = add nsw i32 %74, %83 - %85 = load i32*, i32** %3, align 8 - %86 = load i32, i32* %8, align 4 - %87 = sub nsw i32 %86, 1 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i32, i32* %85, i64 %88 - %90 = load i32, i32* %89, align 4 - %91 = load i32*, i32** %3, align 8 - %92 = load i32, i32* %10, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = mul nsw i32 %90, %95 - %97 = load i32*, i32** %3, align 8 - %98 = load i32, i32* %9, align 4 - %99 = sext i32 %98 to i64 - %100 = getelementptr inbounds i32, i32* %97, i64 %99 - %101 = load i32, i32* %100, align 4 - %102 = mul nsw i32 %96, %101 - %103 = add nsw i32 %84, %102 - store i32 %103, i32* %12, align 4 - %104 = load i32, i32* %12, align 4 - %105 = load i32, i32* %8, align 4 - %106 = sext i32 %105 to i64 - %107 = mul nsw i64 %106, %16 - %108 = getelementptr inbounds i32, i32* %19, i64 %107 - %109 = load i32, i32* %9, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds i32, i32* %108, i64 %110 - %112 = load i32, i32* %111, align 4 - %113 = icmp slt i32 %104, %112 - br i1 %113, label %114, label %123 - -114: ; preds = %66 - %115 = load i32, i32* %12, align 4 - %116 = load i32, i32* %8, align 4 - %117 = sext i32 %116 to i64 - %118 = mul nsw i64 %117, %16 - %119 = getelementptr inbounds i32, i32* %19, i64 %118 - %120 = load i32, i32* %9, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %119, i64 %121 - store i32 %115, i32* %122, align 4 - br label %123 - -123: ; preds = %114, %66 - br label %124 - -124: ; preds = %123 - %125 = load i32, i32* %10, align 4 - %126 = add nsw i32 %125, 1 - store i32 %126, i32* %10, align 4 - br label %61, !llvm.loop !4 - -127: ; preds = %61 - br label %128 - -128: ; preds = %127 - %129 = load i32, i32* %8, align 4 - %130 = add nsw i32 %129, 1 - store i32 %130, i32* %8, align 4 - br label %41, !llvm.loop !5 - -131: ; preds = %41 - br label %132 - -132: ; preds = %131 - %133 = load i32, i32* %11, align 4 - %134 = add nsw i32 %133, 1 - store i32 %134, i32* %11, align 4 - br label %36, !llvm.loop !6 - -135: ; preds = %36 - %136 = mul nsw i64 1, %16 - %137 = getelementptr inbounds i32, i32* %19, i64 %136 - %138 = load i32, i32* %4, align 4 - %139 = sub nsw i32 %138, 1 - %140 = sext i32 %139 to i64 - %141 = getelementptr inbounds i32, i32* %137, i64 %140 - %142 = load i32, i32* %141, align 4 - %143 = load i8*, i8** %5, align 8 - call void @llvm.stackrestore(i8* %143) - ret i32 %142 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x i32]* @__const.main.arr to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([38 x i8], [38 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z16MatrixChainOrderPii(i32* %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %8) - %10 = call i32 @getchar() - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local i32 @getchar() #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_matrix_chain_multiplication.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll deleted file mode 100644 index 416edf66..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll +++ /dev/null @@ -1,272 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-length-chain-of-pairs.cpp' -source_filename = "PE-benchmarks/maximum-length-chain-of-pairs.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%class.Pair = type { i32, i32 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [4 x %class.Pair] [%class.Pair { i32 5, i32 24 }, %class.Pair { i32 15, i32 25 }, %class.Pair { i32 27, i32 40 }, %class.Pair { i32 50, i32 60 }], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [33 x i8] c"Length of maximum size chain is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { - %3 = alloca %class.Pair*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32*, align 8 - store %class.Pair* %0, %class.Pair** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %7, align 4 - %9 = load i32, i32* %4, align 4 - %10 = sext i32 %9 to i64 - %11 = mul i64 4, %10 - %12 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %11, i64 4) - %13 = extractvalue { i64, i1 } %12, 1 - %14 = extractvalue { i64, i1 } %12, 0 - %15 = select i1 %13, i64 -1, i64 %14 - %16 = call noalias nonnull i8* @_Znam(i64 %15) #9 - %17 = bitcast i8* %16 to i32* - store i32* %17, i32** %8, align 8 - store i32 0, i32* %5, align 4 - br label %18 - -18: ; preds = %27, %2 - %19 = load i32, i32* %5, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %30 - -22: ; preds = %18 - %23 = load i32*, i32** %8, align 8 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - store i32 1, i32* %26, align 4 - br label %27 - -27: ; preds = %22 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %18, !llvm.loop !2 - -30: ; preds = %18 - store i32 1, i32* %5, align 4 - br label %31 - -31: ; preds = %83, %30 - %32 = load i32, i32* %5, align 4 - %33 = load i32, i32* %4, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %86 - -35: ; preds = %31 - store i32 0, i32* %6, align 4 - br label %36 - -36: ; preds = %79, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %82 - -40: ; preds = %36 - %41 = load %class.Pair*, %class.Pair** %3, align 8 - %42 = load i32, i32* %5, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds %class.Pair, %class.Pair* %41, i64 %43 - %45 = getelementptr inbounds %class.Pair, %class.Pair* %44, i32 0, i32 0 - %46 = load i32, i32* %45, align 4 - %47 = load %class.Pair*, %class.Pair** %3, align 8 - %48 = load i32, i32* %6, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds %class.Pair, %class.Pair* %47, i64 %49 - %51 = getelementptr inbounds %class.Pair, %class.Pair* %50, i32 0, i32 1 - %52 = load i32, i32* %51, align 4 - %53 = icmp sgt i32 %46, %52 - br i1 %53, label %54, label %78 - -54: ; preds = %40 - %55 = load i32*, i32** %8, align 8 - %56 = load i32, i32* %5, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = load i32*, i32** %8, align 8 - %61 = load i32, i32* %6, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i32, i32* %60, i64 %62 - %64 = load i32, i32* %63, align 4 - %65 = add nsw i32 %64, 1 - %66 = icmp slt i32 %59, %65 - br i1 %66, label %67, label %78 - -67: ; preds = %54 - %68 = load i32*, i32** %8, align 8 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %68, i64 %70 - %72 = load i32, i32* %71, align 4 - %73 = add nsw i32 %72, 1 - %74 = load i32*, i32** %8, align 8 - %75 = load i32, i32* %5, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %74, i64 %76 - store i32 %73, i32* %77, align 4 - br label %78 - -78: ; preds = %67, %54, %40 - br label %79 - -79: ; preds = %78 - %80 = load i32, i32* %6, align 4 - %81 = add nsw i32 %80, 1 - store i32 %81, i32* %6, align 4 - br label %36, !llvm.loop !4 - -82: ; preds = %36 - br label %83 - -83: ; preds = %82 - %84 = load i32, i32* %5, align 4 - %85 = add nsw i32 %84, 1 - store i32 %85, i32* %5, align 4 - br label %31, !llvm.loop !5 - -86: ; preds = %31 - store i32 0, i32* %5, align 4 - br label %87 - -87: ; preds = %106, %86 - %88 = load i32, i32* %5, align 4 - %89 = load i32, i32* %4, align 4 - %90 = icmp slt i32 %88, %89 - br i1 %90, label %91, label %109 - -91: ; preds = %87 - %92 = load i32, i32* %7, align 4 - %93 = load i32*, i32** %8, align 8 - %94 = load i32, i32* %5, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds i32, i32* %93, i64 %95 - %97 = load i32, i32* %96, align 4 - %98 = icmp slt i32 %92, %97 - br i1 %98, label %99, label %105 - -99: ; preds = %91 - %100 = load i32*, i32** %8, align 8 - %101 = load i32, i32* %5, align 4 - %102 = sext i32 %101 to i64 - %103 = getelementptr inbounds i32, i32* %100, i64 %102 - %104 = load i32, i32* %103, align 4 - store i32 %104, i32* %7, align 4 - br label %105 - -105: ; preds = %99, %91 - br label %106 - -106: ; preds = %105 - %107 = load i32, i32* %5, align 4 - %108 = add nsw i32 %107, 1 - store i32 %108, i32* %5, align 4 - br label %87, !llvm.loop !6 - -109: ; preds = %87 - %110 = load i32, i32* %7, align 4 - ret i32 %110 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #5 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [4 x %class.Pair], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x %class.Pair]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x %class.Pair]* @__const.main.arr to i8*), i64 32, i1 false) - store i32 4, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([33 x i8], [33 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [4 x %class.Pair], [4 x %class.Pair]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll deleted file mode 100644 index 19210122..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll +++ /dev/null @@ -1,340 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp' -source_filename = "PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.price = private unnamed_addr constant [7 x i32] [i32 2, i32 30, i32 15, i32 10, i32 8, i32 25, i32 80], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [18 x i8] c"Maximum Profit = \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %14 = load i32, i32* %4, align 4 - %15 = sext i32 %14 to i64 - %16 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %15, i64 4) - %17 = extractvalue { i64, i1 } %16, 1 - %18 = extractvalue { i64, i1 } %16, 0 - %19 = select i1 %17, i64 -1, i64 %18 - %20 = call noalias nonnull i8* @_Znam(i64 %19) #11 - %21 = bitcast i8* %20 to i32* - store i32* %21, i32** %5, align 8 - store i32 0, i32* %6, align 4 - br label %22 - -22: ; preds = %31, %2 - %23 = load i32, i32* %6, align 4 - %24 = load i32, i32* %4, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %34 - -26: ; preds = %22 - %27 = load i32*, i32** %5, align 8 - %28 = load i32, i32* %6, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - store i32 0, i32* %30, align 4 - br label %31 - -31: ; preds = %26 - %32 = load i32, i32* %6, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %6, align 4 - br label %22, !llvm.loop !2 - -34: ; preds = %22 - %35 = load i32*, i32** %3, align 8 - %36 = load i32, i32* %4, align 4 - %37 = sub nsw i32 %36, 1 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %35, i64 %38 - %40 = load i32, i32* %39, align 4 - store i32 %40, i32* %7, align 4 - %41 = load i32, i32* %4, align 4 - %42 = sub nsw i32 %41, 2 - store i32 %42, i32* %8, align 4 - br label %43 - -43: ; preds = %79, %34 - %44 = load i32, i32* %8, align 4 - %45 = icmp sge i32 %44, 0 - br i1 %45, label %46, label %82 - -46: ; preds = %43 - %47 = load i32*, i32** %3, align 8 - %48 = load i32, i32* %8, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %7, align 4 - %53 = icmp sgt i32 %51, %52 - br i1 %53, label %54, label %60 - -54: ; preds = %46 - %55 = load i32*, i32** %3, align 8 - %56 = load i32, i32* %8, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - store i32 %59, i32* %7, align 4 - br label %60 - -60: ; preds = %54, %46 - %61 = load i32*, i32** %5, align 8 - %62 = load i32, i32* %8, align 4 - %63 = add nsw i32 %62, 1 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %61, i64 %64 - %66 = load i32, i32* %7, align 4 - %67 = load i32*, i32** %3, align 8 - %68 = load i32, i32* %8, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i32, i32* %67, i64 %69 - %71 = load i32, i32* %70, align 4 - %72 = sub nsw i32 %66, %71 - store i32 %72, i32* %9, align 4 - %73 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %65, i32* nonnull align 4 dereferenceable(4) %9) - %74 = load i32, i32* %73, align 4 - %75 = load i32*, i32** %5, align 8 - %76 = load i32, i32* %8, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i32, i32* %75, i64 %77 - store i32 %74, i32* %78, align 4 - br label %79 - -79: ; preds = %60 - %80 = load i32, i32* %8, align 4 - %81 = add nsw i32 %80, -1 - store i32 %81, i32* %8, align 4 - br label %43, !llvm.loop !4 - -82: ; preds = %43 - %83 = load i32*, i32** %3, align 8 - %84 = getelementptr inbounds i32, i32* %83, i64 0 - %85 = load i32, i32* %84, align 4 - store i32 %85, i32* %10, align 4 - store i32 1, i32* %11, align 4 - br label %86 - -86: ; preds = %129, %82 - %87 = load i32, i32* %11, align 4 - %88 = load i32, i32* %4, align 4 - %89 = icmp slt i32 %87, %88 - br i1 %89, label %90, label %132 - -90: ; preds = %86 - %91 = load i32*, i32** %3, align 8 - %92 = load i32, i32* %11, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = load i32, i32* %10, align 4 - %97 = icmp slt i32 %95, %96 - br i1 %97, label %98, label %104 - -98: ; preds = %90 - %99 = load i32*, i32** %3, align 8 - %100 = load i32, i32* %11, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds i32, i32* %99, i64 %101 - %103 = load i32, i32* %102, align 4 - store i32 %103, i32* %10, align 4 - br label %104 - -104: ; preds = %98, %90 - %105 = load i32*, i32** %5, align 8 - %106 = load i32, i32* %11, align 4 - %107 = sub nsw i32 %106, 1 - %108 = sext i32 %107 to i64 - %109 = getelementptr inbounds i32, i32* %105, i64 %108 - %110 = load i32*, i32** %5, align 8 - %111 = load i32, i32* %11, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %110, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i32*, i32** %3, align 8 - %116 = load i32, i32* %11, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %115, i64 %117 - %119 = load i32, i32* %118, align 4 - %120 = load i32, i32* %10, align 4 - %121 = sub nsw i32 %119, %120 - %122 = add nsw i32 %114, %121 - store i32 %122, i32* %12, align 4 - %123 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %109, i32* nonnull align 4 dereferenceable(4) %12) - %124 = load i32, i32* %123, align 4 - %125 = load i32*, i32** %5, align 8 - %126 = load i32, i32* %11, align 4 - %127 = sext i32 %126 to i64 - %128 = getelementptr inbounds i32, i32* %125, i64 %127 - store i32 %124, i32* %128, align 4 - br label %129 - -129: ; preds = %104 - %130 = load i32, i32* %11, align 4 - %131 = add nsw i32 %130, 1 - store i32 %131, i32* %11, align 4 - br label %86, !llvm.loop !5 - -132: ; preds = %86 - %133 = load i32*, i32** %5, align 8 - %134 = load i32, i32* %4, align 4 - %135 = sub nsw i32 %134, 1 - %136 = sext i32 %135 to i64 - %137 = getelementptr inbounds i32, i32* %133, i64 %136 - %138 = load i32, i32* %137, align 4 - store i32 %138, i32* %13, align 4 - %139 = load i32*, i32** %5, align 8 - %140 = icmp eq i32* %139, null - br i1 %140, label %143, label %141 - -141: ; preds = %132 - %142 = bitcast i32* %139 to i8* - call void @_ZdaPv(i8* %142) #12 - br label %143 - -143: ; preds = %141, %132 - %144 = load i32, i32* %13, align 4 - ret i32 %144 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #5 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #8 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([7 x i32]* @__const.main.price to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z9maxProfitPii(i32* %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #10 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { argmemonly nofree nosync nounwind willreturn } -attributes #11 = { builtin allocsize(0) } -attributes #12 = { builtin nounwind } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll deleted file mode 100644 index 93ce347a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll +++ /dev/null @@ -1,413 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp' -source_filename = "PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [30 x i8] c"Maximum size sub-matrix is: \0A\00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.2 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@__const.main.M = private unnamed_addr constant [6 x [5 x i32]] [[5 x i32] [i32 0, i32 1, i32 1, i32 0, i32 1], [5 x i32] [i32 1, i32 1, i32 0, i32 1, i32 0], [5 x i32] [i32 0, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 0], [5 x i32] [i32 1, i32 1, i32 1, i32 1, i32 1], [5 x i32] zeroinitializer], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { - %2 = alloca [5 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca [6 x [5 x i32]], align 16 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [5 x i32]* %0, [5 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %9 - -9: ; preds = %23, %1 - %10 = load i32, i32* %3, align 4 - %11 = icmp slt i32 %10, 6 - br i1 %11, label %12, label %26 - -12: ; preds = %9 - %13 = load [5 x i32]*, [5 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [5 x i32], [5 x i32]* %13, i64 %15 - %17 = getelementptr inbounds [5 x i32], [5 x i32]* %16, i64 0, i64 0 - %18 = load i32, i32* %17, align 4 - %19 = load i32, i32* %3, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %20 - %22 = getelementptr inbounds [5 x i32], [5 x i32]* %21, i64 0, i64 0 - store i32 %18, i32* %22, align 4 - br label %23 - -23: ; preds = %12 - %24 = load i32, i32* %3, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %3, align 4 - br label %9, !llvm.loop !2 - -26: ; preds = %9 - store i32 0, i32* %4, align 4 - br label %27 - -27: ; preds = %41, %26 - %28 = load i32, i32* %4, align 4 - %29 = icmp slt i32 %28, 5 - br i1 %29, label %30, label %44 - -30: ; preds = %27 - %31 = load [5 x i32]*, [5 x i32]** %2, align 8 - %32 = getelementptr inbounds [5 x i32], [5 x i32]* %31, i64 0 - %33 = load i32, i32* %4, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds [5 x i32], [5 x i32]* %32, i64 0, i64 %34 - %36 = load i32, i32* %35, align 4 - %37 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 0 - %38 = load i32, i32* %4, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds [5 x i32], [5 x i32]* %37, i64 0, i64 %39 - store i32 %36, i32* %40, align 4 - br label %41 - -41: ; preds = %30 - %42 = load i32, i32* %4, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %4, align 4 - br label %27, !llvm.loop !4 - -44: ; preds = %27 - store i32 1, i32* %3, align 4 - br label %45 - -45: ; preds = %107, %44 - %46 = load i32, i32* %3, align 4 - %47 = icmp slt i32 %46, 6 - br i1 %47, label %48, label %110 - -48: ; preds = %45 - store i32 1, i32* %4, align 4 - br label %49 - -49: ; preds = %103, %48 - %50 = load i32, i32* %4, align 4 - %51 = icmp slt i32 %50, 5 - br i1 %51, label %52, label %106 - -52: ; preds = %49 - %53 = load [5 x i32]*, [5 x i32]** %2, align 8 - %54 = load i32, i32* %3, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds [5 x i32], [5 x i32]* %53, i64 %55 - %57 = load i32, i32* %4, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds [5 x i32], [5 x i32]* %56, i64 0, i64 %58 - %60 = load i32, i32* %59, align 4 - %61 = icmp eq i32 %60, 1 - br i1 %61, label %62, label %95 - -62: ; preds = %52 - %63 = load i32, i32* %3, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %64 - %66 = load i32, i32* %4, align 4 - %67 = sub nsw i32 %66, 1 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [5 x i32], [5 x i32]* %65, i64 0, i64 %68 - %70 = load i32, i32* %3, align 4 - %71 = sub nsw i32 %70, 1 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %72 - %74 = load i32, i32* %4, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds [5 x i32], [5 x i32]* %73, i64 0, i64 %75 - %77 = load i32, i32* %3, align 4 - %78 = sub nsw i32 %77, 1 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %79 - %81 = load i32, i32* %4, align 4 - %82 = sub nsw i32 %81, 1 - %83 = sext i32 %82 to i64 - %84 = getelementptr inbounds [5 x i32], [5 x i32]* %80, i64 0, i64 %83 - %85 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %76, i32* nonnull align 4 dereferenceable(4) %84) - %86 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %69, i32* nonnull align 4 dereferenceable(4) %85) - %87 = load i32, i32* %86, align 4 - %88 = add nsw i32 %87, 1 - %89 = load i32, i32* %3, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %90 - %92 = load i32, i32* %4, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [5 x i32], [5 x i32]* %91, i64 0, i64 %93 - store i32 %88, i32* %94, align 4 - br label %102 - -95: ; preds = %52 - %96 = load i32, i32* %3, align 4 - %97 = sext i32 %96 to i64 - %98 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %97 - %99 = load i32, i32* %4, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds [5 x i32], [5 x i32]* %98, i64 0, i64 %100 - store i32 0, i32* %101, align 4 - br label %102 - -102: ; preds = %95, %62 - br label %103 - -103: ; preds = %102 - %104 = load i32, i32* %4, align 4 - %105 = add nsw i32 %104, 1 - store i32 %105, i32* %4, align 4 - br label %49, !llvm.loop !5 - -106: ; preds = %49 - br label %107 - -107: ; preds = %106 - %108 = load i32, i32* %3, align 4 - %109 = add nsw i32 %108, 1 - store i32 %109, i32* %3, align 4 - br label %45, !llvm.loop !6 - -110: ; preds = %45 - %111 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 0 - %112 = getelementptr inbounds [5 x i32], [5 x i32]* %111, i64 0, i64 0 - %113 = load i32, i32* %112, align 16 - store i32 %113, i32* %6, align 4 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %3, align 4 - br label %114 - -114: ; preds = %146, %110 - %115 = load i32, i32* %3, align 4 - %116 = icmp slt i32 %115, 6 - br i1 %116, label %117, label %149 - -117: ; preds = %114 - store i32 0, i32* %4, align 4 - br label %118 - -118: ; preds = %142, %117 - %119 = load i32, i32* %4, align 4 - %120 = icmp slt i32 %119, 5 - br i1 %120, label %121, label %145 - -121: ; preds = %118 - %122 = load i32, i32* %6, align 4 - %123 = load i32, i32* %3, align 4 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %124 - %126 = load i32, i32* %4, align 4 - %127 = sext i32 %126 to i64 - %128 = getelementptr inbounds [5 x i32], [5 x i32]* %125, i64 0, i64 %127 - %129 = load i32, i32* %128, align 4 - %130 = icmp slt i32 %122, %129 - br i1 %130, label %131, label %141 - -131: ; preds = %121 - %132 = load i32, i32* %3, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 %133 - %135 = load i32, i32* %4, align 4 - %136 = sext i32 %135 to i64 - %137 = getelementptr inbounds [5 x i32], [5 x i32]* %134, i64 0, i64 %136 - %138 = load i32, i32* %137, align 4 - store i32 %138, i32* %6, align 4 - %139 = load i32, i32* %3, align 4 - store i32 %139, i32* %7, align 4 - %140 = load i32, i32* %4, align 4 - store i32 %140, i32* %8, align 4 - br label %141 - -141: ; preds = %131, %121 - br label %142 - -142: ; preds = %141 - %143 = load i32, i32* %4, align 4 - %144 = add nsw i32 %143, 1 - store i32 %144, i32* %4, align 4 - br label %118, !llvm.loop !7 - -145: ; preds = %118 - br label %146 - -146: ; preds = %145 - %147 = load i32, i32* %3, align 4 - %148 = add nsw i32 %147, 1 - store i32 %148, i32* %3, align 4 - br label %114, !llvm.loop !8 - -149: ; preds = %114 - %150 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([30 x i8], [30 x i8]* @.str, i64 0, i64 0)) - %151 = load i32, i32* %7, align 4 - store i32 %151, i32* %3, align 4 - br label %152 - -152: ; preds = %182, %149 - %153 = load i32, i32* %3, align 4 - %154 = load i32, i32* %7, align 4 - %155 = load i32, i32* %6, align 4 - %156 = sub nsw i32 %154, %155 - %157 = icmp sgt i32 %153, %156 - br i1 %157, label %158, label %185 - -158: ; preds = %152 - %159 = load i32, i32* %8, align 4 - store i32 %159, i32* %4, align 4 - br label %160 - -160: ; preds = %177, %158 - %161 = load i32, i32* %4, align 4 - %162 = load i32, i32* %8, align 4 - %163 = load i32, i32* %6, align 4 - %164 = sub nsw i32 %162, %163 - %165 = icmp sgt i32 %161, %164 - br i1 %165, label %166, label %180 - -166: ; preds = %160 - %167 = load [5 x i32]*, [5 x i32]** %2, align 8 - %168 = load i32, i32* %3, align 4 - %169 = sext i32 %168 to i64 - %170 = getelementptr inbounds [5 x i32], [5 x i32]* %167, i64 %169 - %171 = load i32, i32* %4, align 4 - %172 = sext i32 %171 to i64 - %173 = getelementptr inbounds [5 x i32], [5 x i32]* %170, i64 0, i64 %172 - %174 = load i32, i32* %173, align 4 - %175 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %174) - %176 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %175, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %177 - -177: ; preds = %166 - %178 = load i32, i32* %4, align 4 - %179 = add nsw i32 %178, -1 - store i32 %179, i32* %4, align 4 - br label %160, !llvm.loop !9 - -180: ; preds = %160 - %181 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - br label %182 - -182: ; preds = %180 - %183 = load i32, i32* %3, align 4 - %184 = add nsw i32 %183, -1 - store i32 %184, i32* %3, align 4 - br label %152, !llvm.loop !10 - -185: ; preds = %152 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #5 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca [6 x [5 x i32]], align 16 - %2 = bitcast [6 x [5 x i32]]* %1 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %2, i8* align 16 bitcast ([6 x [5 x i32]]* @__const.main.M to i8*), i64 120, i1 false) - %3 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %1, i64 0, i64 0 - call void @_Z17printMaxSubSquarePA5_i([5 x i32]* %3) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll deleted file mode 100644 index b7d16358..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll +++ /dev/null @@ -1,279 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-sum-increasing-subsequence.cpp' -source_filename = "PE-benchmarks/maximum-sum-increasing-subsequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [7 x i32] [i32 1, i32 101, i32 2, i32 3, i32 100, i32 4, i32 5], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [46 x i8] c"Sum of maximum sum increasing subsequence is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z8maxSumISPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %7, align 4 - %10 = load i32, i32* %4, align 4 - %11 = zext i32 %10 to i64 - %12 = call i8* @llvm.stacksave() - store i8* %12, i8** %8, align 8 - %13 = alloca i32, i64 %11, align 16 - store i64 %11, i64* %9, align 8 - store i32 0, i32* %5, align 4 - br label %14 - -14: ; preds = %27, %2 - %15 = load i32, i32* %5, align 4 - %16 = load i32, i32* %4, align 4 - %17 = icmp slt i32 %15, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %14 - %19 = load i32*, i32** %3, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %19, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %13, i64 %25 - store i32 %23, i32* %26, align 4 - br label %27 - -27: ; preds = %18 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %14, !llvm.loop !2 - -30: ; preds = %14 - store i32 1, i32* %5, align 4 - br label %31 - -31: ; preds = %87, %30 - %32 = load i32, i32* %5, align 4 - %33 = load i32, i32* %4, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %90 - -35: ; preds = %31 - store i32 0, i32* %6, align 4 - br label %36 - -36: ; preds = %83, %35 - %37 = load i32, i32* %6, align 4 - %38 = load i32, i32* %5, align 4 - %39 = icmp slt i32 %37, %38 - br i1 %39, label %40, label %86 - -40: ; preds = %36 - %41 = load i32*, i32** %3, align 8 - %42 = load i32, i32* %5, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - %46 = load i32*, i32** %3, align 8 - %47 = load i32, i32* %6, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = icmp sgt i32 %45, %50 - br i1 %51, label %52, label %82 - -52: ; preds = %40 - %53 = load i32, i32* %5, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %13, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = load i32, i32* %6, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds i32, i32* %13, i64 %58 - %60 = load i32, i32* %59, align 4 - %61 = load i32*, i32** %3, align 8 - %62 = load i32, i32* %5, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i32, i32* %61, i64 %63 - %65 = load i32, i32* %64, align 4 - %66 = add nsw i32 %60, %65 - %67 = icmp slt i32 %56, %66 - br i1 %67, label %68, label %82 - -68: ; preds = %52 - %69 = load i32, i32* %6, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %13, i64 %70 - %72 = load i32, i32* %71, align 4 - %73 = load i32*, i32** %3, align 8 - %74 = load i32, i32* %5, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i32, i32* %73, i64 %75 - %77 = load i32, i32* %76, align 4 - %78 = add nsw i32 %72, %77 - %79 = load i32, i32* %5, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %13, i64 %80 - store i32 %78, i32* %81, align 4 - br label %82 - -82: ; preds = %68, %52, %40 - br label %83 - -83: ; preds = %82 - %84 = load i32, i32* %6, align 4 - %85 = add nsw i32 %84, 1 - store i32 %85, i32* %6, align 4 - br label %36, !llvm.loop !4 - -86: ; preds = %36 - br label %87 - -87: ; preds = %86 - %88 = load i32, i32* %5, align 4 - %89 = add nsw i32 %88, 1 - store i32 %89, i32* %5, align 4 - br label %31, !llvm.loop !5 - -90: ; preds = %31 - store i32 0, i32* %5, align 4 - br label %91 - -91: ; preds = %108, %90 - %92 = load i32, i32* %5, align 4 - %93 = load i32, i32* %4, align 4 - %94 = icmp slt i32 %92, %93 - br i1 %94, label %95, label %111 - -95: ; preds = %91 - %96 = load i32, i32* %7, align 4 - %97 = load i32, i32* %5, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i32, i32* %13, i64 %98 - %100 = load i32, i32* %99, align 4 - %101 = icmp slt i32 %96, %100 - br i1 %101, label %102, label %107 - -102: ; preds = %95 - %103 = load i32, i32* %5, align 4 - %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i32, i32* %13, i64 %104 - %106 = load i32, i32* %105, align 4 - store i32 %106, i32* %7, align 4 - br label %107 - -107: ; preds = %102, %95 - br label %108 - -108: ; preds = %107 - %109 = load i32, i32* %5, align 4 - %110 = add nsw i32 %109, 1 - store i32 %110, i32* %5, align 4 - br label %91, !llvm.loop !6 - -111: ; preds = %91 - %112 = load i32, i32* %7, align 4 - %113 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %113) - ret i32 %112 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([46 x i8], [46 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z8maxSumISPii(i32* %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %8) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %9, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-rectangle-in-a-2d-matrix.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-rectangle-in-a-2d-matrix.ll deleted file mode 100644 index feda134e..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-rectangle-in-a-2d-matrix.ll +++ /dev/null @@ -1,385 +0,0 @@ -; ModuleID = 'PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp' -source_filename = "PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [14 x i8] c"(Top, Left) (\00", align 1 -@.str.1 = private unnamed_addr constant [3 x i8] c", \00", align 1 -@.str.2 = private unnamed_addr constant [2 x i8] c")\00", align 1 -@.str.3 = private unnamed_addr constant [18 x i8] c"(Bottom, Right) (\00", align 1 -@.str.4 = private unnamed_addr constant [13 x i8] c"Max sum is: \00", align 1 -@__const.main.M = private unnamed_addr constant [4 x [5 x i32]] [[5 x i32] [i32 1, i32 2, i32 -1, i32 -4, i32 -20], [5 x i32] [i32 -8, i32 -3, i32 4, i32 2, i32 1], [5 x i32] [i32 3, i32 8, i32 10, i32 1, i32 3], [5 x i32] [i32 -4, i32 -1, i32 1, i32 7, i32 -6]], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z6kadanePiS_S_i(i32* %0, i32* %1, i32* %2, i32 %3) #4 { - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - %8 = alloca i32*, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i32* %0, i32** %6, align 8 - store i32* %1, i32** %7, align 8 - store i32* %2, i32** %8, align 8 - store i32 %3, i32* %9, align 4 - store i32 0, i32* %10, align 4 - store i32 -2147483648, i32* %11, align 4 - %14 = load i32*, i32** %8, align 8 - store i32 -1, i32* %14, align 4 - store i32 0, i32* %13, align 4 - store i32 0, i32* %12, align 4 - br label %15 - -15: ; preds = %44, %4 - %16 = load i32, i32* %12, align 4 - %17 = load i32, i32* %9, align 4 - %18 = icmp slt i32 %16, %17 - br i1 %18, label %19, label %47 - -19: ; preds = %15 - %20 = load i32*, i32** %6, align 8 - %21 = load i32, i32* %12, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - %24 = load i32, i32* %23, align 4 - %25 = load i32, i32* %10, align 4 - %26 = add nsw i32 %25, %24 - store i32 %26, i32* %10, align 4 - %27 = load i32, i32* %10, align 4 - %28 = icmp slt i32 %27, 0 - br i1 %28, label %29, label %32 - -29: ; preds = %19 - store i32 0, i32* %10, align 4 - %30 = load i32, i32* %12, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %13, align 4 - br label %43 - -32: ; preds = %19 - %33 = load i32, i32* %10, align 4 - %34 = load i32, i32* %11, align 4 - %35 = icmp sgt i32 %33, %34 - br i1 %35, label %36, label %42 - -36: ; preds = %32 - %37 = load i32, i32* %10, align 4 - store i32 %37, i32* %11, align 4 - %38 = load i32, i32* %13, align 4 - %39 = load i32*, i32** %7, align 8 - store i32 %38, i32* %39, align 4 - %40 = load i32, i32* %12, align 4 - %41 = load i32*, i32** %8, align 8 - store i32 %40, i32* %41, align 4 - br label %42 - -42: ; preds = %36, %32 - br label %43 - -43: ; preds = %42, %29 - br label %44 - -44: ; preds = %43 - %45 = load i32, i32* %12, align 4 - %46 = add nsw i32 %45, 1 - store i32 %46, i32* %12, align 4 - br label %15, !llvm.loop !2 - -47: ; preds = %15 - %48 = load i32*, i32** %8, align 8 - %49 = load i32, i32* %48, align 4 - %50 = icmp ne i32 %49, -1 - br i1 %50, label %51, label %53 - -51: ; preds = %47 - %52 = load i32, i32* %11, align 4 - store i32 %52, i32* %5, align 4 - br label %86 - -53: ; preds = %47 - %54 = load i32*, i32** %6, align 8 - %55 = getelementptr inbounds i32, i32* %54, i64 0 - %56 = load i32, i32* %55, align 4 - store i32 %56, i32* %11, align 4 - %57 = load i32*, i32** %8, align 8 - store i32 0, i32* %57, align 4 - %58 = load i32*, i32** %7, align 8 - store i32 0, i32* %58, align 4 - store i32 1, i32* %12, align 4 - br label %59 - -59: ; preds = %81, %53 - %60 = load i32, i32* %12, align 4 - %61 = load i32, i32* %9, align 4 - %62 = icmp slt i32 %60, %61 - br i1 %62, label %63, label %84 - -63: ; preds = %59 - %64 = load i32*, i32** %6, align 8 - %65 = load i32, i32* %12, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %67, align 4 - %69 = load i32, i32* %11, align 4 - %70 = icmp sgt i32 %68, %69 - br i1 %70, label %71, label %80 - -71: ; preds = %63 - %72 = load i32*, i32** %6, align 8 - %73 = load i32, i32* %12, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %72, i64 %74 - %76 = load i32, i32* %75, align 4 - store i32 %76, i32* %11, align 4 - %77 = load i32, i32* %12, align 4 - %78 = load i32*, i32** %8, align 8 - store i32 %77, i32* %78, align 4 - %79 = load i32*, i32** %7, align 8 - store i32 %77, i32* %79, align 4 - br label %80 - -80: ; preds = %71, %63 - br label %81 - -81: ; preds = %80 - %82 = load i32, i32* %12, align 4 - %83 = add nsw i32 %82, 1 - store i32 %83, i32* %12, align 4 - br label %59, !llvm.loop !4 - -84: ; preds = %59 - %85 = load i32, i32* %11, align 4 - store i32 %85, i32* %5, align 4 - br label %86 - -86: ; preds = %84, %51 - %87 = load i32, i32* %5, align 4 - ret i32 %87 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* %0) #5 { - %2 = alloca [5 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca [4 x i32], align 16 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store [5 x i32]* %0, [5 x i32]** %2, align 8 - store i32 -2147483648, i32* %3, align 4 - store i32 0, i32* %8, align 4 - br label %15 - -15: ; preds = %63, %1 - %16 = load i32, i32* %8, align 4 - %17 = icmp slt i32 %16, 5 - br i1 %17, label %18, label %66 - -18: ; preds = %15 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i64 0, i64 0 - %20 = bitcast i32* %19 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %20, i8 0, i64 16, i1 false) - %21 = load i32, i32* %8, align 4 - store i32 %21, i32* %9, align 4 - br label %22 - -22: ; preds = %59, %18 - %23 = load i32, i32* %9, align 4 - %24 = icmp slt i32 %23, 5 - br i1 %24, label %25, label %62 - -25: ; preds = %22 - store i32 0, i32* %10, align 4 - br label %26 - -26: ; preds = %43, %25 - %27 = load i32, i32* %10, align 4 - %28 = icmp slt i32 %27, 4 - br i1 %28, label %29, label %46 - -29: ; preds = %26 - %30 = load [5 x i32]*, [5 x i32]** %2, align 8 - %31 = load i32, i32* %10, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [5 x i32], [5 x i32]* %30, i64 %32 - %34 = load i32, i32* %9, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [5 x i32], [5 x i32]* %33, i64 0, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = load i32, i32* %10, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i64 0, i64 %39 - %41 = load i32, i32* %40, align 4 - %42 = add nsw i32 %41, %37 - store i32 %42, i32* %40, align 4 - br label %43 - -43: ; preds = %29 - %44 = load i32, i32* %10, align 4 - %45 = add nsw i32 %44, 1 - store i32 %45, i32* %10, align 4 - br label %26, !llvm.loop !5 - -46: ; preds = %26 - %47 = getelementptr inbounds [4 x i32], [4 x i32]* %11, i64 0, i64 0 - %48 = call i32 @_Z6kadanePiS_S_i(i32* %47, i32* %13, i32* %14, i32 4) - store i32 %48, i32* %12, align 4 - %49 = load i32, i32* %12, align 4 - %50 = load i32, i32* %3, align 4 - %51 = icmp sgt i32 %49, %50 - br i1 %51, label %52, label %58 - -52: ; preds = %46 - %53 = load i32, i32* %12, align 4 - store i32 %53, i32* %3, align 4 - %54 = load i32, i32* %8, align 4 - store i32 %54, i32* %4, align 4 - %55 = load i32, i32* %9, align 4 - store i32 %55, i32* %5, align 4 - %56 = load i32, i32* %13, align 4 - store i32 %56, i32* %6, align 4 - %57 = load i32, i32* %14, align 4 - store i32 %57, i32* %7, align 4 - br label %58 - -58: ; preds = %52, %46 - br label %59 - -59: ; preds = %58 - %60 = load i32, i32* %9, align 4 - %61 = add nsw i32 %60, 1 - store i32 %61, i32* %9, align 4 - br label %22, !llvm.loop !6 - -62: ; preds = %22 - br label %63 - -63: ; preds = %62 - %64 = load i32, i32* %8, align 4 - %65 = add nsw i32 %64, 1 - store i32 %65, i32* %8, align 4 - br label %15, !llvm.loop !7 - -66: ; preds = %15 - %67 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([14 x i8], [14 x i8]* @.str, i64 0, i64 0)) - %68 = load i32, i32* %6, align 4 - %69 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %67, i32 %68) - %70 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %69, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.1, i64 0, i64 0)) - %71 = load i32, i32* %4, align 4 - %72 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %70, i32 %71) - %73 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %72, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - %74 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %73, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %75 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str.3, i64 0, i64 0)) - %76 = load i32, i32* %7, align 4 - %77 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %75, i32 %76) - %78 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %77, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.1, i64 0, i64 0)) - %79 = load i32, i32* %5, align 4 - %80 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %78, i32 %79) - %81 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %80, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - %82 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %81, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %83 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str.4, i64 0, i64 0)) - %84 = load i32, i32* %3, align 4 - %85 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %83, i32 %84) - %86 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %85, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret void -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [4 x [5 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [4 x [5 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([4 x [5 x i32]]* @__const.main.M to i8*), i64 80, i1 false) - %4 = getelementptr inbounds [4 x [5 x i32]], [4 x [5 x i32]]* %2, i64 0, i64 0 - call void @_Z10findMaxSumPA5_i([5 x i32]* %4) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll deleted file mode 100644 index d1424cae..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll +++ /dev/null @@ -1,417 +0,0 @@ -; ModuleID = 'PE-benchmarks/merge-sort-for-doubly-linked-list.cpp' -source_filename = "PE-benchmarks/merge-sort-for-doubly-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Node = type { i32, %class.Node*, %class.Node* } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [38 x i8] c"Forward Traversal using next poitner\0A\00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.2 = private unnamed_addr constant [40 x i8] c"\0ABackward Traversal using prev pointer\0A\00", align 1 -@.str.3 = private unnamed_addr constant [27 x i8] c"Linked List after sorting\0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %0, %class.Node* %1) #4 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %4, align 8 - store %class.Node* %1, %class.Node** %5, align 8 - %6 = load %class.Node*, %class.Node** %4, align 8 - %7 = icmp ne %class.Node* %6, null - br i1 %7, label %10, label %8 - -8: ; preds = %2 - %9 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %9, %class.Node** %3, align 8 - br label %55 - -10: ; preds = %2 - %11 = load %class.Node*, %class.Node** %5, align 8 - %12 = icmp ne %class.Node* %11, null - br i1 %12, label %15, label %13 - -13: ; preds = %10 - %14 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %14, %class.Node** %3, align 8 - br label %55 - -15: ; preds = %10 - %16 = load %class.Node*, %class.Node** %4, align 8 - %17 = getelementptr inbounds %class.Node, %class.Node* %16, i32 0, i32 0 - %18 = load i32, i32* %17, align 8 - %19 = load %class.Node*, %class.Node** %5, align 8 - %20 = getelementptr inbounds %class.Node, %class.Node* %19, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %18, %21 - br i1 %22, label %23, label %39 - -23: ; preds = %15 - %24 = load %class.Node*, %class.Node** %4, align 8 - %25 = getelementptr inbounds %class.Node, %class.Node* %24, i32 0, i32 1 - %26 = load %class.Node*, %class.Node** %25, align 8 - %27 = load %class.Node*, %class.Node** %5, align 8 - %28 = call %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %26, %class.Node* %27) - %29 = load %class.Node*, %class.Node** %4, align 8 - %30 = getelementptr inbounds %class.Node, %class.Node* %29, i32 0, i32 1 - store %class.Node* %28, %class.Node** %30, align 8 - %31 = load %class.Node*, %class.Node** %4, align 8 - %32 = load %class.Node*, %class.Node** %4, align 8 - %33 = getelementptr inbounds %class.Node, %class.Node* %32, i32 0, i32 1 - %34 = load %class.Node*, %class.Node** %33, align 8 - %35 = getelementptr inbounds %class.Node, %class.Node* %34, i32 0, i32 2 - store %class.Node* %31, %class.Node** %35, align 8 - %36 = load %class.Node*, %class.Node** %4, align 8 - %37 = getelementptr inbounds %class.Node, %class.Node* %36, i32 0, i32 2 - store %class.Node* null, %class.Node** %37, align 8 - %38 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %38, %class.Node** %3, align 8 - br label %55 - -39: ; preds = %15 - %40 = load %class.Node*, %class.Node** %4, align 8 - %41 = load %class.Node*, %class.Node** %5, align 8 - %42 = getelementptr inbounds %class.Node, %class.Node* %41, i32 0, i32 1 - %43 = load %class.Node*, %class.Node** %42, align 8 - %44 = call %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %40, %class.Node* %43) - %45 = load %class.Node*, %class.Node** %5, align 8 - %46 = getelementptr inbounds %class.Node, %class.Node* %45, i32 0, i32 1 - store %class.Node* %44, %class.Node** %46, align 8 - %47 = load %class.Node*, %class.Node** %5, align 8 - %48 = load %class.Node*, %class.Node** %5, align 8 - %49 = getelementptr inbounds %class.Node, %class.Node* %48, i32 0, i32 1 - %50 = load %class.Node*, %class.Node** %49, align 8 - %51 = getelementptr inbounds %class.Node, %class.Node* %50, i32 0, i32 2 - store %class.Node* %47, %class.Node** %51, align 8 - %52 = load %class.Node*, %class.Node** %5, align 8 - %53 = getelementptr inbounds %class.Node, %class.Node* %52, i32 0, i32 2 - store %class.Node* null, %class.Node** %53, align 8 - %54 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %54, %class.Node** %3, align 8 - br label %55 - -55: ; preds = %39, %23, %13, %8 - %56 = load %class.Node*, %class.Node** %3, align 8 - ret %class.Node* %56 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Node* @_Z9mergeSortP4Node(%class.Node* %0) #4 { - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %3, align 8 - %5 = load %class.Node*, %class.Node** %3, align 8 - %6 = icmp ne %class.Node* %5, null - br i1 %6, label %7, label %12 - -7: ; preds = %1 - %8 = load %class.Node*, %class.Node** %3, align 8 - %9 = getelementptr inbounds %class.Node, %class.Node* %8, i32 0, i32 1 - %10 = load %class.Node*, %class.Node** %9, align 8 - %11 = icmp ne %class.Node* %10, null - br i1 %11, label %14, label %12 - -12: ; preds = %7, %1 - %13 = load %class.Node*, %class.Node** %3, align 8 - store %class.Node* %13, %class.Node** %2, align 8 - br label %24 - -14: ; preds = %7 - %15 = load %class.Node*, %class.Node** %3, align 8 - %16 = call %class.Node* @_Z5splitP4Node(%class.Node* %15) - store %class.Node* %16, %class.Node** %4, align 8 - %17 = load %class.Node*, %class.Node** %3, align 8 - %18 = call %class.Node* @_Z9mergeSortP4Node(%class.Node* %17) - store %class.Node* %18, %class.Node** %3, align 8 - %19 = load %class.Node*, %class.Node** %4, align 8 - %20 = call %class.Node* @_Z9mergeSortP4Node(%class.Node* %19) - store %class.Node* %20, %class.Node** %4, align 8 - %21 = load %class.Node*, %class.Node** %3, align 8 - %22 = load %class.Node*, %class.Node** %4, align 8 - %23 = call %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %21, %class.Node* %22) - store %class.Node* %23, %class.Node** %2, align 8 - br label %24 - -24: ; preds = %14, %12 - %25 = load %class.Node*, %class.Node** %2, align 8 - ret %class.Node* %25 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %class.Node* @_Z5splitP4Node(%class.Node* %0) #5 { - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - %6 = load %class.Node*, %class.Node** %2, align 8 - store %class.Node* %6, %class.Node** %3, align 8 - %7 = load %class.Node*, %class.Node** %2, align 8 - store %class.Node* %7, %class.Node** %4, align 8 - br label %8 - -8: ; preds = %22, %1 - %9 = load %class.Node*, %class.Node** %3, align 8 - %10 = getelementptr inbounds %class.Node, %class.Node* %9, i32 0, i32 1 - %11 = load %class.Node*, %class.Node** %10, align 8 - %12 = icmp ne %class.Node* %11, null - br i1 %12, label %13, label %20 - -13: ; preds = %8 - %14 = load %class.Node*, %class.Node** %3, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - %16 = load %class.Node*, %class.Node** %15, align 8 - %17 = getelementptr inbounds %class.Node, %class.Node* %16, i32 0, i32 1 - %18 = load %class.Node*, %class.Node** %17, align 8 - %19 = icmp ne %class.Node* %18, null - br label %20 - -20: ; preds = %13, %8 - %21 = phi i1 [ false, %8 ], [ %19, %13 ] - br i1 %21, label %22, label %31 - -22: ; preds = %20 - %23 = load %class.Node*, %class.Node** %3, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 1 - %25 = load %class.Node*, %class.Node** %24, align 8 - %26 = getelementptr inbounds %class.Node, %class.Node* %25, i32 0, i32 1 - %27 = load %class.Node*, %class.Node** %26, align 8 - store %class.Node* %27, %class.Node** %3, align 8 - %28 = load %class.Node*, %class.Node** %4, align 8 - %29 = getelementptr inbounds %class.Node, %class.Node* %28, i32 0, i32 1 - %30 = load %class.Node*, %class.Node** %29, align 8 - store %class.Node* %30, %class.Node** %4, align 8 - br label %8, !llvm.loop !2 - -31: ; preds = %20 - %32 = load %class.Node*, %class.Node** %4, align 8 - %33 = getelementptr inbounds %class.Node, %class.Node* %32, i32 0, i32 1 - %34 = load %class.Node*, %class.Node** %33, align 8 - store %class.Node* %34, %class.Node** %5, align 8 - %35 = load %class.Node*, %class.Node** %4, align 8 - %36 = getelementptr inbounds %class.Node, %class.Node* %35, i32 0, i32 1 - store %class.Node* null, %class.Node** %36, align 8 - %37 = load %class.Node*, %class.Node** %5, align 8 - ret %class.Node* %37 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6insertPP4Nodei(%class.Node** %0, i32 %1) #4 { - %3 = alloca %class.Node**, align 8 - %4 = alloca i32, align 4 - %5 = alloca %class.Node*, align 8 - store %class.Node** %0, %class.Node*** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 24) #9 - %7 = bitcast i8* %6 to %class.Node* - %8 = bitcast %class.Node* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %8, i8 0, i64 24, i1 false) - store %class.Node* %7, %class.Node** %5, align 8 - %9 = load i32, i32* %4, align 4 - %10 = load %class.Node*, %class.Node** %5, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 0 - store i32 %9, i32* %11, align 8 - %12 = load %class.Node*, %class.Node** %5, align 8 - %13 = getelementptr inbounds %class.Node, %class.Node* %12, i32 0, i32 2 - store %class.Node* null, %class.Node** %13, align 8 - %14 = load %class.Node*, %class.Node** %5, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - store %class.Node* null, %class.Node** %15, align 8 - %16 = load %class.Node**, %class.Node*** %3, align 8 - %17 = load %class.Node*, %class.Node** %16, align 8 - %18 = icmp ne %class.Node* %17, null - br i1 %18, label %22, label %19 - -19: ; preds = %2 - %20 = load %class.Node*, %class.Node** %5, align 8 - %21 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %20, %class.Node** %21, align 8 - br label %33 - -22: ; preds = %2 - %23 = load %class.Node**, %class.Node*** %3, align 8 - %24 = load %class.Node*, %class.Node** %23, align 8 - %25 = load %class.Node*, %class.Node** %5, align 8 - %26 = getelementptr inbounds %class.Node, %class.Node* %25, i32 0, i32 1 - store %class.Node* %24, %class.Node** %26, align 8 - %27 = load %class.Node*, %class.Node** %5, align 8 - %28 = load %class.Node**, %class.Node*** %3, align 8 - %29 = load %class.Node*, %class.Node** %28, align 8 - %30 = getelementptr inbounds %class.Node, %class.Node* %29, i32 0, i32 2 - store %class.Node* %27, %class.Node** %30, align 8 - %31 = load %class.Node*, %class.Node** %5, align 8 - %32 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %31, %class.Node** %32, align 8 - br label %33 - -33: ; preds = %22, %19 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5printP4Node(%class.Node* %0) #4 { - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - %4 = load %class.Node*, %class.Node** %2, align 8 - store %class.Node* %4, %class.Node** %3, align 8 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([38 x i8], [38 x i8]* @.str, i64 0, i64 0)) - br label %6 - -6: ; preds = %9, %1 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = icmp ne %class.Node* %7, null - br i1 %8, label %9, label %19 - -9: ; preds = %6 - %10 = load %class.Node*, %class.Node** %2, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 0 - %12 = load i32, i32* %11, align 8 - %13 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %12) - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %13, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - %15 = load %class.Node*, %class.Node** %2, align 8 - store %class.Node* %15, %class.Node** %3, align 8 - %16 = load %class.Node*, %class.Node** %2, align 8 - %17 = getelementptr inbounds %class.Node, %class.Node* %16, i32 0, i32 1 - %18 = load %class.Node*, %class.Node** %17, align 8 - store %class.Node* %18, %class.Node** %2, align 8 - br label %6, !llvm.loop !4 - -19: ; preds = %6 - %20 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([40 x i8], [40 x i8]* @.str.2, i64 0, i64 0)) - br label %21 - -21: ; preds = %24, %19 - %22 = load %class.Node*, %class.Node** %3, align 8 - %23 = icmp ne %class.Node* %22, null - br i1 %23, label %24, label %33 - -24: ; preds = %21 - %25 = load %class.Node*, %class.Node** %3, align 8 - %26 = getelementptr inbounds %class.Node, %class.Node* %25, i32 0, i32 0 - %27 = load i32, i32* %26, align 8 - %28 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %27) - %29 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %28, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - %30 = load %class.Node*, %class.Node** %3, align 8 - %31 = getelementptr inbounds %class.Node, %class.Node* %30, i32 0, i32 2 - %32 = load %class.Node*, %class.Node** %31, align 8 - store %class.Node* %32, %class.Node** %3, align 8 - br label %21, !llvm.loop !5 - -33: ; preds = %21 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #5 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.Node*, align 8 - store i32 0, i32* %1, align 4 - store %class.Node* null, %class.Node** %2, align 8 - call void @_Z6insertPP4Nodei(%class.Node** %2, i32 5) - call void @_Z6insertPP4Nodei(%class.Node** %2, i32 20) - call void @_Z6insertPP4Nodei(%class.Node** %2, i32 4) - call void @_Z6insertPP4Nodei(%class.Node** %2, i32 3) - call void @_Z6insertPP4Nodei(%class.Node** %2, i32 30) - call void @_Z6insertPP4Nodei(%class.Node** %2, i32 10) - %3 = load %class.Node*, %class.Node** %2, align 8 - %4 = call %class.Node* @_Z9mergeSortP4Node(%class.Node* %3) - store %class.Node* %4, %class.Node** %2, align 8 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str.3, i64 0, i64 0)) - %6 = load %class.Node*, %class.Node** %2, align 8 - call void @_Z5printP4Node(%class.Node* %6) - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll deleted file mode 100644 index 42230888..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll +++ /dev/null @@ -1,333 +0,0 @@ -; ModuleID = 'PE-benchmarks/mergeSort_LinkedList.cpp' -source_filename = "PE-benchmarks/mergeSort_LinkedList.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Node = type { i32, %class.Node* } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [25 x i8] c"Sorted Linked List is: \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_mergeSort_LinkedList.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9MergeSortPP4Node(%class.Node** %0) #4 { - %2 = alloca %class.Node**, align 8 - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node** %0, %class.Node*** %2, align 8 - %6 = load %class.Node**, %class.Node*** %2, align 8 - %7 = load %class.Node*, %class.Node** %6, align 8 - store %class.Node* %7, %class.Node** %3, align 8 - %8 = load %class.Node*, %class.Node** %3, align 8 - %9 = icmp eq %class.Node* %8, null - br i1 %9, label %15, label %10 - -10: ; preds = %1 - %11 = load %class.Node*, %class.Node** %3, align 8 - %12 = getelementptr inbounds %class.Node, %class.Node* %11, i32 0, i32 1 - %13 = load %class.Node*, %class.Node** %12, align 8 - %14 = icmp eq %class.Node* %13, null - br i1 %14, label %15, label %16 - -15: ; preds = %10, %1 - br label %22 - -16: ; preds = %10 - %17 = load %class.Node*, %class.Node** %3, align 8 - call void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* %17, %class.Node** %4, %class.Node** %5) - call void @_Z9MergeSortPP4Node(%class.Node** %4) - call void @_Z9MergeSortPP4Node(%class.Node** %5) - %18 = load %class.Node*, %class.Node** %4, align 8 - %19 = load %class.Node*, %class.Node** %5, align 8 - %20 = call %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %18, %class.Node* %19) - %21 = load %class.Node**, %class.Node*** %2, align 8 - store %class.Node* %20, %class.Node** %21, align 8 - br label %22 - -22: ; preds = %16, %15 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* %0, %class.Node** %1, %class.Node** %2) #5 { - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node**, align 8 - %6 = alloca %class.Node**, align 8 - %7 = alloca %class.Node*, align 8 - %8 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %4, align 8 - store %class.Node** %1, %class.Node*** %5, align 8 - store %class.Node** %2, %class.Node*** %6, align 8 - %9 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %9, %class.Node** %8, align 8 - %10 = load %class.Node*, %class.Node** %4, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 1 - %12 = load %class.Node*, %class.Node** %11, align 8 - store %class.Node* %12, %class.Node** %7, align 8 - br label %13 - -13: ; preds = %29, %3 - %14 = load %class.Node*, %class.Node** %7, align 8 - %15 = icmp ne %class.Node* %14, null - br i1 %15, label %16, label %30 - -16: ; preds = %13 - %17 = load %class.Node*, %class.Node** %7, align 8 - %18 = getelementptr inbounds %class.Node, %class.Node* %17, i32 0, i32 1 - %19 = load %class.Node*, %class.Node** %18, align 8 - store %class.Node* %19, %class.Node** %7, align 8 - %20 = load %class.Node*, %class.Node** %7, align 8 - %21 = icmp ne %class.Node* %20, null - br i1 %21, label %22, label %29 - -22: ; preds = %16 - %23 = load %class.Node*, %class.Node** %8, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 1 - %25 = load %class.Node*, %class.Node** %24, align 8 - store %class.Node* %25, %class.Node** %8, align 8 - %26 = load %class.Node*, %class.Node** %7, align 8 - %27 = getelementptr inbounds %class.Node, %class.Node* %26, i32 0, i32 1 - %28 = load %class.Node*, %class.Node** %27, align 8 - store %class.Node* %28, %class.Node** %7, align 8 - br label %29 - -29: ; preds = %22, %16 - br label %13, !llvm.loop !2 - -30: ; preds = %13 - %31 = load %class.Node*, %class.Node** %4, align 8 - %32 = load %class.Node**, %class.Node*** %5, align 8 - store %class.Node* %31, %class.Node** %32, align 8 - %33 = load %class.Node*, %class.Node** %8, align 8 - %34 = getelementptr inbounds %class.Node, %class.Node* %33, i32 0, i32 1 - %35 = load %class.Node*, %class.Node** %34, align 8 - %36 = load %class.Node**, %class.Node*** %6, align 8 - store %class.Node* %35, %class.Node** %36, align 8 - %37 = load %class.Node*, %class.Node** %8, align 8 - %38 = getelementptr inbounds %class.Node, %class.Node* %37, i32 0, i32 1 - store %class.Node* null, %class.Node** %38, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %0, %class.Node* %1) #4 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - %6 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %4, align 8 - store %class.Node* %1, %class.Node** %5, align 8 - store %class.Node* null, %class.Node** %6, align 8 - %7 = load %class.Node*, %class.Node** %4, align 8 - %8 = icmp eq %class.Node* %7, null - br i1 %8, label %9, label %11 - -9: ; preds = %2 - %10 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %10, %class.Node** %3, align 8 - br label %45 - -11: ; preds = %2 - %12 = load %class.Node*, %class.Node** %5, align 8 - %13 = icmp eq %class.Node* %12, null - br i1 %13, label %14, label %16 - -14: ; preds = %11 - %15 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %15, %class.Node** %3, align 8 - br label %45 - -16: ; preds = %11 - br label %17 - -17: ; preds = %16 - %18 = load %class.Node*, %class.Node** %4, align 8 - %19 = getelementptr inbounds %class.Node, %class.Node* %18, i32 0, i32 0 - %20 = load i32, i32* %19, align 8 - %21 = load %class.Node*, %class.Node** %5, align 8 - %22 = getelementptr inbounds %class.Node, %class.Node* %21, i32 0, i32 0 - %23 = load i32, i32* %22, align 8 - %24 = icmp sle i32 %20, %23 - br i1 %24, label %25, label %34 - -25: ; preds = %17 - %26 = load %class.Node*, %class.Node** %4, align 8 - store %class.Node* %26, %class.Node** %6, align 8 - %27 = load %class.Node*, %class.Node** %4, align 8 - %28 = getelementptr inbounds %class.Node, %class.Node* %27, i32 0, i32 1 - %29 = load %class.Node*, %class.Node** %28, align 8 - %30 = load %class.Node*, %class.Node** %5, align 8 - %31 = call %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %29, %class.Node* %30) - %32 = load %class.Node*, %class.Node** %6, align 8 - %33 = getelementptr inbounds %class.Node, %class.Node* %32, i32 0, i32 1 - store %class.Node* %31, %class.Node** %33, align 8 - br label %43 - -34: ; preds = %17 - %35 = load %class.Node*, %class.Node** %5, align 8 - store %class.Node* %35, %class.Node** %6, align 8 - %36 = load %class.Node*, %class.Node** %4, align 8 - %37 = load %class.Node*, %class.Node** %5, align 8 - %38 = getelementptr inbounds %class.Node, %class.Node* %37, i32 0, i32 1 - %39 = load %class.Node*, %class.Node** %38, align 8 - %40 = call %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %36, %class.Node* %39) - %41 = load %class.Node*, %class.Node** %6, align 8 - %42 = getelementptr inbounds %class.Node, %class.Node* %41, i32 0, i32 1 - store %class.Node* %40, %class.Node** %42, align 8 - br label %43 - -43: ; preds = %34, %25 - %44 = load %class.Node*, %class.Node** %6, align 8 - store %class.Node* %44, %class.Node** %3, align 8 - br label %45 - -45: ; preds = %43, %14, %9 - %46 = load %class.Node*, %class.Node** %3, align 8 - ret %class.Node* %46 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%class.Node* %0) #4 { - %2 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - br label %3 - -3: ; preds = %6, %1 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = icmp ne %class.Node* %4, null - br i1 %5, label %6, label %15 - -6: ; preds = %3 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = getelementptr inbounds %class.Node, %class.Node* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %9) - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %10, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - %12 = load %class.Node*, %class.Node** %2, align 8 - %13 = getelementptr inbounds %class.Node, %class.Node* %12, i32 0, i32 1 - %14 = load %class.Node*, %class.Node** %13, align 8 - store %class.Node* %14, %class.Node** %2, align 8 - br label %3, !llvm.loop !4 - -15: ; preds = %3 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%class.Node** %0, i32 %1) #4 { - %3 = alloca %class.Node**, align 8 - %4 = alloca i32, align 4 - %5 = alloca %class.Node*, align 8 - store %class.Node** %0, %class.Node*** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 16) #9 - %7 = bitcast i8* %6 to %class.Node* - %8 = bitcast %class.Node* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %8, i8 0, i64 16, i1 false) - store %class.Node* %7, %class.Node** %5, align 8 - %9 = load i32, i32* %4, align 4 - %10 = load %class.Node*, %class.Node** %5, align 8 - %11 = getelementptr inbounds %class.Node, %class.Node* %10, i32 0, i32 0 - store i32 %9, i32* %11, align 8 - %12 = load %class.Node**, %class.Node*** %3, align 8 - %13 = load %class.Node*, %class.Node** %12, align 8 - %14 = load %class.Node*, %class.Node** %5, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - store %class.Node* %13, %class.Node** %15, align 8 - %16 = load %class.Node*, %class.Node** %5, align 8 - %17 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %16, %class.Node** %17, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #7 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - store i32 0, i32* %1, align 4 - store %class.Node* null, %class.Node** %2, align 8 - store %class.Node* null, %class.Node** %3, align 8 - call void @_Z4pushPP4Nodei(%class.Node** %3, i32 15) - call void @_Z4pushPP4Nodei(%class.Node** %3, i32 10) - call void @_Z4pushPP4Nodei(%class.Node** %3, i32 5) - call void @_Z4pushPP4Nodei(%class.Node** %3, i32 20) - call void @_Z4pushPP4Nodei(%class.Node** %3, i32 3) - call void @_Z4pushPP4Nodei(%class.Node** %3, i32 2) - call void @_Z9MergeSortPP4Node(%class.Node** %3) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([25 x i8], [25 x i8]* @.str.1, i64 0, i64 0)) - %5 = load %class.Node*, %class.Node** %3, align 8 - call void @_Z9printListP4Node(%class.Node* %5) - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_mergeSort_LinkedList.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/min-cost-path.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/min-cost-path.ll deleted file mode 100644 index eb29a652..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/min-cost-path.ll +++ /dev/null @@ -1,173 +0,0 @@ -; ModuleID = 'PE-benchmarks/min-cost-path.cpp' -source_filename = "PE-benchmarks/min-cost-path.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.cost = private unnamed_addr constant [3 x [3 x i32]] [[3 x i32] [i32 1, i32 2, i32 3], [3 x i32] [i32 4, i32 8, i32 2], [3 x i32] [i32 1, i32 5, i32 3]], align 16 -@.str = private unnamed_addr constant [5 x i8] c" %d \00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z7minCostPA3_iii([3 x i32]* %0, i32 %1, i32 %2) #0 { - %4 = alloca i32, align 4 - %5 = alloca [3 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store [3 x i32]* %0, [3 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %8 = load i32, i32* %7, align 4 - %9 = icmp slt i32 %8, 0 - br i1 %9, label %13, label %10 - -10: ; preds = %3 - %11 = load i32, i32* %6, align 4 - %12 = icmp slt i32 %11, 0 - br i1 %12, label %13, label %14 - -13: ; preds = %10, %3 - store i32 2147483647, i32* %4, align 4 - br label %56 - -14: ; preds = %10 - %15 = load i32, i32* %6, align 4 - %16 = icmp eq i32 %15, 0 - br i1 %16, label %17, label %29 - -17: ; preds = %14 - %18 = load i32, i32* %7, align 4 - %19 = icmp eq i32 %18, 0 - br i1 %19, label %20, label %29 - -20: ; preds = %17 - %21 = load [3 x i32]*, [3 x i32]** %5, align 8 - %22 = load i32, i32* %6, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [3 x i32], [3 x i32]* %21, i64 %23 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds [3 x i32], [3 x i32]* %24, i64 0, i64 %26 - %28 = load i32, i32* %27, align 4 - store i32 %28, i32* %4, align 4 - br label %56 - -29: ; preds = %17, %14 - %30 = load [3 x i32]*, [3 x i32]** %5, align 8 - %31 = load i32, i32* %6, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [3 x i32], [3 x i32]* %30, i64 %32 - %34 = load i32, i32* %7, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [3 x i32], [3 x i32]* %33, i64 0, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = load [3 x i32]*, [3 x i32]** %5, align 8 - %39 = load i32, i32* %6, align 4 - %40 = sub nsw i32 %39, 1 - %41 = load i32, i32* %7, align 4 - %42 = sub nsw i32 %41, 1 - %43 = call i32 @_Z7minCostPA3_iii([3 x i32]* %38, i32 %40, i32 %42) - %44 = load [3 x i32]*, [3 x i32]** %5, align 8 - %45 = load i32, i32* %6, align 4 - %46 = sub nsw i32 %45, 1 - %47 = load i32, i32* %7, align 4 - %48 = call i32 @_Z7minCostPA3_iii([3 x i32]* %44, i32 %46, i32 %47) - %49 = load [3 x i32]*, [3 x i32]** %5, align 8 - %50 = load i32, i32* %6, align 4 - %51 = load i32, i32* %7, align 4 - %52 = sub nsw i32 %51, 1 - %53 = call i32 @_Z7minCostPA3_iii([3 x i32]* %49, i32 %50, i32 %52) - %54 = call i32 @_Z3miniii(i32 %43, i32 %48, i32 %53) - %55 = add nsw i32 %37, %54 - store i32 %55, i32* %4, align 4 - br label %56 - -56: ; preds = %29, %20, %13 - %57 = load i32, i32* %4, align 4 - ret i32 %57 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3miniii(i32 %0, i32 %1, i32 %2) #1 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 %0, i32* %5, align 4 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %8 = load i32, i32* %5, align 4 - %9 = load i32, i32* %6, align 4 - %10 = icmp slt i32 %8, %9 - br i1 %10, label %11, label %21 - -11: ; preds = %3 - %12 = load i32, i32* %5, align 4 - %13 = load i32, i32* %7, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %17 - -15: ; preds = %11 - %16 = load i32, i32* %5, align 4 - br label %19 - -17: ; preds = %11 - %18 = load i32, i32* %7, align 4 - br label %19 - -19: ; preds = %17, %15 - %20 = phi i32 [ %16, %15 ], [ %18, %17 ] - store i32 %20, i32* %4, align 4 - br label %31 - -21: ; preds = %3 - %22 = load i32, i32* %6, align 4 - %23 = load i32, i32* %7, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %27 - -25: ; preds = %21 - %26 = load i32, i32* %6, align 4 - br label %29 - -27: ; preds = %21 - %28 = load i32, i32* %7, align 4 - br label %29 - -29: ; preds = %27, %25 - %30 = phi i32 [ %26, %25 ], [ %28, %27 ] - store i32 %30, i32* %4, align 4 - br label %31 - -31: ; preds = %29, %19 - %32 = load i32, i32* %4, align 4 - ret i32 %32 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [3 x [3 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [3 x [3 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([3 x [3 x i32]]* @__const.main.cost to i8*), i64 36, i1 false) - %4 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %2, i64 0, i64 0 - %5 = call i32 @_Z7minCostPA3_iii([3 x i32]* %4, i32 2, i32 2) - %6 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 %5) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -declare dso_local i32 @printf(i8*, ...) #4 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll deleted file mode 100644 index 5f300d57..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll +++ /dev/null @@ -1,192 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp' -source_filename = "PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@__const.main.a = private unnamed_addr constant [4 x i32] [i32 5, i32 6, i32 1, i32 3], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5solvePii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 -1, i32* %5, align 4 - %10 = load i32*, i32** %3, align 8 - %11 = getelementptr inbounds i32, i32* %10, i64 0 - %12 = load i32, i32* %11, align 4 - store i32 %12, i32* %6, align 4 - store i32 0, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %13 - -13: ; preds = %48, %2 - %14 = load i32, i32* %9, align 4 - %15 = load i32, i32* %4, align 4 - %16 = icmp slt i32 %14, %15 - br i1 %16, label %17, label %51 - -17: ; preds = %13 - %18 = load i32*, i32** %3, align 8 - %19 = load i32, i32* %9, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds i32, i32* %18, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = load i32, i32* %5, align 4 - %24 = icmp sgt i32 %22, %23 - br i1 %24, label %25, label %32 - -25: ; preds = %17 - %26 = load i32*, i32** %3, align 8 - %27 = load i32, i32* %9, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - %30 = load i32, i32* %29, align 4 - store i32 %30, i32* %5, align 4 - %31 = load i32, i32* %9, align 4 - store i32 %31, i32* %7, align 4 - br label %32 - -32: ; preds = %25, %17 - %33 = load i32*, i32** %3, align 8 - %34 = load i32, i32* %9, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = load i32, i32* %6, align 4 - %39 = icmp sle i32 %37, %38 - br i1 %39, label %40, label %47 - -40: ; preds = %32 - %41 = load i32*, i32** %3, align 8 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i32, i32* %41, i64 %43 - %45 = load i32, i32* %44, align 4 - store i32 %45, i32* %6, align 4 - %46 = load i32, i32* %9, align 4 - store i32 %46, i32* %8, align 4 - br label %47 - -47: ; preds = %40, %32 - br label %48 - -48: ; preds = %47 - %49 = load i32, i32* %9, align 4 - %50 = add nsw i32 %49, 1 - store i32 %50, i32* %9, align 4 - br label %13, !llvm.loop !2 - -51: ; preds = %13 - %52 = load i32, i32* %8, align 4 - %53 = load i32, i32* %7, align 4 - %54 = icmp slt i32 %52, %53 - br i1 %54, label %55, label %63 - -55: ; preds = %51 - %56 = load i32, i32* %7, align 4 - %57 = load i32, i32* %4, align 4 - %58 = load i32, i32* %8, align 4 - %59 = sub nsw i32 %57, %58 - %60 = sub nsw i32 %59, 2 - %61 = add nsw i32 %56, %60 - %62 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %61) - br label %71 - -63: ; preds = %51 - %64 = load i32, i32* %7, align 4 - %65 = load i32, i32* %4, align 4 - %66 = load i32, i32* %8, align 4 - %67 = sub nsw i32 %65, %66 - %68 = sub nsw i32 %67, 1 - %69 = add nsw i32 %64, %68 - %70 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %69) - br label %71 - -71: ; preds = %63, %55 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x i32]* @__const.main.a to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - %5 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - call void @_Z5solvePii(i32* %5, i32 %6) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cost-polygon-triangulation.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cost-polygon-triangulation.ll deleted file mode 100644 index c1a3d4f6..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cost-polygon-triangulation.ll +++ /dev/null @@ -1,461 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-cost-polygon-triangulation.cpp' -source_filename = "PE-benchmarks/minimum-cost-polygon-triangulation.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%struct.Point = type { i32, i32 } - -$_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local double @_Z3mindd(double %0, double %1) #4 { - %3 = alloca double, align 8 - %4 = alloca double, align 8 - store double %0, double* %3, align 8 - store double %1, double* %4, align 8 - %5 = load double, double* %3, align 8 - %6 = load double, double* %4, align 8 - %7 = fcmp ole double %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load double, double* %3, align 8 - br label %12 - -10: ; preds = %2 - %11 = load double, double* %4, align 8 - br label %12 - -12: ; preds = %10, %8 - %13 = phi double [ %9, %8 ], [ %11, %10 ] - ret double %13 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local double @_Z4dist5PointS_(i64 %0, i64 %1) #5 { - %3 = alloca %struct.Point, align 4 - %4 = alloca %struct.Point, align 4 - %5 = bitcast %struct.Point* %3 to i64* - store i64 %0, i64* %5, align 4 - %6 = bitcast %struct.Point* %4 to i64* - store i64 %1, i64* %6, align 4 - %7 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 0 - %8 = load i32, i32* %7, align 4 - %9 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 0 - %10 = load i32, i32* %9, align 4 - %11 = sub nsw i32 %8, %10 - %12 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 0 - %13 = load i32, i32* %12, align 4 - %14 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 0 - %15 = load i32, i32* %14, align 4 - %16 = sub nsw i32 %13, %15 - %17 = mul nsw i32 %11, %16 - %18 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 1 - %19 = load i32, i32* %18, align 4 - %20 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 1 - %21 = load i32, i32* %20, align 4 - %22 = sub nsw i32 %19, %21 - %23 = getelementptr inbounds %struct.Point, %struct.Point* %3, i32 0, i32 1 - %24 = load i32, i32* %23, align 4 - %25 = getelementptr inbounds %struct.Point, %struct.Point* %4, i32 0, i32 1 - %26 = load i32, i32* %25, align 4 - %27 = sub nsw i32 %24, %26 - %28 = mul nsw i32 %22, %27 - %29 = add nsw i32 %17, %28 - %30 = call double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 %29) - ret double %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 %0) #4 comdat { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = sitofp i32 %3 to double - %5 = call double @sqrt(double %4) #3 - ret double %5 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local double @_Z4costP5Pointiii(%struct.Point* %0, i32 %1, i32 %2, i32 %3) #5 { - %5 = alloca %struct.Point*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %struct.Point, align 4 - %10 = alloca %struct.Point, align 4 - %11 = alloca %struct.Point, align 4 - %12 = alloca %struct.Point, align 4 - %13 = alloca %struct.Point, align 4 - %14 = alloca %struct.Point, align 4 - %15 = alloca %struct.Point, align 4 - %16 = alloca %struct.Point, align 4 - %17 = alloca %struct.Point, align 4 - store %struct.Point* %0, %struct.Point** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %18 = load %struct.Point*, %struct.Point** %5, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %struct.Point, %struct.Point* %18, i64 %20 - %22 = bitcast %struct.Point* %9 to i8* - %23 = bitcast %struct.Point* %21 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %22, i8* align 4 %23, i64 8, i1 false) - %24 = load %struct.Point*, %struct.Point** %5, align 8 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds %struct.Point, %struct.Point* %24, i64 %26 - %28 = bitcast %struct.Point* %10 to i8* - %29 = bitcast %struct.Point* %27 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %28, i8* align 4 %29, i64 8, i1 false) - %30 = load %struct.Point*, %struct.Point** %5, align 8 - %31 = load i32, i32* %8, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds %struct.Point, %struct.Point* %30, i64 %32 - %34 = bitcast %struct.Point* %11 to i8* - %35 = bitcast %struct.Point* %33 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %34, i8* align 4 %35, i64 8, i1 false) - %36 = bitcast %struct.Point* %12 to i8* - %37 = bitcast %struct.Point* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %36, i8* align 4 %37, i64 8, i1 false) - %38 = bitcast %struct.Point* %13 to i8* - %39 = bitcast %struct.Point* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %38, i8* align 4 %39, i64 8, i1 false) - %40 = bitcast %struct.Point* %12 to i64* - %41 = load i64, i64* %40, align 4 - %42 = bitcast %struct.Point* %13 to i64* - %43 = load i64, i64* %42, align 4 - %44 = call double @_Z4dist5PointS_(i64 %41, i64 %43) - %45 = bitcast %struct.Point* %14 to i8* - %46 = bitcast %struct.Point* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %45, i8* align 4 %46, i64 8, i1 false) - %47 = bitcast %struct.Point* %15 to i8* - %48 = bitcast %struct.Point* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 8, i1 false) - %49 = bitcast %struct.Point* %14 to i64* - %50 = load i64, i64* %49, align 4 - %51 = bitcast %struct.Point* %15 to i64* - %52 = load i64, i64* %51, align 4 - %53 = call double @_Z4dist5PointS_(i64 %50, i64 %52) - %54 = fadd double %44, %53 - %55 = bitcast %struct.Point* %16 to i8* - %56 = bitcast %struct.Point* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %55, i8* align 4 %56, i64 8, i1 false) - %57 = bitcast %struct.Point* %17 to i8* - %58 = bitcast %struct.Point* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %57, i8* align 4 %58, i64 8, i1 false) - %59 = bitcast %struct.Point* %16 to i64* - %60 = load i64, i64* %59, align 4 - %61 = bitcast %struct.Point* %17 to i64* - %62 = load i64, i64* %61, align 4 - %63 = call double @_Z4dist5PointS_(i64 %60, i64 %62) - %64 = fadd double %54, %63 - ret double %64 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -; Function Attrs: noinline uwtable mustprogress -define dso_local double @_Z5mTCDPP5Pointi(%struct.Point* %0, i32 %1) #5 { - %3 = alloca double, align 8 - %4 = alloca %struct.Point*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca double, align 8 - store %struct.Point* %0, %struct.Point** %4, align 8 - store i32 %1, i32* %5, align 4 - %14 = load i32, i32* %5, align 4 - %15 = icmp slt i32 %14, 3 - br i1 %15, label %16, label %17 - -16: ; preds = %2 - store double 0.000000e+00, double* %3, align 8 - br label %129 - -17: ; preds = %2 - %18 = load i32, i32* %5, align 4 - %19 = zext i32 %18 to i64 - %20 = load i32, i32* %5, align 4 - %21 = zext i32 %20 to i64 - %22 = call i8* @llvm.stacksave() - store i8* %22, i8** %6, align 8 - %23 = mul nuw i64 %19, %21 - %24 = alloca double, i64 %23, align 16 - store i64 %19, i64* %7, align 8 - store i64 %21, i64* %8, align 8 - store i32 0, i32* %9, align 4 - br label %25 - -25: ; preds = %117, %17 - %26 = load i32, i32* %9, align 4 - %27 = load i32, i32* %5, align 4 - %28 = icmp slt i32 %26, %27 - br i1 %28, label %29, label %120 - -29: ; preds = %25 - store i32 0, i32* %10, align 4 - %30 = load i32, i32* %9, align 4 - store i32 %30, i32* %11, align 4 - br label %31 - -31: ; preds = %111, %29 - %32 = load i32, i32* %11, align 4 - %33 = load i32, i32* %5, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %116 - -35: ; preds = %31 - %36 = load i32, i32* %11, align 4 - %37 = load i32, i32* %10, align 4 - %38 = add nsw i32 %37, 2 - %39 = icmp slt i32 %36, %38 - br i1 %39, label %40, label %48 - -40: ; preds = %35 - %41 = load i32, i32* %10, align 4 - %42 = sext i32 %41 to i64 - %43 = mul nsw i64 %42, %21 - %44 = getelementptr inbounds double, double* %24, i64 %43 - %45 = load i32, i32* %11, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds double, double* %44, i64 %46 - store double 0.000000e+00, double* %47, align 8 - br label %110 - -48: ; preds = %35 - %49 = load i32, i32* %10, align 4 - %50 = sext i32 %49 to i64 - %51 = mul nsw i64 %50, %21 - %52 = getelementptr inbounds double, double* %24, i64 %51 - %53 = load i32, i32* %11, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds double, double* %52, i64 %54 - store double 1.000000e+06, double* %55, align 8 - %56 = load i32, i32* %10, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %12, align 4 - br label %58 - -58: ; preds = %106, %48 - %59 = load i32, i32* %12, align 4 - %60 = load i32, i32* %11, align 4 - %61 = icmp slt i32 %59, %60 - br i1 %61, label %62, label %109 - -62: ; preds = %58 - %63 = load i32, i32* %10, align 4 - %64 = sext i32 %63 to i64 - %65 = mul nsw i64 %64, %21 - %66 = getelementptr inbounds double, double* %24, i64 %65 - %67 = load i32, i32* %12, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds double, double* %66, i64 %68 - %70 = load double, double* %69, align 8 - %71 = load i32, i32* %12, align 4 - %72 = sext i32 %71 to i64 - %73 = mul nsw i64 %72, %21 - %74 = getelementptr inbounds double, double* %24, i64 %73 - %75 = load i32, i32* %11, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds double, double* %74, i64 %76 - %78 = load double, double* %77, align 8 - %79 = fadd double %70, %78 - %80 = load %struct.Point*, %struct.Point** %4, align 8 - %81 = load i32, i32* %10, align 4 - %82 = load i32, i32* %11, align 4 - %83 = load i32, i32* %12, align 4 - %84 = call double @_Z4costP5Pointiii(%struct.Point* %80, i32 %81, i32 %82, i32 %83) - %85 = fadd double %79, %84 - store double %85, double* %13, align 8 - %86 = load i32, i32* %10, align 4 - %87 = sext i32 %86 to i64 - %88 = mul nsw i64 %87, %21 - %89 = getelementptr inbounds double, double* %24, i64 %88 - %90 = load i32, i32* %11, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds double, double* %89, i64 %91 - %93 = load double, double* %92, align 8 - %94 = load double, double* %13, align 8 - %95 = fcmp ogt double %93, %94 - br i1 %95, label %96, label %105 - -96: ; preds = %62 - %97 = load double, double* %13, align 8 - %98 = load i32, i32* %10, align 4 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %99, %21 - %101 = getelementptr inbounds double, double* %24, i64 %100 - %102 = load i32, i32* %11, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds double, double* %101, i64 %103 - store double %97, double* %104, align 8 - br label %105 - -105: ; preds = %96, %62 - br label %106 - -106: ; preds = %105 - %107 = load i32, i32* %12, align 4 - %108 = add nsw i32 %107, 1 - store i32 %108, i32* %12, align 4 - br label %58, !llvm.loop !2 - -109: ; preds = %58 - br label %110 - -110: ; preds = %109, %40 - br label %111 - -111: ; preds = %110 - %112 = load i32, i32* %10, align 4 - %113 = add nsw i32 %112, 1 - store i32 %113, i32* %10, align 4 - %114 = load i32, i32* %11, align 4 - %115 = add nsw i32 %114, 1 - store i32 %115, i32* %11, align 4 - br label %31, !llvm.loop !4 - -116: ; preds = %31 - br label %117 - -117: ; preds = %116 - %118 = load i32, i32* %9, align 4 - %119 = add nsw i32 %118, 1 - store i32 %119, i32* %9, align 4 - br label %25, !llvm.loop !5 - -120: ; preds = %25 - %121 = mul nsw i64 0, %21 - %122 = getelementptr inbounds double, double* %24, i64 %121 - %123 = load i32, i32* %5, align 4 - %124 = sub nsw i32 %123, 1 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds double, double* %122, i64 %125 - %127 = load double, double* %126, align 8 - store double %127, double* %3, align 8 - %128 = load i8*, i8** %6, align 8 - call void @llvm.stackrestore(i8* %128) - br label %129 - -129: ; preds = %120, %16 - %130 = load double, double* %3, align 8 - ret double %130 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #7 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #7 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [5 x %struct.Point], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [5 x %struct.Point]* %2 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %4, i8 0, i64 40, i1 false) - %5 = bitcast i8* %4 to [5 x %struct.Point]* - %6 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 1 - %7 = getelementptr inbounds %struct.Point, %struct.Point* %6, i32 0, i32 0 - store i32 1, i32* %7, align 8 - %8 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 2 - %9 = getelementptr inbounds %struct.Point, %struct.Point* %8, i32 0, i32 0 - store i32 2, i32* %9, align 16 - %10 = getelementptr inbounds %struct.Point, %struct.Point* %8, i32 0, i32 1 - store i32 1, i32* %10, align 4 - %11 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 3 - %12 = getelementptr inbounds %struct.Point, %struct.Point* %11, i32 0, i32 0 - store i32 1, i32* %12, align 8 - %13 = getelementptr inbounds %struct.Point, %struct.Point* %11, i32 0, i32 1 - store i32 2, i32* %13, align 4 - %14 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %5, i32 0, i32 4 - %15 = getelementptr inbounds %struct.Point, %struct.Point* %14, i32 0, i32 1 - store i32 2, i32* %15, align 4 - store i32 5, i32* %3, align 4 - %16 = getelementptr inbounds [5 x %struct.Point], [5 x %struct.Point]* %2, i64 0, i64 0 - %17 = load i32, i32* %3, align 4 - %18 = call double @_Z5mTCDPP5Pointi(%struct.Point* %16, i32 %17) - %19 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEd(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, double %18) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #9 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEd(%"class.std::basic_ostream"* nonnull dereferenceable(8), double) #1 - -; Function Attrs: nounwind -declare dso_local double @sqrt(double) #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } -attributes #7 = { nofree nosync nounwind willreturn } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn writeonly } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll deleted file mode 100644 index a0074066..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll +++ /dev/null @@ -1,2876 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-cut-in-a-directed-graph.cpp' -source_filename = "PE-benchmarks/minimum-cut-in-a-directed-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::queue" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } - -$_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE5frontEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE9pop_frontEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [4 x i8] c" - \00", align 1 -@__const.main.graph = private unnamed_addr constant [6 x [6 x i32]] [[6 x i32] [i32 0, i32 16, i32 13, i32 0, i32 0, i32 0], [6 x i32] [i32 0, i32 0, i32 10, i32 12, i32 0, i32 0], [6 x i32] [i32 0, i32 4, i32 0, i32 0, i32 14, i32 0], [6 x i32] [i32 0, i32 0, i32 9, i32 0, i32 0, i32 20], [6 x i32] [i32 0, i32 0, i32 0, i32 7, i32 0, i32 4], [6 x i32] zeroinitializer], align 16 -@.str.1 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %5 = alloca [6 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32*, align 8 - %9 = alloca [6 x i8], align 1 - %10 = alloca %"class.std::queue", align 8 - %11 = alloca i8*, align 8 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store [6 x i32]* %0, [6 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32* %3, i32** %8, align 8 - %15 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 0 - call void @llvm.memset.p0i8.i64(i8* align 1 %15, i8 0, i64 6, i1 false) - call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %10) - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* nonnull dereferenceable(80) %10, i32* nonnull align 4 dereferenceable(4) %6) - to label %16 unwind label %64 - -16: ; preds = %4 - %17 = load i32, i32* %6, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %18 - store i8 1, i8* %19, align 1 - %20 = load i32*, i32** %8, align 8 - %21 = load i32, i32* %6, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - store i32 -1, i32* %23, align 4 - br label %24 - -24: ; preds = %72, %16 - %25 = invoke zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::queue"* nonnull dereferenceable(80) %10) - to label %26 unwind label %64 - -26: ; preds = %24 - %27 = xor i1 %25, true - br i1 %27, label %28, label %73 - -28: ; preds = %26 - %29 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* nonnull dereferenceable(80) %10) - to label %30 unwind label %64 - -30: ; preds = %28 - %31 = load i32, i32* %29, align 4 - store i32 %31, i32* %13, align 4 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %10) - to label %32 unwind label %64 - -32: ; preds = %30 - store i32 0, i32* %14, align 4 - br label %33 - -33: ; preds = %69, %32 - %34 = load i32, i32* %14, align 4 - %35 = icmp slt i32 %34, 6 - br i1 %35, label %36, label %72 - -36: ; preds = %33 - %37 = load i32, i32* %14, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %38 - %40 = load i8, i8* %39, align 1 - %41 = trunc i8 %40 to i1 - %42 = zext i1 %41 to i32 - %43 = icmp eq i32 %42, 0 - br i1 %43, label %44, label %68 - -44: ; preds = %36 - %45 = load [6 x i32]*, [6 x i32]** %5, align 8 - %46 = load i32, i32* %13, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [6 x i32], [6 x i32]* %45, i64 %47 - %49 = load i32, i32* %14, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [6 x i32], [6 x i32]* %48, i64 0, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = icmp sgt i32 %52, 0 - br i1 %53, label %54, label %68 - -54: ; preds = %44 - invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* nonnull dereferenceable(80) %10, i32* nonnull align 4 dereferenceable(4) %14) - to label %55 unwind label %64 - -55: ; preds = %54 - %56 = load i32, i32* %13, align 4 - %57 = load i32*, i32** %8, align 8 - %58 = load i32, i32* %14, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - store i32 %56, i32* %60, align 4 - %61 = load i32, i32* %14, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %62 - store i8 1, i8* %63, align 1 - br label %68 - -64: ; preds = %54, %30, %28, %24, %4 - %65 = landingpad { i8*, i32 } - cleanup - %66 = extractvalue { i8*, i32 } %65, 0 - store i8* %66, i8** %11, align 8 - %67 = extractvalue { i8*, i32 } %65, 1 - store i32 %67, i32* %12, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %10) #3 - br label %82 - -68: ; preds = %55, %44, %36 - br label %69 - -69: ; preds = %68 - %70 = load i32, i32* %14, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %14, align 4 - br label %33, !llvm.loop !2 - -72: ; preds = %33 - br label %24, !llvm.loop !4 - -73: ; preds = %26 - %74 = load i32, i32* %7, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds [6 x i8], [6 x i8]* %9, i64 0, i64 %75 - %77 = load i8, i8* %76, align 1 - %78 = trunc i8 %77 to i1 - %79 = zext i1 %78 to i32 - %80 = icmp eq i32 %79, 1 - %81 = zext i1 %80 to i32 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %10) #3 - ret i32 %81 - -82: ; preds = %64 - %83 = load i8*, i8** %11, align 8 - %84 = load i32, i32* %12, align 4 - %85 = insertvalue { i8*, i32 } undef, i8* %83, 0 - %86 = insertvalue { i8*, i32 } %85, i32 %84, 1 - resume { i8*, i32 } %86 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #5 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::queue"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::queue"*, %"class.std::queue"** %3, align 8 - %6 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %6, i32* nonnull align 4 dereferenceable(4) %7) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = call zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i1 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z3dfsPA6_iiPb([6 x i32]* %0, i32 %1, i8* %2) #4 { - %4 = alloca [6 x i32]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store [6 x i32]* %0, [6 x i32]** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %8 = load i8*, i8** %6, align 8 - %9 = load i32, i32* %5, align 4 - %10 = sext i32 %9 to i64 - %11 = getelementptr inbounds i8, i8* %8, i64 %10 - store i8 1, i8* %11, align 1 - store i32 0, i32* %7, align 4 - br label %12 - -12: ; preds = %37, %3 - %13 = load i32, i32* %7, align 4 - %14 = icmp slt i32 %13, 6 - br i1 %14, label %15, label %40 - -15: ; preds = %12 - %16 = load [6 x i32]*, [6 x i32]** %4, align 8 - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [6 x i32], [6 x i32]* %16, i64 %18 - %20 = load i32, i32* %7, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [6 x i32], [6 x i32]* %19, i64 0, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = icmp ne i32 %23, 0 - br i1 %24, label %25, label %36 - -25: ; preds = %15 - %26 = load i8*, i8** %6, align 8 - %27 = load i32, i32* %7, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i8, i8* %26, i64 %28 - %30 = load i8, i8* %29, align 1 - %31 = trunc i8 %30 to i1 - br i1 %31, label %36, label %32 - -32: ; preds = %25 - %33 = load [6 x i32]*, [6 x i32]** %4, align 8 - %34 = load i32, i32* %7, align 4 - %35 = load i8*, i8** %6, align 8 - call void @_Z3dfsPA6_iiPb([6 x i32]* %33, i32 %34, i8* %35) - br label %36 - -36: ; preds = %32, %25, %15 - br label %37 - -37: ; preds = %36 - %38 = load i32, i32* %7, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %7, align 4 - br label %12, !llvm.loop !5 - -40: ; preds = %12 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { - %4 = alloca [6 x i32]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca [6 x [6 x i32]], align 16 - %10 = alloca [6 x i32], align 16 - %11 = alloca i32, align 4 - %12 = alloca [6 x i8], align 1 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - store [6 x i32]* %0, [6 x i32]** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %41, %3 - %16 = load i32, i32* %7, align 4 - %17 = icmp slt i32 %16, 6 - br i1 %17, label %18, label %44 - -18: ; preds = %15 - store i32 0, i32* %8, align 4 - br label %19 - -19: ; preds = %37, %18 - %20 = load i32, i32* %8, align 4 - %21 = icmp slt i32 %20, 6 - br i1 %21, label %22, label %40 - -22: ; preds = %19 - %23 = load [6 x i32]*, [6 x i32]** %4, align 8 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [6 x i32], [6 x i32]* %23, i64 %25 - %27 = load i32, i32* %8, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [6 x i32], [6 x i32]* %26, i64 0, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = load i32, i32* %7, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %32 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [6 x i32], [6 x i32]* %33, i64 0, i64 %35 - store i32 %30, i32* %36, align 4 - br label %37 - -37: ; preds = %22 - %38 = load i32, i32* %8, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %8, align 4 - br label %19, !llvm.loop !6 - -40: ; preds = %19 - br label %41 - -41: ; preds = %40 - %42 = load i32, i32* %7, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %7, align 4 - br label %15, !llvm.loop !7 - -44: ; preds = %15 - br label %45 - -45: ; preds = %110, %44 - %46 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 0 - %47 = load i32, i32* %5, align 4 - %48 = load i32, i32* %6, align 4 - %49 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 0 - %50 = call i32 @_Z3bfsPA6_iiiPi([6 x i32]* %46, i32 %47, i32 %48, i32* %49) - %51 = icmp ne i32 %50, 0 - br i1 %51, label %52, label %111 - -52: ; preds = %45 - store i32 2147483647, i32* %11, align 4 - %53 = load i32, i32* %6, align 4 - store i32 %53, i32* %8, align 4 - br label %54 - -54: ; preds = %71, %52 - %55 = load i32, i32* %8, align 4 - %56 = load i32, i32* %5, align 4 - %57 = icmp ne i32 %55, %56 - br i1 %57, label %58, label %76 - -58: ; preds = %54 - %59 = load i32, i32* %8, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %60 - %62 = load i32, i32* %61, align 4 - store i32 %62, i32* %7, align 4 - %63 = load i32, i32* %7, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %64 - %66 = load i32, i32* %8, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds [6 x i32], [6 x i32]* %65, i64 0, i64 %67 - %69 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %11, i32* nonnull align 4 dereferenceable(4) %68) - %70 = load i32, i32* %69, align 4 - store i32 %70, i32* %11, align 4 - br label %71 - -71: ; preds = %58 - %72 = load i32, i32* %8, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %73 - %75 = load i32, i32* %74, align 4 - store i32 %75, i32* %8, align 4 - br label %54, !llvm.loop !8 - -76: ; preds = %54 - %77 = load i32, i32* %6, align 4 - store i32 %77, i32* %8, align 4 - br label %78 - -78: ; preds = %105, %76 - %79 = load i32, i32* %8, align 4 - %80 = load i32, i32* %5, align 4 - %81 = icmp ne i32 %79, %80 - br i1 %81, label %82, label %110 - -82: ; preds = %78 - %83 = load i32, i32* %8, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %84 - %86 = load i32, i32* %85, align 4 - store i32 %86, i32* %7, align 4 - %87 = load i32, i32* %11, align 4 - %88 = load i32, i32* %7, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %89 - %91 = load i32, i32* %8, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds [6 x i32], [6 x i32]* %90, i64 0, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = sub nsw i32 %94, %87 - store i32 %95, i32* %93, align 4 - %96 = load i32, i32* %11, align 4 - %97 = load i32, i32* %8, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 %98 - %100 = load i32, i32* %7, align 4 - %101 = sext i32 %100 to i64 - %102 = getelementptr inbounds [6 x i32], [6 x i32]* %99, i64 0, i64 %101 - %103 = load i32, i32* %102, align 4 - %104 = add nsw i32 %103, %96 - store i32 %104, i32* %102, align 4 - br label %105 - -105: ; preds = %82 - %106 = load i32, i32* %8, align 4 - %107 = sext i32 %106 to i64 - %108 = getelementptr inbounds [6 x i32], [6 x i32]* %10, i64 0, i64 %107 - %109 = load i32, i32* %108, align 4 - store i32 %109, i32* %8, align 4 - br label %78, !llvm.loop !9 - -110: ; preds = %78 - br label %45, !llvm.loop !10 - -111: ; preds = %45 - %112 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 0 - call void @llvm.memset.p0i8.i64(i8* align 1 %112, i8 0, i64 6, i1 false) - %113 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %9, i64 0, i64 0 - %114 = load i32, i32* %5, align 4 - %115 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 0 - call void @_Z3dfsPA6_iiPb([6 x i32]* %113, i32 %114, i8* %115) - store i32 0, i32* %13, align 4 - br label %116 - -116: ; preds = %157, %111 - %117 = load i32, i32* %13, align 4 - %118 = icmp slt i32 %117, 6 - br i1 %118, label %119, label %160 - -119: ; preds = %116 - store i32 0, i32* %14, align 4 - br label %120 - -120: ; preds = %153, %119 - %121 = load i32, i32* %14, align 4 - %122 = icmp slt i32 %121, 6 - br i1 %122, label %123, label %156 - -123: ; preds = %120 - %124 = load i32, i32* %13, align 4 - %125 = sext i32 %124 to i64 - %126 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 %125 - %127 = load i8, i8* %126, align 1 - %128 = trunc i8 %127 to i1 - br i1 %128, label %129, label %152 - -129: ; preds = %123 - %130 = load i32, i32* %14, align 4 - %131 = sext i32 %130 to i64 - %132 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 %131 - %133 = load i8, i8* %132, align 1 - %134 = trunc i8 %133 to i1 - br i1 %134, label %152, label %135 - -135: ; preds = %129 - %136 = load [6 x i32]*, [6 x i32]** %4, align 8 - %137 = load i32, i32* %13, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds [6 x i32], [6 x i32]* %136, i64 %138 - %140 = load i32, i32* %14, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds [6 x i32], [6 x i32]* %139, i64 0, i64 %141 - %143 = load i32, i32* %142, align 4 - %144 = icmp ne i32 %143, 0 - br i1 %144, label %145, label %152 - -145: ; preds = %135 - %146 = load i32, i32* %13, align 4 - %147 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %146) - %148 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %147, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0)) - %149 = load i32, i32* %14, align 4 - %150 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %148, i32 %149) - %151 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %150, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %152 - -152: ; preds = %145, %135, %129, %123 - br label %153 - -153: ; preds = %152 - %154 = load i32, i32* %14, align 4 - %155 = add nsw i32 %154, 1 - store i32 %155, i32* %14, align 4 - br label %120, !llvm.loop !11 - -156: ; preds = %120 - br label %157 - -157: ; preds = %156 - %158 = load i32, i32* %13, align 4 - %159 = add nsw i32 %158, 1 - store i32 %159, i32* %13, align 4 - br label %116, !llvm.loop !12 - -160: ; preds = %116 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [6 x [6 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [6 x [6 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([6 x [6 x i32]]* @__const.main.graph to i8*), i64 144, i1 false) - %4 = getelementptr inbounds [6 x [6 x i32]], [6 x [6 x i32]]* %2, i64 0, i64 0 - call void @_Z6minCutPA6_iii([6 x i32]* %4, i32 0, i32 5) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %7, %"struct.std::_Deque_iterator"* %3, %"struct.std::_Deque_iterator"* %4, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) - to label %10 unwind label %12 - -10: ; preds = %1 - %11 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) #3 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %16) #3 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %0, %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #6 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %14, i32** %20) #3 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %24, i64 %28) #3 - br label %29 - -29: ; preds = %9, %1 - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %30) #3 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #10 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #14 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #6 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, i32* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !13 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i64 %2) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.0", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load i32**, i32*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, i32** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32* %1) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator"* - %8 = load i32*, i32** %4, align 8 - %9 = invoke i64 @_ZSt16__deque_buf_sizem(i64 4) - to label %10 unwind label %12 - -10: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, i32* %8, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %10 - ret void - -12: ; preds = %10, %2 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - call void @__clang_call_terminate(i8* %14) #14 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #6 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #11 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.0"* noalias sret(%"class.std::allocator.0") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #6 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.0"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.0"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32** %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32**, i32*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.0"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32** %1, i64 %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %47, i32** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #15 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, i32** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load i32**, i32*** %9, align 8 - %85 = getelementptr inbounds i32*, i32** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, i32** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds i32, i32* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #14 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #6 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.0", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %5) #3 - ret i32** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !14 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load i32**, i32*** %5, align 8 - %31 = load i32**, i32*** %7, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, i32** %30, i32** %31) #3 - invoke void @__cxa_rethrow() #15 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #14 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, i32** %1) #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds i32, i32* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store i32* %14, i32** %15, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32** %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #16 - %16 = bitcast i8* %15 to i32** - ret i32** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #12 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #13 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #4 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %7 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret i32* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #15 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #16 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #6 comdat align 2 { - %1 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - ret i64 %1 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 -1 - %19 = icmp ne i32* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %23, i32* %29, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - %37 = getelementptr inbounds i32, i32* %36, i32 1 - store i32* %37, i32** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, i32* nonnull align 4 dereferenceable(4) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.1, i64 0, i64 0)) #15 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i64 1 - store i32* %12, i32** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = load i32*, i32** %4, align 8 - %30 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %29) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %22, i32* %28, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load i32**, i32*** %39, align 8 - %41 = getelementptr inbounds i32*, i32** %40, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, i32** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load i32*, i32** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store i32* %47, i32** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #6 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #6 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #12 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #6 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load i32*, i32** %22, align 8 - %24 = ptrtoint i32* %20 to i64 - %25 = ptrtoint i32* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 4 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = ptrtoint i32* %31 to i64 - %36 = ptrtoint i32* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 4 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #6 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #4 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %79, i32** %86, i32** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %95, i32** %102, i32** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store i32** %124, i32*** %11, align 8 - %125 = load i32**, i32*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %144, i32** %151, i32** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, i32** %159, i64 %164) #3 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, i32** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, i32** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #6 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %0, i32** %1) #6 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #6 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #6 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32**, i32*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32*, i32** %24, i64 %25 - ret i32** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #4 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #6 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32**, i32*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32*, i32** %27, i64 %29 - ret i32** %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #6 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 2 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 2 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 2 - %15 = load i32*, i32** %14, align 8 - %16 = getelementptr inbounds i32, i32* %15, i64 -1 - %17 = icmp ne i32* %9, %16 - br i1 %17, label %18, label %34 - -18: ; preds = %1 - %19 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %20 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %19) #3 - %21 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %23, i32 0, i32 2 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 - %26 = load i32*, i32** %25, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %20, i32* %26) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 2 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - %33 = getelementptr inbounds i32, i32* %32, i32 1 - store i32* %33, i32** %31, align 8 - br label %36 - -34: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %35 unwind label %37 - -35: ; preds = %34 - br label %36 - -36: ; preds = %35, %18 - ret void - -37: ; preds = %34 - %38 = landingpad { i8*, i32 } - catch i8* null - %39 = extractvalue { i8*, i32 } %38, 0 - call void @__clang_call_terminate(i8* %39) #14 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1) #6 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #6 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 2 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i32* %11) #3 - %12 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %13 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 2 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 1 - %18 = load i32*, i32** %17, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32* %18) #3 - %19 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 2 - %23 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 2 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 3 - %28 = load i32**, i32*** %27, align 8 - %29 = getelementptr inbounds i32*, i32** %28, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %22, i32** %29) #3 - %30 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 2 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 1 - %35 = load i32*, i32** %34, align 8 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 2 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - store i32* %35, i32** %40, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1) #6 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline noreturn nounwind } -attributes #11 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { noreturn nounwind } -attributes #15 = { noreturn } -attributes #16 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} -!13 = distinct !{!13, !3} -!14 = distinct !{!14, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll deleted file mode 100644 index 4b014c72..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll +++ /dev/null @@ -1,260 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp' -source_filename = "PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [6 x i32] [i32 1, i32 3, i32 6, i32 1, i32 0, i32 9], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [41 x i8] c"Minimum number of jumps to reach end is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3minii(i32 %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { - %3 = alloca i32, align 4 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - %9 = load i32, i32* %5, align 4 - %10 = sext i32 %9 to i64 - %11 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %10, i64 4) - %12 = extractvalue { i64, i1 } %11, 1 - %13 = extractvalue { i64, i1 } %11, 0 - %14 = select i1 %12, i64 -1, i64 %13 - %15 = call noalias nonnull i8* @_Znam(i64 %14) #10 - %16 = bitcast i8* %15 to i32* - store i32* %16, i32** %6, align 8 - %17 = load i32, i32* %5, align 4 - %18 = icmp eq i32 %17, 0 - br i1 %18, label %24, label %19 - -19: ; preds = %2 - %20 = load i32*, i32** %4, align 8 - %21 = getelementptr inbounds i32, i32* %20, i64 0 - %22 = load i32, i32* %21, align 4 - %23 = icmp eq i32 %22, 0 - br i1 %23, label %24, label %25 - -24: ; preds = %19, %2 - store i32 2147483647, i32* %3, align 4 - br label %90 - -25: ; preds = %19 - %26 = load i32*, i32** %6, align 8 - %27 = getelementptr inbounds i32, i32* %26, i64 0 - store i32 0, i32* %27, align 4 - store i32 1, i32* %7, align 4 - br label %28 - -28: ; preds = %80, %25 - %29 = load i32, i32* %7, align 4 - %30 = load i32, i32* %5, align 4 - %31 = icmp slt i32 %29, %30 - br i1 %31, label %32, label %83 - -32: ; preds = %28 - %33 = load i32*, i32** %6, align 8 - %34 = load i32, i32* %7, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - store i32 2147483647, i32* %36, align 4 - store i32 0, i32* %8, align 4 - br label %37 - -37: ; preds = %76, %32 - %38 = load i32, i32* %8, align 4 - %39 = load i32, i32* %7, align 4 - %40 = icmp slt i32 %38, %39 - br i1 %40, label %41, label %79 - -41: ; preds = %37 - %42 = load i32, i32* %7, align 4 - %43 = load i32, i32* %8, align 4 - %44 = load i32*, i32** %4, align 8 - %45 = load i32, i32* %8, align 4 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds i32, i32* %44, i64 %46 - %48 = load i32, i32* %47, align 4 - %49 = add nsw i32 %43, %48 - %50 = icmp sle i32 %42, %49 - br i1 %50, label %51, label %75 - -51: ; preds = %41 - %52 = load i32*, i32** %6, align 8 - %53 = load i32, i32* %8, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = icmp ne i32 %56, 2147483647 - br i1 %57, label %58, label %75 - -58: ; preds = %51 - %59 = load i32*, i32** %6, align 8 - %60 = load i32, i32* %7, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i32, i32* %59, i64 %61 - %63 = load i32, i32* %62, align 4 - %64 = load i32*, i32** %6, align 8 - %65 = load i32, i32* %8, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %68, 1 - %70 = call i32 @_Z3minii(i32 %63, i32 %69) - %71 = load i32*, i32** %6, align 8 - %72 = load i32, i32* %7, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i32, i32* %71, i64 %73 - store i32 %70, i32* %74, align 4 - br label %79 - -75: ; preds = %51, %41 - br label %76 - -76: ; preds = %75 - %77 = load i32, i32* %8, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %8, align 4 - br label %37, !llvm.loop !2 - -79: ; preds = %58, %37 - br label %80 - -80: ; preds = %79 - %81 = load i32, i32* %7, align 4 - %82 = add nsw i32 %81, 1 - store i32 %82, i32* %7, align 4 - br label %28, !llvm.loop !4 - -83: ; preds = %28 - %84 = load i32*, i32** %6, align 8 - %85 = load i32, i32* %5, align 4 - %86 = sub nsw i32 %85, 1 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds i32, i32* %84, i64 %87 - %89 = load i32, i32* %88, align 4 - store i32 %89, i32* %3, align 4 - br label %90 - -90: ; preds = %83, %24 - %91 = load i32, i32* %3, align 4 - ret i32 %91 -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #6 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #7 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 6, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([41 x i8], [41 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z8minJumpsPii(i32* %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #7 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll deleted file mode 100644 index 333f802b..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll +++ /dev/null @@ -1,405 +0,0 @@ -; ModuleID = 'PE-benchmarks/minimum-positive-points-to-reach-destination.cpp' -source_filename = "PE-benchmarks/minimum-positive-points-to-reach-destination.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.points = private unnamed_addr constant [3 x [3 x i32]] [[3 x i32] [i32 -2, i32 -3, i32 3], [3 x i32] [i32 -5, i32 -10, i32 1], [3 x i32] [i32 10, i32 30, i32 -5]], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [34 x i8] c"Minimum Initial Points Required: \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { - %2 = alloca [3 x i32]*, align 8 - %3 = alloca [3 x [3 x i32]], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - store [3 x i32]* %0, [3 x i32]** %2, align 8 - store i32 3, i32* %4, align 4 - store i32 3, i32* %5, align 4 - %17 = load [3 x i32]*, [3 x i32]** %2, align 8 - %18 = load i32, i32* %4, align 4 - %19 = sub nsw i32 %18, 1 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [3 x i32], [3 x i32]* %17, i64 %20 - %22 = load i32, i32* %5, align 4 - %23 = sub nsw i32 %22, 1 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [3 x i32], [3 x i32]* %21, i64 0, i64 %24 - %26 = load i32, i32* %25, align 4 - %27 = icmp sgt i32 %26, 0 - br i1 %27, label %28, label %29 - -28: ; preds = %1 - br label %42 - -29: ; preds = %1 - %30 = load [3 x i32]*, [3 x i32]** %2, align 8 - %31 = load i32, i32* %4, align 4 - %32 = sub nsw i32 %31, 1 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [3 x i32], [3 x i32]* %30, i64 %33 - %35 = load i32, i32* %5, align 4 - %36 = sub nsw i32 %35, 1 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds [3 x i32], [3 x i32]* %34, i64 0, i64 %37 - %39 = load i32, i32* %38, align 4 - %40 = call i32 @abs(i32 %39) #9 - %41 = add nsw i32 %40, 1 - br label %42 - -42: ; preds = %29, %28 - %43 = phi i32 [ 1, %28 ], [ %41, %29 ] - %44 = load i32, i32* %4, align 4 - %45 = sub nsw i32 %44, 1 - %46 = sext i32 %45 to i64 - %47 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %46 - %48 = load i32, i32* %5, align 4 - %49 = sub nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [3 x i32], [3 x i32]* %47, i64 0, i64 %50 - store i32 %43, i32* %51, align 4 - %52 = load i32, i32* %4, align 4 - %53 = sub nsw i32 %52, 2 - store i32 %53, i32* %6, align 4 - br label %54 - -54: ; preds = %86, %42 - %55 = load i32, i32* %6, align 4 - %56 = icmp sge i32 %55, 0 - br i1 %56, label %57, label %89 - -57: ; preds = %54 - %58 = load i32, i32* %6, align 4 - %59 = add nsw i32 %58, 1 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %60 - %62 = load i32, i32* %5, align 4 - %63 = sub nsw i32 %62, 1 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds [3 x i32], [3 x i32]* %61, i64 0, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = load [3 x i32]*, [3 x i32]** %2, align 8 - %68 = load i32, i32* %6, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds [3 x i32], [3 x i32]* %67, i64 %69 - %71 = load i32, i32* %5, align 4 - %72 = sub nsw i32 %71, 1 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds [3 x i32], [3 x i32]* %70, i64 0, i64 %73 - %75 = load i32, i32* %74, align 4 - %76 = sub nsw i32 %66, %75 - store i32 %76, i32* %7, align 4 - store i32 1, i32* %8, align 4 - %77 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %7, i32* nonnull align 4 dereferenceable(4) %8) - %78 = load i32, i32* %77, align 4 - %79 = load i32, i32* %6, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %80 - %82 = load i32, i32* %5, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [3 x i32], [3 x i32]* %81, i64 0, i64 %84 - store i32 %78, i32* %85, align 4 - br label %86 - -86: ; preds = %57 - %87 = load i32, i32* %6, align 4 - %88 = add nsw i32 %87, -1 - store i32 %88, i32* %6, align 4 - br label %54, !llvm.loop !2 - -89: ; preds = %54 - %90 = load i32, i32* %5, align 4 - %91 = sub nsw i32 %90, 2 - store i32 %91, i32* %9, align 4 - br label %92 - -92: ; preds = %124, %89 - %93 = load i32, i32* %9, align 4 - %94 = icmp sge i32 %93, 0 - br i1 %94, label %95, label %127 - -95: ; preds = %92 - %96 = load i32, i32* %4, align 4 - %97 = sub nsw i32 %96, 1 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %98 - %100 = load i32, i32* %9, align 4 - %101 = add nsw i32 %100, 1 - %102 = sext i32 %101 to i64 - %103 = getelementptr inbounds [3 x i32], [3 x i32]* %99, i64 0, i64 %102 - %104 = load i32, i32* %103, align 4 - %105 = load [3 x i32]*, [3 x i32]** %2, align 8 - %106 = load i32, i32* %4, align 4 - %107 = sub nsw i32 %106, 1 - %108 = sext i32 %107 to i64 - %109 = getelementptr inbounds [3 x i32], [3 x i32]* %105, i64 %108 - %110 = load i32, i32* %9, align 4 - %111 = sext i32 %110 to i64 - %112 = getelementptr inbounds [3 x i32], [3 x i32]* %109, i64 0, i64 %111 - %113 = load i32, i32* %112, align 4 - %114 = sub nsw i32 %104, %113 - store i32 %114, i32* %10, align 4 - store i32 1, i32* %11, align 4 - %115 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %10, i32* nonnull align 4 dereferenceable(4) %11) - %116 = load i32, i32* %115, align 4 - %117 = load i32, i32* %4, align 4 - %118 = sub nsw i32 %117, 1 - %119 = sext i32 %118 to i64 - %120 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %119 - %121 = load i32, i32* %9, align 4 - %122 = sext i32 %121 to i64 - %123 = getelementptr inbounds [3 x i32], [3 x i32]* %120, i64 0, i64 %122 - store i32 %116, i32* %123, align 4 - br label %124 - -124: ; preds = %95 - %125 = load i32, i32* %9, align 4 - %126 = add nsw i32 %125, -1 - store i32 %126, i32* %9, align 4 - br label %92, !llvm.loop !4 - -127: ; preds = %92 - %128 = load i32, i32* %4, align 4 - %129 = sub nsw i32 %128, 2 - store i32 %129, i32* %12, align 4 - br label %130 - -130: ; preds = %178, %127 - %131 = load i32, i32* %12, align 4 - %132 = icmp sge i32 %131, 0 - br i1 %132, label %133, label %181 - -133: ; preds = %130 - %134 = load i32, i32* %5, align 4 - %135 = sub nsw i32 %134, 2 - store i32 %135, i32* %13, align 4 - br label %136 - -136: ; preds = %174, %133 - %137 = load i32, i32* %13, align 4 - %138 = icmp sge i32 %137, 0 - br i1 %138, label %139, label %177 - -139: ; preds = %136 - %140 = load i32, i32* %12, align 4 - %141 = add nsw i32 %140, 1 - %142 = sext i32 %141 to i64 - %143 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %142 - %144 = load i32, i32* %13, align 4 - %145 = sext i32 %144 to i64 - %146 = getelementptr inbounds [3 x i32], [3 x i32]* %143, i64 0, i64 %145 - %147 = load i32, i32* %12, align 4 - %148 = sext i32 %147 to i64 - %149 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %148 - %150 = load i32, i32* %13, align 4 - %151 = add nsw i32 %150, 1 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds [3 x i32], [3 x i32]* %149, i64 0, i64 %152 - %154 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %146, i32* nonnull align 4 dereferenceable(4) %153) - %155 = load i32, i32* %154, align 4 - store i32 %155, i32* %14, align 4 - %156 = load i32, i32* %14, align 4 - %157 = load [3 x i32]*, [3 x i32]** %2, align 8 - %158 = load i32, i32* %12, align 4 - %159 = sext i32 %158 to i64 - %160 = getelementptr inbounds [3 x i32], [3 x i32]* %157, i64 %159 - %161 = load i32, i32* %13, align 4 - %162 = sext i32 %161 to i64 - %163 = getelementptr inbounds [3 x i32], [3 x i32]* %160, i64 0, i64 %162 - %164 = load i32, i32* %163, align 4 - %165 = sub nsw i32 %156, %164 - store i32 %165, i32* %15, align 4 - store i32 1, i32* %16, align 4 - %166 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %15, i32* nonnull align 4 dereferenceable(4) %16) - %167 = load i32, i32* %166, align 4 - %168 = load i32, i32* %12, align 4 - %169 = sext i32 %168 to i64 - %170 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 %169 - %171 = load i32, i32* %13, align 4 - %172 = sext i32 %171 to i64 - %173 = getelementptr inbounds [3 x i32], [3 x i32]* %170, i64 0, i64 %172 - store i32 %167, i32* %173, align 4 - br label %174 - -174: ; preds = %139 - %175 = load i32, i32* %13, align 4 - %176 = add nsw i32 %175, -1 - store i32 %176, i32* %13, align 4 - br label %136, !llvm.loop !5 - -177: ; preds = %136 - br label %178 - -178: ; preds = %177 - %179 = load i32, i32* %12, align 4 - %180 = add nsw i32 %179, -1 - store i32 %180, i32* %12, align 4 - br label %130, !llvm.loop !6 - -181: ; preds = %130 - %182 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 0 - %183 = getelementptr inbounds [3 x i32], [3 x i32]* %182, i64 0, i64 0 - %184 = load i32, i32* %183, align 16 - ret i32 %184 -} - -; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [3 x [3 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [3 x [3 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([3 x [3 x i32]]* @__const.main.points to i8*), i64 36, i1 false) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([34 x i8], [34 x i8]* @.str, i64 0, i64 0)) - %5 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %2, i64 0, i64 0 - %6 = call i32 @_Z16minInitialPointsPA3_i([3 x i32]* %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %4, i32 %6) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readnone willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { nounwind readnone willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll deleted file mode 100644 index cb847198..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll +++ /dev/null @@ -1,417 +0,0 @@ -; ModuleID = 'PE-benchmarks/mobile-numeric-keypad-problem.cpp' -source_filename = "PE-benchmarks/mobile-numeric-keypad-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const._Z8getCountPA3_ci.row = private unnamed_addr constant [5 x i32] [i32 0, i32 0, i32 -1, i32 0, i32 1], align 16 -@__const._Z8getCountPA3_ci.col = private unnamed_addr constant [5 x i32] [i32 0, i32 -1, i32 0, i32 1, i32 0], align 16 -@__const.main.keypad = private unnamed_addr constant [4 x [3 x i8]] [[3 x i8] c"123", [3 x i8] c"456", [3 x i8] c"789", [3 x i8] c"*0#"], align 1 -@.str = private unnamed_addr constant [36 x i8] c"Count for numbers of length %d: %dn\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca [3 x i8]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca [5 x i32], align 16 - %7 = alloca [5 x i32], align 16 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %4, align 8 - store i32 %1, i32* %5, align 4 - %19 = load [3 x i8]*, [3 x i8]** %4, align 8 - %20 = icmp eq [3 x i8]* %19, null - br i1 %20, label %24, label %21 - -21: ; preds = %2 - %22 = load i32, i32* %5, align 4 - %23 = icmp sle i32 %22, 0 - br i1 %23, label %24, label %25 - -24: ; preds = %21, %2 - store i32 0, i32* %3, align 4 - br label %224 - -25: ; preds = %21 - %26 = load i32, i32* %5, align 4 - %27 = icmp eq i32 %26, 1 - br i1 %27, label %28, label %29 - -28: ; preds = %25 - store i32 10, i32* %3, align 4 - br label %224 - -29: ; preds = %25 - %30 = bitcast [5 x i32]* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %30, i8* align 16 bitcast ([5 x i32]* @__const._Z8getCountPA3_ci.row to i8*), i64 20, i1 false) - %31 = bitcast [5 x i32]* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %31, i8* align 16 bitcast ([5 x i32]* @__const._Z8getCountPA3_ci.col to i8*), i64 20, i1 false) - %32 = load i32, i32* %5, align 4 - %33 = add nsw i32 %32, 1 - %34 = zext i32 %33 to i64 - %35 = call i8* @llvm.stacksave() - store i8* %35, i8** %8, align 8 - %36 = mul nuw i64 10, %34 - %37 = alloca i32, i64 %36, align 16 - store i64 %34, i64* %9, align 8 - store i32 0, i32* %10, align 4 - store i32 0, i32* %11, align 4 - store i32 0, i32* %12, align 4 - store i32 0, i32* %13, align 4 - store i32 0, i32* %14, align 4 - store i32 0, i32* %15, align 4 - store i32 0, i32* %16, align 4 - store i32 0, i32* %17, align 4 - store i32 0, i32* %18, align 4 - store i32 0, i32* %10, align 4 - br label %38 - -38: ; preds = %52, %29 - %39 = load i32, i32* %10, align 4 - %40 = icmp sle i32 %39, 9 - br i1 %40, label %41, label %55 - -41: ; preds = %38 - %42 = load i32, i32* %10, align 4 - %43 = sext i32 %42 to i64 - %44 = mul nsw i64 %43, %34 - %45 = getelementptr inbounds i32, i32* %37, i64 %44 - %46 = getelementptr inbounds i32, i32* %45, i64 0 - store i32 0, i32* %46, align 4 - %47 = load i32, i32* %10, align 4 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %34 - %50 = getelementptr inbounds i32, i32* %37, i64 %49 - %51 = getelementptr inbounds i32, i32* %50, i64 1 - store i32 1, i32* %51, align 4 - br label %52 - -52: ; preds = %41 - %53 = load i32, i32* %10, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %10, align 4 - br label %38, !llvm.loop !2 - -55: ; preds = %38 - store i32 2, i32* %12, align 4 - br label %56 - -56: ; preds = %200, %55 - %57 = load i32, i32* %12, align 4 - %58 = load i32, i32* %5, align 4 - %59 = icmp sle i32 %57, %58 - br i1 %59, label %60, label %203 - -60: ; preds = %56 - store i32 0, i32* %10, align 4 - br label %61 - -61: ; preds = %196, %60 - %62 = load i32, i32* %10, align 4 - %63 = icmp slt i32 %62, 4 - br i1 %63, label %64, label %199 - -64: ; preds = %61 - store i32 0, i32* %11, align 4 - br label %65 - -65: ; preds = %192, %64 - %66 = load i32, i32* %11, align 4 - %67 = icmp slt i32 %66, 3 - br i1 %67, label %68, label %195 - -68: ; preds = %65 - %69 = load [3 x i8]*, [3 x i8]** %4, align 8 - %70 = load i32, i32* %10, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds [3 x i8], [3 x i8]* %69, i64 %71 - %73 = load i32, i32* %11, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds [3 x i8], [3 x i8]* %72, i64 0, i64 %74 - %76 = load i8, i8* %75, align 1 - %77 = sext i8 %76 to i32 - %78 = icmp ne i32 %77, 42 - br i1 %78, label %79, label %191 - -79: ; preds = %68 - %80 = load [3 x i8]*, [3 x i8]** %4, align 8 - %81 = load i32, i32* %10, align 4 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds [3 x i8], [3 x i8]* %80, i64 %82 - %84 = load i32, i32* %11, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds [3 x i8], [3 x i8]* %83, i64 0, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = sext i8 %87 to i32 - %89 = icmp ne i32 %88, 35 - br i1 %89, label %90, label %191 - -90: ; preds = %79 - %91 = load [3 x i8]*, [3 x i8]** %4, align 8 - %92 = load i32, i32* %10, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds [3 x i8], [3 x i8]* %91, i64 %93 - %95 = load i32, i32* %11, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds [3 x i8], [3 x i8]* %94, i64 0, i64 %96 - %98 = load i8, i8* %97, align 1 - %99 = sext i8 %98 to i32 - %100 = sub nsw i32 %99, 48 - store i32 %100, i32* %16, align 4 - %101 = load i32, i32* %16, align 4 - %102 = sext i32 %101 to i64 - %103 = mul nsw i64 %102, %34 - %104 = getelementptr inbounds i32, i32* %37, i64 %103 - %105 = load i32, i32* %12, align 4 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds i32, i32* %104, i64 %106 - store i32 0, i32* %107, align 4 - store i32 0, i32* %13, align 4 - br label %108 - -108: ; preds = %187, %90 - %109 = load i32, i32* %13, align 4 - %110 = icmp slt i32 %109, 5 - br i1 %110, label %111, label %190 - -111: ; preds = %108 - %112 = load i32, i32* %10, align 4 - %113 = load i32, i32* %13, align 4 - %114 = sext i32 %113 to i64 - %115 = getelementptr inbounds [5 x i32], [5 x i32]* %6, i64 0, i64 %114 - %116 = load i32, i32* %115, align 4 - %117 = add nsw i32 %112, %116 - store i32 %117, i32* %14, align 4 - %118 = load i32, i32* %11, align 4 - %119 = load i32, i32* %13, align 4 - %120 = sext i32 %119 to i64 - %121 = getelementptr inbounds [5 x i32], [5 x i32]* %7, i64 0, i64 %120 - %122 = load i32, i32* %121, align 4 - %123 = add nsw i32 %118, %122 - store i32 %123, i32* %15, align 4 - %124 = load i32, i32* %14, align 4 - %125 = icmp sge i32 %124, 0 - br i1 %125, label %126, label %186 - -126: ; preds = %111 - %127 = load i32, i32* %14, align 4 - %128 = icmp sle i32 %127, 3 - br i1 %128, label %129, label %186 - -129: ; preds = %126 - %130 = load i32, i32* %15, align 4 - %131 = icmp sge i32 %130, 0 - br i1 %131, label %132, label %186 - -132: ; preds = %129 - %133 = load i32, i32* %15, align 4 - %134 = icmp sle i32 %133, 2 - br i1 %134, label %135, label %186 - -135: ; preds = %132 - %136 = load [3 x i8]*, [3 x i8]** %4, align 8 - %137 = load i32, i32* %14, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds [3 x i8], [3 x i8]* %136, i64 %138 - %140 = load i32, i32* %15, align 4 - %141 = sext i32 %140 to i64 - %142 = getelementptr inbounds [3 x i8], [3 x i8]* %139, i64 0, i64 %141 - %143 = load i8, i8* %142, align 1 - %144 = sext i8 %143 to i32 - %145 = icmp ne i32 %144, 42 - br i1 %145, label %146, label %186 - -146: ; preds = %135 - %147 = load [3 x i8]*, [3 x i8]** %4, align 8 - %148 = load i32, i32* %14, align 4 - %149 = sext i32 %148 to i64 - %150 = getelementptr inbounds [3 x i8], [3 x i8]* %147, i64 %149 - %151 = load i32, i32* %15, align 4 - %152 = sext i32 %151 to i64 - %153 = getelementptr inbounds [3 x i8], [3 x i8]* %150, i64 0, i64 %152 - %154 = load i8, i8* %153, align 1 - %155 = sext i8 %154 to i32 - %156 = icmp ne i32 %155, 35 - br i1 %156, label %157, label %186 - -157: ; preds = %146 - %158 = load [3 x i8]*, [3 x i8]** %4, align 8 - %159 = load i32, i32* %14, align 4 - %160 = sext i32 %159 to i64 - %161 = getelementptr inbounds [3 x i8], [3 x i8]* %158, i64 %160 - %162 = load i32, i32* %15, align 4 - %163 = sext i32 %162 to i64 - %164 = getelementptr inbounds [3 x i8], [3 x i8]* %161, i64 0, i64 %163 - %165 = load i8, i8* %164, align 1 - %166 = sext i8 %165 to i32 - %167 = sub nsw i32 %166, 48 - store i32 %167, i32* %17, align 4 - %168 = load i32, i32* %17, align 4 - %169 = sext i32 %168 to i64 - %170 = mul nsw i64 %169, %34 - %171 = getelementptr inbounds i32, i32* %37, i64 %170 - %172 = load i32, i32* %12, align 4 - %173 = sub nsw i32 %172, 1 - %174 = sext i32 %173 to i64 - %175 = getelementptr inbounds i32, i32* %171, i64 %174 - %176 = load i32, i32* %175, align 4 - %177 = load i32, i32* %16, align 4 - %178 = sext i32 %177 to i64 - %179 = mul nsw i64 %178, %34 - %180 = getelementptr inbounds i32, i32* %37, i64 %179 - %181 = load i32, i32* %12, align 4 - %182 = sext i32 %181 to i64 - %183 = getelementptr inbounds i32, i32* %180, i64 %182 - %184 = load i32, i32* %183, align 4 - %185 = add nsw i32 %184, %176 - store i32 %185, i32* %183, align 4 - br label %186 - -186: ; preds = %157, %146, %135, %132, %129, %126, %111 - br label %187 - -187: ; preds = %186 - %188 = load i32, i32* %13, align 4 - %189 = add nsw i32 %188, 1 - store i32 %189, i32* %13, align 4 - br label %108, !llvm.loop !4 - -190: ; preds = %108 - br label %191 - -191: ; preds = %190, %79, %68 - br label %192 - -192: ; preds = %191 - %193 = load i32, i32* %11, align 4 - %194 = add nsw i32 %193, 1 - store i32 %194, i32* %11, align 4 - br label %65, !llvm.loop !5 - -195: ; preds = %65 - br label %196 - -196: ; preds = %195 - %197 = load i32, i32* %10, align 4 - %198 = add nsw i32 %197, 1 - store i32 %198, i32* %10, align 4 - br label %61, !llvm.loop !6 - -199: ; preds = %61 - br label %200 - -200: ; preds = %199 - %201 = load i32, i32* %12, align 4 - %202 = add nsw i32 %201, 1 - store i32 %202, i32* %12, align 4 - br label %56, !llvm.loop !7 - -203: ; preds = %56 - store i32 0, i32* %18, align 4 - store i32 0, i32* %10, align 4 - br label %204 - -204: ; preds = %218, %203 - %205 = load i32, i32* %10, align 4 - %206 = icmp sle i32 %205, 9 - br i1 %206, label %207, label %221 - -207: ; preds = %204 - %208 = load i32, i32* %10, align 4 - %209 = sext i32 %208 to i64 - %210 = mul nsw i64 %209, %34 - %211 = getelementptr inbounds i32, i32* %37, i64 %210 - %212 = load i32, i32* %5, align 4 - %213 = sext i32 %212 to i64 - %214 = getelementptr inbounds i32, i32* %211, i64 %213 - %215 = load i32, i32* %214, align 4 - %216 = load i32, i32* %18, align 4 - %217 = add nsw i32 %216, %215 - store i32 %217, i32* %18, align 4 - br label %218 - -218: ; preds = %207 - %219 = load i32, i32* %10, align 4 - %220 = add nsw i32 %219, 1 - store i32 %220, i32* %10, align 4 - br label %204, !llvm.loop !8 - -221: ; preds = %204 - %222 = load i32, i32* %18, align 4 - store i32 %222, i32* %3, align 4 - %223 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %223) - br label %224 - -224: ; preds = %221, %28, %24 - %225 = load i32, i32* %3, align 4 - ret i32 %225 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main(i32 %0, i8** %1) #3 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i8**, align 8 - %6 = alloca [4 x [3 x i8]], align 1 - store i32 0, i32* %3, align 4 - store i32 %0, i32* %4, align 4 - store i8** %1, i8*** %5, align 8 - %7 = bitcast [4 x [3 x i8]]* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %7, i8* align 1 getelementptr inbounds ([4 x [3 x i8]], [4 x [3 x i8]]* @__const.main.keypad, i32 0, i32 0, i32 0), i64 12, i1 false) - %8 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %6, i64 0, i64 0 - %9 = call i32 @_Z8getCountPA3_ci([3 x i8]* %8, i32 1) - %10 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 1, i32 %9) - %11 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %6, i64 0, i64 0 - %12 = call i32 @_Z8getCountPA3_ci([3 x i8]* %11, i32 2) - %13 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 2, i32 %12) - %14 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %6, i64 0, i64 0 - %15 = call i32 @_Z8getCountPA3_ci([3 x i8]* %14, i32 3) - %16 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 3, i32 %15) - %17 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %6, i64 0, i64 0 - %18 = call i32 @_Z8getCountPA3_ci([3 x i8]* %17, i32 4) - %19 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 4, i32 %18) - %20 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %6, i64 0, i64 0 - %21 = call i32 @_Z8getCountPA3_ci([3 x i8]* %20, i32 5) - %22 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 5, i32 %21) - ret i32 0 -} - -declare dso_local i32 @printf(i8*, ...) #4 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { argmemonly nofree nosync nounwind willreturn } -attributes #2 = { nofree nosync nounwind willreturn } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll deleted file mode 100644 index d39d2fbe..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll +++ /dev/null @@ -1,455 +0,0 @@ -; ModuleID = 'PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp' -source_filename = "PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.keypad = private unnamed_addr constant [4 x [3 x i8]] [[3 x i8] c"123", [3 x i8] c"456", [3 x i8] c"789", [3 x i8] c"*0#"], align 1 -@.str = private unnamed_addr constant [36 x i8] c"Count for numbers of length %d: %dn\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca [3 x i8]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca [10 x i32], align 16 - %7 = alloca [10 x i32], align 16 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store [3 x i8]* %0, [3 x i8]** %4, align 8 - store i32 %1, i32* %5, align 4 - %12 = load [3 x i8]*, [3 x i8]** %4, align 8 - %13 = icmp eq [3 x i8]* %12, null - br i1 %13, label %17, label %14 - -14: ; preds = %2 - %15 = load i32, i32* %5, align 4 - %16 = icmp sle i32 %15, 0 - br i1 %16, label %17, label %18 - -17: ; preds = %14, %2 - store i32 0, i32* %3, align 4 - br label %300 - -18: ; preds = %14 - %19 = load i32, i32* %5, align 4 - %20 = icmp eq i32 %19, 1 - br i1 %20, label %21, label %22 - -21: ; preds = %18 - store i32 10, i32* %3, align 4 - br label %300 - -22: ; preds = %18 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - store i32 0, i32* %10, align 4 - store i32 0, i32* %11, align 4 - store i32 0, i32* %8, align 4 - br label %23 - -23: ; preds = %30, %22 - %24 = load i32, i32* %8, align 4 - %25 = icmp sle i32 %24, 9 - br i1 %25, label %26, label %33 - -26: ; preds = %23 - %27 = load i32, i32* %8, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 %28 - store i32 1, i32* %29, align 4 - br label %30 - -30: ; preds = %26 - %31 = load i32, i32* %8, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %8, align 4 - br label %23, !llvm.loop !2 - -33: ; preds = %23 - store i32 2, i32* %9, align 4 - br label %34 - -34: ; preds = %262, %33 - %35 = load i32, i32* %9, align 4 - %36 = load i32, i32* %5, align 4 - %37 = icmp sle i32 %35, %36 - br i1 %37, label %38, label %265 - -38: ; preds = %34 - %39 = load i32, i32* %10, align 4 - %40 = sub nsw i32 1, %39 - store i32 %40, i32* %10, align 4 - %41 = load i32, i32* %10, align 4 - %42 = icmp eq i32 %41, 1 - br i1 %42, label %43, label %152 - -43: ; preds = %38 - %44 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 0 - %45 = load i32, i32* %44, align 16 - %46 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %47 = load i32, i32* %46, align 16 - %48 = add nsw i32 %45, %47 - %49 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 0 - store i32 %48, i32* %49, align 16 - %50 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - %51 = load i32, i32* %50, align 4 - %52 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %53 = load i32, i32* %52, align 8 - %54 = add nsw i32 %51, %53 - %55 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %56 = load i32, i32* %55, align 16 - %57 = add nsw i32 %54, %56 - %58 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - store i32 %57, i32* %58, align 4 - %59 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %60 = load i32, i32* %59, align 8 - %61 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %60, %62 - %64 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - %65 = load i32, i32* %64, align 4 - %66 = add nsw i32 %63, %65 - %67 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %68 = load i32, i32* %67, align 4 - %69 = add nsw i32 %66, %68 - %70 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - store i32 %69, i32* %70, align 8 - %71 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - %72 = load i32, i32* %71, align 4 - %73 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %74 = load i32, i32* %73, align 8 - %75 = add nsw i32 %72, %74 - %76 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %77 = load i32, i32* %76, align 8 - %78 = add nsw i32 %75, %77 - %79 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - store i32 %78, i32* %79, align 4 - %80 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %81 = load i32, i32* %80, align 16 - %82 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - %83 = load i32, i32* %82, align 4 - %84 = add nsw i32 %81, %83 - %85 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %86 = load i32, i32* %85, align 4 - %87 = add nsw i32 %84, %86 - %88 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - %89 = load i32, i32* %88, align 4 - %90 = add nsw i32 %87, %89 - %91 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - store i32 %90, i32* %91, align 16 - %92 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %93 = load i32, i32* %92, align 4 - %94 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - %95 = load i32, i32* %94, align 8 - %96 = add nsw i32 %93, %95 - %97 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %98 = load i32, i32* %97, align 16 - %99 = add nsw i32 %96, %98 - %100 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %101 = load i32, i32* %100, align 16 - %102 = add nsw i32 %99, %101 - %103 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %104 = load i32, i32* %103, align 8 - %105 = add nsw i32 %102, %104 - %106 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - store i32 %105, i32* %106, align 4 - %107 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %108 = load i32, i32* %107, align 8 - %109 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - %110 = load i32, i32* %109, align 4 - %111 = add nsw i32 %108, %110 - %112 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %113 = load i32, i32* %112, align 4 - %114 = add nsw i32 %111, %113 - %115 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - %116 = load i32, i32* %115, align 4 - %117 = add nsw i32 %114, %116 - %118 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - store i32 %117, i32* %118, align 8 - %119 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - %120 = load i32, i32* %119, align 4 - %121 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - %122 = load i32, i32* %121, align 16 - %123 = add nsw i32 %120, %122 - %124 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %125 = load i32, i32* %124, align 16 - %126 = add nsw i32 %123, %125 - %127 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - store i32 %126, i32* %127, align 4 - %128 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %129 = load i32, i32* %128, align 16 - %130 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 0 - %131 = load i32, i32* %130, align 16 - %132 = add nsw i32 %129, %131 - %133 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - %134 = load i32, i32* %133, align 4 - %135 = add nsw i32 %132, %134 - %136 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - %137 = load i32, i32* %136, align 4 - %138 = add nsw i32 %135, %137 - %139 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - %140 = load i32, i32* %139, align 4 - %141 = add nsw i32 %138, %140 - %142 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - store i32 %141, i32* %142, align 16 - %143 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - %144 = load i32, i32* %143, align 4 - %145 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - %146 = load i32, i32* %145, align 8 - %147 = add nsw i32 %144, %146 - %148 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - %149 = load i32, i32* %148, align 16 - %150 = add nsw i32 %147, %149 - %151 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - store i32 %150, i32* %151, align 4 - br label %261 - -152: ; preds = %38 - %153 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 0 - %154 = load i32, i32* %153, align 16 - %155 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %156 = load i32, i32* %155, align 16 - %157 = add nsw i32 %154, %156 - %158 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 0 - store i32 %157, i32* %158, align 16 - %159 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - %160 = load i32, i32* %159, align 4 - %161 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %162 = load i32, i32* %161, align 8 - %163 = add nsw i32 %160, %162 - %164 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %165 = load i32, i32* %164, align 16 - %166 = add nsw i32 %163, %165 - %167 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 1 - store i32 %166, i32* %167, align 4 - %168 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %169 = load i32, i32* %168, align 8 - %170 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - %171 = load i32, i32* %170, align 4 - %172 = add nsw i32 %169, %171 - %173 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - %174 = load i32, i32* %173, align 4 - %175 = add nsw i32 %172, %174 - %176 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %177 = load i32, i32* %176, align 4 - %178 = add nsw i32 %175, %177 - %179 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 2 - store i32 %178, i32* %179, align 8 - %180 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - %181 = load i32, i32* %180, align 4 - %182 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %183 = load i32, i32* %182, align 8 - %184 = add nsw i32 %181, %183 - %185 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %186 = load i32, i32* %185, align 8 - %187 = add nsw i32 %184, %186 - %188 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 3 - store i32 %187, i32* %188, align 4 - %189 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %190 = load i32, i32* %189, align 16 - %191 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 1 - %192 = load i32, i32* %191, align 4 - %193 = add nsw i32 %190, %192 - %194 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %195 = load i32, i32* %194, align 4 - %196 = add nsw i32 %193, %195 - %197 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - %198 = load i32, i32* %197, align 4 - %199 = add nsw i32 %196, %198 - %200 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 4 - store i32 %199, i32* %200, align 16 - %201 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %202 = load i32, i32* %201, align 4 - %203 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 2 - %204 = load i32, i32* %203, align 8 - %205 = add nsw i32 %202, %204 - %206 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %207 = load i32, i32* %206, align 16 - %208 = add nsw i32 %205, %207 - %209 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %210 = load i32, i32* %209, align 16 - %211 = add nsw i32 %208, %210 - %212 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %213 = load i32, i32* %212, align 8 - %214 = add nsw i32 %211, %213 - %215 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 5 - store i32 %214, i32* %215, align 4 - %216 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %217 = load i32, i32* %216, align 8 - %218 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 3 - %219 = load i32, i32* %218, align 4 - %220 = add nsw i32 %217, %219 - %221 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %222 = load i32, i32* %221, align 4 - %223 = add nsw i32 %220, %222 - %224 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - %225 = load i32, i32* %224, align 4 - %226 = add nsw i32 %223, %225 - %227 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 6 - store i32 %226, i32* %227, align 8 - %228 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - %229 = load i32, i32* %228, align 4 - %230 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 4 - %231 = load i32, i32* %230, align 16 - %232 = add nsw i32 %229, %231 - %233 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %234 = load i32, i32* %233, align 16 - %235 = add nsw i32 %232, %234 - %236 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 7 - store i32 %235, i32* %236, align 4 - %237 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %238 = load i32, i32* %237, align 16 - %239 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 0 - %240 = load i32, i32* %239, align 16 - %241 = add nsw i32 %238, %240 - %242 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 5 - %243 = load i32, i32* %242, align 4 - %244 = add nsw i32 %241, %243 - %245 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 7 - %246 = load i32, i32* %245, align 4 - %247 = add nsw i32 %244, %246 - %248 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - %249 = load i32, i32* %248, align 4 - %250 = add nsw i32 %247, %249 - %251 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 8 - store i32 %250, i32* %251, align 16 - %252 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 9 - %253 = load i32, i32* %252, align 4 - %254 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 6 - %255 = load i32, i32* %254, align 8 - %256 = add nsw i32 %253, %255 - %257 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 8 - %258 = load i32, i32* %257, align 16 - %259 = add nsw i32 %256, %258 - %260 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 9 - store i32 %259, i32* %260, align 4 - br label %261 - -261: ; preds = %152, %43 - br label %262 - -262: ; preds = %261 - %263 = load i32, i32* %9, align 4 - %264 = add nsw i32 %263, 1 - store i32 %264, i32* %9, align 4 - br label %34, !llvm.loop !4 - -265: ; preds = %34 - store i32 0, i32* %11, align 4 - %266 = load i32, i32* %10, align 4 - %267 = icmp eq i32 %266, 1 - br i1 %267, label %268, label %283 - -268: ; preds = %265 - store i32 0, i32* %8, align 4 - br label %269 - -269: ; preds = %279, %268 - %270 = load i32, i32* %8, align 4 - %271 = icmp sle i32 %270, 9 - br i1 %271, label %272, label %282 - -272: ; preds = %269 - %273 = load i32, i32* %8, align 4 - %274 = sext i32 %273 to i64 - %275 = getelementptr inbounds [10 x i32], [10 x i32]* %7, i64 0, i64 %274 - %276 = load i32, i32* %275, align 4 - %277 = load i32, i32* %11, align 4 - %278 = add nsw i32 %277, %276 - store i32 %278, i32* %11, align 4 - br label %279 - -279: ; preds = %272 - %280 = load i32, i32* %8, align 4 - %281 = add nsw i32 %280, 1 - store i32 %281, i32* %8, align 4 - br label %269, !llvm.loop !5 - -282: ; preds = %269 - br label %298 - -283: ; preds = %265 - store i32 0, i32* %8, align 4 - br label %284 - -284: ; preds = %294, %283 - %285 = load i32, i32* %8, align 4 - %286 = icmp sle i32 %285, 9 - br i1 %286, label %287, label %297 - -287: ; preds = %284 - %288 = load i32, i32* %8, align 4 - %289 = sext i32 %288 to i64 - %290 = getelementptr inbounds [10 x i32], [10 x i32]* %6, i64 0, i64 %289 - %291 = load i32, i32* %290, align 4 - %292 = load i32, i32* %11, align 4 - %293 = add nsw i32 %292, %291 - store i32 %293, i32* %11, align 4 - br label %294 - -294: ; preds = %287 - %295 = load i32, i32* %8, align 4 - %296 = add nsw i32 %295, 1 - store i32 %296, i32* %8, align 4 - br label %284, !llvm.loop !6 - -297: ; preds = %284 - br label %298 - -298: ; preds = %297, %282 - %299 = load i32, i32* %11, align 4 - store i32 %299, i32* %3, align 4 - br label %300 - -300: ; preds = %298, %21, %17 - %301 = load i32, i32* %3, align 4 - ret i32 %301 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca [4 x [3 x i8]], align 1 - store i32 0, i32* %1, align 4 - %3 = bitcast [4 x [3 x i8]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %3, i8* align 1 getelementptr inbounds ([4 x [3 x i8]], [4 x [3 x i8]]* @__const.main.keypad, i32 0, i32 0, i32 0), i64 12, i1 false) - %4 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %2, i64 0, i64 0 - %5 = call i32 @_Z8getCountPA3_ci([3 x i8]* %4, i32 1) - %6 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 1, i32 %5) - %7 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %2, i64 0, i64 0 - %8 = call i32 @_Z8getCountPA3_ci([3 x i8]* %7, i32 2) - %9 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 2, i32 %8) - %10 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %2, i64 0, i64 0 - %11 = call i32 @_Z8getCountPA3_ci([3 x i8]* %10, i32 3) - %12 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 3, i32 %11) - %13 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %2, i64 0, i64 0 - %14 = call i32 @_Z8getCountPA3_ci([3 x i8]* %13, i32 4) - %15 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 4, i32 %14) - %16 = getelementptr inbounds [4 x [3 x i8]], [4 x [3 x i8]]* %2, i64 0, i64 0 - %17 = call i32 @_Z8getCountPA3_ci([3 x i8]* %16, i32 5) - %18 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 5, i32 %17) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #2 - -declare dso_local i32 @printf(i8*, ...) #3 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { argmemonly nofree nosync nounwind willreturn } -attributes #3 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/n-queen-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/n-queen-problem.ll deleted file mode 100644 index cffe388e..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/n-queen-problem.ll +++ /dev/null @@ -1,261 +0,0 @@ -; ModuleID = 'PE-benchmarks/n-queen-problem.cpp' -source_filename = "PE-benchmarks/n-queen-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@ld = dso_local global [30 x i32] zeroinitializer, align 16 -@rd = dso_local global [30 x i32] zeroinitializer, align 16 -@cl = dso_local global [30 x i32] zeroinitializer, align 16 -@.str = private unnamed_addr constant [5 x i8] c" %d \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@.str.2 = private unnamed_addr constant [24 x i8] c"Solution does not exist\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %27, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 4 - br i1 %7, label %8, label %30 - -8: ; preds = %5 - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %22, %8 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 4 - br i1 %11, label %12, label %25 - -12: ; preds = %9 - %13 = load [4 x i32]*, [4 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [4 x i32], [4 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 %20) - br label %22 - -22: ; preds = %12 - %23 = load i32, i32* %4, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %4, align 4 - br label %9, !llvm.loop !2 - -25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %27 - -27: ; preds = %25 - %28 = load i32, i32* %3, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %3, align 4 - br label %5, !llvm.loop !4 - -30: ; preds = %5 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %0, i32 %1) #0 { - %3 = alloca i1, align 1 - %4 = alloca [4 x i32]*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %4, align 8 - store i32 %1, i32* %5, align 4 - %7 = load i32, i32* %5, align 4 - %8 = icmp sge i32 %7, 4 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - store i1 true, i1* %3, align 1 - br label %94 - -10: ; preds = %2 - store i32 0, i32* %6, align 4 - br label %11 - -11: ; preds = %90, %10 - %12 = load i32, i32* %6, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %93 - -14: ; preds = %11 - %15 = load i32, i32* %6, align 4 - %16 = load i32, i32* %5, align 4 - %17 = sub nsw i32 %15, %16 - %18 = add nsw i32 %17, 4 - %19 = sub nsw i32 %18, 1 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [30 x i32], [30 x i32]* @ld, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = icmp ne i32 %22, 1 - br i1 %23, label %24, label %89 - -24: ; preds = %14 - %25 = load i32, i32* %6, align 4 - %26 = load i32, i32* %5, align 4 - %27 = add nsw i32 %25, %26 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds [30 x i32], [30 x i32]* @rd, i64 0, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = icmp ne i32 %30, 1 - br i1 %31, label %32, label %89 - -32: ; preds = %24 - %33 = load i32, i32* %6, align 4 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds [30 x i32], [30 x i32]* @cl, i64 0, i64 %34 - %36 = load i32, i32* %35, align 4 - %37 = icmp ne i32 %36, 1 - br i1 %37, label %38, label %89 - -38: ; preds = %32 - %39 = load [4 x i32]*, [4 x i32]** %4, align 8 - %40 = load i32, i32* %6, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds [4 x i32], [4 x i32]* %39, i64 %41 - %43 = load i32, i32* %5, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds [4 x i32], [4 x i32]* %42, i64 0, i64 %44 - store i32 1, i32* %45, align 4 - %46 = load i32, i32* %6, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [30 x i32], [30 x i32]* @cl, i64 0, i64 %47 - store i32 1, i32* %48, align 4 - %49 = load i32, i32* %6, align 4 - %50 = load i32, i32* %5, align 4 - %51 = add nsw i32 %49, %50 - %52 = sext i32 %51 to i64 - %53 = getelementptr inbounds [30 x i32], [30 x i32]* @rd, i64 0, i64 %52 - store i32 1, i32* %53, align 4 - %54 = load i32, i32* %6, align 4 - %55 = load i32, i32* %5, align 4 - %56 = sub nsw i32 %54, %55 - %57 = add nsw i32 %56, 4 - %58 = sub nsw i32 %57, 1 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [30 x i32], [30 x i32]* @ld, i64 0, i64 %59 - store i32 1, i32* %60, align 4 - %61 = load [4 x i32]*, [4 x i32]** %4, align 8 - %62 = load i32, i32* %5, align 4 - %63 = add nsw i32 %62, 1 - %64 = call zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %61, i32 %63) - br i1 %64, label %65, label %66 - -65: ; preds = %38 - store i1 true, i1* %3, align 1 - br label %94 - -66: ; preds = %38 - %67 = load [4 x i32]*, [4 x i32]** %4, align 8 - %68 = load i32, i32* %6, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds [4 x i32], [4 x i32]* %67, i64 %69 - %71 = load i32, i32* %5, align 4 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds [4 x i32], [4 x i32]* %70, i64 0, i64 %72 - store i32 0, i32* %73, align 4 - %74 = load i32, i32* %6, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds [30 x i32], [30 x i32]* @cl, i64 0, i64 %75 - store i32 0, i32* %76, align 4 - %77 = load i32, i32* %6, align 4 - %78 = load i32, i32* %5, align 4 - %79 = add nsw i32 %77, %78 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds [30 x i32], [30 x i32]* @rd, i64 0, i64 %80 - store i32 0, i32* %81, align 4 - %82 = load i32, i32* %6, align 4 - %83 = load i32, i32* %5, align 4 - %84 = sub nsw i32 %82, %83 - %85 = add nsw i32 %84, 4 - %86 = sub nsw i32 %85, 1 - %87 = sext i32 %86 to i64 - %88 = getelementptr inbounds [30 x i32], [30 x i32]* @ld, i64 0, i64 %87 - store i32 0, i32* %88, align 4 - br label %89 - -89: ; preds = %66, %32, %24, %14 - br label %90 - -90: ; preds = %89 - %91 = load i32, i32* %6, align 4 - %92 = add nsw i32 %91, 1 - store i32 %92, i32* %6, align 4 - br label %11, !llvm.loop !5 - -93: ; preds = %11 - store i1 false, i1* %3, align 1 - br label %94 - -94: ; preds = %93, %65, %9 - %95 = load i1, i1* %3, align 1 - ret i1 %95 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z7solveNQv() #0 { - %1 = alloca i1, align 1 - %2 = alloca [4 x [4 x i32]], align 16 - %3 = bitcast [4 x [4 x i32]]* %2 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %3, i8 0, i64 64, i1 false) - %4 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %2, i64 0, i64 0 - %5 = call zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %4, i32 0) - %6 = zext i1 %5 to i32 - %7 = icmp eq i32 %6, 0 - br i1 %7, label %8, label %10 - -8: ; preds = %0 - %9 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.2, i64 0, i64 0)) - store i1 false, i1* %1, align 1 - br label %12 - -10: ; preds = %0 - %11 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %2, i64 0, i64 0 - call void @_Z13printSolutionPA4_i([4 x i32]* %11) - store i1 true, i1* %1, align 1 - br label %12 - -12: ; preds = %10, %8 - %13 = load i1, i1* %1, align 1 - ret i1 %13 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { - %1 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %2 = call zeroext i1 @_Z7solveNQv() - ret i32 0 -} - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/naive-algorithm.ll deleted file mode 100644 index 9550fb5f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/naive-algorithm.ll +++ /dev/null @@ -1,194 +0,0 @@ -; ModuleID = 'PE-benchmarks/naive-algorithm.cpp' -source_filename = "PE-benchmarks/naive-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"Pattern found at index \00", align 1 -@__const.main.txt = private unnamed_addr constant [19 x i8] c"AABAACAADAABAAABAA\00", align 16 -@__const.main.pat = private unnamed_addr constant [5 x i8] c"AABA\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_naive_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #4 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %9 = load i8*, i8** %3, align 8 - %10 = call i64 @strlen(i8* %9) #8 - %11 = trunc i64 %10 to i32 - store i32 %11, i32* %5, align 4 - %12 = load i8*, i8** %4, align 8 - %13 = call i64 @strlen(i8* %12) #8 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %57, %2 - %16 = load i32, i32* %7, align 4 - %17 = load i32, i32* %6, align 4 - %18 = load i32, i32* %5, align 4 - %19 = sub nsw i32 %17, %18 - %20 = icmp sle i32 %16, %19 - br i1 %20, label %21, label %60 - -21: ; preds = %15 - store i32 0, i32* %8, align 4 - br label %22 - -22: ; preds = %44, %21 - %23 = load i32, i32* %8, align 4 - %24 = load i32, i32* %5, align 4 - %25 = icmp slt i32 %23, %24 - br i1 %25, label %26, label %47 - -26: ; preds = %22 - %27 = load i8*, i8** %4, align 8 - %28 = load i32, i32* %7, align 4 - %29 = load i32, i32* %8, align 4 - %30 = add nsw i32 %28, %29 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds i8, i8* %27, i64 %31 - %33 = load i8, i8* %32, align 1 - %34 = sext i8 %33 to i32 - %35 = load i8*, i8** %3, align 8 - %36 = load i32, i32* %8, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %35, i64 %37 - %39 = load i8, i8* %38, align 1 - %40 = sext i8 %39 to i32 - %41 = icmp ne i32 %34, %40 - br i1 %41, label %42, label %43 - -42: ; preds = %26 - br label %47 - -43: ; preds = %26 - br label %44 - -44: ; preds = %43 - %45 = load i32, i32* %8, align 4 - %46 = add nsw i32 %45, 1 - store i32 %46, i32* %8, align 4 - br label %22, !llvm.loop !2 - -47: ; preds = %42, %22 - %48 = load i32, i32* %8, align 4 - %49 = load i32, i32* %5, align 4 - %50 = icmp eq i32 %48, %49 - br i1 %50, label %51, label %56 - -51: ; preds = %47 - %52 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - %53 = load i32, i32* %7, align 4 - %54 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %52, i32 %53) - %55 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %54, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %56 - -56: ; preds = %51, %47 - br label %57 - -57: ; preds = %56 - %58 = load i32, i32* %7, align 4 - %59 = add nsw i32 %58, 1 - store i32 %59, i32* %7, align 4 - br label %15, !llvm.loop !4 - -60: ; preds = %15 - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [19 x i8], align 16 - %3 = alloca [5 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [19 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 getelementptr inbounds ([19 x i8], [19 x i8]* @__const.main.txt, i32 0, i32 0), i64 19, i1 false) - %5 = bitcast [5 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.pat, i32 0, i32 0), i64 5, i1 false) - %6 = getelementptr inbounds [5 x i8], [5 x i8]* %3, i64 0, i64 0 - %7 = getelementptr inbounds [19 x i8], [19 x i8]* %2, i64 0, i64 0 - call void @_Z6searchPcS_(i8* %6, i8* %7) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_naive_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } -attributes #8 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll deleted file mode 100644 index a304cce4..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll +++ /dev/null @@ -1,370 +0,0 @@ -; ModuleID = 'PE-benchmarks/optimal-binary-search-tree.cpp' -source_filename = "PE-benchmarks/optimal-binary-search-tree.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.keys = private unnamed_addr constant [3 x i32] [i32 10, i32 12, i32 20], align 4 -@__const.main.freq = private unnamed_addr constant [3 x i32] [i32 34, i32 8, i32 50], align 4 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"Cost of Optimal BST is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_optimal_binary_search_tree.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32 %2, i32* %6, align 4 - %16 = load i32, i32* %6, align 4 - %17 = zext i32 %16 to i64 - %18 = load i32, i32* %6, align 4 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 - %21 = mul nuw i64 %17, %19 - %22 = alloca i32, i64 %21, align 16 - store i64 %17, i64* %8, align 8 - store i64 %19, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %23 - -23: ; preds = %40, %3 - %24 = load i32, i32* %10, align 4 - %25 = load i32, i32* %6, align 4 - %26 = icmp slt i32 %24, %25 - br i1 %26, label %27, label %43 - -27: ; preds = %23 - %28 = load i32*, i32** %5, align 8 - %29 = load i32, i32* %10, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - %32 = load i32, i32* %31, align 4 - %33 = load i32, i32* %10, align 4 - %34 = sext i32 %33 to i64 - %35 = mul nsw i64 %34, %19 - %36 = getelementptr inbounds i32, i32* %22, i64 %35 - %37 = load i32, i32* %10, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - store i32 %32, i32* %39, align 4 - br label %40 - -40: ; preds = %27 - %41 = load i32, i32* %10, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %10, align 4 - br label %23, !llvm.loop !2 - -43: ; preds = %23 - store i32 2, i32* %11, align 4 - br label %44 - -44: ; preds = %140, %43 - %45 = load i32, i32* %11, align 4 - %46 = load i32, i32* %6, align 4 - %47 = icmp sle i32 %45, %46 - br i1 %47, label %48, label %143 - -48: ; preds = %44 - store i32 0, i32* %12, align 4 - br label %49 - -49: ; preds = %136, %48 - %50 = load i32, i32* %12, align 4 - %51 = load i32, i32* %6, align 4 - %52 = load i32, i32* %11, align 4 - %53 = sub nsw i32 %51, %52 - %54 = add nsw i32 %53, 1 - %55 = icmp sle i32 %50, %54 - br i1 %55, label %56, label %139 - -56: ; preds = %49 - %57 = load i32, i32* %12, align 4 - %58 = load i32, i32* %11, align 4 - %59 = add nsw i32 %57, %58 - %60 = sub nsw i32 %59, 1 - store i32 %60, i32* %13, align 4 - %61 = load i32, i32* %12, align 4 - %62 = sext i32 %61 to i64 - %63 = mul nsw i64 %62, %19 - %64 = getelementptr inbounds i32, i32* %22, i64 %63 - %65 = load i32, i32* %13, align 4 - %66 = sext i32 %65 to i64 - %67 = getelementptr inbounds i32, i32* %64, i64 %66 - store i32 2147483647, i32* %67, align 4 - %68 = load i32, i32* %12, align 4 - store i32 %68, i32* %14, align 4 - br label %69 - -69: ; preds = %132, %56 - %70 = load i32, i32* %14, align 4 - %71 = load i32, i32* %13, align 4 - %72 = icmp sle i32 %70, %71 - br i1 %72, label %73, label %135 - -73: ; preds = %69 - %74 = load i32, i32* %14, align 4 - %75 = load i32, i32* %12, align 4 - %76 = icmp sgt i32 %74, %75 - br i1 %76, label %77, label %87 - -77: ; preds = %73 - %78 = load i32, i32* %12, align 4 - %79 = sext i32 %78 to i64 - %80 = mul nsw i64 %79, %19 - %81 = getelementptr inbounds i32, i32* %22, i64 %80 - %82 = load i32, i32* %14, align 4 - %83 = sub nsw i32 %82, 1 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %81, i64 %84 - %86 = load i32, i32* %85, align 4 - br label %88 - -87: ; preds = %73 - br label %88 - -88: ; preds = %87, %77 - %89 = phi i32 [ %86, %77 ], [ 0, %87 ] - %90 = load i32, i32* %14, align 4 - %91 = load i32, i32* %13, align 4 - %92 = icmp slt i32 %90, %91 - br i1 %92, label %93, label %103 - -93: ; preds = %88 - %94 = load i32, i32* %14, align 4 - %95 = add nsw i32 %94, 1 - %96 = sext i32 %95 to i64 - %97 = mul nsw i64 %96, %19 - %98 = getelementptr inbounds i32, i32* %22, i64 %97 - %99 = load i32, i32* %13, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds i32, i32* %98, i64 %100 - %102 = load i32, i32* %101, align 4 - br label %104 - -103: ; preds = %88 - br label %104 - -104: ; preds = %103, %93 - %105 = phi i32 [ %102, %93 ], [ 0, %103 ] - %106 = add nsw i32 %89, %105 - %107 = load i32*, i32** %5, align 8 - %108 = load i32, i32* %12, align 4 - %109 = load i32, i32* %13, align 4 - %110 = call i32 @_Z3sumPiii(i32* %107, i32 %108, i32 %109) - %111 = add nsw i32 %106, %110 - store i32 %111, i32* %15, align 4 - %112 = load i32, i32* %15, align 4 - %113 = load i32, i32* %12, align 4 - %114 = sext i32 %113 to i64 - %115 = mul nsw i64 %114, %19 - %116 = getelementptr inbounds i32, i32* %22, i64 %115 - %117 = load i32, i32* %13, align 4 - %118 = sext i32 %117 to i64 - %119 = getelementptr inbounds i32, i32* %116, i64 %118 - %120 = load i32, i32* %119, align 4 - %121 = icmp slt i32 %112, %120 - br i1 %121, label %122, label %131 - -122: ; preds = %104 - %123 = load i32, i32* %15, align 4 - %124 = load i32, i32* %12, align 4 - %125 = sext i32 %124 to i64 - %126 = mul nsw i64 %125, %19 - %127 = getelementptr inbounds i32, i32* %22, i64 %126 - %128 = load i32, i32* %13, align 4 - %129 = sext i32 %128 to i64 - %130 = getelementptr inbounds i32, i32* %127, i64 %129 - store i32 %123, i32* %130, align 4 - br label %131 - -131: ; preds = %122, %104 - br label %132 - -132: ; preds = %131 - %133 = load i32, i32* %14, align 4 - %134 = add nsw i32 %133, 1 - store i32 %134, i32* %14, align 4 - br label %69, !llvm.loop !4 - -135: ; preds = %69 - br label %136 - -136: ; preds = %135 - %137 = load i32, i32* %12, align 4 - %138 = add nsw i32 %137, 1 - store i32 %138, i32* %12, align 4 - br label %49, !llvm.loop !5 - -139: ; preds = %49 - br label %140 - -140: ; preds = %139 - %141 = load i32, i32* %11, align 4 - %142 = add nsw i32 %141, 1 - store i32 %142, i32* %11, align 4 - br label %44, !llvm.loop !6 - -143: ; preds = %44 - %144 = mul nsw i64 0, %19 - %145 = getelementptr inbounds i32, i32* %22, i64 %144 - %146 = load i32, i32* %6, align 4 - %147 = sub nsw i32 %146, 1 - %148 = sext i32 %147 to i64 - %149 = getelementptr inbounds i32, i32* %145, i64 %148 - %150 = load i32, i32* %149, align 4 - %151 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %151) - ret i32 %150 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3sumPiii(i32* %0, i32 %1, i32 %2) #6 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %7, align 4 - %9 = load i32, i32* %5, align 4 - store i32 %9, i32* %8, align 4 - br label %10 - -10: ; preds = %22, %3 - %11 = load i32, i32* %8, align 4 - %12 = load i32, i32* %6, align 4 - %13 = icmp sle i32 %11, %12 - br i1 %13, label %14, label %25 - -14: ; preds = %10 - %15 = load i32*, i32** %4, align 8 - %16 = load i32, i32* %8, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %15, i64 %17 - %19 = load i32, i32* %18, align 4 - %20 = load i32, i32* %7, align 4 - %21 = add nsw i32 %20, %19 - store i32 %21, i32* %7, align 4 - br label %22 - -22: ; preds = %14 - %23 = load i32, i32* %8, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %8, align 4 - br label %10, !llvm.loop !7 - -25: ; preds = %10 - %26 = load i32, i32* %7, align 4 - ret i32 %26 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [3 x i32], align 4 - %3 = alloca [3 x i32], align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [3 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %5, i8* align 4 bitcast ([3 x i32]* @__const.main.keys to i8*), i64 12, i1 false) - %6 = bitcast [3 x i32]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %6, i8* align 4 bitcast ([3 x i32]* @__const.main.freq to i8*), i64 12, i1 false) - store i32 3, i32* %4, align 4 - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - %8 = getelementptr inbounds [3 x i32], [3 x i32]* %2, i64 0, i64 0 - %9 = getelementptr inbounds [3 x i32], [3 x i32]* %3, i64 0, i64 0 - %10 = load i32, i32* %4, align 4 - %11 = call i32 @_Z17optimalSearchTreePiS_i(i32* %8, i32* %9, i32 %10) - %12 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %7, i32 %11) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_optimal_binary_search_tree.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll deleted file mode 100644 index 9371f505..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll +++ /dev/null @@ -1,316 +0,0 @@ -; ModuleID = 'PE-benchmarks/optimized-naive-algorithm.cpp' -source_filename = "PE-benchmarks/optimized-naive-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"Pattern found at index \00", align 1 -@.str.1 = private unnamed_addr constant [17 x i8] c"ABCEABCDABCEABCD\00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c"ABCD\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_optimized_naive_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"* %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - %8 = trunc i64 %7 to i32 - store i32 %8, i32* %3, align 4 - %9 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %11 - -11: ; preds = %64, %2 - %12 = load i32, i32* %5, align 4 - %13 = load i32, i32* %4, align 4 - %14 = load i32, i32* %3, align 4 - %15 = sub nsw i32 %13, %14 - %16 = icmp sle i32 %12, %15 - br i1 %16, label %17, label %65 - -17: ; preds = %11 - store i32 0, i32* %6, align 4 - br label %18 - -18: ; preds = %38, %17 - %19 = load i32, i32* %6, align 4 - %20 = load i32, i32* %3, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %41 - -22: ; preds = %18 - %23 = load i32, i32* %5, align 4 - %24 = load i32, i32* %6, align 4 - %25 = add nsw i32 %23, %24 - %26 = sext i32 %25 to i64 - %27 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %26) - %28 = load i8, i8* %27, align 1 - %29 = sext i8 %28 to i32 - %30 = load i32, i32* %6, align 4 - %31 = sext i32 %30 to i64 - %32 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %31) - %33 = load i8, i8* %32, align 1 - %34 = sext i8 %33 to i32 - %35 = icmp ne i32 %29, %34 - br i1 %35, label %36, label %37 - -36: ; preds = %22 - br label %41 - -37: ; preds = %22 - br label %38 - -38: ; preds = %37 - %39 = load i32, i32* %6, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %6, align 4 - br label %18, !llvm.loop !2 - -41: ; preds = %36, %18 - %42 = load i32, i32* %6, align 4 - %43 = load i32, i32* %3, align 4 - %44 = icmp eq i32 %42, %43 - br i1 %44, label %45, label %53 - -45: ; preds = %41 - %46 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - %47 = load i32, i32* %5, align 4 - %48 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %46, i32 %47) - %49 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %48, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %50 = load i32, i32* %5, align 4 - %51 = load i32, i32* %3, align 4 - %52 = add nsw i32 %50, %51 - store i32 %52, i32* %5, align 4 - br label %64 - -53: ; preds = %41 - %54 = load i32, i32* %6, align 4 - %55 = icmp eq i32 %54, 0 - br i1 %55, label %56, label %59 - -56: ; preds = %53 - %57 = load i32, i32* %5, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %5, align 4 - br label %63 - -59: ; preds = %53 - %60 = load i32, i32* %5, align 4 - %61 = load i32, i32* %6, align 4 - %62 = add nsw i32 %60, %61 - store i32 %62, i32* %5, align 4 - br label %63 - -63: ; preds = %59, %56 - br label %64 - -64: ; preds = %63, %45 - br label %11, !llvm.loop !4 - -65: ; preds = %11 - ret void -} - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([17 x i8], [17 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %16 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %20 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %6) - to label %12 unwind label %24 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %13 unwind label %28 - -13: ; preds = %12 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %8, %"class.std::__cxx11::basic_string"* %9) - to label %14 unwind label %32 - -14: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %15 = load i32, i32* %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %4, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - br label %39 - -20: ; preds = %10 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %4, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - br label %38 - -24: ; preds = %11 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %4, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %5, align 4 - br label %37 - -28: ; preds = %12 - %29 = landingpad { i8*, i32 } - cleanup - %30 = extractvalue { i8*, i32 } %29, 0 - store i8* %30, i8** %4, align 8 - %31 = extractvalue { i8*, i32 } %29, 1 - store i32 %31, i32* %5, align 4 - br label %36 - -32: ; preds = %13 - %33 = landingpad { i8*, i32 } - cleanup - %34 = extractvalue { i8*, i32 } %33, 0 - store i8* %34, i8** %4, align 8 - %35 = extractvalue { i8*, i32 } %33, 1 - store i32 %35, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %36 - -36: ; preds = %32, %28 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %37 - -37: ; preds = %36, %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %38 - -38: ; preds = %37, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %39 - -39: ; preds = %38, %16 - %40 = load i8*, i8** %4, align 8 - %41 = load i32, i32* %5, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_optimized_naive_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll deleted file mode 100644 index 8d0b9aee..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll +++ /dev/null @@ -1,160 +0,0 @@ -; ModuleID = 'PE-benchmarks/overlapping-subproblems-property.cpp' -source_filename = "PE-benchmarks/overlapping-subproblems-property.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@lookup = dso_local global [100 x i32] zeroinitializer, align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [21 x i8] c"Fibonacci number is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_overlapping_subproblems_property.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z11_initializev() #4 { - %1 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - br label %2 - -2: ; preds = %9, %0 - %3 = load i32, i32* %1, align 4 - %4 = icmp slt i32 %3, 100 - br i1 %4, label %5, label %12 - -5: ; preds = %2 - %6 = load i32, i32* %1, align 4 - %7 = sext i32 %6 to i64 - %8 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %7 - store i32 -1, i32* %8, align 4 - br label %9 - -9: ; preds = %5 - %10 = load i32, i32* %1, align 4 - %11 = add nsw i32 %10, 1 - store i32 %11, i32* %1, align 4 - br label %2, !llvm.loop !2 - -12: ; preds = %2 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3fibi(i32 %0) #5 { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = sext i32 %3 to i64 - %5 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %4 - %6 = load i32, i32* %5, align 4 - %7 = icmp eq i32 %6, -1 - br i1 %7, label %8, label %28 - -8: ; preds = %1 - %9 = load i32, i32* %2, align 4 - %10 = icmp sle i32 %9, 1 - br i1 %10, label %11, label %16 - -11: ; preds = %8 - %12 = load i32, i32* %2, align 4 - %13 = load i32, i32* %2, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %14 - store i32 %12, i32* %15, align 4 - br label %27 - -16: ; preds = %8 - %17 = load i32, i32* %2, align 4 - %18 = sub nsw i32 %17, 1 - %19 = call i32 @_Z3fibi(i32 %18) - %20 = load i32, i32* %2, align 4 - %21 = sub nsw i32 %20, 2 - %22 = call i32 @_Z3fibi(i32 %21) - %23 = add nsw i32 %19, %22 - %24 = load i32, i32* %2, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %25 - store i32 %23, i32* %26, align 4 - br label %27 - -27: ; preds = %16, %11 - br label %28 - -28: ; preds = %27, %1 - %29 = load i32, i32* %2, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds [100 x i32], [100 x i32]* @lookup, i64 0, i64 %30 - %32 = load i32, i32* %31, align 4 - ret i32 %32 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 40, i32* %2, align 4 - call void @_Z11_initializev() - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0)) - %4 = load i32, i32* %2, align 4 - %5 = call i32 @_Z3fibi(i32 %4) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %3, i32 %5) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_overlapping_subproblems_property.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll deleted file mode 100644 index 7515a488..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll +++ /dev/null @@ -1,369 +0,0 @@ -; ModuleID = 'PE-benchmarks/palindrome-partitioning.cpp' -source_filename = "PE-benchmarks/palindrome-partitioning.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.str = private unnamed_addr constant [15 x i8] c"ababbbabbababa\00", align 1 -@.str = private unnamed_addr constant [50 x i8] c"Min cuts needed for Palindrome Partitioning is %d\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3minii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %5 = load i32, i32* %3, align 4 - %6 = load i32, i32* %4, align 4 - %7 = icmp slt i32 %5, %6 - br i1 %7, label %8, label %10 - -8: ; preds = %2 - %9 = load i32, i32* %3, align 4 - br label %12 - -10: ; preds = %2 - %11 = load i32, i32* %4, align 4 - br label %12 - -12: ; preds = %10, %8 - %13 = phi i32 [ %9, %8 ], [ %11, %10 ] - ret i32 %13 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { - %2 = alloca i8*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i8*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i8* %0, i8** %2, align 8 - %12 = load i8*, i8** %2, align 8 - %13 = call i64 @strlen(i8* %12) #6 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %3, align 4 - %15 = load i32, i32* %3, align 4 - %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %4, align 8 - %18 = alloca i32, i64 %16, align 16 - store i64 %16, i64* %5, align 8 - %19 = load i32, i32* %3, align 4 - %20 = zext i32 %19 to i64 - %21 = load i32, i32* %3, align 4 - %22 = zext i32 %21 to i64 - %23 = mul nuw i64 %20, %22 - %24 = alloca i8, i64 %23, align 16 - store i64 %20, i64* %6, align 8 - store i64 %22, i64* %7, align 8 - store i32 0, i32* %8, align 4 - br label %25 - -25: ; preds = %37, %1 - %26 = load i32, i32* %8, align 4 - %27 = load i32, i32* %3, align 4 - %28 = icmp slt i32 %26, %27 - br i1 %28, label %29, label %40 - -29: ; preds = %25 - %30 = load i32, i32* %8, align 4 - %31 = sext i32 %30 to i64 - %32 = mul nsw i64 %31, %22 - %33 = getelementptr inbounds i8, i8* %24, i64 %32 - %34 = load i32, i32* %8, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i8, i8* %33, i64 %35 - store i8 1, i8* %36, align 1 - br label %37 - -37: ; preds = %29 - %38 = load i32, i32* %8, align 4 - %39 = add nsw i32 %38, 1 - store i32 %39, i32* %8, align 4 - br label %25, !llvm.loop !2 - -40: ; preds = %25 - store i32 2, i32* %11, align 4 - br label %41 - -41: ; preds = %123, %40 - %42 = load i32, i32* %11, align 4 - %43 = load i32, i32* %3, align 4 - %44 = icmp sle i32 %42, %43 - br i1 %44, label %45, label %126 - -45: ; preds = %41 - store i32 0, i32* %8, align 4 - br label %46 - -46: ; preds = %119, %45 - %47 = load i32, i32* %8, align 4 - %48 = load i32, i32* %3, align 4 - %49 = load i32, i32* %11, align 4 - %50 = sub nsw i32 %48, %49 - %51 = add nsw i32 %50, 1 - %52 = icmp slt i32 %47, %51 - br i1 %52, label %53, label %122 - -53: ; preds = %46 - %54 = load i32, i32* %8, align 4 - %55 = load i32, i32* %11, align 4 - %56 = add nsw i32 %54, %55 - %57 = sub nsw i32 %56, 1 - store i32 %57, i32* %9, align 4 - %58 = load i32, i32* %11, align 4 - %59 = icmp eq i32 %58, 2 - br i1 %59, label %60, label %82 - -60: ; preds = %53 - %61 = load i8*, i8** %2, align 8 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i8, i8* %61, i64 %63 - %65 = load i8, i8* %64, align 1 - %66 = sext i8 %65 to i32 - %67 = load i8*, i8** %2, align 8 - %68 = load i32, i32* %9, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i8, i8* %67, i64 %69 - %71 = load i8, i8* %70, align 1 - %72 = sext i8 %71 to i32 - %73 = icmp eq i32 %66, %72 - %74 = load i32, i32* %8, align 4 - %75 = sext i32 %74 to i64 - %76 = mul nsw i64 %75, %22 - %77 = getelementptr inbounds i8, i8* %24, i64 %76 - %78 = load i32, i32* %9, align 4 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i8, i8* %77, i64 %79 - %81 = zext i1 %73 to i8 - store i8 %81, i8* %80, align 1 - br label %118 - -82: ; preds = %53 - %83 = load i8*, i8** %2, align 8 - %84 = load i32, i32* %8, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %83, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = sext i8 %87 to i32 - %89 = load i8*, i8** %2, align 8 - %90 = load i32, i32* %9, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i8, i8* %89, i64 %91 - %93 = load i8, i8* %92, align 1 - %94 = sext i8 %93 to i32 - %95 = icmp eq i32 %88, %94 - br i1 %95, label %96, label %108 - -96: ; preds = %82 - %97 = load i32, i32* %8, align 4 - %98 = add nsw i32 %97, 1 - %99 = sext i32 %98 to i64 - %100 = mul nsw i64 %99, %22 - %101 = getelementptr inbounds i8, i8* %24, i64 %100 - %102 = load i32, i32* %9, align 4 - %103 = sub nsw i32 %102, 1 - %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i8, i8* %101, i64 %104 - %106 = load i8, i8* %105, align 1 - %107 = trunc i8 %106 to i1 - br label %108 - -108: ; preds = %96, %82 - %109 = phi i1 [ false, %82 ], [ %107, %96 ] - %110 = load i32, i32* %8, align 4 - %111 = sext i32 %110 to i64 - %112 = mul nsw i64 %111, %22 - %113 = getelementptr inbounds i8, i8* %24, i64 %112 - %114 = load i32, i32* %9, align 4 - %115 = sext i32 %114 to i64 - %116 = getelementptr inbounds i8, i8* %113, i64 %115 - %117 = zext i1 %109 to i8 - store i8 %117, i8* %116, align 1 - br label %118 - -118: ; preds = %108, %60 - br label %119 - -119: ; preds = %118 - %120 = load i32, i32* %8, align 4 - %121 = add nsw i32 %120, 1 - store i32 %121, i32* %8, align 4 - br label %46, !llvm.loop !4 - -122: ; preds = %46 - br label %123 - -123: ; preds = %122 - %124 = load i32, i32* %11, align 4 - %125 = add nsw i32 %124, 1 - store i32 %125, i32* %11, align 4 - br label %41, !llvm.loop !5 - -126: ; preds = %41 - store i32 0, i32* %8, align 4 - br label %127 - -127: ; preds = %192, %126 - %128 = load i32, i32* %8, align 4 - %129 = load i32, i32* %3, align 4 - %130 = icmp slt i32 %128, %129 - br i1 %130, label %131, label %195 - -131: ; preds = %127 - %132 = mul nsw i64 0, %22 - %133 = getelementptr inbounds i8, i8* %24, i64 %132 - %134 = load i32, i32* %8, align 4 - %135 = sext i32 %134 to i64 - %136 = getelementptr inbounds i8, i8* %133, i64 %135 - %137 = load i8, i8* %136, align 1 - %138 = trunc i8 %137 to i1 - %139 = zext i1 %138 to i32 - %140 = icmp eq i32 %139, 1 - br i1 %140, label %141, label %145 - -141: ; preds = %131 - %142 = load i32, i32* %8, align 4 - %143 = sext i32 %142 to i64 - %144 = getelementptr inbounds i32, i32* %18, i64 %143 - store i32 0, i32* %144, align 4 - br label %191 - -145: ; preds = %131 - %146 = load i32, i32* %8, align 4 - %147 = sext i32 %146 to i64 - %148 = getelementptr inbounds i32, i32* %18, i64 %147 - store i32 2147483647, i32* %148, align 4 - store i32 0, i32* %9, align 4 - br label %149 - -149: ; preds = %187, %145 - %150 = load i32, i32* %9, align 4 - %151 = load i32, i32* %8, align 4 - %152 = icmp slt i32 %150, %151 - br i1 %152, label %153, label %190 - -153: ; preds = %149 - %154 = load i32, i32* %9, align 4 - %155 = add nsw i32 %154, 1 - %156 = sext i32 %155 to i64 - %157 = mul nsw i64 %156, %22 - %158 = getelementptr inbounds i8, i8* %24, i64 %157 - %159 = load i32, i32* %8, align 4 - %160 = sext i32 %159 to i64 - %161 = getelementptr inbounds i8, i8* %158, i64 %160 - %162 = load i8, i8* %161, align 1 - %163 = trunc i8 %162 to i1 - %164 = zext i1 %163 to i32 - %165 = icmp eq i32 %164, 1 - br i1 %165, label %166, label %186 - -166: ; preds = %153 - %167 = load i32, i32* %9, align 4 - %168 = sext i32 %167 to i64 - %169 = getelementptr inbounds i32, i32* %18, i64 %168 - %170 = load i32, i32* %169, align 4 - %171 = add nsw i32 1, %170 - %172 = load i32, i32* %8, align 4 - %173 = sext i32 %172 to i64 - %174 = getelementptr inbounds i32, i32* %18, i64 %173 - %175 = load i32, i32* %174, align 4 - %176 = icmp slt i32 %171, %175 - br i1 %176, label %177, label %186 - -177: ; preds = %166 - %178 = load i32, i32* %9, align 4 - %179 = sext i32 %178 to i64 - %180 = getelementptr inbounds i32, i32* %18, i64 %179 - %181 = load i32, i32* %180, align 4 - %182 = add nsw i32 1, %181 - %183 = load i32, i32* %8, align 4 - %184 = sext i32 %183 to i64 - %185 = getelementptr inbounds i32, i32* %18, i64 %184 - store i32 %182, i32* %185, align 4 - br label %186 - -186: ; preds = %177, %166, %153 - br label %187 - -187: ; preds = %186 - %188 = load i32, i32* %9, align 4 - %189 = add nsw i32 %188, 1 - store i32 %189, i32* %9, align 4 - br label %149, !llvm.loop !6 - -190: ; preds = %149 - br label %191 - -191: ; preds = %190, %141 - br label %192 - -192: ; preds = %191 - %193 = load i32, i32* %8, align 4 - %194 = add nsw i32 %193, 1 - store i32 %194, i32* %8, align 4 - br label %127, !llvm.loop !7 - -195: ; preds = %127 - %196 = load i32, i32* %3, align 4 - %197 = sub nsw i32 %196, 1 - %198 = sext i32 %197 to i64 - %199 = getelementptr inbounds i32, i32* %18, i64 %198 - %200 = load i32, i32* %199, align 4 - %201 = load i8*, i8** %4, align 8 - call void @llvm.stackrestore(i8* %201) - ret i32 %200 -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { - %1 = alloca i32, align 4 - %2 = alloca [15 x i8], align 1 - store i32 0, i32* %1, align 4 - %3 = bitcast [15 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %3, i8* align 1 getelementptr inbounds ([15 x i8], [15 x i8]* @__const.main.str, i32 0, i32 0), i64 15, i1 false) - %4 = getelementptr inbounds [15 x i8], [15 x i8]* %2, i64 0, i64 0 - %5 = call i32 @_Z13minPalPartionPc(i8* %4) - %6 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([50 x i8], [50 x i8]* @.str, i64 0, i64 0), i32 %5) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #4 - -declare dso_local i32 @printf(i8*, ...) #5 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nofree nosync nounwind willreturn } -attributes #3 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { argmemonly nofree nosync nounwind willreturn } -attributes #5 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/partition-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/partition-problem.ll deleted file mode 100644 index 53c4f1de..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/partition-problem.ll +++ /dev/null @@ -1,317 +0,0 @@ -; ModuleID = 'PE-benchmarks/partition-problem.cpp' -source_filename = "PE-benchmarks/partition-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.arr = private unnamed_addr constant [6 x i32] [i32 3, i32 1, i32 1, i32 2, i32 2, i32 1], align 16 -@.str = private unnamed_addr constant [45 x i8] c"Can be divided into two subsets of equal sum\00", align 1 -@.str.1 = private unnamed_addr constant [49 x i8] c"Can not be divided into two subsets of equal sum\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z12findPartiionPii(i32* %0, i32 %1) #0 { - %3 = alloca i1, align 1 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i8*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 0, i32* %6, align 4 - store i32 0, i32* %7, align 4 - br label %12 - -12: ; preds = %24, %2 - %13 = load i32, i32* %7, align 4 - %14 = load i32, i32* %5, align 4 - %15 = icmp slt i32 %13, %14 - br i1 %15, label %16, label %27 - -16: ; preds = %12 - %17 = load i32*, i32** %4, align 8 - %18 = load i32, i32* %7, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds i32, i32* %17, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = load i32, i32* %6, align 4 - %23 = add nsw i32 %22, %21 - store i32 %23, i32* %6, align 4 - br label %24 - -24: ; preds = %16 - %25 = load i32, i32* %7, align 4 - %26 = add nsw i32 %25, 1 - store i32 %26, i32* %7, align 4 - br label %12, !llvm.loop !2 - -27: ; preds = %12 - %28 = load i32, i32* %6, align 4 - %29 = srem i32 %28, 2 - %30 = icmp ne i32 %29, 0 - br i1 %30, label %31, label %32 - -31: ; preds = %27 - store i1 false, i1* %3, align 1 - br label %167 - -32: ; preds = %27 - %33 = load i32, i32* %6, align 4 - %34 = sdiv i32 %33, 2 - %35 = add nsw i32 %34, 1 - %36 = zext i32 %35 to i64 - %37 = load i32, i32* %5, align 4 - %38 = add nsw i32 %37, 1 - %39 = zext i32 %38 to i64 - %40 = call i8* @llvm.stacksave() - store i8* %40, i8** %9, align 8 - %41 = mul nuw i64 %36, %39 - %42 = alloca i8, i64 %41, align 16 - store i64 %36, i64* %10, align 8 - store i64 %39, i64* %11, align 8 - store i32 0, i32* %7, align 4 - br label %43 - -43: ; preds = %53, %32 - %44 = load i32, i32* %7, align 4 - %45 = load i32, i32* %5, align 4 - %46 = icmp sle i32 %44, %45 - br i1 %46, label %47, label %56 - -47: ; preds = %43 - %48 = mul nsw i64 0, %39 - %49 = getelementptr inbounds i8, i8* %42, i64 %48 - %50 = load i32, i32* %7, align 4 - %51 = sext i32 %50 to i64 - %52 = getelementptr inbounds i8, i8* %49, i64 %51 - store i8 1, i8* %52, align 1 - br label %53 - -53: ; preds = %47 - %54 = load i32, i32* %7, align 4 - %55 = add nsw i32 %54, 1 - store i32 %55, i32* %7, align 4 - br label %43, !llvm.loop !4 - -56: ; preds = %43 - store i32 1, i32* %7, align 4 - br label %57 - -57: ; preds = %68, %56 - %58 = load i32, i32* %7, align 4 - %59 = load i32, i32* %6, align 4 - %60 = sdiv i32 %59, 2 - %61 = icmp sle i32 %58, %60 - br i1 %61, label %62, label %71 - -62: ; preds = %57 - %63 = load i32, i32* %7, align 4 - %64 = sext i32 %63 to i64 - %65 = mul nsw i64 %64, %39 - %66 = getelementptr inbounds i8, i8* %42, i64 %65 - %67 = getelementptr inbounds i8, i8* %66, i64 0 - store i8 0, i8* %67, align 1 - br label %68 - -68: ; preds = %62 - %69 = load i32, i32* %7, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %7, align 4 - br label %57, !llvm.loop !5 - -71: ; preds = %57 - store i32 1, i32* %7, align 4 - br label %72 - -72: ; preds = %152, %71 - %73 = load i32, i32* %7, align 4 - %74 = load i32, i32* %6, align 4 - %75 = sdiv i32 %74, 2 - %76 = icmp sle i32 %73, %75 - br i1 %76, label %77, label %155 - -77: ; preds = %72 - store i32 1, i32* %8, align 4 - br label %78 - -78: ; preds = %148, %77 - %79 = load i32, i32* %8, align 4 - %80 = load i32, i32* %5, align 4 - %81 = icmp sle i32 %79, %80 - br i1 %81, label %82, label %151 - -82: ; preds = %78 - %83 = load i32, i32* %7, align 4 - %84 = sext i32 %83 to i64 - %85 = mul nsw i64 %84, %39 - %86 = getelementptr inbounds i8, i8* %42, i64 %85 - %87 = load i32, i32* %8, align 4 - %88 = sub nsw i32 %87, 1 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds i8, i8* %86, i64 %89 - %91 = load i8, i8* %90, align 1 - %92 = trunc i8 %91 to i1 - %93 = load i32, i32* %7, align 4 - %94 = sext i32 %93 to i64 - %95 = mul nsw i64 %94, %39 - %96 = getelementptr inbounds i8, i8* %42, i64 %95 - %97 = load i32, i32* %8, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i8, i8* %96, i64 %98 - %100 = zext i1 %92 to i8 - store i8 %100, i8* %99, align 1 - %101 = load i32, i32* %7, align 4 - %102 = load i32*, i32** %4, align 8 - %103 = load i32, i32* %8, align 4 - %104 = sub nsw i32 %103, 1 - %105 = sext i32 %104 to i64 - %106 = getelementptr inbounds i32, i32* %102, i64 %105 - %107 = load i32, i32* %106, align 4 - %108 = icmp sge i32 %101, %107 - br i1 %108, label %109, label %147 - -109: ; preds = %82 - %110 = load i32, i32* %7, align 4 - %111 = sext i32 %110 to i64 - %112 = mul nsw i64 %111, %39 - %113 = getelementptr inbounds i8, i8* %42, i64 %112 - %114 = load i32, i32* %8, align 4 - %115 = sext i32 %114 to i64 - %116 = getelementptr inbounds i8, i8* %113, i64 %115 - %117 = load i8, i8* %116, align 1 - %118 = trunc i8 %117 to i1 - br i1 %118, label %137, label %119 - -119: ; preds = %109 - %120 = load i32, i32* %7, align 4 - %121 = load i32*, i32** %4, align 8 - %122 = load i32, i32* %8, align 4 - %123 = sub nsw i32 %122, 1 - %124 = sext i32 %123 to i64 - %125 = getelementptr inbounds i32, i32* %121, i64 %124 - %126 = load i32, i32* %125, align 4 - %127 = sub nsw i32 %120, %126 - %128 = sext i32 %127 to i64 - %129 = mul nsw i64 %128, %39 - %130 = getelementptr inbounds i8, i8* %42, i64 %129 - %131 = load i32, i32* %8, align 4 - %132 = sub nsw i32 %131, 1 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i8, i8* %130, i64 %133 - %135 = load i8, i8* %134, align 1 - %136 = trunc i8 %135 to i1 - br label %137 - -137: ; preds = %119, %109 - %138 = phi i1 [ true, %109 ], [ %136, %119 ] - %139 = load i32, i32* %7, align 4 - %140 = sext i32 %139 to i64 - %141 = mul nsw i64 %140, %39 - %142 = getelementptr inbounds i8, i8* %42, i64 %141 - %143 = load i32, i32* %8, align 4 - %144 = sext i32 %143 to i64 - %145 = getelementptr inbounds i8, i8* %142, i64 %144 - %146 = zext i1 %138 to i8 - store i8 %146, i8* %145, align 1 - br label %147 - -147: ; preds = %137, %82 - br label %148 - -148: ; preds = %147 - %149 = load i32, i32* %8, align 4 - %150 = add nsw i32 %149, 1 - store i32 %150, i32* %8, align 4 - br label %78, !llvm.loop !6 - -151: ; preds = %78 - br label %152 - -152: ; preds = %151 - %153 = load i32, i32* %7, align 4 - %154 = add nsw i32 %153, 1 - store i32 %154, i32* %7, align 4 - br label %72, !llvm.loop !7 - -155: ; preds = %72 - %156 = load i32, i32* %6, align 4 - %157 = sdiv i32 %156, 2 - %158 = sext i32 %157 to i64 - %159 = mul nsw i64 %158, %39 - %160 = getelementptr inbounds i8, i8* %42, i64 %159 - %161 = load i32, i32* %5, align 4 - %162 = sext i32 %161 to i64 - %163 = getelementptr inbounds i8, i8* %160, i64 %162 - %164 = load i8, i8* %163, align 1 - %165 = trunc i8 %164 to i1 - store i1 %165, i1* %3, align 1 - %166 = load i8*, i8** %9, align 8 - call void @llvm.stackrestore(i8* %166) - br label %167 - -167: ; preds = %155, %31 - %168 = load i1, i1* %3, align 1 - ret i1 %168 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 6, i32* %3, align 4 - %5 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - %7 = call zeroext i1 @_Z12findPartiionPii(i32* %5, i32 %6) - %8 = zext i1 %7 to i32 - %9 = icmp eq i32 %8, 1 - br i1 %9, label %10, label %12 - -10: ; preds = %0 - %11 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([45 x i8], [45 x i8]* @.str, i64 0, i64 0)) - br label %14 - -12: ; preds = %0 - %13 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([49 x i8], [49 x i8]* @.str.1, i64 0, i64 0)) - br label %14 - -14: ; preds = %12, %10 - %15 = call i32 @getchar() - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -declare dso_local i32 @printf(i8*, ...) #4 - -declare dso_local i32 @getchar() #4 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind willreturn } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll deleted file mode 100644 index 083b19fe..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll +++ /dev/null @@ -1,292 +0,0 @@ -; ModuleID = 'PE-benchmarks/permutations-of-a-given-string.cpp' -source_filename = "PE-benchmarks/permutations-of-a-given-string.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -$_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_ = comdat any - -$_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [4 x i8] c"ABC\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_permutations_of_a_given_string.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* %0, i32 %1, i32 %2) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store i32 %1, i32* %4, align 4 - store i32 %2, i32* %5, align 4 - %10 = load i32, i32* %4, align 4 - %11 = load i32, i32* %5, align 4 - %12 = icmp eq i32 %10, %11 - br i1 %12, label %13, label %16 - -13: ; preds = %3 - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %14, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %47 - -16: ; preds = %3 - %17 = load i32, i32* %4, align 4 - store i32 %17, i32* %6, align 4 - br label %18 - -18: ; preds = %39, %16 - %19 = load i32, i32* %6, align 4 - %20 = load i32, i32* %5, align 4 - %21 = icmp sle i32 %19, %20 - br i1 %21, label %22, label %46 - -22: ; preds = %18 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %24) - %26 = load i32, i32* %6, align 4 - %27 = sext i32 %26 to i64 - %28 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %27) - call void @_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i8* nonnull align 1 dereferenceable(1) %25, i8* nonnull align 1 dereferenceable(1) %28) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - %29 = load i32, i32* %4, align 4 - %30 = add nsw i32 %29, 1 - %31 = load i32, i32* %5, align 4 - invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* %7, i32 %30, i32 %31) - to label %32 unwind label %42 - -32: ; preds = %22 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - %33 = load i32, i32* %4, align 4 - %34 = sext i32 %33 to i64 - %35 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %34) - %36 = load i32, i32* %6, align 4 - %37 = sext i32 %36 to i64 - %38 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %37) - call void @_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i8* nonnull align 1 dereferenceable(1) %35, i8* nonnull align 1 dereferenceable(1) %38) #3 - br label %39 - -39: ; preds = %32 - %40 = load i32, i32* %6, align 4 - %41 = add nsw i32 %40, 1 - store i32 %41, i32* %6, align 4 - br label %18, !llvm.loop !2 - -42: ; preds = %22 - %43 = landingpad { i8*, i32 } - cleanup - %44 = extractvalue { i8*, i32 } %43, 0 - store i8* %44, i8** %8, align 8 - %45 = extractvalue { i8*, i32 } %43, 1 - store i32 %45, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - br label %48 - -46: ; preds = %18 - br label %47 - -47: ; preds = %46, %13 - ret void - -48: ; preds = %42 - %49 = load i8*, i8** %8, align 8 - %50 = load i32, i32* %9, align 4 - %51 = insertvalue { i8*, i32 } undef, i8* %49, 0 - %52 = insertvalue { i8*, i32 } %51, i32 %50, 1 - resume { i8*, i32 } %52 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i8* nonnull align 1 dereferenceable(1) %0, i8* nonnull align 1 dereferenceable(1) %1) #5 comdat { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i8, align 1 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %6 = load i8*, i8** %3, align 8 - %7 = call nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* nonnull align 1 dereferenceable(1) %6) #3 - %8 = load i8, i8* %7, align 1 - store i8 %8, i8* %5, align 1 - %9 = load i8*, i8** %4, align 8 - %10 = call nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* nonnull align 1 dereferenceable(1) %9) #3 - %11 = load i8, i8* %10, align 1 - %12 = load i8*, i8** %3, align 8 - store i8 %11, i8* %12, align 1 - %13 = call nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* nonnull align 1 dereferenceable(1) %5) #3 - %14 = load i8, i8* %13, align 1 - %15 = load i8*, i8** %4, align 8 - store i8 %14, i8* %15, align 1 - ret void -} - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) - to label %8 unwind label %16 - -8: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - %9 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %6, align 4 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %11 unwind label %20 - -11: ; preds = %8 - %12 = load i32, i32* %6, align 4 - %13 = sub nsw i32 %12, 1 - invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* %7, i32 0, i32 %13) - to label %14 unwind label %24 - -14: ; preds = %11 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %15 = load i32, i32* %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %4, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - br label %29 - -20: ; preds = %8 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %4, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %5, align 4 - br label %28 - -24: ; preds = %11 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %4, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - br label %28 - -28: ; preds = %24, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %29 - -29: ; preds = %28, %16 - %30 = load i8*, i8** %4, align 8 - %31 = load i32, i32* %5, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* nonnull align 1 dereferenceable(1) %0) #5 comdat { - %2 = alloca i8*, align 8 - store i8* %0, i8** %2, align 8 - %3 = load i8*, i8** %2, align 8 - ret i8* %3 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_permutations_of_a_given_string.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/program-for-nth-fibonacci-number.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/program-for-nth-fibonacci-number.ll deleted file mode 100644 index 2cd2b9ea..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/program-for-nth-fibonacci-number.ll +++ /dev/null @@ -1,92 +0,0 @@ -; ModuleID = 'PE-benchmarks/program-for-nth-fibonacci-number.cpp' -source_filename = "PE-benchmarks/program-for-nth-fibonacci-number.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [3 x i8] c"%d\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3fibi(i32 %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 0, i32* %4, align 4 - store i32 1, i32* %5, align 4 - %8 = load i32, i32* %3, align 4 - %9 = icmp eq i32 %8, 0 - br i1 %9, label %10, label %12 - -10: ; preds = %1 - %11 = load i32, i32* %4, align 4 - store i32 %11, i32* %2, align 4 - br label %28 - -12: ; preds = %1 - store i32 2, i32* %7, align 4 - br label %13 - -13: ; preds = %23, %12 - %14 = load i32, i32* %7, align 4 - %15 = load i32, i32* %3, align 4 - %16 = icmp sle i32 %14, %15 - br i1 %16, label %17, label %26 - -17: ; preds = %13 - %18 = load i32, i32* %4, align 4 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %18, %19 - store i32 %20, i32* %6, align 4 - %21 = load i32, i32* %5, align 4 - store i32 %21, i32* %4, align 4 - %22 = load i32, i32* %6, align 4 - store i32 %22, i32* %5, align 4 - br label %23 - -23: ; preds = %17 - %24 = load i32, i32* %7, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %7, align 4 - br label %13, !llvm.loop !2 - -26: ; preds = %13 - %27 = load i32, i32* %5, align 4 - store i32 %27, i32* %2, align 4 - br label %28 - -28: ; preds = %26, %10 - %29 = load i32, i32* %2, align 4 - ret i32 %29 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 9, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = call i32 @_Z3fibi(i32 %3) - %5 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str, i64 0, i64 0), i32 %4) - %6 = call i32 @getchar() - ret i32 0 -} - -declare dso_local i32 @printf(i8*, ...) #2 - -declare dso_local i32 @getchar() #2 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/program-wish-womens-day.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/program-wish-womens-day.ll deleted file mode 100644 index 2f8485c2..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/program-wish-womens-day.ll +++ /dev/null @@ -1,316 +0,0 @@ -; ModuleID = 'PE-benchmarks/program-wish-womens-day.cpp' -source_filename = "PE-benchmarks/program-wish-womens-day.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c"$\00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.2 = private unnamed_addr constant [18 x i8] c"HappY Women's DaY\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_program_wish_womens_day.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca float, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 5, i32* %2, align 4 - store i32 0, i32* %3, align 4 - br label %9 - -9: ; preds = %68, %0 - %10 = load i32, i32* %3, align 4 - %11 = load i32, i32* %2, align 4 - %12 = mul nsw i32 2, %11 - %13 = icmp sle i32 %10, %12 - br i1 %13, label %14, label %71 - -14: ; preds = %9 - store i32 0, i32* %4, align 4 - br label %15 - -15: ; preds = %56, %14 - %16 = load i32, i32* %4, align 4 - %17 = load i32, i32* %2, align 4 - %18 = mul nsw i32 2, %17 - %19 = icmp sle i32 %16, %18 - br i1 %19, label %20, label %59 - -20: ; preds = %15 - %21 = load i32, i32* %3, align 4 - %22 = load i32, i32* %2, align 4 - %23 = sub nsw i32 %21, %22 - %24 = load i32, i32* %3, align 4 - %25 = load i32, i32* %2, align 4 - %26 = sub nsw i32 %24, %25 - %27 = mul nsw i32 %23, %26 - %28 = load i32, i32* %4, align 4 - %29 = load i32, i32* %2, align 4 - %30 = sub nsw i32 %28, %29 - %31 = load i32, i32* %4, align 4 - %32 = load i32, i32* %2, align 4 - %33 = sub nsw i32 %31, %32 - %34 = mul nsw i32 %30, %33 - %35 = add nsw i32 %27, %34 - %36 = call double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 %35) - %37 = fptrunc double %36 to float - store float %37, float* %5, align 4 - %38 = load float, float* %5, align 4 - %39 = fpext float %38 to double - %40 = load i32, i32* %2, align 4 - %41 = sitofp i32 %40 to double - %42 = fsub double %41, 5.000000e-01 - %43 = fcmp ogt double %39, %42 - br i1 %43, label %44, label %53 - -44: ; preds = %20 - %45 = load float, float* %5, align 4 - %46 = fpext float %45 to double - %47 = load i32, i32* %2, align 4 - %48 = sitofp i32 %47 to double - %49 = fadd double %48, 5.000000e-01 - %50 = fcmp olt double %46, %49 - br i1 %50, label %51, label %53 - -51: ; preds = %44 - %52 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %55 - -53: ; preds = %44, %20 - %54 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %55 - -55: ; preds = %53, %51 - br label %56 - -56: ; preds = %55 - %57 = load i32, i32* %4, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %4, align 4 - br label %15, !llvm.loop !2 - -59: ; preds = %15 - %60 = load i32, i32* %3, align 4 - %61 = load i32, i32* %2, align 4 - %62 = icmp eq i32 %60, %61 - br i1 %62, label %63, label %66 - -63: ; preds = %59 - %64 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - %65 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %64, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str.2, i64 0, i64 0)) - br label %66 - -66: ; preds = %63, %59 - %67 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %68 - -68: ; preds = %66 - %69 = load i32, i32* %3, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %3, align 4 - br label %9, !llvm.loop !4 - -71: ; preds = %9 - store i32 0, i32* %6, align 4 - br label %72 - -72: ; preds = %132, %71 - %73 = load i32, i32* %6, align 4 - %74 = load i32, i32* %2, align 4 - %75 = icmp sle i32 %73, %74 - br i1 %75, label %76, label %135 - -76: ; preds = %72 - %77 = load i32, i32* %6, align 4 - %78 = load i32, i32* %2, align 4 - %79 = sdiv i32 %78, 2 - %80 = add nsw i32 %79, 1 - %81 = icmp eq i32 %77, %80 - br i1 %81, label %82, label %111 - -82: ; preds = %76 - store i32 0, i32* %7, align 4 - br label %83 - -83: ; preds = %107, %82 - %84 = load i32, i32* %7, align 4 - %85 = load i32, i32* %2, align 4 - %86 = mul nsw i32 2, %85 - %87 = icmp sle i32 %84, %86 - br i1 %87, label %88, label %110 - -88: ; preds = %83 - %89 = load i32, i32* %7, align 4 - %90 = load i32, i32* %2, align 4 - %91 = load i32, i32* %2, align 4 - %92 = sdiv i32 %91, 2 - %93 = sub nsw i32 %90, %92 - %94 = icmp sge i32 %89, %93 - br i1 %94, label %95, label %104 - -95: ; preds = %88 - %96 = load i32, i32* %7, align 4 - %97 = load i32, i32* %2, align 4 - %98 = load i32, i32* %2, align 4 - %99 = sdiv i32 %98, 2 - %100 = add nsw i32 %97, %99 - %101 = icmp sle i32 %96, %100 - br i1 %101, label %102, label %104 - -102: ; preds = %95 - %103 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %106 - -104: ; preds = %95, %88 - %105 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %106 - -106: ; preds = %104, %102 - br label %107 - -107: ; preds = %106 - %108 = load i32, i32* %7, align 4 - %109 = add nsw i32 %108, 1 - store i32 %109, i32* %7, align 4 - br label %83, !llvm.loop !5 - -110: ; preds = %83 - br label %130 - -111: ; preds = %76 - store i32 0, i32* %8, align 4 - br label %112 - -112: ; preds = %126, %111 - %113 = load i32, i32* %8, align 4 - %114 = load i32, i32* %2, align 4 - %115 = mul nsw i32 2, %114 - %116 = icmp sle i32 %113, %115 - br i1 %116, label %117, label %129 - -117: ; preds = %112 - %118 = load i32, i32* %8, align 4 - %119 = load i32, i32* %2, align 4 - %120 = icmp eq i32 %118, %119 - br i1 %120, label %121, label %123 - -121: ; preds = %117 - %122 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %125 - -123: ; preds = %117 - %124 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %125 - -125: ; preds = %123, %121 - br label %126 - -126: ; preds = %125 - %127 = load i32, i32* %8, align 4 - %128 = add nsw i32 %127, 1 - store i32 %128, i32* %8, align 4 - br label %112, !llvm.loop !6 - -129: ; preds = %112 - br label %130 - -130: ; preds = %129, %110 - %131 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %132 - -132: ; preds = %130 - %133 = load i32, i32* %6, align 4 - %134 = add nsw i32 %133, 1 - store i32 %134, i32* %6, align 4 - br label %72, !llvm.loop !7 - -135: ; preds = %72 - %136 = load i32, i32* %1, align 4 - ret i32 %136 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 %0) #5 comdat { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = sitofp i32 %3 to double - %5 = call double @sqrt(double %4) #3 - ret double %5 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: nounwind -declare dso_local double @sqrt(double) #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_program_wish_womens_day.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll deleted file mode 100644 index 44c5acb8..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll +++ /dev/null @@ -1,385 +0,0 @@ -; ModuleID = 'PE-benchmarks/quicksort-for-linked-list.cpp' -source_filename = "PE-benchmarks/quicksort-for-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Node = type { i32, %class.Node*, %class.Node* } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 -@.str.2 = private unnamed_addr constant [28 x i8] c"Linked List after sorting \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_quicksort_for_linked_list.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %class.Node* @_Z8lastNodeP4Node(%class.Node* %0) #4 { - %2 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - br label %3 - -3: ; preds = %13, %1 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = icmp ne %class.Node* %4, null - br i1 %5, label %6, label %11 - -6: ; preds = %3 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = getelementptr inbounds %class.Node, %class.Node* %7, i32 0, i32 1 - %9 = load %class.Node*, %class.Node** %8, align 8 - %10 = icmp ne %class.Node* %9, null - br label %11 - -11: ; preds = %6, %3 - %12 = phi i1 [ false, %3 ], [ %10, %6 ] - br i1 %12, label %13, label %17 - -13: ; preds = %11 - %14 = load %class.Node*, %class.Node** %2, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - %16 = load %class.Node*, %class.Node** %15, align 8 - store %class.Node* %16, %class.Node** %2, align 8 - br label %3, !llvm.loop !2 - -17: ; preds = %11 - %18 = load %class.Node*, %class.Node** %2, align 8 - ret %class.Node* %18 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %class.Node* @_Z9partitionP4NodeS0_(%class.Node* %0, %class.Node* %1) #4 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %class.Node*, align 8 - %7 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %3, align 8 - store %class.Node* %1, %class.Node** %4, align 8 - %8 = load %class.Node*, %class.Node** %4, align 8 - %9 = getelementptr inbounds %class.Node, %class.Node* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - store i32 %10, i32* %5, align 4 - %11 = load %class.Node*, %class.Node** %3, align 8 - %12 = getelementptr inbounds %class.Node, %class.Node* %11, i32 0, i32 2 - %13 = load %class.Node*, %class.Node** %12, align 8 - store %class.Node* %13, %class.Node** %6, align 8 - %14 = load %class.Node*, %class.Node** %3, align 8 - store %class.Node* %14, %class.Node** %7, align 8 - br label %15 - -15: ; preds = %41, %2 - %16 = load %class.Node*, %class.Node** %7, align 8 - %17 = load %class.Node*, %class.Node** %4, align 8 - %18 = icmp ne %class.Node* %16, %17 - br i1 %18, label %19, label %45 - -19: ; preds = %15 - %20 = load %class.Node*, %class.Node** %7, align 8 - %21 = getelementptr inbounds %class.Node, %class.Node* %20, i32 0, i32 0 - %22 = load i32, i32* %21, align 8 - %23 = load i32, i32* %5, align 4 - %24 = icmp sle i32 %22, %23 - br i1 %24, label %25, label %40 - -25: ; preds = %19 - %26 = load %class.Node*, %class.Node** %6, align 8 - %27 = icmp eq %class.Node* %26, null - br i1 %27, label %28, label %30 - -28: ; preds = %25 - %29 = load %class.Node*, %class.Node** %3, align 8 - br label %34 - -30: ; preds = %25 - %31 = load %class.Node*, %class.Node** %6, align 8 - %32 = getelementptr inbounds %class.Node, %class.Node* %31, i32 0, i32 1 - %33 = load %class.Node*, %class.Node** %32, align 8 - br label %34 - -34: ; preds = %30, %28 - %35 = phi %class.Node* [ %29, %28 ], [ %33, %30 ] - store %class.Node* %35, %class.Node** %6, align 8 - %36 = load %class.Node*, %class.Node** %6, align 8 - %37 = getelementptr inbounds %class.Node, %class.Node* %36, i32 0, i32 0 - %38 = load %class.Node*, %class.Node** %7, align 8 - %39 = getelementptr inbounds %class.Node, %class.Node* %38, i32 0, i32 0 - call void @_Z4swapPiS_(i32* %37, i32* %39) - br label %40 - -40: ; preds = %34, %19 - br label %41 - -41: ; preds = %40 - %42 = load %class.Node*, %class.Node** %7, align 8 - %43 = getelementptr inbounds %class.Node, %class.Node* %42, i32 0, i32 1 - %44 = load %class.Node*, %class.Node** %43, align 8 - store %class.Node* %44, %class.Node** %7, align 8 - br label %15, !llvm.loop !4 - -45: ; preds = %15 - %46 = load %class.Node*, %class.Node** %6, align 8 - %47 = icmp eq %class.Node* %46, null - br i1 %47, label %48, label %50 - -48: ; preds = %45 - %49 = load %class.Node*, %class.Node** %3, align 8 - br label %54 - -50: ; preds = %45 - %51 = load %class.Node*, %class.Node** %6, align 8 - %52 = getelementptr inbounds %class.Node, %class.Node* %51, i32 0, i32 1 - %53 = load %class.Node*, %class.Node** %52, align 8 - br label %54 - -54: ; preds = %50, %48 - %55 = phi %class.Node* [ %49, %48 ], [ %53, %50 ] - store %class.Node* %55, %class.Node** %6, align 8 - %56 = load %class.Node*, %class.Node** %6, align 8 - %57 = getelementptr inbounds %class.Node, %class.Node* %56, i32 0, i32 0 - %58 = load %class.Node*, %class.Node** %4, align 8 - %59 = getelementptr inbounds %class.Node, %class.Node* %58, i32 0, i32 0 - call void @_Z4swapPiS_(i32* %57, i32* %59) - %60 = load %class.Node*, %class.Node** %6, align 8 - ret %class.Node* %60 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10_quickSortP4NodeS0_(%class.Node* %0, %class.Node* %1) #5 { - %3 = alloca %class.Node*, align 8 - %4 = alloca %class.Node*, align 8 - %5 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %3, align 8 - store %class.Node* %1, %class.Node** %4, align 8 - %6 = load %class.Node*, %class.Node** %4, align 8 - %7 = icmp ne %class.Node* %6, null - br i1 %7, label %8, label %30 - -8: ; preds = %2 - %9 = load %class.Node*, %class.Node** %3, align 8 - %10 = load %class.Node*, %class.Node** %4, align 8 - %11 = icmp ne %class.Node* %9, %10 - br i1 %11, label %12, label %30 - -12: ; preds = %8 - %13 = load %class.Node*, %class.Node** %3, align 8 - %14 = load %class.Node*, %class.Node** %4, align 8 - %15 = getelementptr inbounds %class.Node, %class.Node* %14, i32 0, i32 1 - %16 = load %class.Node*, %class.Node** %15, align 8 - %17 = icmp ne %class.Node* %13, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %12 - %19 = load %class.Node*, %class.Node** %3, align 8 - %20 = load %class.Node*, %class.Node** %4, align 8 - %21 = call %class.Node* @_Z9partitionP4NodeS0_(%class.Node* %19, %class.Node* %20) - store %class.Node* %21, %class.Node** %5, align 8 - %22 = load %class.Node*, %class.Node** %3, align 8 - %23 = load %class.Node*, %class.Node** %5, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 2 - %25 = load %class.Node*, %class.Node** %24, align 8 - call void @_Z10_quickSortP4NodeS0_(%class.Node* %22, %class.Node* %25) - %26 = load %class.Node*, %class.Node** %5, align 8 - %27 = getelementptr inbounds %class.Node, %class.Node* %26, i32 0, i32 1 - %28 = load %class.Node*, %class.Node** %27, align 8 - %29 = load %class.Node*, %class.Node** %4, align 8 - call void @_Z10_quickSortP4NodeS0_(%class.Node* %28, %class.Node* %29) - br label %30 - -30: ; preds = %18, %12, %8, %2 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9quickSortP4Node(%class.Node* %0) #5 { - %2 = alloca %class.Node*, align 8 - %3 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = call %class.Node* @_Z8lastNodeP4Node(%class.Node* %4) - store %class.Node* %5, %class.Node** %3, align 8 - %6 = load %class.Node*, %class.Node** %2, align 8 - %7 = load %class.Node*, %class.Node** %3, align 8 - call void @_Z10_quickSortP4NodeS0_(%class.Node* %6, %class.Node* %7) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%class.Node* %0) #5 { - %2 = alloca %class.Node*, align 8 - store %class.Node* %0, %class.Node** %2, align 8 - br label %3 - -3: ; preds = %6, %1 - %4 = load %class.Node*, %class.Node** %2, align 8 - %5 = icmp ne %class.Node* %4, null - br i1 %5, label %6, label %15 - -6: ; preds = %3 - %7 = load %class.Node*, %class.Node** %2, align 8 - %8 = getelementptr inbounds %class.Node, %class.Node* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %9) - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %10, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - %12 = load %class.Node*, %class.Node** %2, align 8 - %13 = getelementptr inbounds %class.Node, %class.Node* %12, i32 0, i32 1 - %14 = load %class.Node*, %class.Node** %13, align 8 - store %class.Node* %14, %class.Node** %2, align 8 - br label %3, !llvm.loop !5 - -15: ; preds = %3 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%class.Node** %0, i32 %1) #5 { - %3 = alloca %class.Node**, align 8 - %4 = alloca i32, align 4 - %5 = alloca %class.Node*, align 8 - store %class.Node** %0, %class.Node*** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 24) #8 - %7 = bitcast i8* %6 to %class.Node* - store %class.Node* %7, %class.Node** %5, align 8 - %8 = load i32, i32* %4, align 4 - %9 = load %class.Node*, %class.Node** %5, align 8 - %10 = getelementptr inbounds %class.Node, %class.Node* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load %class.Node*, %class.Node** %5, align 8 - %12 = getelementptr inbounds %class.Node, %class.Node* %11, i32 0, i32 2 - store %class.Node* null, %class.Node** %12, align 8 - %13 = load %class.Node**, %class.Node*** %3, align 8 - %14 = load %class.Node*, %class.Node** %13, align 8 - %15 = load %class.Node*, %class.Node** %5, align 8 - %16 = getelementptr inbounds %class.Node, %class.Node* %15, i32 0, i32 1 - store %class.Node* %14, %class.Node** %16, align 8 - %17 = load %class.Node**, %class.Node*** %3, align 8 - %18 = load %class.Node*, %class.Node** %17, align 8 - %19 = icmp ne %class.Node* %18, null - br i1 %19, label %20, label %25 - -20: ; preds = %2 - %21 = load %class.Node*, %class.Node** %5, align 8 - %22 = load %class.Node**, %class.Node*** %3, align 8 - %23 = load %class.Node*, %class.Node** %22, align 8 - %24 = getelementptr inbounds %class.Node, %class.Node* %23, i32 0, i32 2 - store %class.Node* %21, %class.Node** %24, align 8 - br label %25 - -25: ; preds = %20, %2 - %26 = load %class.Node*, %class.Node** %5, align 8 - %27 = load %class.Node**, %class.Node*** %3, align 8 - store %class.Node* %26, %class.Node** %27, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca %class.Node*, align 8 - store i32 0, i32* %1, align 4 - store %class.Node* null, %class.Node** %2, align 8 - call void @_Z4pushPP4Nodei(%class.Node** %2, i32 5) - call void @_Z4pushPP4Nodei(%class.Node** %2, i32 20) - call void @_Z4pushPP4Nodei(%class.Node** %2, i32 4) - call void @_Z4pushPP4Nodei(%class.Node** %2, i32 3) - call void @_Z4pushPP4Nodei(%class.Node** %2, i32 30) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.1, i64 0, i64 0)) - %4 = load %class.Node*, %class.Node** %2, align 8 - call void @_Z9printListP4Node(%class.Node* %4) - %5 = load %class.Node*, %class.Node** %2, align 8 - call void @_Z9quickSortP4Node(%class.Node* %5) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str.2, i64 0, i64 0)) - %7 = load %class.Node*, %class.Node** %2, align 8 - call void @_Z9printListP4Node(%class.Node* %7) - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_quicksort_for_linked_list.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll deleted file mode 100644 index f4e47228..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll +++ /dev/null @@ -1,411 +0,0 @@ -; ModuleID = 'PE-benchmarks/quicksort-on-singly-linked-list.cpp' -source_filename = "PE-benchmarks/quicksort-on-singly-linked-list.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%struct.Node = type { i32, %struct.Node* } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@.str = private unnamed_addr constant [4 x i8] c"%d \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str.2 = private unnamed_addr constant [29 x i8] c"Linked List before sorting \0A\00", align 1 -@.str.3 = private unnamed_addr constant [28 x i8] c"Linked List after sorting \0A\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%struct.Node** %0, i32 %1) #4 { - %3 = alloca %struct.Node**, align 8 - %4 = alloca i32, align 4 - %5 = alloca %struct.Node*, align 8 - store %struct.Node** %0, %struct.Node*** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 16) #8 - %7 = bitcast i8* %6 to %struct.Node* - store %struct.Node* %7, %struct.Node** %5, align 8 - %8 = load i32, i32* %4, align 4 - %9 = load %struct.Node*, %struct.Node** %5, align 8 - %10 = getelementptr inbounds %struct.Node, %struct.Node* %9, i32 0, i32 0 - store i32 %8, i32* %10, align 8 - %11 = load %struct.Node**, %struct.Node*** %3, align 8 - %12 = load %struct.Node*, %struct.Node** %11, align 8 - %13 = load %struct.Node*, %struct.Node** %5, align 8 - %14 = getelementptr inbounds %struct.Node, %struct.Node* %13, i32 0, i32 1 - store %struct.Node* %12, %struct.Node** %14, align 8 - %15 = load %struct.Node*, %struct.Node** %5, align 8 - %16 = load %struct.Node**, %struct.Node*** %3, align 8 - store %struct.Node* %15, %struct.Node** %16, align 8 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%struct.Node* %0) #4 { - %2 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %2, align 8 - br label %3 - -3: ; preds = %6, %1 - %4 = load %struct.Node*, %struct.Node** %2, align 8 - %5 = icmp ne %struct.Node* %4, null - br i1 %5, label %6, label %14 - -6: ; preds = %3 - %7 = load %struct.Node*, %struct.Node** %2, align 8 - %8 = getelementptr inbounds %struct.Node, %struct.Node* %7, i32 0, i32 0 - %9 = load i32, i32* %8, align 8 - %10 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 %9) - %11 = load %struct.Node*, %struct.Node** %2, align 8 - %12 = getelementptr inbounds %struct.Node, %struct.Node* %11, i32 0, i32 1 - %13 = load %struct.Node*, %struct.Node** %12, align 8 - store %struct.Node* %13, %struct.Node** %2, align 8 - br label %3, !llvm.loop !2 - -14: ; preds = %3 - %15 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %struct.Node* @_Z7getTailP4Node(%struct.Node* %0) #6 { - %2 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %2, align 8 - br label %3 - -3: ; preds = %13, %1 - %4 = load %struct.Node*, %struct.Node** %2, align 8 - %5 = icmp ne %struct.Node* %4, null - br i1 %5, label %6, label %11 - -6: ; preds = %3 - %7 = load %struct.Node*, %struct.Node** %2, align 8 - %8 = getelementptr inbounds %struct.Node, %struct.Node* %7, i32 0, i32 1 - %9 = load %struct.Node*, %struct.Node** %8, align 8 - %10 = icmp ne %struct.Node* %9, null - br label %11 - -11: ; preds = %6, %3 - %12 = phi i1 [ false, %3 ], [ %10, %6 ] - br i1 %12, label %13, label %17 - -13: ; preds = %11 - %14 = load %struct.Node*, %struct.Node** %2, align 8 - %15 = getelementptr inbounds %struct.Node, %struct.Node* %14, i32 0, i32 1 - %16 = load %struct.Node*, %struct.Node** %15, align 8 - store %struct.Node* %16, %struct.Node** %2, align 8 - br label %3, !llvm.loop !4 - -17: ; preds = %11 - %18 = load %struct.Node*, %struct.Node** %2, align 8 - ret %struct.Node* %18 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %struct.Node* @_Z9partitionP4NodeS0_PS0_S1_(%struct.Node* %0, %struct.Node* %1, %struct.Node** %2, %struct.Node** %3) #6 { - %5 = alloca %struct.Node*, align 8 - %6 = alloca %struct.Node*, align 8 - %7 = alloca %struct.Node**, align 8 - %8 = alloca %struct.Node**, align 8 - %9 = alloca %struct.Node*, align 8 - %10 = alloca %struct.Node*, align 8 - %11 = alloca %struct.Node*, align 8 - %12 = alloca %struct.Node*, align 8 - %13 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %5, align 8 - store %struct.Node* %1, %struct.Node** %6, align 8 - store %struct.Node** %2, %struct.Node*** %7, align 8 - store %struct.Node** %3, %struct.Node*** %8, align 8 - %14 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %14, %struct.Node** %9, align 8 - store %struct.Node* null, %struct.Node** %10, align 8 - %15 = load %struct.Node*, %struct.Node** %5, align 8 - store %struct.Node* %15, %struct.Node** %11, align 8 - %16 = load %struct.Node*, %struct.Node** %9, align 8 - store %struct.Node* %16, %struct.Node** %12, align 8 - br label %17 - -17: ; preds = %61, %4 - %18 = load %struct.Node*, %struct.Node** %11, align 8 - %19 = load %struct.Node*, %struct.Node** %9, align 8 - %20 = icmp ne %struct.Node* %18, %19 - br i1 %20, label %21, label %62 - -21: ; preds = %17 - %22 = load %struct.Node*, %struct.Node** %11, align 8 - %23 = getelementptr inbounds %struct.Node, %struct.Node* %22, i32 0, i32 0 - %24 = load i32, i32* %23, align 8 - %25 = load %struct.Node*, %struct.Node** %9, align 8 - %26 = getelementptr inbounds %struct.Node, %struct.Node* %25, i32 0, i32 0 - %27 = load i32, i32* %26, align 8 - %28 = icmp slt i32 %24, %27 - br i1 %28, label %29, label %41 - -29: ; preds = %21 - %30 = load %struct.Node**, %struct.Node*** %7, align 8 - %31 = load %struct.Node*, %struct.Node** %30, align 8 - %32 = icmp eq %struct.Node* %31, null - br i1 %32, label %33, label %36 - -33: ; preds = %29 - %34 = load %struct.Node*, %struct.Node** %11, align 8 - %35 = load %struct.Node**, %struct.Node*** %7, align 8 - store %struct.Node* %34, %struct.Node** %35, align 8 - br label %36 - -36: ; preds = %33, %29 - %37 = load %struct.Node*, %struct.Node** %11, align 8 - store %struct.Node* %37, %struct.Node** %10, align 8 - %38 = load %struct.Node*, %struct.Node** %11, align 8 - %39 = getelementptr inbounds %struct.Node, %struct.Node* %38, i32 0, i32 1 - %40 = load %struct.Node*, %struct.Node** %39, align 8 - store %struct.Node* %40, %struct.Node** %11, align 8 - br label %61 - -41: ; preds = %21 - %42 = load %struct.Node*, %struct.Node** %10, align 8 - %43 = icmp ne %struct.Node* %42, null - br i1 %43, label %44, label %50 - -44: ; preds = %41 - %45 = load %struct.Node*, %struct.Node** %11, align 8 - %46 = getelementptr inbounds %struct.Node, %struct.Node* %45, i32 0, i32 1 - %47 = load %struct.Node*, %struct.Node** %46, align 8 - %48 = load %struct.Node*, %struct.Node** %10, align 8 - %49 = getelementptr inbounds %struct.Node, %struct.Node* %48, i32 0, i32 1 - store %struct.Node* %47, %struct.Node** %49, align 8 - br label %50 - -50: ; preds = %44, %41 - %51 = load %struct.Node*, %struct.Node** %11, align 8 - %52 = getelementptr inbounds %struct.Node, %struct.Node* %51, i32 0, i32 1 - %53 = load %struct.Node*, %struct.Node** %52, align 8 - store %struct.Node* %53, %struct.Node** %13, align 8 - %54 = load %struct.Node*, %struct.Node** %11, align 8 - %55 = getelementptr inbounds %struct.Node, %struct.Node* %54, i32 0, i32 1 - store %struct.Node* null, %struct.Node** %55, align 8 - %56 = load %struct.Node*, %struct.Node** %11, align 8 - %57 = load %struct.Node*, %struct.Node** %12, align 8 - %58 = getelementptr inbounds %struct.Node, %struct.Node* %57, i32 0, i32 1 - store %struct.Node* %56, %struct.Node** %58, align 8 - %59 = load %struct.Node*, %struct.Node** %11, align 8 - store %struct.Node* %59, %struct.Node** %12, align 8 - %60 = load %struct.Node*, %struct.Node** %13, align 8 - store %struct.Node* %60, %struct.Node** %11, align 8 - br label %61 - -61: ; preds = %50, %36 - br label %17, !llvm.loop !5 - -62: ; preds = %17 - %63 = load %struct.Node**, %struct.Node*** %7, align 8 - %64 = load %struct.Node*, %struct.Node** %63, align 8 - %65 = icmp eq %struct.Node* %64, null - br i1 %65, label %66, label %69 - -66: ; preds = %62 - %67 = load %struct.Node*, %struct.Node** %9, align 8 - %68 = load %struct.Node**, %struct.Node*** %7, align 8 - store %struct.Node* %67, %struct.Node** %68, align 8 - br label %69 - -69: ; preds = %66, %62 - %70 = load %struct.Node*, %struct.Node** %12, align 8 - %71 = load %struct.Node**, %struct.Node*** %8, align 8 - store %struct.Node* %70, %struct.Node** %71, align 8 - %72 = load %struct.Node*, %struct.Node** %9, align 8 - ret %struct.Node* %72 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %struct.Node* %1) #4 { - %3 = alloca %struct.Node*, align 8 - %4 = alloca %struct.Node*, align 8 - %5 = alloca %struct.Node*, align 8 - %6 = alloca %struct.Node*, align 8 - %7 = alloca %struct.Node*, align 8 - %8 = alloca %struct.Node*, align 8 - %9 = alloca %struct.Node*, align 8 - store %struct.Node* %0, %struct.Node** %4, align 8 - store %struct.Node* %1, %struct.Node** %5, align 8 - %10 = load %struct.Node*, %struct.Node** %4, align 8 - %11 = icmp ne %struct.Node* %10, null - br i1 %11, label %12, label %16 - -12: ; preds = %2 - %13 = load %struct.Node*, %struct.Node** %4, align 8 - %14 = load %struct.Node*, %struct.Node** %5, align 8 - %15 = icmp eq %struct.Node* %13, %14 - br i1 %15, label %16, label %18 - -16: ; preds = %12, %2 - %17 = load %struct.Node*, %struct.Node** %4, align 8 - store %struct.Node* %17, %struct.Node** %3, align 8 - br label %57 - -18: ; preds = %12 - store %struct.Node* null, %struct.Node** %6, align 8 - store %struct.Node* null, %struct.Node** %7, align 8 - %19 = load %struct.Node*, %struct.Node** %4, align 8 - %20 = load %struct.Node*, %struct.Node** %5, align 8 - %21 = call %struct.Node* @_Z9partitionP4NodeS0_PS0_S1_(%struct.Node* %19, %struct.Node* %20, %struct.Node** %6, %struct.Node** %7) - store %struct.Node* %21, %struct.Node** %8, align 8 - %22 = load %struct.Node*, %struct.Node** %6, align 8 - %23 = load %struct.Node*, %struct.Node** %8, align 8 - %24 = icmp ne %struct.Node* %22, %23 - br i1 %24, label %25, label %48 - -25: ; preds = %18 - %26 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %26, %struct.Node** %9, align 8 - br label %27 - -27: ; preds = %33, %25 - %28 = load %struct.Node*, %struct.Node** %9, align 8 - %29 = getelementptr inbounds %struct.Node, %struct.Node* %28, i32 0, i32 1 - %30 = load %struct.Node*, %struct.Node** %29, align 8 - %31 = load %struct.Node*, %struct.Node** %8, align 8 - %32 = icmp ne %struct.Node* %30, %31 - br i1 %32, label %33, label %37 - -33: ; preds = %27 - %34 = load %struct.Node*, %struct.Node** %9, align 8 - %35 = getelementptr inbounds %struct.Node, %struct.Node* %34, i32 0, i32 1 - %36 = load %struct.Node*, %struct.Node** %35, align 8 - store %struct.Node* %36, %struct.Node** %9, align 8 - br label %27, !llvm.loop !6 - -37: ; preds = %27 - %38 = load %struct.Node*, %struct.Node** %9, align 8 - %39 = getelementptr inbounds %struct.Node, %struct.Node* %38, i32 0, i32 1 - store %struct.Node* null, %struct.Node** %39, align 8 - %40 = load %struct.Node*, %struct.Node** %6, align 8 - %41 = load %struct.Node*, %struct.Node** %9, align 8 - %42 = call %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %40, %struct.Node* %41) - store %struct.Node* %42, %struct.Node** %6, align 8 - %43 = load %struct.Node*, %struct.Node** %6, align 8 - %44 = call %struct.Node* @_Z7getTailP4Node(%struct.Node* %43) - store %struct.Node* %44, %struct.Node** %9, align 8 - %45 = load %struct.Node*, %struct.Node** %8, align 8 - %46 = load %struct.Node*, %struct.Node** %9, align 8 - %47 = getelementptr inbounds %struct.Node, %struct.Node* %46, i32 0, i32 1 - store %struct.Node* %45, %struct.Node** %47, align 8 - br label %48 - -48: ; preds = %37, %18 - %49 = load %struct.Node*, %struct.Node** %8, align 8 - %50 = getelementptr inbounds %struct.Node, %struct.Node* %49, i32 0, i32 1 - %51 = load %struct.Node*, %struct.Node** %50, align 8 - %52 = load %struct.Node*, %struct.Node** %7, align 8 - %53 = call %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %51, %struct.Node* %52) - %54 = load %struct.Node*, %struct.Node** %8, align 8 - %55 = getelementptr inbounds %struct.Node, %struct.Node* %54, i32 0, i32 1 - store %struct.Node* %53, %struct.Node** %55, align 8 - %56 = load %struct.Node*, %struct.Node** %6, align 8 - store %struct.Node* %56, %struct.Node** %3, align 8 - br label %57 - -57: ; preds = %48, %16 - %58 = load %struct.Node*, %struct.Node** %3, align 8 - ret %struct.Node* %58 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9quickSortPP4Node(%struct.Node** %0) #4 { - %2 = alloca %struct.Node**, align 8 - store %struct.Node** %0, %struct.Node*** %2, align 8 - %3 = load %struct.Node**, %struct.Node*** %2, align 8 - %4 = load %struct.Node*, %struct.Node** %3, align 8 - %5 = load %struct.Node**, %struct.Node*** %2, align 8 - %6 = load %struct.Node*, %struct.Node** %5, align 8 - %7 = call %struct.Node* @_Z7getTailP4Node(%struct.Node* %6) - %8 = call %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %4, %struct.Node* %7) - %9 = load %struct.Node**, %struct.Node*** %2, align 8 - store %struct.Node* %8, %struct.Node** %9, align 8 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca %struct.Node*, align 8 - store i32 0, i32* %1, align 4 - store %struct.Node* null, %struct.Node** %2, align 8 - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 5) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 20) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 4) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 3) - call void @_Z4pushPP4Nodei(%struct.Node** %2, i32 30) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str.2, i64 0, i64 0)) - %4 = load %struct.Node*, %struct.Node** %2, align 8 - call void @_Z9printListP4Node(%struct.Node* %4) - call void @_Z9quickSortPP4Node(%struct.Node** %2) - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str.3, i64 0, i64 0)) - %6 = load %struct.Node*, %struct.Node** %2, align 8 - call void @_Z9printListP4Node(%struct.Node* %6) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll deleted file mode 100644 index a7a6467f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll +++ /dev/null @@ -1,330 +0,0 @@ -; ModuleID = 'PE-benchmarks/rabin-karp-algorithm.cpp' -source_filename = "PE-benchmarks/rabin-karp-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [24 x i8] c"Pattern found at index \00", align 1 -@__const.main.txt = private unnamed_addr constant [16 x i8] c"GEEKS FOR GEEKS\00", align 16 -@__const.main.pat = private unnamed_addr constant [5 x i8] c"GEEK\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_rabin_karp_algorithm.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i8* %0, i8** %4, align 8 - store i8* %1, i8** %5, align 8 - store i32 %2, i32* %6, align 4 - %14 = load i8*, i8** %4, align 8 - %15 = call i64 @strlen(i8* %14) #8 - %16 = trunc i64 %15 to i32 - store i32 %16, i32* %7, align 4 - %17 = load i8*, i8** %5, align 8 - %18 = call i64 @strlen(i8* %17) #8 - %19 = trunc i64 %18 to i32 - store i32 %19, i32* %8, align 4 - store i32 0, i32* %11, align 4 - store i32 0, i32* %12, align 4 - store i32 1, i32* %13, align 4 - store i32 0, i32* %9, align 4 - br label %20 - -20: ; preds = %30, %3 - %21 = load i32, i32* %9, align 4 - %22 = load i32, i32* %7, align 4 - %23 = sub nsw i32 %22, 1 - %24 = icmp slt i32 %21, %23 - br i1 %24, label %25, label %33 - -25: ; preds = %20 - %26 = load i32, i32* %13, align 4 - %27 = mul nsw i32 %26, 256 - %28 = load i32, i32* %6, align 4 - %29 = srem i32 %27, %28 - store i32 %29, i32* %13, align 4 - br label %30 - -30: ; preds = %25 - %31 = load i32, i32* %9, align 4 - %32 = add nsw i32 %31, 1 - store i32 %32, i32* %9, align 4 - br label %20, !llvm.loop !2 - -33: ; preds = %20 - store i32 0, i32* %9, align 4 - br label %34 - -34: ; preds = %61, %33 - %35 = load i32, i32* %9, align 4 - %36 = load i32, i32* %7, align 4 - %37 = icmp slt i32 %35, %36 - br i1 %37, label %38, label %64 - -38: ; preds = %34 - %39 = load i32, i32* %11, align 4 - %40 = mul nsw i32 256, %39 - %41 = load i8*, i8** %4, align 8 - %42 = load i32, i32* %9, align 4 - %43 = sext i32 %42 to i64 - %44 = getelementptr inbounds i8, i8* %41, i64 %43 - %45 = load i8, i8* %44, align 1 - %46 = sext i8 %45 to i32 - %47 = add nsw i32 %40, %46 - %48 = load i32, i32* %6, align 4 - %49 = srem i32 %47, %48 - store i32 %49, i32* %11, align 4 - %50 = load i32, i32* %12, align 4 - %51 = mul nsw i32 256, %50 - %52 = load i8*, i8** %5, align 8 - %53 = load i32, i32* %9, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i8, i8* %52, i64 %54 - %56 = load i8, i8* %55, align 1 - %57 = sext i8 %56 to i32 - %58 = add nsw i32 %51, %57 - %59 = load i32, i32* %6, align 4 - %60 = srem i32 %58, %59 - store i32 %60, i32* %12, align 4 - br label %61 - -61: ; preds = %38 - %62 = load i32, i32* %9, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %9, align 4 - br label %34, !llvm.loop !4 - -64: ; preds = %34 - store i32 0, i32* %9, align 4 - br label %65 - -65: ; preds = %148, %64 - %66 = load i32, i32* %9, align 4 - %67 = load i32, i32* %8, align 4 - %68 = load i32, i32* %7, align 4 - %69 = sub nsw i32 %67, %68 - %70 = icmp sle i32 %66, %69 - br i1 %70, label %71, label %151 - -71: ; preds = %65 - %72 = load i32, i32* %11, align 4 - %73 = load i32, i32* %12, align 4 - %74 = icmp eq i32 %72, %73 - br i1 %74, label %75, label %111 - -75: ; preds = %71 - store i32 0, i32* %10, align 4 - br label %76 - -76: ; preds = %98, %75 - %77 = load i32, i32* %10, align 4 - %78 = load i32, i32* %7, align 4 - %79 = icmp slt i32 %77, %78 - br i1 %79, label %80, label %101 - -80: ; preds = %76 - %81 = load i8*, i8** %5, align 8 - %82 = load i32, i32* %9, align 4 - %83 = load i32, i32* %10, align 4 - %84 = add nsw i32 %82, %83 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %81, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = sext i8 %87 to i32 - %89 = load i8*, i8** %4, align 8 - %90 = load i32, i32* %10, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i8, i8* %89, i64 %91 - %93 = load i8, i8* %92, align 1 - %94 = sext i8 %93 to i32 - %95 = icmp ne i32 %88, %94 - br i1 %95, label %96, label %97 - -96: ; preds = %80 - br label %101 - -97: ; preds = %80 - br label %98 - -98: ; preds = %97 - %99 = load i32, i32* %10, align 4 - %100 = add nsw i32 %99, 1 - store i32 %100, i32* %10, align 4 - br label %76, !llvm.loop !5 - -101: ; preds = %96, %76 - %102 = load i32, i32* %10, align 4 - %103 = load i32, i32* %7, align 4 - %104 = icmp eq i32 %102, %103 - br i1 %104, label %105, label %110 - -105: ; preds = %101 - %106 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str, i64 0, i64 0)) - %107 = load i32, i32* %9, align 4 - %108 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %106, i32 %107) - %109 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %108, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %110 - -110: ; preds = %105, %101 - br label %111 - -111: ; preds = %110, %71 - %112 = load i32, i32* %9, align 4 - %113 = load i32, i32* %8, align 4 - %114 = load i32, i32* %7, align 4 - %115 = sub nsw i32 %113, %114 - %116 = icmp slt i32 %112, %115 - br i1 %116, label %117, label %147 - -117: ; preds = %111 - %118 = load i32, i32* %12, align 4 - %119 = load i8*, i8** %5, align 8 - %120 = load i32, i32* %9, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i8, i8* %119, i64 %121 - %123 = load i8, i8* %122, align 1 - %124 = sext i8 %123 to i32 - %125 = load i32, i32* %13, align 4 - %126 = mul nsw i32 %124, %125 - %127 = sub nsw i32 %118, %126 - %128 = mul nsw i32 256, %127 - %129 = load i8*, i8** %5, align 8 - %130 = load i32, i32* %9, align 4 - %131 = load i32, i32* %7, align 4 - %132 = add nsw i32 %130, %131 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i8, i8* %129, i64 %133 - %135 = load i8, i8* %134, align 1 - %136 = sext i8 %135 to i32 - %137 = add nsw i32 %128, %136 - %138 = load i32, i32* %6, align 4 - %139 = srem i32 %137, %138 - store i32 %139, i32* %12, align 4 - %140 = load i32, i32* %12, align 4 - %141 = icmp slt i32 %140, 0 - br i1 %141, label %142, label %146 - -142: ; preds = %117 - %143 = load i32, i32* %12, align 4 - %144 = load i32, i32* %6, align 4 - %145 = add nsw i32 %143, %144 - store i32 %145, i32* %12, align 4 - br label %146 - -146: ; preds = %142, %117 - br label %147 - -147: ; preds = %146, %111 - br label %148 - -148: ; preds = %147 - %149 = load i32, i32* %9, align 4 - %150 = add nsw i32 %149, 1 - store i32 %150, i32* %9, align 4 - br label %65, !llvm.loop !6 - -151: ; preds = %65 - ret void -} - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [16 x i8], align 16 - %3 = alloca [5 x i8], align 1 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [16 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 getelementptr inbounds ([16 x i8], [16 x i8]* @__const.main.txt, i32 0, i32 0), i64 16, i1 false) - %6 = bitcast [5 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %6, i8* align 1 getelementptr inbounds ([5 x i8], [5 x i8]* @__const.main.pat, i32 0, i32 0), i64 5, i1 false) - store i32 101, i32* %4, align 4 - %7 = getelementptr inbounds [5 x i8], [5 x i8]* %3, i64 0, i64 0 - %8 = getelementptr inbounds [16 x i8], [16 x i8]* %2, i64 0, i64 0 - %9 = load i32, i32* %4, align 4 - call void @_Z6searchPcS_i(i8* %7, i8* %8, i32 %9) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_rabin_karp_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } -attributes #8 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll deleted file mode 100644 index 58cf4d71..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll +++ /dev/null @@ -1,284 +0,0 @@ -; ModuleID = 'PE-benchmarks/rat-in-a-maze.cpp' -source_filename = "PE-benchmarks/rat-in-a-maze.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [5 x i8] c" %d \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@.str.2 = private unnamed_addr constant [23 x i8] c"Solution doesn't exist\00", align 1 -@__const.main.maze = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 1, i32 0, i32 0, i32 0], [4 x i32] [i32 1, i32 1, i32 0, i32 1], [4 x i32] [i32 0, i32 1, i32 0, i32 0], [4 x i32] [i32 1, i32 1, i32 1, i32 1]], align 16 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %27, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 4 - br i1 %7, label %8, label %30 - -8: ; preds = %5 - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %22, %8 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 4 - br i1 %11, label %12, label %25 - -12: ; preds = %9 - %13 = load [4 x i32]*, [4 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [4 x i32], [4 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 %20) - br label %22 - -22: ; preds = %12 - %23 = load i32, i32* %4, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %4, align 4 - br label %9, !llvm.loop !2 - -25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %27 - -27: ; preds = %25 - %28 = load i32, i32* %3, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %3, align 4 - br label %5, !llvm.loop !4 - -30: ; preds = %5 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z6isSafePA4_iii([4 x i32]* %0, i32 %1, i32 %2) #2 { - %4 = alloca i1, align 1 - %5 = alloca [4 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - %8 = load i32, i32* %6, align 4 - %9 = icmp sge i32 %8, 0 - br i1 %9, label %10, label %30 - -10: ; preds = %3 - %11 = load i32, i32* %6, align 4 - %12 = icmp slt i32 %11, 4 - br i1 %12, label %13, label %30 - -13: ; preds = %10 - %14 = load i32, i32* %7, align 4 - %15 = icmp sge i32 %14, 0 - br i1 %15, label %16, label %30 - -16: ; preds = %13 - %17 = load i32, i32* %7, align 4 - %18 = icmp slt i32 %17, 4 - br i1 %18, label %19, label %30 - -19: ; preds = %16 - %20 = load [4 x i32]*, [4 x i32]** %5, align 8 - %21 = load i32, i32* %6, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds [4 x i32], [4 x i32]* %20, i64 %22 - %24 = load i32, i32* %7, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds [4 x i32], [4 x i32]* %23, i64 0, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = icmp eq i32 %27, 1 - br i1 %28, label %29, label %30 - -29: ; preds = %19 - store i1 true, i1* %4, align 1 - br label %31 - -30: ; preds = %19, %16, %13, %10, %3 - store i1 false, i1* %4, align 1 - br label %31 - -31: ; preds = %30, %29 - %32 = load i1, i1* %4, align 1 - ret i1 %32 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z9solveMazePA4_i([4 x i32]* %0) #0 { - %2 = alloca i1, align 1 - %3 = alloca [4 x i32]*, align 8 - %4 = alloca [4 x [4 x i32]], align 16 - store [4 x i32]* %0, [4 x i32]** %3, align 8 - %5 = bitcast [4 x [4 x i32]]* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %5, i8 0, i64 64, i1 false) - %6 = load [4 x i32]*, [4 x i32]** %3, align 8 - %7 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %4, i64 0, i64 0 - %8 = call zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %6, i32 0, i32 0, [4 x i32]* %7) - %9 = zext i1 %8 to i32 - %10 = icmp eq i32 %9, 0 - br i1 %10, label %11, label %13 - -11: ; preds = %1 - %12 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.2, i64 0, i64 0)) - store i1 false, i1* %2, align 1 - br label %15 - -13: ; preds = %1 - %14 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %4, i64 0, i64 0 - call void @_Z13printSolutionPA4_i([4 x i32]* %14) - store i1 true, i1* %2, align 1 - br label %15 - -15: ; preds = %13, %11 - %16 = load i1, i1* %2, align 1 - ret i1 %16 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %0, i32 %1, i32 %2, [4 x i32]* %3) #0 { - %5 = alloca i1, align 1 - %6 = alloca [4 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca [4 x i32]*, align 8 - store [4 x i32]* %0, [4 x i32]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store [4 x i32]* %3, [4 x i32]** %9, align 8 - %10 = load i32, i32* %7, align 4 - %11 = icmp eq i32 %10, 3 - br i1 %11, label %12, label %23 - -12: ; preds = %4 - %13 = load i32, i32* %8, align 4 - %14 = icmp eq i32 %13, 3 - br i1 %14, label %15, label %23 - -15: ; preds = %12 - %16 = load [4 x i32]*, [4 x i32]** %9, align 8 - %17 = load i32, i32* %7, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [4 x i32], [4 x i32]* %16, i64 %18 - %20 = load i32, i32* %8, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [4 x i32], [4 x i32]* %19, i64 0, i64 %21 - store i32 1, i32* %22, align 4 - store i1 true, i1* %5, align 1 - br label %66 - -23: ; preds = %12, %4 - %24 = load [4 x i32]*, [4 x i32]** %6, align 8 - %25 = load i32, i32* %7, align 4 - %26 = load i32, i32* %8, align 4 - %27 = call zeroext i1 @_Z6isSafePA4_iii([4 x i32]* %24, i32 %25, i32 %26) - %28 = zext i1 %27 to i32 - %29 = icmp eq i32 %28, 1 - br i1 %29, label %30, label %65 - -30: ; preds = %23 - %31 = load [4 x i32]*, [4 x i32]** %9, align 8 - %32 = load i32, i32* %7, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [4 x i32], [4 x i32]* %31, i64 %33 - %35 = load i32, i32* %8, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds [4 x i32], [4 x i32]* %34, i64 0, i64 %36 - store i32 1, i32* %37, align 4 - %38 = load [4 x i32]*, [4 x i32]** %6, align 8 - %39 = load i32, i32* %7, align 4 - %40 = add nsw i32 %39, 1 - %41 = load i32, i32* %8, align 4 - %42 = load [4 x i32]*, [4 x i32]** %9, align 8 - %43 = call zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %38, i32 %40, i32 %41, [4 x i32]* %42) - %44 = zext i1 %43 to i32 - %45 = icmp eq i32 %44, 1 - br i1 %45, label %46, label %47 - -46: ; preds = %30 - store i1 true, i1* %5, align 1 - br label %66 - -47: ; preds = %30 - %48 = load [4 x i32]*, [4 x i32]** %6, align 8 - %49 = load i32, i32* %7, align 4 - %50 = load i32, i32* %8, align 4 - %51 = add nsw i32 %50, 1 - %52 = load [4 x i32]*, [4 x i32]** %9, align 8 - %53 = call zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %48, i32 %49, i32 %51, [4 x i32]* %52) - %54 = zext i1 %53 to i32 - %55 = icmp eq i32 %54, 1 - br i1 %55, label %56, label %57 - -56: ; preds = %47 - store i1 true, i1* %5, align 1 - br label %66 - -57: ; preds = %47 - %58 = load [4 x i32]*, [4 x i32]** %9, align 8 - %59 = load i32, i32* %7, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds [4 x i32], [4 x i32]* %58, i64 %60 - %62 = load i32, i32* %8, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds [4 x i32], [4 x i32]* %61, i64 0, i64 %63 - store i32 0, i32* %64, align 4 - store i1 false, i1* %5, align 1 - br label %66 - -65: ; preds = %23 - store i1 false, i1* %5, align 1 - br label %66 - -66: ; preds = %65, %57, %56, %46, %15 - %67 = load i1, i1* %5, align 1 - ret i1 %67 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [4 x [4 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [4 x [4 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([4 x [4 x i32]]* @__const.main.maze to i8*), i64 64, i1 false) - %4 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %2, i64 0, i64 0 - %5 = call zeroext i1 @_Z9solveMazePA4_i([4 x i32]* %4) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll deleted file mode 100644 index 5b0be381..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll +++ /dev/null @@ -1,248 +0,0 @@ -; ModuleID = 'PE-benchmarks/reservoir-sampling.cpp' -source_filename = "PE-benchmarks/reservoir-sampling.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [42 x i8] c"Following are k randomly selected items \0A\00", align 1 -@__const.main.stream = private unnamed_addr constant [12 x i32] [i32 1, i32 2, i32 3, i32 4, i32 5, i32 6, i32 7, i32 8, i32 9, i32 10, i32 11, i32 12], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_reservoir_sampling.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10printArrayPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %15) - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %16, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %18 - -18: ; preds = %10 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %6, !llvm.loop !2 - -21: ; preds = %6 - %22 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z12selectKItemsPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %11 = load i32, i32* %6, align 4 - %12 = zext i32 %11 to i64 - %13 = call i8* @llvm.stacksave() - store i8* %13, i8** %8, align 8 - %14 = alloca i32, i64 %12, align 16 - store i64 %12, i64* %9, align 8 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %28, %3 - %16 = load i32, i32* %7, align 4 - %17 = load i32, i32* %6, align 4 - %18 = icmp slt i32 %16, %17 - br i1 %18, label %19, label %31 - -19: ; preds = %15 - %20 = load i32*, i32** %4, align 8 - %21 = load i32, i32* %7, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - %24 = load i32, i32* %23, align 4 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %14, i64 %26 - store i32 %24, i32* %27, align 4 - br label %28 - -28: ; preds = %19 - %29 = load i32, i32* %7, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %7, align 4 - br label %15, !llvm.loop !4 - -31: ; preds = %15 - %32 = call i64 @time(i64* null) #3 - %33 = trunc i64 %32 to i32 - call void @srand(i32 %33) #3 - br label %34 - -34: ; preds = %56, %31 - %35 = load i32, i32* %7, align 4 - %36 = load i32, i32* %5, align 4 - %37 = icmp slt i32 %35, %36 - br i1 %37, label %38, label %59 - -38: ; preds = %34 - %39 = call i32 @rand() #3 - %40 = load i32, i32* %7, align 4 - %41 = add nsw i32 %40, 1 - %42 = srem i32 %39, %41 - store i32 %42, i32* %10, align 4 - %43 = load i32, i32* %10, align 4 - %44 = load i32, i32* %6, align 4 - %45 = icmp slt i32 %43, %44 - br i1 %45, label %46, label %55 - -46: ; preds = %38 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %7, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - %51 = load i32, i32* %50, align 4 - %52 = load i32, i32* %10, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i32, i32* %14, i64 %53 - store i32 %51, i32* %54, align 4 - br label %55 - -55: ; preds = %46, %38 - br label %56 - -56: ; preds = %55 - %57 = load i32, i32* %7, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %7, align 4 - br label %34, !llvm.loop !5 - -59: ; preds = %34 - %60 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([42 x i8], [42 x i8]* @.str.1, i64 0, i64 0)) - %61 = load i32, i32* %6, align 4 - call void @_Z10printArrayPii(i32* %14, i32 %61) - %62 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %62) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: nounwind -declare dso_local void @srand(i32) #2 - -; Function Attrs: nounwind -declare dso_local i64 @time(i64*) #2 - -; Function Attrs: nounwind -declare dso_local i32 @rand() #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [12 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [12 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([12 x i32]* @__const.main.stream to i8*), i64 48, i1 false) - store i32 12, i32* %3, align 4 - store i32 5, i32* %4, align 4 - %6 = getelementptr inbounds [12 x i32], [12 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = load i32, i32* %4, align 4 - call void @_Z12selectKItemsPiii(i32* %6, i32 %7, i32 %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_reservoir_sampling.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/rotate-bits-of-an-integer.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/rotate-bits-of-an-integer.ll deleted file mode 100644 index 502a58b0..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/rotate-bits-of-an-integer.ll +++ /dev/null @@ -1,148 +0,0 @@ -; ModuleID = 'PE-benchmarks/rotate-bits-of-an-integer.cpp' -source_filename = "PE-benchmarks/rotate-bits-of-an-integer.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.gfg = type { i8 } - -$_ZN3gfg10leftRotateEij = comdat any - -$_ZN3gfg11rightRotateEij = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [18 x i8] c"Left Rotation of \00", align 1 -@.str.1 = private unnamed_addr constant [5 x i8] c" by \00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c" is \00", align 1 -@.str.3 = private unnamed_addr constant [20 x i8] c"\0ARight Rotation of \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_rotate_bits_of_an_integer.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca %class.gfg, align 1 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - store i32 16, i32* %2, align 4 - store i32 2, i32* %3, align 4 - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str, i64 0, i64 0)) - %5 = load i32, i32* %2, align 4 - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %4, i32 %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %6, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.1, i64 0, i64 0)) - %8 = load i32, i32* %3, align 4 - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %7, i32 %8) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %9, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0)) - %11 = load i32, i32* %2, align 4 - %12 = load i32, i32* %3, align 4 - %13 = call i32 @_ZN3gfg10leftRotateEij(%class.gfg* nonnull dereferenceable(1) %1, i32 %11, i32 %12) - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %13) - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([20 x i8], [20 x i8]* @.str.3, i64 0, i64 0)) - %16 = load i32, i32* %2, align 4 - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %15, i32 %16) - %18 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %17, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.1, i64 0, i64 0)) - %19 = load i32, i32* %3, align 4 - %20 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %18, i32 %19) - %21 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %20, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0)) - %22 = load i32, i32* %2, align 4 - %23 = load i32, i32* %3, align 4 - %24 = call i32 @_ZN3gfg11rightRotateEij(%class.gfg* nonnull dereferenceable(1) %1, i32 %22, i32 %23) - %25 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %24) - %26 = call i32 @getchar() - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32 @_ZN3gfg10leftRotateEij(%class.gfg* nonnull dereferenceable(1) %0, i32 %1, i32 %2) #5 comdat align 2 { - %4 = alloca %class.gfg*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.gfg* %0, %class.gfg** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.gfg*, %class.gfg** %4, align 8 - %8 = load i32, i32* %5, align 4 - %9 = load i32, i32* %6, align 4 - %10 = shl i32 %8, %9 - %11 = load i32, i32* %5, align 4 - %12 = load i32, i32* %6, align 4 - %13 = sub i32 32, %12 - %14 = ashr i32 %11, %13 - %15 = or i32 %10, %14 - ret i32 %15 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32 @_ZN3gfg11rightRotateEij(%class.gfg* nonnull dereferenceable(1) %0, i32 %1, i32 %2) #5 comdat align 2 { - %4 = alloca %class.gfg*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.gfg* %0, %class.gfg** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.gfg*, %class.gfg** %4, align 8 - %8 = load i32, i32* %5, align 4 - %9 = load i32, i32* %6, align 4 - %10 = ashr i32 %8, %9 - %11 = load i32, i32* %5, align 4 - %12 = load i32, i32* %6, align 4 - %13 = sub i32 32, %12 - %14 = shl i32 %11, %13 - %15 = or i32 %10, %14 - ret i32 %15 -} - -declare dso_local i32 @getchar() #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_rotate_bits_of_an_integer.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll deleted file mode 100644 index 9b2c9b98..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll +++ /dev/null @@ -1,330 +0,0 @@ -; ModuleID = 'PE-benchmarks/shortest-common-supersequence.cpp' -source_filename = "PE-benchmarks/shortest-common-supersequence.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.X = private unnamed_addr constant [7 x i8] c"AGGTAB\00", align 1 -@__const.main.Y = private unnamed_addr constant [8 x i8] c"GXTXAYB\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [41 x i8] c"Length of the shortest supersequence is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_shortest_common_supersequence.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z8superSeqPcS_ii(i8* %0, i8* %1, i32 %2, i32 %3) #4 { - %5 = alloca i8*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i8*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i8* %0, i8** %5, align 8 - store i8* %1, i8** %6, align 8 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %14 = load i32, i32* %7, align 4 - %15 = add nsw i32 %14, 1 - %16 = zext i32 %15 to i64 - %17 = load i32, i32* %8, align 4 - %18 = add nsw i32 %17, 1 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %9, align 8 - %21 = mul nuw i64 %16, %19 - %22 = alloca i32, i64 %21, align 16 - store i64 %16, i64* %10, align 8 - store i64 %19, i64* %11, align 8 - store i32 0, i32* %12, align 4 - br label %23 - -23: ; preds = %125, %4 - %24 = load i32, i32* %12, align 4 - %25 = load i32, i32* %7, align 4 - %26 = icmp sle i32 %24, %25 - br i1 %26, label %27, label %128 - -27: ; preds = %23 - store i32 0, i32* %13, align 4 - br label %28 - -28: ; preds = %121, %27 - %29 = load i32, i32* %13, align 4 - %30 = load i32, i32* %8, align 4 - %31 = icmp sle i32 %29, %30 - br i1 %31, label %32, label %124 - -32: ; preds = %28 - %33 = load i32, i32* %12, align 4 - %34 = icmp ne i32 %33, 0 - br i1 %34, label %44, label %35 - -35: ; preds = %32 - %36 = load i32, i32* %13, align 4 - %37 = load i32, i32* %12, align 4 - %38 = sext i32 %37 to i64 - %39 = mul nsw i64 %38, %19 - %40 = getelementptr inbounds i32, i32* %22, i64 %39 - %41 = load i32, i32* %13, align 4 - %42 = sext i32 %41 to i64 - %43 = getelementptr inbounds i32, i32* %40, i64 %42 - store i32 %36, i32* %43, align 4 - br label %120 - -44: ; preds = %32 - %45 = load i32, i32* %13, align 4 - %46 = icmp ne i32 %45, 0 - br i1 %46, label %56, label %47 - -47: ; preds = %44 - %48 = load i32, i32* %12, align 4 - %49 = load i32, i32* %12, align 4 - %50 = sext i32 %49 to i64 - %51 = mul nsw i64 %50, %19 - %52 = getelementptr inbounds i32, i32* %22, i64 %51 - %53 = load i32, i32* %13, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - store i32 %48, i32* %55, align 4 - br label %119 - -56: ; preds = %44 - %57 = load i8*, i8** %5, align 8 - %58 = load i32, i32* %12, align 4 - %59 = sub nsw i32 %58, 1 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i8, i8* %57, i64 %60 - %62 = load i8, i8* %61, align 1 - %63 = sext i8 %62 to i32 - %64 = load i8*, i8** %6, align 8 - %65 = load i32, i32* %13, align 4 - %66 = sub nsw i32 %65, 1 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %64, i64 %67 - %69 = load i8, i8* %68, align 1 - %70 = sext i8 %69 to i32 - %71 = icmp eq i32 %63, %70 - br i1 %71, label %72, label %91 - -72: ; preds = %56 - %73 = load i32, i32* %12, align 4 - %74 = sub nsw i32 %73, 1 - %75 = sext i32 %74 to i64 - %76 = mul nsw i64 %75, %19 - %77 = getelementptr inbounds i32, i32* %22, i64 %76 - %78 = load i32, i32* %13, align 4 - %79 = sub nsw i32 %78, 1 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %77, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = add nsw i32 1, %82 - %84 = load i32, i32* %12, align 4 - %85 = sext i32 %84 to i64 - %86 = mul nsw i64 %85, %19 - %87 = getelementptr inbounds i32, i32* %22, i64 %86 - %88 = load i32, i32* %13, align 4 - %89 = sext i32 %88 to i64 - %90 = getelementptr inbounds i32, i32* %87, i64 %89 - store i32 %83, i32* %90, align 4 - br label %118 - -91: ; preds = %56 - %92 = load i32, i32* %12, align 4 - %93 = sub nsw i32 %92, 1 - %94 = sext i32 %93 to i64 - %95 = mul nsw i64 %94, %19 - %96 = getelementptr inbounds i32, i32* %22, i64 %95 - %97 = load i32, i32* %13, align 4 - %98 = sext i32 %97 to i64 - %99 = getelementptr inbounds i32, i32* %96, i64 %98 - %100 = load i32, i32* %12, align 4 - %101 = sext i32 %100 to i64 - %102 = mul nsw i64 %101, %19 - %103 = getelementptr inbounds i32, i32* %22, i64 %102 - %104 = load i32, i32* %13, align 4 - %105 = sub nsw i32 %104, 1 - %106 = sext i32 %105 to i64 - %107 = getelementptr inbounds i32, i32* %103, i64 %106 - %108 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %99, i32* nonnull align 4 dereferenceable(4) %107) - %109 = load i32, i32* %108, align 4 - %110 = add nsw i32 1, %109 - %111 = load i32, i32* %12, align 4 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %19 - %114 = getelementptr inbounds i32, i32* %22, i64 %113 - %115 = load i32, i32* %13, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - store i32 %110, i32* %117, align 4 - br label %118 - -118: ; preds = %91, %72 - br label %119 - -119: ; preds = %118, %47 - br label %120 - -120: ; preds = %119, %35 - br label %121 - -121: ; preds = %120 - %122 = load i32, i32* %13, align 4 - %123 = add nsw i32 %122, 1 - store i32 %123, i32* %13, align 4 - br label %28, !llvm.loop !2 - -124: ; preds = %28 - br label %125 - -125: ; preds = %124 - %126 = load i32, i32* %12, align 4 - %127 = add nsw i32 %126, 1 - store i32 %127, i32* %12, align 4 - br label %23, !llvm.loop !4 - -128: ; preds = %23 - %129 = load i32, i32* %7, align 4 - %130 = sext i32 %129 to i64 - %131 = mul nsw i64 %130, %19 - %132 = getelementptr inbounds i32, i32* %22, i64 %131 - %133 = load i32, i32* %8, align 4 - %134 = sext i32 %133 to i64 - %135 = getelementptr inbounds i32, i32* %132, i64 %134 - %136 = load i32, i32* %135, align 4 - %137 = load i8*, i8** %9, align 8 - call void @llvm.stackrestore(i8* %137) - ret i32 %136 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #6 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i8], align 1 - %3 = alloca [8 x i8], align 1 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i8]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %4, i8* align 1 getelementptr inbounds ([7 x i8], [7 x i8]* @__const.main.X, i32 0, i32 0), i64 7, i1 false) - %5 = bitcast [8 x i8]* %3 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 1 %5, i8* align 1 getelementptr inbounds ([8 x i8], [8 x i8]* @__const.main.Y, i32 0, i32 0), i64 8, i1 false) - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([41 x i8], [41 x i8]* @.str, i64 0, i64 0)) - %7 = getelementptr inbounds [7 x i8], [7 x i8]* %2, i64 0, i64 0 - %8 = getelementptr inbounds [8 x i8], [8 x i8]* %3, i64 0, i64 0 - %9 = getelementptr inbounds [7 x i8], [7 x i8]* %2, i64 0, i64 0 - %10 = call i64 @strlen(i8* %9) #10 - %11 = trunc i64 %10 to i32 - %12 = getelementptr inbounds [8 x i8], [8 x i8]* %3, i64 0, i64 0 - %13 = call i64 @strlen(i8* %12) #10 - %14 = trunc i64 %13 to i32 - %15 = call i32 @_Z8superSeqPcS_ii(i8* %7, i8* %8, i32 %11, i32 %14) - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, i32 %15) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_shortest_common_supersequence.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { nounwind readonly willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { nounwind readonly willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll deleted file mode 100644 index a52cf393..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll +++ /dev/null @@ -1,218 +0,0 @@ -; ModuleID = 'PE-benchmarks/sieve-of-eratosthenes.cpp' -source_filename = "PE-benchmarks/sieve-of-eratosthenes.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [41 x i8] c"Following are the prime numbers smaller \00", align 1 -@.str.2 = private unnamed_addr constant [19 x i8] c" than or equal to \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_sieve_of_eratosthenes.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %8 = load i32, i32* %2, align 4 - %9 = add nsw i32 %8, 1 - %10 = zext i32 %9 to i64 - %11 = call i8* @llvm.stacksave() - store i8* %11, i8** %3, align 8 - %12 = alloca i8, i64 %10, align 16 - store i64 %10, i64* %4, align 8 - call void @llvm.memset.p0i8.i64(i8* align 16 %12, i8 1, i64 %10, i1 false) - store i32 2, i32* %5, align 4 - br label %13 - -13: ; preds = %45, %1 - %14 = load i32, i32* %5, align 4 - %15 = load i32, i32* %5, align 4 - %16 = mul nsw i32 %14, %15 - %17 = load i32, i32* %2, align 4 - %18 = icmp sle i32 %16, %17 - br i1 %18, label %19, label %48 - -19: ; preds = %13 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i8, i8* %12, i64 %21 - %23 = load i8, i8* %22, align 1 - %24 = trunc i8 %23 to i1 - %25 = zext i1 %24 to i32 - %26 = icmp eq i32 %25, 1 - br i1 %26, label %27, label %44 - -27: ; preds = %19 - %28 = load i32, i32* %5, align 4 - %29 = load i32, i32* %5, align 4 - %30 = mul nsw i32 %28, %29 - store i32 %30, i32* %6, align 4 - br label %31 - -31: ; preds = %39, %27 - %32 = load i32, i32* %6, align 4 - %33 = load i32, i32* %2, align 4 - %34 = icmp sle i32 %32, %33 - br i1 %34, label %35, label %43 - -35: ; preds = %31 - %36 = load i32, i32* %6, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds i8, i8* %12, i64 %37 - store i8 0, i8* %38, align 1 - br label %39 - -39: ; preds = %35 - %40 = load i32, i32* %5, align 4 - %41 = load i32, i32* %6, align 4 - %42 = add nsw i32 %41, %40 - store i32 %42, i32* %6, align 4 - br label %31, !llvm.loop !2 - -43: ; preds = %31 - br label %44 - -44: ; preds = %43, %19 - br label %45 - -45: ; preds = %44 - %46 = load i32, i32* %5, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %5, align 4 - br label %13, !llvm.loop !4 - -48: ; preds = %13 - store i32 2, i32* %7, align 4 - br label %49 - -49: ; preds = %64, %48 - %50 = load i32, i32* %7, align 4 - %51 = load i32, i32* %2, align 4 - %52 = icmp sle i32 %50, %51 - br i1 %52, label %53, label %67 - -53: ; preds = %49 - %54 = load i32, i32* %7, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i8, i8* %12, i64 %55 - %57 = load i8, i8* %56, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %63 - -59: ; preds = %53 - %60 = load i32, i32* %7, align 4 - %61 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %60) - %62 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %61, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %63 - -63: ; preds = %59, %53 - br label %64 - -64: ; preds = %63 - %65 = load i32, i32* %7, align 4 - %66 = add nsw i32 %65, 1 - store i32 %66, i32* %7, align 4 - br label %49, !llvm.loop !5 - -67: ; preds = %49 - %68 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %68) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 30, i32* %2, align 4 - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([41 x i8], [41 x i8]* @.str.1, i64 0, i64 0)) - %4 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %3, i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.2, i64 0, i64 0)) - %5 = load i32, i32* %2, align 4 - %6 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %4, i32 %5) - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %6, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %8 = load i32, i32* %2, align 4 - call void @_Z19SieveOfEratosthenesi(i32 %8) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sieve_of_eratosthenes.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/snake-ladder.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/snake-ladder.ll deleted file mode 100644 index 3bbff607..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/snake-ladder.ll +++ /dev/null @@ -1,2645 +0,0 @@ -; ModuleID = 'PE-benchmarks/snake-ladder.cpp' -source_filename = "PE-benchmarks/snake-ladder.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::queue" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { %struct.queueEntry**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%struct.queueEntry = type { i32, i32 } -%"struct.std::_Deque_iterator" = type { %struct.queueEntry*, %struct.queueEntry*, %struct.queueEntry*, %struct.queueEntry** } -%"class.std::allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_ = comdat any - -$_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv = comdat any - -$_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EED2Ev = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE3endEv = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_ = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_ = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_ = comdat any - -$_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m = comdat any - -$_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m = comdat any - -$_ZNSaIP10queueEntryED2Ev = comdat any - -$_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSaIP10queueEntryEC2IS_EERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev = comdat any - -$_ZNSaI10queueEntryED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm = comdat any - -$_ZNSaI10queueEntryEC2Ev = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_ = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_ = comdat any - -$_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv = comdat any - -$_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv = comdat any - -$_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv = comdat any - -$_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_ = comdat any - -$_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_ = comdat any - -$_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE = comdat any - -$_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv = comdat any - -$_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm = comdat any - -$_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_ = comdat any - -$_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any - -$_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_ = comdat any - -$_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt12__miter_baseIPP10queueEntryET_S3_ = comdat any - -$_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt12__niter_baseIPP10queueEntryET_S3_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryEEPT_PKS5_S8_S6_ = comdat any - -$_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv = comdat any - -$_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv = comdat any - -$_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_ = comdat any - -$_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [29 x i8] c"Min Dice throws required is \00", align 1 -@.str.1 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_snake_ladder.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca %"class.std::queue", align 8 - %8 = alloca %struct.queueEntry, align 4 - %9 = alloca i8*, align 8 - %10 = alloca i32, align 4 - %11 = alloca %struct.queueEntry, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca %struct.queueEntry, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = call noalias nonnull i8* @_Znam(i64 %16) #15 - store i8* %17, i8** %5, align 8 - store i32 0, i32* %6, align 4 - br label %18 - -18: ; preds = %27, %2 - %19 = load i32, i32* %6, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %30 - -22: ; preds = %18 - %23 = load i8*, i8** %5, align 8 - %24 = load i32, i32* %6, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %23, i64 %25 - store i8 0, i8* %26, align 1 - br label %27 - -27: ; preds = %22 - %28 = load i32, i32* %6, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %6, align 4 - br label %18, !llvm.loop !2 - -30: ; preds = %18 - call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %7) - %31 = load i8*, i8** %5, align 8 - %32 = getelementptr inbounds i8, i8* %31, i64 0 - store i8 1, i8* %32, align 1 - %33 = bitcast %struct.queueEntry* %8 to i8* - call void @llvm.memset.p0i8.i64(i8* align 4 %33, i8 0, i64 8, i1 false) - invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* nonnull dereferenceable(80) %7, %struct.queueEntry* nonnull align 4 dereferenceable(8) %8) - to label %34 unwind label %51 - -34: ; preds = %30 - br label %35 - -35: ; preds = %108, %34 - %36 = invoke zeroext i1 @_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv(%"class.std::queue"* nonnull dereferenceable(80) %7) - to label %37 unwind label %51 - -37: ; preds = %35 - %38 = xor i1 %36, true - br i1 %38, label %39, label %109 - -39: ; preds = %37 - %40 = invoke nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv(%"class.std::queue"* nonnull dereferenceable(80) %7) - to label %41 unwind label %51 - -41: ; preds = %39 - %42 = bitcast %struct.queueEntry* %11 to i8* - %43 = bitcast %struct.queueEntry* %40 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %42, i8* align 4 %43, i64 8, i1 false) - %44 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %11, i32 0, i32 0 - %45 = load i32, i32* %44, align 4 - store i32 %45, i32* %12, align 4 - %46 = load i32, i32* %12, align 4 - %47 = load i32, i32* %4, align 4 - %48 = sub nsw i32 %47, 1 - %49 = icmp eq i32 %46, %48 - br i1 %49, label %50, label %55 - -50: ; preds = %41 - br label %109 - -51: ; preds = %102, %55, %39, %35, %30 - %52 = landingpad { i8*, i32 } - cleanup - %53 = extractvalue { i8*, i32 } %52, 0 - store i8* %53, i8** %9, align 8 - %54 = extractvalue { i8*, i32 } %52, 1 - store i32 %54, i32* %10, align 4 - call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %7) #3 - br label %112 - -55: ; preds = %41 - invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %7) - to label %56 unwind label %51 - -56: ; preds = %55 - %57 = load i32, i32* %12, align 4 - %58 = add nsw i32 %57, 1 - store i32 %58, i32* %13, align 4 - br label %59 - -59: ; preds = %105, %56 - %60 = load i32, i32* %13, align 4 - %61 = load i32, i32* %12, align 4 - %62 = add nsw i32 %61, 6 - %63 = icmp sle i32 %60, %62 - br i1 %63, label %64, label %68 - -64: ; preds = %59 - %65 = load i32, i32* %13, align 4 - %66 = load i32, i32* %4, align 4 - %67 = icmp slt i32 %65, %66 - br label %68 - -68: ; preds = %64, %59 - %69 = phi i1 [ false, %59 ], [ %67, %64 ] - br i1 %69, label %70, label %108 - -70: ; preds = %68 - %71 = load i8*, i8** %5, align 8 - %72 = load i32, i32* %13, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i8, i8* %71, i64 %73 - %75 = load i8, i8* %74, align 1 - %76 = trunc i8 %75 to i1 - br i1 %76, label %104, label %77 - -77: ; preds = %70 - %78 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %11, i32 0, i32 1 - %79 = load i32, i32* %78, align 4 - %80 = add nsw i32 %79, 1 - %81 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %14, i32 0, i32 1 - store i32 %80, i32* %81, align 4 - %82 = load i8*, i8** %5, align 8 - %83 = load i32, i32* %13, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i8, i8* %82, i64 %84 - store i8 1, i8* %85, align 1 - %86 = load i32*, i32** %3, align 8 - %87 = load i32, i32* %13, align 4 - %88 = sext i32 %87 to i64 - %89 = getelementptr inbounds i32, i32* %86, i64 %88 - %90 = load i32, i32* %89, align 4 - %91 = icmp ne i32 %90, -1 - br i1 %91, label %92, label %99 - -92: ; preds = %77 - %93 = load i32*, i32** %3, align 8 - %94 = load i32, i32* %13, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds i32, i32* %93, i64 %95 - %97 = load i32, i32* %96, align 4 - %98 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %14, i32 0, i32 0 - store i32 %97, i32* %98, align 4 - br label %102 - -99: ; preds = %77 - %100 = load i32, i32* %13, align 4 - %101 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %14, i32 0, i32 0 - store i32 %100, i32* %101, align 4 - br label %102 - -102: ; preds = %99, %92 - invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* nonnull dereferenceable(80) %7, %struct.queueEntry* nonnull align 4 dereferenceable(8) %14) - to label %103 unwind label %51 - -103: ; preds = %102 - br label %104 - -104: ; preds = %103, %70 - br label %105 - -105: ; preds = %104 - %106 = load i32, i32* %13, align 4 - %107 = add nsw i32 %106, 1 - store i32 %107, i32* %13, align 4 - br label %59, !llvm.loop !4 - -108: ; preds = %68 - br label %35, !llvm.loop !5 - -109: ; preds = %50, %37 - %110 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %11, i32 0, i32 1 - %111 = load i32, i32* %110, align 4 - call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %7) #3 - ret i32 %111 - -112: ; preds = %51 - %113 = load i8*, i8** %9, align 8 - %114 = load i32, i32* %10, align 4 - %115 = insertvalue { i8*, i32 } undef, i8* %113, 0 - %116 = insertvalue { i8*, i32 } %115, i32 %114, 1 - resume { i8*, i32 } %116 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* nonnull dereferenceable(80) %0, %struct.queueEntry* nonnull align 4 dereferenceable(8) %1) #4 comdat align 2 { - %3 = alloca %"class.std::queue"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.std::queue"*, %"class.std::queue"** %3, align 8 - %6 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %5, i32 0, i32 0 - %7 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(%"class.std::deque"* nonnull dereferenceable(80) %6, %struct.queueEntry* nonnull align 4 dereferenceable(8) %7) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = call zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i1 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret %struct.queueEntry* %5 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.std::queue"*, align 8 - store %"class.std::queue"* %0, %"class.std::queue"** %2, align 8 - %3 = load %"class.std::queue"*, %"class.std::queue"** %2, align 8 - %4 = getelementptr inbounds %"class.std::queue", %"class.std::queue"* %3, i32 0, i32 0 - call void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 30, i32* %2, align 4 - %6 = load i32, i32* %2, align 4 - %7 = zext i32 %6 to i64 - %8 = call i8* @llvm.stacksave() - store i8* %8, i8** %3, align 8 - %9 = alloca i32, i64 %7, align 16 - store i64 %7, i64* %4, align 8 - store i32 0, i32* %5, align 4 - br label %10 - -10: ; preds = %18, %0 - %11 = load i32, i32* %5, align 4 - %12 = load i32, i32* %2, align 4 - %13 = icmp slt i32 %11, %12 - br i1 %13, label %14, label %21 - -14: ; preds = %10 - %15 = load i32, i32* %5, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds i32, i32* %9, i64 %16 - store i32 -1, i32* %17, align 4 - br label %18 - -18: ; preds = %14 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %10, !llvm.loop !6 - -21: ; preds = %10 - %22 = getelementptr inbounds i32, i32* %9, i64 2 - store i32 21, i32* %22, align 8 - %23 = getelementptr inbounds i32, i32* %9, i64 4 - store i32 7, i32* %23, align 16 - %24 = getelementptr inbounds i32, i32* %9, i64 10 - store i32 25, i32* %24, align 8 - %25 = getelementptr inbounds i32, i32* %9, i64 19 - store i32 28, i32* %25, align 4 - %26 = getelementptr inbounds i32, i32* %9, i64 26 - store i32 0, i32* %26, align 8 - %27 = getelementptr inbounds i32, i32* %9, i64 20 - store i32 8, i32* %27, align 16 - %28 = getelementptr inbounds i32, i32* %9, i64 16 - store i32 3, i32* %28, align 16 - %29 = getelementptr inbounds i32, i32* %9, i64 18 - store i32 6, i32* %29, align 8 - %30 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([29 x i8], [29 x i8]* @.str, i64 0, i64 0)) - %31 = load i32, i32* %2, align 4 - %32 = call i32 @_Z16getMinDiceThrowsPii(i32* %9, i32 %31) - %33 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %30, i32 %32) - store i32 0, i32* %1, align 4 - %34 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %34) - %35 = load i32, i32* %1, align 4 - ret i32 %35 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #11 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #11 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #9 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_(%"class.std::deque"* nonnull dereferenceable(80) %7, %"struct.std::_Deque_iterator"* %3, %"struct.std::_Deque_iterator"* %4, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) - to label %10 unwind label %12 - -10: ; preds = %1 - %11 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) #3 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %16) #3 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_(%"class.std::deque"* nonnull dereferenceable(80) %0, %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"* %2, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) #7 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator"* %3, %"class.std::allocator"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #7 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #7 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %8 = icmp ne %struct.queueEntry** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load %struct.queueEntry**, %struct.queueEntry*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load %struct.queueEntry**, %struct.queueEntry*** %18, align 8 - %20 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %19, i64 1 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, %struct.queueEntry** %14, %struct.queueEntry** %20) #3 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load %struct.queueEntry**, %struct.queueEntry*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, %struct.queueEntry** %24, i64 %28) #3 - br label %29 - -29: ; preds = %9, %1 - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %30) #3 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #9 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - store %struct.queueEntry* %9, %struct.queueEntry** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load %struct.queueEntry*, %struct.queueEntry** %12, align 8 - store %struct.queueEntry* %13, %struct.queueEntry** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load %struct.queueEntry*, %struct.queueEntry** %16, align 8 - store %struct.queueEntry* %17, %struct.queueEntry** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load %struct.queueEntry**, %struct.queueEntry*** %20, align 8 - store %struct.queueEntry** %21, %struct.queueEntry*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #7 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca %struct.queueEntry**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %9, %struct.queueEntry*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %12 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %13 = icmp ult %struct.queueEntry** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %16 = load %struct.queueEntry*, %struct.queueEntry** %15, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, %struct.queueEntry* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %19 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %18, i32 1 - store %struct.queueEntry** %19, %struct.queueEntry*** %7, align 8 - br label %10, !llvm.loop !7 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, %struct.queueEntry** %1, i64 %2) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.0", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, %struct.queueEntry** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaI10queueEntryED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, %struct.queueEntry* %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator"* - %8 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - %9 = invoke i64 @_ZSt16__deque_buf_sizem(i64 8) - to label %10 unwind label %12 - -10: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %7, %struct.queueEntry* %8, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %10 - ret void - -12: ; preds = %10, %2 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - call void @__clang_call_terminate(i8* %14) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %struct.queueEntry* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #7 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %struct.queueEntry* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %9 = bitcast %struct.queueEntry* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(%"class.std::allocator.0"* noalias sret(%"class.std::allocator.0") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #7 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.0"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIP10queueEntryEC2IS_EERKSaIT_E(%"class.std::allocator.0"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, %struct.queueEntry** %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, %struct.queueEntry** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIP10queueEntryEC2IS_EERKSaIT_E(%"class.std::allocator.0"* nonnull dereferenceable(1) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #9 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, %struct.queueEntry** %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = bitcast %struct.queueEntry** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaI10queueEntryED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaI10queueEntryEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca %struct.queueEntry**, align 8 - %9 = alloca %struct.queueEntry**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 8) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store %struct.queueEntry** %28, %struct.queueEntry*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load %struct.queueEntry**, %struct.queueEntry*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %35, i64 %42 - store %struct.queueEntry** %43, %struct.queueEntry*** %8, align 8 - %44 = load %struct.queueEntry**, %struct.queueEntry*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %44, i64 %45 - store %struct.queueEntry** %46, %struct.queueEntry*** %9, align 8 - %47 = load %struct.queueEntry**, %struct.queueEntry*** %8, align 8 - %48 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, %struct.queueEntry** %47, %struct.queueEntry** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load %struct.queueEntry**, %struct.queueEntry*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, %struct.queueEntry** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store %struct.queueEntry** null, %struct.queueEntry*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #17 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load %struct.queueEntry**, %struct.queueEntry*** %8, align 8 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, %struct.queueEntry** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %85 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, %struct.queueEntry** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load %struct.queueEntry*, %struct.queueEntry** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store %struct.queueEntry* %90, %struct.queueEntry** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load %struct.queueEntry*, %struct.queueEntry** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 8) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store %struct.queueEntry* %103, %struct.queueEntry** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #16 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaI10queueEntryEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store %struct.queueEntry** null, %struct.queueEntry*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #9 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store %struct.queueEntry* null, %struct.queueEntry** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store %struct.queueEntry* null, %struct.queueEntry** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store %struct.queueEntry* null, %struct.queueEntry** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store %struct.queueEntry** null, %struct.queueEntry*** %7, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.0", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE20_M_get_map_allocatorEv(%"class.std::allocator.0"* sret(%"class.std::allocator.0") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke %struct.queueEntry** @_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %5) #3 - ret %struct.queueEntry** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca %struct.queueEntry**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %11, %struct.queueEntry*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %14 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %15 = icmp ult %struct.queueEntry** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - store %struct.queueEntry* %17, %struct.queueEntry** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %22 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %21, i32 1 - store %struct.queueEntry** %22, %struct.queueEntry*** %7, align 8 - br label %12, !llvm.loop !8 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %31 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, %struct.queueEntry** %30, %struct.queueEntry** %31) #3 - invoke void @__cxa_rethrow() #17 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #16 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %struct.queueEntry** %1) #7 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %struct.queueEntry**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store %struct.queueEntry** %6, %struct.queueEntry*** %7, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %9 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store %struct.queueEntry* %9, %struct.queueEntry** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load %struct.queueEntry*, %struct.queueEntry** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store %struct.queueEntry* %14, %struct.queueEntry** %15, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call %struct.queueEntry** @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %struct.queueEntry** %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to %struct.queueEntry** - ret %struct.queueEntry** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #4 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 8) - %7 = call %struct.queueEntry* @_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret %struct.queueEntry* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry* @_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %struct.queueEntry* @_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %struct.queueEntry* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry* @_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to %struct.queueEntry* - ret %struct.queueEntry* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #7 comdat align 2 { - %1 = call i64 @_ZSt16__deque_buf_sizem(i64 8) - ret i64 %1 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(%"class.std::deque"* nonnull dereferenceable(80) %0, %struct.queueEntry* nonnull align 4 dereferenceable(8) %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load %struct.queueEntry*, %struct.queueEntry** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load %struct.queueEntry*, %struct.queueEntry** %16, align 8 - %18 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %17, i64 -1 - %19 = icmp ne %struct.queueEntry* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load %struct.queueEntry*, %struct.queueEntry** %28, align 8 - %30 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %23, %struct.queueEntry* %29, %struct.queueEntry* nonnull align 4 dereferenceable(8) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load %struct.queueEntry*, %struct.queueEntry** %35, align 8 - %37 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %36, i32 1 - store %struct.queueEntry* %37, %struct.queueEntry** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, %struct.queueEntry* nonnull align 4 dereferenceable(8) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* %1, %struct.queueEntry* nonnull align 4 dereferenceable(8) %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca %struct.queueEntry*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %5, align 8 - store %struct.queueEntry* %2, %struct.queueEntry** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %10 = load %struct.queueEntry*, %struct.queueEntry** %6, align 8 - %11 = call nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* nonnull align 4 dereferenceable(8) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %struct.queueEntry* %9, %struct.queueEntry* nonnull align 4 dereferenceable(8) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, %struct.queueEntry* nonnull align 4 dereferenceable(8) %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.1, i64 0, i64 0)) #17 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load %struct.queueEntry**, %struct.queueEntry*** %17, align 8 - %19 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %18, i64 1 - store %struct.queueEntry* %12, %struct.queueEntry** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load %struct.queueEntry*, %struct.queueEntry** %27, align 8 - %29 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - %30 = call nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* nonnull align 4 dereferenceable(8) %29) #3 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %22, %struct.queueEntry* %28, %struct.queueEntry* nonnull align 4 dereferenceable(8) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load %struct.queueEntry**, %struct.queueEntry*** %39, align 8 - %41 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %40, i64 1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, %struct.queueEntry** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load %struct.queueEntry*, %struct.queueEntry** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store %struct.queueEntry* %47, %struct.queueEntry** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %struct.queueEntry* %1, %struct.queueEntry* nonnull align 4 dereferenceable(8) %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %struct.queueEntry*, align 8 - %6 = alloca %struct.queueEntry*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %5, align 8 - store %struct.queueEntry* %2, %struct.queueEntry** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %struct.queueEntry*, %struct.queueEntry** %5, align 8 - %9 = bitcast %struct.queueEntry* %8 to i8* - %10 = bitcast i8* %9 to %struct.queueEntry* - %11 = load %struct.queueEntry*, %struct.queueEntry** %6, align 8 - %12 = call nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* nonnull align 4 dereferenceable(8) %11) #3 - %13 = bitcast %struct.queueEntry* %10 to i8* - %14 = bitcast %struct.queueEntry* %12 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %13, i8* align 4 %14, i64 8, i1 false) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* nonnull align 4 dereferenceable(8) %0) #7 comdat { - %2 = alloca %struct.queueEntry*, align 8 - store %struct.queueEntry* %0, %struct.queueEntry** %2, align 8 - %3 = load %struct.queueEntry*, %struct.queueEntry** %2, align 8 - ret %struct.queueEntry* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #14 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load %struct.queueEntry**, %struct.queueEntry*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load %struct.queueEntry**, %struct.queueEntry*** %22, align 8 - %24 = ptrtoint %struct.queueEntry** %18 to i64 - %25 = ptrtoint %struct.queueEntry** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #7 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %10, align 8 - %12 = ptrtoint %struct.queueEntry** %8 to i64 - %13 = ptrtoint %struct.queueEntry** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load %struct.queueEntry*, %struct.queueEntry** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load %struct.queueEntry*, %struct.queueEntry** %22, align 8 - %24 = ptrtoint %struct.queueEntry* %20 to i64 - %25 = ptrtoint %struct.queueEntry* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load %struct.queueEntry*, %struct.queueEntry** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load %struct.queueEntry*, %struct.queueEntry** %33, align 8 - %35 = ptrtoint %struct.queueEntry* %31 to i64 - %36 = ptrtoint %struct.queueEntry* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 8 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #7 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #4 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca %struct.queueEntry**, align 8 - %10 = alloca i64, align 8 - %11 = alloca %struct.queueEntry**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load %struct.queueEntry**, %struct.queueEntry*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load %struct.queueEntry**, %struct.queueEntry*** %24, align 8 - %26 = ptrtoint %struct.queueEntry** %19 to i64 - %27 = ptrtoint %struct.queueEntry** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load %struct.queueEntry**, %struct.queueEntry*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %56, i64 %63 - store %struct.queueEntry** %64, %struct.queueEntry*** %9, align 8 - %65 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load %struct.queueEntry**, %struct.queueEntry*** %70, align 8 - %72 = icmp ult %struct.queueEntry** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load %struct.queueEntry**, %struct.queueEntry*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load %struct.queueEntry**, %struct.queueEntry*** %84, align 8 - %86 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %85, i64 1 - %87 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %88 = call %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** %79, %struct.queueEntry** %86, %struct.queueEntry** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load %struct.queueEntry**, %struct.queueEntry*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load %struct.queueEntry**, %struct.queueEntry*** %100, align 8 - %102 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %101, i64 1 - %103 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %103, i64 %104 - %106 = call %struct.queueEntry** @_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** %95, %struct.queueEntry** %102, %struct.queueEntry** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store %struct.queueEntry** %124, %struct.queueEntry*** %11, align 8 - %125 = load %struct.queueEntry**, %struct.queueEntry*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %130, i64 %137 - store %struct.queueEntry** %138, %struct.queueEntry*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load %struct.queueEntry**, %struct.queueEntry*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load %struct.queueEntry**, %struct.queueEntry*** %149, align 8 - %151 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %150, i64 1 - %152 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %153 = call %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** %144, %struct.queueEntry** %151, %struct.queueEntry** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load %struct.queueEntry**, %struct.queueEntry*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, %struct.queueEntry** %159, i64 %164) #3 - %165 = load %struct.queueEntry**, %struct.queueEntry*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store %struct.queueEntry** %165, %struct.queueEntry*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, %struct.queueEntry** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load %struct.queueEntry**, %struct.queueEntry*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %185, i64 %186 - %188 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, %struct.queueEntry** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %7) - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %12 = call %struct.queueEntry** @_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %8, %struct.queueEntry** %10, %struct.queueEntry** %11) - ret %struct.queueEntry** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %7) - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %12 = call %struct.queueEntry** @_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %8, %struct.queueEntry** %10, %struct.queueEntry** %11) - ret %struct.queueEntry** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %7) #3 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) #3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %12 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %11) #3 - %13 = call %struct.queueEntry** @_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %8, %struct.queueEntry** %10, %struct.queueEntry** %12) - %14 = call %struct.queueEntry** @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(%struct.queueEntry*** nonnull align 8 dereferenceable(8) %6, %struct.queueEntry** %13) - ret %struct.queueEntry** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %0) #7 comdat { - %2 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %2, align 8 - %3 = load %struct.queueEntry**, %struct.queueEntry*** %2, align 8 - ret %struct.queueEntry** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(%struct.queueEntry*** nonnull align 8 dereferenceable(8) %0, %struct.queueEntry** %1) #7 comdat { - %3 = alloca %struct.queueEntry***, align 8 - %4 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry*** %0, %struct.queueEntry**** %3, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %4, align 8 - %5 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - ret %struct.queueEntry** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call %struct.queueEntry** @_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %7, %struct.queueEntry** %8, %struct.queueEntry** %9) - ret %struct.queueEntry** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %0) #7 comdat { - %2 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %2, align 8 - %3 = load %struct.queueEntry**, %struct.queueEntry*** %2, align 8 - ret %struct.queueEntry** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** %7, %struct.queueEntry** %8, %struct.queueEntry** %9) - ret %struct.queueEntry** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #7 comdat align 2 { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca i64, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %10 = ptrtoint %struct.queueEntry** %8 to i64 - %11 = ptrtoint %struct.queueEntry** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %18 = bitcast %struct.queueEntry** %17 to i8* - %19 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %20 = bitcast %struct.queueEntry** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %24, i64 %25 - ret %struct.queueEntry** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %7) #3 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) #3 - %11 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %12 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %11) #3 - %13 = call %struct.queueEntry** @_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %8, %struct.queueEntry** %10, %struct.queueEntry** %12) - %14 = call %struct.queueEntry** @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(%struct.queueEntry*** nonnull align 8 dereferenceable(8) %6, %struct.queueEntry** %13) - ret %struct.queueEntry** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call %struct.queueEntry** @_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %7, %struct.queueEntry** %8, %struct.queueEntry** %9) - ret %struct.queueEntry** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #4 comdat { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %7 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %10 = call %struct.queueEntry** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** %7, %struct.queueEntry** %8, %struct.queueEntry** %9) - ret %struct.queueEntry** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.queueEntry** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** %0, %struct.queueEntry** %1, %struct.queueEntry** %2) #7 comdat align 2 { - %4 = alloca %struct.queueEntry**, align 8 - %5 = alloca %struct.queueEntry**, align 8 - %6 = alloca %struct.queueEntry**, align 8 - %7 = alloca i64, align 8 - store %struct.queueEntry** %0, %struct.queueEntry*** %4, align 8 - store %struct.queueEntry** %1, %struct.queueEntry*** %5, align 8 - store %struct.queueEntry** %2, %struct.queueEntry*** %6, align 8 - %8 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %9 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %10 = ptrtoint %struct.queueEntry** %8 to i64 - %11 = ptrtoint %struct.queueEntry** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %17, i64 %19 - %21 = bitcast %struct.queueEntry** %20 to i8* - %22 = load %struct.queueEntry**, %struct.queueEntry*** %4, align 8 - %23 = bitcast %struct.queueEntry** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load %struct.queueEntry**, %struct.queueEntry*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %27, i64 %29 - ret %struct.queueEntry** %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #7 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %struct.queueEntry*, %struct.queueEntry** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load %struct.queueEntry*, %struct.queueEntry** %9, align 8 - %11 = icmp eq %struct.queueEntry* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret %struct.queueEntry* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #7 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - ret %struct.queueEntry* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 2 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load %struct.queueEntry*, %struct.queueEntry** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 2 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 2 - %15 = load %struct.queueEntry*, %struct.queueEntry** %14, align 8 - %16 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %15, i64 -1 - %17 = icmp ne %struct.queueEntry* %9, %16 - br i1 %17, label %18, label %34 - -18: ; preds = %1 - %19 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %20 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %19) #3 - %21 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %24 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %23, i32 0, i32 2 - %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 - %26 = load %struct.queueEntry*, %struct.queueEntry** %25, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %20, %struct.queueEntry* %26) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 2 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load %struct.queueEntry*, %struct.queueEntry** %31, align 8 - %33 = getelementptr inbounds %struct.queueEntry, %struct.queueEntry* %32, i32 1 - store %struct.queueEntry* %33, %struct.queueEntry** %31, align 8 - br label %36 - -34: ; preds = %1 - invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %35 unwind label %37 - -35: ; preds = %34 - br label %36 - -36: ; preds = %35, %18 - ret void - -37: ; preds = %34 - %38 = landingpad { i8*, i32 } - catch i8* null - %39 = extractvalue { i8*, i32 } %38, 0 - call void @__clang_call_terminate(i8* %39) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, %struct.queueEntry* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 2 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load %struct.queueEntry*, %struct.queueEntry** %10, align 8 - call void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, %struct.queueEntry* %11) #3 - %12 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %13 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 2 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 1 - %18 = load %struct.queueEntry*, %struct.queueEntry** %17, align 8 - call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, %struct.queueEntry* %18) #3 - %19 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 2 - %23 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 2 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 3 - %28 = load %struct.queueEntry**, %struct.queueEntry*** %27, align 8 - %29 = getelementptr inbounds %struct.queueEntry*, %struct.queueEntry** %28, i64 1 - call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %22, %struct.queueEntry** %29) #3 - %30 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %31 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %30, i32 0, i32 0 - %32 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %31 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %33 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %32, i32 0, i32 2 - %34 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %33, i32 0, i32 1 - %35 = load %struct.queueEntry*, %struct.queueEntry** %34, align 8 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 2 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - store %struct.queueEntry* %35, %struct.queueEntry** %40, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %struct.queueEntry* %1) #7 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %4 = alloca %struct.queueEntry*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %3, align 8 - store %struct.queueEntry* %1, %struct.queueEntry** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %3, align 8 - %6 = load %struct.queueEntry*, %struct.queueEntry** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_snake_ladder.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { nofree nosync nounwind willreturn } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll deleted file mode 100644 index 8c15cab7..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll +++ /dev/null @@ -1,231 +0,0 @@ -; ModuleID = 'PE-benchmarks/sort-array-wave-form-2.cpp' -source_filename = "PE-benchmarks/sort-array-wave-form-2.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [7 x i32] [i32 10, i32 90, i32 49, i32 2, i32 1, i32 5, i32 23], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_sort_array_wave_form_2.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %6, align 4 - store i32 %7, i32* %5, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = load i32*, i32** %3, align 8 - store i32 %9, i32* %10, align 4 - %11 = load i32, i32* %5, align 4 - %12 = load i32*, i32** %4, align 8 - store i32 %11, i32* %12, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z10sortInWavePii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %65, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %68 - -10: ; preds = %6 - %11 = load i32, i32* %5, align 4 - %12 = icmp sgt i32 %11, 0 - br i1 %12, label %13, label %36 - -13: ; preds = %10 - %14 = load i32*, i32** %3, align 8 - %15 = load i32, i32* %5, align 4 - %16 = sub nsw i32 %15, 1 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %14, i64 %17 - %19 = load i32, i32* %18, align 4 - %20 = load i32*, i32** %3, align 8 - %21 = load i32, i32* %5, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - %24 = load i32, i32* %23, align 4 - %25 = icmp sgt i32 %19, %24 - br i1 %25, label %26, label %36 - -26: ; preds = %13 - %27 = load i32*, i32** %3, align 8 - %28 = load i32, i32* %5, align 4 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds i32, i32* %27, i64 %29 - %31 = load i32*, i32** %3, align 8 - %32 = load i32, i32* %5, align 4 - %33 = sub nsw i32 %32, 1 - %34 = sext i32 %33 to i64 - %35 = getelementptr inbounds i32, i32* %31, i64 %34 - call void @_Z4swapPiS_(i32* %30, i32* %35) - br label %36 - -36: ; preds = %26, %13, %10 - %37 = load i32, i32* %5, align 4 - %38 = load i32, i32* %4, align 4 - %39 = sub nsw i32 %38, 1 - %40 = icmp slt i32 %37, %39 - br i1 %40, label %41, label %64 - -41: ; preds = %36 - %42 = load i32*, i32** %3, align 8 - %43 = load i32, i32* %5, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds i32, i32* %42, i64 %44 - %46 = load i32, i32* %45, align 4 - %47 = load i32*, i32** %3, align 8 - %48 = load i32, i32* %5, align 4 - %49 = add nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %47, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = icmp slt i32 %46, %52 - br i1 %53, label %54, label %64 - -54: ; preds = %41 - %55 = load i32*, i32** %3, align 8 - %56 = load i32, i32* %5, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32*, i32** %3, align 8 - %60 = load i32, i32* %5, align 4 - %61 = add nsw i32 %60, 1 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds i32, i32* %59, i64 %62 - call void @_Z4swapPiS_(i32* %58, i32* %63) - br label %64 - -64: ; preds = %54, %41, %36 - br label %65 - -65: ; preds = %64 - %66 = load i32, i32* %5, align 4 - %67 = add nsw i32 %66, 2 - store i32 %67, i32* %5, align 4 - br label %6, !llvm.loop !2 - -68: ; preds = %6 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %6 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - call void @_Z10sortInWavePii(i32* %6, i32 %7) - store i32 0, i32* %4, align 4 - br label %8 - -8: ; preds = %19, %0 - %9 = load i32, i32* %4, align 4 - %10 = load i32, i32* %3, align 4 - %11 = icmp slt i32 %9, %10 - br i1 %11, label %12, label %22 - -12: ; preds = %8 - %13 = load i32, i32* %4, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 %14 - %16 = load i32, i32* %15, align 4 - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %16) - %18 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %17, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %19 - -19: ; preds = %12 - %20 = load i32, i32* %4, align 4 - %21 = add nsw i32 %20, 1 - store i32 %21, i32* %4, align 4 - br label %8, !llvm.loop !4 - -22: ; preds = %8 - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sort_array_wave_form_2.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-n-numbers-range-0-n2-1-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-n-numbers-range-0-n2-1-linear-time.ll deleted file mode 100644 index 10c3f196..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-n-numbers-range-0-n2-1-linear-time.ll +++ /dev/null @@ -1,359 +0,0 @@ -; ModuleID = 'PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp' -source_filename = "PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@__const.main.arr = private unnamed_addr constant [7 x i32] [i32 40, i32 12, i32 45, i32 32, i32 33, i32 1, i32 22], align 16 -@.str.1 = private unnamed_addr constant [17 x i8] c"Given array is n\00", align 1 -@.str.2 = private unnamed_addr constant [19 x i8] c"nSorted array is n\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9countSortPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32, align 4 - %10 = alloca i64, align 8 - %11 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %12 = load i32, i32* %5, align 4 - %13 = zext i32 %12 to i64 - %14 = call i8* @llvm.stacksave() - store i8* %14, i8** %7, align 8 - %15 = alloca i32, i64 %13, align 16 - store i64 %13, i64* %8, align 8 - %16 = load i32, i32* %5, align 4 - %17 = zext i32 %16 to i64 - %18 = alloca i32, i64 %17, align 16 - store i64 %17, i64* %10, align 8 - store i32 0, i32* %11, align 4 - br label %19 - -19: ; preds = %27, %3 - %20 = load i32, i32* %11, align 4 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %30 - -23: ; preds = %19 - %24 = load i32, i32* %11, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %18, i64 %25 - store i32 0, i32* %26, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i32, i32* %11, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %11, align 4 - br label %19, !llvm.loop !2 - -30: ; preds = %19 - store i32 0, i32* %9, align 4 - br label %31 - -31: ; preds = %49, %30 - %32 = load i32, i32* %9, align 4 - %33 = load i32, i32* %5, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %52 - -35: ; preds = %31 - %36 = load i32*, i32** %4, align 8 - %37 = load i32, i32* %9, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i32, i32* %36, i64 %38 - %40 = load i32, i32* %39, align 4 - %41 = load i32, i32* %6, align 4 - %42 = sdiv i32 %40, %41 - %43 = load i32, i32* %5, align 4 - %44 = srem i32 %42, %43 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %18, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = add nsw i32 %47, 1 - store i32 %48, i32* %46, align 4 - br label %49 - -49: ; preds = %35 - %50 = load i32, i32* %9, align 4 - %51 = add nsw i32 %50, 1 - store i32 %51, i32* %9, align 4 - br label %31, !llvm.loop !4 - -52: ; preds = %31 - store i32 1, i32* %9, align 4 - br label %53 - -53: ; preds = %68, %52 - %54 = load i32, i32* %9, align 4 - %55 = load i32, i32* %5, align 4 - %56 = icmp slt i32 %54, %55 - br i1 %56, label %57, label %71 - -57: ; preds = %53 - %58 = load i32, i32* %9, align 4 - %59 = sub nsw i32 %58, 1 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %18, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = load i32, i32* %9, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %18, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = add nsw i32 %66, %62 - store i32 %67, i32* %65, align 4 - br label %68 - -68: ; preds = %57 - %69 = load i32, i32* %9, align 4 - %70 = add nsw i32 %69, 1 - store i32 %70, i32* %9, align 4 - br label %53, !llvm.loop !5 - -71: ; preds = %53 - %72 = load i32, i32* %5, align 4 - %73 = sub nsw i32 %72, 1 - store i32 %73, i32* %9, align 4 - br label %74 - -74: ; preds = %111, %71 - %75 = load i32, i32* %9, align 4 - %76 = icmp sge i32 %75, 0 - br i1 %76, label %77, label %114 - -77: ; preds = %74 - %78 = load i32*, i32** %4, align 8 - %79 = load i32, i32* %9, align 4 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %78, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = load i32*, i32** %4, align 8 - %84 = load i32, i32* %9, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i32, i32* %83, i64 %85 - %87 = load i32, i32* %86, align 4 - %88 = load i32, i32* %6, align 4 - %89 = sdiv i32 %87, %88 - %90 = load i32, i32* %5, align 4 - %91 = srem i32 %89, %90 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i32, i32* %18, i64 %92 - %94 = load i32, i32* %93, align 4 - %95 = sub nsw i32 %94, 1 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds i32, i32* %15, i64 %96 - store i32 %82, i32* %97, align 4 - %98 = load i32*, i32** %4, align 8 - %99 = load i32, i32* %9, align 4 - %100 = sext i32 %99 to i64 - %101 = getelementptr inbounds i32, i32* %98, i64 %100 - %102 = load i32, i32* %101, align 4 - %103 = load i32, i32* %6, align 4 - %104 = sdiv i32 %102, %103 - %105 = load i32, i32* %5, align 4 - %106 = srem i32 %104, %105 - %107 = sext i32 %106 to i64 - %108 = getelementptr inbounds i32, i32* %18, i64 %107 - %109 = load i32, i32* %108, align 4 - %110 = add nsw i32 %109, -1 - store i32 %110, i32* %108, align 4 - br label %111 - -111: ; preds = %77 - %112 = load i32, i32* %9, align 4 - %113 = add nsw i32 %112, -1 - store i32 %113, i32* %9, align 4 - br label %74, !llvm.loop !6 - -114: ; preds = %74 - store i32 0, i32* %9, align 4 - br label %115 - -115: ; preds = %128, %114 - %116 = load i32, i32* %9, align 4 - %117 = load i32, i32* %5, align 4 - %118 = icmp slt i32 %116, %117 - br i1 %118, label %119, label %131 - -119: ; preds = %115 - %120 = load i32, i32* %9, align 4 - %121 = sext i32 %120 to i64 - %122 = getelementptr inbounds i32, i32* %15, i64 %121 - %123 = load i32, i32* %122, align 4 - %124 = load i32*, i32** %4, align 8 - %125 = load i32, i32* %9, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - store i32 %123, i32* %127, align 4 - br label %128 - -128: ; preds = %119 - %129 = load i32, i32* %9, align 4 - %130 = add nsw i32 %129, 1 - store i32 %130, i32* %9, align 4 - br label %115, !llvm.loop !7 - -131: ; preds = %115 - call void @llvm.trap() - unreachable -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: cold noreturn nounwind -declare void @llvm.trap() #6 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4sortPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load i32*, i32** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = call i32 @_Z9countSortPiii(i32* %5, i32 %6, i32 1) - %8 = load i32*, i32** %3, align 8 - %9 = load i32, i32* %4, align 4 - %10 = load i32, i32* %4, align 4 - %11 = call i32 @_Z9countSortPiii(i32* %8, i32 %9, i32 %10) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #7 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %18, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %21 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %15) - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %16, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %18 - -18: ; preds = %10 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* %5, align 4 - br label %6, !llvm.loop !8 - -21: ; preds = %6 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca [7 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [7 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([7 x i32]* @__const.main.arr to i8*), i64 28, i1 false) - store i32 7, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([17 x i8], [17 x i8]* @.str.1, i64 0, i64 0)) - %6 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - call void @_Z8printArrPii(i32* %6, i32 %7) - %8 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %9 = load i32, i32* %3, align 4 - call void @_Z4sortPii(i32* %8, i32 %9) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.2, i64 0, i64 0)) - %11 = getelementptr inbounds [7 x i32], [7 x i32]* %2, i64 0, i64 0 - %12 = load i32, i32* %3, align 4 - call void @_Z8printArrPii(i32* %11, i32 %12) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { cold noreturn nounwind } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll deleted file mode 100644 index e70edb66..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll +++ /dev/null @@ -1,212 +0,0 @@ -; ModuleID = 'PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp' -source_filename = "PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [22 x i8] c" The closest pair is \00", align 1 -@.str.1 = private unnamed_addr constant [6 x i8] c" and \00", align 1 -@__const.main.arr = private unnamed_addr constant [6 x i32] [i32 10, i32 22, i32 28, i32 29, i32 30, i32 40], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z12printClosestPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - store i32 0, i32* %9, align 4 - %12 = load i32, i32* %5, align 4 - %13 = sub nsw i32 %12, 1 - store i32 %13, i32* %10, align 4 - store i32 2147483647, i32* %11, align 4 - br label %14 - -14: ; preds = %72, %3 - %15 = load i32, i32* %10, align 4 - %16 = load i32, i32* %9, align 4 - %17 = icmp sgt i32 %15, %16 - br i1 %17, label %18, label %73 - -18: ; preds = %14 - %19 = load i32*, i32** %4, align 8 - %20 = load i32, i32* %9, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds i32, i32* %19, i64 %21 - %23 = load i32, i32* %22, align 4 - %24 = load i32*, i32** %4, align 8 - %25 = load i32, i32* %10, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = add nsw i32 %23, %28 - %30 = load i32, i32* %6, align 4 - %31 = sub nsw i32 %29, %30 - %32 = call i32 @abs(i32 %31) #8 - %33 = load i32, i32* %11, align 4 - %34 = icmp slt i32 %32, %33 - br i1 %34, label %35, label %52 - -35: ; preds = %18 - %36 = load i32, i32* %9, align 4 - store i32 %36, i32* %7, align 4 - %37 = load i32, i32* %10, align 4 - store i32 %37, i32* %8, align 4 - %38 = load i32*, i32** %4, align 8 - %39 = load i32, i32* %9, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i32, i32* %38, i64 %40 - %42 = load i32, i32* %41, align 4 - %43 = load i32*, i32** %4, align 8 - %44 = load i32, i32* %10, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - %47 = load i32, i32* %46, align 4 - %48 = add nsw i32 %42, %47 - %49 = load i32, i32* %6, align 4 - %50 = sub nsw i32 %48, %49 - %51 = call i32 @abs(i32 %50) #8 - store i32 %51, i32* %11, align 4 - br label %52 - -52: ; preds = %35, %18 - %53 = load i32*, i32** %4, align 8 - %54 = load i32, i32* %9, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i32, i32* %53, i64 %55 - %57 = load i32, i32* %56, align 4 - %58 = load i32*, i32** %4, align 8 - %59 = load i32, i32* %10, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = add nsw i32 %57, %62 - %64 = load i32, i32* %6, align 4 - %65 = icmp sgt i32 %63, %64 - br i1 %65, label %66, label %69 - -66: ; preds = %52 - %67 = load i32, i32* %10, align 4 - %68 = add nsw i32 %67, -1 - store i32 %68, i32* %10, align 4 - br label %72 - -69: ; preds = %52 - %70 = load i32, i32* %9, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %9, align 4 - br label %72 - -72: ; preds = %69, %66 - br label %14, !llvm.loop !2 - -73: ; preds = %14 - %74 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) - %75 = load i32*, i32** %4, align 8 - %76 = load i32, i32* %7, align 4 - %77 = sext i32 %76 to i64 - %78 = getelementptr inbounds i32, i32* %75, i64 %77 - %79 = load i32, i32* %78, align 4 - %80 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %74, i32 %79) - %81 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %80, i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str.1, i64 0, i64 0)) - %82 = load i32*, i32** %4, align 8 - %83 = load i32, i32* %8, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i32, i32* %82, i64 %84 - %86 = load i32, i32* %85, align 4 - %87 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %81, i32 %86) - ret void -} - -; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([6 x i32]* @__const.main.arr to i8*), i64 24, i1 false) - store i32 54, i32* %3, align 4 - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %3, align 4 - call void @_Z12printClosestPiii(i32* %6, i32 %7, i32 %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readnone willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } -attributes #8 = { nounwind readnone willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll deleted file mode 100644 index e72c193b..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll +++ /dev/null @@ -1,3523 +0,0 @@ -; ModuleID = 'PE-benchmarks/strongly-connected-components.cpp' -source_filename = "PE-benchmarks/strongly-connected-components.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } -%"class.__gnu_cxx::new_allocator.4" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [61 x i8] c"Following are strongly connected components in given graph \0A\00", align 1 -@.str.2 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_strongly_connected_components.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #15 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8*, align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i8* %2, i8** %6, align 8 - %10 = load %class.Graph*, %class.Graph** %4, align 8 - %11 = load i8*, i8** %6, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i8, i8* %11, i64 %13 - store i8 1, i8* %14, align 1 - %15 = load i32, i32* %5, align 4 - %16 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %15) - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %16, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %18 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %19 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %18, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %19, i64 %21 - %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %22) #3 - %24 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %23, %"struct.std::__detail::_List_node_base"** %24, align 8 - %25 = bitcast %"struct.std::_List_iterator"* %7 to i8* - %26 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %25, i8* align 8 %26, i64 8, i1 false) - br label %27 - -27: ; preds = %49, %3 - %28 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 1 - %29 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %28, align 8 - %30 = load i32, i32* %5, align 4 - %31 = sext i32 %30 to i64 - %32 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %29, i64 %31 - %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %32) #3 - %34 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %9, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %33, %"struct.std::__detail::_List_node_base"** %34, align 8 - %35 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9) #3 - br i1 %35, label %36, label %51 - -36: ; preds = %27 - %37 = load i8*, i8** %6, align 8 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds i8, i8* %37, i64 %40 - %42 = load i8, i8* %41, align 1 - %43 = trunc i8 %42 to i1 - br i1 %43, label %48, label %44 - -44: ; preds = %36 - %45 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - %46 = load i32, i32* %45, align 4 - %47 = load i8*, i8** %6, align 8 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %10, i32 %46, i8* %47) - br label %48 - -48: ; preds = %44, %36 - br label %49 - -49: ; preds = %48 - %50 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 - br label %27, !llvm.loop !2 - -51: ; preds = %27 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - to label %8 unwind label %9 - -8: ; preds = %1 - ret i32* %7 - -9: ; preds = %1 - %10 = landingpad { i8*, i32 } - catch i8* null - %11 = extractvalue { i8*, i32 } %10, 0 - call void @__clang_call_terminate(i8* %11) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 { - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"struct.std::_List_iterator", align 8 - %6 = alloca %"struct.std::_List_iterator", align 8 - %7 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 %10) - store i32 0, i32* %4, align 4 - br label %11 - -11: ; preds = %45, %1 - %12 = load i32, i32* %4, align 4 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = icmp slt i32 %12, %14 - br i1 %15, label %16, label %48 - -16: ; preds = %11 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %5) #3 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %18 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %17, align 8 - %19 = load i32, i32* %4, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %18, i64 %20 - %22 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %21) #3 - %23 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %6, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %22, %"struct.std::__detail::_List_node_base"** %23, align 8 - %24 = bitcast %"struct.std::_List_iterator"* %5 to i8* - %25 = bitcast %"struct.std::_List_iterator"* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - br label %26 - -26: ; preds = %42, %16 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 1 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %27, align 8 - %29 = load i32, i32* %4, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %28, i64 %30 - %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %31) #3 - %33 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %32, %"struct.std::__detail::_List_node_base"** %33, align 8 - %34 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %5, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %7) #3 - br i1 %34, label %35, label %44 - -35: ; preds = %26 - %36 = getelementptr inbounds %class.Graph, %class.Graph* %2, i32 0, i32 1 - %37 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %36, align 8 - %38 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %5) #3 - %39 = load i32, i32* %38, align 4 - %40 = sext i32 %39 to i64 - %41 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %37, i64 %40 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %41, i32* nonnull align 4 dereferenceable(4) %4) - br label %42 - -42: ; preds = %35 - %43 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %5) #3 - br label %26, !llvm.loop !4 - -44: ; preds = %26 - br label %45 - -45: ; preds = %44 - %46 = load i32, i32* %4, align 4 - %47 = add nsw i32 %46, 1 - store i32 %47, i32* %4, align 4 - br label %11, !llvm.loop !5 - -48: ; preds = %11 - %49 = bitcast %class.Graph* %2 to { i32, %"class.std::__cxx11::list"* }* - %50 = load { i32, %"class.std::__cxx11::list"* }, { i32, %"class.std::__cxx11::list"* }* %49, align 8 - ret { i32, %"class.std::__cxx11::list"* } %50 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, %"class.std::stack"* nonnull align 8 dereferenceable(80) %3) #7 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::stack"*, align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i8* %2, i8** %7, align 8 - store %"class.std::stack"* %3, %"class.std::stack"** %8, align 8 - %12 = load %class.Graph*, %class.Graph** %5, align 8 - %13 = load i8*, i8** %7, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i8, i8* %13, i64 %15 - store i8 1, i8* %16, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %18 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %17, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %18, i64 %20 - %22 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %21) #3 - %23 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %22, %"struct.std::__detail::_List_node_base"** %23, align 8 - %24 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %25 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - br label %26 - -26: ; preds = %49, %4 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %27, align 8 - %29 = load i32, i32* %6, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %28, i64 %30 - %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %31) #3 - %33 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %32, %"struct.std::__detail::_List_node_base"** %33, align 8 - %34 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - br i1 %34, label %35, label %51 - -35: ; preds = %26 - %36 = load i8*, i8** %7, align 8 - %37 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %38 = load i32, i32* %37, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i8, i8* %36, i64 %39 - %41 = load i8, i8* %40, align 1 - %42 = trunc i8 %41 to i1 - br i1 %42, label %48, label %43 - -43: ; preds = %35 - %44 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %45 = load i32, i32* %44, align 4 - %46 = load i8*, i8** %7, align 8 - %47 = load %"class.std::stack"*, %"class.std::stack"** %8, align 8 - call void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %12, i32 %45, i8* %46, %"class.std::stack"* nonnull align 8 dereferenceable(80) %47) - br label %48 - -48: ; preds = %43, %35 - br label %49 - -49: ; preds = %48 - %50 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - br label %26, !llvm.loop !6 - -51: ; preds = %26 - %52 = load %"class.std::stack"*, %"class.std::stack"** %8, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %52, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %6, i32* nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %class.Graph*, align 8 - %3 = alloca %"class.std::stack", align 8 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca %class.Graph, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %12 = load %class.Graph*, %class.Graph** %2, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = sext i32 %14 to i64 - %16 = invoke noalias nonnull i8* @_Znam(i64 %15) #15 - to label %17 unwind label %31 - -17: ; preds = %1 - store i8* %16, i8** %4, align 8 - store i32 0, i32* %7, align 4 - br label %18 - -18: ; preds = %28, %17 - %19 = load i32, i32* %7, align 4 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %19, %21 - br i1 %22, label %23, label %35 - -23: ; preds = %18 - %24 = load i8*, i8** %4, align 8 - %25 = load i32, i32* %7, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i8, i8* %24, i64 %26 - store i8 0, i8* %27, align 1 - br label %28 - -28: ; preds = %23 - %29 = load i32, i32* %7, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %7, align 4 - br label %18, !llvm.loop !7 - -31: ; preds = %101, %98, %87, %85, %80, %58, %50, %1 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %5, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %6, align 4 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %3) #3 - br label %106 - -35: ; preds = %18 - store i32 0, i32* %8, align 4 - br label %36 - -36: ; preds = %55, %35 - %37 = load i32, i32* %8, align 4 - %38 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %39 = load i32, i32* %38, align 8 - %40 = icmp slt i32 %37, %39 - br i1 %40, label %41, label %58 - -41: ; preds = %36 - %42 = load i8*, i8** %4, align 8 - %43 = load i32, i32* %8, align 4 - %44 = sext i32 %43 to i64 - %45 = getelementptr inbounds i8, i8* %42, i64 %44 - %46 = load i8, i8* %45, align 1 - %47 = trunc i8 %46 to i1 - %48 = zext i1 %47 to i32 - %49 = icmp eq i32 %48, 0 - br i1 %49, label %50, label %54 - -50: ; preds = %41 - %51 = load i32, i32* %8, align 4 - %52 = load i8*, i8** %4, align 8 - invoke void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %12, i32 %51, i8* %52, %"class.std::stack"* nonnull align 8 dereferenceable(80) %3) - to label %53 unwind label %31 - -53: ; preds = %50 - br label %54 - -54: ; preds = %53, %41 - br label %55 - -55: ; preds = %54 - %56 = load i32, i32* %8, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %8, align 4 - br label %36, !llvm.loop !8 - -58: ; preds = %36 - %59 = invoke { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeEv(%class.Graph* nonnull dereferenceable(16) %12) - to label %60 unwind label %31 - -60: ; preds = %58 - %61 = bitcast %class.Graph* %9 to { i32, %"class.std::__cxx11::list"* }* - %62 = getelementptr inbounds { i32, %"class.std::__cxx11::list"* }, { i32, %"class.std::__cxx11::list"* }* %61, i32 0, i32 0 - %63 = extractvalue { i32, %"class.std::__cxx11::list"* } %59, 0 - store i32 %63, i32* %62, align 8 - %64 = getelementptr inbounds { i32, %"class.std::__cxx11::list"* }, { i32, %"class.std::__cxx11::list"* }* %61, i32 0, i32 1 - %65 = extractvalue { i32, %"class.std::__cxx11::list"* } %59, 1 - store %"class.std::__cxx11::list"* %65, %"class.std::__cxx11::list"** %64, align 8 - store i32 0, i32* %10, align 4 - br label %66 - -66: ; preds = %76, %60 - %67 = load i32, i32* %10, align 4 - %68 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %69 = load i32, i32* %68, align 8 - %70 = icmp slt i32 %67, %69 - br i1 %70, label %71, label %79 - -71: ; preds = %66 - %72 = load i8*, i8** %4, align 8 - %73 = load i32, i32* %10, align 4 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i8, i8* %72, i64 %74 - store i8 0, i8* %75, align 1 - br label %76 - -76: ; preds = %71 - %77 = load i32, i32* %10, align 4 - %78 = add nsw i32 %77, 1 - store i32 %78, i32* %10, align 4 - br label %66, !llvm.loop !9 - -79: ; preds = %66 - br label %80 - -80: ; preds = %104, %79 - %81 = invoke zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - to label %82 unwind label %31 - -82: ; preds = %80 - %83 = zext i1 %81 to i32 - %84 = icmp eq i32 %83, 0 - br i1 %84, label %85, label %105 - -85: ; preds = %82 - %86 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - to label %87 unwind label %31 - -87: ; preds = %85 - %88 = load i32, i32* %86, align 4 - store i32 %88, i32* %11, align 4 - invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - to label %89 unwind label %31 - -89: ; preds = %87 - %90 = load i8*, i8** %4, align 8 - %91 = load i32, i32* %11, align 4 - %92 = sext i32 %91 to i64 - %93 = getelementptr inbounds i8, i8* %90, i64 %92 - %94 = load i8, i8* %93, align 1 - %95 = trunc i8 %94 to i1 - %96 = zext i1 %95 to i32 - %97 = icmp eq i32 %96, 0 - br i1 %97, label %98, label %104 - -98: ; preds = %89 - %99 = load i32, i32* %11, align 4 - %100 = load i8*, i8** %4, align 8 - invoke void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %9, i32 %99, i8* %100) - to label %101 unwind label %31 - -101: ; preds = %98 - %102 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %103 unwind label %31 - -103: ; preds = %101 - br label %104 - -104: ; preds = %103, %89 - br label %80, !llvm.loop !10 - -105: ; preds = %82 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %3) #3 - ret void - -106: ; preds = %31 - %107 = load i8*, i8** %5, align 8 - %108 = load i32, i32* %6, align 4 - %109 = insertvalue { i8*, i32 } undef, i8* %107, 0 - %110 = insertvalue { i8*, i32 } %109, i32 %108, 1 - resume { i8*, i32 } %110 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i1 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([61 x i8], [61 x i8]* @.str.1, i64 0, i64 0)) - call void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceable(16) %2) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %7, %"struct.std::_Deque_iterator"* %3, %"struct.std::_Deque_iterator"* %4, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %9) - to label %10 unwind label %12 - -10: ; preds = %1 - %11 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) #3 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %16) #3 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %0, %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"* %2, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %3) #8 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %14, i32** %20) #3 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %24, i64 %28) #3 - br label %29 - -29: ; preds = %9, %1 - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %30) #3 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, i32* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !11 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i64 %2) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.3", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load i32**, i32*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %7, i32** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32* %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = load i32*, i32** %4, align 8 - %9 = invoke i64 @_ZSt16__deque_buf_sizem(i64 4) - to label %10 unwind label %12 - -10: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, i32* %8, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %10 - ret void - -12: ; preds = %10, %2 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - call void @__clang_call_terminate(i8* %14) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* noalias sret(%"class.std::allocator.3") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i32** %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %8 = bitcast %"class.std::allocator.3"* %7 to %"class.__gnu_cxx::new_allocator.4"* - %9 = load i32**, i32*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %8, i32** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.3"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %2, align 8 - %3 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %2, align 8 - %4 = bitcast %"class.std::allocator.3"* %3 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store %"class.std::allocator.0"* %1, %"class.std::allocator.0"** %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i32** %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %8 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %9 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %10 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %9) - store %"struct.std::_List_node"* %10, %"struct.std::_List_node"** %5, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %8 to %"class.std::__cxx11::_List_base"* - %12 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) #3 - store %"class.std::allocator"* %12, %"class.std::allocator"** %6, align 8 - %13 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %14 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* %14) #3 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %17 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %16) - %18 = load i32*, i32** %4, align 8 - %19 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %18) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, i32* %17, i32* nonnull align 4 dereferenceable(4) %19) #3 - %20 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %21 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %21 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 -1 - %19 = icmp ne i32* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator.0"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %23, i32* %29, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - %37 = getelementptr inbounds i32, i32* %36, i32 1 - store i32* %37, i32** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, i32* nonnull align 4 dereferenceable(4) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.2, i64 0, i64 0)) #17 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i64 1 - store i32* %12, i32** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator.0"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = load i32*, i32** %4, align 8 - %30 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %29) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %22, i32* %28, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load i32**, i32*** %39, align 8 - %41 = getelementptr inbounds i32*, i32** %40, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, i32** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load i32*, i32** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store i32* %47, i32** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #13 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %7 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, i32** %1) #8 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds i32, i32* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store i32* %14, i32** %15, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #8 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load i32*, i32** %22, align 8 - %24 = ptrtoint i32* %20 to i64 - %25 = ptrtoint i32* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 4 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = ptrtoint i32* %31 to i64 - %36 = ptrtoint i32* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 4 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #8 comdat align 2 { - %1 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - ret i64 %1 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #7 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %79, i32** %86, i32** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %95, i32** %102, i32** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store i32** %124, i32*** %11, align 8 - %125 = load i32**, i32*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %144, i32** %151, i32** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, i32** %159, i64 %164) #3 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, i32** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, i32** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - ret i32** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #8 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %0, i32** %1) #8 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #8 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32**, i32*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32*, i32** %24, i64 %25 - ret i32** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32**, i32*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32*, i32** %27, i64 %29 - ret i32** %30 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - %7 = load i64, i64* %4, align 8 - %8 = call i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32** %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to i32** - ret i32** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #14 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %47, i32** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #17 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, i32** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load i32**, i32*** %9, align 8 - %85 = getelementptr inbounds i32*, i32** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, i32** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds i32, i32* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #16 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !12 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load i32**, i32*** %5, align 8 - %31 = load i32**, i32*** %7, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, i32** %30, i32** %31) #3 - invoke void @__cxa_rethrow() #17 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #16 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #8 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - %6 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret i32* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3, i32** %12) #3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 3 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 1 - %15 = load i32*, i32** %14, align 8 - %16 = icmp ne i32* %9, %15 - br i1 %16, label %17, label %33 - -17: ; preds = %1 - %18 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 0 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i32 -1 - store i32* %24, i32** %22, align 8 - %25 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %26 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %25) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 3 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %26, i32* %32) #3 - br label %35 - -33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %34 unwind label %36 - -34: ; preds = %33 - br label %35 - -35: ; preds = %34, %17 - ret void - -36: ; preds = %33 - %37 = landingpad { i8*, i32 } - catch i8* null - %38 = extractvalue { i8*, i32 } %37, 0 - call void @__clang_call_terminate(i8* %38) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %7, i32 0, i32 3 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 1 - %10 = load i32*, i32** %9, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4, i32* %10) #3 - %11 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %12 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %12 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %13, i32 0, i32 3 - %15 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 3 - %20 = load i32**, i32*** %19, align 8 - %21 = getelementptr inbounds i32*, i32** %20, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %14, i32** %21) #3 - %22 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 2 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i64 -1 - %29 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - store i32* %28, i32** %33, align 8 - %34 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %35 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %34) #3 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 3 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %35, i32* %41) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_strongly_connected_components.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noinline noreturn nounwind } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll deleted file mode 100644 index 58abb3ae..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll +++ /dev/null @@ -1,286 +0,0 @@ -; ModuleID = 'PE-benchmarks/subset-sum-problem.cpp' -source_filename = "PE-benchmarks/subset-sum-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@__const.main.set = private unnamed_addr constant [6 x i32] [i32 3, i32 34, i32 4, i32 12, i32 5, i32 2], align 16 -@.str = private unnamed_addr constant [30 x i8] c"Found a subset with given sum\00", align 1 -@.str.1 = private unnamed_addr constant [25 x i8] c"No subset with given sum\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z11isSubsetSumPiii(i32* %0, i32 %1, i32 %2) #0 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %14 = load i32, i32* %5, align 4 - %15 = add nsw i32 %14, 1 - %16 = zext i32 %15 to i64 - %17 = load i32, i32* %6, align 4 - %18 = add nsw i32 %17, 1 - %19 = zext i32 %18 to i64 - %20 = call i8* @llvm.stacksave() - store i8* %20, i8** %7, align 8 - %21 = mul nuw i64 %16, %19 - %22 = alloca i8, i64 %21, align 16 - store i64 %16, i64* %8, align 8 - store i64 %19, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %23 - -23: ; preds = %33, %3 - %24 = load i32, i32* %10, align 4 - %25 = load i32, i32* %5, align 4 - %26 = icmp sle i32 %24, %25 - br i1 %26, label %27, label %36 - -27: ; preds = %23 - %28 = load i32, i32* %10, align 4 - %29 = sext i32 %28 to i64 - %30 = mul nsw i64 %29, %19 - %31 = getelementptr inbounds i8, i8* %22, i64 %30 - %32 = getelementptr inbounds i8, i8* %31, i64 0 - store i8 1, i8* %32, align 1 - br label %33 - -33: ; preds = %27 - %34 = load i32, i32* %10, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %10, align 4 - br label %23, !llvm.loop !2 - -36: ; preds = %23 - store i32 1, i32* %11, align 4 - br label %37 - -37: ; preds = %47, %36 - %38 = load i32, i32* %11, align 4 - %39 = load i32, i32* %6, align 4 - %40 = icmp sle i32 %38, %39 - br i1 %40, label %41, label %50 - -41: ; preds = %37 - %42 = mul nsw i64 0, %19 - %43 = getelementptr inbounds i8, i8* %22, i64 %42 - %44 = load i32, i32* %11, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i8, i8* %43, i64 %45 - store i8 0, i8* %46, align 1 - br label %47 - -47: ; preds = %41 - %48 = load i32, i32* %11, align 4 - %49 = add nsw i32 %48, 1 - store i32 %49, i32* %11, align 4 - br label %37, !llvm.loop !4 - -50: ; preds = %37 - store i32 1, i32* %12, align 4 - br label %51 - -51: ; preds = %141, %50 - %52 = load i32, i32* %12, align 4 - %53 = load i32, i32* %5, align 4 - %54 = icmp sle i32 %52, %53 - br i1 %54, label %55, label %144 - -55: ; preds = %51 - store i32 1, i32* %13, align 4 - br label %56 - -56: ; preds = %137, %55 - %57 = load i32, i32* %13, align 4 - %58 = load i32, i32* %6, align 4 - %59 = icmp sle i32 %57, %58 - br i1 %59, label %60, label %140 - -60: ; preds = %56 - %61 = load i32, i32* %13, align 4 - %62 = load i32*, i32** %4, align 8 - %63 = load i32, i32* %12, align 4 - %64 = sub nsw i32 %63, 1 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds i32, i32* %62, i64 %65 - %67 = load i32, i32* %66, align 4 - %68 = icmp slt i32 %61, %67 - br i1 %68, label %69, label %88 - -69: ; preds = %60 - %70 = load i32, i32* %12, align 4 - %71 = sub nsw i32 %70, 1 - %72 = sext i32 %71 to i64 - %73 = mul nsw i64 %72, %19 - %74 = getelementptr inbounds i8, i8* %22, i64 %73 - %75 = load i32, i32* %13, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i8, i8* %74, i64 %76 - %78 = load i8, i8* %77, align 1 - %79 = trunc i8 %78 to i1 - %80 = load i32, i32* %12, align 4 - %81 = sext i32 %80 to i64 - %82 = mul nsw i64 %81, %19 - %83 = getelementptr inbounds i8, i8* %22, i64 %82 - %84 = load i32, i32* %13, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %83, i64 %85 - %87 = zext i1 %79 to i8 - store i8 %87, i8* %86, align 1 - br label %88 - -88: ; preds = %69, %60 - %89 = load i32, i32* %13, align 4 - %90 = load i32*, i32** %4, align 8 - %91 = load i32, i32* %12, align 4 - %92 = sub nsw i32 %91, 1 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %90, i64 %93 - %95 = load i32, i32* %94, align 4 - %96 = icmp sge i32 %89, %95 - br i1 %96, label %97, label %136 - -97: ; preds = %88 - %98 = load i32, i32* %12, align 4 - %99 = sub nsw i32 %98, 1 - %100 = sext i32 %99 to i64 - %101 = mul nsw i64 %100, %19 - %102 = getelementptr inbounds i8, i8* %22, i64 %101 - %103 = load i32, i32* %13, align 4 - %104 = sext i32 %103 to i64 - %105 = getelementptr inbounds i8, i8* %102, i64 %104 - %106 = load i8, i8* %105, align 1 - %107 = trunc i8 %106 to i1 - br i1 %107, label %126, label %108 - -108: ; preds = %97 - %109 = load i32, i32* %12, align 4 - %110 = sub nsw i32 %109, 1 - %111 = sext i32 %110 to i64 - %112 = mul nsw i64 %111, %19 - %113 = getelementptr inbounds i8, i8* %22, i64 %112 - %114 = load i32, i32* %13, align 4 - %115 = load i32*, i32** %4, align 8 - %116 = load i32, i32* %12, align 4 - %117 = sub nsw i32 %116, 1 - %118 = sext i32 %117 to i64 - %119 = getelementptr inbounds i32, i32* %115, i64 %118 - %120 = load i32, i32* %119, align 4 - %121 = sub nsw i32 %114, %120 - %122 = sext i32 %121 to i64 - %123 = getelementptr inbounds i8, i8* %113, i64 %122 - %124 = load i8, i8* %123, align 1 - %125 = trunc i8 %124 to i1 - br label %126 - -126: ; preds = %108, %97 - %127 = phi i1 [ true, %97 ], [ %125, %108 ] - %128 = load i32, i32* %12, align 4 - %129 = sext i32 %128 to i64 - %130 = mul nsw i64 %129, %19 - %131 = getelementptr inbounds i8, i8* %22, i64 %130 - %132 = load i32, i32* %13, align 4 - %133 = sext i32 %132 to i64 - %134 = getelementptr inbounds i8, i8* %131, i64 %133 - %135 = zext i1 %127 to i8 - store i8 %135, i8* %134, align 1 - br label %136 - -136: ; preds = %126, %88 - br label %137 - -137: ; preds = %136 - %138 = load i32, i32* %13, align 4 - %139 = add nsw i32 %138, 1 - store i32 %139, i32* %13, align 4 - br label %56, !llvm.loop !5 - -140: ; preds = %56 - br label %141 - -141: ; preds = %140 - %142 = load i32, i32* %12, align 4 - %143 = add nsw i32 %142, 1 - store i32 %143, i32* %12, align 4 - br label %51, !llvm.loop !6 - -144: ; preds = %51 - %145 = load i32, i32* %5, align 4 - %146 = sext i32 %145 to i64 - %147 = mul nsw i64 %146, %19 - %148 = getelementptr inbounds i8, i8* %22, i64 %147 - %149 = load i32, i32* %6, align 4 - %150 = sext i32 %149 to i64 - %151 = getelementptr inbounds i8, i8* %148, i64 %150 - %152 = load i8, i8* %151, align 1 - %153 = trunc i8 %152 to i1 - %154 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %154) - ret i1 %153 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [6 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [6 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([6 x i32]* @__const.main.set to i8*), i64 24, i1 false) - store i32 9, i32* %3, align 4 - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [6 x i32], [6 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %3, align 4 - %9 = call zeroext i1 @_Z11isSubsetSumPiii(i32* %6, i32 %7, i32 %8) - %10 = zext i1 %9 to i32 - %11 = icmp eq i32 %10, 1 - br i1 %11, label %12, label %14 - -12: ; preds = %0 - %13 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([30 x i8], [30 x i8]* @.str, i64 0, i64 0)) - br label %16 - -14: ; preds = %0 - %15 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([25 x i8], [25 x i8]* @.str.1, i64 0, i64 0)) - br label %16 - -16: ; preds = %14, %12 - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -declare dso_local i32 @printf(i8*, ...) #4 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { nofree nosync nounwind willreturn } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } -attributes #4 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum.ll deleted file mode 100644 index 5a372ecf..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum.ll +++ /dev/null @@ -1,363 +0,0 @@ -; ModuleID = 'PE-benchmarks/subset-sum.cpp' -source_filename = "PE-benchmarks/subset-sum.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [4 x i8] c"%*d\00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"n\00", align 1 -@_ZL11total_nodes = internal global i32 0, align 4 -@__const.main.weights = private unnamed_addr constant [8 x i32] [i32 15, i32 22, i32 14, i32 26, i32 32, i32 9, i32 16, i32 8], align 16 -@.str.2 = private unnamed_addr constant [20 x i8] c"Nodes generated %dn\00", align 1 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z11printSubsetPii(i32* %0, i32 %1) #0 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - store i32 0, i32* %5, align 4 - br label %6 - -6: ; preds = %17, %2 - %7 = load i32, i32* %5, align 4 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %7, %8 - br i1 %9, label %10, label %20 - -10: ; preds = %6 - %11 = load i32*, i32** %3, align 8 - %12 = load i32, i32* %5, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds i32, i32* %11, i64 %13 - %15 = load i32, i32* %14, align 4 - %16 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 5, i32 %15) - br label %17 - -17: ; preds = %10 - %18 = load i32, i32* %5, align 4 - %19 = add nsw i32 %18, 1 - store i32 %19, i32* %5, align 4 - br label %6, !llvm.loop !2 - -20: ; preds = %6 - %21 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z10comparatorPKvS0_(i8* %0, i8* %1) #2 { - %3 = alloca i8*, align 8 - %4 = alloca i8*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store i8* %0, i8** %3, align 8 - store i8* %1, i8** %4, align 8 - %7 = load i8*, i8** %3, align 8 - %8 = bitcast i8* %7 to i32* - store i32* %8, i32** %5, align 8 - %9 = load i8*, i8** %4, align 8 - %10 = bitcast i8* %9 to i32* - store i32* %10, i32** %6, align 8 - %11 = load i32*, i32** %5, align 8 - %12 = load i32, i32* %11, align 4 - %13 = load i32*, i32** %6, align 8 - %14 = load i32, i32* %13, align 4 - %15 = icmp sgt i32 %12, %14 - %16 = zext i1 %15 to i32 - ret i32 %16 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10subset_sumPiS_iiiii(i32* %0, i32* %1, i32 %2, i32 %3, i32 %4, i32 %5, i32 %6) #0 { - %8 = alloca i32*, align 8 - %9 = alloca i32*, align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - %12 = alloca i32, align 4 - %13 = alloca i32, align 4 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %8, align 8 - store i32* %1, i32** %9, align 8 - store i32 %2, i32* %10, align 4 - store i32 %3, i32* %11, align 4 - store i32 %4, i32* %12, align 4 - store i32 %5, i32* %13, align 4 - store i32 %6, i32* %14, align 4 - %16 = load i32, i32* @_ZL11total_nodes, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* @_ZL11total_nodes, align 4 - %18 = load i32, i32* %14, align 4 - %19 = load i32, i32* %12, align 4 - %20 = icmp eq i32 %18, %19 - br i1 %20, label %21, label %62 - -21: ; preds = %7 - %22 = load i32*, i32** %9, align 8 - %23 = load i32, i32* %11, align 4 - call void @_Z11printSubsetPii(i32* %22, i32 %23) - %24 = load i32, i32* %13, align 4 - %25 = add nsw i32 %24, 1 - %26 = load i32, i32* %10, align 4 - %27 = icmp slt i32 %25, %26 - br i1 %27, label %28, label %61 - -28: ; preds = %21 - %29 = load i32, i32* %12, align 4 - %30 = load i32*, i32** %8, align 8 - %31 = load i32, i32* %13, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i32, i32* %30, i64 %32 - %34 = load i32, i32* %33, align 4 - %35 = sub nsw i32 %29, %34 - %36 = load i32*, i32** %8, align 8 - %37 = load i32, i32* %13, align 4 - %38 = add nsw i32 %37, 1 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i32, i32* %36, i64 %39 - %41 = load i32, i32* %40, align 4 - %42 = add nsw i32 %35, %41 - %43 = load i32, i32* %14, align 4 - %44 = icmp sle i32 %42, %43 - br i1 %44, label %45, label %61 - -45: ; preds = %28 - %46 = load i32*, i32** %8, align 8 - %47 = load i32*, i32** %9, align 8 - %48 = load i32, i32* %10, align 4 - %49 = load i32, i32* %11, align 4 - %50 = sub nsw i32 %49, 1 - %51 = load i32, i32* %12, align 4 - %52 = load i32*, i32** %8, align 8 - %53 = load i32, i32* %13, align 4 - %54 = sext i32 %53 to i64 - %55 = getelementptr inbounds i32, i32* %52, i64 %54 - %56 = load i32, i32* %55, align 4 - %57 = sub nsw i32 %51, %56 - %58 = load i32, i32* %13, align 4 - %59 = add nsw i32 %58, 1 - %60 = load i32, i32* %14, align 4 - call void @_Z10subset_sumPiS_iiiii(i32* %46, i32* %47, i32 %48, i32 %50, i32 %57, i32 %59, i32 %60) - br label %61 - -61: ; preds = %45, %28, %21 - br label %123 - -62: ; preds = %7 - %63 = load i32, i32* %13, align 4 - %64 = load i32, i32* %10, align 4 - %65 = icmp slt i32 %63, %64 - br i1 %65, label %66, label %122 - -66: ; preds = %62 - %67 = load i32, i32* %12, align 4 - %68 = load i32*, i32** %8, align 8 - %69 = load i32, i32* %13, align 4 - %70 = sext i32 %69 to i64 - %71 = getelementptr inbounds i32, i32* %68, i64 %70 - %72 = load i32, i32* %71, align 4 - %73 = add nsw i32 %67, %72 - %74 = load i32, i32* %14, align 4 - %75 = icmp sle i32 %73, %74 - br i1 %75, label %76, label %122 - -76: ; preds = %66 - %77 = load i32, i32* %13, align 4 - store i32 %77, i32* %15, align 4 - br label %78 - -78: ; preds = %118, %76 - %79 = load i32, i32* %15, align 4 - %80 = load i32, i32* %10, align 4 - %81 = icmp slt i32 %79, %80 - br i1 %81, label %82, label %121 - -82: ; preds = %78 - %83 = load i32*, i32** %8, align 8 - %84 = load i32, i32* %15, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i32, i32* %83, i64 %85 - %87 = load i32, i32* %86, align 4 - %88 = load i32*, i32** %9, align 8 - %89 = load i32, i32* %11, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i32, i32* %88, i64 %90 - store i32 %87, i32* %91, align 4 - %92 = load i32, i32* %12, align 4 - %93 = load i32*, i32** %8, align 8 - %94 = load i32, i32* %15, align 4 - %95 = sext i32 %94 to i64 - %96 = getelementptr inbounds i32, i32* %93, i64 %95 - %97 = load i32, i32* %96, align 4 - %98 = add nsw i32 %92, %97 - %99 = load i32, i32* %14, align 4 - %100 = icmp sle i32 %98, %99 - br i1 %100, label %101, label %117 - -101: ; preds = %82 - %102 = load i32*, i32** %8, align 8 - %103 = load i32*, i32** %9, align 8 - %104 = load i32, i32* %10, align 4 - %105 = load i32, i32* %11, align 4 - %106 = add nsw i32 %105, 1 - %107 = load i32, i32* %12, align 4 - %108 = load i32*, i32** %8, align 8 - %109 = load i32, i32* %15, align 4 - %110 = sext i32 %109 to i64 - %111 = getelementptr inbounds i32, i32* %108, i64 %110 - %112 = load i32, i32* %111, align 4 - %113 = add nsw i32 %107, %112 - %114 = load i32, i32* %15, align 4 - %115 = add nsw i32 %114, 1 - %116 = load i32, i32* %14, align 4 - call void @_Z10subset_sumPiS_iiiii(i32* %102, i32* %103, i32 %104, i32 %106, i32 %113, i32 %115, i32 %116) - br label %117 - -117: ; preds = %101, %82 - br label %118 - -118: ; preds = %117 - %119 = load i32, i32* %15, align 4 - %120 = add nsw i32 %119, 1 - store i32 %120, i32* %15, align 4 - br label %78, !llvm.loop !4 - -121: ; preds = %78 - br label %122 - -122: ; preds = %121, %66, %62 - br label %123 - -123: ; preds = %61, %122 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z15generateSubsetsPiii(i32* %0, i32 %1, i32 %2) #0 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = mul i64 %11, 4 - %13 = call noalias i8* @malloc(i64 %12) #6 - %14 = bitcast i8* %13 to i32* - store i32* %14, i32** %7, align 8 - store i32 0, i32* %8, align 4 - %15 = load i32*, i32** %4, align 8 - %16 = bitcast i32* %15 to i8* - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - call void @qsort(i8* %16, i64 %18, i64 4, i32 (i8*, i8*)* @_Z10comparatorPKvS0_) - store i32 0, i32* %9, align 4 - br label %19 - -19: ; preds = %31, %3 - %20 = load i32, i32* %9, align 4 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %20, %21 - br i1 %22, label %23, label %34 - -23: ; preds = %19 - %24 = load i32*, i32** %4, align 8 - %25 = load i32, i32* %9, align 4 - %26 = sext i32 %25 to i64 - %27 = getelementptr inbounds i32, i32* %24, i64 %26 - %28 = load i32, i32* %27, align 4 - %29 = load i32, i32* %8, align 4 - %30 = add nsw i32 %29, %28 - store i32 %30, i32* %8, align 4 - br label %31 - -31: ; preds = %23 - %32 = load i32, i32* %9, align 4 - %33 = add nsw i32 %32, 1 - store i32 %33, i32* %9, align 4 - br label %19, !llvm.loop !5 - -34: ; preds = %19 - %35 = load i32*, i32** %4, align 8 - %36 = getelementptr inbounds i32, i32* %35, i64 0 - %37 = load i32, i32* %36, align 4 - %38 = load i32, i32* %6, align 4 - %39 = icmp sle i32 %37, %38 - br i1 %39, label %40, label %49 - -40: ; preds = %34 - %41 = load i32, i32* %8, align 4 - %42 = load i32, i32* %6, align 4 - %43 = icmp sge i32 %41, %42 - br i1 %43, label %44, label %49 - -44: ; preds = %40 - %45 = load i32*, i32** %4, align 8 - %46 = load i32*, i32** %7, align 8 - %47 = load i32, i32* %5, align 4 - %48 = load i32, i32* %6, align 4 - call void @_Z10subset_sumPiS_iiiii(i32* %45, i32* %46, i32 %47, i32 0, i32 0, i32 0, i32 %48) - br label %49 - -49: ; preds = %44, %40, %34 - %50 = load i32*, i32** %7, align 8 - %51 = bitcast i32* %50 to i8* - call void @free(i8* %51) #6 - ret void -} - -; Function Attrs: nounwind -declare dso_local noalias i8* @malloc(i64) #3 - -declare dso_local void @qsort(i8*, i64, i64, i32 (i8*, i8*)*) #1 - -; Function Attrs: nounwind -declare dso_local void @free(i8*) #3 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - %2 = alloca [8 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [8 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([8 x i32]* @__const.main.weights to i8*), i64 32, i1 false) - store i32 53, i32* %3, align 4 - store i32 8, i32* %4, align 4 - %6 = getelementptr inbounds [8 x i32], [8 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %4, align 4 - %8 = load i32, i32* %3, align 4 - call void @_Z15generateSubsetsPiii(i32* %6, i32 %7, i32 %8) - %9 = load i32, i32* @_ZL11total_nodes, align 4 - %10 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([20 x i8], [20 x i8]* @.str.2, i64 0, i64 0), i32 %9) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn } -attributes #6 = { nounwind } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sudoku.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/sudoku.ll deleted file mode 100644 index 2dac26ce..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sudoku.ll +++ /dev/null @@ -1,563 +0,0 @@ -; ModuleID = 'PE-benchmarks/sudoku.cpp' -source_filename = "PE-benchmarks/sudoku.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@__const.main.grid = private unnamed_addr constant [9 x [9 x i32]] [[9 x i32] [i32 3, i32 0, i32 6, i32 5, i32 0, i32 8, i32 4, i32 0, i32 0], [9 x i32] [i32 5, i32 2, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0], [9 x i32] [i32 0, i32 8, i32 7, i32 0, i32 0, i32 0, i32 0, i32 3, i32 1], [9 x i32] [i32 0, i32 0, i32 3, i32 0, i32 1, i32 0, i32 0, i32 8, i32 0], [9 x i32] [i32 9, i32 0, i32 0, i32 8, i32 6, i32 3, i32 0, i32 0, i32 5], [9 x i32] [i32 0, i32 5, i32 0, i32 0, i32 9, i32 0, i32 6, i32 0, i32 0], [9 x i32] [i32 1, i32 3, i32 0, i32 0, i32 0, i32 0, i32 2, i32 5, i32 0], [9 x i32] [i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 7, i32 4], [9 x i32] [i32 0, i32 0, i32 5, i32 2, i32 0, i32 6, i32 3, i32 0, i32 0]], align 16 -@.str.1 = private unnamed_addr constant [19 x i8] c"No solution exists\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_sudoku.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %0) #4 { - %2 = alloca i1, align 1 - %3 = alloca [9 x i32]*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %3, align 8 - %7 = load [9 x i32]*, [9 x i32]** %3, align 8 - %8 = call zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* %7, i32* nonnull align 4 dereferenceable(4) %4, i32* nonnull align 4 dereferenceable(4) %5) - br i1 %8, label %10, label %9 - -9: ; preds = %1 - store i1 true, i1* %2, align 1 - br label %45 - -10: ; preds = %1 - store i32 1, i32* %6, align 4 - br label %11 - -11: ; preds = %41, %10 - %12 = load i32, i32* %6, align 4 - %13 = icmp sle i32 %12, 9 - br i1 %13, label %14, label %44 - -14: ; preds = %11 - %15 = load [9 x i32]*, [9 x i32]** %3, align 8 - %16 = load i32, i32* %4, align 4 - %17 = load i32, i32* %5, align 4 - %18 = load i32, i32* %6, align 4 - %19 = call zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* %15, i32 %16, i32 %17, i32 %18) - br i1 %19, label %20, label %40 - -20: ; preds = %14 - %21 = load i32, i32* %6, align 4 - %22 = load [9 x i32]*, [9 x i32]** %3, align 8 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [9 x i32], [9 x i32]* %22, i64 %24 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [9 x i32], [9 x i32]* %25, i64 0, i64 %27 - store i32 %21, i32* %28, align 4 - %29 = load [9 x i32]*, [9 x i32]** %3, align 8 - %30 = call zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %29) - br i1 %30, label %31, label %32 - -31: ; preds = %20 - store i1 true, i1* %2, align 1 - br label %45 - -32: ; preds = %20 - %33 = load [9 x i32]*, [9 x i32]** %3, align 8 - %34 = load i32, i32* %4, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds [9 x i32], [9 x i32]* %33, i64 %35 - %37 = load i32, i32* %5, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds [9 x i32], [9 x i32]* %36, i64 0, i64 %38 - store i32 0, i32* %39, align 4 - br label %40 - -40: ; preds = %32, %14 - br label %41 - -41: ; preds = %40 - %42 = load i32, i32* %6, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %6, align 4 - br label %11, !llvm.loop !2 - -44: ; preds = %11 - store i1 false, i1* %2, align 1 - br label %45 - -45: ; preds = %44, %31, %9 - %46 = load i1, i1* %2, align 1 - ret i1 %46 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* %0, i32* nonnull align 4 dereferenceable(4) %1, i32* nonnull align 4 dereferenceable(4) %2) #5 { - %4 = alloca i1, align 1 - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca i32*, align 8 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32* %1, i32** %6, align 8 - store i32* %2, i32** %7, align 8 - %8 = load i32*, i32** %6, align 8 - store i32 0, i32* %8, align 4 - br label %9 - -9: ; preds = %38, %3 - %10 = load i32*, i32** %6, align 8 - %11 = load i32, i32* %10, align 4 - %12 = icmp slt i32 %11, 9 - br i1 %12, label %13, label %42 - -13: ; preds = %9 - %14 = load i32*, i32** %7, align 8 - store i32 0, i32* %14, align 4 - br label %15 - -15: ; preds = %33, %13 - %16 = load i32*, i32** %7, align 8 - %17 = load i32, i32* %16, align 4 - %18 = icmp slt i32 %17, 9 - br i1 %18, label %19, label %37 - -19: ; preds = %15 - %20 = load [9 x i32]*, [9 x i32]** %5, align 8 - %21 = load i32*, i32** %6, align 8 - %22 = load i32, i32* %21, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds [9 x i32], [9 x i32]* %20, i64 %23 - %25 = load i32*, i32** %7, align 8 - %26 = load i32, i32* %25, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [9 x i32], [9 x i32]* %24, i64 0, i64 %27 - %29 = load i32, i32* %28, align 4 - %30 = icmp eq i32 %29, 0 - br i1 %30, label %31, label %32 - -31: ; preds = %19 - store i1 true, i1* %4, align 1 - br label %43 - -32: ; preds = %19 - br label %33 - -33: ; preds = %32 - %34 = load i32*, i32** %7, align 8 - %35 = load i32, i32* %34, align 4 - %36 = add nsw i32 %35, 1 - store i32 %36, i32* %34, align 4 - br label %15, !llvm.loop !4 - -37: ; preds = %15 - br label %38 - -38: ; preds = %37 - %39 = load i32*, i32** %6, align 8 - %40 = load i32, i32* %39, align 4 - %41 = add nsw i32 %40, 1 - store i32 %41, i32* %39, align 4 - br label %9, !llvm.loop !5 - -42: ; preds = %9 - store i1 false, i1* %4, align 1 - br label %43 - -43: ; preds = %42, %31 - %44 = load i1, i1* %4, align 1 - ret i1 %44 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* %0, i32 %1, i32 %2, i32 %3) #5 { - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 %3, i32* %8, align 4 - %9 = load [9 x i32]*, [9 x i32]** %5, align 8 - %10 = load i32, i32* %6, align 4 - %11 = load i32, i32* %8, align 4 - %12 = call zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* %9, i32 %10, i32 %11) - br i1 %12, label %40, label %13 - -13: ; preds = %4 - %14 = load [9 x i32]*, [9 x i32]** %5, align 8 - %15 = load i32, i32* %7, align 4 - %16 = load i32, i32* %8, align 4 - %17 = call zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* %14, i32 %15, i32 %16) - br i1 %17, label %40, label %18 - -18: ; preds = %13 - %19 = load [9 x i32]*, [9 x i32]** %5, align 8 - %20 = load i32, i32* %6, align 4 - %21 = load i32, i32* %6, align 4 - %22 = srem i32 %21, 3 - %23 = sub nsw i32 %20, %22 - %24 = load i32, i32* %7, align 4 - %25 = load i32, i32* %7, align 4 - %26 = srem i32 %25, 3 - %27 = sub nsw i32 %24, %26 - %28 = load i32, i32* %8, align 4 - %29 = call zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* %19, i32 %23, i32 %27, i32 %28) - br i1 %29, label %40, label %30 - -30: ; preds = %18 - %31 = load [9 x i32]*, [9 x i32]** %5, align 8 - %32 = load i32, i32* %6, align 4 - %33 = sext i32 %32 to i64 - %34 = getelementptr inbounds [9 x i32], [9 x i32]* %31, i64 %33 - %35 = load i32, i32* %7, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds [9 x i32], [9 x i32]* %34, i64 0, i64 %36 - %38 = load i32, i32* %37, align 4 - %39 = icmp eq i32 %38, 0 - br label %40 - -40: ; preds = %30, %18, %13, %4 - %41 = phi i1 [ false, %18 ], [ false, %13 ], [ false, %4 ], [ %39, %30 ] - ret i1 %41 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* %0, i32 %1, i32 %2) #5 { - %4 = alloca i1, align 1 - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 0, i32* %8, align 4 - br label %9 - -9: ; preds = %25, %3 - %10 = load i32, i32* %8, align 4 - %11 = icmp slt i32 %10, 9 - br i1 %11, label %12, label %28 - -12: ; preds = %9 - %13 = load [9 x i32]*, [9 x i32]** %5, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [9 x i32], [9 x i32]* %13, i64 %15 - %17 = load i32, i32* %8, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [9 x i32], [9 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = load i32, i32* %7, align 4 - %22 = icmp eq i32 %20, %21 - br i1 %22, label %23, label %24 - -23: ; preds = %12 - store i1 true, i1* %4, align 1 - br label %29 - -24: ; preds = %12 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %8, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %8, align 4 - br label %9, !llvm.loop !6 - -28: ; preds = %9 - store i1 false, i1* %4, align 1 - br label %29 - -29: ; preds = %28, %23 - %30 = load i1, i1* %4, align 1 - ret i1 %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* %0, i32 %1, i32 %2) #5 { - %4 = alloca i1, align 1 - %5 = alloca [9 x i32]*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %5, align 8 - store i32 %1, i32* %6, align 4 - store i32 %2, i32* %7, align 4 - store i32 0, i32* %8, align 4 - br label %9 - -9: ; preds = %25, %3 - %10 = load i32, i32* %8, align 4 - %11 = icmp slt i32 %10, 9 - br i1 %11, label %12, label %28 - -12: ; preds = %9 - %13 = load [9 x i32]*, [9 x i32]** %5, align 8 - %14 = load i32, i32* %8, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [9 x i32], [9 x i32]* %13, i64 %15 - %17 = load i32, i32* %6, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [9 x i32], [9 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = load i32, i32* %7, align 4 - %22 = icmp eq i32 %20, %21 - br i1 %22, label %23, label %24 - -23: ; preds = %12 - store i1 true, i1* %4, align 1 - br label %29 - -24: ; preds = %12 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %8, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %8, align 4 - br label %9, !llvm.loop !7 - -28: ; preds = %9 - store i1 false, i1* %4, align 1 - br label %29 - -29: ; preds = %28, %23 - %30 = load i1, i1* %4, align 1 - ret i1 %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* %0, i32 %1, i32 %2, i32 %3) #5 { - %5 = alloca i1, align 1 - %6 = alloca [9 x i32]*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %6, align 8 - store i32 %1, i32* %7, align 4 - store i32 %2, i32* %8, align 4 - store i32 %3, i32* %9, align 4 - store i32 0, i32* %10, align 4 - br label %12 - -12: ; preds = %40, %4 - %13 = load i32, i32* %10, align 4 - %14 = icmp slt i32 %13, 3 - br i1 %14, label %15, label %43 - -15: ; preds = %12 - store i32 0, i32* %11, align 4 - br label %16 - -16: ; preds = %36, %15 - %17 = load i32, i32* %11, align 4 - %18 = icmp slt i32 %17, 3 - br i1 %18, label %19, label %39 - -19: ; preds = %16 - %20 = load [9 x i32]*, [9 x i32]** %6, align 8 - %21 = load i32, i32* %10, align 4 - %22 = load i32, i32* %7, align 4 - %23 = add nsw i32 %21, %22 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [9 x i32], [9 x i32]* %20, i64 %24 - %26 = load i32, i32* %11, align 4 - %27 = load i32, i32* %8, align 4 - %28 = add nsw i32 %26, %27 - %29 = sext i32 %28 to i64 - %30 = getelementptr inbounds [9 x i32], [9 x i32]* %25, i64 0, i64 %29 - %31 = load i32, i32* %30, align 4 - %32 = load i32, i32* %9, align 4 - %33 = icmp eq i32 %31, %32 - br i1 %33, label %34, label %35 - -34: ; preds = %19 - store i1 true, i1* %5, align 1 - br label %44 - -35: ; preds = %19 - br label %36 - -36: ; preds = %35 - %37 = load i32, i32* %11, align 4 - %38 = add nsw i32 %37, 1 - store i32 %38, i32* %11, align 4 - br label %16, !llvm.loop !8 - -39: ; preds = %16 - br label %40 - -40: ; preds = %39 - %41 = load i32, i32* %10, align 4 - %42 = add nsw i32 %41, 1 - store i32 %42, i32* %10, align 4 - br label %12, !llvm.loop !9 - -43: ; preds = %12 - store i1 false, i1* %5, align 1 - br label %44 - -44: ; preds = %43, %34 - %45 = load i1, i1* %5, align 1 - ret i1 %45 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printGridPA9_i([9 x i32]* %0) #4 { - %2 = alloca [9 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [9 x i32]* %0, [9 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %28, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 9 - br i1 %7, label %8, label %31 - -8: ; preds = %5 - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %23, %8 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 9 - br i1 %11, label %12, label %26 - -12: ; preds = %9 - %13 = load [9 x i32]*, [9 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [9 x i32], [9 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [9 x i32], [9 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %20) - %22 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %21, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %23 - -23: ; preds = %12 - %24 = load i32, i32* %4, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %4, align 4 - br label %9, !llvm.loop !10 - -26: ; preds = %9 - %27 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %28 - -28: ; preds = %26 - %29 = load i32, i32* %3, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %3, align 4 - br label %5, !llvm.loop !11 - -31: ; preds = %5 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [9 x [9 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [9 x [9 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([9 x [9 x i32]]* @__const.main.grid to i8*), i64 324, i1 false) - %4 = getelementptr inbounds [9 x [9 x i32]], [9 x [9 x i32]]* %2, i64 0, i64 0 - %5 = call zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %4) - %6 = zext i1 %5 to i32 - %7 = icmp eq i32 %6, 1 - br i1 %7, label %8, label %10 - -8: ; preds = %0 - %9 = getelementptr inbounds [9 x [9 x i32]], [9 x [9 x i32]]* %2, i64 0, i64 0 - call void @_Z9printGridPA9_i([9 x i32]* %9) - br label %12 - -10: ; preds = %0 - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.1, i64 0, i64 0)) - br label %12 - -12: ; preds = %10, %8 - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_sudoku.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll deleted file mode 100644 index f00e291a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll +++ /dev/null @@ -1,3367 +0,0 @@ -; ModuleID = 'PE-benchmarks/tarjan-algorithm.cpp' -source_filename = "PE-benchmarks/tarjan-algorithm.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } -%"class.std::allocator.0" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.__gnu_cxx::new_allocator.4" = type { i8 } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZSt3minIiERKT_S2_S2_ = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time = internal global i32 0, align 4 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@.str.2 = private unnamed_addr constant [23 x i8] c"\0ASCCs in first graph \0A\00", align 1 -@.str.3 = private unnamed_addr constant [24 x i8] c"\0ASCCs in second graph \0A\00", align 1 -@.str.4 = private unnamed_addr constant [23 x i8] c"\0ASCCs in third graph \0A\00", align 1 -@.str.5 = private unnamed_addr constant [24 x i8] c"\0ASCCs in fourth graph \0A\00", align 1 -@.str.6 = private unnamed_addr constant [23 x i8] c"\0ASCCs in fifth graph \0A\00", align 1 -@.str.7 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_tarjan_algorithm.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #15 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32* %2, i32* %3, %"class.std::stack"* %4, i8* %5) #7 align 2 { - %7 = alloca %class.Graph*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32*, align 8 - %10 = alloca i32*, align 8 - %11 = alloca %"class.std::stack"*, align 8 - %12 = alloca i8*, align 8 - %13 = alloca %"struct.std::_List_iterator", align 8 - %14 = alloca %"struct.std::_List_iterator", align 8 - %15 = alloca %"struct.std::_List_iterator", align 8 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %7, align 8 - store i32 %1, i32* %8, align 4 - store i32* %2, i32** %9, align 8 - store i32* %3, i32** %10, align 8 - store %"class.std::stack"* %4, %"class.std::stack"** %11, align 8 - store i8* %5, i8** %12, align 8 - %18 = load %class.Graph*, %class.Graph** %7, align 8 - %19 = load i32, i32* @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time, align 4 - %20 = add nsw i32 %19, 1 - store i32 %20, i32* @_ZZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPbE4time, align 4 - %21 = load i32*, i32** %10, align 8 - %22 = load i32, i32* %8, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i32, i32* %21, i64 %23 - store i32 %20, i32* %24, align 4 - %25 = load i32*, i32** %9, align 8 - %26 = load i32, i32* %8, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i32, i32* %25, i64 %27 - store i32 %20, i32* %28, align 4 - %29 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %29, i32* nonnull align 4 dereferenceable(4) %8) - %30 = load i8*, i8** %12, align 8 - %31 = load i32, i32* %8, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i8, i8* %30, i64 %32 - store i8 1, i8* %33, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %13) #3 - %34 = getelementptr inbounds %class.Graph, %class.Graph* %18, i32 0, i32 1 - %35 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %34, align 8 - %36 = load i32, i32* %8, align 4 - %37 = sext i32 %36 to i64 - %38 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %35, i64 %37 - %39 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %38) #3 - %40 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %14, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %39, %"struct.std::__detail::_List_node_base"** %40, align 8 - %41 = bitcast %"struct.std::_List_iterator"* %13 to i8* - %42 = bitcast %"struct.std::_List_iterator"* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %41, i8* align 8 %42, i64 8, i1 false) - br label %43 - -43: ; preds = %107, %6 - %44 = getelementptr inbounds %class.Graph, %class.Graph* %18, i32 0, i32 1 - %45 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %44, align 8 - %46 = load i32, i32* %8, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %45, i64 %47 - %49 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %48) #3 - %50 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %15, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %49, %"struct.std::__detail::_List_node_base"** %50, align 8 - %51 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %13, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %15) #3 - br i1 %51, label %52, label %109 - -52: ; preds = %43 - %53 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %13) #3 - %54 = load i32, i32* %53, align 4 - store i32 %54, i32* %16, align 4 - %55 = load i32*, i32** %9, align 8 - %56 = load i32, i32* %16, align 4 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %55, i64 %57 - %59 = load i32, i32* %58, align 4 - %60 = icmp eq i32 %59, -1 - br i1 %60, label %61, label %81 - -61: ; preds = %52 - %62 = load i32, i32* %16, align 4 - %63 = load i32*, i32** %9, align 8 - %64 = load i32*, i32** %10, align 8 - %65 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %66 = load i8*, i8** %12, align 8 - call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* nonnull dereferenceable(16) %18, i32 %62, i32* %63, i32* %64, %"class.std::stack"* %65, i8* %66) - %67 = load i32*, i32** %10, align 8 - %68 = load i32, i32* %8, align 4 - %69 = sext i32 %68 to i64 - %70 = getelementptr inbounds i32, i32* %67, i64 %69 - %71 = load i32*, i32** %10, align 8 - %72 = load i32, i32* %16, align 4 - %73 = sext i32 %72 to i64 - %74 = getelementptr inbounds i32, i32* %71, i64 %73 - %75 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %70, i32* nonnull align 4 dereferenceable(4) %74) - %76 = load i32, i32* %75, align 4 - %77 = load i32*, i32** %10, align 8 - %78 = load i32, i32* %8, align 4 - %79 = sext i32 %78 to i64 - %80 = getelementptr inbounds i32, i32* %77, i64 %79 - store i32 %76, i32* %80, align 4 - br label %106 - -81: ; preds = %52 - %82 = load i8*, i8** %12, align 8 - %83 = load i32, i32* %16, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds i8, i8* %82, i64 %84 - %86 = load i8, i8* %85, align 1 - %87 = trunc i8 %86 to i1 - %88 = zext i1 %87 to i32 - %89 = icmp eq i32 %88, 1 - br i1 %89, label %90, label %105 - -90: ; preds = %81 - %91 = load i32*, i32** %10, align 8 - %92 = load i32, i32* %8, align 4 - %93 = sext i32 %92 to i64 - %94 = getelementptr inbounds i32, i32* %91, i64 %93 - %95 = load i32*, i32** %9, align 8 - %96 = load i32, i32* %16, align 4 - %97 = sext i32 %96 to i64 - %98 = getelementptr inbounds i32, i32* %95, i64 %97 - %99 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %94, i32* nonnull align 4 dereferenceable(4) %98) - %100 = load i32, i32* %99, align 4 - %101 = load i32*, i32** %10, align 8 - %102 = load i32, i32* %8, align 4 - %103 = sext i32 %102 to i64 - %104 = getelementptr inbounds i32, i32* %101, i64 %103 - store i32 %100, i32* %104, align 4 - br label %105 - -105: ; preds = %90, %81 - br label %106 - -106: ; preds = %105, %61 - br label %107 - -107: ; preds = %106 - %108 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %13) #3 - br label %43, !llvm.loop !2 - -109: ; preds = %43 - store i32 0, i32* %17, align 4 - %110 = load i32*, i32** %10, align 8 - %111 = load i32, i32* %8, align 4 - %112 = sext i32 %111 to i64 - %113 = getelementptr inbounds i32, i32* %110, i64 %112 - %114 = load i32, i32* %113, align 4 - %115 = load i32*, i32** %9, align 8 - %116 = load i32, i32* %8, align 4 - %117 = sext i32 %116 to i64 - %118 = getelementptr inbounds i32, i32* %115, i64 %117 - %119 = load i32, i32* %118, align 4 - %120 = icmp eq i32 %114, %119 - br i1 %120, label %121, label %152 - -121: ; preds = %109 - br label %122 - -122: ; preds = %128, %121 - %123 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %124 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %123) - %125 = load i32, i32* %124, align 4 - %126 = load i32, i32* %8, align 4 - %127 = icmp ne i32 %125, %126 - br i1 %127, label %128, label %140 - -128: ; preds = %122 - %129 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %130 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %129) - %131 = load i32, i32* %130, align 4 - store i32 %131, i32* %17, align 4 - %132 = load i32, i32* %17, align 4 - %133 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %132) - %134 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %133, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - %135 = load i8*, i8** %12, align 8 - %136 = load i32, i32* %17, align 4 - %137 = sext i32 %136 to i64 - %138 = getelementptr inbounds i8, i8* %135, i64 %137 - store i8 0, i8* %138, align 1 - %139 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %139) - br label %122, !llvm.loop !4 - -140: ; preds = %122 - %141 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - %142 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %141) - %143 = load i32, i32* %142, align 4 - store i32 %143, i32* %17, align 4 - %144 = load i32, i32* %17, align 4 - %145 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %144) - %146 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %145, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - %147 = load i8*, i8** %12, align 8 - %148 = load i32, i32* %17, align 4 - %149 = sext i32 %148 to i64 - %150 = getelementptr inbounds i8, i8* %147, i64 %149 - store i8 0, i8* %150, align 1 - %151 = load %"class.std::stack"*, %"class.std::stack"** %11, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %151) - br label %152 - -152: ; preds = %140, %109 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %6, i32* nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #8 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %5, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %4, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i32* %5 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca %"class.std::stack"*, align 8 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %11 = load %class.Graph*, %class.Graph** %2, align 8 - %12 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %13 = load i32, i32* %12, align 8 - %14 = sext i32 %13 to i64 - %15 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %14, i64 4) - %16 = extractvalue { i64, i1 } %15, 1 - %17 = extractvalue { i64, i1 } %15, 0 - %18 = select i1 %16, i64 -1, i64 %17 - %19 = call noalias nonnull i8* @_Znam(i64 %18) #15 - %20 = bitcast i8* %19 to i32* - store i32* %20, i32** %3, align 8 - %21 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %22 = load i32, i32* %21, align 8 - %23 = sext i32 %22 to i64 - %24 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %23, i64 4) - %25 = extractvalue { i64, i1 } %24, 1 - %26 = extractvalue { i64, i1 } %24, 0 - %27 = select i1 %25, i64 -1, i64 %26 - %28 = call noalias nonnull i8* @_Znam(i64 %27) #15 - %29 = bitcast i8* %28 to i32* - store i32* %29, i32** %4, align 8 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %31 = load i32, i32* %30, align 8 - %32 = sext i32 %31 to i64 - %33 = call noalias nonnull i8* @_Znam(i64 %32) #15 - store i8* %33, i8** %5, align 8 - %34 = call noalias nonnull i8* @_Znwm(i64 80) #15 - %35 = bitcast i8* %34 to %"class.std::stack"* - invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %35) - to label %36 unwind label %58 - -36: ; preds = %1 - store %"class.std::stack"* %35, %"class.std::stack"** %6, align 8 - store i32 0, i32* %9, align 4 - br label %37 - -37: ; preds = %55, %36 - %38 = load i32, i32* %9, align 4 - %39 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %40 = load i32, i32* %39, align 8 - %41 = icmp slt i32 %38, %40 - br i1 %41, label %42, label %62 - -42: ; preds = %37 - %43 = load i32*, i32** %3, align 8 - %44 = load i32, i32* %9, align 4 - %45 = sext i32 %44 to i64 - %46 = getelementptr inbounds i32, i32* %43, i64 %45 - store i32 -1, i32* %46, align 4 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %9, align 4 - %49 = sext i32 %48 to i64 - %50 = getelementptr inbounds i32, i32* %47, i64 %49 - store i32 -1, i32* %50, align 4 - %51 = load i8*, i8** %5, align 8 - %52 = load i32, i32* %9, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i8, i8* %51, i64 %53 - store i8 0, i8* %54, align 1 - br label %55 - -55: ; preds = %42 - %56 = load i32, i32* %9, align 4 - %57 = add nsw i32 %56, 1 - store i32 %57, i32* %9, align 4 - br label %37, !llvm.loop !5 - -58: ; preds = %1 - %59 = landingpad { i8*, i32 } - cleanup - %60 = extractvalue { i8*, i32 } %59, 0 - store i8* %60, i8** %7, align 8 - %61 = extractvalue { i8*, i32 } %59, 1 - store i32 %61, i32* %8, align 4 - call void @_ZdlPv(i8* %34) #16 - br label %86 - -62: ; preds = %37 - store i32 0, i32* %10, align 4 - br label %63 - -63: ; preds = %82, %62 - %64 = load i32, i32* %10, align 4 - %65 = getelementptr inbounds %class.Graph, %class.Graph* %11, i32 0, i32 0 - %66 = load i32, i32* %65, align 8 - %67 = icmp slt i32 %64, %66 - br i1 %67, label %68, label %85 - -68: ; preds = %63 - %69 = load i32*, i32** %3, align 8 - %70 = load i32, i32* %10, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = icmp eq i32 %73, -1 - br i1 %74, label %75, label %81 - -75: ; preds = %68 - %76 = load i32, i32* %10, align 4 - %77 = load i32*, i32** %3, align 8 - %78 = load i32*, i32** %4, align 8 - %79 = load %"class.std::stack"*, %"class.std::stack"** %6, align 8 - %80 = load i8*, i8** %5, align 8 - call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* nonnull dereferenceable(16) %11, i32 %76, i32* %77, i32* %78, %"class.std::stack"* %79, i8* %80) - br label %81 - -81: ; preds = %75, %68 - br label %82 - -82: ; preds = %81 - %83 = load i32, i32* %10, align 4 - %84 = add nsw i32 %83, 1 - store i32 %84, i32* %10, align 4 - br label %63, !llvm.loop !6 - -85: ; preds = %63 - ret void - -86: ; preds = %58 - %87 = load i8*, i8** %7, align 8 - %88 = load i32, i32* %8, align 4 - %89 = insertvalue { i8*, i32 } undef, i8* %87, 0 - %90 = insertvalue { i8*, i32 } %89, i32 %88, 1 - resume { i8*, i32 } %90 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #10 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #11 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - %3 = alloca %class.Graph, align 8 - %4 = alloca %class.Graph, align 8 - %5 = alloca %class.Graph, align 8 - %6 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - %7 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.2, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - call void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %2) - %8 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.3, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %3, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %3, i32 2, i32 3) - call void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %3) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.4, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %4, i32 7) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 2, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 1, i32 6) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 3, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %4, i32 4, i32 5) - call void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %4) - %10 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.5, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %5, i32 11) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 6) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 3, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 4, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 4, i32 6) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 5, i32 6) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 5, i32 7) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 5, i32 8) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 5, i32 9) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 6, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 7, i32 9) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 8, i32 9) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 9, i32 8) - call void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %5) - %11 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.6, i64 0, i64 0)) - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %6, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 1, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 2, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 2, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 3, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 4, i32 2) - call void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %6) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #17 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #19 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #12 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #17 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 -1 - %19 = icmp ne i32* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator.0"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %23, i32* %29, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - %37 = getelementptr inbounds i32, i32* %36, i32 1 - store i32* %37, i32** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, i32* nonnull align 4 dereferenceable(4) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.7, i64 0, i64 0)) #18 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i64 1 - store i32* %12, i32** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator.0"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = load i32*, i32** %4, align 8 - %30 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %29) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %22, i32* %28, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load i32**, i32*** %39, align 8 - %41 = getelementptr inbounds i32*, i32** %40, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, i32** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load i32*, i32** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store i32* %47, i32** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #12 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %7 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, i32** %1) #8 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds i32, i32* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store i32* %14, i32** %15, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #8 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load i32*, i32** %22, align 8 - %24 = ptrtoint i32* %20 to i64 - %25 = ptrtoint i32* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 4 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = ptrtoint i32* %31 to i64 - %36 = ptrtoint i32* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 4 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = invoke i64 @_ZSt16__deque_buf_sizem(i64 4) - to label %2 unwind label %3 - -2: ; preds = %0 - ret i64 %1 - -3: ; preds = %0 - %4 = landingpad { i8*, i32 } - catch i8* null - %5 = extractvalue { i8*, i32 } %4, 0 - call void @__clang_call_terminate(i8* %5) #17 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #17 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #7 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %79, i32** %86, i32** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %95, i32** %102, i32** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store i32** %124, i32*** %11, align 8 - %125 = load i32**, i32*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %144, i32** %151, i32** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, i32** %159, i64 %164) #3 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, i32** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, i32** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - ret i32** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i64 %2) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.3", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load i32**, i32*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %7, i32** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #17 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #8 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %0, i32** %1) #8 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #8 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32**, i32*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32*, i32** %24, i64 %25 - ret i32** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32**, i32*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32*, i32** %27, i64 %29 - ret i32** %30 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* noalias sret(%"class.std::allocator.3") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - %7 = load i64, i64* %4, align 8 - %8 = call i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32** %8 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.3"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %2, align 8 - %3 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %2, align 8 - %4 = bitcast %"class.std::allocator.3"* %3 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store %"class.std::allocator.0"* %1, %"class.std::allocator.0"** %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #19 - %16 = bitcast i8* %15 to i32** - ret i32** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i32** %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %8 = bitcast %"class.std::allocator.3"* %7 to %"class.__gnu_cxx::new_allocator.4"* - %9 = load i32**, i32*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %8, i32** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i32** %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #18 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #19 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - %6 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret i32* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3, i32** %12) #3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 3 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 1 - %15 = load i32*, i32** %14, align 8 - %16 = icmp ne i32* %9, %15 - br i1 %16, label %17, label %33 - -17: ; preds = %1 - %18 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 0 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i32 -1 - store i32* %24, i32** %22, align 8 - %25 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %26 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %25) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 3 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %26, i32* %32) #3 - br label %35 - -33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %34 unwind label %36 - -34: ; preds = %33 - br label %35 - -35: ; preds = %34, %17 - ret void - -36: ; preds = %33 - %37 = landingpad { i8*, i32 } - catch i8* null - %38 = extractvalue { i8*, i32 } %37, 0 - call void @__clang_call_terminate(i8* %38) #17 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %7, i32 0, i32 3 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 1 - %10 = load i32*, i32** %9, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4, i32* %10) #3 - %11 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %12 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %12 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %13, i32 0, i32 3 - %15 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 3 - %20 = load i32**, i32*** %19, align 8 - %21 = getelementptr inbounds i32*, i32** %20, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %14, i32** %21) #3 - %22 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 2 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i64 -1 - %29 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - store i32* %28, i32** %33, align 8 - %34 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %35 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %34) #3 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 3 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %35, i32* %41) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32* %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = load i32*, i32** %4, align 8 - %9 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, i32* %8, i64 %9) - to label %10 unwind label %11 - -10: ; preds = %2 - ret void - -11: ; preds = %2 - %12 = landingpad { i8*, i32 } - catch i8* null - %13 = extractvalue { i8*, i32 } %12, 0 - call void @__clang_call_terminate(i8* %13) #17 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #14 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %47, i32** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #18 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, i32** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load i32**, i32*** %9, align 8 - %85 = getelementptr inbounds i32*, i32** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, i32** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds i32, i32* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #17 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !7 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load i32**, i32*** %5, align 8 - %31 = load i32**, i32*** %7, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, i32** %30, i32** %31) #3 - invoke void @__cxa_rethrow() #18 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #17 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, i32* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !8 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_tarjan_algorithm.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noinline noreturn nounwind } -attributes #14 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { builtin nounwind } -attributes #17 = { noreturn nounwind } -attributes #18 = { noreturn } -attributes #19 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/the-knights-tour.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/the-knights-tour.ll deleted file mode 100644 index ce530e2c..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/the-knights-tour.ll +++ /dev/null @@ -1,339 +0,0 @@ -; ModuleID = 'PE-benchmarks/the-knights-tour.cpp' -source_filename = "PE-benchmarks/the-knights-tour.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [6 x i8] c" %2d \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@__const._Z7solveKTv.xMove = private unnamed_addr constant [8 x i32] [i32 2, i32 1, i32 -1, i32 -2, i32 -2, i32 -1, i32 1, i32 2], align 16 -@__const._Z7solveKTv.yMove = private unnamed_addr constant [8 x i32] [i32 1, i32 2, i32 2, i32 1, i32 -1, i32 -2, i32 -2, i32 -1], align 16 -@.str.2 = private unnamed_addr constant [24 x i8] c"Solution does not exist\00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z6isSafeiiPA8_i(i32 %0, i32 %1, [8 x i32]* %2) #0 { - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca [8 x i32]*, align 8 - store i32 %0, i32* %4, align 4 - store i32 %1, i32* %5, align 4 - store [8 x i32]* %2, [8 x i32]** %6, align 8 - %7 = load i32, i32* %4, align 4 - %8 = icmp sge i32 %7, 0 - br i1 %8, label %9, label %28 - -9: ; preds = %3 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 8 - br i1 %11, label %12, label %28 - -12: ; preds = %9 - %13 = load i32, i32* %5, align 4 - %14 = icmp sge i32 %13, 0 - br i1 %14, label %15, label %28 - -15: ; preds = %12 - %16 = load i32, i32* %5, align 4 - %17 = icmp slt i32 %16, 8 - br i1 %17, label %18, label %28 - -18: ; preds = %15 - %19 = load [8 x i32]*, [8 x i32]** %6, align 8 - %20 = load i32, i32* %4, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds [8 x i32], [8 x i32]* %19, i64 %21 - %23 = load i32, i32* %5, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [8 x i32], [8 x i32]* %22, i64 0, i64 %24 - %26 = load i32, i32* %25, align 4 - %27 = icmp eq i32 %26, -1 - br label %28 - -28: ; preds = %18, %15, %12, %9, %3 - %29 = phi i1 [ false, %15 ], [ false, %12 ], [ false, %9 ], [ false, %3 ], [ %27, %18 ] - ret i1 %29 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA8_i([8 x i32]* %0) #1 { - %2 = alloca [8 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [8 x i32]* %0, [8 x i32]** %2, align 8 - store i32 0, i32* %3, align 4 - br label %5 - -5: ; preds = %27, %1 - %6 = load i32, i32* %3, align 4 - %7 = icmp slt i32 %6, 8 - br i1 %7, label %8, label %30 - -8: ; preds = %5 - store i32 0, i32* %4, align 4 - br label %9 - -9: ; preds = %22, %8 - %10 = load i32, i32* %4, align 4 - %11 = icmp slt i32 %10, 8 - br i1 %11, label %12, label %25 - -12: ; preds = %9 - %13 = load [8 x i32]*, [8 x i32]** %2, align 8 - %14 = load i32, i32* %3, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds [8 x i32], [8 x i32]* %13, i64 %15 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds [8 x i32], [8 x i32]* %16, i64 0, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0), i32 %20) - br label %22 - -22: ; preds = %12 - %23 = load i32, i32* %4, align 4 - %24 = add nsw i32 %23, 1 - store i32 %24, i32* %4, align 4 - br label %9, !llvm.loop !2 - -25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %27 - -27: ; preds = %25 - %28 = load i32, i32* %3, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %3, align 4 - br label %5, !llvm.loop !4 - -30: ; preds = %5 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #2 - -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z7solveKTv() #1 { - %1 = alloca i1, align 1 - %2 = alloca [8 x [8 x i32]], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca [8 x i32], align 16 - %6 = alloca [8 x i32], align 16 - store i32 0, i32* %3, align 4 - br label %7 - -7: ; preds = %25, %0 - %8 = load i32, i32* %3, align 4 - %9 = icmp slt i32 %8, 8 - br i1 %9, label %10, label %28 - -10: ; preds = %7 - store i32 0, i32* %4, align 4 - br label %11 - -11: ; preds = %21, %10 - %12 = load i32, i32* %4, align 4 - %13 = icmp slt i32 %12, 8 - br i1 %13, label %14, label %24 - -14: ; preds = %11 - %15 = load i32, i32* %3, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 %16 - %18 = load i32, i32* %4, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [8 x i32], [8 x i32]* %17, i64 0, i64 %19 - store i32 -1, i32* %20, align 4 - br label %21 - -21: ; preds = %14 - %22 = load i32, i32* %4, align 4 - %23 = add nsw i32 %22, 1 - store i32 %23, i32* %4, align 4 - br label %11, !llvm.loop !5 - -24: ; preds = %11 - br label %25 - -25: ; preds = %24 - %26 = load i32, i32* %3, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %3, align 4 - br label %7, !llvm.loop !6 - -28: ; preds = %7 - %29 = bitcast [8 x i32]* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %29, i8* align 16 bitcast ([8 x i32]* @__const._Z7solveKTv.xMove to i8*), i64 32, i1 false) - %30 = bitcast [8 x i32]* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %30, i8* align 16 bitcast ([8 x i32]* @__const._Z7solveKTv.yMove to i8*), i64 32, i1 false) - %31 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 0 - %32 = getelementptr inbounds [8 x i32], [8 x i32]* %31, i64 0, i64 0 - store i32 0, i32* %32, align 16 - %33 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 0 - %34 = getelementptr inbounds [8 x i32], [8 x i32]* %5, i64 0, i64 0 - %35 = getelementptr inbounds [8 x i32], [8 x i32]* %6, i64 0, i64 0 - %36 = call i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 0, i32 0, i32 1, [8 x i32]* %33, i32* %34, i32* %35) - %37 = icmp eq i32 %36, 0 - br i1 %37, label %38, label %40 - -38: ; preds = %28 - %39 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.2, i64 0, i64 0)) - store i1 false, i1* %1, align 1 - br label %43 - -40: ; preds = %28 - %41 = getelementptr inbounds [8 x [8 x i32]], [8 x [8 x i32]]* %2, i64 0, i64 0 - call void @_Z13printSolutionPA8_i([8 x i32]* %41) - br label %42 - -42: ; preds = %40 - store i1 true, i1* %1, align 1 - br label %43 - -43: ; preds = %42, %38 - %44 = load i1, i1* %1, align 1 - ret i1 %44 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 %0, i32 %1, i32 %2, [8 x i32]* %3, i32* %4, i32* %5) #1 { - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca [8 x i32]*, align 8 - %12 = alloca i32*, align 8 - %13 = alloca i32*, align 8 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - %16 = alloca i32, align 4 - store i32 %0, i32* %8, align 4 - store i32 %1, i32* %9, align 4 - store i32 %2, i32* %10, align 4 - store [8 x i32]* %3, [8 x i32]** %11, align 8 - store i32* %4, i32** %12, align 8 - store i32* %5, i32** %13, align 8 - %17 = load i32, i32* %10, align 4 - %18 = icmp eq i32 %17, 64 - br i1 %18, label %19, label %20 - -19: ; preds = %6 - store i32 1, i32* %7, align 4 - br label %76 - -20: ; preds = %6 - store i32 0, i32* %14, align 4 - br label %21 - -21: ; preds = %72, %20 - %22 = load i32, i32* %14, align 4 - %23 = icmp slt i32 %22, 8 - br i1 %23, label %24, label %75 - -24: ; preds = %21 - %25 = load i32, i32* %8, align 4 - %26 = load i32*, i32** %12, align 8 - %27 = load i32, i32* %14, align 4 - %28 = sext i32 %27 to i64 - %29 = getelementptr inbounds i32, i32* %26, i64 %28 - %30 = load i32, i32* %29, align 4 - %31 = add nsw i32 %25, %30 - store i32 %31, i32* %15, align 4 - %32 = load i32, i32* %9, align 4 - %33 = load i32*, i32** %13, align 8 - %34 = load i32, i32* %14, align 4 - %35 = sext i32 %34 to i64 - %36 = getelementptr inbounds i32, i32* %33, i64 %35 - %37 = load i32, i32* %36, align 4 - %38 = add nsw i32 %32, %37 - store i32 %38, i32* %16, align 4 - %39 = load i32, i32* %15, align 4 - %40 = load i32, i32* %16, align 4 - %41 = load [8 x i32]*, [8 x i32]** %11, align 8 - %42 = call zeroext i1 @_Z6isSafeiiPA8_i(i32 %39, i32 %40, [8 x i32]* %41) - br i1 %42, label %43, label %71 - -43: ; preds = %24 - %44 = load i32, i32* %10, align 4 - %45 = load [8 x i32]*, [8 x i32]** %11, align 8 - %46 = load i32, i32* %15, align 4 - %47 = sext i32 %46 to i64 - %48 = getelementptr inbounds [8 x i32], [8 x i32]* %45, i64 %47 - %49 = load i32, i32* %16, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [8 x i32], [8 x i32]* %48, i64 0, i64 %50 - store i32 %44, i32* %51, align 4 - %52 = load i32, i32* %15, align 4 - %53 = load i32, i32* %16, align 4 - %54 = load i32, i32* %10, align 4 - %55 = add nsw i32 %54, 1 - %56 = load [8 x i32]*, [8 x i32]** %11, align 8 - %57 = load i32*, i32** %12, align 8 - %58 = load i32*, i32** %13, align 8 - %59 = call i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 %52, i32 %53, i32 %55, [8 x i32]* %56, i32* %57, i32* %58) - %60 = icmp eq i32 %59, 1 - br i1 %60, label %61, label %62 - -61: ; preds = %43 - store i32 1, i32* %7, align 4 - br label %76 - -62: ; preds = %43 - %63 = load [8 x i32]*, [8 x i32]** %11, align 8 - %64 = load i32, i32* %15, align 4 - %65 = sext i32 %64 to i64 - %66 = getelementptr inbounds [8 x i32], [8 x i32]* %63, i64 %65 - %67 = load i32, i32* %16, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [8 x i32], [8 x i32]* %66, i64 0, i64 %68 - store i32 -1, i32* %69, align 4 - br label %70 - -70: ; preds = %62 - br label %71 - -71: ; preds = %70, %24 - br label %72 - -72: ; preds = %71 - %73 = load i32, i32* %14, align 4 - %74 = add nsw i32 %73, 1 - store i32 %74, i32* %14, align 4 - br label %21, !llvm.loop !7 - -75: ; preds = %21 - store i32 0, i32* %7, align 4 - br label %76 - -76: ; preds = %75, %61, %19 - %77 = load i32, i32* %7, align 4 - ret i32 %77 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { - %1 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %2 = call zeroext i1 @_Z7solveKTv() - ret i32 0 -} - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } -attributes #4 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/topological-sorting.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/topological-sorting.ll deleted file mode 100644 index 014cd49e..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/topological-sorting.ll +++ /dev/null @@ -1,3319 +0,0 @@ -; ModuleID = 'PE-benchmarks/topological-sorting.cpp' -source_filename = "PE-benchmarks/topological-sorting.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"class.std::stack" = type { %"class.std::deque" } -%"class.std::deque" = type { %"class.std::_Deque_base" } -%"class.std::_Deque_base" = type { %"struct.std::_Deque_base>::_Deque_impl" } -%"struct.std::_Deque_base>::_Deque_impl" = type { %"struct.std::_Deque_base>::_Deque_impl_data" } -%"struct.std::_Deque_base>::_Deque_impl_data" = type { i32**, i64, %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator" } -%"struct.std::_Deque_iterator" = type { i32*, i32*, i32*, i32** } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator.3" = type { i8 } -%"class.__gnu_cxx::new_allocator.1" = type { i8 } -%"class.__gnu_cxx::new_allocator.4" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv = comdat any - -$_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv = comdat any - -$_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt5dequeIiSaIiEED2Ev = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_ = comdat any - -$_ZNSt5dequeIiSaIiEE5beginEv = comdat any - -$_ZNSt5dequeIiSaIiEE3endEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSt11_Deque_baseIiSaIiEED2Ev = comdat any - -$__clang_call_terminate = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi = comdat any - -$_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim = comdat any - -$_ZSt16__deque_buf_sizem = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv = comdat any - -$_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m = comdat any - -$_ZNSaIPiED2Ev = comdat any - -$_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv = comdat any - -$_ZNSaIPiEC2IiEERKSaIT_E = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiEC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiED2Ev = comdat any - -$_ZNSaIiED2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -$_ZNSt5dequeIiSaIiEE9push_backERKi = comdat any - -$_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_ = comdat any - -$_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZNKSt5dequeIiSaIiEE4sizeEv = comdat any - -$_ZNKSt5dequeIiSaIiEE8max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_ = comdat any - -$_ZStmiRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_ = comdat any - -$_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_ = comdat any - -$_ZSt3minImERKT_S2_S2_ = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv = comdat any - -$_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb = comdat any - -$_ZSt4copyIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_ = comdat any - -$_ZSt3maxImERKT_S2_S2_ = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm = comdat any - -$_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIPPiET_S2_ = comdat any - -$_ZSt12__niter_wrapIPPiET_RKS2_S2_ = comdat any - -$_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIPPiET_S2_ = comdat any - -$_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_ = comdat any - -$_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE8allocateERS0_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv = comdat any - -$_ZNSt5dequeIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm = comdat any - -$_ZNSaIiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiEC2Ev = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEC2Ev = comdat any - -$_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_ = comdat any - -$_ZNKSt5dequeIiSaIiEE5emptyEv = comdat any - -$_ZSteqRKSt15_Deque_iteratorIiRiPiES4_ = comdat any - -$_ZNSt5dequeIiSaIiEE4backEv = comdat any - -$_ZNSt15_Deque_iteratorIiRiPiEmmEv = comdat any - -$_ZNKSt15_Deque_iteratorIiRiPiEdeEv = comdat any - -$_ZNSt5dequeIiSaIiEE8pop_backEv = comdat any - -$_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_ = comdat any - -$_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv = comdat any - -$_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.1 = private unnamed_addr constant [53 x i8] c"Following is a Topological Sort of the given graph \0A\00", align 1 -@.str.2 = private unnamed_addr constant [48 x i8] c"cannot create std::deque larger than max_size()\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_topological_sorting.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #15 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i8* %2, %"class.std::stack"* nonnull align 8 dereferenceable(80) %3) #7 align 2 { - %5 = alloca %class.Graph*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca %"class.std::stack"*, align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - store %class.Graph* %0, %class.Graph** %5, align 8 - store i32 %1, i32* %6, align 4 - store i8* %2, i8** %7, align 8 - store %"class.std::stack"* %3, %"class.std::stack"** %8, align 8 - %12 = load %class.Graph*, %class.Graph** %5, align 8 - %13 = load i8*, i8** %7, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds i8, i8* %13, i64 %15 - store i8 1, i8* %16, align 1 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %18 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %17, align 8 - %19 = load i32, i32* %6, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %18, i64 %20 - %22 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %21) #3 - %23 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %22, %"struct.std::__detail::_List_node_base"** %23, align 8 - %24 = bitcast %"struct.std::_List_iterator"* %9 to i8* - %25 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - br label %26 - -26: ; preds = %49, %4 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %27, align 8 - %29 = load i32, i32* %6, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %28, i64 %30 - %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %31) #3 - %33 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %32, %"struct.std::__detail::_List_node_base"** %33, align 8 - %34 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - br i1 %34, label %35, label %51 - -35: ; preds = %26 - %36 = load i8*, i8** %7, align 8 - %37 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %38 = load i32, i32* %37, align 4 - %39 = sext i32 %38 to i64 - %40 = getelementptr inbounds i8, i8* %36, i64 %39 - %41 = load i8, i8* %40, align 1 - %42 = trunc i8 %41 to i1 - br i1 %42, label %48, label %43 - -43: ; preds = %35 - %44 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - %45 = load i32, i32* %44, align 4 - %46 = load i8*, i8** %7, align 8 - %47 = load %"class.std::stack"*, %"class.std::stack"** %8, align 8 - call void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %12, i32 %45, i8* %46, %"class.std::stack"* nonnull align 8 dereferenceable(80) %47) - br label %48 - -48: ; preds = %43, %35 - br label %49 - -49: ; preds = %48 - %50 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 - br label %26, !llvm.loop !2 - -51: ; preds = %26 - %52 = load %"class.std::stack"*, %"class.std::stack"** %8, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %52, i32* nonnull align 4 dereferenceable(4) %6) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::stack"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::stack"*, %"class.std::stack"** %3, align 8 - %6 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %5, i32 0, i32 0 - %7 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %6, i32* nonnull align 4 dereferenceable(4) %7) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %class.Graph*, align 8 - %3 = alloca %"class.std::stack", align 8 - %4 = alloca i8*, align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %9 = load %class.Graph*, %class.Graph** %2, align 8 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - %10 = getelementptr inbounds %class.Graph, %class.Graph* %9, i32 0, i32 0 - %11 = load i32, i32* %10, align 8 - %12 = sext i32 %11 to i64 - %13 = invoke noalias nonnull i8* @_Znam(i64 %12) #15 - to label %14 unwind label %28 - -14: ; preds = %1 - store i8* %13, i8** %4, align 8 - store i32 0, i32* %7, align 4 - br label %15 - -15: ; preds = %25, %14 - %16 = load i32, i32* %7, align 4 - %17 = getelementptr inbounds %class.Graph, %class.Graph* %9, i32 0, i32 0 - %18 = load i32, i32* %17, align 8 - %19 = icmp slt i32 %16, %18 - br i1 %19, label %20, label %32 - -20: ; preds = %15 - %21 = load i8*, i8** %4, align 8 - %22 = load i32, i32* %7, align 4 - %23 = sext i32 %22 to i64 - %24 = getelementptr inbounds i8, i8* %21, i64 %23 - store i8 0, i8* %24, align 1 - br label %25 - -25: ; preds = %20 - %26 = load i32, i32* %7, align 4 - %27 = add nsw i32 %26, 1 - store i32 %27, i32* %7, align 4 - br label %15, !llvm.loop !4 - -28: ; preds = %68, %66, %63, %61, %56, %47, %1 - %29 = landingpad { i8*, i32 } - cleanup - %30 = extractvalue { i8*, i32 } %29, 0 - store i8* %30, i8** %5, align 8 - %31 = extractvalue { i8*, i32 } %29, 1 - store i32 %31, i32* %6, align 4 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %3) #3 - br label %71 - -32: ; preds = %15 - store i32 0, i32* %8, align 4 - br label %33 - -33: ; preds = %52, %32 - %34 = load i32, i32* %8, align 4 - %35 = getelementptr inbounds %class.Graph, %class.Graph* %9, i32 0, i32 0 - %36 = load i32, i32* %35, align 8 - %37 = icmp slt i32 %34, %36 - br i1 %37, label %38, label %55 - -38: ; preds = %33 - %39 = load i8*, i8** %4, align 8 - %40 = load i32, i32* %8, align 4 - %41 = sext i32 %40 to i64 - %42 = getelementptr inbounds i8, i8* %39, i64 %41 - %43 = load i8, i8* %42, align 1 - %44 = trunc i8 %43 to i1 - %45 = zext i1 %44 to i32 - %46 = icmp eq i32 %45, 0 - br i1 %46, label %47, label %51 - -47: ; preds = %38 - %48 = load i32, i32* %8, align 4 - %49 = load i8*, i8** %4, align 8 - invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* nonnull dereferenceable(16) %9, i32 %48, i8* %49, %"class.std::stack"* nonnull align 8 dereferenceable(80) %3) - to label %50 unwind label %28 - -50: ; preds = %47 - br label %51 - -51: ; preds = %50, %38 - br label %52 - -52: ; preds = %51 - %53 = load i32, i32* %8, align 4 - %54 = add nsw i32 %53, 1 - store i32 %54, i32* %8, align 4 - br label %33, !llvm.loop !5 - -55: ; preds = %33 - br label %56 - -56: ; preds = %69, %55 - %57 = invoke zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - to label %58 unwind label %28 - -58: ; preds = %56 - %59 = zext i1 %57 to i32 - %60 = icmp eq i32 %59, 0 - br i1 %60, label %61, label %70 - -61: ; preds = %58 - %62 = invoke nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - to label %63 unwind label %28 - -63: ; preds = %61 - %64 = load i32, i32* %62, align 4 - %65 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %64) - to label %66 unwind label %28 - -66: ; preds = %63 - %67 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %65, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - to label %68 unwind label %28 - -68: ; preds = %66 - invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %3) - to label %69 unwind label %28 - -69: ; preds = %68 - br label %56, !llvm.loop !6 - -70: ; preds = %58 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %3) #3 - ret void - -71: ; preds = %28 - %72 = load i8*, i8** %5, align 8 - %73 = load i32, i32* %6, align 4 - %74 = insertvalue { i8*, i32 } undef, i8* %72, 0 - %75 = insertvalue { i8*, i32 } %74, i32 %73, 1 - resume { i8*, i32 } %75 -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = bitcast %"class.std::deque"* %4 to i8* - call void @llvm.memset.p0i8.i64(i8* align 8 %5, i8 0, i64 80, i1 false) - call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i1 %5 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - %5 = call nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::stack"*, align 8 - store %"class.std::stack"* %0, %"class.std::stack"** %2, align 8 - %3 = load %"class.std::stack"*, %"class.std::stack"** %2, align 8 - %4 = getelementptr inbounds %"class.std::stack", %"class.std::stack"* %3, i32 0, i32 0 - call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %4) #3 - ret void -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 6) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 5, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 5, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 4, i32 0) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 4, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 1) - %3 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([53 x i8], [53 x i8]* @.str.1, i64 0, i64 0)) - call void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull dereferenceable(16) %2) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - %4 = alloca %"struct.std::_Deque_iterator", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* nonnull dereferenceable(80) %7) #3 - %8 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - %9 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %7, %"struct.std::_Deque_iterator"* %3, %"struct.std::_Deque_iterator"* %4, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %9) - to label %10 unwind label %12 - -10: ; preds = %1 - %11 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) #3 - ret void - -12: ; preds = %1 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %5, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %6, align 4 - %16 = bitcast %"class.std::deque"* %7 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %16) #3 - br label %17 - -17: ; preds = %12 - %18 = load i8*, i8** %5, align 8 - call void @__clang_call_terminate(i8* %18) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* nonnull dereferenceable(80) %0, %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"* %2, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %3) #8 comdat align 2 { - %5 = alloca %"class.std::deque"*, align 8 - %6 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %5, align 8 - store %"class.std::allocator.0"* %3, %"class.std::allocator.0"** %6, align 8 - %7 = load %"class.std::deque"*, %"class.std::deque"** %5, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::deque"*, align 8 - %5 = bitcast %"struct.std::_Deque_iterator"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::deque"* %1, %"class.std::deque"** %4, align 8 - %6 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %7 = bitcast %"class.std::deque"* %6 to %"class.std::_Deque_base"* - %8 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %7, i32 0, i32 0 - %9 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %8 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %10 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %9, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %10) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %5, i32 0, i32 0 - %7 = load i32**, i32*** %6, align 8 - %8 = icmp ne i32** %7, null - br i1 %8, label %9, label %29 - -9: ; preds = %1 - %10 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %11 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %10 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %12 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %11, i32 0, i32 2 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %12, i32 0, i32 3 - %14 = load i32**, i32*** %13, align 8 - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = getelementptr inbounds i32*, i32** %19, i64 1 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %14, i32** %20) #3 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 0 - %24 = load i32**, i32*** %23, align 8 - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 1 - %28 = load i64, i64* %27, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %3, i32** %24, i64 %28) #3 - br label %29 - -29: ; preds = %9, %1 - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %30) #3 - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - store i32* %9, i32** %6, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %11 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %12 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %11, i32 0, i32 1 - %13 = load i32*, i32** %12, align 8 - store i32* %13, i32** %10, align 8 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - %15 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - store i32* %17, i32** %14, align 8 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - %19 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %20 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %19, i32 0, i32 3 - %21 = load i32**, i32*** %20, align 8 - store i32** %21, i32*** %18, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %9 = load i32**, i32*** %5, align 8 - store i32** %9, i32*** %7, align 8 - br label %10 - -10: ; preds = %17, %3 - %11 = load i32**, i32*** %7, align 8 - %12 = load i32**, i32*** %6, align 8 - %13 = icmp ult i32** %11, %12 - br i1 %13, label %14, label %20 - -14: ; preds = %10 - %15 = load i32**, i32*** %7, align 8 - %16 = load i32*, i32** %15, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %8, i32* %16) #3 - br label %17 - -17: ; preds = %14 - %18 = load i32**, i32*** %7, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i32 1 - store i32** %19, i32*** %7, align 8 - br label %10, !llvm.loop !7 - -20: ; preds = %10 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i64 %2) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - %7 = alloca %"class.std::allocator.3", align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %7, %"class.std::_Deque_base"* nonnull dereferenceable(80) %10) #3 - %11 = load i32**, i32*** %5, align 8 - %12 = load i64, i64* %6, align 8 - invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %7, i32** %11, i64 %12) - to label %13 unwind label %14 - -13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - ret void - -14: ; preds = %3 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - store i8* %16, i8** %8, align 8 - %17 = extractvalue { i8*, i32 } %15, 1 - store i32 %17, i32* %9, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 - br label %18 - -18: ; preds = %14 - %19 = load i8*, i8** %8, align 8 - call void @__clang_call_terminate(i8* %19) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32* %1) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"class.std::allocator.0"* - %8 = load i32*, i32** %4, align 8 - %9 = invoke i64 @_ZSt16__deque_buf_sizem(i64 4) - to label %10 unwind label %12 - -10: ; preds = %2 - invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7, i32* %8, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %10 - ret void - -12: ; preds = %10, %2 - %13 = landingpad { i8*, i32 } - catch i8* null - %14 = extractvalue { i8*, i32 } %13, 0 - call void @__clang_call_terminate(i8* %14) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = icmp ult i64 %3, 512 - br i1 %4, label %5, label %8 - -5: ; preds = %1 - %6 = load i64, i64* %2, align 8 - %7 = udiv i64 512, %6 - br label %9 - -8: ; preds = %1 - br label %9 - -9: ; preds = %8, %5 - %10 = phi i64 [ %7, %5 ], [ 1, %8 ] - ret i64 %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* noalias sret(%"class.std::allocator.3") align 1 %0, %"class.std::_Deque_base"* nonnull dereferenceable(80) %1) #8 comdat align 2 { - %3 = alloca i8*, align 8 - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = bitcast %"class.std::allocator.3"* %0 to i8* - store i8* %5, i8** %3, align 8 - store %"class.std::_Deque_base"* %1, %"class.std::_Deque_base"** %4, align 8 - %6 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %7 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %6) #3 - call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %7) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i32** %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator.3"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %4, align 8 - %8 = bitcast %"class.std::allocator.3"* %7 to %"class.__gnu_cxx::new_allocator.4"* - %9 = load i32**, i32*** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %8, i32** %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.3"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %2, align 8 - %3 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %2, align 8 - %4 = bitcast %"class.std::allocator.3"* %3 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - ret %"class.std::allocator.0"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* nonnull dereferenceable(1) %0, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store %"class.std::allocator.0"* %1, %"class.std::allocator.0"** %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i32** %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = bitcast i32** %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %7 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %7 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %9 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %8, i32 0, i32 3 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 0 - %11 = load i32*, i32** %10, align 8 - %12 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %13 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %14 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %13 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %15 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %14, i32 0, i32 3 - %16 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %15, i32 0, i32 2 - %17 = load i32*, i32** %16, align 8 - %18 = getelementptr inbounds i32, i32* %17, i64 -1 - %19 = icmp ne i32* %11, %18 - br i1 %19, label %20, label %38 - -20: ; preds = %2 - %21 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %22 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %21, i32 0, i32 0 - %23 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %22 to %"class.std::allocator.0"* - %24 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %25 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %24, i32 0, i32 0 - %26 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %25 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %27 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %26, i32 0, i32 3 - %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 0 - %29 = load i32*, i32** %28, align 8 - %30 = load i32*, i32** %4, align 8 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %23, i32* %29, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %34, i32 0, i32 0 - %36 = load i32*, i32** %35, align 8 - %37 = getelementptr inbounds i32, i32* %36, i32 1 - store i32* %37, i32** %35, align 8 - br label %40 - -38: ; preds = %2 - %39 = load i32*, i32** %4, align 8 - call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %5, i32* nonnull align 4 dereferenceable(4) %39) - br label %40 - -40: ; preds = %38, %20 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator.0"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %4, align 8 - %8 = bitcast %"class.std::allocator.0"* %7 to %"class.__gnu_cxx::new_allocator.1"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* nonnull dereferenceable(80) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = call i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %7 = call i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %5) #3 - %8 = icmp eq i64 %6, %7 - br i1 %8, label %9, label %10 - -9: ; preds = %2 - call void @_ZSt20__throw_length_errorPKc(i8* getelementptr inbounds ([48 x i8], [48 x i8]* @.str.2, i64 0, i64 0)) #17 - unreachable - -10: ; preds = %2 - call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 1) - %11 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %12 = call i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %11) - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = getelementptr inbounds i32*, i32** %18, i64 1 - store i32* %12, i32** %19, align 8 - %20 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"class.std::allocator.0"* - %23 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %23, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 3 - %27 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %26, i32 0, i32 0 - %28 = load i32*, i32** %27, align 8 - %29 = load i32*, i32** %4, align 8 - %30 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %29) #3 - call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %22, i32* %28, i32* nonnull align 4 dereferenceable(4) %30) #3 - %31 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %31, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 3 - %35 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %35, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 3 - %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 3 - %40 = load i32**, i32*** %39, align 8 - %41 = getelementptr inbounds i32*, i32** %40, i64 1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %34, i32** %41) #3 - %42 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %43 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %42, i32 0, i32 0 - %44 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %43 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %45 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %44, i32 0, i32 3 - %46 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %45, i32 0, i32 1 - %47 = load i32*, i32** %46, align 8 - %48 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 3 - %52 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %51, i32 0, i32 0 - store i32* %47, i32** %52, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i64 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) #3 - %6 = call i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - ret i64 %6 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #13 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::deque"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::deque"*, %"class.std::deque"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = add i64 %6, 1 - %8 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 1 - %12 = load i64, i64* %11, align 8 - %13 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %14 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %13, i32 0, i32 0 - %15 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %14 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %16 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %15, i32 0, i32 3 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 - %18 = load i32**, i32*** %17, align 8 - %19 = bitcast %"class.std::deque"* %5 to %"class.std::_Deque_base"* - %20 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %19, i32 0, i32 0 - %21 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %20 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %22 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %21, i32 0, i32 0 - %23 = load i32**, i32*** %22, align 8 - %24 = ptrtoint i32** %18 to i64 - %25 = ptrtoint i32** %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 8 - %28 = sub i64 %12, %27 - %29 = icmp ugt i64 %7, %28 - br i1 %29, label %30, label %32 - -30: ; preds = %2 - %31 = load i64, i64* %4, align 8 - call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %5, i64 %31, i1 zeroext false) - br label %32 - -32: ; preds = %30, %2 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) #7 comdat align 2 { - %2 = alloca %"class.std::_Deque_base"*, align 8 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %3 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %4 to %"class.std::allocator.0"* - %6 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %7 = call i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5, i64 %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0, i32** %1) #8 comdat align 2 { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca i32**, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = load i32**, i32*** %4, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 3 - store i32** %6, i32*** %7, align 8 - %8 = load i32**, i32*** %4, align 8 - %9 = load i32*, i32** %8, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - store i32* %9, i32** %10, align 8 - %11 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 1 - %12 = load i32*, i32** %11, align 8 - %13 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %14 = getelementptr inbounds i32, i32* %12, i64 %13 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 2 - store i32* %14, i32** %15, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #8 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = call i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #3 - %6 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %6, i32 0, i32 3 - %8 = load i32**, i32*** %7, align 8 - %9 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %9, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = ptrtoint i32** %8 to i64 - %13 = ptrtoint i32** %11 to i64 - %14 = sub i64 %12, %13 - %15 = sdiv exact i64 %14, 8 - %16 = sub nsw i64 %15, 1 - %17 = mul nsw i64 %5, %16 - %18 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 0 - %20 = load i32*, i32** %19, align 8 - %21 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 1 - %23 = load i32*, i32** %22, align 8 - %24 = ptrtoint i32* %20 to i64 - %25 = ptrtoint i32* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 4 - %28 = add nsw i64 %17, %27 - %29 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %30 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %29, i32 0, i32 2 - %31 = load i32*, i32** %30, align 8 - %32 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - %34 = load i32*, i32** %33, align 8 - %35 = ptrtoint i32* %31 to i64 - %36 = ptrtoint i32* %34 to i64 - %37 = sub i64 %35, %36 - %38 = sdiv exact i64 %37, 4 - %39 = add nsw i64 %28, %38 - ret i64 %39 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #8 comdat align 2 { - %1 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - ret i64 %1 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::allocator.0"*, align 8 - %3 = alloca i64, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - store i64 9223372036854775807, i64* %3, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %6 = call i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %5) #3 - store i64 %6, i64* %4, align 8 - %7 = invoke nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %3, i64* nonnull align 8 dereferenceable(8) %4) - to label %8 unwind label %10 - -8: ; preds = %1 - %9 = load i64, i64* %7, align 8 - ret i64 %9 - -10: ; preds = %1 - %11 = landingpad { i8*, i32 } - catch i8* null - %12 = extractvalue { i8*, i32 } %11, 0 - call void @__clang_call_terminate(i8* %12) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - %5 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret i64 %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %5, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %4, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %4 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %3) #3 - ret i64 %4 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret i64 2305843009213693951 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* nonnull dereferenceable(80) %0, i64 %1, i1 zeroext %2) #7 comdat align 2 { - %4 = alloca %"class.std::deque"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8, align 1 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i64, align 8 - %11 = alloca i32**, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %4, align 8 - store i64 %1, i64* %5, align 8 - %12 = zext i1 %2 to i8 - store i8 %12, i8* %6, align 1 - %13 = load %"class.std::deque"*, %"class.std::deque"** %4, align 8 - %14 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %15 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %14, i32 0, i32 0 - %16 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %15 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %17 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %16, i32 0, i32 3 - %18 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %17, i32 0, i32 3 - %19 = load i32**, i32*** %18, align 8 - %20 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %20, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 2 - %24 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %23, i32 0, i32 3 - %25 = load i32**, i32*** %24, align 8 - %26 = ptrtoint i32** %19 to i64 - %27 = ptrtoint i32** %25 to i64 - %28 = sub i64 %26, %27 - %29 = sdiv exact i64 %28, 8 - %30 = add nsw i64 %29, 1 - store i64 %30, i64* %7, align 8 - %31 = load i64, i64* %7, align 8 - %32 = load i64, i64* %5, align 8 - %33 = add i64 %31, %32 - store i64 %33, i64* %8, align 8 - %34 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %35 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %34, i32 0, i32 0 - %36 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %35 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %37 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %36, i32 0, i32 1 - %38 = load i64, i64* %37, align 8 - %39 = load i64, i64* %8, align 8 - %40 = mul i64 2, %39 - %41 = icmp ugt i64 %38, %40 - br i1 %41, label %42, label %108 - -42: ; preds = %3 - %43 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %44 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %43, i32 0, i32 0 - %45 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %44 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %46 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %45, i32 0, i32 0 - %47 = load i32**, i32*** %46, align 8 - %48 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %49 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %48, i32 0, i32 0 - %50 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %49 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %51 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %50, i32 0, i32 1 - %52 = load i64, i64* %51, align 8 - %53 = load i64, i64* %8, align 8 - %54 = sub i64 %52, %53 - %55 = udiv i64 %54, 2 - %56 = getelementptr inbounds i32*, i32** %47, i64 %55 - %57 = load i8, i8* %6, align 1 - %58 = trunc i8 %57 to i1 - br i1 %58, label %59, label %61 - -59: ; preds = %42 - %60 = load i64, i64* %5, align 8 - br label %62 - -61: ; preds = %42 - br label %62 - -62: ; preds = %61, %59 - %63 = phi i64 [ %60, %59 ], [ 0, %61 ] - %64 = getelementptr inbounds i32*, i32** %56, i64 %63 - store i32** %64, i32*** %9, align 8 - %65 = load i32**, i32*** %9, align 8 - %66 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %67 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %66, i32 0, i32 0 - %68 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %67 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %69 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %68, i32 0, i32 2 - %70 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %69, i32 0, i32 3 - %71 = load i32**, i32*** %70, align 8 - %72 = icmp ult i32** %65, %71 - br i1 %72, label %73, label %89 - -73: ; preds = %62 - %74 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %75 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %74, i32 0, i32 0 - %76 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %75 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %77 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %76, i32 0, i32 2 - %78 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %77, i32 0, i32 3 - %79 = load i32**, i32*** %78, align 8 - %80 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %80, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %83, i32 0, i32 3 - %85 = load i32**, i32*** %84, align 8 - %86 = getelementptr inbounds i32*, i32** %85, i64 1 - %87 = load i32**, i32*** %9, align 8 - %88 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %79, i32** %86, i32** %87) - br label %107 - -89: ; preds = %62 - %90 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %90, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 3 - %95 = load i32**, i32*** %94, align 8 - %96 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %97 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %96, i32 0, i32 0 - %98 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %97 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %99 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %98, i32 0, i32 3 - %100 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %99, i32 0, i32 3 - %101 = load i32**, i32*** %100, align 8 - %102 = getelementptr inbounds i32*, i32** %101, i64 1 - %103 = load i32**, i32*** %9, align 8 - %104 = load i64, i64* %7, align 8 - %105 = getelementptr inbounds i32*, i32** %103, i64 %104 - %106 = call i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %95, i32** %102, i32** %105) - br label %107 - -107: ; preds = %89, %73 - br label %175 - -108: ; preds = %3 - %109 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %110 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %109, i32 0, i32 0 - %111 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %110 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %112 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %111, i32 0, i32 1 - %113 = load i64, i64* %112, align 8 - %114 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %115 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %114, i32 0, i32 0 - %116 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %115 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %117 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %116, i32 0, i32 1 - %118 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %117, i64* nonnull align 8 dereferenceable(8) %5) - %119 = load i64, i64* %118, align 8 - %120 = add i64 %113, %119 - %121 = add i64 %120, 2 - store i64 %121, i64* %10, align 8 - %122 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %123 = load i64, i64* %10, align 8 - %124 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %122, i64 %123) - store i32** %124, i32*** %11, align 8 - %125 = load i32**, i32*** %11, align 8 - %126 = load i64, i64* %10, align 8 - %127 = load i64, i64* %8, align 8 - %128 = sub i64 %126, %127 - %129 = udiv i64 %128, 2 - %130 = getelementptr inbounds i32*, i32** %125, i64 %129 - %131 = load i8, i8* %6, align 1 - %132 = trunc i8 %131 to i1 - br i1 %132, label %133, label %135 - -133: ; preds = %108 - %134 = load i64, i64* %5, align 8 - br label %136 - -135: ; preds = %108 - br label %136 - -136: ; preds = %135, %133 - %137 = phi i64 [ %134, %133 ], [ 0, %135 ] - %138 = getelementptr inbounds i32*, i32** %130, i64 %137 - store i32** %138, i32*** %9, align 8 - %139 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %140 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %139, i32 0, i32 0 - %141 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %140 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %142 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %141, i32 0, i32 2 - %143 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %142, i32 0, i32 3 - %144 = load i32**, i32*** %143, align 8 - %145 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %146 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %145, i32 0, i32 0 - %147 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %146 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %148 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %147, i32 0, i32 3 - %149 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %148, i32 0, i32 3 - %150 = load i32**, i32*** %149, align 8 - %151 = getelementptr inbounds i32*, i32** %150, i64 1 - %152 = load i32**, i32*** %9, align 8 - %153 = call i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %144, i32** %151, i32** %152) - %154 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %155 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %156 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %155, i32 0, i32 0 - %157 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %156 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %158 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %157, i32 0, i32 0 - %159 = load i32**, i32*** %158, align 8 - %160 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %161 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %160, i32 0, i32 0 - %162 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %161 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %163 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %162, i32 0, i32 1 - %164 = load i64, i64* %163, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %154, i32** %159, i64 %164) #3 - %165 = load i32**, i32*** %11, align 8 - %166 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %167 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %166, i32 0, i32 0 - %168 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %167 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %169 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %168, i32 0, i32 0 - store i32** %165, i32*** %169, align 8 - %170 = load i64, i64* %10, align 8 - %171 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %172 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %171, i32 0, i32 0 - %173 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %172 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %174 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %173, i32 0, i32 1 - store i64 %170, i64* %174, align 8 - br label %175 - -175: ; preds = %136, %107 - %176 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %177 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %176, i32 0, i32 0 - %178 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %177 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %179 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %178, i32 0, i32 2 - %180 = load i32**, i32*** %9, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %179, i32** %180) #3 - %181 = bitcast %"class.std::deque"* %13 to %"class.std::_Deque_base"* - %182 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %181, i32 0, i32 0 - %183 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %182 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %184 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %183, i32 0, i32 3 - %185 = load i32**, i32*** %9, align 8 - %186 = load i64, i64* %7, align 8 - %187 = getelementptr inbounds i32*, i32** %185, i64 %186 - %188 = getelementptr inbounds i32*, i32** %187, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %184, i32** %188) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %7) - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %11) - ret i32** %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %0, i64* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca i64*, align 8 - %4 = alloca i64*, align 8 - %5 = alloca i64*, align 8 - store i64* %0, i64** %4, align 8 - store i64* %1, i64** %5, align 8 - %6 = load i64*, i64** %4, align 8 - %7 = load i64, i64* %6, align 8 - %8 = load i64*, i64** %5, align 8 - %9 = load i64, i64* %8, align 8 - %10 = icmp ult i64 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i64*, i64** %5, align 8 - store i64* %12, i64** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i64*, i64** %4, align 8 - store i64* %14, i64** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i64*, i64** %3, align 8 - ret i64* %16 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca %"class.std::allocator.3", align 1 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %8 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - call void @_ZNKSt11_Deque_baseIiSaIiEE20_M_get_map_allocatorEv(%"class.std::allocator.3"* sret(%"class.std::allocator.3") align 1 %5, %"class.std::_Deque_base"* nonnull dereferenceable(80) %8) #3 - %9 = load i64, i64* %4, align 8 - %10 = invoke i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %5, i64 %9) - to label %11 unwind label %12 - -11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - ret i32** %10 - -12: ; preds = %2 - %13 = landingpad { i8*, i32 } - cleanup - %14 = extractvalue { i8*, i32 } %13, 0 - store i8* %14, i8** %6, align 8 - %15 = extractvalue { i8*, i32 } %13, 1 - store i32 %15, i32* %7, align 4 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 - br label %16 - -16: ; preds = %12 - %17 = load i8*, i8** %6, align 8 - %18 = load i32, i32* %7, align 4 - %19 = insertvalue { i8*, i32 } undef, i8* %17, 0 - %20 = insertvalue { i8*, i32 } %19, i32 %18, 1 - resume { i8*, i32 } %20 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #8 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %0, i32** %1) #8 comdat { - %3 = alloca i32***, align 8 - %4 = alloca i32**, align 8 - store i32*** %0, i32**** %3, align 8 - store i32** %1, i32*** %4, align 8 - %5 = load i32**, i32*** %4, align 8 - ret i32** %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #8 comdat { - %2 = alloca i32**, align 8 - store i32** %0, i32*** %2, align 8 - %3 = load i32**, i32*** %2, align 8 - ret i32** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %23 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = bitcast i32** %17 to i8* - %19 = load i32**, i32*** %4, align 8 - %20 = bitcast i32** %19 to i8* - %21 = load i64, i64* %7, align 8 - %22 = mul i64 8, %21 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %20, i64 %22, i1 false) - br label %23 - -23: ; preds = %16, %3 - %24 = load i32**, i32*** %6, align 8 - %25 = load i64, i64* %7, align 8 - %26 = getelementptr inbounds i32*, i32** %24, i64 %25 - ret i32** %26 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %7) #3 - %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 - %11 = load i32**, i32*** %6, align 8 - %12 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %11) #3 - %13 = call i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %8, i32** %10, i32** %12) - %14 = call i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** nonnull align 8 dereferenceable(8) %6, i32** %13) - ret i32** %14 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** %0, i32** %1, i32** %2) #7 comdat { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %7 = load i32**, i32*** %4, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %6, align 8 - %10 = call i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %7, i32** %8, i32** %9) - ret i32** %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** %0, i32** %1, i32** %2) #8 comdat align 2 { - %4 = alloca i32**, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i64, align 8 - store i32** %0, i32*** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %8 = load i32**, i32*** %5, align 8 - %9 = load i32**, i32*** %4, align 8 - %10 = ptrtoint i32** %8 to i64 - %11 = ptrtoint i32** %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 8 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load i32**, i32*** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds i32*, i32** %17, i64 %19 - %21 = bitcast i32** %20 to i8* - %22 = load i32**, i32*** %4, align 8 - %23 = bitcast i32** %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 8, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 8 %21, i8* align 8 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load i32**, i32*** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds i32*, i32** %27, i64 %29 - ret i32** %30 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator.3"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.3"* %0, %"class.std::allocator.3"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.3"*, %"class.std::allocator.3"** %3, align 8 - %6 = bitcast %"class.std::allocator.3"* %5 to %"class.__gnu_cxx::new_allocator.4"* - %7 = load i64, i64* %4, align 8 - %8 = call i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32** %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 8 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to i32** - ret i32** %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.4"*, align 8 - store %"class.__gnu_cxx::new_allocator.4"* %0, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.4"*, %"class.__gnu_cxx::new_allocator.4"** %2, align 8 - ret i64 1152921504606846975 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i64, i64* %4, align 8 - %8 = call i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret i32* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 4 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to i32* - ret i32* %16 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #14 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4) - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::_Deque_base"*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %2, align 8 - %5 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %2, align 8 - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %5, i64 0) - to label %7 unwind label %8 - -7: ; preds = %1 - ret void - -8: ; preds = %1 - %9 = landingpad { i8*, i32 } - cleanup - %10 = extractvalue { i8*, i32 } %9, 0 - store i8* %10, i8** %3, align 8 - %11 = extractvalue { i8*, i32 } %9, 1 - store i32 %11, i32* %4, align 4 - call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %6) #3 - br label %12 - -12: ; preds = %8 - %13 = load i8*, i8** %3, align 8 - %14 = load i32, i32* %4, align 4 - %15 = insertvalue { i8*, i32 } undef, i8* %13, 0 - %16 = insertvalue { i8*, i32 } %15, i32 %14, 1 - resume { i8*, i32 } %16 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl"* %0, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl"*, %"struct.std::_Deque_base>::_Deque_impl"** %2, align 8 - %4 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"class.std::allocator.0"* - call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %4) #3 - %5 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %3 to %"struct.std::_Deque_base>::_Deque_impl_data"* - call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %5) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i64 %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::_Deque_base"*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i64, align 8 - %6 = alloca i64, align 8 - %7 = alloca i64, align 8 - %8 = alloca i32**, align 8 - %9 = alloca i32**, align 8 - %10 = alloca i8*, align 8 - %11 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %12 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %3, align 8 - %13 = load i64, i64* %4, align 8 - %14 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %15 = udiv i64 %13, %14 - %16 = add i64 %15, 1 - store i64 %16, i64* %5, align 8 - store i64 8, i64* %6, align 8 - %17 = load i64, i64* %5, align 8 - %18 = add i64 %17, 2 - store i64 %18, i64* %7, align 8 - %19 = call nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* nonnull align 8 dereferenceable(8) %6, i64* nonnull align 8 dereferenceable(8) %7) - %20 = load i64, i64* %19, align 8 - %21 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %22 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %21 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %23 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %22, i32 0, i32 1 - store i64 %20, i64* %23, align 8 - %24 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %25 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %24 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %26 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %25, i32 0, i32 1 - %27 = load i64, i64* %26, align 8 - %28 = call i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i64 %27) - %29 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %30 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %29 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %31 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %30, i32 0, i32 0 - store i32** %28, i32*** %31, align 8 - %32 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %33 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %32 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %34 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %33, i32 0, i32 0 - %35 = load i32**, i32*** %34, align 8 - %36 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %37 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %36 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %38 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %37, i32 0, i32 1 - %39 = load i64, i64* %38, align 8 - %40 = load i64, i64* %5, align 8 - %41 = sub i64 %39, %40 - %42 = udiv i64 %41, 2 - %43 = getelementptr inbounds i32*, i32** %35, i64 %42 - store i32** %43, i32*** %8, align 8 - %44 = load i32**, i32*** %8, align 8 - %45 = load i64, i64* %5, align 8 - %46 = getelementptr inbounds i32*, i32** %44, i64 %45 - store i32** %46, i32*** %9, align 8 - %47 = load i32**, i32*** %8, align 8 - %48 = load i32**, i32*** %9, align 8 - invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %47, i32** %48) - to label %49 unwind label %50 - -49: ; preds = %2 - br label %76 - -50: ; preds = %2 - %51 = landingpad { i8*, i32 } - catch i8* null - %52 = extractvalue { i8*, i32 } %51, 0 - store i8* %52, i8** %10, align 8 - %53 = extractvalue { i8*, i32 } %51, 1 - store i32 %53, i32* %11, align 4 - br label %54 - -54: ; preds = %50 - %55 = load i8*, i8** %10, align 8 - %56 = call i8* @__cxa_begin_catch(i8* %55) #3 - %57 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %58 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %57 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %59 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %58, i32 0, i32 0 - %60 = load i32**, i32*** %59, align 8 - %61 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %62 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %61 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %63 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %62, i32 0, i32 1 - %64 = load i64, i64* %63, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* nonnull dereferenceable(80) %12, i32** %60, i64 %64) #3 - %65 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %66 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %65 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %67 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %66, i32 0, i32 0 - store i32** null, i32*** %67, align 8 - %68 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %69 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %68 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %70 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %69, i32 0, i32 1 - store i64 0, i64* %70, align 8 - invoke void @__cxa_rethrow() #17 - to label %116 unwind label %71 - -71: ; preds = %54 - %72 = landingpad { i8*, i32 } - cleanup - %73 = extractvalue { i8*, i32 } %72, 0 - store i8* %73, i8** %10, align 8 - %74 = extractvalue { i8*, i32 } %72, 1 - store i32 %74, i32* %11, align 4 - invoke void @__cxa_end_catch() - to label %75 unwind label %113 - -75: ; preds = %71 - br label %108 - -76: ; preds = %49 - %77 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %78 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %77 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %79 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %78, i32 0, i32 2 - %80 = load i32**, i32*** %8, align 8 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %79, i32** %80) #3 - %81 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %82 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %81 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %83 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %82, i32 0, i32 3 - %84 = load i32**, i32*** %9, align 8 - %85 = getelementptr inbounds i32*, i32** %84, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %83, i32** %85) #3 - %86 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %87 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %86 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %88 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %87, i32 0, i32 2 - %89 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %88, i32 0, i32 1 - %90 = load i32*, i32** %89, align 8 - %91 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %92 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %91 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %93 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %92, i32 0, i32 2 - %94 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %93, i32 0, i32 0 - store i32* %90, i32** %94, align 8 - %95 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %96 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %95 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %97 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %96, i32 0, i32 3 - %98 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %97, i32 0, i32 1 - %99 = load i32*, i32** %98, align 8 - %100 = load i64, i64* %4, align 8 - %101 = call i64 @_ZSt16__deque_buf_sizem(i64 4) - %102 = urem i64 %100, %101 - %103 = getelementptr inbounds i32, i32* %99, i64 %102 - %104 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %12, i32 0, i32 0 - %105 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %104 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %106 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %105, i32 0, i32 3 - %107 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %106, i32 0, i32 0 - store i32* %103, i32** %107, align 8 - ret void - -108: ; preds = %75 - %109 = load i8*, i8** %10, align 8 - %110 = load i32, i32* %11, align 4 - %111 = insertvalue { i8*, i32 } undef, i8* %109, 0 - %112 = insertvalue { i8*, i32 } %111, i32 %110, 1 - resume { i8*, i32 } %112 - -113: ; preds = %71 - %114 = landingpad { i8*, i32 } - catch i8* null - %115 = extractvalue { i8*, i32 } %114, 0 - call void @__clang_call_terminate(i8* %115) #16 - unreachable - -116: ; preds = %54 - unreachable -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator.0"*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %2, align 8 - %3 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %2, align 8 - %4 = bitcast %"class.std::allocator.0"* %3 to %"class.__gnu_cxx::new_allocator.1"* - call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* nonnull dereferenceable(80) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_base>::_Deque_impl_data"*, align 8 - store %"struct.std::_Deque_base>::_Deque_impl_data"* %0, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %3 = load %"struct.std::_Deque_base>::_Deque_impl_data"*, %"struct.std::_Deque_base>::_Deque_impl_data"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 0 - store i32** null, i32*** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 1 - store i64 0, i64* %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 2 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %6) #3 - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %3, i32 0, i32 3 - call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* null, i32** %4, align 8 - %5 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - store i32* null, i32** %5, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - store i32* null, i32** %6, align 8 - %7 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - store i32** null, i32*** %7, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %0, i32** %1, i32** %2) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %"class.std::_Deque_base"*, align 8 - %5 = alloca i32**, align 8 - %6 = alloca i32**, align 8 - %7 = alloca i32**, align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::_Deque_base"* %0, %"class.std::_Deque_base"** %4, align 8 - store i32** %1, i32*** %5, align 8 - store i32** %2, i32*** %6, align 8 - %10 = load %"class.std::_Deque_base"*, %"class.std::_Deque_base"** %4, align 8 - %11 = load i32**, i32*** %5, align 8 - store i32** %11, i32*** %7, align 8 - br label %12 - -12: ; preds = %20, %3 - %13 = load i32**, i32*** %7, align 8 - %14 = load i32**, i32*** %6, align 8 - %15 = icmp ult i32** %13, %14 - br i1 %15, label %16, label %32 - -16: ; preds = %12 - %17 = invoke i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10) - to label %18 unwind label %23 - -18: ; preds = %16 - %19 = load i32**, i32*** %7, align 8 - store i32* %17, i32** %19, align 8 - br label %20 - -20: ; preds = %18 - %21 = load i32**, i32*** %7, align 8 - %22 = getelementptr inbounds i32*, i32** %21, i32 1 - store i32** %22, i32*** %7, align 8 - br label %12, !llvm.loop !8 - -23: ; preds = %16 - %24 = landingpad { i8*, i32 } - catch i8* null - %25 = extractvalue { i8*, i32 } %24, 0 - store i8* %25, i8** %8, align 8 - %26 = extractvalue { i8*, i32 } %24, 1 - store i32 %26, i32* %9, align 4 - br label %27 - -27: ; preds = %23 - %28 = load i8*, i8** %8, align 8 - %29 = call i8* @__cxa_begin_catch(i8* %28) #3 - %30 = load i32**, i32*** %5, align 8 - %31 = load i32**, i32*** %7, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* nonnull dereferenceable(80) %10, i32** %30, i32** %31) #3 - invoke void @__cxa_rethrow() #17 - to label %47 unwind label %33 - -32: ; preds = %12 - br label %38 - -33: ; preds = %27 - %34 = landingpad { i8*, i32 } - cleanup - %35 = extractvalue { i8*, i32 } %34, 0 - store i8* %35, i8** %8, align 8 - %36 = extractvalue { i8*, i32 } %34, 1 - store i32 %36, i32* %9, align 4 - invoke void @__cxa_end_catch() - to label %37 unwind label %44 - -37: ; preds = %33 - br label %39 - -38: ; preds = %32 - ret void - -39: ; preds = %37 - %40 = load i8*, i8** %8, align 8 - %41 = load i32, i32* %9, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 - -44: ; preds = %33 - %45 = landingpad { i8*, i32 } - catch i8* null - %46 = extractvalue { i8*, i32 } %45, 0 - call void @__clang_call_terminate(i8* %46) #16 - unreachable - -47: ; preds = %27 - unreachable -} - -declare dso_local void @__cxa_rethrow() - -declare dso_local void @__cxa_end_catch() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %9 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %8, i32 0, i32 0 - %10 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %9 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %11 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %10, i32 0, i32 2 - %12 = call zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %11) #3 - ret i1 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* nonnull align 8 dereferenceable(32) %1) #8 comdat { - %3 = alloca %"struct.std::_Deque_iterator"*, align 8 - %4 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %3, align 8 - store %"struct.std::_Deque_iterator"* %1, %"struct.std::_Deque_iterator"** %4, align 8 - %5 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %5, i32 0, i32 0 - %7 = load i32*, i32** %6, align 8 - %8 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 0 - %10 = load i32*, i32** %9, align 8 - %11 = icmp eq i32* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - %3 = alloca %"struct.std::_Deque_iterator", align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %4 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* nonnull dereferenceable(80) %4) #3 - %5 = call nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - %6 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3) #3 - ret i32* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - %6 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 1 - %7 = load i32*, i32** %6, align 8 - %8 = icmp eq i32* %5, %7 - br i1 %8, label %9, label %16 - -9: ; preds = %1 - %10 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 3 - %11 = load i32**, i32*** %10, align 8 - %12 = getelementptr inbounds i32*, i32** %11, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %3, i32** %12) #3 - %13 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 2 - %14 = load i32*, i32** %13, align 8 - %15 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - store i32* %14, i32** %15, align 8 - br label %16 - -16: ; preds = %9, %1 - %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %18 = load i32*, i32** %17, align 8 - %19 = getelementptr inbounds i32, i32* %18, i32 -1 - store i32* %19, i32** %17, align 8 - ret %"struct.std::_Deque_iterator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_Deque_iterator"*, align 8 - store %"struct.std::_Deque_iterator"* %0, %"struct.std::_Deque_iterator"** %2, align 8 - %3 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %3, i32 0, i32 0 - %5 = load i32*, i32** %4, align 8 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %4, i32 0, i32 0 - %6 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %5 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %7 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %6, i32 0, i32 3 - %8 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %7, i32 0, i32 0 - %9 = load i32*, i32** %8, align 8 - %10 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %11 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %10, i32 0, i32 0 - %12 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %11 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %13 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %12, i32 0, i32 3 - %14 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %13, i32 0, i32 1 - %15 = load i32*, i32** %14, align 8 - %16 = icmp ne i32* %9, %15 - br i1 %16, label %17, label %33 - -17: ; preds = %1 - %18 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %19 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %18, i32 0, i32 0 - %20 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %19 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %21 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %20, i32 0, i32 3 - %22 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %21, i32 0, i32 0 - %23 = load i32*, i32** %22, align 8 - %24 = getelementptr inbounds i32, i32* %23, i32 -1 - store i32* %24, i32** %22, align 8 - %25 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %26 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %25) #3 - %27 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %28 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %27, i32 0, i32 0 - %29 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %28 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %30 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %29, i32 0, i32 3 - %31 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %30, i32 0, i32 0 - %32 = load i32*, i32** %31, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %26, i32* %32) #3 - br label %35 - -33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) - to label %34 unwind label %36 - -34: ; preds = %33 - br label %35 - -35: ; preds = %34, %17 - ret void - -36: ; preds = %33 - %37 = landingpad { i8*, i32 } - catch i8* null - %38 = extractvalue { i8*, i32 } %37, 0 - call void @__clang_call_terminate(i8* %38) #16 - unreachable -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.std::allocator.0"*, align 8 - %4 = alloca i32*, align 8 - store %"class.std::allocator.0"* %0, %"class.std::allocator.0"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.std::allocator.0"*, %"class.std::allocator.0"** %3, align 8 - %6 = bitcast %"class.std::allocator.0"* %5 to %"class.__gnu_cxx::new_allocator.1"* - %7 = load i32*, i32** %4, align 8 - call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %6, i32* %7) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %0) #8 comdat align 2 { - %2 = alloca %"class.std::deque"*, align 8 - store %"class.std::deque"* %0, %"class.std::deque"** %2, align 8 - %3 = load %"class.std::deque"*, %"class.std::deque"** %2, align 8 - %4 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %5 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %6 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %5, i32 0, i32 0 - %7 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %6 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %8 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %7, i32 0, i32 3 - %9 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %8, i32 0, i32 1 - %10 = load i32*, i32** %9, align 8 - call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* nonnull dereferenceable(80) %4, i32* %10) #3 - %11 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %12 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %11, i32 0, i32 0 - %13 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %12 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %14 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %13, i32 0, i32 3 - %15 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %16 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %15, i32 0, i32 0 - %17 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %16 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %18 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %17, i32 0, i32 3 - %19 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %18, i32 0, i32 3 - %20 = load i32**, i32*** %19, align 8 - %21 = getelementptr inbounds i32*, i32** %20, i64 -1 - call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* nonnull dereferenceable(32) %14, i32** %21) #3 - %22 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %23 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %22, i32 0, i32 0 - %24 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %23 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %25 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %24, i32 0, i32 3 - %26 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %25, i32 0, i32 2 - %27 = load i32*, i32** %26, align 8 - %28 = getelementptr inbounds i32, i32* %27, i64 -1 - %29 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %30 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %29, i32 0, i32 0 - %31 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %30 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %32 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %31, i32 0, i32 3 - %33 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %32, i32 0, i32 0 - store i32* %28, i32** %33, align 8 - %34 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %35 = call nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* nonnull dereferenceable(80) %34) #3 - %36 = bitcast %"class.std::deque"* %3 to %"class.std::_Deque_base"* - %37 = getelementptr inbounds %"class.std::_Deque_base", %"class.std::_Deque_base"* %36, i32 0, i32 0 - %38 = bitcast %"struct.std::_Deque_base>::_Deque_impl"* %37 to %"struct.std::_Deque_base>::_Deque_impl_data"* - %39 = getelementptr inbounds %"struct.std::_Deque_base>::_Deque_impl_data", %"struct.std::_Deque_base>::_Deque_impl_data"* %38, i32 0, i32 3 - %40 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %39, i32 0, i32 0 - %41 = load i32*, i32** %40, align 8 - call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %35, i32* %41) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* nonnull dereferenceable(1) %0, i32* %1) #8 comdat align 2 { - %3 = alloca %"class.__gnu_cxx::new_allocator.1"*, align 8 - %4 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator.1"* %0, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - store i32* %1, i32** %4, align 8 - %5 = load %"class.__gnu_cxx::new_allocator.1"*, %"class.__gnu_cxx::new_allocator.1"** %3, align 8 - %6 = load i32*, i32** %4, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_topological_sorting.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noinline noreturn nounwind } -attributes #12 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #14 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/total-number-of-non-decreasing-numbers-with-n-digits.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/total-number-of-non-decreasing-numbers-with-n-digits.ll deleted file mode 100644 index d3b0835f..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/total-number-of-non-decreasing-numbers-with-n-digits.ll +++ /dev/null @@ -1,250 +0,0 @@ -; ModuleID = 'PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp' -source_filename = "PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i64, align 8 - %10 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %11 = load i32, i32* %2, align 4 - %12 = add nsw i32 %11, 1 - %13 = zext i32 %12 to i64 - %14 = call i8* @llvm.stacksave() - store i8* %14, i8** %3, align 8 - %15 = mul nuw i64 10, %13 - %16 = alloca i64, i64 %15, align 16 - store i64 %13, i64* %4, align 8 - %17 = bitcast i64* %16 to i8* - %18 = mul nuw i64 10, %13 - %19 = mul nuw i64 8, %18 - call void @llvm.memset.p0i8.i64(i8* align 16 %17, i8 0, i64 %19, i1 false) - store i32 0, i32* %5, align 4 - br label %20 - -20: ; preds = %29, %1 - %21 = load i32, i32* %5, align 4 - %22 = icmp slt i32 %21, 10 - br i1 %22, label %23, label %32 - -23: ; preds = %20 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = mul nsw i64 %25, %13 - %27 = getelementptr inbounds i64, i64* %16, i64 %26 - %28 = getelementptr inbounds i64, i64* %27, i64 1 - store i64 1, i64* %28, align 8 - br label %29 - -29: ; preds = %23 - %30 = load i32, i32* %5, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %5, align 4 - br label %20, !llvm.loop !2 - -32: ; preds = %20 - store i32 0, i32* %6, align 4 - br label %33 - -33: ; preds = %73, %32 - %34 = load i32, i32* %6, align 4 - %35 = icmp sle i32 %34, 9 - br i1 %35, label %36, label %76 - -36: ; preds = %33 - store i32 2, i32* %7, align 4 - br label %37 - -37: ; preds = %69, %36 - %38 = load i32, i32* %7, align 4 - %39 = load i32, i32* %2, align 4 - %40 = icmp sle i32 %38, %39 - br i1 %40, label %41, label %72 - -41: ; preds = %37 - store i32 0, i32* %8, align 4 - br label %42 - -42: ; preds = %65, %41 - %43 = load i32, i32* %8, align 4 - %44 = load i32, i32* %6, align 4 - %45 = icmp sle i32 %43, %44 - br i1 %45, label %46, label %68 - -46: ; preds = %42 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = mul nsw i64 %48, %13 - %50 = getelementptr inbounds i64, i64* %16, i64 %49 - %51 = load i32, i32* %7, align 4 - %52 = sub nsw i32 %51, 1 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds i64, i64* %50, i64 %53 - %55 = load i64, i64* %54, align 8 - %56 = load i32, i32* %6, align 4 - %57 = sext i32 %56 to i64 - %58 = mul nsw i64 %57, %13 - %59 = getelementptr inbounds i64, i64* %16, i64 %58 - %60 = load i32, i32* %7, align 4 - %61 = sext i32 %60 to i64 - %62 = getelementptr inbounds i64, i64* %59, i64 %61 - %63 = load i64, i64* %62, align 8 - %64 = add nsw i64 %63, %55 - store i64 %64, i64* %62, align 8 - br label %65 - -65: ; preds = %46 - %66 = load i32, i32* %8, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %8, align 4 - br label %42, !llvm.loop !4 - -68: ; preds = %42 - br label %69 - -69: ; preds = %68 - %70 = load i32, i32* %7, align 4 - %71 = add nsw i32 %70, 1 - store i32 %71, i32* %7, align 4 - br label %37, !llvm.loop !5 - -72: ; preds = %37 - br label %73 - -73: ; preds = %72 - %74 = load i32, i32* %6, align 4 - %75 = add nsw i32 %74, 1 - store i32 %75, i32* %6, align 4 - br label %33, !llvm.loop !6 - -76: ; preds = %33 - store i64 0, i64* %9, align 8 - store i32 0, i32* %10, align 4 - br label %77 - -77: ; preds = %91, %76 - %78 = load i32, i32* %10, align 4 - %79 = icmp slt i32 %78, 10 - br i1 %79, label %80, label %94 - -80: ; preds = %77 - %81 = load i32, i32* %10, align 4 - %82 = sext i32 %81 to i64 - %83 = mul nsw i64 %82, %13 - %84 = getelementptr inbounds i64, i64* %16, i64 %83 - %85 = load i32, i32* %2, align 4 - %86 = sext i32 %85 to i64 - %87 = getelementptr inbounds i64, i64* %84, i64 %86 - %88 = load i64, i64* %87, align 8 - %89 = load i64, i64* %9, align 8 - %90 = add nsw i64 %89, %88 - store i64 %90, i64* %9, align 8 - br label %91 - -91: ; preds = %80 - %92 = load i32, i32* %10, align 4 - %93 = add nsw i32 %92, 1 - store i32 %93, i32* %10, align 4 - br label %77, !llvm.loop !7 - -94: ; preds = %77 - %95 = load i64, i64* %9, align 8 - %96 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %96) - ret i64 %95 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = call i64 @_Z18countNonDecreasingi(i32 %3) - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEx(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i64 %4) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEx(%"class.std::basic_ostream"* nonnull dereferenceable(8), i64) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/tower-of-hanoi.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/tower-of-hanoi.ll deleted file mode 100644 index 66efe67d..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/tower-of-hanoi.ll +++ /dev/null @@ -1,138 +0,0 @@ -; ModuleID = 'PE-benchmarks/tower-of-hanoi.cpp' -source_filename = "PE-benchmarks/tower-of-hanoi.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [22 x i8] c"Move disk 1 from rod \00", align 1 -@.str.1 = private unnamed_addr constant [9 x i8] c" to rod \00", align 1 -@.str.2 = private unnamed_addr constant [11 x i8] c"Move disk \00", align 1 -@.str.3 = private unnamed_addr constant [11 x i8] c" from rod \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_tower_of_hanoi.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z12towerOfHanoiiccc(i32 %0, i8 signext %1, i8 signext %2, i8 signext %3) #4 { - %5 = alloca i32, align 4 - %6 = alloca i8, align 1 - %7 = alloca i8, align 1 - %8 = alloca i8, align 1 - store i32 %0, i32* %5, align 4 - store i8 %1, i8* %6, align 1 - store i8 %2, i8* %7, align 1 - store i8 %3, i8* %8, align 1 - %9 = load i32, i32* %5, align 4 - %10 = icmp eq i32 %9, 1 - br i1 %10, label %11, label %19 - -11: ; preds = %4 - %12 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) - %13 = load i8, i8* %6, align 1 - %14 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %12, i8 signext %13) - %15 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %14, i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0)) - %16 = load i8, i8* %7, align 1 - %17 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %15, i8 signext %16) - %18 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %17, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %40 - -19: ; preds = %4 - %20 = load i32, i32* %5, align 4 - %21 = sub nsw i32 %20, 1 - %22 = load i8, i8* %6, align 1 - %23 = load i8, i8* %8, align 1 - %24 = load i8, i8* %7, align 1 - call void @_Z12towerOfHanoiiccc(i32 %21, i8 signext %22, i8 signext %23, i8 signext %24) - %25 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str.2, i64 0, i64 0)) - %26 = load i32, i32* %5, align 4 - %27 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %25, i32 %26) - %28 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %27, i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str.3, i64 0, i64 0)) - %29 = load i8, i8* %6, align 1 - %30 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %28, i8 signext %29) - %31 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %30, i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0)) - %32 = load i8, i8* %7, align 1 - %33 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %31, i8 signext %32) - %34 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %33, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %35 = load i32, i32* %5, align 4 - %36 = sub nsw i32 %35, 1 - %37 = load i8, i8* %8, align 1 - %38 = load i8, i8* %7, align 1 - %39 = load i8, i8* %6, align 1 - call void @_Z12towerOfHanoiiccc(i32 %36, i8 signext %37, i8 signext %38, i8 signext %39) - br label %40 - -40: ; preds = %19, %11 - ret void -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8 signext) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - store i32 4, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - call void @_Z12towerOfHanoiiccc(i32 %3, i8 signext 65, i8 signext 67, i8 signext 66) - ret i32 0 -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_tower_of_hanoi.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll deleted file mode 100644 index 175cfd0a..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll +++ /dev/null @@ -1,265 +0,0 @@ -; ModuleID = 'PE-benchmarks/transitive-closure-of-a-graph.cpp' -source_filename = "PE-benchmarks/transitive-closure-of-a-graph.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [59 x i8] c"Following matrix is transitive closure of the given graph\0A\00", align 1 -@.str.1 = private unnamed_addr constant [4 x i8] c"%d \00", align 1 -@.str.2 = private unnamed_addr constant [2 x i8] c"\0A\00", align 1 -@__const.main.graph = private unnamed_addr constant [4 x [4 x i32]] [[4 x i32] [i32 1, i32 1, i32 0, i32 1], [4 x i32] [i32 0, i32 1, i32 1, i32 0], [4 x i32] [i32 0, i32 0, i32 1, i32 1], [4 x i32] [i32 0, i32 0, i32 0, i32 1]], align 16 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* %0) #0 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca [4 x [4 x i32]], align 16 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - store i32 0, i32* %4, align 4 - br label %7 - -7: ; preds = %33, %1 - %8 = load i32, i32* %4, align 4 - %9 = icmp slt i32 %8, 4 - br i1 %9, label %10, label %36 - -10: ; preds = %7 - store i32 0, i32* %5, align 4 - br label %11 - -11: ; preds = %29, %10 - %12 = load i32, i32* %5, align 4 - %13 = icmp slt i32 %12, 4 - br i1 %13, label %14, label %32 - -14: ; preds = %11 - %15 = load [4 x i32]*, [4 x i32]** %2, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds [4 x i32], [4 x i32]* %15, i64 %17 - %19 = load i32, i32* %5, align 4 - %20 = sext i32 %19 to i64 - %21 = getelementptr inbounds [4 x i32], [4 x i32]* %18, i64 0, i64 %20 - %22 = load i32, i32* %21, align 4 - %23 = load i32, i32* %4, align 4 - %24 = sext i32 %23 to i64 - %25 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %24 - %26 = load i32, i32* %5, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds [4 x i32], [4 x i32]* %25, i64 0, i64 %27 - store i32 %22, i32* %28, align 4 - br label %29 - -29: ; preds = %14 - %30 = load i32, i32* %5, align 4 - %31 = add nsw i32 %30, 1 - store i32 %31, i32* %5, align 4 - br label %11, !llvm.loop !2 - -32: ; preds = %11 - br label %33 - -33: ; preds = %32 - %34 = load i32, i32* %4, align 4 - %35 = add nsw i32 %34, 1 - store i32 %35, i32* %4, align 4 - br label %7, !llvm.loop !4 - -36: ; preds = %7 - store i32 0, i32* %6, align 4 - br label %37 - -37: ; preds = %94, %36 - %38 = load i32, i32* %6, align 4 - %39 = icmp slt i32 %38, 4 - br i1 %39, label %40, label %97 - -40: ; preds = %37 - store i32 0, i32* %4, align 4 - br label %41 - -41: ; preds = %90, %40 - %42 = load i32, i32* %4, align 4 - %43 = icmp slt i32 %42, 4 - br i1 %43, label %44, label %93 - -44: ; preds = %41 - store i32 0, i32* %5, align 4 - br label %45 - -45: ; preds = %86, %44 - %46 = load i32, i32* %5, align 4 - %47 = icmp slt i32 %46, 4 - br i1 %47, label %48, label %89 - -48: ; preds = %45 - %49 = load i32, i32* %4, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %50 - %52 = load i32, i32* %5, align 4 - %53 = sext i32 %52 to i64 - %54 = getelementptr inbounds [4 x i32], [4 x i32]* %51, i64 0, i64 %53 - %55 = load i32, i32* %54, align 4 - %56 = icmp ne i32 %55, 0 - br i1 %56, label %77, label %57 - -57: ; preds = %48 - %58 = load i32, i32* %4, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %59 - %61 = load i32, i32* %6, align 4 - %62 = sext i32 %61 to i64 - %63 = getelementptr inbounds [4 x i32], [4 x i32]* %60, i64 0, i64 %62 - %64 = load i32, i32* %63, align 4 - %65 = icmp ne i32 %64, 0 - br i1 %65, label %66, label %75 - -66: ; preds = %57 - %67 = load i32, i32* %6, align 4 - %68 = sext i32 %67 to i64 - %69 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %68 - %70 = load i32, i32* %5, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds [4 x i32], [4 x i32]* %69, i64 0, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = icmp ne i32 %73, 0 - br label %75 - -75: ; preds = %66, %57 - %76 = phi i1 [ false, %57 ], [ %74, %66 ] - br label %77 - -77: ; preds = %75, %48 - %78 = phi i1 [ true, %48 ], [ %76, %75 ] - %79 = zext i1 %78 to i32 - %80 = load i32, i32* %4, align 4 - %81 = sext i32 %80 to i64 - %82 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 %81 - %83 = load i32, i32* %5, align 4 - %84 = sext i32 %83 to i64 - %85 = getelementptr inbounds [4 x i32], [4 x i32]* %82, i64 0, i64 %84 - store i32 %79, i32* %85, align 4 - br label %86 - -86: ; preds = %77 - %87 = load i32, i32* %5, align 4 - %88 = add nsw i32 %87, 1 - store i32 %88, i32* %5, align 4 - br label %45, !llvm.loop !5 - -89: ; preds = %45 - br label %90 - -90: ; preds = %89 - %91 = load i32, i32* %4, align 4 - %92 = add nsw i32 %91, 1 - store i32 %92, i32* %4, align 4 - br label %41, !llvm.loop !6 - -93: ; preds = %41 - br label %94 - -94: ; preds = %93 - %95 = load i32, i32* %6, align 4 - %96 = add nsw i32 %95, 1 - store i32 %96, i32* %6, align 4 - br label %37, !llvm.loop !7 - -97: ; preds = %37 - %98 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %3, i64 0, i64 0 - call void @_Z13printSolutionPA4_i([4 x i32]* %98) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { - %2 = alloca [4 x i32]*, align 8 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store [4 x i32]* %0, [4 x i32]** %2, align 8 - %5 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([59 x i8], [59 x i8]* @.str, i64 0, i64 0)) - store i32 0, i32* %3, align 4 - br label %6 - -6: ; preds = %28, %1 - %7 = load i32, i32* %3, align 4 - %8 = icmp slt i32 %7, 4 - br i1 %8, label %9, label %31 - -9: ; preds = %6 - store i32 0, i32* %4, align 4 - br label %10 - -10: ; preds = %23, %9 - %11 = load i32, i32* %4, align 4 - %12 = icmp slt i32 %11, 4 - br i1 %12, label %13, label %26 - -13: ; preds = %10 - %14 = load [4 x i32]*, [4 x i32]** %2, align 8 - %15 = load i32, i32* %3, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds [4 x i32], [4 x i32]* %14, i64 %16 - %18 = load i32, i32* %4, align 4 - %19 = sext i32 %18 to i64 - %20 = getelementptr inbounds [4 x i32], [4 x i32]* %17, i64 0, i64 %19 - %21 = load i32, i32* %20, align 4 - %22 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0), i32 %21) - br label %23 - -23: ; preds = %13 - %24 = load i32, i32* %4, align 4 - %25 = add nsw i32 %24, 1 - store i32 %25, i32* %4, align 4 - br label %10, !llvm.loop !8 - -26: ; preds = %10 - %27 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) - br label %28 - -28: ; preds = %26 - %29 = load i32, i32* %3, align 4 - %30 = add nsw i32 %29, 1 - store i32 %30, i32* %3, align 4 - br label %6, !llvm.loop !9 - -31: ; preds = %6 - ret void -} - -declare dso_local i32 @printf(i8*, ...) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { - %1 = alloca i32, align 4 - %2 = alloca [4 x [4 x i32]], align 16 - store i32 0, i32* %1, align 4 - %3 = bitcast [4 x [4 x i32]]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %3, i8* align 16 bitcast ([4 x [4 x i32]]* @__const.main.graph to i8*), i64 64, i1 false) - %4 = getelementptr inbounds [4 x [4 x i32]], [4 x [4 x i32]]* %2, i64 0, i64 0 - call void @_Z17transitiveClosurePA4_i([4 x i32]* %4) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #3 - -attributes #0 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/trie-suffixes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/trie-suffixes.ll deleted file mode 100644 index ae08d084..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/trie-suffixes.ll +++ /dev/null @@ -1,1366 +0,0 @@ -; ModuleID = 'PE-benchmarks/trie-suffixes.cpp' -source_filename = "PE-benchmarks/trie-suffixes.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.SuffixTrieNode = type { [256 x %class.SuffixTrieNode*], %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%class.SuffixTrie = type { %class.SuffixTrieNode } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator.0" = type { i8 } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZN14SuffixTrieNodeC2Ev = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE = comdat any - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [18 x i8] c"Pattern not found\00", align 1 -@.str.1 = private unnamed_addr constant [27 x i8] c"Pattern found at position \00", align 1 -@.str.2 = private unnamed_addr constant [18 x i8] c"geeksforgeeks.org\00", align 1 -@.str.3 = private unnamed_addr constant [16 x i8] c"Search for 'ee'\00", align 1 -@.str.4 = private unnamed_addr constant [3 x i8] c"ee\00", align 1 -@.str.5 = private unnamed_addr constant [19 x i8] c"\0ASearch for 'geek'\00", align 1 -@.str.6 = private unnamed_addr constant [5 x i8] c"geek\00", align 1 -@.str.7 = private unnamed_addr constant [19 x i8] c"\0ASearch for 'quiz'\00", align 1 -@.str.8 = private unnamed_addr constant [5 x i8] c"quiz\00", align 1 -@.str.9 = private unnamed_addr constant [23 x i8] c"\0ASearch for 'forgeeks'\00", align 1 -@.str.10 = private unnamed_addr constant [9 x i8] c"forgeeks\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_trie_suffixes.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%class.SuffixTrieNode* nonnull dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* %1, i32 %2) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca %class.SuffixTrieNode*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i8, align 1 - %7 = alloca i8*, align 8 - %8 = alloca i32, align 4 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store %class.SuffixTrieNode* %0, %class.SuffixTrieNode** %4, align 8 - store i32 %2, i32* %5, align 4 - %10 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %4, align 8 - %11 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 1 - %12 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %11, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %5) - %13 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %14 = icmp ugt i64 %13, 0 - br i1 %14, label %15, label %49 - -15: ; preds = %3 - %16 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 0) - %17 = load i8, i8* %16, align 1 - store i8 %17, i8* %6, align 1 - %18 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 0 - %19 = load i8, i8* %6, align 1 - %20 = sext i8 %19 to i64 - %21 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %18, i64 0, i64 %20 - %22 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %21, align 8 - %23 = icmp eq %class.SuffixTrieNode* %22, null - br i1 %23, label %24, label %36 - -24: ; preds = %15 - %25 = call noalias nonnull i8* @_Znwm(i64 2056) #13 - %26 = bitcast i8* %25 to %class.SuffixTrieNode* - invoke void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* nonnull dereferenceable(2056) %26) - to label %27 unwind label %32 - -27: ; preds = %24 - %28 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 0 - %29 = load i8, i8* %6, align 1 - %30 = sext i8 %29 to i64 - %31 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %28, i64 0, i64 %30 - store %class.SuffixTrieNode* %26, %class.SuffixTrieNode** %31, align 8 - br label %36 - -32: ; preds = %24 - %33 = landingpad { i8*, i32 } - cleanup - %34 = extractvalue { i8*, i32 } %33, 0 - store i8* %34, i8** %7, align 8 - %35 = extractvalue { i8*, i32 } %33, 1 - store i32 %35, i32* %8, align 4 - call void @_ZdlPv(i8* %25) #14 - br label %50 - -36: ; preds = %27, %15 - %37 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %10, i32 0, i32 0 - %38 = load i8, i8* %6, align 1 - %39 = sext i8 %38 to i64 - %40 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %37, i64 0, i64 %39 - %41 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %40, align 8 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %9, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 1, i64 -1) - %42 = load i32, i32* %5, align 4 - %43 = add nsw i32 %42, 1 - invoke void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%class.SuffixTrieNode* nonnull dereferenceable(2056) %41, %"class.std::__cxx11::basic_string"* %9, i32 %43) - to label %44 unwind label %45 - -44: ; preds = %36 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %49 - -45: ; preds = %36 - %46 = landingpad { i8*, i32 } - cleanup - %47 = extractvalue { i8*, i32 } %46, 0 - store i8* %47, i8** %7, align 8 - %48 = extractvalue { i8*, i32 } %46, 1 - store i32 %48, i32* %8, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %50 - -49: ; preds = %44, %3 - ret void - -50: ; preds = %45, %32 - %51 = load i8*, i8** %7, align 8 - %52 = load i32, i32* %8, align 4 - %53 = insertvalue { i8*, i32 } undef, i8* %51, 0 - %54 = insertvalue { i8*, i32 } %53, i32 %52, 1 - resume { i8*, i32 } %54 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* nonnull dereferenceable(2056) %0) unnamed_addr #0 comdat align 2 { - %2 = alloca %class.SuffixTrieNode*, align 8 - %3 = alloca i32, align 4 - store %class.SuffixTrieNode* %0, %class.SuffixTrieNode** %2, align 8 - %4 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %2, align 8 - %5 = call noalias nonnull i8* @_Znwm(i64 24) #13 - %6 = bitcast i8* %5 to %"class.std::__cxx11::list"* - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %7 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %4, i32 0, i32 1 - store %"class.std::__cxx11::list"* %6, %"class.std::__cxx11::list"** %7, align 8 - store i32 0, i32* %3, align 4 - br label %8 - -8: ; preds = %16, %1 - %9 = load i32, i32* %3, align 4 - %10 = icmp slt i32 %9, 256 - br i1 %10, label %11, label %19 - -11: ; preds = %8 - %12 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %4, i32 0, i32 0 - %13 = load i32, i32* %3, align 4 - %14 = sext i32 %13 to i64 - %15 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %12, i64 0, i64 %14 - store %class.SuffixTrieNode* null, %class.SuffixTrieNode** %15, align 8 - br label %16 - -16: ; preds = %11 - %17 = load i32, i32* %3, align 4 - %18 = add nsw i32 %17, 1 - store i32 %18, i32* %3, align 4 - br label %8, !llvm.loop !2 - -19: ; preds = %8 - ret void -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #6 - -declare dso_local void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64, i64) #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline uwtable mustprogress -define dso_local %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrieNode* nonnull dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* %1) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca %class.SuffixTrieNode*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %class.SuffixTrieNode* %0, %class.SuffixTrieNode** %4, align 8 - %8 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %4, align 8 - %9 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %10 = icmp eq i64 %9, 0 - br i1 %10, label %11, label %14 - -11: ; preds = %2 - %12 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %8, i32 0, i32 1 - %13 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %12, align 8 - store %"class.std::__cxx11::list"* %13, %"class.std::__cxx11::list"** %3, align 8 - br label %36 - -14: ; preds = %2 - %15 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %8, i32 0, i32 0 - %16 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 0) - %17 = load i8, i8* %16, align 1 - %18 = sext i8 %17 to i64 - %19 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %15, i64 0, i64 %18 - %20 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %19, align 8 - %21 = icmp ne %class.SuffixTrieNode* %20, null - br i1 %21, label %22, label %35 - -22: ; preds = %14 - %23 = getelementptr inbounds %class.SuffixTrieNode, %class.SuffixTrieNode* %8, i32 0, i32 0 - %24 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 0) - %25 = load i8, i8* %24, align 1 - %26 = sext i8 %25 to i64 - %27 = getelementptr inbounds [256 x %class.SuffixTrieNode*], [256 x %class.SuffixTrieNode*]* %23, i64 0, i64 %26 - %28 = load %class.SuffixTrieNode*, %class.SuffixTrieNode** %27, align 8 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %5, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 1, i64 -1) - %29 = invoke %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrieNode* nonnull dereferenceable(2056) %28, %"class.std::__cxx11::basic_string"* %5) - to label %30 unwind label %31 - -30: ; preds = %22 - store %"class.std::__cxx11::list"* %29, %"class.std::__cxx11::list"** %3, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %36 - -31: ; preds = %22 - %32 = landingpad { i8*, i32 } - cleanup - %33 = extractvalue { i8*, i32 } %32, 0 - store i8* %33, i8** %6, align 8 - %34 = extractvalue { i8*, i32 } %32, 1 - store i32 %34, i32* %7, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %38 - -35: ; preds = %14 - store %"class.std::__cxx11::list"* null, %"class.std::__cxx11::list"** %3, align 8 - br label %36 - -36: ; preds = %35, %30, %11 - %37 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - ret %"class.std::__cxx11::list"* %37 - -38: ; preds = %31 - %39 = load i8*, i8** %6, align 8 - %40 = load i32, i32* %7, align 4 - %41 = insertvalue { i8*, i32 } undef, i8* %39, 0 - %42 = insertvalue { i8*, i32 } %41, i32 %40, 1 - resume { i8*, i32 } %42 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* %1) #4 align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.SuffixTrie*, align 8 - %4 = alloca %"class.std::__cxx11::list"*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca i32, align 4 - %10 = alloca %"struct.std::_List_iterator", align 8 - %11 = alloca %"struct.std::_List_iterator", align 8 - store %class.SuffixTrie* %0, %class.SuffixTrie** %3, align 8 - %12 = load %class.SuffixTrie*, %class.SuffixTrie** %3, align 8 - %13 = getelementptr inbounds %class.SuffixTrie, %class.SuffixTrie* %12, i32 0, i32 0 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1) - %14 = invoke %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrieNode* nonnull dereferenceable(2056) %13, %"class.std::__cxx11::basic_string"* %5) - to label %15 unwind label %21 - -15: ; preds = %2 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - store %"class.std::__cxx11::list"* %14, %"class.std::__cxx11::list"** %4, align 8 - %16 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %17 = icmp eq %"class.std::__cxx11::list"* %16, null - br i1 %17, label %18, label %25 - -18: ; preds = %15 - %19 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str, i64 0, i64 0)) - %20 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %19, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %49 - -21: ; preds = %2 - %22 = landingpad { i8*, i32 } - cleanup - %23 = extractvalue { i8*, i32 } %22, 0 - store i8* %23, i8** %6, align 8 - %24 = extractvalue { i8*, i32 } %22, 1 - store i32 %24, i32* %7, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %50 - -25: ; preds = %15 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %8) #3 - %26 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %27 = trunc i64 %26 to i32 - store i32 %27, i32* %9, align 4 - %28 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %29 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %28) #3 - %30 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %10, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %29, %"struct.std::__detail::_List_node_base"** %30, align 8 - %31 = bitcast %"struct.std::_List_iterator"* %8 to i8* - %32 = bitcast %"struct.std::_List_iterator"* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %31, i8* align 8 %32, i64 8, i1 false) - br label %33 - -33: ; preds = %46, %25 - %34 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %4, align 8 - %35 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %34) #3 - %36 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %11, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %35, %"struct.std::__detail::_List_node_base"** %36, align 8 - %37 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %8, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %11) #3 - br i1 %37, label %38, label %48 - -38: ; preds = %33 - %39 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([27 x i8], [27 x i8]* @.str.1, i64 0, i64 0)) - %40 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %8) #3 - %41 = load i32, i32* %40, align 4 - %42 = load i32, i32* %9, align 4 - %43 = sub nsw i32 %41, %42 - %44 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %39, i32 %43) - %45 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %44, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - br label %46 - -46: ; preds = %38 - %47 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %8) #3 - br label %33, !llvm.loop !4 - -48: ; preds = %33 - br label %49 - -49: ; preds = %48, %18 - ret void - -50: ; preds = %21 - %51 = load i8*, i8** %6, align 8 - %52 = load i32, i32* %7, align 4 - %53 = insertvalue { i8*, i32 } undef, i8* %51, 0 - %54 = insertvalue { i8*, i32 } %53, i32 %52, 1 - resume { i8*, i32 } %54 -} - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #9 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #8 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator.0", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %class.SuffixTrie, align 8 - %7 = alloca %"class.std::__cxx11::basic_string", align 8 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::allocator.0", align 1 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca %"class.std::allocator.0", align 1 - %12 = alloca %"class.std::__cxx11::basic_string", align 8 - %13 = alloca %"class.std::allocator.0", align 1 - %14 = alloca %"class.std::__cxx11::basic_string", align 8 - %15 = alloca %"class.std::allocator.0", align 1 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([18 x i8], [18 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %3) - to label %16 unwind label %44 - -16: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %17 unwind label %48 - -17: ; preds = %16 - invoke void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* %7) - to label %18 unwind label %52 - -18: ; preds = %17 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - %19 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([16 x i8], [16 x i8]* @.str.3, i64 0, i64 0)) - to label %20 unwind label %48 - -20: ; preds = %18 - %21 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %19, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %22 unwind label %48 - -22: ; preds = %20 - call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %9) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %9) - to label %23 unwind label %56 - -23: ; preds = %22 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* %8) - to label %24 unwind label %60 - -24: ; preds = %23 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %9) #3 - %25 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.5, i64 0, i64 0)) - to label %26 unwind label %48 - -26: ; preds = %24 - %27 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %25, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %28 unwind label %48 - -28: ; preds = %26 - call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %11) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %10, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.6, i64 0, i64 0), %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %11) - to label %29 unwind label %65 - -29: ; preds = %28 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* %10) - to label %30 unwind label %69 - -30: ; preds = %29 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %10) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %11) #3 - %31 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([19 x i8], [19 x i8]* @.str.7, i64 0, i64 0)) - to label %32 unwind label %48 - -32: ; preds = %30 - %33 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %31, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %34 unwind label %48 - -34: ; preds = %32 - call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %13) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.8, i64 0, i64 0), %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %13) - to label %35 unwind label %74 - -35: ; preds = %34 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* %12) - to label %36 unwind label %78 - -36: ; preds = %35 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %13) #3 - %37 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str.9, i64 0, i64 0)) - to label %38 unwind label %48 - -38: ; preds = %36 - %39 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %37, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %40 unwind label %48 - -40: ; preds = %38 - call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %15) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14, i8* getelementptr inbounds ([9 x i8], [9 x i8]* @.str.10, i64 0, i64 0), %"class.std::allocator.0"* nonnull align 1 dereferenceable(1) %15) - to label %41 unwind label %83 - -41: ; preds = %40 - invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* %14) - to label %42 unwind label %87 - -42: ; preds = %41 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %15) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %43 = load i32, i32* %1, align 4 - ret i32 %43 - -44: ; preds = %0 - %45 = landingpad { i8*, i32 } - cleanup - %46 = extractvalue { i8*, i32 } %45, 0 - store i8* %46, i8** %4, align 8 - %47 = extractvalue { i8*, i32 } %45, 1 - store i32 %47, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %3) #3 - br label %93 - -48: ; preds = %38, %36, %32, %30, %26, %24, %20, %18, %16 - %49 = landingpad { i8*, i32 } - cleanup - %50 = extractvalue { i8*, i32 } %49, 0 - store i8* %50, i8** %4, align 8 - %51 = extractvalue { i8*, i32 } %49, 1 - store i32 %51, i32* %5, align 4 - br label %92 - -52: ; preds = %17 - %53 = landingpad { i8*, i32 } - cleanup - %54 = extractvalue { i8*, i32 } %53, 0 - store i8* %54, i8** %4, align 8 - %55 = extractvalue { i8*, i32 } %53, 1 - store i32 %55, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %7) #3 - br label %92 - -56: ; preds = %22 - %57 = landingpad { i8*, i32 } - cleanup - %58 = extractvalue { i8*, i32 } %57, 0 - store i8* %58, i8** %4, align 8 - %59 = extractvalue { i8*, i32 } %57, 1 - store i32 %59, i32* %5, align 4 - br label %64 - -60: ; preds = %23 - %61 = landingpad { i8*, i32 } - cleanup - %62 = extractvalue { i8*, i32 } %61, 0 - store i8* %62, i8** %4, align 8 - %63 = extractvalue { i8*, i32 } %61, 1 - store i32 %63, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %64 - -64: ; preds = %60, %56 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %9) #3 - br label %92 - -65: ; preds = %28 - %66 = landingpad { i8*, i32 } - cleanup - %67 = extractvalue { i8*, i32 } %66, 0 - store i8* %67, i8** %4, align 8 - %68 = extractvalue { i8*, i32 } %66, 1 - store i32 %68, i32* %5, align 4 - br label %73 - -69: ; preds = %29 - %70 = landingpad { i8*, i32 } - cleanup - %71 = extractvalue { i8*, i32 } %70, 0 - store i8* %71, i8** %4, align 8 - %72 = extractvalue { i8*, i32 } %70, 1 - store i32 %72, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %10) #3 - br label %73 - -73: ; preds = %69, %65 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %11) #3 - br label %92 - -74: ; preds = %34 - %75 = landingpad { i8*, i32 } - cleanup - %76 = extractvalue { i8*, i32 } %75, 0 - store i8* %76, i8** %4, align 8 - %77 = extractvalue { i8*, i32 } %75, 1 - store i32 %77, i32* %5, align 4 - br label %82 - -78: ; preds = %35 - %79 = landingpad { i8*, i32 } - cleanup - %80 = extractvalue { i8*, i32 } %79, 0 - store i8* %80, i8** %4, align 8 - %81 = extractvalue { i8*, i32 } %79, 1 - store i32 %81, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %12) #3 - br label %82 - -82: ; preds = %78, %74 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %13) #3 - br label %92 - -83: ; preds = %40 - %84 = landingpad { i8*, i32 } - cleanup - %85 = extractvalue { i8*, i32 } %84, 0 - store i8* %85, i8** %4, align 8 - %86 = extractvalue { i8*, i32 } %84, 1 - store i32 %86, i32* %5, align 4 - br label %91 - -87: ; preds = %41 - %88 = landingpad { i8*, i32 } - cleanup - %89 = extractvalue { i8*, i32 } %88, 0 - store i8* %89, i8** %4, align 8 - %90 = extractvalue { i8*, i32 } %88, 1 - store i32 %90, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %14) #3 - br label %91 - -91: ; preds = %87, %83 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %15) #3 - br label %92 - -92: ; preds = %91, %82, %73, %64, %52, %48 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %93 - -93: ; preds = %92, %44 - %94 = load i8*, i8** %4, align 8 - %95 = load i32, i32* %5, align 4 - %96 = insertvalue { i8*, i32 } undef, i8* %94, 0 - %97 = insertvalue { i8*, i32 } %96, i32 %95, 1 - resume { i8*, i32 } %97 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator.0"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* nonnull dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* %1) unnamed_addr #0 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %class.SuffixTrie*, align 8 - %4 = alloca i32, align 4 - %5 = alloca %"class.std::__cxx11::basic_string", align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - store %class.SuffixTrie* %0, %class.SuffixTrie** %3, align 8 - %8 = load %class.SuffixTrie*, %class.SuffixTrie** %3, align 8 - %9 = getelementptr inbounds %class.SuffixTrie, %class.SuffixTrie* %8, i32 0, i32 0 - call void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* nonnull dereferenceable(2056) %9) - store i32 0, i32* %4, align 4 - br label %10 - -10: ; preds = %21, %2 - %11 = load i32, i32* %4, align 4 - %12 = sext i32 %11 to i64 - %13 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %14 = icmp ult i64 %12, %13 - br i1 %14, label %15, label %28 - -15: ; preds = %10 - %16 = getelementptr inbounds %class.SuffixTrie, %class.SuffixTrie* %8, i32 0, i32 0 - %17 = load i32, i32* %4, align 4 - %18 = sext i32 %17 to i64 - call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %5, %"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1, i64 %18, i64 -1) - %19 = load i32, i32* %4, align 4 - invoke void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%class.SuffixTrieNode* nonnull dereferenceable(2056) %16, %"class.std::__cxx11::basic_string"* %5, i32 %19) - to label %20 unwind label %24 - -20: ; preds = %15 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %21 - -21: ; preds = %20 - %22 = load i32, i32* %4, align 4 - %23 = add nsw i32 %22, 1 - store i32 %23, i32* %4, align 4 - br label %10, !llvm.loop !5 - -24: ; preds = %15 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %6, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %7, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %5) #3 - br label %29 - -28: ; preds = %10 - ret void - -29: ; preds = %24 - %30 = load i8*, i8** %6, align 8 - %31 = load i32, i32* %7, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #7 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #4 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #8 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #8 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #4 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #8 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #7 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #8 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #8 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #15 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #4 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #4 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #16 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #17 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #8 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #8 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #8 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #4 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #15 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #8 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #7 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_trie_suffixes.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { argmemonly nofree nosync nounwind willreturn } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noinline noreturn nounwind } -attributes #13 = { builtin allocsize(0) } -attributes #14 = { builtin nounwind } -attributes #15 = { noreturn nounwind } -attributes #16 = { noreturn } -attributes #17 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/tug-of-war.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/tug-of-war.ll deleted file mode 100644 index b25531a8..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/tug-of-war.ll +++ /dev/null @@ -1,411 +0,0 @@ -; ModuleID = 'PE-benchmarks/tug-of-war.cpp' -source_filename = "PE-benchmarks/tug-of-war.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [22 x i8] c"The first subset is: \00", align 1 -@.str.1 = private unnamed_addr constant [2 x i8] c" \00", align 1 -@.str.2 = private unnamed_addr constant [24 x i8] c"\0AThe second subset is: \00", align 1 -@__const.main.arr = private unnamed_addr constant [11 x i32] [i32 23, i32 45, i32 -34, i32 12, i32 0, i32 98, i32 -99, i32 4, i32 189, i32 -1, i32 4], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_tug_of_war.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, i8* %4, i32* %5, i32 %6, i32 %7, i32 %8) #4 { - %10 = alloca i32*, align 8 - %11 = alloca i32, align 4 - %12 = alloca i8*, align 8 - %13 = alloca i32, align 4 - %14 = alloca i8*, align 8 - %15 = alloca i32*, align 8 - %16 = alloca i32, align 4 - %17 = alloca i32, align 4 - %18 = alloca i32, align 4 - %19 = alloca i32, align 4 - store i32* %0, i32** %10, align 8 - store i32 %1, i32* %11, align 4 - store i8* %2, i8** %12, align 8 - store i32 %3, i32* %13, align 4 - store i8* %4, i8** %14, align 8 - store i32* %5, i32** %15, align 8 - store i32 %6, i32* %16, align 4 - store i32 %7, i32* %17, align 4 - store i32 %8, i32* %18, align 4 - %20 = load i32, i32* %18, align 4 - %21 = load i32, i32* %11, align 4 - %22 = icmp eq i32 %20, %21 - br i1 %22, label %23, label %24 - -23: ; preds = %9 - br label %115 - -24: ; preds = %9 - %25 = load i32, i32* %11, align 4 - %26 = sdiv i32 %25, 2 - %27 = load i32, i32* %13, align 4 - %28 = sub nsw i32 %26, %27 - %29 = load i32, i32* %11, align 4 - %30 = load i32, i32* %18, align 4 - %31 = sub nsw i32 %29, %30 - %32 = icmp sgt i32 %28, %31 - br i1 %32, label %33, label %34 - -33: ; preds = %24 - br label %115 - -34: ; preds = %24 - %35 = load i32*, i32** %10, align 8 - %36 = load i32, i32* %11, align 4 - %37 = load i8*, i8** %12, align 8 - %38 = load i32, i32* %13, align 4 - %39 = load i8*, i8** %14, align 8 - %40 = load i32*, i32** %15, align 8 - %41 = load i32, i32* %16, align 4 - %42 = load i32, i32* %17, align 4 - %43 = load i32, i32* %18, align 4 - %44 = add nsw i32 %43, 1 - call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %35, i32 %36, i8* %37, i32 %38, i8* %39, i32* %40, i32 %41, i32 %42, i32 %44) - %45 = load i32, i32* %13, align 4 - %46 = add nsw i32 %45, 1 - store i32 %46, i32* %13, align 4 - %47 = load i32, i32* %17, align 4 - %48 = load i32*, i32** %10, align 8 - %49 = load i32, i32* %18, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = add nsw i32 %47, %52 - store i32 %53, i32* %17, align 4 - %54 = load i8*, i8** %12, align 8 - %55 = load i32, i32* %18, align 4 - %56 = sext i32 %55 to i64 - %57 = getelementptr inbounds i8, i8* %54, i64 %56 - store i8 1, i8* %57, align 1 - %58 = load i32, i32* %13, align 4 - %59 = load i32, i32* %11, align 4 - %60 = sdiv i32 %59, 2 - %61 = icmp eq i32 %58, %60 - br i1 %61, label %62, label %99 - -62: ; preds = %34 - %63 = load i32, i32* %16, align 4 - %64 = sdiv i32 %63, 2 - %65 = load i32, i32* %17, align 4 - %66 = sub nsw i32 %64, %65 - %67 = call i32 @abs(i32 %66) #9 - %68 = load i32*, i32** %15, align 8 - %69 = load i32, i32* %68, align 4 - %70 = icmp slt i32 %67, %69 - br i1 %70, label %71, label %98 - -71: ; preds = %62 - %72 = load i32, i32* %16, align 4 - %73 = sdiv i32 %72, 2 - %74 = load i32, i32* %17, align 4 - %75 = sub nsw i32 %73, %74 - %76 = call i32 @abs(i32 %75) #9 - %77 = load i32*, i32** %15, align 8 - store i32 %76, i32* %77, align 4 - store i32 0, i32* %19, align 4 - br label %78 - -78: ; preds = %94, %71 - %79 = load i32, i32* %19, align 4 - %80 = load i32, i32* %11, align 4 - %81 = icmp slt i32 %79, %80 - br i1 %81, label %82, label %97 - -82: ; preds = %78 - %83 = load i8*, i8** %12, align 8 - %84 = load i32, i32* %19, align 4 - %85 = sext i32 %84 to i64 - %86 = getelementptr inbounds i8, i8* %83, i64 %85 - %87 = load i8, i8* %86, align 1 - %88 = trunc i8 %87 to i1 - %89 = load i8*, i8** %14, align 8 - %90 = load i32, i32* %19, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i8, i8* %89, i64 %91 - %93 = zext i1 %88 to i8 - store i8 %93, i8* %92, align 1 - br label %94 - -94: ; preds = %82 - %95 = load i32, i32* %19, align 4 - %96 = add nsw i32 %95, 1 - store i32 %96, i32* %19, align 4 - br label %78, !llvm.loop !2 - -97: ; preds = %78 - br label %98 - -98: ; preds = %97, %62 - br label %110 - -99: ; preds = %34 - %100 = load i32*, i32** %10, align 8 - %101 = load i32, i32* %11, align 4 - %102 = load i8*, i8** %12, align 8 - %103 = load i32, i32* %13, align 4 - %104 = load i8*, i8** %14, align 8 - %105 = load i32*, i32** %15, align 8 - %106 = load i32, i32* %16, align 4 - %107 = load i32, i32* %17, align 4 - %108 = load i32, i32* %18, align 4 - %109 = add nsw i32 %108, 1 - call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %100, i32 %101, i8* %102, i32 %103, i8* %104, i32* %105, i32 %106, i32 %107, i32 %109) - br label %110 - -110: ; preds = %99, %98 - %111 = load i8*, i8** %12, align 8 - %112 = load i32, i32* %18, align 4 - %113 = sext i32 %112 to i64 - %114 = getelementptr inbounds i8, i8* %111, i64 %113 - store i8 0, i8* %114, align 1 - br label %115 - -115: ; preds = %110, %33, %23 - ret void -} - -; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i8*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %12 = load i32, i32* %4, align 4 - %13 = sext i32 %12 to i64 - %14 = call noalias nonnull i8* @_Znam(i64 %13) #10 - store i8* %14, i8** %5, align 8 - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = call noalias nonnull i8* @_Znam(i64 %16) #10 - store i8* %17, i8** %6, align 8 - store i32 2147483647, i32* %7, align 4 - store i32 0, i32* %8, align 4 - store i32 0, i32* %9, align 4 - br label %18 - -18: ; preds = %38, %2 - %19 = load i32, i32* %9, align 4 - %20 = load i32, i32* %4, align 4 - %21 = icmp slt i32 %19, %20 - br i1 %21, label %22, label %41 - -22: ; preds = %18 - %23 = load i32*, i32** %3, align 8 - %24 = load i32, i32* %9, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i32, i32* %23, i64 %25 - %27 = load i32, i32* %26, align 4 - %28 = load i32, i32* %8, align 4 - %29 = add nsw i32 %28, %27 - store i32 %29, i32* %8, align 4 - %30 = load i8*, i8** %6, align 8 - %31 = load i32, i32* %9, align 4 - %32 = sext i32 %31 to i64 - %33 = getelementptr inbounds i8, i8* %30, i64 %32 - store i8 0, i8* %33, align 1 - %34 = load i8*, i8** %5, align 8 - %35 = load i32, i32* %9, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds i8, i8* %34, i64 %36 - store i8 0, i8* %37, align 1 - br label %38 - -38: ; preds = %22 - %39 = load i32, i32* %9, align 4 - %40 = add nsw i32 %39, 1 - store i32 %40, i32* %9, align 4 - br label %18, !llvm.loop !4 - -41: ; preds = %18 - %42 = load i32*, i32** %3, align 8 - %43 = load i32, i32* %4, align 4 - %44 = load i8*, i8** %5, align 8 - %45 = load i8*, i8** %6, align 8 - %46 = load i32, i32* %8, align 4 - call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %42, i32 %43, i8* %44, i32 0, i8* %45, i32* %7, i32 %46, i32 0, i32 0) - %47 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) - store i32 0, i32* %10, align 4 - br label %48 - -48: ; preds = %70, %41 - %49 = load i32, i32* %10, align 4 - %50 = load i32, i32* %4, align 4 - %51 = icmp slt i32 %49, %50 - br i1 %51, label %52, label %73 - -52: ; preds = %48 - %53 = load i8*, i8** %6, align 8 - %54 = load i32, i32* %10, align 4 - %55 = sext i32 %54 to i64 - %56 = getelementptr inbounds i8, i8* %53, i64 %55 - %57 = load i8, i8* %56, align 1 - %58 = trunc i8 %57 to i1 - %59 = zext i1 %58 to i32 - %60 = icmp eq i32 %59, 1 - br i1 %60, label %61, label %69 - -61: ; preds = %52 - %62 = load i32*, i32** %3, align 8 - %63 = load i32, i32* %10, align 4 - %64 = sext i32 %63 to i64 - %65 = getelementptr inbounds i32, i32* %62, i64 %64 - %66 = load i32, i32* %65, align 4 - %67 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %66) - %68 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %67, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %69 - -69: ; preds = %61, %52 - br label %70 - -70: ; preds = %69 - %71 = load i32, i32* %10, align 4 - %72 = add nsw i32 %71, 1 - store i32 %72, i32* %10, align 4 - br label %48, !llvm.loop !5 - -73: ; preds = %48 - %74 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.2, i64 0, i64 0)) - store i32 0, i32* %11, align 4 - br label %75 - -75: ; preds = %97, %73 - %76 = load i32, i32* %11, align 4 - %77 = load i32, i32* %4, align 4 - %78 = icmp slt i32 %76, %77 - br i1 %78, label %79, label %100 - -79: ; preds = %75 - %80 = load i8*, i8** %6, align 8 - %81 = load i32, i32* %11, align 4 - %82 = sext i32 %81 to i64 - %83 = getelementptr inbounds i8, i8* %80, i64 %82 - %84 = load i8, i8* %83, align 1 - %85 = trunc i8 %84 to i1 - %86 = zext i1 %85 to i32 - %87 = icmp eq i32 %86, 0 - br i1 %87, label %88, label %96 - -88: ; preds = %79 - %89 = load i32*, i32** %3, align 8 - %90 = load i32, i32* %11, align 4 - %91 = sext i32 %90 to i64 - %92 = getelementptr inbounds i32, i32* %89, i64 %91 - %93 = load i32, i32* %92, align 4 - %94 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %93) - %95 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %94, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) - br label %96 - -96: ; preds = %88, %79 - br label %97 - -97: ; preds = %96 - %98 = load i32, i32* %11, align 4 - %99 = add nsw i32 %98, 1 - store i32 %99, i32* %11, align 4 - br label %75, !llvm.loop !6 - -100: ; preds = %75 - ret void -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { - %1 = alloca i32, align 4 - %2 = alloca [11 x i32], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [11 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([11 x i32]* @__const.main.arr to i8*), i64 44, i1 false) - store i32 11, i32* %3, align 4 - %5 = getelementptr inbounds [11 x i32], [11 x i32]* %2, i64 0, i64 0 - %6 = load i32, i32* %3, align 4 - call void @_Z8tugOfWarPii(i32* %5, i32 %6) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #8 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_tug_of_war.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nounwind readnone willreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { argmemonly nofree nosync nounwind willreturn } -attributes #9 = { nounwind readnone willreturn } -attributes #10 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/ugly-numbers.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/ugly-numbers.ll deleted file mode 100644 index 5d6c9618..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/ugly-numbers.ll +++ /dev/null @@ -1,122 +0,0 @@ -; ModuleID = 'PE-benchmarks/ugly-numbers.cpp' -source_filename = "PE-benchmarks/ugly-numbers.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -@.str = private unnamed_addr constant [22 x i8] c"150th ugly no. is %d \00", align 1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9maxDivideii(i32 %0, i32 %1) #0 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - br label %5 - -5: ; preds = %10, %2 - %6 = load i32, i32* %3, align 4 - %7 = load i32, i32* %4, align 4 - %8 = srem i32 %6, %7 - %9 = icmp eq i32 %8, 0 - br i1 %9, label %10, label %14 - -10: ; preds = %5 - %11 = load i32, i32* %3, align 4 - %12 = load i32, i32* %4, align 4 - %13 = sdiv i32 %11, %12 - store i32 %13, i32* %3, align 4 - br label %5, !llvm.loop !2 - -14: ; preds = %5 - %15 = load i32, i32* %3, align 4 - ret i32 %15 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z6isUglyi(i32 %0) #0 { - %2 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - %3 = load i32, i32* %2, align 4 - %4 = call i32 @_Z9maxDivideii(i32 %3, i32 2) - store i32 %4, i32* %2, align 4 - %5 = load i32, i32* %2, align 4 - %6 = call i32 @_Z9maxDivideii(i32 %5, i32 3) - store i32 %6, i32* %2, align 4 - %7 = load i32, i32* %2, align 4 - %8 = call i32 @_Z9maxDivideii(i32 %7, i32 5) - store i32 %8, i32* %2, align 4 - %9 = load i32, i32* %2, align 4 - %10 = icmp eq i32 %9, 1 - %11 = zext i1 %10 to i64 - %12 = select i1 %10, i32 1, i32 0 - ret i32 %12 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z12getNthUglyNoi(i32 %0) #0 { - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 %0, i32* %2, align 4 - store i32 1, i32* %3, align 4 - store i32 1, i32* %4, align 4 - br label %5 - -5: ; preds = %18, %1 - %6 = load i32, i32* %2, align 4 - %7 = load i32, i32* %4, align 4 - %8 = icmp sgt i32 %6, %7 - br i1 %8, label %9, label %19 - -9: ; preds = %5 - %10 = load i32, i32* %3, align 4 - %11 = add nsw i32 %10, 1 - store i32 %11, i32* %3, align 4 - %12 = load i32, i32* %3, align 4 - %13 = call i32 @_Z6isUglyi(i32 %12) - %14 = icmp ne i32 %13, 0 - br i1 %14, label %15, label %18 - -15: ; preds = %9 - %16 = load i32, i32* %4, align 4 - %17 = add nsw i32 %16, 1 - store i32 %17, i32* %4, align 4 - br label %18 - -18: ; preds = %15, %9 - br label %5, !llvm.loop !4 - -19: ; preds = %5 - %20 = load i32, i32* %3, align 4 - ret i32 %20 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %3 = call i32 @_Z12getNthUglyNoi(i32 150) - store i32 %3, i32* %2, align 4 - %4 = load i32, i32* %2, align 4 - %5 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0), i32 %4) - %6 = call i32 @getchar() - ret i32 0 -} - -declare dso_local i32 @printf(i8*, ...) #2 - -declare dso_local i32 @getchar() #2 - -attributes #0 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/union-find.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/union-find.ll deleted file mode 100644 index e6008361..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/union-find.ll +++ /dev/null @@ -1,354 +0,0 @@ -; ModuleID = 'PE-benchmarks/union-find.cpp' -source_filename = "PE-benchmarks/union-find.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, i32, %class.Edge* } -%class.Edge = type { i32, i32 } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [21 x i8] c"graph contains cycle\00", align 1 -@.str.1 = private unnamed_addr constant [28 x i8] c"graph doesn't contain cycle\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_union_find.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - %5 = alloca %class.Graph*, align 8 - store i32 %0, i32* %3, align 4 - store i32 %1, i32* %4, align 4 - %6 = call noalias nonnull i8* @_Znwm(i64 16) #9 - %7 = bitcast i8* %6 to %class.Graph* - %8 = bitcast %class.Graph* %7 to i8* - call void @llvm.memset.p0i8.i64(i8* align 16 %8, i8 0, i64 16, i1 false) - store %class.Graph* %7, %class.Graph** %5, align 8 - %9 = load i32, i32* %3, align 4 - %10 = load %class.Graph*, %class.Graph** %5, align 8 - %11 = getelementptr inbounds %class.Graph, %class.Graph* %10, i32 0, i32 0 - store i32 %9, i32* %11, align 8 - %12 = load i32, i32* %4, align 4 - %13 = load %class.Graph*, %class.Graph** %5, align 8 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 1 - store i32 %12, i32* %14, align 4 - %15 = load %class.Graph*, %class.Graph** %5, align 8 - %16 = getelementptr inbounds %class.Graph, %class.Graph* %15, i32 0, i32 1 - %17 = load i32, i32* %16, align 4 - %18 = sext i32 %17 to i64 - %19 = mul i64 %18, 8 - %20 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %19, i64 8) - %21 = extractvalue { i64, i1 } %20, 1 - %22 = extractvalue { i64, i1 } %20, 0 - %23 = select i1 %21, i64 -1, i64 %22 - %24 = call noalias nonnull i8* @_Znam(i64 %23) #9 - %25 = bitcast i8* %24 to %class.Edge* - %26 = load %class.Graph*, %class.Graph** %5, align 8 - %27 = getelementptr inbounds %class.Graph, %class.Graph* %26, i32 0, i32 2 - store %class.Edge* %25, %class.Edge** %27, align 8 - %28 = load %class.Graph*, %class.Graph** %5, align 8 - ret %class.Graph* %28 -} - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly -declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg) #6 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #7 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4findPii(i32* %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %5, align 4 - %8 = sext i32 %7 to i64 - %9 = getelementptr inbounds i32, i32* %6, i64 %8 - %10 = load i32, i32* %9, align 4 - %11 = icmp eq i32 %10, -1 - br i1 %11, label %12, label %14 - -12: ; preds = %2 - %13 = load i32, i32* %5, align 4 - store i32 %13, i32* %3, align 4 - br label %22 - -14: ; preds = %2 - %15 = load i32*, i32** %4, align 8 - %16 = load i32*, i32** %4, align 8 - %17 = load i32, i32* %5, align 4 - %18 = sext i32 %17 to i64 - %19 = getelementptr inbounds i32, i32* %16, i64 %18 - %20 = load i32, i32* %19, align 4 - %21 = call i32 @_Z4findPii(i32* %15, i32 %20) - store i32 %21, i32* %3, align 4 - br label %22 - -22: ; preds = %14, %12 - %23 = load i32, i32* %3, align 4 - ret i32 %23 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5UnionPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %9 = load i32*, i32** %4, align 8 - %10 = load i32, i32* %5, align 4 - %11 = call i32 @_Z4findPii(i32* %9, i32 %10) - store i32 %11, i32* %7, align 4 - %12 = load i32*, i32** %4, align 8 - %13 = load i32, i32* %6, align 4 - %14 = call i32 @_Z4findPii(i32* %12, i32 %13) - store i32 %14, i32* %8, align 4 - %15 = load i32, i32* %7, align 4 - %16 = load i32, i32* %8, align 4 - %17 = icmp ne i32 %15, %16 - br i1 %17, label %18, label %24 - -18: ; preds = %3 - %19 = load i32, i32* %8, align 4 - %20 = load i32*, i32** %4, align 8 - %21 = load i32, i32* %7, align 4 - %22 = sext i32 %21 to i64 - %23 = getelementptr inbounds i32, i32* %20, i64 %22 - store i32 %19, i32* %23, align 4 - br label %24 - -24: ; preds = %18, %3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #4 { - %2 = alloca i32, align 4 - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - %8 = load %class.Graph*, %class.Graph** %3, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 0 - %10 = load i32, i32* %9, align 8 - %11 = sext i32 %10 to i64 - %12 = mul i64 %11, 4 - %13 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %12, i64 4) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = extractvalue { i64, i1 } %13, 0 - %16 = select i1 %14, i64 -1, i64 %15 - %17 = call noalias nonnull i8* @_Znam(i64 %16) #9 - %18 = bitcast i8* %17 to i32* - store i32* %18, i32** %4, align 8 - %19 = load i32*, i32** %4, align 8 - %20 = bitcast i32* %19 to i8* - %21 = load %class.Graph*, %class.Graph** %3, align 8 - %22 = getelementptr inbounds %class.Graph, %class.Graph* %21, i32 0, i32 0 - %23 = load i32, i32* %22, align 8 - %24 = sext i32 %23 to i64 - %25 = mul i64 4, %24 - call void @llvm.memset.p0i8.i64(i8* align 4 %20, i8 -1, i64 %25, i1 false) - store i32 0, i32* %5, align 4 - br label %26 - -26: ; preds = %61, %1 - %27 = load i32, i32* %5, align 4 - %28 = load %class.Graph*, %class.Graph** %3, align 8 - %29 = getelementptr inbounds %class.Graph, %class.Graph* %28, i32 0, i32 1 - %30 = load i32, i32* %29, align 4 - %31 = icmp slt i32 %27, %30 - br i1 %31, label %32, label %64 - -32: ; preds = %26 - %33 = load i32*, i32** %4, align 8 - %34 = load %class.Graph*, %class.Graph** %3, align 8 - %35 = getelementptr inbounds %class.Graph, %class.Graph* %34, i32 0, i32 2 - %36 = load %class.Edge*, %class.Edge** %35, align 8 - %37 = load i32, i32* %5, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds %class.Edge, %class.Edge* %36, i64 %38 - %40 = getelementptr inbounds %class.Edge, %class.Edge* %39, i32 0, i32 0 - %41 = load i32, i32* %40, align 4 - %42 = call i32 @_Z4findPii(i32* %33, i32 %41) - store i32 %42, i32* %6, align 4 - %43 = load i32*, i32** %4, align 8 - %44 = load %class.Graph*, %class.Graph** %3, align 8 - %45 = getelementptr inbounds %class.Graph, %class.Graph* %44, i32 0, i32 2 - %46 = load %class.Edge*, %class.Edge** %45, align 8 - %47 = load i32, i32* %5, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %class.Edge, %class.Edge* %46, i64 %48 - %50 = getelementptr inbounds %class.Edge, %class.Edge* %49, i32 0, i32 1 - %51 = load i32, i32* %50, align 4 - %52 = call i32 @_Z4findPii(i32* %43, i32 %51) - store i32 %52, i32* %7, align 4 - %53 = load i32, i32* %6, align 4 - %54 = load i32, i32* %7, align 4 - %55 = icmp eq i32 %53, %54 - br i1 %55, label %56, label %57 - -56: ; preds = %32 - store i32 1, i32* %2, align 4 - br label %65 - -57: ; preds = %32 - %58 = load i32*, i32** %4, align 8 - %59 = load i32, i32* %6, align 4 - %60 = load i32, i32* %7, align 4 - call void @_Z5UnionPiii(i32* %58, i32 %59, i32 %60) - br label %61 - -61: ; preds = %57 - %62 = load i32, i32* %5, align 4 - %63 = add nsw i32 %62, 1 - store i32 %63, i32* %5, align 4 - br label %26, !llvm.loop !2 - -64: ; preds = %26 - store i32 0, i32* %2, align 4 - br label %65 - -65: ; preds = %64, %56 - %66 = load i32, i32* %2, align 4 - ret i32 %66 -} - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { - %1 = alloca i32, align 4 - %2 = alloca i32, align 4 - %3 = alloca i32, align 4 - %4 = alloca %class.Graph*, align 8 - store i32 0, i32* %1, align 4 - store i32 3, i32* %2, align 4 - store i32 3, i32* %3, align 4 - %5 = load i32, i32* %2, align 4 - %6 = load i32, i32* %3, align 4 - %7 = call %class.Graph* @_Z11createGraphii(i32 %5, i32 %6) - store %class.Graph* %7, %class.Graph** %4, align 8 - %8 = load %class.Graph*, %class.Graph** %4, align 8 - %9 = getelementptr inbounds %class.Graph, %class.Graph* %8, i32 0, i32 2 - %10 = load %class.Edge*, %class.Edge** %9, align 8 - %11 = getelementptr inbounds %class.Edge, %class.Edge* %10, i64 0 - %12 = getelementptr inbounds %class.Edge, %class.Edge* %11, i32 0, i32 0 - store i32 0, i32* %12, align 4 - %13 = load %class.Graph*, %class.Graph** %4, align 8 - %14 = getelementptr inbounds %class.Graph, %class.Graph* %13, i32 0, i32 2 - %15 = load %class.Edge*, %class.Edge** %14, align 8 - %16 = getelementptr inbounds %class.Edge, %class.Edge* %15, i64 0 - %17 = getelementptr inbounds %class.Edge, %class.Edge* %16, i32 0, i32 1 - store i32 1, i32* %17, align 4 - %18 = load %class.Graph*, %class.Graph** %4, align 8 - %19 = getelementptr inbounds %class.Graph, %class.Graph* %18, i32 0, i32 2 - %20 = load %class.Edge*, %class.Edge** %19, align 8 - %21 = getelementptr inbounds %class.Edge, %class.Edge* %20, i64 1 - %22 = getelementptr inbounds %class.Edge, %class.Edge* %21, i32 0, i32 0 - store i32 1, i32* %22, align 4 - %23 = load %class.Graph*, %class.Graph** %4, align 8 - %24 = getelementptr inbounds %class.Graph, %class.Graph* %23, i32 0, i32 2 - %25 = load %class.Edge*, %class.Edge** %24, align 8 - %26 = getelementptr inbounds %class.Edge, %class.Edge* %25, i64 1 - %27 = getelementptr inbounds %class.Edge, %class.Edge* %26, i32 0, i32 1 - store i32 2, i32* %27, align 4 - %28 = load %class.Graph*, %class.Graph** %4, align 8 - %29 = getelementptr inbounds %class.Graph, %class.Graph* %28, i32 0, i32 2 - %30 = load %class.Edge*, %class.Edge** %29, align 8 - %31 = getelementptr inbounds %class.Edge, %class.Edge* %30, i64 2 - %32 = getelementptr inbounds %class.Edge, %class.Edge* %31, i32 0, i32 0 - store i32 0, i32* %32, align 4 - %33 = load %class.Graph*, %class.Graph** %4, align 8 - %34 = getelementptr inbounds %class.Graph, %class.Graph* %33, i32 0, i32 2 - %35 = load %class.Edge*, %class.Edge** %34, align 8 - %36 = getelementptr inbounds %class.Edge, %class.Edge* %35, i64 2 - %37 = getelementptr inbounds %class.Edge, %class.Edge* %36, i32 0, i32 1 - store i32 2, i32* %37, align 4 - %38 = load %class.Graph*, %class.Graph** %4, align 8 - %39 = call i32 @_Z7isCycleP5Graph(%class.Graph* %38) - %40 = icmp ne i32 %39, 0 - br i1 %40, label %41, label %43 - -41: ; preds = %0 - %42 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0)) - br label %45 - -43: ; preds = %0 - %44 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([28 x i8], [28 x i8]* @.str.1, i64 0, i64 0)) - br label %45 - -45: ; preds = %43, %41 - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_union_find.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { argmemonly nofree nosync nounwind willreturn writeonly } -attributes #7 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #8 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { builtin allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll deleted file mode 100644 index c4bc5b1d..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll +++ /dev/null @@ -1,1005 +0,0 @@ -; ModuleID = 'PE-benchmarks/vertex-cover-problem.cpp' -source_filename = "PE-benchmarks/vertex-cover-problem.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%class.Graph = type { i32, %"class.std::__cxx11::list"* } -%"class.std::__cxx11::list" = type { %"class.std::__cxx11::_List_base" } -%"class.std::__cxx11::_List_base" = type { %"struct.std::__cxx11::_List_base>::_List_impl" } -%"struct.std::__cxx11::_List_base>::_List_impl" = type { %"struct.std::__detail::_List_node_header" } -%"struct.std::__detail::_List_node_header" = type { %"struct.std::__detail::_List_node_base", i64 } -%"struct.std::__detail::_List_node_base" = type { %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_iterator" = type { %"struct.std::__detail::_List_node_base"* } -%"struct.std::_List_node" = type <{ %"struct.std::__detail::_List_node_base", %"struct.__gnu_cxx::__aligned_membuf", [4 x i8] }> -%"struct.__gnu_cxx::__aligned_membuf" = type { [4 x i8] } -%"class.std::allocator" = type { i8 } -%"class.__gnu_cxx::new_allocator" = type { i8 } -%"struct.std::__allocated_ptr" = type { %"class.std::allocator"*, %"struct.std::_List_node"* } - -$_ZNSt7__cxx114listIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9push_backERKi = comdat any - -$_ZNSt14_List_iteratorIiEC2Ev = comdat any - -$_ZNSt7__cxx114listIiSaIiEE5beginEv = comdat any - -$_ZStneRKSt14_List_iteratorIiES2_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE3endEv = comdat any - -$_ZNKSt14_List_iteratorIiEdeEv = comdat any - -$_ZNSt14_List_iteratorIiEppEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev = comdat any - -$_ZNSaISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_headerC2Ev = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev = comdat any - -$_ZNSt8__detail17_List_node_header7_M_initEv = comdat any - -$_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_ = comdat any - -$_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_ = comdat any - -$_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv = comdat any - -$_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_ = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_ = comdat any - -$_ZNSt10_List_nodeIiE9_M_valptrEv = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn = comdat any - -$_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv = comdat any - -$_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv = comdat any - -$_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_ = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_ = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv = comdat any - -$_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv = comdat any - -$_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m = comdat any - -$__clang_call_terminate = comdat any - -$_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m = comdat any - -$_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [2 x i8] c" \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_vertex_cover_problem.cpp, i8* null }] - -@_ZN5GraphC1Ei = dso_local unnamed_addr alias void (%class.Graph*, i32), void (%class.Graph*, i32)* @_ZN5GraphC2Ei - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable -define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %0, i32 %1) unnamed_addr #0 align 2 { - %3 = alloca %class.Graph*, align 8 - %4 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %3, align 8 - store i32 %1, i32* %4, align 4 - %5 = load %class.Graph*, %class.Graph** %3, align 8 - %6 = load i32, i32* %4, align 4 - %7 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 0 - store i32 %6, i32* %7, align 8 - %8 = load i32, i32* %4, align 4 - %9 = sext i32 %8 to i64 - %10 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %9, i64 24) - %11 = extractvalue { i64, i1 } %10, 1 - %12 = extractvalue { i64, i1 } %10, 0 - %13 = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %12, i64 8) - %14 = extractvalue { i64, i1 } %13, 1 - %15 = or i1 %11, %14 - %16 = extractvalue { i64, i1 } %13, 0 - %17 = select i1 %15, i64 -1, i64 %16 - %18 = call noalias nonnull i8* @_Znam(i64 %17) #15 - %19 = bitcast i8* %18 to i64* - store i64 %9, i64* %19, align 16 - %20 = getelementptr inbounds i8, i8* %18, i64 8 - %21 = bitcast i8* %20 to %"class.std::__cxx11::list"* - %22 = icmp eq i64 %9, 0 - br i1 %22, label %29, label %23 - -23: ; preds = %2 - %24 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %21, i64 %9 - br label %25 - -25: ; preds = %25, %23 - %26 = phi %"class.std::__cxx11::list"* [ %21, %23 ], [ %27, %25 ] - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %26) #3 - %27 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %26, i64 1 - %28 = icmp eq %"class.std::__cxx11::list"* %27, %24 - br i1 %28, label %29, label %25 - -29: ; preds = %2, %25 - %30 = getelementptr inbounds %class.Graph, %class.Graph* %5, i32 0, i32 1 - store %"class.std::__cxx11::list"* %21, %"class.std::__cxx11::list"** %30, align 8 - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %2, align 8 - %3 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %2, align 8 - %4 = bitcast %"class.std::__cxx11::list"* %3 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %0, i32 %1, i32 %2) #7 align 2 { - %4 = alloca %class.Graph*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %7 = load %class.Graph*, %class.Graph** %4, align 8 - %8 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %8, align 8 - %10 = load i32, i32* %5, align 4 - %11 = sext i32 %10 to i64 - %12 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %9, i64 %11 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %12, i32* nonnull align 4 dereferenceable(4) %6) - %13 = getelementptr inbounds %class.Graph, %class.Graph* %7, i32 0, i32 1 - %14 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %13, align 8 - %15 = load i32, i32* %6, align 4 - %16 = sext i32 %15 to i64 - %17 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %14, i64 %16 - call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %17, i32* nonnull align 4 dereferenceable(4) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_iterator", align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %6 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = load i32*, i32** %4, align 8 - %10 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %11 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %10, align 8 - call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* nonnull align 4 dereferenceable(4) %9) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull dereferenceable(16) %0) #7 align 2 { - %2 = alloca %class.Graph*, align 8 - %3 = alloca i8*, align 8 - %4 = alloca i64, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"struct.std::_List_iterator", align 8 - %7 = alloca i32, align 4 - %8 = alloca %"struct.std::_List_iterator", align 8 - %9 = alloca %"struct.std::_List_iterator", align 8 - %10 = alloca i32, align 4 - %11 = alloca i32, align 4 - store %class.Graph* %0, %class.Graph** %2, align 8 - %12 = load %class.Graph*, %class.Graph** %2, align 8 - %13 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %14 = load i32, i32* %13, align 8 - %15 = zext i32 %14 to i64 - %16 = call i8* @llvm.stacksave() - store i8* %16, i8** %3, align 8 - %17 = alloca i8, i64 %15, align 16 - store i64 %15, i64* %4, align 8 - store i32 0, i32* %5, align 4 - br label %18 - -18: ; preds = %27, %1 - %19 = load i32, i32* %5, align 4 - %20 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %21 = load i32, i32* %20, align 8 - %22 = icmp slt i32 %19, %21 - br i1 %22, label %23, label %30 - -23: ; preds = %18 - %24 = load i32, i32* %5, align 4 - %25 = sext i32 %24 to i64 - %26 = getelementptr inbounds i8, i8* %17, i64 %25 - store i8 0, i8* %26, align 1 - br label %27 - -27: ; preds = %23 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - store i32 %29, i32* %5, align 4 - br label %18, !llvm.loop !2 - -30: ; preds = %18 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %6) #3 - store i32 0, i32* %7, align 4 - br label %31 - -31: ; preds = %85, %30 - %32 = load i32, i32* %7, align 4 - %33 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %34 = load i32, i32* %33, align 8 - %35 = icmp slt i32 %32, %34 - br i1 %35, label %36, label %88 - -36: ; preds = %31 - %37 = load i32, i32* %7, align 4 - %38 = sext i32 %37 to i64 - %39 = getelementptr inbounds i8, i8* %17, i64 %38 - %40 = load i8, i8* %39, align 1 - %41 = trunc i8 %40 to i1 - %42 = zext i1 %41 to i32 - %43 = icmp eq i32 %42, 0 - br i1 %43, label %44, label %84 - -44: ; preds = %36 - %45 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %46 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %45, align 8 - %47 = load i32, i32* %7, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %46, i64 %48 - %50 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %49) #3 - %51 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %50, %"struct.std::__detail::_List_node_base"** %51, align 8 - %52 = bitcast %"struct.std::_List_iterator"* %6 to i8* - %53 = bitcast %"struct.std::_List_iterator"* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %52, i8* align 8 %53, i64 8, i1 false) - br label %54 - -54: ; preds = %81, %44 - %55 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 1 - %56 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %55, align 8 - %57 = load i32, i32* %7, align 4 - %58 = sext i32 %57 to i64 - %59 = getelementptr inbounds %"class.std::__cxx11::list", %"class.std::__cxx11::list"* %56, i64 %58 - %60 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %59) #3 - %61 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %9, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %60, %"struct.std::__detail::_List_node_base"** %61, align 8 - %62 = call zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %6, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %9) #3 - br i1 %62, label %63, label %83 - -63: ; preds = %54 - %64 = call nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %6) #3 - %65 = load i32, i32* %64, align 4 - store i32 %65, i32* %10, align 4 - %66 = load i32, i32* %10, align 4 - %67 = sext i32 %66 to i64 - %68 = getelementptr inbounds i8, i8* %17, i64 %67 - %69 = load i8, i8* %68, align 1 - %70 = trunc i8 %69 to i1 - %71 = zext i1 %70 to i32 - %72 = icmp eq i32 %71, 0 - br i1 %72, label %73, label %80 - -73: ; preds = %63 - %74 = load i32, i32* %10, align 4 - %75 = sext i32 %74 to i64 - %76 = getelementptr inbounds i8, i8* %17, i64 %75 - store i8 1, i8* %76, align 1 - %77 = load i32, i32* %7, align 4 - %78 = sext i32 %77 to i64 - %79 = getelementptr inbounds i8, i8* %17, i64 %78 - store i8 1, i8* %79, align 1 - br label %83 - -80: ; preds = %63 - br label %81 - -81: ; preds = %80 - %82 = call nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %6) #3 - br label %54, !llvm.loop !4 - -83: ; preds = %73, %54 - br label %84 - -84: ; preds = %83, %36 - br label %85 - -85: ; preds = %84 - %86 = load i32, i32* %7, align 4 - %87 = add nsw i32 %86, 1 - store i32 %87, i32* %7, align 4 - br label %31, !llvm.loop !5 - -88: ; preds = %31 - store i32 0, i32* %11, align 4 - br label %89 - -89: ; preds = %105, %88 - %90 = load i32, i32* %11, align 4 - %91 = getelementptr inbounds %class.Graph, %class.Graph* %12, i32 0, i32 0 - %92 = load i32, i32* %91, align 8 - %93 = icmp slt i32 %90, %92 - br i1 %93, label %94, label %108 - -94: ; preds = %89 - %95 = load i32, i32* %11, align 4 - %96 = sext i32 %95 to i64 - %97 = getelementptr inbounds i8, i8* %17, i64 %96 - %98 = load i8, i8* %97, align 1 - %99 = trunc i8 %98 to i1 - br i1 %99, label %100, label %104 - -100: ; preds = %94 - %101 = load i32, i32* %11, align 4 - %102 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) @_ZSt4cout, i32 %101) - %103 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %102, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - br label %104 - -104: ; preds = %100, %94 - br label %105 - -105: ; preds = %104 - %106 = load i32, i32* %11, align 4 - %107 = add nsw i32 %106, 1 - store i32 %107, i32* %11, align 4 - br label %89, !llvm.loop !6 - -108: ; preds = %89 - %109 = load i8*, i8** %3, align 8 - call void @llvm.stackrestore(i8* %109) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #8 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* null, %"struct.std::__detail::_List_node_base"** %4, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %10) #3 - %11 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %12 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %11, align 8 - ret %"struct.std::__detail::_List_node_base"* %12 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #10 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* nonnull align 8 dereferenceable(8) %1) #9 comdat { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::_List_iterator"* %1, %"struct.std::_List_iterator"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %4, align 8 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %8, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - %11 = icmp ne %"struct.std::__detail::_List_node_base"* %7, %10 - ret i1 %11 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator", align 8 - %3 = alloca %"class.std::__cxx11::list"*, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - %4 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %5 = bitcast %"class.std::__cxx11::list"* %4 to %"class.std::__cxx11::_List_base"* - %6 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %7 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %6, i32 0, i32 0 - %8 = bitcast %"struct.std::__detail::_List_node_header"* %7 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* %8) #3 - %9 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %2, i32 0, i32 0 - %10 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %9, align 8 - ret %"struct.std::__detail::_List_node_base"* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = bitcast %"struct.std::__detail::_List_node_base"* %5 to %"struct.std::_List_node"* - %7 = call i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %6) - ret i32* %7 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_iterator"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %2, align 8 - %3 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - %5 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %6, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %3, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %8, align 8 - ret %"struct.std::_List_iterator"* %3 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #8 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #11 { - %1 = alloca i32, align 4 - %2 = alloca %class.Graph, align 8 - store i32 0, i32* %1, align 4 - call void @_ZN5GraphC1Ei(%class.Graph* nonnull dereferenceable(16) %2, i32 7) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 1) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 3) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 4, i32 5) - call void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 5, i32 6) - call void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull dereferenceable(16) %2) - ret i32 0 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__cxx11::_List_base>::_List_impl"*, align 8 - store %"struct.std::__cxx11::_List_base>::_List_impl"* %0, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %3 = load %"struct.std::__cxx11::_List_base>::_List_impl"*, %"struct.std::__cxx11::_List_base>::_List_impl"** %2, align 8 - %4 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %3 to %"class.std::allocator"* - call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 - %5 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %3, i32 0, i32 0 - call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %5) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - %4 = bitcast %"class.std::allocator"* %3 to %"class.__gnu_cxx::new_allocator"* - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %4) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %3) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) unnamed_addr #6 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::__detail::_List_node_header"*, align 8 - store %"struct.std::__detail::_List_node_header"* %0, %"struct.std::__detail::_List_node_header"** %2, align 8 - %3 = load %"struct.std::__detail::_List_node_header"*, %"struct.std::__detail::_List_node_header"** %2, align 8 - %4 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %5 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %6 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %5, i32 0, i32 1 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %6, align 8 - %7 = bitcast %"struct.std::__detail::_List_node_header"* %3 to %"struct.std::__detail::_List_node_base"* - %8 = getelementptr inbounds %"struct.std::__detail::_List_node_base", %"struct.std::__detail::_List_node_base"* %7, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %4, %"struct.std::__detail::_List_node_base"** %8, align 8 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %3, i32 0, i32 1 - store i64 0, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* nonnull align 4 dereferenceable(4) %2) #7 comdat align 2 { - %4 = alloca %"struct.std::_List_iterator", align 8 - %5 = alloca %"class.std::__cxx11::list"*, align 8 - %6 = alloca i32*, align 8 - %7 = alloca %"struct.std::_List_node"*, align 8 - %8 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %8, align 8 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %5, align 8 - store i32* %2, i32** %6, align 8 - %9 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %9, i32* nonnull align 4 dereferenceable(4) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %7, align 8 - %13 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %7, align 8 - %14 = bitcast %"struct.std::_List_node"* %13 to %"struct.std::__detail::_List_node_base"* - %15 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %4, i32 0, i32 0 - %16 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %15, align 8 - call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* %16) #3 - %17 = bitcast %"class.std::__cxx11::list"* %9 to %"class.std::__cxx11::_List_base"* - call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %17, i64 1) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %0, i32* nonnull align 4 dereferenceable(4) %1) #7 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::list"*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca %"class.std::allocator"*, align 8 - %7 = alloca %"struct.std::__allocated_ptr", align 8 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - store %"class.std::__cxx11::list"* %0, %"class.std::__cxx11::list"** %3, align 8 - store i32* %1, i32** %4, align 8 - %10 = load %"class.std::__cxx11::list"*, %"class.std::__cxx11::list"** %3, align 8 - %11 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %12 = call %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %11) - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %5, align 8 - %13 = bitcast %"class.std::__cxx11::list"* %10 to %"class.std::__cxx11::_List_base"* - %14 = call nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %13) #3 - store %"class.std::allocator"* %14, %"class.std::allocator"** %6, align 8 - %15 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %16 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* %16) #3 - %17 = load %"class.std::allocator"*, %"class.std::allocator"** %6, align 8 - %18 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %19 = invoke i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %18) - to label %20 unwind label %25 - -20: ; preds = %2 - %21 = load i32*, i32** %4, align 8 - %22 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %21) #3 - call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %17, i32* %19, i32* nonnull align 4 dereferenceable(4) %22) #3 - %23 = call nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7, i8* null) #3 - %24 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - ret %"struct.std::_List_node"* %24 - -25: ; preds = %2 - %26 = landingpad { i8*, i32 } - cleanup - %27 = extractvalue { i8*, i32 } %26, 0 - store i8* %27, i8** %8, align 8 - %28 = extractvalue { i8*, i32 } %26, 1 - store i32 %28, i32* %9, align 4 - call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %7) #3 - br label %29 - -29: ; preds = %25 - %30 = load i8*, i8** %8, align 8 - %31 = load i32, i32* %9, align 4 - %32 = insertvalue { i8*, i32 } undef, i8* %30, 0 - %33 = insertvalue { i8*, i32 } %32, i32 %31, 1 - resume { i8*, i32 } %33 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %0) #9 comdat { - %2 = alloca i32*, align 8 - store i32* %0, i32** %2, align 8 - %3 = load i32*, i32** %2, align 8 - ret i32* %3 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16), %"struct.std::__detail::_List_node_base"*) #2 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0, i64 %1) #9 comdat align 2 { - %3 = alloca %"class.std::__cxx11::_List_base"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %3, align 8 - %6 = load i64, i64* %4, align 8 - %7 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %5, i32 0, i32 0 - %8 = getelementptr inbounds %"struct.std::__cxx11::_List_base>::_List_impl", %"struct.std::__cxx11::_List_base>::_List_impl"* %7, i32 0, i32 0 - %9 = getelementptr inbounds %"struct.std::__detail::_List_node_header", %"struct.std::__detail::_List_node_header"* %8, i32 0, i32 1 - %10 = load i64, i64* %9, align 8 - %11 = add i64 %10, %6 - store i64 %11, i64* %9, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #7 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - %6 = call %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %5, i64 1) - ret %"struct.std::_List_node"* %6 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* nonnull dereferenceable(24) %0) #9 comdat align 2 { - %2 = alloca %"class.std::__cxx11::_List_base"*, align 8 - store %"class.std::__cxx11::_List_base"* %0, %"class.std::__cxx11::_List_base"** %2, align 8 - %3 = load %"class.std::__cxx11::_List_base"*, %"class.std::__cxx11::_List_base"** %2, align 8 - %4 = getelementptr inbounds %"class.std::__cxx11::_List_base", %"class.std::__cxx11::_List_base"* %3, i32 0, i32 0 - %5 = bitcast %"struct.std::__cxx11::_List_base>::_List_impl"* %4 to %"class.std::allocator"* - ret %"class.std::allocator"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, %"class.std::allocator"* nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* %2) unnamed_addr #6 comdat align 2 { - %4 = alloca %"struct.std::__allocated_ptr"*, align 8 - %5 = alloca %"class.std::allocator"*, align 8 - %6 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %4, align 8 - store %"class.std::allocator"* %1, %"class.std::allocator"** %5, align 8 - store %"struct.std::_List_node"* %2, %"struct.std::_List_node"** %6, align 8 - %7 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %4, align 8 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %5, align 8 - %10 = call %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9) #3 - store %"class.std::allocator"* %10, %"class.std::allocator"** %8, align 8 - %11 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %7, i32 0, i32 1 - %12 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %6, align 8 - store %"struct.std::_List_node"* %12, %"struct.std::_List_node"** %11, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #9 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load i32*, i32** %5, align 8 - %10 = load i32*, i32** %6, align 8 - %11 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %10) #3 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, i32* %9, i32* nonnull align 4 dereferenceable(4) %11) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* nonnull dereferenceable(20) %0) #9 comdat align 2 { - %2 = alloca %"struct.std::_List_node"*, align 8 - store %"struct.std::_List_node"* %0, %"struct.std::_List_node"** %2, align 8 - %3 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::_List_node", %"struct.std::_List_node"* %3, i32 0, i32 1 - %5 = call i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %4) #3 - ret i32* %5 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0, i8* %1) #9 comdat align 2 { - %3 = alloca %"struct.std::__allocated_ptr"*, align 8 - %4 = alloca i8*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %3, align 8 - store i8* %1, i8** %4, align 8 - %5 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %5, i32 0, i32 1 - store %"struct.std::_List_node"* null, %"struct.std::_List_node"** %6, align 8 - ret %"struct.std::__allocated_ptr"* %5 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* nonnull dereferenceable(16) %0) unnamed_addr #6 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %2 = alloca %"struct.std::__allocated_ptr"*, align 8 - store %"struct.std::__allocated_ptr"* %0, %"struct.std::__allocated_ptr"** %2, align 8 - %3 = load %"struct.std::__allocated_ptr"*, %"struct.std::__allocated_ptr"** %2, align 8 - %4 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %5 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %4, align 8 - %6 = icmp ne %"struct.std::_List_node"* %5, null - br i1 %6, label %7, label %13 - -7: ; preds = %1 - %8 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 0 - %9 = load %"class.std::allocator"*, %"class.std::allocator"** %8, align 8 - %10 = getelementptr inbounds %"struct.std::__allocated_ptr", %"struct.std::__allocated_ptr"* %3, i32 0, i32 1 - %11 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %10, align 8 - invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* %11, i64 1) - to label %12 unwind label %14 - -12: ; preds = %7 - br label %13 - -13: ; preds = %12, %1 - ret void - -14: ; preds = %7 - %15 = landingpad { i8*, i32 } - catch i8* null - %16 = extractvalue { i8*, i32 } %15, 0 - call void @__clang_call_terminate(i8* %16) #16 - unreachable -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, i64 %1) #7 comdat align 2 { - %3 = alloca %"class.std::allocator"*, align 8 - %4 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %3, align 8 - store i64 %1, i64* %4, align 8 - %5 = load %"class.std::allocator"*, %"class.std::allocator"** %3, align 8 - %6 = bitcast %"class.std::allocator"* %5 to %"class.__gnu_cxx::new_allocator"* - %7 = load i64, i64* %4, align 8 - %8 = call %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %6, i64 %7, i8* null) - ret %"struct.std::_List_node"* %8 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i64 %1, i8* %2) #7 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i64, align 8 - %6 = alloca i8*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i64 %1, i64* %5, align 8 - store i8* %2, i8** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i64, i64* %5, align 8 - %9 = call i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %7) #3 - %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 - -11: ; preds = %3 - call void @_ZSt17__throw_bad_allocv() #17 - unreachable - -12: ; preds = %3 - %13 = load i64, i64* %5, align 8 - %14 = mul i64 %13, 24 - %15 = call noalias nonnull i8* @_Znwm(i64 %14) #18 - %16 = bitcast i8* %15 to %"struct.std::_List_node"* - ret %"struct.std::_List_node"* %16 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0) #9 comdat align 2 { - %2 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %2, align 8 - %3 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %2, align 8 - ret i64 384307168202282325 -} - -; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #12 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0) #9 comdat { - %2 = alloca %"class.std::allocator"*, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %2, align 8 - %3 = load %"class.std::allocator"*, %"class.std::allocator"** %2, align 8 - ret %"class.std::allocator"* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, i32* %1, i32* nonnull align 4 dereferenceable(4) %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca i32*, align 8 - %6 = alloca i32*, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store i32* %1, i32** %5, align 8 - store i32* %2, i32** %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load i32*, i32** %5, align 8 - %9 = bitcast i32* %8 to i8* - %10 = bitcast i8* %9 to i32* - %11 = load i32*, i32** %6, align 8 - %12 = call nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* nonnull align 4 dereferenceable(4) %11) #3 - %13 = load i32, i32* %12, align 4 - store i32 %13, i32* %10, align 4 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #9 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = call i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %3) #3 - %5 = bitcast i8* %4 to i32* - ret i32* %5 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* nonnull dereferenceable(4) %0) #9 comdat align 2 { - %2 = alloca %"struct.__gnu_cxx::__aligned_membuf"*, align 8 - store %"struct.__gnu_cxx::__aligned_membuf"* %0, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__aligned_membuf"*, %"struct.__gnu_cxx::__aligned_membuf"** %2, align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__aligned_membuf", %"struct.__gnu_cxx::__aligned_membuf"* %3, i32 0, i32 0 - %5 = bitcast [4 x i8]* %4 to i8* - ret i8* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #7 comdat align 2 { - %4 = alloca %"class.std::allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.std::allocator"* %0, %"class.std::allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.std::allocator"*, %"class.std::allocator"** %4, align 8 - %8 = bitcast %"class.std::allocator"* %7 to %"class.__gnu_cxx::new_allocator"* - %9 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %10 = load i64, i64* %6, align 8 - call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %8, %"struct.std::_List_node"* %9, i64 %10) - ret void -} - -; Function Attrs: noinline noreturn nounwind -define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { - %2 = call i8* @__cxa_begin_catch(i8* %0) #3 - call void @_ZSt9terminatev() #16 - unreachable -} - -declare dso_local i8* @__cxa_begin_catch(i8*) - -declare dso_local void @_ZSt9terminatev() - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* nonnull dereferenceable(1) %0, %"struct.std::_List_node"* %1, i64 %2) #9 comdat align 2 { - %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 - %5 = alloca %"struct.std::_List_node"*, align 8 - %6 = alloca i64, align 8 - store %"class.__gnu_cxx::new_allocator"* %0, %"class.__gnu_cxx::new_allocator"** %4, align 8 - store %"struct.std::_List_node"* %1, %"struct.std::_List_node"** %5, align 8 - store i64 %2, i64* %6, align 8 - %7 = load %"class.__gnu_cxx::new_allocator"*, %"class.__gnu_cxx::new_allocator"** %4, align 8 - %8 = load %"struct.std::_List_node"*, %"struct.std::_List_node"** %5, align 8 - %9 = bitcast %"struct.std::_List_node"* %8 to i8* - call void @_ZdlPv(i8* %9) #3 - ret void -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #14 - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* %1) unnamed_addr #6 comdat align 2 { - %3 = alloca %"struct.std::_List_iterator"*, align 8 - %4 = alloca %"struct.std::__detail::_List_node_base"*, align 8 - store %"struct.std::_List_iterator"* %0, %"struct.std::_List_iterator"** %3, align 8 - store %"struct.std::__detail::_List_node_base"* %1, %"struct.std::__detail::_List_node_base"** %4, align 8 - %5 = load %"struct.std::_List_iterator"*, %"struct.std::_List_iterator"** %3, align 8 - %6 = getelementptr inbounds %"struct.std::_List_iterator", %"struct.std::_List_iterator"* %5, i32 0, i32 0 - %7 = load %"struct.std::__detail::_List_node_base"*, %"struct.std::__detail::_List_node_base"** %4, align 8 - store %"struct.std::__detail::_List_node_base"* %7, %"struct.std::__detail::_List_node_base"** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_vertex_cover_problem.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #5 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #6 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #8 = { nofree nosync nounwind willreturn } -attributes #9 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { argmemonly nofree nosync nounwind willreturn } -attributes #11 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { noreturn "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #13 = { noinline noreturn nounwind } -attributes #14 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #15 = { builtin allocsize(0) } -attributes #16 = { noreturn nounwind } -attributes #17 = { noreturn } -attributes #18 = { allocsize(0) } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll deleted file mode 100644 index cc8322c6..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll +++ /dev/null @@ -1,1878 +0,0 @@ -; ModuleID = 'PE-benchmarks/weighted-job-scheduling.cpp' -source_filename = "PE-benchmarks/weighted-job-scheduling.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%struct.Job = type { i32, i32, i32 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"struct.__gnu_cxx::__ops::_Iter_comp_iter" = type { i1 (i64, i32, i64, i32)* } -%"struct.__gnu_cxx::__ops::_Iter_comp_val" = type { i1 (i64, i32, i64, i32)* } -%"struct.__gnu_cxx::__ops::_Val_comp_iter" = type { i1 (i64, i32, i64, i32)* } - -$_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_ = comdat any - -$_ZSt3maxIiERKT_S2_S2_ = comdat any - -$_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_ = comdat any - -$_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_ = comdat any - -$_ZSt4__lgl = comdat any - -$_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_ = comdat any - -$_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_ = comdat any - -$_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_ = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_ = comdat any - -$_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_ = comdat any - -$_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_ = comdat any - -$_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_ = comdat any - -$_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS3_EEEEONSt16remove_referenceIT_E4typeEOS9_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_ = comdat any - -$_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_ = comdat any - -$_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_ = comdat any - -$_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_ = comdat any - -$_ZSt9iter_swapIP3JobS1_EvT_T0_ = comdat any - -$_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_ = comdat any - -$_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_ = comdat any - -$_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_ = comdat any - -$_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE = comdat any - -$_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__miter_baseIP3JobET_S2_ = comdat any - -$_ZSt12__niter_wrapIP3JobET_RKS2_S2_ = comdat any - -$_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any - -$_ZSt12__niter_baseIP3JobET_S2_ = comdat any - -$_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_ = comdat any - -$_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_ = comdat any - -$_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE = comdat any - -$_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@__const.main.arr = private unnamed_addr constant [4 x %struct.Job] [%struct.Job { i32 3, i32 10, i32 20 }, %struct.Job { i32 1, i32 2, i32 50 }, %struct.Job { i32 6, i32 19, i32 100 }, %struct.Job { i32 2, i32 100, i32 200 }], align 16 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [23 x i8] c"The optimal profit is \00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_weighted_job_scheduling.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z14jobComparataor3JobS_(i64 %0, i32 %1, i64 %2, i32 %3) #4 { - %5 = alloca %struct.Job, align 4 - %6 = alloca { i64, i32 }, align 4 - %7 = alloca %struct.Job, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 0 - store i64 %0, i64* %9, align 4 - %10 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %6, i32 0, i32 1 - store i32 %1, i32* %10, align 4 - %11 = bitcast %struct.Job* %5 to i8* - %12 = bitcast { i64, i32 }* %6 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %11, i8* align 4 %12, i64 12, i1 false) - %13 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %2, i64* %13, align 4 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %3, i32* %14, align 4 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = getelementptr inbounds %struct.Job, %struct.Job* %5, i32 0, i32 1 - %18 = load i32, i32* %17, align 4 - %19 = getelementptr inbounds %struct.Job, %struct.Job* %7, i32 0, i32 1 - %20 = load i32, i32* %19, align 4 - %21 = icmp slt i32 %18, %20 - ret i1 %21 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #5 - -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z17latestNonConflictP3Jobi(%struct.Job* %0, i32 %1) #4 { - %3 = alloca i32, align 4 - %4 = alloca %struct.Job*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - store %struct.Job* %0, %struct.Job** %4, align 8 - store i32 %1, i32* %5, align 4 - %7 = load i32, i32* %5, align 4 - %8 = sub nsw i32 %7, 1 - store i32 %8, i32* %6, align 4 - br label %9 - -9: ; preds = %29, %2 - %10 = load i32, i32* %6, align 4 - %11 = icmp sge i32 %10, 0 - br i1 %11, label %12, label %32 - -12: ; preds = %9 - %13 = load %struct.Job*, %struct.Job** %4, align 8 - %14 = load i32, i32* %6, align 4 - %15 = sext i32 %14 to i64 - %16 = getelementptr inbounds %struct.Job, %struct.Job* %13, i64 %15 - %17 = getelementptr inbounds %struct.Job, %struct.Job* %16, i32 0, i32 1 - %18 = load i32, i32* %17, align 4 - %19 = load %struct.Job*, %struct.Job** %4, align 8 - %20 = load i32, i32* %5, align 4 - %21 = sext i32 %20 to i64 - %22 = getelementptr inbounds %struct.Job, %struct.Job* %19, i64 %21 - %23 = getelementptr inbounds %struct.Job, %struct.Job* %22, i32 0, i32 0 - %24 = load i32, i32* %23, align 4 - %25 = icmp sle i32 %18, %24 - br i1 %25, label %26, label %28 - -26: ; preds = %12 - %27 = load i32, i32* %6, align 4 - store i32 %27, i32* %3, align 4 - br label %33 - -28: ; preds = %12 - br label %29 - -29: ; preds = %28 - %30 = load i32, i32* %6, align 4 - %31 = add nsw i32 %30, -1 - store i32 %31, i32* %6, align 4 - br label %9, !llvm.loop !2 - -32: ; preds = %9 - store i32 -1, i32* %3, align 4 - br label %33 - -33: ; preds = %32, %26 - %34 = load i32, i32* %3, align 4 - ret i32 %34 -} - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { - %3 = alloca %struct.Job*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - %9 = alloca i32, align 4 - store %struct.Job* %0, %struct.Job** %3, align 8 - store i32 %1, i32* %4, align 4 - %10 = load %struct.Job*, %struct.Job** %3, align 8 - %11 = load %struct.Job*, %struct.Job** %3, align 8 - %12 = load i32, i32* %4, align 4 - %13 = sext i32 %12 to i64 - %14 = getelementptr inbounds %struct.Job, %struct.Job* %11, i64 %13 - call void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct.Job* %10, %struct.Job* %14, i1 (i64, i32, i64, i32)* @_Z14jobComparataor3JobS_) - %15 = load i32, i32* %4, align 4 - %16 = sext i32 %15 to i64 - %17 = call { i64, i1 } @llvm.umul.with.overflow.i64(i64 %16, i64 4) - %18 = extractvalue { i64, i1 } %17, 1 - %19 = extractvalue { i64, i1 } %17, 0 - %20 = select i1 %18, i64 -1, i64 %19 - %21 = call noalias nonnull i8* @_Znam(i64 %20) #12 - %22 = bitcast i8* %21 to i32* - store i32* %22, i32** %5, align 8 - %23 = load %struct.Job*, %struct.Job** %3, align 8 - %24 = getelementptr inbounds %struct.Job, %struct.Job* %23, i64 0 - %25 = getelementptr inbounds %struct.Job, %struct.Job* %24, i32 0, i32 2 - %26 = load i32, i32* %25, align 4 - %27 = load i32*, i32** %5, align 8 - %28 = getelementptr inbounds i32, i32* %27, i64 0 - store i32 %26, i32* %28, align 4 - store i32 1, i32* %6, align 4 - br label %29 - -29: ; preds = %65, %2 - %30 = load i32, i32* %6, align 4 - %31 = load i32, i32* %4, align 4 - %32 = icmp slt i32 %30, %31 - br i1 %32, label %33, label %68 - -33: ; preds = %29 - %34 = load %struct.Job*, %struct.Job** %3, align 8 - %35 = load i32, i32* %6, align 4 - %36 = sext i32 %35 to i64 - %37 = getelementptr inbounds %struct.Job, %struct.Job* %34, i64 %36 - %38 = getelementptr inbounds %struct.Job, %struct.Job* %37, i32 0, i32 2 - %39 = load i32, i32* %38, align 4 - store i32 %39, i32* %7, align 4 - %40 = load %struct.Job*, %struct.Job** %3, align 8 - %41 = load i32, i32* %6, align 4 - %42 = call i32 @_Z17latestNonConflictP3Jobi(%struct.Job* %40, i32 %41) - store i32 %42, i32* %8, align 4 - %43 = load i32, i32* %8, align 4 - %44 = icmp ne i32 %43, -1 - br i1 %44, label %45, label %53 - -45: ; preds = %33 - %46 = load i32*, i32** %5, align 8 - %47 = load i32, i32* %8, align 4 - %48 = sext i32 %47 to i64 - %49 = getelementptr inbounds i32, i32* %46, i64 %48 - %50 = load i32, i32* %49, align 4 - %51 = load i32, i32* %7, align 4 - %52 = add nsw i32 %51, %50 - store i32 %52, i32* %7, align 4 - br label %53 - -53: ; preds = %45, %33 - %54 = load i32*, i32** %5, align 8 - %55 = load i32, i32* %6, align 4 - %56 = sub nsw i32 %55, 1 - %57 = sext i32 %56 to i64 - %58 = getelementptr inbounds i32, i32* %54, i64 %57 - %59 = call nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %7, i32* nonnull align 4 dereferenceable(4) %58) - %60 = load i32, i32* %59, align 4 - %61 = load i32*, i32** %5, align 8 - %62 = load i32, i32* %6, align 4 - %63 = sext i32 %62 to i64 - %64 = getelementptr inbounds i32, i32* %61, i64 %63 - store i32 %60, i32* %64, align 4 - br label %65 - -65: ; preds = %53 - %66 = load i32, i32* %6, align 4 - %67 = add nsw i32 %66, 1 - store i32 %67, i32* %6, align 4 - br label %29, !llvm.loop !4 - -68: ; preds = %29 - %69 = load i32*, i32** %5, align 8 - %70 = load i32, i32* %4, align 4 - %71 = sub nsw i32 %70, 1 - %72 = sext i32 %71 to i64 - %73 = getelementptr inbounds i32, i32* %69, i64 %72 - %74 = load i32, i32* %73, align 4 - store i32 %74, i32* %9, align 4 - %75 = load i32*, i32** %5, align 8 - %76 = icmp eq i32* %75, null - br i1 %76, label %79, label %77 - -77: ; preds = %68 - %78 = bitcast i32* %75 to i8* - call void @_ZdaPv(i8* %78) #13 - br label %79 - -79: ; preds = %77, %68 - %80 = load i32, i32* %9, align 4 - ret i32 %80 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct.Job* %0, %struct.Job* %1, i1 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca i1 (i64, i32, i64, i32)*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %6, align 8 - %8 = load %struct.Job*, %struct.Job** %4, align 8 - %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %6, align 8 - %11 = call i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_(i1 (i64, i32, i64, i32)* %10) - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %11, i1 (i64, i32, i64, i32)** %12, align 8 - %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %14 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %13, align 8 - call void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %8, %struct.Job* %9, i1 (i64, i32, i64, i32)* %14) - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #7 - -; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #8 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* nonnull align 4 dereferenceable(4) %0, i32* nonnull align 4 dereferenceable(4) %1) #4 comdat { - %3 = alloca i32*, align 8 - %4 = alloca i32*, align 8 - %5 = alloca i32*, align 8 - store i32* %0, i32** %4, align 8 - store i32* %1, i32** %5, align 8 - %6 = load i32*, i32** %4, align 8 - %7 = load i32, i32* %6, align 4 - %8 = load i32*, i32** %5, align 8 - %9 = load i32, i32* %8, align 4 - %10 = icmp slt i32 %7, %9 - br i1 %10, label %11, label %13 - -11: ; preds = %2 - %12 = load i32*, i32** %5, align 8 - store i32* %12, i32** %3, align 8 - br label %15 - -13: ; preds = %2 - %14 = load i32*, i32** %4, align 8 - store i32* %14, i32** %3, align 8 - br label %15 - -15: ; preds = %13, %11 - %16 = load i32*, i32** %3, align 8 - ret i32* %16 -} - -; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #9 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { - %1 = alloca i32, align 4 - %2 = alloca [4 x %struct.Job], align 16 - %3 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %4 = bitcast [4 x %struct.Job]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %4, i8* align 16 bitcast ([4 x %struct.Job]* @__const.main.arr to i8*), i64 48, i1 false) - store i32 4, i32* %3, align 4 - %5 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([23 x i8], [23 x i8]* @.str, i64 0, i64 0)) - %6 = getelementptr inbounds [4 x %struct.Job], [4 x %struct.Job]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = call i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %6, i32 %7) - %9 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %5, i32 %8) - ret i32 0 -} - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %0, %struct.Job* %1, i1 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %9, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %10 = load %struct.Job*, %struct.Job** %5, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = icmp ne %struct.Job* %10, %11 - br i1 %12, label %13, label %34 - -13: ; preds = %3 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = load %struct.Job*, %struct.Job** %6, align 8 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = load %struct.Job*, %struct.Job** %5, align 8 - %18 = ptrtoint %struct.Job* %16 to i64 - %19 = ptrtoint %struct.Job* %17 to i64 - %20 = sub i64 %18, %19 - %21 = sdiv exact i64 %20, 12 - %22 = call i64 @_ZSt4__lgl(i64 %21) - %23 = mul nsw i64 %22, 2 - %24 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7 to i8* - %25 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %24, i8* align 8 %25, i64 8, i1 false) - %26 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %27 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %26, align 8 - call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* %14, %struct.Job* %15, i64 %23, i1 (i64, i32, i64, i32)* %27) - %28 = load %struct.Job*, %struct.Job** %5, align 8 - %29 = load %struct.Job*, %struct.Job** %6, align 8 - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %31 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %30, i8* align 8 %31, i64 8, i1 false) - %32 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %33 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %32, align 8 - call void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %28, %struct.Job* %29, i1 (i64, i32, i64, i32)* %33) - br label %34 - -34: ; preds = %13, %3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops16__iter_comp_iterIPFb3JobS2_EEENS0_15_Iter_comp_iterIT_EES6_(i1 (i64, i32, i64, i32)* %0) #6 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %3 = alloca i1 (i64, i32, i64, i32)*, align 8 - store i1 (i64, i32, i64, i32)* %0, i1 (i64, i32, i64, i32)** %3, align 8 - %4 = call nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %3) #3 - %5 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %4, align 8 - call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %2, i1 (i64, i32, i64, i32)* %5) - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, i32 0, i32 0 - %7 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %6, align 8 - ret i1 (i64, i32, i64, i32)* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* %0, %struct.Job* %1, i64 %2, i1 (i64, i32, i64, i32)* %3) #6 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca i64, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.Job*, align 8 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %13 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %13, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store i64 %2, i64* %8, align 8 - br label %14 - -14: ; preds = %33, %4 - %15 = load %struct.Job*, %struct.Job** %7, align 8 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = ptrtoint %struct.Job* %15 to i64 - %18 = ptrtoint %struct.Job* %16 to i64 - %19 = sub i64 %17, %18 - %20 = sdiv exact i64 %19, 12 - %21 = icmp sgt i64 %20, 16 - br i1 %21, label %22, label %51 - -22: ; preds = %14 - %23 = load i64, i64* %8, align 8 - %24 = icmp eq i64 %23, 0 - br i1 %24, label %25, label %33 - -25: ; preds = %22 - %26 = load %struct.Job*, %struct.Job** %6, align 8 - %27 = load %struct.Job*, %struct.Job** %7, align 8 - %28 = load %struct.Job*, %struct.Job** %7, align 8 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %32 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* %26, %struct.Job* %27, %struct.Job* %28, i1 (i64, i32, i64, i32)* %32) - br label %51 - -33: ; preds = %22 - %34 = load i64, i64* %8, align 8 - %35 = add nsw i64 %34, -1 - store i64 %35, i64* %8, align 8 - %36 = load %struct.Job*, %struct.Job** %6, align 8 - %37 = load %struct.Job*, %struct.Job** %7, align 8 - %38 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %39 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %38, i8* align 8 %39, i64 8, i1 false) - %40 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %41 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %40, align 8 - %42 = call %struct.Job* @_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_(%struct.Job* %36, %struct.Job* %37, i1 (i64, i32, i64, i32)* %41) - store %struct.Job* %42, %struct.Job** %10, align 8 - %43 = load %struct.Job*, %struct.Job** %10, align 8 - %44 = load %struct.Job*, %struct.Job** %7, align 8 - %45 = load i64, i64* %8, align 8 - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12 to i8* - %47 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %46, i8* align 8 %47, i64 8, i1 false) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %12, i32 0, i32 0 - %49 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %48, align 8 - call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* %43, %struct.Job* %44, i64 %45, i1 (i64, i32, i64, i32)* %49) - %50 = load %struct.Job*, %struct.Job** %10, align 8 - store %struct.Job* %50, %struct.Job** %7, align 8 - br label %14, !llvm.loop !5 - -51: ; preds = %25, %14 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #4 comdat { - %2 = alloca i64, align 8 - store i64 %0, i64* %2, align 8 - %3 = load i64, i64* %2, align 8 - %4 = call i64 @llvm.ctlz.i64(i64 %3, i1 true) - %5 = trunc i64 %4 to i32 - %6 = sub nsw i32 63, %5 - %7 = sext i32 %6 to i64 - ret i64 %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %0, %struct.Job* %1, i1 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %5, align 8 - %13 = ptrtoint %struct.Job* %11 to i64 - %14 = ptrtoint %struct.Job* %12 to i64 - %15 = sub i64 %13, %14 - %16 = sdiv exact i64 %15, 12 - %17 = icmp sgt i64 %16, 16 - br i1 %17, label %18, label %33 - -18: ; preds = %3 - %19 = load %struct.Job*, %struct.Job** %5, align 8 - %20 = load %struct.Job*, %struct.Job** %5, align 8 - %21 = getelementptr inbounds %struct.Job, %struct.Job* %20, i64 16 - %22 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7 to i8* - %23 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %22, i8* align 8 %23, i64 8, i1 false) - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %25 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %19, %struct.Job* %21, i1 (i64, i32, i64, i32)* %25) - %26 = load %struct.Job*, %struct.Job** %5, align 8 - %27 = getelementptr inbounds %struct.Job, %struct.Job* %26, i64 16 - %28 = load %struct.Job*, %struct.Job** %6, align 8 - %29 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %30 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %29, i8* align 8 %30, i64 8, i1 false) - %31 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %32 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %31, align 8 - call void @_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %27, %struct.Job* %28, i1 (i64, i32, i64, i32)* %32) - br label %40 - -33: ; preds = %3 - %34 = load %struct.Job*, %struct.Job** %5, align 8 - %35 = load %struct.Job*, %struct.Job** %6, align 8 - %36 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %37 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %36, i8* align 8 %37, i64 8, i1 false) - %38 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %39 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %38, align 8 - call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %34, %struct.Job* %35, i1 (i64, i32, i64, i32)* %39) - br label %40 - -40: ; preds = %33, %18 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2, i1 (i64, i32, i64, i32)* %3) #6 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store %struct.Job* %2, %struct.Job** %8, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %7, align 8 - %13 = load %struct.Job*, %struct.Job** %8, align 8 - %14 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %15 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %14, i8* align 8 %15, i64 8, i1 false) - %16 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %17 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %16, align 8 - call void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* %11, %struct.Job* %12, %struct.Job* %13, i1 (i64, i32, i64, i32)* %17) - %18 = load %struct.Job*, %struct.Job** %6, align 8 - %19 = load %struct.Job*, %struct.Job** %7, align 8 - call void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* %18, %struct.Job* %19, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_(%struct.Job* %0, %struct.Job* %1, i1 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %11 = load %struct.Job*, %struct.Job** %5, align 8 - %12 = load %struct.Job*, %struct.Job** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %5, align 8 - %14 = ptrtoint %struct.Job* %12 to i64 - %15 = ptrtoint %struct.Job* %13 to i64 - %16 = sub i64 %14, %15 - %17 = sdiv exact i64 %16, 12 - %18 = sdiv i64 %17, 2 - %19 = getelementptr inbounds %struct.Job, %struct.Job* %11, i64 %18 - store %struct.Job* %19, %struct.Job** %7, align 8 - %20 = load %struct.Job*, %struct.Job** %5, align 8 - %21 = load %struct.Job*, %struct.Job** %5, align 8 - %22 = getelementptr inbounds %struct.Job, %struct.Job* %21, i64 1 - %23 = load %struct.Job*, %struct.Job** %7, align 8 - %24 = load %struct.Job*, %struct.Job** %6, align 8 - %25 = getelementptr inbounds %struct.Job, %struct.Job* %24, i64 -1 - %26 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8 to i8* - %27 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %26, i8* align 8 %27, i64 8, i1 false) - %28 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %8, i32 0, i32 0 - %29 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %28, align 8 - call void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.Job* %20, %struct.Job* %22, %struct.Job* %23, %struct.Job* %25, i1 (i64, i32, i64, i32)* %29) - %30 = load %struct.Job*, %struct.Job** %5, align 8 - %31 = getelementptr inbounds %struct.Job, %struct.Job* %30, i64 1 - %32 = load %struct.Job*, %struct.Job** %6, align 8 - %33 = load %struct.Job*, %struct.Job** %5, align 8 - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %35 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %34, i8* align 8 %35, i64 8, i1 false) - %36 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %37 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %36, align 8 - %38 = call %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_(%struct.Job* %31, %struct.Job* %32, %struct.Job* %33, i1 (i64, i32, i64, i32)* %37) - ret %struct.Job* %38 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2, i1 (i64, i32, i64, i32)* %3) #6 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = alloca %struct.Job*, align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store %struct.Job* %2, %struct.Job** %8, align 8 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %7, align 8 - call void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* %11, %struct.Job* %12, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - %13 = load %struct.Job*, %struct.Job** %7, align 8 - store %struct.Job* %13, %struct.Job** %9, align 8 - br label %14 - -14: ; preds = %27, %4 - %15 = load %struct.Job*, %struct.Job** %9, align 8 - %16 = load %struct.Job*, %struct.Job** %8, align 8 - %17 = icmp ult %struct.Job* %15, %16 - br i1 %17, label %18, label %30 - -18: ; preds = %14 - %19 = load %struct.Job*, %struct.Job** %9, align 8 - %20 = load %struct.Job*, %struct.Job** %6, align 8 - %21 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %5, %struct.Job* %19, %struct.Job* %20) - br i1 %21, label %22, label %26 - -22: ; preds = %18 - %23 = load %struct.Job*, %struct.Job** %6, align 8 - %24 = load %struct.Job*, %struct.Job** %7, align 8 - %25 = load %struct.Job*, %struct.Job** %9, align 8 - call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* %23, %struct.Job* %24, %struct.Job* %25, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - br label %26 - -26: ; preds = %22, %18 - br label %27 - -27: ; preds = %26 - %28 = load %struct.Job*, %struct.Job** %9, align 8 - %29 = getelementptr inbounds %struct.Job, %struct.Job* %28, i32 1 - store %struct.Job* %29, %struct.Job** %9, align 8 - br label %14, !llvm.loop !6 - -30: ; preds = %14 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* %0, %struct.Job* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %2) #6 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - br label %7 - -7: ; preds = %15, %3 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %4, align 8 - %10 = ptrtoint %struct.Job* %8 to i64 - %11 = ptrtoint %struct.Job* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - %14 = icmp sgt i64 %13, 1 - br i1 %14, label %15, label %22 - -15: ; preds = %7 - %16 = load %struct.Job*, %struct.Job** %5, align 8 - %17 = getelementptr inbounds %struct.Job, %struct.Job* %16, i32 -1 - store %struct.Job* %17, %struct.Job** %5, align 8 - %18 = load %struct.Job*, %struct.Job** %4, align 8 - %19 = load %struct.Job*, %struct.Job** %5, align 8 - %20 = load %struct.Job*, %struct.Job** %5, align 8 - %21 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* %18, %struct.Job* %19, %struct.Job* %20, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %21) - br label %7, !llvm.loop !7 - -22: ; preds = %7 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* %0, %struct.Job* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %2) #0 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %7 = alloca i64, align 8 - %8 = alloca i64, align 8 - %9 = alloca %struct.Job, align 4 - %10 = alloca %struct.Job, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %5, align 8 - %14 = load %struct.Job*, %struct.Job** %4, align 8 - %15 = ptrtoint %struct.Job* %13 to i64 - %16 = ptrtoint %struct.Job* %14 to i64 - %17 = sub i64 %15, %16 - %18 = sdiv exact i64 %17, 12 - %19 = icmp slt i64 %18, 2 - br i1 %19, label %20, label %21 - -20: ; preds = %3 - br label %61 - -21: ; preds = %3 - %22 = load %struct.Job*, %struct.Job** %5, align 8 - %23 = load %struct.Job*, %struct.Job** %4, align 8 - %24 = ptrtoint %struct.Job* %22 to i64 - %25 = ptrtoint %struct.Job* %23 to i64 - %26 = sub i64 %24, %25 - %27 = sdiv exact i64 %26, 12 - store i64 %27, i64* %7, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub nsw i64 %28, 2 - %30 = sdiv i64 %29, 2 - store i64 %30, i64* %8, align 8 - br label %31 - -31: ; preds = %21, %58 - %32 = load %struct.Job*, %struct.Job** %4, align 8 - %33 = load i64, i64* %8, align 8 - %34 = getelementptr inbounds %struct.Job, %struct.Job* %32, i64 %33 - %35 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %34) #3 - %36 = bitcast %struct.Job* %9 to i8* - %37 = bitcast %struct.Job* %35 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %36, i8* align 4 %37, i64 12, i1 false) - %38 = load %struct.Job*, %struct.Job** %4, align 8 - %39 = load i64, i64* %8, align 8 - %40 = load i64, i64* %7, align 8 - %41 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %9) #3 - %42 = bitcast %struct.Job* %10 to i8* - %43 = bitcast %struct.Job* %41 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %42, i8* align 4 %43, i64 12, i1 false) - %44 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %6, align 8 - %45 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %46 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %44 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %45, i8* align 8 %46, i64 8, i1 false) - %47 = bitcast { i64, i32 }* %12 to i8* - %48 = bitcast %struct.Job* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %47, i8* align 4 %48, i64 12, i1 false) - %49 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %50 = load i64, i64* %49, align 4 - %51 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %52 = load i32, i32* %51, align 4 - %53 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %54 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %53, align 8 - call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* %38, i64 %39, i64 %40, i64 %50, i32 %52, i1 (i64, i32, i64, i32)* %54) - %55 = load i64, i64* %8, align 8 - %56 = icmp eq i64 %55, 0 - br i1 %56, label %57, label %58 - -57: ; preds = %31 - br label %61 - -58: ; preds = %31 - %59 = load i64, i64* %8, align 8 - %60 = add nsw i64 %59, -1 - store i64 %60, i64* %8, align 8 - br label %31 - -61: ; preds = %57, %20 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %0, %struct.Job* %1, %struct.Job* %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job, align 4 - %8 = alloca %struct.Job, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %13 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = bitcast %struct.Job* %8 to i8* - %19 = bitcast %struct.Job* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.Job* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call zeroext i1 %13(i64 %23, i32 %25, i64 %29, i32 %31) - ret i1 %32 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %3) #6 comdat { - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %9 = alloca %struct.Job, align 4 - %10 = alloca %struct.Job, align 4 - %11 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %12 = alloca { i64, i32 }, align 4 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - store %struct.Job* %2, %struct.Job** %7, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %13 = load %struct.Job*, %struct.Job** %7, align 8 - %14 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %13) #3 - %15 = bitcast %struct.Job* %9 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %5, align 8 - %18 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %17) #3 - %19 = load %struct.Job*, %struct.Job** %7, align 8 - %20 = bitcast %struct.Job* %19 to i8* - %21 = bitcast %struct.Job* %18 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = load %struct.Job*, %struct.Job** %5, align 8 - %23 = load %struct.Job*, %struct.Job** %6, align 8 - %24 = load %struct.Job*, %struct.Job** %5, align 8 - %25 = ptrtoint %struct.Job* %23 to i64 - %26 = ptrtoint %struct.Job* %24 to i64 - %27 = sub i64 %25, %26 - %28 = sdiv exact i64 %27, 12 - %29 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %9) #3 - %30 = bitcast %struct.Job* %10 to i8* - %31 = bitcast %struct.Job* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %8, align 8 - %33 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11 to i8* - %34 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %32 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %33, i8* align 8 %34, i64 8, i1 false) - %35 = bitcast { i64, i32 }* %12 to i8* - %36 = bitcast %struct.Job* %10 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %35, i8* align 4 %36, i64 12, i1 false) - %37 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 0 - %38 = load i64, i64* %37, align 4 - %39 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %12, i32 0, i32 1 - %40 = load i32, i32* %39, align 4 - %41 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %11, i32 0, i32 0 - %42 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %41, align 8 - call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* %22, i64 0, i64 %28, i64 %38, i32 %40, i1 (i64, i32, i64, i32)* %42) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %0) #4 comdat { - %2 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %2, align 8 - %3 = load %struct.Job*, %struct.Job** %2, align 8 - ret %struct.Job* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* %0, i64 %1, i64 %2, i64 %3, i32 %4, i1 (i64, i32, i64, i32)* %5) #6 comdat { - %7 = alloca %struct.Job, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = alloca %struct.Job*, align 8 - %11 = alloca i64, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - %14 = alloca i64, align 8 - %15 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val", align 8 - %16 = alloca %struct.Job, align 4 - %17 = alloca { i64, i32 }, align 4 - %18 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %18, align 4 - %19 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %19, align 4 - %20 = bitcast %struct.Job* %7 to i8* - %21 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %5, i1 (i64, i32, i64, i32)** %22, align 8 - store %struct.Job* %0, %struct.Job** %10, align 8 - store i64 %1, i64* %11, align 8 - store i64 %2, i64* %12, align 8 - %23 = load i64, i64* %11, align 8 - store i64 %23, i64* %13, align 8 - %24 = load i64, i64* %11, align 8 - store i64 %24, i64* %14, align 8 - br label %25 - -25: ; preds = %46, %6 - %26 = load i64, i64* %14, align 8 - %27 = load i64, i64* %12, align 8 - %28 = sub nsw i64 %27, 1 - %29 = sdiv i64 %28, 2 - %30 = icmp slt i64 %26, %29 - br i1 %30, label %31, label %57 - -31: ; preds = %25 - %32 = load i64, i64* %14, align 8 - %33 = add nsw i64 %32, 1 - %34 = mul nsw i64 2, %33 - store i64 %34, i64* %14, align 8 - %35 = load %struct.Job*, %struct.Job** %10, align 8 - %36 = load i64, i64* %14, align 8 - %37 = getelementptr inbounds %struct.Job, %struct.Job* %35, i64 %36 - %38 = load %struct.Job*, %struct.Job** %10, align 8 - %39 = load i64, i64* %14, align 8 - %40 = sub nsw i64 %39, 1 - %41 = getelementptr inbounds %struct.Job, %struct.Job* %38, i64 %40 - %42 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %9, %struct.Job* %37, %struct.Job* %41) - br i1 %42, label %43, label %46 - -43: ; preds = %31 - %44 = load i64, i64* %14, align 8 - %45 = add nsw i64 %44, -1 - store i64 %45, i64* %14, align 8 - br label %46 - -46: ; preds = %43, %31 - %47 = load %struct.Job*, %struct.Job** %10, align 8 - %48 = load i64, i64* %14, align 8 - %49 = getelementptr inbounds %struct.Job, %struct.Job* %47, i64 %48 - %50 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %49) #3 - %51 = load %struct.Job*, %struct.Job** %10, align 8 - %52 = load i64, i64* %11, align 8 - %53 = getelementptr inbounds %struct.Job, %struct.Job* %51, i64 %52 - %54 = bitcast %struct.Job* %53 to i8* - %55 = bitcast %struct.Job* %50 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %54, i8* align 4 %55, i64 12, i1 false) - %56 = load i64, i64* %14, align 8 - store i64 %56, i64* %11, align 8 - br label %25, !llvm.loop !8 - -57: ; preds = %25 - %58 = load i64, i64* %12, align 8 - %59 = and i64 %58, 1 - %60 = icmp eq i64 %59, 0 - br i1 %60, label %61, label %83 - -61: ; preds = %57 - %62 = load i64, i64* %14, align 8 - %63 = load i64, i64* %12, align 8 - %64 = sub nsw i64 %63, 2 - %65 = sdiv i64 %64, 2 - %66 = icmp eq i64 %62, %65 - br i1 %66, label %67, label %83 - -67: ; preds = %61 - %68 = load i64, i64* %14, align 8 - %69 = add nsw i64 %68, 1 - %70 = mul nsw i64 2, %69 - store i64 %70, i64* %14, align 8 - %71 = load %struct.Job*, %struct.Job** %10, align 8 - %72 = load i64, i64* %14, align 8 - %73 = sub nsw i64 %72, 1 - %74 = getelementptr inbounds %struct.Job, %struct.Job* %71, i64 %73 - %75 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %74) #3 - %76 = load %struct.Job*, %struct.Job** %10, align 8 - %77 = load i64, i64* %11, align 8 - %78 = getelementptr inbounds %struct.Job, %struct.Job* %76, i64 %77 - %79 = bitcast %struct.Job* %78 to i8* - %80 = bitcast %struct.Job* %75 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %79, i8* align 4 %80, i64 12, i1 false) - %81 = load i64, i64* %14, align 8 - %82 = sub nsw i64 %81, 1 - store i64 %82, i64* %11, align 8 - br label %83 - -83: ; preds = %67, %61, %57 - %84 = call nonnull align 8 dereferenceable(8) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS3_EEEEONSt16remove_referenceIT_E4typeEOS9_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %9) #3 - call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %15, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %84) - %85 = load %struct.Job*, %struct.Job** %10, align 8 - %86 = load i64, i64* %11, align 8 - %87 = load i64, i64* %13, align 8 - %88 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %7) #3 - %89 = bitcast %struct.Job* %16 to i8* - %90 = bitcast %struct.Job* %88 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %89, i8* align 4 %90, i64 12, i1 false) - %91 = bitcast { i64, i32 }* %17 to i8* - %92 = bitcast %struct.Job* %16 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %91, i8* align 4 %92, i64 12, i1 false) - %93 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 0 - %94 = load i64, i64* %93, align 4 - %95 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %17, i32 0, i32 1 - %96 = load i32, i32* %95, align 4 - call void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.Job* %85, i64 %86, i64 %87, i64 %94, i32 %96, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 8 dereferenceable(8) %15) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS3_EEEEONSt16remove_referenceIT_E4typeEOS9_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - %3 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %2, align 8 - ret %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %1) unnamed_addr #11 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %8) #3 - %10 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %9, align 8 - store i1 (i64, i32, i64, i32)* %10, i1 (i64, i32, i64, i32)** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.Job* %0, i64 %1, i64 %2, i64 %3, i32 %4, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull align 8 dereferenceable(8) %5) #6 comdat { - %7 = alloca %struct.Job, align 4 - %8 = alloca { i64, i32 }, align 4 - %9 = alloca %struct.Job*, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %13 = alloca i64, align 8 - %14 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 0 - store i64 %3, i64* %14, align 4 - %15 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %8, i32 0, i32 1 - store i32 %4, i32* %15, align 4 - %16 = bitcast %struct.Job* %7 to i8* - %17 = bitcast { i64, i32 }* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %16, i8* align 4 %17, i64 12, i1 false) - store %struct.Job* %0, %struct.Job** %9, align 8 - store i64 %1, i64* %10, align 8 - store i64 %2, i64* %11, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %5, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %18 = load i64, i64* %10, align 8 - %19 = sub nsw i64 %18, 1 - %20 = sdiv i64 %19, 2 - store i64 %20, i64* %13, align 8 - br label %21 - -21: ; preds = %33, %6 - %22 = load i64, i64* %10, align 8 - %23 = load i64, i64* %11, align 8 - %24 = icmp sgt i64 %22, %23 - br i1 %24, label %25, label %31 - -25: ; preds = %21 - %26 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %12, align 8 - %27 = load %struct.Job*, %struct.Job** %9, align 8 - %28 = load i64, i64* %13, align 8 - %29 = getelementptr inbounds %struct.Job, %struct.Job* %27, i64 %28 - %30 = call zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %26, %struct.Job* %29, %struct.Job* nonnull align 4 dereferenceable(12) %7) - br label %31 - -31: ; preds = %25, %21 - %32 = phi i1 [ false, %21 ], [ %30, %25 ] - br i1 %32, label %33, label %47 - -33: ; preds = %31 - %34 = load %struct.Job*, %struct.Job** %9, align 8 - %35 = load i64, i64* %13, align 8 - %36 = getelementptr inbounds %struct.Job, %struct.Job* %34, i64 %35 - %37 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %36) #3 - %38 = load %struct.Job*, %struct.Job** %9, align 8 - %39 = load i64, i64* %10, align 8 - %40 = getelementptr inbounds %struct.Job, %struct.Job* %38, i64 %39 - %41 = bitcast %struct.Job* %40 to i8* - %42 = bitcast %struct.Job* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %41, i8* align 4 %42, i64 12, i1 false) - %43 = load i64, i64* %13, align 8 - store i64 %43, i64* %10, align 8 - %44 = load i64, i64* %10, align 8 - %45 = sub nsw i64 %44, 1 - %46 = sdiv i64 %45, 2 - store i64 %46, i64* %13, align 8 - br label %21, !llvm.loop !9 - -47: ; preds = %31 - %48 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %7) #3 - %49 = load %struct.Job*, %struct.Job** %9, align 8 - %50 = load i64, i64* %10, align 8 - %51 = getelementptr inbounds %struct.Job, %struct.Job* %49, i64 %50 - %52 = bitcast %struct.Job* %51 to i8* - %53 = bitcast %struct.Job* %48 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %52, i8* align 4 %53, i64 12, i1 false) - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %0) #4 comdat { - %2 = alloca i1 (i64, i32, i64, i32)**, align 8 - store i1 (i64, i32, i64, i32)** %0, i1 (i64, i32, i64, i32)*** %2, align 8 - %3 = load i1 (i64, i32, i64, i32)**, i1 (i64, i32, i64, i32)*** %2, align 8 - ret i1 (i64, i32, i64, i32)** %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* nonnull dereferenceable(8) %0, %struct.Job* %1, %struct.Job* nonnull align 4 dereferenceable(12) %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job, align 4 - %8 = alloca %struct.Job, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Iter_comp_val"*, %"struct.__gnu_cxx::__ops::_Iter_comp_val"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_val", %"struct.__gnu_cxx::__ops::_Iter_comp_val"* %11, i32 0, i32 0 - %13 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = bitcast %struct.Job* %8 to i8* - %19 = bitcast %struct.Job* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.Job* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call zeroext i1 %13(i64 %23, i32 %25, i64 %29, i32 %31) - ret i1 %32 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2, %struct.Job* %3, i1 (i64, i32, i64, i32)* %4) #6 comdat { - %6 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = alloca %struct.Job*, align 8 - %10 = alloca %struct.Job*, align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %6, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %4, i1 (i64, i32, i64, i32)** %11, align 8 - store %struct.Job* %0, %struct.Job** %7, align 8 - store %struct.Job* %1, %struct.Job** %8, align 8 - store %struct.Job* %2, %struct.Job** %9, align 8 - store %struct.Job* %3, %struct.Job** %10, align 8 - %12 = load %struct.Job*, %struct.Job** %8, align 8 - %13 = load %struct.Job*, %struct.Job** %9, align 8 - %14 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.Job* %12, %struct.Job* %13) - br i1 %14, label %15, label %34 - -15: ; preds = %5 - %16 = load %struct.Job*, %struct.Job** %9, align 8 - %17 = load %struct.Job*, %struct.Job** %10, align 8 - %18 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.Job* %16, %struct.Job* %17) - br i1 %18, label %19, label %22 - -19: ; preds = %15 - %20 = load %struct.Job*, %struct.Job** %7, align 8 - %21 = load %struct.Job*, %struct.Job** %9, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %20, %struct.Job* %21) - br label %33 - -22: ; preds = %15 - %23 = load %struct.Job*, %struct.Job** %8, align 8 - %24 = load %struct.Job*, %struct.Job** %10, align 8 - %25 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.Job* %23, %struct.Job* %24) - br i1 %25, label %26, label %29 - -26: ; preds = %22 - %27 = load %struct.Job*, %struct.Job** %7, align 8 - %28 = load %struct.Job*, %struct.Job** %10, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %27, %struct.Job* %28) - br label %32 - -29: ; preds = %22 - %30 = load %struct.Job*, %struct.Job** %7, align 8 - %31 = load %struct.Job*, %struct.Job** %8, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %30, %struct.Job* %31) - br label %32 - -32: ; preds = %29, %26 - br label %33 - -33: ; preds = %32, %19 - br label %53 - -34: ; preds = %5 - %35 = load %struct.Job*, %struct.Job** %8, align 8 - %36 = load %struct.Job*, %struct.Job** %10, align 8 - %37 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.Job* %35, %struct.Job* %36) - br i1 %37, label %38, label %41 - -38: ; preds = %34 - %39 = load %struct.Job*, %struct.Job** %7, align 8 - %40 = load %struct.Job*, %struct.Job** %8, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %39, %struct.Job* %40) - br label %52 - -41: ; preds = %34 - %42 = load %struct.Job*, %struct.Job** %9, align 8 - %43 = load %struct.Job*, %struct.Job** %10, align 8 - %44 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %6, %struct.Job* %42, %struct.Job* %43) - br i1 %44, label %45, label %48 - -45: ; preds = %41 - %46 = load %struct.Job*, %struct.Job** %7, align 8 - %47 = load %struct.Job*, %struct.Job** %10, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %46, %struct.Job* %47) - br label %51 - -48: ; preds = %41 - %49 = load %struct.Job*, %struct.Job** %7, align 8 - %50 = load %struct.Job*, %struct.Job** %9, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %49, %struct.Job* %50) - br label %51 - -51: ; preds = %48, %45 - br label %52 - -52: ; preds = %51, %38 - br label %53 - -53: ; preds = %52, %33 - ret void -} - -; Function Attrs: noinline uwtable -define linkonce_odr dso_local %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2, i1 (i64, i32, i64, i32)* %3) #0 comdat { - %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job*, align 8 - %9 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %3, i1 (i64, i32, i64, i32)** %9, align 8 - store %struct.Job* %0, %struct.Job** %6, align 8 - store %struct.Job* %1, %struct.Job** %7, align 8 - store %struct.Job* %2, %struct.Job** %8, align 8 - br label %10 - -10: ; preds = %4, %34 - br label %11 - -11: ; preds = %15, %10 - %12 = load %struct.Job*, %struct.Job** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %8, align 8 - %14 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %5, %struct.Job* %12, %struct.Job* %13) - br i1 %14, label %15, label %18 - -15: ; preds = %11 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = getelementptr inbounds %struct.Job, %struct.Job* %16, i32 1 - store %struct.Job* %17, %struct.Job** %6, align 8 - br label %11, !llvm.loop !10 - -18: ; preds = %11 - %19 = load %struct.Job*, %struct.Job** %7, align 8 - %20 = getelementptr inbounds %struct.Job, %struct.Job* %19, i32 -1 - store %struct.Job* %20, %struct.Job** %7, align 8 - br label %21 - -21: ; preds = %25, %18 - %22 = load %struct.Job*, %struct.Job** %8, align 8 - %23 = load %struct.Job*, %struct.Job** %7, align 8 - %24 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %5, %struct.Job* %22, %struct.Job* %23) - br i1 %24, label %25, label %28 - -25: ; preds = %21 - %26 = load %struct.Job*, %struct.Job** %7, align 8 - %27 = getelementptr inbounds %struct.Job, %struct.Job* %26, i32 -1 - store %struct.Job* %27, %struct.Job** %7, align 8 - br label %21, !llvm.loop !11 - -28: ; preds = %21 - %29 = load %struct.Job*, %struct.Job** %6, align 8 - %30 = load %struct.Job*, %struct.Job** %7, align 8 - %31 = icmp ult %struct.Job* %29, %30 - br i1 %31, label %34, label %32 - -32: ; preds = %28 - %33 = load %struct.Job*, %struct.Job** %6, align 8 - ret %struct.Job* %33 - -34: ; preds = %28 - %35 = load %struct.Job*, %struct.Job** %6, align 8 - %36 = load %struct.Job*, %struct.Job** %7, align 8 - call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %35, %struct.Job* %36) - %37 = load %struct.Job*, %struct.Job** %6, align 8 - %38 = getelementptr inbounds %struct.Job, %struct.Job* %37, i32 1 - store %struct.Job* %38, %struct.Job** %6, align 8 - br label %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %0, %struct.Job* %1) #4 comdat { - %3 = alloca %struct.Job*, align 8 - %4 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %3, align 8 - store %struct.Job* %1, %struct.Job** %4, align 8 - %5 = load %struct.Job*, %struct.Job** %3, align 8 - %6 = load %struct.Job*, %struct.Job** %4, align 8 - call void @_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(%struct.Job* nonnull align 4 dereferenceable(12) %5, %struct.Job* nonnull align 4 dereferenceable(12) %6) #3 - ret void -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(%struct.Job* nonnull align 4 dereferenceable(12) %0, %struct.Job* nonnull align 4 dereferenceable(12) %1) #4 comdat { - %3 = alloca %struct.Job*, align 8 - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job, align 4 - store %struct.Job* %0, %struct.Job** %3, align 8 - store %struct.Job* %1, %struct.Job** %4, align 8 - %6 = load %struct.Job*, %struct.Job** %3, align 8 - %7 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %6) #3 - %8 = bitcast %struct.Job* %5 to i8* - %9 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %8, i8* align 4 %9, i64 12, i1 false) - %10 = load %struct.Job*, %struct.Job** %4, align 8 - %11 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %10) #3 - %12 = load %struct.Job*, %struct.Job** %3, align 8 - %13 = bitcast %struct.Job* %12 to i8* - %14 = bitcast %struct.Job* %11 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %13, i8* align 4 %14, i64 12, i1 false) - %15 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %5) #3 - %16 = load %struct.Job*, %struct.Job** %4, align 8 - %17 = bitcast %struct.Job* %16 to i8* - %18 = bitcast %struct.Job* %15 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %17, i8* align 4 %18, i64 12, i1 false) - ret void -} - -; Function Attrs: nofree nosync nounwind readnone speculatable willreturn -declare i64 @llvm.ctlz.i64(i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %0, %struct.Job* %1, i1 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %struct.Job, align 4 - %9 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %10 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %11 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %11, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %12 = load %struct.Job*, %struct.Job** %5, align 8 - %13 = load %struct.Job*, %struct.Job** %6, align 8 - %14 = icmp eq %struct.Job* %12, %13 - br i1 %14, label %15, label %16 - -15: ; preds = %3 - br label %55 - -16: ; preds = %3 - %17 = load %struct.Job*, %struct.Job** %5, align 8 - %18 = getelementptr inbounds %struct.Job, %struct.Job* %17, i64 1 - store %struct.Job* %18, %struct.Job** %7, align 8 - br label %19 - -19: ; preds = %52, %16 - %20 = load %struct.Job*, %struct.Job** %7, align 8 - %21 = load %struct.Job*, %struct.Job** %6, align 8 - %22 = icmp ne %struct.Job* %20, %21 - br i1 %22, label %23, label %55 - -23: ; preds = %19 - %24 = load %struct.Job*, %struct.Job** %7, align 8 - %25 = load %struct.Job*, %struct.Job** %5, align 8 - %26 = call zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %4, %struct.Job* %24, %struct.Job* %25) - br i1 %26, label %27, label %41 - -27: ; preds = %23 - %28 = load %struct.Job*, %struct.Job** %7, align 8 - %29 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %28) #3 - %30 = bitcast %struct.Job* %8 to i8* - %31 = bitcast %struct.Job* %29 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - %32 = load %struct.Job*, %struct.Job** %5, align 8 - %33 = load %struct.Job*, %struct.Job** %7, align 8 - %34 = load %struct.Job*, %struct.Job** %7, align 8 - %35 = getelementptr inbounds %struct.Job, %struct.Job* %34, i64 1 - %36 = call %struct.Job* @_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_(%struct.Job* %32, %struct.Job* %33, %struct.Job* %35) - %37 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %8) #3 - %38 = load %struct.Job*, %struct.Job** %5, align 8 - %39 = bitcast %struct.Job* %38 to i8* - %40 = bitcast %struct.Job* %37 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %39, i8* align 4 %40, i64 12, i1 false) - br label %51 - -41: ; preds = %23 - %42 = load %struct.Job*, %struct.Job** %7, align 8 - %43 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10 to i8* - %44 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %43, i8* align 8 %44, i64 8, i1 false) - %45 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %10, i32 0, i32 0 - %46 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %45, align 8 - %47 = call i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i1 (i64, i32, i64, i32)* %46) - %48 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %47, i1 (i64, i32, i64, i32)** %48, align 8 - %49 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %9, i32 0, i32 0 - %50 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %49, align 8 - call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* %42, i1 (i64, i32, i64, i32)* %50) - br label %51 - -51: ; preds = %41, %27 - br label %52 - -52: ; preds = %51 - %53 = load %struct.Job*, %struct.Job** %7, align 8 - %54 = getelementptr inbounds %struct.Job, %struct.Job* %53, i32 1 - store %struct.Job* %54, %struct.Job** %7, align 8 - br label %19, !llvm.loop !12 - -55: ; preds = %15, %19 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* %0, %struct.Job* %1, i1 (i64, i32, i64, i32)* %2) #6 comdat { - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job*, align 8 - %8 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %9 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %10 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %2, i1 (i64, i32, i64, i32)** %10, align 8 - store %struct.Job* %0, %struct.Job** %5, align 8 - store %struct.Job* %1, %struct.Job** %6, align 8 - %11 = load %struct.Job*, %struct.Job** %5, align 8 - store %struct.Job* %11, %struct.Job** %7, align 8 - br label %12 - -12: ; preds = %26, %3 - %13 = load %struct.Job*, %struct.Job** %7, align 8 - %14 = load %struct.Job*, %struct.Job** %6, align 8 - %15 = icmp ne %struct.Job* %13, %14 - br i1 %15, label %16, label %29 - -16: ; preds = %12 - %17 = load %struct.Job*, %struct.Job** %7, align 8 - %18 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9 to i8* - %19 = bitcast %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %4 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 8 %18, i8* align 8 %19, i64 8, i1 false) - %20 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %9, i32 0, i32 0 - %21 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %20, align 8 - %22 = call i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i1 (i64, i32, i64, i32)* %21) - %23 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %22, i1 (i64, i32, i64, i32)** %23, align 8 - %24 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %8, i32 0, i32 0 - %25 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %24, align 8 - call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* %17, i1 (i64, i32, i64, i32)* %25) - br label %26 - -26: ; preds = %16 - %27 = load %struct.Job*, %struct.Job** %7, align 8 - %28 = getelementptr inbounds %struct.Job, %struct.Job* %27, i32 1 - store %struct.Job* %28, %struct.Job** %7, align 8 - br label %12, !llvm.loop !13 - -29: ; preds = %12 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2) #6 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = call %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* %7) - %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = call %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* %9) - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = call %struct.Job* @_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* %8, %struct.Job* %10, %struct.Job* %11) - ret %struct.Job* %12 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* %0, i1 (i64, i32, i64, i32)* %1) #6 comdat { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job, align 4 - %6 = alloca %struct.Job*, align 8 - %7 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %3, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %1, i1 (i64, i32, i64, i32)** %7, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - %8 = load %struct.Job*, %struct.Job** %4, align 8 - %9 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %8) #3 - %10 = bitcast %struct.Job* %5 to i8* - %11 = bitcast %struct.Job* %9 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %10, i8* align 4 %11, i64 12, i1 false) - %12 = load %struct.Job*, %struct.Job** %4, align 8 - store %struct.Job* %12, %struct.Job** %6, align 8 - %13 = load %struct.Job*, %struct.Job** %6, align 8 - %14 = getelementptr inbounds %struct.Job, %struct.Job* %13, i32 -1 - store %struct.Job* %14, %struct.Job** %6, align 8 - br label %15 - -15: ; preds = %18, %2 - %16 = load %struct.Job*, %struct.Job** %6, align 8 - %17 = call zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %3, %struct.Job* nonnull align 4 dereferenceable(12) %5, %struct.Job* %16) - br i1 %17, label %18, label %27 - -18: ; preds = %15 - %19 = load %struct.Job*, %struct.Job** %6, align 8 - %20 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %19) #3 - %21 = load %struct.Job*, %struct.Job** %4, align 8 - %22 = bitcast %struct.Job* %21 to i8* - %23 = bitcast %struct.Job* %20 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %22, i8* align 4 %23, i64 12, i1 false) - %24 = load %struct.Job*, %struct.Job** %6, align 8 - store %struct.Job* %24, %struct.Job** %4, align 8 - %25 = load %struct.Job*, %struct.Job** %6, align 8 - %26 = getelementptr inbounds %struct.Job, %struct.Job* %25, i32 -1 - store %struct.Job* %26, %struct.Job** %6, align 8 - br label %15, !llvm.loop !14 - -27: ; preds = %15 - %28 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %5) #3 - %29 = load %struct.Job*, %struct.Job** %4, align 8 - %30 = bitcast %struct.Job* %29 to i8* - %31 = bitcast %struct.Job* %28 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %30, i8* align 4 %31, i64 12, i1 false) - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i1 (i64, i32, i64, i32)* @_ZN9__gnu_cxx5__ops15__val_comp_iterIPFb3JobS2_EEENS0_14_Val_comp_iterIT_EENS0_15_Iter_comp_iterIS6_EE(i1 (i64, i32, i64, i32)* %0) #6 comdat { - %2 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter", align 8 - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter", align 8 - %4 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %3, i32 0, i32 0 - store i1 (i64, i32, i64, i32)* %0, i1 (i64, i32, i64, i32)** %4, align 8 - %5 = call nonnull align 8 dereferenceable(8) %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* @_ZSt4moveIRN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS3_EEEEONSt16remove_referenceIT_E4typeEOS9_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %3) #3 - call void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %5) - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %2, i32 0, i32 0 - %7 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %6, align 8 - ret i1 (i64, i32, i64, i32)* %7 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2) #6 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = call %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* %7) #3 - %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = call %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* %9) #3 - %11 = load %struct.Job*, %struct.Job** %6, align 8 - %12 = call %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* %11) #3 - %13 = call %struct.Job* @_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* %8, %struct.Job* %10, %struct.Job* %12) - %14 = call %struct.Job* @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(%struct.Job** nonnull align 8 dereferenceable(8) %6, %struct.Job* %13) - ret %struct.Job* %14 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* %0) #4 comdat { - %2 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %2, align 8 - %3 = load %struct.Job*, %struct.Job** %2, align 8 - ret %struct.Job* %3 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(%struct.Job** nonnull align 8 dereferenceable(8) %0, %struct.Job* %1) #4 comdat { - %3 = alloca %struct.Job**, align 8 - %4 = alloca %struct.Job*, align 8 - store %struct.Job** %0, %struct.Job*** %3, align 8 - store %struct.Job* %1, %struct.Job** %4, align 8 - %5 = load %struct.Job*, %struct.Job** %4, align 8 - ret %struct.Job* %5 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2) #6 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %6, align 8 - %10 = call %struct.Job* @_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* %7, %struct.Job* %8, %struct.Job* %9) - ret %struct.Job* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* %0) #4 comdat { - %2 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %2, align 8 - %3 = load %struct.Job*, %struct.Job** %2, align 8 - ret %struct.Job* %3 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2) #6 comdat { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %7 = load %struct.Job*, %struct.Job** %4, align 8 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %6, align 8 - %10 = call %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_(%struct.Job* %7, %struct.Job* %8, %struct.Job* %9) - ret %struct.Job* %10 -} - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_(%struct.Job* %0, %struct.Job* %1, %struct.Job* %2) #4 comdat align 2 { - %4 = alloca %struct.Job*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca i64, align 8 - store %struct.Job* %0, %struct.Job** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %8 = load %struct.Job*, %struct.Job** %5, align 8 - %9 = load %struct.Job*, %struct.Job** %4, align 8 - %10 = ptrtoint %struct.Job* %8 to i64 - %11 = ptrtoint %struct.Job* %9 to i64 - %12 = sub i64 %10, %11 - %13 = sdiv exact i64 %12, 12 - store i64 %13, i64* %7, align 8 - %14 = load i64, i64* %7, align 8 - %15 = icmp ne i64 %14, 0 - br i1 %15, label %16, label %26 - -16: ; preds = %3 - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = load i64, i64* %7, align 8 - %19 = sub i64 0, %18 - %20 = getelementptr inbounds %struct.Job, %struct.Job* %17, i64 %19 - %21 = bitcast %struct.Job* %20 to i8* - %22 = load %struct.Job*, %struct.Job** %4, align 8 - %23 = bitcast %struct.Job* %22 to i8* - %24 = load i64, i64* %7, align 8 - %25 = mul i64 12, %24 - call void @llvm.memmove.p0i8.p0i8.i64(i8* align 4 %21, i8* align 4 %23, i64 %25, i1 false) - br label %26 - -26: ; preds = %16, %3 - %27 = load %struct.Job*, %struct.Job** %6, align 8 - %28 = load i64, i64* %7, align 8 - %29 = sub i64 0, %28 - %30 = getelementptr inbounds %struct.Job, %struct.Job* %27, i64 %29 - ret %struct.Job* %30 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memmove.p0i8.p0i8.i64(i8* nocapture writeonly, i8* nocapture readonly, i64, i1 immarg) #5 - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %0, %struct.Job* nonnull align 4 dereferenceable(12) %1, %struct.Job* %2) #6 comdat align 2 { - %4 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %5 = alloca %struct.Job*, align 8 - %6 = alloca %struct.Job*, align 8 - %7 = alloca %struct.Job, align 4 - %8 = alloca %struct.Job, align 4 - %9 = alloca { i64, i32 }, align 4 - %10 = alloca { i64, i32 }, align 4 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - store %struct.Job* %1, %struct.Job** %5, align 8 - store %struct.Job* %2, %struct.Job** %6, align 8 - %11 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %4, align 8 - %12 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %11, i32 0, i32 0 - %13 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %12, align 8 - %14 = load %struct.Job*, %struct.Job** %5, align 8 - %15 = bitcast %struct.Job* %7 to i8* - %16 = bitcast %struct.Job* %14 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %15, i8* align 4 %16, i64 12, i1 false) - %17 = load %struct.Job*, %struct.Job** %6, align 8 - %18 = bitcast %struct.Job* %8 to i8* - %19 = bitcast %struct.Job* %17 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %18, i8* align 4 %19, i64 12, i1 false) - %20 = bitcast { i64, i32 }* %9 to i8* - %21 = bitcast %struct.Job* %7 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %20, i8* align 4 %21, i64 12, i1 false) - %22 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 0 - %23 = load i64, i64* %22, align 4 - %24 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %9, i32 0, i32 1 - %25 = load i32, i32* %24, align 4 - %26 = bitcast { i64, i32 }* %10 to i8* - %27 = bitcast %struct.Job* %8 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 4 %26, i8* align 4 %27, i64 12, i1 false) - %28 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 0 - %29 = load i64, i64* %28, align 4 - %30 = getelementptr inbounds { i64, i32 }, { i64, i32 }* %10, i32 0, i32 1 - %31 = load i32, i32* %30, align 4 - %32 = call zeroext i1 %13(i64 %23, i32 %25, i64 %29, i32 %31) - ret i1 %32 -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEC2EONS0_15_Iter_comp_iterIS4_EE(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* nonnull dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull align 8 dereferenceable(8) %1) unnamed_addr #11 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, align 8 - %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - store %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Val_comp_iter"*, %"struct.__gnu_cxx::__ops::_Val_comp_iter"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Val_comp_iter", %"struct.__gnu_cxx::__ops::_Val_comp_iter"* %5, i32 0, i32 0 - %7 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %4, align 8 - %8 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %7, i32 0, i32 0 - %9 = call nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %8) #3 - %10 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %9, align 8 - store i1 (i64, i32, i64, i32)* %10, i1 (i64, i32, i64, i32)** %6, align 8 - ret void -} - -; Function Attrs: noinline nounwind uwtable -define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* nonnull dereferenceable(8) %0, i1 (i64, i32, i64, i32)* %1) unnamed_addr #11 comdat align 2 { - %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, align 8 - %4 = alloca i1 (i64, i32, i64, i32)*, align 8 - store %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %3, align 8 - store i1 (i64, i32, i64, i32)* %1, i1 (i64, i32, i64, i32)** %4, align 8 - %5 = load %"struct.__gnu_cxx::__ops::_Iter_comp_iter"*, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"** %3, align 8 - %6 = getelementptr inbounds %"struct.__gnu_cxx::__ops::_Iter_comp_iter", %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* %5, i32 0, i32 0 - %7 = call nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** nonnull align 8 dereferenceable(8) %4) #3 - %8 = load i1 (i64, i32, i64, i32)*, i1 (i64, i32, i64, i32)** %7, align 8 - store i1 (i64, i32, i64, i32)* %8, i1 (i64, i32, i64, i32)** %6, align 8 - ret void -} - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_weighted_job_scheduling.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { argmemonly nofree nosync nounwind willreturn } -attributes #6 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { nofree nosync nounwind readnone speculatable willreturn } -attributes #8 = { nobuiltin allocsize(0) "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #9 = { nobuiltin nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #10 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #11 = { noinline nounwind uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #12 = { builtin allocsize(0) } -attributes #13 = { builtin nounwind } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} -!9 = distinct !{!9, !3} -!10 = distinct !{!10, !3} -!11 = distinct !{!11, !3} -!12 = distinct !{!12, !3} -!13 = distinct !{!13, !3} -!14 = distinct !{!14, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/word-wrap.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/word-wrap.ll deleted file mode 100644 index 70aeaa27..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/word-wrap.ll +++ /dev/null @@ -1,531 +0,0 @@ -; ModuleID = 'PE-benchmarks/word-wrap.cpp' -source_filename = "PE-benchmarks/word-wrap.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str = private unnamed_addr constant [13 x i8] c"Line number \00", align 1 -@.str.1 = private unnamed_addr constant [17 x i8] c": From word no. \00", align 1 -@.str.2 = private unnamed_addr constant [5 x i8] c" to \00", align 1 -@__const.main.l = private unnamed_addr constant [4 x i32] [i32 3, i32 2, i32 2, i32 5], align 16 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_word_wrap.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { - %4 = alloca i32*, align 8 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i8*, align 8 - %8 = alloca i64, align 8 - %9 = alloca i64, align 8 - %10 = alloca i64, align 8 - %11 = alloca i64, align 8 - %12 = alloca i64, align 8 - %13 = alloca i64, align 8 - %14 = alloca i32, align 4 - %15 = alloca i32, align 4 - store i32* %0, i32** %4, align 8 - store i32 %1, i32* %5, align 4 - store i32 %2, i32* %6, align 4 - %16 = load i32, i32* %5, align 4 - %17 = add nsw i32 %16, 1 - %18 = zext i32 %17 to i64 - %19 = load i32, i32* %5, align 4 - %20 = add nsw i32 %19, 1 - %21 = zext i32 %20 to i64 - %22 = call i8* @llvm.stacksave() - store i8* %22, i8** %7, align 8 - %23 = mul nuw i64 %18, %21 - %24 = alloca i32, i64 %23, align 16 - store i64 %18, i64* %8, align 8 - store i64 %21, i64* %9, align 8 - %25 = load i32, i32* %5, align 4 - %26 = add nsw i32 %25, 1 - %27 = zext i32 %26 to i64 - %28 = load i32, i32* %5, align 4 - %29 = add nsw i32 %28, 1 - %30 = zext i32 %29 to i64 - %31 = mul nuw i64 %27, %30 - %32 = alloca i32, i64 %31, align 16 - store i64 %27, i64* %10, align 8 - store i64 %30, i64* %11, align 8 - %33 = load i32, i32* %5, align 4 - %34 = add nsw i32 %33, 1 - %35 = zext i32 %34 to i64 - %36 = alloca i32, i64 %35, align 16 - store i64 %35, i64* %12, align 8 - %37 = load i32, i32* %5, align 4 - %38 = add nsw i32 %37, 1 - %39 = zext i32 %38 to i64 - %40 = alloca i32, i64 %39, align 16 - store i64 %39, i64* %13, align 8 - store i32 1, i32* %14, align 4 - br label %41 - -41: ; preds = %96, %3 - %42 = load i32, i32* %14, align 4 - %43 = load i32, i32* %5, align 4 - %44 = icmp sle i32 %42, %43 - br i1 %44, label %45, label %99 - -45: ; preds = %41 - %46 = load i32, i32* %6, align 4 - %47 = load i32*, i32** %4, align 8 - %48 = load i32, i32* %14, align 4 - %49 = sub nsw i32 %48, 1 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %47, i64 %50 - %52 = load i32, i32* %51, align 4 - %53 = sub nsw i32 %46, %52 - %54 = load i32, i32* %14, align 4 - %55 = sext i32 %54 to i64 - %56 = mul nsw i64 %55, %21 - %57 = getelementptr inbounds i32, i32* %24, i64 %56 - %58 = load i32, i32* %14, align 4 - %59 = sext i32 %58 to i64 - %60 = getelementptr inbounds i32, i32* %57, i64 %59 - store i32 %53, i32* %60, align 4 - %61 = load i32, i32* %14, align 4 - %62 = add nsw i32 %61, 1 - store i32 %62, i32* %15, align 4 - br label %63 - -63: ; preds = %92, %45 - %64 = load i32, i32* %15, align 4 - %65 = load i32, i32* %5, align 4 - %66 = icmp sle i32 %64, %65 - br i1 %66, label %67, label %95 - -67: ; preds = %63 - %68 = load i32, i32* %14, align 4 - %69 = sext i32 %68 to i64 - %70 = mul nsw i64 %69, %21 - %71 = getelementptr inbounds i32, i32* %24, i64 %70 - %72 = load i32, i32* %15, align 4 - %73 = sub nsw i32 %72, 1 - %74 = sext i32 %73 to i64 - %75 = getelementptr inbounds i32, i32* %71, i64 %74 - %76 = load i32, i32* %75, align 4 - %77 = load i32*, i32** %4, align 8 - %78 = load i32, i32* %15, align 4 - %79 = sub nsw i32 %78, 1 - %80 = sext i32 %79 to i64 - %81 = getelementptr inbounds i32, i32* %77, i64 %80 - %82 = load i32, i32* %81, align 4 - %83 = sub nsw i32 %76, %82 - %84 = sub nsw i32 %83, 1 - %85 = load i32, i32* %14, align 4 - %86 = sext i32 %85 to i64 - %87 = mul nsw i64 %86, %21 - %88 = getelementptr inbounds i32, i32* %24, i64 %87 - %89 = load i32, i32* %15, align 4 - %90 = sext i32 %89 to i64 - %91 = getelementptr inbounds i32, i32* %88, i64 %90 - store i32 %84, i32* %91, align 4 - br label %92 - -92: ; preds = %67 - %93 = load i32, i32* %15, align 4 - %94 = add nsw i32 %93, 1 - store i32 %94, i32* %15, align 4 - br label %63, !llvm.loop !2 - -95: ; preds = %63 - br label %96 - -96: ; preds = %95 - %97 = load i32, i32* %14, align 4 - %98 = add nsw i32 %97, 1 - store i32 %98, i32* %14, align 4 - br label %41, !llvm.loop !4 - -99: ; preds = %41 - store i32 1, i32* %14, align 4 - br label %100 - -100: ; preds = %181, %99 - %101 = load i32, i32* %14, align 4 - %102 = load i32, i32* %5, align 4 - %103 = icmp sle i32 %101, %102 - br i1 %103, label %104, label %184 - -104: ; preds = %100 - %105 = load i32, i32* %14, align 4 - store i32 %105, i32* %15, align 4 - br label %106 - -106: ; preds = %177, %104 - %107 = load i32, i32* %15, align 4 - %108 = load i32, i32* %5, align 4 - %109 = icmp sle i32 %107, %108 - br i1 %109, label %110, label %180 - -110: ; preds = %106 - %111 = load i32, i32* %14, align 4 - %112 = sext i32 %111 to i64 - %113 = mul nsw i64 %112, %21 - %114 = getelementptr inbounds i32, i32* %24, i64 %113 - %115 = load i32, i32* %15, align 4 - %116 = sext i32 %115 to i64 - %117 = getelementptr inbounds i32, i32* %114, i64 %116 - %118 = load i32, i32* %117, align 4 - %119 = icmp slt i32 %118, 0 - br i1 %119, label %120, label %128 - -120: ; preds = %110 - %121 = load i32, i32* %14, align 4 - %122 = sext i32 %121 to i64 - %123 = mul nsw i64 %122, %30 - %124 = getelementptr inbounds i32, i32* %32, i64 %123 - %125 = load i32, i32* %15, align 4 - %126 = sext i32 %125 to i64 - %127 = getelementptr inbounds i32, i32* %124, i64 %126 - store i32 2147483647, i32* %127, align 4 - br label %176 - -128: ; preds = %110 - %129 = load i32, i32* %15, align 4 - %130 = load i32, i32* %5, align 4 - %131 = icmp eq i32 %129, %130 - br i1 %131, label %132, label %150 - -132: ; preds = %128 - %133 = load i32, i32* %14, align 4 - %134 = sext i32 %133 to i64 - %135 = mul nsw i64 %134, %21 - %136 = getelementptr inbounds i32, i32* %24, i64 %135 - %137 = load i32, i32* %15, align 4 - %138 = sext i32 %137 to i64 - %139 = getelementptr inbounds i32, i32* %136, i64 %138 - %140 = load i32, i32* %139, align 4 - %141 = icmp sge i32 %140, 0 - br i1 %141, label %142, label %150 - -142: ; preds = %132 - %143 = load i32, i32* %14, align 4 - %144 = sext i32 %143 to i64 - %145 = mul nsw i64 %144, %30 - %146 = getelementptr inbounds i32, i32* %32, i64 %145 - %147 = load i32, i32* %15, align 4 - %148 = sext i32 %147 to i64 - %149 = getelementptr inbounds i32, i32* %146, i64 %148 - store i32 0, i32* %149, align 4 - br label %175 - -150: ; preds = %132, %128 - %151 = load i32, i32* %14, align 4 - %152 = sext i32 %151 to i64 - %153 = mul nsw i64 %152, %21 - %154 = getelementptr inbounds i32, i32* %24, i64 %153 - %155 = load i32, i32* %15, align 4 - %156 = sext i32 %155 to i64 - %157 = getelementptr inbounds i32, i32* %154, i64 %156 - %158 = load i32, i32* %157, align 4 - %159 = load i32, i32* %14, align 4 - %160 = sext i32 %159 to i64 - %161 = mul nsw i64 %160, %21 - %162 = getelementptr inbounds i32, i32* %24, i64 %161 - %163 = load i32, i32* %15, align 4 - %164 = sext i32 %163 to i64 - %165 = getelementptr inbounds i32, i32* %162, i64 %164 - %166 = load i32, i32* %165, align 4 - %167 = mul nsw i32 %158, %166 - %168 = load i32, i32* %14, align 4 - %169 = sext i32 %168 to i64 - %170 = mul nsw i64 %169, %30 - %171 = getelementptr inbounds i32, i32* %32, i64 %170 - %172 = load i32, i32* %15, align 4 - %173 = sext i32 %172 to i64 - %174 = getelementptr inbounds i32, i32* %171, i64 %173 - store i32 %167, i32* %174, align 4 - br label %175 - -175: ; preds = %150, %142 - br label %176 - -176: ; preds = %175, %120 - br label %177 - -177: ; preds = %176 - %178 = load i32, i32* %15, align 4 - %179 = add nsw i32 %178, 1 - store i32 %179, i32* %15, align 4 - br label %106, !llvm.loop !5 - -180: ; preds = %106 - br label %181 - -181: ; preds = %180 - %182 = load i32, i32* %14, align 4 - %183 = add nsw i32 %182, 1 - store i32 %183, i32* %14, align 4 - br label %100, !llvm.loop !6 - -184: ; preds = %100 - %185 = getelementptr inbounds i32, i32* %36, i64 0 - store i32 0, i32* %185, align 16 - store i32 1, i32* %15, align 4 - br label %186 - -186: ; preds = %262, %184 - %187 = load i32, i32* %15, align 4 - %188 = load i32, i32* %5, align 4 - %189 = icmp sle i32 %187, %188 - br i1 %189, label %190, label %265 - -190: ; preds = %186 - %191 = load i32, i32* %15, align 4 - %192 = sext i32 %191 to i64 - %193 = getelementptr inbounds i32, i32* %36, i64 %192 - store i32 2147483647, i32* %193, align 4 - store i32 1, i32* %14, align 4 - br label %194 - -194: ; preds = %258, %190 - %195 = load i32, i32* %14, align 4 - %196 = load i32, i32* %15, align 4 - %197 = icmp sle i32 %195, %196 - br i1 %197, label %198, label %261 - -198: ; preds = %194 - %199 = load i32, i32* %14, align 4 - %200 = sub nsw i32 %199, 1 - %201 = sext i32 %200 to i64 - %202 = getelementptr inbounds i32, i32* %36, i64 %201 - %203 = load i32, i32* %202, align 4 - %204 = icmp ne i32 %203, 2147483647 - br i1 %204, label %205, label %257 - -205: ; preds = %198 - %206 = load i32, i32* %14, align 4 - %207 = sext i32 %206 to i64 - %208 = mul nsw i64 %207, %30 - %209 = getelementptr inbounds i32, i32* %32, i64 %208 - %210 = load i32, i32* %15, align 4 - %211 = sext i32 %210 to i64 - %212 = getelementptr inbounds i32, i32* %209, i64 %211 - %213 = load i32, i32* %212, align 4 - %214 = icmp ne i32 %213, 2147483647 - br i1 %214, label %215, label %257 - -215: ; preds = %205 - %216 = load i32, i32* %14, align 4 - %217 = sub nsw i32 %216, 1 - %218 = sext i32 %217 to i64 - %219 = getelementptr inbounds i32, i32* %36, i64 %218 - %220 = load i32, i32* %219, align 4 - %221 = load i32, i32* %14, align 4 - %222 = sext i32 %221 to i64 - %223 = mul nsw i64 %222, %30 - %224 = getelementptr inbounds i32, i32* %32, i64 %223 - %225 = load i32, i32* %15, align 4 - %226 = sext i32 %225 to i64 - %227 = getelementptr inbounds i32, i32* %224, i64 %226 - %228 = load i32, i32* %227, align 4 - %229 = add nsw i32 %220, %228 - %230 = load i32, i32* %15, align 4 - %231 = sext i32 %230 to i64 - %232 = getelementptr inbounds i32, i32* %36, i64 %231 - %233 = load i32, i32* %232, align 4 - %234 = icmp slt i32 %229, %233 - br i1 %234, label %235, label %257 - -235: ; preds = %215 - %236 = load i32, i32* %14, align 4 - %237 = sub nsw i32 %236, 1 - %238 = sext i32 %237 to i64 - %239 = getelementptr inbounds i32, i32* %36, i64 %238 - %240 = load i32, i32* %239, align 4 - %241 = load i32, i32* %14, align 4 - %242 = sext i32 %241 to i64 - %243 = mul nsw i64 %242, %30 - %244 = getelementptr inbounds i32, i32* %32, i64 %243 - %245 = load i32, i32* %15, align 4 - %246 = sext i32 %245 to i64 - %247 = getelementptr inbounds i32, i32* %244, i64 %246 - %248 = load i32, i32* %247, align 4 - %249 = add nsw i32 %240, %248 - %250 = load i32, i32* %15, align 4 - %251 = sext i32 %250 to i64 - %252 = getelementptr inbounds i32, i32* %36, i64 %251 - store i32 %249, i32* %252, align 4 - %253 = load i32, i32* %14, align 4 - %254 = load i32, i32* %15, align 4 - %255 = sext i32 %254 to i64 - %256 = getelementptr inbounds i32, i32* %40, i64 %255 - store i32 %253, i32* %256, align 4 - br label %257 - -257: ; preds = %235, %215, %205, %198 - br label %258 - -258: ; preds = %257 - %259 = load i32, i32* %14, align 4 - %260 = add nsw i32 %259, 1 - store i32 %260, i32* %14, align 4 - br label %194, !llvm.loop !7 - -261: ; preds = %194 - br label %262 - -262: ; preds = %261 - %263 = load i32, i32* %15, align 4 - %264 = add nsw i32 %263, 1 - store i32 %264, i32* %15, align 4 - br label %186, !llvm.loop !8 - -265: ; preds = %186 - %266 = load i32, i32* %5, align 4 - %267 = call i32 @_Z13printSolutionPii(i32* %40, i32 %266) - %268 = load i8*, i8** %7, align 8 - call void @llvm.stackrestore(i8* %268) - ret void -} - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z13printSolutionPii(i32* %0, i32 %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - store i32* %0, i32** %3, align 8 - store i32 %1, i32* %4, align 4 - %6 = load i32*, i32** %3, align 8 - %7 = load i32, i32* %4, align 4 - %8 = sext i32 %7 to i64 - %9 = getelementptr inbounds i32, i32* %6, i64 %8 - %10 = load i32, i32* %9, align 4 - %11 = icmp eq i32 %10, 1 - br i1 %11, label %12, label %13 - -12: ; preds = %2 - store i32 1, i32* %5, align 4 - br label %23 - -13: ; preds = %2 - %14 = load i32*, i32** %3, align 8 - %15 = load i32*, i32** %3, align 8 - %16 = load i32, i32* %4, align 4 - %17 = sext i32 %16 to i64 - %18 = getelementptr inbounds i32, i32* %15, i64 %17 - %19 = load i32, i32* %18, align 4 - %20 = sub nsw i32 %19, 1 - %21 = call i32 @_Z13printSolutionPii(i32* %14, i32 %20) - %22 = add nsw i32 %21, 1 - store i32 %22, i32* %5, align 4 - br label %23 - -23: ; preds = %13, %12 - %24 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i64 0, i64 0)) - %25 = load i32, i32* %5, align 4 - %26 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %24, i32 %25) - %27 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %26, i8* getelementptr inbounds ([17 x i8], [17 x i8]* @.str.1, i64 0, i64 0)) - %28 = load i32*, i32** %3, align 8 - %29 = load i32, i32* %4, align 4 - %30 = sext i32 %29 to i64 - %31 = getelementptr inbounds i32, i32* %28, i64 %30 - %32 = load i32, i32* %31, align 4 - %33 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %27, i32 %32) - %34 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) %33, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0)) - %35 = load i32, i32* %4, align 4 - %36 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8) %34, i32 %35) - %37 = call nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %36, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - %38 = load i32, i32* %5, align 4 - ret i32 %38 -} - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { - %1 = alloca i32, align 4 - %2 = alloca [4 x i32], align 16 - %3 = alloca i32, align 4 - %4 = alloca i32, align 4 - store i32 0, i32* %1, align 4 - %5 = bitcast [4 x i32]* %2 to i8* - call void @llvm.memcpy.p0i8.p0i8.i64(i8* align 16 %5, i8* align 16 bitcast ([4 x i32]* @__const.main.l to i8*), i64 16, i1 false) - store i32 4, i32* %3, align 4 - store i32 6, i32* %4, align 4 - %6 = getelementptr inbounds [4 x i32], [4 x i32]* %2, i64 0, i64 0 - %7 = load i32, i32* %3, align 4 - %8 = load i32, i32* %4, align 4 - call void @_Z13solveWordWrapPiii(i32* %6, i32 %7, i32 %8) - ret i32 0 -} - -; Function Attrs: argmemonly nofree nosync nounwind willreturn -declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8* noalias nocapture readonly, i64, i1 immarg) #7 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_word_wrap.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { argmemonly nofree nosync nounwind willreturn } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} -!7 = distinct !{!7, !3} -!8 = distinct !{!8, !3} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll deleted file mode 100644 index 5ceefd41..00000000 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll +++ /dev/null @@ -1,616 +0,0 @@ -; ModuleID = 'PE-benchmarks/z-algorithm-linear-time.cpp' -source_filename = "PE-benchmarks/z-algorithm-linear-time.cpp" -target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" -target triple = "x86_64-pc-linux-gnu" - -%"class.std::ios_base::Init" = type { i8 } -%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_ios" } -%"class.std::basic_ios" = type { %"class.std::ios_base", %"class.std::basic_ostream"*, i8, i8, %"class.std::basic_streambuf"*, %"class.std::ctype"*, %"class.std::num_put"*, %"class.std::num_get"* } -%"class.std::ios_base" = type { i32 (...)**, i64, i64, i32, i32, i32, %"struct.std::ios_base::_Callback_list"*, %"struct.std::ios_base::_Words", [8 x %"struct.std::ios_base::_Words"], i32, %"struct.std::ios_base::_Words"*, %"class.std::locale" } -%"struct.std::ios_base::_Callback_list" = type { %"struct.std::ios_base::_Callback_list"*, void (i32, %"class.std::ios_base"*, i32)*, i32, i32 } -%"struct.std::ios_base::_Words" = type { i8*, i64 } -%"class.std::locale" = type { %"class.std::locale::_Impl"* } -%"class.std::locale::_Impl" = type { i32, %"class.std::locale::facet"**, i64, %"class.std::locale::facet"**, i8** } -%"class.std::locale::facet" = type <{ i32 (...)**, i32, [4 x i8] }> -%"class.std::basic_streambuf" = type { i32 (...)**, i8*, i8*, i8*, i8*, i8*, i8*, %"class.std::locale" } -%"class.std::ctype" = type <{ %"class.std::locale::facet.base", [4 x i8], %struct.__locale_struct*, i8, [7 x i8], i32*, i32*, i16*, i8, [256 x i8], [256 x i8], i8, [6 x i8] }> -%"class.std::locale::facet.base" = type <{ i32 (...)**, i32 }> -%struct.__locale_struct = type { [13 x %struct.__locale_data*], i16*, i32*, i32*, [13 x i8*] } -%struct.__locale_data = type opaque -%"class.std::num_put" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::num_get" = type { %"class.std::locale::facet.base", [4 x i8] } -%"class.std::__cxx11::basic_string" = type { %"struct.std::__cxx11::basic_string::_Alloc_hider", i64, %union.anon } -%"struct.std::__cxx11::basic_string::_Alloc_hider" = type { i8* } -%union.anon = type { i64, [8 x i8] } -%"class.std::allocator" = type { i8 } - -$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_ = comdat any - -$_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_ = comdat any - -$_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_referenceIT_E4typeEOS8_ = comdat any - -@_ZStL8__ioinit = internal global %"class.std::ios_base::Init" zeroinitializer, align 1 -@__dso_handle = external hidden global i8 -@.str = private unnamed_addr constant [2 x i8] c"$\00", align 1 -@_ZSt4cout = external dso_local global %"class.std::basic_ostream", align 8 -@.str.1 = private unnamed_addr constant [24 x i8] c"Pattern found at index \00", align 1 -@.str.2 = private unnamed_addr constant [16 x i8] c"GEEKS FOR GEEKS\00", align 1 -@.str.3 = private unnamed_addr constant [5 x i8] c"GEEK\00", align 1 -@llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_z_algorithm_linear_time.cpp, i8* null }] - -; Function Attrs: noinline uwtable -define internal void @__cxx_global_var_init() #0 section ".text.startup" { - call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1) @_ZStL8__ioinit) - %1 = call i32 @__cxa_atexit(void (i8*)* bitcast (void (%"class.std::ios_base::Init"*)* @_ZNSt8ios_base4InitD1Ev to void (i8*)*), i8* getelementptr inbounds (%"class.std::ios_base::Init", %"class.std::ios_base::Init"* @_ZStL8__ioinit, i32 0, i32 0), i8* @__dso_handle) #3 - ret void -} - -declare dso_local void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* nonnull dereferenceable(1)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"* %1) #4 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %3 = alloca %"class.std::__cxx11::basic_string", align 8 - %4 = alloca %"class.std::__cxx11::basic_string", align 8 - %5 = alloca i8*, align 8 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i8*, align 8 - %9 = alloca i64, align 8 - %10 = alloca %"class.std::__cxx11::basic_string", align 8 - %11 = alloca i32, align 4 - call void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %4, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1, i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) - invoke void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8 %3, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %4, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) - to label %12 unwind label %45 - -12: ; preds = %2 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %4) #3 - %13 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %3) #3 - %14 = trunc i64 %13 to i32 - store i32 %14, i32* %7, align 4 - %15 = load i32, i32* %7, align 4 - %16 = zext i32 %15 to i64 - %17 = call i8* @llvm.stacksave() - store i8* %17, i8** %8, align 8 - %18 = alloca i32, i64 %16, align 16 - store i64 %16, i64* %9, align 8 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %10, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %3) - to label %19 unwind label %49 - -19: ; preds = %12 - invoke void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(%"class.std::__cxx11::basic_string"* %10, i32* %18) - to label %20 unwind label %53 - -20: ; preds = %19 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %10) #3 - store i32 0, i32* %11, align 4 - br label %21 - -21: ; preds = %58, %20 - %22 = load i32, i32* %11, align 4 - %23 = load i32, i32* %7, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %61 - -25: ; preds = %21 - %26 = load i32, i32* %11, align 4 - %27 = sext i32 %26 to i64 - %28 = getelementptr inbounds i32, i32* %18, i64 %27 - %29 = load i32, i32* %28, align 4 - %30 = sext i32 %29 to i64 - %31 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %32 = icmp eq i64 %30, %31 - br i1 %32, label %33, label %57 - -33: ; preds = %25 - %34 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* getelementptr inbounds ([24 x i8], [24 x i8]* @.str.1, i64 0, i64 0)) - to label %35 unwind label %49 - -35: ; preds = %33 - %36 = load i32, i32* %11, align 4 - %37 = sext i32 %36 to i64 - %38 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %1) #3 - %39 = sub i64 %37, %38 - %40 = sub i64 %39, 1 - %41 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* nonnull dereferenceable(8) %34, i64 %40) - to label %42 unwind label %49 - -42: ; preds = %35 - %43 = invoke nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8) %41, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) - to label %44 unwind label %49 - -44: ; preds = %42 - br label %57 - -45: ; preds = %2 - %46 = landingpad { i8*, i32 } - cleanup - %47 = extractvalue { i8*, i32 } %46, 0 - store i8* %47, i8** %5, align 8 - %48 = extractvalue { i8*, i32 } %46, 1 - store i32 %48, i32* %6, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %4) #3 - br label %64 - -49: ; preds = %42, %35, %33, %12 - %50 = landingpad { i8*, i32 } - cleanup - %51 = extractvalue { i8*, i32 } %50, 0 - store i8* %51, i8** %5, align 8 - %52 = extractvalue { i8*, i32 } %50, 1 - store i32 %52, i32* %6, align 4 - br label %63 - -53: ; preds = %19 - %54 = landingpad { i8*, i32 } - cleanup - %55 = extractvalue { i8*, i32 } %54, 0 - store i8* %55, i8** %5, align 8 - %56 = extractvalue { i8*, i32 } %54, 1 - store i32 %56, i32* %6, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %10) #3 - br label %63 - -57: ; preds = %44, %25 - br label %58 - -58: ; preds = %57 - %59 = load i32, i32* %11, align 4 - %60 = add nsw i32 %59, 1 - store i32 %60, i32* %11, align 4 - br label %21, !llvm.loop !2 - -61: ; preds = %21 - %62 = load i8*, i8** %8, align 8 - call void @llvm.stackrestore(i8* %62) - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %3) #3 - ret void - -63: ; preds = %53, %49 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %3) #3 - br label %64 - -64: ; preds = %63, %45 - %65 = load i8*, i8** %5, align 8 - %66 = load i32, i32* %6, align 4 - %67 = insertvalue { i8*, i32 } undef, i8* %65, 0 - %68 = insertvalue { i8*, i32 } %67, i32 %66, 1 - resume { i8*, i32 } %68 -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EEOS8_RKS8_(%"class.std::__cxx11::basic_string"* noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) #4 comdat { - %4 = alloca i8*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %6 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %7 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %7, i8** %4, align 8 - store %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"** %5, align 8 - store %"class.std::__cxx11::basic_string"* %2, %"class.std::__cxx11::basic_string"** %6, align 8 - %8 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - %9 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %6, align 8 - %10 = call nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %9) - %11 = call nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_referenceIT_E4typeEOS8_(%"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %10) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %11) #3 - ret void -} - -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx1112basic_stringIT_T0_T1_EERKS8_PKS5_(%"class.std::__cxx11::basic_string"* noalias sret(%"class.std::__cxx11::basic_string") align 8 %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %1, i8* %2) #4 comdat personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %4 = alloca i8*, align 8 - %5 = alloca %"class.std::__cxx11::basic_string"*, align 8 - %6 = alloca i8*, align 8 - %7 = alloca i1, align 1 - %8 = alloca i8*, align 8 - %9 = alloca i32, align 4 - %10 = bitcast %"class.std::__cxx11::basic_string"* %0 to i8* - store i8* %10, i8** %4, align 8 - store %"class.std::__cxx11::basic_string"* %1, %"class.std::__cxx11::basic_string"** %5, align 8 - store i8* %2, i8** %6, align 8 - store i1 false, i1* %7, align 1 - %11 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %5, align 8 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %11) - %12 = load i8*, i8** %6, align 8 - %13 = invoke nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i8* %12) - to label %14 unwind label %16 - -14: ; preds = %3 - store i1 true, i1* %7, align 1 - %15 = load i1, i1* %7, align 1 - br i1 %15, label %21, label %20 - -16: ; preds = %3 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %8, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %9, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - br label %22 - -20: ; preds = %14 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - br label %21 - -21: ; preds = %20, %14 - ret void - -22: ; preds = %16 - %23 = load i8*, i8** %8, align 8 - %24 = load i32, i32* %9, align 4 - %25 = insertvalue { i8*, i32 } undef, i8* %23, 0 - %26 = insertvalue { i8*, i32 } %25, i32 %24, 1 - resume { i8*, i32 } %26 -} - -declare dso_local i32 @__gxx_personality_v0(...) - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 - -; Function Attrs: nofree nosync nounwind willreturn -declare i8* @llvm.stacksave() #5 - -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(%"class.std::__cxx11::basic_string"* %0, i32* %1) #4 { - %3 = alloca i32*, align 8 - %4 = alloca i32, align 4 - %5 = alloca i32, align 4 - %6 = alloca i32, align 4 - %7 = alloca i32, align 4 - %8 = alloca i32, align 4 - store i32* %1, i32** %3, align 8 - %9 = call i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0) #3 - %10 = trunc i64 %9 to i32 - store i32 %10, i32* %4, align 4 - store i32 0, i32* %6, align 4 - store i32 0, i32* %5, align 4 - store i32 1, i32* %8, align 4 - br label %11 - -11: ; preds = %115, %2 - %12 = load i32, i32* %8, align 4 - %13 = load i32, i32* %4, align 4 - %14 = icmp slt i32 %12, %13 - br i1 %14, label %15, label %118 - -15: ; preds = %11 - %16 = load i32, i32* %8, align 4 - %17 = load i32, i32* %6, align 4 - %18 = icmp sgt i32 %16, %17 - br i1 %18, label %19, label %54 - -19: ; preds = %15 - %20 = load i32, i32* %8, align 4 - store i32 %20, i32* %6, align 4 - store i32 %20, i32* %5, align 4 - br label %21 - -21: ; preds = %41, %19 - %22 = load i32, i32* %6, align 4 - %23 = load i32, i32* %4, align 4 - %24 = icmp slt i32 %22, %23 - br i1 %24, label %25, label %39 - -25: ; preds = %21 - %26 = load i32, i32* %6, align 4 - %27 = load i32, i32* %5, align 4 - %28 = sub nsw i32 %26, %27 - %29 = sext i32 %28 to i64 - %30 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %29) - %31 = load i8, i8* %30, align 1 - %32 = sext i8 %31 to i32 - %33 = load i32, i32* %6, align 4 - %34 = sext i32 %33 to i64 - %35 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %34) - %36 = load i8, i8* %35, align 1 - %37 = sext i8 %36 to i32 - %38 = icmp eq i32 %32, %37 - br label %39 - -39: ; preds = %25, %21 - %40 = phi i1 [ false, %21 ], [ %38, %25 ] - br i1 %40, label %41, label %44 - -41: ; preds = %39 - %42 = load i32, i32* %6, align 4 - %43 = add nsw i32 %42, 1 - store i32 %43, i32* %6, align 4 - br label %21, !llvm.loop !4 - -44: ; preds = %39 - %45 = load i32, i32* %6, align 4 - %46 = load i32, i32* %5, align 4 - %47 = sub nsw i32 %45, %46 - %48 = load i32*, i32** %3, align 8 - %49 = load i32, i32* %8, align 4 - %50 = sext i32 %49 to i64 - %51 = getelementptr inbounds i32, i32* %48, i64 %50 - store i32 %47, i32* %51, align 4 - %52 = load i32, i32* %6, align 4 - %53 = add nsw i32 %52, -1 - store i32 %53, i32* %6, align 4 - br label %114 - -54: ; preds = %15 - %55 = load i32, i32* %8, align 4 - %56 = load i32, i32* %5, align 4 - %57 = sub nsw i32 %55, %56 - store i32 %57, i32* %7, align 4 - %58 = load i32*, i32** %3, align 8 - %59 = load i32, i32* %7, align 4 - %60 = sext i32 %59 to i64 - %61 = getelementptr inbounds i32, i32* %58, i64 %60 - %62 = load i32, i32* %61, align 4 - %63 = load i32, i32* %6, align 4 - %64 = load i32, i32* %8, align 4 - %65 = sub nsw i32 %63, %64 - %66 = add nsw i32 %65, 1 - %67 = icmp slt i32 %62, %66 - br i1 %67, label %68, label %78 - -68: ; preds = %54 - %69 = load i32*, i32** %3, align 8 - %70 = load i32, i32* %7, align 4 - %71 = sext i32 %70 to i64 - %72 = getelementptr inbounds i32, i32* %69, i64 %71 - %73 = load i32, i32* %72, align 4 - %74 = load i32*, i32** %3, align 8 - %75 = load i32, i32* %8, align 4 - %76 = sext i32 %75 to i64 - %77 = getelementptr inbounds i32, i32* %74, i64 %76 - store i32 %73, i32* %77, align 4 - br label %113 - -78: ; preds = %54 - %79 = load i32, i32* %8, align 4 - store i32 %79, i32* %5, align 4 - br label %80 - -80: ; preds = %100, %78 - %81 = load i32, i32* %6, align 4 - %82 = load i32, i32* %4, align 4 - %83 = icmp slt i32 %81, %82 - br i1 %83, label %84, label %98 - -84: ; preds = %80 - %85 = load i32, i32* %6, align 4 - %86 = load i32, i32* %5, align 4 - %87 = sub nsw i32 %85, %86 - %88 = sext i32 %87 to i64 - %89 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %88) - %90 = load i8, i8* %89, align 1 - %91 = sext i8 %90 to i32 - %92 = load i32, i32* %6, align 4 - %93 = sext i32 %92 to i64 - %94 = call nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %0, i64 %93) - %95 = load i8, i8* %94, align 1 - %96 = sext i8 %95 to i32 - %97 = icmp eq i32 %91, %96 - br label %98 - -98: ; preds = %84, %80 - %99 = phi i1 [ false, %80 ], [ %97, %84 ] - br i1 %99, label %100, label %103 - -100: ; preds = %98 - %101 = load i32, i32* %6, align 4 - %102 = add nsw i32 %101, 1 - store i32 %102, i32* %6, align 4 - br label %80, !llvm.loop !5 - -103: ; preds = %98 - %104 = load i32, i32* %6, align 4 - %105 = load i32, i32* %5, align 4 - %106 = sub nsw i32 %104, %105 - %107 = load i32*, i32** %3, align 8 - %108 = load i32, i32* %8, align 4 - %109 = sext i32 %108 to i64 - %110 = getelementptr inbounds i32, i32* %107, i64 %109 - store i32 %106, i32* %110, align 4 - %111 = load i32, i32* %6, align 4 - %112 = add nsw i32 %111, -1 - store i32 %112, i32* %6, align 4 - br label %113 - -113: ; preds = %103, %68 - br label %114 - -114: ; preds = %113, %44 - br label %115 - -115: ; preds = %114 - %116 = load i32, i32* %8, align 4 - %117 = add nsw i32 %116, 1 - store i32 %117, i32* %8, align 4 - br label %11, !llvm.loop !6 - -118: ; preds = %11 - ret void -} - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8), i8*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* nonnull dereferenceable(8), i64) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* nonnull dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)*) #1 - -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* nonnull align 8 dereferenceable(8)) #1 - -; Function Attrs: nofree nosync nounwind willreturn -declare void @llvm.stackrestore(i8*) #5 - -declare dso_local nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i64) #1 - -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { - %1 = alloca i32, align 4 - %2 = alloca %"class.std::__cxx11::basic_string", align 8 - %3 = alloca %"class.std::allocator", align 1 - %4 = alloca i8*, align 8 - %5 = alloca i32, align 4 - %6 = alloca %"class.std::__cxx11::basic_string", align 8 - %7 = alloca %"class.std::allocator", align 1 - %8 = alloca %"class.std::__cxx11::basic_string", align 8 - %9 = alloca %"class.std::__cxx11::basic_string", align 8 - store i32 0, i32* %1, align 4 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2, i8* getelementptr inbounds ([16 x i8], [16 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %3) - to label %10 unwind label %16 - -10: ; preds = %0 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - call void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str.3, i64 0, i64 0), %"class.std::allocator"* nonnull align 1 dereferenceable(1) %7) - to label %11 unwind label %20 - -11: ; preds = %10 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %2) - to label %12 unwind label %24 - -12: ; preds = %11 - invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %6) - to label %13 unwind label %28 - -13: ; preds = %12 - invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* %8, %"class.std::__cxx11::basic_string"* %9) - to label %14 unwind label %32 - -14: ; preds = %13 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - store i32 0, i32* %1, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - %15 = load i32, i32* %1, align 4 - ret i32 %15 - -16: ; preds = %0 - %17 = landingpad { i8*, i32 } - cleanup - %18 = extractvalue { i8*, i32 } %17, 0 - store i8* %18, i8** %4, align 8 - %19 = extractvalue { i8*, i32 } %17, 1 - store i32 %19, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %3) #3 - br label %39 - -20: ; preds = %10 - %21 = landingpad { i8*, i32 } - cleanup - %22 = extractvalue { i8*, i32 } %21, 0 - store i8* %22, i8** %4, align 8 - %23 = extractvalue { i8*, i32 } %21, 1 - store i32 %23, i32* %5, align 4 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 - br label %38 - -24: ; preds = %11 - %25 = landingpad { i8*, i32 } - cleanup - %26 = extractvalue { i8*, i32 } %25, 0 - store i8* %26, i8** %4, align 8 - %27 = extractvalue { i8*, i32 } %25, 1 - store i32 %27, i32* %5, align 4 - br label %37 - -28: ; preds = %12 - %29 = landingpad { i8*, i32 } - cleanup - %30 = extractvalue { i8*, i32 } %29, 0 - store i8* %30, i8** %4, align 8 - %31 = extractvalue { i8*, i32 } %29, 1 - store i32 %31, i32* %5, align 4 - br label %36 - -32: ; preds = %13 - %33 = landingpad { i8*, i32 } - cleanup - %34 = extractvalue { i8*, i32 } %33, 0 - store i8* %34, i8** %4, align 8 - %35 = extractvalue { i8*, i32 } %33, 1 - store i32 %35, i32* %5, align 4 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %9) #3 - br label %36 - -36: ; preds = %32, %28 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %8) #3 - br label %37 - -37: ; preds = %36, %24 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %6) #3 - br label %38 - -38: ; preds = %37, %20 - call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32) %2) #3 - br label %39 - -39: ; preds = %38, %16 - %40 = load i8*, i8** %4, align 8 - %41 = load i32, i32* %5, align 4 - %42 = insertvalue { i8*, i32 } undef, i8* %40, 0 - %43 = insertvalue { i8*, i32 } %42, i32 %41, 1 - resume { i8*, i32 } %43 -} - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*, %"class.std::allocator"* nonnull align 1 dereferenceable(1)) unnamed_addr #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 - -declare dso_local nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), i8*) #1 - -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_referenceIT_E4typeEOS8_(%"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32) %0) #7 comdat { - %2 = alloca %"class.std::__cxx11::basic_string"*, align 8 - store %"class.std::__cxx11::basic_string"* %0, %"class.std::__cxx11::basic_string"** %2, align 8 - %3 = load %"class.std::__cxx11::basic_string"*, %"class.std::__cxx11::basic_string"** %2, align 8 - ret %"class.std::__cxx11::basic_string"* %3 -} - -declare dso_local nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) #1 - -; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EOS4_(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32), %"class.std::__cxx11::basic_string"* nonnull align 8 dereferenceable(32)) unnamed_addr #2 - -; Function Attrs: noinline uwtable -define internal void @_GLOBAL__sub_I_z_algorithm_linear_time.cpp() #0 section ".text.startup" { - call void @__cxx_global_var_init() - ret void -} - -attributes #0 = { noinline uwtable "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #1 = { "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #2 = { nounwind "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #3 = { nounwind } -attributes #4 = { noinline uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #5 = { nofree nosync nounwind willreturn } -attributes #6 = { noinline norecurse uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } -attributes #7 = { noinline nounwind uwtable mustprogress "disable-tail-calls"="false" "frame-pointer"="all" "less-precise-fpmad"="false" "min-legal-vector-width"="0" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" "unsafe-fp-math"="false" "use-soft-float"="false" } - -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} - -!0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} -!2 = distinct !{!2, !3} -!3 = !{!"llvm.loop.mustprogress"} -!4 = distinct !{!4, !3} -!5 = distinct !{!5, !3} -!6 = distinct !{!6, !3} diff --git a/src/test-suite/index-llvm12.files b/src/test-suite/index-llvm12.files deleted file mode 100644 index 06baf411..00000000 --- a/src/test-suite/index-llvm12.files +++ /dev/null @@ -1,118 +0,0 @@ -PE-benchmarks-llfiles-llvm12/subset-sum.ll -PE-benchmarks-llfiles-llvm12/karatsuba.ll -PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll -PE-benchmarks-llfiles-llvm12/word-wrap.ll -PE-benchmarks-llfiles-llvm12/count-number-binary-strings-without-consecutive-1s.ll -PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll -PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll -PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll -PE-benchmarks-llfiles-llvm12/topological-sorting.ll -PE-benchmarks-llfiles-llvm12/find-minimum-number-of-coins-that-make-a-change.ll -PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll -PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll -PE-benchmarks-llfiles-llvm12/min-cost-path.ll -PE-benchmarks-llfiles-llvm12/box-stacking.ll -PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll -PE-benchmarks-llfiles-llvm12/longest-even-length-substring-sum-first-second-half.ll -PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll -PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll -PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll -PE-benchmarks-llfiles-llvm12/bfs.ll -PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll -PE-benchmarks-llfiles-llvm12/tower-of-hanoi.ll -PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll -PE-benchmarks-llfiles-llvm12/biconnectivity.ll -PE-benchmarks-llfiles-llvm12/find-parity.ll -PE-benchmarks-llfiles-llvm12/the-knights-tour.ll -PE-benchmarks-llfiles-llvm12/coin-change.ll -PE-benchmarks-llfiles-llvm12/magic-square.ll -PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll -PE-benchmarks-llfiles-llvm12/channel-assignment.ll -PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll -PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll -PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll -PE-benchmarks-llfiles-llvm12/dfa-based-division.ll -PE-benchmarks-llfiles-llvm12/count-ways-reach-nth-stair.ll -PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll -PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll -PE-benchmarks-llfiles-llvm12/sort-n-numbers-range-0-n2-1-linear-time.ll -PE-benchmarks-llfiles-llvm12/rotate-bits-of-an-integer.ll -PE-benchmarks-llfiles-llvm12/union-find.ll -PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll -PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll -PE-benchmarks-llfiles-llvm12/trie-suffixes.ll -PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll -PE-benchmarks-llfiles-llvm12/construction-of-lcp-array-from-suffix-array.ll -PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll -PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll -PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll -PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll -PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll -PE-benchmarks-llfiles-llvm12/cut-vertices.ll -PE-benchmarks-llfiles-llvm12/program-wish-womens-day.ll -PE-benchmarks-llfiles-llvm12/naive-algorithm.ll -PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll -PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll -PE-benchmarks-llfiles-llvm12/snake-ladder.ll -PE-benchmarks-llfiles-llvm12/floyd-warshall.ll -PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll -PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll -PE-benchmarks-llfiles-llvm12/dfs.ll -PE-benchmarks-llfiles-llvm12/tug-of-war.ll -PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll -PE-benchmarks-llfiles-llvm12/n-queen-problem.ll -PE-benchmarks-llfiles-llvm12/birthday-paradox.ll -PE-benchmarks-llfiles-llvm12/edit-distance.ll -PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll -PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll -PE-benchmarks-llfiles-llvm12/sudoku.ll -PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll -PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll -PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll -PE-benchmarks-llfiles-llvm12/partition-problem.ll -PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll -PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll -PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll -PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll -PE-benchmarks-llfiles-llvm12/program-for-nth-fibonacci-number.ll -PE-benchmarks-llfiles-llvm12/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll -PE-benchmarks-llfiles-llvm12/graph-coloring.ll -PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll -PE-benchmarks-llfiles-llvm12/ugly-numbers.ll -PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll -PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll -PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll -PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll -PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll -PE-benchmarks-llfiles-llvm12/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll -PE-benchmarks-llfiles-llvm12/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll -PE-benchmarks-llfiles-llvm12/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll -PE-benchmarks-llfiles-llvm12/total-number-of-non-decreasing-numbers-with-n-digits.ll -PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll -PE-benchmarks-llfiles-llvm12/lexicographic-rank-of-a-string.ll -PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll -PE-benchmarks-llfiles-llvm12/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll -PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll -PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll -PE-benchmarks-llfiles-llvm12/maximum-sum-rectangle-in-a-2d-matrix.ll -PE-benchmarks-llfiles-llvm12/collect-maximum-points-in-a-grid-using-two-traversals.ll -PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll -PE-benchmarks-llfiles-llvm12/find-two-non-repeating-element.ll -PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll -PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll -PE-benchmarks-llfiles-llvm12/little-and-big-endian-mystery.ll -PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll -PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll -PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll -PE-benchmarks-llfiles-llvm12/find-k-closest-elements-given-value.ll -PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll -PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll -PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll -PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll -PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll -PE-benchmarks-llfiles-llvm12/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll -PE-benchmarks-llfiles-llvm12/minimum-cost-polygon-triangulation.ll -PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll -PE-benchmarks-llfiles-llvm12/Find_the_closest_pair_from_two_sorted_arrays.ll -PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll -PE-benchmarks-llfiles-llvm12/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll diff --git a/src/test-suite/oracle/FA_llvm12/cyclicCount_ir2vec.txt b/src/test-suite/oracle/FA_llvm12/cyclicCount_ir2vec.txt deleted file mode 100644 index e0bfa360..00000000 --- a/src/test-suite/oracle/FA_llvm12/cyclicCount_ir2vec.txt +++ /dev/null @@ -1,118 +0,0 @@ -PE-benchmarks/subset-sum.cpp 5 -PE-benchmarks/karatsuba.cpp 4 -PE-benchmarks/sort-array-wave-form-2.cpp 2 -PE-benchmarks/word-wrap.cpp 10 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp 2 -PE-benchmarks/binary-insertion-sort.cpp 4 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp 2 -PE-benchmarks/tarjan-algorithm.cpp 11 -PE-benchmarks/topological-sorting.cpp 7 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp 5 -PE-benchmarks/largest-independent-set-problem.cpp 0 -PE-benchmarks/reservoir-sampling.cpp 5 -PE-benchmarks/min-cost-path.cpp 0 -PE-benchmarks/box-stacking.cpp 9 -PE-benchmarks/detect-cycle-in-a-graph.cpp 6 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp 5 -PE-benchmarks/strongly-connected-components.cpp 13 -PE-benchmarks/overlapping-subproblems-property.cpp 1 -PE-benchmarks/count-1s-sorted-binary-array.cpp 0 -PE-benchmarks/bfs.cpp 7 -PE-benchmarks/binomial-coefficient.cpp 3 -PE-benchmarks/tower-of-hanoi.cpp 0 -PE-benchmarks/quicksort-on-singly-linked-list.cpp 7 -PE-benchmarks/biconnectivity.cpp 9 -PE-benchmarks/find-parity.cpp 2 -PE-benchmarks/the-knights-tour.cpp 7 -PE-benchmarks/coin-change.cpp 5 -PE-benchmarks/magic-square.cpp 6 -PE-benchmarks/detect-cycle-undirected-graph.cpp 5 -PE-benchmarks/channel-assignment.cpp 5 -PE-benchmarks/longest-palindrome-substring.cpp 8 -PE-benchmarks/egg-dropping-puzzle.cpp 8 -PE-benchmarks/palindrome-partitioning.cpp 8 -PE-benchmarks/dfa-based-division.cpp 2 -PE-benchmarks/count-ways-reach-nth-stair.cpp 3 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp 6 -PE-benchmarks/eulerian-path-and-circuit.cpp 10 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp 12 -PE-benchmarks/rotate-bits-of-an-integer.cpp 0 -PE-benchmarks/union-find.cpp 1 -PE-benchmarks/longest-increasing-subsequence.cpp 1 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp 4 -PE-benchmarks/trie-suffixes.cpp 3 -PE-benchmarks/m-coloring-problem.cpp 6 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp 28 -PE-benchmarks/weighted-job-scheduling.cpp 17 -PE-benchmarks/euler-circuit-directed-graph.cpp 16 -PE-benchmarks/sieve-of-eratosthenes.cpp 4 -PE-benchmarks/Iterative_QuickSort.cpp 5 -PE-benchmarks/longest-bitonic-subsequence.cpp 9 -PE-benchmarks/cut-vertices.cpp 12 -PE-benchmarks/program-wish-womens-day.cpp 5 -PE-benchmarks/naive-algorithm.cpp 2 -PE-benchmarks/kmp-algorithm.cpp 4 -PE-benchmarks/matrix-chain-multiplication.cpp 6 -PE-benchmarks/snake-ladder.cpp 9 -PE-benchmarks/floyd-warshall.cpp 9 -PE-benchmarks/optimal-binary-search-tree.cpp 8 -PE-benchmarks/bellman-ford-algorithm.cpp 7 -PE-benchmarks/dfs.cpp 4 -PE-benchmarks/tug-of-war.cpp 8 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp 14 -PE-benchmarks/n-queen-problem.cpp 4 -PE-benchmarks/birthday-paradox.cpp 0 -PE-benchmarks/edit-distance.cpp 0 -PE-benchmarks/quicksort-for-linked-list.cpp 4 -PE-benchmarks/mergeSort_LinkedList.cpp 3 -PE-benchmarks/sudoku.cpp 10 -PE-benchmarks/optimized-naive-algorithm.cpp 2 -PE-benchmarks/finite-automata-algorithm.cpp 7 -PE-benchmarks/subset-sum-problem.cpp 7 -PE-benchmarks/partition-problem.cpp 9 -PE-benchmarks/boruvkas-algorithm.cpp 9 -PE-benchmarks/rabin-karp-algorithm.cpp 8 -PE-benchmarks/boolean-parenthesization-problem.cpp 8 -PE-benchmarks/z-algorithm-linear-time.cpp 5 -PE-benchmarks/program-for-nth-fibonacci-number.cpp 2 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp 3 -PE-benchmarks/graph-coloring.cpp 16 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp 14 -PE-benchmarks/ugly-numbers.cpp 3 -PE-benchmarks/longest-palindromic-subsequence.cpp 5 -PE-benchmarks/aho-corasick-algorithm.cpp 17 -PE-benchmarks/shortest-common-supersequence.cpp 3 -PE-benchmarks/boyer-moore-algorithm.cpp 6 -PE-benchmarks/rat-in-a-maze.cpp 2 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp 1 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp 6 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp 4 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp 8 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp 7 -PE-benchmarks/lexicographic-rank-of-a-string.cpp 5 -PE-benchmarks/Nearly_sorted_Algo.cpp 17 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp 10 -PE-benchmarks/maximum-length-chain-of-pairs.cpp 6 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp 6 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp 11 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp 0 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp 7 -PE-benchmarks/find-two-non-repeating-element.cpp 5 -PE-benchmarks/permutations-of-a-given-string.cpp 1 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp 21 -PE-benchmarks/little-and-big-endian-mystery.cpp 1 -PE-benchmarks/cutting-a-rod.cpp 3 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp 9 -PE-benchmarks/transitive-closure-of-a-graph.cpp 9 -PE-benchmarks/find-k-closest-elements-given-value.cpp 7 -PE-benchmarks/mobile-numeric-keypad-problem.cpp 10 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp 3 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp 2 -PE-benchmarks/vertex-cover-problem.cpp 8 -PE-benchmarks/largest-sum-contiguous-subarray.cpp 2 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp 2 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp 5 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp 3 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp 2 -PE-benchmarks/anagram-substring-search-search-permutations.cpp 6 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp 6 diff --git a/src/test-suite/oracle/FA_llvm12/ir2vec.txt b/src/test-suite/oracle/FA_llvm12/ir2vec.txt deleted file mode 100644 index 8505593c..00000000 --- a/src/test-suite/oracle/FA_llvm12/ir2vec.txt +++ /dev/null @@ -1,118 +0,0 @@ --10.452724 6.339599 47.872439 32.787952 -13.972466 -22.228285 -12.146853 -21.595085 20.067532 5.842877 26.886890 0.853850 11.764455 2.215461 -2.197762 -17.052228 11.777650 -4.601079 -5.311917 -10.518342 -1.656267 34.927717 24.605803 -39.157906 3.338093 -39.605187 21.359144 12.047986 14.345312 32.727622 -1.939299 1.867304 0.876843 17.895532 -23.926543 -9.361779 -4.414554 6.996100 -12.063694 -7.935114 19.060741 17.551459 22.627639 3.245597 14.441253 12.339701 13.327538 -6.003157 -20.908239 -9.398574 -13.664771 21.356396 -15.634838 16.213768 -2.871522 18.628511 7.580854 -22.594548 -5.232720 -41.724140 9.402966 17.457044 -12.635628 -3.472371 -23.990304 4.080777 -4.939378 -15.095885 11.364160 -14.923025 16.102327 3.685611 5.453766 -24.540272 -22.240710 14.647548 -0.774591 11.604906 11.493346 5.153067 -14.176518 3.274033 -11.119185 -16.118879 4.433288 -0.512766 1.717302 6.292085 5.819008 -16.324618 3.413763 1.771662 -11.314056 20.587011 -15.448649 19.470317 -4.043016 -6.610920 -6.525691 -5.044256 -4.876381 -23.430996 6.292909 25.810087 -13.438603 7.537276 -1.001136 7.789283 -1.139928 -24.240063 5.919609 -4.680912 -7.022225 22.368324 -17.448930 -10.146491 0.498506 2.803456 2.229392 28.060523 -9.197373 11.181247 20.054619 16.552568 8.341185 -21.348663 9.997922 7.574983 15.393362 12.874744 19.000212 -17.550964 -14.009952 -3.967124 -1.425223 -41.101436 2.744913 14.368481 23.145412 7.927710 -39.620894 17.261647 -13.990701 27.478032 20.350177 17.011858 12.430244 -1.850432 -18.956899 12.343951 47.857545 -16.016817 18.905849 -15.421539 -32.544761 37.607156 -11.209384 23.700345 -6.257122 4.204874 14.294479 -25.133694 4.983091 34.263132 5.172035 10.849728 18.556306 -2.695588 7.762916 -41.969411 -37.773611 -8.700179 11.170693 10.762368 51.175976 -20.108988 -9.555339 -9.963908 23.330498 -9.243035 -8.283227 -0.987449 -7.337259 9.049924 -64.380416 -40.530918 42.685326 39.098331 1.598803 3.588999 25.671183 7.472294 8.497056 -13.620740 -16.066619 16.144051 9.601403 10.740156 5.011097 -1.120579 -24.433047 -8.545313 6.141248 3.135932 15.852931 -28.603216 -16.154048 -3.933850 -33.012026 -22.131091 9.753974 -33.871120 -11.180108 0.767693 1.266355 -2.466829 7.755584 -2.473886 -15.014599 6.932132 -13.912828 -9.553076 2.545624 21.180980 7.106430 20.939291 32.049600 -1.814942 12.638540 13.132577 -15.865602 71.988687 -25.396562 -7.202874 -0.469735 24.460254 1.999818 14.638972 7.631204 -8.290114 -7.037635 -27.351527 20.420389 -0.041996 9.034041 -48.049259 -21.034946 -23.425995 -7.892048 6.624998 27.520074 -0.579046 57.370349 -8.127472 2.147880 -56.934364 -0.624522 26.985490 2.840602 20.152423 19.932582 -22.554769 -44.671683 -6.702845 -10.426218 28.172161 -7.331213 -30.223598 -16.503406 -8.858711 13.509108 -17.147336 18.667152 33.732736 -8.019339 18.293910 3.855935 -6.802581 -9.850708 -12.509370 3.186800 15.025997 -16.373614 29.404752 -7.608083 45.323802 -11.910451 24.483447 -23.200677 12.716166 -8.072167 -16.007096 -11.807893 33.729213 20.174558 8.363168 7.005146 -1.730903 -13.589018 17.737318 -18.738362 101.310216 224.276341 62.075467 -134.072206 -129.428893 -54.285784 -238.729567 89.632817 71.042297 114.829231 -25.349852 59.045166 6.415169 -35.496334 44.819316 79.683900 -6.208413 -27.210370 -89.356249 -150.467681 87.062718 9.905658 -39.554623 83.885768 -165.354769 133.243591 -0.403701 59.628719 68.914755 79.077414 14.158629 -28.299345 102.116813 8.707533 49.943258 12.423792 57.771524 -77.063071 41.916535 52.635185 -18.888051 89.688115 63.000165 102.511320 106.656311 49.738239 8.511940 -105.011125 -11.665608 -50.820934 116.968570 -76.450431 76.338341 -15.724242 31.868248 -8.406929 -116.118725 11.273007 -23.057127 -30.355505 -46.951832 -86.688050 10.573518 -122.920327 2.720222 -60.483730 -94.627917 -14.227026 -2.429869 74.283248 5.674305 -31.574296 -19.476396 -123.387169 35.513571 54.740780 35.369096 111.558975 -4.370454 -1.630258 -21.764119 -105.326828 -135.837415 123.348612 43.612795 45.160649 3.549397 -6.187074 -72.081902 -30.936362 -27.575056 39.594429 143.219766 -130.729498 26.829392 -75.696217 -80.362137 -123.859605 -172.636763 13.987282 -96.963163 75.311608 25.342310 -102.748952 47.236848 21.863616 42.537818 29.742807 -74.278688 -1.361784 -57.977292 38.369940 161.679893 -13.191806 -104.915284 -34.383847 -41.850337 -0.208901 80.090925 41.712654 -6.502247 212.844479 77.210813 104.009718 -79.387992 -21.701772 16.589109 -1.958055 55.961314 98.915186 -140.917993 -82.050807 33.006270 -31.228926 -206.827008 -13.330680 3.811781 89.595535 -54.960916 -83.219066 28.071671 -48.586403 33.510277 61.850679 42.406458 56.544638 -17.698272 -60.747405 25.432657 201.643467 -66.626786 58.758685 -96.719566 -64.957658 106.785386 -20.611250 47.993612 -3.612318 -18.969323 -10.994743 -95.785546 0.990495 151.690893 -3.448631 -26.024877 63.706971 32.187247 -81.937312 -142.147457 -157.732564 -6.240247 98.005480 3.407544 181.539095 -131.516603 -13.363482 -51.744479 145.225008 6.377838 -22.619121 41.868491 -64.470598 58.100350 -112.713227 -163.628942 188.860117 152.664234 38.960723 -54.351563 70.702083 14.053431 -145.411205 -132.414318 -111.641246 44.546394 43.927176 -81.046748 -81.708968 25.185110 -147.986103 5.816769 -2.873544 50.307027 130.685150 -26.308747 15.189305 -11.647893 -88.678281 -122.278432 74.011212 -63.703693 -47.297029 14.510332 31.106695 4.631271 70.898608 -30.354656 -77.776052 -9.035354 -64.916902 -17.709422 69.992851 112.254822 -12.561910 194.997322 134.113968 -39.260765 59.521616 10.230547 -67.411359 190.189050 -40.653650 17.037362 16.355552 67.776809 -33.698666 50.004470 117.687732 -56.371370 -118.301083 -109.798172 1.205135 -32.919350 16.878857 -68.673059 -55.588539 -157.599291 -23.099469 -19.845438 140.790660 19.992208 209.902752 7.098426 44.399439 -192.022705 12.183106 95.713474 -24.474481 99.315321 81.310240 -128.259508 -72.071573 -39.300361 -114.567336 -63.173661 -6.135369 -6.750389 -106.627450 -14.834766 63.947135 -27.866076 25.475406 128.918102 0.099146 70.180529 -20.327861 6.544775 -55.198946 -11.303092 175.781888 9.616292 -82.766716 109.122863 19.247947 281.951052 17.954939 85.821605 -50.142225 -64.720307 21.515720 -73.920400 -95.107231 131.632539 89.048864 78.906476 13.284058 -11.576426 -11.426276 127.523122 --3.114785 3.624932 18.837549 11.700913 -6.607107 -10.426167 -4.267039 -11.275552 7.426367 2.983203 11.158678 -0.027136 5.450489 1.803633 0.121250 -3.967728 5.561142 -0.624274 -1.685636 -4.506239 -1.110674 12.674854 7.564810 -13.554277 1.453347 -13.262964 7.502353 5.774727 5.417055 10.620056 0.290371 0.591981 -0.691597 6.576023 -9.458892 -3.105073 -0.819811 3.579652 -5.965667 -3.056306 5.220342 5.109912 8.251295 0.647169 6.681992 4.641838 6.901848 -1.315074 -7.997994 -3.571554 -5.487987 10.114410 -5.394360 6.957363 -1.190420 5.252438 2.013509 -7.880236 -1.606525 -14.971949 3.652718 5.610909 -5.700847 -1.465956 -9.003527 1.540417 -1.073165 -7.178802 3.678553 -4.383292 6.491896 0.190264 1.534759 -8.337934 -10.732821 4.379522 0.059710 4.282575 4.700161 1.721550 -4.117346 0.058998 -4.945148 -6.977069 3.186247 1.644548 1.267304 2.528185 -0.440270 -4.791109 0.890181 0.014727 -3.470984 8.478765 -6.916307 7.725586 -1.418210 -2.587947 -4.538342 -4.047023 -0.814338 -8.892681 3.166554 7.701681 -3.263344 3.009957 -0.936350 3.654220 -1.192608 -9.802323 2.251812 -2.551666 -2.516839 8.825828 -6.362474 -3.843249 0.549244 0.377050 0.422779 9.977470 -2.166281 4.117435 8.394003 6.699243 3.822319 -8.787692 2.170734 3.195965 6.118503 6.165621 6.838077 -7.806649 -5.435405 -0.315012 -2.708724 -16.421639 0.789103 6.744522 9.533044 1.270132 -13.970101 5.508339 -5.587047 10.526481 7.898662 7.613339 4.238384 -0.170249 -7.021540 3.571814 18.163122 -6.297290 8.028827 -4.749701 -9.965841 12.332689 -3.565045 8.838018 -0.836372 1.109232 4.070981 -9.134118 0.344545 13.249810 3.995305 4.108821 6.338422 -0.187810 -0.750063 -16.277643 -15.019440 -3.946305 5.899916 3.282578 19.285386 -8.348085 -5.624159 -3.238463 9.316345 -4.470014 -4.228871 0.556201 -3.766131 4.305066 -22.564065 -15.290476 16.196411 14.856034 2.041831 0.045011 10.773629 2.352285 -0.298913 -6.752725 -5.684705 6.059883 2.603702 1.202074 0.556631 -0.045510 -11.335433 -2.243652 1.526342 1.950647 5.010054 -7.207100 -3.031412 -0.854968 -12.138593 -7.741676 3.312166 -11.332839 -4.322312 0.002978 1.219622 -0.381279 2.660489 -2.566070 -5.678224 3.556911 -6.807232 -2.832611 1.527192 7.414942 2.861306 11.418037 12.170322 -0.399250 7.017030 3.555105 -7.001805 26.390868 -8.604347 -1.907379 -0.423566 9.035335 -0.422274 5.002314 4.536559 -3.634090 -4.550961 -11.191398 5.214324 0.308569 4.523177 -15.255184 -8.355924 -9.703620 -2.458137 2.175369 12.009614 -1.154055 21.366039 -3.275059 2.860011 -22.643111 0.650233 8.499066 -0.402087 6.747838 7.403864 -9.130079 -16.502537 -1.839740 -4.931513 5.465522 -2.061735 -11.111836 -6.526212 -4.239042 3.883086 -6.840497 5.016630 12.337619 -3.211391 7.782510 0.561042 -2.338271 -2.875235 -3.349634 4.618332 4.614665 -7.683668 10.947699 -1.921362 22.228841 -3.383275 9.728559 -7.978158 3.746410 -2.574035 -6.018041 -4.932777 13.495705 8.860859 4.084085 2.018831 -0.135351 -4.894501 6.944054 --7.943787 11.483518 58.709272 36.857731 -17.172973 -28.585264 -12.844723 -26.843105 16.927488 9.084112 30.965769 -3.829868 10.300293 11.905883 0.926611 -12.493758 9.358191 -0.387103 -0.866551 -9.612098 -8.780026 31.815193 30.262288 -40.109140 0.992900 -39.337967 23.949092 16.915891 18.360321 27.291380 0.087334 2.013630 2.327108 20.117790 -30.191199 -11.240302 -10.574928 11.377677 -13.358717 -3.891652 14.855061 18.937223 16.213342 1.931839 17.164513 16.796338 26.310150 -7.038582 -24.335251 -7.145609 -19.657703 35.340944 -17.709029 14.505144 0.073212 20.931439 1.779795 -26.982081 -7.958137 -45.727525 12.628137 21.421739 -21.769755 0.235480 -31.885708 6.136541 -11.902687 -18.157490 13.285268 -2.891336 19.186471 1.405271 5.679300 -26.100758 -26.518506 17.243912 -4.999714 12.092117 11.544873 -0.275462 -13.994328 9.611894 -10.490425 -19.570360 5.286468 0.719386 0.018599 -2.349423 9.712242 -16.778763 -0.962706 -0.549717 -17.830838 27.534247 -22.059594 32.239424 -8.062817 -5.443250 -14.456247 -10.655612 -7.104689 -31.807582 10.027395 27.534858 -9.698798 7.266839 -4.806069 9.628633 0.868595 -34.200412 -0.912915 -5.035587 -2.742337 24.018980 -22.409009 -4.963758 5.351756 3.935857 0.844063 29.118540 -4.665354 14.553941 25.830526 18.306672 5.679694 -21.026639 10.600783 7.777066 13.734404 19.444381 21.767851 -25.361500 -17.031811 -8.067642 4.389632 -46.697728 9.731085 21.625304 16.728740 7.227311 -41.508368 11.196170 -12.206578 31.200886 22.477932 27.156706 12.201237 -3.619270 -12.822656 10.239156 55.442263 -19.660640 20.796040 -10.912121 -37.630406 42.414462 -16.495141 29.574620 0.316419 10.344645 16.388742 -31.976038 -4.329454 38.499592 11.614567 11.487542 33.108842 -5.060934 8.945558 -44.968385 -34.392245 -4.589541 8.789358 3.831805 55.764388 -21.296150 -12.932870 -7.053005 26.569110 -6.882198 -8.490834 -4.718222 -5.215240 7.779340 -66.964411 -45.467579 34.701993 37.388086 -1.497649 -3.616683 32.762783 11.299916 0.621172 -21.583159 -21.560616 20.845892 1.081068 16.626372 4.814252 -0.243562 -33.339608 0.194871 3.589153 4.485512 21.163832 -26.876540 -23.226370 -1.217902 -41.952060 -22.646247 7.566981 -33.156807 -14.619900 -4.404914 4.440073 -2.030629 3.900283 -9.387754 -16.485638 10.438325 -19.947785 -10.549181 8.304825 21.341813 7.723909 40.263399 28.756142 5.323848 15.543374 14.010188 -16.018167 83.966572 -20.738692 -10.401858 -1.603319 26.410147 -8.363427 13.265354 6.854086 -8.322841 -21.446934 -29.085018 22.402519 -4.017911 9.452950 -42.927261 -20.884279 -25.605040 -11.358693 13.627800 34.401461 1.881187 61.668669 -4.380740 6.422404 -58.816252 1.221933 24.488470 -3.617007 27.325334 23.876110 -28.161324 -42.188911 -8.822451 -4.170647 29.212729 -5.746461 -35.822714 -20.031853 -7.487053 5.673833 -15.891518 17.985016 34.177821 -8.263555 17.359318 9.621366 -8.627012 -4.552918 -10.423942 14.413660 16.809427 -25.731725 36.777002 -11.477284 65.169134 -14.337774 27.680163 -26.215865 2.682268 -4.682815 -6.105617 -10.080878 38.107908 24.044284 13.814337 2.926266 1.308511 -18.608895 14.247799 -0.553833 3.439544 11.042959 6.990940 -3.525110 -6.022963 -1.719471 -6.536106 2.952611 0.998560 5.104773 -0.644560 2.535737 2.913666 0.071380 -1.016171 3.234296 1.192430 0.605959 -2.023966 -2.070509 6.626064 2.956915 -6.972443 0.378129 -7.177791 5.203153 3.640357 3.766877 5.505413 1.160345 0.337376 0.061450 3.262770 -5.476142 -3.382440 -1.425393 2.065153 -4.361413 -0.448408 1.348875 2.481691 4.126085 1.045154 1.657865 2.915453 5.376258 0.168330 -2.847952 -0.161611 -5.458553 7.041242 -2.098478 3.081268 -1.532418 2.295985 1.593861 -3.697239 -0.774742 -6.758265 1.246081 3.619840 -3.776091 -0.507257 -5.833544 0.679576 -2.588649 -4.316070 1.752594 1.411997 3.580065 0.496476 1.496840 -5.437724 -7.803241 2.375743 -1.142453 2.981862 2.723254 0.128408 -1.707686 1.554798 -3.339031 -3.978305 2.484955 0.867135 0.454971 -0.215898 0.619518 -3.613948 -1.245735 0.043523 -2.220937 4.467632 -3.082008 6.445039 -3.416204 -0.459113 -2.648077 -3.252517 -0.981987 -4.901788 1.724510 3.355571 -0.369040 1.571615 -0.846281 1.806891 0.301581 -5.695508 0.862936 -1.682530 -2.081383 5.163941 -2.828197 -2.119868 1.057527 0.299481 -0.427450 5.440089 -1.017782 2.235172 3.848687 3.501906 1.076756 -3.556545 1.595526 1.547155 1.494493 3.849586 4.226652 -4.087626 -3.315684 -1.257480 0.133388 -9.120001 2.651300 4.653469 3.212420 -0.455463 -6.501906 1.492407 -3.300661 5.731893 4.378214 5.321442 2.897154 -0.345170 -1.922772 2.046189 10.741781 -3.478606 4.487502 -3.099277 -4.823350 6.536367 -1.877959 5.202976 -1.305382 1.031259 2.662456 -4.615042 -0.962100 7.201383 2.750127 0.703168 6.733986 -0.728067 -0.459239 -8.293588 -6.564331 -0.608224 3.538277 0.269360 10.733022 -4.052916 -2.739616 -0.862374 3.485527 -2.303074 -1.720018 0.403754 -1.356753 1.900025 -12.814214 -8.325117 7.491120 4.938351 -0.749492 -1.898071 5.255434 1.932670 -0.962879 -5.728072 -3.447878 3.138386 -0.002199 0.352919 -0.326910 0.209077 -6.513222 0.689792 1.619536 1.133568 4.731519 -3.836303 -2.834791 -1.634143 -8.188290 -4.734388 2.786570 -6.706174 -3.215007 0.502464 0.355342 -0.628917 1.058464 -0.701517 -2.723041 2.691880 -4.200903 -2.142864 0.692519 3.641444 0.200178 7.928734 6.863979 1.699211 3.719245 3.221720 -4.013606 15.703879 -3.677251 -1.234241 -0.208042 4.307421 -2.044006 2.616999 2.478420 -1.678865 -5.492027 -6.266900 3.479562 -0.520346 2.020509 -6.876358 -2.935854 -4.375764 -1.897961 1.727164 7.184371 -0.297709 11.437170 -1.451544 1.507972 -10.847684 0.676213 4.399482 -0.441945 4.680567 4.247375 -5.225661 -5.622807 -1.225574 -2.011793 4.215996 -0.966827 -7.117357 -4.140182 -1.419176 -0.827165 -3.552310 3.026619 7.336455 -3.091933 3.905334 -0.657943 -1.524425 -0.753425 -1.243669 4.419863 2.469825 -4.778147 6.395923 -2.306082 13.916019 -1.552703 4.535185 -4.503297 -0.089120 -0.533697 -1.533702 -2.333779 7.393333 4.156213 2.578639 1.516066 0.363441 -1.886205 3.168505 --4.696074 6.102546 29.285078 19.423483 -10.170164 -15.387645 -7.966026 -14.578377 10.296556 2.744695 16.346652 -2.064457 5.515598 3.748591 -1.678883 -9.125578 6.310772 -1.812806 -2.950503 -6.750858 -6.570964 19.695260 13.396210 -22.686078 2.305809 -23.696851 15.124648 8.296987 6.968421 18.280813 -0.724151 1.499237 0.668291 11.403541 -14.610478 -6.102519 -2.430621 4.436626 -6.248340 -2.650567 11.733469 9.669432 13.926187 1.814972 7.664395 10.883170 8.361199 -2.533689 -13.371331 -4.386784 -8.329545 13.404408 -8.556719 9.362834 -1.315306 11.026363 5.841291 -15.290054 -2.837463 -23.045999 4.185162 8.752507 -8.867986 -1.468267 -15.545137 2.272428 -3.507494 -10.251776 7.795265 -6.684984 9.331715 0.869687 1.433908 -14.057270 -12.531263 9.244704 1.019439 7.371384 6.714669 0.959117 -6.712532 3.427005 -8.962970 -10.423714 2.551491 -0.744654 2.833243 2.413541 4.428185 -9.987873 2.467144 0.427647 -5.906458 14.022080 -7.578290 12.016947 -4.159034 -5.050100 -9.086360 -6.595203 -2.407667 -13.817670 5.254327 15.285540 -10.131894 4.138797 0.410683 4.514895 0.866800 -16.374023 1.763794 -5.098641 -1.207082 13.937783 -9.335073 -6.850584 0.443583 -0.350313 0.723107 17.051411 -4.768160 5.477899 13.621637 10.372639 4.206636 -12.329246 4.537738 2.005575 7.327915 7.757777 12.431944 -12.592601 -8.934212 -2.689173 -0.979643 -25.130127 2.147004 7.290022 13.272867 2.786197 -22.608086 11.719755 -8.722790 15.974094 11.269653 11.710429 6.488678 -2.490972 -11.008031 7.345014 29.047410 -9.568194 11.568053 -10.273203 -20.810102 22.836618 -5.193444 13.698795 -1.771204 1.932979 7.016232 -14.707272 2.908809 20.705207 3.353385 4.729098 14.491918 -1.947919 3.573145 -24.425424 -22.140254 -2.163288 7.753948 4.878750 32.110426 -13.646850 -5.852251 -5.334358 15.510254 -5.887738 -4.663068 -0.762413 -3.778941 5.308002 -37.274349 -25.328407 24.309959 21.499598 -0.083701 1.169218 15.801876 3.667320 4.064958 -9.856525 -11.343075 10.250265 5.484682 6.866674 1.955712 -0.831632 -14.969717 -2.426140 3.072062 3.254254 11.692618 -17.450902 -10.928990 -5.183341 -20.936416 -14.994069 5.365148 -19.669346 -6.075090 1.984254 0.674948 -2.357474 4.873161 -0.752676 -9.951760 2.172243 -8.881223 -4.865991 2.562994 12.375181 3.004906 17.022178 18.780763 -1.301842 8.465460 7.834725 -8.136860 44.412746 -14.476155 -3.260852 0.340078 15.934002 -0.237999 8.469599 7.027981 -4.615448 -6.363463 -16.603641 12.416246 -1.303514 4.344291 -28.997201 -11.748064 -17.440643 -5.664753 4.191389 17.964213 0.017883 34.346154 -2.440987 1.329068 -33.974305 -0.195012 15.197100 0.631573 11.923325 11.676598 -14.868299 -25.422232 -3.545204 -6.918749 14.419670 -4.409914 -17.596848 -11.060880 -3.686018 4.422790 -8.991655 10.986438 21.184249 -4.162810 8.121307 2.196431 -4.512514 -4.939163 -8.670314 6.364756 6.803402 -9.933453 17.998750 -3.906908 30.038064 -5.912490 14.958300 -12.974559 5.495964 -2.193780 -8.396841 -7.112468 19.612012 11.240878 5.092436 3.811287 0.319426 -7.481511 10.978203 --4.783932 8.608772 36.656715 24.831660 -11.110045 -18.705418 -7.779126 -19.499213 14.502849 4.716923 19.563666 0.216773 11.328609 3.101249 -1.577957 -9.163758 12.779268 -2.079359 -1.028800 -8.380964 -3.039899 29.607208 14.057190 -28.054396 1.817724 -29.939275 19.914784 10.774021 12.374558 23.857638 0.746963 2.552244 2.269720 13.929930 -18.861875 -9.812286 -3.919255 8.043317 -11.149144 -5.822609 12.131031 12.008665 18.259691 3.258004 8.163507 10.626300 14.082534 -2.898106 -13.255726 -5.428037 -14.052993 16.706412 -10.874792 13.182983 -6.168384 9.562829 9.149177 -14.751574 -2.398335 -27.997410 5.645363 12.900138 -10.984971 -3.159825 -20.087593 2.953469 -4.179472 -14.215337 6.395227 -4.084488 12.641171 4.668668 5.216962 -20.287785 -23.419981 11.635468 -0.295285 9.478042 9.957880 2.984279 -10.009749 2.380002 -12.183060 -15.333048 7.838573 3.232587 3.175357 4.619091 2.915913 -13.136142 -0.835529 1.757593 -8.753386 17.223336 -8.660380 17.312792 -4.473095 -3.860267 -7.001098 -7.361797 -4.449787 -18.941135 4.687904 18.016168 -6.753521 5.971119 -1.721052 5.354850 -1.261030 -18.473975 4.806539 -7.200671 -7.170099 17.535709 -10.457454 -8.252064 0.146107 2.149266 2.611117 21.362416 -6.939157 8.152075 17.953692 13.126175 5.161306 -16.346242 7.172917 5.802898 9.895829 10.602563 15.514780 -15.131948 -12.632362 -3.364481 -1.662158 -31.110219 3.864133 14.058260 16.544595 -0.657548 -29.310068 15.181150 -11.277312 20.909701 18.351038 13.897653 10.392290 -0.227999 -12.112637 10.231278 37.457276 -12.748790 14.334735 -14.726389 -21.802461 29.594030 -6.762027 18.290209 -5.420336 2.606785 7.226578 -18.739248 4.489706 27.545902 5.151668 6.812391 18.106740 -2.768980 4.361204 -31.321401 -27.946458 -5.543946 11.178686 7.631683 43.306434 -16.209051 -7.417254 -4.983267 13.015597 -7.006505 -6.262818 0.435186 -6.050748 7.515111 -50.977157 -32.398893 33.147290 23.769888 0.102684 0.230352 18.494926 5.843751 5.540501 -14.612812 -11.703857 13.524480 5.405752 4.344532 2.097693 2.121388 -21.301446 -4.805359 4.646122 2.850206 15.579504 -19.805882 -10.902817 -8.192240 -27.572982 -18.014142 8.736692 -24.914018 -10.458325 1.126392 0.759797 -1.473490 6.183927 0.293515 -10.731618 5.799987 -11.201198 -9.179896 0.706176 16.335888 3.994857 18.290406 27.767465 -0.331041 9.336440 11.220916 -12.688145 54.143376 -17.129227 -6.006857 0.008497 18.716739 0.104224 11.960404 9.670317 -6.263970 -8.753563 -24.418547 16.547652 1.252064 5.739397 -34.811505 -11.096137 -19.014846 -6.303595 4.833279 26.478870 -1.876091 43.971124 -6.919939 2.268346 -42.799520 0.892239 17.057697 2.023637 14.941995 16.438191 -18.491442 -25.987968 -5.586906 -9.078314 15.934022 -4.991001 -23.463638 -14.903009 -5.451035 3.743473 -15.067533 12.888533 27.745828 -7.789335 13.944803 0.306618 -4.765975 -8.084062 -7.359752 8.247488 10.178534 -12.686592 21.825220 -7.628899 39.073024 -8.602964 18.920755 -18.079187 8.025246 -4.421849 -13.379856 -9.858259 28.237326 13.267460 5.756299 8.763916 -1.073610 -6.608193 17.092013 --79.485957 48.796012 319.595392 139.943361 -141.828740 -232.058404 -78.519075 -346.115293 183.912702 106.956902 280.162641 12.046206 181.308085 -73.822882 5.314285 -11.311173 166.314421 -37.514602 11.896798 -105.025791 -34.453636 295.984012 74.714875 -91.533980 51.320663 -226.208037 144.498069 69.693921 133.660998 200.491215 53.878233 6.718137 -61.260598 96.067049 -59.332245 50.124564 12.875225 97.974964 -130.943185 -47.528664 47.972348 -58.951109 183.444810 26.038010 194.766451 8.499594 109.959839 -16.780022 -160.927782 -111.013347 -91.196556 157.966866 -135.664208 118.626631 -15.302033 -32.999191 45.248206 -43.231217 -5.570518 -216.459997 21.913400 -49.707701 -113.097454 -2.887838 -149.909224 50.789893 -101.481236 -107.186146 -3.026621 -106.427217 118.307919 28.459995 31.735861 -21.243011 -289.233253 53.905483 53.887527 37.209925 130.126614 78.548370 -47.364523 -66.864165 -137.144585 -182.402461 182.500364 96.457898 43.722260 70.632882 -157.784398 -27.305371 -6.342006 11.158055 30.032142 140.825499 -189.357164 69.149015 -0.635459 -85.513025 -68.903134 -227.092172 22.521531 -160.534010 50.518288 90.567755 -62.968140 19.897714 -103.771692 65.011861 -87.002382 -180.140508 86.008655 -93.455979 -66.961439 215.378176 -128.008556 -81.322995 -100.643723 4.909092 50.958725 148.010288 20.109629 84.349313 163.219788 132.770484 128.164607 -183.502209 -21.437859 115.070857 137.354413 81.807824 66.638975 -116.285896 -114.083308 62.186119 -129.808762 -330.153513 -109.760986 146.204519 205.293468 2.883058 -157.705828 63.291982 -105.321769 171.354116 204.082514 82.961017 63.552192 45.332276 -168.792053 79.921341 273.065276 -114.250524 155.516983 -53.102928 -122.849155 208.163815 -95.345991 115.983946 -13.755386 -1.440634 -3.279226 -137.389229 -2.528056 237.322787 63.421446 83.839647 -25.512387 60.475959 -73.754755 -273.462849 -356.063681 -64.577820 235.234323 116.800957 287.608789 -177.601707 -91.303577 -3.438674 180.851206 -23.948294 -147.939789 63.803074 -115.140103 110.226921 -425.931674 -292.263110 379.676945 307.599060 124.500936 0.376172 135.204093 104.184415 -147.561619 -133.055834 -127.333503 123.066498 12.895596 -198.514843 -74.234037 40.013036 -245.114954 -76.216213 -2.468501 43.703501 70.933780 -63.017492 106.347112 -23.263796 -110.581089 -97.391014 129.331778 -134.245345 -114.635787 -36.212855 6.431530 48.651487 89.996031 -65.161451 -29.252291 60.606167 -164.276067 -45.074848 30.450057 130.614847 54.140089 297.919089 298.265683 -56.524786 87.066985 -12.424082 -156.480760 355.746561 -147.377058 3.694887 -14.020283 110.377369 46.524667 90.983914 169.181943 -90.798273 -128.694035 -224.850267 -20.872204 55.515352 127.733025 -178.597263 -216.905235 -272.753624 16.623872 14.626489 267.595411 -18.721904 402.773466 -110.108935 67.475138 -388.579400 22.394960 138.655875 -30.163005 166.770955 85.103375 -159.092978 -195.841377 -66.184469 -182.951678 -20.838175 -20.408091 -126.007593 -117.968544 -122.909879 147.219065 -157.583758 50.521995 118.840719 -28.543300 221.924310 34.365971 -25.511624 -141.106355 48.300954 132.007720 48.995968 -141.653544 204.997722 25.658579 451.245292 -54.687245 126.637303 -112.726915 101.313976 -74.371699 -178.770729 -95.014444 255.721494 263.348177 86.713985 -4.224393 6.688103 -45.755139 162.897040 --84.563092 38.721798 279.776170 114.938475 -126.903307 -206.942004 -71.047934 -314.209519 162.955716 101.033587 258.490863 5.882945 170.006064 -79.847414 6.101785 -10.681192 157.104062 -42.461292 17.656520 -94.204887 -25.378775 260.799620 58.084508 -63.554206 45.960881 -193.461661 130.225732 55.191213 111.843984 180.658491 54.497803 3.644658 -61.414863 81.804500 -37.163139 63.743612 25.620900 92.360766 -111.629541 -43.082758 34.254065 -67.967834 163.567645 17.620788 181.888440 5.044767 89.841298 -14.518280 -152.934244 -107.472126 -74.067942 129.853919 -129.927963 101.336759 -5.697161 -46.339307 44.942927 -29.460623 -5.033078 -194.852343 15.088141 -62.922820 -96.545790 1.168317 -129.013846 48.040613 -93.459734 -90.814236 -7.062872 -101.481266 101.136653 30.687890 35.669068 7.518573 -252.705379 49.834146 57.478313 28.003678 118.184842 70.631198 -35.831089 -67.101487 -120.980594 -166.129520 170.646072 87.596038 47.392177 67.433254 -155.028778 -7.008265 -4.445455 11.424984 34.970271 121.313535 -163.303144 47.772174 6.131408 -79.952134 -59.158410 -216.939059 22.970093 -142.474756 42.994644 87.812886 -61.955690 10.951920 -112.660738 60.195510 -90.155760 -158.306313 86.504598 -94.708604 -60.485380 189.854009 -122.798097 -70.173214 -104.318039 4.084235 60.159514 126.560806 20.391123 77.963139 135.988111 118.089353 124.615517 -169.469091 -27.669324 104.927528 132.086642 66.291612 52.359216 -101.400779 -100.590591 61.026584 -133.352103 -291.887494 -115.619667 126.534257 186.722379 7.588935 -138.498215 56.129430 -95.948244 152.382564 184.937186 73.385476 51.742100 48.977561 -155.747691 69.568557 222.819938 -102.958580 142.296548 -36.130855 -100.724347 174.337752 -81.092519 96.445167 -8.119225 -3.797008 -9.233856 -121.268587 -5.047248 208.255125 64.262425 83.427181 -45.078249 61.279906 -68.950866 -242.766381 -323.084909 -53.584972 227.011618 105.304433 243.329620 -162.921993 -84.483539 5.547062 166.312942 -18.704108 -142.919888 56.270312 -102.366995 102.465393 -377.687495 -261.792203 345.925394 273.135401 120.600529 3.988034 109.302034 96.084680 -150.863802 -110.373464 -114.963374 111.673528 -0.430691 -199.337700 -74.869747 41.276166 -218.441219 -73.803939 -5.742601 41.366314 57.577953 -50.067525 106.014525 -15.026619 -80.439275 -74.837030 118.234290 -110.083853 -108.875913 -36.419917 4.760541 58.452877 83.817381 -61.185123 -18.432653 55.149578 -153.609835 -44.123489 27.899044 118.820810 52.673345 275.454319 269.607330 -56.729005 68.293141 -21.188200 -142.087442 297.153108 -128.145836 7.382461 -14.861812 95.840827 54.702241 77.337852 165.042782 -84.250890 -120.385409 -203.339946 -37.881434 56.637453 121.176669 -151.029347 -203.460480 -251.741319 27.240834 11.680966 241.264375 -18.215117 356.043561 -97.034829 59.451369 -336.503165 18.868344 122.894212 -29.675258 147.357503 70.138962 -138.812486 -171.507726 -61.871391 -175.848535 -32.997675 -16.961366 -98.745373 -99.522959 -114.598511 144.275618 -136.439093 36.658120 91.563976 -16.455775 203.748787 49.331448 -21.446920 -133.251961 51.204189 115.754384 39.533724 -124.519994 188.821651 34.363540 403.654028 -47.854256 100.590947 -96.310924 96.488972 -66.510697 -161.343000 -84.101259 227.427756 245.615793 78.030053 -7.611390 8.649537 -39.758969 151.334465 --1.674463 4.263670 17.033763 10.621507 -7.823760 -10.734216 -4.365872 -10.489720 5.480695 2.163904 9.271061 -1.757439 3.274682 3.093060 -0.550172 -3.614353 4.090707 0.251897 -1.566176 -4.159083 -5.622212 9.416837 6.109066 -11.545699 1.791115 -11.897348 7.881548 5.511801 4.072086 8.535876 0.359115 0.266378 -1.163513 6.100847 -8.287951 -2.977848 -0.555464 2.612914 -5.259522 -1.131575 4.830824 3.569907 7.872355 0.193061 5.315493 5.669619 5.176508 -0.443058 -8.762059 -2.318122 -4.370599 9.051803 -4.108345 5.781768 0.212512 5.302434 1.610207 -8.490866 -1.437513 -11.496521 2.645622 3.452532 -5.421930 -0.540806 -8.925925 0.835594 -2.514933 -6.998073 4.620619 -3.493541 5.059011 -0.507716 0.358711 -6.809985 -8.351019 4.147605 1.231184 4.100339 3.982016 0.796164 -2.088502 1.405818 -5.528719 -5.968525 1.837518 1.087071 1.890136 1.178428 -0.360658 -5.168782 2.132416 -0.459463 -2.215310 7.813025 -5.716089 6.355268 -3.648204 -2.887777 -6.903361 -6.694116 -0.645637 -7.099222 4.055809 6.769172 -5.062792 2.589012 0.440341 3.524979 0.593185 -9.857369 0.593760 -3.441823 0.358460 8.807931 -5.137556 -4.457173 0.176313 -0.959230 -0.641885 8.468180 -1.642868 2.412485 7.966519 5.943451 3.454413 -7.240375 1.178333 1.468694 3.747307 5.403979 6.751657 -7.503877 -4.456464 -0.596145 -2.158880 -15.012723 0.753332 3.747075 7.585749 1.124676 -11.169008 4.064999 -5.270497 8.811833 5.193338 7.481401 3.460459 -1.113128 -5.535637 2.890145 15.439560 -5.310830 6.887874 -4.691891 -10.436675 10.338613 -1.905284 7.641932 -0.045197 0.428596 3.542996 -7.914526 0.513750 11.330992 2.614561 1.924719 6.954936 -0.287862 -1.605228 -13.772008 -12.885206 -0.346043 5.340279 1.917617 17.237566 -8.722114 -5.188107 -2.964228 10.022474 -3.452243 -3.120330 0.690964 -2.827042 3.697018 -18.908680 -14.144681 12.775751 12.643484 1.045801 -0.829047 9.755850 1.039765 -1.655438 -6.475781 -6.823752 5.015148 2.489362 1.619882 -0.164915 -0.272544 -9.906001 -0.065884 1.539120 2.456352 6.633887 -7.249874 -3.925930 -2.427296 -11.364982 -7.854716 3.716734 -10.304818 -2.618264 1.012470 0.879899 -0.859177 3.113967 -2.188903 -6.293198 1.688535 -5.783625 -1.549313 1.903970 6.589302 1.432225 13.207044 10.830892 -0.407566 6.761685 3.222773 -5.377651 24.802265 -7.647283 -0.828212 -0.126813 8.178662 -1.674456 3.873094 5.310723 -3.145558 -5.253698 -9.137708 4.114600 -0.996138 3.161764 -14.007460 -7.132022 -11.077104 -2.825328 1.513275 10.457528 0.148120 18.167618 -1.397736 2.102722 -19.217188 0.250644 7.707772 -0.653380 6.734734 6.082941 -8.722475 -14.464286 -1.277916 -4.943556 5.344490 -1.747807 -9.756059 -5.989999 -2.631942 2.310969 -3.815198 4.625641 11.794942 -2.805229 5.306053 0.774884 -2.232973 -1.596903 -4.234995 5.979260 2.794010 -6.630903 10.941713 -1.014830 21.157290 -1.516774 7.949397 -6.285405 1.461006 -0.558307 -4.662553 -4.551534 10.784194 7.006097 4.220963 0.805703 0.629167 -4.777619 5.510589 --11.135289 2.110807 43.112449 24.614692 -15.870922 -31.773832 -13.140785 -43.124648 25.715931 10.751083 39.978370 -0.671626 21.297176 -10.289836 2.001734 -3.692769 20.780371 -8.825424 -2.446421 -14.220050 -3.288371 44.318840 14.272701 -20.354776 6.050302 -35.040796 14.264521 14.345774 15.985037 26.941780 4.270841 0.263759 -2.019509 13.207156 -16.980068 5.448824 0.583866 8.875387 -18.378290 -9.696889 11.113544 1.603285 28.251246 -2.072901 24.604797 0.417802 21.123528 -3.989172 -23.614306 -15.156746 -15.155348 29.099341 -16.863004 14.674626 -1.926268 1.995775 9.205601 -14.823875 -6.245645 -31.075367 2.834653 4.359297 -17.169992 -2.751488 -18.853186 7.638458 -6.201396 -13.143822 8.739632 -16.341097 16.979748 3.669050 1.463262 -9.881663 -32.455087 10.994692 7.400211 7.027726 12.452035 8.926783 -3.712033 -5.467020 -15.826936 -19.242113 23.472021 9.094907 7.406443 9.472923 -17.213198 -4.938404 0.482018 1.352232 0.635356 16.106432 -23.531940 8.519328 3.868408 -13.858476 -13.417999 -18.593901 1.525084 -22.188847 6.870619 19.374385 -9.109567 7.447187 -10.086688 8.375737 -12.939227 -27.943798 6.744903 -9.838173 -7.499550 30.435599 -22.246379 -11.110716 -11.874647 3.340731 1.105934 22.167470 -0.925849 13.858202 24.917017 19.352863 14.537001 -26.334803 -0.593501 11.166770 24.235521 12.587240 12.087785 -16.468648 -15.823498 3.789836 -15.321053 -47.565909 -15.499371 18.661628 31.200840 5.823618 -30.755293 15.801358 -11.391033 31.357615 25.746914 8.295833 8.695975 4.997476 -25.374199 14.639855 40.359970 -16.764718 23.941830 -13.680620 -22.950713 30.348051 -12.028310 15.950609 1.718256 0.106946 2.941275 -21.748362 4.029033 32.203890 9.088829 12.666317 -2.513948 7.327007 -2.561971 -40.669488 -51.783621 -7.343696 21.322812 13.851080 46.842664 -23.859116 -18.218644 -4.388978 25.000010 -10.675586 -19.889683 7.125140 -19.690894 14.336582 -60.208790 -42.475029 55.300777 45.512375 15.843133 6.406815 27.357729 12.905811 -14.903576 -10.777348 -16.374687 21.050309 12.824714 -21.742438 -2.284542 2.179086 -30.651362 -13.849746 -1.908613 6.025004 3.144002 -13.677795 8.897045 -7.179352 -24.172358 -10.727926 17.105508 -25.468018 -11.736535 -4.331975 -0.950989 3.694474 14.701981 -9.961681 -6.253200 5.076132 -23.776836 -7.023372 2.821712 22.259229 11.222012 34.847450 45.011668 -7.375152 25.261830 0.238177 -21.006834 50.256683 -22.981348 -2.774385 -4.177575 18.532329 6.776401 13.121472 19.412250 -10.797464 -14.018447 -30.084580 6.994624 7.708965 16.431624 -30.265992 -27.509505 -37.503578 -4.472633 4.803804 36.349690 -2.253569 56.798829 -17.107058 6.163078 -62.149056 1.205542 19.030807 1.317763 20.134509 12.152023 -21.938613 -38.675816 -6.424504 -23.096557 0.652651 -4.347465 -25.434801 -19.197453 -23.273062 27.752216 -25.230871 10.076025 23.783779 -2.736552 27.273483 6.804350 -6.422342 -16.073423 0.412519 12.136708 10.620903 -17.875197 28.586966 0.117550 63.131775 -9.094467 21.633441 -21.340284 18.028143 -10.325961 -25.246527 -12.023332 34.177954 36.688528 6.088776 1.303589 -0.627892 -10.194644 23.138439 --0.437368 4.885480 15.921025 10.032937 -7.064552 -10.632099 -4.153627 -12.451668 6.472032 2.300556 8.390857 -1.121112 3.830516 1.774733 -1.121129 -2.155872 4.446901 1.099435 -1.120970 -4.252481 -4.784141 10.929117 4.721542 -9.793681 1.801851 -11.047495 7.177485 5.137688 5.976906 8.000894 0.813126 -0.029056 -1.124390 6.031144 -7.646980 -2.633661 -1.033649 3.085721 -7.110160 -1.331497 3.701247 2.674523 8.301405 0.528114 5.527649 4.376368 5.215887 -0.072752 -7.466069 -1.773368 -4.529005 9.306728 -3.656380 6.214073 -0.166777 3.248837 1.916450 -6.805556 -0.646717 -8.328738 1.596450 2.955117 -5.303755 -0.531435 -8.946174 0.535837 -2.805211 -7.470135 3.104329 -3.154885 5.081810 0.159212 0.174903 -6.716817 -10.358573 3.859319 1.701351 4.256070 4.771237 2.440724 -0.716585 0.577629 -5.521110 -6.711027 3.364314 2.694603 1.801468 1.978095 -1.426052 -6.243480 1.480785 -0.643719 -0.727595 7.380211 -5.690742 6.660991 -4.139980 -2.871490 -5.494220 -7.881931 -0.326613 -6.629618 4.110975 3.912937 -3.491041 2.457211 1.468459 3.456300 0.953386 -8.947285 1.151664 -2.856012 0.212842 10.383792 -3.924115 -4.646355 -0.663129 -0.931852 -1.824997 8.109180 -0.344151 2.080480 7.743069 6.015622 4.045722 -7.229755 0.182059 2.332555 3.117972 5.362210 6.304954 -6.840909 -4.644372 0.039423 -1.774012 -14.825272 -0.187659 4.622742 7.315221 -0.188492 -8.221978 3.003120 -4.838586 7.461097 5.146075 5.584774 3.973522 -0.958284 -5.313365 3.259017 14.598287 -4.773023 5.995520 -5.101229 -9.889456 9.610699 -2.119308 7.160240 -0.939146 -0.268218 2.642169 -7.159561 1.778744 11.055002 1.376907 1.245967 5.599726 0.042297 -3.175085 -12.771305 -12.799500 -0.192396 5.474697 2.479255 16.360951 -7.777355 -5.237489 -2.360944 9.218162 -2.308665 -2.448026 1.964655 -4.356366 4.306105 -17.720232 -13.605000 12.979694 12.171539 1.797624 -1.791704 8.134787 1.824287 -2.780404 -7.894355 -5.890312 4.538506 2.675264 -1.626407 -1.451373 0.335044 -9.393361 -0.007160 1.821414 2.301516 6.276259 -5.856928 -1.014664 -3.723134 -10.316878 -8.284024 4.902121 -8.993793 -1.750302 1.037719 0.875357 -1.045463 4.094901 -2.195478 -5.640445 1.865449 -5.072340 -0.893099 1.199574 6.301341 0.469607 11.430304 11.105264 -0.572477 7.396924 3.166952 -5.837561 23.250855 -7.863367 -0.244330 -0.087735 7.285795 -1.793161 4.189728 5.291504 -3.465793 -5.145795 -9.286753 2.644221 -0.035116 3.092774 -12.499771 -6.984701 -10.561627 -2.551271 0.602283 9.806516 0.326875 17.355896 -2.812630 2.223170 -18.275194 0.761959 6.728845 -0.541448 7.826274 5.664518 -8.821830 -12.097505 -1.706983 -5.984695 3.380558 -1.891382 -9.354631 -5.826246 -2.741750 2.994157 -4.508981 4.136967 10.931495 -3.109183 5.657385 -1.288125 -1.601422 -2.876350 -3.363583 6.537650 1.712020 -6.630291 9.110262 -0.897383 20.265711 -1.117411 7.597036 -6.168690 1.409089 -0.909157 -6.249098 -4.818639 11.140232 6.753193 3.812695 0.499418 0.617436 -3.923387 5.435656 --3.774530 5.292647 23.880398 15.300947 -8.962562 -10.619360 -6.181062 -13.631920 8.648517 2.814868 13.009486 -0.882617 5.196130 2.363141 -0.903928 -5.747523 7.110462 -2.455465 -1.256196 -5.765575 -1.917963 16.650817 9.433320 -18.555790 1.908478 -18.907949 11.333019 6.622826 6.678291 12.836279 -0.312849 0.817550 0.478887 9.823709 -11.654373 -5.755421 -0.044953 4.847145 -7.226126 -2.136335 7.828806 9.599293 10.578417 -0.327624 6.877585 8.074526 8.009942 -1.308155 -11.117322 -3.299415 -5.919554 11.601727 -6.993348 9.159347 -1.105301 6.970803 2.924737 -11.830092 -3.125575 -17.543526 3.538334 8.170186 -5.376012 -1.439264 -11.902413 1.917992 0.186385 -8.786004 6.255036 -2.524525 8.080852 1.975911 2.597253 -10.909861 -11.164076 8.158389 1.562258 7.118467 5.324658 0.067468 -3.999167 1.811218 -6.299422 -9.305410 2.370273 2.744506 2.781510 1.448143 3.370049 -6.626205 2.076811 -0.155302 -6.000465 12.087307 -6.552622 8.892470 -4.120011 -3.196740 -6.861495 -4.474422 -2.976446 -11.935023 4.991000 12.217735 -6.427816 4.475077 0.821213 5.048665 -0.213251 -11.644415 1.678249 -3.380655 -1.513192 11.917439 -6.135205 -5.522891 0.357516 0.412813 0.137561 12.773649 -4.331363 5.098117 12.962627 10.033227 3.928642 -10.685661 2.821686 2.203676 6.633380 7.756981 11.141272 -11.761479 -7.533368 -2.181510 -1.760576 -19.173449 1.506043 5.922285 11.655479 -0.922831 -18.366638 8.247747 -7.437304 15.360507 9.637872 8.495010 5.340831 -1.066263 -8.400649 7.169428 23.574599 -7.525410 8.864979 -8.788568 -12.937238 16.230089 -3.384561 11.524792 -1.314011 1.714116 4.041606 -13.069944 1.895906 16.742306 4.260324 4.766927 9.952563 -1.377901 1.980013 -20.147911 -17.914566 -3.202828 5.514369 3.032352 26.874953 -10.747378 -7.563514 -4.682097 10.615696 -4.280951 -4.219265 0.362104 -4.344924 5.173784 -26.943000 -19.953438 20.403571 18.652997 0.813660 0.614101 14.341763 2.031318 0.265594 -9.165465 -7.064564 8.827984 3.860271 3.040401 0.473315 1.740232 -12.952994 -3.510481 2.519790 2.862406 9.575337 -10.124925 -8.113149 -1.068008 -17.613745 -10.399296 4.730492 -14.632367 -5.758433 1.627589 1.102112 -0.363507 4.815527 -2.568953 -8.499323 2.664288 -7.931586 -4.341921 1.848204 11.041089 2.524181 11.249632 15.986246 0.222135 9.131074 6.920626 -7.974693 32.932364 -9.871699 -2.610580 0.368948 10.207966 -1.430855 6.612018 5.914661 -4.168644 -5.320735 -15.094184 9.915190 -1.066970 4.629397 -22.723453 -8.926876 -11.447135 -4.041818 4.116319 14.145470 -0.229859 27.453790 -2.873587 1.888856 -28.979644 0.030866 10.772032 1.300671 8.892444 10.220503 -11.727478 -21.656849 -2.369803 -6.231543 7.088557 -3.863662 -14.479890 -9.683468 -3.922839 5.252953 -6.983117 7.276453 19.186194 -3.270357 8.645450 0.641965 -3.767271 -3.924482 -6.739568 5.260336 5.733620 -8.728662 13.597033 -3.425626 27.770508 -5.298994 11.532579 -11.078636 3.068555 -1.119487 -7.597613 -5.831873 17.185404 8.630730 4.887076 3.918565 -1.266337 -6.548807 10.625575 --17.378527 6.477789 58.403767 33.377967 -15.767706 -31.323246 -16.149918 -32.651619 22.493610 12.801063 39.025423 0.145643 15.569554 7.361525 4.444261 -9.748057 12.279307 -8.952851 -2.301226 -10.855853 -2.033951 42.596546 35.212132 -37.275538 2.064606 -43.058429 15.434120 14.225442 15.626889 32.437378 -2.095335 1.753199 1.080119 20.451695 -29.278933 -1.377982 -3.902744 12.336581 -10.811180 -7.879909 15.701007 15.393739 21.327388 1.501279 27.314508 12.523551 25.051335 -8.303277 -27.746309 -14.277623 -17.439232 37.098461 -22.057619 18.296485 0.010680 20.220115 2.273124 -25.884652 -9.991481 -56.390121 10.151198 18.398759 -20.511872 -2.379725 -26.034957 8.600159 -5.752270 -15.962679 10.650806 -10.927261 23.476058 1.792436 6.358742 -19.095212 -30.164144 15.601498 -2.994026 10.656784 11.784214 3.474786 -20.817848 4.683447 -9.994031 -23.493490 11.183680 3.430930 0.951842 3.164663 -0.890479 -8.300634 -1.626885 -1.144567 -15.771225 29.200825 -26.650402 26.670336 8.506002 -8.734627 -14.330213 -8.373559 -5.072958 -32.479968 7.810644 29.140051 -4.972838 3.267189 -14.499124 10.780605 -10.329218 -35.780298 8.239296 -4.484897 -12.144740 20.164469 -27.410775 -0.260685 5.342341 3.704853 4.309637 32.224969 -3.941926 16.635630 25.214116 21.751695 9.411279 -23.893861 8.951690 9.423523 26.717803 16.915252 18.368889 -25.279356 -17.462659 -0.304217 -5.234507 -49.661914 -0.641669 31.108061 26.194397 11.110846 -44.927590 15.076501 -11.445816 36.028636 27.961625 22.616274 9.879284 -1.234386 -21.816477 12.435346 60.371784 -22.055031 28.288883 -7.827378 -34.261314 48.171268 -24.449997 31.838394 3.888083 9.174377 12.005108 -31.591180 -4.153242 41.165220 17.712418 18.285152 18.110831 -1.553146 6.011721 -49.485399 -49.065034 -15.344374 16.349542 8.768092 59.170759 -22.683790 -18.617102 -8.063529 31.353842 -10.784060 -17.092243 -2.434816 -8.833233 10.911141 -76.163270 -47.950293 52.013909 52.034741 9.023665 3.705969 39.092581 15.586373 -1.140004 -19.946450 -18.682440 23.045650 3.588757 8.059050 2.900765 -1.249926 -37.480141 -8.976372 -3.661033 3.722444 10.324899 -19.647249 -12.362817 5.312426 -38.032691 -14.764455 4.017640 -35.510780 -20.420504 -5.723534 5.284570 -0.787612 4.347948 -11.030847 -12.636529 13.264201 -27.555665 -9.029231 9.377289 20.823078 15.278250 40.831690 41.227779 -0.652226 20.593456 8.261756 -17.696711 77.698127 -26.518184 -9.561873 -2.996094 26.663291 -0.762082 13.490059 10.200566 -8.826825 -18.207945 -30.561255 23.438760 1.461186 15.044689 -45.550326 -34.159904 -29.274897 -7.774924 14.982792 37.631870 -3.501801 67.368959 -8.320060 10.632839 -75.399348 3.373942 25.217076 -2.399410 21.286189 21.440393 -26.528379 -56.151918 -8.510927 -9.692417 19.065816 -5.495820 -36.558144 -16.674311 -19.700207 16.036267 -25.448256 16.672979 32.201908 -5.462506 26.213153 13.579217 -9.658860 -13.174395 -5.784851 14.354041 14.898359 -23.688218 37.360984 -7.187410 71.127624 -19.697141 30.395724 -24.501415 14.745077 -9.622737 -12.191975 -8.810855 41.008933 33.532999 10.825474 3.096860 0.212872 -18.007626 16.869619 --12.206986 17.503789 76.404193 38.866445 -36.952145 -62.031955 -18.830235 -85.060334 43.039412 22.797563 62.970972 2.369254 42.644808 -14.535936 -0.078296 -4.162581 37.602259 -0.538051 -0.162455 -26.075726 -17.222961 68.342192 14.493226 -27.840810 12.956178 -49.207020 39.667711 22.412611 32.069160 47.022952 12.249621 1.278880 -14.927632 25.889925 -21.206917 4.917689 -1.200164 24.540666 -33.924290 -11.061009 13.276464 -10.821490 47.178726 8.267541 41.773754 9.244148 25.392998 -0.615164 -36.424988 -23.541011 -19.558627 36.548310 -28.699568 32.544345 -7.204884 -5.672105 12.909357 -11.897006 2.921998 -46.427559 8.855846 -8.997322 -30.059155 -2.415041 -40.263895 7.502121 -23.071819 -33.463938 0.796710 -25.082117 27.735897 1.630133 0.886601 -15.064389 -71.560364 9.436610 13.968856 9.979307 33.578655 20.484134 -8.374893 -17.186058 -36.678422 -44.121501 42.018039 21.937637 12.057347 21.080588 -36.233066 -16.410886 3.063621 2.468067 11.878745 35.648244 -39.558725 20.070280 -6.286536 -19.105610 -20.013964 -57.753901 8.423237 -36.382494 16.002303 16.609257 -13.933227 6.215787 -13.373187 16.661858 -14.872269 -45.172602 16.882258 -23.285211 -10.924317 54.969285 -23.478787 -25.571910 -20.245630 -3.555398 7.662777 37.253313 8.645866 14.213173 42.053971 31.662697 29.503782 -45.531819 -6.860987 25.090642 26.006383 23.685805 17.873223 -31.232992 -27.063027 15.679205 -31.772182 -81.888889 -21.371283 31.599810 48.249402 -6.183365 -37.131785 19.522433 -28.057853 34.388724 44.934774 23.392028 17.544691 7.484372 -38.218915 17.348186 66.046888 -25.752785 34.855031 -14.674785 -34.899615 48.137753 -16.539801 26.605247 -4.302494 -5.435663 0.120983 -29.762309 5.177282 58.374756 10.577217 16.420045 1.303496 13.138203 -27.102118 -64.021409 -82.643847 -10.634515 57.412855 28.412910 73.145625 -44.171034 -21.717028 -0.809198 44.702217 -8.732729 -30.571869 17.095859 -27.292451 28.976651 -99.743667 -69.006507 85.677468 67.605002 29.358079 -5.718606 31.815831 20.047146 -30.310605 -37.038290 -32.786852 26.313658 7.798405 -41.838449 -16.638312 7.244162 -59.994419 -11.598585 3.238238 12.038062 20.445498 -18.512871 21.587433 -15.519204 -30.446490 -31.071082 30.893378 -32.973258 -17.702605 -5.368061 0.576937 5.357564 21.761321 -13.690889 -13.331591 11.071473 -35.109434 -7.341544 5.302096 30.265459 9.221982 75.347612 67.726509 -16.165611 23.376124 -0.011525 -36.997953 95.516466 -37.445277 3.706617 -1.512174 34.412738 7.973621 22.740084 42.483236 -22.596321 -29.318559 -56.106392 -8.269149 15.682113 28.399408 -45.910687 -44.146890 -69.017061 0.821254 -3.006513 67.904900 -4.677513 94.856697 -25.838962 19.081566 -90.387212 6.755187 31.419898 -9.775260 40.825613 21.808983 -41.094824 -47.110320 -14.403130 -44.715425 -7.207483 -5.629450 -31.216176 -29.783308 -23.487431 24.351883 -34.621294 12.338019 34.967810 -12.543672 46.389572 -3.610907 -5.112614 -28.827509 6.031188 36.363146 7.881018 -37.168039 46.382564 6.738356 111.420486 -7.375791 36.277264 -27.203531 20.709734 -17.112859 -44.414006 -27.275493 61.521576 57.786207 21.719993 1.988625 6.316268 -9.390395 37.810412 --2.423373 6.727625 27.388913 16.326382 -7.512204 -10.675541 -5.373032 -13.004816 7.056589 3.717199 13.390548 -2.845660 4.555567 6.465265 -0.516865 -6.068304 5.219794 -0.166585 0.344273 -4.816029 -2.823528 14.777761 12.219029 -18.203921 0.280653 -19.264290 12.818140 6.410593 8.288887 13.340117 0.679893 1.344364 1.391767 9.299381 -13.774430 -6.374074 -3.667584 5.367564 -6.664538 -1.498736 6.605079 10.291270 7.298983 1.056276 6.383106 9.192759 10.643365 -2.453733 -9.737227 -2.176690 -7.859188 14.693464 -7.340513 6.745894 -0.812215 8.089647 1.475122 -12.293344 -2.783405 -19.682696 4.911515 9.769613 -8.926912 0.244478 -14.921790 2.618185 -5.319151 -8.771154 5.755651 -0.356819 8.121253 1.467297 2.894870 -12.828707 -12.171517 8.631042 -1.490398 5.988727 5.425760 -1.635012 -5.512788 4.754651 -5.771339 -9.563692 2.774164 1.463915 0.836259 -0.960523 5.959886 -7.440194 -0.352352 -0.197361 -7.901709 13.013393 -7.502462 14.197962 -5.571250 -2.516264 -6.406662 -4.576812 -3.406577 -14.212238 4.964579 12.361318 -5.652279 3.889142 -1.459465 4.543500 1.816229 -14.661256 -0.142526 -2.999735 -0.072237 11.808302 -9.186954 -3.527258 1.162274 1.344364 0.788596 13.665341 -3.256748 6.276307 12.156376 8.431878 2.077192 -9.817001 4.752273 3.101689 4.489493 8.385252 10.913016 -11.799272 -8.433163 -4.314695 2.197124 -20.404229 4.974132 8.398477 7.560965 0.786791 -18.420352 6.394066 -6.258469 14.212426 10.914067 11.362747 5.851411 -1.731732 -5.338220 4.912776 25.021354 -8.967720 9.011755 -7.412384 -16.150998 18.174236 -5.442106 13.308231 -0.938405 4.437638 6.836396 -14.342372 -0.235310 18.094371 4.841536 4.821504 15.349604 -2.726881 5.010103 -20.263237 -14.975406 -1.599843 4.121476 0.653317 25.626531 -9.391150 -5.094192 -2.914331 10.778106 -2.539139 -3.369644 -1.946544 -2.479874 3.379193 -29.630810 -20.936390 15.378713 15.665290 -1.694264 -2.528705 13.190072 4.530156 1.210617 -9.867020 -8.819452 9.779957 -0.197596 6.785926 1.397620 0.586031 -14.305637 0.027912 2.332051 2.680995 11.448668 -12.804337 -11.192901 -1.718224 -20.108884 -11.472805 4.651282 -15.449851 -7.108426 -0.723477 1.883053 -0.538776 2.079833 -3.550561 -7.521561 5.115306 -8.653564 -5.292209 3.312708 10.172362 2.025062 16.050391 13.107138 2.447721 5.763043 7.285357 -7.357218 37.185211 -8.396138 -4.468171 -0.313717 11.040950 -4.073713 6.526487 4.153331 -3.714165 -10.342413 -14.048770 10.542548 -1.930301 3.528370 -19.994882 -7.949501 -10.402956 -5.131514 5.245568 15.541380 1.092742 28.560361 -1.579981 2.215657 -25.755554 0.531222 10.835827 -1.110660 11.692612 11.296174 -12.552673 -16.944550 -3.768670 -3.254511 11.948933 -3.133698 -16.349060 -9.986059 -2.071942 1.918481 -6.404200 8.420817 16.075359 -3.411738 7.023767 3.894006 -3.870559 -2.298006 -5.291320 7.513846 6.960665 -11.151051 15.186471 -5.504441 28.389396 -6.401055 12.091164 -12.091171 0.716370 -1.182445 -3.073612 -5.300478 17.829073 9.763661 5.845526 2.447770 -0.670728 -6.864187 7.539215 --91.287522 42.848576 306.941611 124.347075 -136.034933 -223.071618 -78.806155 -341.272152 177.460361 109.837960 280.266435 5.224055 181.588867 -81.619328 7.319433 -11.897367 167.162160 -48.038151 17.630774 -101.235716 -26.935690 281.984807 65.336502 -72.165172 48.995318 -213.103641 138.012071 60.841162 120.751761 193.128281 58.040012 3.539897 -64.733966 90.399875 -44.176985 68.746909 29.680535 98.708890 -120.272655 -47.872428 38.119688 -67.482586 176.370865 18.385773 198.431948 6.614582 98.628521 -16.492789 -164.670663 -114.757715 -79.269792 146.742420 -139.565777 109.552205 -2.076904 -44.113649 45.215947 -39.538380 -7.204398 -210.922763 17.354729 -61.826355 -106.316856 1.164982 -138.735496 51.582375 -97.566803 -96.130025 -5.048183 -110.789904 109.970263 30.125961 37.323939 4.606149 -271.654583 55.154499 60.636704 29.646852 126.627116 75.177747 -39.809489 -70.101949 -129.173820 -179.726686 182.688244 97.059371 48.959229 71.032421 -164.453349 -7.698554 -5.512188 9.887919 34.454587 135.093256 -179.314492 54.082877 7.983960 -87.769704 -67.666816 -230.597182 24.703297 -156.399633 48.243000 96.008096 -66.128471 11.813242 -118.320345 65.593988 -95.831301 -172.476069 91.667061 -99.561367 -62.662193 205.183609 -133.955948 -74.956824 -110.191144 3.063558 62.468991 138.473047 21.487253 83.985734 149.818872 128.675437 134.765898 -183.251089 -28.959278 113.561172 143.657504 73.113344 57.511834 -115.304888 -107.070619 65.647852 -141.339281 -317.254480 -123.071610 136.563243 201.287511 8.838318 -153.253075 59.644973 -101.466085 166.656837 198.720154 80.571985 55.192702 51.795614 -167.405765 73.863338 245.312249 -111.658939 154.604096 -40.926960 -110.870604 188.631006 -90.612454 107.727833 -6.757478 -1.292532 -8.715172 -133.874926 -4.852816 226.597541 69.973031 91.001633 -47.513093 64.282150 -73.840445 -263.627005 -350.939100 -59.062305 240.773979 110.926213 266.400385 -176.309367 -95.178530 3.499141 183.605343 -21.618054 -153.480181 61.345853 -111.568788 110.964013 -405.553069 -283.409559 372.203238 298.653820 129.740228 3.422815 124.136135 101.247219 -163.632130 -120.174099 -125.039944 122.629014 1.495012 -209.422277 -76.986622 42.057231 -237.269481 -78.376768 -8.607909 44.752144 62.279651 -53.276941 112.007955 -13.385612 -91.437863 -80.924903 126.786235 -120.033249 -118.240958 -40.660500 6.669855 59.980100 91.096629 -68.605424 -23.410240 61.511334 -167.117960 -46.851881 33.332265 127.420071 56.436583 299.107565 290.173067 -59.758262 79.416401 -22.420587 -151.343041 324.182765 -139.012616 5.867420 -16.484508 103.103311 56.008193 83.963240 175.540368 -90.613780 -132.022379 -218.645994 -36.713715 57.118103 131.444211 -164.251403 -222.093067 -270.376999 26.050532 14.254160 260.702691 -18.119791 386.906369 -102.599061 66.432898 -369.374280 20.709062 134.014554 -31.756774 157.977010 77.040554 -152.081970 -191.654690 -64.827014 -187.909376 -37.957943 -18.103976 -110.743901 -108.830214 -128.052701 159.249688 -147.565566 39.950828 103.322088 -16.932198 218.665315 53.623616 -24.458788 -142.184299 52.358863 126.207884 41.875828 -135.462502 204.611736 35.235100 440.839515 -54.903067 112.698343 -105.117876 104.575238 -71.703070 -172.411518 -90.431673 246.246443 264.946705 84.432051 -10.350636 7.736852 -47.420552 161.551965 -0.313947 4.502814 12.296376 7.301448 -4.773726 -6.181857 -2.618568 -7.604913 3.609281 0.562891 5.469599 -0.986059 2.141026 2.923639 -0.274062 -1.852989 3.318117 1.113397 -0.885913 -2.941634 -1.597661 6.295118 3.152789 -8.651465 1.062737 -8.033680 4.590728 3.973312 4.153594 5.056077 0.216758 -0.144241 -0.634442 4.437220 -6.212540 -4.071728 0.162142 1.824061 -5.584816 -0.714972 2.071549 4.334771 4.561487 0.034428 2.478471 4.062423 4.152259 0.348721 -4.317647 -0.497913 -3.674695 7.672402 -2.158046 4.725247 -0.050546 2.932757 0.436806 -5.260521 -0.742324 -6.405666 1.721978 4.031913 -2.628802 -0.794281 -6.147132 0.535076 -0.680970 -5.226718 3.085765 -0.396979 3.946645 -0.106116 1.106825 -5.460430 -6.493270 3.139272 0.103774 4.234443 2.910780 -0.138345 0.001673 1.053435 -2.916678 -4.245268 0.894439 1.546879 1.273170 0.372292 1.022912 -3.862420 1.058864 -0.671689 -2.317759 5.287693 -3.589111 5.653796 -4.702373 -1.059585 -4.001513 -3.948878 -1.172284 -5.097828 2.785434 3.317893 -1.842086 2.442130 1.580664 2.668583 1.257680 -6.011199 0.574985 -0.585181 -0.861493 6.836263 -2.533607 -3.169848 1.530794 -0.280525 -1.917866 5.877311 -1.082959 2.306432 4.866574 4.774021 2.013864 -4.796582 0.836602 0.958575 2.046588 4.894144 5.954023 -5.644132 -3.602615 -0.827174 -0.814966 -9.973397 2.400426 3.032326 5.631395 -0.237479 -7.688060 1.901203 -4.136842 6.305667 3.014124 5.063028 2.866655 -1.379665 -3.262098 2.584022 11.119521 -3.846831 4.733297 -3.580674 -4.990068 5.543222 -0.771205 5.334074 -1.024175 0.560504 2.935208 -5.523990 -0.580935 8.010001 2.664993 1.375530 5.913054 -0.762059 -1.892320 -10.344505 -7.470378 -1.276340 2.719575 -0.686865 10.875160 -4.703253 -4.521413 -2.164712 6.052822 -3.225267 -1.525366 0.747633 -2.540928 2.756547 -10.400225 -8.922124 8.214843 8.657731 -0.557618 -1.469421 6.395376 1.026417 -1.902326 -5.749482 -3.375260 3.141283 0.966279 0.126221 -1.165861 0.084701 -6.387062 0.240289 2.134747 1.918468 4.593703 -2.818695 -2.737019 0.095102 -8.861361 -5.891308 2.709436 -6.713610 -1.492000 1.525592 0.750348 -0.602101 2.211538 -2.289635 -4.934392 2.909877 -3.850171 -1.346872 0.794189 4.872576 0.519347 7.196110 5.520474 1.585471 6.053621 3.658991 -4.968327 16.950280 -4.482704 -0.359311 -0.193466 4.805598 -2.928590 3.339402 2.449575 -2.279889 -4.536834 -7.403642 2.387943 -1.549659 2.383774 -8.083851 -4.440345 -4.645293 -2.134639 1.619802 6.203556 -0.297970 12.241305 -1.433619 1.599651 -13.013561 0.342437 4.977751 -0.606367 4.621390 5.116943 -5.771007 -9.918586 -0.606608 -2.888155 1.951682 -1.681679 -7.693463 -4.283474 -1.930303 1.762912 -2.583407 2.785631 8.761750 -1.732773 4.020573 -0.987955 -1.780599 -0.719974 -2.988574 4.580464 2.111309 -5.394446 6.413406 -1.227250 15.054535 -1.172066 5.532269 -5.106176 -1.170116 0.412191 -2.835947 -3.363705 8.460917 4.069251 3.319447 0.899645 -0.237388 -3.363643 3.928609 --1.870986 4.559578 20.178560 12.515022 -4.792646 -7.520571 -5.345998 -11.983821 7.381119 2.569358 11.732030 -2.911314 3.898192 3.324258 -1.404987 -5.194606 4.886016 -2.089026 0.112950 -4.392354 -1.739245 12.836028 8.321709 -13.808146 0.409053 -15.163848 8.728884 4.357552 6.559745 11.208299 0.656258 0.328124 2.094495 7.785784 -10.025152 -4.764328 -0.465587 4.062040 -6.494570 -1.715524 4.982289 8.322691 8.905964 1.141276 5.300897 6.553940 5.688602 -1.888766 -7.899338 -0.970043 -5.364250 10.645556 -6.490838 5.386165 -0.754994 4.882025 2.620057 -9.866498 -2.751380 -13.486516 1.919822 7.335853 -5.524974 -0.220374 -10.329034 2.201013 -3.142433 -6.553153 4.658560 -1.603924 6.766184 2.773921 2.764932 -8.145664 -9.555869 8.089700 0.920478 4.543918 4.764537 -1.441955 -1.658929 2.999091 -4.550350 -7.433514 3.900635 1.686833 1.969328 1.331720 4.385645 -6.026107 0.648512 0.194544 -4.278892 9.681419 -2.983225 9.605843 -4.021295 -3.712813 -4.629988 -4.625753 -2.545286 -10.667774 4.325247 9.322377 -5.391021 4.658475 -0.010467 4.610725 0.423876 -10.794130 1.395762 -2.236590 -0.814195 10.926923 -6.812481 -5.147356 -0.421410 1.020238 -0.002574 10.275728 -2.653492 5.294390 8.141004 7.225517 2.400125 -9.019662 3.123573 1.450121 4.261172 6.369070 9.107362 -7.931775 -6.970404 -2.854361 0.655449 -16.665890 1.130370 4.098489 7.530274 -0.315695 -14.419550 6.273768 -5.881212 11.662631 8.661353 7.472493 5.117129 -1.232543 -6.392090 5.177957 17.285009 -6.851060 8.005290 -7.051672 -11.840043 11.411009 -3.510599 9.794576 -2.759440 1.637101 5.746592 -11.189296 1.436677 13.877521 3.227123 3.265920 8.206423 -1.325425 3.107281 -15.643629 -13.334889 -1.151743 4.361845 0.960202 18.746808 -7.366892 -6.156472 -2.397651 8.253670 -1.922446 -2.177626 -0.074250 -3.421752 3.806857 -23.967845 -16.861052 14.905719 13.502179 1.334939 -0.886020 8.526364 2.611676 1.063046 -7.353208 -5.942649 7.792606 2.109160 1.414459 -0.749690 -0.176451 -8.793692 -1.840470 2.461202 2.495856 7.490746 -10.416345 -6.460137 -1.964073 -14.286410 -7.980572 5.083646 -12.870180 -5.328588 0.713542 0.495995 -0.263193 3.528340 -2.246528 -5.564950 3.437555 -6.261711 -4.408687 1.805708 9.705407 0.706486 9.624189 12.289370 0.751844 6.565032 5.656922 -6.678001 26.194510 -8.961053 -2.512645 -0.038212 7.618913 -1.961467 5.283391 4.417184 -3.532375 -6.389776 -11.225601 7.408612 -0.464522 4.020275 -15.262941 -7.738975 -8.270744 -3.225858 3.532961 11.518230 1.039298 22.217574 -2.060071 1.449244 -19.575295 -0.306423 9.369024 0.734564 9.873287 8.827703 -10.349805 -15.079619 -3.034467 -5.858896 8.177100 -3.280524 -12.771601 -7.991842 -2.845411 5.343787 -5.342147 6.849119 13.031421 -2.654482 6.011902 1.619232 -3.662404 -3.043286 -4.955200 5.056831 4.602957 -7.929814 10.921503 -3.731435 21.819040 -4.489892 9.125505 -10.551821 1.576004 -1.051813 -3.106647 -4.857151 14.973987 8.005662 3.755968 1.586221 -1.737915 -5.096788 6.986077 --13.997414 18.134628 88.282854 36.439314 -41.850569 -75.100015 -20.326290 -105.538764 53.729938 29.703093 75.916484 4.040734 55.859139 -24.928036 -0.461949 1.085540 47.791133 -1.908216 3.219145 -30.894082 -16.287933 84.207700 10.077245 -20.911624 16.495019 -59.967285 46.036298 22.676602 41.560702 59.473211 17.243672 -0.272554 -20.319864 27.251854 -14.872240 14.495822 2.959402 28.786488 -42.307269 -11.296068 8.704414 -22.931862 55.562213 8.787648 53.457499 4.784855 27.034452 -0.099204 -40.014644 -30.084728 -23.355059 39.399860 -34.852609 36.879558 -9.247485 -14.266767 12.290698 -5.534144 4.827056 -50.507053 7.277824 -19.113900 -34.965016 -1.477838 -46.409785 9.443919 -32.530791 -37.134603 -5.312380 -33.024326 30.308353 5.143088 4.173267 -8.622607 -92.031094 8.700115 18.652090 9.805627 40.441687 25.499581 -8.772447 -25.435212 -44.515743 -53.198259 55.597520 32.689138 14.155504 25.997719 -53.065447 -14.502893 -0.542933 5.428441 19.272575 39.012201 -49.988044 17.854604 -8.584883 -22.395071 -18.287543 -77.980103 11.399244 -41.084303 16.130676 14.045172 -12.766638 6.078368 -20.136427 20.459182 -20.993820 -49.097312 24.886378 -28.749773 -16.839591 66.915626 -26.569653 -30.010798 -32.064130 -3.539701 12.129041 40.875823 9.944388 17.278019 46.791898 35.844042 41.296569 -55.052274 -11.867492 35.711827 32.531920 24.925087 16.596059 -33.636212 -30.919023 20.895532 -42.918760 -98.106862 -31.271558 36.475656 56.828750 -9.685736 -35.806407 17.942756 -33.535879 40.380118 56.453702 22.313541 19.968111 12.922945 -47.471222 20.571996 74.459472 -30.045038 40.860469 -17.627229 -34.346316 53.112138 -19.286469 28.264701 -8.651728 -7.042954 -3.107404 -32.046374 5.840693 67.222626 11.996556 22.028599 -9.403658 18.726729 -35.279345 -73.326020 -99.153406 -15.869520 75.283438 35.782546 81.094844 -52.418477 -25.094263 0.636442 51.322520 -6.243951 -39.002929 23.202610 -36.238175 35.522023 -118.906516 -81.796822 106.299193 83.193503 40.462661 -5.640157 32.165436 27.795572 -45.018413 -41.557532 -37.263833 29.195857 5.109301 -67.370366 -25.647656 11.415811 -72.545731 -16.202554 2.260563 13.504060 21.753521 -13.298092 37.358622 -16.352179 -27.029089 -34.832092 41.670538 -34.681106 -23.826188 -8.483331 1.064262 10.637900 27.880729 -19.004490 -9.262739 17.156082 -42.251828 -7.076303 6.151744 33.317041 10.824187 89.464619 84.091316 -19.682907 23.979077 -4.852133 -45.223908 102.320637 -41.841587 6.268800 -1.602006 33.940206 12.661049 27.314706 52.852053 -27.931870 -35.176057 -66.308870 -18.193693 20.995546 35.836255 -41.964621 -58.145431 -82.086345 6.138832 -5.868614 81.802114 -4.777978 110.840709 -33.036556 24.881520 -103.909673 8.324691 35.995381 -11.187538 49.741761 22.495904 -46.770468 -47.891611 -17.382569 -56.420789 -17.993495 -6.155867 -32.561295 -33.125567 -31.470487 33.861459 -41.943719 10.448691 33.250347 -11.772726 62.097150 -2.987401 -3.711100 -40.599875 15.281414 43.655125 8.203344 -41.353527 51.827530 12.442221 130.109663 -8.493392 37.728903 -28.416721 27.997717 -21.610087 -57.455268 -32.223138 72.070090 72.148613 27.201287 -0.525422 5.251339 -7.550640 46.308281 --0.729675 5.246540 20.587077 12.835415 -7.031358 -9.844185 -4.254581 -11.170591 6.074342 2.239296 9.450103 -1.891510 3.369980 3.168912 -0.909654 -3.889309 3.589638 1.380976 -0.193087 -3.711330 -3.571960 11.510411 8.265468 -13.970066 1.070963 -14.424700 9.299407 5.868485 7.551710 9.576022 0.202879 0.487437 0.264602 7.368166 -10.335567 -4.931289 -2.858450 3.526584 -6.921849 -0.285846 4.293228 7.488812 6.124742 0.213243 5.247778 6.617860 7.801483 -1.053127 -8.029891 -1.443879 -5.580368 12.105067 -4.624689 5.857894 -0.063788 6.081965 0.002557 -8.999167 -2.047574 -13.448815 3.916052 6.879295 -6.416623 0.205411 -11.832674 1.269835 -4.167531 -7.073949 4.953486 -0.344997 5.997087 0.726469 1.576159 -10.094222 -9.869635 5.999513 -0.358383 5.440271 4.538531 -0.214708 -2.486740 3.111610 -4.452790 -6.955519 1.698121 1.481110 0.786481 -0.350534 3.423955 -7.123759 0.818064 -0.571011 -4.560434 9.194713 -6.977649 9.519538 -6.409025 -1.458943 -5.164762 -5.380947 -2.313682 -9.717149 4.297697 7.918156 -3.595994 3.440635 1.183368 3.995904 2.158913 -10.876427 -0.470869 -1.924115 0.416206 10.916512 -5.605010 -3.626168 0.757387 0.579114 -1.677084 10.209554 -1.898529 4.049664 9.324362 6.860727 2.445329 -7.232646 2.653037 2.814015 2.747266 7.096912 8.459757 -9.412324 -5.787484 -2.926076 1.412263 -16.436988 3.273660 4.822014 5.826736 0.384414 -12.429735 3.524252 -5.108481 10.856966 6.576357 7.308160 4.629004 -1.761217 -4.135120 4.528735 19.376763 -6.113836 6.046644 -5.423758 -12.237278 12.742601 -3.669081 9.648659 -1.185518 2.157423 5.380577 -10.132583 0.201680 13.106836 2.419866 2.483110 11.049951 -1.588934 1.311607 -15.406951 -11.816960 0.053538 3.130527 0.245421 19.673735 -7.459261 -4.928137 -3.109357 9.290277 -2.057948 -1.910801 -0.409010 -2.993421 3.266400 -20.690515 -15.714007 12.076054 13.439166 -0.767113 -2.363995 10.996058 3.190681 -0.872927 -8.187138 -7.170247 6.040440 1.172900 3.307030 0.110150 0.555607 -11.406827 0.109864 2.413632 2.043152 8.836409 -7.703719 -7.942158 -1.798804 -14.971130 -9.141338 4.367123 -11.318962 -3.236665 0.108561 1.359941 -1.189591 3.043520 -4.363337 -6.631342 3.225171 -6.324387 -2.755478 2.016947 7.623182 1.142802 12.966006 10.052594 2.116624 6.664999 5.843255 -6.183149 29.307991 -6.193218 -2.129837 0.057388 7.699146 -3.646831 4.822327 2.799482 -3.274893 -7.426875 -10.838726 6.383448 -1.456993 2.747535 -14.446270 -6.775518 -8.716413 -4.382504 3.307035 10.505154 1.513199 21.314918 -2.006685 1.752868 -20.060160 0.429381 8.603561 -0.921148 9.857213 8.161637 -9.582242 -14.545835 -2.611397 -2.820915 7.730103 -3.009052 -12.904677 -7.279616 -1.887573 2.723431 -4.128648 6.378597 13.647515 -2.708404 5.677558 0.601572 -2.487818 -1.725026 -4.374625 5.528088 4.689596 -8.907987 11.185660 -3.398868 23.118199 -3.762575 8.916706 -8.956041 -0.335507 -0.679138 -3.679181 -4.185862 12.876902 7.417226 5.155832 1.421047 0.171806 -6.036451 5.651380 -1.750260 2.673055 10.659061 5.604018 -3.098597 -6.619001 -2.204779 -11.649809 7.544594 1.754731 5.215551 0.280569 4.298126 -2.168175 -1.473433 1.167432 3.945368 -0.313832 0.641273 -2.470901 0.213352 12.905857 0.739151 -4.880800 1.007345 -11.797387 3.783425 3.161857 8.432438 5.818998 0.891533 -0.538668 0.222134 3.514794 -4.659100 -1.658221 0.106316 1.780483 -8.276400 -1.226399 0.038265 2.924883 5.863515 -0.377629 4.258073 -0.519690 4.866484 0.358632 -1.353053 -1.005057 -4.669366 8.281745 -1.109219 4.717449 -0.854634 -0.357125 0.287471 -2.736756 -0.901657 -2.092003 -0.298692 3.224886 -2.798552 -0.508920 -5.979035 0.744551 -1.631328 -3.605560 1.150879 -1.023712 4.171917 2.330511 2.276345 -5.546864 -12.075524 3.313944 0.533357 3.252567 3.241722 2.734822 0.562627 -0.170479 -4.107646 -5.152640 4.812569 6.514561 0.065329 1.255315 -2.527973 -4.632823 -1.554273 -0.815226 -0.006277 4.193150 -5.577971 3.572126 -4.492673 -1.025879 -1.579733 -5.701152 -0.832686 -4.767787 1.908554 0.393143 1.623062 2.855111 3.692492 2.044953 0.704753 -4.593376 2.175428 -0.762167 -1.564496 10.342777 -1.230511 -3.353020 -2.243981 0.656961 -3.937651 5.294284 -1.163448 2.594279 5.985163 4.433608 3.942619 -4.863461 -0.092140 4.991794 2.776014 3.504827 3.840852 -5.352470 -2.936889 -0.052387 0.304796 -11.088239 -1.545772 3.883919 5.449934 -2.678925 -3.435086 1.066168 -2.493857 7.442110 4.515658 -0.713295 3.576536 0.669727 -3.701985 4.390528 12.785778 -2.392249 3.001336 -6.784519 -4.030683 6.259627 -2.270666 5.493437 -3.029427 0.852772 0.901395 -5.073634 2.724724 7.263050 -0.471939 0.835200 1.871514 0.708181 -2.125180 -9.285636 -10.266990 -1.760427 3.199483 1.034342 12.400540 -4.181032 -4.688881 -2.136211 4.204381 -0.658302 -0.981252 3.566817 -6.398264 3.361633 -11.812577 -9.642388 11.926088 10.910192 2.117664 -0.910380 6.431737 2.878235 -3.884641 -6.176013 -2.660564 3.049706 3.160427 -7.211012 -2.098363 1.147683 -6.985159 -2.719879 1.316923 0.677165 4.241258 0.165783 2.445825 -3.213798 -7.527041 -5.653895 6.452750 -5.638120 -1.505873 0.479656 1.070467 -1.483155 5.213016 -2.822612 -1.823430 3.435125 -2.981046 -0.602141 0.329722 3.568907 -0.937254 4.698370 9.928949 1.080412 8.221180 2.311898 -5.006462 14.077432 -4.372739 -0.966358 -0.338956 1.181454 -1.456594 4.032389 1.817350 -2.859827 -3.181927 -7.470609 2.888658 -0.180835 2.116221 -5.697319 -6.092042 -5.528509 -2.498456 0.328550 6.207830 1.640571 12.604786 -5.257915 1.570110 -15.022223 0.903668 4.361979 1.447055 6.207654 3.627471 -5.460414 -6.405616 -1.130821 -4.442168 -1.688607 -2.685554 -9.637513 -4.641939 -4.963113 5.569829 -5.220947 2.815393 9.153444 -1.400339 6.565747 -4.543017 -0.676334 -5.024679 -0.177752 3.108629 1.452718 -4.107641 3.828659 -2.114481 14.436325 -2.858719 4.714716 -4.960961 2.551823 -2.070595 -7.737697 -2.641473 8.464972 4.128657 1.747929 0.333860 -2.037018 -2.513765 5.210150 --9.913065 1.201140 32.398602 27.523734 -21.909819 -32.582297 -9.269170 -35.593242 23.404666 9.666564 31.252194 2.580748 20.193035 -14.573227 -1.879485 -7.285860 17.232105 0.231773 -5.228610 -12.875872 -10.661394 36.695522 7.300040 -24.204242 6.534295 -22.449063 23.100279 16.257619 9.671203 24.085297 5.013302 2.671658 -6.443000 12.585001 -13.646270 3.073463 -3.676707 10.287211 -13.740818 -10.560245 14.359169 -4.343144 26.954042 -0.467688 22.304997 4.271455 16.287522 -1.481816 -23.504005 -12.253056 -8.455765 13.636972 -11.633681 15.872889 -4.369031 1.923123 11.448647 -11.331409 -0.367022 -29.298791 7.271006 -1.909269 -16.742694 -2.909926 -20.400264 2.155755 -3.142979 -18.621553 5.249998 -19.559625 10.511342 -1.354649 -3.688657 -15.759541 -28.784124 4.183111 9.208335 4.043698 13.832994 15.295716 -5.637589 -10.804239 -19.100374 -15.790641 15.313721 5.305519 6.261462 13.339367 -16.646870 -11.117859 6.198261 1.547873 5.432738 15.023782 -17.700675 5.475917 2.850325 -9.942771 -10.882539 -19.523314 6.375011 -14.296439 8.558234 15.163763 -13.930476 7.422719 -0.057372 7.092387 -7.988539 -20.961638 4.863240 -16.590894 2.271254 25.476044 -10.257723 -16.051224 -11.944231 -2.124951 3.318659 19.658318 -0.639846 4.910387 24.679880 14.120535 13.854404 -24.087423 -3.149662 12.449273 15.187000 10.724964 7.609727 -15.102443 -10.384851 4.902343 -16.506085 -39.162024 -12.446231 11.315355 24.475687 -3.027496 -24.203432 18.414914 -12.022413 21.515602 20.380545 10.657283 7.318104 5.552753 -22.462467 8.082193 32.336811 -8.395273 13.455298 -10.547766 -26.314222 27.986097 -1.489150 10.697394 0.368370 -5.409995 -0.527189 -14.415992 9.629704 25.146476 1.216956 5.568526 0.556778 7.412595 -10.589646 -31.865777 -43.834723 -2.877719 23.840673 24.311470 50.210831 -26.176236 -11.185281 -4.718297 19.630336 -6.049580 -13.541265 7.541725 -14.276043 13.990670 -56.049603 -38.215959 46.380763 31.428518 16.220274 1.743914 22.656624 0.962105 -5.697653 -13.190612 -16.848451 12.602905 14.277362 -11.795429 2.846731 3.727257 -30.045880 -10.278146 1.759942 5.549937 10.109891 -17.545300 6.874130 -18.097268 -14.465571 -17.848260 13.027806 -16.574930 -4.486927 -1.909656 0.102964 1.301182 12.139475 -4.434694 -9.179528 -5.379276 -14.056906 -2.796952 0.706189 15.648362 5.592102 33.068101 40.480089 -12.361540 15.910528 -0.048744 -14.802314 54.394233 -20.560202 1.081948 0.764503 21.178278 11.506293 8.738296 21.361983 -10.640107 -2.852140 -25.204708 1.726806 9.161191 12.208910 -41.518526 -17.355323 -40.167404 -2.058161 -4.532005 31.466773 -2.141256 49.017382 -12.946414 5.413348 -52.192986 1.225419 18.884181 -0.526461 18.002562 9.679390 -22.537186 -30.197650 -4.142418 -20.824407 2.553474 -3.993469 -14.725434 -17.025017 -9.607620 11.121057 -17.718573 7.732582 27.201342 -9.682569 18.282472 -4.446103 -0.789100 -8.688753 -5.013021 8.039166 6.338866 -15.113088 23.598974 2.084181 52.995159 -1.044619 19.256411 -13.641295 21.570261 -11.962072 -28.186719 -13.665087 25.592524 25.495935 7.225093 4.606292 4.664070 -6.640153 20.837004 --17.639408 25.533715 127.492776 64.101840 -57.766487 -90.225351 -31.078711 -128.425727 67.410368 33.344719 98.479194 5.631979 58.617183 -13.389243 1.350557 -6.216773 51.343798 -5.050411 -4.226304 -39.687980 -24.872785 106.386599 35.412243 -55.310419 19.822702 -87.375262 57.200836 34.743607 52.009586 72.014275 15.549723 2.370613 -18.585429 43.307070 -40.095277 2.289760 -5.403605 34.039581 -53.257349 -17.094144 26.818211 -5.955738 69.648378 11.954472 67.045152 13.787871 45.805160 -3.591050 -57.216825 -32.480795 -36.329653 71.727918 -44.818957 50.647888 -8.641401 5.919632 12.521609 -31.485199 -3.070227 -81.353449 13.853550 -1.361429 -46.730702 -4.066846 -62.749783 13.971263 -30.796882 -49.210484 7.606674 -34.699273 47.911857 1.947966 2.974189 -31.097170 -106.220968 18.632113 16.046721 19.972953 48.522816 26.870012 -17.417750 -19.222322 -50.995556 -65.602651 59.030163 31.782412 12.676106 23.709675 -41.717852 -26.767502 3.010211 0.592009 6.052018 60.062992 -72.111919 38.804844 -9.733419 -29.180190 -33.847472 -76.061491 8.151272 -61.414869 26.816308 31.833538 -21.632318 13.002097 -15.591050 26.674677 -19.681305 -73.162167 19.805395 -27.157737 -17.018357 84.233641 -40.292811 -35.664635 -21.316501 -2.538679 5.170563 61.440127 8.207509 26.946024 71.965102 53.355201 41.680887 -66.668670 -3.364162 37.467867 42.632536 41.245857 33.481176 -53.599146 -42.077387 20.497494 -36.970705 -129.400041 -24.610614 51.914946 74.672976 -3.912306 -67.014630 26.283028 -39.460194 62.961303 69.348354 38.601133 27.850341 7.220858 -58.141883 30.362549 119.193721 -41.643536 56.381408 -27.024852 -58.928662 82.776992 -34.776941 49.062288 -4.266085 -1.592147 5.836684 -54.668105 2.734633 93.394768 19.769151 24.871580 11.178819 16.187351 -33.164525 -106.357341 -126.751691 -22.869488 74.709178 38.740593 123.322287 -66.359950 -36.947687 -8.737490 72.687112 -15.073974 -44.829884 23.936925 -42.765595 41.837423 -155.669294 -109.671391 133.450251 114.736521 40.250319 -5.763300 63.302235 32.260767 -43.172709 -58.734312 -49.665800 43.298210 17.944535 -50.486636 -20.709782 7.698014 -94.162127 -18.914972 4.237841 17.883961 34.029234 -29.400957 23.208948 -13.063368 -60.291907 -48.036430 44.840010 -60.213052 -32.623536 -8.037691 3.910104 4.274691 31.538855 -24.187532 -24.696830 19.229050 -56.764585 -10.932265 12.707500 50.025796 15.003326 111.467449 105.016977 -18.190573 44.247783 5.252373 -56.126712 156.692507 -58.782902 -0.158821 -2.500483 50.245944 4.856424 35.203910 55.509449 -33.592561 -46.373456 -84.806716 3.429556 14.660538 43.181723 -77.999144 -71.424675 -98.392123 -6.499068 4.942524 99.260076 -4.210486 154.773736 -37.343391 27.195827 -155.659221 9.287606 53.318053 -11.641459 63.194866 38.782699 -65.001190 -86.124058 -21.204719 -59.744802 0.053346 -10.369719 -58.332019 -49.391287 -41.345195 43.744347 -56.316182 24.809983 63.757424 -19.888424 73.287795 -4.556077 -12.063282 -41.864663 5.177424 53.261807 18.154861 -58.546860 75.570355 3.119601 178.981615 -18.580686 60.712224 -47.405845 29.582744 -24.743203 -61.035132 -38.287992 96.994909 88.676030 34.942290 2.366531 4.812149 -22.927706 54.953485 -1.414765 1.642574 4.879392 2.635772 -2.228491 -3.396481 -1.077438 -4.713564 1.857961 0.258052 2.054886 -0.642775 1.243188 0.128631 -0.597916 0.601797 1.334514 1.136205 0.546715 -1.168541 -1.938348 3.311901 0.470998 -1.972502 0.604730 -3.378644 1.887744 1.850720 2.680088 2.312903 0.693400 -0.302764 -0.328621 1.318568 -1.945282 -0.973643 -0.127025 1.196829 -3.540114 0.416048 -0.250359 0.277866 2.319045 -0.892049 1.378520 0.931663 1.792949 0.552716 -1.841428 0.114269 -1.922991 3.186355 -0.436945 1.708835 -0.289304 -0.099848 -0.128106 -1.039312 -0.592993 -0.955203 -0.184892 0.591507 -1.119564 0.414591 -2.833021 0.171416 -1.209236 -2.718929 1.244218 0.716626 1.315991 0.555277 0.378943 -1.414641 -4.264303 1.195535 0.985445 1.513100 1.196724 -0.076546 1.807525 0.002380 -1.669601 -1.692840 1.521503 1.772426 0.761353 0.047557 -0.820823 -2.258461 0.484066 -0.338888 0.249169 1.553825 -1.477228 2.186089 -3.263410 -0.354193 -1.639758 -4.104388 -0.128576 -1.690253 1.611028 -0.053468 -0.213728 1.579115 1.715918 1.825478 0.845454 -2.560094 -0.058456 -0.819387 0.076577 4.489911 -0.192645 -1.865095 -0.628629 -0.266984 -1.715769 2.007650 -0.031629 0.781060 2.242397 1.781540 1.409799 -2.155630 -0.749506 0.735379 0.331829 2.136952 2.221202 -2.115164 -1.411552 -0.324346 -0.532812 -4.733644 -0.416420 0.354697 1.520777 -1.438105 -0.838252 -0.092337 -1.598246 2.938857 0.933782 1.282083 1.185310 -0.250854 -1.173739 1.585579 4.812625 -1.389533 1.327902 -1.849617 -2.364793 1.671439 0.453913 1.725770 -0.785641 -0.470874 0.531125 -2.022471 0.464112 3.004600 0.379220 0.026497 1.402540 0.438424 -2.280573 -4.132646 -3.223267 0.270145 1.688026 -0.179979 5.487639 -2.121519 -2.745626 -0.434438 2.413701 -0.416883 -0.263530 1.155337 -2.261652 1.443515 -4.797644 -4.614516 4.023164 3.153485 1.075689 -0.544782 2.141653 0.616853 -2.159139 -3.006330 -1.343599 0.800184 0.728873 -3.152548 -2.007028 0.427408 -2.742491 0.414086 0.853378 0.905771 2.054332 0.288638 0.393323 -1.326996 -3.583526 -2.207387 2.104217 -3.266315 -0.235731 0.475788 0.328481 0.158548 1.673167 -1.723831 -1.329320 0.665504 -1.161277 0.635023 0.174534 1.655527 -0.613895 3.411208 4.338982 0.514916 3.036594 0.761707 -2.128291 6.470768 -1.686649 0.438798 0.061472 0.853055 -1.581306 0.934760 2.012243 -1.332764 -1.959024 -3.027941 -0.455724 -0.052594 0.811131 -2.261932 -1.885694 -2.681328 -0.802406 0.305096 2.761746 0.798249 4.816923 -1.214505 0.983878 -5.388739 0.239136 1.073221 -0.251039 3.021093 1.368245 -2.535101 -3.530134 -0.643043 -2.081534 -0.222568 -0.961797 -2.949046 -2.026380 -0.787594 0.710584 -0.426349 0.949658 3.626730 -1.019423 2.046987 -1.538956 -0.487291 -1.009972 -0.309578 2.604629 0.082838 -2.080719 2.042945 0.002976 7.426665 0.579548 1.561086 -1.818047 -0.709249 0.280157 -1.458013 -1.346243 3.291685 1.678024 1.764333 -0.189564 -0.112790 -0.917440 1.631962 --4.859746 8.243962 32.123135 20.424541 -17.457087 -20.913906 -9.746994 -21.895919 9.979039 3.971476 19.820717 -3.743535 5.911513 5.914376 -0.433401 -7.778868 8.587699 -1.099080 -3.907887 -9.556232 -11.968251 17.084974 11.878084 -22.021755 4.621876 -21.329099 16.025633 10.737562 5.416329 15.241996 0.765776 0.493312 -3.675551 12.527801 -14.569912 -4.407992 -0.371632 5.485211 -8.866532 -1.279925 11.677649 6.551104 16.250289 -0.346514 10.933645 13.139656 9.629430 -0.136737 -19.779548 -5.733943 -6.579766 16.117867 -9.330325 11.824514 1.140091 9.953819 3.740043 -17.958577 -3.354140 -20.958998 4.663077 4.591922 -10.368733 -0.718430 -16.878625 2.068793 -3.238785 -13.757556 10.062059 -7.806679 10.309579 -2.293131 -1.697723 -11.020912 -13.081361 7.578651 3.917159 8.425544 7.676536 0.647152 -2.968893 2.143755 -11.510807 -11.992031 2.678004 1.070204 5.397045 1.712436 -0.318869 -8.457605 6.191287 -1.140700 -3.479784 16.005134 -11.164763 10.180133 -6.432945 -7.267257 -15.860618 -13.229725 -0.151420 -13.615808 9.435814 14.130633 -13.572952 4.186058 1.327370 6.890373 0.376430 -19.842979 -0.240927 -6.468500 3.275411 17.547340 -9.746236 -9.425775 -0.684686 -3.344295 -0.439620 16.084127 -1.130381 4.124264 18.176368 13.383780 6.890330 -14.875424 -0.245069 0.751399 8.125853 10.736160 14.064636 -15.721998 -9.561197 -0.211293 -6.419515 -28.429690 -0.018346 5.790603 17.273579 2.037776 -22.264287 9.542690 -11.022156 16.463881 9.704484 14.638794 5.811313 -2.784251 -12.365591 6.502788 28.523378 -10.087065 13.469329 -9.038799 -19.630262 19.808741 -2.611438 12.719691 2.866323 0.282733 4.441629 -15.476572 0.939420 21.473802 5.436397 4.562115 12.819120 0.496991 -3.823525 -26.375495 -25.644113 0.165879 10.849109 4.229096 32.281880 -18.358802 -9.961850 -5.796841 21.030035 -6.570148 -7.757568 1.214047 -5.506876 7.641596 -32.949839 -26.366924 24.823619 25.366413 2.651461 -0.543261 18.834005 1.453314 -5.039664 -11.888398 -14.272767 11.436736 5.401914 3.486920 -0.086286 -0.088015 -18.732836 -0.867532 2.147842 6.487023 12.618186 -14.430802 -8.013824 -3.118751 -21.321617 -14.913490 6.564962 -18.373711 -4.296894 2.766336 0.674427 -0.969566 6.259284 -4.205485 -12.894084 0.857674 -11.658568 -2.383502 4.698852 13.904219 3.062891 25.350208 19.416945 -2.668941 13.075255 5.478035 -10.435472 45.638121 -14.551105 -0.051813 -0.260247 16.996418 -2.441147 7.222795 11.903228 -6.147523 -10.177510 -18.144911 6.982015 -1.798811 7.170179 -28.234414 -13.363185 -23.992852 -5.121837 3.157757 21.169584 -0.124397 35.067831 -1.831947 4.290900 -37.132715 0.231514 14.428641 -1.560363 12.006285 11.051880 -16.426920 -29.262105 -2.033890 -11.452520 7.840662 -3.284185 -15.942224 -12.930148 -4.929826 5.771052 -6.111541 7.590342 22.489470 -4.630204 9.189066 2.994930 -5.002654 -2.496706 -9.750059 12.452132 4.929282 -13.401643 21.739514 -0.137737 41.486491 -1.563714 15.867086 -11.696985 1.832213 -0.377471 -9.826734 -9.288278 20.764243 14.514720 7.998023 1.683812 1.562614 -8.932798 11.359183 --2.140416 5.498418 21.778601 13.282372 -8.105975 -11.352433 -4.579126 -11.718327 5.459410 3.003086 11.008496 -2.316763 3.935699 4.208444 -0.138989 -4.608263 4.564950 0.645270 -0.293531 -4.348863 -4.981231 10.622126 8.898555 -14.280084 1.272150 -14.684714 10.516241 6.169641 5.566113 9.761928 1.016910 0.968666 -0.730888 7.484221 -10.601476 -4.175072 -2.240439 4.034908 -5.587289 -0.204778 5.165224 6.938346 6.438702 0.497958 6.089590 7.812745 7.814052 -0.859362 -9.498787 -2.412530 -5.423594 11.920267 -5.333035 5.721105 0.426828 6.680165 0.942990 -10.083808 -2.154192 -15.452693 4.120474 6.013927 -7.289159 0.463581 -12.170770 1.409894 -4.235438 -7.352396 5.229970 -0.474222 5.997812 -0.351091 0.961899 -9.534178 -9.145801 5.617863 -0.150788 5.328915 4.896336 -0.849612 -3.768308 2.970316 -5.312379 -7.524878 1.776879 0.924385 1.405078 -0.316123 2.796469 -6.062295 1.146834 -0.717370 -4.627996 9.950923 -7.163803 9.294220 -4.851363 -2.391556 -7.080195 -5.955376 -1.595674 -10.006779 4.629673 9.580374 -5.326233 2.536919 -1.139510 3.764048 1.089841 -11.642759 -0.471653 -3.766006 1.185147 10.071622 -6.827335 -3.748666 0.275186 -0.179277 0.300436 10.809582 -1.767636 3.665617 10.167504 7.593788 2.376191 -7.782546 2.300671 2.178033 3.434929 7.287824 8.385298 -10.375702 -6.045982 -2.345427 -0.262853 -16.854646 3.062972 4.986158 6.410323 1.041923 -14.200012 4.149332 -5.611556 11.081019 7.158286 9.715714 4.155032 -1.469066 -4.503939 4.118959 19.721845 -6.610275 7.025438 -4.427742 -13.267148 13.583950 -3.406071 9.777460 0.512850 1.979535 4.538905 -10.197300 -0.546843 13.870087 3.570738 3.157680 11.473890 -1.203914 1.617602 -16.240248 -13.217000 0.549488 4.547628 0.832908 21.044120 -9.020408 -4.650788 -2.822976 10.442631 -2.582709 -3.406754 -0.849315 -1.935323 3.283115 -22.260135 -16.617641 12.789425 13.486596 -0.551614 -2.481197 11.545508 2.963844 -1.544218 -8.024240 -8.236740 6.846488 0.317073 4.569555 1.023919 0.698233 -12.440985 0.251820 1.562693 2.721082 9.346094 -9.093338 -8.362307 -1.681838 -15.148825 -9.111281 3.532942 -11.354760 -4.211969 -0.216741 1.207572 -0.481558 2.402373 -3.931770 -7.092521 2.720009 -7.345236 -3.341399 2.790783 8.125477 1.763174 15.925230 10.704016 1.597279 5.845647 4.894852 -5.983496 30.438010 -6.071915 -2.078063 -0.190540 9.510219 -2.824648 4.353587 4.650780 -3.350266 -8.308606 -11.068931 6.319634 -1.381439 3.476215 -16.224133 -6.847091 -11.015391 -4.187777 3.806773 12.586400 0.745960 22.385947 -0.947812 2.005954 -21.107227 0.448389 8.853056 -1.729621 8.963841 8.155627 -10.397999 -14.977841 -2.527313 -3.751276 8.094188 -2.251534 -11.787900 -7.692429 -1.743211 1.625629 -3.923400 6.052779 13.720625 -2.873171 5.257322 2.827058 -2.654024 -0.906192 -4.467141 6.565345 4.563451 -9.574268 13.183139 -2.881344 24.951612 -3.588158 9.407083 -8.426700 0.127047 -0.414832 -3.243986 -4.437234 13.078086 8.340710 5.450128 1.564265 0.834210 -5.904966 6.125600 --1.820318 5.907995 23.904734 20.626142 -14.275613 -19.588452 -4.891447 -12.984455 7.324408 3.082917 10.933138 -3.718746 4.004824 2.029644 -1.274371 -4.123307 5.527720 5.672756 -0.325875 -5.033561 -12.174915 13.846812 9.908549 -17.203659 1.586634 -14.072413 15.009715 11.715535 8.828709 11.152596 1.101101 0.796545 -0.360225 8.556093 -12.327728 -5.096020 -7.226250 3.823181 -9.169435 -0.379819 4.618478 -0.856149 11.374195 -1.972704 6.592433 7.416730 14.095731 -1.104199 -16.042050 -2.426271 -10.308249 14.339411 -4.861261 7.413888 1.935973 4.807260 4.737609 -11.225693 -2.261284 -15.508424 4.291162 2.251799 -11.514254 0.874395 -18.131194 1.369130 -8.819191 -13.685137 7.150692 -0.994829 5.721760 0.583260 1.463595 -11.474076 -14.693437 7.917625 2.123492 6.134184 5.182003 2.638564 -0.065454 3.145517 -9.138871 -8.240027 1.498268 -1.251517 1.984210 0.026830 -0.996466 -12.595053 2.180733 -1.086441 -4.711929 10.385993 -8.236882 14.511512 -7.129478 -3.219530 -12.024476 -16.026133 -2.269777 -11.043685 5.542344 8.963484 -6.191847 4.861170 1.718472 4.875685 2.775491 -17.406642 -1.297384 -7.585394 2.769782 14.579390 -6.862225 -4.838542 -1.476201 0.993456 -2.255204 11.565765 -2.400849 5.124150 11.909678 7.751067 3.807974 -9.525843 2.183815 3.032803 3.763608 7.741952 9.896783 -11.228103 -7.039644 -3.235621 0.916326 -22.618971 1.138224 8.956313 7.542844 1.744799 -13.621825 4.329675 -5.659255 13.285547 6.107737 11.868805 4.631914 -1.722507 -5.381893 4.674213 22.069318 -7.616090 6.748832 -6.812535 -19.632354 18.918935 -1.457117 11.262039 -0.377656 1.869152 5.614291 -12.125318 1.165624 15.556101 2.743546 -2.363253 16.782194 -1.281905 -2.080097 -19.719137 -15.443098 5.346367 6.890671 4.745551 27.960079 -13.221840 -6.297952 -4.069150 11.589387 -1.615775 -2.102597 -0.675273 -4.924562 3.991365 -31.977934 -24.008353 15.473401 12.307804 -0.072067 -1.935903 12.362764 2.875995 -2.684069 -13.609507 -12.516723 7.386329 1.247273 2.512780 -0.194634 1.392208 -17.509791 4.630644 2.857438 2.935683 14.976344 -14.099651 -7.890905 -11.846434 -18.326363 -15.143504 5.457879 -12.997098 -2.674422 0.294931 2.221620 0.576038 5.068458 -0.534338 -8.067772 -1.124147 -6.468401 -3.678413 1.728108 10.305317 0.783433 22.452918 16.353761 2.209301 9.400022 5.166972 -7.868061 43.546980 -11.177995 -2.240077 -0.375778 13.271801 -3.341460 4.958131 8.860397 -4.292908 -7.480596 -12.839428 5.855146 -1.816574 2.777100 -25.069426 -8.047422 -20.037859 -5.093709 3.203472 15.819967 2.124820 24.603742 -2.963324 0.935151 -25.261018 0.235586 8.707385 -0.940396 17.115694 9.313534 -17.115481 -13.618925 -2.895106 -4.985743 13.276344 -3.757406 -14.091861 -8.952467 3.474751 -2.736383 -3.900932 7.344966 17.317437 -7.066693 6.704409 2.754513 -2.498571 -1.875419 -5.992681 10.399243 4.990484 -9.945281 17.861874 -3.023400 30.881448 1.644363 9.884781 -10.109218 -0.665140 0.433107 -5.742828 -5.734771 14.658386 8.116364 5.960949 1.099031 4.215422 -7.799889 8.152306 --12.112574 18.351113 78.834464 38.772192 -38.754751 -64.754186 -19.555774 -89.657889 44.782493 23.214133 64.919408 2.206325 44.008695 -16.497658 -0.143663 -2.963812 39.437295 -0.830046 -0.594613 -27.465962 -17.624770 70.380906 12.602318 -27.285094 14.060540 -51.972788 40.098786 24.051071 33.306932 47.133910 13.123673 0.996587 -16.220200 26.798571 -21.138010 5.765231 0.816009 24.300178 -36.258172 -11.234530 12.889055 -10.937367 49.026765 7.298757 43.814112 8.807475 26.051558 0.291167 -37.768402 -24.592243 -19.821504 39.251465 -28.383726 33.747890 -5.800165 -6.690155 13.096113 -13.034703 3.273377 -45.293372 8.413652 -9.771075 -30.048500 -2.521336 -40.616559 7.373769 -22.375949 -34.303279 1.662454 -26.415419 28.015598 0.987965 0.479325 -14.257815 -73.464262 9.817236 15.729922 10.969725 34.750996 21.366142 -6.651359 -18.337293 -37.687333 -45.488668 43.508143 24.294234 13.208847 21.981407 -39.337749 -16.567790 3.427773 1.568757 13.263313 36.259365 -42.021424 18.160973 -7.100576 -20.357127 -22.364406 -60.493364 9.169954 -36.536865 16.664080 16.307202 -14.334670 6.350712 -13.481234 16.789987 -15.589284 -45.434016 17.398899 -24.697078 -10.018282 58.274745 -24.060177 -26.871275 -22.272207 -4.192818 6.565969 38.132949 8.650834 14.106667 44.044517 33.370458 31.276130 -47.167756 -8.622421 26.004987 27.399211 24.500328 18.502785 -33.614753 -27.271822 16.545640 -34.101965 -84.820584 -23.119250 31.038891 50.809688 -6.012139 -37.202377 19.335792 -28.834907 36.339322 44.941220 22.524994 17.370126 7.844521 -40.000442 18.625195 67.639325 -26.288981 36.077466 -15.922261 -34.702872 47.506437 -16.278609 26.702755 -3.429515 -6.559699 -1.003034 -29.962405 5.593150 59.724272 10.817782 16.819692 -0.332837 14.277527 -29.169175 -66.253793 -86.727400 -10.220988 58.803658 28.245080 75.566107 -46.138524 -24.112112 -1.727079 47.918579 -10.150248 -32.055841 18.917344 -29.823837 30.549775 -98.949291 -71.022396 89.588296 71.706879 30.482133 -5.692511 33.985921 20.415377 -34.713953 -37.765623 -33.137267 26.678836 8.994348 -46.532317 -17.533792 8.028632 -61.771872 -12.442133 2.900654 12.840764 20.470584 -16.523025 24.504196 -15.724196 -30.996885 -31.988534 32.592277 -32.798957 -17.227615 -5.005257 0.836220 5.724077 24.384521 -15.440155 -14.526796 11.472529 -36.705571 -6.848973 5.507702 31.611942 9.942669 77.977409 69.664111 -16.272573 27.678924 -0.465241 -38.284367 96.705790 -37.959421 4.789161 -1.412256 34.373176 8.194156 23.690612 44.086148 -23.729749 -30.091903 -58.503130 -9.805275 15.291514 29.542137 -46.148831 -46.310571 -72.220714 0.301652 -3.283427 68.905176 -4.863490 97.535864 -26.774103 19.091980 -94.403051 6.802867 32.032292 -9.970039 41.450913 21.945914 -42.562610 -49.604366 -14.103502 -47.267790 -11.343305 -5.650645 -31.990146 -30.880926 -25.972193 28.143964 -35.722254 12.097528 36.909768 -11.506447 47.997874 -4.140889 -4.919469 -30.183195 6.224081 37.844072 7.164977 -37.998436 47.485992 7.817980 116.055094 -7.310317 36.958778 -27.551712 21.175512 -16.605311 -47.388440 -28.263127 62.910281 59.756469 22.483194 1.120438 6.591557 -10.389430 40.425319 --3.277338 6.043732 25.002545 14.872501 -11.993013 -17.178033 -7.191463 -21.163923 10.290563 4.127814 17.012596 -2.224489 6.875518 2.844309 0.403741 -3.157791 7.877842 -1.094688 -2.152700 -7.412743 -6.738828 16.892023 8.183101 -14.021463 3.123877 -16.862377 9.562200 8.217468 6.996394 11.523742 1.951849 -0.284730 -2.761128 8.714756 -10.956457 -1.363356 -0.116249 4.263318 -9.443281 -2.556668 6.142894 3.138451 12.744108 0.087172 10.496871 6.215734 10.029425 -0.180236 -12.899460 -4.923636 -7.379098 16.409027 -7.237538 9.023111 1.318964 4.777801 2.694923 -11.895692 -2.416389 -14.406097 2.305394 2.962212 -8.912819 -0.658554 -12.270611 2.363458 -3.832862 -9.432676 5.996799 -6.017090 9.103510 -1.308552 -0.280483 -7.511265 -14.595419 5.292263 1.933812 5.634682 6.753198 2.325072 -1.489464 0.430037 -8.699064 -10.282695 6.205559 3.281550 3.111873 2.073558 -4.255499 -5.385592 2.098405 -1.571237 -1.512282 11.506262 -11.376768 8.395826 -3.313209 -5.948318 -11.181348 -11.563238 0.550023 -11.073829 6.391032 8.037794 -6.292546 2.811201 -0.760933 4.676074 -1.364455 -15.713707 1.616333 -4.015789 0.171537 15.167953 -9.260306 -6.328758 -1.432164 -1.442260 -1.588135 12.400783 1.074537 4.638851 13.116536 10.384111 6.570006 -11.793289 -0.751998 3.162223 8.093343 8.435341 9.294774 -11.661148 -7.578461 1.517856 -5.158768 -23.449345 -2.015823 8.426608 14.352478 2.614902 -15.427635 5.246928 -7.256810 13.151976 8.962836 9.679667 4.802812 -0.895051 -9.909654 5.048052 22.948366 -8.209686 11.632613 -6.565475 -12.904707 14.665351 -4.648387 9.879754 1.841416 0.975906 2.836278 -11.600826 -0.124549 16.937169 5.091934 3.568270 7.050236 1.738658 -5.167921 -21.565023 -22.392476 -1.392322 9.732304 3.055587 23.343551 -13.162071 -9.015636 -3.313370 15.880088 -5.362433 -7.462793 2.812940 -7.031204 6.739822 -25.981929 -20.329315 22.033941 21.029152 4.008919 -1.010684 14.335598 3.855705 -7.744310 -10.009666 -10.408368 9.324537 3.737411 -3.509884 -1.267374 -0.471083 -15.851022 -1.649846 0.712606 4.657519 7.267921 -7.867415 -0.597115 -2.300021 -15.622602 -9.918058 6.881967 -13.344213 -4.462581 0.510213 0.877182 -0.441252 5.771245 -4.503749 -7.697277 3.215418 -10.708984 -2.150588 3.671148 10.105401 2.750320 21.257992 16.817311 -1.428749 12.841820 2.581842 -9.676773 33.158349 -11.280547 -0.276728 -1.529425 11.562281 -1.611137 6.062403 8.956662 -5.420462 -10.346850 -14.387671 3.581859 -0.545116 7.156774 -17.650606 -12.808707 -18.291163 -3.766560 2.506855 16.941369 -0.356831 27.814024 -4.426642 4.513835 -30.670784 1.181948 10.633594 -1.558573 9.926360 7.854285 -12.655032 -20.149843 -2.013548 -9.852309 2.448263 -2.139247 -13.736577 -9.637174 -7.709473 7.837301 -7.955914 4.740863 15.346761 -3.198848 9.871526 1.735825 -3.679433 -4.046499 -4.013174 10.852411 3.501881 -11.288324 16.322504 -0.305276 34.526309 -2.075930 12.083992 -9.398264 2.706312 -2.204753 -9.122357 -6.866191 17.192326 14.146726 5.519992 -0.150484 0.856149 -6.708694 8.651071 --0.284929 12.359671 38.163444 23.173639 -17.764245 -20.716891 -8.837407 -26.509427 12.841698 6.920300 19.138908 -4.471651 6.825984 7.285961 -3.192526 -4.755366 9.156072 1.293485 -2.875371 -10.719287 -13.945862 19.746549 12.347799 -22.214472 5.105007 -27.616068 20.649337 8.091503 11.907772 16.276262 4.406388 1.263108 -1.306300 15.266531 -14.655695 -5.039042 -4.234499 7.642168 -12.088150 0.648001 10.844860 8.732111 14.550432 5.381249 11.156584 15.382239 13.005608 -1.532653 -17.729723 -3.200663 -11.086700 20.586673 -10.815308 12.861970 -1.715384 10.458864 1.991646 -19.015268 -1.499913 -18.830415 3.798749 6.322067 -13.394557 0.348572 -22.549383 2.245739 -9.576219 -14.995052 6.356465 -1.841498 13.287130 0.513663 -0.183566 -14.967497 -19.461894 9.776384 1.079629 8.801510 12.230447 -0.751946 -4.334181 3.160378 -13.218901 -16.449040 7.812878 2.741440 3.515682 0.508377 4.191892 -14.542466 0.561684 -2.084864 -4.265491 20.324307 -14.729279 15.125850 -11.153677 -6.591585 -14.295595 -16.333861 -2.443201 -18.357346 10.020355 12.559215 -12.158584 7.017771 3.566787 6.679522 4.522274 -19.625945 -0.474588 -5.623664 3.468977 22.123225 -8.678939 -12.097232 0.081914 -1.807330 -1.425315 18.217688 0.972029 4.681742 24.395276 12.886818 8.680423 -14.401950 2.658085 3.343895 3.493679 12.745655 17.036376 -18.260113 -12.847715 -1.838968 0.310292 -31.962919 4.318047 7.709100 14.821439 -0.687317 -22.113152 7.466080 -10.423328 14.983272 12.075263 14.715384 9.750695 -3.852046 -9.597054 6.391969 36.154186 -11.636837 11.825568 -12.893727 -20.363712 23.120769 -5.153303 15.286376 -1.040516 1.979628 6.751990 -19.125272 0.016039 26.190020 2.500504 0.938693 20.268306 0.369134 -3.551554 -28.741901 -24.484498 -0.130275 9.867454 2.032640 35.292945 -18.162052 -6.167326 -6.205199 19.752571 -2.532400 -3.992298 1.339731 -6.095344 6.764962 -36.330163 -29.716517 26.314196 25.112682 0.972121 -6.470405 17.185318 4.906443 -6.200451 -18.156660 -16.346897 11.198052 4.281848 3.111886 -2.978343 1.398383 -21.979530 -0.188983 4.006796 5.956354 19.100749 -16.127392 -9.995875 -4.604310 -25.121333 -19.648331 9.687014 -19.839365 -6.326890 1.394381 2.949159 -1.939204 6.890565 -4.552282 -13.336335 3.649534 -10.321211 -5.059792 6.360873 17.024056 0.802132 27.476783 20.737398 -0.263319 11.454574 8.378547 -12.204948 51.973394 -12.951820 -2.283813 0.286427 16.085207 -6.213137 9.052144 10.444174 -7.531989 -15.331460 -20.241069 9.509213 -3.779662 4.450953 -26.098774 -10.086914 -22.703339 -7.000265 2.465858 22.992519 2.604916 39.649966 -2.485891 4.331028 -36.567731 1.012488 17.650249 -2.919768 17.752447 15.595035 -19.786365 -22.244266 -5.572059 -10.326593 10.906980 -3.600252 -17.687682 -15.841796 -2.530886 4.246247 -7.119043 10.580311 25.099515 -4.447494 10.178438 -0.483165 -3.699819 -4.315491 -7.546201 16.949739 7.326325 -17.139352 22.347812 -3.981896 44.493291 -3.069382 17.078006 -15.049978 -3.899155 -0.836275 -9.350598 -11.401066 24.783237 13.415828 10.845957 3.060594 -0.082522 -8.396724 14.247229 --3.526308 6.722846 26.970014 19.717348 -11.640683 -14.530605 -5.898454 -11.085184 6.096027 2.825772 12.393576 -2.745802 3.341942 5.570119 -0.515408 -7.503523 4.377335 2.542218 -1.492116 -5.052740 -7.483213 12.639538 14.119571 -21.785739 1.571196 -16.559054 13.707402 8.818117 6.914726 12.557215 -0.201245 1.495537 -0.243825 10.262245 -14.484215 -6.972236 -5.644605 4.623973 -6.209746 -0.540202 8.260982 9.224457 8.038251 0.495194 6.526075 11.145986 10.873853 -1.911750 -14.218080 -2.743607 -6.803741 14.377575 -6.926523 7.926606 1.001434 10.626137 1.748346 -13.834289 -2.548627 -21.494871 6.651587 8.072284 -9.551290 0.393628 -16.418143 1.394589 -5.669517 -10.267218 7.745063 -1.315856 7.347974 -0.688812 0.654976 -14.068114 -9.289353 7.823177 -0.421357 6.808456 5.757206 0.187284 -5.350911 4.593474 -6.191313 -8.725168 -0.806996 -2.353960 1.445728 -0.533193 5.506660 -10.023936 3.003454 -0.842926 -7.440606 12.688457 -8.756108 13.381275 -5.899367 -2.429599 -8.853088 -6.192252 -2.959037 -12.795178 5.809115 13.218299 -7.570240 3.439535 -0.316248 4.788477 2.671512 -15.676616 -1.654171 -3.891823 1.799967 11.708777 -8.387086 -4.131865 2.055908 0.294999 -0.123483 14.317856 -2.597675 4.660718 12.760001 8.755655 2.089015 -9.106438 4.695423 1.453638 3.718031 8.948863 11.523283 -12.422523 -7.748654 -3.606001 1.500311 -20.239991 4.934107 7.428923 7.532728 3.257743 -19.075481 6.148929 -6.691771 13.530094 7.638664 13.087443 5.313970 -3.142517 -5.126987 4.700738 25.077860 -8.544733 8.012587 -5.092125 -19.674378 19.402122 -4.317953 12.732807 0.467581 2.674584 7.050642 -13.426530 -0.286213 17.547392 4.173196 2.447346 17.455411 -2.758323 2.540661 -20.571984 -14.887628 1.512332 3.748440 2.183174 27.268713 -11.177501 -5.020241 -4.415777 12.907346 -3.011283 -2.720078 -2.709640 -1.449480 3.466871 -29.254863 -21.134434 14.648183 15.634664 -2.062314 -2.594910 15.094509 2.785853 1.407736 -10.602813 -11.457715 8.343682 0.878677 10.944168 2.362603 0.500372 -15.906453 1.760524 3.162874 2.950734 13.052466 -14.506028 -14.091785 -3.681863 -20.578426 -12.680917 2.974889 -15.294953 -3.793474 0.059167 1.504326 -0.952314 2.424604 -3.452588 -10.409313 1.248682 -8.226974 -4.643882 2.749261 10.892839 2.694463 19.298193 12.597228 1.845288 6.436328 7.518556 -7.223882 42.390801 -9.082854 -2.958659 -0.044504 13.656634 -3.761980 5.238460 4.643412 -3.696403 -9.061227 -13.380183 9.555545 -2.096958 3.037461 -25.599000 -7.656693 -14.500219 -5.770822 4.649280 14.557472 0.993774 27.906386 -0.728439 1.479222 -27.070635 0.264922 11.632638 -1.976864 12.452644 11.008026 -13.774699 -20.768220 -3.460564 -2.752551 15.411875 -3.123734 -15.235554 -9.195955 0.620380 0.536781 -4.092793 8.673093 19.052489 -4.756452 5.613346 4.157242 -3.452268 -0.097582 -8.313876 6.810888 6.433799 -11.575492 17.404991 -4.050228 29.361090 -3.631546 12.264631 -11.182206 -0.711623 -0.224962 -3.457436 -5.763483 15.998133 9.353656 6.741382 2.942661 2.430407 -8.481858 7.105268 --5.871034 8.190062 38.499219 26.437472 -13.589602 -17.375579 -9.344568 -17.133035 9.889056 5.414767 19.799713 -3.954694 4.521291 10.410669 -0.164950 -10.798478 5.425772 0.575548 -1.651314 -6.635768 -7.283801 17.028173 20.288041 -29.162138 0.658212 -23.026150 16.138928 10.981305 8.892067 16.955590 0.037154 1.217823 0.900501 14.104088 -20.481494 -8.537853 -5.337615 7.183148 -8.087169 -2.723172 10.883475 13.481695 11.398675 1.427229 11.323202 13.140376 14.630978 -4.294725 -19.005059 -2.880884 -10.264531 21.893026 -11.398331 10.218408 2.162374 15.406319 1.153105 -20.567553 -5.493231 -31.156944 8.386675 13.422833 -12.998440 -0.046158 -20.576150 3.220787 -6.384524 -13.101783 10.173029 -2.225803 12.012973 -0.207581 3.097284 -17.193973 -13.530572 11.783648 -2.089633 8.293982 7.453758 -1.323724 -7.946012 6.698317 -6.500718 -12.062305 0.714889 -1.887732 0.541436 -0.977580 8.799230 -10.696449 2.617993 -1.437519 -11.898719 19.175992 -11.652033 20.726374 -5.595993 -4.349088 -10.900696 -6.478451 -4.402403 -19.989268 8.261093 18.855496 -9.829147 5.699303 -1.563776 7.864896 1.835399 -22.254270 -0.637476 -3.393425 0.866241 14.597285 -14.120123 -5.263831 4.572144 0.987304 0.753794 18.873565 -3.531092 8.381718 16.129094 12.633198 3.480637 -13.900159 6.911959 2.684503 7.282704 13.242838 15.279211 -16.789399 -10.447606 -4.940523 2.773764 -29.031691 6.777816 11.400146 10.983679 4.622126 -28.080902 6.677405 -8.931810 19.991520 12.787862 20.357008 7.476357 -3.288038 -8.319049 5.787534 33.915224 -12.341897 13.632401 -6.069613 -24.897128 24.104150 -8.961159 19.626401 -0.011275 5.696516 11.923111 -21.071836 -2.619554 24.888436 7.810386 5.246397 21.424742 -3.638536 3.416260 -29.141788 -21.610566 -0.954374 5.701929 2.219117 35.320670 -14.583346 -10.084105 -5.421144 18.130579 -4.166322 -4.949645 -3.061561 -1.912023 5.320094 -41.774751 -29.197120 20.734380 23.102656 -0.974211 -3.792506 21.047937 3.966144 1.864378 -14.958453 -14.417936 12.867823 1.032224 14.740452 3.077416 -1.157421 -20.383391 1.083770 3.245654 3.769848 15.003009 -20.028459 -17.511747 -0.200258 -27.005055 -14.820170 4.197080 -22.339752 -9.086647 -1.310574 2.928452 -0.950445 2.220738 -5.489815 -13.336005 4.436631 -12.531026 -6.686254 5.668447 14.815457 3.581472 25.368076 18.208376 3.004563 10.002334 9.705168 -10.133967 55.996107 -14.352885 -5.567263 -0.355667 17.013488 -5.994429 7.181035 5.848093 -5.431739 -13.663777 -17.688851 13.989000 -3.788796 7.004655 -31.331401 -13.556131 -16.743441 -7.156945 8.479801 20.136557 1.167140 39.459078 -0.593212 4.137839 -37.457985 0.137852 17.382746 -2.384393 17.001224 15.791941 -19.311264 -30.696884 -4.781853 -3.896906 20.419172 -3.866853 -22.073457 -12.890845 -3.064073 2.357043 -7.284827 11.845051 23.907759 -7.055533 9.242061 6.012313 -6.127132 -0.288360 -10.170161 9.842161 9.588463 -17.217925 24.592408 -6.708035 43.136445 -6.853093 17.544562 -16.767635 0.398868 -2.069795 -1.622187 -7.069261 24.157592 14.660918 10.008677 1.582980 1.303866 -13.216878 8.385608 --2.747296 4.960477 18.584625 13.494515 -8.673404 -11.344387 -4.590541 -10.450797 6.361319 1.989932 9.724239 -0.331428 3.702294 1.823403 -1.431793 -5.160567 5.471849 0.592609 -1.705716 -4.987286 -3.934899 13.410620 8.066465 -15.411577 2.279219 -13.541428 10.541531 6.114766 5.895940 11.288447 0.505202 1.621187 -0.361083 7.758105 -9.011342 -4.984072 -2.263534 4.253862 -6.086504 -0.986426 7.158223 6.035967 9.113418 1.119463 5.184076 7.180878 6.328253 -0.904779 -9.242793 -2.491830 -4.217946 7.804338 -5.627851 7.506340 -0.873216 4.979360 3.050024 -8.619993 -1.118149 -13.556140 3.169840 4.801923 -5.524158 -1.226002 -11.096360 0.962282 -1.835947 -8.118012 5.183449 -3.234267 6.249294 0.605828 0.511390 -9.296771 -9.856536 5.381195 1.553218 5.758927 5.461355 1.497765 -3.416711 0.833624 -6.099564 -7.745483 1.376743 0.139466 2.052502 2.104625 1.949897 -8.214439 3.258968 -0.141655 -3.716587 9.287111 -4.546685 8.357380 -3.862960 -3.034451 -4.838015 -6.056091 -1.394810 -8.535968 3.938822 8.441485 -6.226700 2.935516 1.396493 3.358720 0.933125 -10.699506 1.281708 -3.258546 -1.804627 10.225923 -4.276395 -4.803381 0.120173 -0.046161 0.085267 10.760144 -1.751700 3.473547 9.101388 7.529235 2.555834 -8.570306 2.071910 1.079392 3.905059 6.149213 8.802741 -7.708537 -6.283887 -0.714191 -1.207684 -15.874063 1.256048 5.625200 9.384106 -0.148092 -13.119824 6.426872 -6.772541 9.975754 7.020467 6.920663 4.695489 -1.567440 -6.359381 5.576522 19.044847 -6.358493 6.603794 -5.448251 -12.762410 14.884926 -2.153674 8.169863 -1.559806 0.422084 3.302393 -9.149737 1.859802 13.866537 1.888093 3.046996 9.778912 -1.020835 0.068858 -15.876055 -13.971026 -0.972923 6.181606 3.719381 21.463116 -9.363723 -3.498738 -3.083292 8.532993 -3.173396 -2.805013 0.489781 -3.153417 4.281324 -23.217139 -16.481682 16.538333 13.732429 0.862881 -0.165223 8.979574 1.795545 1.585283 -8.299448 -7.585804 6.331221 3.291581 3.238815 -0.418445 0.551500 -11.219152 -2.012429 3.038661 1.901287 8.897924 -9.963411 -6.331840 -4.043366 -13.527091 -10.165392 3.869424 -11.757985 -3.102477 1.488702 0.364389 -0.584730 3.067742 -0.340046 -7.243319 0.447703 -5.374533 -3.711348 0.480473 7.947517 1.896269 10.535653 12.798640 -0.463429 5.287945 6.024791 -6.835149 29.458729 -8.550309 -1.497992 0.258695 9.984246 -0.199010 5.210986 5.686977 -3.430412 -4.042861 -11.688550 6.392124 0.503770 3.393128 -19.596182 -6.321544 -11.253059 -2.930948 1.880465 11.501608 -0.410734 21.667362 -2.778784 1.439736 -21.791524 0.690897 9.192059 0.484504 8.205849 7.535550 -9.880383 -16.136633 -2.504165 -5.508044 7.857607 -2.760110 -10.594565 -7.138934 -0.860780 2.213153 -4.924862 6.219657 14.736388 -4.371507 5.882606 -0.325217 -2.813709 -2.938759 -5.703363 4.779228 3.726755 -7.012890 11.084830 -1.960606 20.578209 -2.792034 9.571290 -8.214709 1.528729 -1.215707 -6.211825 -5.573004 13.039025 7.355864 4.051329 3.821638 0.741340 -4.243472 8.067687 --0.610630 3.616416 11.554680 8.964520 -6.218054 -8.404248 -2.734886 -6.500280 3.244975 0.630291 5.450243 -1.115839 2.051370 2.180694 -0.606051 -2.686493 3.331039 1.490527 -0.790886 -2.841953 -5.467741 6.988516 4.162430 -9.177564 1.317367 -7.515306 6.843308 4.586818 2.963483 6.429419 0.348405 0.423063 -0.400681 4.536606 -5.980623 -3.462316 -1.739285 1.842040 -4.056326 -0.340088 3.518038 1.949540 6.435445 0.563141 2.133253 4.577021 4.568358 0.093649 -6.503924 -0.836848 -4.477500 6.144082 -2.602225 4.245626 -0.756845 3.485164 2.621700 -5.470273 -0.698846 -7.895845 1.517110 2.292152 -4.135726 -0.664235 -7.273937 0.207873 -2.719488 -5.725587 3.308482 -0.562653 3.433570 0.035891 0.187084 -5.991111 -6.532517 2.982314 0.844882 3.729583 3.070496 0.866660 -1.285447 1.398899 -4.746379 -4.279933 1.009210 -0.771580 1.718443 0.778244 0.560877 -4.965294 1.366713 0.017114 -1.687933 5.185720 -2.803854 5.437736 -3.538000 -1.489133 -4.987675 -5.473159 -0.874188 -4.729012 2.657290 4.895306 -3.395057 1.837196 0.665017 2.260438 0.875340 -7.270527 0.311890 -2.956614 -0.588123 6.062884 -2.630620 -3.389659 0.585006 -0.470897 -0.545623 6.313598 -1.284804 1.493604 5.333230 4.340117 1.728754 -4.467422 1.361631 0.237546 1.611109 3.889408 5.334601 -4.763234 -3.604217 -0.967512 -0.860592 -10.359749 1.541156 3.508867 4.791446 0.609791 -7.907904 3.159593 -4.052029 6.018861 3.426684 5.512722 2.859150 -1.143708 -3.214005 2.755487 11.100046 -3.838451 4.522037 -3.702744 -7.651427 8.387249 -0.797848 5.145639 -0.836362 -0.218840 2.746712 -5.069491 0.604832 8.052298 1.614148 -0.115098 7.213924 -0.749586 -1.048195 -9.594923 -8.056374 1.297653 4.162907 1.540697 13.153765 -6.196182 -2.933627 -1.803324 5.568423 -2.598030 -1.667207 0.279912 -1.515718 2.495171 -14.876247 -10.172755 8.845623 6.749925 -0.500592 -0.945657 6.064412 1.018050 0.155964 -5.621685 -5.325374 3.316917 1.692973 1.945573 -0.224753 0.154228 -7.111804 0.765485 1.973421 1.622271 6.244814 -6.362700 -4.268445 -3.662373 -8.971816 -6.168579 2.711733 -7.915684 -1.643955 1.488013 0.011275 -0.690567 2.209414 -0.210717 -4.680663 0.180159 -3.742514 -1.830021 0.257634 5.074886 0.494661 9.362717 8.342579 0.156546 4.063477 3.659746 -4.117183 19.198817 -5.405709 -0.397462 0.161826 6.392066 -1.179887 2.962521 4.353683 -1.953880 -3.936739 -6.905830 3.634705 -0.277679 1.791140 -11.453446 -3.711410 -8.387862 -2.380053 1.167323 7.783563 -0.271425 12.727500 -1.173502 0.833134 -12.854833 0.260807 5.515122 -0.146641 5.480958 4.506867 -6.410498 -8.708412 -1.218240 -3.277920 5.774223 -1.461808 -6.858310 -4.475499 -0.446220 -0.689865 -2.688455 3.938370 9.239887 -3.323384 3.245535 -0.202699 -1.590460 -0.818019 -3.528325 4.671648 2.171417 -4.533543 8.133424 -1.183643 14.667699 -0.350961 5.272529 -4.887320 0.235162 0.082323 -3.054359 -3.246047 7.531898 4.064875 2.701684 1.950510 1.383460 -2.605012 4.313111 --3.624536 4.670209 22.411649 14.788946 -9.412618 -13.327346 -5.782472 -12.627595 7.979008 3.477617 12.344979 -0.815639 4.618858 3.455486 -0.306543 -5.138367 4.960026 0.367464 -2.597790 -4.946165 -5.195030 13.420031 10.010595 -16.081742 1.877553 -14.603987 8.862547 6.780353 5.627352 11.359810 -0.172275 0.627527 -1.120937 8.083650 -11.618190 -3.200017 -1.893622 4.051652 -6.361537 -2.803104 6.839853 4.751087 9.907964 0.521096 8.052481 6.198267 7.624165 -1.737081 -11.803416 -3.634387 -5.915140 12.593007 -5.895259 8.067176 0.254809 7.769810 1.992895 -10.744844 -2.073294 -17.584134 4.206901 5.847742 -7.347335 -1.260333 -11.057788 1.288556 -1.922867 -8.875247 5.411125 -5.323575 7.193802 -0.853887 0.882748 -9.684930 -11.127366 5.225840 0.672222 4.889746 5.220440 2.997817 -4.416101 1.239826 -5.853174 -7.970089 2.386203 0.560719 1.316706 2.199596 0.105025 -6.681036 2.371209 -0.564115 -3.903204 10.566140 -8.839469 9.675168 -2.008059 -3.474334 -7.256225 -6.237140 -1.048611 -10.063372 4.554723 9.202345 -5.299282 3.153024 -0.402924 4.480766 -0.294448 -12.846109 1.556485 -3.558641 -1.386877 10.131870 -7.447768 -4.486856 1.668176 -0.452274 -0.533049 11.366683 -1.953544 3.897393 9.946510 7.439855 4.648025 -9.501490 2.553520 2.735013 6.424806 6.988227 8.045524 -9.326077 -5.715928 -0.477520 -2.224832 -19.863373 0.887134 7.474237 10.043486 2.712555 -15.503786 5.144599 -6.042210 11.524743 7.383948 9.760187 4.531574 -1.213147 -7.520795 3.278232 21.058807 -7.170374 9.228765 -4.615835 -14.107005 15.282872 -4.439173 10.994677 -0.155638 1.199472 5.421178 -10.890217 0.296230 15.194462 3.770069 3.267376 8.459547 -0.695490 -1.521624 -18.525380 -17.552245 -2.509319 6.521397 3.966492 23.050200 -10.517281 -6.861899 -3.966429 12.777049 -4.752222 -4.366282 0.475895 -3.550084 4.847751 -26.272005 -18.465083 17.305636 17.252997 1.824823 -0.516760 13.769914 1.783329 -0.543747 -9.201496 -8.218130 6.572158 3.540558 3.804921 0.712832 -0.643007 -13.465720 -0.668032 1.297903 2.270284 7.012018 -9.779972 -4.915169 -1.793986 -14.466803 -9.408294 3.352458 -13.591494 -4.184274 0.279684 1.808920 -1.366254 3.330762 -3.068929 -8.053641 2.366522 -7.920456 -2.325715 2.258634 8.140366 2.682301 15.848822 14.539899 -0.775061 8.552811 4.183123 -7.082650 33.236426 -11.190565 -2.041798 -0.432334 11.395402 -1.574354 5.226531 5.794461 -4.003301 -5.635549 -11.657969 6.200732 -0.773072 4.419832 -19.738232 -10.427774 -12.851603 -3.466418 2.465424 13.045793 -0.505187 24.557167 -2.677020 3.200294 -26.852156 0.752841 10.604190 -0.950979 9.154223 8.247587 -11.408315 -20.509276 -2.038305 -5.205662 8.715533 -2.193863 -13.171051 -7.068100 -4.309989 3.376024 -6.629378 6.567110 14.836230 -4.280821 7.724653 1.429578 -2.859799 -2.498182 -4.867278 6.393557 4.547671 -8.781344 14.192521 -1.845793 27.100087 -3.211951 11.254127 -8.694814 3.335468 -2.121773 -6.137853 -5.537374 14.490208 9.954243 5.371512 1.202869 1.153732 -7.017967 6.733193 --19.079771 31.660314 136.445302 60.257941 -71.248671 -105.792275 -34.427375 -147.279189 69.032167 37.810929 106.040771 -3.801085 64.185965 -21.045881 -0.657765 3.020625 64.162674 -3.715055 -5.643510 -48.135169 -35.058863 103.886464 22.888436 -45.714003 28.840385 -85.379300 63.841902 35.330405 49.790228 75.961022 25.743669 -1.621057 -25.052116 46.691854 -28.567694 22.690515 6.430467 37.947688 -62.865514 -8.818143 18.744591 -18.044578 78.073076 7.381525 78.280384 25.702784 45.025700 1.936496 -74.441880 -35.217522 -34.761723 74.484753 -51.215901 55.656566 -6.482389 -2.566926 11.753190 -33.828140 -1.481940 -74.579745 6.461931 -14.437420 -50.457578 -2.021538 -70.557481 10.511331 -34.121583 -57.643135 5.488223 -40.482043 44.469577 2.581172 -1.076018 -15.053850 -109.624823 19.204949 31.604329 23.383658 55.502590 23.054273 -3.107049 -27.950569 -56.755542 -72.464659 67.572910 34.914198 26.829408 30.272361 -56.178849 -23.979941 4.530416 1.608091 18.576943 62.369440 -72.981812 27.811094 -18.181640 -36.857273 -46.788473 -102.726547 12.994894 -59.635299 33.109861 29.118543 -28.096653 15.524124 -20.385291 35.230204 -21.713933 -71.846768 22.504803 -37.823703 -12.707473 96.871575 -40.157450 -47.366849 -34.522703 -8.499772 8.169365 60.816364 11.435638 22.473737 77.117578 57.043869 63.710310 -77.364159 -14.414349 33.715735 45.569925 43.977022 39.003339 -56.186076 -44.835153 23.967023 -57.018426 -140.790850 -37.090594 42.958130 83.647779 -7.127411 -65.353838 23.880623 -47.166288 66.691105 65.396244 40.413179 29.222186 9.113234 -65.253759 28.387161 114.979396 -45.525426 61.543602 -29.772427 -55.013595 71.056271 -20.296455 43.829392 -1.721578 -13.103126 0.564399 -55.119091 4.682742 97.667738 25.558478 23.434643 -0.689381 22.903388 -49.798630 -111.469694 -137.636450 -17.807083 89.320616 36.618709 124.985602 -78.469493 -45.625295 -11.442972 82.758924 -17.438783 -50.618945 27.227800 -51.694623 50.058446 -154.743245 -118.462599 149.880877 124.850672 52.740852 -7.891555 61.194324 29.532006 -71.847395 -61.329362 -55.791181 43.246970 14.513815 -78.456021 -33.572039 13.676456 -103.811899 -16.771816 2.160381 25.660674 35.702722 -19.068373 34.502646 -15.747804 -54.989351 -49.617726 49.656735 -57.893874 -31.230802 -3.854132 4.277718 13.709433 40.992739 -32.705970 -29.809378 17.181727 -65.978180 -10.233398 13.301461 60.646999 16.127526 129.391974 116.664065 -23.301546 54.506026 -0.852579 -65.581158 154.134747 -57.428785 9.411011 -3.397862 52.334472 8.874813 34.092717 75.331016 -39.750581 -54.797325 -93.247126 -17.177122 19.898907 49.237607 -70.919898 -80.387396 -115.309404 1.612020 -2.125074 110.568163 -3.555742 158.707733 -34.756468 33.414942 -161.138094 9.965968 55.786950 -13.251569 65.765597 39.636443 -74.049637 -92.135657 -19.198987 -79.808628 -22.894299 -9.614467 -47.556279 -52.450916 -42.682667 54.430369 -49.473744 16.156627 66.965697 -16.410158 81.508237 3.501103 -9.648940 -43.753476 2.865725 71.272247 14.203561 -61.432986 79.336165 18.310607 204.593361 -5.881129 58.485033 -45.280575 23.655651 -15.856929 -70.389115 -49.641517 101.999869 99.378834 41.809763 2.659490 6.051554 -21.231554 67.333422 --4.331936 9.221124 35.695697 23.847755 -15.376839 -20.231542 -8.661667 -19.571983 11.092877 4.507155 17.288624 -1.928987 5.797523 7.421619 -0.680288 -6.724588 9.019325 2.633134 -2.793787 -8.120475 -8.926026 21.940599 15.036270 -26.711587 2.358549 -23.673502 17.371241 11.247276 8.990959 19.197547 1.320394 2.155272 -1.083287 12.832453 -18.501272 -6.573971 -3.973105 6.448056 -11.133445 -4.052785 11.218414 8.000967 15.334435 1.282888 11.218278 10.390685 13.445537 -1.970628 -17.779130 -3.319191 -12.018651 20.575079 -8.509112 12.711655 -0.890793 11.104153 5.439637 -17.036207 -2.091177 -27.265701 4.696788 8.625525 -13.228618 -1.973056 -18.689806 2.083741 -5.245689 -14.863810 7.601526 -4.517683 10.344647 -1.174368 0.918230 -16.958791 -19.017074 8.558524 1.159381 9.322805 9.254586 3.300333 -6.333862 2.900990 -10.460419 -13.646595 4.706978 0.340173 2.327548 2.703829 1.474287 -10.888506 1.214507 -0.683538 -6.634835 16.981166 -11.255713 17.602034 -3.937243 -5.619442 -11.189877 -9.807821 -1.351654 -15.990018 6.674401 13.482247 -8.945767 4.279108 -1.365708 6.881610 0.732817 -20.156846 2.506816 -6.587328 -1.868359 16.697873 -10.134914 -6.894823 2.178425 -0.582026 -0.429615 19.519816 -4.111926 6.777133 14.922064 12.488253 5.447470 -14.353516 4.114628 3.770762 8.481641 10.628200 13.155932 -13.954316 -10.733195 -2.345579 -1.066511 -28.047586 3.088190 13.781421 14.552799 3.505553 -22.492513 7.491933 -9.172588 18.140111 11.576122 15.837996 6.635982 -2.263671 -11.415247 5.667279 33.963649 -11.608498 13.828208 -9.225056 -22.955237 24.505542 -5.405314 17.388532 -0.830195 1.656039 7.922818 -16.450833 1.370041 24.904134 6.009672 2.969929 16.860724 -1.916448 -1.040595 -28.601272 -26.344422 -1.650774 10.049361 4.938385 37.172120 -15.384306 -9.465991 -5.467140 18.154964 -6.240486 -5.555004 0.231174 -6.014045 7.519278 -42.537846 -29.299287 26.964472 22.811083 0.277096 -2.512659 19.233951 4.780659 0.268182 -15.283620 -12.276660 11.149125 4.368870 7.627822 1.349942 0.171582 -20.119903 0.289449 3.637548 4.087480 12.909952 -17.313018 -8.408696 -5.628806 -25.091155 -16.190839 6.314545 -22.188025 -7.512367 1.850911 2.448088 -1.460758 5.240687 -1.924163 -11.717039 4.080391 -11.636759 -4.679253 2.364473 13.467451 3.196473 23.887979 23.696564 0.334783 12.825024 8.398464 -11.187156 53.569411 -16.490125 -3.283979 -0.037455 16.296172 -2.560377 7.989526 10.114707 -5.763388 -9.935803 -20.087727 11.375058 -1.202885 6.649973 -33.095976 -13.974138 -20.754702 -5.833822 4.653345 21.302025 -1.709410 38.955204 -3.965999 2.709001 -40.910587 1.526996 16.583035 -1.328940 14.514373 13.309213 -18.322812 -29.244636 -3.599381 -8.518210 15.764643 -4.094137 -20.370557 -13.015861 -3.652665 3.163218 -11.431992 11.939599 24.223834 -7.331565 10.546508 1.853356 -4.505439 -4.066673 -8.243264 11.589601 6.107398 -13.871180 21.704336 -4.293736 42.312836 -5.120150 17.191903 -13.869777 5.332253 -2.374853 -8.591004 -8.828156 23.468543 14.127061 7.480010 3.420338 2.857924 -9.563945 11.484206 -1.015945 3.027085 8.815897 4.351549 -1.501526 -5.536852 -1.535247 -8.312356 4.885161 1.246527 4.257423 -0.519372 2.760197 -0.342152 -1.757387 0.568916 2.824787 -0.185436 1.347157 -1.733401 -0.122914 10.732069 1.536252 -3.816888 0.970263 -9.397025 3.922628 2.192509 6.853195 5.601018 0.956554 0.197617 1.232801 2.937624 -4.085330 -1.533165 -0.289794 2.309930 -5.308882 -0.334492 0.337379 2.432833 4.257311 0.666431 3.088474 0.769059 3.781001 0.190590 -0.669654 -0.066388 -3.493817 4.861952 -2.173334 2.894047 -1.177191 -0.631356 0.364972 -2.025262 -0.906379 -2.544126 0.195486 2.917737 -2.810583 -0.438250 -5.404305 1.131413 -1.932668 -2.682900 0.901296 -0.270636 3.788909 2.588225 2.142010 -4.097948 -9.167434 2.969572 0.366871 2.265849 2.705474 0.891985 -0.239111 0.441298 -2.843299 -4.866901 4.011476 4.921732 0.089045 1.074656 -0.495200 -4.239318 -0.928109 -0.679404 -0.690803 4.132309 -2.186061 4.504538 -3.315069 -0.749826 -0.293955 -4.828124 -1.363592 -4.214182 0.907136 1.631687 1.055490 2.245577 2.562982 1.315576 0.505036 -5.193794 1.523573 -0.716517 -2.243801 7.227011 -1.435651 -1.725292 -0.915728 0.983161 -1.917791 5.067373 -0.610519 2.818739 4.036585 3.255745 1.515831 -3.833167 0.281364 2.931498 1.942008 3.023607 3.290702 -3.936766 -2.992430 -0.332857 1.429611 -8.761937 -0.406434 3.669083 4.010733 -2.961106 -3.452602 1.723034 -2.380307 5.695903 4.850089 0.258619 2.798390 0.260024 -2.700147 4.281661 11.532860 -2.654064 2.856892 -5.060674 -4.660957 6.726692 -2.425371 4.551124 -2.844873 1.015667 0.753510 -4.434345 1.517717 6.778631 -0.053553 1.907532 3.522925 0.044163 -0.648492 -7.599500 -7.466327 -1.295857 3.345980 0.539996 9.712887 -2.895448 -2.225922 -0.753471 2.920962 -0.397080 -0.115315 2.155915 -4.107940 3.009341 -11.030492 -8.849388 9.576679 7.495147 1.647940 -0.998384 3.356471 3.432488 -1.011656 -4.969375 -3.077400 2.855614 1.910769 -4.237522 -2.559952 0.159243 -5.587552 -2.350643 1.312625 -0.092896 3.852556 -1.118608 0.148629 -3.445056 -6.584449 -4.290748 4.547838 -5.395647 -1.575487 0.474663 0.822718 -1.080373 2.142204 -0.840040 -0.807024 2.608093 -2.231488 -1.386677 0.303205 2.592470 0.182564 4.407249 7.761453 0.720979 3.933440 2.901742 -3.525513 11.885286 -3.324837 -1.602234 0.587698 1.905799 -0.900062 3.344642 1.913532 -2.116076 -2.678828 -6.051885 2.942631 0.493261 1.494855 -4.016872 -3.540913 -3.767227 -1.839052 0.935584 5.927691 1.264480 10.374287 -3.504701 0.682317 -10.858767 1.037365 3.591433 0.610933 5.087263 3.026586 -4.174252 -4.792560 -1.492702 -2.475403 0.065826 -2.216093 -8.065809 -3.510909 -3.208376 2.755743 -4.044417 2.793150 6.794476 -1.151396 4.774250 -2.743451 -0.962773 -5.097291 0.204645 2.779258 1.169206 -3.289334 2.988771 -1.767456 10.922725 -3.082087 3.814561 -4.115429 1.196645 -1.677954 -4.405134 -1.955305 6.584696 3.573218 1.156743 1.042494 -1.277641 -1.203850 4.292007 --4.969233 6.261095 30.341215 18.254954 -13.347527 -18.740315 -7.626764 -24.541519 14.560511 6.438148 21.035891 1.332397 11.961328 -1.703503 0.102739 -3.569428 11.057056 -1.228624 -1.695278 -8.638415 -5.570240 26.197095 13.653814 -18.013524 4.351669 -21.426162 13.223902 7.657076 12.463156 17.673027 1.237410 1.460806 -1.891610 11.161508 -12.744825 -2.451812 -4.749884 8.022491 -11.699720 -3.454145 8.926487 2.334778 15.459053 2.117323 12.779995 5.749324 11.778789 -1.909282 -14.455097 -7.406473 -8.697515 16.873833 -10.492623 12.645498 -2.649753 4.689158 3.566288 -9.136173 -2.172579 -22.003048 3.838601 3.265192 -10.347325 -1.063031 -16.227242 3.378992 -6.175926 -11.999580 3.749363 -6.580074 11.840266 1.831751 1.174333 -11.591701 -21.621212 6.741928 3.233481 6.313607 9.843751 6.254433 -5.856090 -1.771763 -10.984199 -15.069100 10.988301 4.185376 2.892659 4.110664 -4.778894 -8.810343 1.826411 0.470455 -2.349536 14.703237 -15.927786 11.830046 -2.147139 -6.102543 -7.948551 -13.388684 -0.862858 -15.611515 6.103328 10.564711 -5.811250 3.719880 -2.336569 6.184498 -2.579559 -18.291677 2.988101 -4.755848 -5.272228 18.847259 -9.308884 -6.894307 -2.424969 0.840282 0.206896 15.780603 0.124025 7.234939 18.411886 12.538245 7.790379 -14.225693 2.705330 6.622258 10.012639 9.386351 10.561123 -12.619907 -11.127968 3.071319 -5.084714 -29.094605 -3.993728 13.450817 16.889269 0.053418 -19.249214 8.893043 -8.533898 16.026857 15.562799 8.745632 7.602093 -0.252625 -12.142695 8.424502 31.183452 -10.742906 12.404628 -7.569446 -18.189829 25.044154 -8.482514 13.352755 -1.375906 0.915071 2.460393 -15.001968 2.199599 22.885586 4.083978 5.323801 7.144882 1.125419 -2.916161 -26.240465 -28.267984 -5.613011 12.682069 8.859046 32.620861 -14.143553 -6.970488 -3.387508 15.334108 -3.509521 -8.870431 2.887723 -8.640889 8.065160 -39.158757 -26.470601 30.825601 26.369586 6.507567 0.575228 16.833681 7.235772 -4.448888 -14.180044 -12.130606 11.361446 5.291533 -4.547280 -3.179979 2.088167 -21.564697 -3.848126 1.242681 3.486017 9.969541 -10.573635 -0.950401 -4.115029 -19.105859 -11.965143 8.344581 -16.912004 -7.339509 -0.993248 0.748081 -0.110005 6.657389 -3.760001 -7.495675 2.112047 -12.382831 -4.227641 1.733370 13.447400 3.562871 22.055921 24.724091 -3.515950 9.291083 3.740894 -13.021702 40.826235 -14.779261 -2.293009 -1.448179 14.229088 0.255328 8.739763 11.080385 -6.623020 -9.361940 -19.718344 6.765725 3.108646 7.006181 -25.172358 -15.027769 -20.809782 -3.418379 2.767179 22.740448 -0.355958 37.131197 -8.823247 4.451646 -39.059720 2.116115 12.154043 -1.019139 15.377890 10.842184 -15.493729 -22.755099 -5.531576 -11.469187 6.542180 -3.626895 -16.388531 -11.780486 -6.716124 8.928927 -13.058482 8.029460 18.683166 -5.499639 16.083563 0.842777 -3.846820 -9.567623 -1.783351 10.433920 6.103570 -12.388052 17.996193 -1.486914 38.789649 -5.529436 15.734039 -13.178177 5.879027 -4.562222 -13.781040 -8.660881 23.088436 18.198692 6.827182 3.725574 0.665398 -6.069220 12.721521 --2.403987 4.058179 15.903104 11.197658 -7.724402 -9.709172 -4.478382 -10.265050 5.665777 2.146455 9.910299 -1.356019 4.452383 1.510909 -0.925553 -4.560078 5.652188 -0.704738 -1.406462 -4.868399 -5.136407 11.160663 5.756034 -11.650932 2.072822 -11.335417 9.645653 5.148129 3.456904 9.577213 0.533593 1.007211 -0.664924 6.439301 -7.593410 -2.985352 -1.404669 3.742292 -4.360442 -1.194185 6.614943 3.301451 9.095803 0.643883 4.190682 6.778854 4.893919 -0.479587 -8.873246 -3.198277 -3.982353 6.006730 -5.085888 6.009949 -1.764180 4.009253 4.092798 -7.688929 -1.156686 -10.895765 2.364109 2.863886 -5.068004 -0.679807 -9.010038 1.026938 -1.876937 -7.510164 4.115423 -3.650553 5.081435 0.518514 -0.191426 -7.162145 -7.976419 4.454062 2.275836 3.954240 4.389070 1.238671 -2.485142 0.634993 -6.630560 -6.730236 2.844182 0.569411 3.193767 2.078191 0.223288 -5.630227 2.471978 0.726194 -1.633078 7.998731 -3.963956 5.544906 -2.925756 -3.394843 -6.328733 -6.037769 -0.579612 -7.343671 3.997868 7.968398 -6.888368 2.594289 0.230827 2.992702 -0.104540 -9.308827 0.371849 -4.471528 0.169175 9.044728 -4.330900 -5.469260 -1.382963 -0.984644 1.116771 8.631185 -1.428864 2.157977 9.769648 6.183181 3.184634 -8.074158 0.906018 0.805698 3.787895 4.696575 7.243380 -7.135593 -5.634611 -0.601811 -3.143116 -14.488793 -0.254478 3.297619 8.416299 -0.598166 -12.022962 7.459083 -6.002962 8.128974 6.798217 6.789410 3.948318 -0.753885 -6.279843 3.956585 14.746668 -5.273842 6.422137 -6.056600 -11.049216 12.033736 -0.888700 6.385271 -0.292615 -0.376123 1.808505 -7.908706 2.452826 11.633916 1.551086 2.339743 7.049456 -0.178556 -0.253593 -13.175281 -13.299407 -0.326163 6.059097 4.123740 18.400915 -9.118700 -3.383441 -2.231307 8.264511 -2.882783 -3.597038 0.454643 -2.563195 3.819376 -20.145828 -14.383569 14.042351 10.936822 1.250903 0.318400 8.234945 0.743296 0.134827 -6.234969 -6.855789 6.243336 3.306451 1.467417 0.243036 0.871103 -9.351204 -1.084535 1.602661 2.782612 7.106096 -9.558763 -4.412190 -4.289985 -11.157749 -8.403908 3.974725 -10.137501 -2.757993 1.362423 -0.246558 -0.549906 3.379517 -0.309792 -5.914553 -0.521497 -5.139907 -2.583357 1.023604 7.663649 1.196747 10.692646 11.819964 -2.346177 4.329034 3.413063 -5.353403 23.515978 -8.094784 -0.820105 0.053016 9.721418 0.191353 4.411959 6.713336 -3.059729 -3.992922 -10.258696 4.779317 0.760727 2.622647 -16.236640 -4.917386 -11.830215 -2.397589 0.846964 12.360821 -0.264177 18.898694 -1.994688 1.470284 -18.492897 0.172235 7.091950 0.151293 6.897169 6.250465 -8.699475 -12.768728 -1.943443 -6.267659 5.666776 -1.917102 -8.177991 -7.165361 -1.228892 1.735712 -4.365061 4.531831 12.118287 -3.320412 4.975452 0.949057 -2.227329 -2.442857 -4.597692 5.335532 3.235532 -5.813565 10.378116 -1.014049 18.926760 -1.021393 8.416993 -6.770930 2.332636 -0.767634 -6.580445 -5.304184 11.485144 6.698065 3.157701 3.010639 0.562787 -2.864615 7.421897 --10.400120 1.715452 34.802453 28.775760 -23.320101 -33.767437 -9.923841 -40.008244 25.540956 10.287077 33.729146 3.981603 22.494673 -16.260737 -1.070277 -5.818597 20.649359 -0.262175 -5.013225 -14.380820 -9.121042 41.519915 8.706130 -24.569269 7.041205 -23.513758 21.967798 16.052222 12.587046 25.862800 6.198043 2.356425 -7.168828 13.022168 -14.314949 3.844205 -4.642218 11.356949 -17.315669 -11.493617 14.098473 -5.025568 29.111140 -0.397100 23.770328 1.733941 18.830709 -1.330659 -24.215257 -13.811370 -10.557654 17.379988 -13.391514 17.681598 -5.149994 -0.124944 11.833235 -9.670125 -0.619610 -30.032323 6.110898 -2.610549 -17.424698 -3.530050 -20.550082 2.961056 -4.637211 -18.911940 4.658252 -19.164390 12.509661 -0.445187 -3.212466 -15.897068 -33.075777 4.051313 9.367435 5.172392 15.548309 17.088406 -4.933756 -12.314347 -19.779564 -17.910252 19.151643 6.119560 6.733000 14.370203 -19.341281 -10.013214 5.130506 2.156243 6.428421 14.762116 -20.921968 6.276201 3.009053 -11.019360 -10.909816 -20.458386 6.666426 -15.776078 8.406913 14.197932 -12.599648 7.242704 -2.843562 6.834584 -10.071671 -22.529988 5.838455 -15.747944 -1.439990 28.654745 -12.192750 -16.255846 -12.886520 -0.834138 2.884758 20.462933 0.865283 6.865592 25.628122 15.933196 15.552416 -26.070473 -3.060750 13.273125 17.378549 11.732719 8.148514 -13.943643 -12.624952 6.447170 -17.605954 -42.009249 -14.583680 14.938958 27.669245 -1.129709 -24.575918 17.279059 -12.886674 23.559005 22.389962 9.796856 8.718989 6.300817 -23.884278 9.803415 35.165284 -10.045910 15.943668 -10.542415 -24.863227 30.010446 -3.737621 11.733930 -0.135412 -5.734839 -1.188980 -15.219059 8.938428 27.814513 2.203564 6.188476 -1.145437 8.484139 -11.148193 -35.285738 -48.245941 -3.882189 25.965269 24.623498 50.257597 -26.097807 -11.905880 -3.635379 19.550514 -6.902637 -16.353862 8.898201 -16.903108 15.706665 -59.193793 -39.318486 51.591864 34.654069 17.033168 2.449972 23.486690 4.023121 -8.844593 -14.718965 -17.356100 14.414892 14.756618 -16.154320 1.226425 4.499018 -32.029035 -11.499282 2.150925 5.886475 8.761800 -16.580830 10.092625 -16.946458 -15.993653 -16.507272 15.310386 -18.427037 -5.853957 -2.284702 -0.575926 2.368543 13.564018 -4.863883 -8.326992 -4.385101 -16.538204 -4.080685 -0.602727 17.715991 6.569593 34.220785 43.820272 -12.898013 18.236577 -0.471480 -18.391302 54.859113 -21.725148 1.298993 -0.431720 21.333843 11.918184 9.884524 23.173344 -11.706858 -5.009893 -27.895385 0.873619 11.289183 14.403181 -41.188605 -19.846380 -41.208702 -1.664834 -3.952318 33.657518 -3.560075 52.207474 -17.001486 6.143906 -56.804742 2.087606 19.428318 -0.233057 19.390755 10.076578 -22.662913 -30.684709 -5.577850 -23.435205 2.039210 -3.932678 -16.223940 -18.164432 -12.029301 15.049282 -21.186284 7.981830 27.151478 -10.882284 22.527042 -4.259939 -1.225864 -10.905400 -3.155537 9.666020 7.460372 -16.756096 25.202708 2.202024 57.431757 -1.585097 20.322887 -15.216035 21.901945 -12.987349 -30.981699 -14.725022 29.015165 29.763358 7.148226 5.166540 4.458815 -6.228789 22.640237 --5.765010 27.583701 102.183386 38.889661 -56.210390 -80.002812 -25.543853 -128.051477 58.711179 38.471713 79.715007 -3.388004 51.574056 -20.272178 -7.530377 12.505640 48.960335 -5.327030 -3.453563 -40.938596 -39.231572 80.331646 5.522741 -16.482096 27.121563 -78.381065 57.438861 16.129483 41.030858 51.992444 28.368972 1.119257 -21.148378 37.204760 -9.570380 25.688389 6.512356 32.099387 -45.260053 -0.914931 16.353462 -20.560854 57.014259 17.308949 62.535380 20.266585 30.182745 1.102715 -50.967576 -27.995490 -25.284562 50.700886 -39.166651 42.455709 -11.428041 -8.386184 8.148458 -24.495051 5.079555 -37.399905 -1.652900 -24.288876 -40.250298 1.167909 -53.852018 9.279564 -32.646368 -43.973830 -6.308543 -25.242855 39.137834 5.620859 -4.087349 -4.949541 -90.982620 12.402482 24.262876 12.302799 50.484057 16.854096 -4.651201 -25.220386 -54.050964 -64.095434 67.645005 36.419604 20.229147 21.537717 -43.811651 -22.159542 -6.110982 -2.854094 26.747088 53.718426 -62.765577 10.587409 -17.001811 -31.575338 -36.725049 -88.526709 12.282977 -47.104418 26.833747 14.726947 -28.752334 14.945879 -8.637732 22.924644 -12.709130 -48.375576 18.798056 -33.219818 0.715896 82.021891 -23.082116 -44.380186 -32.503997 -10.626138 6.624447 42.211412 18.569314 10.747976 78.856674 40.197098 52.459174 -56.421673 -17.407528 31.293798 26.113889 28.987719 27.692543 -49.651599 -37.729517 22.221771 -39.833456 -110.054326 -31.492417 25.762715 63.031674 -17.614139 -37.134545 19.611258 -32.783816 37.764586 52.765280 20.131716 24.236013 8.162302 -49.668190 19.758667 90.578069 -31.362709 39.993822 -32.290226 -33.052964 53.135708 -16.784370 27.225554 -1.502648 -10.393271 -6.926547 -41.854869 4.927910 75.397179 6.182137 11.138388 -1.360905 27.017480 -45.284233 -78.784232 -106.426613 -12.416080 73.347246 27.565333 92.006941 -64.850575 -23.228205 -9.163484 66.922809 -3.005858 -34.609790 26.952264 -41.924082 36.328384 -104.086671 -89.980383 116.743101 95.507757 43.248060 -14.413425 39.792129 25.146479 -64.717732 -52.642770 -45.252185 29.189601 16.634672 -72.926401 -35.521785 15.008512 -78.880677 -18.508651 -0.222759 19.996287 33.579494 -11.852959 37.166959 -15.337128 -32.466598 -44.772835 46.521555 -35.442888 -23.241108 -4.557875 8.055363 7.948994 36.415870 -23.352845 -17.150995 11.496684 -43.434995 -4.722670 19.551322 46.282970 7.733452 102.449693 89.366129 -24.724038 36.065230 -5.823765 -46.157979 105.047603 -38.289327 8.215481 0.861212 34.684854 4.876778 26.975168 60.853512 -32.907435 -45.135569 -69.194427 -14.544872 11.342565 28.790020 -38.802709 -51.868506 -95.641861 0.311377 -11.337735 85.289679 2.085040 119.515987 -26.308194 25.385911 -112.873397 8.061777 43.998639 -13.564088 53.212026 28.932846 -55.442473 -50.674974 -20.189412 -66.291555 -31.127414 -6.123792 -25.764276 -44.711826 -30.615536 40.691257 -37.960175 13.029229 47.173361 -3.886117 59.113223 -10.228075 -0.457047 -42.043846 12.976039 62.713846 7.504608 -48.078736 56.487627 13.467905 151.856899 -3.031836 41.653530 -30.142641 11.428462 -15.819993 -60.831500 -40.553294 75.783933 71.380966 34.045990 0.278601 1.337321 -8.539277 60.306326 --3.395672 7.841680 25.260411 18.261078 -15.537604 -17.612207 -7.941008 -18.474171 8.446000 3.217348 15.353600 -2.939209 5.579312 3.542899 -0.964777 -5.924311 8.434566 1.016074 -3.063551 -8.159252 -11.425557 14.497094 8.537233 -18.361782 4.009750 -14.477787 13.725707 9.654436 4.642739 11.720394 1.804584 0.935880 -3.180307 10.624168 -12.138125 -4.124867 -1.409801 5.433427 -8.731555 -1.183879 9.183562 4.134906 14.361581 0.443214 8.221603 10.972972 7.993443 0.605182 -16.685222 -3.983259 -5.528873 12.904198 -6.994047 10.158858 0.647237 6.486886 4.998865 -13.654775 -1.551076 -15.450231 3.473494 2.690070 -8.575365 -0.561646 -14.046233 0.819369 -3.116501 -12.583648 7.431004 -5.109229 7.803828 -2.007818 -2.030755 -9.867067 -11.437972 5.899663 4.390852 6.789554 7.835680 2.621962 -0.830774 0.819247 -10.035988 -10.608941 3.479267 0.194899 5.162738 3.011297 -1.159369 -8.798735 5.416189 -0.995132 -1.107296 12.687580 -8.094311 8.608101 -5.480996 -6.196702 -13.091800 -12.216254 0.361341 -10.254470 7.889618 10.064919 -10.944133 3.447308 0.995243 5.484336 0.538220 -15.338396 0.008234 -6.937877 2.413354 15.447798 -6.503475 -9.128539 -0.995700 -3.076396 -0.739430 13.174425 0.449851 2.422839 14.547530 10.578173 5.659134 -12.040759 -0.508089 0.282984 5.265533 8.706097 11.513948 -12.191059 -8.195140 0.473765 -5.566314 -22.546073 -0.766448 4.793588 13.237688 0.694422 -16.575254 7.853447 -9.287912 11.722199 7.036874 12.236837 5.228666 -2.430020 -9.514175 4.966017 21.654848 -7.773807 10.237697 -6.361995 -16.857514 15.390943 -1.021360 9.538072 1.494923 -1.947654 2.711101 -11.363600 1.963572 17.287111 3.184185 1.393778 10.525949 0.555116 -5.331816 -20.479646 -21.290124 2.176149 9.750413 4.688197 26.804939 -14.911755 -7.945435 -4.010542 16.153862 -5.067095 -5.750793 1.821943 -4.560848 6.966181 -26.673824 -21.324764 20.639432 17.645314 2.478621 -1.921627 13.969848 -0.021928 -4.637568 -11.917455 -11.955022 8.568705 4.957431 2.053397 -0.536131 0.885201 -15.390673 0.372247 2.556533 5.449461 11.042639 -12.542200 -5.369387 -5.720606 -16.737489 -12.386100 5.657860 -13.940224 -2.400477 2.840290 0.042103 -0.988510 6.191147 -2.407402 -11.361704 -1.415614 -9.015145 -2.602274 2.260391 12.088974 1.533301 21.245103 17.032672 -2.846367 10.755312 4.674188 -9.010551 37.914243 -12.380232 0.835748 -0.221783 14.513567 -1.334714 5.204414 11.193728 -5.327122 -8.236569 -15.234362 3.927575 -0.087884 5.332002 -25.032463 -9.106449 -20.432386 -3.783936 1.076838 17.342197 -0.475772 28.070711 -2.396723 2.805831 -29.175140 0.671666 11.374159 -1.609110 10.961824 9.062590 -14.483298 -22.245026 -2.228323 -10.859739 6.595943 -2.418057 -11.742442 -10.555207 -2.163756 3.705739 -5.088897 5.924252 19.752310 -5.631461 6.909085 0.920539 -3.501953 -1.684475 -8.186909 10.969022 2.787273 -10.898300 17.614501 -0.017609 34.275438 0.730881 12.717523 -9.383566 0.741603 0.107882 -9.095907 -8.661601 16.820869 11.357700 6.394546 2.511557 2.909036 -6.532320 9.958598 --120.929323 70.783400 445.660093 194.836457 -210.771308 -303.649371 -118.467774 -470.654580 247.301544 157.020733 377.484343 2.212911 236.042928 -84.475896 -15.597821 -49.274332 216.504328 -69.120850 23.416410 -141.483040 -75.527528 395.585381 93.435121 -121.132900 69.860179 -337.417533 247.080455 82.028385 161.676556 283.179048 82.031773 23.202938 -89.858301 139.738800 -67.904127 71.498111 19.365378 141.664587 -147.715969 -52.179852 94.032874 -83.958853 254.663355 37.900445 266.332935 40.469119 120.707771 -26.960026 -229.714007 -152.201176 -109.556862 170.101917 -186.215758 150.046972 -13.754513 -37.359794 66.581066 -85.453601 -7.391419 -286.286457 32.165422 -86.833302 -151.831186 11.177226 -220.412324 70.654546 -145.744263 -145.660080 1.022254 -165.562938 151.244206 37.925849 47.478311 -26.690511 -382.164955 88.988929 78.724770 37.818973 174.145437 108.520964 -78.497893 -73.136293 -205.025031 -256.252663 222.726205 147.018933 54.234366 81.443393 -191.321422 -49.312505 -3.030693 11.548149 38.381070 220.361252 -248.470508 90.780555 -20.654678 -124.639742 -105.934257 -319.711853 34.917937 -226.423360 84.685580 148.701855 -143.083384 22.506750 -113.383521 80.371584 -97.458095 -248.570145 110.600519 -157.939900 -39.110396 305.133174 -165.005039 -125.790685 -163.333042 -12.132869 91.922158 201.609199 8.750446 100.812043 244.002057 176.607301 178.725803 -253.884482 -35.446851 168.843868 165.843437 90.118272 91.209943 -186.401988 -146.106095 70.474924 -167.992268 -442.916859 -154.896704 158.264385 265.830022 -26.657223 -211.563671 105.056161 -147.414233 225.724950 278.925743 120.711872 83.895346 69.457599 -230.114353 104.466563 378.143911 -140.454776 192.786992 -97.299057 -199.537237 306.442430 -111.439273 167.606401 -15.725478 14.574409 -18.398064 -199.286377 19.717729 320.904850 57.882019 114.756391 -10.297019 76.499667 -80.895723 -362.316621 -485.019091 -68.916509 331.026231 175.447601 414.088188 -270.357140 -101.907706 -5.231955 268.681799 8.306088 -194.005261 88.280338 -136.167910 145.468659 -586.863496 -414.687945 490.621728 408.420758 153.801572 -0.757771 179.598123 116.039419 -191.847827 -191.004508 -196.740793 179.653999 11.471355 -229.722848 -83.203219 59.793974 -325.478944 -101.959941 -5.370997 63.625967 154.733870 -128.208487 117.554997 -50.841659 -144.022629 -170.027416 186.535959 -179.433352 -170.106974 -45.132755 15.568537 58.234553 126.239050 -69.089164 -46.746684 61.405907 -198.038586 -55.586300 63.749255 160.140382 42.654458 400.951184 402.972078 -96.326949 76.106588 -17.598235 -178.604290 517.501185 -203.437052 1.046676 -6.676775 153.540838 68.134694 122.743098 237.822909 -124.173508 -168.739889 -299.955240 -5.334119 49.549668 161.592011 -295.425069 -288.545302 -396.166417 25.041906 9.667185 366.255207 -0.071318 559.193373 -120.607459 81.995532 -517.167526 23.889215 205.646604 -33.883616 240.678229 114.231637 -229.384824 -248.107638 -86.325528 -255.866876 -3.305187 -35.465440 -165.896690 -177.503348 -137.337379 184.482047 -178.204869 71.929897 185.933791 -44.372163 272.993207 53.179395 -36.754028 -194.812405 37.358815 171.701303 59.004489 -180.483411 299.362154 23.280631 589.014958 -77.854655 168.814072 -135.888193 150.928342 -102.317048 -252.427977 -129.413852 347.507994 322.508196 125.037945 -14.033826 0.316748 -60.420260 222.946670 --60.646970 24.251974 192.958855 85.107963 -85.397387 -123.693585 -52.048662 -198.636729 110.510909 67.517580 166.594502 1.751914 103.902341 -37.727319 -5.885579 -33.976926 93.768388 -39.258652 14.110120 -57.780844 -16.512386 183.234944 40.934982 -58.909095 24.296290 -155.038103 107.195402 40.675977 68.310192 126.817010 33.340900 13.286178 -39.682204 57.029383 -37.642735 24.515600 11.903237 59.069130 -61.611819 -29.971658 44.999524 -22.933526 111.480095 9.134934 114.795642 14.003629 49.848664 -11.621920 -92.937434 -70.313864 -44.206423 69.071527 -73.779866 62.019275 0.246220 -16.396048 32.869298 -41.564595 -6.900605 -129.445345 18.842339 -27.787898 -60.817211 6.293140 -91.637370 32.089050 -54.956897 -55.145467 7.873117 -83.493538 62.324363 12.989737 25.371306 -20.722758 -164.984058 43.709506 30.365107 13.464040 68.756448 52.627134 -39.670793 -25.786171 -86.386360 -107.441262 85.018418 74.108243 17.667457 34.318809 -83.607132 -20.007865 0.181309 2.543245 8.853617 94.521934 -104.579706 39.484063 -4.090763 -53.968563 -43.250518 -122.446491 16.805565 -96.859527 35.321600 72.998749 -62.663367 4.965374 -45.978279 29.895625 -42.771664 -105.744772 51.167959 -71.526948 -10.830876 133.774408 -75.404803 -50.848429 -79.986658 -4.900996 41.165146 92.198775 -6.816844 45.732551 99.729659 76.146984 72.850899 -111.156960 -14.124798 81.872152 77.320680 33.490591 35.026621 -84.696920 -57.123813 26.593893 -70.800222 -184.788505 -71.815969 65.984939 116.060536 -13.233562 -95.939022 53.803548 -63.352925 107.329128 124.389193 49.899131 34.366905 35.399504 -102.126040 46.915869 166.894583 -55.704170 80.320595 -46.931128 -95.107625 136.200605 -46.417948 79.620985 -3.518710 14.004997 -11.854284 -87.677012 18.130266 135.102050 24.542502 57.089544 -5.449876 30.874476 -21.905683 -156.402144 -217.925681 -30.130447 136.020148 82.580971 190.523580 -115.951148 -45.703388 -3.875383 116.246585 5.670409 -86.547392 39.501669 -58.166226 60.428345 -260.265591 -179.192675 212.331744 179.699216 63.677623 4.611811 84.877824 44.229952 -72.018885 -77.785738 -82.936421 85.070457 4.265705 -89.190027 -18.697580 25.214134 -135.872389 -50.208628 -4.521402 25.856130 70.478092 -62.284101 47.352139 -27.084050 -66.511280 -74.843381 81.726144 -76.972593 -77.565965 -20.486577 6.003587 21.501038 55.957848 -28.747749 -18.456740 27.590486 -83.158926 -25.649857 27.849381 61.824880 13.912793 159.884515 172.562127 -40.123539 33.892525 -8.159120 -71.813026 232.178988 -90.378099 -5.511608 -4.833780 63.606779 38.019217 53.220408 94.227996 -52.173046 -64.958006 -129.906505 10.914786 18.303267 71.290459 -147.899434 -130.434680 -171.038217 9.500898 5.556450 157.825252 3.816883 249.959046 -54.174012 30.410740 -233.219558 9.853315 90.359593 -8.367403 99.290012 46.324127 -98.429586 -110.056207 -31.747475 -111.058175 4.889800 -17.085146 -84.994324 -79.403771 -63.949657 86.581787 -78.745518 33.246360 90.773716 -21.792730 114.724400 25.827453 -19.780616 -85.314309 9.149742 58.655403 26.101751 -73.837665 129.921006 1.687179 244.848741 -42.236738 75.315799 -57.690099 84.570771 -50.772770 -117.302943 -51.062115 149.614923 133.764592 48.018702 -7.633660 -4.010407 -30.228801 93.676934 --23.033912 28.714822 134.911787 62.204805 -66.168446 -99.235882 -34.725577 -139.879259 68.222705 39.374919 107.063334 -3.444875 63.170506 -17.614533 -0.465771 -5.703242 60.600164 -6.630231 -3.791650 -45.520245 -30.046432 103.118515 27.189072 -47.871509 23.894401 -88.578830 62.845377 34.294251 46.847328 74.587007 21.541549 0.169243 -24.962298 45.580926 -33.366091 15.566869 7.205373 37.630119 -54.512772 -13.526860 23.028438 -12.737915 74.499126 8.893708 75.019223 22.515820 40.960169 -1.958043 -71.960969 -38.142315 -30.046033 67.839002 -50.041040 53.097871 -3.331181 -0.252192 14.429523 -34.094510 -0.486629 -81.075218 12.298731 -12.135338 -47.195067 -1.680435 -65.274301 12.884870 -32.879925 -54.077301 7.774006 -42.590546 45.170362 1.818696 2.266553 -16.437276 -104.163328 21.038832 26.620574 19.537207 52.931729 24.172763 -10.368233 -24.679845 -55.771205 -71.428527 62.998928 34.816927 22.926426 29.281113 -52.996956 -21.358817 7.193720 0.942632 14.447993 63.201454 -70.194407 28.488691 -11.555708 -35.470723 -42.281494 -94.059033 10.497470 -61.879416 30.215589 35.630959 -32.804328 13.555407 -24.224768 32.183438 -23.499077 -72.493769 25.119342 -37.835447 -10.808586 90.314190 -44.036801 -43.831061 -32.573463 -7.369646 12.446404 61.300337 9.921462 23.703109 74.805685 54.466424 54.569370 -75.789531 -11.887351 35.652138 46.661482 40.869948 36.023598 -56.811265 -43.958899 22.176490 -53.543898 -135.997205 -34.621788 43.082560 81.766376 -4.128364 -67.901330 27.488576 -46.281991 65.427882 68.542845 43.144458 26.502622 9.436727 -65.062314 26.698218 111.430722 -44.969072 61.281920 -25.884726 -57.741544 72.855644 -24.435177 46.109875 -0.931980 -8.065330 2.928210 -56.319443 3.392071 97.451694 23.302792 27.437760 1.035194 21.898573 -42.433433 -109.769103 -137.716921 -17.931357 87.277773 38.588095 123.080307 -76.913442 -43.632144 -9.062612 83.658615 -16.174606 -51.535622 24.831434 -45.001782 46.244683 -156.343377 -117.639201 143.894159 122.936567 48.701000 -7.894187 61.280349 28.730550 -61.236490 -58.303856 -54.306941 44.451162 12.830751 -66.973159 -28.236650 13.010465 -98.469236 -19.648604 1.874253 23.010369 34.181849 -28.072956 30.488760 -12.725841 -53.758413 -47.778302 48.056857 -57.269883 -32.888728 -6.895149 4.874429 12.528511 37.986789 -30.107958 -28.657888 18.899385 -63.415963 -11.819962 14.936053 57.352870 18.409378 127.362134 111.592847 -23.110666 47.435786 -0.338696 -60.703146 156.743295 -60.581203 5.349604 -3.287442 53.425674 9.246241 34.255963 70.434248 -37.843183 -51.591525 -90.801782 -11.117488 16.914629 46.747782 -76.892016 -78.607781 -112.910631 0.827036 -0.903898 107.386783 -4.286393 159.544266 -33.598599 29.993584 -156.912954 8.402513 56.884699 -15.179720 64.799494 39.083220 -70.718752 -93.947005 -20.699861 -74.487227 -13.228478 -8.564596 -50.603103 -50.329736 -42.589824 51.725916 -50.629843 20.271483 63.540547 -13.400460 77.264585 6.463681 -10.562849 -43.595005 4.165094 63.158186 14.623869 -61.257783 81.678155 13.858967 194.192881 -11.605662 57.906924 -45.535493 27.550597 -20.312481 -67.480068 -46.020595 100.297428 97.056560 40.705618 -0.309144 6.684898 -23.984288 64.925112 --0.594305 4.164650 14.171006 9.159026 -5.875041 -8.166411 -3.717010 -10.305828 5.446253 2.076433 7.182820 -2.132073 2.799526 1.253973 -1.267696 -2.722340 3.438529 0.713641 -0.767941 -3.458080 -3.875231 8.072841 4.253882 -8.928612 1.413207 -9.750360 5.937694 4.421030 4.802450 5.809137 0.911285 0.060630 -0.675801 5.444909 -6.979448 -2.478875 -0.321566 2.413559 -6.028721 -0.849168 2.558684 4.287839 6.048789 0.031791 4.680878 4.567685 3.989877 -0.104534 -7.060642 -1.167870 -2.440818 8.387092 -2.654008 4.706866 1.691887 3.236575 0.873787 -7.401687 -0.873553 -7.060594 1.921000 3.625509 -4.061723 0.303607 -7.769112 0.407631 -2.240104 -5.653428 3.748334 -2.366235 3.879421 -0.094042 0.374767 -5.750450 -6.601945 4.312957 1.762125 3.194637 3.890785 1.200156 0.309113 1.205904 -4.082013 -5.414079 2.011117 2.128798 1.540204 1.497510 0.442942 -5.749849 2.030036 -1.472847 -1.067430 6.538490 -4.454517 5.203704 -3.894452 -2.729290 -5.590476 -6.499423 -0.612463 -5.791103 3.928336 4.536160 -3.618236 2.739971 1.888682 3.303077 1.445678 -7.290554 0.517531 -2.629378 1.941966 9.312560 -3.699306 -4.366863 -1.209111 -0.811697 -1.914731 6.935154 -0.677839 1.830530 6.768500 4.953961 3.060168 -5.885427 0.501577 1.713021 2.099672 4.643865 5.858590 -7.152995 -3.605242 -0.627303 -0.858810 -12.222890 -0.410946 1.734399 5.443162 0.140334 -7.966247 2.455019 -3.804746 6.767346 3.308670 4.720683 3.002013 -1.166387 -3.811221 2.562510 11.670061 -4.017429 4.556272 -4.009498 -9.020193 6.486219 -1.215478 6.214308 -0.577459 -0.161457 2.956413 -6.491181 1.627099 8.983662 0.997941 0.516740 5.166018 -0.044840 -1.841663 -10.705376 -10.482897 1.372490 2.841455 0.957431 13.880632 -6.472357 -5.198655 -2.663799 8.458483 -1.697674 -1.354047 1.318960 -3.466295 3.233943 -13.168068 -11.480970 9.865213 10.272327 1.553125 -2.142847 7.271049 0.441562 -2.731222 -6.430165 -5.357769 3.820415 2.013939 -0.269320 -0.897557 0.196502 -7.670954 0.118876 1.379244 2.156423 6.168372 -5.457847 -2.622118 -3.206838 -9.256123 -6.755318 3.919662 -7.032361 -0.970289 0.665134 1.003549 -0.722221 3.965140 -2.951792 -5.650157 1.016166 -4.047038 -1.351991 1.480236 6.031792 -0.062295 10.110723 7.906066 0.316193 6.907933 2.909445 -4.701778 20.135835 -5.707982 -0.288938 -0.252281 5.702034 -1.890897 3.118277 3.670287 -2.961248 -4.498943 -7.370491 2.295296 -0.893996 2.319174 -11.418202 -5.937790 -8.737317 -2.736085 0.546278 7.309382 1.335963 14.563991 -1.659700 1.337421 -14.684706 0.312175 6.293087 -0.681746 7.204161 5.157176 -8.124917 -11.080801 -1.227625 -5.082528 2.935638 -1.807730 -8.378351 -4.954253 -1.592667 3.896789 -2.271891 3.852454 10.424708 -1.772350 3.724112 -0.118389 -1.485072 -1.560734 -3.770615 4.902421 1.423441 -5.931893 7.883183 -0.972887 17.105091 -1.039946 6.100747 -5.823357 0.099626 -0.138048 -4.298138 -4.016091 8.855567 5.226330 3.493966 -0.050499 0.319708 -4.571683 4.644310 --2.438215 6.890755 29.295201 21.937952 -12.017409 -20.131786 -5.796980 -16.244055 9.406534 2.913862 15.381764 -1.522392 7.106600 5.350492 -0.192745 -6.101330 7.815005 2.785297 -2.014639 -6.540188 -9.079163 19.377043 11.944964 -21.422962 2.224628 -21.433478 15.247732 10.776393 8.359219 18.849319 1.195772 0.786697 -0.942562 9.587672 -15.359873 -6.244414 -5.278885 3.961751 -8.663596 -3.228389 8.308163 4.120279 14.555560 2.714143 6.781620 7.944643 12.570552 -1.274575 -12.390134 -3.741713 -13.245316 15.844943 -7.822918 9.450976 -3.199198 9.416807 6.457919 -11.893806 -1.387291 -23.518129 4.561902 7.007000 -11.365701 -2.108923 -16.418598 1.581328 -7.880088 -12.856838 6.414449 -4.181728 9.304095 0.028499 1.134780 -15.159691 -18.551892 5.866431 -0.643128 6.801416 7.568388 2.756443 -7.315492 2.511665 -10.611780 -9.991261 5.146012 -1.333047 2.261838 2.670616 -0.111593 -10.763718 0.624171 0.986913 -4.308604 11.851544 -9.050390 14.723625 -4.945114 -3.484641 -9.114687 -9.655964 -1.032762 -12.522772 4.784630 12.237189 -5.717965 3.652244 -1.515902 4.112431 -0.235545 -18.415679 1.868724 -6.234282 -3.557884 13.227671 -9.724451 -6.586931 1.453216 0.033133 0.567457 16.451339 -3.548856 4.945265 11.695415 9.312826 4.704210 -11.849578 5.297494 3.219437 6.304886 9.269845 10.377900 -10.054955 -8.484142 -1.157418 -2.546504 -26.623610 3.569597 11.759442 12.340551 4.405591 -21.517822 7.786629 -9.006824 15.046061 11.293530 14.567585 7.195138 -0.990996 -8.797760 5.242594 30.220643 -10.251501 12.768024 -8.813154 -19.238500 22.882211 -4.913471 14.198997 -2.047293 1.276265 7.668673 -12.322591 -0.073297 21.351165 4.949113 2.384254 16.464600 -0.941637 -1.066551 -26.036326 -22.078773 -1.372705 11.734347 5.541603 31.900178 -14.209305 -5.657633 -3.185868 13.623627 -6.418447 -5.636301 0.553182 -4.174260 5.972317 -41.507977 -25.940765 23.697305 17.910557 0.423561 -1.284207 15.262964 5.260815 2.699477 -11.499106 -12.101549 8.642766 3.165800 4.550368 0.808347 -1.766999 -18.058807 0.957607 3.688900 3.071185 11.671902 -16.225577 -8.398830 -7.718086 -21.863115 -14.992639 7.129560 -21.615590 -6.000964 0.897341 0.337980 -1.342537 3.411897 0.259992 -8.473230 3.720430 -9.586739 -4.572660 1.564925 10.663413 3.153973 22.534852 20.987916 -0.260702 8.196026 6.570405 -9.962231 47.690392 -14.168934 -2.319657 -0.223122 16.711038 -1.410185 7.869374 9.229605 -5.082406 -10.114497 -16.312547 9.439896 0.235924 5.776582 -26.215333 -11.032088 -18.974771 -5.445241 3.083729 20.451671 -1.704166 32.764113 -4.053513 3.640760 -33.958267 0.804317 14.595586 -1.036848 13.102814 10.633496 -15.358095 -21.294842 -3.508649 -6.659487 15.991711 -2.501195 -18.551078 -10.360125 -3.582527 -0.449513 -9.507567 10.259275 19.240800 -8.170943 9.753068 0.900888 -3.449865 -3.019208 -5.229830 8.946205 6.730117 -11.561300 20.103216 -3.336928 33.933664 -3.588807 13.949101 -11.673308 5.043162 -2.966548 -7.600638 -7.554361 19.556985 12.326991 6.064575 3.506914 2.943906 -5.638955 9.415638 --7.354802 6.342653 37.341922 25.280700 -16.153909 -20.189949 -8.317820 -17.055352 12.573351 4.983562 20.637920 -1.329718 6.878507 6.548642 -0.050029 -10.868492 7.759503 -0.905644 -4.715195 -7.426168 -8.898914 19.584684 18.023539 -29.050795 2.961340 -26.032481 16.617618 11.000187 7.632647 19.136473 -0.391785 1.688896 -1.007793 12.713233 -17.865982 -7.354208 -2.859116 4.076689 -8.025275 -6.528267 13.037974 6.835188 15.949466 1.608011 11.994944 8.848369 13.705269 -4.035623 -19.871200 -5.206152 -12.665597 20.561249 -9.999595 12.073240 2.254703 15.427035 4.809089 -20.374296 -4.210917 -32.639028 7.410338 9.057913 -11.024656 -2.157979 -18.366472 3.227161 -4.323151 -13.080261 10.408911 -8.799528 11.731687 -0.446852 4.407865 -16.050076 -15.673876 10.070546 -0.568984 7.584512 7.595781 3.045201 -9.154284 3.253701 -9.726855 -11.690315 2.119491 -1.978711 0.456698 1.492579 2.812021 -10.826569 3.779906 -1.922212 -10.859899 17.275559 -15.478652 17.468399 -2.451954 -5.246005 -11.896546 -9.925501 -3.679155 -17.805097 6.099416 19.817061 -10.953595 5.896387 -0.897531 7.072107 0.173097 -21.551328 2.700996 -4.903425 -2.838900 13.705081 -14.374252 -6.806471 3.573745 1.040546 1.066969 18.985955 -7.186212 8.652854 16.698376 12.459106 5.877818 -13.616441 7.973298 4.885225 10.736381 10.725761 13.601770 -16.531475 -8.671985 -0.857638 -1.048778 -31.180599 3.497916 13.373670 17.168220 7.711855 -30.658331 8.732870 -8.470861 20.944921 13.217745 18.272785 6.761821 -1.562821 -11.551679 5.862521 35.156421 -12.712680 15.285779 -8.808393 -23.470389 26.039332 -8.290794 18.088595 -1.201425 4.996629 10.749599 -19.828121 -1.105565 25.029780 7.754756 3.842879 17.075694 -1.974566 -0.172520 -32.687816 -26.392000 -4.300755 8.519085 5.865797 39.516753 -17.882396 -9.822658 -8.071254 20.596794 -8.514153 -7.202642 -0.737764 -4.498586 6.110380 -45.680274 -31.123818 27.916347 26.791303 0.236609 0.606880 22.773369 3.184005 1.354791 -13.366832 -14.786310 11.059835 5.785634 10.616012 2.792568 -1.953863 -22.842269 -1.096861 3.131200 3.058828 15.950403 -19.771434 -11.688116 -2.245607 -25.555925 -15.944672 5.945224 -24.206951 -10.337844 -0.206203 3.132668 -0.382006 4.458391 -1.843658 -13.425061 4.124267 -12.842201 -6.631641 4.433134 15.087526 4.564901 27.270599 23.353917 0.925094 10.330161 7.934972 -11.405580 56.631129 -18.405078 -6.139150 -1.174235 17.660387 -1.866671 8.633638 8.818377 -6.033699 -9.859019 -18.862327 14.038366 -4.962067 6.887536 -36.208763 -16.270446 -21.814869 -7.065733 6.050340 21.316647 -0.052990 41.374990 -2.828900 1.867353 -44.043435 -0.394713 19.320683 -0.414915 14.136686 14.625372 -19.025902 -32.460467 -3.060649 -6.079811 18.947511 -3.846273 -21.667587 -11.825919 -6.758135 5.078994 -10.489293 12.242167 25.102750 -6.663113 13.133188 5.457634 -5.693923 -4.018698 -8.167571 8.300338 9.383082 -12.999013 26.655993 -4.752749 42.427319 -6.432441 16.731288 -15.764637 5.709269 -3.624686 -6.931223 -7.774255 22.843490 15.547366 8.817042 2.933366 1.181191 -13.413416 11.902984 --18.788870 21.708138 121.375777 61.544562 -50.656589 -85.696178 -28.395762 -116.759166 64.943863 32.803010 93.506597 7.043551 57.013001 -12.003737 2.116741 -7.588203 47.738430 -5.066702 -3.689523 -35.848186 -19.253419 104.023435 38.451745 -54.941653 17.090104 -83.848821 52.116638 32.651690 50.382855 72.949985 12.151060 2.594578 -15.290265 39.970665 -40.489317 1.931440 -7.423213 32.426560 -48.659245 -18.125975 25.068757 -4.673055 65.817628 12.527181 63.907676 11.630786 44.760100 -6.030584 -52.636580 -32.053045 -35.569360 65.997594 -43.421231 48.072984 -11.531390 7.511864 11.446509 -27.295491 -3.201977 -84.775982 15.483557 2.057691 -45.782018 -5.000631 -60.207314 13.813079 -30.266452 -46.278146 5.244954 -35.089996 46.150056 3.777817 4.803523 -32.906836 -103.664061 17.599450 12.151117 17.333465 44.560181 25.847876 -22.519114 -17.967749 -47.637515 -61.400459 55.406430 29.062551 9.604630 24.184861 -39.517449 -25.394383 1.016496 2.558152 3.014900 56.316695 -67.284744 40.341730 -4.812302 -25.888114 -27.084810 -68.415428 6.433448 -59.470858 22.682924 30.889577 -16.180378 12.788704 -17.210357 25.836268 -19.941283 -70.145517 21.605029 -23.440239 -21.472364 75.865674 -39.992873 -30.873716 -18.256745 0.132863 7.086878 59.745783 5.287719 27.131105 64.879389 48.300535 38.644492 -63.359213 0.840343 37.286619 42.331802 38.099626 30.265680 -47.304549 -39.985410 18.562864 -33.797894 -122.796040 -22.339587 54.749762 69.973530 -2.947885 -66.231623 27.033622 -36.798865 60.843186 69.492775 36.752818 27.478647 7.783770 -55.618059 27.545704 115.692460 -40.657572 54.303072 -25.038942 -57.660978 83.022395 -35.803757 49.219790 -6.824009 0.388123 8.712076 -52.390480 3.250123 89.804292 20.078090 25.529428 11.086012 13.911850 -28.104932 -101.690233 -120.115566 -26.468501 70.092215 39.239597 118.094804 -61.080204 -33.342776 -8.725488 65.157548 -14.408467 -42.209761 20.516804 -39.238438 38.126739 -158.279254 -104.821043 127.610685 110.010824 39.435141 -3.623941 59.986831 32.109996 -32.571967 -54.017217 -45.826050 40.988680 15.558193 -44.401109 -18.012760 5.918589 -90.405840 -19.223237 3.304996 14.393948 30.013078 -30.273974 20.674836 -12.923432 -57.973588 -44.969507 39.995787 -60.368895 -33.188911 -9.586360 4.245310 3.711777 26.522020 -21.954716 -20.788777 21.228897 -53.927546 -11.456583 11.076121 45.839439 16.070826 103.395561 101.721894 -17.111530 38.182267 5.035119 -53.322911 152.307251 -57.903152 -2.898266 -2.899931 48.867633 6.190298 34.232833 49.543872 -30.810384 -40.920202 -79.148163 6.921639 16.527831 40.575472 -75.154494 -69.612258 -90.785455 -4.913104 4.954477 96.160139 -5.146655 148.262106 -36.942179 27.545519 -149.521853 9.156834 50.566641 -9.984883 59.690042 37.680299 -61.034170 -83.186824 -20.513979 -53.828984 6.124971 -10.063591 -58.087899 -44.756694 -38.951781 38.092470 -56.539220 24.956597 58.446301 -20.363754 72.098583 -3.208877 -11.337150 -40.915934 6.131315 48.240754 20.027263 -54.584254 70.476871 1.158920 166.213118 -19.691592 59.361726 -45.862526 32.362949 -26.682340 -57.334025 -35.759820 93.192020 84.992557 31.836092 3.681419 3.020441 -20.637759 50.310171 --2.215989 6.660380 20.662646 14.752060 -10.062111 -8.613833 -5.501239 -11.696821 5.629727 1.837775 8.453757 -5.179864 3.290459 0.134166 -2.957159 -7.551279 4.420432 -0.693270 -1.209898 -6.572869 -5.013429 9.750358 4.838078 -15.255488 1.295855 -16.990163 10.861263 6.253635 5.059781 8.986561 0.436936 -0.131591 -2.101974 7.129481 -10.565827 -5.166842 0.148551 2.071016 -7.641299 -0.677337 5.297295 8.659144 8.029059 -1.127783 3.634310 7.863420 5.645095 0.376298 -12.446504 -0.835988 -2.153114 10.853658 -2.327524 6.538954 5.374415 4.799399 1.867209 -12.687458 -3.026829 -11.547037 3.406158 4.486291 -4.909314 -0.203376 -11.404756 0.562541 -1.790843 -7.216828 6.932971 -2.934348 2.713947 0.361299 1.554169 -10.492086 -6.843338 7.785544 3.157786 5.571698 3.513842 0.939316 1.850313 1.378501 -6.510486 -7.662131 0.266481 2.299792 2.462387 1.251606 3.341611 -8.295763 5.067559 -2.651516 -4.363366 7.927609 -6.548206 6.242813 -7.694664 -4.001284 -10.056046 -6.575038 -1.948264 -7.774715 5.305912 10.270114 -8.908371 3.807665 3.356313 4.395868 1.701384 -8.081472 -1.304032 -4.528391 4.662670 13.528746 -5.933789 -6.705080 -2.649449 -1.830751 -1.748454 9.859509 -5.244217 4.471018 10.171064 8.850873 4.509614 -9.120984 2.189963 1.785754 3.656369 6.231257 9.853178 -13.117324 -5.493139 -1.414500 -0.420212 -16.210343 0.705032 -0.141273 9.214460 0.984805 -14.527013 5.849120 -5.989685 13.512022 2.513819 5.405339 3.739824 -3.066801 -6.662356 4.979605 18.133472 -7.165918 6.775541 -8.791514 -13.299290 9.468443 1.980153 8.810424 -0.162560 -0.219941 4.553881 -9.825388 2.919050 13.529882 2.461098 0.777643 8.508072 1.042042 0.672493 -17.502458 -15.198289 2.396619 1.506399 -1.326911 23.279677 -9.877386 -9.091987 -6.832173 12.372357 -3.109142 -1.301442 0.532682 -5.719538 4.002757 -14.878353 -17.400798 15.002688 15.642771 -0.916144 -2.060966 11.808131 -0.899933 -2.988282 -8.417596 -6.198718 6.039753 2.726905 2.784539 -0.229426 1.157965 -12.460556 -0.590516 3.430602 3.714157 9.786744 -9.697848 -6.665261 -2.953104 -14.943021 -11.584854 6.496991 -11.192857 -0.891715 2.403473 1.419251 0.419419 7.825032 -4.169736 -8.901632 -0.157492 -5.151980 -3.204733 1.177224 9.778687 0.332027 12.046777 10.155294 2.243674 11.325175 4.760338 -7.049940 31.226901 -7.308298 -2.628961 0.351947 6.954997 -2.444361 5.161412 4.983675 -4.354787 -3.513537 -11.947678 5.805651 -3.675668 2.222709 -20.812032 -7.369624 -12.939063 -3.831732 0.822667 8.108785 2.002177 20.638722 -0.871889 -0.546707 -22.213286 0.224090 8.418890 0.314574 7.772773 8.023196 -10.908912 -17.580867 -0.116054 -6.655844 5.582690 -4.699198 -11.816813 -8.152078 -1.144744 7.598315 -1.267671 6.405336 16.733039 0.541464 3.054491 3.219607 -2.778313 -1.683350 -7.324893 4.695928 3.903194 -7.720519 12.110016 -2.299512 24.013473 -1.889100 8.562418 -9.475904 0.513926 1.355157 -7.801711 -5.406671 13.585757 4.121495 5.985805 0.946139 0.969907 -8.511304 9.543482 --0.929005 3.332897 12.264824 6.840843 -4.851717 -6.920033 -2.965691 -9.683893 5.069964 2.044162 6.886143 -1.489729 2.847502 1.587643 -0.794678 -2.306338 3.030289 -0.447645 -0.588669 -2.930554 -2.298267 7.326377 3.359144 -6.970722 0.887298 -9.177995 4.943686 3.058043 4.121684 5.375121 0.552087 -0.374609 -0.908958 4.357437 -5.407297 -1.847953 0.949885 1.968444 -4.717282 -1.571503 1.941225 3.045187 5.580200 -0.005238 4.586488 3.015225 3.315445 -0.273187 -5.290481 -1.386076 -2.155452 6.808477 -2.794508 4.310632 1.392673 2.298754 0.487994 -5.765589 -0.778997 -6.620169 1.440598 2.365021 -3.143790 -0.132310 -6.233758 0.763571 -1.521094 -4.597976 2.692744 -2.900586 3.871998 0.213298 1.232950 -4.085661 -6.984451 3.474433 0.957652 2.428860 2.979396 0.759595 -0.476031 0.491833 -3.801265 -4.762056 1.929224 2.923349 0.961693 1.186166 -0.626185 -3.194930 1.505410 -1.228256 -1.324690 5.867768 -4.128713 4.305414 -2.875014 -2.175067 -4.420573 -5.888672 -0.481685 -5.350680 3.203324 3.727944 -2.787258 2.167367 1.268909 2.718386 0.682362 -6.548434 1.349106 -1.872080 1.052852 7.161266 -3.721037 -3.302218 -0.829317 -0.664572 -0.970671 5.606696 -0.963484 2.055270 5.573288 4.431469 3.157289 -5.566997 0.367046 2.085455 2.603718 3.925506 4.593192 -6.139260 -2.891501 0.237657 -1.370117 -10.997300 -0.346612 2.580620 5.865153 -0.099021 -7.271988 2.048676 -3.384532 6.456884 4.058771 4.215676 2.477844 -0.339293 -3.755956 2.051306 10.319388 -3.509656 4.629068 -3.805641 -5.913806 5.802407 -1.689292 5.700266 -0.628470 0.896385 2.232606 -5.918328 0.778530 8.030658 1.885462 1.613102 3.249755 0.175054 -1.905330 -10.112863 -9.297000 -0.607480 3.988807 0.664751 11.258313 -5.866063 -4.621435 -1.881748 7.046313 -1.703856 -2.097254 1.450671 -3.217993 2.967304 -12.113273 -10.022184 9.019177 10.073756 1.643954 -1.264254 6.232251 0.730069 -2.441159 -5.074078 -4.268758 3.552932 1.049474 -1.378520 -1.194413 -0.201469 -6.978438 -0.607836 0.992653 1.800251 5.076525 -3.636117 -1.111354 -1.196437 -7.344550 -5.668422 3.596664 -6.087574 -2.105498 0.312528 1.213764 -0.102166 2.887637 -2.342090 -4.082840 2.453362 -3.956768 -0.986961 1.802594 4.440926 0.082105 8.889624 6.991946 0.113890 5.448011 1.928518 -4.192925 16.354537 -5.196527 -0.483447 -0.231948 4.418602 -1.553811 3.179166 3.667571 -2.713852 -4.186727 -6.450513 1.951619 -1.125442 2.823778 -8.430279 -6.395907 -7.266767 -1.792957 0.672253 6.671416 0.701079 12.766237 -1.555055 2.074370 -13.451842 0.250342 5.343749 -0.465242 5.079280 4.312728 -6.323039 -9.125667 -0.784339 -4.364182 1.127522 -1.506038 -7.339865 -3.986374 -2.846686 3.275441 -2.464573 2.681239 7.626738 -1.211629 4.286914 -0.162651 -1.375309 -1.977637 -2.447544 4.497555 1.265364 -5.034541 6.806289 -0.613445 15.101396 -1.744051 5.137923 -4.671135 1.057099 -0.798798 -3.832087 -3.217011 8.243449 5.069261 2.994523 -0.561960 -0.653022 -3.662061 4.002540 --3.171029 6.005356 26.656419 20.795087 -14.141999 -19.228031 -6.015725 -15.779643 8.677723 3.808477 13.921493 -1.715760 4.973857 6.062204 -0.532596 -5.494211 6.183979 3.806387 -2.151710 -5.901378 -10.948247 15.554922 12.167693 -19.681018 2.011239 -14.790646 12.973746 10.272548 6.276960 13.736745 0.749093 0.246941 -1.898176 9.091795 -13.889068 -4.175038 -4.323848 4.313613 -7.748579 -2.777173 6.940462 0.825722 13.407940 0.530085 9.047930 7.314846 12.370675 -1.262244 -15.191915 -3.089991 -9.281645 13.934423 -6.526635 9.476204 0.364656 8.377258 3.640848 -11.861614 -1.921760 -21.077257 4.563179 3.383959 -10.379648 -1.181546 -15.255320 1.211705 -5.641859 -13.445065 6.023585 -4.213056 8.410527 -1.148296 0.561610 -12.497950 -15.677056 5.376355 0.525316 5.413020 5.888540 4.199437 -4.628066 1.314606 -9.757592 -8.876169 2.395117 -0.970577 1.071508 1.654183 -1.440889 -9.365402 3.038012 -0.840937 -4.475972 12.573204 -9.456904 14.632889 -3.677299 -3.785022 -11.171300 -12.868982 -0.735581 -11.369251 6.276465 9.115535 -6.429693 4.018320 0.536404 5.389709 0.424358 -17.577919 1.076248 -5.502141 0.237881 11.653712 -7.802455 -5.963799 1.983837 -1.034718 -0.741628 13.469257 -1.932501 3.906122 11.559150 8.603562 5.269727 -10.913268 2.599058 2.614593 5.856421 8.991686 9.305360 -10.747603 -6.484996 -0.028529 -3.028049 -23.875113 2.329545 10.857452 11.300564 1.848179 -16.626862 4.504034 -7.282383 13.696961 8.724238 14.654800 5.157789 -1.351366 -7.865372 3.237391 26.479201 -7.718319 10.235080 -6.293814 -18.052496 19.909676 -4.463502 12.714356 -0.331580 1.849478 5.555461 -11.901602 -0.293106 18.095010 4.770689 -0.018298 13.731706 -0.546705 -5.586118 -23.217670 -20.024251 -0.216793 10.315618 6.522681 29.789756 -14.191456 -7.640669 -3.841203 13.198041 -4.153956 -4.947802 1.119682 -4.050510 5.613878 -35.762672 -23.709645 19.292224 16.199909 2.416771 -1.809399 14.988698 1.365705 -1.179956 -13.134583 -11.759258 7.334441 2.348032 4.449585 -0.065257 -0.907809 -17.695635 2.757178 1.950719 3.253451 12.415602 -13.326108 -6.101840 -6.286937 -18.102143 -13.475876 4.822422 -16.279861 -5.137669 0.705766 1.947415 -0.413835 2.873530 -0.761120 -9.007338 0.956695 -8.852990 -2.200655 2.718364 8.825533 1.665611 23.324248 18.664673 -0.314368 9.117260 4.478782 -8.235126 45.084214 -13.683033 -1.314604 -0.145536 14.445426 -3.036823 5.461876 9.663377 -4.698974 -8.644572 -12.635167 6.516259 -1.522535 5.624244 -26.520165 -11.361626 -18.640643 -3.674952 2.082965 17.145205 -0.357215 28.239842 -2.701081 5.006769 -31.609253 0.826044 11.458135 -1.279705 12.709048 9.108770 -15.524632 -20.043099 -1.817357 -6.010371 12.241425 -2.397185 -14.423717 -8.752617 -1.128736 -2.643750 -6.257041 6.581337 17.811328 -8.301587 8.418955 0.878942 -3.103672 -1.583103 -5.716442 10.960075 4.344577 -10.962703 18.273205 -1.636405 34.733134 -0.022703 12.434691 -9.088877 2.857763 -1.987412 -6.113110 -6.646054 16.704328 11.118188 6.928989 0.956092 3.513462 -7.042365 6.466764 --3.535000 5.879057 27.782486 16.547689 -7.557994 -13.194776 -5.485920 -12.881131 7.536376 4.391033 13.842680 -2.539007 5.251787 5.108134 0.087190 -6.062349 4.606560 0.152019 0.181721 -4.496781 -3.573228 14.892507 13.334914 -18.381882 0.539064 -19.570789 12.041704 7.331950 8.417356 13.165694 0.335990 1.386195 0.609991 9.294811 -13.912784 -5.340185 -4.172119 5.105650 -6.001778 -1.294658 6.234168 9.872296 6.642110 0.831838 7.725018 8.874385 11.216971 -2.547976 -10.741355 -3.548226 -7.397294 15.412995 -7.378987 6.568895 0.398662 9.176866 0.802462 -12.604095 -2.922858 -21.241075 6.239452 9.808615 -9.642963 0.745836 -15.254346 2.620895 -5.965341 -8.414014 6.109204 -1.225149 8.201079 0.634392 2.590633 -12.697690 -11.964649 7.941118 -1.986263 5.344197 5.529871 -0.880838 -6.937699 4.636570 -5.445306 -9.537219 2.013754 1.006205 0.208070 -0.897270 4.989462 -8.189489 -0.139602 -0.847319 -7.823621 12.898093 -9.756215 13.628040 -4.482170 -2.131934 -6.867176 -4.939369 -3.110137 -14.150641 4.688673 13.057696 -4.574669 2.969103 -2.162385 4.260301 0.995631 -15.147585 -0.182522 -3.105250 0.202519 11.537163 -10.004110 -2.440329 1.006881 1.248040 0.793451 14.124319 -2.775475 6.023362 12.607200 8.375850 2.282333 -9.382094 4.798367 4.097376 5.360651 8.454444 10.116252 -12.996794 -7.715114 -3.746041 1.731197 -20.895002 4.557042 9.178255 7.169041 2.480518 -19.029455 5.889804 -5.656515 14.230412 10.405175 11.798028 5.301787 -1.669135 -5.209737 4.799926 26.027390 -8.992256 8.721641 -5.599127 -17.616452 19.167041 -6.840511 13.504111 0.266814 4.521271 6.870054 -13.976363 -0.859917 17.818119 5.037055 4.936498 15.635679 -2.256715 4.372770 -20.624984 -15.655956 -1.643925 3.992202 1.451286 26.322345 -10.027136 -5.125655 -3.487439 12.298483 -2.508751 -3.564476 -2.136953 -2.287236 3.251203 -29.581719 -20.886308 15.600487 17.051398 -1.042184 -2.419816 14.963579 5.099220 0.409409 -9.745023 -9.842086 9.287424 -0.450266 7.508964 2.170503 0.541038 -15.977693 0.007322 1.574038 2.327724 11.140718 -12.535122 -11.707050 -1.966500 -19.863659 -11.437552 3.725842 -14.792343 -6.167050 -1.918346 2.231281 -0.824398 2.020284 -4.570747 -7.652899 4.808514 -9.047618 -4.836985 4.003210 9.589729 3.095420 18.516848 12.792090 2.445328 6.013379 6.533324 -6.919771 38.933460 -8.252281 -4.356396 -0.526641 12.178003 -3.590994 6.177559 3.277604 -3.793523 -10.366915 -13.564289 10.163219 -1.779735 3.589035 -20.744303 -9.291324 -12.366139 -5.568123 5.387977 15.686252 1.329280 28.844671 -1.668684 2.617788 -26.961605 0.733854 11.027560 -1.985278 12.349899 10.895415 -13.034781 -18.960686 -3.863519 -2.373743 12.771511 -2.851997 -16.668924 -9.122933 -2.666088 2.765028 -6.328437 8.361276 16.607724 -2.905291 7.291860 4.817433 -3.414711 -2.389923 -4.979904 6.357958 7.153516 -11.626077 16.291025 -5.075582 28.998384 -6.524078 12.369145 -11.654813 1.255325 -1.748674 -3.461790 -4.802164 17.011234 10.489226 6.240025 1.929779 0.413075 -7.896711 7.125189 --74.813165 30.484467 228.456521 93.087452 -104.070018 -161.552263 -59.174889 -247.415679 128.312326 80.967606 209.480470 1.638939 132.354473 -59.783834 4.823806 -13.644826 126.995689 -40.805345 16.047027 -75.393158 -19.158330 205.854900 51.700973 -52.276390 35.996620 -159.584935 104.098538 40.347835 86.064560 144.172133 43.884456 2.661457 -50.574295 65.964356 -26.481723 52.189731 25.765123 72.590612 -86.031218 -33.709225 29.241189 -53.169173 129.752817 11.335732 146.714709 4.941143 71.584209 -13.568221 -129.805978 -87.085064 -60.629380 105.576028 -107.435830 78.622713 4.416271 -34.201290 36.471760 -29.856254 -8.310041 -161.493857 9.450672 -51.782366 -74.382446 3.479184 -103.119680 41.452517 -76.163775 -67.823735 -1.680258 -81.462885 81.453166 26.510602 34.774017 13.340220 -194.041118 46.113497 44.988085 24.512442 92.202363 53.698316 -29.606101 -48.229272 -94.641500 -132.910785 130.591896 66.969357 37.750662 47.239082 -119.334830 0.492297 -2.485599 7.150620 20.224299 98.923321 -133.058572 38.703071 5.051550 -66.251189 -50.639149 -173.384580 14.045303 -116.801209 33.990008 79.579074 -58.546855 6.473940 -98.308488 47.428197 -72.811947 -128.507376 70.966029 -76.165713 -47.608937 149.147395 -105.683557 -52.596366 -84.448233 4.706025 51.795262 101.916126 12.500627 66.529553 106.541008 96.441129 99.703052 -134.358556 -20.331529 81.160761 109.687169 50.440756 45.473406 -82.403744 -81.192298 46.412849 -104.331588 -231.905954 -92.578550 101.364235 151.001131 15.100384 -116.344840 40.738281 -77.003543 128.212388 147.332242 63.157354 39.599152 38.746809 -124.964101 56.532766 177.613274 -84.532811 116.938051 -27.062361 -80.967308 141.712412 -67.872818 80.372691 -4.429163 3.116220 -6.278569 -102.811721 -10.148358 166.936634 56.298646 68.378978 -33.647552 47.743464 -46.316889 -198.638152 -259.524820 -40.844350 179.581024 80.424191 192.852474 -132.819049 -68.933246 3.710559 136.638307 -13.450186 -118.079848 41.283639 -78.334290 79.467038 -302.970741 -212.341474 277.712083 222.971603 90.253246 6.016291 88.869900 76.857613 -124.958014 -86.735485 -95.202036 93.685185 -6.523949 -154.410627 -59.128498 34.389346 -172.897661 -60.701021 -5.617063 34.076051 51.431316 -44.674526 79.182666 -2.983054 -65.618885 -58.004605 94.088441 -88.814108 -95.337571 -28.561831 4.582576 52.141350 67.371437 -48.681524 -16.122133 45.213837 -126.671037 -40.196286 25.612354 98.358426 43.234211 222.340943 215.052009 -41.193212 52.545071 -15.746030 -113.832567 240.020177 -103.571810 3.744605 -13.953008 75.078979 43.583748 61.170504 131.352999 -66.619587 -101.609857 -161.231781 -25.310353 37.651702 98.321358 -127.989588 -169.774829 -201.560942 22.743620 16.378553 189.040870 -13.562337 288.097345 -73.355653 43.488177 -272.245979 12.870011 103.779101 -22.144472 118.227048 57.041525 -111.603471 -141.006864 -49.907502 -139.977069 -17.748615 -13.184275 -79.679027 -79.119233 -93.653325 122.068527 -105.880538 30.555515 73.169408 -8.986036 164.023350 53.602785 -20.160117 -106.569970 38.206982 90.745500 34.029418 -98.486457 160.417775 26.644998 323.231383 -41.722531 75.620627 -77.590520 74.913944 -49.992230 -124.719689 -64.421151 182.482991 198.178721 63.279792 -9.278424 4.185473 -37.211324 121.430699 --3.984306 6.275189 28.014128 16.149496 -12.896594 -18.244897 -7.117704 -17.424657 8.246563 3.929948 15.560764 -2.675714 3.883673 7.206743 0.887024 -5.268839 4.778217 0.433391 -3.447580 -6.089702 -7.993235 11.744641 10.513830 -17.744146 2.402681 -17.794956 9.770113 9.022881 4.902253 10.495704 0.404441 -0.126101 -3.395457 9.039863 -13.306323 -2.922233 0.768845 2.978014 -7.400748 -2.989225 6.680192 5.498607 10.363871 -0.618413 11.177042 7.703590 10.169038 -0.839785 -14.725069 -3.919046 -6.862490 18.070363 -6.062928 8.908643 3.787571 10.287914 0.516234 -15.434647 -2.951392 -20.138061 5.045944 6.073563 -9.104235 -0.879758 -12.675248 1.969253 -1.974090 -10.136067 8.009942 -6.302507 8.722693 -3.615127 0.583828 -8.668211 -11.691828 5.260146 -0.187485 5.906748 5.345532 1.081105 -4.000871 2.179982 -6.766462 -8.585654 1.121244 1.437835 1.127610 0.448141 -0.413631 -5.272272 3.175975 -3.146428 -5.093070 12.845904 -12.597668 11.144378 -3.377625 -4.382181 -12.200373 -9.258529 -0.233040 -11.353484 6.513177 10.600520 -6.718667 3.083023 0.270300 5.614448 -0.428165 -16.313696 1.261381 -3.697003 1.600598 11.746533 -10.287078 -4.686928 2.732903 -2.039320 -1.885657 12.913247 -1.882555 4.624763 11.665433 9.895594 5.546166 -10.628541 1.298906 3.040209 8.406428 9.378770 9.540111 -13.838174 -5.618427 0.125896 -3.758240 -23.988969 2.193957 8.512533 12.958677 4.690362 -18.610893 3.186638 -6.684757 14.946101 6.816361 13.917470 3.510571 -1.897614 -8.612430 2.773740 24.553972 -8.280384 12.111355 -4.582811 -14.375665 14.539657 -5.235716 12.760492 2.891705 2.773652 6.299668 -12.701846 -2.716013 16.955520 7.374827 4.116204 10.457824 0.199334 -4.712440 -22.779824 -20.411780 -2.062499 7.780875 1.140259 25.019027 -13.658827 -11.151890 -5.585023 18.712660 -6.861339 -6.422709 0.970025 -4.640423 5.646786 -25.997478 -20.941642 18.547999 22.491673 1.587053 -1.915564 18.392880 1.815012 -5.732265 -10.513140 -10.344852 7.588527 2.618296 4.219540 0.758121 -2.093515 -16.895665 0.312023 0.261677 4.080024 8.493915 -8.313303 -5.517951 0.810886 -17.107183 -11.309226 3.796171 -14.495656 -5.048445 0.389795 3.067475 -1.097881 3.467091 -5.838378 -10.174092 4.544035 -11.159495 -1.139860 5.467316 8.572413 4.015875 24.423531 13.751358 0.990523 13.805214 3.838026 -8.139656 39.341665 -11.665668 -1.373888 -0.908994 12.398702 -4.090743 5.264737 6.836773 -4.884673 -10.072403 -12.895813 5.720785 -4.210777 6.811798 -19.368995 -14.766196 -17.267994 -4.700447 3.831123 15.240560 -0.375642 27.879366 -1.087531 4.774415 -31.973530 0.705922 12.901999 -2.796539 9.027194 8.938449 -13.499595 -25.561614 -0.455785 -5.793168 5.819818 -2.123279 -15.788734 -8.213311 -7.371874 4.249101 -5.932092 6.210212 16.915057 -3.359580 8.704596 3.162872 -3.801304 -0.930150 -5.884235 9.873027 4.146235 -12.039309 18.242615 -1.005878 37.175474 -3.233764 12.601687 -8.948174 2.032872 -1.540629 -4.712402 -5.759871 15.935433 12.951722 7.435079 -1.470408 1.862246 -10.227089 6.368335 --4.412070 7.583705 32.669007 20.366412 -11.774342 -17.330214 -7.423176 -16.556317 9.042588 4.708340 16.470020 -3.250327 5.962767 5.704089 -0.687421 -8.087553 6.541055 0.273871 -1.224025 -6.531033 -7.712241 17.046320 14.374606 -22.569106 1.928408 -22.853502 15.662914 8.969821 8.192092 15.827461 0.572338 1.614646 -0.786518 11.628091 -16.058416 -6.239746 -3.313880 5.888939 -7.597373 -1.192395 8.938139 10.029403 10.938460 0.745664 9.450163 11.719436 10.813098 -1.982887 -15.536519 -4.432767 -7.745482 16.898438 -8.342728 9.055406 0.935307 10.753848 2.502351 -16.026333 -3.167733 -24.137980 6.469971 9.411553 -10.713976 0.435050 -18.205416 2.204004 -5.852871 -11.123457 8.261604 -3.061320 9.116722 -0.188420 1.694354 -14.404377 -13.359829 8.979943 0.189899 7.482550 7.207139 0.060816 -6.483170 4.475117 -8.136492 -11.425482 1.761568 1.040503 1.981433 0.502194 4.299772 -10.215619 2.472149 -1.073450 -7.109974 15.283655 -10.642530 13.998526 -6.015955 -3.893512 -10.474345 -8.992225 -2.670681 -15.116064 6.652656 15.352675 -8.627327 3.781300 -1.147347 5.570156 1.466734 -17.971582 0.025423 -5.784666 1.458150 14.790807 -10.687551 -5.518967 0.381353 -0.299220 0.675186 16.676813 -3.200931 5.499370 15.429385 11.059382 3.937873 -12.045009 3.882332 3.428885 6.066627 10.012726 12.637330 -15.597588 -8.887240 -3.402675 -0.520580 -25.939014 3.574528 7.746916 10.478120 2.615635 -22.473877 7.664201 -8.204563 16.435244 10.756476 14.166062 6.174134 -2.381048 -7.743426 6.180871 29.737810 -10.272258 10.956606 -7.435023 -21.533818 22.003880 -5.602348 15.095771 0.422687 2.909745 7.418730 -15.692146 0.506976 21.063265 4.931873 4.931288 17.106903 -1.984492 2.780038 -25.004680 -20.527648 -0.039072 6.798026 2.744393 32.723326 -14.175677 -6.902776 -4.881610 16.789655 -4.105730 -4.612922 -1.341875 -3.025847 4.990650 -35.238792 -25.805010 20.449570 21.227664 -0.401964 -2.457422 17.605499 4.209017 -0.529299 -11.803751 -12.523723 10.276493 1.580688 7.710009 1.900418 0.636815 -18.649311 -0.248565 2.466266 3.728768 14.112069 -15.618035 -12.694361 -3.607260 -22.717981 -14.510062 5.088633 -18.189426 -5.830635 -0.254261 2.076219 -1.123579 3.964114 -4.930818 -10.999896 3.648820 -10.314119 -4.841394 4.096005 12.273133 3.001567 22.960996 16.838190 1.202049 8.495876 7.549063 -8.495511 47.269358 -11.397546 -3.416029 -0.227871 15.531142 -3.281036 7.174653 6.972157 -4.989592 -10.650468 -16.470211 10.245332 -1.968817 4.687325 -27.629948 -11.135120 -17.534390 -6.418748 5.140554 18.899090 1.143301 34.398261 -1.654930 2.688384 -33.041013 0.557559 14.228072 -1.978301 14.276212 12.423678 -16.120832 -24.513705 -3.823401 -5.729274 14.224508 -3.646723 -18.246253 -11.036396 -2.929919 3.566210 -6.379148 9.880805 21.566503 -4.167455 8.189157 4.560414 -3.959500 -2.547936 -7.776154 8.543559 7.096419 -13.235731 20.393425 -4.167792 35.886663 -5.508225 14.655133 -12.994814 1.634508 -1.155322 -6.136120 -6.845645 19.750185 12.096400 7.629298 2.558009 1.176412 -9.212769 9.588721 --7.990347 8.442702 39.898506 26.079559 -19.578961 -30.027699 -10.985813 -29.812425 15.632444 7.484472 29.189951 -0.570429 13.573382 3.343668 2.385622 -4.592932 14.428145 -1.648965 -3.011337 -11.683601 -13.195225 30.920711 19.061300 -24.606034 5.113640 -24.071029 16.986588 13.484218 10.645263 22.277813 2.117585 1.585776 -2.120298 14.448648 -18.842916 -2.014725 -6.494993 10.203897 -12.256938 -4.163895 12.606834 0.591406 22.629712 2.429794 16.131964 10.446804 19.582830 -2.073122 -23.293886 -9.802138 -15.020450 24.888096 -14.877783 15.253727 -4.060308 8.485144 8.116737 -15.520205 -4.139757 -31.609163 4.071144 4.148397 -17.470857 -2.348711 -20.891236 4.271148 -7.859242 -17.312098 7.316733 -7.278223 15.985681 0.094222 -0.875293 -13.724900 -26.132269 7.849480 3.373800 8.650465 11.506712 5.806885 -8.448694 0.082501 -15.789322 -18.381453 13.621465 -0.045880 6.236276 4.581120 -7.756286 -8.932618 1.729935 1.188692 -3.834215 19.068551 -18.225914 16.994987 1.006664 -9.465417 -17.074986 -17.082176 -0.239200 -19.854367 8.301649 16.028103 -8.610857 3.375779 -9.034424 7.123861 -6.170100 -27.945209 2.789114 -9.380647 -7.242839 20.094610 -16.033693 -7.564929 -0.102344 -0.093780 2.145858 21.031571 1.542216 8.402575 22.484306 16.076806 8.879812 -18.887288 2.702592 3.162307 15.275187 12.980213 14.351547 -14.779515 -15.020428 2.737202 -9.057079 -39.474848 -3.287265 20.487146 22.168766 4.731679 -28.521981 13.022428 -11.928524 21.593669 19.667931 17.607141 9.109025 -0.798539 -16.261072 8.770915 39.700844 -15.691238 20.781359 -8.052956 -24.403332 33.759481 -10.950928 17.467592 2.824365 0.286991 4.141736 -19.110127 -0.685055 29.873962 9.880974 6.329610 13.432979 1.310256 -4.149486 -34.736779 -37.800467 -4.452947 18.858440 10.914221 43.190423 -21.447936 -10.833409 -3.340137 20.924955 -9.319032 -14.134213 1.598677 -8.517550 10.309949 -54.938261 -35.432023 40.007297 31.081920 7.407265 1.554155 23.902647 8.507230 -5.851718 -17.608798 -17.760123 16.412008 6.139005 -2.115616 -1.546469 0.869415 -29.057726 -2.227256 -0.366202 5.786291 10.531165 -17.233393 -2.972472 -6.811014 -26.624737 -13.431376 7.081647 -24.963880 -10.871579 -0.423360 0.060710 -0.034038 6.207279 -3.078182 -10.539269 1.582614 -19.912937 -6.270198 3.118102 17.998245 7.804837 36.186257 34.171686 -5.044157 14.810438 4.379262 -16.233680 55.066064 -20.776320 -2.610993 -2.530258 23.878609 0.616870 10.163529 17.860181 -7.737597 -14.991902 -24.516352 10.159597 4.797721 10.201155 -33.311074 -18.706306 -31.589046 -5.016625 5.658873 33.309532 -3.912704 47.875629 -8.501438 7.418102 -52.236677 2.900094 15.445000 -2.077778 17.254876 13.712447 -21.051102 -31.040764 -6.415066 -14.800069 11.148685 -2.250033 -20.647563 -15.436746 -9.550477 6.407858 -18.019811 9.826021 23.573989 -9.269338 18.493658 5.751329 -6.096751 -7.975315 -4.080692 18.958442 8.429881 -16.876784 28.318385 -1.525071 56.281175 -4.324671 21.793707 -16.562678 7.162099 -4.100216 -14.220176 -11.209679 29.808282 25.477530 7.754320 5.023615 3.729229 -7.526035 15.734335 --8.923849 14.074384 64.701895 30.247785 -30.455989 -55.777869 -14.826727 -76.393022 38.910140 20.544295 54.849872 3.589552 40.179903 -16.931347 -0.135946 -0.381126 33.905555 0.158381 1.459864 -22.533252 -13.282623 62.364927 9.531898 -18.916135 11.723163 -43.433833 34.059040 19.116064 31.203573 43.091084 10.951298 0.588128 -13.572773 20.779929 -15.403839 6.268755 -1.129667 21.499809 -31.390164 -8.983236 8.365651 -14.213078 41.609004 7.363742 37.105113 4.409911 21.712451 -0.004583 -28.694192 -21.653115 -18.156661 30.067016 -24.750299 28.107131 -9.126378 -9.438638 10.652291 -4.505555 3.626581 -37.922629 6.838808 -10.899847 -26.080473 -2.199117 -34.826418 6.749566 -22.809087 -29.341239 -2.344148 -22.463574 23.676437 3.589123 1.778874 -10.763126 -67.980614 6.553507 12.919100 8.099760 29.743530 19.230186 -6.889241 -17.328839 -33.064038 -38.840619 40.237291 22.175737 10.553076 19.684948 -36.811334 -13.813330 0.711636 3.882630 13.473063 28.712450 -35.350216 15.805461 -6.311098 -15.728771 -14.124396 -54.497160 8.033186 -30.629469 12.394000 10.551677 -8.477388 5.346997 -12.617981 14.578932 -14.618471 -38.314892 16.480997 -20.697393 -12.500237 49.493223 -19.316022 -22.015515 -20.535154 -2.155351 6.933458 31.027907 7.647508 12.654420 35.321089 26.846645 27.170195 -40.160905 -7.336327 24.855339 23.079960 19.812248 13.209485 -24.733147 -23.490824 14.693203 -29.732487 -72.682572 -20.916283 28.524155 41.926075 -7.514702 -27.860297 16.080692 -24.815266 29.254000 41.360892 16.786533 15.736314 8.374015 -34.182964 16.116182 56.905882 -22.258918 30.108815 -13.466718 -27.773038 41.507728 -14.614634 21.787331 -5.991228 -5.753343 -0.928643 -23.847173 5.076134 50.312038 8.292377 15.167934 -2.680309 12.832328 -25.435863 -54.698891 -72.538052 -11.096296 53.450443 26.373004 61.856944 -37.851983 -17.921719 0.474733 37.126647 -6.335161 -27.196264 16.526808 -25.928209 25.886006 -88.871773 -60.207041 76.929386 59.748980 28.234539 -4.163526 25.081729 20.571296 -28.412447 -31.691800 -27.062654 21.433980 6.140341 -45.533820 -17.784317 7.299941 -53.104011 -11.284516 2.756591 9.609933 15.891111 -12.181731 24.679162 -14.751280 -23.447393 -26.774235 29.409164 -27.894121 -15.374451 -5.446125 0.248616 5.561064 19.569705 -12.534121 -7.822775 11.457050 -30.387017 -5.127126 3.365874 24.911507 8.135962 65.096677 61.176892 -14.727111 18.953238 -1.735532 -33.358024 79.243157 -32.221908 4.051464 -0.892626 27.825339 8.134437 20.705784 37.711508 -20.237965 -24.644972 -49.662998 -10.699460 16.400538 25.156097 -33.589395 -39.616823 -60.538354 2.386470 -3.966307 60.489047 -4.196866 81.764538 -25.238104 17.585024 -77.173202 6.280162 25.262831 -8.289731 37.095228 17.587314 -34.683046 -36.697835 -13.370483 -40.261325 -9.883601 -5.138433 -26.393567 -25.012332 -21.441252 21.628042 -31.980629 9.572995 26.553068 -10.638322 43.918261 -5.200209 -3.118972 -28.651039 9.898778 31.992426 6.726780 -31.488206 37.933981 7.141166 95.812398 -6.067128 30.184525 -22.623068 19.817490 -16.110542 -41.493236 -23.675736 53.871765 51.780033 18.949224 1.370396 4.931910 -5.390358 33.775890 --7.676322 9.126369 46.177777 33.884743 -17.805501 -23.693873 -11.793180 -25.372620 19.170905 5.639445 25.035972 -1.194092 9.949226 3.608022 -2.515671 -12.881652 12.592801 -1.148153 -4.336328 -10.993991 -6.572145 33.866980 21.391733 -38.661630 2.780716 -34.235209 22.791398 13.549007 13.875767 28.255132 1.182000 2.943356 0.683029 18.003894 -24.367502 -10.218786 -5.072589 8.547901 -14.918734 -6.909002 16.583497 15.252075 23.091603 2.505694 14.441388 13.273556 16.360825 -3.874598 -21.605190 -5.676601 -14.578526 24.454835 -12.591442 17.285888 -2.158431 13.553966 8.346865 -22.409767 -4.039457 -36.367384 6.521497 13.531193 -15.484989 -3.033305 -24.991524 3.473226 -5.079687 -17.049606 10.576860 -9.153357 15.286744 1.190451 3.362286 -24.914451 -25.468968 14.080304 1.116257 11.313467 12.545116 5.268057 -8.393377 2.662105 -13.443519 -17.502896 6.300551 0.198478 2.409166 6.035442 4.773343 -16.351811 2.194989 -0.202267 -9.037242 21.907387 -13.238734 21.353814 -4.952054 -8.142566 -11.610089 -9.423403 -2.471997 -22.311173 8.112695 19.936209 -12.681996 8.607201 1.604150 7.913170 0.799462 -25.282918 4.946633 -7.095564 -3.796654 24.581720 -13.315033 -11.759098 0.447380 1.198512 -0.507408 26.350273 -6.438442 10.844661 20.397716 16.505797 7.700282 -20.816435 7.260273 6.302812 12.063603 13.362681 18.424239 -18.336714 -14.933401 -3.445101 0.160847 -38.856502 1.739865 15.439241 21.621748 3.349208 -33.232646 15.571766 -13.115820 26.462288 17.478954 16.725535 10.949500 -2.302931 -17.453008 10.611196 46.269199 -14.452308 17.048397 -15.109286 -30.328271 33.970336 -7.518567 22.545810 -5.141337 2.710165 11.595414 -23.166933 4.943669 32.809773 5.472435 5.105767 20.840034 -2.023912 2.905281 -39.495187 -36.537918 -4.553980 12.115095 8.949995 49.755226 -19.650084 -10.878705 -8.701713 20.694573 -7.864989 -6.557447 0.457100 -9.097971 9.761988 -59.656224 -39.131255 40.222080 33.506069 2.196164 0.058971 24.166243 5.258117 5.277136 -18.830952 -16.251694 15.909912 9.092666 9.051331 3.368026 -0.533764 -25.394875 -5.459929 6.320989 4.598587 17.817628 -26.010211 -12.733992 -8.058516 -32.671548 -22.069243 8.956154 -29.698654 -10.268679 2.701995 2.383412 -2.712759 8.524640 -2.057891 -14.398144 4.245272 -13.213169 -9.272232 2.091015 20.067774 3.256608 23.967196 31.258633 -0.963042 16.842208 12.012778 -16.024371 71.073192 -23.538633 -5.513856 0.051390 21.623879 0.281174 12.450286 10.465080 -8.449604 -7.955828 -27.233071 17.934794 -0.340878 9.132168 -47.978581 -18.861731 -25.597319 -7.860648 5.636405 27.254596 -0.956214 54.056128 -8.266527 2.585756 -54.939905 0.837479 24.201913 1.441828 20.943197 19.098659 -24.693370 -39.189796 -5.736532 -12.498129 23.065885 -7.874623 -28.243391 -18.214135 -5.033037 9.755176 -16.095635 16.770604 35.091444 -9.993890 15.312021 -0.343374 -6.394380 -7.485057 -13.091320 9.172836 11.283400 -17.644772 27.431752 -7.888010 50.786960 -8.643109 24.193983 -21.561958 9.694204 -6.165390 -14.481253 -12.198286 32.933421 18.195898 7.988514 6.716741 0.052981 -12.387418 18.040394 --81.007428 35.313134 257.426701 112.925864 -115.698289 -179.290426 -66.880712 -263.614935 137.570037 86.154179 226.006734 -0.322372 136.287541 -51.978119 6.238047 -19.352001 131.061272 -41.144793 12.602734 -81.013776 -26.162268 220.427709 67.630368 -74.462682 37.474726 -177.780183 114.057289 49.452418 89.913254 155.620870 43.327165 3.448402 -50.910495 76.343337 -43.372518 49.654130 24.036683 77.455544 -91.559781 -37.618672 37.011868 -43.808244 140.515395 11.813403 159.563772 14.315432 83.128083 -15.906853 -146.291324 -90.709322 -65.318860 123.326359 -115.148182 87.970636 6.151479 -20.732895 37.403087 -46.355060 -12.186042 -188.516748 15.530229 -41.976421 -85.507294 2.320183 -116.416479 43.798587 -75.423263 -78.665791 4.880999 -86.248765 91.733100 23.700111 34.388699 1.042403 -205.619639 52.205549 44.263947 28.979982 97.655331 54.115109 -37.976001 -46.429891 -101.330461 -142.027297 132.995932 66.987744 38.287502 49.421593 -116.382497 -5.301462 0.118321 3.931180 13.138779 113.929379 -143.750756 52.196598 7.744208 -70.804796 -62.453840 -177.310342 13.591958 -129.828088 40.599542 93.076327 -63.161041 10.345449 -99.197551 54.264161 -74.783417 -145.255817 72.504265 -79.750879 -46.530631 158.276125 -115.606619 -56.132226 -79.733539 3.397889 51.256125 117.373733 9.697445 71.404849 119.333795 106.425111 103.454896 -145.070258 -16.104903 83.203119 118.982147 60.613152 55.082395 -96.550116 -87.766351 46.270823 -107.062245 -255.308080 -90.260092 112.225224 163.119946 17.221416 -139.210001 47.108554 -82.299902 145.096969 156.399572 77.981669 43.119651 36.601075 -133.870966 59.257113 205.791623 -92.517317 128.360356 -30.698648 -97.884329 160.922638 -75.690336 95.629330 -1.004434 5.570661 -0.413610 -116.390197 -11.295336 185.215449 64.801062 72.731398 -23.942221 47.583070 -47.273585 -221.311970 -281.235765 -44.480199 186.415400 84.069074 224.739140 -145.843522 -80.591522 -2.558711 152.019227 -19.507327 -123.466391 40.996702 -82.513348 84.780492 -336.765719 -235.362215 297.805851 245.848306 94.898971 4.545381 109.486677 77.527585 -123.913850 -98.114966 -104.750656 102.391397 -3.152339 -144.157819 -56.635297 32.191040 -191.310299 -61.286791 -6.974523 37.566773 58.766342 -54.399288 69.829388 -4.241500 -84.517361 -67.253499 93.757025 -104.258987 -101.392706 -29.281013 7.709285 50.557547 68.934446 -53.507759 -25.666901 48.284076 -138.170906 -42.355089 31.155887 107.701267 48.523827 245.325306 232.934182 -41.293215 66.282364 -11.489135 -120.951504 283.020450 -115.152847 1.380580 -14.658052 88.283846 40.781662 65.325213 138.849054 -70.874017 -109.123187 -173.400598 -14.752637 36.344667 105.197903 -153.636730 -184.454479 -218.208311 18.372691 20.726757 205.984579 -14.660279 317.746187 -74.483894 49.640245 -307.617628 14.090780 117.203051 -24.392752 126.206156 67.306582 -125.910156 -170.489288 -50.703373 -144.745513 -9.941509 -15.776398 -96.465024 -87.407663 -98.809293 123.304408 -113.395400 38.633452 92.628634 -14.018077 171.690557 56.177855 -24.071399 -106.977132 31.271743 99.240541 38.491780 -111.005494 176.898333 24.143347 361.023989 -48.010894 90.917521 -87.989789 80.232659 -52.950103 -127.737172 -70.044409 199.662218 211.431363 69.135809 -8.502220 6.164615 -46.885391 127.332123 --1.951566 8.602678 29.004497 18.222607 -12.467109 -15.818473 -7.146116 -15.829481 6.911188 1.701248 15.731901 -3.417162 4.082432 9.504222 0.407468 -7.006704 7.326357 -0.528016 -2.027936 -7.354685 -7.749700 13.135937 10.203202 -20.262002 2.344795 -19.237282 13.778380 9.182743 5.786894 13.262614 1.345780 0.269974 -1.263111 10.144136 -13.609242 -7.646296 -1.146684 3.922507 -8.269231 -1.264883 8.924179 8.254012 12.153296 1.261618 5.611953 11.263506 10.978596 -0.271790 -13.025045 -2.490867 -10.736733 16.644103 -7.957542 8.643794 -0.338877 9.652440 3.532144 -15.732492 -3.457716 -17.455805 3.808388 7.771237 -9.222286 -1.041170 -15.240221 2.575655 -4.694245 -10.491373 8.794013 -2.063541 9.887342 -0.882702 1.373077 -11.408812 -12.435443 7.507091 -1.255858 8.662611 6.037236 -2.280354 -3.256257 4.780603 -8.574855 -9.342588 1.727876 -0.374132 3.045177 -1.503765 3.735390 -7.485367 1.739835 -0.564461 -6.974332 13.185822 -8.168611 13.675913 -8.144502 -4.261387 -11.845203 -8.427677 -2.287073 -13.411180 6.707804 12.840460 -9.257432 3.988020 0.171563 4.793984 1.261380 -17.499376 -0.389358 -3.095124 -0.423530 13.607818 -9.615844 -6.867568 2.691432 -0.898470 -0.464041 14.325028 -1.974919 5.765307 13.113236 11.274933 3.358191 -11.207227 2.494347 0.273895 6.113201 10.424645 13.870785 -12.721789 -9.209912 -2.884539 -1.516860 -23.712482 5.990829 7.382819 13.189765 3.113620 -21.533844 6.651078 -9.662863 14.543496 9.042634 15.378203 6.352693 -2.956017 -8.210729 5.791034 26.022649 -9.901154 12.635774 -8.786024 -14.435205 16.803182 -3.201205 11.901997 0.444551 3.271739 6.885084 -14.475745 -2.796147 18.967101 6.890566 3.888005 17.242485 -1.541939 -0.329943 -23.873918 -17.669768 -0.830804 7.393811 -0.113780 25.727291 -13.693669 -7.618338 -4.128717 15.011630 -6.747459 -5.649641 -0.505948 -2.972996 5.023264 -29.032623 -21.763954 18.409306 17.854808 -2.585619 -1.874111 14.588743 3.327051 -2.838292 -10.792500 -11.662393 10.649135 1.965153 5.860707 0.947636 -1.030926 -15.168240 0.489343 3.607645 5.267470 12.417401 -13.489860 -10.252320 -0.425779 -21.667267 -13.246114 6.056150 -17.880306 -6.295806 2.516829 0.209632 -0.958253 3.116862 -2.458159 -10.534661 4.941639 -9.941148 -4.878018 4.063528 12.327394 2.293374 20.408405 13.795083 2.161534 10.009429 7.852469 -9.917502 40.579054 -11.234587 -2.250731 -0.920596 14.121911 -4.957255 7.195021 7.157536 -4.536663 -12.694833 -16.141204 9.043743 -4.064027 6.134420 -20.961694 -8.934878 -15.388987 -5.627216 5.618455 18.399427 -0.556746 30.000486 -0.929826 2.979277 -28.925188 -0.035727 13.057440 -1.131092 10.156120 11.492134 -13.435088 -21.032642 -2.114166 -6.299058 10.825905 -2.625334 -16.392900 -11.910406 -4.394508 2.487159 -5.809463 7.262805 18.886066 -4.541622 7.365421 3.406286 -5.619593 -0.406373 -7.781087 10.973716 6.947470 -12.705490 20.045101 -3.649598 34.686637 -2.718981 13.325800 -12.190151 -1.620865 0.119534 -4.080929 -7.088419 19.335099 10.870167 6.908857 2.387067 0.012654 -7.549167 8.571395 -1.180420 1.264710 2.316292 0.621082 -0.917452 -1.302529 -0.612689 -2.536735 0.917594 0.669695 1.056926 -1.066160 1.179729 -0.855868 -0.490689 0.062153 -0.091632 0.586935 0.469570 -0.993545 -0.206150 2.150430 -1.237204 -0.388742 -0.077307 -2.348646 -0.010416 0.336892 2.096744 0.731169 -0.440860 -1.207046 -0.588317 0.090570 -1.152754 -1.175298 0.234502 0.155035 -2.117233 0.738653 -1.318351 0.012447 0.894386 0.501668 -0.375538 -0.371867 0.404688 0.796754 -0.547564 0.931355 -0.874483 1.999423 0.895967 0.807790 0.859277 -1.324299 -0.890585 0.291782 -0.879638 1.089920 -0.371697 0.087991 0.404895 -0.378551 -1.492136 -0.217899 -1.156728 -1.093355 -0.548096 0.049138 0.149176 0.889572 0.523913 -1.067448 -3.365721 0.583508 -0.188998 0.556548 0.242107 0.435660 1.000425 -0.215253 -1.618356 -1.757040 1.498075 1.978397 0.354970 0.107224 -0.725581 -1.673786 0.005675 -0.436156 0.331927 -0.021123 -0.526686 1.090640 -2.499225 -0.013506 -0.537256 -1.921242 -0.618406 -0.021441 0.181757 -0.736803 0.904327 -0.573628 0.928058 1.051466 -0.365416 -0.211419 0.126128 0.622330 -0.862690 2.774897 -0.083684 -0.888586 -0.516578 -0.020956 -1.701611 0.759611 0.100001 0.560791 0.413471 1.353056 1.856129 -1.310858 0.073652 1.182575 0.022709 0.953144 0.792159 -2.213703 -0.761798 1.164628 0.035467 -2.408815 -0.109438 0.636893 0.909940 -1.257610 0.194169 -0.023737 -1.435908 1.457048 -0.486944 -0.695347 0.893075 -0.777158 -0.935888 1.578002 2.362137 -0.905488 0.892433 -1.952649 0.227895 -0.409848 0.567125 0.909011 -0.749358 -0.893198 0.090880 -0.404152 0.630411 1.698468 0.733460 -0.563191 -0.262617 1.014398 -2.180254 -1.644765 -2.035412 -0.479207 0.754603 -1.489879 2.004681 -0.168953 -2.354093 -0.976661 1.283745 -0.294095 -0.074014 1.157333 -1.825137 0.716611 -0.701497 -1.196951 2.331205 2.385062 0.476609 -1.108717 1.367369 0.504410 -1.597823 -2.399606 0.643318 0.222894 -0.071309 -3.274309 -1.617741 0.213874 -2.022360 0.252594 0.477771 0.324445 0.478628 1.074368 1.653185 -0.965886 -0.836935 -1.411187 1.969375 -1.518185 0.842751 0.835627 -0.349024 -0.810561 2.137969 -1.757059 0.151202 1.190400 -0.764839 1.030644 -0.600576 0.257580 -0.487441 1.753023 1.668758 1.011944 2.570504 0.649495 -1.809965 2.193952 -0.216006 -0.090851 0.138417 -0.494933 -1.514763 1.205117 -0.013487 -0.531224 -0.811026 -0.959061 -0.378988 0.153984 0.434623 1.232706 -1.412920 -1.075792 0.274554 -0.368235 0.956099 0.504317 1.278464 -0.956328 0.997313 -1.880798 0.622822 -0.827386 0.267666 0.580887 0.256880 -1.031900 -1.646071 0.268895 -1.138853 -1.454634 -1.714266 -1.774700 -0.393319 -1.071740 0.772317 -0.241725 0.556138 0.851751 0.096780 1.158427 -0.774612 -0.513245 -1.347609 1.161045 1.576293 -0.232351 -1.256012 -0.264319 -0.292509 4.002769 0.053705 1.186588 -1.576097 -0.644799 0.672769 -1.964362 -0.101249 2.615512 0.430754 1.580029 -0.682868 -0.410169 -0.352860 0.555011 -4.695264 25.795957 58.110109 19.983787 -34.631191 -32.686972 -13.329887 -60.444563 23.865013 16.913574 28.825300 -5.995229 15.749419 1.030215 -9.080765 10.260993 23.095414 -1.838243 -6.743833 -22.826781 -35.115930 24.085774 0.538249 -14.941769 20.642091 -44.105252 35.886831 1.679710 15.126110 17.923871 20.137391 3.177988 -6.395076 26.653234 0.161498 9.561931 5.747440 14.469791 -22.298649 8.331210 12.837840 -1.436005 24.553706 15.163740 24.857340 26.894466 14.785721 3.014003 -27.306677 -1.885233 -15.721259 31.146594 -18.722210 21.790054 -4.989250 8.217790 0.656995 -30.487610 2.126390 -8.155038 -7.289086 -8.425737 -19.962541 1.080090 -31.935898 0.617048 -12.106510 -25.002450 -2.658302 2.446291 19.745029 3.566633 -4.546063 -7.643692 -33.137800 10.914929 13.088700 11.498821 28.484595 -1.542005 0.375713 -5.773757 -27.343945 -34.241749 30.865762 12.057316 12.427655 1.913336 0.264051 -18.855498 -8.456810 -7.420418 7.856047 35.827525 -31.161416 7.204899 -20.148676 -18.091369 -30.657596 -41.986334 1.665688 -25.124891 18.632829 9.285032 -24.239281 14.290701 6.887958 12.197817 6.906826 -17.333434 1.909926 -15.468358 8.006677 41.528852 -2.747561 -28.565972 -7.329666 -9.315151 -0.535938 21.568406 6.897355 -0.282692 54.054929 21.289579 26.859935 -20.630115 -3.895068 5.050495 0.837255 15.783426 27.149998 -37.095849 -21.001411 6.999948 -8.324961 -52.738533 -1.899006 1.801178 25.058711 -14.578408 -25.757783 8.496857 -13.552480 12.981922 15.990417 12.297410 15.267554 -3.464082 -15.856291 8.193956 52.220857 -16.665334 15.395169 -27.158521 -13.643738 25.260676 -2.943554 13.089788 -2.781527 -5.210425 -1.369383 -25.727895 0.568747 39.042205 1.391340 -7.327875 17.607624 8.068753 -21.198895 -39.300024 -40.701148 -1.985172 24.432898 0.327022 51.201879 -34.192686 -7.094308 -14.853029 34.848340 -0.945877 -5.693912 10.806605 -17.471027 15.265923 -32.092769 -43.602967 50.827025 38.706762 8.774672 -14.136421 20.762108 2.375911 -36.322010 -34.829215 -26.319168 11.146982 11.871922 -20.913125 -19.828052 8.253742 -38.589797 -0.921219 1.674787 12.926287 35.368804 -7.018866 2.090652 -3.539004 -25.477748 -31.421737 19.725772 -18.107835 -13.081857 5.329964 7.971391 1.811128 19.708435 -7.668236 -21.033603 -0.121567 -17.242570 -6.711133 16.049195 31.728243 -3.068459 48.216867 37.092212 -7.243361 18.651711 5.679059 -19.792404 52.780936 -10.735714 3.261086 3.789977 16.538483 -8.348691 12.996115 30.288571 -14.987381 -29.542711 -31.678561 2.967555 -8.898287 5.124983 -22.263212 -13.055848 -39.467049 -6.546308 -4.561326 36.498340 4.256186 55.656305 0.370563 9.329304 -52.340883 2.412251 26.299394 -4.494124 24.213256 22.841481 -33.683816 -21.767622 -9.020220 -29.903718 -15.434151 -3.309082 -4.935991 -28.298298 -4.813764 16.051801 -8.509584 7.600111 38.918901 -0.832626 19.573479 -7.341105 1.379349 -13.580684 -4.389209 42.412958 4.003778 -21.810460 29.409855 2.725688 76.495288 3.622691 21.012000 -15.816054 -15.511934 5.093713 -20.409454 -24.478852 35.448085 21.205476 20.061203 6.607100 -3.724492 -4.494584 35.783111 --9.225116 0.651772 31.149262 23.308288 -17.747835 -27.877182 -8.439182 -33.235815 22.092514 8.602700 28.350795 2.946083 18.493672 -14.222593 -0.818790 -5.239781 16.542435 -0.804092 -4.718982 -11.812638 -3.878535 33.924180 7.854515 -22.617431 6.085912 -22.781460 16.675977 14.075231 10.590070 22.280330 4.279315 1.752543 -5.594112 11.441063 -13.395814 2.739898 -0.765654 8.152004 -15.313975 -9.764676 10.617580 0.487210 23.240739 -1.249141 21.757950 2.226379 14.573670 -1.167915 -20.123003 -11.573297 -7.511002 16.345056 -10.396275 15.244456 -2.862053 2.147734 7.991044 -10.530451 -1.271142 -27.916710 6.450703 1.407092 -13.143157 -3.129718 -16.715337 2.403303 -0.882332 -15.499751 4.965929 -17.458626 10.421068 -0.554741 -1.717699 -13.782431 -26.099679 4.533016 7.702470 5.230608 12.448714 12.605133 -4.430652 -10.066983 -14.426184 -14.243232 14.155759 6.494592 5.225576 12.870504 -14.779643 -8.695589 4.575290 0.455419 3.947799 12.632489 -17.536655 4.288487 3.299928 -8.871056 -8.361127 -14.556388 5.071238 -13.163361 6.790789 13.089478 -8.861816 7.331994 -1.512704 7.528161 -8.538646 -17.068216 6.432007 -11.893037 -0.984362 24.139813 -10.854788 -13.188523 -10.524344 -0.378806 1.407211 18.729528 -1.963519 6.308996 20.330686 14.357011 12.911083 -21.982187 -2.067901 11.809873 15.910090 10.519772 7.647018 -14.047362 -9.626066 4.621169 -15.080328 -35.265257 -11.960185 10.778318 23.878902 -0.580325 -22.730669 14.501060 -10.771560 22.334383 17.947318 7.694824 6.793761 4.882428 -21.066430 8.944649 31.024085 -8.814870 13.723540 -9.108724 -20.602081 22.384007 -3.158765 11.129438 -0.328982 -4.942214 1.002640 -13.365223 7.698644 23.461545 3.547240 6.523235 -2.189969 6.978980 -8.948105 -30.738502 -40.973639 -5.026131 19.211133 18.438283 43.807799 -21.234169 -12.935544 -6.326798 18.642217 -7.341806 -12.673737 7.074916 -15.283025 12.950571 -48.063911 -33.247853 44.525248 33.289361 15.498334 2.262554 21.976693 3.120591 -7.128006 -11.090362 -12.136225 11.033020 12.652849 -13.404517 1.276432 3.228053 -26.475436 -11.274064 1.612574 4.696803 5.944195 -11.641637 7.757590 -11.249989 -14.336825 -13.641058 11.291486 -15.986058 -4.582726 -1.643654 0.722522 2.029514 11.661721 -6.766278 -8.051368 -0.945991 -14.354408 -3.060154 0.208968 15.650866 6.805102 26.713060 35.762658 -8.733927 18.764518 0.279488 -15.920150 46.864747 -17.830976 0.936904 -0.178822 16.311838 9.836108 8.128152 16.870644 -9.940288 -2.488118 -23.919074 1.610524 8.434667 13.014564 -34.554926 -19.139937 -32.267429 -1.850565 -2.786389 26.335835 -2.673501 44.796429 -13.410736 5.013192 -49.839095 1.373660 17.291521 0.126802 14.690193 9.516237 -19.458472 -31.850206 -3.389203 -19.420391 0.153570 -4.255217 -15.746966 -14.553213 -11.655394 15.979010 -17.582510 7.402308 25.145863 -7.214850 19.362247 -3.845592 -1.125899 -9.140608 -3.897244 5.988604 6.464946 -14.589685 19.737697 1.760688 48.767472 -2.723510 17.587318 -13.582480 19.080991 -10.759875 -25.245485 -12.067004 24.525996 24.828110 6.463722 3.844208 2.580953 -7.467838 19.452402 --6.831898 2.775148 26.824437 19.838030 -17.806715 -25.622742 -7.367261 -30.583255 18.414076 7.781981 25.032089 2.098712 16.702637 -10.650082 -0.927114 -4.117649 15.451507 0.555629 -3.595341 -11.124457 -7.485260 29.002105 4.869521 -16.987089 5.734329 -17.572313 16.533229 12.422522 9.187394 18.547751 4.896731 1.584755 -6.319072 9.890867 -10.267459 2.239176 -2.134640 8.265139 -13.369181 -7.357806 9.550179 -3.503153 21.609988 -0.015793 17.530576 2.982508 12.395294 -0.014739 -17.861053 -9.958588 -6.614565 12.503114 -8.933000 13.243072 -3.034144 -0.166099 8.084468 -7.573248 0.406866 -20.660926 4.746601 -2.303273 -12.320813 -2.114698 -15.454166 1.518280 -3.791919 -14.962318 3.466555 -14.945758 8.651447 -1.285683 -2.927749 -11.159150 -24.433796 2.932971 7.637125 3.978533 11.795535 11.910715 -3.221459 -8.780178 -15.114822 -13.704522 13.243866 5.814366 5.498687 10.492460 -15.056708 -8.115763 4.451095 1.165040 5.406020 11.549521 -15.287622 4.521924 0.575969 -8.582573 -9.421960 -17.064700 5.251282 -11.042162 6.997396 9.527478 -9.856542 5.057860 -1.792378 5.465159 -6.328934 -16.003907 4.552579 -12.173199 0.326634 22.112586 -8.322403 -12.954961 -10.142822 -1.858058 1.899276 15.160774 0.727581 3.766904 18.961477 11.699255 11.782011 -19.315403 -3.106738 9.577204 11.851039 8.864781 6.675070 -11.212115 -9.050379 4.915614 -14.149716 -31.407645 -10.188008 9.211498 20.234497 -2.254932 -17.244779 12.322225 -10.605507 16.693476 15.972627 8.152408 6.427365 4.019405 -17.572246 6.442641 25.284392 -7.414880 11.830261 -7.880576 -18.418906 20.354937 -1.456112 8.712486 0.076336 -4.919612 -1.269361 -10.647324 6.523003 20.544568 1.752046 4.244046 -0.424433 6.094464 -9.696532 -25.407085 -35.608171 -2.394712 19.363776 17.487914 36.734556 -19.816319 -9.214201 -3.211680 15.978509 -5.073248 -11.933242 7.095508 -12.094747 11.588911 -41.561403 -28.871434 37.102300 26.287049 12.792046 0.439574 17.114158 1.716590 -8.002574 -11.972507 -12.878336 10.047028 9.671773 -12.981399 0.188640 3.559778 -23.550468 -6.918406 1.426904 4.997967 7.691516 -11.331956 8.049748 -12.170956 -11.616299 -13.412791 11.282253 -12.526342 -3.740105 -0.923708 -0.269618 1.491038 10.254801 -4.199362 -7.372894 -2.757333 -12.338187 -2.294199 0.130156 13.002030 4.102740 26.770257 30.606812 -9.047107 13.660858 -0.528658 -13.486006 40.599085 -16.059751 1.861903 -0.081314 15.786811 7.780222 7.450484 17.538615 -8.817079 -4.498271 -20.683443 -0.613252 7.344312 10.299392 -29.305424 -15.193312 -30.728268 -0.784073 -3.780361 25.258608 -2.288678 38.567517 -11.181596 5.110124 -40.955997 1.551295 13.947397 -0.939639 14.409021 7.579374 -17.524424 -22.322886 -3.463090 -18.444357 -0.408386 -2.277232 -11.639310 -13.408765 -8.191132 10.558548 -14.278619 5.242333 20.171383 -7.933969 16.123080 -3.220881 -0.866022 -7.586155 -2.740760 9.221193 4.324249 -12.517234 18.231428 2.403564 43.100287 -0.158598 15.176808 -10.305936 14.813856 -8.246840 -22.875506 -11.805240 21.412880 21.469347 6.399139 2.917565 3.344815 -4.394061 16.535756 --7.591322 13.710094 47.106438 31.135093 -26.479564 -30.356063 -13.857957 -32.413553 15.421204 6.182574 27.394214 -4.418351 9.841354 6.861968 -1.143251 -11.784812 14.358039 0.935363 -6.415128 -14.110236 -16.934662 25.137642 15.019788 -34.664633 7.040650 -30.088704 24.918541 16.870302 7.219610 21.255380 2.872475 1.938049 -6.365902 18.975605 -22.437437 -7.421142 0.414045 8.782911 -14.341721 -4.632708 17.419747 11.497703 23.463901 0.299394 16.280692 19.198039 13.048488 0.372863 -28.783406 -7.758798 -8.823273 23.891910 -11.907693 18.724071 2.737488 14.654098 7.677340 -26.727766 -2.371492 -31.482039 7.931048 7.619915 -14.604588 -1.769759 -24.209545 1.561950 -2.460205 -21.142040 13.711982 -11.437146 13.868919 -5.066763 -2.860119 -18.580247 -19.001842 10.541493 6.331946 12.370191 13.773991 3.940116 -4.392306 1.067318 -16.596578 -18.771907 4.764345 2.173677 7.892201 5.386585 -0.950300 -14.171237 8.970635 -3.338775 -4.234584 23.670818 -15.815805 14.531580 -7.915750 -10.293494 -22.219751 -17.681421 0.870759 -19.078231 13.183422 20.978702 -19.241647 5.544972 2.159498 10.014063 1.047669 -25.988843 1.572061 -11.983445 5.258398 25.969578 -12.693041 -14.968438 -0.890785 -5.550743 -0.562320 25.296018 -2.167544 4.782139 25.977513 19.426369 10.388222 -21.590271 0.011234 2.844061 11.173862 15.680247 19.731618 -24.820543 -13.221684 0.750781 -10.168007 -39.512166 -0.034918 8.365764 25.183563 2.773809 -33.195535 14.126503 -15.505018 22.573663 12.475383 22.081988 8.205116 -3.484353 -17.754866 8.139533 40.475078 -14.091955 18.141831 -11.629564 -29.195553 26.661328 -2.097152 18.641876 3.905342 -1.594427 5.923117 -21.353839 3.273993 31.827940 7.162232 5.346314 17.643310 1.015687 -8.120763 -38.535963 -38.840165 1.607994 16.000112 6.813724 50.292636 -26.679462 -15.408432 -9.094781 31.994761 -11.141743 -10.368616 2.862152 -8.628074 12.424188 -46.001627 -38.319400 37.412425 34.769347 3.453879 -3.640965 27.831246 0.237267 -7.332690 -18.933442 -20.228449 15.111681 8.862740 7.087158 1.403143 1.082519 -27.602943 -1.062745 4.521847 9.198666 18.804970 -20.884290 -10.525226 -6.830393 -30.306899 -22.340321 9.202604 -24.921751 -4.865831 4.092224 1.601679 -1.462595 10.775038 -5.586600 -21.212561 1.037744 -16.157726 -4.410160 5.497602 20.844835 4.528387 37.190746 28.728591 -3.890096 20.270058 8.799026 -15.560917 68.826974 -20.734425 0.146129 -0.280465 24.965691 -1.695098 9.968660 18.483726 -9.650644 -13.911143 -28.446826 8.971592 -2.274749 10.166252 -45.668455 -17.923954 -35.627747 -7.508787 2.433253 29.920850 -1.358858 51.980905 -3.167196 4.364318 -54.726570 0.958892 22.788234 -3.456142 15.917592 16.604234 -24.853841 -44.136731 -2.742848 -17.789428 9.749895 -4.476144 -22.673955 -18.758839 -6.586525 8.854311 -9.943647 11.934855 36.405704 -7.128209 12.103317 1.863826 -5.931447 -3.293296 -15.086145 16.568703 5.315803 -20.062375 31.451204 -0.370142 60.567246 -2.537285 23.347800 -17.073823 4.647428 -1.375556 -16.389317 -14.841790 30.051781 19.920489 11.842948 3.875135 4.781137 -14.084275 18.409204 -1.689415 8.091952 20.679507 10.326616 -11.901161 -13.822705 -4.615186 -18.844155 8.225376 4.557509 9.337943 -2.645061 3.994255 1.726184 -3.162790 0.111167 5.730708 2.068734 -2.741181 -6.694725 -12.575519 8.364633 2.318651 -8.186638 5.278593 -14.426572 10.898409 3.765407 6.194278 6.480919 3.906494 0.257581 -2.347263 8.429099 -4.368561 -0.473803 0.671365 3.168917 -8.549567 0.853006 3.734132 -0.480248 9.746421 3.170039 7.846701 7.274379 5.349185 0.510587 -10.613432 -0.642283 -4.998262 11.641836 -4.199857 7.658226 1.002585 3.870750 0.605581 -11.110921 0.578425 -4.925380 -0.151019 -1.069057 -6.743642 0.147151 -11.645720 0.039894 -4.739538 -10.240908 2.299842 -2.121941 6.194010 0.067568 -0.878639 -4.966680 -11.752079 4.354596 3.850897 4.065744 7.677782 2.006794 1.015794 -0.345374 -9.320548 -9.581771 6.482986 2.766069 2.936294 1.397799 -1.197828 -8.489274 0.791006 -3.160954 1.424262 11.028086 -9.736941 5.136289 -7.262056 -5.410794 -11.151205 -15.835181 -0.007473 -7.785836 6.450459 3.250912 -7.577762 5.449057 4.343677 4.672707 3.535661 -9.223912 0.782871 -5.115854 3.873951 14.054649 -2.705484 -8.985297 -1.605109 -2.790995 -2.661878 7.866143 0.788816 0.465825 14.876394 6.777973 7.277553 -7.423325 -0.694080 2.045415 0.529283 5.998855 8.885982 -11.677435 -5.668279 1.218333 -1.989769 -19.982295 -0.356978 1.702566 8.809800 -2.110694 -9.149139 1.845380 -4.853440 6.135381 4.140240 5.973240 4.625506 -1.844120 -5.334302 2.287122 17.349263 -5.872886 6.054121 -8.422693 -8.638819 8.877476 -0.968267 6.434863 -1.375844 -1.075698 2.963489 -8.761271 0.843725 13.226226 0.235236 -3.135121 7.221605 1.760551 -7.837513 -15.079890 -14.409098 1.195683 7.579290 1.088722 18.904027 -11.924980 -5.114656 -5.326583 13.362859 -1.905375 -1.344360 3.688502 -6.053661 4.857350 -15.124316 -16.797589 15.234994 14.184272 2.641156 -4.546295 8.628463 0.078586 -9.189730 -12.223902 -9.289145 3.162055 4.128068 -5.059942 -5.607895 0.672258 -12.997053 1.568940 1.437823 3.775748 11.961907 -5.610930 -0.042889 -4.163809 -10.554161 -12.214965 6.492398 -8.454438 -2.171049 1.878039 3.001179 -0.296949 6.503598 -2.492042 -8.301854 0.247928 -5.235324 -0.920832 4.456460 9.279654 -1.126499 18.380519 12.486314 -1.086665 8.830283 2.857462 -6.766905 25.303517 -7.474783 0.936502 0.820664 7.486097 -4.228494 5.110569 9.359150 -4.893784 -7.983708 -9.681466 1.020764 -3.742988 2.054732 -11.696438 -6.975279 -15.308242 -3.497930 -1.491828 10.990659 1.878952 19.410489 -0.755327 3.067557 -19.635230 0.427067 9.437458 -1.635521 10.510104 7.425625 -12.627376 -10.510140 -1.918318 -8.971769 -0.014590 -1.650922 -6.437398 -7.876805 -1.324087 3.550999 -2.209495 4.191334 13.452670 -1.894333 6.119941 -2.595428 -0.210886 -3.328070 -3.143710 13.352593 1.321861 -7.801020 11.363234 0.562798 26.323770 1.944662 7.506655 -6.359558 -4.057931 1.154705 -6.591668 -7.512067 11.703331 6.927482 6.720148 -0.333560 0.144500 -4.169660 9.359477 --4.334695 7.899729 31.455098 23.314974 -14.268283 -17.348013 -7.624859 -16.471513 9.997832 3.329466 16.456021 -2.588301 5.577393 6.074335 -1.685592 -10.179970 7.960453 0.474754 -3.712851 -7.589224 -8.869650 16.966699 12.633992 -25.636324 2.600022 -20.909932 16.796028 9.985800 6.232718 16.154069 0.546641 1.312982 -0.994109 12.173430 -16.337804 -7.818331 -2.512896 5.222668 -8.089301 -4.186589 11.589094 8.921605 15.324325 1.472939 7.917116 11.467196 10.018479 -1.820245 -16.618246 -3.492545 -7.963390 14.469498 -8.198151 11.034346 -0.064201 11.201762 5.579927 -16.979083 -2.085958 -23.522369 5.947809 8.426462 -9.536685 -1.794129 -17.018842 1.223125 -2.987975 -13.275138 8.915301 -6.321959 9.395923 -0.593171 1.034538 -15.817424 -13.287194 8.630871 1.352253 7.351555 7.665439 2.284678 -5.209049 2.469970 -10.092426 -10.654761 1.883266 -0.746318 3.076355 2.867315 3.667091 -10.911711 4.795057 -0.610013 -6.422545 15.202621 -8.179552 13.695306 -5.622348 -5.024065 -11.348041 -8.849601 -1.943952 -14.110460 7.164847 15.285872 -11.636934 5.638946 1.648969 5.683247 1.477848 -17.512272 0.857111 -6.520327 1.108518 14.353420 -9.208196 -9.236826 1.272255 -1.169998 0.611992 16.443218 -4.292307 4.590602 15.305099 10.711621 5.164880 -13.592597 4.310790 1.788057 6.236066 10.127963 13.313038 -13.789206 -8.583346 -2.012712 -2.382154 -26.678724 3.627818 6.956399 14.113886 2.239014 -24.403442 9.878729 -9.771838 15.864523 10.256717 15.293292 6.991989 -1.911294 -9.518587 5.229068 28.334483 -9.601535 11.711118 -9.383734 -20.462399 20.926578 -2.998737 14.381931 -1.380585 1.406058 7.470354 -15.501638 2.013299 21.655456 4.039412 3.100946 15.458283 -1.659400 -0.220215 -26.199967 -22.541126 -0.549551 8.671432 5.054305 33.990864 -15.973996 -7.955078 -5.485427 15.777031 -6.358927 -4.903569 0.107347 -3.686522 6.377934 -37.136527 -26.579917 22.624803 19.991800 -0.160640 -1.456215 16.873920 -0.007710 1.937624 -12.128749 -12.774461 9.861076 5.229187 8.673718 2.352528 -0.452415 -17.553229 -0.501729 3.991434 4.138139 14.426557 -18.336238 -11.376256 -5.582424 -22.041267 -15.880059 5.928088 -19.669377 -5.484102 1.957400 1.160915 -1.265047 4.922515 -1.396898 -12.986299 1.469367 -9.230938 -5.346046 2.479016 13.489489 2.072280 21.202688 19.022367 -1.033628 9.720388 8.048695 -9.614652 48.765036 -15.025230 -2.745313 0.165547 16.858168 -1.943226 7.813045 9.681145 -5.592274 -7.997755 -17.268851 10.153592 -1.993132 5.336071 -31.667708 -9.992419 -19.146618 -5.725359 2.693450 18.948397 -0.374128 34.417260 -2.174690 2.539876 -34.463227 -0.239596 15.721355 -0.369934 12.362148 12.660914 -16.834235 -25.720891 -2.674912 -7.919878 14.560317 -3.382991 -17.049347 -11.867605 -2.615797 2.313438 -6.895239 9.967502 23.372105 -6.631306 7.847257 1.501587 -4.118457 -1.447376 -10.101065 8.783885 6.613569 -12.138740 20.604693 -3.529344 35.750562 -3.383115 15.374781 -13.315255 3.141255 -1.724585 -7.953652 -8.958798 20.555691 11.216152 7.159007 3.798799 1.196179 -8.887793 11.292919 --4.195175 6.878807 28.843332 19.195009 -10.174278 -12.414493 -6.328207 -14.015172 6.937994 4.223291 14.665193 -3.313220 4.403053 6.618257 0.208673 -7.340399 5.559662 0.036427 0.159306 -5.233691 -4.540999 13.026845 13.798821 -20.611931 0.363954 -17.611106 13.199824 7.759113 6.793128 11.569759 1.483396 1.327212 0.367510 10.254233 -14.724564 -6.177062 -3.401193 6.013997 -6.561889 -1.451775 6.853321 11.244295 7.629460 0.607113 8.015936 10.244426 11.903953 -2.160165 -13.520284 -2.335081 -6.709706 16.302391 -7.897343 7.461731 2.316098 9.395819 1.172384 -14.803525 -3.653614 -21.610669 6.162319 9.390048 -9.496085 0.690219 -15.968742 2.354333 -4.922672 -8.880834 7.134206 0.711447 8.352256 0.160062 2.566755 -12.861800 -10.285212 9.171632 -1.383515 6.153391 5.915328 -1.376482 -5.461232 4.912602 -5.268670 -9.737652 1.314816 0.282285 0.942128 -1.302474 5.953904 -7.269477 1.002287 -1.812139 -9.021928 14.285332 -8.518372 14.642952 -4.325479 -2.949246 -8.854383 -5.545194 -3.138234 -14.944523 6.050627 13.895483 -6.934665 3.529768 -2.626490 5.206115 1.307413 -15.701636 -0.841326 -3.402342 2.106223 11.771228 -10.324954 -3.784980 1.557460 0.738283 1.224815 14.076424 -2.353185 5.930163 13.508850 9.638343 2.181072 -9.955035 4.676625 2.423323 4.881364 9.651274 11.461606 -13.885448 -8.123903 -3.845898 2.113384 -20.451726 4.915840 8.062924 7.328212 2.048704 -20.565173 5.133789 -6.441630 14.945892 9.940840 14.113492 5.259755 -1.910057 -5.031382 4.642813 24.858458 -8.846442 9.087022 -4.731799 -17.231038 17.941356 -5.933792 13.768724 0.684000 4.362115 7.002611 -15.270673 -1.655367 18.196062 6.256257 3.841141 16.225155 -2.343270 3.770541 -21.261517 -16.021884 0.572243 4.048312 0.805673 27.285667 -11.048256 -6.942807 -3.574101 11.937951 -2.113348 -4.401216 -2.227224 -1.642727 3.669261 -29.392272 -21.527891 15.176035 15.762348 -1.411946 -4.006822 15.047129 3.039283 -0.518353 -11.156902 -10.604241 10.070474 -0.993641 9.627903 2.357857 0.629481 -16.401751 0.494433 1.916998 3.292353 13.144042 -13.773651 -13.474443 -0.930632 -20.511740 -10.640421 3.358993 -14.710924 -7.105258 -1.192635 2.017922 0.463461 2.149454 -4.904624 -9.539538 3.578060 -9.866919 -6.199407 4.192106 11.573508 2.305892 20.208403 13.114251 2.874721 6.850101 6.945434 -7.570890 40.143897 -7.979887 -4.030177 -0.543520 11.613237 -4.043328 4.993150 4.882561 -4.078671 -11.885783 -13.992491 9.970642 -2.746744 4.672185 -23.198960 -8.602943 -12.114927 -5.410781 6.319749 15.627924 0.972063 29.423904 -0.610246 2.431775 -27.054104 0.338535 11.409525 -2.078182 12.121256 11.598849 -14.021621 -19.271757 -3.804695 -3.371372 12.909747 -2.641785 -15.250958 -10.467261 -1.739661 1.894882 -5.045560 7.658736 18.422358 -4.194470 6.540939 5.271217 -4.042791 -0.204893 -6.966422 8.396761 6.780309 -13.123216 18.122826 -5.409275 32.778330 -5.459941 12.310565 -12.245090 -0.599849 -0.789379 -1.769047 -5.431527 17.838705 10.694442 7.288117 2.137249 0.659241 -8.863397 7.658627 --4.291976 8.286828 32.132132 21.498893 -12.869374 -14.762166 -7.387177 -15.833919 7.049791 3.984706 16.002075 -4.612141 3.363863 7.790274 -0.049627 -7.808306 5.944050 1.552987 -0.702737 -6.390795 -7.472137 13.959321 15.324069 -23.308422 0.760246 -18.421941 15.471739 8.995838 6.924096 13.217247 1.987311 1.847002 0.006003 11.267309 -16.375629 -6.877331 -4.350770 6.475530 -7.899625 -1.195369 8.409762 10.487440 9.360262 -0.065974 8.898872 11.983852 13.154081 -2.175807 -16.468710 -1.927724 -7.981631 18.926429 -7.968967 8.748149 2.871024 9.259782 2.149552 -16.750108 -3.543689 -23.388516 5.351965 8.067991 -11.745395 0.653518 -18.144916 2.569443 -6.212802 -11.034815 8.494402 0.014260 8.545029 -1.189838 1.345004 -13.861796 -11.435080 10.213158 0.081622 7.395636 6.637653 -0.863407 -3.611493 5.416063 -6.820144 -10.848132 1.255965 -1.288047 1.802147 -1.375129 6.061149 -8.094020 1.496054 -1.916097 -8.745288 15.841632 -8.746647 16.803791 -5.350067 -4.918074 -11.883147 -8.150641 -2.288492 -15.947548 7.098715 13.965794 -9.823328 4.209698 -2.125931 5.899656 2.711293 -19.008962 -1.312263 -4.534107 3.400468 14.459800 -10.921122 -4.907891 1.460802 0.295195 0.319874 15.523264 -2.281601 6.935202 14.146356 10.610353 2.686054 -11.502050 4.118735 1.650141 5.072820 10.108210 12.626466 -14.375283 -9.750665 -4.589838 2.444364 -22.988469 4.429021 9.251237 9.074876 2.929839 -20.852772 5.926039 -7.219030 16.310883 9.468589 15.137645 5.095933 -2.891008 -6.872878 4.578519 27.230319 -10.062703 10.267393 -5.721836 -20.564218 19.911187 -4.499709 14.701269 1.254784 4.207534 8.175626 -16.450358 -1.415366 20.378480 6.938877 2.732002 18.497760 -2.458103 3.388128 -23.789804 -18.146788 1.945436 5.020721 0.865794 29.280241 -12.311486 -7.474521 -4.032860 14.514093 -2.960498 -4.352942 -2.672136 -2.838010 4.306178 -32.379666 -24.333439 17.145607 17.296867 -1.884856 -4.032025 15.684501 3.630162 -0.845440 -12.922424 -12.344885 11.341736 -0.334127 10.268702 1.906151 0.072667 -17.534190 1.850976 2.866883 4.336362 14.166904 -16.316069 -13.666376 -2.552206 -22.794561 -12.759475 3.450321 -16.469699 -6.783205 0.177831 2.440585 0.498883 2.919129 -4.504446 -10.385289 2.549045 -10.616518 -6.244168 4.133380 12.919640 1.881776 22.816521 13.996600 2.637177 9.143197 7.334766 -8.744512 45.554618 -10.237671 -3.778465 -0.478503 13.317731 -4.381609 5.672979 6.736062 -4.536031 -12.173727 -15.796617 10.007311 -3.309017 5.051330 -27.394924 -10.171234 -15.752499 -5.853694 6.674201 16.977953 0.763359 32.601648 -0.611958 1.821696 -30.139214 0.439907 12.878383 -2.583161 14.627276 12.319461 -16.305947 -21.640028 -3.860960 -4.977820 15.250416 -3.627984 -16.247794 -12.171701 -0.130242 2.392401 -5.536672 9.231298 19.968719 -4.627521 6.303489 5.840220 -4.739790 -0.219472 -8.808738 10.866276 6.733240 -14.338869 19.890124 -5.154530 36.743237 -4.504393 13.928944 -13.313058 -0.786687 -0.024931 -1.814340 -6.520269 19.518324 12.072272 7.781056 1.648710 1.843898 -9.693496 8.572519 --19.957394 8.209797 73.067309 43.473421 -26.033771 -43.240578 -19.067394 -44.866686 32.409838 16.206655 50.984915 4.742539 23.048875 4.849747 4.891073 -11.974790 19.255006 -9.594595 -6.957183 -15.797416 -8.046698 57.482230 43.024088 -49.670887 5.426035 -52.023158 22.288827 18.555680 21.849055 40.912668 -1.748918 3.407965 0.489480 25.284172 -36.320326 -3.636676 -9.244766 16.544978 -17.547329 -14.338700 23.759832 12.433281 32.974704 4.491739 34.074026 10.854518 32.890441 -10.994902 -36.782422 -18.068272 -24.004451 46.021932 -27.183893 26.838351 -3.974066 23.960968 5.655146 -29.043429 -10.333980 -70.133312 12.409155 18.697765 -27.955413 -5.793577 -33.433384 10.216973 -7.476680 -22.105532 11.168180 -17.720744 30.465089 1.814081 6.181908 -27.985465 -44.579678 16.822982 -1.412656 12.408859 17.430081 10.870319 -25.357686 -0.285680 -19.095283 -30.460825 19.590111 2.993766 1.052233 7.789981 -5.348828 -12.072985 -0.028320 0.042264 -17.141384 36.114102 -38.593906 32.982693 10.484952 -12.775616 -17.459603 -14.344980 -4.669685 -40.427096 9.831326 34.167592 -8.490984 7.600024 -13.961245 13.844118 -11.811316 -45.848869 9.903517 -7.139758 -19.097878 28.292866 -31.430682 -6.115018 6.611210 5.404478 3.908553 39.069360 -4.776341 21.271673 36.223180 27.134682 14.820158 -31.545962 13.444356 14.014436 32.724375 21.844515 22.053522 -28.624908 -22.874813 4.117714 -8.021419 -66.479292 -3.415655 41.698083 38.792946 11.436178 -57.735314 20.539844 -14.832635 44.382029 37.627497 27.495093 14.738653 0.036239 -29.492012 15.091504 77.153010 -27.250028 34.865782 -11.606766 -41.642600 62.485224 -29.659523 38.558925 1.113146 9.338672 13.754884 -39.633891 -2.590616 53.811160 18.982177 18.525349 18.456239 -0.387981 1.764903 -64.329682 -65.646866 -21.851380 23.464494 18.223068 77.529173 -31.961435 -21.252639 -10.632776 36.695302 -15.915267 -22.612511 0.568715 -14.938390 15.848321 -100.523909 -61.421213 70.899689 66.714254 13.518638 6.150421 49.261100 16.977270 0.027038 -26.934196 -26.439084 28.256699 12.014616 7.157480 2.335939 -1.329902 -51.084578 -12.953341 -2.058082 4.235059 14.110447 -26.514488 -9.123428 1.014266 -46.504918 -19.436167 8.115415 -45.206886 -25.074282 -6.779593 5.450334 -1.478275 7.601786 -9.936290 -16.918587 12.614969 -33.903567 -11.882855 8.076587 28.130286 17.147440 53.282111 58.387550 -4.908074 25.130612 9.112685 -26.263834 98.497694 -36.961839 -12.495336 -4.720442 34.872510 1.126302 18.977980 17.373099 -12.584918 -19.275392 -40.821633 27.808254 3.611656 18.975557 -60.553248 -41.015207 -43.048466 -9.056376 14.677674 51.136804 -5.293093 87.908063 -16.130504 12.695904 -99.405480 4.468143 33.025021 -1.799548 27.020965 27.060192 -33.590132 -68.456608 -10.794782 -15.480672 24.255397 -6.611502 -43.948421 -23.291630 -25.067062 19.974788 -36.371988 22.079347 41.765918 -11.353124 37.646249 10.093497 -11.600133 -18.193993 -5.429681 19.054690 19.832689 -28.667239 47.024466 -8.118009 92.404602 -21.750859 40.325991 -32.488880 21.242185 -14.929533 -21.313341 -14.664148 53.170027 44.879043 13.884781 6.767957 -0.501584 -21.203990 24.370483 --4.204993 5.991406 27.951783 19.653048 -11.625980 -15.104831 -6.310118 -14.401520 9.410063 3.348779 13.527473 -1.474836 4.956857 5.219838 -0.993739 -8.003513 6.410280 0.678625 -2.695229 -6.010738 -5.695222 16.011130 13.170201 -21.203567 1.848002 -18.579224 12.902884 8.116097 6.677467 14.133505 -0.027628 0.543114 -1.097233 9.738018 -14.097152 -5.819718 -2.015232 4.113702 -8.592216 -4.549339 8.479190 7.954237 12.164745 0.389690 8.111899 7.746992 10.109796 -1.702567 -13.804255 -3.441172 -7.250557 14.663024 -6.576512 9.728634 1.428133 9.371306 2.855197 -13.966519 -2.264605 -20.176117 4.808963 8.096255 -8.536858 -0.718592 -16.075526 1.549304 -3.629402 -11.554758 6.889344 -5.487130 8.264108 -0.195724 2.057360 -13.026965 -12.584994 7.414343 0.542167 7.449387 5.840698 2.664680 -4.382974 2.181065 -7.797086 -9.044608 1.260832 -0.404833 1.465126 2.364925 2.676099 -8.863180 3.590979 -1.494847 -6.566217 12.312168 -9.184030 13.337586 -4.317026 -3.819723 -8.397728 -8.312667 -1.977487 -12.612005 5.640211 12.790699 -7.198218 4.536086 1.564503 5.776853 1.195593 -15.912160 2.003314 -4.175985 -0.083914 12.828073 -8.642355 -5.408960 0.516168 -0.270521 -0.524429 14.809504 -4.185094 4.917946 12.501966 9.846918 4.914555 -11.064402 3.672519 2.859844 6.239125 8.204401 10.729447 -12.463137 -7.493942 -2.216493 -0.817022 -22.927860 3.110814 9.485296 12.413647 3.553860 -20.244852 6.383727 -7.170935 14.474402 8.449674 11.916396 5.496882 -1.585488 -8.081874 4.433697 25.915103 -8.563573 10.228066 -7.804796 -18.185615 18.171114 -3.766862 13.322314 -1.202006 2.167160 7.259778 -13.976363 1.901140 18.956299 4.422457 2.445992 12.912942 -1.136579 -0.645141 -23.758209 -19.688603 -1.572750 5.819958 3.914398 29.795703 -12.699132 -8.355114 -5.126548 14.317112 -4.961896 -4.268376 0.513843 -5.053652 5.236953 -32.209729 -23.484367 20.148068 18.716986 0.357763 -0.995061 14.814846 2.896372 0.267931 -11.131223 -10.165455 8.650913 2.631168 6.118852 1.037610 -0.127032 -16.137427 -0.571680 3.519071 3.084148 12.364378 -14.296521 -8.821156 -3.966622 -20.465651 -13.066285 4.636044 -17.054448 -4.849923 1.005056 2.023911 -0.485938 4.250850 -2.258138 -9.972785 3.457894 -7.884304 -4.063593 2.473648 11.790299 2.644581 17.661641 17.282930 0.323579 9.572906 7.344747 -8.756116 42.122699 -12.174783 -2.592803 -0.588534 13.707660 -2.033814 6.993657 7.198559 -4.697495 -7.581521 -14.511340 8.978838 -2.049671 5.136994 -26.727247 -11.129137 -15.610673 -4.850913 2.693368 15.007033 -0.067728 30.230037 -3.071352 2.188032 -31.701008 0.334844 13.327783 -0.246595 12.037652 10.481031 -14.235146 -22.339133 -1.911897 -6.424107 12.756543 -3.229856 -16.094999 -9.503129 -3.239074 2.899531 -6.791975 8.942592 19.103711 -4.844194 8.435223 1.941754 -3.467413 -2.444034 -7.502612 7.167028 5.958943 -10.761237 17.449664 -2.915056 30.422055 -3.779843 12.283325 -12.061200 2.438394 -2.121444 -6.805615 -6.722690 17.941371 9.831310 5.748117 1.999586 0.739261 -8.205455 8.694494 --6.970537 10.754571 74.019408 43.435232 -11.838698 -24.983072 -12.226862 -24.951373 13.969018 8.676517 33.776301 -3.255212 5.885940 21.126171 2.203182 -17.340933 -0.545149 3.189433 0.057502 -6.482858 -4.707468 33.174873 50.338710 -49.244559 -2.094043 -49.519110 26.445198 12.140757 23.743053 36.456709 -4.102833 2.173146 4.450990 20.362349 -37.563279 -15.150219 -23.528151 9.940563 -8.266515 0.097599 17.780426 29.972398 5.465534 5.811193 20.020822 20.648092 34.353605 -10.675391 -19.699604 -5.518701 -20.670878 42.653454 -20.916882 10.921222 -2.907044 34.187114 -8.810060 -27.757888 -9.857228 -68.737507 19.455961 32.669617 -27.211174 4.561184 -41.912131 8.462707 -24.991069 -15.332083 12.684063 0.231320 22.637226 0.072393 4.849169 -39.231738 -26.113857 15.753837 -16.167368 12.079182 9.488299 -7.963325 -28.109851 17.076602 -7.670335 -18.058440 -2.119159 -6.191045 -8.636674 -9.577036 28.704433 -19.651906 -3.711680 0.770876 -27.010013 30.776594 -32.449292 43.340647 -12.564276 0.293088 -7.897863 0.686799 -9.015816 -38.158715 10.138220 32.928079 -7.656236 4.729451 -8.905386 8.882312 6.690608 -43.268923 -7.401422 4.838283 -0.792894 21.508103 -29.769668 2.097135 11.478615 5.849740 0.777645 35.979887 -5.557246 17.372488 26.750280 17.617239 0.116253 -16.874665 19.563059 9.790054 8.884495 21.871828 22.487323 -26.015600 -18.777521 -13.407400 18.104231 -52.065682 22.199245 32.667521 9.843661 11.738129 -47.175953 7.549507 -10.117083 37.421171 30.171813 31.298736 13.658954 -8.228771 -6.478893 10.086477 74.573791 -21.430205 21.469371 -9.444612 -49.853018 59.239988 -30.469612 37.501369 -0.239685 18.817115 24.782221 -36.525173 -9.030591 43.476833 16.325345 14.794309 48.941327 -9.358307 25.450631 -49.574540 -26.680202 -9.271036 2.651999 1.134461 57.520941 -16.004913 -1.761390 -6.280761 25.280836 -2.288245 -6.867278 -12.609522 0.647044 2.686168 -79.749970 -46.536215 26.142357 45.622068 -8.163397 -6.383536 39.510113 22.385483 13.972756 -20.542292 -24.979624 22.640979 -7.516130 33.529460 8.773940 -4.342592 -40.052481 3.159041 5.065565 2.876584 26.082534 -34.100484 -45.909242 3.917510 -53.865258 -26.537704 4.774270 -42.700367 -17.783207 -9.772963 5.346496 -6.474657 -6.315918 -17.116131 -13.294318 17.003191 -27.076963 -8.641270 12.595993 17.224565 9.610842 48.237821 20.952566 9.240464 4.325915 19.521043 -12.987777 102.546765 -15.261523 -13.520835 -0.953908 29.019659 -14.838742 15.195596 -3.805526 -5.862063 -32.873575 -24.675185 33.377382 -5.974131 8.457761 -45.875106 -26.412951 -16.798907 -15.160060 18.702778 33.020681 5.273719 74.496540 -1.938177 9.730559 -65.098498 2.452652 31.510047 -6.943646 34.870521 26.114098 -25.235103 -45.388347 -11.026058 8.763880 50.030443 -7.495948 -45.501649 -19.658429 -4.089637 0.158233 -16.194957 26.626836 31.154849 -7.616491 17.012636 15.443116 -10.093056 -2.130609 -11.455454 10.508394 23.697765 -32.283787 37.197010 -16.348148 67.967382 -23.659396 31.348546 -30.615673 0.930975 -8.707987 4.667134 -6.106489 38.692539 33.141953 15.536405 2.151607 -0.299589 -18.560140 2.541725 -0.707351 16.301792 47.656904 26.619657 -27.418853 -31.398799 -11.020144 -41.848266 19.195069 11.858102 24.360365 -4.428036 11.014700 5.067549 -5.718503 0.070692 14.321855 2.385665 -4.537952 -15.576146 -24.514923 24.850917 8.405614 -21.641183 10.010016 -36.220755 29.405413 9.283971 13.898935 19.383430 9.498777 1.686764 -4.624227 19.849238 -11.339162 -0.192825 -1.530028 10.083030 -16.559551 1.651463 11.870496 0.706221 21.927130 8.486162 19.313576 18.029804 16.049275 -0.067085 -24.037042 -4.051162 -15.277406 25.048203 -13.481323 18.232046 -2.530542 9.975207 3.963438 -23.684777 -0.060184 -18.856855 0.942121 -0.611593 -17.476004 -0.060813 -28.026278 2.052055 -11.375620 -22.806717 3.638356 -2.874893 16.867997 0.987367 -0.502313 -13.122959 -30.103150 9.935961 5.088499 9.884068 18.535573 2.535917 -4.260800 -1.228525 -21.673635 -23.774371 15.412415 6.462780 5.629946 2.755544 -0.839536 -18.759574 -1.521380 -4.733383 0.379461 27.388983 -22.235391 14.988566 -13.401729 -10.263739 -21.907932 -30.674265 -0.409695 -21.258376 13.565470 11.694365 -15.916635 9.934252 5.838191 9.469065 4.276773 -21.844062 2.893813 -12.518061 5.215583 29.762813 -7.345647 -18.663261 -2.618451 -5.122472 -1.268083 21.021035 1.887479 3.247737 35.267076 16.962938 16.363178 -18.658187 -0.426781 6.505280 4.114839 14.600198 19.925984 -26.232620 -15.093156 2.422217 -4.380696 -44.022541 0.926965 9.584926 21.216581 -5.655076 -23.414522 7.522428 -12.695029 17.370618 15.201280 17.606313 11.435079 -2.875776 -14.365322 7.243933 45.611063 -13.399577 14.730737 -18.701716 -20.792667 27.180125 -5.368615 16.930213 -1.769292 -0.515812 4.208672 -22.281289 0.480057 32.639382 2.555612 -3.081349 20.627993 4.376772 -14.769490 -35.861779 -34.359810 -0.983045 20.494378 5.548992 47.313960 -28.090849 -8.999486 -9.854373 27.768059 -2.430811 -5.793703 6.451947 -11.225742 11.034491 -45.415050 -39.878272 39.122786 33.460886 6.258867 -9.338779 21.617749 4.394584 -16.645512 -27.968732 -20.991977 10.752663 7.810900 -6.806191 -9.309542 3.407420 -31.923097 -0.251043 3.544042 8.329177 26.871666 -15.589696 -3.268738 -8.692557 -25.550982 -27.919688 14.609071 -21.591084 -9.618605 2.777107 6.261104 -0.979754 11.854070 -3.761078 -16.138773 2.028516 -13.455188 -3.960448 10.448121 21.175300 -0.157865 40.947454 31.991036 -3.396246 16.237532 6.986881 -15.492239 63.883194 -17.036516 -0.026564 2.265409 18.838575 -6.446162 10.610472 20.532732 -11.293896 -19.164771 -25.731209 7.290707 -5.728019 6.594387 -30.836673 -15.183754 -34.975006 -6.663537 -0.839015 30.405204 2.832813 49.329174 -2.719521 7.402973 -48.434498 1.906629 22.807289 -3.740848 22.417297 18.429857 -28.354018 -25.608730 -6.240835 -18.402558 4.258596 -4.106726 -16.533545 -20.135353 -3.448275 3.930907 -9.241239 10.312653 32.458494 -6.701697 15.950879 -5.420161 -1.866466 -9.048716 -6.096346 27.441467 5.663302 -20.074672 28.426894 -1.374306 62.590904 0.171216 19.293971 -15.013197 -4.256075 -1.050894 -15.846961 -15.965040 30.305337 17.435506 15.317534 3.172381 1.047313 -8.388007 22.613983 --0.209326 2.181732 5.714281 4.575645 -3.666555 -4.820739 -1.601210 -3.947831 1.367923 0.511986 2.870459 -1.208799 1.182266 0.972622 -0.520656 -1.332599 1.884784 0.925582 -0.541855 -1.823557 -4.399874 3.521253 1.713281 -3.942477 1.111195 -3.389266 4.003958 2.348663 0.777002 3.176530 0.303876 0.317011 -0.712485 2.250737 -2.973584 -1.075142 -0.745714 1.174775 -1.674955 0.296047 2.004865 -0.300880 3.532989 0.107712 0.844444 3.167250 1.421315 0.460158 -3.804483 -0.824648 -1.202222 1.831596 -1.148882 2.076226 -0.298901 1.009299 1.871853 -2.747404 0.029597 -2.965688 0.542444 -0.242172 -2.074198 -0.015505 -3.642038 -0.096464 -1.366698 -3.571184 1.721485 -0.965255 1.323302 -0.359093 -0.867786 -2.633976 -2.757044 1.210564 1.630465 1.443967 1.603593 0.671521 0.078067 0.402783 -3.277728 -2.439831 0.779183 -0.284296 1.766617 0.715081 -0.618215 -2.698829 1.587126 -0.001704 0.373101 2.764987 -0.915715 1.763921 -1.999561 -1.385430 -3.821890 -4.369148 0.140333 -1.790494 1.914020 2.131554 -3.000988 0.711469 0.775703 1.179191 0.629630 -3.784144 -0.304954 -2.567433 1.035085 3.495982 -0.757970 -2.413840 -0.662373 -1.151624 -0.099290 3.167500 0.036809 -0.158105 3.568428 2.032116 1.224852 -2.488836 -0.370279 -0.405131 0.401251 1.561505 2.593737 -2.670654 -1.793297 -0.011307 -1.625343 -5.325921 -0.212973 0.566143 2.651973 -0.532947 -3.262857 2.412575 -2.284029 1.924624 1.307019 2.851239 1.156581 -0.663535 -1.777630 1.033693 5.352410 -1.703023 1.977305 -2.038465 -4.998308 4.357085 0.731008 1.725164 0.326456 -0.896909 0.305531 -2.058250 1.123626 4.179214 0.115114 -0.411561 3.033648 0.032853 -1.523541 -4.525964 -4.854131 1.409922 2.802546 1.468536 7.430134 -3.886952 -1.222343 -0.669159 3.499685 -1.071666 -0.968889 0.432796 -0.798486 1.420542 -7.373559 -5.624554 4.593197 2.760010 0.293344 -0.466179 2.417254 -0.308204 -0.690033 -2.909332 -3.183001 1.680786 1.106477 0.170164 -0.592288 0.284144 -3.362281 1.023055 0.529576 1.338640 3.373157 -3.612275 -1.485327 -3.278182 -4.281308 -3.668806 1.482974 -3.672552 0.082769 1.049802 -0.206160 -0.399448 1.517667 0.256115 -2.597339 -1.285771 -1.533263 -0.304915 0.289138 2.445084 -0.176784 5.503669 4.612340 -1.089057 1.687374 1.074139 -1.656001 9.767858 -2.926230 0.481475 0.095591 4.164864 -0.337027 1.358714 3.594096 -1.043797 -1.787868 -3.315991 0.663662 0.217872 0.429677 -6.743065 -1.295103 -5.841883 -0.965325 -0.376140 4.618368 0.080828 6.278371 -0.238726 0.580216 -6.571923 0.181477 2.084209 -0.373779 2.864391 1.729621 -3.629292 -4.120770 -0.418701 -2.784590 2.074361 -0.517841 -2.338644 -2.354859 0.570025 -0.883341 -0.494543 1.367372 4.717049 -1.547817 0.904620 0.067457 -0.590532 -0.436455 -1.915018 3.342586 0.210100 -1.887735 3.873462 0.381216 7.205659 1.033325 2.636420 -1.781235 -0.157602 0.612175 -2.246464 -2.125630 3.298479 1.763283 1.275111 0.869630 1.186631 -0.707662 2.427717 --2.151421 4.021875 18.821395 10.806455 -8.629657 -10.302063 -4.505242 -11.962072 6.528078 2.296054 10.491520 -1.114905 3.844338 2.273251 -0.613246 -3.788983 4.027053 -0.349481 -1.802426 -4.464303 -4.734510 10.696027 7.294696 -13.003805 2.362968 -14.040856 8.367858 4.997632 5.122924 9.513120 -0.052119 0.310084 -1.309810 6.896613 -8.170540 -3.439676 -0.188885 2.838413 -5.801188 -1.509432 5.426583 4.112067 7.998355 0.306405 6.808549 5.915957 5.164246 -0.509756 -9.337882 -2.401676 -4.214928 9.907648 -4.811568 6.853747 0.384523 5.961112 0.797946 -9.125129 -1.870335 -13.861192 2.852485 3.532381 -4.739073 -0.531382 -9.500432 1.246479 -1.911185 -7.279712 4.664040 -3.866746 5.933912 0.031411 1.079227 -7.103232 -8.748685 4.792348 1.561309 4.751652 4.395941 0.608064 -2.799970 1.020855 -5.522710 -6.724299 1.760684 1.735056 1.687657 0.937953 1.035592 -5.218185 2.716283 -0.927960 -3.022733 8.991782 -7.425759 6.652610 -3.687196 -2.776838 -6.275632 -6.937922 -1.091639 -8.063459 4.537871 8.019810 -5.408284 3.076127 1.398390 4.541804 0.783552 -10.179299 1.152999 -2.625529 0.122727 9.611252 -5.160146 -4.588853 0.515399 -0.774066 -0.906831 9.388482 -2.337528 3.241299 9.485537 7.246919 3.716165 -7.407256 1.652092 2.422562 4.575495 6.056129 7.504262 -9.055235 -4.790970 0.056839 -1.965365 -16.094223 0.626696 4.242094 8.875720 0.589761 -12.963006 4.502597 -5.430567 10.547949 6.472045 7.134605 3.601414 -1.319430 -6.381207 3.958812 17.941474 -5.696803 7.158224 -5.331200 -10.590063 11.404707 -2.873199 8.466739 -0.409856 0.889312 3.706044 -9.155541 0.409091 12.335615 3.346243 2.229993 6.939862 -0.246862 -1.943719 -15.668002 -13.474508 -1.910056 5.243730 1.953796 19.391455 -9.039453 -5.676018 -3.921015 11.027640 -3.388633 -3.317921 0.741996 -3.601575 3.988790 -19.901099 -15.340813 14.612992 15.533949 1.960274 -0.374590 11.307846 1.565027 -1.379342 -7.340670 -6.738693 5.092224 2.910734 1.243488 -1.025853 -0.132429 -11.145180 -1.238699 1.848193 2.579883 7.734456 -6.379022 -4.531139 -0.628742 -12.373097 -8.188434 3.982783 -10.956905 -3.581475 1.155033 1.311712 -0.477023 3.301651 -2.989635 -6.669862 2.051479 -6.512241 -1.492735 2.358411 7.497713 1.171856 13.257342 11.410070 -0.220206 6.473004 3.742144 -6.142023 26.204526 -7.837402 -1.034362 0.080002 7.606238 -1.735858 4.268514 5.233833 -3.569934 -5.420149 -10.251312 5.093875 -1.678527 3.567089 -15.708663 -8.928704 -10.961943 -3.073242 2.073709 10.456184 0.598541 20.855296 -1.495457 1.928870 -22.255746 0.155491 8.759927 -0.532560 7.255368 6.899839 -8.914560 -16.892493 -1.479334 -5.104113 5.039325 -2.647086 -10.878085 -6.360842 -3.596849 3.980217 -4.390506 5.187824 13.246831 -2.341120 6.862618 0.322592 -2.511229 -2.662098 -4.183871 5.637888 3.082606 -7.055965 11.192589 -0.928372 22.868268 -2.731646 8.275337 -7.162360 2.012656 -1.012277 -4.975633 -4.522807 11.960443 7.840027 4.935860 1.218605 0.035814 -5.571026 6.254191 --20.757695 21.671944 114.987528 47.929897 -53.817185 -89.927888 -29.001762 -123.945586 61.473105 35.575872 93.835987 -0.579995 58.349290 -19.388183 1.509163 -0.401814 52.346070 -8.216344 -0.703176 -37.303587 -22.789278 94.969001 21.487025 -34.807204 19.867996 -77.218510 51.851321 29.888752 43.933507 67.474785 19.536887 -0.928624 -21.118828 36.761539 -26.090381 20.179586 6.153671 33.004025 -48.294555 -12.301180 15.114467 -15.991620 65.036734 6.421055 68.952115 14.535504 38.194737 -1.637003 -58.005377 -34.429446 -29.686480 60.730355 -43.949466 44.411461 -4.795682 -3.820567 9.911311 -24.302140 -1.953642 -69.264292 9.066640 -11.480157 -44.352018 -1.630583 -56.841948 11.703017 -31.505873 -43.281168 2.853138 -38.783274 39.018057 2.784799 3.719467 -12.176676 -98.763277 16.218810 21.486626 14.922631 45.013009 22.957549 -10.746315 -22.894793 -47.974112 -61.874277 58.989429 34.886540 17.646127 25.692887 -52.926768 -15.248044 0.199938 2.157030 13.902743 52.710635 -63.372927 24.934371 -7.512799 -29.377253 -33.143551 -83.991448 11.115263 -53.454546 24.080123 27.335110 -19.018918 9.017136 -22.951482 27.447836 -23.751419 -63.554282 24.234856 -32.073801 -14.163573 78.114070 -39.026211 -33.682329 -30.656882 -5.136770 11.177179 52.301166 9.079276 22.031012 60.947839 46.437700 51.297786 -65.897145 -11.365401 36.452515 43.938982 34.205037 26.065440 -47.865517 -35.943883 20.882673 -47.923225 -119.510538 -33.556242 42.985679 69.554580 -4.666056 -55.184429 21.712855 -37.877866 57.640143 62.481782 33.187337 23.159605 11.862423 -56.800260 23.638543 98.346576 -37.992138 53.195773 -22.300531 -47.017131 64.824191 -24.850073 40.545522 -1.111555 -5.034827 0.926376 -47.394142 3.454101 82.816323 21.997117 27.116280 -4.457630 19.832927 -37.702598 -93.621085 -120.586520 -19.077876 78.951496 34.858940 105.508888 -65.638592 -38.108463 -6.080353 70.604314 -12.581201 -46.299159 23.204923 -41.902459 41.301095 -140.399393 -100.997981 127.251605 108.754255 46.313751 -5.369580 53.057252 29.728219 -56.464795 -49.044052 -47.147231 39.025822 9.272104 -66.138108 -24.358787 10.339790 -88.896503 -19.003063 -1.205259 18.185289 26.255413 -16.557074 32.328834 -11.747114 -43.471971 -38.283322 43.061724 -48.242930 -30.982104 -9.181004 4.466691 10.460008 32.364539 -28.427560 -18.850558 21.204549 -56.739703 -8.700356 13.230432 44.981717 16.194780 111.864861 100.433550 -20.203561 41.475230 -3.570236 -52.391947 131.395918 -50.453492 3.699524 -3.522153 42.825746 10.753887 29.956424 59.342196 -32.888266 -45.755718 -78.351069 -11.295170 18.029506 43.321935 -57.705928 -73.291055 -98.582795 2.561748 -0.093526 96.667753 -3.237156 137.640744 -32.052374 29.564187 -137.473653 9.039262 47.148622 -12.082153 55.653676 31.258647 -59.659608 -77.185398 -17.553387 -64.037817 -18.044411 -7.562161 -45.521358 -42.307532 -43.224336 46.863608 -47.526982 14.755735 50.891474 -12.064646 71.493209 5.141537 -8.664666 -42.156762 8.732120 54.490044 12.785592 -52.224173 69.131301 12.272831 170.205849 -13.099870 50.074809 -37.782299 30.396640 -21.258806 -60.653438 -37.445479 87.132676 86.924249 33.783117 -1.435404 4.232910 -19.023249 53.973682 --95.851057 46.001609 326.319688 130.213167 -148.753168 -242.030591 -84.683771 -360.744808 185.806382 115.240054 294.731954 2.486057 188.957462 -83.900418 6.371931 -11.392537 174.517172 -50.962417 17.177134 -108.096690 -35.109576 296.861814 67.169788 -75.909898 52.935078 -228.730227 152.496899 63.626636 125.921540 208.899146 62.973599 1.471947 -68.714907 97.015871 -44.592416 79.596396 31.642558 104.298867 -126.917924 -45.022489 40.638043 -71.339570 187.697206 17.908365 211.730571 16.471422 102.991665 -15.489536 -178.693877 -120.703721 -85.551313 154.387166 -149.571827 117.189394 -4.279805 -42.912640 46.026007 -44.820147 -9.331536 -222.877589 15.699606 -65.822089 -114.743873 2.285119 -153.503209 52.731044 -106.225325 -103.025368 -5.109051 -118.627069 115.988769 31.649371 38.205862 6.121531 -286.843897 58.738568 64.828851 34.609996 133.954588 73.650742 -41.949316 -73.000221 -138.050745 -189.602229 189.225094 101.788016 54.040088 74.401224 -170.838185 -10.153513 -6.769129 11.554920 37.661635 144.264778 -186.999876 55.490780 2.357462 -91.168893 -74.879093 -249.285225 26.808608 -163.795359 53.608759 103.588818 -70.240635 11.422025 -120.242307 71.134693 -97.959786 -182.551570 96.056176 -106.771369 -62.678200 218.436134 -139.312710 -81.548980 -116.681707 0.083661 65.772829 148.177572 22.556634 85.949292 158.911657 136.615679 150.636416 -194.728496 -32.499849 118.449584 150.820013 78.427609 63.637748 -122.797845 -112.554081 67.345708 -151.032077 -337.203248 -128.839348 140.851365 213.306220 8.167246 -162.797090 63.689352 -109.780886 177.868361 206.934691 87.112472 60.065343 52.814096 -178.275024 78.498088 263.561924 -116.367009 162.635993 -47.419768 -119.520236 200.336247 -90.875218 113.788590 -5.464384 -2.978466 -9.540327 -142.364099 -3.107101 239.171379 74.843380 96.268465 -46.115264 68.451503 -80.691465 -278.945860 -367.923802 -60.002814 256.604336 115.042542 285.383395 -190.539922 -99.575896 1.461690 197.212247 -21.575316 -160.831930 63.492417 -117.687999 117.785020 -432.316789 -301.068585 395.174879 319.946014 138.929350 2.810575 132.404441 108.336421 -174.907848 -126.590518 -135.910467 129.054136 0.685617 -220.970126 -81.857946 44.257230 -252.911131 -82.247798 -8.228769 49.618516 70.570369 -55.050096 111.978496 -16.838782 -97.841505 -89.663405 133.819826 -129.638564 -123.513084 -39.538634 7.641026 61.527544 96.463631 -74.361924 -26.088287 65.720424 -176.377782 -46.584743 37.003083 135.547460 58.102652 319.014080 307.788265 -63.901540 85.237074 -22.008612 -159.322445 348.730765 -144.730622 8.134548 -16.709149 110.880959 60.039683 87.659359 186.654347 -96.827260 -140.263906 -232.103693 -38.570759 60.781477 138.399298 -172.917178 -236.695809 -291.125521 28.795495 13.598156 279.133095 -16.075941 410.561021 -104.611694 71.716185 -391.930740 22.340040 145.504424 -32.631838 165.765737 82.304819 -161.349342 -204.254517 -66.622159 -199.545971 -41.669576 -20.932785 -117.935030 -115.936007 -134.267338 165.063308 -151.528413 41.799974 113.647438 -18.214712 229.943469 56.464578 -26.318344 -150.207864 50.396098 136.253357 44.645103 -143.426807 217.759647 39.792388 470.800981 -55.976559 119.343046 -110.154235 110.652998 -73.690782 -183.767282 -97.185307 260.179108 277.481669 90.932258 -8.538218 8.148936 -49.323745 170.280188 -0.505877 3.617661 9.816827 6.989443 -4.982176 -5.641058 -2.565955 -5.530992 2.405120 0.123698 3.693801 -1.413349 1.095280 2.045647 -1.062754 -1.753451 2.652736 2.209264 -0.869941 -2.478182 -4.178834 5.739001 3.442209 -7.935207 1.364380 -6.034695 5.245002 3.583124 3.167961 5.430168 -0.448584 0.005697 0.085487 3.694767 -5.389930 -3.473855 -1.401253 1.541459 -4.882869 0.008753 2.692936 1.685177 4.972764 -0.783518 1.607904 3.917647 2.700281 0.083170 -5.662968 0.067350 -2.898123 5.358597 -1.587740 4.170699 -0.489763 2.579016 1.542094 -4.174106 -0.679195 -5.781895 0.910591 2.152360 -2.327934 -0.199581 -6.083505 0.145358 -1.557786 -5.995894 2.962188 -0.515374 2.400612 0.818969 0.177576 -4.919918 -4.689293 3.536885 2.134938 3.958559 2.053006 0.641461 1.049325 1.116322 -3.400825 -3.425347 0.556563 0.368137 1.928475 0.716237 0.836158 -4.958663 2.283176 -0.044772 -1.294435 4.301486 -1.551214 5.175111 -4.272477 -1.139563 -3.775676 -5.333816 -1.473276 -3.740724 2.690662 3.203243 -3.064458 2.546293 2.363764 3.368257 2.021210 -5.704784 -0.170941 -1.580142 -0.010850 6.533650 -1.170717 -3.316981 0.393906 -0.221673 -1.971622 5.079676 -1.637911 1.954856 4.401977 3.927372 1.593557 -3.946930 0.718516 -0.029399 0.860519 3.411235 5.367149 -3.494619 -3.527930 -1.220337 -0.484135 -7.932712 0.426791 1.996659 4.251224 -0.802924 -5.211986 2.194772 -3.285368 5.380622 1.843897 3.910133 2.380013 -1.643554 -2.984366 2.850773 8.853582 -3.294279 3.097317 -3.655538 -7.395073 5.866597 0.808884 4.063983 -1.253623 -0.916792 2.248477 -4.610623 1.830912 7.061640 0.900257 -0.271224 4.969080 -0.977029 -1.608463 -8.071519 -6.115615 1.039877 1.736256 0.860652 11.497425 -4.295555 -3.703145 -2.135303 5.106091 -1.598691 -0.450302 0.236280 -2.532363 2.177873 -11.344045 -8.989690 7.197554 5.999267 0.265668 -0.750302 4.802390 0.599253 -0.248670 -4.963107 -3.502798 2.583649 2.050975 0.128232 -1.739809 0.874856 -4.786019 1.253556 2.153948 1.604948 4.730570 -4.175127 -2.784651 -3.501952 -8.000334 -5.278528 2.671905 -6.874838 -0.246369 2.168975 0.363273 -0.363625 2.634519 -0.640952 -4.469451 -0.282371 -2.417478 -0.498526 -0.382030 4.993911 0.006652 5.602959 7.273896 0.417074 4.571184 3.341908 -3.931146 15.791835 -5.016090 -0.060787 -0.024612 4.218615 -2.185925 2.323101 3.960967 -1.665209 -2.313721 -6.204550 2.240437 -0.236312 0.770602 -10.032727 -3.105703 -6.078808 -1.870964 0.851124 5.426285 0.673030 10.309926 -1.224678 -0.142742 -11.036559 0.053578 3.512213 0.218041 5.196437 3.852274 -5.658225 -8.700032 -0.625243 -3.396464 3.911077 -2.119293 -6.111277 -3.889003 0.544917 0.321914 -1.407210 3.591858 8.303289 -2.213067 2.879993 -0.535791 -1.518720 -1.259634 -3.493137 3.943482 1.016759 -3.147458 5.132987 -0.288449 11.840849 0.548445 4.203391 -4.497573 -0.783408 1.118086 -2.957751 -3.110457 6.565894 2.832749 2.426392 1.445675 0.838376 -2.437262 3.481477 --3.852992 6.976229 31.433452 20.378740 -9.609492 -13.192939 -6.386202 -14.477730 8.136769 4.099469 15.727320 -2.196758 4.303430 7.874867 0.103091 -7.891716 4.248068 0.662452 -0.748153 -5.007394 -3.275852 15.488114 16.138901 -22.504461 0.339453 -20.059272 13.144757 7.993375 9.176549 14.061092 -0.192588 0.973097 0.757901 10.995503 -16.086466 -7.109672 -5.396087 5.710550 -6.670041 -2.159009 8.196299 11.844103 7.582874 1.524435 8.742932 10.173878 13.450001 -3.322202 -12.199767 -2.669444 -8.677430 18.009838 -8.964713 8.380217 0.655417 11.578576 0.306704 -14.799638 -3.630258 -24.706091 7.003725 11.290323 -10.363382 0.040184 -16.852973 2.830964 -5.587022 -9.441646 7.114827 -1.237494 10.073866 0.081184 2.729436 -15.161214 -12.474744 8.971566 -3.253077 6.637512 5.962116 -0.902933 -7.552835 5.257662 -5.429153 -10.116343 1.222289 -0.302688 -0.410035 -1.594730 7.256251 -8.545456 0.797193 -0.996546 -10.072216 15.198740 -11.033678 16.976731 -5.491593 -2.283322 -7.207941 -4.039129 -3.728493 -16.412331 5.996902 14.291085 -5.928962 3.871934 -1.418130 5.131755 2.131065 -17.334491 -0.560573 -1.271225 0.111885 11.910667 -11.147158 -3.130079 3.555134 1.354936 0.313595 15.644326 -2.557018 7.104987 13.549553 9.919084 2.450796 -10.568433 5.912916 3.402431 5.327723 10.543520 12.059130 -13.848135 -8.728988 -3.864122 3.167313 -23.244327 6.540753 11.304294 8.924212 3.018692 -22.053326 5.622983 -6.730478 16.410257 11.712465 14.633698 6.358203 -2.472574 -5.731874 5.042417 29.457826 -9.777058 10.189404 -6.041294 -18.661790 21.055282 -8.360734 15.755702 -0.234379 6.038943 8.649429 -16.583802 -2.208096 20.332118 6.171426 4.922047 18.407688 -3.145594 3.880347 -23.743569 -16.807808 -2.385409 4.115043 1.433022 27.926607 -10.610564 -6.151780 -3.819771 13.056026 -3.240236 -4.404059 -2.625319 -2.048461 3.776560 -32.578760 -22.561045 16.243419 19.229853 -1.870799 -3.089984 16.999175 4.852324 1.515946 -11.870526 -11.130738 10.661880 -0.403620 10.861849 2.560406 -0.536710 -17.460271 0.584676 2.491551 2.700600 12.591064 -14.407672 -14.333874 0.289587 -22.656295 -12.960062 3.827618 -17.139161 -7.954997 -1.590793 2.393413 -1.087427 1.253942 -4.797690 -9.534190 5.277715 -10.636262 -5.552037 4.591752 10.751830 3.115989 20.042595 13.263405 3.131010 6.955838 8.223537 -8.278662 44.482297 -9.911965 -4.907584 -0.416709 13.414940 -5.272656 6.915048 2.930589 -4.210718 -12.153683 -14.757544 12.012110 -3.219669 5.143272 -23.543320 -10.210358 -11.865819 -6.081754 6.753795 16.024276 1.056354 32.438629 -1.364392 3.658402 -30.915365 0.572739 13.363579 -2.118489 13.208534 12.699533 -14.287052 -21.898993 -4.020851 -1.774230 15.062890 -3.322248 -18.684439 -10.425487 -2.655875 1.640299 -6.721539 9.397527 18.114825 -4.643339 8.105384 4.201533 -4.578356 -1.085697 -6.699897 8.012527 8.282894 -13.990839 18.116235 -5.996313 33.568757 -7.085252 14.200673 -13.442920 0.231588 -2.371574 -2.342449 -5.346398 19.761470 12.289018 7.470894 1.838766 0.373640 -9.602169 6.726021 --76.033587 44.708701 276.603468 113.382973 -126.135020 -189.476195 -70.448505 -284.531980 142.572523 89.983686 235.271049 -1.258076 138.647669 -46.563190 5.880223 -10.571796 135.491143 -42.456738 9.160679 -88.183336 -36.199660 226.318144 68.763026 -77.001639 44.022967 -192.012263 119.646624 49.592599 97.249727 157.295849 48.349775 3.306783 -53.324716 83.386526 -44.096841 52.577513 25.140290 81.913129 -99.541171 -33.496679 40.063369 -43.885983 142.972335 15.765608 168.284307 20.076150 93.089677 -14.451986 -150.665208 -90.856234 -72.271547 141.092650 -121.443170 94.428760 3.644384 -17.899672 29.817759 -55.260175 -12.517051 -188.457266 12.758618 -44.215032 -93.306647 1.551044 -123.941536 44.846429 -77.937521 -84.811291 5.409541 -82.469850 100.348956 22.748575 31.231715 0.439746 -216.859687 52.683193 44.736631 34.530797 104.742665 50.008826 -37.416332 -46.811837 -107.267564 -151.909476 141.311424 72.571514 40.650253 45.025128 -117.782678 -4.935272 -4.131302 1.337157 13.540100 125.305494 -160.376248 55.517338 -0.571927 -75.779318 -74.808544 -188.260263 13.940679 -139.125385 46.909007 91.572892 -67.737392 14.320063 -98.288301 55.949090 -73.478606 -154.086693 68.582730 -80.097109 -46.405965 170.275935 -118.738780 -61.148694 -76.034634 1.134073 47.082680 122.343250 15.477432 72.589788 137.414689 113.947761 110.257272 -150.957122 -19.713685 83.150809 121.075298 69.562436 64.009894 -106.581484 -94.625808 48.063891 -107.272142 -272.302746 -85.340492 116.725018 171.291499 14.572381 -144.302257 44.271083 -85.629224 150.293286 160.271733 82.198472 47.570897 34.345600 -137.595416 61.612425 229.242159 -98.929700 136.511543 -37.967182 -97.995559 169.631124 -80.469253 101.885152 1.911872 7.042947 -0.937556 -125.198478 -18.740730 198.329594 68.493778 73.368166 -16.448217 49.129917 -54.542875 -235.265388 -292.845658 -51.299464 192.886437 79.762711 235.776470 -154.450002 -83.813123 -5.722982 163.141369 -23.379280 -126.889090 44.001697 -88.554170 89.784029 -338.908090 -246.536844 312.440815 262.150417 95.016086 1.146422 120.431188 82.067770 -141.220962 -107.777867 -112.301327 106.160462 0.508761 -153.009641 -63.308132 32.740184 -204.496894 -61.620007 -7.544063 41.610328 64.009189 -48.429067 73.906250 3.578505 -94.284128 -74.346151 98.460450 -110.508890 -105.257264 -27.874638 11.388575 50.044948 71.185088 -60.427453 -31.761308 52.728776 -146.459516 -41.881464 37.870669 114.345002 50.967535 262.614828 240.761942 -41.658397 77.466524 -10.308291 -127.287360 292.665362 -115.155549 1.949943 -13.310781 92.831251 32.020868 70.219460 145.862488 -75.173651 -122.358751 -182.498354 -13.947555 30.679768 107.922173 -148.450509 -188.737181 -224.732332 14.664675 23.646635 214.800340 -14.855659 333.140773 -74.111536 56.015084 -328.353808 15.886158 121.668582 -27.544542 130.366105 74.106299 -133.283122 -177.144185 -53.487419 -148.605015 -21.313877 -14.903658 -99.141850 -96.542662 -106.476589 130.360599 -118.554815 38.485228 100.268558 -11.676859 180.597540 52.969645 -24.428676 -109.113325 32.121658 118.776941 41.684338 -120.676518 185.047937 24.889028 390.425665 -48.142397 99.573681 -91.543135 70.745923 -49.587134 -130.313980 -76.134893 211.480124 220.654464 77.081508 -9.670793 2.576339 -48.903961 135.844353 --3.290463 6.756604 29.335789 17.885799 -10.071443 -13.914835 -5.902755 -16.762384 8.470816 4.676817 15.867901 -2.251628 5.605187 6.225435 0.312696 -5.881671 5.387636 0.108222 0.174166 -5.350823 -3.699712 15.329874 12.849479 -18.712539 0.714143 -19.122629 13.626005 7.622871 8.923081 12.838842 1.099720 0.934653 -0.454475 9.936191 -13.894370 -5.392903 -4.142022 5.822142 -7.488067 -1.590117 6.381385 9.732491 7.912538 1.081141 9.382371 9.038856 12.610993 -1.977822 -11.451941 -3.151848 -7.750577 16.983863 -8.162257 7.975597 0.409232 8.387995 0.401777 -13.007929 -3.040451 -21.114893 6.228237 8.997223 -10.463688 0.605168 -16.269167 2.790921 -6.085754 -9.346690 5.986046 -1.061547 9.379061 0.033645 2.327153 -12.796485 -14.292678 7.496362 -2.307181 5.821281 6.326489 -0.600445 -6.114987 3.989275 -6.514651 -10.352436 3.068664 2.105406 0.134447 -1.113424 4.318238 -7.498200 0.210026 -1.225503 -7.647429 14.073270 -11.029142 14.810056 -5.339725 -2.470965 -7.197353 -6.329388 -2.381069 -14.900521 6.040634 11.890085 -4.977737 3.335692 -1.734812 4.979453 1.146886 -16.401315 -0.112208 -3.126232 0.896596 12.977403 -10.178811 -3.584092 1.260021 0.633505 0.535715 14.137538 -1.419825 6.335946 13.586044 9.728710 3.007344 -10.552956 3.690659 4.525222 5.205775 9.954190 10.778354 -13.731880 -8.357278 -2.752774 1.229207 -23.091663 4.567392 9.434471 8.773650 1.243973 -18.922931 5.109561 -6.715129 15.000777 11.608831 13.188904 5.782985 -1.530572 -5.823141 4.823472 26.628136 -8.885865 9.649479 -5.859114 -16.190455 19.022131 -7.161257 13.719974 0.370644 4.875150 6.323647 -14.723048 -1.717754 18.485268 5.908054 5.591287 15.364078 -1.639417 2.446787 -21.710265 -16.882311 -2.020239 6.033843 1.609697 26.468406 -11.129030 -6.162160 -3.236935 12.728134 -2.433530 -5.024049 -1.107389 -3.107400 4.204812 -30.231708 -21.763086 16.072308 18.620450 -0.116748 -3.568558 15.618808 4.786806 -1.591202 -11.528829 -10.686369 10.065301 -0.833437 6.074230 1.627620 0.295797 -17.895457 -0.220508 1.820747 3.241490 12.242251 -11.819671 -10.557444 -0.961670 -19.985314 -12.259168 4.853908 -14.577999 -7.433812 -1.619323 2.209247 -0.532888 2.102046 -5.499905 -8.010780 5.735209 -10.535514 -4.625507 4.698324 9.906004 2.471591 20.982835 12.946157 2.475052 7.056290 6.394518 -8.237175 40.329898 -8.525126 -3.670593 -0.465613 11.747070 -4.347554 6.062140 4.323707 -4.511543 -12.189034 -14.560943 9.097074 -2.024398 5.429177 -19.474780 -10.106245 -12.929412 -5.157657 5.351972 16.894436 1.117244 30.291890 -2.170342 4.041825 -28.189336 0.941304 11.491876 -2.418587 12.592748 11.278774 -13.689267 -18.370326 -3.641525 -3.627223 10.321475 -2.970348 -16.701819 -10.299271 -3.315237 2.781531 -6.443007 7.324556 16.599265 -4.302089 8.414512 3.421664 -3.805117 -1.698645 -4.797448 8.569906 6.823974 -13.589132 17.229298 -4.886699 34.037986 -6.503778 13.039248 -11.754867 0.441494 -2.346366 -3.934076 -5.496961 18.652305 12.571481 7.167249 1.359378 -0.082435 -8.071322 7.034907 -0.345245 11.033568 34.988253 18.128159 -16.869826 -20.792582 -7.962454 -29.821429 13.169436 7.475130 17.414901 -3.990729 7.073938 4.417127 -4.100005 -2.164715 9.509811 0.839500 -3.948487 -10.839629 -16.303737 17.613584 7.465599 -16.186854 7.395046 -27.264405 18.697945 6.679286 8.920856 13.821372 5.225596 1.156782 -3.601617 13.479084 -9.676051 -0.968224 0.561617 5.817901 -11.385716 1.017202 8.793623 3.598479 15.155142 5.218967 12.727276 12.568612 9.295244 0.205036 -16.380511 -3.344484 -8.051202 17.697579 -8.148027 11.978916 -0.555676 7.908076 2.368234 -17.452155 0.193016 -13.987278 1.200017 1.764069 -10.681670 0.055521 -18.039038 0.989590 -6.034162 -15.032258 4.389643 -3.901684 11.438769 -0.266959 -1.671846 -10.086269 -18.871635 7.050927 4.467848 6.708662 11.997919 1.071533 -3.067938 -0.327645 -14.684244 -15.487422 10.374697 5.001307 4.275224 2.317616 1.038264 -12.055459 1.410267 -3.651019 0.523366 18.692649 -15.502967 9.362872 -8.703713 -8.172974 -15.670135 -20.298334 0.319846 -14.194275 9.762556 9.598179 -13.205047 7.099775 4.303273 6.848555 3.090114 -15.763762 1.549778 -7.763769 5.623939 21.347571 -5.784196 -13.556299 -2.279864 -4.388329 -1.303829 15.255000 0.244778 1.191157 24.048340 11.773119 10.181532 -12.935667 -0.619971 3.579436 3.056502 10.352754 13.624893 -18.531233 -9.874376 0.982335 -4.580279 -31.099912 0.854447 3.806361 15.245120 -2.823465 -17.817169 5.877497 -8.948118 12.438770 9.766700 11.674856 7.192521 -2.541899 -10.341411 5.118867 32.410385 -9.454091 10.669098 -13.290645 -16.229238 18.070501 -3.303816 11.968199 -0.496975 -0.948445 4.029288 -14.658816 1.339810 22.787369 1.095121 -1.369863 13.497035 3.170038 -7.940687 -26.135565 -25.945871 -0.694541 12.423349 3.077379 33.795106 -18.974542 -7.154970 -7.540429 21.044877 -3.296491 -4.126015 4.633710 -8.405988 7.429788 -29.286350 -27.795451 27.163976 25.161755 4.500933 -5.683603 15.296461 1.994813 -10.653806 -16.981407 -14.112634 7.015449 6.696848 -4.400259 -6.154251 1.251398 -19.844053 -0.918633 1.702191 6.011045 17.465829 -11.461039 -3.255852 -4.497961 -18.871873 -18.402656 10.009876 -16.111744 -4.804877 2.490320 3.630454 -1.040841 8.674527 -4.000865 -12.074802 1.925108 -9.417192 -2.122090 6.879245 14.658566 0.351189 27.660836 21.489357 -2.968750 12.799287 5.139706 -10.241971 44.464250 -11.826241 0.541179 1.423688 13.800937 -4.723231 8.087046 13.685457 -7.536694 -12.362036 -17.222311 5.112124 -3.582773 4.090663 -22.216400 -11.425124 -24.217685 -5.571709 -1.292659 20.019130 2.073866 35.229547 -2.035962 5.212964 -34.789127 0.798606 16.246266 -2.692846 14.984232 12.061783 -18.955730 -21.352279 -3.619440 -13.303311 2.657116 -2.946735 -12.279690 -13.674281 -3.662224 5.088566 -5.243969 8.605572 22.683642 -2.683338 9.834465 -2.820452 -1.216860 -5.674328 -5.144455 17.476492 3.405804 -13.936036 18.683829 -0.091940 42.731509 -0.185700 14.228622 -10.776126 -2.212232 -0.194167 -10.799715 -11.196647 20.585009 12.748454 10.463575 1.282755 0.329749 -6.102823 14.952233 --2.775350 7.619592 29.408343 19.488191 -16.076550 -17.073362 -9.236038 -19.848157 8.980322 3.749032 17.856681 -3.155995 5.312610 5.697084 -0.646135 -5.963645 8.533645 0.164055 -2.585756 -8.924601 -10.275387 16.514673 11.482882 -21.124596 4.220998 -17.372433 14.541563 9.537151 6.645505 14.224532 1.064955 0.427184 -2.438384 11.673490 -14.080402 -5.297972 -2.255818 6.654643 -10.646312 0.577185 10.288592 6.434530 14.608993 -0.586312 9.247419 11.991734 8.983069 -0.101781 -17.994645 -3.891013 -6.391081 15.115481 -9.094691 10.950519 -1.349618 8.483772 2.023683 -14.805261 -4.197843 -18.674821 4.098478 5.671305 -9.558220 -0.400521 -15.690431 1.935127 -3.790423 -13.652420 8.790941 -4.216663 9.634059 -0.773955 -1.564515 -11.181206 -13.120510 7.332009 4.092129 8.694933 7.315808 0.208588 -1.160449 2.299920 -9.434725 -10.976452 3.092792 1.082259 5.093073 0.819227 1.513360 -8.647659 5.304985 0.651378 -2.943392 14.449606 -9.596994 11.268836 -8.597268 -6.375782 -12.800675 -11.104254 -0.846961 -13.038029 9.487994 11.922637 -12.043015 5.549836 2.115369 7.917692 0.826950 -17.942822 -1.676331 -5.180846 1.481953 18.034868 -7.288162 -9.695296 -0.035429 -2.003946 -1.517006 14.002902 -0.404281 4.522610 16.634080 12.398993 6.047437 -14.082883 0.115851 0.289582 6.168547 11.063259 13.981504 -12.082822 -10.125744 -1.746120 -4.743596 -25.912194 0.400630 4.152907 14.178548 -0.866631 -18.586860 7.465925 -11.131112 15.670606 9.267362 13.598257 6.706813 -2.870449 -11.128092 6.556392 26.334872 -9.091601 11.679978 -7.916664 -18.343313 17.859653 -1.477024 12.273685 1.065726 -0.540099 4.627418 -15.033720 0.516041 19.699835 4.223509 3.831467 11.523288 0.021094 -2.669809 -22.916577 -22.208760 0.037492 9.562073 4.331091 29.469344 -15.209452 -9.634021 -4.677959 16.704459 -4.019633 -5.960069 1.166380 -5.019346 7.307831 -31.384363 -24.396851 22.214914 21.831751 2.853740 -1.257526 16.800303 1.101559 -4.603262 -12.770873 -12.227285 10.939125 5.385852 2.980698 -1.276931 1.280363 -16.094539 -0.208517 3.349619 6.035027 10.756733 -13.063826 -8.005863 -2.038110 -20.290014 -12.529499 6.999345 -17.618099 -3.695292 2.957445 -0.046268 -1.042913 5.699146 -4.726111 -11.492936 -0.186844 -10.245864 -2.284465 3.139020 13.830264 1.614909 20.120040 19.075071 -2.014651 11.963183 5.906272 -10.825202 41.237978 -13.391320 -0.019406 -0.118241 14.153035 -3.818503 5.711801 10.954692 -5.638499 -9.517876 -16.952894 6.341601 -0.341986 6.757369 -25.270972 -10.879849 -18.720606 -3.774443 3.296606 19.203710 0.558851 32.114038 -2.725098 4.260831 -32.899279 0.348812 12.785976 -0.735506 13.519522 10.855761 -15.236944 -26.681435 -2.689499 -10.742318 9.158224 -3.401835 -15.268549 -13.008232 -2.800559 4.896700 -5.385550 7.318275 21.608931 -6.370425 9.513391 1.253851 -5.258654 -1.424554 -8.958833 11.278195 5.587586 -13.116545 18.925181 -1.051173 39.478594 -0.812808 14.571165 -11.659903 -0.048276 0.162756 -8.226161 -9.027145 20.131893 13.198574 8.315258 2.234867 1.019289 -7.710382 9.554110 --2.032032 3.989580 14.975881 10.667040 -6.478263 -9.169837 -3.406246 -8.812551 5.603102 1.683443 8.425033 -0.271406 4.539431 1.166395 -0.444974 -3.550750 5.723364 0.070719 -1.163834 -4.108328 -2.750081 10.785342 5.480228 -11.535416 1.459063 -10.281907 7.631118 5.063691 4.362893 8.778159 0.684075 0.795960 -0.437682 5.687152 -7.588615 -3.619976 -1.344336 3.224960 -5.419745 -2.045951 4.658777 3.586421 8.029175 0.827405 3.748849 4.812406 5.859136 -0.425753 -7.155756 -2.569669 -5.104293 7.387119 -4.146972 5.955965 -1.486448 3.585043 3.624521 -6.168336 -0.825223 -10.944564 2.274762 3.824610 -4.551568 -1.210015 -8.242765 0.852482 -1.550583 -6.813047 3.139423 -2.469137 4.972997 0.737526 1.196274 -7.417074 -8.952050 4.023366 0.788406 4.226906 4.267741 1.999920 -2.634114 0.255202 -5.301169 -6.124614 2.725747 0.488500 2.106395 2.244354 -0.218385 -5.211884 1.109337 0.335725 -2.457779 6.639498 -4.312201 6.449764 -2.288384 -2.260143 -4.603226 -4.726839 -1.065306 -6.870185 2.667684 6.481050 -3.676089 2.460751 -0.853743 2.517781 -0.441323 -8.000676 1.636921 -3.318144 -2.259099 7.884808 -4.385621 -4.093420 -0.082104 0.146730 0.471472 8.298401 -1.880289 2.855099 7.236161 5.540478 2.802348 -7.003216 1.987940 1.477208 4.085236 4.713020 6.626834 -5.995469 -5.133673 -0.480897 -2.163346 -13.393541 0.821102 5.304318 7.687974 0.491337 -11.452075 5.464384 -5.256646 8.187823 6.190256 6.403629 4.039557 -0.537392 -5.266685 3.485555 14.244298 -5.201948 6.340112 -4.679100 -8.846105 10.917293 -1.698064 6.761853 -1.341113 -0.013133 2.614284 -7.079993 1.174372 10.933468 2.604710 1.994777 6.743619 -0.561380 -0.455503 -13.099667 -12.072455 -1.433000 5.250698 3.203839 16.806746 -7.410479 -3.740564 -2.271050 6.509168 -3.687530 -3.257941 0.425334 -2.725634 3.498993 -19.286334 -13.017998 13.652960 10.289287 0.532395 -0.102985 7.836211 1.365710 0.137072 -6.564334 -5.420744 5.022631 2.256823 0.920294 0.158142 0.828393 -9.285045 -1.120419 1.960676 1.926203 6.116382 -7.447139 -3.270642 -3.213622 -10.592994 -7.290033 3.172570 -9.331283 -3.255667 1.116712 0.268324 -0.204614 2.832635 -0.488748 -5.324106 1.284901 -5.239242 -3.271763 0.141436 7.135024 1.657439 9.616944 10.851347 -0.496143 5.067716 3.758956 -6.103413 22.525692 -7.444718 -1.273464 -0.376810 8.453501 -0.077950 4.283971 5.109165 -2.889405 -3.944256 -9.773564 4.600886 0.595835 2.780131 -14.469015 -5.285979 -9.198944 -2.120146 1.310252 10.638303 -1.123248 17.458648 -2.867203 1.317557 -17.846356 0.518196 6.759604 0.142619 6.144618 6.338307 -8.039274 -11.646746 -1.894683 -4.957067 5.556068 -1.699897 -8.613247 -5.815438 -1.824908 1.753365 -5.309758 4.350252 11.278285 -3.594600 5.805796 0.406349 -1.904238 -2.305317 -3.485599 4.610148 3.538049 -5.691566 9.570093 -1.731633 17.871648 -1.599989 7.601871 -6.709284 2.136674 -1.042924 -5.755071 -4.694286 11.173813 6.351669 2.911811 3.068661 0.396224 -3.027967 6.779915 --6.657840 11.488652 50.782721 30.215049 -20.656361 -30.478242 -13.961940 -33.768086 17.761129 6.832726 30.935602 -3.164460 10.634569 9.451492 0.506196 -9.719282 10.988107 -2.387813 -4.756146 -12.426523 -12.714660 32.146226 21.099903 -32.912866 4.651388 -36.208974 21.179864 14.911315 13.407770 25.531870 0.055124 0.243309 -2.294296 18.390849 -24.347009 -6.476767 -2.992078 8.903802 -14.072834 -4.138571 15.802349 11.976688 22.386376 1.667998 17.351039 15.884313 17.476509 -2.599213 -23.751841 -8.522133 -14.179720 29.350668 -15.656966 16.994806 -1.114279 16.057934 4.088374 -24.574128 -5.730675 -34.932992 7.112978 12.087551 -17.518330 -2.118117 -25.217780 4.642308 -6.370367 -18.307533 12.134609 -10.329057 18.528079 -1.281596 0.519369 -18.963848 -26.416322 11.623845 0.679567 11.968826 11.786830 1.118885 -9.385336 3.987181 -15.084382 -18.790138 8.156087 3.285078 4.622924 2.225766 0.065713 -12.282735 3.444043 -0.941715 -7.946020 24.460976 -19.547168 20.268759 -6.975871 -8.748880 -18.934648 -15.459072 -1.616293 -23.786810 11.423932 20.774556 -12.701416 5.705577 -0.087422 9.126241 -1.033934 -30.908023 1.716218 -6.570864 -1.503950 25.256489 -17.000908 -10.045494 2.785065 -1.968788 -1.336733 26.088803 -1.818003 9.366770 25.124431 19.458467 9.797384 -21.946310 3.222542 4.828647 14.863847 17.041821 19.612990 -22.686019 -14.984858 -0.915613 -5.675602 -45.592827 2.722584 15.653002 24.867296 4.403778 -35.616391 13.520408 -14.513550 26.401528 18.426785 21.327855 10.325531 -3.287741 -18.307102 10.306079 49.334873 -16.371863 21.728226 -13.339056 -28.598237 34.543006 -10.831818 22.915155 2.076903 4.094458 9.489820 -24.926057 -0.820049 34.638935 9.466767 9.842266 19.822918 -0.245165 -2.442935 -42.160418 -39.495563 -5.406084 16.645725 5.443006 49.235295 -24.286931 -14.583567 -7.345880 29.543325 -10.582342 -11.239729 1.756034 -9.598773 11.233552 -56.606147 -41.163396 40.085834 40.315697 3.883287 -0.396150 29.719475 7.731567 -4.547426 -18.299732 -19.695809 18.005080 7.184184 4.317293 0.362187 -2.076568 -29.095930 -2.771003 2.557368 7.311288 14.946647 -19.361139 -10.880387 -1.984848 -33.765874 -21.058856 9.918865 -30.325507 -9.590643 1.183497 2.096631 -3.323051 7.814487 -7.056026 -15.844647 7.219718 -18.476503 -4.483121 7.605960 18.765529 6.327775 36.442443 31.061229 -1.974024 20.000540 9.166091 -15.979585 69.727978 -22.357074 -3.383686 -1.096560 25.114310 -4.523796 13.103732 13.744407 -9.197189 -16.710545 -27.951378 14.590318 -1.977843 11.457932 -37.782686 -22.831203 -31.053246 -8.589687 7.772362 32.575343 -0.889388 55.944299 -5.737697 8.368913 -59.574852 1.410055 22.962801 -2.426298 19.379181 18.035521 -23.500993 -43.363030 -4.896787 -12.752521 13.175465 -5.354371 -29.560924 -18.438298 -11.570686 9.203447 -15.101892 13.530501 31.307145 -6.618007 17.158988 2.927075 -7.698466 -6.716303 -10.366386 17.139208 10.059768 -21.464989 31.466510 -3.760227 62.307018 -8.616510 26.154972 -20.097974 6.262706 -4.228485 -13.786539 -12.121711 34.420959 23.759949 11.045125 2.161926 0.958421 -13.612867 15.480159 --1.486705 6.470488 20.898560 14.224297 -9.812530 -11.514365 -4.905244 -11.715707 5.377285 1.924461 10.140038 -2.400468 3.871930 4.984524 -0.371280 -3.974430 6.630060 0.703491 -0.909322 -5.425881 -5.618250 11.324764 6.872483 -15.805205 2.053549 -13.217352 10.816719 7.282381 4.423010 10.042167 0.857503 0.787655 -0.947408 7.969971 -10.557714 -5.826457 -0.718517 4.290764 -7.084333 -0.470040 5.582391 5.553188 9.324765 -0.217860 4.124325 8.799222 7.590810 0.591498 -10.550136 -1.843029 -6.222990 10.393874 -4.834389 7.826919 -1.107951 5.180272 3.192447 -10.516946 -2.023581 -13.154294 3.002690 5.452601 -5.696194 -0.804069 -11.134113 0.983367 -1.430272 -9.941081 6.003037 -0.343599 6.318821 0.284988 1.027523 -9.411071 -9.880404 5.643868 1.606804 6.405177 4.760105 -0.540012 -1.596831 2.367472 -6.804155 -7.746882 1.390242 1.231497 3.371955 0.576990 2.174362 -6.594840 2.359406 -0.443585 -4.070987 9.975852 -4.587134 9.003102 -5.929660 -2.723863 -8.748846 -7.092075 -1.731458 -8.855990 5.329321 8.738533 -5.915366 3.750510 1.002417 4.691746 0.765001 -11.203071 0.313729 -4.447424 -0.044324 10.425659 -4.561059 -5.695276 0.887844 -1.017159 -0.345706 10.474844 -2.323236 3.097309 10.783776 8.220587 2.881631 -8.593859 1.161418 0.335940 3.824400 7.373558 10.121813 -9.794483 -6.599463 -2.049116 -2.485216 -16.699466 2.923172 4.496663 9.039777 -1.277558 -14.498367 5.990536 -7.358679 11.055036 6.423726 10.128677 4.501768 -1.623787 -5.862903 4.465410 19.251859 -6.722637 8.033845 -6.871086 -11.331251 12.501598 -0.331152 8.811001 -0.149720 0.202489 3.694313 -9.844031 0.369900 13.874527 4.340228 1.833155 11.361309 -1.045843 -1.429471 -16.982958 -13.871693 -0.368394 5.872310 1.509582 22.900901 -10.243661 -6.487991 -3.615348 9.258207 -3.996783 -3.289690 0.294676 -2.801083 4.318098 -22.233488 -17.016325 15.004274 12.072519 -0.301363 -1.423321 11.187175 0.493925 -1.669867 -9.879235 -7.024562 6.673367 1.986647 2.759274 -0.427944 1.508825 -11.827973 0.419147 2.533673 3.641092 9.716720 -9.051548 -6.585047 -2.799553 -16.011182 -9.901725 4.002233 -12.834944 -3.742566 2.560616 0.716272 -0.250421 3.366197 -1.560943 -8.154149 1.497229 -6.645354 -3.153785 1.642672 9.286630 0.967054 13.279211 12.688790 0.687403 7.691300 5.849302 -7.219238 30.324655 -8.204342 -0.955763 0.099632 9.979430 -2.802123 4.742458 7.102898 -3.514844 -6.749688 -12.426592 5.995457 -1.130467 3.535696 -18.880334 -5.615845 -11.451578 -3.552334 2.561461 13.385535 -0.582917 22.062934 -1.311515 2.234662 -23.045527 0.394806 8.062627 -0.195955 8.152087 8.490243 -11.015800 -16.280784 -1.357475 -6.136766 6.540102 -2.438741 -11.350797 -8.394888 -1.104541 0.485177 -3.835080 4.964472 16.822341 -4.656794 5.905742 0.404281 -3.066366 -0.782663 -6.139190 8.146645 4.070649 -8.214534 13.023578 -2.143699 26.102056 -0.776082 9.505458 -8.453363 -0.616488 0.965226 -5.131879 -5.868861 13.967137 6.346703 4.999689 3.437121 0.591346 -4.710803 8.094630 --1.365780 5.342041 18.059995 11.264891 -8.567817 -10.489126 -3.960485 -10.583691 3.944622 2.435082 8.914914 -3.379111 2.856499 3.389680 -0.442643 -3.978701 3.620513 1.894824 -0.628137 -4.152029 -6.636537 7.374614 6.642741 -11.043904 1.895515 -11.152288 9.318670 5.841303 4.188355 7.358500 0.999947 0.631563 -1.864986 6.269215 -8.403404 -2.983444 -1.944677 2.812660 -4.910358 0.615168 4.070691 4.350621 5.611626 -0.400364 4.727659 7.657015 5.798973 0.044421 -9.698621 -2.286171 -3.049528 9.326951 -3.694519 4.843990 1.900403 4.763287 0.584194 -9.215392 -0.947391 -10.679460 3.814020 3.037569 -6.106871 1.172520 -10.579882 0.672086 -4.428871 -7.151511 5.533748 -1.820907 4.084505 -1.423939 -0.801193 -7.210564 -6.259387 4.348598 1.532941 3.845227 4.080357 -0.281259 -1.118775 2.681920 -5.209833 -6.246031 0.675360 0.626680 2.140501 -0.352473 1.127496 -5.890389 2.858473 -1.244143 -2.361323 8.217640 -6.149502 6.489803 -5.506899 -2.732287 -8.112787 -7.702520 -0.564904 -7.341435 4.991307 7.197893 -6.257486 1.984984 0.560654 3.395332 2.112774 -10.515634 -1.635039 -3.921723 4.077245 9.798213 -5.346865 -4.062625 -1.286689 -1.322319 -0.479392 8.579092 -0.426181 1.854438 9.555250 5.846263 2.546153 -6.528663 0.555023 1.166852 1.713033 5.775092 7.122796 -9.247193 -4.738119 -1.602100 -1.327437 -14.172306 1.445755 2.143849 5.499658 1.409529 -10.433490 3.398939 -4.844595 7.602290 4.158777 7.669298 2.858217 -1.769119 -3.483179 2.472885 14.945186 -5.544118 5.376302 -3.866803 -12.138346 10.244276 -0.877507 6.841724 1.701371 0.784972 3.388140 -7.814494 0.211082 11.134056 2.040779 1.453054 9.605529 -0.460680 -0.487038 -13.191245 -11.100997 2.777728 3.725132 0.411390 16.924810 -8.444525 -3.845268 -2.567475 10.798916 -1.785156 -2.646747 -0.391193 -2.009606 2.819628 -15.954132 -13.882011 9.216885 10.587526 -0.187519 -2.711272 9.010555 1.391752 -3.150144 -6.664320 -8.009203 5.326526 0.130633 3.154584 0.105545 0.436277 -10.393856 2.047540 1.198452 3.109398 8.792362 -8.015337 -6.686048 -2.899045 -12.639712 -8.454450 3.494339 -8.846582 -1.255014 0.189960 0.915762 -0.161919 2.877057 -3.609481 -6.886180 0.765802 -5.478599 -1.692511 2.635772 6.832583 0.720295 15.110735 7.702038 0.486709 5.091932 3.349639 -4.801610 25.921183 -5.009875 -0.400663 -0.185751 8.392066 -2.765089 3.448561 5.063692 -2.984607 -7.323475 -8.799723 2.864638 -1.466618 2.135109 -13.970332 -5.383174 -11.636981 -3.728936 1.482031 10.269124 1.453520 17.752387 -0.173123 1.606226 -16.673929 0.260527 6.690752 -2.275109 8.421337 6.007212 -9.113379 -12.086480 -1.618270 -4.313330 6.015875 -1.486431 -8.768478 -6.425110 -0.265832 1.545576 -1.076495 4.318064 11.388433 -1.879086 3.186305 3.032191 -1.831207 -0.123227 -4.550661 6.791254 2.661173 -7.880665 11.268978 -0.781201 20.567485 -0.797656 7.371969 -6.254982 -1.557090 0.869791 -3.388231 -4.547424 9.717313 6.589393 5.044855 0.300646 1.780960 -5.077139 4.982850 --5.897568 8.086621 40.261762 22.448508 -12.248346 -20.682016 -8.196241 -24.419159 11.481435 6.279570 24.194792 -2.041665 9.626341 9.259286 1.430773 -8.316814 10.893276 -4.468887 -0.009730 -8.287267 -5.064050 23.788550 13.060232 -25.063845 1.502370 -30.885831 20.625685 10.538067 7.143418 20.217229 3.012495 2.444178 -1.143203 12.452143 -17.783432 -6.967046 0.287241 7.725114 -6.939730 -4.415241 11.476027 12.267205 13.760374 3.054649 12.155242 12.804433 16.801536 -1.602288 -12.691489 -5.984707 -13.896574 19.709883 -11.345591 10.733412 -2.915900 11.250162 6.628180 -18.866963 -4.084109 -29.505435 6.676564 11.704073 -14.015353 -1.283306 -18.809018 4.586925 -3.592695 -11.221339 7.527491 -2.808934 13.648556 -0.430872 4.044198 -15.882710 -22.548789 9.090625 -3.726240 7.030421 8.403234 -2.289469 -12.217487 3.851569 -12.532756 -14.559694 7.348823 5.696720 1.804935 -0.203651 3.370386 -6.508865 -2.629289 -1.031078 -10.135229 19.593867 -12.542475 17.476680 -2.617558 -4.386654 -11.896977 -7.767053 -1.387822 -19.911084 6.677158 20.757551 -8.194414 3.254197 -4.327099 5.258321 -3.730052 -21.143505 3.226305 -7.795824 -1.434860 14.696690 -13.712080 -6.256263 0.774479 -1.138516 5.573917 20.684269 -5.114642 7.839976 19.411411 13.936990 4.138206 -15.235904 4.021271 5.970944 11.716612 11.598616 13.442134 -20.436319 -10.918104 -2.615488 -3.802564 -31.922433 5.375074 13.522169 16.188952 -0.201633 -31.027177 12.477854 -10.591014 21.676423 19.094910 20.417375 6.984414 0.410825 -10.995798 6.980087 38.570077 -11.916680 16.374907 -12.000300 -18.522962 26.503626 -8.359813 17.985501 1.693648 6.192419 5.430736 -19.258948 -1.873463 26.132192 11.215405 9.376930 20.495741 -0.574302 3.141543 -30.797180 -27.694301 -6.149410 13.276468 4.223822 41.751595 -18.666209 -9.584166 -4.459573 17.479561 -7.221511 -9.926524 0.167170 -4.032572 6.330789 -45.374339 -31.163734 29.143751 23.952860 0.635979 -2.161038 22.010414 5.233624 -1.699259 -13.495736 -13.558312 15.046751 1.242865 6.323379 4.301421 -0.114371 -24.189834 -3.681902 1.063281 5.136979 16.511082 -16.653299 -12.323132 -1.962289 -26.949065 -16.829445 7.078084 -21.987130 -14.299961 -0.830471 1.893796 -1.017812 2.774742 -2.807694 -9.304415 9.056818 -15.224199 -7.656181 7.493089 12.605709 5.313335 29.034460 23.068245 1.259130 9.797239 7.984485 -10.211704 53.010144 -12.159532 -5.935980 -0.275449 18.120677 -1.896745 8.903648 9.791251 -5.883400 -15.458634 -22.376572 15.923353 -2.572368 8.812621 -28.342698 -13.513835 -21.179903 -6.358813 6.687466 29.251541 -1.468112 44.161250 -2.319193 5.729613 -42.674225 1.231650 16.955245 -1.844426 10.336119 14.738836 -17.843388 -25.594851 -3.237397 -7.652580 10.367307 -3.038307 -21.620903 -16.382463 -8.750021 1.334061 -12.048241 9.976596 25.651730 -5.249645 12.239505 4.718724 -5.751442 -3.799161 -6.035112 12.049272 8.949680 -16.247957 25.397778 -6.904189 48.131017 -9.623190 18.507061 -14.628977 6.459352 -4.954815 -7.806756 -7.396539 26.277786 17.028302 7.593868 4.764333 -0.758658 -8.016691 13.875478 --1.158301 5.233857 16.904073 11.817614 -6.893961 -9.879171 -3.673702 -10.511215 5.560360 1.591344 8.035014 -2.042903 3.850136 1.843478 -1.039628 -3.657652 4.736598 1.394711 -0.612383 -3.992176 -4.052702 10.848120 5.792999 -12.216664 1.447409 -11.645479 8.795309 5.516288 5.500078 9.213565 0.302182 0.372281 -0.445620 6.532747 -8.425007 -4.412814 -1.369875 2.966423 -6.086490 -1.049800 3.669316 4.140760 7.467724 0.328182 3.955584 6.116282 5.901263 -0.101772 -7.559415 -1.573763 -4.656211 8.791187 -3.829596 6.257896 -0.062452 3.070972 2.707870 -7.379040 -0.699648 -10.424573 2.507981 3.648973 -4.749877 -0.455992 -9.889985 0.749191 -2.870970 -7.668872 4.146001 -1.444873 5.007748 0.744529 1.157779 -8.043019 -9.161703 5.105938 1.341157 4.728053 4.373047 0.871411 -1.063348 1.471491 -5.566508 -6.682966 1.999863 1.077434 2.215431 1.568832 0.786018 -6.545441 1.838738 -0.686130 -2.515088 7.907153 -3.846292 7.478473 -4.721527 -1.960410 -5.880424 -7.452501 -1.457826 -7.489369 3.781552 6.267586 -3.818714 2.773058 1.393511 3.337834 1.226805 -9.320590 1.033480 -3.125579 0.084223 9.329002 -4.004187 -4.260596 -0.322715 -0.380428 -0.797716 9.125472 -1.425932 3.006940 7.999835 6.358240 2.748579 -7.068983 1.181694 1.573750 2.668806 5.522629 7.497366 -8.166560 -5.286128 -1.096098 -1.176754 -14.124017 1.279205 4.636572 7.179659 0.093632 -10.947824 4.756485 -5.228515 8.334208 5.406604 6.452553 3.802761 -1.337565 -4.546355 4.177861 15.964101 -5.565993 5.757417 -5.451643 -10.335248 10.952969 -1.259756 7.118770 -1.266991 0.345596 3.557153 -7.589660 1.491942 11.929994 2.414976 1.262972 8.944647 -0.827296 -1.415789 -14.523266 -11.742971 0.279368 5.029357 1.332486 18.096916 -7.686783 -4.589800 -2.475536 8.041794 -2.594986 -2.157016 0.480494 -3.216064 3.620157 -19.044051 -14.331418 12.784658 10.499895 0.292651 -1.465233 7.801615 2.052434 -1.011550 -7.530214 -6.092057 4.915765 1.317011 0.438521 -1.141644 0.614720 -9.763164 0.229633 2.307412 2.330216 8.173534 -7.473359 -4.826108 -3.954664 -12.481807 -9.059999 3.979986 -9.939538 -2.266804 1.253876 0.880213 -0.312380 3.477092 -1.330780 -6.128000 1.508531 -4.771546 -2.481927 0.894056 7.080018 0.706562 11.116120 10.264155 0.459347 5.902672 4.672005 -5.923413 25.880311 -6.833922 -0.605455 0.100195 8.275047 -1.789732 4.717532 5.126989 -3.116147 -5.440248 -10.270854 3.855349 -0.411841 2.657442 -15.408552 -5.652963 -9.925759 -3.272770 1.636525 10.089317 0.148597 18.321906 -2.126150 1.581834 -18.504745 0.445199 6.729695 -0.536884 7.973129 6.696874 -9.296908 -12.062972 -1.796394 -4.881448 5.459460 -2.686862 -9.761598 -6.103261 -0.824064 1.459260 -3.529319 4.899752 12.522371 -2.942787 4.926449 0.034459 -1.890929 -2.341917 -4.268424 6.085785 2.691464 -6.701719 9.734941 -1.471810 19.346316 -1.331482 7.560718 -7.228881 0.095049 -0.145662 -4.935398 -4.551846 11.516947 5.641754 3.714853 2.037716 0.886866 -3.852311 6.675592 --95.807089 50.217798 358.025780 157.426402 -157.182362 -273.888009 -94.588656 -423.004150 220.531900 137.678344 333.888059 4.636640 228.565160 -99.940812 -4.857565 -17.760511 196.714003 -55.069058 32.518941 -116.027522 -48.961420 379.471159 58.601826 -74.556684 50.799862 -271.359372 202.415880 82.283786 154.614756 247.216077 71.190543 19.630279 -63.289445 105.544624 -63.446904 74.517312 2.199674 133.129993 -133.248874 -57.990036 62.663664 -99.754359 225.336448 25.389560 225.197753 7.567567 123.978404 -25.492090 -171.373527 -139.078212 -110.298506 146.720317 -160.573913 122.450363 -42.248923 -75.324017 72.392950 -31.726069 -2.666445 -227.270355 22.542149 -79.965185 -144.682350 2.406207 -181.238486 65.705094 -127.705292 -122.326228 -12.610009 -134.331583 129.880777 41.729942 35.312400 -21.952732 -368.132495 65.676161 74.598607 18.468061 148.592568 103.595466 -55.277116 -78.757028 -181.977220 -222.684468 238.594182 144.506356 56.555861 88.772876 -204.679668 -33.524810 -19.073913 26.864622 54.878558 172.976832 -199.243217 73.134484 -1.653535 -103.018275 -78.765002 -281.587774 40.300579 -193.362200 61.850919 110.173529 -82.942559 17.396541 -106.720445 63.182330 -106.709728 -223.013557 94.234435 -145.641983 -56.942191 263.609971 -139.933389 -100.710399 -153.695818 -1.285551 79.545201 163.065079 23.803823 93.280369 203.641418 145.204076 156.834957 -229.313453 -42.549454 158.473605 152.345612 77.627194 53.126898 -142.528545 -129.327106 66.874526 -161.807756 -387.063455 -158.106247 159.642855 229.179912 -38.160417 -163.522866 109.649992 -120.094378 189.467028 262.560223 79.439629 71.984373 79.381847 -200.744449 96.318809 312.863739 -121.525756 168.217484 -84.487641 -158.265159 264.272339 -99.334295 129.246282 -10.913417 3.116044 -31.385929 -157.593962 29.759875 273.915924 46.655973 111.146637 -36.897479 75.137906 -80.093906 -301.558155 -426.307836 -65.556786 306.366061 163.981527 351.506411 -223.341583 -89.937477 25.430696 204.864641 0.128188 -176.474346 86.182044 -136.448971 136.004215 -523.435677 -355.587174 433.718839 328.609028 156.706381 8.968983 143.348881 121.940969 -165.689038 -151.637215 -158.550456 164.152240 18.010234 -249.186009 -77.272951 51.909305 -284.316383 -96.964400 -12.596483 49.032425 91.750245 -87.989864 140.263178 -76.678772 -113.382001 -126.396536 172.007660 -152.476283 -137.502577 -55.465974 2.604860 48.416128 111.892545 -63.738343 -9.564664 55.814133 -173.144328 -44.145550 37.398707 122.413582 41.684049 341.618783 373.667875 -98.915338 71.868365 -30.878223 -156.834469 405.536383 -168.932520 0.693402 -10.201775 131.739926 73.484990 111.402519 217.068143 -107.744342 -143.690308 -270.633447 -24.611455 83.115014 144.919160 -210.646841 -234.096883 -347.776481 23.280709 3.378525 344.316364 -9.730741 473.557949 -133.383438 82.722043 -439.292781 29.256125 147.565055 -30.658943 207.206349 84.230926 -186.178404 -181.635348 -79.473825 -225.680286 -43.444550 -28.900097 -148.569800 -154.074351 -141.157615 153.286886 -184.864108 49.652949 132.835328 -37.782103 243.362127 29.411463 -27.492662 -182.716936 64.786313 150.410285 47.626903 -153.393627 236.542712 23.237234 509.757922 -70.929410 150.274317 -121.550912 157.289375 -103.621961 -237.766132 -107.438985 304.933319 292.399977 89.805829 -5.765107 6.585569 -29.987890 198.500235 --6.767443 8.325142 36.704473 26.205593 -19.505909 -26.733363 -8.945508 -21.593149 11.374997 5.020593 20.930773 -2.271181 7.052670 7.584928 0.600954 -8.798877 9.817607 1.640471 -4.198989 -8.851166 -13.138648 19.162597 14.290565 -27.113330 3.257652 -22.125066 17.502433 13.501405 5.799561 16.439388 1.375570 1.691181 -3.633173 12.789625 -18.130517 -5.762626 -2.165435 5.599122 -9.611065 -4.908575 11.488672 5.512544 17.641512 0.280111 13.070287 11.548372 16.006694 -1.060140 -21.759198 -5.808976 -11.714799 20.751871 -8.725943 13.221258 1.854510 12.384434 6.288064 -19.729826 -3.176301 -28.766972 7.170436 6.690375 -13.507802 -1.915033 -19.770110 2.311085 -3.178413 -15.660385 10.040120 -7.040961 11.321557 -3.258581 1.120751 -14.774097 -18.282993 7.624108 0.341002 8.239005 8.220082 3.675905 -7.145197 1.936484 -12.256148 -12.557782 2.579857 -0.267978 2.704949 2.454583 -1.241430 -10.189126 4.198998 -2.620740 -7.426828 17.241053 -14.379229 16.172914 -2.630961 -5.593293 -16.185540 -13.870877 -0.844650 -15.495581 7.832461 16.434688 -10.331361 4.506657 -1.738399 6.685391 -1.665836 -22.306155 2.376826 -8.157033 0.146416 15.370161 -12.578098 -7.749383 2.361734 -1.999441 0.581561 18.537043 -3.840440 6.008031 17.226941 13.217090 6.275155 -14.835471 3.422796 3.677228 10.991257 11.574519 13.812305 -17.623386 -9.170852 -0.106937 -5.537735 -31.688184 2.670644 13.664511 17.628661 4.428947 -27.245332 8.853623 -10.152023 20.109340 11.507762 19.629108 5.889575 -1.797947 -11.598017 4.849827 32.897336 -11.259724 15.660796 -7.707227 -21.685839 24.442179 -5.317019 16.366345 2.148000 2.267096 6.633048 -16.839399 -0.856154 23.576484 9.153206 3.180102 17.338861 -0.403475 -5.196087 -30.404459 -28.032341 -1.113119 11.834588 5.858645 38.728333 -20.444086 -12.571102 -7.063951 20.672783 -8.684311 -8.978719 0.792138 -5.191748 7.429769 -42.812550 -30.170151 27.883064 25.316570 1.443460 -1.731469 23.491868 1.124290 -3.566986 -15.798088 -15.294773 11.177847 4.314644 7.129231 2.921878 -0.568151 -25.157235 0.375250 1.373584 5.269471 15.633981 -16.567633 -9.255615 -5.815838 -24.086025 -17.281791 5.139718 -20.331528 -8.187143 1.356521 2.753107 -0.750547 4.919197 -3.512661 -13.904799 2.227776 -14.420574 -4.791751 4.729549 13.665506 5.392533 33.649910 23.742378 -0.193420 15.145530 6.493663 -11.511521 57.335813 -17.191587 -2.626416 -0.921273 19.499850 -2.275938 6.996378 11.830278 -6.230820 -11.482678 -19.304072 10.226349 -3.025468 8.030648 -34.003601 -15.633799 -26.728849 -5.851332 4.076801 24.613122 -1.923230 39.314343 -3.001916 4.522901 -43.600687 1.045055 17.074463 -2.132889 12.944014 13.196514 -19.961759 -31.017932 -1.624158 -8.958826 12.352479 -3.019034 -19.919562 -12.603827 -5.713944 0.836724 -9.163079 8.931127 26.247998 -8.071774 12.030059 4.310028 -4.847624 -1.466680 -8.840995 13.166021 6.638665 -14.855263 26.806334 -2.782236 49.300628 -2.457395 17.384339 -12.774301 4.247688 -2.550503 -9.349164 -8.992369 22.455136 16.648847 8.502055 2.868855 3.665321 -11.166643 11.922876 --3.101178 4.554311 20.604150 13.225969 -10.090759 -12.141964 -4.926331 -12.233024 7.234034 2.744262 11.682197 -1.009013 4.327443 2.660678 -0.098746 -4.373388 4.872867 0.540039 -2.698948 -4.958827 -5.546067 11.467261 9.319410 -14.960026 2.497663 -13.338513 8.167342 6.107384 5.313539 9.988970 -0.011202 0.459779 -1.707563 7.290270 -9.739752 -3.405514 -1.475722 2.844877 -6.527611 -2.376571 6.064016 3.310208 8.942466 0.210954 7.380445 5.396230 7.098705 -1.099083 -11.416363 -3.196107 -5.390666 12.076019 -5.278921 7.689213 1.279530 6.710445 1.263212 -10.016528 -1.875590 -16.058534 3.607485 3.617477 -5.993586 -0.839746 -10.423868 1.407545 -2.598370 -8.218493 5.425493 -4.865436 6.527688 -0.712346 0.971576 -8.190347 -9.449293 4.778405 1.318369 4.893411 4.864192 2.283360 -2.839128 0.837639 -5.717724 -7.212634 1.978828 0.180011 1.438090 1.423507 -0.304919 -5.738143 3.178628 -1.172164 -3.695031 9.334396 -9.343850 8.284533 -2.879304 -3.393575 -7.541436 -7.626542 -1.145875 -8.994529 4.516573 8.294431 -5.692083 3.225028 0.241164 4.550619 0.443474 -12.094906 0.940217 -2.749277 -0.748704 9.989884 -6.942673 -4.489287 1.141539 -0.241564 -0.977397 10.226239 -1.961703 4.062762 9.905749 7.528880 4.268866 -8.174929 2.455429 2.346850 5.498362 6.650602 7.902007 -9.065753 -5.379022 0.530138 -2.148178 -17.874531 0.465265 6.540122 10.195722 3.130699 -14.358886 4.117531 -5.404114 10.908290 6.489644 8.606393 3.880806 -1.453545 -6.844136 3.483588 19.234928 -6.882848 8.422158 -4.305102 -12.405107 13.377534 -3.681274 9.220263 -0.034206 1.143046 4.646408 -10.060624 -0.249699 13.830655 3.978919 1.980811 7.576621 -0.300559 -2.579006 -18.052032 -15.621382 -1.863432 5.510631 2.715920 20.672941 -9.815972 -6.172838 -4.190989 12.293959 -4.441862 -4.311489 0.557866 -3.905408 4.333565 -22.689723 -16.852662 16.202945 16.323200 1.576218 -0.272344 12.432823 1.930663 -2.080270 -8.060583 -8.060565 5.723627 3.181285 2.374676 -0.561983 -0.492876 -12.984835 -0.396131 1.748357 2.570118 7.660835 -8.076200 -4.174480 -1.033125 -13.643367 -8.563613 3.748282 -12.225814 -3.770018 0.583331 1.559618 -0.189465 3.438877 -2.948270 -7.688795 1.812955 -7.561830 -2.221328 2.057226 8.517393 2.171960 15.742563 12.757006 -0.203389 7.596874 3.562989 -7.401844 30.087668 -9.629839 -1.501229 -0.745348 9.425594 -1.654452 4.590502 5.862325 -3.874195 -6.010806 -10.883207 4.766477 -1.537789 4.083584 -18.181239 -9.776317 -12.637688 -3.402205 2.340383 11.476110 -0.016318 22.536639 -2.521550 2.056476 -25.018716 0.371316 9.489446 -0.995004 8.316530 7.551197 -10.321249 -18.495643 -1.718794 -5.236291 7.298486 -2.280177 -11.345333 -6.497231 -3.598952 4.220316 -5.390082 5.551911 13.681570 -3.236237 7.888482 1.812533 -2.768410 -2.433386 -4.352254 6.474477 3.894201 -7.992831 13.493422 -0.956312 25.281748 -2.116998 9.413239 -8.032997 1.774571 -1.134311 -5.470312 -5.196598 12.915868 9.642122 5.342580 1.072424 0.942064 -6.779051 6.490495 --4.793154 8.558333 34.818906 22.497080 -17.904809 -21.372004 -10.176752 -27.617663 13.513670 6.297558 22.606247 -3.011218 9.267659 3.378676 -0.570130 -6.211232 11.610390 -0.918679 -2.289738 -10.202376 -9.557738 21.824385 11.097283 -22.583078 4.093756 -21.651349 16.237368 11.454930 8.589023 15.887593 3.456593 0.726435 -3.853032 13.187225 -15.812517 -3.848207 -0.305974 7.996921 -12.911122 -3.201311 9.782902 6.439379 17.540007 0.104727 13.903630 10.398327 12.013919 -0.224418 -19.586709 -5.555429 -8.104272 19.666968 -10.186655 12.763965 1.075749 6.971722 4.058976 -16.867881 -3.265545 -21.642418 4.667260 5.138915 -11.661356 -0.551783 -17.407341 2.502955 -3.845959 -14.475713 8.493286 -6.497415 11.535401 -1.360434 -0.108306 -12.024317 -18.646306 8.108618 4.086008 7.704394 10.303328 3.218926 -1.692859 0.272374 -11.597662 -14.486120 7.336735 4.284861 4.781330 3.439383 -2.445011 -8.750395 4.332305 -1.564168 -2.285087 17.001251 -13.121502 11.947481 -6.003743 -7.857180 -14.097079 -14.367272 0.465418 -15.644837 9.868945 13.049637 -11.362883 5.293484 0.043825 7.846716 -1.364077 -19.919912 1.537509 -7.772923 1.759187 21.135821 -10.506970 -10.746707 -2.308996 -2.368302 -0.632416 16.925811 0.303496 5.764366 18.866323 14.281650 8.393370 -17.047828 -0.606316 4.077131 8.999880 12.198066 13.464768 -16.443387 -10.631871 0.665924 -6.714083 -30.888467 -2.109880 7.892115 17.481554 0.237523 -21.616213 8.047498 -11.224935 18.088629 12.200412 15.097253 6.978877 -0.886846 -13.018746 6.687995 30.099776 -10.406702 14.198807 -8.094132 -19.388536 19.030395 -3.988292 14.299633 1.413746 -0.250516 4.129415 -16.684063 0.983642 23.432743 5.653100 4.576326 10.253144 1.757539 -5.974067 -28.114179 -29.475650 -0.505739 13.343720 5.743415 34.829718 -18.451422 -12.526061 -4.556166 20.557810 -5.466187 -8.620020 3.408865 -7.872922 9.662069 -36.391824 -28.763692 28.793573 25.989791 5.432207 -2.885525 19.467340 1.925176 -8.554692 -15.356158 -14.064236 12.380758 5.548495 -1.050984 -0.968811 1.365294 -21.186646 -2.205612 2.667032 6.433451 12.259893 -13.416782 -3.922297 -3.698857 -21.294122 -13.939726 9.239585 -18.050442 -6.061534 1.083599 1.222359 -0.158141 8.005250 -5.961072 -12.236944 2.164430 -13.148274 -3.755170 4.257876 15.196154 2.314877 27.016851 23.668648 -2.468767 15.345746 4.937287 -12.862497 47.419321 -15.245742 -0.451593 -0.668963 15.580129 -1.968235 6.922903 13.210144 -7.728582 -12.264971 -20.540496 5.170746 -0.061632 9.437823 -28.842317 -14.776036 -23.973883 -4.370129 2.650600 22.829726 -0.096132 38.752393 -4.962180 5.194613 -40.140242 1.121643 15.402312 -2.010085 14.837514 12.013975 -18.619232 -29.180043 -3.381613 -14.111070 6.080566 -3.236945 -17.552733 -14.356359 -7.077066 8.960556 -8.843570 7.402417 24.503122 -6.434621 12.240021 0.963146 -4.741094 -3.673055 -7.666832 12.888335 4.915580 -15.980795 22.771426 -1.295997 47.883526 -2.421384 16.487803 -13.393503 3.276641 -2.498477 -11.702567 -10.258481 24.039296 17.426116 9.040414 1.395170 1.529381 -9.727518 12.944290 --3.595060 7.406028 30.686810 20.908343 -17.341238 -24.185865 -9.036685 -24.950059 13.173705 5.513992 19.385651 -2.621775 8.878906 1.217653 -1.799533 -5.326020 10.075659 -0.493797 -2.751166 -9.288621 -14.242300 23.646483 9.761179 -18.729933 4.373660 -22.561922 16.843320 11.042248 8.752709 16.362442 1.840429 0.906808 -3.036965 11.500217 -13.993562 -2.152970 -2.816664 6.678172 -10.909399 -2.431552 9.968200 1.410888 18.912372 -0.143016 11.698734 9.318211 11.508779 -0.270701 -18.788255 -6.597232 -8.702396 15.789390 -8.206087 11.894536 -0.345342 6.159046 6.401045 -14.681656 -2.354634 -17.818448 3.026054 2.675934 -12.129566 -0.620377 -17.915210 1.902622 -5.645809 -15.109339 7.667631 -8.459699 9.992020 -0.356471 -0.956153 -11.795183 -19.788918 7.170357 4.975186 6.619511 8.467883 6.093037 -2.871910 0.434540 -14.609393 -13.470055 7.250632 3.718147 4.961083 3.779474 -4.726514 -10.910170 4.255615 -0.725021 -0.468464 15.066338 -12.387479 10.150227 -5.303903 -7.408117 -15.006692 -17.667668 0.447964 -13.063689 8.478713 11.483279 -10.801752 4.344655 1.962966 5.682358 -0.293443 -20.179561 1.105431 -9.767496 1.995142 19.948018 -8.740359 -9.866097 -3.970267 -2.847480 -1.243594 15.512417 -0.705874 3.698570 19.312776 11.825981 8.725477 -15.251018 -0.598979 3.963972 8.154386 8.857023 11.687837 -14.605192 -9.247243 0.911584 -6.447558 -31.019659 -3.955498 8.836259 16.513255 0.044918 -18.692708 9.924560 -9.615715 15.981875 11.377475 11.682746 6.630315 -0.804835 -12.193117 6.634845 29.453812 -9.313207 12.414870 -11.087696 -21.505041 23.037391 -3.318581 12.905600 1.048026 -0.542804 2.374937 -14.410094 4.421426 21.462879 2.052439 2.590836 10.964711 1.545865 -5.228248 -25.739955 -28.754573 0.558730 13.811204 8.824063 36.012143 -19.407004 -9.029493 -4.383358 18.927612 -4.925230 -7.543983 3.648754 -8.175373 8.334864 -38.484054 -28.999677 28.498844 24.450567 5.071281 -0.372730 18.225211 2.298432 -5.976301 -14.703365 -15.185339 10.986197 7.178627 -2.716786 -1.178052 1.019416 -21.042695 -1.508509 1.199742 5.323827 13.537745 -14.694932 -2.706952 -10.825288 -19.899492 -16.178334 9.316878 -17.799395 -4.136981 1.604182 1.126697 -1.748568 8.515347 -2.103152 -10.470866 -1.041380 -10.666598 -2.073093 3.315456 12.417058 1.546688 26.864894 25.739138 -4.616684 13.332688 3.765953 -10.287430 46.560528 -16.649477 -0.618068 -0.625194 17.430200 -0.571815 7.932447 14.024723 -6.641768 -8.857445 -18.065097 6.385405 0.656173 5.832473 -29.381537 -13.754864 -27.913475 -5.134830 0.637198 23.502316 0.769199 35.860656 -5.619435 4.504850 -39.208566 1.374352 13.567591 -0.504217 15.410765 9.790108 -18.009089 -24.319977 -3.040400 -13.287900 6.883557 -3.316994 -17.136452 -12.770464 -5.329559 5.245943 -8.952949 7.654174 22.648226 -6.569182 11.201148 0.438541 -3.413252 -6.105883 -6.550339 12.949567 4.079427 -11.654521 21.130385 -0.529394 41.777659 -1.215940 15.410785 -11.218255 5.543964 -2.276363 -15.046545 -9.433954 20.799621 14.428833 6.431967 1.989409 1.977197 -6.994649 12.858745 --25.930411 18.934866 155.484463 90.668036 -21.533622 -66.227649 -41.849404 -82.865022 69.399493 20.346891 99.048126 -0.901562 41.633711 13.992589 -4.436108 -45.021970 32.773863 -29.175613 -9.252630 -31.014329 0.654606 130.121366 76.533098 -104.148926 5.191210 -148.812301 63.434125 32.718561 56.498859 108.584436 -6.462664 5.759622 18.882140 55.486684 -75.556631 -24.278777 -17.818615 22.403382 -31.452253 -25.265941 61.299250 61.245304 69.779359 19.788658 44.259974 33.451965 49.917787 -27.109474 -44.310875 -29.440116 -59.929221 82.214364 -57.644851 39.756056 -20.799983 57.876901 25.165584 -71.403840 -21.622305 -119.683050 21.000801 65.051703 -49.531192 -11.112106 -74.435134 23.270874 -27.657142 -32.257653 31.922271 -38.691183 62.519375 19.155213 19.063680 -73.328804 -84.868152 52.297600 -14.253332 32.285377 34.588658 1.531239 -52.736729 20.608050 -37.415124 -56.682571 38.082353 7.993623 2.026347 11.415686 20.772086 -46.936345 -11.414119 10.238165 -39.530374 71.250418 -51.092099 67.739657 -7.772357 -23.358274 -16.642749 -9.454776 -19.080820 -89.309682 14.656070 85.524795 -30.872871 21.006946 -8.729936 16.710496 -10.240036 -87.244662 16.549763 -6.189574 -32.833832 72.529484 -65.885972 -24.360820 1.848034 14.210780 7.584465 91.981523 -22.361782 44.932477 70.502791 55.069977 20.958034 -67.299400 33.133175 28.459567 54.824146 40.890767 58.483511 -59.969265 -51.769454 -17.174330 5.436692 -139.999282 11.909917 57.478574 72.499942 23.845425 -128.334441 62.995142 -37.834013 89.840991 83.556347 45.965713 41.911449 -4.340030 -61.859666 50.562609 165.934418 -57.816742 68.866734 -63.834474 -97.928839 131.155420 -57.878116 76.330470 -19.164274 26.976895 45.357347 -87.101274 11.924308 115.954599 15.839364 46.283345 64.406238 -9.799423 41.855616 -132.732961 -123.022895 -36.032719 36.306911 24.627670 156.511438 -57.886265 -27.285681 -20.551042 72.881899 -28.149810 -29.936148 -2.068624 -27.189888 26.431087 -212.292831 -130.894029 140.756165 128.442448 3.607982 14.646278 80.664209 48.754194 26.966754 -35.590371 -52.356343 67.288138 32.372917 20.667977 16.157921 -10.893069 -73.826592 -34.332133 9.926896 7.558693 39.452365 -86.829345 -46.504104 -9.609009 -112.430692 -64.945631 41.285502 -115.679999 -47.080942 -7.780544 -0.427356 -16.624101 22.297941 -8.862174 -32.758816 38.038403 -49.666239 -32.770680 16.254883 62.620054 27.227947 65.660070 107.290933 -4.090239 41.526736 42.719754 -45.203526 208.083337 -76.582038 -32.282674 -2.966222 73.621330 0.629133 57.763059 15.416076 -23.391037 -41.574672 -91.494597 81.503341 -0.989366 30.344540 -116.702040 -66.251250 -69.804480 -34.534104 34.416850 102.780269 1.177858 191.241238 -28.570186 11.442616 -178.794910 -0.614623 83.681817 9.454453 65.072809 63.722243 -65.246131 -124.767197 -27.745561 -25.429160 77.170322 -22.625950 -110.725036 -62.021718 -51.596054 52.573482 -72.574232 63.094731 92.044678 -12.979801 58.616452 15.017687 -28.096007 -45.559268 -24.029428 16.095995 53.068887 -55.070853 89.959722 -34.472996 143.097661 -58.420184 85.701543 -83.950592 44.879723 -33.299183 -46.202659 -29.273384 117.399007 73.674397 19.459503 17.936154 -13.735390 -36.961646 56.451035 --2.308686 5.718073 24.657857 16.572119 -10.379024 -15.305630 -5.733528 -16.337536 8.783049 3.159981 13.905994 -1.637724 5.275772 4.685874 -0.827069 -4.947735 5.672618 1.224212 -1.924350 -5.649951 -7.085405 15.277692 9.662556 -16.405153 1.997891 -15.865762 10.182890 7.674311 6.592993 12.552544 0.921222 0.181874 -1.581024 8.200506 -11.731115 -3.573751 -2.513726 3.849559 -7.695373 -2.572576 6.178699 3.760257 11.490668 1.332451 8.479722 6.579134 9.592416 -0.809061 -10.973709 -2.855659 -7.050097 13.646387 -5.868394 8.068052 0.312102 7.048712 2.817167 -10.605504 -1.525193 -17.545196 3.255251 4.537210 -8.137683 -0.803864 -12.704279 1.333001 -4.645772 -9.799294 5.078401 -5.034926 8.036641 -0.619708 0.622656 -10.838352 -13.115774 5.224587 0.134641 5.046568 5.928971 2.834825 -3.939887 1.357858 -8.102280 -8.541976 3.619287 0.824329 1.123862 1.522522 -0.281887 -7.271974 2.249904 -0.901523 -3.241956 11.110916 -9.203862 11.516780 -3.865934 -3.916437 -8.334482 -9.546421 -0.537562 -10.446023 5.437611 8.145842 -5.820632 3.269946 -0.057567 4.248434 -0.115231 -14.249753 1.638633 -3.357196 0.058772 12.208409 -7.732876 -5.979882 0.578294 -1.085708 -1.007339 12.586492 -1.212355 3.636056 10.426413 8.090722 4.795127 -9.822601 1.961251 2.917734 6.032010 7.879311 8.698349 -9.652824 -6.311410 -0.001424 -2.459412 -21.651802 1.826578 8.527390 10.511378 1.432709 -14.978507 4.627672 -6.779755 12.325405 8.902069 11.043593 5.178044 -1.333733 -7.544018 3.855193 23.667835 -6.924758 9.844846 -6.184427 -15.220518 16.316674 -5.070834 11.081919 -0.870754 1.665566 4.655410 -10.541070 0.286865 16.232615 3.839607 1.619544 10.025367 -0.197049 -3.133058 -20.176771 -19.260781 -1.035358 8.091069 4.173589 24.482175 -11.467798 -7.197918 -3.265968 12.353926 -3.901849 -5.069460 1.544820 -4.303438 5.119294 -29.048861 -20.026686 18.943914 17.257629 2.072424 -1.931469 13.278601 2.150052 -2.354568 -10.438530 -9.770721 7.062866 2.847160 1.567737 -0.129229 -0.766175 -14.509645 0.437747 1.295574 3.168289 9.284940 -9.921700 -4.571245 -3.587953 -15.547155 -11.309494 5.563358 -13.916024 -4.738240 0.816389 1.106821 -1.287550 3.460717 -2.445234 -7.754644 2.554702 -9.075062 -2.396822 2.548757 8.450797 1.893143 19.566897 15.242254 -0.527093 9.278047 4.322583 -7.794378 37.050585 -11.483214 -1.121389 -0.416767 11.584507 -2.344332 5.647483 6.990816 -4.416862 -8.910567 -12.044095 5.679137 -0.998939 5.014212 -20.363022 -11.193120 -15.122504 -3.612571 1.762554 14.448154 0.140381 26.768586 -2.998181 3.992893 -28.234336 0.741073 11.048827 -1.027515 10.546740 8.139711 -12.598501 -18.054970 -2.100463 -6.413930 8.417243 -2.302560 -13.528622 -8.127359 -4.116573 2.523157 -6.931558 6.300731 15.449426 -5.291905 8.128608 0.929341 -2.945835 -2.589148 -4.746561 9.037612 3.732121 -10.118929 14.584785 -1.792684 30.021581 -2.133162 11.351192 -8.771169 2.881275 -2.229133 -6.523342 -6.137544 15.688403 11.540591 5.810402 0.792930 1.272660 -5.941935 6.308616 --2.385807 2.840346 14.988788 9.625673 -6.865129 -9.957292 -3.529296 -10.016714 6.884542 2.774556 9.063194 0.077400 5.436251 -0.488023 -0.512260 -2.518039 5.090386 0.176419 -0.650136 -3.792177 -3.711968 12.504424 5.558047 -9.686037 1.592454 -10.510144 6.810804 4.677171 4.768302 9.503059 1.002146 0.944100 -1.351618 4.731165 -6.119668 -1.476368 -1.255355 3.274880 -5.350448 -1.934666 4.003866 2.060716 7.558930 0.272816 5.846911 3.370357 5.120861 -0.723718 -7.114236 -3.193011 -4.809150 6.998699 -3.991446 5.543299 -0.387144 2.961212 2.232439 -5.456822 -0.554620 -11.446294 1.487666 2.073428 -4.784514 -0.441143 -7.492594 1.200319 -1.947306 -6.097432 2.994899 -3.620609 4.913907 0.005564 1.076875 -5.604088 -10.064769 3.240616 1.174736 2.941995 4.518033 2.935503 -2.620993 -0.625240 -5.314980 -6.191939 3.522125 1.386399 1.014004 2.015721 -2.413857 -4.759788 1.599707 -0.739189 -2.588787 7.095155 -5.964549 6.396949 -2.013856 -2.832879 -3.928701 -6.650502 -0.519563 -6.499863 2.125455 5.582069 -2.826260 1.655094 -0.563453 2.545963 -0.739765 -8.018433 2.392590 -3.238032 -1.597539 8.514580 -4.220314 -3.841918 -1.455962 -0.101375 -0.041897 8.920339 -1.160662 2.922543 6.982583 5.435631 3.739025 -7.316060 0.793842 2.778777 4.472505 4.123768 5.099483 -6.378454 -4.846404 0.016323 -2.517730 -13.304323 -1.350778 5.385173 7.670564 0.224975 -9.871762 3.748001 -4.275088 8.456726 6.450737 4.888277 3.199923 0.187810 -5.833615 3.831317 15.314461 -4.851783 5.667201 -3.385102 -9.931067 10.821836 -3.259938 6.626112 -0.994171 0.663506 1.485102 -6.545535 1.149658 10.496712 1.713093 2.453554 3.844453 0.918934 -1.986287 -13.634060 -13.501103 -1.616419 6.461596 3.726290 18.101437 -7.800221 -4.452815 -1.393956 7.286446 -2.775654 -3.716755 0.779437 -3.979220 3.843477 -19.807457 -13.515841 15.837805 11.349216 1.618422 0.289968 7.630050 1.678659 -1.180609 -6.536116 -5.895709 4.658526 2.237246 -1.345104 -0.365879 0.758220 -9.553758 -1.360842 0.893865 1.727626 5.076262 -6.339463 -0.992324 -2.540617 -9.312475 -6.906507 4.196306 -8.569416 -3.903979 -0.223514 0.800130 0.585708 3.171521 -1.509568 -4.207909 0.751445 -5.008945 -1.943294 1.033126 5.090159 1.205597 9.809250 13.791657 -1.079638 4.980964 1.981511 -5.618297 21.991357 -7.691436 -0.990086 -0.642666 7.129234 0.840069 3.667838 5.711864 -3.139717 -4.113402 -8.804803 3.018388 0.639494 3.665108 -14.556350 -7.665087 -10.505279 -1.745368 0.909110 9.668954 -0.467124 18.320277 -3.419734 2.389883 -19.939813 0.708646 7.558359 -0.057709 6.558147 4.786866 -7.705973 -11.690711 -1.857135 -5.062692 3.751093 -1.742943 -8.343541 -4.566830 -3.410192 2.733891 -4.949445 3.785800 10.215115 -3.117095 6.021138 0.626687 -1.737433 -3.067667 -1.722070 4.228751 2.569770 -5.618387 9.007791 -0.776747 17.616171 -1.980957 6.808804 -5.279557 3.734650 -2.040923 -6.288187 -3.957184 10.339224 7.301018 3.397280 1.129381 0.951458 -3.484789 6.288854 -2.180717 7.382696 20.589654 9.689425 -9.866805 -13.223752 -4.664079 -21.752926 10.682248 6.078474 11.601640 -1.133486 6.758599 -0.036788 -3.064591 1.594945 6.840364 0.920372 -1.809240 -7.364701 -8.477825 14.409189 2.210905 -6.840842 4.773749 -17.826521 11.167153 3.284687 9.254680 8.827857 3.845030 0.686580 -1.913021 8.478568 -5.185651 -0.047596 -0.646360 5.037668 -9.162864 0.595858 4.570303 1.463676 9.749993 4.974732 8.907252 6.165429 5.540522 -0.162630 -7.747448 -2.734543 -5.387469 10.814027 -5.234642 8.920961 -3.181236 2.033162 0.863898 -7.362261 1.466316 -5.842720 0.290108 0.023417 -6.801454 -0.312962 -11.226278 0.945183 -5.242523 -9.498821 0.004094 -2.305608 8.273113 1.016603 -1.054341 -5.955081 -16.337289 3.751451 2.793070 3.820130 9.327706 1.849711 -1.552922 -2.012832 -9.981183 -11.758042 10.094935 6.401104 2.567057 3.104762 -2.833498 -8.843817 -1.085310 -1.569725 2.859761 11.692425 -10.916362 4.769670 -6.079788 -4.809203 -7.134341 -13.607628 0.300883 -9.251178 5.506461 2.162714 -5.208999 4.868225 3.414621 3.996512 1.701781 -8.410376 2.262326 -4.173223 1.294408 15.833228 -2.096785 -9.460645 -2.575674 -2.028757 -2.029073 9.174300 2.387371 1.020992 16.516133 7.128868 7.727581 -8.907564 -1.089307 4.659104 1.689904 6.497403 7.860028 -10.503271 -7.419336 1.943951 -2.590219 -20.191909 -1.280255 3.861940 10.438177 -4.697987 -7.662502 3.998782 -5.955164 6.767890 8.132912 3.844277 5.913281 -0.979215 -7.496233 3.970534 20.713315 -5.715676 6.109998 -9.120407 -8.051129 11.004202 -3.082097 7.228796 -2.020657 -1.353795 1.074858 -8.881277 1.823009 15.102478 -1.147648 -0.365347 5.766314 3.152191 -7.225358 -15.029757 -17.625837 -2.304498 9.169469 3.018529 19.548370 -10.888701 -3.689926 -3.832235 12.008126 -0.687148 -2.586132 4.622792 -6.952839 5.388990 -18.351858 -16.847135 19.544892 17.827571 4.863345 -4.511214 8.805775 3.571634 -7.329353 -12.167506 -7.797194 4.280595 4.984094 -8.225060 -5.952777 2.005659 -13.135819 -2.291043 1.398841 3.110863 8.891984 -4.310861 2.678977 -3.939145 -10.169746 -11.712312 8.122121 -8.864521 -2.671744 0.839388 2.422169 -1.631101 6.601833 -3.453200 -5.823138 2.425793 -5.634346 -0.642534 3.686273 8.944359 0.057876 15.783702 14.771565 -2.616178 8.379206 2.337192 -7.757305 24.531686 -7.815365 0.438581 0.985528 6.845474 -2.700345 6.061913 7.947102 -5.566888 -7.365725 -12.480051 1.906947 -0.652435 2.353764 -9.583641 -6.884937 -14.990569 -2.715886 -2.104771 13.617616 1.449960 22.560096 -3.977900 3.795989 -21.493729 1.318563 9.421575 -2.044051 10.608889 7.599727 -11.235324 -10.437930 -3.578719 -9.646837 -1.971135 -1.908220 -8.139471 -9.039818 -3.525260 4.816785 -6.363702 5.318812 12.840371 -1.293665 8.530957 -5.776860 -0.163396 -6.598098 -0.230077 11.952739 1.955961 -9.267158 9.047633 -0.375015 26.440775 -1.122216 9.483956 -6.983343 -0.977035 -1.896791 -10.229799 -7.880496 14.370979 8.999073 6.628828 0.941986 -0.644245 -2.351045 10.965107 --35.345930 38.472511 185.426227 123.714933 -72.921451 -116.886505 -44.341927 -143.563927 89.039680 40.171404 128.079655 -8.392592 73.586339 -11.809428 -13.260357 -41.354134 72.009755 -5.162962 -6.816980 -50.123375 -31.942852 159.420063 51.412537 -119.841594 19.267836 -139.178387 112.897446 63.761696 56.076923 114.962648 17.828884 25.336055 -3.928532 68.087963 -82.357947 -18.686711 -18.553014 52.078362 -54.819532 -32.357816 63.790548 25.870575 100.405364 14.946488 74.338220 51.337454 68.997205 -15.298667 -84.022754 -40.630812 -58.810696 79.339878 -54.426545 62.965600 -29.037300 20.444018 50.926847 -69.938324 -3.528479 -137.685257 30.797359 27.697825 -71.251551 -8.289045 -103.845776 20.305390 -21.470927 -74.548955 24.651343 -48.581480 58.074075 6.507581 4.549523 -81.113062 -133.366339 48.773472 22.546316 27.694309 62.147842 33.174311 -35.855526 -8.318419 -77.719522 -87.619056 65.961084 32.551926 25.660746 41.826831 -24.367612 -62.630921 2.038949 4.037467 -12.503811 95.491344 -62.767032 66.070303 -6.497247 -39.580455 -54.021771 -67.090104 6.972023 -91.151255 33.165994 81.615604 -54.794222 31.342602 -7.396768 28.364248 -16.409874 -101.926002 21.344022 -67.153284 -3.743137 112.426110 -52.595643 -57.320595 -35.668923 -2.649344 19.475333 104.588898 -21.893975 36.555507 105.023040 65.758926 41.471637 -97.583497 8.952999 48.593000 52.168530 48.962803 56.056335 -87.731942 -61.128556 -4.060714 -37.189967 -169.662667 -23.371198 59.209307 95.345535 -18.804064 -128.317615 89.489615 -56.015509 99.648357 97.824708 59.745725 39.329739 14.751767 -82.033592 43.197581 179.655463 -56.004190 67.506431 -64.109982 -118.680534 140.338860 -23.436145 78.154347 -7.735602 -1.030144 14.597356 -84.869253 32.559244 134.709921 16.125487 31.102253 60.747874 8.349597 -5.281355 -151.948833 -177.907398 -19.813300 85.141417 63.620073 223.550982 -101.949349 -41.358382 -20.478698 91.241902 -24.503287 -43.549849 16.204284 -46.953441 50.067783 -251.271088 -175.695180 180.742301 130.136723 33.402219 1.395577 95.547140 21.384858 -0.838519 -76.132905 -68.717836 73.277756 34.696326 -11.157410 7.208912 11.182172 -122.580200 -32.347129 9.500853 22.029642 67.308094 -89.343688 -9.590108 -64.641945 -106.474147 -93.987514 45.856290 -100.215665 -46.073617 -3.536887 5.075804 -4.148970 43.353467 -14.805894 -44.333404 8.709572 -60.692293 -31.774372 10.532990 69.678358 16.014351 126.722100 157.854700 -28.769175 55.509306 26.412504 -60.291885 267.554960 -83.792687 -13.081730 3.400274 90.573416 23.249213 53.676889 72.733001 -41.227483 -36.481305 -129.332814 48.351992 19.656992 40.947666 -178.039985 -68.516244 -143.202994 -22.522753 8.746714 146.734117 -5.268096 232.680330 -39.945066 16.149864 -223.537572 7.847013 87.441631 -5.560360 85.909061 67.422706 -106.638693 -129.614443 -25.098955 -73.943718 39.477621 -26.385717 -99.304386 -86.506157 -28.243212 34.420567 -77.619148 54.447712 131.316274 -30.570423 67.572446 -4.524425 -15.601065 -45.978626 -29.708230 52.018736 35.741188 -72.046072 107.316708 -20.848123 222.390188 -33.299699 99.577728 -78.097887 64.899737 -33.908948 -92.094743 -54.912722 142.270931 90.822279 32.798647 27.224438 6.287100 -30.644453 96.922263 --0.018936 1.629034 4.076281 2.798440 -2.453063 -2.931244 -0.996046 -3.136890 1.344362 0.358551 2.057833 -0.281584 0.964790 0.747374 -0.171265 -0.618051 1.258387 0.776406 -0.358615 -1.161649 -1.646800 2.444077 1.118976 -2.670060 0.585831 -2.160574 2.040711 1.453473 1.417737 1.962411 0.200397 -0.078350 -0.721857 1.529682 -1.869659 -1.012267 -0.474900 0.852446 -1.914526 -0.126649 0.902943 0.139695 2.073662 0.123902 1.049327 1.368334 1.376667 0.224401 -2.063316 -0.449633 -1.230018 2.293032 -0.908537 1.852827 -0.011339 0.595328 0.432087 -1.404494 -0.006691 -2.046706 0.485467 0.187312 -1.243835 -0.193455 -2.390809 0.033857 -0.975177 -2.244077 0.900232 -0.596171 1.315628 -0.258909 -0.022314 -1.680807 -2.688430 0.699685 0.415642 1.302566 1.274556 0.695004 0.082272 0.087371 -1.623351 -1.748078 0.532827 0.265197 0.603180 0.316382 -0.582109 -1.510008 0.724635 -0.086461 -0.095133 1.855620 -1.533333 1.876856 -1.690426 -0.593159 -1.719862 -2.614519 -0.027639 -1.585422 1.178865 0.717771 -1.076115 0.488477 0.467367 0.856170 0.446333 -2.573940 0.178512 -0.711306 -0.133152 2.617301 -0.771442 -1.307423 0.200988 -0.412479 -0.509495 1.929751 0.264397 0.454876 1.841057 1.585324 1.119473 -1.807481 -0.106021 0.362689 0.548805 1.535275 1.751368 -1.648051 -1.260861 0.221819 -0.721884 -3.815030 0.261373 1.294826 2.061423 0.049090 -1.984404 0.555580 -1.606707 1.607974 1.041174 1.905817 1.045071 -0.411189 -1.244350 0.698383 3.718319 -1.278947 1.615499 -0.914890 -2.264337 2.485928 -0.201004 1.644845 -0.224748 -0.086595 0.675623 -1.673886 -0.051371 2.859887 0.528651 0.129126 1.887204 -0.039298 -1.484801 -3.549662 -3.071473 0.049349 1.916154 0.531312 3.739134 -2.080164 -1.185467 -0.379223 2.403189 -0.791109 -0.812011 0.473350 -0.853106 1.177530 -4.228007 -3.295380 3.087956 2.790402 0.107131 -0.591384 1.893945 0.397368 -1.055099 -2.376539 -1.864214 1.027388 0.332524 -0.346697 -0.676221 0.053694 -2.576313 0.485667 0.740772 0.741546 1.860639 -1.352470 -0.389786 -0.677995 -2.655015 -2.279411 1.218188 -2.253879 -0.279460 0.528650 0.137841 -0.206328 0.896704 -0.437607 -1.680215 0.314704 -1.334536 -0.211658 0.184407 1.495085 -0.027734 3.475131 2.384071 -0.111193 1.634841 0.854008 -1.766722 6.368241 -1.988166 0.204156 -0.062706 2.181074 -0.714244 1.096026 1.650018 -0.922064 -1.694151 -2.509580 0.105238 -0.141987 0.865372 -3.286726 -1.692635 -2.766010 -0.514069 0.118617 2.533619 -0.111969 4.307235 -0.684183 0.767566 -4.602854 0.259253 1.648721 -0.434472 2.074719 1.412800 -2.181991 -2.913576 -0.402242 -1.498740 0.915760 -0.436694 -2.146976 -1.408006 -0.316101 0.149928 -0.800819 0.794028 2.715474 -1.110920 1.483529 -0.395067 -0.472844 -0.418988 -0.897711 2.141476 0.394580 -1.900487 2.620257 0.050020 5.506773 0.210374 1.866836 -1.368432 -0.303393 0.011547 -1.514397 -1.364432 2.833317 1.711898 1.289373 0.166850 0.489014 -0.916433 1.268782 --1.073112 3.335530 12.529858 8.437342 -6.105731 -8.690613 -3.066699 -7.738295 3.800886 1.369465 6.429463 -1.051220 2.591619 1.722913 -0.482479 -2.632530 3.383234 0.490742 -0.498038 -2.941870 -5.168954 7.740842 4.302887 -8.511326 1.277258 -9.035301 7.128968 4.224391 3.286436 6.759173 0.573685 0.394011 -0.668188 4.642658 -5.869517 -2.483269 -0.892515 2.282634 -3.839352 -0.507316 3.443338 2.078959 6.482573 0.498261 3.212622 4.478311 4.037490 -0.034309 -6.705535 -1.494207 -3.890483 6.400592 -3.070641 4.235120 -0.226611 3.578654 2.414064 -5.895533 -0.900534 -8.405040 1.550074 2.154029 -4.307534 -0.363296 -7.142244 0.524887 -2.465481 -5.383908 3.154946 -1.360083 3.703975 0.057058 0.494140 -5.192967 -7.003588 3.360470 0.910600 3.270381 3.221969 0.949048 -1.943447 1.259806 -4.842131 -4.803084 1.705040 0.523996 1.653387 0.796292 -0.083317 -4.440473 1.068858 -0.265362 -1.584681 5.768900 -3.535095 4.962107 -2.798190 -1.874880 -5.238341 -5.858571 -0.638218 -5.229407 2.752608 5.560922 -3.384238 1.441748 -0.146250 2.320637 0.209417 -7.379286 0.804091 -3.647369 -0.176919 6.465752 -3.304547 -3.127991 -0.141793 -0.687522 -0.127282 6.663136 -1.406372 1.642595 5.799495 4.589161 2.142801 -4.935471 1.080042 0.915488 2.439787 3.750773 5.001826 -5.665367 -3.489071 -0.651399 -1.418467 -11.295513 0.633732 3.160231 5.095235 0.523419 -8.354909 3.321952 -3.982147 6.657577 4.041807 5.578095 2.624605 -0.728063 -3.717751 2.757796 11.885665 -3.919183 4.826667 -3.791521 -7.851092 8.753478 -1.424001 5.835824 -0.273645 0.115046 2.335309 -5.502547 0.554988 8.494361 1.849272 0.937998 6.086052 -0.351929 -0.677733 -9.941785 -9.405089 0.973230 4.978909 1.800708 14.189818 -6.752714 -3.509563 -1.813040 6.679239 -2.328492 -2.188754 0.446753 -1.894489 2.676685 -15.586979 -11.180004 9.873419 8.013075 0.436784 -0.820401 6.793948 1.248372 -0.916739 -5.789414 -5.460474 3.730272 1.443469 1.167027 -0.364614 0.235582 -7.639537 0.242646 1.293888 1.710656 6.070561 -5.795368 -3.739353 -3.079696 -8.867961 -5.942405 2.853227 -7.743345 -2.264738 0.949499 0.328514 -0.517830 2.387291 -0.515065 -4.368907 0.686935 -4.147501 -1.698704 1.085537 4.994961 0.786453 10.133473 8.957347 -0.131432 4.464355 3.020348 -3.879699 19.164706 -5.495056 -0.569106 0.148554 6.296303 -0.966098 2.991609 4.780277 -2.205336 -4.167920 -7.140181 3.721194 -0.522940 2.193342 -11.617769 -4.713542 -9.103412 -2.202696 1.307330 8.376930 -0.067550 13.786422 -0.979176 1.143298 -14.071588 0.285263 5.869560 -0.343958 5.572135 4.446109 -6.578495 -9.304863 -1.322448 -3.770854 4.796033 -1.366843 -7.431686 -4.555212 -1.319735 0.505313 -2.901229 3.929713 9.292792 -2.701335 3.734638 0.415525 -1.591779 -1.524159 -3.030407 4.709211 1.988922 -4.745841 8.538065 -1.041980 15.683462 -1.329939 5.464402 -4.792845 1.207005 -0.294928 -3.453728 -3.115128 8.104663 4.624575 2.853975 1.353910 1.187533 -2.954934 4.613055 --2.929785 9.106504 77.176543 45.464513 -14.184978 -35.825955 -8.607406 -40.054225 6.056578 2.796572 35.711795 -19.671690 3.489096 19.635609 -0.683460 -19.802737 9.267613 9.742900 -3.765756 -9.659368 -32.830484 29.003101 25.351615 -16.562861 5.468473 -56.056405 21.268581 19.451871 1.477530 41.354657 2.499497 0.362831 -5.509867 10.540041 -30.261050 16.178534 -7.168969 -9.256496 -8.695115 0.600458 9.474394 3.316444 23.215391 -2.718326 14.136346 13.236190 36.694426 2.337683 -29.361188 -4.137496 -26.675001 46.902468 -5.848623 -3.302727 3.744975 24.065203 12.894439 -31.204149 -2.224564 -49.157728 2.817923 23.443111 -16.344704 0.248013 -22.225811 0.537170 -23.554565 -22.959148 25.103420 -5.066982 6.614076 -4.117950 -4.121329 -6.285673 -16.257922 5.891405 7.497159 7.470251 6.192776 -4.499514 -14.759466 15.621999 -19.844026 -9.830655 19.160850 -21.438660 7.731699 0.809753 1.636310 4.059914 8.751958 -2.311030 -0.491233 13.211949 -28.317783 14.530577 -2.234885 -8.132408 -28.475929 -15.042952 1.039491 -8.896021 10.650585 42.775338 -29.805479 4.172657 -26.061324 6.401296 -17.846659 -39.304184 -3.018079 -17.088969 8.144437 16.561901 -40.323088 -10.944849 -2.518204 -5.383182 -1.648605 30.108261 -17.582409 0.965376 17.862164 11.598612 6.601395 -12.645257 14.438377 -2.718247 24.297352 9.221354 13.064599 -14.591772 -7.692175 -13.606968 -28.121043 -63.647968 11.906254 19.879453 15.221895 28.747499 -48.391675 7.138505 -10.123013 50.582444 22.385568 22.217679 3.467521 -3.015005 -9.541238 4.034545 57.315347 -21.866724 44.581744 -22.005835 -43.695133 39.571387 -14.804034 25.961277 5.486126 -2.483227 29.104640 -11.734271 1.123439 35.299139 24.194415 -8.584771 33.925965 1.444013 15.604146 -54.235027 -60.110045 13.633702 17.622322 -2.101110 59.540739 -26.380005 -29.773897 -4.976853 33.464984 -20.238766 -26.762973 2.206434 -4.999861 7.049042 -75.249733 -49.169596 57.107033 47.207272 -11.696888 -1.704114 39.774905 10.771217 -11.724635 -6.458482 -21.723995 9.185739 4.842005 -20.304895 -1.421842 -12.737699 -30.011614 11.349736 -18.049939 7.852130 21.730940 -29.270986 -17.918620 -22.125822 -50.910378 -2.003910 19.758985 -60.065910 -20.735026 4.487200 0.210359 0.783821 7.340959 -14.518236 -13.809951 1.459813 -49.229786 -0.912092 3.850064 13.020824 20.384956 81.337430 62.512823 -2.905110 33.196475 17.268144 -8.788236 72.086463 -20.058387 2.566904 -0.442733 37.624526 -3.343804 18.419441 23.133835 -5.415730 -43.329436 -14.629009 19.954552 -3.095856 5.238368 -38.685468 -46.381569 -50.114596 -18.374243 0.608205 35.156841 0.260392 77.786891 0.141657 2.968658 -73.729403 -0.136049 42.007439 -2.018256 32.763622 7.989861 -24.055999 -52.024210 0.046520 -13.058886 39.100957 -1.624839 -41.955037 -12.039977 -26.684059 20.386552 -0.881804 35.875926 26.109485 -12.911869 25.048443 37.305540 -4.005713 1.113516 7.848459 24.948743 15.500507 -10.778309 42.163133 2.674359 95.560816 -4.849399 11.621943 -21.882079 15.222131 3.848447 4.759106 -9.451995 15.077850 50.398362 7.556735 0.660471 11.914180 -7.601402 10.646585 --3.651748 5.690845 22.235055 13.910155 -12.557140 -15.483251 -6.171965 -13.210119 5.363582 2.799742 12.004442 -3.045819 2.253895 6.430771 0.507751 -5.139177 4.329043 0.932901 -3.161445 -5.400938 -8.913675 7.339136 8.354498 -15.330675 2.549606 -13.017342 9.072635 7.865092 2.014434 7.504433 0.566172 0.175306 -3.415338 7.647970 -10.830189 -3.007095 0.996797 2.495361 -5.583567 -1.334097 6.299682 4.084150 9.034510 -1.231792 8.480984 8.010687 7.428260 -0.154693 -14.622514 -3.035962 -4.585302 13.450668 -4.450053 7.615546 4.007118 8.644568 1.201101 -13.641104 -2.783630 -15.837851 3.991369 3.813241 -6.910397 -0.517532 -10.767319 1.005924 -1.148236 -9.270680 7.788425 -4.264915 6.088265 -3.734311 -0.476384 -6.864178 -7.062076 4.639308 1.367115 5.642249 3.970181 0.386199 -2.028151 2.048342 -5.919037 -6.678085 -0.796967 0.032279 2.098752 0.165467 -0.033879 -4.908617 4.387897 -2.760269 -3.989842 10.563480 -8.923607 8.466572 -3.416961 -4.199284 -12.028612 -8.962697 -0.133283 -8.558196 6.210421 9.347117 -7.923850 2.800019 0.675990 5.228700 0.562543 -13.280912 0.171603 -4.389088 3.077885 9.420969 -7.481038 -4.891521 1.834907 -2.516596 -1.116224 10.117366 -1.856406 2.712593 10.238364 8.648800 4.328000 -8.531872 0.376239 0.704654 5.720193 7.818845 8.518360 -11.821919 -4.424916 0.007646 -3.763639 -18.391875 1.447169 4.646225 10.317118 3.564553 -15.260889 2.695674 -6.020699 12.104402 3.955269 12.580039 2.349408 -2.074796 -6.767690 2.363699 18.589914 -6.524351 9.207162 -3.427087 -12.839328 11.078649 -1.712836 9.752051 3.170637 1.251391 4.523481 -10.358695 -1.754358 13.332102 5.676809 2.211728 9.403554 -0.010256 -4.317311 -18.121689 -15.987176 0.794280 6.071022 0.965238 21.103940 -12.180190 -9.224903 -4.995960 15.636853 -5.472487 -5.015527 0.449593 -2.868822 4.437965 -20.135335 -17.428462 14.068789 16.992807 0.850603 -1.675170 14.919223 -0.115551 -4.912575 -8.957100 -9.176752 6.000189 2.260633 5.117379 0.660732 -1.111807 -13.406736 1.164547 0.587035 3.972090 8.414669 -7.920734 -5.853435 0.020013 -14.087337 -9.518681 2.431581 -11.681095 -3.056276 1.307048 2.158249 -0.379234 3.137978 -4.086771 -9.891772 1.297497 -8.449349 -0.907399 4.178256 7.994463 2.697379 20.416604 10.952411 0.642080 10.916829 3.016026 -6.314274 32.678351 -9.433431 -0.439774 -0.613401 10.658088 -3.407908 3.297017 7.180435 -3.777509 -7.661030 -10.205806 4.137393 -3.916563 5.239062 -18.619465 -10.588444 -15.570084 -3.897954 3.239281 12.263046 -0.301756 21.670378 0.404162 3.262099 -25.068537 0.168981 10.044555 -2.307942 7.095772 7.143001 -11.663129 -21.678040 0.056672 -5.568728 5.664425 -1.707484 -11.180289 -7.021666 -3.780225 2.087638 -2.532796 4.608343 15.149749 -3.287724 5.698361 3.365508 -3.204680 0.644101 -6.587068 8.571010 2.555811 -9.682889 15.726477 -0.118692 30.751425 -0.775326 9.750503 -6.532530 0.312418 0.312884 -3.567956 -5.020471 11.904336 9.286947 6.507819 -0.789465 2.268333 -8.455810 5.637941 --8.523266 7.156518 42.450895 30.341232 -15.985819 -21.490687 -11.070404 -20.374894 15.699090 4.715410 23.188449 -1.505381 8.178939 4.459128 -1.696092 -12.356136 10.081300 -2.668553 -4.861431 -9.644131 -6.521015 29.682720 21.700068 -35.752949 3.012344 -32.650058 19.360599 12.181373 11.024144 26.345374 -1.731628 1.737289 1.229577 16.837263 -22.581105 -8.762725 -4.053283 6.841145 -10.659376 -5.656813 16.413825 13.447235 19.687319 0.501452 12.893012 12.978647 14.655515 -4.562085 -21.538408 -6.820211 -12.460061 21.387844 -13.239377 15.453540 -1.975945 15.113481 6.380986 -21.839667 -5.334677 -36.216310 7.028368 13.491006 -12.009413 -3.259855 -21.493413 3.388164 -2.521334 -15.874204 11.768234 -9.200069 14.111291 2.154484 3.369202 -21.227086 -18.648888 13.474032 1.749258 11.347563 9.253495 2.624249 -9.140074 3.493699 -10.759065 -14.771010 3.406082 -1.040844 3.562682 4.213811 5.114968 -12.988816 4.186462 0.775710 -10.412505 20.220478 -12.739515 17.578876 -3.955107 -6.481094 -11.416583 -7.456522 -4.289704 -20.894673 7.557565 22.345635 -12.707286 7.653196 0.179935 7.817946 -0.460293 -24.008481 2.834502 -5.909911 -3.807307 19.140470 -14.140448 -8.805221 2.188880 1.485922 0.695599 23.938702 -7.331186 9.559680 20.312710 15.662050 7.165320 -19.104292 6.891772 3.716859 12.938384 12.649801 17.867455 -17.394074 -12.866318 -3.667744 -1.814350 -36.032666 2.423969 13.225023 20.578745 5.397944 -34.319461 15.183685 -12.078102 25.740851 16.409529 16.179698 9.509837 -2.327033 -16.066954 10.672116 43.395138 -14.492095 17.170652 -13.948707 -28.361043 33.480949 -7.857842 20.726410 -2.589335 3.097807 11.054377 -22.927479 3.259366 30.754400 6.413941 7.458667 18.765124 -2.696397 4.071310 -37.981144 -33.178992 -5.875994 10.037975 7.608173 47.213638 -18.968326 -11.089090 -8.388211 20.736652 -8.757819 -7.220778 -1.113030 -6.872451 8.622229 -55.787544 -36.881413 37.172183 32.827627 1.401209 3.064512 24.868427 5.125120 4.848018 -13.844366 -14.253389 14.862099 8.653509 9.585109 2.983716 -0.518881 -22.821270 -5.318687 4.598487 3.916188 14.399591 -23.284179 -14.683930 -4.579148 -31.323962 -18.962867 7.145007 -30.152979 -9.454015 1.956847 2.191130 -1.616378 6.980105 -2.542908 -14.557348 3.501786 -13.422185 -7.525280 2.600460 18.829232 5.971294 22.386790 29.388300 -1.541062 14.884965 11.246182 -13.550275 65.079799 -21.383518 -5.482129 0.287461 22.023102 -0.426874 11.776328 10.019471 -7.182145 -7.322110 -24.592380 17.713526 -0.805647 7.858672 -43.996704 -17.304182 -23.378840 -7.954522 7.032024 24.559759 -1.180371 49.681937 -5.567484 2.829348 -53.286395 -0.108996 21.842628 1.903331 17.252727 17.725481 -21.263228 -40.768244 -5.019743 -9.184995 21.642261 -6.685449 -26.022191 -15.495756 -6.390099 8.381617 -13.960219 15.599618 31.847573 -7.312104 14.748408 3.298790 -6.330420 -6.611053 -12.363128 7.746943 11.593140 -14.925990 26.223716 -5.881658 46.199294 -8.486510 21.739120 -19.788632 8.349325 -4.112194 -12.484106 -10.165526 29.540250 16.885364 7.826761 6.108008 -0.117587 -12.475350 16.730203 --11.342907 14.824720 72.243112 42.970201 -32.112645 -40.760004 -18.369323 -41.082977 18.587483 12.187584 42.793027 -7.036518 10.710216 20.317656 2.771637 -15.006213 12.212658 -2.590000 -4.482600 -16.055193 -20.538556 34.562426 34.671809 -46.391441 4.765900 -45.248604 30.626243 21.940381 14.353434 31.015453 0.126511 0.964166 -3.849057 24.876440 -33.998882 -9.029598 -8.159066 13.881508 -13.628047 -2.162867 22.214959 15.030640 24.699272 -0.952698 24.832253 24.978347 31.004126 -5.297636 -38.480847 -11.438005 -19.341425 39.590679 -23.065205 20.759503 1.668005 25.530853 -0.213372 -37.346778 -10.776383 -53.773272 13.709479 16.019993 -27.647765 0.388337 -37.766860 7.562573 -11.831458 -25.546763 19.401241 -9.976048 24.114846 -3.927073 0.022329 -25.630193 -29.826494 16.733651 -0.789856 14.510912 12.356620 -4.636747 -15.174878 9.575617 -19.402671 -24.408608 3.749496 1.407290 4.175190 -4.754774 5.467554 -13.203500 6.159640 -1.495322 -17.482055 37.220137 -29.148944 32.325855 -10.674509 -11.352111 -30.441844 -21.188307 -3.654211 -36.046995 18.711123 33.285096 -22.188892 7.825141 -2.556961 13.808919 0.492163 -47.085386 -4.472102 -6.885350 5.567013 29.611161 -26.216015 -10.173883 4.625479 -2.098317 1.924442 32.929296 -2.702256 13.727005 39.212660 25.811352 10.994803 -29.280996 5.430678 4.871049 17.752241 24.678551 27.277022 -33.104629 -20.353831 -5.187742 -4.656048 -58.401388 7.640609 23.040700 28.952973 5.766625 -49.953399 14.599920 -18.416923 38.463806 26.328549 35.931430 11.873594 -4.519409 -20.296763 10.290773 67.325863 -22.917186 28.124372 -15.224450 -42.114110 48.581030 -14.520080 33.651913 8.854397 11.383220 13.497498 -38.644297 -6.498732 46.818208 16.471729 12.429579 36.158071 -2.158638 0.374557 -56.049623 -46.940611 -4.914146 17.526738 6.325580 65.779542 -34.684224 -18.207514 -9.130067 39.004377 -9.381785 -16.160821 -2.885750 -7.203998 11.857512 -74.964002 -54.711039 42.987418 52.936003 2.426664 -2.482041 43.641298 8.424562 -6.609178 -25.688703 -30.288622 28.041280 2.866251 18.433123 3.850724 -1.340932 -43.362585 1.443289 1.376046 10.827781 26.016395 -31.041909 -25.108206 1.403097 -49.258149 -28.192281 9.616294 -39.902603 -16.341973 -2.103763 4.983811 -1.380265 4.588909 -11.662429 -22.116916 7.395138 -26.855612 -6.470250 14.962468 24.567003 8.243167 57.138432 36.765478 -0.349670 21.282390 11.468583 -18.848480 98.631297 -26.398100 -7.176310 -1.428110 34.576711 -10.997363 14.998666 17.091498 -10.998791 -27.117426 -34.340033 22.525935 -6.567294 15.379892 -53.509236 -28.844546 -42.485338 -11.704546 14.111478 45.787888 1.394179 75.026599 -1.489859 13.437525 -77.672733 1.350307 28.997593 -5.430675 28.161666 25.295318 -33.715877 -56.703920 -6.047437 -11.918136 24.103873 -5.263445 -38.441892 -26.803698 -9.833563 4.718677 -14.129837 17.146491 40.364954 -10.000153 20.747481 12.923087 -11.843734 -2.430631 -15.670562 26.850730 17.023992 -31.906989 47.562392 -6.361692 89.255904 -9.250576 34.708693 -26.511120 2.936843 -3.303514 -9.866503 -14.597660 45.004188 31.849573 18.716054 0.363931 1.531207 -21.167299 16.943843 --5.707698 0.809223 17.408875 13.612861 -10.625963 -16.730304 -4.917256 -18.012036 12.253476 4.634525 16.503192 1.614564 10.822629 -7.433446 -0.272903 -3.114751 9.709599 -0.183471 -2.424121 -6.795266 -3.843749 20.146584 5.134296 -12.953525 3.542142 -12.184296 9.985234 8.000084 5.626501 13.273994 2.396391 1.195282 -3.080529 6.609073 -7.486090 1.382215 -1.506259 4.931165 -8.165082 -5.180047 6.441794 -0.911247 13.784673 -0.057247 11.681146 2.191552 8.514197 -0.515764 -11.979580 -6.648037 -4.725271 8.790607 -6.104453 8.679212 -2.055944 1.250231 5.644555 -5.636266 -0.557723 -16.778664 3.229892 -0.171222 -8.057117 -1.697583 -10.152570 1.297899 -1.864146 -9.194400 2.625567 -9.793654 6.056732 -0.237074 -1.253196 -8.067143 -15.039300 2.586105 4.296989 3.180415 7.151468 7.339871 -3.712257 -5.106547 -9.149011 -8.559506 7.994530 2.447520 3.366748 6.963531 -8.794112 -5.295572 2.508958 0.631762 2.137796 7.305126 -9.529574 3.386810 2.441378 -5.210162 -5.342352 -9.177326 2.596850 -7.519567 3.757116 8.013673 -5.318443 3.325935 -2.115649 3.861114 -4.811318 -10.547078 3.922816 -7.357141 -1.400405 13.199402 -6.246012 -7.183131 -5.638062 -0.347957 1.379810 11.245043 -0.550691 3.287409 11.456333 7.877379 6.867645 -11.978581 -0.822133 5.930637 9.147501 5.574747 4.766676 -7.251408 -6.062548 2.754365 -8.582726 -20.066781 -6.478977 7.268299 13.287365 -0.056852 -13.489079 9.088432 -6.428431 12.232447 10.775384 5.328443 4.130533 2.252025 -12.011315 4.936365 17.843945 -5.381888 8.182952 -4.874717 -13.034583 14.907758 -1.946015 6.296157 -0.102291 -2.892828 0.133005 -7.354947 4.210378 13.507668 2.228559 3.117542 0.182221 3.478850 -4.782348 -17.452007 -23.587500 -2.345302 11.607959 11.522264 25.850932 -12.400424 -6.420764 -3.034248 10.054662 -4.017207 -7.625358 3.543677 -7.616300 7.011259 -29.797399 -19.456328 26.014855 17.961352 8.675359 1.295957 12.193445 1.897260 -2.857250 -7.121978 -7.972369 6.645576 6.490192 -6.863526 0.889309 2.010771 -15.464293 -5.542380 0.637136 2.745067 4.470642 -7.905034 3.748736 -7.766862 -8.583681 -7.964538 5.959408 -9.291713 -3.095281 -0.545645 -0.146170 1.025980 6.199863 -2.568607 -4.648206 -1.432258 -8.642540 -2.299049 -0.194332 9.117457 3.967533 16.678018 21.178899 -5.154718 9.366616 0.410354 -9.015859 27.684645 -10.682935 0.524071 -0.327940 10.635539 6.046018 4.684322 10.532885 -5.275041 -2.259791 -13.403320 1.814953 5.107206 6.660744 -21.212437 -10.741313 -19.456501 -0.894104 -1.371288 16.193104 -1.875116 26.160403 -7.369018 2.743667 -28.698058 1.002106 10.016851 0.017584 8.656759 5.397171 -11.386010 -16.742574 -2.349090 -11.143770 1.438600 -2.049921 -8.754812 -8.221359 -5.788268 7.445958 -10.437074 4.301152 14.392367 -4.956702 10.809501 -1.019675 -0.950666 -5.278580 -2.312385 4.633554 3.549671 -7.864559 12.095946 0.952021 27.618071 -1.293493 10.065156 -7.514595 11.099256 -6.131325 -14.493038 -6.969416 13.977310 14.218157 3.397534 2.882659 2.164657 -3.403495 10.786737 -0.225366 2.773576 8.456010 4.783029 -3.522162 -6.655047 -2.222632 -7.229906 2.831290 1.383773 4.775606 -1.802995 2.483379 0.704789 -0.811560 -1.004123 2.226766 0.268935 0.047942 -2.404512 -4.898202 6.154539 1.867511 -3.643584 1.266869 -7.121076 5.391659 2.731561 2.503049 4.894486 0.572906 0.275779 -0.605139 3.013611 -3.788079 -0.606985 -0.543150 1.845006 -2.473643 0.597823 1.962772 0.523031 4.221258 0.338427 2.088691 3.921887 1.794346 0.455623 -3.541059 -1.535258 -1.601085 3.040074 -1.923813 2.324471 -0.761582 1.024099 1.633605 -3.438281 -0.094672 -3.529575 0.638900 0.270924 -3.271473 0.464912 -5.279973 0.389259 -2.597318 -4.067539 1.688490 -1.569614 2.295275 0.163057 -0.794573 -3.067240 -5.289145 1.915816 1.822858 1.495740 2.379598 0.148327 -0.516183 0.669176 -4.509508 -3.913859 2.502815 1.772543 2.049450 0.838037 -1.041566 -3.416783 0.945929 -0.024807 0.893403 4.173108 -1.864091 2.049224 -2.823632 -1.840399 -4.511123 -6.082781 0.335242 -3.176313 2.553703 2.740899 -2.964193 0.842265 1.141063 1.516689 0.557169 -5.285149 -0.211763 -3.232571 1.753354 5.879974 -1.515635 -2.903763 -1.988025 -1.451261 -0.191149 4.541128 0.091881 0.162893 5.488975 2.914230 1.909728 -3.809333 -0.755535 0.840915 0.920433 2.201281 3.143294 -4.553649 -2.574533 -0.090887 -1.993217 -8.184465 -0.789189 0.612797 3.359962 -1.603640 -4.180005 3.492653 -2.840010 3.075867 3.016752 2.797777 1.741046 -0.484139 -2.643856 1.958608 8.270692 -2.396800 2.754085 -3.665110 -6.594013 6.002184 -0.119337 2.892600 0.402631 -0.603727 0.138078 -3.171770 1.842648 6.012751 -0.142105 0.719149 3.449798 0.431458 -1.237997 -6.137562 -7.074298 1.147935 4.041093 1.518593 10.008326 -5.152616 -1.630185 -0.632385 5.342047 -0.645834 -1.305500 0.941500 -1.913628 2.008899 -10.079064 -8.017823 6.692778 5.440644 1.321522 -0.764193 3.551277 0.978667 -1.441762 -3.465385 -4.069898 2.767115 1.187476 -1.668463 -1.220521 0.308430 -4.909922 0.490761 0.139967 1.762411 4.175747 -3.702950 -1.275882 -4.261815 -5.709428 -5.177641 2.920213 -4.771071 -0.229489 0.578956 -0.028976 -0.860850 2.280810 -0.851676 -2.375178 -0.122628 -2.205845 0.014764 1.261950 2.846088 -0.277976 7.585184 6.290826 -1.438449 2.429665 0.996578 -2.002510 12.179956 -3.247620 0.395914 0.217647 4.938984 -0.598604 2.352566 4.157547 -1.696804 -3.103860 -4.926642 1.133870 0.541136 0.737412 -6.384082 -2.799978 -7.844226 -1.579489 -0.339749 7.072985 0.844704 9.280723 -0.675323 1.360775 -8.918806 0.401857 2.869418 -0.687743 4.276236 2.376567 -4.796375 -5.026605 -0.976056 -3.880308 0.763681 -0.977940 -4.380745 -3.540909 -0.602469 0.200781 -1.364684 2.016719 5.624776 -0.860532 1.712038 -0.227784 -0.631317 -1.930792 -1.389141 4.340253 0.273467 -3.039283 4.591039 0.211348 10.009320 -0.157293 3.976813 -2.690335 0.736540 0.148773 -3.573763 -2.598346 5.266080 2.972338 1.678101 0.485779 0.663508 -0.743720 3.409406 --10.997924 15.208499 71.540673 33.524239 -32.904692 -58.211876 -17.313084 -79.302881 39.718624 22.199586 59.352206 1.171717 40.121407 -13.831454 0.187711 -2.111436 34.682829 -1.534772 1.322554 -23.843002 -15.546056 63.029612 13.433080 -23.143391 11.915974 -46.785184 35.328920 20.997312 30.410069 44.534908 11.245316 0.840408 -13.240716 23.473967 -19.101006 6.145135 0.302736 22.813234 -31.622285 -8.958274 10.010018 -11.323691 43.573813 6.927811 40.097589 8.013008 23.266660 -0.696837 -34.051397 -22.147536 -18.340397 34.166183 -27.007821 29.024761 -7.215234 -6.230856 10.427440 -10.409518 1.771016 -43.773897 7.964770 -8.651311 -28.092369 -1.553438 -36.989816 7.452893 -22.434951 -31.121524 0.438195 -22.887324 25.443297 3.175269 1.911356 -11.354778 -67.345392 9.365753 13.934232 8.801373 30.474057 17.204334 -7.426071 -15.418795 -33.595645 -40.839611 40.149764 22.131242 11.718848 19.342252 -35.137334 -13.851315 1.974148 2.886483 11.360987 32.726347 -36.431925 18.074407 -5.331153 -17.881374 -18.398269 -55.496785 7.304285 -33.978240 14.665924 15.101903 -11.538953 6.391252 -14.571029 16.911712 -15.330355 -41.998583 16.165530 -22.138334 -10.756857 51.090475 -22.940411 -22.816457 -20.134854 -2.695881 7.802654 33.887905 7.043022 13.719411 38.340255 29.082970 27.463763 -42.620861 -6.883965 23.584469 25.159301 21.888641 16.109751 -28.454504 -25.008579 13.805569 -30.484813 -76.805407 -21.005848 28.606102 43.428962 -6.497975 -33.303657 17.490745 -26.124117 33.052757 42.957474 21.064266 16.024578 7.630626 -35.781569 16.267559 60.830634 -24.682597 33.392138 -13.543323 -31.975891 43.198829 -15.815661 25.199042 -4.017487 -5.487145 0.704358 -27.910692 4.244324 54.070980 10.980584 16.116469 -0.583300 12.465186 -24.937840 -58.640041 -76.762380 -10.340401 53.490415 25.507511 67.568519 -41.020711 -21.642590 -0.936757 41.853853 -7.198685 -28.443712 15.545419 -25.597071 26.631550 -94.099540 -65.022604 79.932502 63.950408 29.426897 -4.682940 29.504982 19.495396 -29.515729 -33.412945 -29.187994 24.071280 6.194345 -42.699700 -17.269667 7.135554 -55.941561 -10.980741 1.699155 10.901189 17.498101 -15.169233 21.731613 -13.474453 -27.820719 -26.900324 28.789197 -31.366292 -17.539277 -5.689785 1.003510 6.048735 19.950933 -14.617038 -10.768328 11.767536 -33.747799 -6.201017 5.473947 28.371288 9.289310 70.789853 64.420926 -14.474812 21.742736 -1.110179 -34.298462 86.359195 -34.560219 3.249934 -1.117123 30.147314 7.085521 20.517609 39.580982 -20.998105 -27.358376 -51.694388 -8.421525 15.465219 26.477872 -38.473127 -42.409508 -63.934141 1.431907 -2.170667 63.792433 -3.812020 87.836186 -23.408234 18.332807 -83.323403 6.025062 27.590358 -8.869819 38.653127 20.166687 -38.294728 -44.420366 -13.691457 -42.121802 -7.983900 -5.106889 -29.218915 -27.027664 -22.751239 23.536831 -32.066711 10.970014 30.839901 -10.661120 44.503764 -1.512756 -4.662828 -27.711379 7.516845 34.829648 7.368364 -34.117036 42.725447 6.662254 104.751639 -6.659581 32.913905 -25.098997 19.225375 -15.076461 -39.893714 -24.774327 57.383588 54.719626 20.709910 0.817928 4.962339 -8.571022 35.145803 -1.025047 3.503448 10.606746 7.846912 -6.646275 -9.658537 -2.644687 -10.416105 5.346633 1.015827 5.996123 -0.602973 3.349113 -0.373002 -1.109429 -0.276440 4.273513 1.598146 -0.672239 -3.576096 -5.338900 9.938412 2.206682 -6.051748 1.827179 -7.342555 5.537496 4.414711 5.664016 5.792106 0.896325 -0.369149 -1.056792 3.791608 -4.527540 -1.479003 -2.027198 2.310892 -6.694631 -0.350933 2.044825 -1.317201 7.506612 0.051880 3.233638 1.879984 5.458790 0.625887 -5.642526 -1.531350 -4.805038 6.857969 -2.292317 4.830959 -0.912998 0.417865 2.139062 -3.415772 -0.402670 -3.179985 -0.111354 0.027365 -4.582002 -0.427835 -7.243849 0.318925 -3.520803 -5.891516 2.115291 -1.994448 3.577149 0.622096 -0.341382 -4.678332 -9.961672 1.972936 1.896617 3.420655 3.385375 3.198583 1.049129 -0.257754 -6.025148 -4.898165 3.714077 1.918929 2.015605 1.373544 -3.422927 -4.825080 1.142410 0.357829 0.936781 4.295699 -4.981914 4.056573 -4.427907 -2.320305 -5.107681 -9.017170 0.079596 -4.149863 3.040983 1.108498 -2.455648 2.088469 1.869051 2.010388 0.875875 -7.388656 0.065421 -2.601940 -0.440785 9.107143 -1.988482 -4.311726 -1.863714 -0.665351 -2.289737 4.985349 0.557419 1.435583 6.494640 4.218000 3.775153 -5.432950 -0.719487 1.519532 1.972046 3.709749 4.537862 -3.603418 -3.755699 0.330635 -1.608009 -12.043315 -1.361402 4.080316 6.040291 -0.306492 -4.275364 1.624929 -3.927942 5.480776 3.729122 2.975358 3.268095 -0.394617 -3.845572 2.848628 10.774410 -3.227052 4.270095 -4.876934 -6.521775 7.644248 -0.772671 4.127371 -1.321020 -0.722006 0.909797 -4.505069 1.610626 7.689845 -0.237466 -0.938001 4.209734 0.564953 -3.655275 -9.342374 -10.072053 0.896063 5.383649 2.929005 11.714416 -6.446313 -3.226970 -0.979465 5.061409 -1.628798 -2.207173 2.254333 -4.399309 3.456112 -13.563294 -10.219113 10.674213 8.188275 1.517314 -0.573459 5.240788 1.701297 -3.770406 -6.472136 -5.399231 3.420016 2.704711 -4.434341 -2.131275 0.652035 -7.821239 0.232872 1.554323 1.970957 5.061790 -3.976958 1.119131 -5.087874 -7.428245 -6.381832 5.048203 -6.395481 -0.592150 1.315130 -0.132735 -0.791157 4.016610 -0.776589 -3.336651 -0.127379 -3.619496 -0.594508 -0.167635 4.485110 -0.527193 9.496014 10.119515 -0.841235 6.015537 1.820595 -5.197353 16.363117 -6.029951 0.447908 -0.539558 5.417733 -1.158020 3.545983 5.302272 -2.666176 -3.891474 -6.925541 0.770353 0.726974 2.150103 -8.441324 -4.639449 -9.706354 -2.005852 -0.117643 8.300057 0.454814 12.290727 -3.822681 1.943570 -13.912202 0.832847 4.313207 0.178198 6.921347 3.287130 -6.406548 -6.025148 -1.375247 -5.330829 1.962398 -1.465409 -6.576278 -4.811233 -1.818429 1.590897 -3.716030 2.509294 7.684713 -3.145800 5.189980 -1.869368 -0.978827 -2.548941 -1.597512 6.311494 1.377229 -4.385047 6.590755 -0.015369 15.693348 0.991556 4.991534 -4.297520 0.587733 -0.460635 -6.662750 -3.850768 7.959105 5.315225 2.257576 0.636851 0.500924 -1.810522 4.624815 --2.469374 3.238212 17.696248 10.178097 -4.521362 -9.420322 -4.069008 -11.152836 7.789553 3.183102 10.610298 -0.019509 5.602851 1.604560 -0.163943 -3.055345 4.648143 -1.689088 -0.545582 -3.610394 -0.856106 14.354912 7.152474 -11.015551 0.727820 -14.644391 7.021568 4.567536 6.574292 10.841182 0.157031 0.547300 0.596725 6.047101 -8.692349 -2.358782 -1.525470 3.587212 -5.051850 -2.842186 4.669583 4.536395 7.689240 1.429945 6.037901 3.517730 6.790519 -1.854229 -5.709497 -3.387849 -6.486401 9.947885 -5.525142 5.728964 -1.867447 4.498002 2.260089 -6.844749 -1.699472 -13.078248 2.502015 5.505219 -5.877831 -1.148655 -8.595827 1.945107 -2.478323 -5.611144 2.665513 -3.466022 6.762004 1.469099 2.337807 -7.778252 -11.855542 4.745589 -0.844498 3.444453 4.396683 1.562685 -4.982845 1.042804 -5.016418 -7.304453 4.673674 2.576395 0.560721 1.794936 -0.444558 -4.661665 -1.075449 0.328224 -3.441561 8.353659 -6.618227 7.886191 -0.955136 -2.230572 -3.354404 -3.921236 -1.358336 -9.332616 2.298910 7.308877 -1.758833 2.144599 -1.300676 2.534123 -1.345085 -9.702028 2.537625 -2.271781 -3.423408 8.369251 -6.448730 -2.633576 0.270745 0.822773 0.523014 9.625404 -1.723149 4.270151 8.126748 5.960058 3.453620 -7.819268 2.459617 3.933255 5.993205 5.089170 5.890799 -7.382625 -5.314598 -0.532427 -1.047882 -15.951743 0.655640 7.673161 8.005022 1.048147 -12.666346 5.545515 -4.463795 9.716444 8.836896 6.043139 4.444115 0.176763 -6.179329 4.078823 18.511476 -6.139185 7.646669 -5.679752 -9.732940 13.580032 -5.416745 9.110989 -1.427618 2.209891 3.683390 -9.056459 0.753280 12.894143 2.884422 4.244603 6.517170 -0.503388 0.741158 -15.086108 -14.421580 -4.027901 5.808780 2.976823 18.353240 -7.337580 -4.386638 -2.054614 8.220946 -3.228299 -3.759291 0.643398 -3.627520 3.726123 -22.996479 -14.847823 15.880362 13.782049 1.687261 0.277231 9.676633 4.108872 0.217317 -6.438953 -5.619203 6.398841 2.310986 0.024983 0.417796 -0.288336 -10.504074 -2.511195 0.735778 1.141235 4.878630 -6.883358 -2.633523 -1.600423 -11.849071 -7.154817 4.122447 -11.366883 -5.170219 -0.783130 1.132394 -1.208338 2.615214 -1.795734 -3.919196 4.266134 -6.297714 -2.949008 1.822018 6.166187 2.425303 10.343909 12.588024 -0.390384 5.733979 3.443160 -5.755771 24.040892 -8.201915 -2.885557 -0.466425 8.174618 -0.402906 5.519489 3.565679 -3.221694 -5.226299 -10.493998 6.543821 0.394312 3.591584 -12.787326 -7.998731 -8.795857 -2.973848 2.697408 12.065568 -0.440263 20.733233 -3.564293 2.746162 -21.370996 0.862872 7.802329 0.023143 7.099647 6.868711 -8.188477 -13.228212 -2.652731 -3.939604 5.417924 -2.048155 -11.749619 -6.214396 -5.252003 3.914591 -7.796956 5.414369 10.807712 -2.619905 7.539648 0.565877 -2.253850 -4.587284 -1.731496 4.444843 4.447092 -6.749906 10.113260 -2.937448 19.769134 -4.848608 9.294216 -7.885541 4.424682 -3.158555 -5.944354 -3.841069 13.218780 8.139722 3.074143 1.758898 -0.696532 -4.015378 6.521481 --13.017154 8.133766 44.557634 16.906130 -13.985032 -20.701905 -13.240988 -32.036812 15.712289 13.609766 30.410040 -4.181274 16.054436 1.127059 -0.107448 -12.796693 10.928142 -11.787005 5.599617 -10.981567 -5.849892 30.537680 16.256342 -14.688739 0.950021 -38.790628 22.800247 5.358122 13.475309 26.219927 1.060149 -1.020638 -6.097595 12.883970 -12.407805 -0.538771 -0.286879 11.300681 -6.571897 1.644033 8.927433 7.288710 15.771339 3.743583 17.452509 11.949146 8.675663 -2.774809 -20.478232 -11.875045 -6.413184 17.510574 -16.092411 9.885586 5.184991 5.192210 0.542864 -15.042030 -6.799402 -30.762355 6.731095 0.991860 -12.895862 3.813904 -22.404361 5.914272 -17.044497 -9.756216 3.393714 -10.084190 12.476843 4.478506 7.143213 -8.419645 -25.914992 13.402002 -0.711792 4.166314 10.603429 0.828483 -13.815845 3.492890 -15.593672 -23.758340 9.608991 13.345012 0.954287 -1.834909 -2.708289 -7.373795 -0.876209 -0.611130 -7.581431 21.979638 -19.698785 15.891190 -4.899312 -8.558491 -12.097919 -19.366906 -4.343890 -23.296994 7.905473 22.544073 -12.215244 -4.836080 -12.249266 7.480753 -7.443891 -22.726911 5.411175 -9.280192 -0.145645 23.025832 -19.696997 -4.126080 -9.936426 -0.700762 9.488421 19.895420 -1.598075 10.953592 21.475666 17.797137 11.119292 -19.683734 2.761360 12.643649 13.756858 9.050083 12.814112 -23.696582 -12.822209 2.252310 -5.659794 -35.471896 -3.994996 12.670298 16.203359 -0.749672 -24.539295 10.027751 -13.384478 23.710432 23.192617 15.156078 8.171687 -0.159984 -15.652992 11.446186 40.002182 -15.225498 17.612259 -11.760487 -24.287072 33.406209 -13.844980 20.047275 1.170220 7.738292 1.390674 -22.377062 0.803910 30.160856 8.972748 14.543324 11.208216 2.616332 4.746943 -30.600179 -36.207528 -4.216537 18.732324 6.870904 40.679767 -20.825334 -10.453295 -4.385324 25.758102 4.452619 -14.630972 1.363345 -5.209253 7.513733 -51.172720 -35.813658 35.276040 36.571927 5.847252 -2.646463 21.544921 10.330078 -9.550759 -17.434830 -17.403449 19.861615 -7.237524 -3.151600 -2.478481 5.135678 -28.673095 -5.221043 -1.508364 5.168069 19.447179 -19.161503 -6.218016 2.668279 -23.287973 -16.510359 14.330041 -21.804371 -16.743033 -4.738894 1.018840 1.943684 9.152713 -7.199977 -5.957317 8.938019 -18.583332 -6.326706 9.452287 13.055218 4.525495 35.802969 26.889621 -0.962171 2.824114 3.769836 -10.920397 55.041790 -15.683747 -6.812987 0.670722 14.871473 -0.232153 11.320071 12.676006 -7.307063 -18.018841 -24.186805 12.451054 -1.163219 10.769652 -29.324651 -24.600796 -28.980905 -0.444631 6.753572 32.023725 3.775543 50.189273 -3.012648 8.171804 -44.889066 2.414250 14.524710 -2.167395 18.550116 12.821695 -19.335171 -24.945393 -6.775105 -14.506908 10.229077 -4.701677 -21.243660 -14.256296 -9.579002 13.521869 -10.598071 10.029585 18.395686 -1.534027 18.524171 15.168642 -7.434222 -15.444488 -0.051516 14.287888 8.773423 -17.876465 29.799311 -4.246778 49.733865 -12.085895 16.447660 -14.813139 7.636546 -5.266675 -14.924014 -6.734667 32.740372 21.980292 13.857183 -2.301725 -1.477943 -10.312589 13.816507 --4.112550 3.082125 19.836562 13.567908 -9.772846 -14.485068 -5.322491 -13.424139 8.093549 3.706213 12.297402 -0.748515 5.309143 1.934738 0.180766 -3.297564 5.155699 -0.040389 -1.705742 -4.976932 -5.317550 14.351424 9.299407 -13.507661 1.859306 -13.508333 8.872356 7.036185 5.533841 12.037555 0.036040 0.121717 -1.548484 7.186362 -9.490784 -1.287305 -2.096300 3.287643 -5.918802 -2.215364 5.554178 0.909780 10.261450 -0.237312 8.913594 4.655743 8.378567 -1.179922 -11.464988 -4.445503 -6.715110 11.377454 -6.460782 7.517431 -0.202056 5.163241 2.379163 -9.165773 -2.430449 -16.028620 3.067953 2.387095 -7.540662 -0.919028 -10.632394 1.853468 -3.547261 -8.941570 4.628532 -5.219980 7.078884 0.094216 0.950786 -7.360422 -12.233789 4.347834 1.134062 4.453719 4.768616 2.665888 -3.949812 0.573460 -6.775647 -7.718898 3.158270 0.767052 1.527514 2.145402 -3.000711 -5.348514 1.703619 -0.321387 -2.685764 9.379104 -8.524084 8.195908 -0.986380 -3.361050 -7.393226 -8.715765 -0.366961 -9.130136 4.267379 7.551712 -4.112760 2.351558 -1.039103 4.142469 -1.813159 -13.157066 2.008653 -4.236846 -1.345045 9.762602 -7.446013 -3.426766 -0.076984 -0.270977 0.149486 10.571945 -1.076652 4.026088 9.750251 7.809286 4.835089 -9.446995 0.749316 3.166451 7.090801 6.298845 6.817038 -8.507983 -5.551042 0.528952 -3.454285 -18.740144 -1.058593 8.359007 10.312390 2.872024 -12.948363 4.830444 -5.588874 11.361679 8.043173 8.690525 3.796536 -0.315940 -8.107814 4.209910 20.349636 -6.866459 9.138116 -5.137597 -12.723939 15.545445 -4.643985 9.240381 0.582318 1.033105 3.634586 -9.698407 0.299659 14.013409 4.018151 3.004959 7.081055 0.536157 -3.226632 -18.080872 -17.338063 -2.190915 8.603725 4.694296 21.651673 -10.855344 -6.429324 -3.260154 11.822649 -3.377237 -5.138725 1.016937 -4.453551 4.973880 -26.845988 -18.060480 18.242714 15.997901 3.643427 0.672009 12.063679 3.636568 -2.344745 -7.893560 -7.896882 6.613694 2.797098 -0.050433 -0.269690 -0.517263 -13.586730 -1.195512 0.690920 2.448456 6.285388 -8.595666 -2.260026 -2.898752 -13.037830 -8.847941 4.240554 -13.222571 -4.400616 -0.050007 1.549460 -0.189769 3.218426 -1.898995 -5.496867 1.877402 -7.620079 -1.515528 2.511391 7.368101 3.081235 15.794657 15.513857 -1.485648 8.059538 2.587511 -6.801426 30.481850 -10.493427 -1.094942 -0.213221 10.412785 -0.321463 4.574476 7.022371 -4.002304 -5.393295 -11.002674 4.698563 0.545230 5.355011 -17.883424 -10.578882 -14.532897 -2.895285 2.553095 13.413850 -0.742994 22.755931 -3.290106 3.685793 -26.159648 0.834558 8.531113 -0.448624 8.908658 6.849355 -10.836798 -17.421233 -2.038949 -5.911111 7.071822 -2.322288 -11.584037 -6.508120 -4.052986 3.065609 -6.684265 4.578614 12.944750 -4.516751 8.650406 1.750192 -2.453330 -3.759675 -3.448308 6.963476 3.930730 -8.039848 13.873312 -0.869775 26.039141 -1.808996 9.796065 -7.317479 4.231726 -2.573181 -6.849934 -4.668457 13.721492 10.056318 4.433148 0.924273 1.573021 -5.423224 6.724600 --2.618155 3.627988 19.488967 11.110614 -6.035453 -11.087174 -4.775499 -13.648177 8.585710 3.452208 12.074973 -0.204721 6.049222 1.413174 -0.239334 -2.867667 5.336550 -2.111355 -0.398689 -4.421336 -1.830855 15.928880 7.504719 -11.573932 1.118040 -16.164871 8.232554 5.178533 7.309096 11.776704 0.458624 0.293301 0.145250 6.916065 -8.909075 -2.165683 -1.404164 4.050382 -5.969112 -2.424124 5.072925 4.279376 8.980112 1.097567 7.155986 4.041269 7.704445 -1.546149 -7.056867 -3.795890 -7.074235 11.140473 -6.424620 6.492014 -1.759460 4.341453 2.299012 -7.695169 -2.166289 -13.542391 2.168557 4.951663 -6.574911 -0.988601 -9.773870 2.213303 -3.102959 -6.482755 3.180854 -3.554793 7.571585 1.681581 2.234094 -7.679124 -13.233506 5.220010 -0.253239 4.260442 4.949982 1.454197 -4.618602 1.061981 -6.032347 -8.290651 5.230440 3.198013 1.129028 1.569956 -0.983560 -4.828762 -0.830662 0.279649 -3.212423 9.354866 -7.572252 8.024065 -1.777496 -2.813119 -4.655958 -5.745881 -1.246055 -10.179602 3.216936 7.770169 -2.602024 2.245594 -1.261058 2.939145 -1.614660 -11.130309 2.394308 -2.825157 -2.891202 10.103098 -6.943902 -3.188369 -0.422781 0.548537 0.380174 10.387379 -1.385722 4.580739 9.699565 7.317228 4.163158 -8.950158 1.694763 4.001152 6.587376 5.882197 6.804652 -8.441387 -6.069986 -0.428659 -1.626127 -17.943564 0.123393 7.994142 9.221081 0.848077 -13.192732 5.680454 -5.271978 11.083669 9.688798 6.483902 4.787913 0.150025 -7.140678 5.128920 20.395867 -6.623838 8.510958 -6.582936 -10.453264 14.845995 -5.756027 9.715242 -1.016004 2.166644 3.321481 -10.032112 0.703045 14.124927 3.213602 4.539981 6.980479 -0.130755 0.224037 -16.706946 -16.223147 -3.670400 7.156509 3.300437 20.201230 -8.760436 -5.161163 -2.125930 9.471007 -3.050572 -4.536498 1.089689 -4.436066 4.476478 -24.797182 -16.588159 17.916769 15.745397 2.230002 0.359320 10.724068 4.758859 -1.302032 -7.342299 -6.562206 7.342433 2.508854 -1.289382 -0.171231 0.056764 -11.820070 -2.840090 0.829725 1.789420 5.865382 -7.183629 -2.541617 -1.695220 -12.950169 -8.021467 5.132225 -12.261830 -5.591590 -0.514468 1.095793 -0.955584 3.353259 -2.210567 -4.258218 4.181319 -7.220272 -2.807779 2.287086 7.114248 2.473583 12.102160 14.260744 -0.642789 6.933727 3.633558 -6.530119 26.096656 -8.789281 -2.470642 -0.285911 8.769781 -0.580175 5.954831 4.759951 -3.787672 -6.216256 -11.784937 6.625304 0.449918 4.471998 -13.920303 -9.167128 -10.798765 -3.220288 3.132826 13.401330 -0.306376 22.920903 -3.863131 3.190217 -23.824551 0.903464 8.425490 0.103793 8.200004 7.299279 -9.194096 -14.369376 -2.964121 -5.155063 4.997249 -2.375334 -12.477356 -7.263911 -5.751878 4.727246 -8.154654 5.558686 11.979819 -2.877667 8.468858 0.555754 -2.557537 -5.159268 -2.062393 5.691269 4.582750 -7.731652 11.534183 -2.714426 23.084723 -4.818714 9.887658 -8.462962 4.416785 -3.059340 -6.908159 -4.237613 14.691769 9.295580 3.608076 1.588348 -0.707833 -4.326483 7.447598 --3.271897 5.968056 24.444613 13.482919 -9.826141 -14.097676 -6.027618 -19.686054 9.772834 5.054776 15.234402 -2.040776 6.779402 4.045185 0.168278 -3.038764 6.837090 -1.483865 -0.562869 -5.864675 -4.173275 16.289609 7.897977 -12.630990 1.689400 -18.008954 9.446729 6.405962 7.169846 11.417821 1.944476 -0.049935 -2.330166 8.126067 -10.509253 -1.643564 0.362565 4.461182 -7.796367 -2.993227 4.546437 4.227288 10.298321 0.725911 10.244288 5.314144 9.082615 -0.636880 -10.089085 -4.140631 -6.732239 14.936956 -6.587231 8.310037 1.639118 4.609272 1.801837 -10.888355 -1.827358 -15.389792 2.676747 3.992246 -7.706991 -0.328835 -11.253854 2.240269 -3.765099 -8.332275 4.596181 -4.628534 8.575452 -0.607240 1.797008 -7.463961 -14.985498 5.380049 0.456940 4.117915 6.234617 1.809576 -3.878783 1.115138 -7.719438 -10.483760 5.643117 5.111085 1.343542 1.425698 -2.553487 -4.382119 0.675731 -2.007809 -2.866857 12.146044 -10.454136 9.274706 -2.419849 -4.426234 -8.783938 -9.624519 -0.124077 -11.373892 5.569064 7.897953 -4.220771 2.023464 -1.153470 4.153293 -1.309167 -13.948644 2.907561 -4.015581 -0.031267 12.553153 -8.816212 -4.652495 -1.001217 -1.256485 -0.150589 11.774636 -0.362549 4.417254 11.868219 9.020825 5.923251 -10.564440 0.638787 4.652731 7.120061 7.402779 7.749175 -12.036404 -6.310342 1.476338 -3.719190 -21.114482 -0.878755 8.949841 11.700570 1.429246 -14.615461 4.036909 -6.173664 12.835882 9.807113 9.693050 4.399172 0.028903 -7.729220 3.836220 22.755632 -7.688313 10.651047 -6.298529 -11.514624 14.378673 -5.746231 11.616583 0.863720 2.642919 2.882715 -11.383532 -0.382607 16.477567 5.213267 4.022477 7.466042 0.871342 -3.583208 -20.383391 -20.403137 -2.699980 9.465099 2.446226 22.518158 -11.544910 -8.074130 -2.447538 14.023334 -3.347208 -6.580352 2.636083 -5.502898 5.813764 -25.487197 -19.199480 19.670894 19.258079 3.471002 -2.182277 13.719487 3.730720 -5.762320 -10.345081 -8.875104 8.440911 1.184311 -1.924088 -1.055126 -0.435080 -15.271185 -1.212563 0.035645 3.450782 8.373654 -7.057050 -1.569324 -1.201661 -14.966785 -9.639610 6.531783 -12.733755 -6.395996 -0.623626 2.112358 -0.337103 4.394339 -3.912919 -6.516472 5.081844 -9.802047 -2.422593 4.308523 7.735394 1.864997 19.413006 15.058167 -0.437973 9.917992 2.517484 -7.909118 31.822139 -9.885891 -1.524461 -0.951895 9.698450 -2.069105 5.766910 7.505791 -4.973653 -10.519562 -13.055349 4.955509 -1.389297 6.422156 -16.377090 -12.975510 -14.736555 -3.489352 2.493502 15.463122 0.028371 26.465368 -3.419272 5.026332 -28.817337 1.452338 10.285517 -1.730636 9.118514 7.762554 -11.987358 -17.381324 -2.070374 -7.946025 2.696097 -1.789160 -14.227236 -8.346736 -7.378480 6.054317 -7.339931 4.923606 14.336991 -3.322522 9.505990 1.802641 -3.056263 -4.393490 -2.570244 9.510633 2.902006 -10.440870 14.949405 -1.522246 31.583555 -4.384806 10.900686 -8.241220 3.559744 -2.738265 -7.549847 -5.616100 16.421200 12.020752 5.621368 -0.506771 0.097926 -6.289913 7.721146 --5.583821 5.548129 30.303432 18.249692 -11.400029 -15.839073 -6.815049 -18.762473 11.885435 5.765795 18.753371 0.098211 9.053205 2.824318 -0.272820 -7.138242 8.224118 -2.284069 -1.878034 -6.849731 -4.915387 21.415612 12.367327 -21.006995 2.379094 -22.347119 14.989005 7.569573 7.428511 17.358050 1.043815 2.076491 -1.354605 10.574671 -13.650753 -4.283779 -2.074694 6.754402 -6.715967 -4.358019 10.292088 6.115771 12.708528 2.380967 11.035572 8.193863 10.047466 -2.245458 -12.793797 -5.762828 -8.093802 13.770610 -9.147146 10.391114 -2.007259 8.626558 4.131770 -13.131754 -2.351616 -25.196865 5.589517 6.739858 -9.343807 -1.335087 -14.582798 2.723872 -2.654037 -10.604428 5.094010 -6.803735 10.190669 0.367134 2.400134 -13.316324 -17.017593 6.771883 0.209964 5.099084 7.806098 2.840767 -9.291645 0.561798 -9.585887 -12.195674 5.732034 3.307523 1.429891 2.793560 0.681909 -7.489276 1.248240 -0.231759 -5.642144 15.273918 -11.648114 11.886841 -1.462177 -4.266676 -7.798781 -7.636682 -1.076360 -14.670496 5.440522 14.737609 -7.580394 3.425885 -1.540722 5.119967 -1.586486 -15.500225 3.007326 -5.970685 -2.192860 13.068521 -9.478589 -6.171726 -0.024252 -0.518363 2.965937 16.170274 -3.494812 5.651292 15.994316 10.403136 5.462822 -12.810601 3.848686 5.739610 8.380891 8.347476 9.902639 -13.995532 -8.286760 0.210030 -3.370826 -25.518917 0.970551 10.352161 13.718190 0.117721 -22.643095 10.279781 -8.132339 15.722923 14.478365 12.740762 6.181192 0.145690 -10.465872 5.438778 29.983092 -9.195206 11.697842 -8.046866 -17.825236 22.476590 -6.772240 14.199404 -0.648751 2.667593 4.521781 -14.816336 1.383234 21.021031 5.172814 5.695190 11.224548 -0.306007 -0.112413 -24.738747 -23.989609 -5.317374 10.357811 7.301821 33.628570 -14.449329 -6.255494 -4.336034 14.620998 -5.021328 -6.982558 1.031625 -4.292070 6.127275 -37.867098 -25.147525 25.634095 21.613720 2.873772 -0.233045 17.415562 2.999015 0.583249 -11.595965 -10.727040 10.111675 3.965580 3.869680 1.580251 0.599054 -18.952741 -3.203300 1.619004 3.044737 11.510300 -13.823961 -6.794770 -2.760899 -18.904595 -12.972438 5.825878 -17.496309 -8.885840 -0.617276 1.968214 -0.992693 3.932170 -2.392658 -8.475870 3.503835 -10.523729 -4.610664 3.809455 10.775105 2.903746 20.476486 20.697773 -2.196307 6.352661 5.187898 -8.755582 42.576206 -13.034711 -3.859628 -0.058463 14.428901 0.567039 7.416658 8.456742 -5.437101 -7.840890 -17.085290 10.163130 -0.199703 5.926174 -27.454185 -12.311409 -17.627502 -4.093931 3.057839 20.438389 -0.603858 35.900241 -3.936415 3.824754 -36.458043 1.059539 14.220037 -0.831249 10.823931 11.227272 -14.479956 -23.211133 -3.527907 -7.540855 10.166324 -3.009027 -16.110802 -11.034243 -5.714340 3.624841 -10.565993 8.642083 20.228940 -5.400693 11.579883 1.322011 -3.571146 -5.374235 -4.660861 7.577418 6.572030 -11.140367 18.375808 -3.509109 34.749099 -6.099389 14.932262 -11.653141 7.210346 -4.455806 -9.683257 -7.145713 20.312775 13.555322 6.481135 3.814350 0.161753 -6.975311 11.208925 diff --git a/src/test-suite/oracle/FA_llvm12/missCount_ir2vec.txt b/src/test-suite/oracle/FA_llvm12/missCount_ir2vec.txt deleted file mode 100644 index 4d0d1b9b..00000000 --- a/src/test-suite/oracle/FA_llvm12/missCount_ir2vec.txt +++ /dev/null @@ -1,118 +0,0 @@ -PE-benchmarks/subset-sum.cpp 0 -PE-benchmarks/karatsuba.cpp 0 -PE-benchmarks/sort-array-wave-form-2.cpp 0 -PE-benchmarks/word-wrap.cpp 0 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp 0 -PE-benchmarks/binary-insertion-sort.cpp 0 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp 0 -PE-benchmarks/tarjan-algorithm.cpp 0 -PE-benchmarks/topological-sorting.cpp 0 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp 0 -PE-benchmarks/largest-independent-set-problem.cpp 0 -PE-benchmarks/reservoir-sampling.cpp 0 -PE-benchmarks/min-cost-path.cpp 0 -PE-benchmarks/box-stacking.cpp 0 -PE-benchmarks/detect-cycle-in-a-graph.cpp 0 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp 0 -PE-benchmarks/strongly-connected-components.cpp 0 -PE-benchmarks/overlapping-subproblems-property.cpp 0 -PE-benchmarks/count-1s-sorted-binary-array.cpp 0 -PE-benchmarks/bfs.cpp 0 -PE-benchmarks/binomial-coefficient.cpp 0 -PE-benchmarks/tower-of-hanoi.cpp 0 -PE-benchmarks/quicksort-on-singly-linked-list.cpp 0 -PE-benchmarks/biconnectivity.cpp 0 -PE-benchmarks/find-parity.cpp 0 -PE-benchmarks/the-knights-tour.cpp 0 -PE-benchmarks/coin-change.cpp 0 -PE-benchmarks/magic-square.cpp 0 -PE-benchmarks/detect-cycle-undirected-graph.cpp 0 -PE-benchmarks/channel-assignment.cpp 0 -PE-benchmarks/longest-palindrome-substring.cpp 0 -PE-benchmarks/egg-dropping-puzzle.cpp 0 -PE-benchmarks/palindrome-partitioning.cpp 0 -PE-benchmarks/dfa-based-division.cpp 0 -PE-benchmarks/count-ways-reach-nth-stair.cpp 0 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp 0 -PE-benchmarks/eulerian-path-and-circuit.cpp 0 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp 0 -PE-benchmarks/rotate-bits-of-an-integer.cpp 0 -PE-benchmarks/union-find.cpp 0 -PE-benchmarks/longest-increasing-subsequence.cpp 0 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp 0 -PE-benchmarks/trie-suffixes.cpp 0 -PE-benchmarks/m-coloring-problem.cpp 0 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp 0 -PE-benchmarks/weighted-job-scheduling.cpp 0 -PE-benchmarks/euler-circuit-directed-graph.cpp 0 -PE-benchmarks/sieve-of-eratosthenes.cpp 0 -PE-benchmarks/Iterative_QuickSort.cpp 0 -PE-benchmarks/longest-bitonic-subsequence.cpp 0 -PE-benchmarks/cut-vertices.cpp 0 -PE-benchmarks/program-wish-womens-day.cpp 0 -PE-benchmarks/naive-algorithm.cpp 0 -PE-benchmarks/kmp-algorithm.cpp 0 -PE-benchmarks/matrix-chain-multiplication.cpp 0 -PE-benchmarks/snake-ladder.cpp 0 -PE-benchmarks/floyd-warshall.cpp 0 -PE-benchmarks/optimal-binary-search-tree.cpp 0 -PE-benchmarks/bellman-ford-algorithm.cpp 0 -PE-benchmarks/dfs.cpp 0 -PE-benchmarks/tug-of-war.cpp 0 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp 0 -PE-benchmarks/n-queen-problem.cpp 0 -PE-benchmarks/birthday-paradox.cpp 0 -PE-benchmarks/edit-distance.cpp 0 -PE-benchmarks/quicksort-for-linked-list.cpp 0 -PE-benchmarks/mergeSort_LinkedList.cpp 0 -PE-benchmarks/sudoku.cpp 0 -PE-benchmarks/optimized-naive-algorithm.cpp 0 -PE-benchmarks/finite-automata-algorithm.cpp 0 -PE-benchmarks/subset-sum-problem.cpp 0 -PE-benchmarks/partition-problem.cpp 0 -PE-benchmarks/boruvkas-algorithm.cpp 0 -PE-benchmarks/rabin-karp-algorithm.cpp 0 -PE-benchmarks/boolean-parenthesization-problem.cpp 0 -PE-benchmarks/z-algorithm-linear-time.cpp 0 -PE-benchmarks/program-for-nth-fibonacci-number.cpp 0 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp 0 -PE-benchmarks/graph-coloring.cpp 0 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp 0 -PE-benchmarks/ugly-numbers.cpp 0 -PE-benchmarks/longest-palindromic-subsequence.cpp 0 -PE-benchmarks/aho-corasick-algorithm.cpp 0 -PE-benchmarks/shortest-common-supersequence.cpp 0 -PE-benchmarks/boyer-moore-algorithm.cpp 0 -PE-benchmarks/rat-in-a-maze.cpp 0 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp 0 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp 0 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp 0 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp 0 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp 0 -PE-benchmarks/lexicographic-rank-of-a-string.cpp 0 -PE-benchmarks/Nearly_sorted_Algo.cpp 0 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp 0 -PE-benchmarks/maximum-length-chain-of-pairs.cpp 0 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp 0 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp 0 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp 0 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp 0 -PE-benchmarks/find-two-non-repeating-element.cpp 0 -PE-benchmarks/permutations-of-a-given-string.cpp 0 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp 0 -PE-benchmarks/little-and-big-endian-mystery.cpp 0 -PE-benchmarks/cutting-a-rod.cpp 0 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp 0 -PE-benchmarks/transitive-closure-of-a-graph.cpp 0 -PE-benchmarks/find-k-closest-elements-given-value.cpp 0 -PE-benchmarks/mobile-numeric-keypad-problem.cpp 0 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp 0 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp 0 -PE-benchmarks/vertex-cover-problem.cpp 0 -PE-benchmarks/largest-sum-contiguous-subarray.cpp 0 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp 0 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp 0 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp 0 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp 0 -PE-benchmarks/anagram-substring-search-search-permutations.cpp 0 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp 0 diff --git a/src/test-suite/oracle/FA_llvm12_f/ir2vec.txt b/src/test-suite/oracle/FA_llvm12_f/ir2vec.txt deleted file mode 100644 index 655da6b6..00000000 --- a/src/test-suite/oracle/FA_llvm12_f/ir2vec.txt +++ /dev/null @@ -1,2145 +0,0 @@ -PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -0.228476 0.869753 2.641114 2.051855 -1.553253 -1.836657 -0.719214 -1.776347 0.945135 0.192828 1.301626 -0.234599 0.536595 0.290440 -0.152218 -0.541664 0.772143 0.355286 -0.392027 -0.741375 -0.997586 1.639215 0.922239 -2.127713 0.365195 -1.594487 1.252517 1.026108 0.726807 1.281100 0.057909 0.027724 -0.308286 1.079108 -1.418720 -0.586457 -0.197120 0.436981 -1.120812 -0.261171 0.768578 0.438153 1.379979 -0.038693 0.776013 0.937905 0.922403 0.075387 -1.561551 -0.333885 -0.730390 1.574497 -0.574777 1.173377 0.114325 0.669387 0.457027 -1.318915 -0.111972 -1.670838 0.361853 0.398441 -0.763039 -0.165119 -1.465624 0.029662 -0.221910 -1.405783 0.792613 -0.485082 0.823653 -0.126831 -0.006595 -1.234611 -1.324845 0.603542 0.352170 0.849213 0.785546 0.442332 -0.000223 0.075255 -0.914072 -1.023662 0.258825 -0.011091 0.448305 0.371909 -0.141758 -1.032880 0.553168 -0.178855 -0.188825 1.176248 -0.906246 1.022098 -0.709420 -0.431863 -1.204142 -1.242667 -0.070985 -0.995409 0.706299 0.849675 -0.800174 0.433990 0.300610 0.550682 0.171329 -1.555833 0.115720 -0.581761 0.033267 1.590269 -0.637105 -0.827113 0.151318 -0.224369 -0.351930 1.413489 -0.076928 0.323175 1.284028 1.055827 0.637043 -1.173902 0.049472 0.144893 0.574516 0.955093 1.200870 -1.234818 -0.765020 0.053875 -0.407974 -2.396482 0.074712 0.707470 1.381908 0.282805 -1.700306 0.652232 -0.888984 1.275690 0.541340 1.154414 0.586439 -0.281480 -0.900414 0.524106 2.482747 -0.829245 1.065700 -0.677209 -1.705210 1.653644 -0.138615 1.089359 -0.040118 -0.173754 0.508147 -1.146934 0.175373 1.829023 0.338230 0.050907 1.165405 -0.017729 -0.742105 -2.433326 -2.150917 0.092201 0.924827 0.325186 2.862965 -1.402258 -0.929723 -0.492677 1.666389 -0.717151 -0.438067 0.198583 -0.611898 0.749791 -2.786459 -2.279104 2.247423 1.889790 0.115003 -0.170474 1.531074 0.097198 -0.429653 -1.298408 -1.091227 0.643603 0.554086 0.109204 -0.167080 0.000981 -1.623893 0.082100 0.409749 0.454966 1.077487 -1.079263 -0.476322 -0.569381 -1.867761 -1.391640 0.594026 -1.618502 -0.123439 0.364935 0.141962 -0.142260 0.688685 -0.275817 -1.223621 0.024221 -0.852967 -0.221397 0.093269 1.169879 0.166947 2.056874 1.759291 -0.115080 1.359424 0.615684 -1.038470 4.255684 -1.341104 0.052857 -0.036675 1.496473 -0.240262 0.621886 1.008030 -0.582619 -0.756433 -1.604283 0.371803 -0.075801 0.469577 -2.672910 -1.056550 -1.834526 -0.512071 0.124207 1.470762 -0.101625 2.874782 -0.412239 0.253907 -3.333741 0.095899 1.209878 -0.144207 1.177359 0.999153 -1.479782 -2.480345 -0.219872 -0.921778 0.772543 -0.374537 -1.493646 -0.888992 -0.285754 0.396443 -0.604580 0.658013 2.175494 -0.596639 0.826422 -0.129747 -0.266865 -0.227991 -0.827650 1.020710 0.302723 -1.103385 1.752168 -0.046823 3.480449 0.051579 1.274590 -1.016158 0.071417 0.008634 -1.018243 -0.849713 1.754841 1.027557 0.645539 0.271479 0.336569 -0.798380 1.020526 -PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.800518 -0.133929 1.839985 1.494250 -0.923641 -0.982914 -0.569338 -1.098295 1.050013 0.702374 1.469112 0.310065 1.077261 -0.603091 -0.250865 -0.929253 0.859611 -0.204935 0.156610 -0.480591 -0.237704 2.035153 1.117911 -1.489428 0.129998 -1.265780 1.615987 0.247088 0.676714 2.111883 0.109217 0.233449 -0.249515 0.678722 -0.636367 -0.067118 -0.536230 0.922711 -0.426800 -0.286575 0.969871 -0.221728 1.268814 0.185995 0.914941 0.291924 0.160577 -0.369640 -1.254844 -0.720221 -0.308657 -0.194407 -1.124808 0.717875 -0.609071 0.195247 0.440116 -0.111015 -0.218909 -2.306746 0.551793 -0.121481 -0.672499 0.004451 -1.195281 0.265837 -0.822353 -0.924076 0.034475 -0.880335 0.594924 0.520631 0.415070 -0.811222 -1.564745 0.479941 0.304580 0.177266 0.734119 0.744385 -0.846567 -0.312013 -0.812936 -0.958155 0.559204 0.084320 0.087740 0.540257 -0.183019 -0.618448 0.287851 0.584255 0.026417 0.886853 -0.504355 0.760990 -0.169830 -0.275076 0.418845 -0.883251 -0.029526 -1.121827 0.326733 1.222990 -0.992161 0.294786 -0.313642 0.581107 -0.430691 -1.135094 0.477962 -0.777058 -0.527731 1.154731 -0.548759 -0.646482 -0.601952 0.151142 0.825713 1.025796 -0.279282 0.550624 0.844875 0.624817 0.604434 -1.324782 0.274248 0.800578 0.600393 0.321614 0.422288 -0.272094 -0.740278 -0.004811 -0.484960 -1.855844 -0.568942 0.486907 0.777079 -0.280184 -1.192419 0.898374 -0.912602 0.994877 1.512332 0.794435 0.661384 0.329697 -1.077797 0.554250 1.738184 -0.567350 0.619793 -0.300983 -1.771972 2.073137 -0.351784 0.998324 -0.616482 -0.033117 0.352710 -1.105534 0.494092 1.543692 -0.164927 0.681323 0.136766 0.087525 0.244199 -1.518515 -1.833745 -0.317645 1.542760 1.540560 2.382432 -1.093592 -0.019731 0.062460 0.697671 0.468213 -0.547832 0.039173 -0.121551 0.580400 -4.120336 -2.117458 2.151027 1.320092 0.677658 0.194669 0.595177 0.342025 0.507131 -0.758763 -0.944787 0.758569 0.278654 0.093258 -0.045350 0.382770 -1.238166 -0.563393 0.441946 0.067022 0.882630 -1.693304 -0.394622 -0.486912 -0.730464 -0.864132 0.858307 -1.419429 -0.735883 -0.212524 -0.053028 0.199540 0.262000 0.115424 -0.169229 -0.186488 -0.395213 -0.384456 -0.066625 0.824969 0.075498 0.911684 2.185368 -0.753663 -0.704320 0.239863 -0.752127 3.192959 -1.348855 -0.247827 0.156576 1.043606 0.619081 0.384158 0.983799 -0.482426 -0.009693 -1.292801 0.387574 0.741762 0.589835 -2.562034 -0.969549 -1.423691 0.303537 -0.080469 1.683348 0.059148 2.746005 -0.662864 0.213398 -2.105356 0.017354 1.181519 0.133939 1.481562 0.702721 -0.988295 -1.525869 -0.681287 -0.928834 1.759489 -0.370791 -0.858282 -0.767403 0.131646 0.216989 -0.672492 0.741590 1.189323 -0.914857 1.236342 0.121232 -0.192234 -0.791112 -0.180422 -0.211591 0.688351 -0.703446 1.491764 -0.149555 1.944419 -0.315255 0.834214 -0.810521 1.139774 -0.811620 -1.084652 -0.584244 1.638905 1.146015 0.597808 0.445010 0.091777 -0.206986 0.808342 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -5.786228 3.149354 26.664261 18.167047 -5.377388 -10.629519 -6.608325 -9.436612 10.795476 2.344630 14.451645 0.275204 5.466214 2.280799 -1.168683 -10.469706 5.338518 -3.507648 -3.634423 -5.208371 0.829103 18.356546 14.375006 -23.038974 1.248919 -23.423266 10.833634 6.574901 7.474220 18.090647 -1.877662 1.123942 2.271223 10.061778 -14.241383 -6.202006 -2.075372 2.782324 -5.455139 -5.291090 11.407934 12.844408 11.809414 2.368910 6.896613 7.089906 7.394531 -4.247032 -10.253337 -4.547210 -8.356339 12.647753 -8.657813 8.041503 -1.815621 12.622229 4.623921 -14.161253 -3.284767 -24.220082 5.486300 12.849195 -6.614717 -2.526770 -12.617433 2.434737 -1.341699 -7.006149 7.007598 -8.167839 9.125687 2.349601 3.546245 -14.568974 -10.293724 9.048062 -1.774184 6.582304 5.756781 1.335813 -8.867285 2.932860 -4.649556 -7.829744 1.831818 -1.515410 0.517612 3.341640 5.927294 -9.246768 1.071915 0.968233 -8.188901 11.228442 -7.553880 11.361729 -1.288781 -3.319149 -2.786309 1.113052 -3.646310 -13.485489 2.510543 16.071995 -7.114531 4.680027 -0.713867 3.729169 -0.517699 -12.767269 3.113053 -1.394936 -4.581874 10.759197 -10.683084 -5.009804 1.886149 2.345900 1.183097 16.150158 -6.562569 6.755722 10.292976 8.796451 3.394909 -11.228100 7.249552 3.489324 9.027239 7.223768 11.034313 -9.831924 -7.552087 -3.495046 0.887622 -22.281272 3.551435 7.805765 12.478828 5.907632 -24.693977 10.692697 -7.070005 15.835859 11.164710 9.522157 6.974812 -1.418698 -10.270314 7.047115 26.812597 -9.250669 10.874256 -9.282213 -18.024026 20.578591 -7.127194 13.594530 -3.877327 3.089145 9.700980 -14.524891 2.513895 19.031859 3.279653 6.656467 11.623183 -2.420616 7.009339 -23.497982 -19.754128 -5.784589 3.653187 4.427550 28.176383 -10.130827 -5.280628 -6.283900 12.620156 -6.704357 -3.711727 -1.658499 -3.448902 4.267356 -35.257824 -22.021557 22.970540 21.589726 -0.668599 2.764582 14.704923 4.275993 7.497263 -5.745127 -7.884185 9.034844 6.159320 8.675772 4.394213 -1.745863 -12.110345 -5.445860 3.471514 1.147926 7.718732 -16.849866 -11.125011 -1.207748 -19.371366 -11.989863 4.344031 -19.987807 -6.596161 0.337376 0.648437 -2.040968 3.710957 -1.174944 -8.707527 5.066813 -7.543526 -6.231939 1.459959 12.192121 4.924861 9.423775 16.529635 0.019657 7.507639 8.576291 -8.083573 39.464215 -14.065275 -5.243848 -0.252018 13.765909 1.013928 8.725817 1.984495 -4.119797 -3.299725 -14.944927 13.899529 -0.967780 4.418680 -26.069396 -10.786272 -10.636613 -5.562994 4.908994 14.224360 -0.574083 31.728569 -3.644071 0.181883 -31.023175 -0.960474 15.851894 2.140714 9.897746 11.939312 -12.012888 -26.177266 -3.611338 -3.775018 17.183001 -4.201226 -17.890952 -9.045675 -5.889159 8.224626 -10.283338 11.662135 18.850879 -3.284394 8.998364 2.647908 -4.111886 -4.921311 -7.693719 -0.018084 9.450792 -8.617936 15.896495 -5.603499 22.796627 -8.315833 14.205263 -14.168787 7.394111 -4.499062 -7.115425 -6.013263 18.676131 10.431316 3.805036 4.347859 -1.753563 -8.312441 9.880908 -PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -3.020551 1.611396 12.606525 8.821313 -4.503625 -6.099759 -3.089068 -6.147768 5.380793 1.844701 7.053973 0.493996 3.223535 0.184016 -0.505315 -4.443140 3.333024 -0.836160 -1.422633 -2.881817 -0.574603 9.252789 6.528072 -10.264870 1.103192 -9.847218 5.760867 3.198560 3.818375 8.406635 -0.371265 0.417769 -0.501040 4.608773 -6.024326 -2.176562 -1.341293 2.005054 -3.465073 -2.006298 4.862008 3.837289 5.900582 0.482611 4.270096 2.919341 3.657287 -1.416429 -6.063456 -2.738757 -3.121883 5.425120 -3.948132 4.726989 -0.237080 4.421418 1.554423 -5.613245 -1.226675 -10.914114 2.656998 3.770113 -3.308163 -0.776840 -6.422634 0.898608 -1.426811 -4.210845 2.956153 -4.290281 4.026845 0.556763 1.184639 -6.456395 -6.086945 3.477109 0.106399 2.941075 3.051884 2.111198 -3.524926 0.437345 -3.145368 -4.373280 0.824366 0.117705 0.297328 1.592643 0.773158 -4.123370 1.395963 0.293281 -2.710889 5.447905 -4.825183 4.881646 -1.203385 -1.807959 -1.913114 -2.092228 -0.972268 -5.956077 1.940211 6.336508 -3.740802 1.829208 -0.025253 2.199041 -0.112499 -6.454968 1.523260 -1.318073 -1.347702 6.146456 -4.316176 -2.756171 -0.300701 0.590398 0.536928 7.143736 -2.105563 2.738729 5.592644 4.370479 2.702365 -5.691938 2.264460 2.329719 3.888760 3.340694 4.683236 -4.594784 -3.485165 -0.633519 -0.741793 -10.725161 0.133795 3.901113 6.329058 2.025117 -9.696219 3.838896 -3.685740 7.149380 5.135922 4.401851 3.113080 -0.290386 -4.933133 2.923411 12.575494 -3.998780 4.591693 -3.675490 -8.567939 9.960718 -2.595882 6.125609 -1.382349 1.164905 3.384051 -6.498499 1.309797 8.936536 1.249723 2.604190 4.415183 -0.442957 1.362001 -11.118280 -10.320973 -2.159545 3.252579 3.451598 13.523847 -5.491505 -2.465141 -2.658390 6.193317 -2.005390 -2.481514 0.027984 -2.125954 2.498668 -16.719224 -10.578012 11.205192 10.532374 0.741794 0.718857 6.845500 1.690032 1.406350 -4.042557 -4.568425 4.154765 2.230532 2.600943 1.197680 0.003580 -6.932863 -2.042562 1.603447 0.881333 4.544995 -7.350602 -3.803951 -1.001845 -8.400438 -5.904977 2.658119 -8.390675 -2.731644 0.085687 0.494925 -0.320111 2.196833 -0.779691 -4.027741 1.391830 -3.654275 -2.266702 0.673802 5.325882 1.596259 5.958835 8.431034 -0.650191 3.244316 3.036888 -4.387050 19.330951 -6.582534 -1.630442 -0.201634 6.276072 0.602034 3.697913 2.394510 -2.300888 -1.725563 -7.034328 4.647430 -0.023638 2.602611 -13.434377 -5.888776 -6.718726 -1.753086 1.331297 7.077240 -0.022323 15.083747 -2.396956 0.843985 -15.448020 -0.035975 6.942988 0.597651 5.569466 4.875950 -6.066172 -11.536370 -1.577998 -3.075247 7.299935 -1.816599 -7.473590 -4.268368 -1.993762 3.517730 -4.097199 4.543609 8.884686 -2.442796 5.184732 0.978136 -1.638754 -2.495919 -3.260793 1.054410 3.801577 -4.440299 7.818277 -1.549754 12.357406 -2.695482 6.174511 -5.665722 3.270645 -2.246019 -4.779407 -3.235111 8.563307 5.480781 2.543226 1.536648 -0.239896 -3.693557 4.523872 -PE-benchmarks/subset-sum.cpp__main = -0.616951 0.843025 4.120553 2.253487 -1.614559 -2.679435 -1.160907 -3.136063 1.896115 0.758344 2.610534 0.009184 1.460850 0.063298 -0.120681 -0.668465 1.474355 -0.407623 -0.019444 -1.206188 -0.675478 3.644013 1.662574 -2.236921 0.490790 -3.474436 1.896139 1.001329 1.649196 2.837357 0.142502 0.064419 -0.335539 1.467151 -1.605747 -0.329637 -0.264539 0.849030 -1.595869 -0.089979 1.052351 0.653337 2.268851 0.246774 1.583591 1.100625 1.192740 -0.045443 -1.775051 -1.058500 -1.147502 1.903434 -1.329308 1.554024 -0.324076 0.720230 0.505367 -1.390121 -0.390396 -2.612360 0.346023 0.560776 -1.277210 -0.008094 -2.289332 0.451932 -1.126606 -1.549032 0.573322 -1.099489 1.531218 0.385447 0.314407 -1.469070 -2.970452 1.038894 0.236444 1.055048 1.165016 0.519337 -0.937517 0.140586 -1.597254 -1.934038 0.959075 0.811709 0.366317 0.445636 -0.556666 -1.303152 0.104866 0.104749 -0.251858 1.847563 -1.658984 1.443853 -0.671600 -0.776872 -1.040972 -1.939162 -0.157292 -1.872193 0.809123 1.328918 -0.790936 0.299265 -0.248983 0.729284 -0.250369 -2.326898 0.689615 -0.609084 -0.598186 2.717671 -1.263806 -0.906920 -0.636308 -0.059614 0.035584 2.327345 -0.173031 0.812996 2.040095 1.704995 1.002434 -1.929940 0.160189 0.810468 1.302454 1.033574 1.659506 -1.617346 -1.467402 0.112377 -0.678119 -3.842677 -0.446086 1.467226 2.178539 -0.007661 -2.337973 1.179449 -1.433370 2.222226 1.995873 1.139001 1.094528 -0.189565 -1.775241 1.295069 4.248523 -1.370773 1.754407 -1.485644 -2.475614 3.341066 -0.995910 1.892523 -0.340847 0.157695 0.348591 -1.857835 0.489934 2.922023 0.469356 0.856842 1.215769 0.098189 -0.110518 -3.401308 -3.713849 -0.530601 1.797340 1.017475 4.230349 -1.990806 -0.860116 -0.591401 2.152966 -0.284351 -1.104088 0.405311 -1.028955 0.953710 -5.496575 -3.534787 4.111144 3.766350 0.732947 0.081364 1.994509 1.067046 -0.484036 -1.775886 -1.577994 1.552270 0.378811 -0.739022 -0.368366 0.237953 -2.527780 -0.575598 0.214591 0.584684 1.629086 -1.630182 -0.354142 -0.667965 -2.641998 -1.980479 1.299491 -2.454707 -0.992981 0.192219 0.034059 -0.163029 0.897109 -0.358858 -0.886481 0.635756 -1.466847 -0.448582 0.385219 1.668128 0.342865 2.588123 3.144271 -0.315666 1.231480 0.663850 -1.604383 5.744878 -2.058794 -0.133613 -0.135983 1.878193 0.005037 1.209197 1.260369 -0.804384 -1.246220 -2.475186 1.114053 0.283461 0.953339 -3.310542 -2.333799 -2.812439 -0.367434 0.340970 3.064364 0.059837 4.937247 -1.011343 0.654707 -5.024071 0.258673 1.799210 0.112505 2.026290 1.415447 -2.007633 -2.951833 -0.612349 -1.725341 1.157193 -0.568059 -2.507128 -1.532968 -0.821681 1.153320 -1.489728 1.061804 2.632354 -0.780654 2.048049 0.238406 -0.592841 -1.414374 -0.546786 1.341355 0.782553 -1.508548 2.446048 -0.258452 4.744900 -0.635461 1.994869 -1.539490 0.840220 -0.524100 -2.009369 -1.125561 3.096030 2.088890 0.771559 0.404151 -0.165789 -0.577653 1.503671 -PE-benchmarks/karatsuba.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -1.045231 3.552786 11.503063 7.203728 -5.849887 -6.570013 -3.091479 -10.146210 5.285698 2.727157 6.803499 -1.519896 3.289472 0.295536 -1.622359 -2.130470 4.315738 -0.715604 -1.077032 -3.887282 -4.038447 7.801711 2.319112 -6.540015 1.879987 -9.145488 6.827576 2.741825 3.055418 5.288197 1.689130 0.591863 -0.892787 4.961638 -4.326875 -0.799294 0.442407 2.571601 -3.945119 -0.998245 3.650009 2.506194 6.537427 1.084280 4.385031 4.429546 2.752854 -0.100324 -6.165404 -1.777520 -1.563823 4.728811 -2.842863 4.637732 0.270306 1.890006 2.318657 -6.248213 0.116397 -5.048242 0.853524 1.155297 -3.159287 -0.031125 -6.217267 0.227978 -1.125507 -5.074008 2.078061 -2.957917 3.409314 0.149029 -0.354489 -4.410791 -6.202958 3.341480 2.496665 1.849784 4.075677 1.332071 -0.726455 -0.393951 -5.182494 -5.738658 3.167618 2.673674 2.044840 2.211877 -0.604291 -4.543376 1.558217 -0.993699 0.107600 6.529257 -3.756883 2.475924 -2.141160 -3.259674 -5.234458 -5.993492 0.097653 -4.906987 3.495257 4.086096 -4.962128 2.270219 1.407851 2.120733 0.770835 -4.994739 0.909120 -3.684747 2.346245 7.703987 -2.328267 -5.195179 -2.591084 -1.466334 0.168115 5.683060 -0.470037 0.488243 8.397618 4.128589 3.759940 -5.685773 -0.063866 1.380981 1.543993 3.031546 4.737022 -6.386547 -3.388063 0.627440 -2.086498 -10.234612 -1.533500 1.042588 5.983192 -1.553785 -6.770622 4.003066 -3.518068 5.158284 4.208481 3.484216 2.682414 -0.212475 -3.999521 2.055700 9.922918 -3.055320 3.591493 -5.148359 -6.807466 6.391719 -0.427726 4.420485 -0.342150 -0.729271 0.275843 -5.377762 2.750752 8.167714 -0.034589 0.221385 3.321718 0.781809 -1.888733 -8.740194 -10.335200 0.350612 4.084595 2.561154 12.858528 -6.797293 -2.843453 -2.154296 6.479853 -0.879428 -1.986865 1.851377 -3.003051 2.989529 -11.589384 -10.007607 10.234155 8.692859 2.170391 -1.426856 5.499256 -0.512044 -2.216658 -5.489580 -4.736039 3.669690 2.580661 -1.232933 -0.748058 1.015403 -6.820302 -1.002177 0.629024 2.089621 6.216611 -5.575390 -0.928595 -3.743101 -6.800698 -6.489259 3.776635 -5.413611 -1.750378 0.706950 0.756137 -0.297572 3.836307 -0.804194 -4.624678 -0.349241 -3.220167 -1.495270 1.475106 5.526693 -0.327553 8.085842 8.320218 -1.828722 4.310456 1.569248 -3.551000 15.348109 -5.136490 -0.123502 0.237749 5.179327 -0.006182 2.971537 5.200503 -2.771298 -3.052636 -6.703874 2.286203 -0.296603 1.624471 -10.705503 -3.898638 -9.157081 -1.713522 -0.973514 7.728911 0.789688 12.996913 -1.349467 1.243945 -12.907784 0.261783 5.230133 -0.106395 4.949033 4.234376 -7.076656 -7.502419 -1.112947 -5.982669 1.043053 -1.008442 -4.868229 -5.153387 -1.320669 2.914492 -2.383296 2.774227 9.057547 -1.586026 3.347840 -0.647785 -0.737926 -2.327605 -2.986091 4.904884 0.841658 -4.109031 6.283386 -0.318499 13.868684 -0.585290 5.365941 -4.180928 1.170622 -0.503207 -5.733272 -4.351915 7.699328 4.337852 2.612363 1.099035 -0.214665 -2.251551 6.141698 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = 0.399605 2.206928 5.885788 2.343297 -4.060999 -4.799275 -1.624070 -7.459140 3.330705 2.228652 3.786533 -0.413799 2.200443 -0.733319 -1.107705 1.277549 2.653606 -0.279105 -0.755726 -2.937553 -4.001685 4.219033 0.107852 -0.654734 2.140730 -5.351962 4.309218 0.278897 2.347590 2.839433 2.297877 0.122192 -1.030447 2.721481 0.169965 2.087241 -0.098066 1.674681 -2.608978 1.041566 1.657289 -1.015867 3.523214 2.052114 3.371310 2.545373 1.551175 0.278679 -3.308781 -1.221584 -1.974417 2.952809 -2.417180 2.640171 -1.191751 0.298631 0.620957 -2.288586 0.520021 -0.695475 -1.049461 -1.675905 -2.499210 0.232918 -3.777358 0.270428 -2.605538 -2.695283 -0.766945 -0.846976 2.565971 0.456442 -0.841478 -0.343447 -4.878461 0.848587 1.378960 1.174423 3.616581 0.418763 -0.387925 -1.197657 -3.666370 -4.080284 3.986751 1.492897 1.365099 1.021390 -1.373259 -2.548348 -0.947841 -0.393399 1.955257 3.563936 -3.844475 0.301202 -1.786896 -2.076586 -2.878025 -5.542203 0.572273 -2.516306 1.881754 0.604551 -2.402789 0.929255 0.305165 0.899881 0.195742 -2.167199 0.704352 -1.972934 0.721165 5.299861 -0.597974 -3.454688 -1.713331 -1.021828 0.002380 2.663188 1.601197 -0.175962 5.834616 2.280483 3.657258 -2.740649 -0.908144 1.069819 0.561413 1.568405 2.469865 -2.944548 -2.575200 1.138493 -1.407835 -6.237620 -1.237341 0.837384 3.566219 -1.097066 -1.748596 1.086703 -1.911975 1.447173 2.333772 0.916242 1.964937 -0.319910 -2.725453 1.239732 6.049959 -1.564485 1.811192 -3.016812 -2.020345 3.522719 -0.807840 1.271285 -0.130668 -1.065655 -0.694931 -2.454990 0.553905 4.398107 -0.569105 -0.644111 1.271265 1.770574 -2.713918 -4.200340 -5.660486 -0.093300 3.808661 1.226634 5.446297 -4.132891 -0.123028 -1.134311 3.997159 0.361820 -1.236034 1.572056 -2.240019 1.813292 -5.302902 -5.014163 7.049354 5.550307 2.046015 -1.356294 1.901399 1.593495 -3.949622 -3.691711 -3.152575 1.335971 1.550281 -3.716597 -2.344024 1.042411 -4.314579 -1.030056 0.194796 1.453445 3.193992 -1.274411 1.403092 -1.547670 -2.110769 -3.565174 2.770561 -2.182216 -1.110906 0.499258 0.560963 -0.124154 2.417428 -0.682830 -1.439430 0.039153 -1.921230 -0.257796 1.460584 3.444569 0.038955 5.672542 5.120187 -1.658973 2.097452 0.153861 -2.447001 6.307880 -2.011518 0.718381 0.262174 2.174499 0.086157 1.499241 3.496354 -1.984750 -2.748136 -3.746195 -0.131886 0.132038 0.749092 -2.338210 -2.059016 -6.140383 -0.264201 -1.107453 4.753858 0.585219 6.778462 -0.990664 0.981878 -6.010988 0.481668 3.253236 -0.578080 3.200148 2.084257 -3.436671 -1.855994 -1.414304 -4.001449 -1.170742 -0.347264 -0.832388 -2.987339 -0.913154 2.012374 -1.762801 1.181683 3.559396 -0.209457 2.785442 -1.165347 0.164525 -2.571716 0.193754 4.448272 0.488770 -2.610819 3.289712 0.624124 8.270360 0.354877 2.392526 -1.595243 -0.481658 -0.348591 -3.712665 -2.833405 4.151943 3.155131 2.019591 0.679020 -0.045816 0.021319 3.963769 -PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.466376 5.363005 16.282603 8.046383 -8.094139 -9.356711 -4.181462 -13.818725 6.367782 4.107269 8.695961 -2.544717 3.713900 2.224275 -1.991623 -0.469215 5.073865 -1.749246 -0.252028 -5.597768 -6.918535 10.293074 3.101857 -6.160585 2.791772 -13.770990 10.122478 1.863482 4.365895 7.911221 3.693731 0.662393 -0.848178 6.591558 -3.743501 1.796598 -0.084271 3.944552 -4.369090 1.309810 4.706848 2.795800 7.323424 2.431187 6.569938 7.959634 4.388138 0.092371 -7.957548 -2.314367 -4.928758 6.996969 -5.447625 5.587498 -1.608294 3.085380 1.690567 -8.519808 -0.486927 -5.720564 -1.020038 1.401430 -5.521560 0.868105 -9.386039 1.234865 -3.655967 -5.776891 1.749583 -1.506766 6.114902 0.516734 -0.155823 -3.377788 -9.342564 4.144277 1.587621 3.070893 6.446825 -1.338701 -1.892714 0.116384 -6.662234 -8.625206 5.379781 2.946860 2.149448 0.776450 0.884517 -5.916694 -0.697859 -1.546094 -0.754539 9.915447 -5.955544 5.061729 -4.446352 -3.900500 -6.716584 -9.123161 -0.465488 -7.591472 4.395433 5.918734 -5.012615 1.782172 1.078892 2.354124 0.918926 -6.728768 1.153451 -3.887328 2.310236 9.973869 -2.822654 -6.398751 -2.499049 -2.051824 0.578245 8.450704 0.938323 0.992217 12.147130 5.945067 6.426716 -7.196976 -0.782523 1.326764 2.092972 4.676087 7.434488 -8.563522 -5.813714 -0.241325 -1.075103 -13.253249 -0.346409 2.338400 7.838944 -2.577993 -8.282192 3.625305 -4.769275 6.795528 6.103815 5.209225 4.155202 -0.971927 -5.404622 3.370066 16.683443 -4.627106 4.893379 -7.409695 -7.750897 9.691481 -2.270906 6.030178 0.434549 0.472449 -0.500987 -8.021218 1.495674 11.368095 0.741676 1.122198 6.672482 2.297030 -2.678750 -11.862320 -12.146733 -0.765416 6.373490 1.330800 16.572549 -9.285940 -2.329078 -2.168563 8.497446 -0.602854 -2.457758 1.577586 -3.540191 3.653743 -15.471731 -12.876798 14.950867 12.027455 2.424923 -2.133000 6.047960 2.611405 -4.736289 -8.086125 -7.178790 5.329345 2.019385 -1.812016 -2.176060 1.531012 -9.497860 -1.829012 0.288599 3.410367 8.321960 -6.044549 -3.018552 -2.798751 -9.630894 -8.844607 5.001553 -8.492424 -4.509107 1.021139 1.372195 0.027526 3.640020 -0.902828 -4.659416 1.057972 -4.541065 -1.625072 3.787260 7.201124 -0.239644 11.100489 11.877263 -1.981084 4.613315 2.269329 -4.565804 19.460739 -5.328381 -0.229204 0.553659 6.357864 -0.434022 3.562699 6.354631 -3.832336 -6.541973 -9.124411 3.588688 -0.971421 2.268273 -10.568435 -5.096221 -12.135618 -1.960994 0.358090 11.295342 1.489585 17.758745 -0.762784 2.462570 -16.629291 0.734362 7.900250 -0.615332 6.265530 5.970692 -8.371236 -7.394578 -2.279014 -6.547248 0.912915 -1.418756 -6.306010 -6.794130 -2.388912 2.477963 -2.612555 3.353898 11.080655 -0.977331 4.546492 -0.200443 -1.688708 -3.905685 -2.380193 8.250867 2.322327 -6.597632 8.788165 -0.529988 19.337109 -1.566482 6.907970 -4.901094 -0.219433 -0.379926 -5.595245 -5.253448 11.060195 5.659273 4.086606 2.066600 -0.559067 -1.935442 8.157775 -PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.217382 0.455544 1.667943 0.649510 -0.006068 -0.268891 -0.031321 -1.120998 0.501427 0.247629 0.648173 -0.091301 0.454879 0.461639 0.141021 0.057015 0.350655 -0.112112 0.454683 -0.129370 0.846165 1.030395 0.274527 -0.828647 -0.172158 -1.586225 0.645402 0.249170 0.936557 0.561549 0.233710 0.002271 0.077370 0.334341 -0.728882 -0.568994 0.066457 0.312515 -0.723365 -0.103009 -0.240832 1.113581 -0.238046 -0.047709 0.335998 0.236542 1.037491 0.020827 0.367379 0.026667 -0.767427 1.228340 -0.248487 0.358818 -0.096162 0.077081 -0.398909 -0.494813 -0.268926 -0.694131 0.356822 0.950236 -0.460798 0.090854 -0.902001 0.352498 -0.198472 -0.125277 0.167874 0.672338 0.675618 0.213358 0.629624 -0.858123 -1.314924 0.441206 -0.715725 0.405447 0.216272 -0.497016 -0.275873 0.350033 -0.146266 -0.579122 0.301521 0.913855 -0.318865 -0.519411 0.531200 -0.151138 -0.636182 -0.242629 -0.802242 0.753414 -0.616962 1.033821 -0.701914 0.308690 0.104279 0.031544 -0.275333 -1.047697 0.198312 0.427017 0.525270 0.291787 0.310335 0.262473 0.144769 -0.667323 0.094433 0.329725 -0.059419 0.827741 -0.367207 0.065287 0.095348 0.261066 -0.147338 0.742488 -0.192524 0.713784 0.761883 0.632235 0.007045 -0.416393 0.154630 0.791353 0.243425 0.731929 0.584688 -1.156641 -0.463905 -0.355727 0.456966 -0.913399 0.672968 0.685731 0.358406 -0.424976 -0.938030 -0.027508 -0.221611 0.994643 0.795479 0.460571 0.336232 0.122126 0.018004 0.419173 1.899089 -0.431215 0.312928 -0.672723 0.006785 0.635135 -0.356765 0.789808 -0.118413 0.856350 0.325078 -0.941514 -0.402716 0.944130 0.601075 0.602399 1.140699 -0.074761 0.266993 -1.318950 -0.418026 -0.574797 0.009070 -0.590864 1.279472 -0.219456 -0.411793 -0.137660 0.242778 0.027875 -0.091084 -0.016146 -0.396525 0.100018 -1.007983 -0.911286 0.584108 0.821866 -0.246287 -0.484787 0.763136 0.651002 -0.430182 -0.657756 -0.172218 0.652569 -0.506049 -0.024527 0.038338 0.114176 -1.002307 -0.282428 0.203984 0.149833 0.780419 0.185541 -0.556302 0.535657 -1.383993 -0.650426 0.534069 -0.578227 -0.634764 -0.254971 0.286990 0.047916 -0.021005 -0.618705 -0.021000 1.242184 -0.400021 -0.373538 0.476904 0.273658 -0.081835 0.551729 0.219586 0.817874 0.482801 0.501480 -0.600467 1.814783 0.320496 -0.450309 -0.100286 -0.063336 -0.630214 0.416354 -0.356331 -0.238072 -1.106891 -1.013289 0.651208 -0.421604 0.408860 -0.151104 -0.346788 0.218239 -0.427782 0.550682 0.886269 0.220495 1.516800 -0.276440 0.347748 -1.350788 0.131734 0.429859 -0.141392 0.444613 0.706537 -0.463142 -0.364752 -0.094461 0.173841 -0.181878 -0.338635 -1.361256 -0.747552 -0.517945 0.222131 -0.369238 0.163195 0.972324 0.122831 0.581718 -0.167212 -0.221853 -0.151123 0.116040 0.265008 0.555999 -1.034889 0.571845 -0.665160 1.839529 -0.818682 0.554791 -0.775450 -0.207616 -0.303000 -0.054858 -0.034916 1.182902 0.319236 0.405217 0.093744 -0.492071 -0.416355 0.369919 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 4.455235 28.646258 62.801812 17.624933 -37.642878 -34.503304 -15.077460 -64.056971 23.394854 19.680836 31.820787 -6.809335 15.487384 2.975605 -9.498478 11.596955 21.521118 -1.313220 -8.354501 -24.674531 -43.076280 21.481455 4.836215 -12.867651 23.913040 -44.599130 37.793158 -1.064664 14.928320 18.677540 21.968180 4.946626 -7.474805 28.948225 2.773048 12.936786 2.255443 16.528428 -19.322575 11.991564 16.518826 -5.122984 23.305539 18.574250 27.586991 31.043717 14.146713 1.465587 -29.747235 -2.600152 -13.770493 32.083125 -22.340585 20.708271 -4.594085 10.552430 -2.602658 -33.371044 3.105549 -8.709833 -7.544861 -13.469614 -24.971960 2.719565 -34.240793 0.960254 -16.525588 -26.397131 -3.816347 0.821254 20.719417 1.179538 -9.522235 -6.067395 -31.499126 9.729839 14.788137 9.650148 31.034116 -1.976809 -1.720814 -5.497458 -28.728879 -37.735252 33.908439 9.084090 12.447658 -0.348543 1.220385 -19.531274 -8.649944 -7.467505 9.688863 40.782611 -36.447671 8.468052 -20.261621 -22.704375 -34.670585 -45.982683 3.589730 -28.039720 20.899536 8.698055 -31.229640 13.649091 5.316875 11.876280 8.725934 -21.444204 -1.730163 -15.673398 10.243469 42.958131 -3.741919 -28.412859 -7.434236 -11.356120 1.291135 22.093056 11.858561 -1.341228 60.235974 21.314513 27.056918 -21.124951 -4.724551 3.293888 -1.267524 15.510392 28.036235 -39.776559 -23.601368 8.997341 -7.542106 -56.857667 -1.690288 1.143629 23.968423 -14.754294 -25.317644 8.800564 -12.946235 7.832599 17.119704 13.100919 15.391026 -5.630375 -16.147864 6.408847 56.266977 -19.375933 16.210636 -25.604782 -18.654619 31.401743 -5.913038 12.853117 -0.777983 -4.494200 -1.929880 -27.385823 -1.420134 42.731864 -0.410914 -7.414004 20.051065 7.878245 -21.097575 -39.570209 -41.986441 -2.125224 26.472255 0.453878 49.991098 -36.303371 -1.693755 -14.693907 40.301083 1.733852 -5.788321 10.017017 -16.038279 15.436063 -30.259360 -45.254056 50.750169 40.186765 9.048258 -15.111005 19.343709 3.410823 -38.826092 -36.686376 -32.076976 12.629365 12.253993 -17.918602 -22.383410 6.458114 -41.326401 2.562166 -0.624583 13.763637 37.033016 -9.054477 1.275639 -1.326092 -25.022086 -33.901146 18.800071 -17.678239 -13.736015 3.729536 8.712405 1.750117 18.166978 -7.556400 -22.378404 -3.872766 -17.866731 -6.235303 20.126813 31.683090 -2.774626 54.591413 35.395728 -11.003924 13.720071 3.571157 -18.194959 52.869328 -10.350442 4.041189 4.878160 19.950378 -9.994492 13.775383 32.752906 -14.981861 -33.413330 -29.919517 1.554147 -10.152690 3.954026 -20.094240 -13.327220 -42.175286 -6.702087 -4.585350 38.859631 4.907277 58.035618 3.666778 11.941485 -51.980699 3.095865 26.921154 -7.458013 27.434461 23.399500 -35.555157 -20.430850 -11.557746 -30.000152 -15.214828 -1.395947 0.277770 -30.233662 -2.064471 16.383894 -7.149470 7.579226 35.398603 0.224427 18.281555 -4.216608 1.773632 -13.875887 -3.697513 49.146884 3.564006 -23.125474 31.233966 5.025068 77.095360 5.022705 24.354157 -14.299667 -20.039847 6.554071 -17.748683 -26.486215 36.063177 24.643180 22.362484 4.478614 -2.827399 -3.218306 35.374009 -PE-benchmarks/karatsuba.cpp__main = 14.608715 59.884788 123.914691 25.453896 -77.146876 -71.542308 -29.961924 -139.164874 49.544152 41.703934 61.956672 -14.102859 32.452740 1.772232 -21.031728 34.331415 44.632097 -2.838716 -17.446267 -51.269662 -92.572020 40.479288 -0.160905 -12.156262 52.911521 -89.544596 72.052980 -5.286338 32.301114 31.971434 48.712928 8.053188 -17.172469 57.798973 14.938769 34.901686 9.663200 31.982428 -44.136068 28.533322 26.800829 -18.538588 47.741645 38.625461 59.402599 59.921038 25.762396 6.108974 -57.807027 -3.356307 -27.323994 68.284331 -42.707879 41.245547 -8.070853 16.840164 -10.143258 -65.727394 7.716952 -1.899079 -22.111282 -34.602727 -49.563365 6.651185 -66.746222 -0.238872 -35.106310 -52.827792 -13.222921 2.048098 40.179080 2.917794 -21.632023 -4.065668 -67.095942 16.973702 34.663008 18.440864 64.826264 -3.034766 2.939954 -14.413926 -59.613809 -77.706828 75.592704 25.249243 26.972096 -0.486056 -5.404158 -38.290412 -21.797077 -17.065290 28.266025 80.982911 -79.419473 8.867097 -44.551154 -48.636056 -74.151183 -102.903891 10.069062 -52.373582 43.791485 6.403931 -59.755891 28.155477 13.154405 24.453537 18.892670 -37.268817 -3.273966 -32.328588 23.099518 92.440611 -3.378889 -60.410205 -19.473377 -25.781612 -1.820863 39.465255 27.598598 -7.242423 124.986273 41.981862 62.023128 -40.771792 -14.681979 7.714621 -5.186631 29.556004 54.901648 -81.290939 -45.469597 22.307541 -18.389408 -116.660243 -8.918488 -2.666565 46.732322 -33.603749 -40.173588 10.493949 -23.746973 10.873126 30.374231 18.691371 31.158476 -10.674717 -31.521103 11.350742 109.184743 -37.056672 31.098829 -54.354939 -29.116111 54.471649 -10.975579 21.957706 -1.821862 -13.279751 -8.491973 -51.345736 -2.290934 82.538090 -3.805788 -20.189129 31.041090 19.152300 -51.901272 -74.644036 -85.409567 -3.038630 54.869272 -2.051748 93.869956 -73.489479 -5.403413 -31.569836 84.253993 5.801265 -10.627312 25.961046 -38.262434 32.981748 -46.711048 -87.700228 103.140918 83.494567 22.724181 -33.109324 37.064135 5.668350 -93.910544 -76.138931 -63.605826 20.954472 26.336808 -53.721019 -52.613551 14.684296 -83.358488 7.258536 -4.374153 28.882351 73.981917 -4.879259 15.814043 -1.956656 -43.259875 -67.006630 41.728485 -28.698642 -25.681835 8.362878 19.316569 3.190375 42.050842 -19.204274 -44.224830 -7.990775 -36.440198 -8.055264 42.777108 63.521758 -8.819449 112.752042 71.867536 -23.340388 33.679503 1.910652 -36.659040 91.199401 -17.153620 12.254091 10.292004 33.238044 -22.504668 26.981607 68.952037 -31.619421 -70.530151 -57.402432 -5.238972 -21.807190 7.122102 -24.462258 -29.376478 -86.363695 -12.358939 -13.431254 75.561313 12.082954 110.452696 7.688516 26.669871 -101.382966 7.149796 51.221347 -15.080725 55.349903 44.194301 -72.157242 -33.853189 -22.376144 -66.490368 -47.634177 -1.203633 7.335875 -60.186188 -7.603552 39.811457 -13.098776 10.361192 67.962765 3.192876 39.208318 -12.689969 7.073175 -31.356784 -2.795278 107.273458 2.092272 -44.080064 57.986245 14.616478 158.401788 15.030129 45.471958 -23.958269 -44.969133 16.624868 -39.415162 -55.040995 69.445619 49.812002 46.438966 4.924193 -7.640927 -3.847257 72.617589 -PE-benchmarks/karatsuba.cpp____gnu_cxx::__alloc_traits, char>::_S_select_on_copy(std::allocator const&) = -0.043295 0.328019 0.772592 0.450379 -0.651180 -0.897107 -0.154182 -0.996940 0.440500 0.198517 0.547252 0.152824 0.599245 -0.292753 -0.120943 -0.145868 0.517351 0.218287 0.056911 -0.360205 -0.392399 0.721647 -0.045794 -0.230069 0.148526 -0.354770 0.790305 0.260672 0.468723 0.750523 0.210092 -0.018122 -0.425827 0.298405 -0.047152 -0.075860 -0.105744 0.372562 -0.506374 -0.024747 0.103979 -0.482482 0.691653 0.153184 0.345946 0.159469 0.071015 0.151602 -0.376019 -0.280744 -0.187154 -0.000582 -0.356833 0.429685 -0.194475 -0.314959 0.219829 0.240706 0.219708 -0.360211 0.102762 -0.490187 -0.272610 0.010012 -0.637293 0.000994 -0.596828 -0.641009 -0.170872 -0.367315 0.222179 0.076074 0.074168 -0.128214 -1.076511 -0.021170 0.224964 0.195913 0.541629 0.422640 -0.032870 -0.347694 -0.595304 -0.547700 0.366988 0.234430 0.178846 0.347970 -0.573015 -0.338670 0.165748 0.163756 0.399488 0.294921 -0.282955 0.235657 -0.492291 -0.101603 -0.099594 -1.161423 0.184989 -0.250359 0.231161 -0.062632 -0.276635 -0.040258 -0.106747 0.121302 -0.094878 -0.489146 0.263094 -0.435255 -0.123986 0.784566 -0.064990 -0.426216 -0.354409 -0.146015 0.186607 0.368285 0.178362 0.037373 0.270923 0.348024 0.407096 -0.617270 -0.202305 0.351921 0.067043 0.245943 0.212091 -0.174753 -0.328430 0.249645 -0.502718 -0.973599 -0.181916 0.261197 0.479642 -0.234690 -0.107254 0.152685 -0.578836 0.123851 0.502038 0.351399 0.307426 0.069715 -0.436135 0.210087 0.550012 -0.196122 0.322526 -0.096953 -0.398934 0.590809 -0.000574 0.216627 -0.271881 -0.241266 -0.078938 -0.137937 0.114999 0.630077 -0.043512 0.136225 0.088193 0.155558 -0.567860 -0.697364 -0.764869 0.049040 1.106682 0.530847 0.646563 -0.611701 0.010770 0.176496 0.456724 0.084044 -0.327795 0.283056 -0.216312 0.429605 -1.284034 -0.780820 0.882764 0.559028 0.271362 -0.168011 -0.035678 0.226725 -0.346660 -0.584590 -0.456416 0.122742 -0.119099 -0.704143 -0.394647 0.182513 -0.684264 0.014760 0.308906 0.201805 0.544560 -0.297960 0.325548 -0.379716 -0.088660 -0.682290 0.531073 -0.287354 -0.095293 0.089453 -0.039404 0.111443 0.231723 0.024525 -0.130500 0.057145 -0.192393 0.015128 -0.071311 0.264112 -0.089189 0.922834 0.657231 -0.314640 -0.137668 0.050657 -0.469891 1.313606 -0.493119 0.272748 0.105817 0.537125 0.130044 0.284125 0.675153 -0.343871 -0.276121 -0.702564 -0.499054 0.310525 0.340412 -0.571852 -0.483590 -0.924291 0.218462 -0.243554 0.783157 -0.104656 1.007635 -0.333036 0.231686 -0.666320 0.092888 0.364476 -0.165220 0.690745 0.238822 -0.465334 -0.130623 -0.262350 -0.660009 0.058089 -0.090589 -0.157660 -0.248183 0.124654 -0.087814 -0.216145 0.052784 0.253171 -0.406805 0.552143 -0.264263 0.046860 -0.374812 0.071028 0.465591 0.003958 -0.412501 0.611200 0.197842 1.082091 0.206537 0.281397 -0.140142 0.183552 -0.158041 -0.673100 -0.430570 0.763994 0.517162 0.358286 0.059552 0.177866 0.143571 0.382576 -PE-benchmarks/karatsuba.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = -0.022934 0.264722 0.637610 0.377082 -0.553088 -0.770475 -0.120972 -0.848100 0.379435 0.154890 0.446632 0.123414 0.493433 -0.259985 -0.106585 -0.104935 0.412993 0.162839 0.058345 -0.293743 -0.330898 0.616624 -0.034316 -0.184657 0.134391 -0.316086 0.656920 0.208586 0.403645 0.628106 0.183361 -0.034201 -0.365028 0.240065 -0.031984 -0.041425 -0.085886 0.313430 -0.441584 -0.007626 0.069356 -0.403303 0.573564 0.118646 0.295208 0.138986 0.075107 0.146833 -0.305143 -0.238881 -0.170497 0.016752 -0.296851 0.367759 -0.162941 -0.264652 0.179843 0.192554 0.160607 -0.286041 0.060124 -0.416203 -0.235887 0.016762 -0.547315 -0.006927 -0.494649 -0.533733 -0.142803 -0.313870 0.200982 0.079942 0.071029 -0.098578 -0.911742 -0.025143 0.174917 0.181130 0.444424 0.362465 -0.021263 -0.277904 -0.510630 -0.452985 0.307853 0.204473 0.154865 0.270919 -0.480064 -0.276095 0.125428 0.125343 0.345277 0.234401 -0.246477 0.186768 -0.421417 -0.079402 -0.084638 -0.975744 0.161936 -0.198618 0.203243 -0.067720 -0.217292 -0.040543 -0.069147 0.109756 -0.064705 -0.410954 0.229268 -0.360256 -0.090121 0.676118 -0.057746 -0.348043 -0.307664 -0.128503 0.135863 0.307568 0.157707 0.024274 0.228267 0.286470 0.364845 -0.503948 -0.186874 0.300313 0.071973 0.203422 0.173260 -0.143588 -0.262976 0.212540 -0.404088 -0.828941 -0.167878 0.223419 0.401710 -0.187729 -0.082632 0.117064 -0.483009 0.104251 0.406306 0.278339 0.276749 0.068204 -0.351961 0.168006 0.486749 -0.149417 0.259235 -0.090717 -0.329223 0.487399 0.005118 0.189838 -0.220469 -0.188605 -0.063795 -0.127072 0.100782 0.511002 -0.031160 0.104500 0.077461 0.145573 -0.489292 -0.584318 -0.641562 0.047995 0.919235 0.429082 0.546337 -0.519060 0.014294 0.129796 0.384459 0.071790 -0.262401 0.225689 -0.197257 0.353050 -1.060198 -0.642091 0.755189 0.482728 0.232919 -0.133954 -0.024916 0.189544 -0.315279 -0.491683 -0.394574 0.092358 -0.094788 -0.613343 -0.335077 0.146478 -0.580686 -0.003121 0.260518 0.170651 0.461915 -0.224179 0.281066 -0.321753 -0.076206 -0.562420 0.444589 -0.238442 -0.077509 0.090729 -0.026109 0.088345 0.202988 0.011467 -0.090214 0.055367 -0.171312 0.015050 -0.045215 0.218473 -0.094574 0.777501 0.554072 -0.255600 -0.096319 0.031363 -0.410279 1.095287 -0.405644 0.218815 0.071290 0.450977 0.126129 0.225672 0.556698 -0.296693 -0.238877 -0.577621 -0.405999 0.269459 0.274110 -0.459699 -0.422618 -0.782132 0.171537 -0.208335 0.648804 -0.064131 0.835896 -0.287668 0.198919 -0.578790 0.084641 0.308049 -0.123320 0.561417 0.184850 -0.378280 -0.102017 -0.222944 -0.568328 0.035043 -0.092245 -0.144467 -0.202498 0.091552 -0.057323 -0.176461 0.043801 0.225133 -0.342371 0.463806 -0.238279 0.048178 -0.317777 0.055558 0.388776 0.001845 -0.353527 0.505915 0.163690 0.921550 0.180239 0.223947 -0.112079 0.162234 -0.144693 -0.576499 -0.350719 0.631788 0.422675 0.285975 0.052884 0.133552 0.109741 0.312438 -PE-benchmarks/karatsuba.cpp___GLOBAL__sub_I_karatsuba.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/sort-array-wave-form-2.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -2.584476 1.513509 11.263657 7.199543 -3.327310 -4.946487 -2.428685 -5.206162 4.091287 1.789932 6.673021 0.156161 2.696213 1.622377 0.379130 -3.078592 2.808342 -0.995383 -1.241855 -2.286401 0.459918 6.825875 5.443900 -9.000054 0.479004 -7.869355 4.086243 3.197739 2.552491 6.093641 -0.169777 0.433884 0.101153 3.854434 -5.950665 -2.046276 -0.517522 1.954706 -2.528322 -2.396865 3.716562 4.004366 4.201376 0.259087 3.906884 2.490081 4.466650 -1.485315 -4.821522 -2.032145 -3.332708 6.092580 -3.518238 3.808767 -0.490007 4.167258 0.959154 -5.370921 -1.402801 -10.356594 2.646507 4.455958 -3.264451 -1.093981 -4.841035 1.098711 0.202885 -3.545995 2.587134 -2.580942 3.881159 0.060887 1.266176 -5.277326 -5.113203 2.906340 -0.623052 2.306416 2.259071 0.565965 -3.249373 0.371925 -2.027106 -3.571606 1.171080 0.227041 0.249280 1.043061 0.980409 -2.137821 0.400166 0.058796 -3.438527 5.178112 -4.139079 4.984290 0.084234 -1.368001 -2.224403 -0.247024 -0.910864 -5.803198 1.554357 5.880271 -2.215943 1.960738 -1.025486 2.077842 -0.918809 -5.702277 1.103070 -1.009808 -1.648318 3.866043 -4.437854 -1.688652 1.148678 0.764435 0.806294 5.864211 -1.983841 2.925208 4.856374 3.765133 1.848291 -5.050289 2.159996 1.732208 4.070688 3.685900 3.932956 -4.535597 -2.992611 -0.726032 -0.915895 -9.137704 1.209058 4.236425 5.488290 1.567793 -9.633152 3.342856 -2.853289 6.858033 4.881459 5.049669 2.301441 0.099283 -3.986040 1.817067 10.848671 -3.835601 4.795743 -2.507484 -5.858147 7.507440 -2.568366 5.634315 -0.265398 1.519084 3.141427 -6.108104 -0.396530 7.871963 2.908255 2.962911 4.070936 -0.489666 1.029413 -9.843711 -8.404246 -3.088120 2.436503 1.832807 11.443607 -4.569209 -3.331958 -2.117239 5.074872 -2.966922 -2.529873 -0.386822 -1.616335 2.147150 -13.524846 -8.864487 9.021772 8.640001 0.607805 0.485751 6.949348 1.145524 0.930739 -3.219528 -3.091212 3.921610 1.553418 2.826053 1.436479 -0.286550 -6.392982 -1.693711 0.792721 0.788167 2.524860 -5.026709 -3.059820 0.733892 -7.507084 -3.950800 1.208247 -7.105954 -3.284131 -0.487711 0.902837 -0.007247 0.937433 -1.445120 -3.447219 2.330133 -4.138679 -2.241612 1.120354 4.450621 2.226653 5.873962 6.739104 0.116568 3.799109 2.375545 -3.777025 15.510567 -4.991502 -1.991450 -0.290983 5.290660 -0.172587 2.921317 1.867136 -1.900532 -2.314098 -6.287546 4.332100 -0.354018 2.761968 -9.681268 -4.666894 -4.566596 -1.630656 2.061827 6.548544 -0.832665 12.738081 -1.449967 1.450342 -13.551959 0.069288 5.394557 -0.015544 3.399154 4.661335 -5.157709 -10.597624 -0.990325 -1.734168 4.584783 -1.088787 -6.663713 -3.832452 -2.780949 2.412286 -4.178554 3.360867 7.212142 -1.681069 4.415490 1.191899 -1.635929 -1.077641 -2.281981 1.669333 3.588940 -4.475971 6.745295 -1.738456 12.509829 -2.893357 5.846573 -5.162009 2.571821 -1.804781 -2.466230 -2.498653 7.831761 5.156593 2.363524 1.235689 -0.396032 -3.606708 3.938338 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.821629 1.229262 5.573571 3.035430 -2.400059 -3.322920 -1.467172 -4.184674 2.168662 1.027545 3.550365 -0.351441 1.566938 0.658891 0.078386 -0.785178 1.791674 -0.378064 -0.331789 -1.526727 -0.905555 3.687424 1.852746 -3.154834 0.617689 -3.996428 2.119354 1.642743 1.537670 2.751546 0.339962 0.045322 -0.604660 1.865755 -2.391169 -0.448549 0.132773 0.967783 -1.942766 -0.515793 1.303663 0.974664 2.560539 -0.023459 2.239429 1.350605 1.909928 -0.095544 -2.649193 -1.156595 -1.430738 3.208487 -1.489819 1.988862 0.188952 1.130112 0.418184 -2.491430 -0.538536 -3.482162 0.690996 0.908059 -1.661636 -0.148544 -2.542373 0.503327 -0.630171 -2.037931 1.242652 -1.337227 1.877717 -0.146519 0.237708 -1.741166 -3.171190 1.245360 0.356255 1.215459 1.355434 0.438039 -0.696764 0.131821 -1.727789 -2.251817 1.068540 0.978197 0.544646 0.408119 -0.758882 -1.124789 0.379445 -0.246342 -0.603357 2.570215 -2.417736 1.837539 -0.704758 -1.140730 -2.054548 -2.128334 -0.049444 -2.471670 1.251451 1.895372 -1.288776 0.635397 -0.285589 1.079767 -0.330453 -3.058360 0.552157 -0.908874 -0.180222 3.104620 -1.921017 -1.249278 -0.369616 -0.229867 -0.071776 2.716924 -0.216617 1.036528 2.796821 2.167553 1.380478 -2.564616 0.023197 0.862626 1.775246 1.707796 2.009698 -2.552384 -1.574892 0.186832 -1.122213 -4.906937 -0.308619 1.661394 2.959893 0.331057 -3.394295 1.165247 -1.660755 3.029718 2.113221 2.099146 1.049834 -0.089675 -2.116082 1.077785 5.148985 -1.811202 2.455937 -1.493704 -2.780923 3.287961 -0.951605 2.401555 0.217245 0.316139 0.655414 -2.598428 0.008028 3.750572 1.140228 1.056709 1.493223 0.214392 -0.719545 -4.640848 -4.792982 -0.699273 1.981168 0.750739 5.326405 -2.729565 -1.891197 -0.867645 3.295180 -1.023981 -1.568329 0.512871 -1.331363 1.335684 -5.853233 -4.458754 4.774544 4.678029 0.808098 -0.143972 3.188983 0.719452 -1.364727 -2.153192 -1.961888 1.954553 0.606729 -0.551094 -0.190691 0.098706 -3.365147 -0.453747 0.135492 0.862863 1.677485 -1.699167 -0.275164 -0.172784 -3.451221 -2.176030 1.400206 -2.982051 -1.226825 0.075037 0.325523 -0.023909 1.117617 -0.960701 -1.653281 0.900183 -2.218776 -0.538176 0.779196 2.131243 0.612409 4.020510 3.578215 -0.178511 2.424468 0.618816 -2.031149 7.241305 -2.428731 -0.257514 -0.235182 2.333362 -0.342406 1.328009 1.738190 -1.114664 -1.947205 -3.153008 1.062170 -0.188004 1.447738 -4.033819 -2.815965 -3.489987 -0.683465 0.566966 3.619493 -0.085712 6.144215 -0.869378 0.965769 -6.720996 0.234165 2.249612 -0.219125 2.068909 1.821886 -2.729979 -4.524517 -0.411795 -2.014077 0.778893 -0.447665 -3.063502 -2.043424 -1.536853 1.638004 -1.668851 1.076864 3.493181 -0.742568 2.321475 0.485446 -0.778959 -0.981141 -0.842640 2.026136 0.901179 -2.278651 3.411597 -0.207242 7.122745 -0.685882 2.609040 -1.959971 0.726391 -0.460624 -1.986196 -1.448888 3.786694 2.824223 1.316910 0.087269 -0.022387 -1.442067 1.975790 -PE-benchmarks/sort-array-wave-form-2.cpp___GLOBAL__sub_I_sort_array_wave_form_2.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/word-wrap.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -6.726870 7.966169 41.583237 27.617237 -12.464417 -19.275756 -8.987511 -14.944132 9.909336 5.950335 20.973804 -3.187918 5.524189 10.257632 0.998737 -10.645693 5.471022 0.386345 -1.020894 -6.251285 -7.165787 19.303484 23.800618 -30.764186 0.255165 -26.010764 17.506411 12.265344 11.104226 18.679239 -0.520632 1.874548 2.143483 14.528491 -22.212748 -9.092159 -8.801275 7.801964 -7.397713 -2.408371 11.711320 14.514610 10.108690 1.322869 11.038562 13.523062 19.004048 -5.677592 -18.868312 -4.536718 -13.691585 24.457810 -12.865739 9.514403 0.829256 17.184520 1.343313 -20.629290 -6.010498 -35.019890 10.200098 16.290641 -15.641012 0.420969 -22.976128 4.200387 -8.462684 -12.899213 10.530012 -1.025530 12.942021 0.368696 3.808456 -19.303961 -15.136059 12.711482 -4.205162 8.612602 7.476135 -1.213805 -10.901111 8.158943 -6.180051 -12.769329 1.010877 -2.672513 -0.264761 -2.695299 9.879670 -12.230490 0.143411 -0.341935 -14.799143 19.675517 -14.687733 24.302575 -5.156725 -3.440847 -10.669702 -5.479591 -5.869184 -22.825496 7.040898 21.773524 -8.359666 5.012731 -4.418071 6.755393 1.227123 -24.569206 -2.006712 -3.524611 -1.150995 14.568379 -16.565823 -2.577064 5.483560 3.165930 1.663295 20.742050 -3.987835 10.329741 17.737665 12.424028 2.418209 -13.946284 9.050916 3.764338 9.006257 13.847721 16.024362 -17.745785 -11.964358 -7.048741 4.549195 -31.439606 8.958190 15.021101 10.207976 6.927279 -31.295461 7.971613 -8.282569 21.870014 14.916746 21.560065 8.179533 -3.440038 -7.854219 6.396104 38.375909 -14.209658 14.336390 -6.136410 -28.518246 30.856706 -11.532488 21.197018 1.016163 7.848490 12.991270 -23.182313 -4.178591 26.932437 8.903604 7.776494 26.419811 -4.797396 8.605133 -31.426386 -21.903104 -2.103425 4.201552 2.303306 39.493771 -14.708603 -8.222340 -5.274268 18.415023 -4.914241 -5.339094 -5.471833 -1.283323 4.361870 -47.626775 -31.810300 21.637421 24.149478 -2.984490 -2.616240 23.350249 7.094966 2.853665 -14.722518 -15.784040 14.751042 -0.229588 17.499366 5.127383 -0.402994 -23.069144 1.607639 2.808662 3.004077 15.962399 -21.893317 -20.698800 -0.267452 -30.682737 -15.907984 3.131623 -23.903008 -10.488613 -3.294515 3.163159 -1.047888 1.165176 -5.884717 -12.829306 6.201021 -13.822611 -8.411990 5.953473 15.651027 6.084281 28.819341 18.320991 4.544744 9.111735 10.911851 -10.377248 61.421264 -14.364307 -8.059803 -1.028475 19.932326 -6.330587 8.563475 4.047734 -5.156114 -14.940419 -19.481122 17.346376 -3.685776 5.929697 -33.014783 -13.175297 -17.288030 -8.374278 10.729078 23.449121 1.174921 42.827645 -1.139148 3.569207 -39.912481 0.350611 17.605546 -2.924680 19.282789 17.594390 -20.203019 -30.603606 -6.319286 -0.727987 25.289317 -3.717122 -24.553541 -13.783810 -2.847274 1.698117 -9.719208 13.441716 24.392520 -6.290871 10.439618 9.229005 -6.451975 -0.933779 -9.050669 9.332202 12.846664 -18.189597 27.341406 -8.768584 44.603734 -9.986819 19.433930 -18.817624 0.460803 -2.343689 -1.316415 -6.713687 25.943991 16.007138 10.057344 2.572190 1.902850 -14.117308 9.065804 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -0.446192 0.822501 6.686517 3.445848 -1.426460 -3.340912 -1.585619 -6.094679 4.074263 1.570384 4.504258 0.262846 2.535007 -0.445987 -0.181182 -0.299094 1.785292 -1.121527 0.008221 -1.309868 0.476206 6.903358 2.007265 -3.277694 0.228503 -6.444512 2.130880 1.474316 3.656922 3.632646 0.353335 -0.074303 0.257618 2.038496 -3.016804 -0.190226 -0.376162 1.498817 -2.816766 -1.505975 1.336369 1.620046 2.850667 0.150854 3.106615 -0.216792 3.203448 -0.828249 -1.389608 -1.287892 -2.712298 4.800376 -1.990734 2.201276 -0.552165 0.879202 0.177424 -2.192225 -0.905816 -3.726744 0.508660 2.098411 -2.399155 -0.419209 -2.998236 0.994748 -0.757113 -1.439819 0.790429 -1.406228 2.905598 0.786687 1.072942 -2.801996 -5.817778 1.745358 -0.395974 1.042060 1.705730 1.163602 -1.215871 -0.051337 -1.882497 -2.929753 2.987313 2.515404 -0.228002 0.473336 -0.909710 -1.279146 -1.008592 -0.096155 -0.847917 3.103522 -3.741164 2.541565 -0.667169 -0.945184 -0.819849 -1.586861 -0.283028 -3.846632 0.958821 2.041833 -0.055671 1.160998 0.426963 0.911616 -0.606377 -3.669145 0.905279 -0.373931 -1.070992 4.319303 -2.362570 -1.144993 -0.500467 0.543832 -0.697580 3.213263 -0.267855 2.054581 3.738151 2.431158 2.042240 -3.246215 0.413527 2.703687 2.621741 2.093903 1.645416 -3.055971 -1.856882 0.019042 -0.049829 -6.647255 -0.604258 3.122775 3.387759 -0.154970 -3.864788 1.379342 -1.150988 4.286560 3.684765 0.987601 1.740922 0.708185 -2.531505 1.869458 7.545901 -1.917544 2.594682 -2.719207 -2.884814 4.729108 -2.551876 3.455711 -0.619090 1.382975 1.018664 -3.787964 0.456060 4.810098 0.569353 1.824892 1.110858 0.390430 -0.051432 -5.859766 -6.287004 -1.987554 2.185851 1.135744 6.852347 -2.614645 -2.263202 -0.570506 3.049621 -0.844968 -1.570467 1.118958 -2.689471 1.803286 -7.953856 -5.704300 6.715834 6.330442 1.219178 0.061125 4.218768 2.026421 -1.370806 -2.512727 -2.064108 2.729534 1.619816 -1.937528 -0.050174 0.000854 -4.224921 -1.862817 0.122322 0.289714 1.246122 -1.229826 0.574530 -0.303974 -4.137527 -2.335020 2.772613 -3.781739 -1.962821 -0.846044 0.634091 -0.615343 1.794740 -1.589682 -0.812072 2.088814 -2.476565 -0.739723 0.941675 1.920926 0.562377 3.654170 5.483813 -0.147457 3.470717 0.834519 -2.402900 7.999093 -2.783939 -1.312828 -0.336083 1.866253 -0.300167 2.324496 1.022728 -1.536236 -2.259433 -4.156241 2.252634 0.023386 1.779735 -3.534586 -3.629871 -3.194708 -1.344114 0.998409 4.328949 0.405315 8.166293 -2.396176 1.322978 -8.979862 0.419358 3.052336 0.219197 3.043520 2.191090 -2.851365 -4.692825 -1.021864 -1.683263 0.248198 -1.009277 -5.105219 -2.789269 -3.575572 3.187224 -3.637062 1.863635 3.967457 -0.481910 3.614875 -0.873621 -0.743830 -2.430943 0.176421 1.383586 1.691027 -2.893297 3.310283 -1.294249 8.497545 -2.580485 3.442519 -3.208406 2.357194 -2.016712 -3.237793 -1.200005 5.212050 3.677506 1.114621 -0.075959 -0.908628 -1.901267 2.624235 -PE-benchmarks/word-wrap.cpp__main = -1.405986 2.086683 9.629279 5.868387 -3.215004 -5.247787 -2.228679 -4.686684 2.555624 1.569981 5.363984 -0.760613 1.887428 2.122299 0.266989 -1.955842 1.895399 -0.070385 0.040878 -1.844811 -2.106862 5.188860 4.947295 -6.135256 0.371273 -6.197168 4.266245 2.831561 2.777716 4.692743 0.166226 0.380967 0.093181 3.328676 -4.665791 -1.664436 -1.767744 2.005567 -2.134321 -0.151207 2.438493 2.542968 3.024290 0.449365 2.801037 3.268062 4.149305 -0.880131 -4.365984 -1.418278 -3.119448 5.404744 -3.060428 2.426605 -0.127893 3.163551 0.551015 -4.258439 -1.231450 -7.337339 1.922474 2.836847 -3.726214 0.218478 -5.445304 1.022402 -2.508020 -3.261666 2.067484 -0.480862 3.143066 0.164492 0.640971 -3.868411 -4.499727 2.706280 -0.540811 2.036960 2.005819 -0.166157 -2.365048 1.606232 -2.207036 -3.499898 0.951321 0.063222 0.344700 -0.402262 1.130671 -2.783231 -0.040673 0.043912 -2.572477 4.592340 -3.471639 5.196142 -1.345510 -1.144586 -2.837880 -2.603453 -1.004936 -5.097033 1.812248 4.385224 -1.866228 0.853464 -1.280949 1.621892 -0.005665 -5.854525 -0.100107 -1.172533 -0.443183 4.116290 -3.648456 -0.907073 0.474710 0.385260 0.481393 4.845907 -0.452131 2.168144 4.372914 3.157916 0.912473 -3.503900 1.442501 0.949593 2.191125 3.065171 3.732185 -4.078848 -3.063018 -1.108264 0.168402 -7.743189 1.304981 3.535429 2.866329 0.981637 -6.549611 2.025371 -2.362600 4.863489 3.869569 4.694863 2.008607 -0.738506 -2.258181 1.763291 8.920876 -3.362921 3.606501 -1.731919 -6.340497 7.235915 -2.546836 4.657322 0.282786 1.412555 2.213968 -5.012268 -0.695089 6.355243 2.037924 1.850497 5.535174 -0.734887 1.258761 -7.152507 -5.832458 -0.408037 2.039737 0.874993 9.089976 -3.815492 -1.863301 -1.016034 4.492952 -0.902464 -1.739723 -0.762156 -0.665914 1.270883 -11.357192 -7.511086 5.836144 6.059507 -0.021296 -0.633236 5.050684 1.964398 -0.181808 -3.760347 -3.844637 3.605436 -0.215143 2.368101 0.489524 0.147871 -5.644327 0.321948 0.418806 1.006405 3.804552 -4.609334 -3.695467 -0.536665 -6.826697 -3.826763 1.238569 -5.337521 -2.467242 -0.529715 0.475875 -0.204674 0.567042 -1.291937 -2.636681 1.422883 -3.484823 -1.700111 1.404074 3.648516 1.251246 7.246958 4.849190 0.621869 2.108917 2.091017 -2.725103 13.766297 -3.495514 -1.364381 -0.293747 4.659636 -1.261254 2.089533 1.727844 -1.327426 -3.854114 -4.839387 3.402708 -0.373656 1.606007 -7.056136 -3.501140 -4.983259 -1.578358 2.105063 6.350016 0.215175 10.154744 -0.588608 1.208882 -9.408830 0.301595 3.745617 -0.705519 4.579555 3.793724 -4.751151 -6.455330 -1.500850 -1.268442 4.696351 -0.780204 -5.469930 -3.384264 -0.821937 0.518532 -2.437914 2.714265 5.409335 -1.571773 2.891610 2.003937 -1.518100 -0.870641 -1.669297 3.059723 2.526278 -4.206052 6.272884 -1.548843 10.933274 -1.901375 4.534796 -4.010482 0.183298 -0.496655 -1.140492 -1.842138 6.318274 4.177288 2.305385 0.599617 0.422190 -2.558322 2.354412 -PE-benchmarks/word-wrap.cpp___GLOBAL__sub_I_word_wrap.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -0.447310 2.103415 8.046720 5.813682 -2.755267 -3.944973 -1.312228 -3.519771 1.760094 0.754460 3.836785 -0.280619 1.546422 2.522693 0.254723 -1.538534 2.328576 0.523708 0.264655 -1.398233 -1.601397 4.494910 3.149785 -6.060206 0.109390 -4.909804 4.231088 2.591340 1.856262 4.210830 0.785951 0.541053 0.224788 2.482373 -4.174316 -2.571081 -1.535880 1.555718 -2.152984 -0.574840 1.947327 1.998398 3.004801 0.942778 1.005804 2.366765 4.227788 -0.262659 -2.720619 -0.231051 -4.127530 4.712196 -1.969858 2.060930 -1.151171 2.518081 1.681751 -3.244718 -0.771382 -6.314127 1.192009 2.904776 -2.951384 -0.458645 -4.157404 0.568463 -1.742172 -2.921708 1.535019 1.077779 2.589719 0.232484 1.043285 -4.361831 -4.721245 1.824342 -1.153320 1.998822 1.840522 0.051250 -2.211655 1.386486 -2.289638 -2.711774 1.288324 -0.534671 0.171678 -0.369223 1.258727 -2.437131 -0.851665 0.224406 -2.411336 3.440130 -2.101305 5.025805 -1.581474 -0.397918 -1.936780 -1.136591 -0.885253 -3.852158 1.088530 3.684705 -1.059176 0.930558 -1.459170 1.035610 -0.081339 -4.285692 0.419069 -1.466825 -1.623405 2.697280 -2.511480 -1.272416 1.161985 0.400833 0.571425 4.168341 -1.056883 1.720882 2.943062 2.459453 0.340885 -2.463860 1.829217 0.661265 1.269415 2.616632 3.092265 -2.734236 -2.486409 -1.181190 0.424522 -6.184060 2.354512 3.716772 2.170445 0.391109 -5.786034 1.524882 -2.285864 4.371187 3.454629 4.673048 2.009642 -0.215654 -1.326515 1.323351 7.905897 -2.634369 3.363122 -1.939284 -4.121509 5.750912 -1.660314 3.968675 -0.652911 1.042662 2.100289 -3.656566 -0.933864 5.361927 2.223139 0.570425 5.606449 -0.809217 0.821696 -6.077100 -4.687788 -0.415052 2.351940 0.770337 8.336351 -3.070409 -1.426968 -0.593583 2.115159 -1.733012 -1.500348 -0.324078 -0.138390 1.081455 -10.367522 -6.132819 5.323161 2.884161 -1.076490 -1.039611 4.053013 1.150630 0.429124 -3.871028 -2.805944 2.669085 -0.019241 2.372071 0.788003 0.141361 -4.710413 0.466580 1.114800 0.694313 3.698528 -4.342858 -3.359336 -1.067865 -6.267011 -3.227423 1.408223 -5.323449 -2.982746 0.183410 0.118979 -0.293183 0.224943 0.272758 -2.140043 1.338102 -3.154688 -2.170672 0.509055 2.896121 0.495922 5.649349 5.167331 1.056429 1.801639 2.565678 -2.560882 12.008499 -2.871193 -1.355574 -0.129398 3.735784 -1.020518 1.724354 1.838250 -0.975859 -3.750634 -4.324766 3.609942 -0.437249 1.433619 -6.667693 -1.604213 -3.193120 -1.407066 1.658634 5.354413 -0.515797 8.620480 -0.633731 0.750590 -8.005269 0.330549 3.565978 -0.158874 3.138987 3.250506 -3.839705 -4.290776 -1.016474 -0.920603 4.997825 -0.459267 -4.805664 -3.131910 -0.564419 -1.211787 -2.672936 2.580972 5.549438 -2.681431 2.519773 0.440726 -1.295125 -0.046588 -1.370987 2.666738 2.352082 -3.304530 5.397707 -2.057555 9.632418 -1.388390 3.410404 -3.409922 0.288641 -0.525469 -0.515586 -1.559202 5.227323 2.986938 1.722834 1.588059 0.496941 -1.490287 2.313954 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.365884 0.727964 2.186000 1.250999 -0.702752 -1.357181 -0.364329 -1.898727 0.804251 0.250688 1.144266 -0.219759 0.635646 0.419034 -0.025409 0.115492 0.699243 0.250259 0.236060 -0.419599 -0.485528 1.711665 0.300020 -0.980234 0.130781 -1.582464 0.926509 0.704347 1.089158 1.007831 0.285989 -0.036096 0.003836 0.558270 -1.005970 -0.517878 -0.259766 0.438107 -1.198511 -0.047469 0.032668 0.223694 0.891588 0.093625 0.433763 0.326682 1.195121 0.083597 -0.415985 -0.027838 -1.196651 1.651032 -0.336493 0.657478 -0.305261 0.073738 0.204066 -0.550393 -0.192987 -0.800585 0.057166 0.519223 -0.821334 -0.063855 -1.210100 0.192109 -0.671606 -0.837570 0.320231 0.312934 0.794559 0.178597 0.296624 -0.949503 -2.017054 0.470609 -0.131366 0.582544 0.525544 0.136259 0.016266 0.270256 -0.828553 -0.895150 0.859674 0.588532 0.116629 -0.121476 -0.250820 -0.690921 -0.337218 -0.025344 -0.198300 0.864634 -0.821646 1.220093 -0.941317 -0.148564 -0.582482 -1.130218 -0.149194 -1.011209 0.420551 0.336588 0.107369 0.401410 0.146902 0.431550 0.129405 -1.302279 0.155241 -0.251192 -0.380810 1.451652 -0.484557 -0.512824 0.001589 0.057813 -0.395830 0.954428 -0.003366 0.512814 0.923830 0.748883 0.429098 -0.762444 0.072469 0.526441 0.309798 0.795367 0.768500 -0.872493 -0.681721 -0.146612 -0.012999 -2.068263 0.224616 0.990698 0.775299 -0.319938 -0.917365 0.147682 -0.604377 1.179883 0.916732 0.734217 0.615337 0.019396 -0.417506 0.512535 2.236306 -0.673720 0.865913 -0.835407 -0.814992 1.192722 -0.353705 0.969733 -0.289031 0.287973 0.397327 -0.964983 -0.116402 1.437643 0.423302 0.097084 1.084540 0.000231 -0.414031 -1.686762 -1.506865 -0.102647 0.824120 -0.018739 2.068377 -0.825097 -0.728622 -0.076593 0.758855 -0.349537 -0.378120 0.331023 -0.641832 0.475270 -2.420105 -1.750405 1.655366 1.205531 0.038038 -0.430128 1.059340 0.567910 -0.712124 -1.269477 -0.774103 0.709421 0.111058 -0.715584 -0.362432 0.057008 -1.401593 0.095111 0.265373 0.253939 0.882232 -0.349382 -0.068822 -0.456466 -1.616179 -0.930484 0.954171 -1.248186 -0.531038 0.053694 0.069414 -0.173010 0.460196 -0.352858 -0.375419 0.628170 -0.882429 -0.274835 0.177861 0.623978 -0.121749 1.736454 1.594501 0.338089 1.065601 0.483241 -0.939808 2.915462 -0.711126 -0.213821 -0.133631 0.619706 -0.552069 0.604794 0.584390 -0.399940 -1.348426 -1.333866 0.468819 -0.101232 0.449380 -0.886909 -0.753670 -1.043600 -0.428952 0.273279 1.556583 0.132312 2.296704 -0.561004 0.436044 -2.327336 0.195295 0.748533 -0.077065 1.122109 0.699963 -1.030168 -0.894881 -0.228648 -0.600235 0.239306 -0.267703 -1.617669 -0.933762 -0.612488 0.114661 -0.782040 0.480247 1.378508 -0.491503 0.972346 -0.360715 -0.316191 -0.389281 0.007715 1.114976 0.372286 -1.030839 1.145786 -0.382918 3.149021 -0.295217 0.855864 -0.914022 -0.058734 -0.182469 -0.607200 -0.449528 1.532417 0.986923 0.518817 0.097589 -0.025599 -0.363921 0.651204 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp___GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -2.859614 2.696352 14.634855 10.072362 -4.541642 -6.403783 -4.046704 -6.531634 5.531833 1.158575 8.115852 -0.490383 2.712553 1.053552 -1.044219 -5.184145 3.248223 -1.426772 -1.785701 -3.363543 -1.629840 10.367396 7.372824 -12.358623 1.020882 -12.066616 7.300441 3.785558 3.963307 9.598342 -0.697967 0.887411 1.045835 6.160545 -7.557376 -3.488959 -1.487788 2.514822 -3.184175 -1.888132 6.636304 6.168924 7.035981 0.959812 3.659296 5.266285 4.002318 -1.858872 -6.727274 -2.247361 -4.066315 6.690949 -4.805149 5.000564 -1.172650 5.614661 2.994441 -7.590940 -1.546635 -12.209467 2.174441 5.270157 -4.024016 -1.162595 -7.573771 1.178369 -1.014733 -4.887460 3.913547 -3.570609 4.880971 1.002166 1.024782 -7.489373 -5.875653 5.266811 0.605222 4.053863 3.578537 0.656287 -3.431189 1.449258 -3.702670 -5.275609 1.479168 -0.886435 1.476678 1.748222 2.980235 -5.151645 1.173693 0.690448 -3.485257 7.097194 -3.438721 5.951438 -1.618947 -2.575465 -3.324432 -1.450831 -1.573264 -7.511877 2.267497 8.291846 -5.279251 2.531616 0.050979 2.209807 0.236060 -7.756549 1.055913 -1.946704 -1.460889 7.032939 -4.727371 -3.453673 0.477934 0.536952 0.538587 8.641771 -2.774480 3.346219 6.776062 5.317339 2.087508 -6.658490 2.845809 0.986232 4.208828 3.987994 6.487442 -5.901876 -4.892101 -1.824321 0.043105 -12.417749 1.169547 3.828079 6.993121 1.706293 -12.240657 6.620260 -4.437795 8.506457 5.904437 4.992760 3.635532 -1.170380 -5.902991 4.250371 14.583567 -5.007026 5.702954 -5.315656 -10.381743 11.651067 -2.815576 7.091880 -1.586158 0.939180 4.172019 -7.962048 1.866331 10.780806 1.428362 2.909649 6.939971 -1.307768 3.098144 -12.519800 -11.224665 -1.802322 3.115788 2.605345 15.746450 -6.139373 -2.806072 -2.822082 7.166172 -3.176102 -2.044373 -0.803503 -2.077311 2.818984 -18.627323 -12.463373 12.904466 11.421125 -0.249919 1.347553 7.740539 2.082108 3.238381 -4.346923 -5.040425 5.408507 3.467574 3.976781 1.373034 -0.288043 -6.845944 -2.266292 1.999418 1.257801 5.054871 -9.150340 -5.929923 -1.718928 -10.615576 -7.035958 2.386541 -10.269269 -3.174567 1.019662 0.272338 -1.109957 2.638052 -0.391149 -5.058517 1.073829 -4.212674 -3.160691 0.606621 6.968970 1.989448 6.144335 9.360551 -0.793722 4.422250 4.622943 -4.436834 21.531284 -7.668755 -2.128151 0.329086 7.942070 0.415777 4.789938 2.741991 -2.424871 -1.957473 -9.016085 6.984311 -0.160967 2.191747 -15.138796 -5.551702 -7.458106 -2.916010 2.527432 8.394237 -0.305817 17.625897 -1.746604 0.121129 -17.004675 -0.287260 8.059265 0.830874 6.236714 6.451452 -7.166943 -13.834728 -2.279533 -3.223837 8.056128 -2.658244 -8.935562 -5.747985 -1.793510 3.755511 -5.192634 6.253722 10.724879 -1.951284 4.296649 0.911096 -2.315438 -2.863857 -4.746440 1.817842 4.245030 -4.928308 8.524906 -2.477575 13.953553 -3.715465 8.005849 -7.534290 3.222282 -1.471719 -4.307695 -3.686082 10.583346 5.634613 2.291278 2.566887 -0.234978 -4.017351 6.295426 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.333373 1.932722 9.396664 6.434229 -3.246659 -5.599894 -2.422167 -4.283997 2.964744 0.860891 5.156365 -0.934516 1.610263 1.771835 -0.499863 -3.114303 1.581215 -0.220328 -0.901579 -1.944470 -3.205815 5.921747 4.267372 -7.370786 0.655676 -7.663999 5.474010 2.947119 1.637171 5.968835 -0.245195 0.549103 0.128792 3.392854 -4.793117 -1.978790 -0.953637 1.138190 -1.345694 -0.720754 3.790912 2.636201 4.343362 0.762026 2.283633 3.783667 2.833189 -0.752852 -4.106519 -1.241081 -2.915580 3.914809 -2.494295 2.600660 -0.372868 4.144433 2.196455 -5.172369 -0.842147 -7.851513 1.577958 2.777356 -3.274397 -0.324030 -5.277520 0.693990 -1.502047 -3.296610 2.586084 -2.063165 2.785324 -0.034226 0.301065 -4.853532 -3.883507 2.657376 -0.041484 2.009605 1.901254 0.087862 -2.699552 1.448163 -3.326027 -3.006657 0.370957 -0.553702 0.682382 0.460228 1.790696 -3.350588 0.786404 0.000978 -1.970933 4.459948 -2.249692 4.226657 -1.386553 -1.383947 -3.389658 -2.561842 -0.665303 -4.163038 1.693447 5.214885 -3.347466 1.142542 0.359736 1.358732 0.529090 -5.576711 0.340567 -2.109512 0.158726 3.854105 -3.015988 -2.124295 0.304195 -0.420644 0.420355 5.675508 -1.757746 1.411518 4.252831 3.023230 1.022594 -3.515746 1.653411 0.597903 1.873544 2.328466 3.749948 -4.208549 -2.502404 -0.914059 -0.194345 -8.086806 1.104042 2.201816 3.760256 0.875961 -7.369432 3.837735 -2.624600 4.837580 3.619330 4.627882 1.850300 -0.844975 -3.236322 1.945487 9.527302 -2.882904 3.611922 -3.285856 -7.276406 7.756838 -1.612941 4.361432 -0.324814 0.824716 2.289339 -4.448521 0.819331 6.439492 1.104225 1.198229 5.494111 -0.651200 1.080228 -7.684520 -6.658885 -0.283605 2.752517 1.722607 11.109382 -4.805636 -1.523548 -1.691144 5.076148 -1.878082 -1.393352 -0.368632 -0.685307 1.379746 -12.939606 -8.487696 7.122332 5.968884 -0.267789 0.058510 5.223383 0.927491 1.855209 -3.237345 -4.153476 3.088206 1.516250 3.159184 0.955994 -0.589741 -5.110545 -0.169586 0.875561 1.063098 4.433314 -6.305509 -4.212690 -2.644800 -6.817730 -5.419633 1.619642 -6.454185 -1.951538 0.532077 0.209268 -0.972750 1.128784 0.199816 -3.159394 0.560078 -2.747928 -1.321474 1.202928 3.412236 0.725330 6.767362 6.086636 -0.360063 1.994029 2.407340 -2.034972 15.496695 -4.446167 -1.061338 0.157432 5.534558 -0.135431 2.434303 2.496754 -1.266333 -2.395606 -4.771121 4.229113 -0.769063 1.168199 -9.713560 -3.611949 -6.315834 -1.962727 1.179057 6.131836 0.202914 10.979172 -0.191184 0.489531 -10.824502 -0.109720 4.988894 -0.009796 3.554135 3.514686 -4.990739 -7.585057 -0.865469 -1.773322 5.250320 -1.239170 -5.683853 -3.421105 -0.912620 -0.270880 -2.552504 3.555091 6.914330 -1.486434 2.050421 0.795015 -1.403944 -1.121582 -2.824550 2.291686 1.992156 -3.073619 6.174343 -1.262746 9.634848 -1.766918 4.592008 -3.739794 1.929525 -0.705750 -2.288395 -2.064920 5.654343 3.322755 1.635694 1.107546 0.426233 -2.292147 2.966324 -PE-benchmarks/binary-insertion-sort.cpp__main = -0.503087 1.473472 5.253559 2.916893 -2.381863 -3.383968 -1.497155 -3.762747 1.799979 0.725229 3.074434 -0.639557 1.192782 0.923204 -0.134801 -0.827129 1.481333 -0.165707 -0.263223 -1.442844 -1.735308 3.406117 1.756014 -2.956669 0.629251 -3.966236 2.350196 1.564310 1.367943 2.713636 0.219011 0.062722 -0.506336 1.850142 -2.259986 -0.634770 0.010804 0.783613 -1.718471 -0.041681 1.306253 0.864306 2.546843 0.093134 1.721466 1.833218 1.525692 0.078034 -2.537539 -0.898342 -1.347651 2.798651 -1.257275 1.761610 0.230211 1.267268 0.650395 -2.526744 -0.448680 -2.985020 0.432763 0.704995 -1.569574 0.018359 -2.693847 0.400070 -0.990714 -2.067706 1.295634 -1.051210 1.665421 -0.098253 0.108061 -1.714365 -2.772103 1.320517 0.455701 1.307916 1.234878 0.214968 -0.581791 0.529583 -1.934273 -2.141448 0.701366 0.695482 0.674183 0.205091 -0.342746 -1.485640 0.507047 -0.263778 -0.450268 2.464939 -1.889877 1.838853 -1.153534 -1.090687 -2.372270 -2.582530 -0.169101 -2.142756 1.293382 1.778810 -1.505177 0.464639 0.000000 0.946356 0.101650 -3.040763 0.367313 -1.042426 0.095081 3.050739 -1.591715 -1.272616 -0.338546 -0.466622 -0.235834 2.734132 -0.235935 0.720162 2.592744 2.032069 1.096533 -2.155010 0.038518 0.421440 1.245542 1.441316 2.194553 -2.482176 -1.539707 0.049206 -0.828402 -4.625572 -0.126585 1.260127 2.519490 0.203943 -2.997997 1.261760 -1.660395 2.630058 1.745886 2.089787 1.002846 -0.475617 -1.868719 1.149157 4.936540 -1.678264 2.253178 -1.671691 -3.151952 3.428713 -0.764927 2.245483 0.139769 0.169082 0.554874 -2.296703 0.223147 3.484909 0.820798 0.621220 2.057836 0.011049 -0.605227 -4.221105 -4.256704 -0.077361 1.885643 0.550797 5.254594 -2.701842 -1.522631 -0.821132 3.267935 -0.833554 -1.225344 0.409722 -1.016323 1.109272 -5.707420 -4.377338 4.283161 4.109589 0.434006 -0.236845 2.837954 0.657721 -1.028632 -2.272257 -2.149175 1.753552 0.500858 -0.269290 -0.373315 0.046151 -3.013229 0.009739 0.197083 0.933354 2.204434 -1.995053 -0.786378 -0.819613 -3.503111 -2.538478 1.358965 -2.945893 -0.948986 0.432516 0.193342 -0.274766 1.106324 -0.561342 -1.733848 0.538336 -1.920622 -0.383826 0.753445 1.993975 0.290128 4.110481 3.333576 -0.148056 2.049181 0.804441 -1.665055 7.384767 -2.361232 -0.071364 -0.146441 2.457374 -0.518346 1.245358 1.789236 -0.924245 -2.010384 -2.816435 1.202822 -0.373484 0.984345 -4.144845 -2.584413 -3.666704 -0.786016 0.484899 3.438140 0.120786 5.741084 -0.503199 0.718408 -6.145127 0.201969 2.148941 -0.189505 2.132475 1.710460 -2.710617 -4.002447 -0.400202 -1.921590 1.113222 -0.512500 -2.977433 -1.891790 -0.979887 0.938159 -1.246518 1.177625 3.545040 -0.725092 1.774236 0.490321 -0.793133 -0.953724 -1.099325 2.255227 0.566216 -1.931527 3.299502 -0.166586 6.449663 -0.430107 2.360443 -1.700475 0.344156 -0.016311 -1.800752 -1.361466 3.374323 2.283510 1.165465 0.136854 0.128171 -1.172014 1.716453 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -1.975332 3.702929 15.602313 10.757242 -4.228321 -5.724479 -3.129587 -6.500647 5.336072 1.446649 7.585327 -0.738278 3.945165 1.910143 -1.115357 -5.108447 5.643636 -2.049266 -0.061467 -3.378125 -0.519465 11.412843 5.309038 -12.811957 0.481620 -13.906600 9.339994 4.214149 4.322262 9.624400 0.373205 1.347868 1.761569 6.044696 -7.921201 -5.496179 -0.484702 2.984528 -4.019301 -2.300521 5.646030 7.299583 7.337128 0.904742 1.882543 5.467884 5.498016 -1.203440 -5.482230 -1.603815 -5.740612 5.995551 -4.206963 4.966199 -2.159850 4.570656 4.517840 -7.765517 -1.494070 -11.197511 2.394431 6.860520 -3.390345 -1.157783 -8.306638 1.282194 -0.510700 -5.325463 3.885342 -0.605654 4.774352 2.716099 3.220890 -8.974121 -7.821710 6.359949 -0.095094 4.276226 3.489970 -0.172440 -3.871871 2.098916 -4.748709 -5.902207 1.984675 1.419464 1.628856 1.003265 3.847524 -5.576832 -0.135806 0.597230 -5.272405 7.436588 -1.988793 6.945264 -2.875143 -1.454891 -3.156300 -1.511662 -2.976452 -8.235432 1.952431 9.742316 -4.429953 3.309144 -0.082927 2.159681 0.123015 -6.750920 1.538242 -3.335935 -2.026067 6.964703 -4.171014 -4.074356 -0.284090 1.150873 1.622899 8.860515 -4.810369 3.585560 8.131837 5.524769 1.309045 -6.551498 3.778192 1.686662 3.603373 4.152972 7.657135 -7.266833 -5.205685 -2.853779 0.253419 -11.917783 2.661754 3.830528 6.516352 -0.973392 -13.826306 7.363450 -4.888299 9.807900 7.491295 6.037895 4.292302 -0.096648 -4.404212 4.777401 15.221744 -5.224771 5.487012 -7.800252 -8.953901 11.609298 -1.496530 7.558916 -2.678883 1.719152 3.233391 -8.713625 2.301574 11.277398 2.137445 2.787587 9.096139 -1.854296 4.211688 -12.997245 -10.481138 -1.726014 2.847246 2.190459 19.121946 -6.885446 -3.087510 -2.683448 4.500735 -2.904554 -1.964921 -0.435154 -1.744612 2.442279 -20.362454 -13.748871 12.902067 8.753446 -1.601736 0.365447 7.762317 1.073360 3.146879 -5.539926 -4.521422 6.157273 2.297953 3.591058 1.808074 1.462596 -7.886460 -2.412584 2.367160 1.315129 8.395383 -9.788773 -7.090848 -3.259813 -12.788411 -7.916319 3.856097 -10.755329 -5.053391 1.053445 0.193207 -0.234812 2.880343 0.719325 -5.252838 2.147639 -4.088982 -5.121821 0.375596 7.816731 1.072450 5.677768 10.948178 0.803332 3.314491 5.884128 -4.759257 22.510819 -6.552668 -3.354430 0.172681 7.276903 -0.195537 5.063623 3.578342 -2.298110 -3.419316 -10.422347 8.915991 -0.926127 1.621539 -16.143684 -3.018355 -6.722583 -3.215268 2.549445 10.621216 -0.156090 18.379665 -1.780448 -0.437017 -17.007105 -0.403794 7.320890 1.865562 5.749687 7.609864 -7.857025 -10.756684 -1.963743 -3.374306 7.810179 -2.381880 -10.106748 -7.016225 -1.649402 1.655754 -5.096956 5.697474 13.396908 -2.679917 4.776833 1.021349 -2.419671 -2.669070 -4.376113 2.224573 4.896192 -4.546539 9.422600 -4.250080 15.091605 -4.089560 7.298547 -8.255620 2.600517 -0.858402 -4.812753 -4.000222 11.565913 3.772715 2.194882 4.517980 -1.518440 -3.185592 8.244627 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -0.728215 1.361038 5.950796 3.843138 -1.271669 -3.275222 -1.285585 -3.152532 2.508167 0.782097 3.217191 0.492874 1.807614 0.640568 -0.120028 -1.311673 1.638914 0.005453 -0.334892 -1.193659 -0.483651 5.267688 2.928010 -4.377891 0.183755 -4.725101 2.877490 1.673745 2.537486 4.236028 -0.148715 0.294291 0.640890 2.199414 -3.239675 -1.390444 -1.490639 1.364657 -1.794650 -1.271633 2.185805 1.590549 2.930110 0.956572 1.524971 1.139287 2.525799 -0.927610 -1.800830 -0.848878 -2.778112 3.255022 -2.119571 2.110027 -1.418038 1.885517 1.358842 -1.883179 -0.237900 -4.957746 0.820960 2.238690 -2.334577 -0.740537 -3.345277 0.540532 -1.421169 -2.270897 0.539642 -0.949752 2.319183 0.797707 0.597737 -3.484366 -4.328374 1.663463 -0.445255 1.572815 1.770152 0.839479 -2.155719 0.389369 -1.844457 -2.558154 1.799421 0.132162 0.179555 0.858389 0.159090 -2.215121 -0.609062 0.562109 -1.407409 2.690442 -1.808466 3.499921 -0.273502 -0.582112 -0.482091 -0.980741 -0.708877 -3.327667 0.466172 2.577511 -0.503199 0.624544 -0.709918 0.746836 -0.241059 -3.445028 0.856429 -0.631612 -1.888446 2.634836 -2.081485 -0.771369 0.586444 0.665209 0.291456 3.696555 -0.713413 1.510040 2.440035 2.048330 0.861424 -2.587459 1.482140 1.139666 1.801720 1.789714 2.158567 -1.721238 -2.217474 -0.483041 0.155783 -5.328148 0.834793 3.496465 2.604340 0.594448 -4.539153 2.125211 -1.478218 3.053390 3.324107 2.175714 1.906790 -0.105785 -2.084111 1.630334 6.366667 -2.307839 2.528822 -2.048652 -3.957650 5.589597 -2.090701 3.228038 -1.000092 0.624510 1.645929 -3.081564 0.621180 4.832830 0.751391 1.308580 2.761426 -0.593631 0.858918 -5.125535 -4.595173 -1.207620 1.940082 1.489048 6.642655 -2.167535 -0.909588 -0.456543 2.201715 -1.214424 -1.029388 -0.012894 -1.128760 1.288373 -9.201199 -5.247876 5.538756 4.134470 -0.046685 0.020955 2.829173 1.990589 1.412428 -2.225032 -2.046176 2.260287 0.953063 0.840152 0.331075 0.001327 -3.376532 -0.624614 0.798984 0.131149 1.709998 -3.301928 -1.368350 -1.377196 -4.397905 -2.769382 1.401906 -4.437626 -1.689730 -0.207967 0.044508 -0.468668 0.730667 0.194496 -1.404311 1.380149 -1.965386 -1.275728 -0.044185 2.427228 1.104476 3.076357 4.786471 -0.179547 1.414300 1.930725 -2.117279 8.843411 -3.144912 -1.173559 -0.072862 3.282229 -0.007062 2.296547 1.312660 -0.962340 -1.584190 -3.918472 2.826911 0.600682 1.019025 -5.046722 -2.114873 -3.083403 -1.046861 1.015695 4.312850 -0.548859 7.365439 -1.466912 0.485945 -7.031258 0.283837 2.915995 0.167754 2.662457 2.595611 -2.734576 -4.095814 -1.288533 -1.027440 3.164676 -0.696143 -4.034703 -2.192437 -1.232263 0.587291 -3.330994 2.558704 3.499841 -1.322474 2.521549 -0.051575 -0.757141 -1.731160 -0.775898 1.494344 1.815061 -2.232929 3.419810 -1.326993 5.987503 -1.849398 3.381909 -3.200587 1.788423 -1.223730 -2.077915 -1.485299 4.854579 2.757308 0.809552 1.158667 0.104193 -1.007755 2.207031 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -2.156097 1.364097 8.245746 6.176934 -3.167784 -4.968894 -1.893922 -4.180284 3.507602 1.547080 4.886623 0.677151 2.632555 0.611187 0.174061 -2.100910 2.391255 0.030465 -1.059032 -1.821609 -0.821710 6.460522 4.583223 -7.037094 0.506659 -5.369708 3.641981 2.719799 2.275274 5.331776 -0.148317 0.600706 -0.079190 3.194366 -4.703241 -1.359573 -1.613809 1.925710 -1.940721 -1.869416 3.143836 1.798047 3.986695 0.822300 3.081744 1.912775 3.546076 -1.085156 -3.990155 -1.858867 -2.774263 4.291915 -2.801109 3.431530 -1.035320 2.847599 1.526247 -3.273289 -0.452216 -8.462035 1.968045 2.459913 -3.092686 -0.995764 -4.133689 0.521861 -0.619864 -3.388630 1.299536 -2.104306 3.051263 -0.056859 0.414639 -4.680274 -5.054410 1.682599 -0.201209 1.606929 2.403096 1.660836 -3.114839 -0.180541 -2.343476 -3.389898 1.518911 -0.313231 0.274015 1.656986 -0.320654 -2.519180 0.295421 0.313326 -1.809209 4.062060 -3.286298 4.055620 0.721918 -1.053788 -1.704997 -1.113181 -0.333230 -4.216591 1.049044 3.734268 -1.228402 0.910801 -1.121726 1.230798 -0.914180 -4.692744 1.177659 -1.495030 -1.956638 2.983349 -2.896503 -1.275960 0.910590 0.358813 0.789618 4.901554 -0.759556 1.706424 3.825563 2.740042 1.595396 -3.860353 1.650379 1.423230 2.923259 2.583467 2.618028 -3.010370 -2.510023 0.139085 -0.947995 -7.262366 0.460950 4.344483 4.055849 1.222258 -6.905924 2.969418 -2.238808 4.393364 3.938031 3.773871 2.009770 0.018654 -3.140688 1.396046 8.825240 -2.941917 3.577894 -1.524701 -5.432855 7.411318 -2.424937 4.567015 -0.426366 0.407555 1.895585 -4.012791 0.330345 6.381865 1.518329 1.679560 3.300304 -0.362652 -0.027127 -7.475813 -7.235023 -2.033165 3.060136 2.701215 9.575151 -3.720938 -1.794467 -1.191061 3.681697 -2.008281 -1.988232 -0.045357 -1.163456 1.959789 -12.129692 -7.098036 7.823955 6.102226 0.903971 0.266868 5.025350 1.224642 1.633213 -3.297242 -2.882208 2.717622 1.409374 2.128320 0.969008 -0.123743 -5.538186 -0.923605 0.552384 0.373541 2.100009 -4.390683 -2.000682 -1.071542 -5.546216 -3.414091 0.776517 -5.618152 -2.180098 -0.362225 0.526682 -0.442899 0.782495 -0.252605 -2.578116 0.904240 -3.000532 -1.594757 0.258676 3.129778 1.717232 5.205713 6.327217 -0.800302 2.354965 1.682652 -2.844307 13.005825 -4.459387 -1.192538 -0.066556 5.012183 0.537174 2.314360 2.199183 -1.511620 -1.357519 -4.958877 3.051185 0.827684 1.861898 -8.669925 -3.446060 -4.697756 -1.131641 1.002764 5.674554 -1.100087 10.032480 -1.717780 1.324195 -10.967046 0.495215 4.201502 -0.226390 3.133193 3.401003 -4.271445 -7.459527 -1.247975 -1.645470 4.151967 -0.707490 -4.735303 -2.668530 -1.477774 0.740372 -3.900223 2.945566 5.661233 -2.311288 3.498240 0.237239 -0.859347 -1.386423 -1.527086 1.823804 2.299729 -3.273271 5.267942 -1.136196 9.464678 -1.805931 4.909398 -3.594108 2.557082 -1.720502 -2.888512 -2.207262 6.114926 4.015616 1.595009 1.526852 0.648047 -2.037389 3.159583 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -0.215609 1.298548 4.857539 2.588408 -1.562532 -2.580063 -1.098851 -3.781035 1.984590 0.775370 2.939232 -0.383119 1.755936 0.416986 -0.180366 -0.538770 2.144337 -0.815183 0.538585 -1.294460 -0.550034 4.304601 0.968756 -2.428066 0.289036 -4.540684 2.758562 1.232084 1.912641 2.890565 0.550602 0.196606 0.134541 1.635619 -1.880700 -0.955842 0.104957 1.111260 -1.899893 -0.237391 0.955244 1.189604 2.516378 0.162849 1.138570 1.305201 1.987373 0.052316 -1.455232 -0.733663 -2.035464 2.350580 -1.360846 1.515494 -0.665812 0.303990 1.110077 -1.811705 -0.548961 -2.246925 0.146712 1.094123 -1.392603 -0.042311 -2.681870 0.670504 -0.981860 -1.635471 0.821939 0.040347 1.763352 0.935825 0.952822 -1.829582 -3.767061 1.701635 0.119766 1.261371 1.209006 -0.061142 -0.696111 0.517006 -2.056165 -2.329143 1.588939 1.554881 0.619553 0.023445 -0.108250 -1.296511 -0.496653 0.082654 -0.835262 2.303808 -1.217330 1.908231 -1.248681 -0.690260 -1.398319 -2.084547 -0.577197 -2.543632 0.859512 2.036035 -0.833341 0.712807 -0.181206 0.720923 -0.285460 -2.543598 0.637623 -1.105109 -0.610649 3.097654 -1.304848 -1.225059 -0.837021 0.131890 0.218882 2.507456 -0.689996 1.194352 2.815450 2.046478 0.801890 -2.174145 0.274666 0.952210 1.294907 1.304484 2.185628 -2.414838 -1.831279 -0.390936 -0.452750 -4.224924 0.017971 1.540081 2.283193 -0.872145 -3.096031 1.722834 -1.598982 3.016317 2.693623 1.445648 1.296319 0.135638 -1.564208 1.750536 4.878158 -1.623776 1.963860 -2.604272 -2.131286 3.446528 -0.704786 2.134093 -0.526776 0.581559 0.177532 -2.503682 0.503560 3.426534 0.797680 0.947462 2.174608 -0.045865 0.377656 -3.929723 -3.812912 -0.418235 1.848978 0.551930 5.451307 -2.385821 -1.224685 -0.398635 1.685157 -0.400136 -1.149607 0.498439 -1.195488 1.002438 -6.097826 -4.336876 4.482417 3.241743 0.221207 -0.126150 2.242788 1.067851 -0.787094 -2.170606 -1.622445 2.205577 0.301805 -1.142114 -0.321306 0.638874 -2.922964 -0.748362 0.329466 0.730769 2.566406 -1.843273 -0.746509 -1.067613 -3.660162 -2.299503 1.998459 -2.858077 -1.723750 0.227487 0.004138 0.023012 1.184983 -0.207452 -0.918630 1.041364 -1.696521 -1.134766 0.488447 2.129074 0.078457 2.807003 3.852596 0.182783 1.459232 1.162668 -1.773669 6.144325 -1.788146 -0.627916 -0.127365 1.734112 -0.323070 1.532886 1.648898 -0.873007 -2.102880 -3.368007 1.933511 -0.100766 0.923463 -3.411078 -1.643785 -2.864068 -0.765809 0.718799 4.028673 0.164622 5.709797 -0.999085 0.451323 -5.423954 0.170201 1.764414 0.384128 2.116883 1.911069 -2.386005 -2.295547 -0.649035 -1.847830 0.705353 -0.680204 -3.202263 -2.375480 -1.170355 0.927261 -1.746268 1.107888 3.555549 -0.687903 2.102636 0.215908 -0.806433 -1.480955 -0.455642 1.781903 1.043006 -1.704808 2.924060 -0.939967 5.932971 -1.054039 2.057954 -2.172695 0.631027 -0.310585 -2.035062 -1.180239 3.824658 1.841778 0.753204 0.864544 -0.590478 -0.531730 2.450846 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/tarjan-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.268643 0.351573 1.552905 0.930686 -0.696781 -1.715566 -0.335272 -1.741506 0.895105 0.423983 1.417793 0.228207 1.015188 -0.298223 0.221611 0.136317 0.768489 0.107423 -0.030404 -0.513915 -0.389527 1.652745 0.494344 -0.680355 0.247538 -0.779538 0.744673 0.787771 0.719517 1.098878 0.186748 0.012349 -0.175562 0.576514 -0.663992 0.096534 -0.375856 0.599203 -0.684655 -0.259782 0.275330 -0.328743 1.124024 0.244826 0.880623 0.187145 0.997675 -0.014203 -0.687518 -0.536527 -0.773002 1.063757 -0.716355 0.756123 -0.559639 -0.108701 0.444002 -0.068804 0.063149 -1.267504 0.196519 -0.042288 -0.959185 -0.211748 -0.905083 0.114412 -0.476450 -0.845574 -0.074609 -0.340270 0.741692 0.008684 -0.184594 -0.522070 -1.829503 0.029896 0.184949 0.272518 0.755714 0.430593 -0.393991 -0.377578 -0.817343 -0.947650 1.126506 0.221359 0.336081 0.544082 -0.986175 -0.346655 -0.169559 0.204749 0.238242 0.700598 -0.811971 0.668680 0.217463 -0.346397 -0.498305 -0.989188 0.263737 -0.791954 0.244240 0.221237 0.168216 0.016226 -0.629060 0.262574 -0.578076 -1.169715 0.327582 -0.536746 -0.598952 0.948833 -0.564260 -0.310798 -0.147341 0.018538 0.183397 0.892982 0.369885 0.283920 0.845039 0.689891 0.534406 -0.981805 -0.103112 0.407653 0.745342 0.676889 0.285526 -0.458703 -0.680762 0.337813 -0.753505 -1.901628 -0.295806 1.214284 1.012624 -0.022589 -0.918402 0.624110 -0.594440 0.735676 1.139520 0.599626 0.461641 0.208058 -0.848878 0.409255 1.656453 -0.647262 0.907647 -0.169575 -0.750835 1.408711 -0.581789 0.590495 0.056338 -0.224459 0.033271 -0.516108 -0.019330 1.328300 0.457954 0.430327 0.237216 0.258747 -0.566511 -1.410148 -1.851852 -0.361049 1.380583 0.740730 1.732869 -0.901810 -0.432407 0.078528 0.729580 -0.453059 -0.753430 0.269442 -0.588771 0.674062 -2.611344 -1.457707 2.019199 1.317052 0.706653 -0.009173 0.797884 0.663209 -0.372709 -0.796046 -0.652052 0.609675 0.198014 -0.861408 -0.233433 0.062122 -1.475326 -0.187931 -0.033323 0.176278 0.041065 -0.346997 0.509578 -0.514522 -0.787761 -0.518757 0.350499 -0.883472 -0.379478 -0.170193 -0.084427 0.023315 0.291446 -0.235251 -0.140762 0.260577 -0.966543 -0.183589 -0.014426 0.619910 0.467409 1.772902 1.642096 -0.388182 0.692191 0.027528 -0.846288 2.087523 -0.819676 0.069678 -0.020746 1.077778 0.297378 0.568165 0.940991 -0.466938 -0.585335 -1.307087 -0.035844 0.727884 0.667079 -0.832280 -0.809939 -1.562480 -0.051864 0.096544 1.747212 -0.419835 2.071360 -0.656342 0.590043 -2.144141 0.230912 0.448414 -0.240635 0.790124 0.465390 -0.885619 -0.944835 -0.393606 -0.816994 -0.147833 -0.034997 -0.671485 -0.615214 -0.565892 0.158918 -1.176419 0.278827 0.606484 -0.500505 1.012314 -0.201303 -0.071360 -0.541871 0.237748 1.015416 0.283527 -0.892157 0.967902 0.069295 2.605826 -0.186116 1.055243 -0.671212 0.606770 -0.430584 -0.895409 -0.579866 1.458232 1.393051 0.326145 0.240866 0.331843 -0.018460 0.813990 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -5.508088 3.390460 27.178183 16.146531 -9.016356 -15.344633 -6.958209 -21.489930 14.747946 6.749210 19.704341 2.484773 10.285620 -0.305967 0.236134 -4.581150 8.015365 -2.032128 -2.105710 -6.400519 -1.373915 24.955468 11.638216 -17.216439 1.684513 -19.966525 10.203467 7.099055 10.373289 15.942474 1.022654 1.085419 -1.175436 9.160565 -12.456301 -1.286366 -3.410003 6.700046 -8.616717 -6.246571 8.527857 4.654330 12.951854 2.306758 13.335828 2.072177 11.296025 -3.558825 -10.454410 -6.356117 -7.756916 15.595589 -9.074110 9.876967 -2.020879 6.175548 2.030707 -8.665902 -1.967491 -22.359664 4.773270 6.408731 -10.345415 -1.973202 -12.223057 3.036921 -3.787383 -8.057703 2.610605 -8.224874 10.411228 -0.148273 1.204413 -12.426462 -20.324863 5.078867 -0.516542 3.520292 7.959698 6.164853 -8.195380 -1.989913 -8.000490 -11.673061 8.694447 5.123212 -0.522499 4.322747 -4.071317 -5.664881 -0.464791 0.494495 -3.136399 13.040334 -14.746867 10.980452 0.633333 -4.801006 -4.569083 -6.552966 0.290061 -14.127521 4.221848 9.661602 -3.651735 3.017313 -2.226259 3.896215 -3.296477 -14.855903 3.695195 -3.015732 -4.430765 13.997774 -9.613143 -5.103326 -0.801976 0.882096 0.851584 14.473197 -0.532687 6.415627 13.580313 9.523588 6.992617 -13.363863 2.995206 8.229331 9.485931 8.037528 6.721369 -10.276505 -7.904788 1.601190 -3.237096 -25.646744 -2.007389 13.261605 13.870203 0.875756 -17.637071 7.059857 -6.342378 15.352109 15.059326 8.522589 6.094394 1.251137 -11.731283 5.446162 28.008007 -7.911588 11.156503 -5.877572 -15.235116 21.581061 -9.893121 13.439804 -1.292812 2.747299 3.643470 -13.111609 1.294865 19.670258 3.556092 6.605694 4.638386 0.990796 -1.016153 -22.632609 -25.940352 -6.975020 11.043169 9.460566 28.429643 -11.714533 -7.178328 -2.505897 12.674139 -3.966940 -8.189449 3.232532 -7.184230 7.143305 -36.476617 -22.955869 26.725039 24.572740 5.520931 -0.143355 16.541710 5.492512 -1.335517 -10.849855 -9.725136 10.258262 5.012364 -1.219075 1.466789 0.178249 -18.015727 -4.990396 0.718207 1.730681 5.530475 -9.513234 -0.300180 -1.840902 -14.708639 -9.998951 6.888952 -14.435453 -7.794781 -2.937965 1.601518 -1.687909 4.745414 -4.598304 -5.694688 4.366447 -10.816260 -3.156236 2.718549 8.459329 3.914871 18.280861 21.480359 -3.062032 9.677598 2.972361 -9.234888 36.925524 -13.298484 -3.184544 -0.599407 11.301541 1.126811 7.756580 6.547057 -5.543124 -6.927755 -15.468942 7.610317 1.803381 8.035500 -21.635841 -14.877266 -15.881580 -2.590875 2.644059 18.399192 -1.121915 34.173370 -7.834535 5.627488 -36.025319 1.778475 13.617993 -0.854472 12.042337 9.020779 -12.803719 -21.437880 -3.895105 -7.361666 6.382053 -2.264320 -16.119341 -10.022594 -9.522477 7.856307 -13.898648 7.710625 15.248831 -5.237767 14.020591 -1.134024 -3.141151 -6.993958 -1.591727 6.418981 6.412573 -11.510178 15.174863 -3.053867 33.708236 -7.587035 14.887588 -11.002822 9.886293 -7.532421 -12.052533 -6.481352 19.890073 17.037035 5.601185 0.731664 -0.166972 -6.502619 9.084774 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = -0.007092 0.155141 0.755034 0.164259 -0.129552 -0.766339 -0.168927 -1.204728 0.535795 0.318025 0.811847 -0.059343 0.649391 -0.292582 0.059832 0.215525 0.429547 -0.002068 0.107570 -0.230924 -0.067792 0.896563 -0.123612 0.071881 0.115096 -0.564979 0.247677 0.314126 0.442473 0.461665 0.155754 0.006843 -0.073973 0.166622 -0.247265 0.201387 0.102729 0.287170 -0.436132 -0.162285 -0.112760 -0.203347 0.455391 0.020118 0.528580 -0.043806 0.316991 -0.001545 -0.146782 -0.286680 -0.248092 0.523526 -0.226014 0.259872 -0.199932 -0.347861 0.126063 0.059871 0.048958 -0.305338 0.071629 -0.089519 -0.381395 -0.036750 -0.333224 0.134458 -0.193453 -0.317540 -0.063880 -0.218594 0.302741 0.048478 -0.007501 -0.022552 -1.019822 0.064655 0.213385 -0.014251 0.334697 0.154362 0.057006 -0.255214 -0.399852 -0.500113 0.823914 0.536357 0.196108 0.321003 -0.695021 -0.067838 -0.129190 0.032436 0.308919 0.317182 -0.377651 0.112055 0.026344 -0.201224 -0.182886 -0.724053 0.173642 -0.384002 0.112674 0.023515 0.185769 0.113108 -0.156213 0.227620 -0.309631 -0.502265 0.236828 -0.294392 -0.182514 0.671636 -0.268075 -0.228831 -0.333583 -0.020044 0.010289 0.334796 0.169568 0.193642 0.420265 0.307575 0.339475 -0.536907 -0.233904 0.433745 0.373436 0.269030 0.019464 -0.413365 -0.270124 0.210673 -0.541843 -0.978727 -0.419507 0.371545 0.515954 -0.267304 -0.257719 0.319361 -0.223144 0.360451 0.593298 0.043818 0.128079 0.206737 -0.454600 0.215464 0.635881 -0.307561 0.428069 -0.192877 -0.201496 0.292203 -0.174802 0.180006 0.014968 -0.105322 -0.065643 -0.229608 0.101870 0.595107 0.175156 0.310237 -0.265092 0.249976 -0.458157 -0.611517 -0.984252 -0.191996 0.699081 0.197038 0.742698 -0.416113 -0.428329 0.085181 0.526050 -0.184509 -0.373445 0.299745 -0.498513 0.371336 -0.964124 -0.751579 0.989388 0.736473 0.566759 -0.070969 0.349780 0.356767 -0.527522 -0.292167 -0.209463 0.299797 0.125367 -1.023698 -0.318543 0.046110 -0.680281 -0.183167 -0.115928 0.108358 -0.120398 0.203959 0.621965 -0.264171 -0.229994 -0.172536 0.417950 -0.274787 -0.121442 -0.190242 0.009169 0.032931 0.297592 -0.374550 0.058334 0.303437 -0.464497 0.025164 0.075641 0.195383 0.161708 0.911922 0.829980 -0.193717 0.471501 -0.162502 -0.400155 0.645082 -0.277209 0.055486 -0.041150 0.244169 0.085252 0.276138 0.482224 -0.258038 -0.408351 -0.686918 -0.292384 0.328270 0.341693 0.089904 -0.499277 -0.758168 -0.009212 -0.073800 0.901315 -0.052276 0.962043 -0.389300 0.325992 -0.935025 0.121754 0.124112 -0.178736 0.392095 0.134603 -0.385331 -0.433008 -0.122347 -0.556162 -0.701566 -0.063470 -0.436641 -0.322762 -0.555711 0.384559 -0.536912 0.012780 0.196791 0.051896 0.550566 -0.145446 -0.020435 -0.446818 0.351351 0.483315 -0.016490 -0.425277 0.284033 0.128922 1.364213 -0.137774 0.419590 -0.308168 0.341801 -0.252868 -0.551192 -0.247617 0.679547 0.770863 0.176855 -0.063750 0.067111 -0.015122 0.453725 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = -0.586307 0.154214 1.577108 0.233294 -0.636283 -1.242899 -0.406124 -1.970318 0.917873 0.636352 1.643757 0.020764 1.084705 -0.556513 0.236829 0.201089 1.015519 -0.381356 0.157698 -0.550861 0.127702 1.301264 0.216499 0.027402 0.308751 -0.981244 0.288421 0.281121 0.558414 0.871154 0.387937 -0.123589 -0.500486 0.342578 -0.005754 0.663783 0.568557 0.432273 -0.746564 -0.232608 -0.190492 -0.500301 0.850775 -0.071163 1.261661 -0.205533 0.481383 0.003279 -0.903227 -0.725169 -0.280136 0.976747 -0.722872 0.534308 0.266881 -0.411851 0.053310 -0.072421 -0.065315 -1.090820 0.013386 -0.497889 -0.460444 0.037814 -0.466899 0.292352 -0.429765 -0.381172 -0.083469 -0.665874 0.513875 0.110223 0.267975 0.531292 -1.377834 0.194191 0.390330 0.133835 0.603780 0.333438 -0.054164 -0.529028 -0.513464 -0.919320 1.065301 0.674982 0.314348 0.377581 -1.302163 0.400962 -0.077527 -0.018902 0.294698 0.524469 -1.102985 0.017979 0.246350 -0.547620 -0.386931 -1.348370 0.186133 -0.731328 0.177179 0.334390 -0.110509 -0.045699 -1.082346 0.445593 -0.779121 -0.777733 0.696369 -0.440461 -0.519340 1.037144 -0.906750 -0.226935 -0.697325 0.048811 0.366205 0.595305 0.152911 0.511336 0.524603 0.702626 0.815065 -0.973325 -0.303554 0.607275 1.045185 0.350033 0.191908 -0.553447 -0.499557 0.519740 -1.098128 -1.660600 -0.889481 0.748752 1.162326 0.241348 -0.692768 0.008309 -0.509214 0.969882 0.991872 0.368163 0.142584 0.343878 -0.969243 0.309651 0.956877 -0.675985 1.014802 0.097003 -0.166581 0.527992 -0.510405 0.476005 0.092525 -0.056990 -0.118304 -0.571273 -0.280599 1.080136 0.728008 0.665233 -0.828385 0.459673 -0.584543 -1.354202 -1.975448 -0.421258 1.347970 0.378528 0.973100 -0.858490 -0.816599 -0.012911 1.112482 -0.285895 -1.082239 0.382057 -0.739153 0.628930 -1.738136 -1.331405 2.089838 1.852699 0.920104 0.072941 0.656717 0.608656 -1.451271 -0.474916 -0.490256 0.588511 -0.218446 -1.727070 -0.610272 0.272107 -1.277202 -0.435495 -0.219665 0.271050 -0.053059 0.271713 1.062874 0.378556 -0.211630 -0.014249 0.598102 -0.375225 -0.715192 -0.287342 0.068302 0.572628 0.524286 -0.647021 -0.011387 0.577735 -1.192256 -0.228597 0.229559 0.708288 0.516245 1.800432 1.419846 -0.185728 0.675596 -0.377929 -0.957133 1.078121 -0.629094 0.129555 -0.208680 0.313498 0.324736 0.354499 0.994445 -0.499998 -0.863924 -1.091369 -0.579205 0.322109 0.902118 -0.270366 -1.555123 -1.334049 0.324167 0.117689 1.303675 -0.210891 1.857706 -0.557131 0.468655 -1.930904 0.124154 0.538488 -0.237762 0.634156 0.261737 -0.688948 -1.157774 -0.264047 -1.178183 -0.801370 0.017623 -0.405575 -0.380721 -1.004728 1.293184 -0.820584 -0.034097 0.193059 0.121436 1.417850 0.604251 -0.139980 -0.801489 0.537966 0.778703 0.108421 -0.703422 1.035137 0.434543 2.536941 -0.252614 0.415455 -0.423623 0.506018 -0.296405 -0.835947 -0.456486 1.219713 1.742631 0.490342 -0.278847 0.014836 -0.307215 0.813034 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -2.617421 2.789421 17.556525 8.745636 -7.710195 -9.166066 -4.172807 -14.368963 8.399856 4.853392 12.294692 0.602638 5.598686 0.570231 -0.050707 -1.659007 4.963474 -1.905295 -1.529490 -4.812823 -3.742469 12.332575 7.369027 -8.765304 2.640700 -13.747725 6.850592 2.887229 5.980446 8.453176 1.391765 0.854237 -1.521519 5.909094 -5.838363 -0.224885 -1.067508 3.653317 -5.220018 -2.229062 5.526754 0.983952 7.493650 2.422060 8.687371 2.252748 5.865189 -1.795234 -8.203418 -3.758898 -4.983153 10.025834 -5.771307 6.603871 -0.360940 4.007335 0.322349 -6.783546 -1.305090 -12.404948 2.029664 1.149138 -5.368804 -0.373987 -7.782636 2.378341 -3.362276 -5.145549 1.887207 -4.019785 7.136070 0.279275 1.112439 -4.741559 -11.187261 3.496232 0.765647 2.376426 5.566491 2.376419 -4.128791 -0.972319 -5.846074 -8.194261 6.153119 3.152395 0.115194 1.208807 -1.882831 -3.754992 0.349774 -1.005081 -1.894382 9.203591 -11.185646 5.880834 -0.352221 -3.765059 -4.488252 -7.345191 -0.512729 -9.130568 3.447561 6.352965 -4.377710 2.505212 -0.896303 3.644313 -1.201325 -9.345916 2.056141 -1.781632 -1.695323 9.419563 -5.775790 -4.300386 -0.652105 0.222960 0.400881 8.102739 -0.048466 4.076497 11.328279 6.599771 4.759947 -6.983008 1.716953 4.584411 5.362106 5.029072 5.091259 -7.839628 -5.307282 2.181146 -1.837874 -15.577001 -1.748483 6.825481 9.632483 0.670915 -10.526706 3.014743 -3.788360 8.747665 8.608411 5.313629 3.538416 0.039932 -6.826269 3.452950 17.724812 -5.618101 6.829021 -4.144778 -8.387022 11.810326 -5.840391 7.530256 -0.210001 1.788110 2.035833 -9.195096 -0.539842 12.506934 2.400727 2.224106 3.404128 1.601800 -2.628839 -14.312106 -15.460368 -4.240703 6.127442 3.931494 16.884505 -8.274408 -3.956584 -2.906576 10.118177 -1.477296 -4.898774 1.982842 -4.377482 3.730219 -19.575977 -13.982734 16.476319 16.133015 3.946128 -0.538890 10.017841 3.817666 -3.827022 -7.624844 -6.731061 5.605430 3.387410 -1.926829 -1.831537 0.537381 -11.840005 -3.071702 0.156246 1.719228 5.822292 -5.324300 0.323590 0.669030 -9.500312 -5.870596 4.849703 -9.131127 -5.613354 -1.287385 1.622140 -0.012224 3.290387 -2.848867 -4.016577 2.485322 -6.958350 -1.873443 3.036861 7.161152 1.937537 13.395609 13.012674 -1.495714 4.826324 1.301598 -6.458372 21.453232 -7.859081 -2.086432 -0.646810 5.564873 -0.555323 4.175372 5.026056 -3.818846 -5.700697 -9.691112 4.247750 -0.870409 3.980699 -12.131676 -8.798640 -11.433746 -1.958043 1.528804 11.332904 0.717427 20.718846 -3.589986 2.215885 -21.413096 0.714607 8.199814 -1.104777 7.489153 5.923138 -8.093498 -13.026214 -2.680419 -5.606524 3.517296 -1.437600 -8.355109 -6.530534 -5.397981 6.054830 -6.745534 4.805851 9.656632 -1.530000 9.082508 0.478287 -2.227268 -5.232952 0.190443 5.942589 3.517351 -7.142448 10.591876 -1.057393 22.082837 -3.670452 7.917591 -6.792747 2.747472 -3.267944 -5.904705 -4.216009 11.767741 10.334829 5.017688 0.458216 -0.529513 -4.722213 6.735272 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/tarjan-algorithm.cpp__main = 1.724031 10.581454 39.012879 12.417982 -15.925013 -31.363299 -9.125561 -45.993391 21.185908 11.142622 29.272454 1.330243 17.591741 0.375101 2.043374 7.643967 16.872563 -1.065712 -0.362477 -14.083971 -8.152791 34.122376 6.047603 -7.861314 7.333065 -30.914087 11.833530 13.196048 20.590015 18.230843 6.212362 -0.114963 -5.265241 12.333093 -11.853910 1.209602 -0.821444 7.307264 -21.995978 0.126426 3.048392 -0.652923 22.493637 4.752182 21.065511 2.949763 16.954638 1.808427 -11.872018 -8.687465 -14.015935 28.861256 -8.772242 15.506180 -4.501339 -0.143396 -0.466224 -9.087456 -0.227746 -11.570962 0.753877 1.356386 -15.883916 -0.734011 -18.302319 3.930814 -12.268658 -14.317784 0.873367 -7.346645 15.783240 -1.353873 -3.234345 -9.305418 -40.079813 4.037677 3.981707 7.032189 14.277570 4.484310 -3.782089 -3.898314 -17.487106 -21.137605 20.719639 18.069676 2.848221 5.072639 -18.958784 -10.408099 -4.454840 -1.178436 4.164350 18.121068 -26.242103 11.336239 -5.371974 -10.790803 -15.326199 -26.051268 3.601366 -16.492597 8.905124 -1.312555 1.384193 3.755474 -3.138772 6.633416 -4.985135 -20.719362 5.031448 -4.937922 -5.086068 30.820155 -9.594161 -11.099388 -8.645333 -1.718540 -4.771376 17.705863 5.376911 5.780633 25.048463 17.071757 12.533473 -18.449085 -3.997759 11.009409 11.001947 13.788287 11.223663 -16.220284 -13.761514 6.517031 -11.073198 -40.091801 -6.917940 16.658840 22.768456 -5.661172 -10.836215 3.009855 -11.655628 19.429610 20.592188 6.757833 9.035378 0.448699 -17.281063 10.667043 40.046407 -12.721716 17.825357 -14.007071 -12.366248 22.414306 -11.970165 14.791265 0.449393 -1.479022 -2.383089 -13.066800 0.232003 27.440821 5.555747 5.362498 4.024960 5.940251 -12.522016 -28.307212 -40.063239 -8.141410 19.598824 7.950874 34.438193 -18.522066 -12.890883 -4.864827 21.172774 -3.229702 -13.801976 12.106515 -17.256248 11.707590 -40.854339 -29.843093 40.027274 40.345891 14.446948 -4.667430 20.803239 12.706411 -19.537130 -20.709673 -12.194389 13.715303 5.034283 -25.357784 -8.593058 2.702714 -28.667953 -3.895738 -2.786484 6.300135 8.637328 -0.347393 15.509937 -5.033484 -21.114945 -15.291656 15.537236 -16.297403 -8.510141 -1.504250 0.953575 -2.258787 10.808103 -10.244407 -5.759593 10.175969 -18.245384 0.370956 5.380365 13.681722 3.726247 33.176159 30.535160 -1.910620 22.941795 -0.166545 -17.467285 41.009666 -15.393452 2.166150 -1.058677 9.678998 -4.492890 12.041449 13.809221 -9.377957 -17.207896 -24.277521 1.947192 2.839287 12.933754 -10.117973 -22.484753 -30.401569 -3.387447 1.271095 32.563059 -0.833731 44.052221 -12.638674 12.026838 -47.473517 4.547910 10.280861 -2.987366 18.383089 10.381846 -20.405799 -18.796598 -3.876161 -20.308538 -10.279437 -0.336478 -20.059558 -17.295020 -16.139320 14.573278 -19.270280 4.861933 18.165187 -5.771208 23.641144 -5.422230 -4.131106 -14.065541 4.641694 25.583245 3.492611 -17.853986 17.557452 0.168594 57.490007 -4.419160 20.688096 -11.879686 4.303215 -4.650343 -20.802453 -12.417303 29.635479 26.580758 10.338596 -2.093456 -1.755456 -2.932940 15.397194 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.409952 -0.069641 8.474069 0.854056 -3.528254 -4.722853 -2.388962 -10.357156 5.068555 3.965125 9.559729 0.486004 5.704415 -2.780648 1.263034 -0.115004 5.393068 -3.800970 2.110314 -2.414472 1.864510 8.307555 2.067480 1.395466 0.638542 -5.877552 1.656115 0.152624 3.855366 5.023175 1.700280 -0.993749 -3.020882 1.273219 1.007390 3.591619 2.747517 2.679423 -3.272876 -1.541436 -0.783200 -4.330868 4.459164 -1.079290 6.877036 -3.389422 2.454044 -0.867325 -5.098065 -4.441232 -1.680250 4.272493 -4.837149 2.186738 2.797880 -3.389355 -0.266088 0.788843 -1.105547 -5.995115 -0.353076 -3.999865 -1.546370 0.725706 -2.054729 2.437468 -4.083602 -0.567103 -0.231899 -4.079419 2.786461 1.641587 3.491771 4.282302 -7.905708 2.053774 1.687079 0.166270 2.382947 2.649159 -0.757924 -2.006341 -2.398005 -5.087517 4.903760 4.434101 0.591828 0.296127 -7.361478 3.980188 -0.176431 0.457938 0.275170 2.940297 -6.970489 0.760177 0.650509 -2.936362 -0.976773 -8.052302 0.013977 -5.061232 0.809885 2.838001 -1.864122 -1.234278 -7.047813 1.700715 -4.440076 -5.225491 3.859750 -2.049990 -3.141367 5.279870 -6.145200 -0.102632 -4.533228 1.121076 2.985641 2.202922 0.422030 4.013575 2.136592 3.791169 4.592580 -5.372356 -1.142155 4.219905 6.099480 0.928897 0.361795 -1.912571 -2.467079 2.605810 -4.825831 -8.498252 -5.454202 5.021553 6.121047 2.039493 -2.704000 -1.622822 -2.600894 6.376523 6.822158 1.950768 0.627589 2.685803 -5.076326 2.098223 4.807197 -3.432907 5.549290 0.791076 -1.019202 4.513039 -4.279553 3.619139 0.163333 2.101646 -0.975227 -4.405637 -2.373920 5.836008 3.626451 4.491101 -5.153116 2.025246 -1.033196 -7.618157 -10.851615 -2.496208 8.046892 3.031316 3.849325 -4.438692 -3.818163 1.730181 5.241096 0.623787 -7.097799 2.198148 -3.150367 3.099691 -11.081730 -7.622568 10.728990 10.562033 3.870136 1.200132 3.022201 4.264512 -8.518322 -2.593182 -3.428196 4.535132 -2.799341 -9.456773 -3.319979 2.022306 -6.328277 -2.717854 -1.174184 0.979685 1.000610 0.283457 5.588439 3.676181 -0.716950 0.575795 4.958535 -2.100699 -6.043846 -2.424029 0.309775 4.002058 2.743771 -2.731731 1.021448 3.319157 -6.535062 -1.680923 1.438096 2.956756 2.011634 9.103906 8.069619 -0.890295 1.225268 -2.301715 -4.645400 5.415891 -4.201597 -0.356429 -1.431687 0.440305 1.564124 2.294908 5.141605 -2.548937 -5.581447 -5.408343 -2.338214 0.523881 5.432592 -2.395664 -9.961286 -6.726684 2.633741 1.893933 6.315900 -0.275465 10.742270 -3.383705 2.140437 -10.505712 0.289136 3.084120 -0.585405 4.968357 0.868037 -2.999372 -4.370062 -2.011094 -5.743590 -1.781390 0.279350 -2.817575 -1.861563 -6.076382 7.825169 -4.155682 -0.138284 -0.716388 0.489027 9.007699 5.397119 -1.677004 -5.525626 3.852078 3.262507 1.181757 -3.163142 7.174797 1.701542 12.637200 -2.903089 0.767740 -2.056173 3.474263 -2.096879 -4.409502 -1.333786 6.889116 9.776669 2.970525 -3.090058 -0.792602 -2.217012 3.524124 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.386260 0.243604 1.528053 1.188915 -0.845083 -1.864967 -0.386800 -1.883560 1.108484 0.484528 1.555073 0.178574 1.236350 -0.762326 0.085125 0.184451 1.098614 0.125287 -0.097822 -0.621059 -0.547155 2.054764 0.472046 -0.761956 0.322654 -0.788623 0.825179 0.689513 0.730168 1.240711 0.318484 0.101093 -0.095302 0.558457 -0.572480 0.386137 -0.407567 0.681115 -0.812812 -0.448769 0.323091 -0.689836 1.350277 0.206481 0.971375 0.021223 1.129864 -0.112440 -1.007447 -0.650383 -0.853969 1.032927 -0.815665 0.768874 -0.583157 -0.266010 0.751094 -0.018370 0.070274 -1.373342 0.072008 -0.288355 -1.065250 -0.228314 -0.981583 0.195826 -0.498807 -0.913495 -0.156122 -0.438266 0.689839 0.197053 -0.124995 -0.467595 -1.925580 0.091323 0.409856 0.213297 0.845599 0.745547 -0.249711 -0.656561 -0.994781 -1.035614 1.526154 0.089068 0.492095 0.810221 -1.185705 -0.372897 -0.146785 0.271323 0.427821 0.608676 -0.866352 0.471065 0.422252 -0.476444 -0.490231 -1.264499 0.245638 -0.829222 0.155340 0.396396 -0.025084 0.208564 -0.742172 0.297190 -0.731591 -1.196430 0.402847 -0.770708 -0.780797 1.109266 -0.647104 -0.489940 -0.410733 0.109643 0.265260 0.914168 0.299189 0.423457 0.994976 0.654285 0.706675 -1.126744 -0.057433 0.459568 0.898657 0.529463 0.308138 -0.385024 -0.810583 0.428808 -0.901530 -2.101533 -0.720397 1.302311 1.186312 0.083628 -1.075184 0.807298 -0.522209 0.853170 1.206956 0.448813 0.454726 0.293561 -0.992861 0.448940 1.567374 -0.741507 0.977888 -0.244358 -0.884899 1.571018 -0.492033 0.466001 -0.096763 -0.407224 -0.069975 -0.561251 0.205015 1.424627 0.324041 0.265826 -0.075151 0.363586 -0.635778 -1.582862 -2.175098 -0.268134 1.543796 1.000008 2.031235 -1.071195 -0.468412 0.108430 0.650101 -0.515794 -0.842277 0.307497 -0.824174 0.765827 -3.038409 -1.819974 2.558897 1.269318 0.892448 0.165116 0.786956 0.636819 -0.506177 -0.771188 -0.766684 0.666953 0.469727 -1.206722 -0.348015 0.199406 -1.668842 -0.371584 -0.035241 0.199802 0.019531 -0.497975 0.776001 -0.911448 -0.681965 -0.474047 0.524609 -0.921010 -0.407676 -0.216406 -0.102590 0.189247 0.518547 -0.137103 -0.111849 -0.047903 -1.007877 -0.359626 -0.191627 0.858790 0.543992 1.935068 2.301662 -0.606806 0.725167 -0.088800 -1.015544 2.117733 -0.975421 0.060881 -0.124846 1.157093 0.552883 0.531107 1.320807 -0.508420 -0.533476 -1.402342 -0.165087 0.929984 0.638360 -1.187272 -0.838754 -1.874419 -0.013682 -0.056776 1.934939 -0.436203 2.238949 -0.943005 0.449316 -2.432254 0.253172 0.611522 -0.160513 0.932734 0.484466 -1.005845 -1.036892 -0.490433 -1.069786 -0.130320 -0.106060 -0.613106 -0.678698 -0.604310 0.412943 -1.372317 0.305045 0.747021 -0.455847 1.234353 -0.044384 -0.003102 -0.730884 0.325989 0.916453 0.314746 -0.766166 1.093620 0.192278 2.771589 -0.053479 0.969774 -0.785248 0.813591 -0.510096 -1.261997 -0.688126 1.505448 1.651983 0.198435 0.425341 0.370293 0.015673 1.138976 -PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.222593 1.191226 6.012403 3.200699 0.288629 -1.350799 -0.940852 -4.013651 2.320553 0.979393 4.774705 -1.907332 1.987388 0.473943 -0.446963 -1.084897 2.417013 -1.430095 1.100388 -0.606098 2.833322 4.440236 1.573225 -2.388408 0.445837 -4.705848 1.599004 1.314507 1.813914 2.336550 0.838705 1.995215 1.289918 1.100310 -1.748622 0.055012 -0.064113 1.638546 -1.294117 -1.396721 0.459575 0.483576 0.930593 0.881245 2.653197 0.711890 3.139442 -1.610184 -1.491426 -0.829799 -4.356617 4.192960 -2.222639 -0.410018 -1.546598 -0.985701 1.500451 -1.843605 -1.062077 -5.212711 0.236880 1.504793 -1.720498 0.106737 -2.374861 2.742040 -0.108820 0.390582 0.075906 -0.227828 2.327167 1.698907 1.799681 0.154927 -3.714382 2.705318 -0.257152 0.579884 1.236523 -0.561722 -0.527818 1.471436 -0.867021 -2.389827 3.737079 1.649481 1.194187 0.479272 0.128067 0.026857 -2.182635 -0.328188 -2.224309 2.635453 -2.547074 2.615481 1.097906 -1.293347 -0.968984 0.409576 -0.343690 -3.595103 -0.047399 3.574366 -0.856218 1.454600 -2.597895 0.549268 -1.312768 -3.371509 0.895130 -1.990104 -1.200229 2.737577 -3.808529 0.037683 -1.536410 1.530018 1.075664 2.958488 -2.092764 3.423848 0.942584 1.882109 0.487749 -1.755618 0.863591 2.326179 2.438097 1.190759 1.132857 -2.034410 -2.138733 -1.643326 0.024595 -3.759957 -1.536681 2.843716 2.989392 0.918234 -5.333315 2.425358 -0.647593 4.237643 3.734958 1.018139 0.631209 1.973897 -2.398609 1.528297 5.408388 -2.347277 2.702884 -1.063327 -0.817529 3.149888 -2.193377 2.576123 0.339490 1.474136 1.099256 -3.184978 -1.427904 3.283500 2.536353 1.408038 1.603707 0.354323 2.282232 -5.232380 -5.230959 -2.286646 1.788112 -0.393132 4.406857 -2.002533 -1.522834 -0.259279 2.462077 -0.645601 -1.595501 -0.509984 -1.615323 0.858153 -6.270262 -5.205186 4.340175 3.810769 0.236280 1.393802 2.582674 2.254246 -0.830496 -1.116634 -0.643361 3.522419 -1.046360 -0.781443 -0.304630 -0.343577 -2.621818 -3.067362 -0.574193 0.380880 -0.162654 -0.677193 1.240588 0.095974 -2.534882 -0.751908 -0.227794 -3.069435 -3.854416 -0.813669 -0.048288 1.176600 0.664940 -1.968552 0.762721 2.645158 -2.800438 -2.158039 0.492263 1.284749 0.754460 2.277809 4.904165 0.669061 1.502424 0.585306 -2.278560 5.409603 -0.245282 -0.745855 -0.854177 -0.041387 1.055267 1.602016 0.768641 -1.088642 -2.489964 -4.176520 2.311553 0.065381 2.004152 -2.632819 -2.619153 -2.257599 -0.572469 3.095319 3.027949 -0.143891 6.803579 -1.099429 -0.801882 -6.190304 0.088890 3.187060 -0.474758 1.837081 1.909273 -2.487437 -3.385034 -0.732614 -1.474261 0.823966 -1.429099 -4.149230 -2.880498 -2.322764 3.488258 -3.212163 1.482445 2.076191 1.758257 2.029194 2.227044 -0.912943 -1.575613 0.047690 0.944414 2.114511 -2.336518 3.113783 -1.869819 5.460024 -3.232153 1.759253 -3.108417 2.235110 -1.008754 -1.105720 -0.051887 5.528281 3.347187 0.170750 -0.059968 -1.528874 -1.169103 2.964124 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.332105 0.527927 1.148814 0.277043 -0.537414 -0.569147 -0.237685 -1.175987 0.578756 0.094356 0.239071 -0.304365 0.143923 -0.147586 -0.305308 0.575347 0.448958 0.373125 -0.153192 -0.407595 -0.267944 0.328462 -0.114762 -0.444200 0.516387 -0.876781 0.441515 -0.173615 0.507757 0.423036 0.249072 -0.137245 -0.097438 0.478233 0.421541 0.504161 0.598393 0.074776 -0.759445 0.323107 -0.251030 0.046404 0.106706 0.227140 0.628565 0.488683 0.023054 0.106735 -0.557330 0.221060 -0.145049 0.776479 -0.351822 0.473438 0.143204 0.358150 -0.306641 -0.638824 0.034291 -0.053237 -0.264310 -0.096876 -0.348104 0.097896 -0.669892 0.012647 -0.145788 -0.282839 -0.276593 0.165284 0.191942 0.151796 -0.050370 0.179042 -0.539054 0.031073 0.260861 0.471197 0.586703 -0.373083 0.348939 -0.340457 -0.380483 -0.575397 0.583561 0.180905 0.277084 0.147570 0.153898 -0.305988 -0.195667 -0.123822 0.197610 0.584334 -0.581083 -0.130807 -0.593196 -0.156793 -0.275325 -1.081705 -0.004979 -0.315819 0.196538 -0.222915 -0.185110 0.412308 0.406156 0.665354 0.281177 0.060950 0.194193 0.073324 -0.136264 0.765041 0.292528 -0.576168 -0.178928 -0.265828 -0.241795 0.491450 0.024090 0.118477 0.632679 0.449552 0.726124 -0.300203 -0.286124 0.101796 -0.014036 0.397402 0.650581 -0.656520 -0.348928 0.132069 -0.139996 -0.912829 -0.056537 -0.171429 0.462526 -0.007473 -0.268880 -0.510984 -0.278127 0.310361 -0.169732 0.174252 0.058431 -0.241653 -0.300607 0.101962 0.887911 -0.393985 0.210093 -0.468329 0.280211 -0.270692 0.046237 0.060273 -0.513862 -0.296687 0.195063 -0.345380 -0.123305 0.630136 0.035652 -0.320460 0.032510 0.152496 -0.737016 -0.726248 -0.503825 -0.179408 0.407684 -0.479026 0.529565 -0.437041 -0.491746 -0.606606 0.617758 -0.133050 0.258025 0.109343 -0.693706 0.354230 -0.042878 -0.746866 1.055057 0.790176 0.397325 -0.307352 0.176510 0.128391 -1.021465 -0.491367 -0.214724 -0.077170 0.056486 -0.794221 -0.803416 0.084317 -0.728154 -0.037424 0.169342 0.320179 0.292991 0.574458 0.258480 0.343153 -0.266744 -0.570260 0.326558 -0.219752 -0.027865 0.223506 0.173603 0.131813 0.502105 -0.488412 -0.391529 0.386986 -0.270811 -0.046582 0.268296 0.554785 0.014993 0.704857 0.672345 0.313949 0.687204 0.224431 -0.635739 0.646523 0.111895 0.362329 0.075482 -0.264870 -0.302293 0.148653 0.513053 -0.276527 -0.542336 -0.587584 -0.557633 -0.199497 0.318774 0.266899 -0.592202 -0.161521 -0.152338 0.034923 0.349116 0.144853 0.687558 0.019905 0.366526 -0.873466 0.089271 0.833737 -0.201490 0.288723 0.440159 -0.577300 -0.960161 -0.039094 -0.469262 -0.795367 -0.326557 0.009190 -0.378080 -0.111576 0.624701 -0.021520 0.072947 0.665034 0.469950 0.593136 -0.249586 0.211866 -0.247686 -0.088171 0.669131 -0.079656 -0.467543 -0.018303 0.499514 1.486366 0.145533 0.172833 -0.320389 -0.610417 0.222808 -0.296599 -0.426375 0.520569 0.523046 0.421216 0.081686 -0.159398 -0.331103 0.631973 -PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.782155 -1.317083 28.194285 6.226006 -9.056724 -13.060348 -8.625524 -28.774897 15.391480 12.366295 31.382061 0.159802 16.673499 -7.870466 3.941005 -4.047504 15.914636 -15.083247 5.455815 -7.266441 5.748731 25.643135 11.129888 -1.005565 1.704708 -21.404151 6.554591 0.656430 8.477016 17.034711 4.955310 -1.167381 -6.778087 5.950081 -0.125459 10.868926 8.644227 8.395088 -6.107416 -6.453608 2.212426 -6.348827 13.543236 -2.102809 21.960709 -5.535102 8.158117 -4.357262 -17.856864 -13.943876 -5.945872 14.791543 -17.189678 5.810983 8.791992 -5.722575 2.708981 -4.008932 -5.432741 -25.300273 -0.485353 -7.705195 -5.607962 2.101158 -6.853375 8.448183 -9.647254 -0.512780 1.464926 -11.962543 10.696873 5.465080 10.725555 10.801720 -18.366019 9.803324 4.226800 0.712232 8.047885 5.528502 -5.909517 -3.231018 -6.334270 -15.995546 14.957276 9.174187 2.547986 1.286312 -16.232031 11.436877 -1.374750 -0.365255 -2.894637 11.284385 -19.034399 3.136491 7.576602 -10.029334 -4.537205 -17.398234 -0.817954 -17.386307 2.077916 16.795648 -8.162274 -3.690901 -23.942123 4.517961 -15.184956 -16.877830 12.322834 -7.649328 -8.671375 13.489297 -22.465642 0.992569 -12.149548 3.906722 11.149224 10.973266 0.404430 13.233683 8.276614 12.871629 11.888169 -15.944090 -1.159399 10.960349 21.173273 3.046324 3.016979 -9.259066 -8.734026 6.622516 -13.196293 -25.615998 -15.475596 16.021436 19.152718 9.698283 -16.701136 1.461462 -6.785474 21.185290 21.591371 7.533057 2.198872 7.313198 -16.114974 7.964088 18.030655 -12.017233 18.006233 1.670739 -7.315590 17.638887 -15.576374 12.481849 3.037424 7.053919 -1.079781 -16.523928 -6.434768 19.464745 13.314199 14.963408 -11.800968 5.903193 2.832857 -25.692919 -34.586166 -7.089250 21.178068 8.433590 17.771596 -14.121288 -11.270567 3.099113 18.290635 -0.271808 -20.921667 3.368914 -7.691521 8.238289 -37.604971 -25.087532 35.837320 32.323806 10.792871 4.670537 12.070607 13.062688 -20.141265 -5.608010 -11.514011 16.091606 -6.607501 -20.925107 -5.820854 4.544530 -19.013226 -11.067927 -4.914957 2.956171 3.216979 -4.325530 10.033555 10.633862 -5.701548 2.320127 11.638976 -9.665441 -20.274749 -7.716687 1.030389 11.779288 7.358910 -7.481342 1.785716 9.109251 -21.200494 -8.423346 6.116609 12.415574 8.937451 27.050623 25.495721 -3.129568 4.202286 -4.811107 -13.062930 20.360401 -12.664717 -3.242065 -4.108349 4.934467 7.687116 6.726626 14.444063 -7.282282 -16.772607 -17.351579 -0.445316 1.840968 15.765423 -14.217255 -29.682185 -21.631398 5.331319 8.528826 20.003249 -1.501532 36.665294 -7.920150 3.943501 -34.760745 0.235697 12.692313 -1.376571 12.871431 5.083848 -10.536044 -18.992982 -7.264598 -16.390894 -0.756630 0.304117 -10.113800 -6.850720 -19.562006 25.863400 -14.302986 2.902739 2.046165 3.103862 24.226245 20.176827 -5.461833 -16.464117 8.445292 6.699705 5.771208 -10.521909 24.679885 2.730904 38.373062 -11.838356 4.809168 -9.789163 12.678564 -7.128320 -10.775623 -2.939071 21.820278 30.006514 6.968786 -6.279293 -1.803600 -8.454673 12.966032 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.096554 0.946197 2.969135 1.141322 -1.613958 -2.152895 -0.703961 -3.758404 1.756321 1.630509 2.276324 -0.191910 1.445545 -0.402890 -0.546224 0.402174 1.334974 -0.029622 -0.150469 -1.429233 -1.565247 2.326553 0.045904 -0.099581 0.859330 -3.005196 2.340074 0.128215 1.221893 1.526366 0.845416 0.293887 -0.471943 1.313886 -0.221828 0.668457 -0.031071 1.121477 -0.825599 0.337255 0.942580 -0.292279 1.523862 1.356950 1.769783 1.168285 0.345679 -0.209336 -1.551579 -0.978246 -0.477212 0.676250 -1.155094 1.490299 -1.038495 -0.174098 0.442212 -0.557820 0.677403 -1.036680 0.101065 -0.799993 -0.964756 0.063178 -1.607724 0.315063 -1.236314 -1.486264 -0.548114 -0.420347 1.435902 0.277415 -0.317372 -0.097970 -2.707122 0.470726 0.686976 0.174202 1.924001 0.069863 -0.740822 -0.816159 -1.979267 -2.340135 2.239246 1.183226 0.610851 0.914727 -0.893275 -1.345428 -0.248552 -0.100305 1.015426 2.072000 -1.697610 0.108229 -0.360399 -0.868882 -0.816089 -2.662092 0.126547 -1.541310 0.707415 0.580618 -1.164598 0.598556 -0.134296 0.617946 -0.208884 -0.968720 0.792484 -1.190664 0.287191 2.340434 -0.214168 -1.841110 -0.895982 -0.380780 0.476207 1.382245 0.739579 -0.072251 3.123958 0.979015 1.419608 -1.518824 -0.398083 0.920981 0.245837 0.773902 0.900292 -1.459224 -1.428707 0.551015 -0.999350 -2.933555 -0.699863 0.443915 1.917396 -1.154745 -0.764043 1.084975 -1.125057 0.725128 1.860821 0.513711 0.821452 -0.002158 -1.644624 0.598690 2.947844 -0.872690 0.839317 -1.262975 -1.055729 1.688261 -0.492444 0.723832 -0.107219 -0.561034 -0.303371 -1.250761 0.315294 2.513748 -0.428674 0.090098 0.412938 1.105785 -1.325970 -1.900599 -3.145721 -0.480859 2.175990 1.036476 2.955086 -1.993742 -0.032981 -0.373458 1.964715 0.328753 -0.740511 0.779794 -0.817916 0.751310 -3.278232 -2.709662 3.632152 3.043244 1.485725 -0.871326 0.918687 1.014453 -1.183378 -1.866822 -1.172424 0.592531 0.668638 -1.925578 -1.366318 0.780947 -2.072367 -0.930001 0.015966 0.466408 1.202978 -0.943980 0.900795 -0.769626 -0.817294 -1.668572 1.302083 -1.100833 -0.601016 -0.103044 0.379790 -0.019243 1.003126 -0.425271 -0.469073 0.292452 -0.893543 -0.065882 0.695317 1.597428 0.404867 2.830203 2.700333 -1.024725 0.463756 0.000613 -1.125750 3.303813 -1.245108 0.181518 0.322824 1.020829 0.136571 0.853811 1.721604 -1.002623 -0.887654 -2.203784 -0.017437 0.338262 0.221137 -1.216026 -0.769165 -3.221204 0.093096 -0.802657 2.685823 0.191450 3.761851 -0.608263 0.462572 -2.747794 0.189483 1.485441 -0.677035 1.708304 1.098187 -1.614133 -1.148093 -0.886712 -1.939790 -0.523825 -0.107362 -0.524605 -1.409660 -0.363154 0.488756 -1.146782 0.937065 1.431042 0.240314 1.513927 -0.843090 0.114662 -1.632856 0.695239 1.998141 0.252554 -1.513793 1.322309 0.240116 3.911986 -0.259921 1.297677 -0.904712 0.044635 -0.593727 -1.925731 -1.410787 2.220821 1.747495 1.289216 0.317243 0.144333 0.105818 2.330801 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = -0.252280 0.216976 1.730716 0.251223 -0.384632 -1.390945 -0.443834 -2.496071 1.176319 0.838310 1.811708 -0.056350 1.315408 -0.554661 0.081863 0.242621 0.901425 -0.343195 0.217675 -0.544431 -0.064085 1.875615 -0.084980 0.161161 0.238663 -1.471500 0.654181 0.504532 0.838707 1.048870 0.345506 0.034561 -0.265746 0.427849 -0.382817 0.535970 0.311838 0.618565 -0.698904 -0.300797 0.015267 -0.326146 1.004314 0.052629 1.274368 -0.077873 0.479842 -0.082126 -0.475517 -0.741755 -0.305246 0.868012 -0.599259 0.524733 -0.229053 -0.539349 0.151739 -0.086160 0.049295 -0.753486 0.176956 -0.229611 -0.715515 0.014105 -0.644457 0.291833 -0.424505 -0.534936 -0.106006 -0.763041 0.605875 0.076560 0.013621 0.026692 -1.965264 0.227120 0.467373 -0.123842 0.684645 0.335497 -0.164289 -0.490896 -0.833318 -1.113729 1.494481 1.247413 0.296172 0.563339 -1.370047 -0.037376 -0.201680 0.075853 0.522038 0.854895 -0.983499 0.100000 0.132648 -0.561385 -0.419152 -1.391514 0.353524 -0.898441 0.309228 0.262977 -0.006166 0.114540 -0.452246 0.391835 -0.657050 -0.959179 0.488167 -0.679721 -0.154150 1.381592 -0.666372 -0.489915 -0.910644 -0.100404 0.265702 0.705184 0.238818 0.339708 1.096893 0.659493 0.797193 -1.208721 -0.454262 0.945341 0.815505 0.433019 0.042004 -0.924145 -0.512821 0.434934 -1.098997 -2.005603 -0.948776 0.586713 1.088117 -0.526382 -0.561073 0.613719 -0.500627 0.859837 1.373875 0.140025 0.251270 0.478336 -1.022402 0.419072 1.402519 -0.592150 0.867188 -0.487273 -0.571578 0.811508 -0.489378 0.544320 0.104465 -0.078773 -0.266574 -0.636133 0.266041 1.302913 0.248483 0.784110 -0.636564 0.498451 -0.617527 -1.239560 -2.227842 -0.461482 1.432436 0.626542 1.619497 -0.996622 -0.747163 0.121056 1.206443 -0.121845 -0.898113 0.631733 -0.897766 0.728843 -2.097461 -1.607801 2.086203 1.823124 1.164799 -0.070393 0.813927 0.611062 -1.077637 -0.563006 -0.524877 0.767162 0.198222 -1.863359 -0.462969 0.191360 -1.370004 -0.481499 -0.335791 0.226282 -0.018053 0.127824 1.176798 -0.330389 -0.431085 -0.424232 0.915996 -0.550862 -0.490061 -0.459890 0.068035 0.105529 0.624047 -0.695857 0.063325 0.547033 -0.946493 0.032591 0.325027 0.423507 0.292389 1.756361 1.702271 -0.523095 0.729623 -0.410418 -0.663188 1.356836 -0.676694 0.033863 -0.025670 0.468469 0.263998 0.586142 0.979517 -0.544944 -0.738862 -1.332749 -0.380895 0.515777 0.737905 -0.156733 -1.208094 -1.650693 0.063497 -0.135419 1.850156 -0.009644 2.203689 -0.662005 0.666480 -2.061346 0.193264 0.386958 -0.271123 0.834177 0.289041 -0.850897 -0.932286 -0.269748 -1.215398 -1.186939 -0.034616 -0.797859 -0.744726 -1.135156 0.996541 -1.025334 0.072578 0.436636 0.083969 1.194528 -0.053160 -0.077282 -1.001810 0.618181 0.889811 0.026020 -0.788563 0.748770 0.230522 2.671019 -0.426171 0.887831 -0.537444 0.873748 -0.553685 -1.225915 -0.526721 1.431848 1.583125 0.444729 -0.249932 -0.017485 -0.102060 0.968683 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = -1.435439 -0.261337 2.859214 1.337084 -0.936045 -2.652901 -0.812408 -3.279975 1.940782 1.132866 3.416137 0.131204 2.075417 -1.340151 0.656677 0.242682 1.839358 -0.876854 -0.151632 -1.011540 0.364921 3.131061 1.065972 -1.066404 0.504781 -1.879387 0.313470 1.200742 0.710746 1.699778 0.486584 0.071277 -0.283829 0.734767 -1.133206 1.201564 0.488293 0.806576 -1.166523 -1.049740 0.317603 -0.193489 1.902272 -0.308124 2.503310 -0.337652 1.842571 -0.283338 -1.943694 -1.561053 -0.874557 2.369376 -1.324202 1.083671 -0.099915 -0.208418 0.728282 -0.757871 -0.444466 -3.085114 0.326540 0.129727 -1.398810 -0.305910 -0.826197 0.597805 0.196231 -0.820468 0.311822 -1.364970 1.215434 0.086005 0.002197 -0.067064 -2.326516 0.432832 0.716716 0.158861 0.949693 0.765894 -0.486848 -0.998456 -0.900776 -1.449493 2.312125 0.729006 0.742642 1.200116 -2.200353 0.497886 -0.178376 -0.018075 0.253067 0.944267 -1.942344 0.128119 1.773717 -1.157952 -0.994426 -0.992840 0.459534 -1.477421 0.221895 1.395207 0.065863 0.334844 -1.984992 0.767335 -1.915124 -1.771668 0.972521 -1.025640 -1.003648 1.639032 -2.057041 -0.344448 -0.997202 0.362346 0.541262 1.546193 0.061587 1.084293 1.554487 1.328682 1.175234 -2.001590 -0.203947 0.916262 2.587822 0.876811 0.298373 -1.117204 -1.038772 0.750724 -2.024659 -3.311371 -1.814822 1.893958 2.492445 0.700833 -2.471850 1.273317 -0.594028 2.416900 2.096262 0.563656 0.298544 0.787055 -2.096505 0.724920 2.469661 -1.339650 2.058829 -0.083246 -1.083305 1.719410 -1.073935 0.991419 0.708210 -0.326036 -0.088685 -1.265458 -0.001409 2.184194 1.494456 1.309304 -1.359494 0.933958 -0.533929 -2.830609 -4.342361 -0.997590 1.829606 1.171379 3.327881 -1.692890 -1.795301 -0.361901 1.823674 -1.292836 -2.022929 0.445919 -1.627643 1.170235 -4.277688 -2.857263 4.620408 3.525080 2.050567 0.694946 2.274840 0.946121 -1.530167 -0.408110 -0.742563 1.433521 0.765874 -2.255514 -0.146343 0.255659 -2.651469 -1.372930 -0.731680 0.362573 -0.952767 -0.127535 1.597228 -0.159079 -1.128364 0.290840 0.497298 -1.344003 -1.104454 -0.714388 0.038365 0.743231 0.916834 -1.177897 -0.080537 0.543823 -2.449147 -0.622774 0.185600 1.657703 1.558134 3.093332 3.575813 -0.703207 2.217276 -0.683427 -1.735671 2.567846 -1.421627 -0.148777 -0.503998 1.305815 1.192097 0.611692 1.724471 -0.840986 -0.831506 -2.198609 -0.005351 1.252600 1.563388 -1.639877 -2.385666 -2.906927 0.045588 0.333359 2.905841 -0.708551 3.954832 -1.401087 0.713812 -4.849487 0.251527 0.961054 -0.157438 0.747391 0.633139 -1.488368 -3.289738 -0.403485 -1.983119 -1.102132 -0.037962 -1.309202 -1.036934 -2.266856 2.455213 -2.408408 0.343168 1.226545 0.052259 2.382975 0.974715 -0.285437 -1.190198 0.619458 0.932143 0.641753 -1.348386 1.891846 0.389663 5.143352 -0.733180 1.580076 -1.364393 1.924522 -0.968207 -1.799229 -0.826556 2.372357 3.458313 0.288858 0.145646 0.191291 -0.729037 1.907308 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = -3.850301 -0.385756 6.266454 0.282411 -2.807210 -3.483113 -1.903627 -7.653256 3.821218 3.130656 7.232773 0.332231 4.176518 -2.541444 1.130730 0.199421 4.097483 -3.169547 1.088132 -1.996264 1.522719 5.176759 1.651056 0.902157 0.957878 -4.288414 0.860538 -0.281375 1.878334 3.409573 1.664412 -0.810469 -2.559114 1.035964 1.422459 3.850202 3.053190 1.719413 -2.087489 -1.165273 -0.559506 -2.835006 2.928737 -0.780869 5.888655 -2.199982 1.533406 -0.558310 -4.428069 -3.463931 -0.633125 3.401963 -3.835260 1.668086 2.694334 -1.750831 -0.444755 -0.299806 -0.915815 -5.073886 -0.307133 -3.136626 -1.209707 0.603600 -1.082588 1.730406 -2.165573 -0.075119 -0.299558 -3.330191 1.979245 0.852610 2.244612 3.903886 -4.577735 1.175877 1.335324 0.047359 1.976415 1.583969 -0.704426 -2.066045 -1.431044 -3.670837 3.727763 2.797184 0.572803 0.422626 -5.264485 3.577952 -0.254373 -0.132375 0.406162 2.146867 -5.545483 -0.507448 1.544833 -2.482989 -0.915777 -5.322897 0.326849 -3.528988 0.516431 2.463003 -1.698512 -0.905715 -5.724756 1.597040 -3.738905 -3.073428 3.209696 -1.433810 -2.121396 3.484237 -4.732718 -0.112796 -3.383954 0.595910 2.548591 1.747091 0.360712 2.826074 1.813952 2.895632 3.766592 -3.848529 -1.070858 2.917508 5.076499 0.604561 0.250578 -1.891720 -1.680869 2.324010 -4.089271 -6.013373 -4.389935 3.147719 4.787989 2.249517 -2.681295 -1.368917 -1.622597 4.619586 4.414646 1.526025 0.055967 1.939790 -4.038879 1.154587 3.178186 -2.619751 4.159185 1.129197 -0.118401 2.370776 -3.050480 2.215548 0.573760 1.182467 -0.730098 -3.130126 -2.057540 4.076173 3.206191 3.401900 -4.766144 1.963398 -1.128622 -5.595799 -8.211501 -2.027091 5.676925 1.826268 2.599817 -3.441670 -3.127069 0.401826 4.562626 -0.065506 -5.368210 1.368980 -2.548535 2.301576 -6.867164 -5.246535 8.475554 8.207122 3.445094 0.958557 2.515607 2.778111 -7.068441 -1.298767 -2.401622 3.009546 -1.834138 -6.823092 -2.290569 1.474791 -4.828597 -2.454012 -1.206234 0.911216 0.102927 0.774134 4.254336 3.760800 0.105905 1.076259 2.939605 -1.019050 -4.491952 -1.855192 0.474669 3.402965 2.103965 -2.473806 0.553389 2.437022 -5.185993 -1.379866 1.576533 2.724023 2.159020 7.029771 5.690262 -0.691666 1.380190 -2.108781 -3.564134 2.983665 -2.582308 -0.065059 -1.130837 0.122423 1.709030 1.158279 3.963937 -1.964770 -3.952392 -3.698535 -2.124799 0.312915 4.267516 -1.532910 -7.657085 -4.908321 2.026784 1.274289 4.296150 -0.418464 7.609639 -2.041829 1.574566 -7.862224 0.148271 2.769454 -0.614906 2.658921 0.577097 -2.145235 -4.496352 -1.302168 -4.526765 -2.242813 0.274210 -0.991373 -1.179467 -4.802448 6.919400 -2.923571 -0.329522 -0.393758 1.058714 6.620398 4.544175 -0.937968 -3.797830 2.694110 2.072522 0.787728 -2.414241 5.263098 1.857571 9.575691 -1.961802 0.422410 -1.334034 2.538420 -1.583816 -2.975006 -1.117920 4.551538 7.684712 2.219910 -2.158034 -0.523748 -2.055624 2.924682 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = -4.616126 -0.827292 6.161239 -0.311287 -2.381947 -3.767097 -1.938062 -8.029690 3.937138 3.590974 8.194574 0.680437 5.006202 -2.786137 1.646768 0.139509 4.402005 -3.999264 1.878497 -1.815561 1.992303 6.343405 2.039394 2.169271 0.503671 -4.333886 0.538247 -0.381157 2.267183 4.056405 1.641548 -0.903570 -2.712134 0.645484 1.485990 4.130133 2.807562 2.063177 -1.866707 -1.364579 -0.912431 -3.831866 3.304626 -0.919677 6.197950 -3.073697 1.802424 -0.724505 -4.177555 -4.214506 -1.077020 3.320218 -4.336980 1.402337 2.638745 -2.879534 -0.211588 0.945880 -1.132710 -5.638804 -0.459496 -3.840254 -1.192560 0.694350 -0.867383 2.178404 -3.229168 0.222197 -0.545925 -3.541299 2.352096 1.316341 3.025894 4.685008 -5.677570 1.433047 1.132984 -0.298386 1.830316 2.034458 -1.279796 -1.880301 -1.482033 -4.035333 4.275560 3.263923 0.365721 0.229385 -6.564819 4.450871 -0.639855 0.147299 0.359730 1.909633 -5.734761 -0.065002 2.185065 -2.515697 -0.485634 -5.941701 0.205593 -3.924127 0.205006 2.690583 -1.006331 -1.732206 -7.391034 1.211977 -4.767830 -3.923102 3.917889 -1.600005 -3.137772 3.369093 -5.786220 0.826640 -3.729009 1.092142 3.195477 1.674925 0.697077 3.397961 1.092365 3.000925 3.705276 -4.044257 -1.001309 3.475217 5.960355 0.244967 -0.336601 -1.362949 -1.862536 2.682244 -4.565660 -6.287433 -5.062576 4.565406 4.943523 2.471366 -2.374145 -1.225751 -1.669635 4.954720 5.692938 1.410249 0.176731 2.408459 -4.341344 1.585563 3.168255 -2.885267 4.815734 1.672736 -0.220888 3.513658 -4.098390 2.598023 0.827318 1.806643 -1.081114 -3.257663 -2.417339 4.258245 3.868523 4.360320 -5.399756 2.075247 -0.651091 -5.830680 -8.919499 -2.310643 6.744345 2.426974 2.267710 -3.351995 -3.000144 1.432337 4.478326 0.346624 -6.493683 1.511019 -2.332275 2.310135 -8.757747 -5.494558 9.165947 8.724373 3.743594 1.331471 2.289351 3.992585 -7.331038 -1.297283 -2.628351 3.645971 -2.734812 -8.115794 -2.538147 1.610461 -5.066030 -2.710776 -1.647995 0.676877 -0.110608 0.818645 4.948980 3.902546 0.349376 1.815056 3.377622 -1.162326 -5.494419 -2.414899 0.319593 3.797672 1.829884 -2.325122 1.576118 2.961600 -5.910566 -1.568423 1.557536 2.432614 2.484727 7.691390 6.277730 -0.937567 0.594298 -2.591832 -3.672700 2.733249 -3.060698 -0.396763 -1.403796 0.270807 2.131805 1.376675 4.140959 -1.959144 -4.662333 -3.870354 -2.036800 0.832785 4.689752 -1.158540 -8.729128 -5.476622 2.633354 1.693645 5.070016 -0.617823 8.236269 -2.601954 1.730749 -8.120378 0.284604 2.213505 -0.570649 3.158630 0.255335 -1.827123 -3.549523 -1.760547 -4.780036 -2.006922 0.538483 -1.470952 -0.831663 -5.621560 7.149831 -3.680297 -0.515564 -1.612097 0.786104 7.539444 5.592172 -1.335773 -4.843340 3.832532 2.197804 0.934438 -2.363538 6.051635 1.677733 9.769991 -2.587341 0.202778 -1.274369 3.410572 -2.073986 -3.116677 -0.673118 5.053108 8.617514 2.100303 -2.537791 -0.459530 -1.619888 2.629928 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.041138 0.593760 2.105865 0.903302 -1.234975 -1.596656 -0.505490 -2.418763 1.322255 0.498975 1.243338 0.012238 0.958908 -0.654225 -0.287933 0.456936 1.190417 0.259189 -0.106069 -0.850045 -0.516519 1.651352 0.189984 -0.763706 0.656743 -1.514915 1.124788 0.151392 1.051321 1.311014 0.481366 -0.094536 -0.456000 0.805210 0.276516 0.638048 0.379759 0.488445 -1.246964 0.078212 0.063350 -0.516670 1.064475 0.350385 1.305424 0.268937 0.498608 0.076703 -1.166047 -0.312234 -0.521535 1.080323 -0.903890 0.935616 -0.020422 0.084602 0.041891 -0.507744 0.107574 -0.803561 -0.182804 -0.558852 -0.837281 0.059670 -1.235860 0.165038 -0.745685 -0.785594 -0.397018 -0.370656 0.585744 0.272690 0.020600 -0.008099 -1.859933 0.084675 0.467428 0.558417 1.131319 0.280423 0.028899 -0.748082 -1.052978 -1.255395 1.251433 0.454677 0.371288 0.515965 -0.718083 -0.458212 -0.165160 0.066330 0.468124 0.960399 -1.303683 0.106923 -0.530074 -0.485404 -0.444907 -2.037356 0.174061 -0.813895 0.349931 -0.024870 -0.494436 0.351415 -0.134740 0.687806 -0.189192 -0.655655 0.519369 -0.423244 -0.471412 1.590730 -0.141447 -0.884529 -0.694701 -0.225528 0.075875 0.982645 0.184837 0.365929 1.214140 0.922113 1.146306 -1.073058 -0.371700 0.575024 0.482686 0.605901 0.784901 -0.807630 -0.805605 0.457618 -0.673391 -2.149795 -0.542887 0.525027 1.197414 0.014896 -0.626671 -0.263143 -0.733886 0.848426 0.727440 0.455134 0.353983 -0.004037 -0.979690 0.456097 1.788928 -0.728112 0.760653 -0.619397 -0.292636 0.867207 -0.372022 0.451612 -0.642201 -0.395603 -0.007145 -0.683672 -0.016909 1.476809 0.064582 -0.033164 -0.116336 0.392270 -0.975302 -1.670671 -1.920325 -0.316376 1.580440 0.423845 1.594948 -1.172964 -0.574343 -0.425929 1.043294 -0.060004 -0.428888 0.454294 -1.076149 0.823654 -2.028545 -1.834432 2.548904 1.772093 0.850388 -0.219457 0.522555 0.534873 -1.410956 -1.036029 -0.777220 0.390157 0.134171 -1.567580 -0.957786 0.331639 -1.672375 -0.321025 0.232410 0.452461 0.664299 0.035049 0.803433 -0.039822 -0.511776 -1.033788 0.934406 -0.676048 -0.454286 0.076319 0.102674 0.330167 0.817224 -0.419831 -0.393451 0.350841 -0.760719 -0.208450 0.219172 0.977696 0.186851 1.774813 1.946003 -0.121754 0.756963 0.122798 -1.181016 2.043237 -0.619305 0.445230 0.083958 0.320019 0.049141 0.508574 1.295064 -0.623587 -0.820256 -1.369567 -0.677007 0.212082 0.841359 -0.699649 -1.340659 -1.404811 0.024714 -0.025960 1.420482 -0.060206 2.165926 -0.586724 0.606723 -2.255200 0.190336 1.269204 -0.227783 1.068258 0.665619 -1.160315 -1.280074 -0.393575 -1.224662 -0.543237 -0.317250 -0.293383 -0.795266 -0.381539 0.964662 -0.729777 0.230230 0.972511 0.004123 1.492698 -0.214754 0.174125 -0.830397 0.139116 1.085092 0.126880 -0.891957 0.877751 0.573004 2.935174 0.077795 0.626319 -0.611785 0.004348 -0.179168 -1.221077 -0.824133 1.478120 1.497312 0.665343 0.121455 -0.037391 -0.270822 1.214539 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = -1.045972 0.890376 5.165596 1.788931 -2.466091 -3.706185 -1.239424 -6.074985 2.993161 2.488965 4.785198 -0.140949 2.735912 -1.136164 0.063385 1.055171 3.041861 -0.863749 -0.094230 -2.326098 -1.297938 4.242890 1.100475 -0.326515 1.330059 -4.345946 1.982219 0.351612 1.917144 2.375610 1.372477 0.187529 -0.864513 1.691375 -0.222506 1.838267 0.686369 1.459689 -1.930864 -0.180940 0.764792 -0.928444 2.600281 1.322401 3.635629 0.509950 1.904680 -0.459939 -3.297439 -1.967860 -1.540717 3.041748 -2.410461 2.153724 -0.452523 -0.459720 0.746910 -1.003875 0.141739 -3.080161 -0.345601 -1.266855 -1.728047 -0.004339 -1.984687 1.031918 -1.771536 -1.666604 -0.482398 -0.715828 2.527594 0.685898 0.217353 0.868156 -4.121233 1.038456 1.018854 0.571288 2.707783 0.370972 -0.925262 -1.337937 -2.445133 -3.490443 4.060443 1.220910 1.066515 1.154618 -2.485720 -0.323495 -0.723949 -0.282060 0.834143 2.560925 -3.734671 0.305135 0.859724 -1.851750 -1.614998 -3.928711 -0.036946 -2.705198 0.594810 1.504291 -1.226543 0.710542 -2.661703 1.134150 -1.752307 -2.178715 1.800939 -1.475130 -1.216570 3.266101 -2.200239 -1.730875 -1.405487 0.208962 0.819105 2.283713 1.003241 1.199650 3.915413 2.074514 2.316356 -2.505083 -0.367244 1.188307 2.339050 1.280636 1.484213 -1.863143 -2.494676 1.254167 -2.148068 -5.143854 -1.900260 2.437496 3.797180 0.331545 -2.284749 0.790695 -1.426557 2.656463 3.229021 1.003809 0.968548 0.261923 -2.972728 1.209871 4.525835 -2.215746 2.703263 -0.991805 -1.013889 2.808512 -1.862043 1.421807 0.237519 -0.448057 -0.265575 -2.384496 -0.813495 4.071874 1.202752 0.685309 -0.625402 1.818585 -1.458347 -4.204686 -6.095432 -1.262524 3.429262 1.292360 4.334811 -2.916323 -1.315498 -0.605955 3.085507 -0.531692 -2.464415 0.970187 -1.889728 1.306828 -6.004234 -4.655049 7.314180 5.822843 2.546685 -0.469006 2.199594 2.244512 -3.342894 -2.368790 -1.785046 1.628895 0.525825 -4.227009 -2.218452 1.150041 -3.968435 -1.848863 -0.577317 0.795671 0.648407 -0.596153 2.301009 0.215238 -1.532030 -0.898165 1.844474 -1.885675 -2.117449 -0.561673 0.457572 1.141080 1.614283 -1.270738 -0.369706 1.049450 -3.160576 -1.015142 0.958597 3.306130 1.796434 5.409888 5.221267 -0.831112 2.034261 -0.480169 -2.861093 4.374579 -2.147100 0.068749 -0.287434 1.327932 0.530747 1.201350 3.008737 -1.490424 -2.481684 -3.482302 -0.166451 0.591354 1.470315 -1.676876 -3.174263 -4.921235 0.351284 0.093300 4.280083 -0.441727 6.392366 -1.599928 0.763076 -6.046288 0.327416 2.418348 -0.838709 2.375201 1.637325 -2.560303 -3.051248 -1.426622 -3.291251 -1.024241 0.132009 -1.157719 -1.895706 -2.291800 2.901905 -2.909425 1.136890 1.563280 0.696185 3.896475 0.958761 -0.185793 -2.727395 1.715330 3.159653 0.922163 -2.477209 3.132632 0.696766 7.801864 -0.788319 1.712002 -1.899028 0.387504 -0.851169 -2.562159 -1.775593 3.789510 4.803239 1.646037 0.166359 0.076649 -0.579381 3.727181 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.764406 1.831828 18.097056 6.852948 -8.051655 -13.002085 -4.745948 -20.167196 10.621197 7.133266 17.507436 0.025893 10.054887 -5.060596 1.314545 2.713137 11.061748 -4.217031 0.262967 -7.025853 -2.900381 16.765042 5.510720 -3.233948 3.840209 -13.323444 5.514104 2.368867 6.673480 9.547960 3.774805 0.200076 -2.636940 5.375532 -1.059135 6.866371 2.537870 4.892178 -6.957624 -2.436820 2.403474 -4.246483 9.960842 1.870260 12.879899 -0.211719 8.536456 -1.677001 -11.736763 -6.657292 -6.504305 12.436153 -9.458619 6.291849 0.428559 -1.408982 3.250433 -4.178221 -1.758950 -12.523364 -1.708013 -3.712391 -7.172849 -0.122161 -6.914724 3.845453 -5.476087 -4.462297 -0.367485 -3.607147 7.910704 2.750325 1.629642 2.462921 -14.024855 3.984606 3.794437 2.218619 7.955025 2.625560 -2.683527 -3.920116 -7.462951 -10.944708 13.659596 2.975491 3.688320 3.194536 -9.449568 1.462626 -2.404934 -0.019500 1.127314 7.844078 -12.759021 2.069364 4.052927 -6.647343 -6.102215 -12.711478 0.219164 -9.587356 1.692407 6.522095 -3.778454 1.299949 -10.864492 3.783286 -7.571349 -9.641767 5.428315 -5.183644 -6.027867 10.247777 -9.662124 -3.464866 -5.366200 1.197589 3.142754 8.156473 2.497808 5.939106 11.127530 8.047494 7.944832 -9.420308 -1.207603 3.943716 10.639390 4.293356 4.668561 -6.309309 -7.900256 4.397392 -7.759365 -18.825758 -7.593298 10.545098 12.614291 3.845604 -9.940018 2.339345 -4.281536 11.188794 11.534153 4.002882 2.749456 1.939529 -9.933055 4.962069 15.361785 -8.215411 10.685155 -2.871353 -4.694691 11.792111 -7.843464 5.617081 0.789176 -0.324694 -0.811997 -8.864744 -2.803084 13.716945 5.819240 3.726962 -3.169348 4.713056 -2.692205 -16.037671 -21.816627 -4.059441 12.274750 5.112706 15.856244 -9.869298 -6.176643 -1.050707 9.810503 -2.895516 -9.598855 2.777016 -7.287494 5.502212 -23.296977 -16.978237 25.816663 18.632484 8.095380 0.861364 8.539576 7.379430 -11.769603 -6.426244 -7.078640 7.703366 1.346456 -14.134436 -5.627567 2.853986 -14.722603 -5.564951 -2.608718 2.761173 1.433997 -1.939197 7.367483 0.885641 -6.301635 -1.714097 6.648376 -7.325379 -8.576658 -2.660179 0.516512 4.636187 5.593926 -4.206510 -0.945611 3.076428 -12.380979 -4.569378 2.680870 10.614166 6.213586 18.796624 19.639053 -2.411332 7.706036 -1.805887 -9.864562 14.770970 -7.601308 -0.208843 -1.588009 5.253020 2.855994 4.427336 11.062584 -4.631579 -9.571387 -11.874183 -0.460620 2.752670 7.230816 -7.435188 -13.654633 -16.096283 0.581854 3.093624 15.360238 -2.223605 22.482581 -6.077591 3.404516 -23.610425 1.185393 8.134738 -1.562081 8.031515 5.024648 -9.128489 -11.884972 -4.625637 -10.704729 -3.018683 0.253748 -5.100838 -6.556304 -10.008133 11.961574 -11.130755 2.907780 5.128789 1.225078 14.353196 6.362480 -1.084531 -8.980605 4.935106 9.520724 3.590060 -7.679714 12.321995 2.640869 28.136081 -3.412055 6.244660 -7.224012 3.920059 -2.967749 -8.474423 -4.773556 13.426897 18.280514 3.930107 0.307424 0.202005 -3.184472 11.685071 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.521223 1.589001 5.991052 4.237297 -5.021162 -4.835268 -1.449097 -6.601483 3.885818 2.021206 4.066153 0.086394 2.448228 -2.165926 -1.205640 0.294701 3.264049 1.085233 -1.701843 -2.992942 -3.494491 3.678059 0.573035 -3.502342 2.510004 -4.115374 4.529198 0.632278 1.453991 2.623036 1.955525 0.649311 -1.389568 2.856930 0.080569 1.804849 0.229794 1.613028 -2.483095 -0.526569 2.361269 -1.396216 3.416172 2.043295 3.933999 1.682492 1.846490 -0.236869 -4.949881 -1.159677 -1.179760 2.535599 -2.279011 3.242453 -0.505148 1.275365 1.179919 -2.856560 1.022139 -3.393492 0.277993 -1.701401 -2.659193 -0.286101 -3.573608 0.149945 -1.068551 -3.046193 -0.498649 -1.576547 1.944035 -0.149789 -1.081538 -1.057743 -3.818930 0.151083 1.700179 0.998125 3.897096 1.548634 -0.567093 -2.677313 -3.499831 -3.639985 3.685884 -0.079193 1.353190 2.150335 -1.248562 -2.413627 0.375017 -0.480849 1.618942 3.405719 -4.385931 -0.187766 -0.228971 -2.055000 -2.190791 -4.807441 0.719442 -2.512408 1.391827 1.605948 -3.706611 2.029210 0.242929 1.728487 -0.203294 -1.511958 0.982063 -2.297002 0.477802 4.385440 -0.358107 -4.153740 -1.410129 -0.870273 0.551434 2.983944 0.601846 0.233680 5.904944 2.214752 3.279213 -2.998546 -0.400699 1.247403 1.031404 1.785682 2.308867 -3.034520 -2.424813 1.333643 -1.888076 -6.205608 -1.325804 0.767349 4.140978 -0.123430 -3.477380 1.070870 -1.796674 1.978279 1.886556 1.824961 1.111008 -0.059080 -3.232600 0.511058 5.244917 -1.718569 1.684437 -1.700767 -2.194126 2.884983 -0.087200 0.799764 -0.861432 -1.719594 0.163222 -2.325189 0.338301 4.564507 -0.628573 -1.459199 0.438080 1.819952 -3.469324 -4.918422 -6.400869 -0.510475 3.925671 2.381711 6.762817 -4.531872 -0.970671 -1.997172 3.739321 -0.732234 -1.169260 1.140185 -2.378236 2.083025 -5.813704 -5.866767 7.815222 5.006695 2.322523 -1.122171 2.652085 0.050530 -3.059814 -3.390104 -3.014650 0.613670 2.507718 -2.056257 -1.626824 1.212841 -5.181931 -1.476866 0.730465 1.250921 2.718987 -2.162470 1.467200 -1.458169 -1.502251 -3.346627 1.972892 -1.810411 -0.795199 0.255119 0.629903 0.720341 2.530153 -0.635179 -2.453968 -1.012518 -1.971502 -0.934631 0.740726 4.017207 0.966325 6.474208 6.184064 -1.545234 2.179533 0.307868 -3.053313 7.636267 -2.398963 0.807096 0.351597 2.255309 0.924648 1.114033 4.346653 -1.996377 -1.281917 -4.013340 -0.807064 0.137933 1.245540 -5.118582 -1.767828 -6.152362 -0.301825 -1.355703 4.120329 -0.233694 7.128962 -1.284135 0.490799 -7.074329 0.140359 4.615512 -1.006613 2.854059 2.321199 -4.067039 -4.558281 -1.200212 -3.674354 -0.303106 -0.553383 0.170130 -2.955396 -0.300474 2.121719 -1.994116 1.652119 4.524009 -0.073470 3.090499 -1.256172 0.695064 -1.406982 -0.349914 3.099370 0.729925 -2.857080 3.462910 1.196183 8.858369 0.625310 2.312018 -2.022001 0.166889 -0.990552 -3.838494 -3.208901 3.725518 4.052195 2.316125 1.106447 0.717677 -1.251685 4.864526 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.608236 0.503960 2.509440 2.276069 -1.987347 -2.451626 -0.661582 -2.536547 1.624608 0.575798 2.096175 0.226951 1.415550 -1.051729 -0.270504 -0.769029 1.448877 0.489206 -0.626244 -1.087277 -1.109153 2.196530 0.389215 -2.132020 0.669704 -1.236506 1.915196 1.246205 0.539016 1.708802 0.496151 0.277703 -0.747491 1.078787 -0.927436 0.078706 -0.215568 0.746047 -1.128878 -0.711850 1.200066 -0.225777 2.032669 0.196041 1.461611 0.666672 0.938007 0.037703 -1.956698 -0.798747 -0.412646 0.882392 -0.743596 1.375740 -0.176412 0.373441 1.021048 -0.981910 0.285087 -2.146029 0.668548 -0.255891 -1.128289 -0.255987 -1.607824 -0.065600 -0.160519 -1.620715 0.341232 -1.565891 0.616663 -0.364966 -0.437047 -1.252174 -1.851132 0.152349 0.759245 0.443199 1.316502 1.305720 -0.351284 -1.001790 -1.492415 -1.217795 0.897404 0.015505 0.567843 1.235681 -1.147148 -1.111388 0.710069 0.038897 0.531506 1.131792 -1.292021 0.382613 -0.046955 -0.745050 -0.976433 -1.638732 0.580071 -0.863254 0.655880 0.953908 -1.371545 0.544279 0.050253 0.551651 -0.391603 -1.220637 0.351114 -1.356662 0.238842 1.918451 -0.542773 -1.532424 -0.822154 -0.383954 0.294836 1.557927 -0.055401 0.120742 1.730329 1.017677 1.094699 -1.755623 -0.206842 0.680384 0.795369 0.836656 0.739658 -1.171944 -0.759821 0.468323 -1.389701 -2.813657 -0.688842 0.577782 1.851301 -0.092477 -1.907419 1.251333 -1.107659 1.213037 1.074632 1.122536 0.569428 0.233972 -1.574250 0.385153 2.131818 -0.605426 0.940361 -0.573679 -1.939276 1.720508 0.240988 0.671298 -0.171543 -0.740923 0.056402 -0.858753 0.736775 1.901847 0.016186 0.060945 0.274462 0.497933 -1.151790 -2.334390 -3.178396 0.114323 1.808529 1.774327 3.610145 -2.008739 -0.747610 -0.547352 1.616861 -0.653174 -0.896708 0.527247 -0.919574 1.098738 -3.666750 -2.667917 3.339225 1.989873 0.984947 -0.143586 1.444588 -0.309667 -0.421859 -1.220426 -1.348029 0.627271 1.043928 -0.578858 0.137956 0.313588 -2.266552 -0.374173 0.362695 0.503789 1.051522 -1.433136 0.423162 -1.383440 -0.944174 -1.594712 0.812869 -1.054094 -0.136581 0.103903 -0.017438 0.095004 0.960076 -0.202398 -1.139438 -0.605563 -0.993198 -0.314439 -0.097106 1.332153 0.397107 2.694016 2.676931 -0.887405 1.109473 0.177987 -1.238696 4.305940 -1.558155 0.305061 0.120496 1.781038 0.876270 0.617485 1.760655 -0.848205 -0.155808 -1.961371 -0.305445 0.596546 0.844190 -3.397446 -1.066792 -2.969899 -0.106700 -0.600955 2.175339 -0.300322 3.501743 -0.811637 0.277424 -3.600119 0.087264 1.708727 -0.222441 1.250389 0.842510 -1.823626 -2.255779 -0.275744 -1.679679 0.303255 -0.256371 -0.632674 -1.229112 -0.179175 0.573675 -1.027164 0.637641 2.256519 -0.875961 1.208100 -0.455961 0.092617 -0.375214 -0.703592 0.797724 0.344133 -1.185672 1.758623 0.336863 3.879244 0.375665 1.444865 -0.940093 1.262502 -0.638569 -2.103309 -1.297604 1.826703 1.846362 0.701583 0.527940 0.615458 -0.544929 1.674150 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/tarjan-algorithm.cpp___GLOBAL__sub_I_tarjan_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/topological-sorting.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.268643 0.351573 1.552905 0.930686 -0.696781 -1.715566 -0.335272 -1.741506 0.895105 0.423983 1.417793 0.228207 1.015188 -0.298223 0.221611 0.136317 0.768489 0.107423 -0.030404 -0.513915 -0.389527 1.652745 0.494344 -0.680355 0.247538 -0.779538 0.744673 0.787771 0.719517 1.098878 0.186748 0.012349 -0.175562 0.576514 -0.663992 0.096534 -0.375856 0.599203 -0.684655 -0.259782 0.275330 -0.328743 1.124024 0.244826 0.880623 0.187145 0.997675 -0.014203 -0.687518 -0.536527 -0.773002 1.063757 -0.716355 0.756123 -0.559639 -0.108701 0.444002 -0.068804 0.063149 -1.267504 0.196519 -0.042288 -0.959185 -0.211748 -0.905083 0.114412 -0.476450 -0.845574 -0.074609 -0.340270 0.741692 0.008684 -0.184594 -0.522070 -1.829503 0.029896 0.184949 0.272518 0.755714 0.430593 -0.393991 -0.377578 -0.817343 -0.947650 1.126506 0.221359 0.336081 0.544082 -0.986175 -0.346655 -0.169559 0.204749 0.238242 0.700598 -0.811971 0.668680 0.217463 -0.346397 -0.498305 -0.989188 0.263737 -0.791954 0.244240 0.221237 0.168216 0.016226 -0.629060 0.262574 -0.578076 -1.169715 0.327582 -0.536746 -0.598952 0.948833 -0.564260 -0.310798 -0.147341 0.018538 0.183397 0.892982 0.369885 0.283920 0.845039 0.689891 0.534406 -0.981805 -0.103112 0.407653 0.745342 0.676889 0.285526 -0.458703 -0.680762 0.337813 -0.753505 -1.901628 -0.295806 1.214284 1.012624 -0.022589 -0.918402 0.624110 -0.594440 0.735676 1.139520 0.599626 0.461641 0.208058 -0.848878 0.409255 1.656453 -0.647262 0.907647 -0.169575 -0.750835 1.408711 -0.581789 0.590495 0.056338 -0.224459 0.033271 -0.516108 -0.019330 1.328300 0.457954 0.430327 0.237216 0.258747 -0.566511 -1.410148 -1.851852 -0.361049 1.380583 0.740730 1.732869 -0.901810 -0.432407 0.078528 0.729580 -0.453059 -0.753430 0.269442 -0.588771 0.674062 -2.611344 -1.457707 2.019199 1.317052 0.706653 -0.009173 0.797884 0.663209 -0.372709 -0.796046 -0.652052 0.609675 0.198014 -0.861408 -0.233433 0.062122 -1.475326 -0.187931 -0.033323 0.176278 0.041065 -0.346997 0.509578 -0.514522 -0.787761 -0.518757 0.350499 -0.883472 -0.379478 -0.170193 -0.084427 0.023315 0.291446 -0.235251 -0.140762 0.260577 -0.966543 -0.183589 -0.014426 0.619910 0.467409 1.772902 1.642096 -0.388182 0.692191 0.027528 -0.846288 2.087523 -0.819676 0.069678 -0.020746 1.077778 0.297378 0.568165 0.940991 -0.466938 -0.585335 -1.307087 -0.035844 0.727884 0.667079 -0.832280 -0.809939 -1.562480 -0.051864 0.096544 1.747212 -0.419835 2.071360 -0.656342 0.590043 -2.144141 0.230912 0.448414 -0.240635 0.790124 0.465390 -0.885619 -0.944835 -0.393606 -0.816994 -0.147833 -0.034997 -0.671485 -0.615214 -0.565892 0.158918 -1.176419 0.278827 0.606484 -0.500505 1.012314 -0.201303 -0.071360 -0.541871 0.237748 1.015416 0.283527 -0.892157 0.967902 0.069295 2.605826 -0.186116 1.055243 -0.671212 0.606770 -0.430584 -0.895409 -0.579866 1.458232 1.393051 0.326145 0.240866 0.331843 -0.018460 0.813990 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.418138 1.552408 9.686342 3.878590 -3.144831 -6.202806 -2.641356 -10.580265 5.837499 3.498112 8.352112 0.538061 5.009811 -1.187993 0.460393 -0.626690 4.104288 -1.664605 -0.019864 -2.721693 -0.108540 8.898859 2.310606 -2.919946 0.850988 -7.138251 3.169691 2.405557 3.889207 4.765305 1.393750 0.118826 -1.344822 3.087199 -3.086485 1.138211 0.616480 2.727954 -3.445354 -2.354983 1.709548 0.194461 5.131461 0.726135 6.033464 -0.147662 3.530656 -0.918845 -3.628869 -3.046857 -2.102319 5.876160 -3.380917 3.474483 0.548405 -0.018208 0.729448 -2.387551 -0.085920 -5.859567 1.158415 0.474082 -3.531233 -0.318793 -3.588501 1.246245 -1.794565 -2.271003 0.328755 -3.629508 3.650706 -0.339427 0.494082 -1.845929 -8.302249 1.746439 0.833603 0.361629 3.543308 2.604077 -1.928920 -1.655528 -3.361669 -5.360120 5.033197 3.866283 0.293853 2.059067 -4.401610 -0.707016 -0.420096 -0.385340 0.227275 4.926435 -5.962212 2.569385 0.921512 -2.707596 -2.410257 -4.751676 0.867418 -5.182624 1.638275 2.595154 -1.010559 0.261095 -2.295906 1.332089 -2.313189 -5.232866 2.341317 -1.949786 -1.186887 5.934227 -4.006479 -2.013311 -2.211212 -0.071371 0.859853 4.494192 0.911615 2.190400 5.125355 3.757002 3.558785 -5.418374 -0.346512 3.762912 4.122563 2.597722 1.484627 -4.532289 -2.708337 1.950163 -3.143305 -9.600138 -2.764740 4.614840 5.834088 -0.019497 -4.925698 1.778987 -2.254023 5.128727 5.844979 2.375985 1.649676 1.330565 -4.569209 1.847463 8.386537 -3.033847 4.435301 -1.589688 -3.734321 5.963242 -3.723584 4.211589 0.268813 0.785677 -0.137369 -4.283725 0.293019 7.105431 1.668149 3.112856 -0.978527 1.389810 -1.866156 -7.748127 -10.938369 -2.377798 5.729311 3.185003 8.649838 -4.750037 -3.483892 -0.091942 5.761940 -1.069010 -4.336391 2.397974 -3.465269 3.299613 -11.298285 -7.958029 10.231218 9.663084 3.487040 -0.604908 5.228166 2.448881 -3.897869 -4.087357 -3.633651 4.127640 0.880952 -4.261651 -0.605594 0.547772 -6.961877 -2.128262 -0.783240 0.952613 1.427932 -1.602167 2.978904 -0.285960 -3.744602 -2.581310 3.477536 -3.450909 -3.215279 -1.820496 0.585459 0.300218 2.665830 -2.395720 -1.514987 2.398373 -4.804322 -1.105041 1.477435 2.968495 1.573001 8.505764 7.731339 -1.513389 4.054230 -0.417962 -3.644345 10.485517 -4.465045 -0.554627 -0.503076 3.155105 0.784148 3.000153 3.809572 -2.533208 -3.847293 -6.180067 0.457632 0.830358 3.872187 -5.181273 -6.518840 -7.323920 -0.209240 0.474563 7.508429 -0.442229 11.915659 -3.054488 2.576166 -12.100429 0.843660 3.977874 -1.009219 4.251308 2.476634 -4.828461 -6.329773 -1.410183 -4.590498 -1.731213 -0.126260 -4.706763 -3.578330 -5.061245 4.964774 -5.069474 1.569625 3.915280 -0.723456 5.689578 0.387551 -1.012188 -3.734049 0.995425 3.700097 1.075874 -4.392488 5.591284 -0.033128 13.367003 -2.979633 4.827658 -3.433304 3.630323 -2.786898 -5.092800 -2.592381 7.430632 7.427923 2.332350 -0.935731 -0.030985 -2.175390 4.089636 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -2.372875 2.691830 12.599654 5.804874 -6.216780 -7.441670 -4.080811 -11.462815 5.333479 4.025813 8.725034 -2.308413 3.023856 0.892421 -0.448012 -0.232410 4.118443 -1.848148 -1.288706 -4.235996 -3.523009 7.505483 2.979227 -4.981760 2.078781 -9.253367 5.764578 2.117918 2.419769 5.399706 2.833651 -0.079469 -0.973670 4.930993 -3.475340 3.822055 1.497891 2.869988 -3.735458 -0.049670 2.916085 2.149285 5.503716 0.737867 7.509106 5.201930 3.494810 -0.545330 -8.215930 -2.503140 -2.579320 7.632934 -4.620980 4.479895 0.623217 2.592439 0.418018 -7.012947 -1.247199 -6.686677 0.053092 1.242586 -4.344049 0.309341 -6.151236 1.038549 -1.546276 -3.474935 1.700817 -2.821895 4.368157 -0.480579 -0.471294 -1.463957 -5.862632 3.282760 2.123827 1.928617 4.533292 -0.783900 -0.655892 -0.741073 -3.640911 -6.144612 4.317643 2.499692 2.139315 1.781397 -1.027754 -2.514727 -0.219020 -1.199752 0.085602 7.155052 -5.675689 2.161561 -0.885390 -3.571607 -5.646835 -6.049950 0.469957 -5.800572 3.631210 5.077390 -3.500057 1.439417 -0.383787 3.171303 -0.752167 -5.337847 1.295450 -2.831843 1.526069 7.450500 -3.962389 -4.408856 -1.893267 -1.380380 0.455504 5.999161 1.005479 1.487824 8.030149 4.763911 6.575164 -6.057704 -0.806113 1.683577 3.672293 3.839157 4.337480 -6.557570 -3.543830 0.948265 -3.243042 -10.473262 -2.544968 2.059257 7.044626 0.352081 -7.194996 2.401820 -3.134384 6.467436 3.930174 4.269326 2.228338 -0.172212 -5.426242 1.730485 11.110030 -3.497894 4.761385 -3.550398 -5.491377 5.224597 -1.622478 4.461745 1.861865 -0.510619 0.457755 -6.416923 0.546934 8.362509 2.342870 1.482180 1.493336 2.140966 -3.057012 -9.347169 -11.156389 -0.828574 4.558229 0.888757 11.715906 -7.018075 -4.346841 -2.354106 8.773036 -1.210608 -3.287646 1.453724 -3.472494 3.417870 -11.372123 -9.865768 12.148148 11.614667 4.357910 -1.575289 6.900365 1.850608 -5.928745 -4.782427 -5.032076 4.396909 1.905525 -2.452917 -1.322261 0.779040 -7.835299 -2.154151 -0.578669 2.591070 3.497353 -2.691353 -0.431270 -0.415294 -6.165812 -3.868332 3.013910 -5.646551 -2.901770 -0.243793 1.274148 0.131673 3.544155 -3.581850 -3.809535 1.701233 -5.374048 -0.965096 2.893730 6.157945 1.394631 10.133671 9.090299 -1.620363 6.388704 0.509081 -4.230248 14.154141 -4.036646 -0.065618 -0.510448 3.937538 0.420899 1.812304 4.888736 -3.245430 -5.053818 -7.094617 1.145447 -0.096586 3.271635 -7.618842 -6.194371 -9.696972 -0.707931 0.158426 8.579829 1.099739 13.922212 -0.829729 2.170936 -14.396129 0.668237 6.488753 -0.990631 4.100284 4.200796 -6.569855 -10.431085 -0.928383 -6.034144 -1.017440 -0.860703 -4.860362 -5.077705 -4.290283 5.613005 -2.808928 2.174575 8.459528 0.095337 4.831500 1.521596 -1.530222 -2.788414 -1.954083 5.548083 1.401741 -5.520015 7.290646 0.759600 17.895037 -1.607635 5.445163 -4.329327 1.351670 -0.857014 -4.583155 -3.963194 8.079778 6.986800 3.610938 0.507929 0.038903 -3.535326 5.614984 -PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = -0.213902 0.186961 0.927885 0.167515 -0.243783 -0.763843 -0.248683 -1.180849 0.505181 0.322694 0.940098 -0.064011 0.663706 -0.233948 0.118182 0.133706 0.521856 -0.145557 0.199082 -0.250279 -0.015038 0.946964 0.110059 0.063567 0.090989 -0.611926 0.184795 0.202244 0.469741 0.570437 0.129026 -0.065901 -0.157332 0.197525 -0.180736 0.220566 0.207773 0.324386 -0.470138 -0.115586 -0.178820 -0.292660 0.486736 -0.052899 0.586013 -0.053993 0.313561 -0.004993 -0.372771 -0.371700 -0.271440 0.605495 -0.400521 0.291709 0.010489 -0.368654 0.090910 0.092028 -0.051368 -0.577472 -0.003466 -0.222165 -0.277828 0.014092 -0.360473 0.216140 -0.349138 -0.306662 -0.029320 -0.199873 0.373000 0.177022 0.246045 0.225097 -0.980595 0.211576 0.206898 0.108202 0.317721 0.152499 0.032045 -0.175758 -0.339139 -0.585895 0.715124 0.453450 0.217646 0.192475 -0.713149 0.133421 -0.074209 0.025761 0.164812 0.329482 -0.461116 0.213312 -0.005579 -0.219049 -0.199187 -0.917002 0.017458 -0.497505 0.102717 0.186422 0.111611 -0.009733 -0.516328 0.270989 -0.403970 -0.642347 0.391328 -0.241519 -0.406040 0.660909 -0.500706 -0.069818 -0.281541 0.059775 0.105021 0.378316 0.136340 0.360752 0.249435 0.420337 0.374240 -0.554136 -0.161105 0.372449 0.565744 0.238324 0.154515 -0.368790 -0.357604 0.244214 -0.571513 -1.042679 -0.453219 0.570841 0.613555 -0.032756 -0.383663 0.167562 -0.305376 0.547857 0.661492 0.183249 0.139127 0.150732 -0.513910 0.294107 0.660745 -0.436616 0.625619 -0.018986 -0.205837 0.451328 -0.335102 0.326326 -0.000671 0.015684 -0.026595 -0.372971 -0.109428 0.685554 0.419842 0.417893 -0.301510 0.194697 -0.369693 -0.836628 -1.070416 -0.208331 0.831877 0.127536 0.653127 -0.442183 -0.510185 0.143330 0.629521 -0.171708 -0.563693 0.219455 -0.421817 0.371116 -1.202494 -0.873639 1.178749 0.978265 0.483907 0.015710 0.361105 0.505903 -0.724066 -0.376917 -0.296163 0.384113 -0.145954 -1.110334 -0.488626 0.120020 -0.737112 -0.174109 -0.102922 0.138936 -0.004216 0.200489 0.536250 0.044220 -0.278417 -0.061296 0.425177 -0.345776 -0.369247 -0.151882 0.023042 0.225140 0.287089 -0.373755 0.048975 0.401850 -0.675841 -0.093088 0.091458 0.337314 0.245547 1.098891 0.891417 -0.093207 0.377466 -0.125935 -0.539067 0.777083 -0.405163 0.033964 -0.126784 0.268501 0.055321 0.281713 0.562049 -0.268536 -0.633201 -0.733740 -0.281184 0.240848 0.433644 -0.065221 -0.858437 -0.752159 0.125329 0.113193 0.877080 -0.084501 1.131229 -0.382678 0.289871 -1.120821 0.109811 0.209387 -0.162750 0.507262 0.194275 -0.379016 -0.604533 -0.207884 -0.613330 -0.500097 -0.077111 -0.505710 -0.211891 -0.598546 0.554317 -0.526546 0.013458 0.124998 0.068030 0.792848 0.254708 -0.137160 -0.572384 0.385436 0.543817 0.027402 -0.432986 0.581979 0.169856 1.546210 -0.200463 0.291213 -0.338427 0.249785 -0.153519 -0.461431 -0.210725 0.813382 0.954832 0.247943 -0.126737 0.046501 -0.108425 0.426715 -PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = -0.007092 0.155141 0.755034 0.164259 -0.129552 -0.766339 -0.168927 -1.204728 0.535795 0.318025 0.811847 -0.059343 0.649391 -0.292582 0.059832 0.215525 0.429547 -0.002068 0.107570 -0.230924 -0.067792 0.896563 -0.123612 0.071881 0.115096 -0.564979 0.247677 0.314126 0.442473 0.461665 0.155754 0.006843 -0.073973 0.166622 -0.247265 0.201387 0.102729 0.287170 -0.436132 -0.162285 -0.112760 -0.203347 0.455391 0.020118 0.528580 -0.043806 0.316991 -0.001545 -0.146782 -0.286680 -0.248092 0.523526 -0.226014 0.259872 -0.199932 -0.347861 0.126063 0.059871 0.048958 -0.305338 0.071629 -0.089519 -0.381395 -0.036750 -0.333224 0.134458 -0.193453 -0.317540 -0.063880 -0.218594 0.302741 0.048478 -0.007501 -0.022552 -1.019822 0.064655 0.213385 -0.014251 0.334697 0.154362 0.057006 -0.255214 -0.399852 -0.500113 0.823914 0.536357 0.196108 0.321003 -0.695021 -0.067838 -0.129190 0.032436 0.308919 0.317182 -0.377651 0.112055 0.026344 -0.201224 -0.182886 -0.724053 0.173642 -0.384002 0.112674 0.023515 0.185769 0.113108 -0.156213 0.227620 -0.309631 -0.502265 0.236828 -0.294392 -0.182514 0.671636 -0.268075 -0.228831 -0.333583 -0.020044 0.010289 0.334796 0.169568 0.193642 0.420265 0.307575 0.339475 -0.536907 -0.233904 0.433745 0.373436 0.269030 0.019464 -0.413365 -0.270124 0.210673 -0.541843 -0.978727 -0.419507 0.371545 0.515954 -0.267304 -0.257719 0.319361 -0.223144 0.360451 0.593298 0.043818 0.128079 0.206737 -0.454600 0.215464 0.635881 -0.307561 0.428069 -0.192877 -0.201496 0.292203 -0.174802 0.180006 0.014968 -0.105322 -0.065643 -0.229608 0.101870 0.595107 0.175156 0.310237 -0.265092 0.249976 -0.458157 -0.611517 -0.984252 -0.191996 0.699081 0.197038 0.742698 -0.416113 -0.428329 0.085181 0.526050 -0.184509 -0.373445 0.299745 -0.498513 0.371336 -0.964124 -0.751579 0.989388 0.736473 0.566759 -0.070969 0.349780 0.356767 -0.527522 -0.292167 -0.209463 0.299797 0.125367 -1.023698 -0.318543 0.046110 -0.680281 -0.183167 -0.115928 0.108358 -0.120398 0.203959 0.621965 -0.264171 -0.229994 -0.172536 0.417950 -0.274787 -0.121442 -0.190242 0.009169 0.032931 0.297592 -0.374550 0.058334 0.303437 -0.464497 0.025164 0.075641 0.195383 0.161708 0.911922 0.829980 -0.193717 0.471501 -0.162502 -0.400155 0.645082 -0.277209 0.055486 -0.041150 0.244169 0.085252 0.276138 0.482224 -0.258038 -0.408351 -0.686918 -0.292384 0.328270 0.341693 0.089904 -0.499277 -0.758168 -0.009212 -0.073800 0.901315 -0.052276 0.962043 -0.389300 0.325992 -0.935025 0.121754 0.124112 -0.178736 0.392095 0.134603 -0.385331 -0.433008 -0.122347 -0.556162 -0.701566 -0.063470 -0.436641 -0.322762 -0.555711 0.384559 -0.536912 0.012780 0.196791 0.051896 0.550566 -0.145446 -0.020435 -0.446818 0.351351 0.483315 -0.016490 -0.425277 0.284033 0.128922 1.364213 -0.137774 0.419590 -0.308168 0.341801 -0.252868 -0.551192 -0.247617 0.679547 0.770863 0.176855 -0.063750 0.067111 -0.015122 0.453725 -PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = -0.586307 0.154214 1.577108 0.233294 -0.636283 -1.242899 -0.406124 -1.970318 0.917873 0.636352 1.643757 0.020764 1.084705 -0.556513 0.236829 0.201089 1.015519 -0.381356 0.157698 -0.550861 0.127702 1.301264 0.216499 0.027402 0.308751 -0.981244 0.288421 0.281121 0.558414 0.871154 0.387937 -0.123589 -0.500486 0.342578 -0.005754 0.663783 0.568557 0.432273 -0.746564 -0.232608 -0.190492 -0.500301 0.850775 -0.071163 1.261661 -0.205533 0.481383 0.003279 -0.903227 -0.725169 -0.280136 0.976747 -0.722872 0.534308 0.266881 -0.411851 0.053310 -0.072421 -0.065315 -1.090820 0.013386 -0.497889 -0.460444 0.037814 -0.466899 0.292352 -0.429765 -0.381172 -0.083469 -0.665874 0.513875 0.110223 0.267975 0.531292 -1.377834 0.194191 0.390330 0.133835 0.603780 0.333438 -0.054164 -0.529028 -0.513464 -0.919320 1.065301 0.674982 0.314348 0.377581 -1.302163 0.400962 -0.077527 -0.018902 0.294698 0.524469 -1.102985 0.017979 0.246350 -0.547620 -0.386931 -1.348370 0.186133 -0.731328 0.177179 0.334390 -0.110509 -0.045699 -1.082346 0.445593 -0.779121 -0.777733 0.696369 -0.440461 -0.519340 1.037144 -0.906750 -0.226935 -0.697325 0.048811 0.366205 0.595305 0.152911 0.511336 0.524603 0.702626 0.815065 -0.973325 -0.303554 0.607275 1.045185 0.350033 0.191908 -0.553447 -0.499557 0.519740 -1.098128 -1.660600 -0.889481 0.748752 1.162326 0.241348 -0.692768 0.008309 -0.509214 0.969882 0.991872 0.368163 0.142584 0.343878 -0.969243 0.309651 0.956877 -0.675985 1.014802 0.097003 -0.166581 0.527992 -0.510405 0.476005 0.092525 -0.056990 -0.118304 -0.571273 -0.280599 1.080136 0.728008 0.665233 -0.828385 0.459673 -0.584543 -1.354202 -1.975448 -0.421258 1.347970 0.378528 0.973100 -0.858490 -0.816599 -0.012911 1.112482 -0.285895 -1.082239 0.382057 -0.739153 0.628930 -1.738136 -1.331405 2.089838 1.852699 0.920104 0.072941 0.656717 0.608656 -1.451271 -0.474916 -0.490256 0.588511 -0.218446 -1.727070 -0.610272 0.272107 -1.277202 -0.435495 -0.219665 0.271050 -0.053059 0.271713 1.062874 0.378556 -0.211630 -0.014249 0.598102 -0.375225 -0.715192 -0.287342 0.068302 0.572628 0.524286 -0.647021 -0.011387 0.577735 -1.192256 -0.228597 0.229559 0.708288 0.516245 1.800432 1.419846 -0.185728 0.675596 -0.377929 -0.957133 1.078121 -0.629094 0.129555 -0.208680 0.313498 0.324736 0.354499 0.994445 -0.499998 -0.863924 -1.091369 -0.579205 0.322109 0.902118 -0.270366 -1.555123 -1.334049 0.324167 0.117689 1.303675 -0.210891 1.857706 -0.557131 0.468655 -1.930904 0.124154 0.538488 -0.237762 0.634156 0.261737 -0.688948 -1.157774 -0.264047 -1.178183 -0.801370 0.017623 -0.405575 -0.380721 -1.004728 1.293184 -0.820584 -0.034097 0.193059 0.121436 1.417850 0.604251 -0.139980 -0.801489 0.537966 0.778703 0.108421 -0.703422 1.035137 0.434543 2.536941 -0.252614 0.415455 -0.423623 0.506018 -0.296405 -0.835947 -0.456486 1.219713 1.742631 0.490342 -0.278847 0.014836 -0.307215 0.813034 -PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = -0.024243 0.392989 1.253451 0.166058 -0.471517 -1.037317 -0.265062 -1.629608 0.719636 0.479184 1.006975 -0.006353 0.816532 -0.300003 -0.029168 0.244870 0.688139 0.000813 0.060464 -0.472575 -0.298181 0.963748 -0.099377 0.021041 0.336233 -0.883637 0.564721 0.271628 0.573109 0.713538 0.312468 0.034308 -0.289495 0.400630 -0.052419 0.285726 0.235827 0.385527 -0.605237 0.003748 -0.037269 -0.310799 0.695371 0.245687 0.766207 0.176012 0.174366 0.072659 -0.404931 -0.375151 -0.180973 0.534467 -0.389432 0.456209 -0.156428 -0.237179 0.060594 -0.105542 0.175335 -0.379836 0.052337 -0.308654 -0.463712 0.020732 -0.575392 0.079160 -0.430483 -0.526925 -0.209808 -0.417318 0.351237 0.030468 -0.063931 0.036723 -1.295639 0.052187 0.367220 0.073082 0.626837 0.198884 -0.083517 -0.384455 -0.645207 -0.822315 0.923157 0.661590 0.270647 0.408351 -0.823564 -0.231400 -0.112652 0.042274 0.438039 0.606345 -0.693625 0.072047 -0.151574 -0.394329 -0.357429 -1.222080 0.238680 -0.505021 0.245381 -0.051862 -0.106551 0.091116 -0.286498 0.322896 -0.249588 -0.485521 0.346503 -0.452604 -0.164620 0.992284 -0.243255 -0.473288 -0.556984 -0.173993 0.170989 0.516155 0.175938 0.090980 0.742777 0.456572 0.570828 -0.724963 -0.272487 0.458686 0.316761 0.309671 0.232689 -0.606033 -0.411309 0.347842 -0.718684 -1.366004 -0.456762 0.269121 0.681511 -0.341282 -0.306710 0.209457 -0.465227 0.350521 0.734917 0.203358 0.231879 0.146296 -0.614820 0.210870 0.918452 -0.440443 0.559240 -0.301336 -0.298865 0.459032 -0.221603 0.305016 -0.123181 -0.243754 -0.136954 -0.302595 0.097329 0.906310 0.116601 0.261688 -0.236392 0.270946 -0.613617 -0.805990 -1.332505 -0.238844 1.040395 0.331696 0.962970 -0.705452 -0.357488 -0.065003 0.826494 -0.067895 -0.462102 0.404362 -0.535379 0.494374 -1.212933 -1.023138 1.353632 1.134718 0.668034 -0.194622 0.340380 0.313961 -0.824343 -0.591937 -0.391929 0.301757 0.024971 -1.199403 -0.531037 0.173778 -0.963740 -0.107109 -0.088218 0.224869 0.257874 0.097236 0.744984 -0.178421 -0.261767 -0.511466 0.546095 -0.307524 -0.273037 -0.108249 0.044410 0.101579 0.420825 -0.355512 -0.150933 0.317208 -0.570505 -0.011520 0.177254 0.426246 0.116644 1.270014 0.997888 -0.264408 0.358212 -0.164802 -0.554773 1.010219 -0.432163 0.199678 0.036210 0.351489 0.068874 0.387092 0.761274 -0.376380 -0.548092 -0.883287 -0.431894 0.266429 0.436567 -0.084232 -0.755380 -1.064746 0.096743 -0.176989 1.168786 -0.065284 1.371786 -0.320248 0.454898 -1.194768 0.146443 0.354336 -0.239638 0.607323 0.301609 -0.678111 -0.526920 -0.207187 -0.903595 -0.717224 -0.005175 -0.262721 -0.471723 -0.409860 0.500018 -0.520827 0.041285 0.358674 -0.025670 0.798017 -0.111527 0.028165 -0.597100 0.312839 0.858223 -0.053716 -0.521218 0.484675 0.274821 1.733663 -0.036213 0.550427 -0.268811 0.196169 -0.147815 -0.756144 -0.522181 0.957703 0.955908 0.420070 -0.073895 0.021917 0.020731 0.696018 -PE-benchmarks/topological-sorting.cpp__main = 0.349310 1.965122 6.108397 1.765899 -2.649200 -5.331530 -1.633456 -7.650697 3.119144 1.808449 4.573947 -0.452145 2.655919 0.185184 0.232626 1.493567 2.825252 -0.094597 -0.015600 -2.413258 -1.615393 5.032945 0.231520 -0.799438 1.249107 -4.625660 2.134285 2.183244 2.872935 2.765463 1.388034 -0.172824 -0.875249 2.058547 -1.698745 0.946545 0.380273 1.243354 -3.569597 0.473904 0.106320 0.090237 3.604743 0.563275 3.475803 1.392370 2.423374 0.592921 -2.237350 -1.308504 -1.972165 4.534352 -1.404723 2.407381 -0.666064 -0.277520 0.024707 -1.723441 -0.010304 -1.136680 -0.175456 0.172844 -2.630884 0.028319 -3.091557 0.441753 -1.849484 -2.377511 0.158144 -1.076125 2.303780 -0.377749 -0.862925 -1.006750 -6.024035 0.705786 1.033286 1.200633 2.405402 0.115729 0.037206 -0.640272 -2.787337 -3.429477 3.335539 2.989170 1.021400 1.049434 -3.067632 -1.696607 -0.771873 -0.253425 1.173117 2.928050 -3.445604 1.344479 -1.184551 -1.849279 -2.981682 -4.585564 0.835216 -2.337148 1.696250 -0.306251 0.233526 0.503554 -0.348210 1.234564 -0.713029 -3.019740 0.771391 -1.183968 -0.202128 5.138900 -1.329015 -2.113332 -1.737373 -0.706947 -0.756365 2.826198 1.172872 0.515120 3.860701 2.709430 2.604982 -3.144032 -1.233937 1.374298 1.575366 2.262487 1.934792 -2.785098 -2.152678 0.934512 -2.342910 -6.235703 -1.367759 1.932485 3.604118 -1.157040 -1.479259 0.619746 -2.063303 2.915908 2.752356 1.175699 1.381681 -0.005188 -2.822893 1.535816 5.864708 -1.901956 2.782984 -2.345187 -1.782873 2.685087 -1.148162 2.004254 0.470201 -0.754353 -0.643846 -1.864863 0.280534 4.166248 1.019234 0.809390 0.491947 1.180727 -2.485712 -4.177104 -6.246220 -0.709046 3.317118 0.773544 5.264465 -3.180018 -2.349230 -0.766606 3.702594 -0.572682 -2.092881 1.959422 -2.815701 2.042708 -5.777515 -4.634278 6.287110 6.215585 2.665785 -1.094612 3.040467 1.831675 -3.831643 -3.189916 -1.962941 2.173945 0.592480 -4.514627 -1.549755 0.502953 -4.396847 -0.465046 -0.539617 1.360543 1.238024 0.335031 2.422153 -1.167305 -3.151552 -2.451781 2.396826 -2.312568 -0.937806 0.005597 0.105042 -0.358855 1.951206 -1.970551 -1.071735 1.629007 -2.935951 0.233610 0.971052 2.312587 0.509089 5.506487 4.668211 -0.432180 4.196014 -0.133819 -2.733421 6.179606 -2.027050 0.800856 -0.158236 1.590948 -0.589044 1.658855 2.577671 -1.599783 -3.020653 -3.950517 -0.360132 0.687188 2.114789 -1.078026 -3.440603 -5.219022 -0.355578 -0.118300 5.409787 -0.024988 6.642857 -1.617675 2.112079 -7.047481 0.795720 1.602479 -0.613784 2.642425 1.583767 -3.379348 -3.024544 -0.380172 -3.779385 -2.674247 -0.046210 -2.888710 -2.817231 -2.513162 2.338366 -2.522739 0.393160 3.119602 -0.673702 3.302167 -0.766222 -0.606854 -2.010146 0.339126 4.517623 0.173140 -2.960301 2.589979 0.462362 9.571518 -0.290355 3.219690 -1.694834 0.408780 -0.345334 -3.391502 -2.222178 4.615814 4.075257 1.652045 -0.261449 -0.109191 -0.317347 2.577635 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/topological-sorting.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = -1.498457 0.827263 5.711391 0.150139 -2.357603 -3.407694 -1.535441 -7.246860 3.386339 2.708007 5.272566 0.129718 3.491458 -1.558920 0.099633 0.654885 3.102605 -1.670249 0.662052 -2.005702 -0.486284 4.379814 0.381826 0.773601 1.265608 -4.483046 2.192707 0.044970 2.207669 3.091957 1.486750 -0.105241 -1.715712 1.578205 0.922181 2.433684 1.822190 1.725143 -1.885240 -0.144975 0.073010 -1.970298 2.738240 0.588616 4.341304 -0.334116 0.581362 -0.160977 -2.641968 -2.245189 -0.395630 2.169595 -2.661501 1.597038 0.741320 -1.050654 -0.338250 -0.750162 0.053786 -2.415279 -0.136319 -2.265750 -1.602112 0.520175 -1.868814 0.934807 -2.181367 -1.077753 -0.794619 -2.418552 1.621054 0.520852 0.691306 1.791553 -4.904943 0.665203 1.492647 -0.079764 2.382800 0.929272 -0.846938 -1.583881 -2.328271 -3.714719 3.733977 3.122902 0.683970 0.814828 -3.678518 0.806854 -0.491845 0.074018 1.217851 2.864860 -4.192151 -0.243485 -0.002883 -2.137973 -1.304083 -5.291120 0.704288 -2.872809 1.016934 0.905235 -1.605369 -0.213102 -2.617451 1.290479 -1.807185 -2.256764 1.822766 -1.775604 -0.650308 3.911968 -2.230126 -1.345476 -3.031045 -0.446374 1.691293 1.832963 0.568408 1.142246 3.325804 2.261416 2.932390 -3.272492 -1.143808 2.377764 2.398500 0.754257 0.693127 -2.617476 -1.636530 1.741356 -2.979096 -5.668062 -2.836493 1.346642 3.258547 -0.392039 -1.476484 -0.157823 -1.677897 2.434698 3.780633 0.943888 0.544245 1.119446 -2.998111 0.979692 3.745779 -1.945763 2.746552 -0.814205 -0.921792 2.391532 -2.024736 1.708332 -0.129658 0.150349 -0.937367 -2.207712 -0.401862 3.889563 0.909130 1.911444 -2.331961 1.367397 -1.556604 -3.859425 -6.411639 -1.402056 4.825481 1.677885 3.398107 -3.262595 -1.625285 0.041650 3.938925 0.596583 -3.068216 1.650764 -2.102476 2.039289 -5.363743 -4.623104 6.328133 6.028280 2.892171 -0.169403 1.697876 1.745175 -4.900137 -2.059248 -2.099447 2.075537 -0.632781 -5.311657 -2.196779 1.108020 -4.137043 -1.211944 -0.858299 0.938279 1.342150 0.195222 3.295872 1.253895 -0.519438 -1.211607 2.857063 -1.040179 -2.740896 -1.109404 0.396101 1.422007 1.896813 -1.590217 -0.143751 1.515367 -3.078284 -0.421170 1.510696 1.929956 0.716528 5.629559 4.612618 -1.169714 0.702695 -1.311374 -2.197282 3.277451 -1.981254 0.373019 -0.107497 0.625467 0.646787 1.476406 3.413565 -1.651587 -2.937363 -3.391819 -1.563905 0.333220 2.570721 -0.769544 -4.731045 -4.508837 0.983463 0.060714 4.540661 0.069928 6.444693 -1.219581 1.803419 -5.780223 0.347642 2.077106 -0.732906 2.769211 0.989025 -2.550324 -2.490775 -1.133907 -3.931583 -2.523809 0.157290 -0.730405 -1.910035 -2.688708 3.961523 -2.114327 0.003111 0.711246 0.485465 4.416202 1.520127 -0.265559 -3.208783 1.843739 3.038585 0.089651 -2.013446 3.239019 1.295216 7.558298 -1.076177 1.503666 -0.937904 1.381972 -0.938447 -3.026765 -1.684784 4.097804 5.007987 2.035526 -1.257295 -0.490244 -0.673560 2.900696 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/topological-sorting.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = -2.942250 -0.292164 5.465383 0.610384 -1.861781 -3.929224 -1.691695 -6.659484 3.296627 2.489156 6.498060 0.115288 3.680364 -1.954364 1.310490 0.650210 3.408516 -2.631675 0.621800 -1.830073 1.061087 5.026139 1.633832 0.199527 0.804390 -3.920067 0.149490 0.958194 1.555291 2.809279 1.172613 -0.376807 -1.419664 1.088949 -0.355688 2.867529 2.196794 1.356802 -2.039839 -1.095143 -0.363045 -1.242468 2.918883 -0.748694 5.032698 -1.215538 2.285894 -0.296465 -3.500489 -3.001273 -1.021574 4.055666 -2.807844 1.494595 1.386057 -1.123636 0.128600 -0.922521 -1.003231 -4.630936 -0.082849 -1.237662 -1.611507 0.177133 -1.008831 1.459798 -0.914378 -0.609360 0.239787 -2.507019 2.106171 0.499095 1.149051 2.230588 -4.121082 1.117547 1.220026 0.224426 1.558900 0.928211 -0.726497 -1.407891 -1.278701 -3.018703 3.667727 2.417290 0.925102 0.907088 -4.524576 2.370778 -0.474106 -0.305801 0.320865 1.838373 -4.335243 -0.138420 2.286528 -2.277861 -1.714885 -3.444374 0.460259 -2.878727 0.522619 2.158007 -0.331832 -0.368165 -4.763630 1.319187 -3.585905 -3.018902 2.357167 -1.421790 -1.770401 3.155763 -4.268439 0.027994 -2.462358 0.547224 1.447392 2.145989 0.304440 2.274508 2.120462 2.697118 2.505623 -3.366483 -0.833927 1.977962 4.797314 1.039262 0.528238 -2.103891 -1.713620 1.714788 -3.728617 -5.581245 -3.593129 3.128227 4.298746 1.519623 -3.141320 0.345353 -1.223419 4.433611 3.942056 1.034618 0.192543 1.399297 -3.701469 1.396239 3.676272 -2.437960 4.022478 0.369392 -0.793113 2.443978 -2.675284 2.023743 1.281818 0.376907 -0.667572 -2.490908 -1.185578 3.637174 3.191320 2.917929 -3.421493 1.705748 -0.849394 -4.913539 -7.598368 -1.793588 4.018463 1.358201 3.845817 -2.939007 -3.320003 -0.127617 3.987617 -1.077816 -4.440063 1.125967 -2.576708 1.966116 -6.411481 -4.740426 7.859053 7.349437 3.440570 1.024223 3.337356 2.384109 -5.097280 -0.983343 -1.515660 2.764644 -0.533703 -5.712987 -1.408769 0.902469 -4.403182 -2.225207 -1.613371 0.858999 -0.842192 0.861154 3.549791 1.976150 -1.117252 1.009932 1.737236 -1.500340 -3.252069 -1.415307 0.300825 2.179245 1.707979 -2.454353 0.325503 1.973296 -4.861895 -0.978022 1.187284 2.672220 2.451079 6.108656 5.438918 -0.659228 2.989893 -1.682967 -3.003361 3.010562 -2.275649 -0.081232 -1.008482 0.930405 1.475090 1.039309 3.092483 -1.546910 -2.986502 -3.480967 -0.816784 0.994303 3.344866 -1.340164 -6.029252 -4.723136 0.980914 1.186257 4.497234 -0.772318 6.862080 -1.952211 1.434513 -7.872746 0.324476 1.690473 -0.410707 1.785024 0.784188 -2.206030 -4.793370 -0.865235 -3.903964 -2.651795 0.226380 -1.865185 -1.360230 -4.556650 5.657385 -3.429781 -0.074307 0.706687 0.767531 5.178045 3.349236 -0.887704 -2.977312 1.978069 2.269326 0.721724 -2.233970 4.062474 1.117182 9.133610 -1.673028 1.542712 -1.633567 2.603289 -1.193172 -2.665008 -1.040370 4.210929 6.617979 1.228963 -1.198706 -0.272525 -1.479061 2.792005 -PE-benchmarks/topological-sorting.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.636674 0.460827 2.391177 2.197014 -1.945923 -2.388707 -0.651999 -2.416319 1.559562 0.564572 2.022611 0.202868 1.350116 -1.026539 -0.255563 -0.738856 1.386182 0.438959 -0.640089 -1.054593 -1.094221 2.098852 0.379433 -2.049719 0.656631 -1.158318 1.870847 1.169897 0.445418 1.662731 0.532391 0.257853 -0.710147 1.040257 -0.856957 0.221186 -0.216989 0.717333 -1.046332 -0.679179 1.174988 -0.241219 1.963467 0.187050 1.447648 0.703427 0.925676 0.033553 -1.942031 -0.785050 -0.421205 0.852381 -0.754144 1.319499 -0.178892 0.397436 0.997719 -0.984518 0.255846 -2.103331 0.612332 -0.258218 -1.122430 -0.245432 -1.573596 -0.070210 -0.141613 -1.532377 0.311941 -1.549577 0.587820 -0.365359 -0.439739 -1.179817 -1.728649 0.136738 0.724397 0.415450 1.273053 1.245882 -0.354349 -0.991857 -1.418512 -1.159187 0.864493 -0.041994 0.559770 1.206964 -1.084828 -1.059873 0.644711 0.034571 0.526813 1.085214 -1.242526 0.342598 0.002154 -0.723601 -0.958025 -1.549704 0.581390 -0.824052 0.637269 0.968818 -1.321978 0.500830 0.042398 0.526453 -0.388743 -1.153500 0.338210 -1.319049 0.248325 1.822778 -0.543584 -1.485917 -0.790236 -0.380231 0.318959 1.508199 -0.045505 0.101952 1.665048 0.963301 1.152457 -1.691954 -0.190380 0.644640 0.797106 0.786478 0.700022 -1.123973 -0.715620 0.458664 -1.359876 -2.687488 -0.697321 0.557024 1.802054 -0.045183 -1.899582 1.236465 -1.042029 1.163994 1.001997 1.097937 0.554872 0.236968 -1.538521 0.337883 2.055808 -0.562682 0.899649 -0.545628 -1.877465 1.667993 0.265101 0.618521 -0.118584 -0.725198 0.038091 -0.829724 0.727853 1.809747 0.045088 0.052924 0.243931 0.504188 -1.132958 -2.252006 -3.057076 0.118116 1.743853 1.712831 3.490137 -1.966907 -0.691685 -0.544815 1.576160 -0.637706 -0.882514 0.486498 -0.884409 1.063178 -3.548821 -2.558438 3.256785 1.914159 0.984472 -0.119117 1.397075 -0.296566 -0.438864 -1.144812 -1.333715 0.609578 1.018991 -0.515048 0.172822 0.294903 -2.205971 -0.382709 0.332176 0.499059 1.011086 -1.387296 0.372451 -1.352217 -0.879559 -1.511893 0.739307 -1.012431 -0.148107 0.098606 -0.010253 0.095483 0.922510 -0.193314 -1.093946 -0.604412 -0.971042 -0.309264 -0.078880 1.304628 0.394249 2.618327 2.604583 -0.898075 1.070874 0.147368 -1.184406 4.146852 -1.476843 0.288606 0.090323 1.745054 0.921474 0.557468 1.710604 -0.829035 -0.150125 -1.871795 -0.290547 0.593961 0.813593 -3.312082 -1.022413 -2.907991 -0.076494 -0.609399 2.119010 -0.273927 3.372345 -0.758199 0.257868 -3.493027 0.090625 1.692196 -0.198877 1.154059 0.805092 -1.750240 -2.181227 -0.246691 -1.631533 0.288266 -0.253939 -0.563013 -1.179047 -0.179756 0.574633 -0.971219 0.589719 2.208345 -0.848050 1.148253 -0.390097 0.083256 -0.350011 -0.718238 0.754120 0.344839 -1.126023 1.725102 0.343580 3.746206 0.374746 1.387156 -0.891032 1.271004 -0.630614 -2.042613 -1.266894 1.739568 1.782172 0.659588 0.554900 0.601963 -0.523563 1.610512 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.198128 0.547659 2.071949 0.885581 -1.370135 -1.674195 -0.569803 -2.330521 1.255191 0.481308 1.173669 -0.124489 0.802380 -0.628640 -0.292291 0.534937 1.142848 0.121156 -0.200103 -0.881571 -0.590795 1.573600 0.212077 -0.751065 0.707581 -1.475075 1.280363 -0.012214 0.864329 1.433776 0.660375 -0.196218 -0.416939 0.844165 0.484443 1.231522 0.431932 0.482000 -1.159134 0.228267 0.069998 -0.523328 1.035386 0.308265 1.468409 0.645282 0.524750 0.117070 -1.419588 -0.304217 -0.648405 1.153985 -1.107815 0.946911 -0.011543 0.234093 0.032512 -0.711850 -0.043499 -0.828449 -0.422958 -0.561728 -0.938801 0.100501 -1.424588 0.130365 -0.764698 -0.631058 -0.452447 -0.412090 0.589891 0.280374 -0.006940 0.166880 -1.640878 0.111439 0.470418 0.647209 1.171402 0.056882 0.064612 -0.760250 -0.962084 -1.235961 1.194526 0.238372 0.473853 0.505258 -0.507517 -0.419664 -0.330255 0.060547 0.459594 0.990939 -1.226161 0.021218 -0.536944 -0.467946 -0.545117 -2.056225 0.225168 -0.770414 0.409825 0.148891 -0.450182 0.209303 -0.079618 0.732603 -0.141623 -0.565930 0.513976 -0.415103 -0.411567 1.509303 -0.159388 -0.890276 -0.690494 -0.314118 0.151857 1.053468 0.254395 0.325123 1.159724 0.935365 1.634714 -1.060309 -0.405306 0.459802 0.564535 0.593827 0.835502 -0.804731 -0.753949 0.472266 -0.707469 -2.051081 -0.620456 0.511158 1.278526 0.230614 -0.779511 -0.281396 -0.703201 0.878207 0.519641 0.517909 0.398475 -0.030705 -1.011222 0.402666 1.890112 -0.658541 0.715553 -0.681930 -0.254709 0.846965 -0.263832 0.373142 -0.481709 -0.429022 -0.052799 -0.759279 0.017785 1.404730 0.220484 -0.078075 -0.092895 0.469110 -1.035068 -1.706672 -1.782612 -0.267829 1.574218 0.268061 1.586514 -1.265899 -0.482437 -0.507873 1.117384 -0.053505 -0.403797 0.328196 -1.079992 0.848401 -2.019289 -1.762326 2.704077 1.810852 0.956528 -0.184266 0.483572 0.633663 -1.617728 -0.918492 -0.919327 0.422865 0.077760 -1.452348 -0.916825 0.283502 -1.737231 -0.393236 0.211118 0.554395 0.715403 0.123677 0.532659 -0.027561 -0.486085 -0.993894 0.811550 -0.727232 -0.510310 0.154370 0.116356 0.342506 0.821122 -0.453530 -0.385469 0.371225 -0.814763 -0.224938 0.300663 1.086155 0.166028 1.768916 1.980551 -0.176604 0.807341 0.122679 -1.192409 2.039674 -0.436895 0.478118 0.006467 0.350011 0.280273 0.371714 1.323683 -0.671390 -0.919633 -1.349289 -0.703196 0.268751 0.883056 -0.716903 -1.418800 -1.518186 0.104226 -0.029073 1.484993 0.056262 2.137017 -0.432632 0.620515 -2.317543 0.231558 1.484303 -0.156256 0.864007 0.677494 -1.137091 -1.348482 -0.322964 -1.268551 -0.590455 -0.390629 -0.164578 -0.782574 -0.427977 1.064740 -0.567217 0.143483 1.126271 0.060522 1.449670 -0.013326 0.144372 -0.827825 -0.064989 1.072405 0.165513 -0.867914 0.942855 0.711895 3.040136 0.098567 0.571839 -0.588600 0.058111 -0.132510 -1.207085 -0.839079 1.421709 1.460004 0.618790 0.319845 -0.040265 -0.299517 1.193698 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/topological-sorting.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/topological-sorting.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.409952 -0.069641 8.474069 0.854056 -3.528254 -4.722853 -2.388962 -10.357156 5.068555 3.965125 9.559729 0.486004 5.704415 -2.780648 1.263034 -0.115004 5.393068 -3.800970 2.110314 -2.414472 1.864510 8.307555 2.067480 1.395466 0.638542 -5.877552 1.656115 0.152624 3.855366 5.023175 1.700280 -0.993749 -3.020882 1.273219 1.007390 3.591619 2.747517 2.679423 -3.272876 -1.541436 -0.783200 -4.330868 4.459164 -1.079290 6.877036 -3.389422 2.454044 -0.867325 -5.098065 -4.441232 -1.680250 4.272493 -4.837149 2.186738 2.797880 -3.389355 -0.266088 0.788843 -1.105547 -5.995115 -0.353076 -3.999865 -1.546370 0.725706 -2.054729 2.437468 -4.083602 -0.567103 -0.231899 -4.079419 2.786461 1.641587 3.491771 4.282302 -7.905708 2.053774 1.687079 0.166270 2.382947 2.649159 -0.757924 -2.006341 -2.398005 -5.087517 4.903760 4.434101 0.591828 0.296127 -7.361478 3.980188 -0.176431 0.457938 0.275170 2.940297 -6.970489 0.760177 0.650509 -2.936362 -0.976773 -8.052302 0.013977 -5.061232 0.809885 2.838001 -1.864122 -1.234278 -7.047813 1.700715 -4.440076 -5.225491 3.859750 -2.049990 -3.141367 5.279870 -6.145200 -0.102632 -4.533228 1.121076 2.985641 2.202922 0.422030 4.013575 2.136592 3.791169 4.592580 -5.372356 -1.142155 4.219905 6.099480 0.928897 0.361795 -1.912571 -2.467079 2.605810 -4.825831 -8.498252 -5.454202 5.021553 6.121047 2.039493 -2.704000 -1.622822 -2.600894 6.376523 6.822158 1.950768 0.627589 2.685803 -5.076326 2.098223 4.807197 -3.432907 5.549290 0.791076 -1.019202 4.513039 -4.279553 3.619139 0.163333 2.101646 -0.975227 -4.405637 -2.373920 5.836008 3.626451 4.491101 -5.153116 2.025246 -1.033196 -7.618157 -10.851615 -2.496208 8.046892 3.031316 3.849325 -4.438692 -3.818163 1.730181 5.241096 0.623787 -7.097799 2.198148 -3.150367 3.099691 -11.081730 -7.622568 10.728990 10.562033 3.870136 1.200132 3.022201 4.264512 -8.518322 -2.593182 -3.428196 4.535132 -2.799341 -9.456773 -3.319979 2.022306 -6.328277 -2.717854 -1.174184 0.979685 1.000610 0.283457 5.588439 3.676181 -0.716950 0.575795 4.958535 -2.100699 -6.043846 -2.424029 0.309775 4.002058 2.743771 -2.731731 1.021448 3.319157 -6.535062 -1.680923 1.438096 2.956756 2.011634 9.103906 8.069619 -0.890295 1.225268 -2.301715 -4.645400 5.415891 -4.201597 -0.356429 -1.431687 0.440305 1.564124 2.294908 5.141605 -2.548937 -5.581447 -5.408343 -2.338214 0.523881 5.432592 -2.395664 -9.961286 -6.726684 2.633741 1.893933 6.315900 -0.275465 10.742270 -3.383705 2.140437 -10.505712 0.289136 3.084120 -0.585405 4.968357 0.868037 -2.999372 -4.370062 -2.011094 -5.743590 -1.781390 0.279350 -2.817575 -1.861563 -6.076382 7.825169 -4.155682 -0.138284 -0.716388 0.489027 9.007699 5.397119 -1.677004 -5.525626 3.852078 3.262507 1.181757 -3.163142 7.174797 1.701542 12.637200 -2.903089 0.767740 -2.056173 3.474263 -2.096879 -4.409502 -1.333786 6.889116 9.776669 2.970525 -3.090058 -0.792602 -2.217012 3.524124 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.405048 0.210521 1.434332 1.170063 -0.762590 -1.817033 -0.360347 -1.779161 1.035441 0.464121 1.556587 0.196648 1.236835 -0.717860 0.128041 0.084859 1.051118 0.099018 -0.055374 -0.566965 -0.504387 2.055855 0.468280 -0.721422 0.242827 -0.708337 0.771083 0.768950 0.714084 1.204685 0.255890 0.119168 -0.088498 0.502799 -0.706887 0.234077 -0.474170 0.683009 -0.764871 -0.498152 0.339845 -0.645416 1.357545 0.150678 0.874242 -0.020520 1.118975 -0.111731 -0.917861 -0.680066 -0.833661 0.964045 -0.738221 0.730940 -0.597688 -0.349749 0.798467 0.074705 0.064501 -1.363607 0.132964 -0.231264 -0.997644 -0.247058 -0.916804 0.192926 -0.481602 -0.916892 -0.073328 -0.461162 0.680828 0.171246 -0.101018 -0.530383 -1.908752 0.125368 0.396211 0.177567 0.766652 0.794091 -0.257908 -0.577589 -0.956920 -0.977898 1.440163 0.118744 0.472742 0.797028 -1.230179 -0.365447 -0.081025 0.281283 0.391655 0.548244 -0.764569 0.534509 0.435534 -0.449279 -0.473700 -1.170774 0.237470 -0.798465 0.148717 0.428453 0.023948 0.165055 -0.759504 0.232147 -0.748354 -1.253913 0.385124 -0.787473 -0.759526 1.063256 -0.692237 -0.423692 -0.388188 0.138972 0.253820 0.877766 0.292160 0.419319 0.897627 0.622383 0.596184 -1.114237 -0.033722 0.459211 0.898495 0.512374 0.245438 -0.336638 -0.771711 0.404565 -0.911475 -2.032355 -0.703284 1.333177 1.153441 0.040615 -1.042097 0.905380 -0.526457 0.847417 1.249146 0.432988 0.462513 0.315303 -0.959848 0.468761 1.485749 -0.706028 0.972689 -0.204647 -0.965274 1.599890 -0.482739 0.494161 -0.030700 -0.364736 -0.075400 -0.537657 0.238584 1.377550 0.338222 0.332692 -0.047534 0.332061 -0.556595 -1.527405 -2.143709 -0.235020 1.494177 1.044075 2.019236 -1.014683 -0.461960 0.199688 0.612086 -0.524491 -0.876867 0.311556 -0.743303 0.732683 -3.074096 -1.760824 2.432715 1.214399 0.835163 0.178872 0.794561 0.626676 -0.363990 -0.739379 -0.738800 0.692584 0.456110 -1.151087 -0.267679 0.180998 -1.582882 -0.346227 -0.043909 0.163671 -0.004119 -0.556525 0.736701 -0.985480 -0.711790 -0.433113 0.519989 -0.925358 -0.377091 -0.230837 -0.130899 0.150747 0.468825 -0.109258 -0.087376 -0.063041 -0.992844 -0.340763 -0.240374 0.785805 0.527886 1.871534 2.210540 -0.623361 0.687341 -0.092107 -0.959103 2.129903 -1.021301 0.015181 -0.133801 1.212476 0.553835 0.543526 1.247408 -0.478284 -0.493789 -1.384315 -0.100278 0.956252 0.602273 -1.233860 -0.796265 -1.877474 -0.009623 -0.054005 1.924310 -0.447476 2.208795 -0.962978 0.411411 -2.361826 0.245199 0.484528 -0.146762 0.930456 0.443846 -0.955445 -0.962214 -0.478047 -1.030628 -0.055418 -0.073377 -0.711719 -0.643518 -0.618991 0.323709 -1.372559 0.312585 0.698085 -0.521175 1.166598 -0.040284 -0.052439 -0.714103 0.332581 0.854587 0.312423 -0.739410 1.099918 0.118865 2.658937 -0.084380 0.979467 -0.777050 0.882554 -0.525559 -1.237782 -0.632691 1.481442 1.596685 0.162198 0.398392 0.401169 0.041528 1.060075 -PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.241380 1.158143 5.918681 3.181847 0.371121 -1.302865 -0.914399 -3.909253 2.247510 0.958986 4.776219 -1.889258 1.987873 0.518409 -0.404048 -1.184488 2.369517 -1.456364 1.142836 -0.552003 2.876089 4.441327 1.569459 -2.347875 0.366010 -4.625562 1.544908 1.393945 1.797830 2.300524 0.776112 2.013291 1.296722 1.044652 -1.883029 -0.097049 -0.130716 1.640440 -1.246176 -1.446104 0.476329 0.527995 0.937861 0.825443 2.556065 0.670148 3.128553 -1.609475 -1.401840 -0.859482 -4.336309 4.124078 -2.145195 -0.447952 -1.561129 -1.069439 1.547824 -1.750530 -1.067850 -5.202976 0.297836 1.561884 -1.652892 0.087993 -2.310082 2.739140 -0.091615 0.387185 0.158700 -0.250724 2.318157 1.673100 1.823658 0.092139 -3.697554 2.739363 -0.270798 0.544154 1.157576 -0.513179 -0.536015 1.550408 -0.829160 -2.332111 3.651089 1.679157 1.174834 0.466079 0.083593 0.034308 -2.116876 -0.318227 -2.260474 2.575020 -2.445291 2.678925 1.111188 -1.266182 -0.952453 0.503301 -0.351858 -3.564346 -0.054023 3.606422 -0.807186 1.411090 -2.615227 0.484225 -1.329531 -3.428992 0.877407 -2.006870 -1.178959 2.691566 -3.853662 0.103932 -1.513865 1.559347 1.064224 2.922087 -2.099793 3.419710 0.845235 1.850207 0.377257 -1.743111 0.887302 2.325821 2.437935 1.173670 1.070157 -1.986024 -2.099862 -1.667570 0.014651 -3.690779 -1.519568 2.874582 2.956521 0.875220 -5.300228 2.523440 -0.651841 4.231890 3.777148 1.002314 0.638997 1.995639 -2.365596 1.548117 5.326763 -2.311798 2.697685 -1.023617 -0.897904 3.178760 -2.184084 2.604283 0.405553 1.516624 1.093831 -3.161384 -1.394334 3.236423 2.550534 1.474904 1.631324 0.322798 2.361415 -5.176923 -5.199570 -2.253532 1.738493 -0.349065 4.394858 -1.946020 -1.516382 -0.168021 2.424062 -0.654298 -1.630092 -0.505925 -1.534452 0.825010 -6.305950 -5.146036 4.213994 3.755850 0.178995 1.407557 2.590279 2.244102 -0.688309 -1.084826 -0.615477 3.548050 -1.059976 -0.725808 -0.224294 -0.361985 -2.535857 -3.042005 -0.582861 0.344750 -0.186304 -0.735743 1.201288 0.021942 -2.564708 -0.710974 -0.232414 -3.073783 -3.823831 -0.828100 -0.076597 1.138100 0.615218 -1.940707 0.787194 2.630021 -2.785405 -2.139176 0.443516 1.211764 0.738354 2.214275 4.813043 0.652507 1.464599 0.581999 -2.222119 5.421773 -0.291162 -0.791554 -0.863132 0.013995 1.056219 1.614435 0.695241 -1.058506 -2.450277 -4.158493 2.376362 0.091649 1.968064 -2.679407 -2.576664 -2.260654 -0.568409 3.098090 3.017320 -0.155164 6.773425 -1.119402 -0.839786 -6.119876 0.080917 3.060066 -0.461008 1.834804 1.868653 -2.437036 -3.310357 -0.720228 -1.435103 0.898868 -1.396416 -4.247843 -2.845319 -2.337445 3.399023 -3.212404 1.489985 2.027254 1.692929 1.961439 2.231145 -0.962280 -1.558832 0.054282 0.882549 2.112188 -2.309761 3.120081 -1.943232 5.347372 -3.263054 1.768946 -3.100218 2.304073 -1.024216 -1.081505 0.003548 5.504276 3.291889 0.134513 -0.086916 -1.497998 -1.143247 2.885222 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = 0.164375 0.324627 0.600767 0.168004 -0.092430 -0.273243 -0.104435 -0.528583 0.138569 -0.000851 0.227614 -0.206050 0.132944 0.093616 -0.071975 0.010287 0.174562 0.200061 0.049141 -0.108613 -0.083730 0.254784 -0.093795 -0.228619 0.100628 -0.405151 0.163700 0.199195 0.318404 0.242263 -0.064761 -0.025771 -0.053365 0.181670 -0.268321 -0.267866 0.233320 0.080962 -0.422381 0.067048 -0.111193 0.281606 0.122569 -0.067426 0.104695 0.329815 -0.056223 0.091129 -0.104371 0.065547 -0.037339 0.358356 0.021519 0.244477 0.045463 -0.058589 -0.047680 -0.152259 -0.015894 -0.078319 0.057977 0.176319 0.023838 -0.002513 -0.306674 0.007780 -0.043282 -0.301957 0.153881 0.071625 0.151984 0.026174 0.083644 -0.137949 -0.331191 0.234864 0.176656 0.268616 0.162560 -0.142976 0.272130 0.088720 -0.145491 -0.244146 0.103157 0.243960 0.169815 0.059102 -0.002346 -0.241771 0.133528 -0.087685 -0.006455 0.249619 0.013189 0.200075 -0.476577 -0.003763 -0.179829 -0.506126 -0.060090 -0.141155 0.152172 0.028934 0.036154 0.184905 0.288589 0.305649 0.166950 -0.236738 0.114423 -0.008333 -0.029157 0.450836 0.036768 -0.198369 0.005526 -0.091662 -0.262491 0.291117 -0.003971 0.095681 0.097317 0.269793 0.127895 -0.198230 -0.132284 0.077685 -0.009585 0.275758 0.321847 -0.399382 -0.149979 0.000994 -0.195694 -0.479826 0.050388 -0.014767 0.263416 -0.224892 -0.153830 0.086842 -0.267474 0.236376 0.029926 0.090922 0.102872 -0.140812 -0.127129 0.210227 0.423795 -0.208589 0.167378 -0.225084 -0.150185 -0.073333 0.109042 0.176040 -0.131129 -0.064098 0.180760 -0.225784 0.042319 0.350310 0.154941 0.055389 0.191167 -0.008319 -0.288525 -0.429851 -0.267033 0.000750 0.119294 -0.253854 0.446828 -0.127424 -0.405507 -0.139138 0.430983 -0.177996 0.077760 0.090770 -0.215246 0.151847 -0.233041 -0.403440 0.368581 0.442994 0.074010 -0.218124 0.199015 0.073607 -0.209258 -0.283427 -0.086352 0.050103 -0.010551 -0.411674 -0.355558 -0.023667 -0.238697 0.080871 0.118853 0.122995 0.175379 0.235619 -0.043515 -0.021068 -0.387520 -0.322412 0.243226 -0.251711 0.118294 0.147164 0.040140 -0.049241 0.194076 -0.317419 -0.250014 0.264331 -0.171479 0.038372 0.039155 0.188350 -0.038467 0.334150 0.149398 0.182954 0.415039 0.211630 -0.305728 0.692039 -0.097707 0.108785 0.042015 0.062053 -0.267538 0.178429 0.117548 -0.103664 -0.320126 -0.446348 -0.174184 -0.063447 0.099297 -0.030766 -0.332676 -0.159953 -0.109163 0.046936 0.254671 0.070068 0.489410 -0.034066 0.126049 -0.437247 0.032313 0.169736 -0.121856 0.240198 0.231481 -0.281310 -0.577496 0.017381 -0.231387 -0.343590 -0.160272 -0.452295 -0.160302 -0.150236 0.130648 0.010666 0.105725 0.396843 0.122614 0.185408 -0.174284 -0.047014 -0.145720 -0.077747 0.287856 -0.060810 -0.301264 0.060031 0.100062 0.813119 0.003213 0.198448 -0.269179 -0.249646 0.134210 -0.105169 -0.116682 0.346835 0.198761 0.218346 -0.015788 0.021491 -0.160461 0.196602 -PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.789695 -1.284874 28.293151 6.284593 -9.103509 -13.164206 -8.637931 -28.896857 15.452242 12.394273 31.473573 0.188338 16.766684 -7.901766 3.938417 -4.101708 15.976830 -15.062823 5.482616 -7.294844 5.740141 25.780467 11.121574 -1.031118 1.696970 -21.458329 6.637074 0.727567 8.564281 17.133370 4.953327 -1.162951 -6.826579 5.972734 -0.192080 10.799280 8.612585 8.445827 -6.175910 -6.486820 2.227320 -6.382553 13.645519 -2.099474 21.984503 -5.550724 8.165239 -4.346200 -17.869849 -13.997758 -5.961964 14.784265 -17.201011 5.866894 8.767093 -5.792526 2.751756 -3.947922 -5.401590 -25.348712 -0.440536 -7.727910 -5.622792 2.091881 -6.918591 8.446164 -9.717968 -0.590293 1.475170 -12.040447 10.723934 5.464258 10.747220 10.744866 -18.539207 9.817240 4.254097 0.721332 8.093872 5.615717 -5.922718 -3.252762 -6.405587 -16.060703 14.989637 9.247982 2.557587 1.338056 -16.344611 11.383669 -1.329948 -0.336299 -2.860754 11.315667 -19.060210 3.194742 7.517759 -10.039383 -4.531980 -17.524360 -0.798229 -17.425413 2.101534 16.794905 -8.169988 -3.705399 -23.953781 4.521811 -15.197880 -16.963442 12.361045 -7.710156 -8.690794 13.596208 -22.491589 0.950457 -12.208332 3.901489 11.164516 11.020924 0.411111 13.244163 8.289442 12.907667 11.914302 -16.034011 -1.171846 11.029581 21.189379 3.076079 3.017182 -9.273942 -8.760709 6.647921 -13.265612 -25.745920 -15.507382 16.074069 19.219328 9.648564 -16.705205 1.507146 -6.866911 21.222637 21.691474 7.566528 2.243731 7.341260 -16.169123 8.000044 18.100791 -12.037564 18.050360 1.656603 -7.407558 17.728501 -15.583595 12.539630 3.007622 7.045561 -1.085420 -16.545759 -6.394751 19.553525 13.300618 15.010160 -11.794104 5.909515 2.791001 -25.776185 -34.716766 -7.088819 21.305990 8.530142 17.880657 -14.182674 -11.285427 3.147967 18.341581 -0.265103 -20.980508 3.420083 -7.709518 8.289291 -37.815899 -25.190793 35.934691 32.414369 10.820705 4.651316 12.086417 13.091384 -20.139826 -5.682415 -11.562678 16.126798 -6.619796 -21.014612 -5.842171 4.564095 -19.087632 -11.064718 -4.881152 2.961180 3.276274 -4.386124 10.084843 10.553465 -5.741126 2.238184 11.727089 -9.714132 -20.281521 -7.721760 1.014158 11.772614 7.389953 -7.479320 1.771725 9.129840 -21.229879 -8.419871 6.083960 12.422742 8.917779 27.150254 25.577451 -3.166648 4.189382 -4.806357 -13.116062 20.561029 -12.763765 -3.234150 -4.103166 5.011503 7.704629 6.786248 14.502240 -7.320255 -16.793495 -17.457783 -0.480942 1.889267 15.805921 -14.316390 -29.751608 -21.758328 5.354575 8.497022 20.120756 -1.510363 36.822464 -7.990563 3.969850 -34.864415 0.247344 12.705473 -1.390632 12.974344 5.103276 -10.593538 -19.004443 -7.291702 -16.472488 -0.728545 0.303574 -10.199003 -6.884253 -19.576707 25.846241 -14.352477 2.926188 2.077032 3.032290 24.299920 20.133330 -5.476988 -16.525042 8.465489 6.737961 5.771417 -10.572600 24.751819 2.727580 38.497501 -11.847607 4.865752 -9.818387 12.746067 -7.168599 -10.882025 -2.981765 21.930450 30.074188 7.009544 -6.291578 -1.778474 -8.445359 13.002818 -PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.081431 0.970725 3.042871 1.182234 -1.656547 -2.238039 -0.718126 -3.843688 1.794894 1.650861 2.340125 -0.186484 1.509094 -0.432073 -0.549594 0.384066 1.381727 -0.012491 -0.143751 -1.456918 -1.591593 2.391919 0.047240 -0.126512 0.875406 -3.036778 2.407380 0.155309 1.250247 1.602089 0.859969 0.296828 -0.503172 1.338390 -0.237305 0.667187 -0.032214 1.158555 -0.859728 0.328052 0.950921 -0.324309 1.579820 1.371514 1.804431 1.196076 0.348105 -0.199776 -1.586502 -1.011116 -0.489267 0.675519 -1.189351 1.529336 -1.063868 -0.199248 0.471927 -0.540301 0.694464 -1.099633 0.120723 -0.833471 -0.993036 0.060887 -1.662583 0.317818 -1.274644 -1.542628 -0.560189 -0.457511 1.459136 0.282691 -0.312361 -0.108442 -2.795045 0.469907 0.708408 0.186646 1.970561 0.099123 -0.751191 -0.847669 -2.030840 -2.390645 2.284280 1.198995 0.635851 0.956220 -0.944786 -1.370969 -0.234638 -0.086346 1.049976 2.100722 -1.710077 0.128093 -0.379829 -0.877863 -0.819809 -2.753046 0.145558 -1.568906 0.722231 0.594397 -1.180468 0.597162 -0.153196 0.642298 -0.227422 -1.016731 0.827183 -1.233771 0.266461 2.399791 -0.228766 -1.874997 -0.924998 -0.392821 0.503267 1.425788 0.751988 -0.064531 3.143788 1.008901 1.452627 -1.575008 -0.414564 0.954021 0.266411 0.796028 0.914023 -1.485318 -1.458793 0.575257 -1.060815 -3.023787 -0.725194 0.470770 1.967445 -1.175189 -0.800928 1.125899 -1.176099 0.736741 1.912846 0.549828 0.845377 0.008731 -1.690221 0.614558 2.998175 -0.899594 0.874842 -1.262699 -1.097365 1.735157 -0.488480 0.740364 -0.124631 -0.584578 -0.301310 -1.265955 0.328610 2.575118 -0.415977 0.115739 0.413853 1.123307 -1.378378 -1.966378 -3.223315 -0.484931 2.275310 1.078973 3.027524 -2.048175 -0.041483 -0.363686 2.016960 0.318292 -0.772734 0.794165 -0.836412 0.788508 -3.406103 -2.783971 3.722162 3.093245 1.524362 -0.882093 0.921775 1.036658 -1.201748 -1.906939 -1.210535 0.606122 0.660827 -1.983999 -1.399634 0.790594 -2.139109 -0.935940 0.035719 0.482472 1.231770 -0.968146 0.924949 -0.804404 -0.828777 -1.716135 1.334559 -1.133365 -0.609212 -0.100740 0.374504 -0.007793 1.019407 -0.432145 -0.477848 0.305365 -0.922945 -0.070889 0.690791 1.624525 0.410755 2.923593 2.765206 -1.055343 0.450737 0.000810 -1.172836 3.423239 -1.287804 0.199813 0.326501 1.079561 0.162287 0.877115 1.784851 -1.031992 -0.912805 -2.276835 -0.060401 0.380198 0.252137 -1.266202 -0.813121 -3.308381 0.111147 -0.824797 2.774390 0.178240 3.860806 -0.635860 0.485401 -2.814219 0.199180 1.517910 -0.698454 1.755266 1.119842 -1.654695 -1.189461 -0.908244 -2.002619 -0.531438 -0.119741 -0.543839 -1.430574 -0.362190 0.483098 -1.173795 0.944993 1.457171 0.216350 1.560873 -0.857225 0.116930 -1.668212 0.704968 2.033220 0.253022 -1.556232 1.372985 0.262129 4.017716 -0.248858 1.331601 -0.926395 0.072957 -0.616454 -1.980093 -1.448227 2.290714 1.806748 1.317348 0.332513 0.167121 0.114734 2.371573 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = -1.049391 0.898494 5.190114 1.797225 -2.478312 -3.725239 -1.243058 -6.100974 3.006696 2.497026 4.801963 -0.137232 2.754145 -1.144183 0.060225 1.047995 3.056252 -0.859304 -0.091710 -2.333972 -1.300265 4.262226 1.098723 -0.331789 1.334411 -4.360130 2.000905 0.356553 1.930468 2.397823 1.376902 0.187413 -0.876247 1.698294 -0.224116 1.835489 0.688507 1.468848 -1.944004 -0.183679 0.765894 -0.936566 2.616260 1.326841 3.646303 0.512662 1.900352 -0.458348 -3.305273 -1.976786 -1.541322 3.039974 -2.417801 2.165907 -0.454590 -0.467520 0.749899 -0.996914 0.148627 -3.093895 -0.339143 -1.276528 -1.731356 -0.004310 -1.999406 1.031534 -1.785779 -1.680610 -0.486781 -0.731236 2.532096 0.687031 0.222411 0.864627 -4.149786 1.040009 1.024737 0.574222 2.721355 0.383026 -0.928384 -1.347353 -2.458353 -3.505791 4.069076 1.232123 1.068900 1.165134 -2.502336 -0.332007 -0.719008 -0.278311 0.842698 2.570189 -3.743501 0.310960 0.847432 -1.854595 -1.611834 -3.957553 -0.033124 -2.713755 0.598932 1.504800 -1.232764 0.710174 -2.664452 1.140517 -1.753462 -2.188462 1.813195 -1.484606 -1.222236 3.286636 -2.203027 -1.742492 -1.417093 0.206207 0.825908 2.294433 1.003665 1.201629 3.919478 2.081943 2.329233 -2.521708 -0.370232 1.202708 2.341625 1.285220 1.487577 -1.869764 -2.500879 1.261333 -2.163366 -5.169657 -1.907239 2.442202 3.811076 0.324476 -2.289190 0.794113 -1.442158 2.660902 3.243932 1.011925 0.976315 0.265751 -2.985114 1.213525 4.540048 -2.222376 2.711198 -0.993320 -1.024617 2.819950 -1.861477 1.430182 0.227097 -0.451530 -0.264090 -2.390034 -0.809332 4.090596 1.202280 0.692936 -0.628597 1.821888 -1.471806 -4.223328 -6.118820 -1.265986 3.456356 1.305814 4.351781 -2.930260 -1.317606 -0.603982 3.101090 -0.529666 -2.473475 0.978212 -1.895253 1.317263 -6.038928 -4.675887 7.338091 5.843590 2.555381 -0.474718 2.199157 2.249365 -3.351163 -2.383088 -1.795787 1.631764 0.520763 -4.246198 -2.228946 1.154724 -3.985633 -1.849814 -0.569787 0.798439 0.661959 -0.602376 2.311042 0.210110 -1.533478 -0.915075 1.859489 -1.893007 -2.121707 -0.561894 0.457845 1.144590 1.621436 -1.273539 -0.374221 1.056599 -3.166492 -1.016210 0.957236 3.312021 1.794289 5.431492 5.236554 -0.837264 2.028463 -0.479703 -2.874683 4.410489 -2.161414 0.072991 -0.285600 1.338221 0.534852 1.210564 3.023170 -1.499444 -2.488461 -3.502144 -0.179751 0.597215 1.479821 -1.691754 -3.192102 -4.941971 0.358831 0.085323 4.300306 -0.442405 6.422397 -1.608551 0.769542 -6.064699 0.329349 2.429980 -0.843520 2.392691 1.643713 -2.572756 -3.060391 -1.432026 -3.309552 -1.023779 0.129802 -1.164648 -1.901224 -2.292213 2.905388 -2.914632 1.139930 1.569874 0.688590 3.914132 0.953665 -0.185478 -2.740287 1.718709 3.167716 0.922378 -2.487816 3.146495 0.702272 7.827717 -0.787594 1.719490 -1.903567 0.394679 -0.857993 -2.580548 -1.787133 3.809825 4.818840 1.658368 0.165339 0.079336 -0.579089 3.737631 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.774946 1.823501 18.074314 6.853590 -8.027176 -12.999941 -4.738200 -20.142493 10.599694 7.129173 17.520802 0.034208 10.067791 -5.048646 1.331037 2.669679 11.052100 -4.224113 0.281290 -7.009753 -2.888543 16.778551 5.509480 -3.223120 3.811494 -13.297645 5.505927 2.406061 6.672718 9.548694 3.752678 0.207894 -2.640464 5.358169 -1.115993 6.805293 2.511000 4.900351 -6.945274 -2.458414 2.411844 -4.235121 9.974941 1.850852 12.847976 -0.222858 8.532586 -1.674806 -11.707913 -6.675740 -6.498593 12.408454 -9.434493 6.284483 0.417672 -1.447507 3.275325 -4.137487 -1.757847 -12.532060 -1.679699 -3.696250 -7.151463 -0.130117 -6.899785 3.844844 -5.476870 -4.474929 -0.336783 -3.623738 7.911746 2.741058 1.640235 2.435711 -14.035708 3.998060 3.793266 2.206815 7.932758 2.650829 -2.688880 -3.894829 -7.458121 -10.931723 13.634207 2.990515 3.685579 3.197557 -9.477660 1.460498 -2.375848 -0.012724 1.119757 7.825650 -12.720801 2.098714 4.054354 -6.638273 -6.096346 -12.692178 0.219699 -9.580572 1.692721 6.537674 -3.762016 1.282266 -10.875205 3.762139 -7.581762 -9.674362 5.428166 -5.198971 -6.023505 10.241244 -9.683096 -3.445144 -5.362986 1.206912 3.143590 8.150621 2.497479 5.938994 11.092557 8.040711 7.907239 -9.426542 -1.201415 3.950181 10.643440 4.290946 4.646227 -6.295173 -7.890725 4.392543 -7.775636 -18.816133 -7.591519 10.562816 12.611152 3.824310 -9.934160 2.386763 -4.293444 11.188816 11.561434 4.003776 2.757356 1.950403 -9.928969 4.973171 15.339201 -8.206601 10.690180 -2.855414 -4.735168 11.813039 -7.838954 5.631651 0.812119 -0.312408 -0.813755 -8.858346 -2.786993 13.710388 5.827452 3.758836 -3.158118 4.703951 -2.671013 -16.028644 -21.819590 -4.047010 12.274766 5.138833 15.865932 -9.857580 -6.175763 -1.012249 9.805746 -2.901087 -9.619136 2.781513 -7.258844 5.496394 -23.336826 -16.969438 25.784193 18.620517 8.080193 0.864712 8.543235 7.379814 -11.716402 -6.421544 -7.075109 7.716337 1.339447 -14.123866 -5.602096 2.848552 -14.701567 -5.555996 -2.608234 2.749934 1.430296 -1.967450 7.356594 0.849073 -6.315862 -1.707236 6.653023 -7.333625 -8.566063 -2.665491 0.504131 4.623077 5.577294 -4.196747 -0.937577 3.072956 -12.380846 -4.562834 2.660466 10.590391 6.208322 18.789888 19.615579 -2.424077 7.688302 -1.807170 -9.851403 14.799724 -7.628200 -0.223464 -1.590855 5.286920 2.861518 4.436965 11.045874 -4.625399 -9.560542 -11.881583 -0.443289 2.771564 7.222581 -7.463858 -13.646428 -16.114940 0.587088 3.090304 15.373700 -2.230757 22.490311 -6.091100 3.393920 -23.595539 1.184143 8.090435 -1.560865 8.039996 5.012731 -9.116441 -11.863375 -4.624989 -10.701631 -2.990244 0.264345 -5.144130 -6.546415 -10.013812 11.924749 -11.136254 2.912382 5.114440 1.194154 14.335484 6.361294 -1.103812 -8.980964 4.939689 9.502993 3.589224 -7.677499 12.334649 2.615907 28.112166 -3.422203 6.255322 -7.225069 3.953308 -2.978479 -8.475609 -4.758870 13.431273 18.270245 3.921238 0.299699 0.218913 -3.172346 11.661665 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.528557 1.604125 6.051634 4.257618 -5.062277 -4.886550 -1.467400 -6.674188 3.925699 2.038920 4.101174 0.082067 2.473498 -2.187057 -1.214170 0.319013 3.299127 1.085551 -1.708855 -3.020407 -3.512165 3.724577 0.578678 -3.516430 2.533659 -4.160333 4.565319 0.623072 1.477324 2.666263 1.982027 0.641559 -1.400339 2.881432 0.105726 1.858867 0.244701 1.626823 -2.516465 -0.516906 2.358788 -1.419971 3.444911 2.055513 3.983423 1.700600 1.863969 -0.234631 -4.993590 -1.169427 -1.202333 2.572809 -2.317276 3.268629 -0.506461 1.283548 1.176929 -2.877391 1.020594 -3.417095 0.259437 -1.724221 -2.691512 -0.281603 -3.616197 0.155624 -1.094597 -3.059949 -0.520388 -1.588110 1.961696 -0.138960 -1.081252 -1.043596 -3.868831 0.151347 1.711906 1.014912 3.933659 1.547883 -0.566550 -2.705249 -3.527170 -3.678479 3.729359 -0.072506 1.366427 2.165230 -1.264821 -2.421653 0.355339 -0.479061 1.636728 3.434820 -4.428179 -0.191492 -0.240352 -2.070127 -2.204906 -4.871129 0.726668 -2.537124 1.402102 1.607936 -3.716475 2.034577 0.235968 1.750960 -0.210289 -1.524757 1.000257 -2.306409 0.460842 4.429934 -0.363927 -4.179820 -1.431534 -0.878549 0.559294 3.013304 0.611219 0.244559 5.940453 2.240761 3.336617 -3.028734 -0.412274 1.263255 1.051059 1.799882 2.332335 -3.057231 -2.448197 1.350016 -1.909046 -6.266366 -1.349216 0.784199 4.179025 -0.113376 -3.500880 1.057370 -1.812903 2.002408 1.901127 1.838247 1.122256 -0.058642 -3.264642 0.519848 5.301272 -1.739144 1.706720 -1.719933 -2.193470 2.909168 -0.097259 0.807273 -0.876529 -1.732273 0.159274 -2.346730 0.335840 4.605159 -0.620209 -1.462130 0.427321 1.836894 -3.504569 -4.968772 -6.453418 -0.522371 3.975953 2.386366 6.802613 -4.570424 -0.982460 -2.013702 3.772912 -0.731540 -1.183577 1.150207 -2.414249 2.108859 -5.871260 -5.918249 7.900690 5.062436 2.356444 -1.126056 2.663484 0.074546 -3.119653 -3.416422 -3.042876 0.625738 2.508097 -2.106198 -1.658162 1.222369 -5.236710 -1.491414 0.733657 1.268074 2.737472 -2.151900 1.489196 -1.453517 -1.509800 -3.371415 1.995556 -1.829120 -0.815675 0.257112 0.635447 0.733644 2.555329 -0.650156 -2.460608 -0.998255 -1.997500 -0.941934 0.753138 4.050809 0.973227 6.530063 6.247435 -1.552238 2.202092 0.306656 -3.089695 7.686179 -2.407473 0.821614 0.348921 2.260913 0.935654 1.122373 4.388445 -2.017487 -1.313591 -4.050207 -0.831165 0.145900 1.273075 -5.129495 -1.812579 -6.196173 -0.294795 -1.358431 4.165882 -0.230824 7.189719 -1.296916 0.511157 -7.143119 0.148645 4.662974 -1.011012 2.877523 2.340340 -4.098775 -4.594574 -1.210144 -3.713711 -0.327833 -0.565587 0.172327 -2.977193 -0.315851 2.160497 -2.012118 1.651744 4.553275 -0.067723 3.138237 -1.251589 0.700157 -1.435158 -0.347279 3.134053 0.735141 -2.880828 3.491315 1.220446 8.949168 0.628238 2.325529 -2.036661 0.168763 -0.996128 -3.875198 -3.235724 3.767216 4.099250 2.334340 1.116697 0.713482 -1.258245 4.900380 -PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = -1.195304 -0.113724 1.743518 -0.010097 -0.689619 -0.997551 -0.552445 -2.140581 0.956429 0.915168 2.187472 0.076023 1.332956 -0.631564 0.369869 -0.142500 1.105604 -1.001142 0.607590 -0.451443 0.394043 1.672579 0.555363 0.518763 0.093039 -1.171773 0.372834 -0.145173 0.632868 1.247862 0.345419 -0.264654 -0.759615 0.205532 0.345475 0.927324 0.735752 0.665782 -0.466006 -0.280493 -0.232041 -1.075234 0.857746 -0.295120 1.530688 -0.604719 0.317148 -0.166648 -1.140288 -1.102918 -0.225936 0.660678 -1.238978 0.401326 0.641643 -0.857170 -0.057795 0.344726 -0.323301 -1.605081 -0.064904 -1.123642 -0.242334 0.232097 -0.392741 0.614809 -0.991530 -0.108995 -0.089409 -0.884370 0.657857 0.468081 0.949168 1.277406 -1.533243 0.477284 0.345907 -0.008999 0.470635 0.454071 -0.266252 -0.402036 -0.464080 -1.121920 1.034243 0.868605 0.173452 -0.013544 -1.591830 1.144410 -0.009211 0.100326 0.094723 0.584798 -1.295641 0.129103 0.245473 -0.561030 -0.076642 -1.867387 -0.024526 -1.119510 0.148323 0.835274 -0.417628 -0.444269 -1.807993 0.444611 -1.153301 -1.236582 1.040821 -0.456481 -0.786702 0.965220 -1.491178 0.187704 -0.930980 0.240195 0.893353 0.459396 0.175793 0.947438 0.230542 0.851204 0.962718 -1.142583 -0.312397 0.930831 1.491706 0.102298 0.013326 -0.439609 -0.549751 0.657184 -1.242214 -1.753734 -1.273376 1.132578 1.297061 0.464336 -0.678037 -0.193409 -0.600762 1.278658 1.576351 0.509383 0.095656 0.590975 -1.149887 0.490478 0.858201 -0.794507 1.290294 0.431934 -0.202684 1.007567 -0.970398 0.730080 0.134942 0.538931 -0.200574 -0.976520 -0.630603 1.205483 1.044516 1.248055 -1.258687 0.494289 -0.253707 -1.662775 -2.218950 -0.541911 1.982488 0.591495 0.637955 -0.957405 -0.778451 0.504013 1.299304 0.177183 -1.677250 0.335577 -0.507644 0.637276 -2.514350 -1.604937 2.326889 2.248451 0.923990 0.322147 0.494181 1.096667 -1.868272 -0.432313 -0.798773 0.978967 -0.866831 -2.149760 -0.874451 0.431258 -1.339021 -0.624451 -0.291171 0.231388 0.192577 0.123109 1.069234 1.036959 0.027276 0.316308 1.006200 -0.434835 -1.439966 -0.561258 0.081428 1.029249 0.438941 -0.607911 0.403117 0.811389 -1.512339 -0.358822 0.437385 0.618331 0.534036 2.150421 1.618225 -0.283023 -0.122863 -0.582827 -0.990097 1.033135 -0.872546 -0.082962 -0.329551 0.199544 0.458744 0.399790 1.195198 -0.545002 -1.351633 -1.148304 -0.631288 0.215265 1.211171 -0.406752 -2.340469 -1.474540 0.749778 0.449763 1.431335 -0.079347 2.290330 -0.619944 0.476337 -2.065285 0.052890 0.609596 -0.204140 1.018646 0.129937 -0.474405 -1.011852 -0.524449 -1.281691 -0.424813 0.007798 -0.508589 -0.205933 -1.315454 1.655215 -0.780265 -0.125191 -0.412811 0.196224 1.979748 1.475817 -0.407570 -1.332583 0.972725 0.614901 0.222635 -0.694586 1.718406 0.479357 2.676369 -0.638589 0.012311 -0.380826 0.795856 -0.501864 -0.760681 -0.174685 1.457244 2.216941 0.662172 -0.663984 -0.092571 -0.413435 0.647947 -PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/topological-sorting.cpp__std::deque >::back() = -0.304501 0.201149 1.808481 0.317777 -0.422138 -1.496654 -0.468478 -2.594108 1.245386 0.872811 1.920153 -0.036766 1.394864 -0.612382 0.101166 0.242691 0.967656 -0.363272 0.213179 -0.578833 -0.069385 2.005223 -0.039663 0.113690 0.254379 -1.523215 0.690471 0.545397 0.862649 1.129409 0.363937 0.045271 -0.273914 0.451179 -0.419441 0.574663 0.295025 0.652303 -0.729960 -0.339309 0.043802 -0.353678 1.083243 0.058978 1.348236 -0.088086 0.548629 -0.091981 -0.536425 -0.799161 -0.350808 0.923574 -0.651548 0.563395 -0.260084 -0.548600 0.202589 -0.094066 0.039964 -0.865367 0.187712 -0.239522 -0.779078 0.000524 -0.686494 0.312454 -0.439734 -0.568379 -0.108943 -0.807955 0.651213 0.084227 0.007232 0.003658 -2.063931 0.229423 0.481355 -0.120710 0.725355 0.380137 -0.202736 -0.529983 -0.883141 -1.165661 1.581280 1.249768 0.317343 0.613665 -1.445576 -0.039957 -0.215146 0.087400 0.539653 0.880621 -1.038365 0.114588 0.202989 -0.593910 -0.437104 -1.426650 0.375623 -0.945085 0.309598 0.309413 -0.002507 0.117088 -0.518483 0.405501 -0.726341 -1.027452 0.523936 -0.723735 -0.203335 1.432542 -0.725901 -0.502651 -0.945277 -0.087293 0.296097 0.766323 0.250468 0.373678 1.148964 0.701321 0.829524 -1.273673 -0.455263 0.979893 0.897285 0.455210 0.045995 -0.945100 -0.556201 0.464536 -1.160829 -2.115225 -1.009634 0.671402 1.168567 -0.503003 -0.642508 0.676436 -0.522993 0.923374 1.456031 0.160549 0.270232 0.506057 -1.094410 0.449997 1.495094 -0.633173 0.929315 -0.492936 -0.625317 0.910808 -0.530525 0.570364 0.117896 -0.095155 -0.276031 -0.667882 0.279623 1.376833 0.282068 0.819680 -0.662668 0.530864 -0.632755 -1.330420 -2.372005 -0.488649 1.516476 0.697495 1.745623 -1.057638 -0.774414 0.119761 1.245736 -0.154815 -0.964104 0.643703 -0.944539 0.767365 -2.291204 -1.706279 2.251502 1.911888 1.232214 -0.043449 0.872886 0.655339 -1.094041 -0.581853 -0.563506 0.816866 0.230629 -1.919852 -0.456755 0.198936 -1.465998 -0.531268 -0.352089 0.235227 -0.037948 0.090196 1.222139 -0.374162 -0.466714 -0.428765 0.934976 -0.605142 -0.526042 -0.482801 0.058424 0.122199 0.645915 -0.703949 0.073969 0.547176 -1.014477 0.006047 0.319877 0.474217 0.341374 1.857322 1.842224 -0.563809 0.771388 -0.428921 -0.720344 1.467979 -0.732662 0.029386 -0.040362 0.534344 0.324625 0.606848 1.045760 -0.570723 -0.755874 -1.408115 -0.370823 0.581275 0.786980 -0.241457 -1.269633 -1.768233 0.065940 -0.132420 1.968272 -0.040502 2.339816 -0.723351 0.687176 -2.216974 0.207076 0.423932 -0.272900 0.866271 0.307668 -0.899251 -1.011114 -0.294417 -1.280481 -1.185673 -0.039343 -0.835770 -0.783008 -1.189904 1.044682 -1.118763 0.090565 0.479412 0.060414 1.270168 -0.034610 -0.082759 -1.048585 0.639850 0.911342 0.053368 -0.831376 0.818906 0.236837 2.821184 -0.444622 0.946211 -0.582060 0.957306 -0.604987 -1.301394 -0.555143 1.513019 1.693533 0.441642 -0.221049 0.001469 -0.103965 1.031861 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = -1.439196 -0.267954 2.840469 1.333314 -0.919547 -2.643314 -0.807117 -3.259095 1.926173 1.128784 3.416440 0.134819 2.075514 -1.331258 0.665260 0.222764 1.829858 -0.882108 -0.143142 -1.000721 0.373474 3.131279 1.065219 -1.058298 0.488816 -1.863329 0.302651 1.216629 0.707529 1.692573 0.474065 0.074892 -0.282468 0.723635 -1.160087 1.171152 0.474973 0.806955 -1.156935 -1.059617 0.320953 -0.184605 1.903726 -0.319285 2.483884 -0.346001 1.840394 -0.283196 -1.925777 -1.566990 -0.870495 2.355600 -1.308713 1.076084 -0.102821 -0.225166 0.737757 -0.739256 -0.445620 -3.083167 0.338731 0.141145 -1.385289 -0.309659 -0.813242 0.597225 0.199672 -0.821147 0.328381 -1.369550 1.213631 0.080843 0.006992 -0.079622 -2.323150 0.439641 0.713987 0.151715 0.933904 0.775603 -0.488488 -0.982662 -0.893203 -1.437950 2.294927 0.734941 0.738771 1.197477 -2.209248 0.499376 -0.165224 -0.016083 0.245834 0.932180 -1.921987 0.140808 1.776374 -1.152519 -0.991120 -0.974095 0.457901 -1.471270 0.220571 1.401618 0.075670 0.326142 -1.988458 0.754327 -1.918476 -1.783165 0.968976 -1.028994 -0.999394 1.629830 -2.066068 -0.331199 -0.992693 0.368212 0.538975 1.538913 0.060181 1.083465 1.535017 1.322301 1.153136 -1.999089 -0.199205 0.916191 2.587790 0.873393 0.285833 -1.107527 -1.030998 0.745876 -2.026648 -3.297535 -1.811399 1.900131 2.485871 0.692230 -2.465233 1.292934 -0.594877 2.415750 2.104700 0.560492 0.300102 0.791403 -2.089902 0.728884 2.453336 -1.332554 2.057789 -0.075304 -1.099380 1.725184 -1.072076 0.997051 0.721422 -0.317538 -0.089770 -1.260739 0.005305 2.174778 1.497292 1.322677 -1.353970 0.927653 -0.518092 -2.819518 -4.336083 -0.990968 1.819682 1.180192 3.325481 -1.681588 -1.794010 -0.343649 1.816071 -1.294575 -2.029847 0.446731 -1.611469 1.163606 -4.284825 -2.845433 4.595172 3.514096 2.039110 0.697697 2.276361 0.944093 -1.501729 -0.401748 -0.736986 1.438647 0.763151 -2.244387 -0.130276 0.251977 -2.634277 -1.367859 -0.733414 0.355347 -0.957497 -0.139245 1.589368 -0.173885 -1.134329 0.299027 0.496374 -1.344872 -1.098337 -0.717274 0.032703 0.735531 0.906890 -1.172328 -0.075642 0.540796 -2.446141 -0.619002 0.175851 1.643106 1.554913 3.080625 3.557589 -0.706518 2.209711 -0.684088 -1.724383 2.570280 -1.430803 -0.157917 -0.505789 1.316891 1.192287 0.614175 1.709791 -0.834958 -0.823569 -2.195003 0.007611 1.257853 1.556171 -1.649195 -2.377168 -2.907538 0.046400 0.333914 2.903715 -0.710806 3.948801 -1.405082 0.706232 -4.835402 0.249933 0.935655 -0.154688 0.746935 0.625015 -1.478288 -3.274802 -0.401007 -1.975288 -1.087152 -0.031426 -1.328925 -1.029898 -2.269792 2.437366 -2.408456 0.344676 1.216758 0.039193 2.369423 0.975535 -0.295305 -1.186842 0.620777 0.919770 0.641289 -1.343035 1.893106 0.374980 5.120822 -0.739360 1.582014 -1.362753 1.938315 -0.971300 -1.794385 -0.815469 2.367556 3.447253 0.281610 0.140256 0.197466 -0.723866 1.891528 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = -3.850301 -0.385756 6.266454 0.282411 -2.807210 -3.483113 -1.903627 -7.653256 3.821218 3.130656 7.232773 0.332231 4.176518 -2.541444 1.130730 0.199421 4.097483 -3.169547 1.088132 -1.996264 1.522719 5.176759 1.651056 0.902157 0.957878 -4.288414 0.860538 -0.281375 1.878334 3.409573 1.664412 -0.810469 -2.559114 1.035964 1.422459 3.850202 3.053190 1.719413 -2.087489 -1.165273 -0.559506 -2.835006 2.928737 -0.780869 5.888655 -2.199982 1.533406 -0.558310 -4.428069 -3.463931 -0.633125 3.401963 -3.835260 1.668086 2.694334 -1.750831 -0.444755 -0.299806 -0.915815 -5.073886 -0.307133 -3.136626 -1.209707 0.603600 -1.082588 1.730406 -2.165573 -0.075119 -0.299558 -3.330191 1.979245 0.852610 2.244612 3.903886 -4.577735 1.175877 1.335324 0.047359 1.976415 1.583969 -0.704426 -2.066045 -1.431044 -3.670837 3.727763 2.797184 0.572803 0.422626 -5.264485 3.577952 -0.254373 -0.132375 0.406162 2.146867 -5.545483 -0.507448 1.544833 -2.482989 -0.915777 -5.322897 0.326849 -3.528988 0.516431 2.463003 -1.698512 -0.905715 -5.724756 1.597040 -3.738905 -3.073428 3.209696 -1.433810 -2.121396 3.484237 -4.732718 -0.112796 -3.383954 0.595910 2.548591 1.747091 0.360712 2.826074 1.813952 2.895632 3.766592 -3.848529 -1.070858 2.917508 5.076499 0.604561 0.250578 -1.891720 -1.680869 2.324010 -4.089271 -6.013373 -4.389935 3.147719 4.787989 2.249517 -2.681295 -1.368917 -1.622597 4.619586 4.414646 1.526025 0.055967 1.939790 -4.038879 1.154587 3.178186 -2.619751 4.159185 1.129197 -0.118401 2.370776 -3.050480 2.215548 0.573760 1.182467 -0.730098 -3.130126 -2.057540 4.076173 3.206191 3.401900 -4.766144 1.963398 -1.128622 -5.595799 -8.211501 -2.027091 5.676925 1.826268 2.599817 -3.441670 -3.127069 0.401826 4.562626 -0.065506 -5.368210 1.368980 -2.548535 2.301576 -6.867164 -5.246535 8.475554 8.207122 3.445094 0.958557 2.515607 2.778111 -7.068441 -1.298767 -2.401622 3.009546 -1.834138 -6.823092 -2.290569 1.474791 -4.828597 -2.454012 -1.206234 0.911216 0.102927 0.774134 4.254336 3.760800 0.105905 1.076259 2.939605 -1.019050 -4.491952 -1.855192 0.474669 3.402965 2.103965 -2.473806 0.553389 2.437022 -5.185993 -1.379866 1.576533 2.724023 2.159020 7.029771 5.690262 -0.691666 1.380190 -2.108781 -3.564134 2.983665 -2.582308 -0.065059 -1.130837 0.122423 1.709030 1.158279 3.963937 -1.964770 -3.952392 -3.698535 -2.124799 0.312915 4.267516 -1.532910 -7.657085 -4.908321 2.026784 1.274289 4.296150 -0.418464 7.609639 -2.041829 1.574566 -7.862224 0.148271 2.769454 -0.614906 2.658921 0.577097 -2.145235 -4.496352 -1.302168 -4.526765 -2.242813 0.274210 -0.991373 -1.179467 -4.802448 6.919400 -2.923571 -0.329522 -0.393758 1.058714 6.620398 4.544175 -0.937968 -3.797830 2.694110 2.072522 0.787728 -2.414241 5.263098 1.857571 9.575691 -1.961802 0.422410 -1.334034 2.538420 -1.583816 -2.975006 -1.117920 4.551538 7.684712 2.219910 -2.158034 -0.523748 -2.055624 2.924682 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = -4.654241 -0.809216 6.247191 -0.243091 -2.460936 -3.851444 -1.968079 -8.093742 3.960750 3.591053 8.240573 0.653444 5.009121 -2.792199 1.638667 0.120618 4.436174 -4.009483 1.863218 -1.850036 1.956214 6.410200 2.057260 2.100133 0.521114 -4.380080 0.634007 -0.354404 2.282768 4.144376 1.664393 -0.920778 -2.732493 0.688464 1.471799 4.194630 2.816531 2.089692 -1.904532 -1.347104 -0.881343 -3.810203 3.363646 -0.938694 6.257680 -2.968262 1.823034 -0.704066 -4.275722 -4.230932 -1.115148 3.365917 -4.392513 1.455510 2.641871 -2.860481 -0.182536 0.885460 -1.165053 -5.689510 -0.487150 -3.827659 -1.225506 0.696379 -0.964146 2.168565 -3.252239 0.194993 -0.522247 -3.578765 2.380795 1.314646 3.022366 4.670085 -5.709066 1.466174 1.166299 -0.242266 1.874009 2.014589 -1.264085 -1.879306 -1.512006 -4.074624 4.268511 3.240835 0.410949 0.251181 -6.551807 4.416265 -0.627383 0.151304 0.353778 1.956340 -5.732890 -0.046580 2.135864 -2.524729 -0.540819 -6.019531 0.223083 -3.939785 0.246250 2.751588 -1.028391 -1.754303 -7.364596 1.242086 -4.755015 -3.965846 3.925091 -1.637715 -3.119064 3.422993 -5.801612 0.791083 -3.754735 1.058849 3.199459 1.745702 0.713598 3.399602 1.116410 3.054222 3.820783 -4.100325 -1.026472 3.464801 5.991325 0.286898 -0.289264 -1.400083 -1.878302 2.692914 -4.611105 -6.360281 -5.081701 4.586789 5.018642 2.501756 -2.436499 -1.198568 -1.723841 5.014525 5.690892 1.456794 0.210642 2.399144 -4.383083 1.615424 3.268413 -2.893086 4.837367 1.627614 -0.283603 3.563850 -4.077368 2.625044 0.851768 1.786048 -1.082150 -3.312216 -2.387826 4.312098 3.904818 4.363750 -5.354326 2.093423 -0.677993 -5.916372 -8.979456 -2.288394 6.796608 2.434970 2.381945 -3.419699 -3.018017 1.415274 4.541060 0.332015 -6.504759 1.502141 -2.352803 2.348965 -8.879112 -5.563364 9.285220 8.804606 3.775067 1.323830 2.322792 4.016972 -7.368304 -1.319520 -2.693931 3.681874 -2.735162 -8.122385 -2.540562 1.606210 -5.135360 -2.726052 -1.627726 0.715155 -0.054461 0.796547 4.883521 3.861421 0.289073 1.756382 3.401117 -1.225332 -5.499185 -2.381268 0.312219 3.794428 1.859065 -2.342117 1.538713 2.965575 -5.951333 -1.576421 1.562157 2.488925 2.476034 7.752013 6.345672 -0.952148 0.645483 -2.561923 -3.720260 2.893346 -3.078222 -0.376292 -1.406411 0.329863 2.179244 1.384432 4.187777 -1.991408 -4.699829 -3.948213 -2.049211 0.863291 4.729811 -1.260123 -8.796266 -5.584491 2.635764 1.701398 5.150023 -0.599886 8.348073 -2.597750 1.748241 -8.238322 0.296137 2.290676 -0.562851 3.172804 0.289380 -1.881139 -3.636504 -1.758879 -4.837906 -1.995840 0.513237 -1.508814 -0.869615 -5.642490 7.171057 -3.671266 -0.500834 -1.512206 0.767687 7.568528 5.607698 -1.348181 -4.864158 3.766854 2.223961 0.948719 -2.408219 6.112458 1.711890 9.922483 -2.584293 0.240633 -1.312515 3.437368 -2.066370 -3.166933 -0.698720 5.112877 8.655721 2.116430 -2.490785 -0.441009 -1.647562 2.669450 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/topological-sorting.cpp___GLOBAL__sub_I_topological_sorting.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -2.042382 2.658888 12.229683 8.611698 -5.890374 -7.146107 -3.165171 -5.823383 3.442418 1.399596 6.494446 -1.210077 1.686514 2.693818 -0.308249 -3.731468 2.582696 0.102163 -1.710896 -2.813479 -4.215876 5.838950 5.444587 -9.861560 1.182253 -8.065834 5.963005 4.042418 1.809898 6.074949 -0.031665 0.452556 -0.635165 4.545452 -6.434393 -2.490202 -0.788361 1.699572 -2.700105 -1.280603 4.620969 3.129376 5.502244 0.140731 3.540249 4.425247 3.804347 -0.818705 -7.186799 -1.616172 -2.988589 6.120491 -3.148342 4.075936 0.420650 5.098454 1.518288 -7.062910 -1.197751 -9.855350 2.468329 3.047837 -3.933021 -0.609963 -6.270153 0.474136 -1.177415 -4.881277 3.961121 -2.793369 3.421377 -0.759252 0.068425 -5.586813 -4.366675 3.120101 0.692491 2.815576 2.591029 0.562310 -2.202011 1.260236 -3.573362 -3.758676 0.290924 -0.691170 1.211659 0.768075 0.851273 -3.689488 2.064329 -0.276595 -2.526808 5.750496 -3.870868 4.792555 -1.814893 -2.107047 -5.082081 -3.256092 -0.659135 -5.235577 2.808233 6.271157 -4.717412 1.957697 0.047248 2.417537 0.493000 -7.133958 0.021655 -2.614214 0.526488 5.103411 -4.065931 -3.117914 0.831201 -0.547888 0.143231 6.240089 -1.758938 1.707581 5.758818 4.026290 2.091112 -5.048830 1.649772 0.438636 2.740832 3.807212 4.896712 -5.231833 -2.997565 -0.799080 -1.136327 -10.243715 1.133066 2.549579 5.323208 1.828089 -9.385947 3.360487 -3.589316 6.495910 3.436690 6.249101 2.301586 -0.863477 -3.837660 1.642908 10.960170 -3.856006 4.860833 -2.943778 -8.331335 7.966987 -1.267686 5.659327 0.267403 0.518493 3.162484 -6.056264 0.222105 8.188545 1.976937 1.282396 5.702247 -0.582358 -0.134247 -10.047967 -8.973414 -0.144328 3.087255 1.762000 12.946503 -6.378736 -3.404880 -2.441713 7.077460 -2.877929 -2.155297 -0.249374 -1.167816 2.340414 -14.115681 -10.189418 8.674129 8.454041 0.059668 -0.243269 7.474339 -0.022165 0.243579 -4.094590 -5.176260 3.690677 2.146659 3.960556 1.112795 -0.433476 -6.910321 0.013298 1.228043 1.565926 4.900254 -6.870406 -4.436553 -1.558487 -8.518962 -5.510892 1.806718 -7.930395 -2.042768 0.634654 0.619637 -0.529879 1.770592 -0.983916 -5.169350 0.454764 -4.024566 -1.630617 1.293242 5.027001 1.418463 9.221561 7.596102 -0.414268 4.290098 2.648304 -3.450639 18.750715 -5.760081 -1.082518 -0.038221 6.551094 -0.818234 2.559053 3.651867 -2.026899 -3.083807 -6.199665 3.957383 -1.031804 2.083411 -12.118887 -4.473324 -7.833282 -2.249124 1.361114 7.093761 -0.129370 13.128690 -0.379109 0.995481 -13.948696 -0.138008 6.096342 -0.338998 4.380524 4.591550 -6.358861 -11.410031 -0.826061 -2.767763 5.951521 -1.087968 -6.664767 -4.283228 -1.338183 1.146002 -2.489361 3.861439 8.968290 -2.281514 3.141993 1.328341 -1.721772 -0.218383 -3.970761 3.408970 2.562025 -4.570828 8.526061 -1.020635 14.516496 -1.232198 5.865239 -4.736784 1.301661 -0.444867 -2.587075 -3.199362 7.316821 4.722566 2.984371 0.959103 0.757435 -4.031031 3.915779 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.267341 0.996617 3.993842 2.083551 -1.866294 -2.867300 -1.157787 -3.548729 1.650012 0.770896 2.652892 -0.403178 1.234498 0.427303 -0.083990 -0.289756 1.301534 -0.268730 0.039476 -1.139470 -1.422754 3.158397 1.157368 -1.752136 0.470904 -3.145991 1.872987 1.124714 1.440731 2.174175 0.302375 -0.018596 -0.361174 1.333269 -1.557702 -0.194166 -0.137355 0.842014 -1.549500 -0.024873 0.840975 0.180933 2.140417 0.043578 1.556945 1.022366 1.418811 0.028255 -1.863913 -0.799228 -1.247638 2.253298 -1.167875 1.342972 -0.132152 0.499814 0.383876 -1.525829 -0.429389 -1.997620 0.180388 0.208854 -1.485535 0.053914 -2.189732 0.442454 -1.162648 -1.560004 0.762154 -0.721455 1.441848 0.166141 0.133355 -1.096782 -2.919403 0.946712 0.396460 0.884268 1.033799 0.292955 -0.374193 0.247527 -1.734517 -1.838468 1.209638 0.964967 0.511813 0.135552 -0.823542 -0.993398 0.124940 -0.027328 -0.077202 1.899660 -1.686163 1.363571 -0.939898 -0.868099 -1.692465 -2.452317 -0.038961 -1.825224 1.032148 1.163736 -0.928147 0.391668 -0.072895 0.767711 -0.153329 -2.615874 0.283479 -0.863098 -0.090860 2.689512 -1.239465 -1.004631 -0.548841 -0.252177 -0.182071 1.910771 0.073603 0.703428 2.225906 1.623591 1.056528 -1.861305 -0.165278 0.670609 1.091195 1.159180 1.489058 -1.791147 -1.311345 0.132614 -0.744418 -3.901330 -0.451907 1.251497 1.995865 -0.176778 -1.984554 0.884668 -1.270761 2.135100 1.749796 1.318123 0.886697 -0.100740 -1.519226 1.036935 3.879812 -1.284307 1.768574 -1.423528 -2.218491 2.778893 -0.773657 1.718036 0.050839 0.209480 0.215672 -1.864768 0.203479 2.740633 0.533937 0.606664 1.209691 0.213577 -0.604076 -3.194314 -3.542113 -0.111190 1.890806 0.637855 3.962770 -2.185968 -1.199201 -0.330317 2.333501 -0.353788 -1.123484 0.543530 -1.082695 1.013304 -4.766412 -3.513370 3.589029 3.340784 0.697174 -0.157446 2.138429 0.847800 -1.219138 -1.793625 -1.779661 1.564591 0.436718 -1.037106 -0.525229 0.150224 -2.594463 -0.207282 0.071714 0.705110 1.582873 -1.235405 -0.082743 -0.758997 -2.540920 -1.767344 1.485840 -2.239885 -0.874273 0.112457 0.093313 -0.166574 0.970051 -0.583570 -0.916269 0.508163 -1.595273 -0.221339 0.605125 1.440957 0.187757 3.442552 3.132643 -0.297991 1.619582 0.401668 -1.414096 5.271633 -1.792270 -0.080847 -0.143578 1.675635 -0.384803 1.026190 1.603076 -0.815592 -1.776924 -2.329775 0.756415 0.017532 0.940843 -2.566817 -2.080727 -3.104778 -0.514261 0.356911 3.090393 0.191714 4.518941 -0.761818 0.785903 -4.753414 0.238284 1.526460 -0.108376 1.934739 1.194485 -2.007826 -2.617106 -0.471403 -1.684839 0.414106 -0.419980 -2.397268 -1.632261 -1.051489 0.895006 -1.228503 0.798802 2.418143 -0.604715 1.750845 0.184498 -0.598093 -1.060964 -0.383837 1.932140 0.486527 -1.617297 2.563222 -0.128587 5.506213 -0.415481 1.815240 -1.369269 0.478372 -0.287681 -1.664562 -1.027124 2.833780 2.101179 0.899604 0.016183 -0.020367 -0.714591 1.391463 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp___GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/largest-independent-set-problem.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -10.185115 -1.115520 29.302047 15.783989 -7.708582 -18.585232 -9.371492 -26.011537 17.357083 7.858667 28.106272 -0.867262 13.715571 -6.837292 2.061254 -4.016979 12.777213 -9.228033 -2.463463 -8.942485 1.257701 28.904237 12.108273 -15.096889 3.432567 -25.817273 7.356487 8.859701 8.325920 18.188934 1.996365 0.813136 0.288916 8.753030 -12.591570 5.255567 2.279936 5.067932 -9.315190 -8.058874 8.914026 5.218650 17.343772 -1.823233 17.927357 0.436508 13.505218 -4.317952 -16.112502 -11.258053 -8.823364 19.812026 -12.025675 8.363630 -0.396986 4.566483 5.946472 -13.184838 -5.712069 -25.109952 2.963253 6.483574 -11.062264 -1.917053 -10.524671 6.074131 -0.653611 -6.285840 7.006278 -12.805441 11.534201 2.467322 1.427035 -6.311371 -17.303065 8.503949 4.126591 3.462399 7.064470 4.052236 -5.046281 -2.974734 -8.085568 -11.689118 15.091756 5.373279 4.418944 6.689824 -8.921260 -1.352502 -0.177830 0.308588 -1.870853 11.043373 -15.606620 4.296246 7.513556 -9.862785 -8.234715 -6.045765 0.559722 -15.697927 3.545123 17.164259 -6.548149 5.304120 -8.721951 5.660246 -10.528415 -17.563073 4.862556 -5.958891 -4.750309 17.684761 -17.711354 -5.833589 -7.559349 3.026873 2.232448 15.827095 -2.763423 10.317345 16.769750 12.616096 8.596520 -17.559977 1.120378 7.283394 19.069436 7.696838 7.690826 -12.175326 -9.972985 1.611472 -9.943549 -30.592667 -10.805563 11.588535 21.079829 6.253852 -24.976669 12.920374 -5.986738 22.896384 17.781397 5.334417 4.669404 3.700111 -17.955105 9.489029 27.271330 -11.705742 16.875107 -8.924899 -16.107579 19.984665 -9.650006 11.354252 2.794048 1.009492 3.063797 -15.830522 2.871544 21.342372 7.462101 10.848803 -3.376943 4.887028 2.397785 -27.426133 -35.442963 -6.994969 10.890677 8.413857 32.443964 -15.295609 -13.103473 -4.667607 17.881568 -8.628512 -13.574554 3.012642 -12.604847 8.574037 -40.023695 -28.280549 37.656434 32.370408 11.373279 6.422774 20.698802 8.145698 -7.327888 -3.380116 -9.283423 14.980455 9.860170 -10.819143 1.445878 0.459558 -19.289404 -11.909224 -3.187899 3.488664 -1.002192 -10.164128 4.006176 -2.181972 -16.583710 -4.671780 8.924003 -17.973870 -9.210735 -4.254608 -0.073848 2.594094 8.946462 -7.665672 -3.958052 4.282067 -16.682333 -5.560182 3.179593 15.597643 9.964308 20.873493 29.781830 -5.010721 17.518651 -0.359427 -12.579599 31.559971 -15.100985 -3.682698 -3.214934 12.244826 6.225565 8.148894 10.702543 -6.614984 -7.438644 -19.134021 7.978814 4.815547 10.903009 -21.131650 -19.111180 -23.187261 -3.718401 4.596896 23.488948 -1.635796 38.742899 -10.209973 3.175717 -43.071385 0.137530 13.748643 1.532004 10.660920 8.603125 -13.918423 -30.874874 -3.817732 -14.000197 1.361553 -2.899244 -17.808146 -12.520213 -17.939248 22.112124 -17.945830 7.729274 16.396129 0.709102 17.535622 7.813772 -4.707977 -10.543956 -0.387667 4.387838 8.417385 -11.147200 18.917713 -0.821635 40.091294 -8.821989 15.388788 -15.264155 14.898951 -7.853004 -15.210034 -6.978430 22.277003 25.182768 2.745419 1.075026 -1.636692 -8.581490 15.744737 -PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = -0.157032 0.520806 1.293112 1.142026 -1.509629 -1.848514 -0.329929 -1.887996 0.774679 0.265200 1.207009 0.243088 0.987376 -0.440317 -0.023668 -0.082854 1.139941 0.313313 0.154526 -0.688388 -1.066515 1.691888 0.213915 -0.415768 0.385881 -0.396372 1.311792 0.530849 0.850714 1.218916 0.417836 -0.117734 -0.703267 0.435238 -0.053210 -0.036681 -0.581991 0.633474 -1.065259 0.051688 0.284920 -1.331331 1.531112 0.145609 0.513938 0.058680 0.792665 0.260859 -1.058014 -0.523299 -0.816451 0.434942 -0.718003 0.870781 -0.313163 -0.685371 0.627031 0.427696 0.137124 -0.519488 -0.142321 -1.129413 -0.749689 -0.021562 -1.227266 0.061390 -1.359269 -1.071737 -0.084937 -0.388201 0.555046 0.172144 0.004571 -0.238526 -2.081653 0.000000 0.401895 0.495578 0.794588 0.964962 0.095584 -0.417967 -1.303892 -0.997119 0.818142 0.087635 0.404028 0.239024 -1.314483 -0.470329 0.232508 0.350579 0.573399 0.425843 -0.823204 0.644506 -0.797108 -0.391914 -0.537102 -2.270638 0.222246 -0.555096 0.442488 -0.067284 -0.577432 -0.119248 -0.408150 0.191124 -0.202772 -1.352040 0.313045 -0.675804 -0.491494 1.477938 -0.288865 -0.687614 -0.629930 -0.078124 0.184188 0.577842 0.534457 0.226255 0.702169 0.727540 0.804664 -0.962986 -0.302459 0.359493 0.313160 0.416245 0.455879 0.016448 -0.772514 0.490174 -0.771401 -1.881032 -0.548318 1.052497 1.109973 -0.074786 -0.180133 0.097875 -0.953899 0.496379 0.958722 0.637458 0.634500 0.151856 -0.750010 0.502437 1.195389 -0.482535 0.699670 -0.245300 -0.807389 1.574650 -0.089816 0.366345 -0.306644 -0.189133 -0.257865 -0.434194 0.019816 1.167163 0.079126 -0.033205 0.325862 0.297435 -0.894925 -1.373138 -1.680500 0.289277 1.955623 1.121092 1.281296 -1.164167 0.013068 0.390978 0.502263 0.139326 -0.903756 0.478056 -0.503284 0.688504 -2.788612 -1.513765 1.908789 0.975698 0.338769 -0.119868 0.111481 0.599527 -0.953801 -1.240693 -1.245814 0.604325 -0.122614 -1.328244 -0.672027 0.389175 -1.438050 0.117071 0.433029 0.368282 1.070547 -0.775912 0.596092 -0.874081 -0.535122 -0.940064 1.100115 -0.690169 -0.358260 0.187809 -0.294621 0.313495 0.530629 0.274868 -0.145027 -0.255823 -0.712348 -0.233006 -0.234569 0.690046 -0.142900 1.982825 1.728537 -0.479421 0.000266 0.030019 -1.134953 2.428936 -1.066389 0.334140 -0.107887 1.019678 0.236304 0.514149 1.484099 -0.517975 -0.918980 -1.222123 -0.534965 0.549303 0.668407 -1.369082 -0.885831 -2.079378 0.301823 -0.190567 1.691771 -0.169357 1.908353 -0.865181 0.384089 -1.692316 0.190668 0.540148 -0.079461 1.379823 0.241947 -0.887927 0.066670 -0.490604 -1.299184 0.483498 -0.072803 -0.336306 -0.654957 0.056984 -0.107458 -0.589579 0.105359 0.486557 -0.976561 1.226783 -0.096825 -0.152509 -0.649359 0.159578 1.204727 0.174244 -0.746744 1.446024 0.308581 2.456906 0.457680 0.423534 -0.367441 0.160411 -0.258897 -1.306228 -0.712527 1.331950 1.268570 0.503396 0.161850 0.382280 0.230741 0.687574 -PE-benchmarks/largest-independent-set-problem.cpp__main = -1.138941 1.569256 10.089758 6.373952 -5.545653 -9.531769 -2.900825 -13.175652 6.696033 2.724584 9.856252 0.174723 6.063692 -2.840858 0.356817 0.606421 6.267018 -0.508917 0.016947 -3.903719 -2.922095 12.441762 1.833278 -3.164463 1.747187 -7.057999 4.398062 3.906912 5.651724 6.258108 1.882106 -0.263373 -1.282794 2.817337 -3.254855 1.138631 -1.524853 2.799233 -6.405289 -1.891172 1.855281 -3.306958 8.219606 -0.340428 5.498609 -1.327357 6.621919 -0.391518 -5.536410 -3.333380 -5.219072 7.526550 -3.846769 4.163317 -1.176864 -2.183093 2.561807 -1.178432 -0.756000 -4.455689 -0.275341 -1.540791 -5.123563 -0.679944 -5.572527 1.693048 -4.153290 -4.251474 1.290255 -2.951108 4.219793 0.909545 -0.078897 -2.409003 -11.592729 1.844683 2.259389 1.795351 3.663705 3.921207 0.713585 -2.003745 -5.703441 -5.537912 7.399731 3.020852 1.905612 1.927495 -6.954480 -1.773495 -0.141778 0.929849 1.720002 3.618598 -6.790201 3.006942 -1.365332 -3.501938 -3.860223 -8.639850 0.814404 -5.289374 2.133262 2.048903 -1.824955 1.711454 -1.792408 1.657597 -2.634619 -8.159291 1.162934 -2.797235 -2.363646 9.267107 -4.291635 -3.636624 -3.629366 0.739091 -0.608526 4.375715 1.541085 3.212661 6.624605 4.786106 4.498212 -6.697847 -1.086471 3.301621 4.674002 3.333332 2.595124 -2.834310 -4.440292 1.741075 -4.020264 -12.849348 -4.332843 6.064863 7.843769 0.147249 -4.484956 2.276500 -3.259448 6.831788 6.742490 1.755113 2.739933 1.570476 -5.804911 3.724165 9.764569 -3.936925 5.620448 -3.704880 -5.000069 8.233360 -2.518925 3.305600 -0.290245 -0.073891 -0.443160 -4.727665 0.745286 8.116490 1.244049 1.703582 -0.381476 2.155345 -2.928199 -9.856030 -13.092564 -0.804125 7.543794 4.586780 10.696642 -6.297574 -3.927284 0.616340 4.902076 -1.523954 -5.486185 3.260326 -5.723888 4.188373 -15.724912 -10.816219 13.689897 9.994984 3.796795 0.543938 5.469227 3.943342 -6.023316 -4.838095 -5.384528 5.400413 2.749729 -8.638206 -2.171499 1.176491 -8.658524 -2.033949 0.094129 1.687707 2.027098 -2.774974 4.609399 -3.730975 -5.559607 -3.515297 6.479771 -5.620769 -2.533892 -1.007368 -0.758289 0.956976 4.312172 -1.789257 -0.947697 0.495121 -5.770777 -1.347955 -0.082535 4.833641 1.385496 10.562466 12.382491 -2.132340 6.067201 -0.386978 -6.116086 12.680421 -5.998022 0.035518 -1.170188 4.329098 0.734054 3.731496 6.535663 -2.957568 -5.194791 -7.849111 -0.245010 2.261871 4.372681 -6.253071 -6.361019 -10.933422 -0.635921 0.421621 10.212249 -0.448986 13.722715 -5.747321 2.319769 -14.887404 0.790750 3.710420 0.045161 6.990808 2.250837 -5.800263 -5.353805 -1.937046 -6.663658 -0.719480 -0.659515 -5.844494 -5.343434 -5.318266 5.209378 -6.432480 1.614275 4.745866 -2.238638 7.774886 0.139574 -1.494878 -4.412652 1.495623 5.586852 2.086965 -4.811816 7.384548 0.459660 17.445285 -0.809591 4.789492 -4.725813 3.276860 -2.516356 -7.723689 -3.489350 8.791429 9.619466 2.030518 -0.189532 0.431568 -1.222821 5.567587 -PE-benchmarks/largest-independent-set-problem.cpp___GLOBAL__sub_I_largest_independent_set_problem.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/reservoir-sampling.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -0.188250 0.700739 2.678107 2.012465 -1.569275 -1.976499 -0.684922 -2.320511 1.271242 0.358131 1.526002 -0.152019 0.758092 -0.074738 -0.169579 -0.375987 0.819573 0.252802 -0.350457 -0.750484 -0.859693 1.980696 0.694398 -1.900984 0.379499 -1.784806 1.279942 1.050447 0.947276 1.290629 0.209849 -0.036140 -0.405690 0.999194 -1.317573 -0.306644 -0.152219 0.495030 -1.284148 -0.448159 0.684567 0.216223 1.455562 -0.110142 1.091172 0.531861 1.106657 0.050874 -1.446387 -0.432503 -0.830934 1.747646 -0.604043 1.190382 0.118456 0.413526 0.387870 -1.214614 -0.124817 -1.517251 0.325633 0.252691 -0.906577 -0.167040 -1.449271 0.062640 -0.231321 -1.320541 0.710633 -0.696331 0.884558 -0.115612 0.008254 -1.174178 -1.754922 0.498038 0.363632 0.700000 0.864396 0.677933 0.096577 -0.141232 -1.011067 -1.075667 0.632966 0.343045 0.364859 0.431751 -0.521098 -0.896526 0.416601 -0.205977 0.022039 1.157890 -1.239151 0.861118 -0.673223 -0.483689 -1.104509 -1.390378 0.114206 -1.057124 0.732237 0.715721 -0.717002 0.491735 0.423046 0.539971 0.051326 -1.601781 0.156265 -0.661219 0.165113 1.853169 -0.705458 -0.915177 -0.129612 -0.204737 -0.406658 1.327677 0.028042 0.380227 1.467694 1.060476 0.909755 -1.348350 -0.143687 0.539557 0.715785 0.996758 0.929257 -1.295859 -0.675867 0.174770 -0.490653 -2.671536 -0.218208 0.765107 1.510650 0.216040 -1.532686 0.539753 -0.804621 1.370835 0.712482 0.946148 0.604792 0.007255 -1.003245 0.506272 2.599897 -0.735774 1.026128 -0.770475 -1.575316 1.562064 -0.211805 1.071032 -0.016243 -0.092619 0.430537 -1.209831 0.231646 1.855032 0.226870 0.134741 0.785305 0.220592 -0.947245 -2.530026 -2.482145 -0.005062 1.136514 0.490452 2.941364 -1.518217 -1.029362 -0.427978 1.738239 -0.645247 -0.547193 0.418972 -0.934095 0.896665 -2.831116 -2.390688 2.511072 2.107823 0.381623 -0.180181 1.624946 0.183076 -0.813419 -1.259326 -1.144756 0.688445 0.732376 -0.438850 -0.157938 -0.000990 -1.817120 -0.158462 0.370707 0.422242 0.929202 -0.865738 0.025053 -0.617281 -1.681064 -1.348538 0.912953 -1.526682 -0.148490 0.163069 0.204889 -0.111876 0.871295 -0.467833 -1.015927 0.125385 -0.904590 -0.135240 0.180349 1.057104 0.108069 2.214606 2.027053 -0.232702 1.575323 0.389115 -1.109284 4.124171 -1.314384 0.012136 -0.050728 1.326662 -0.093965 0.664600 1.074563 -0.728831 -0.782307 -1.692729 0.170117 0.010971 0.643844 -2.413937 -1.209948 -2.045545 -0.532027 0.017770 1.558841 -0.002392 3.039730 -0.665397 0.368153 -3.575293 0.113544 1.260851 -0.141139 1.262345 0.864167 -1.491292 -2.354672 -0.242951 -1.070800 0.372574 -0.388413 -1.537475 -1.000391 -0.672059 0.752568 -0.798363 0.595397 2.089179 -0.547840 1.031920 -0.383992 -0.163324 -0.381120 -0.572280 0.955126 0.316313 -1.235768 1.743882 -0.026676 3.816629 -0.046010 1.272400 -1.034069 0.410935 -0.304064 -1.326026 -0.837723 1.822513 1.261547 0.669234 0.084126 0.263866 -0.878955 1.131287 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -0.686472 2.569272 9.266706 6.457728 -3.921721 -5.451796 -2.495513 -6.096409 3.532306 1.307583 4.643257 -0.584901 1.613470 1.505633 -0.717381 -1.966710 2.183047 0.479853 -0.934011 -2.251091 -2.722634 6.000639 3.610719 -6.648562 0.803461 -6.318458 4.239187 2.803400 3.042752 4.555516 0.203766 0.140507 -0.180008 3.655705 -4.841925 -1.822943 -1.036828 1.728491 -3.467764 -1.156422 2.959643 2.132212 4.677997 0.370595 3.020712 2.549210 3.172822 -0.605337 -4.763345 -0.772675 -2.652141 5.306571 -2.310775 3.447589 0.070414 2.837083 1.281820 -4.630195 -0.568481 -5.695479 1.159549 2.439889 -3.163161 -0.428268 -5.150654 0.309890 -1.319614 -4.092482 2.112392 -1.836735 2.872337 0.082229 0.108699 -4.507192 -5.055162 2.597087 0.746055 2.367613 2.532550 1.454407 -0.930032 0.705302 -2.765147 -3.598289 1.371038 0.783800 0.726912 0.945620 0.273915 -3.769937 0.991993 -0.328753 -1.271404 4.501847 -3.132034 4.387587 -1.882649 -1.682294 -2.964130 -3.331925 -0.551817 -4.168450 2.299367 3.193682 -2.635425 1.562426 0.813967 1.921486 0.749696 -5.247736 0.337948 -1.468892 0.281568 5.260833 -2.542672 -2.504075 0.162110 -0.266687 -0.803356 4.805572 -0.633413 1.330484 4.556832 3.323721 2.000302 -4.030434 0.832990 1.030687 1.747528 3.026866 3.735415 -3.778718 -2.625670 -0.422627 -0.219822 -8.192325 0.370861 2.817023 3.927634 0.438268 -5.500223 1.843729 -2.431216 4.516628 2.950434 3.617999 2.269878 -0.638441 -2.870026 1.715310 8.460933 -2.788119 3.309752 -2.917943 -6.492036 6.159441 -1.502687 4.505601 -0.532514 0.234100 2.025899 -4.650359 1.098585 6.524501 0.657623 0.650307 3.766843 -0.403171 -0.748892 -7.370269 -7.079866 -0.091214 2.313783 1.713924 9.916727 -4.356630 -2.837723 -1.482990 5.048719 -1.269398 -1.156149 0.680552 -2.030408 2.223025 -10.858910 -8.019494 7.039473 6.654538 0.459533 -0.894337 4.988438 0.734730 -0.445471 -4.359683 -3.491580 2.862461 1.838441 1.039819 -0.004168 0.080713 -5.120438 0.018984 1.128558 1.073641 3.820188 -4.680380 -1.731147 -2.094057 -6.367138 -4.761533 2.460624 -5.646377 -1.275891 0.400085 0.550231 -0.646472 2.096895 -0.826029 -3.621767 0.693148 -2.736387 -0.868991 0.666869 3.837152 0.417619 5.991399 6.492561 -0.297824 3.902521 2.246991 -2.971422 14.053935 -4.859499 -0.699334 -0.003285 4.445025 -1.027201 2.383700 2.702387 -1.781411 -2.587075 -5.035494 2.616558 -0.356435 1.576127 -8.592416 -3.608918 -5.709488 -1.711499 0.691679 5.261756 0.219416 10.172471 -1.274705 0.865532 -10.632074 0.222144 4.298763 -0.061434 4.517884 3.523832 -5.220168 -7.475896 -1.038824 -2.750080 3.658861 -1.021943 -5.469925 -3.436536 -1.312450 1.493933 -2.599343 2.958540 6.585813 -1.940620 2.840470 -0.270261 -1.081071 -1.244825 -2.543120 3.125911 1.411087 -3.653009 5.591123 -1.008310 11.084978 -1.081912 4.506424 -3.923592 1.021703 -0.626181 -3.029123 -2.630390 6.295542 3.611194 2.093797 0.416413 0.349875 -2.731312 2.966475 -PE-benchmarks/reservoir-sampling.cpp__main = -0.197906 1.007304 3.165973 1.636486 -1.506465 -2.482995 -0.930279 -2.917140 1.280218 0.641430 2.097874 -0.240009 1.105284 0.371899 -0.076235 -0.220045 1.237804 -0.051683 0.058255 -1.044772 -1.218232 2.528291 0.909315 -1.312131 0.480932 -2.258707 1.612801 0.939172 1.165421 1.867998 0.311106 0.034159 -0.371517 1.154119 -1.191626 -0.210593 -0.214855 0.790872 -1.348331 0.099183 0.688157 0.066489 1.938152 0.258910 1.197467 1.073291 0.983059 0.134320 -1.544990 -0.665469 -0.911559 1.574496 -0.949435 1.213242 -0.279662 0.294063 0.538716 -1.058620 -0.143046 -1.472456 0.114364 0.066697 -1.230643 0.048630 -1.880209 0.244303 -1.079406 -1.500320 0.383960 -0.643103 1.129129 0.107199 -0.098981 -0.909057 -2.483547 0.683401 0.449432 0.787962 1.017102 0.367485 -0.370832 0.115504 -1.524056 -1.665690 1.023354 0.754485 0.543034 0.325922 -0.790480 -1.091121 0.129044 0.046549 0.133071 1.557606 -1.160499 1.213145 -0.690695 -0.792875 -1.296766 -2.173920 0.058538 -1.365623 0.863942 0.669255 -0.721380 0.163403 -0.234541 0.655111 -0.101151 -1.990231 0.368825 -0.761389 -0.156670 2.254781 -0.843826 -0.892475 -0.589580 -0.301263 -0.011937 1.658611 0.218753 0.368293 1.736748 1.337855 0.828891 -1.520730 -0.201085 0.402862 0.739379 0.901000 1.274396 -1.285435 -1.195281 0.216959 -0.785402 -3.093733 -0.412485 1.094613 1.610261 -0.316165 -1.390563 0.799795 -1.192330 1.392812 1.476306 1.106450 0.826676 -0.178186 -1.261343 0.827132 2.937880 -1.078613 1.401173 -1.088225 -1.935255 2.296462 -0.540876 1.319039 -0.026949 -0.110323 0.020893 -1.305877 0.360347 2.273656 0.388728 0.425260 1.004580 0.143958 -0.612044 -2.341283 -2.867810 -0.005595 1.662183 0.757117 3.174567 -1.745097 -0.786378 -0.257779 1.819692 -0.173495 -0.903134 0.468321 -0.815331 0.843114 -4.003619 -2.752925 2.916555 2.560519 0.667509 -0.288855 1.378322 0.692351 -0.841635 -1.687780 -1.386144 1.227720 0.198462 -0.923808 -0.536787 0.244612 -2.054586 0.004217 0.082785 0.620318 1.376110 -1.166747 0.098064 -0.901986 -1.963577 -1.597473 1.104369 -1.686195 -0.624698 0.209205 -0.046711 -0.124391 0.753386 -0.280199 -0.795173 0.321309 -1.267578 -0.191512 0.346753 1.285741 0.117913 2.681369 2.483504 -0.346645 1.067074 0.358045 -1.243938 4.292831 -1.594552 0.107713 -0.088709 1.562176 -0.200577 0.853578 1.458774 -0.652485 -1.383445 -1.950262 0.456745 0.292213 0.735293 -2.171662 -1.587864 -2.667550 -0.245802 0.097584 2.712543 0.024074 3.623709 -0.615720 0.668147 -3.552749 0.275902 1.084260 -0.132869 1.626574 0.979612 -1.754580 -1.829788 -0.444757 -1.672860 0.370259 -0.241168 -1.653207 -1.314809 -0.514972 0.477696 -1.013940 0.617630 1.847994 -0.701723 1.371780 0.104083 -0.443919 -0.932850 -0.367787 1.818464 0.239163 -1.298735 1.922827 0.003212 4.229523 -0.120393 1.549295 -1.031676 0.295478 -0.153153 -1.483033 -1.025479 2.388584 1.698099 0.712676 0.168462 0.111595 -0.281123 1.134546 -PE-benchmarks/reservoir-sampling.cpp___GLOBAL__sub_I_reservoir_sampling.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -2.492222 2.994940 15.364154 9.822819 -4.748133 -6.020056 -3.624555 -7.885304 5.660549 2.049938 8.364181 -0.273833 3.548650 1.974020 -0.270240 -3.704830 4.575981 -1.870513 -0.686154 -3.332885 0.010245 11.077185 6.472111 -12.103736 0.723130 -12.368727 6.746307 4.016982 4.456678 8.343049 -0.272615 0.703647 0.943973 5.874176 -7.916864 -3.858339 -0.391903 3.087577 -4.362581 -2.038174 4.949413 6.515223 6.313412 -0.021042 4.173598 4.379156 5.863251 -1.391659 -6.251017 -2.062712 -4.499778 7.688766 -4.484483 5.523481 -1.214846 4.705006 1.812443 -7.319599 -2.147419 -11.931467 2.557250 6.284855 -3.661845 -1.143902 -7.317938 1.527195 0.258400 -5.064077 3.728029 -1.354086 5.323149 1.527574 2.242817 -7.664536 -7.622671 5.274263 0.064790 4.064201 3.076983 0.000232 -3.434596 1.308069 -3.608542 -5.708317 1.813747 1.823959 1.083270 0.745722 2.537731 -3.860873 0.460252 0.126518 -4.750577 7.612177 -4.359800 6.542947 -1.896427 -1.716939 -3.525946 -1.404094 -2.244026 -8.107557 2.585096 8.132486 -3.294520 3.098385 0.075731 2.977671 -0.422322 -7.407734 1.191080 -1.665628 -1.924577 6.824513 -4.390193 -3.023690 0.780208 0.955304 0.363299 8.131189 -3.237324 3.854552 8.038820 5.928769 2.161744 -6.684981 2.729774 1.916242 4.593629 4.861679 6.806373 -7.084692 -4.827470 -1.716827 -0.465165 -12.043000 1.532888 4.780794 7.202642 -0.462142 -12.410111 5.358179 -4.273464 10.165218 6.863086 5.556428 3.524628 -0.305128 -5.099349 4.224585 15.532032 -4.978165 5.793052 -5.731300 -7.971749 10.885172 -2.723602 7.764025 -1.177067 1.912159 2.997883 -8.688735 0.895206 10.828362 3.036260 3.431367 6.570155 -1.140437 2.299140 -13.044638 -11.208010 -3.146951 2.910971 1.984171 17.260613 -6.305427 -4.616221 -2.837244 5.742051 -2.877251 -2.729641 -0.019871 -2.616340 2.941347 -18.277683 -12.753321 12.854108 11.513031 0.225353 0.565047 9.353287 1.497713 1.124660 -5.573344 -4.121331 5.958318 2.341368 2.699011 0.980562 0.922379 -8.356562 -2.528528 1.400998 1.389854 5.642529 -6.707991 -5.309074 -0.357545 -11.634614 -6.221191 2.882515 -9.756375 -4.474322 0.417015 0.845776 -0.282151 2.491840 -1.476556 -4.900708 2.456968 -5.091594 -3.317946 1.152688 6.755144 1.823220 6.493906 10.375329 0.512303 5.399807 4.423766 -5.010700 20.949592 -6.298916 -2.592872 -0.060189 6.297092 -0.988192 4.363727 3.037430 -2.430874 -3.421296 -9.452574 7.302720 -0.800094 2.872839 -14.192206 -5.412644 -6.153271 -2.620533 2.968653 9.326967 -0.291258 17.689640 -2.158424 1.287672 -18.698390 0.046324 6.832536 1.039111 5.442848 6.767725 -7.249708 -13.361008 -1.496586 -3.061956 5.346131 -2.287026 -9.900925 -6.198564 -3.026776 3.104755 -5.233840 4.773990 11.938330 -2.167299 5.901118 0.738447 -2.530123 -2.448527 -3.715376 2.816164 4.416293 -5.431591 8.600291 -2.997409 17.260924 -4.182918 7.596566 -7.426582 2.519896 -1.285757 -4.441365 -3.501032 11.155365 5.537539 2.842714 2.716384 -1.359498 -4.145708 6.569729 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -0.966540 1.316636 4.438707 3.750470 -2.953959 -2.575137 -1.468209 -2.445836 1.380001 0.018438 2.053366 -0.257771 0.419410 -0.146855 -0.654645 -1.790043 1.163452 0.115125 -0.854598 -1.407744 -1.652165 2.362131 1.828394 -4.660107 0.879167 -3.009701 3.029119 1.710545 0.673315 2.399013 -0.216761 0.143468 -0.410081 2.592351 -2.175698 -1.437502 0.031606 0.900085 -1.316987 -0.072217 2.269989 2.032820 2.545787 -0.216108 1.272435 2.665718 0.752793 0.107417 -3.475605 -0.542817 -0.247894 1.629584 -1.328301 2.317392 0.278975 1.812254 0.962058 -2.969986 -0.357798 -3.536755 0.781476 0.986843 -0.687020 -0.316265 -2.662198 -0.207371 0.518331 -2.480833 1.784881 -0.917121 1.220770 -0.046715 -0.247949 -2.190141 -0.813110 1.594469 1.307668 2.024503 1.407441 0.299761 -0.110964 0.104311 -1.416172 -1.752548 -0.509715 -0.458102 1.272779 0.790084 1.036590 -2.099438 1.766330 -0.204548 -0.609446 2.479581 -0.750902 0.913904 -1.313120 -0.826788 -2.084146 -1.414738 -0.330650 -1.754978 1.530107 2.670182 -2.599313 0.860674 0.863804 1.193492 0.460075 -2.049101 0.015539 -1.296488 0.814364 2.606176 -0.549605 -1.765544 -0.034677 -0.557671 -0.102591 2.708578 -0.789480 0.227203 2.760208 2.326603 0.943794 -2.215942 0.079668 -0.442366 0.760839 1.681391 2.624338 -2.636977 -1.327036 -0.332959 -0.750413 -3.656278 0.148325 -0.092250 2.452708 0.077478 -3.644847 1.925635 -1.942153 2.643990 0.804248 1.829846 0.961985 -0.692802 -1.836864 1.637133 4.047006 -1.203871 1.332914 -1.420881 -3.356119 2.862574 0.198615 1.898441 -0.047605 -0.737831 0.800188 -2.271276 0.928288 3.186529 0.307920 0.295454 2.196769 -0.273810 -0.296249 -3.880556 -3.491841 0.617254 1.234830 0.888070 5.722072 -2.680395 -1.500612 -1.380329 2.925010 -1.036735 -0.434640 -0.037283 -0.646012 1.347614 -4.369224 -3.898364 4.018981 3.631802 0.041277 0.100061 2.787402 -0.414373 0.217773 -1.907784 -1.757497 1.143768 1.356129 1.397635 0.036653 0.483194 -2.278744 -0.416096 1.089177 0.841230 2.482479 -2.645307 -2.414979 -0.752286 -3.203836 -2.680940 0.512961 -2.709287 -0.037295 1.111145 0.079428 -0.067348 1.441337 -0.292368 -2.794094 -0.853014 -1.193936 -0.558348 0.029370 2.739440 0.429495 2.328969 2.845616 -0.452291 2.073984 1.811717 -1.516681 7.335696 -2.130802 0.313104 0.573555 2.732488 0.119990 1.114902 1.778073 -1.014010 -0.147534 -3.131564 1.388958 -0.061109 0.775947 -6.295606 -1.458820 -3.229876 -0.930742 0.403523 1.956672 -0.122932 5.233513 -0.025036 -0.127821 -5.553659 -0.194838 2.555235 0.169829 1.801896 2.021085 -2.684959 -5.482274 -0.478909 -1.745927 1.729788 -1.014463 -1.932718 -1.818731 0.386151 0.888662 -0.454936 1.741716 4.706873 -0.863055 0.837589 -0.397979 -0.486890 -0.288215 -2.694636 0.863330 0.625743 -1.733987 2.830422 -0.003593 5.301041 -0.163582 2.181137 -2.040558 0.194095 0.360970 -1.754561 -1.481269 3.000296 1.210272 1.201647 1.030076 0.592394 -1.627073 2.505158 -PE-benchmarks/min-cost-path.cpp__main = -0.315768 0.981071 4.077538 1.727657 -1.260470 -2.024168 -1.088299 -3.300781 1.607968 0.746493 2.591938 -0.351013 1.228070 0.535976 0.020957 -0.252650 1.371029 -0.700077 0.284557 -1.024946 -0.276043 3.211502 1.132815 -1.791946 0.306181 -3.529521 1.557592 0.895299 1.548298 2.094217 0.176527 -0.029565 -0.055004 1.357182 -1.561811 -0.459580 0.315344 0.859482 -1.546558 -0.025944 0.609404 1.051250 1.719218 -0.090473 1.431551 1.029652 1.393898 -0.023913 -1.390700 -0.693886 -1.171882 2.283376 -1.180564 1.318475 -0.169430 0.453543 0.150236 -1.540507 -0.620358 -2.075304 0.199608 0.898487 -1.027147 0.020903 -1.922277 0.598168 -0.590346 -1.241093 0.742126 -0.253318 1.536933 0.495052 0.602384 -1.055183 -2.728296 1.289657 0.189800 1.029763 0.840235 -0.232525 -0.453607 0.398838 -1.274708 -1.844545 1.066241 1.378649 0.425460 -0.087664 -0.204272 -0.665893 -0.149770 -0.077272 -0.640442 1.995548 -1.441920 1.435619 -0.910464 -0.653014 -1.251404 -1.655590 -0.401770 -2.072489 0.875797 1.415068 -0.533983 0.516018 -0.118322 0.877502 -0.251004 -2.187580 0.471630 -0.418538 -0.402979 2.486749 -1.195408 -0.733657 -0.388014 0.015180 -0.123147 1.933882 -0.304558 1.016362 2.163600 1.777855 0.823104 -1.784739 0.012243 0.729800 1.278912 1.213911 1.710561 -2.039810 -1.378862 -0.131724 -0.544998 -3.474171 -0.175170 1.233741 2.000130 -0.538167 -2.311680 0.963933 -1.221687 2.551299 1.970537 1.108735 0.854218 -0.068333 -1.464436 1.307709 3.995560 -1.343373 1.739013 -1.636387 -1.609370 2.482342 -0.859574 1.862325 -0.089339 0.539788 0.243535 -2.109933 0.072412 2.727414 0.916144 1.040107 1.185639 0.036346 -0.022879 -3.222716 -3.214715 -0.673131 1.368568 0.160110 3.892268 -1.761555 -1.446681 -0.464523 1.948635 -0.366965 -1.054984 0.419259 -1.082572 0.884824 -4.296093 -3.301754 3.530482 3.508163 0.547030 -0.051007 2.201074 0.947978 -1.076839 -1.684337 -1.185737 1.725898 0.162774 -1.056245 -0.543900 0.334660 -2.317689 -0.565858 0.029616 0.631322 1.450330 -0.771628 -0.389096 0.041823 -2.775295 -1.497166 1.335016 -2.166705 -1.246816 0.099428 0.176909 -0.014007 0.882350 -0.800028 -0.804521 1.060333 -1.646057 -0.465627 0.666146 1.546505 0.271465 2.426758 2.765301 0.162123 1.657283 0.685143 -1.447312 4.647076 -1.441981 -0.330812 -0.144418 1.178385 -0.562652 1.133390 1.099158 -0.723761 -1.751905 -2.510047 1.223512 -0.205766 0.980611 -2.235640 -2.055412 -2.063988 -0.490543 0.744143 2.861832 0.184332 4.530637 -0.690128 0.729006 -4.727596 0.179380 1.384262 0.091731 1.647701 1.431693 -1.792811 -2.813567 -0.394308 -1.423660 0.012638 -0.562173 -2.646247 -1.666173 -1.282214 1.259535 -1.294341 0.760747 2.540991 -0.240004 1.906743 0.301497 -0.750258 -1.187740 -0.329556 1.580842 0.691584 -1.563083 2.166320 -0.424624 5.208543 -0.952494 1.754876 -1.611496 0.354564 -0.194701 -1.401688 -0.849573 3.029742 1.882919 0.842715 0.172105 -0.499232 -0.776026 1.550689 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/box-stacking.cpp__max(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -2.015364 -0.300150 3.010066 1.262195 -0.624441 -1.091470 -0.665178 -1.995076 1.640451 1.252527 2.710133 0.321132 1.960510 -1.295175 0.277864 -0.964126 1.489972 -1.292704 0.694892 -0.586991 1.352944 3.168663 1.928476 -1.186708 -0.022975 -2.706840 1.297195 -0.026265 1.214598 2.499808 0.265172 0.142444 -0.447962 0.763551 -0.521710 0.643468 0.179041 1.004330 -0.473367 -0.649321 0.410266 0.399692 0.852560 -0.205196 1.933336 -0.100195 0.912886 -0.552864 -1.504562 -1.684975 -0.276100 0.796845 -1.762169 0.753474 0.513266 -0.191945 0.218130 -0.253224 -0.463546 -3.633301 0.692693 -0.086871 -0.640965 0.357718 -1.409551 0.857209 -1.061270 -0.176920 0.033892 -1.123907 1.018488 0.882115 1.345408 -0.146350 -1.823635 1.129355 -0.010011 0.157083 0.818000 0.634844 -1.455871 -0.321709 -0.483174 -1.655139 0.993573 0.796313 -0.074942 0.281267 -0.746998 0.409494 -0.158117 0.074779 -0.731167 1.162626 -1.656775 0.640798 0.778020 -0.403513 0.511322 -0.927541 -0.365071 -2.035805 -0.001238 2.214297 -0.504325 -0.315352 -2.061235 0.452204 -1.257162 -1.524270 1.256626 -0.563529 -0.859561 1.424011 -2.047160 0.365972 -1.307107 0.716326 1.415765 1.700566 -0.439081 1.491917 1.098414 1.215989 0.774936 -1.592216 0.484242 1.568034 1.985166 0.235120 0.522792 -1.282549 -1.070561 0.297088 -0.741136 -2.257855 -1.197603 1.685701 1.526562 0.684945 -2.319370 0.882745 -0.625633 2.178498 2.454107 0.559472 0.431572 0.630461 -1.395184 1.043488 2.580717 -1.202778 1.254205 0.010750 -1.629940 2.858555 -1.491396 1.487732 -0.083140 0.906789 0.044340 -1.788260 0.001530 2.176952 1.004130 1.853771 -0.368688 0.289588 1.157590 -2.817011 -3.056248 -0.863647 1.575393 1.127377 2.770512 -1.172553 -0.352511 0.058364 1.337771 0.405856 -1.668878 -0.192302 -0.563142 0.542255 -4.736928 -2.747667 3.542115 3.075465 0.867848 0.509560 1.212931 1.545233 -0.679304 -0.474818 -1.070258 1.578966 -0.896677 -0.842311 -0.074481 0.767185 -2.221768 -1.384100 -0.167811 0.105030 0.989605 -1.141250 -0.309298 0.619805 -1.181966 -0.385974 0.893818 -1.123264 -1.845360 -0.951481 0.220917 1.124232 0.460113 -0.600811 0.228079 0.932436 -1.563320 -1.144322 0.419634 1.364227 0.920701 1.921151 2.339854 -0.212575 -0.528090 -0.053614 -1.268264 3.419064 -0.983577 -0.671018 -0.377885 0.901906 1.056862 0.709739 0.803442 -0.656711 -1.060828 -1.961465 0.664516 0.559637 1.121547 -2.755987 -2.528026 -1.736085 0.391826 0.688101 2.181797 0.039401 4.106914 -1.055750 0.125328 -3.600977 0.091750 1.351295 -0.039495 1.556904 0.938499 -1.055911 -2.019294 -0.968373 -1.107138 1.047027 -0.430743 -1.443651 -0.667298 -0.997213 2.101180 -1.382086 0.614721 0.947261 0.192197 2.349179 1.957260 -0.384423 -1.794576 0.533171 -0.409184 1.021803 -1.116538 2.292792 -0.195463 2.814005 -1.578578 0.749520 -1.262092 1.608950 -1.079691 -1.415083 -0.338647 2.360342 2.466486 0.551680 0.175147 -0.262093 -0.739691 1.390455 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -12.425783 4.368272 42.426178 24.385607 -10.491520 -22.515472 -11.723661 -22.500928 16.050957 9.467177 28.259770 0.185438 10.517316 7.356140 3.853389 -6.613973 7.865548 -6.467596 -2.372860 -7.396964 -1.476429 30.321668 26.694062 -27.441169 1.009254 -30.841729 9.478934 10.546609 10.812068 22.730356 -1.947560 1.435863 1.697131 14.494544 -22.521789 -0.824591 -3.610807 8.618085 -7.044844 -6.345981 11.739124 11.459936 14.932406 1.520415 19.914929 8.566899 19.416612 -6.809217 -19.606226 -9.972522 -13.710588 28.544388 -15.773881 12.793048 -0.411662 16.358879 1.127537 -19.629394 -7.644923 -41.748201 7.613088 15.093099 -15.816492 -2.198066 -18.178894 6.410302 -3.521068 -11.150280 7.803962 -7.766878 17.457626 0.495876 4.142143 -14.640355 -21.735477 10.858072 -3.464731 7.060260 7.890965 2.338998 -16.267027 4.023098 -6.458088 -16.395276 8.128168 1.777899 -0.224690 1.923073 -0.133733 -5.730263 -2.109258 -0.879024 -12.483791 21.414424 -20.078066 20.806728 7.869715 -6.336465 -10.765374 -3.870679 -3.723322 -23.859781 5.293732 21.011323 -2.492931 2.530265 -10.833407 7.499238 -7.720308 -26.531937 5.419777 -2.335380 -9.591212 12.940857 -20.645586 0.698270 5.888626 2.941919 2.678836 23.246506 -2.723553 12.248425 18.086537 15.031115 6.277633 -16.779378 7.433034 6.498965 19.856017 12.488038 12.844050 -17.809842 -12.381660 -0.469764 -2.846899 -36.082671 0.654977 24.111859 18.509606 9.038327 -33.273323 10.580030 -7.310422 26.128315 20.178903 17.181438 6.997436 -1.066579 -15.434232 7.866269 44.620854 -16.218914 21.155577 -5.248877 -24.976745 35.516384 -18.976533 23.802404 3.464846 7.378654 9.549686 -23.151299 -3.990431 29.835452 13.396113 13.232961 13.863452 -1.539092 4.860872 -35.718525 -35.323226 -12.463491 10.561876 6.000968 42.781014 -15.800159 -13.820632 -5.983027 22.494815 -8.734376 -12.261880 -2.166603 -5.971156 7.427909 -55.711404 -34.410769 36.778881 37.521192 6.317677 2.793614 29.653590 11.149591 0.373417 -14.367714 -13.243350 16.858501 3.193623 8.050011 3.301668 -2.081687 -27.235327 -6.050038 -3.610192 2.235363 5.863966 -14.249588 -8.987310 4.519036 -28.185323 -9.885406 1.652015 -26.531803 -15.260566 -4.808106 4.218241 -1.568242 1.988260 -8.126638 -9.102394 10.205953 -20.353322 -6.346496 7.261122 14.242555 11.711656 29.868112 29.853612 -0.204984 15.805626 5.701494 -12.147589 56.364225 -19.710474 -7.867146 -2.525442 19.613299 -1.353760 9.596865 6.218184 -5.899775 -13.300551 -21.033688 18.389352 0.575589 10.715143 -32.097077 -24.588694 -20.101573 -6.212697 11.510941 27.340270 -2.962869 48.397002 -5.714534 8.417180 -55.411869 2.673797 18.190427 -1.931014 14.658808 15.629085 -19.151623 -41.425713 -5.775231 -5.342265 14.709986 -3.322901 -27.350673 -11.892714 -15.403905 10.771550 -19.432119 12.309985 22.818603 -4.187470 18.665046 10.112497 -7.264488 -8.580848 -3.907437 10.833167 11.327087 -17.164850 27.048248 -5.987566 51.939762 -14.916677 23.065254 -17.806081 10.967001 -7.357503 -7.398477 -5.958423 29.430557 24.450753 7.526726 1.894022 0.015307 -13.479918 11.003771 -PE-benchmarks/box-stacking.cpp__main = -2.358457 1.353466 9.732937 4.953233 -2.571810 -5.541287 -2.769826 -6.291907 3.802461 2.262921 6.685293 -0.204943 2.737992 1.587176 0.782476 -0.957501 2.144343 -1.552051 -0.103908 -1.913252 -0.762709 7.383289 5.369344 -5.156356 0.384912 -7.342604 2.352741 2.297815 2.929779 5.229074 -0.185205 0.176268 0.141330 3.234752 -4.666280 0.033567 -0.552020 2.107328 -2.127703 -0.939744 2.170744 2.007460 3.688299 0.313263 4.573056 2.000918 4.221083 -1.165290 -4.243456 -2.341539 -3.128365 6.461609 -3.560710 2.921890 -0.164387 2.866000 0.202962 -4.029688 -1.674358 -8.315246 1.261102 2.692358 -3.592212 -0.243034 -4.321146 1.550878 -1.449221 -2.679523 1.551567 -1.601214 4.050103 0.345156 0.963947 -2.715763 -5.779634 2.483500 -0.459490 1.691635 1.931080 0.405987 -3.169703 0.919316 -2.026379 -4.149908 2.411066 1.256982 0.229082 0.276764 -0.740577 -1.267502 -0.611450 -0.177831 -2.204483 4.912274 -4.609844 4.477825 1.036860 -1.616235 -2.761875 -2.271460 -0.737072 -5.368324 1.449517 4.125975 -0.491984 0.429849 -2.344151 1.775087 -1.697877 -6.200379 1.327408 -0.702527 -2.060101 3.818033 -4.473298 -0.088406 0.660731 0.422495 0.413297 5.138901 -0.218423 2.694357 4.351770 3.645489 1.697044 -3.954762 1.071991 1.630900 4.349333 2.785618 3.041908 -4.197838 -3.030129 0.114870 -1.031063 -8.571017 -0.329403 5.291031 4.357043 1.339700 -6.704841 2.240196 -1.948705 5.817342 4.813710 3.566031 1.690352 -0.246156 -3.616216 2.097745 10.112003 -3.695341 4.902827 -1.627340 -5.356973 7.871042 -4.170822 5.228572 0.737304 1.569227 1.583754 -5.126649 -0.772783 6.800713 2.912442 2.975463 2.864845 -0.116204 0.532713 -7.980943 -8.289730 -2.530531 3.071272 1.216569 9.434297 -3.822369 -3.210101 -1.065884 5.316074 -1.571698 -2.994207 -0.030528 -1.734246 1.856240 -12.424970 -7.946649 8.626788 8.792832 1.747478 0.426188 6.355785 2.885322 -0.996732 -3.642161 -3.182651 3.997712 0.428921 0.157906 -0.057597 -0.221731 -6.294710 -1.238744 -0.908560 0.791980 1.675748 -2.618976 -1.250233 0.738609 -6.287763 -2.444468 1.116921 -5.758367 -3.449729 -0.917607 0.827770 -0.328869 0.820790 -1.982994 -1.772525 2.467494 -4.743839 -1.168671 1.789290 3.183188 2.267688 7.270959 7.000988 -0.119940 3.668507 1.050354 -2.954298 12.299964 -4.382094 -1.430710 -0.613662 4.174497 -0.568977 2.305292 1.910609 -1.462598 -3.700439 -5.023988 3.594925 0.197743 2.507964 -6.316396 -5.896175 -5.108292 -1.237671 2.422541 6.743109 -0.407921 11.055294 -1.494226 2.165999 -12.420757 0.735945 3.782103 -0.481030 3.703503 3.354395 -4.368424 -8.553596 -1.369984 -1.957887 2.212367 -0.790085 -6.260157 -2.905621 -3.638564 2.627114 -4.302755 2.424837 4.942607 -0.844321 4.552973 2.137893 -1.702210 -2.499171 -0.461348 3.291775 2.155764 -3.953514 6.047441 -1.077485 12.366438 -3.098943 5.055530 -3.826197 2.147231 -1.441655 -2.187093 -1.477831 6.930073 5.745017 1.802156 0.176036 -0.146046 -2.609861 2.605007 -PE-benchmarks/detect-cycle-in-a-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.268643 0.351573 1.552905 0.930686 -0.696781 -1.715566 -0.335272 -1.741506 0.895105 0.423983 1.417793 0.228207 1.015188 -0.298223 0.221611 0.136317 0.768489 0.107423 -0.030404 -0.513915 -0.389527 1.652745 0.494344 -0.680355 0.247538 -0.779538 0.744673 0.787771 0.719517 1.098878 0.186748 0.012349 -0.175562 0.576514 -0.663992 0.096534 -0.375856 0.599203 -0.684655 -0.259782 0.275330 -0.328743 1.124024 0.244826 0.880623 0.187145 0.997675 -0.014203 -0.687518 -0.536527 -0.773002 1.063757 -0.716355 0.756123 -0.559639 -0.108701 0.444002 -0.068804 0.063149 -1.267504 0.196519 -0.042288 -0.959185 -0.211748 -0.905083 0.114412 -0.476450 -0.845574 -0.074609 -0.340270 0.741692 0.008684 -0.184594 -0.522070 -1.829503 0.029896 0.184949 0.272518 0.755714 0.430593 -0.393991 -0.377578 -0.817343 -0.947650 1.126506 0.221359 0.336081 0.544082 -0.986175 -0.346655 -0.169559 0.204749 0.238242 0.700598 -0.811971 0.668680 0.217463 -0.346397 -0.498305 -0.989188 0.263737 -0.791954 0.244240 0.221237 0.168216 0.016226 -0.629060 0.262574 -0.578076 -1.169715 0.327582 -0.536746 -0.598952 0.948833 -0.564260 -0.310798 -0.147341 0.018538 0.183397 0.892982 0.369885 0.283920 0.845039 0.689891 0.534406 -0.981805 -0.103112 0.407653 0.745342 0.676889 0.285526 -0.458703 -0.680762 0.337813 -0.753505 -1.901628 -0.295806 1.214284 1.012624 -0.022589 -0.918402 0.624110 -0.594440 0.735676 1.139520 0.599626 0.461641 0.208058 -0.848878 0.409255 1.656453 -0.647262 0.907647 -0.169575 -0.750835 1.408711 -0.581789 0.590495 0.056338 -0.224459 0.033271 -0.516108 -0.019330 1.328300 0.457954 0.430327 0.237216 0.258747 -0.566511 -1.410148 -1.851852 -0.361049 1.380583 0.740730 1.732869 -0.901810 -0.432407 0.078528 0.729580 -0.453059 -0.753430 0.269442 -0.588771 0.674062 -2.611344 -1.457707 2.019199 1.317052 0.706653 -0.009173 0.797884 0.663209 -0.372709 -0.796046 -0.652052 0.609675 0.198014 -0.861408 -0.233433 0.062122 -1.475326 -0.187931 -0.033323 0.176278 0.041065 -0.346997 0.509578 -0.514522 -0.787761 -0.518757 0.350499 -0.883472 -0.379478 -0.170193 -0.084427 0.023315 0.291446 -0.235251 -0.140762 0.260577 -0.966543 -0.183589 -0.014426 0.619910 0.467409 1.772902 1.642096 -0.388182 0.692191 0.027528 -0.846288 2.087523 -0.819676 0.069678 -0.020746 1.077778 0.297378 0.568165 0.940991 -0.466938 -0.585335 -1.307087 -0.035844 0.727884 0.667079 -0.832280 -0.809939 -1.562480 -0.051864 0.096544 1.747212 -0.419835 2.071360 -0.656342 0.590043 -2.144141 0.230912 0.448414 -0.240635 0.790124 0.465390 -0.885619 -0.944835 -0.393606 -0.816994 -0.147833 -0.034997 -0.671485 -0.615214 -0.565892 0.158918 -1.176419 0.278827 0.606484 -0.500505 1.012314 -0.201303 -0.071360 -0.541871 0.237748 1.015416 0.283527 -0.892157 0.967902 0.069295 2.605826 -0.186116 1.055243 -0.671212 0.606770 -0.430584 -0.895409 -0.579866 1.458232 1.393051 0.326145 0.240866 0.331843 -0.018460 0.813990 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -3.911149 3.056466 14.956133 7.835763 -5.447107 -8.233922 -4.463042 -14.323461 7.709778 4.555849 11.969148 -0.061165 5.870377 0.321663 0.481073 -2.427237 5.348024 -2.211750 -0.450708 -4.046024 -1.275944 11.624513 5.142274 -7.064876 1.045404 -9.661401 5.438921 3.380185 4.543094 6.496425 1.784420 0.264281 -1.469508 5.490709 -5.851008 0.322851 0.402799 4.289692 -4.448773 -3.299918 3.702451 2.291465 7.245616 1.292327 8.113894 1.991079 5.213025 -1.473659 -6.725772 -3.504082 -2.630003 8.935906 -5.517566 5.342831 1.397844 1.794410 1.408413 -5.674002 -0.664497 -10.014652 1.984890 1.895516 -5.257652 -0.339934 -6.043572 1.747933 -2.018942 -3.864382 1.556257 -4.251496 5.763965 -0.801810 0.464471 -3.839087 -9.822533 3.370581 0.933485 1.127863 5.140595 2.734186 -2.767871 -1.233981 -4.559110 -7.748981 5.816020 3.719548 0.671670 2.403226 -3.221777 -1.718107 0.435327 -1.024519 -0.987634 8.287276 -7.493777 5.165494 1.002665 -4.043322 -4.524422 -5.664915 0.687484 -8.191354 3.320136 5.415651 -3.079586 0.738995 -2.620261 2.440396 -2.323917 -8.436577 2.550027 -2.536541 -0.655404 8.052916 -5.990371 -3.245652 -1.613495 -0.415714 1.185360 7.265738 1.445573 3.219204 7.871538 5.941113 4.351737 -7.697275 0.257293 3.787719 5.319896 4.491030 3.677309 -7.304919 -4.432077 2.194336 -3.320163 -13.529013 -2.660666 6.308372 8.288437 0.423883 -9.254647 3.092351 -3.513172 7.577817 7.765069 5.460014 2.599197 0.846030 -6.087522 2.457102 12.578270 -4.632362 6.515156 -2.001357 -6.823752 9.068052 -5.164386 6.776241 0.751067 1.411910 0.696811 -7.334908 0.117497 10.779538 2.909662 3.855536 0.935232 1.274135 -2.007458 -11.883093 -14.921414 -2.459526 7.270846 3.816675 13.344795 -7.046218 -5.235531 -0.418020 8.599656 -1.681203 -5.578224 2.434527 -3.883222 4.549806 -16.489506 -11.816361 13.722753 13.055893 3.982397 -1.456037 8.032806 2.460697 -4.208482 -6.648583 -6.000808 6.519274 1.202441 -2.109916 -0.241344 0.356349 -9.762954 -2.282657 -0.525967 1.904758 3.456025 -4.554148 0.990980 -0.119728 -7.069680 -4.241273 4.001347 -5.868980 -4.662721 -1.982031 0.797170 0.239077 3.305217 -2.916037 -3.728437 2.589575 -6.913334 -2.272975 2.496849 5.319751 1.905830 12.551992 10.426649 -1.864715 5.727073 0.644254 -5.213413 17.568116 -6.720071 -0.973306 -0.783924 5.831677 0.373049 3.918931 5.566427 -3.511677 -6.214041 -8.815468 2.042356 0.469406 5.440227 -10.449344 -8.685173 -10.146061 -0.891810 1.329750 10.482739 -0.484555 17.717281 -3.228034 3.456760 -17.715585 1.048978 6.788429 -1.597384 6.140979 4.578855 -7.626657 -10.780165 -2.071994 -6.175105 -0.103361 -0.494513 -7.193087 -5.595317 -5.897348 6.086832 -6.215436 2.979152 7.366353 -1.614083 6.773064 1.137812 -2.091639 -3.789574 -0.736014 5.534062 1.734345 -7.124448 9.122290 -0.586951 20.155684 -4.171801 7.502046 -5.829127 3.840340 -3.365204 -5.646782 -3.942769 11.107189 10.042414 3.525697 -0.779775 0.260327 -4.054104 5.434594 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -2.237237 2.327390 9.901862 6.319556 -5.125357 -6.661256 -2.967270 -7.990063 4.160182 2.097973 6.989414 -0.513558 3.009066 0.895758 0.225606 -1.961235 3.449860 -0.462444 -1.100937 -2.896288 -2.877191 6.699153 3.557440 -6.297570 1.256381 -6.118303 4.140842 3.329028 1.991735 4.369312 0.907524 0.437046 -1.285201 3.657521 -4.566654 -0.501760 -0.128058 2.157169 -2.975986 -1.654201 3.263688 1.399716 5.149540 0.395510 4.400451 2.636161 3.776744 -0.417700 -5.763331 -2.249822 -2.325791 5.861037 -2.870084 3.853380 0.765904 2.251697 1.529614 -4.896735 -0.565785 -6.787959 1.529489 1.053756 -3.683589 -0.410141 -4.649358 0.752715 -0.957110 -3.537757 2.248612 -2.799766 3.431955 -1.172354 -0.424678 -3.491611 -5.362142 1.962620 0.873909 1.654082 3.008236 1.671755 -1.410410 -0.292195 -3.581919 -4.438852 2.406324 1.016067 1.074674 1.368033 -1.801264 -2.133175 1.133064 -0.744489 -0.747135 5.081085 -4.630006 3.197811 -0.100724 -2.562664 -4.408994 -3.974001 0.457625 -4.585919 2.389430 3.931607 -3.047756 0.813644 -0.745440 1.724589 -0.763258 -5.954866 0.926226 -2.111789 0.080415 5.319286 -3.532747 -2.631454 -0.514570 -0.763796 0.194434 5.150276 0.442874 1.570229 5.519219 3.912583 2.578303 -4.701672 0.042174 1.420214 3.196585 3.041175 3.237704 -4.960481 -2.862326 1.001555 -2.343521 -8.758844 -1.076164 3.578089 5.698235 1.002211 -6.668840 2.642716 -2.715582 4.866984 3.673051 4.225101 1.660205 -0.126188 -3.943895 1.505802 8.812427 -3.148405 4.306465 -1.795911 -5.585716 6.172850 -1.895541 4.033696 0.971393 0.265733 0.801423 -4.570343 0.269885 6.924743 1.814779 1.363824 2.586746 0.620422 -2.052095 -8.245969 -9.483334 -0.515622 3.932865 2.146198 9.959975 -5.449908 -3.309096 -1.287481 6.357634 -2.200864 -3.224354 1.038956 -2.227197 2.714425 -10.616581 -7.927416 8.823192 7.938762 1.656357 -0.629946 6.002225 0.758528 -2.314116 -4.183856 -4.523767 3.797125 1.680111 0.231509 0.372574 0.061301 -6.640853 -0.784845 0.077839 1.608209 3.071155 -3.870562 -0.539888 -1.136159 -5.812822 -3.653395 2.107968 -4.793235 -1.972401 -0.194738 0.391188 -0.232339 2.195479 -1.478933 -3.564334 0.597568 -4.239360 -1.286629 1.329521 3.935638 1.276817 8.835318 6.921842 -1.121851 4.363403 0.863480 -3.523787 13.670298 -4.615149 -0.379141 -0.566887 4.946148 0.079693 2.214067 3.805739 -2.077531 -3.587038 -5.799537 1.676500 -0.054846 2.783881 -8.794441 -4.718179 -7.807527 -1.279072 0.632920 7.039588 -0.456781 11.419542 -1.640227 1.637314 -12.393099 0.575002 4.541165 -0.917360 3.487403 3.105072 -5.194251 -8.514836 -0.823111 -3.916817 1.324236 -0.514670 -4.804202 -3.879364 -2.867752 2.751795 -3.334348 2.095095 6.599358 -1.496275 3.611771 0.814390 -1.369810 -1.422532 -1.856719 3.903502 1.239243 -4.434609 6.778561 -0.160028 13.572797 -1.046733 5.149496 -3.596645 1.733718 -1.337797 -3.857436 -2.878993 6.622570 5.703512 2.272264 0.331134 0.849691 -2.891251 3.755030 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.338529 2.239125 6.132647 2.234908 -2.992104 -5.353187 -1.664109 -7.662159 3.123280 1.423595 4.483322 -0.252379 2.645874 0.141462 0.262396 0.985575 2.910420 0.202603 -0.178788 -2.378798 -1.743571 4.885213 0.106776 -1.427603 1.216720 -4.281854 2.024957 2.607969 2.798772 2.258749 1.233581 -0.099683 -1.231200 2.076711 -2.085002 0.012655 0.450836 1.138365 -3.799665 -0.033070 0.339475 0.248987 3.708260 0.342665 3.091274 1.029244 2.502366 0.757799 -2.179431 -1.247562 -1.817898 4.751147 -1.014022 2.515371 -0.024867 -0.248597 0.291830 -1.888509 0.168652 -1.009791 0.130710 0.139196 -2.429216 -0.082292 -2.894657 0.340581 -1.432409 -2.497342 0.608113 -1.220205 2.184047 -0.814649 -0.871550 -1.430645 -5.791502 0.619330 0.978680 1.336487 2.381251 0.811684 0.352252 -0.646150 -2.823015 -3.303983 2.940111 2.859184 0.937159 0.998280 -3.211747 -1.686974 -0.207161 -0.528951 1.077545 2.782831 -3.620998 1.412533 -1.392798 -1.863544 -3.264455 -4.445622 0.918128 -2.211533 1.728179 -0.298891 -0.181500 0.442046 -0.142157 0.985649 -0.547679 -3.234144 0.649896 -1.215616 -0.010919 5.292852 -1.347159 -2.151330 -1.505343 -0.803931 -1.112407 2.839104 1.155831 0.534129 3.704599 2.851286 2.075713 -3.102607 -1.272640 1.390624 1.558597 2.329478 1.999821 -3.109146 -2.023660 1.062750 -2.288589 -6.257363 -1.147641 1.951919 3.755823 -0.870899 -1.691516 0.531955 -2.085475 2.824675 2.371557 1.378628 1.229387 -0.082977 -2.676380 1.512853 5.545570 -1.827261 2.797870 -2.004179 -1.893059 2.547415 -1.035292 1.999108 0.481092 -0.657337 -0.629578 -1.734972 0.200825 4.091322 0.909623 0.690882 0.672723 1.006621 -2.725343 -4.455904 -6.434760 -0.327751 3.228770 0.778444 5.258593 -3.234641 -2.626811 -0.698770 3.979772 -1.066050 -2.201534 2.118777 -2.832119 2.189081 -5.020131 -4.534518 5.945971 5.941822 1.980679 -1.156990 3.302239 1.323302 -3.906969 -3.387506 -2.151722 2.140230 0.794625 -4.040035 -1.192947 0.424238 -4.361964 -0.209614 -0.254092 1.410946 1.452735 0.176702 2.432064 -1.165327 -3.252233 -2.637577 2.483057 -2.003908 -0.601373 0.156709 0.031508 -0.433237 2.164268 -1.846927 -1.601632 1.347645 -2.879478 0.135307 0.796986 2.176984 0.404227 5.845648 4.238701 -0.286151 4.530072 0.029238 -2.779494 6.675131 -2.239622 0.869188 -0.235752 1.878309 -0.786186 1.775210 2.598479 -1.595464 -3.071615 -4.066555 -0.510276 0.271002 2.177311 -1.859156 -3.388573 -5.242339 -0.634185 -0.073091 4.989445 -0.246796 6.614709 -1.775831 1.846188 -7.245833 0.747975 1.684706 -0.755330 2.617991 1.514048 -3.384597 -3.344344 -0.277991 -3.683633 -2.653826 -0.037014 -3.061911 -2.807822 -2.545729 2.436930 -2.519032 0.416592 3.408345 -0.805637 3.023178 -0.992502 -0.621427 -1.636139 0.041414 4.301795 -0.033683 -3.058283 2.949458 0.369693 9.649675 -0.154535 3.253976 -1.702463 0.308535 -0.322480 -3.518114 -2.220865 4.516297 3.985858 1.613604 -0.487694 0.172849 -0.711428 2.513842 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/detect-cycle-in-a-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/detect-cycle-in-a-graph.cpp___GLOBAL__sub_I_detect_cycle_in_a_graph.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -2.760296 4.837790 21.242570 13.884221 -5.951945 -7.568647 -4.159269 -8.129746 4.944720 2.710077 10.180184 -2.060535 2.937391 5.509896 -0.313030 -5.902580 3.787953 -0.184310 -0.169427 -3.549752 -2.220264 10.906590 10.880837 -15.882225 0.010253 -14.460671 10.455298 4.963323 5.468903 10.531309 0.231445 1.442038 1.524691 7.426099 -11.279729 -5.446242 -3.701544 4.151982 -4.037725 -1.569932 6.404398 8.698799 5.468441 0.985562 4.463750 7.627701 8.614745 -2.493768 -8.326256 -1.633775 -6.148520 10.929035 -6.034297 5.132026 -0.686851 7.557562 1.717599 -10.347990 -2.345891 -17.068979 4.367409 8.330988 -7.127768 -0.003759 -11.670698 1.995573 -3.744891 -6.678542 4.948706 -0.223019 6.185472 0.959765 2.104668 -10.991294 -7.955778 6.949031 -1.536992 4.575136 3.967964 -1.285858 -5.275058 4.070559 -4.133322 -7.019405 1.207545 -0.550660 0.446915 -0.887562 6.093213 -5.938983 0.029313 0.053174 -7.275352 10.287916 -5.435733 11.616604 -3.417553 -1.896565 -4.844378 -1.730551 -2.992104 -11.360193 3.643854 11.126027 -5.354215 3.066384 -1.582815 3.296845 1.487088 -11.514635 -0.555985 -2.399927 -0.052910 7.894632 -7.499717 -2.494026 1.637774 1.371145 1.376886 10.936089 -3.078883 4.986509 9.562594 6.301893 0.975008 -7.398007 4.742296 1.740824 3.464061 6.378969 8.652177 -8.864425 -6.616199 -3.880661 2.446491 -15.188421 4.614374 6.771905 5.575217 1.536846 -15.777969 5.657217 -4.627070 11.192043 8.473016 9.673165 4.503231 -1.482102 -3.889155 3.544205 19.532413 -7.090438 6.831977 -5.431378 -13.599868 15.263753 -4.304976 10.573767 -0.563335 3.767025 5.878088 -11.581311 -0.220523 14.213719 3.804034 3.646552 13.078305 -2.658626 5.412622 -15.843856 -11.169484 -1.150526 2.352705 1.047464 20.655146 -7.221060 -3.239921 -2.437670 7.765182 -2.153991 -2.479450 -2.462319 -0.925715 2.167815 -24.100948 -16.335969 11.446872 11.204290 -2.193389 -1.590686 10.530631 3.013877 2.876719 -7.238527 -7.145475 7.893766 0.056119 8.420854 2.434327 0.342074 -10.937333 0.076331 1.956299 1.830234 9.220328 -11.994595 -10.689774 -1.405599 -16.237320 -8.858806 2.670369 -12.624996 -5.862234 -0.695778 1.351985 -0.351531 0.969661 -1.894326 -6.324721 3.114316 -6.543583 -4.887930 2.363806 8.292533 1.957049 11.898356 10.090837 1.809005 3.471080 6.192333 -5.322766 30.004999 -6.752023 -4.118740 -0.223706 9.410396 -2.724215 4.907009 2.972689 -2.542445 -7.395918 -10.609066 9.614392 -1.605378 2.409758 -17.888549 -5.244399 -7.789686 -4.230746 4.472684 11.887000 0.577644 22.409935 -0.736247 1.118250 -20.051282 0.171985 8.910587 -0.648705 8.800002 9.136534 -9.844463 -13.716603 -3.035576 -1.587033 11.925422 -2.321128 -12.428665 -7.852196 -0.727686 0.639160 -4.913563 7.221016 12.988271 -3.105557 4.767572 3.924240 -3.172074 -0.956173 -5.021856 4.900084 6.166306 -8.460511 12.416155 -4.832061 21.043658 -5.254525 9.642889 -9.784023 0.798988 -1.025362 -1.606769 -4.016733 13.579846 7.223060 4.315357 2.636166 -0.231157 -5.668892 5.825834 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -0.298337 1.281669 5.336104 2.515903 -1.493168 -2.386085 -1.170849 -3.757461 1.723603 1.013709 3.086641 -0.640942 1.264507 0.983430 -0.045902 -0.572595 1.225363 -0.400739 0.408457 -1.060143 -0.619681 3.451681 1.831082 -2.389692 0.132442 -4.118095 2.317286 1.102601 1.998526 2.522056 0.360042 0.069907 0.034249 1.651155 -2.198845 -0.634352 -0.336293 1.144255 -1.616896 -0.102705 0.831801 1.332872 1.600846 0.061962 1.701057 1.343053 2.075272 -0.307355 -1.699625 -0.640194 -1.576296 3.086415 -1.514089 1.251008 -0.049379 0.827919 0.049480 -2.043226 -0.627141 -2.970165 0.547201 1.242784 -1.795769 0.232994 -2.785052 0.703608 -1.399389 -1.535820 0.909602 -0.155084 1.739994 0.422137 0.633271 -1.711023 -3.150797 1.601219 -0.095639 1.013095 1.100608 -0.290052 -0.725433 0.786037 -1.417177 -2.172906 1.229663 1.201302 0.222681 -0.347763 0.255063 -1.015315 -0.324812 -0.094997 -1.015056 2.562608 -1.907671 2.382217 -1.260284 -0.707067 -1.433469 -1.860553 -0.466932 -2.813624 1.105297 1.901012 -0.880831 0.583111 -0.342638 0.906924 0.075627 -3.039084 0.124833 -0.635296 0.057841 2.898662 -1.855077 -0.698603 -0.369453 0.132384 0.014755 2.411933 -0.220332 1.288322 2.611987 1.836415 0.795412 -2.088753 0.316137 1.001416 1.110152 1.568698 1.894952 -2.453950 -1.669410 -0.504355 0.028767 -4.348130 0.287585 1.680573 1.719072 -0.223421 -2.843876 0.917005 -1.220979 2.839560 2.434199 1.775404 1.076004 -0.100719 -1.270314 1.158268 4.889363 -1.706765 1.921311 -1.656421 -2.664281 3.317751 -1.273189 2.469895 -0.011630 0.969988 0.793468 -2.767567 -0.102954 3.478839 0.933817 1.139293 2.228301 -0.149174 0.464386 -3.889655 -3.436243 -0.358792 1.406554 0.088091 4.643091 -2.012679 -1.270245 -0.284464 2.401412 -0.164623 -1.048644 0.118967 -0.977627 0.868078 -5.503274 -4.158528 3.419247 3.612341 0.210166 -0.509687 2.516359 1.302148 -0.986223 -2.040927 -1.806145 2.126311 -0.159699 -0.331360 -0.284226 0.233249 -2.967088 -0.176520 0.136389 0.665446 2.077581 -1.665679 -1.096493 -0.202814 -3.566464 -2.037519 1.556737 -2.690316 -1.544969 -0.293059 0.364120 -0.024521 0.736846 -1.034817 -0.989261 1.275383 -1.946195 -0.706921 0.943298 1.758485 0.242007 3.609105 2.914153 0.334023 1.439958 0.920223 -1.521535 6.400294 -1.549183 -0.684586 -0.144997 1.678622 -0.878080 1.331627 1.124863 -0.868654 -2.553528 -2.831436 1.527355 -0.343058 0.981101 -2.784577 -2.127131 -2.474226 -0.838826 0.977634 3.381005 0.429322 5.630440 -0.586925 0.776069 -5.189194 0.208868 1.840269 -0.255949 2.473140 1.862734 -2.352421 -2.790797 -0.752643 -1.176524 1.044648 -0.572712 -3.226372 -2.059353 -1.101986 1.009360 -1.393303 1.234402 2.678578 -0.387181 1.842980 0.707720 -0.785377 -1.024277 -0.389067 1.975613 1.048901 -2.247761 2.917886 -0.806772 6.211158 -1.277434 2.179357 -2.127796 0.236410 -0.331324 -1.055927 -0.958697 3.615635 2.358249 1.193181 -0.018814 -0.331671 -1.163299 1.510033 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp___GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/strongly-connected-components.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -2.109443 1.537074 9.614835 3.470409 -2.918368 -5.673918 -2.652871 -10.690538 5.900518 3.435773 7.998229 0.311441 4.649364 -1.133483 0.309282 -0.174106 3.775548 -1.826033 0.085416 -2.551979 0.139048 8.711169 2.141384 -2.550574 0.838871 -7.504527 2.759281 1.891780 4.102872 4.375258 1.404980 -0.106231 -1.174091 3.002847 -2.662954 1.509522 1.034176 2.539500 -3.574859 -2.159019 1.273232 0.317192 4.577752 0.570750 6.127485 -0.386458 3.459914 -0.945802 -3.374200 -2.719549 -2.101243 6.270602 -3.343294 3.285570 0.926016 0.057875 0.162950 -2.599249 -0.317105 -5.275916 0.780570 0.525250 -3.353762 -0.157765 -3.431098 1.352771 -1.681499 -1.826096 0.245810 -3.232476 3.646082 -0.078655 0.802997 -1.379437 -8.056232 1.858440 0.679193 0.429287 3.364482 2.232059 -1.554287 -1.503111 -3.047182 -5.249744 5.061305 4.155785 0.122584 1.612744 -3.978517 -0.391745 -0.727977 -0.616093 0.106614 4.913989 -6.177960 2.359687 0.584255 -2.574888 -2.272589 -4.754239 0.638622 -5.222733 1.620734 2.363870 -0.818729 0.407338 -1.873046 1.476812 -2.053589 -4.944025 2.296813 -1.471913 -1.082676 5.971901 -3.877760 -1.849326 -2.087464 -0.030323 0.457823 4.239272 0.865870 2.359249 5.093106 3.729040 3.739591 -5.112563 -0.452940 3.865940 4.075349 2.545211 1.543592 -4.716522 -2.555952 1.835018 -2.618105 -9.377463 -2.730836 4.371912 5.594049 0.041352 -4.603061 1.079202 -1.897041 5.224845 5.450396 2.005605 1.506347 1.263215 -4.322267 1.830767 8.400214 -2.935455 4.250301 -1.770453 -3.120773 5.379786 -3.861246 4.181207 0.118610 1.114801 -0.034166 -4.458839 0.051064 6.837982 1.623539 2.966312 -1.203908 1.395363 -1.909592 -7.667026 -10.491814 -2.477005 5.293476 2.426416 8.082179 -4.474353 -3.736783 -0.255558 5.772815 -0.877407 -4.001352 2.401178 -3.739233 3.204009 -10.209205 -7.748487 9.976959 9.773686 3.392606 -0.641709 5.221058 2.571672 -4.572593 -4.003082 -3.444789 3.983383 0.814322 -4.638957 -0.956795 0.504208 -6.734638 -2.228336 -0.829554 0.938562 1.352104 -0.815390 3.066906 0.390338 -3.625534 -2.342910 3.635414 -3.237815 -3.288691 -1.827398 0.823615 0.329070 2.833201 -2.748686 -1.361056 2.762347 -4.708122 -0.980840 1.786470 2.821133 1.394700 8.166206 7.503064 -1.090996 4.389803 -0.404595 -3.553812 9.669431 -4.021462 -0.630467 -0.566198 2.357698 0.367063 2.887106 3.457190 -2.507859 -4.132194 -5.872161 0.421735 0.314454 3.798332 -4.274203 -6.721129 -6.565607 -0.361234 0.710848 6.832080 -0.063489 11.457567 -2.926568 2.578728 -11.958406 0.808215 4.095521 -0.929587 4.157622 2.418433 -4.572833 -6.333123 -1.338474 -4.287829 -2.303196 -0.341389 -4.791970 -3.453421 -5.388652 5.546319 -4.815421 1.450963 3.814741 -0.145389 5.738035 0.367391 -0.965288 -3.828431 1.140985 3.614262 0.980947 -4.312017 5.254598 -0.024869 13.283544 -3.181395 4.414365 -3.393206 3.222693 -2.649929 -4.799562 -2.323150 7.179336 7.210037 2.336629 -1.257089 -0.420266 -2.487118 3.920465 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.226253 0.162352 1.491120 0.384908 -0.661053 -1.003202 -0.365379 -1.880216 1.177071 0.562350 1.064238 0.005986 0.853296 -0.772293 -0.169951 0.475204 0.844757 -0.042460 -0.046918 -0.540775 0.024256 1.238970 0.086329 -0.297195 0.514755 -1.253659 0.675751 -0.214330 0.657571 0.993522 0.487791 -0.102947 -0.289928 0.465946 0.550911 1.090937 0.558973 0.343414 -0.721730 -0.083917 -0.118884 -0.510494 0.531694 0.303262 1.293427 -0.078888 0.269467 -0.099921 -0.784954 -0.356143 -0.287038 0.763446 -0.813410 0.565261 0.061364 0.078011 -0.120635 -0.362119 0.047932 -0.801880 -0.144151 -0.510985 -0.679405 0.083369 -0.722529 0.228330 -0.417546 -0.190913 -0.524512 -0.478857 0.391001 0.259302 0.126754 0.364983 -1.319525 -0.067751 0.242296 0.140799 0.823526 0.163308 -0.122378 -0.803413 -0.621867 -0.921993 1.248912 0.480482 0.161323 0.456565 -0.625263 0.016219 -0.397805 0.026052 0.424823 0.685430 -1.170013 -0.230487 0.043277 -0.368208 0.035266 -1.324839 0.206532 -0.717215 0.085267 0.084158 -0.231929 0.249075 -0.261286 0.628628 -0.351322 -0.253098 0.606113 -0.228735 -0.459467 1.012093 -0.233098 -0.569187 -0.680417 -0.097935 0.305093 0.651271 0.065578 0.403800 0.851476 0.557568 1.089417 -0.783672 -0.283394 0.744703 0.613287 0.281557 0.269330 -0.655609 -0.466286 0.442938 -0.568164 -1.512149 -0.731650 0.344801 0.909826 0.158979 -0.579421 -0.309330 -0.303276 0.620346 0.623386 0.193653 0.102156 0.248472 -0.831113 0.156199 1.206290 -0.534642 0.534116 -0.304896 0.107743 0.349727 -0.395545 0.211512 -0.497763 -0.162406 0.016496 -0.522680 -0.076820 1.015057 0.102584 0.170541 -0.686272 0.465634 -0.766241 -1.171761 -1.520860 -0.536307 1.242953 0.249337 0.939117 -0.823582 -0.464866 -0.379720 0.844813 -0.010783 -0.407331 0.310916 -0.947953 0.618055 -1.330818 -1.290759 2.030431 1.417082 0.962119 -0.047442 0.340151 0.518407 -1.328380 -0.460176 -0.474354 0.267843 0.085157 -1.361611 -0.705470 0.217793 -1.290952 -0.557476 0.006860 0.249554 0.127552 0.302500 0.906269 0.336156 0.005977 -0.411841 0.650726 -0.327403 -0.545606 -0.232539 0.170441 0.398180 0.630011 -0.501826 -0.013269 0.518468 -0.632026 -0.200023 0.331420 0.621401 0.275047 1.303017 1.553658 -0.136680 0.426600 -0.191002 -0.849237 0.940089 -0.265180 0.206252 -0.047794 -0.090566 0.313995 0.272230 0.916774 -0.499411 -0.589646 -0.930839 -0.650049 0.190862 0.756820 -0.094330 -1.157475 -0.865426 0.130786 -0.068122 1.033847 0.041190 1.543033 -0.465278 0.509422 -1.651139 0.141794 1.098573 -0.204970 0.560996 0.358735 -0.682779 -1.072247 -0.268529 -0.897608 -0.774499 -0.285374 -0.020990 -0.504916 -0.621682 1.193305 -0.638765 0.068901 0.472449 0.361332 1.276957 0.019580 0.191700 -0.781106 0.394059 0.504528 0.103803 -0.621322 0.515167 0.538480 2.040622 -0.198177 0.320202 -0.404705 0.331078 -0.442931 -0.907610 -0.540115 0.990714 1.339447 0.468381 -0.003057 -0.156670 -0.328628 0.941754 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = -2.456198 1.085535 8.828647 2.129752 -2.732182 -5.574558 -2.596464 -9.360981 4.648280 3.443522 7.853784 -0.403663 4.248315 -0.664512 0.697881 -0.128843 3.554542 -2.405633 0.272222 -2.492283 -0.178024 6.995345 1.909682 -1.393411 0.979546 -7.124586 2.256925 1.977711 2.606076 3.933447 1.253655 -0.009784 -1.535593 2.471361 -2.133808 2.123280 1.982798 2.042287 -2.436089 -1.400037 1.138533 -0.105667 4.143202 0.063747 5.774347 0.387118 2.599393 -0.591638 -3.794622 -3.231412 -1.417686 5.216042 -3.013760 2.540691 1.204290 0.147529 0.116473 -2.870084 -0.565604 -5.172008 0.879074 -0.080989 -2.905979 0.178013 -2.436857 1.453892 -1.314991 -1.634672 0.680677 -3.409021 2.999249 -0.366236 0.536314 0.145794 -6.257673 1.740403 1.123644 0.262586 2.667089 1.310301 -1.562766 -1.102055 -2.895177 -4.668591 4.226135 3.942643 0.669954 1.152594 -4.247712 0.437695 -0.442208 -0.625337 0.224060 4.424096 -5.514931 1.339928 1.215895 -2.748577 -3.028059 -4.649090 0.651907 -4.463773 1.523198 2.836514 -1.417598 -0.091618 -2.868995 1.557873 -2.680638 -4.509984 2.187485 -1.981162 -0.579641 5.067661 -4.121697 -1.418097 -2.505848 -0.390962 1.142244 3.744381 0.515119 1.852590 4.716235 3.446123 3.257652 -4.639919 -1.041538 3.168537 4.411321 1.974408 1.302028 -4.640229 -2.161902 1.656815 -3.618261 -8.304992 -3.000611 3.107996 5.174820 0.249086 -4.362641 1.533737 -1.974077 4.847350 4.911965 2.151554 0.819021 1.134168 -4.356863 1.474567 7.088143 -2.967644 4.357107 -1.385416 -2.936081 4.414427 -3.125923 3.540322 1.263099 0.776237 -0.430513 -3.948936 -0.173755 5.949259 2.206056 3.362992 -1.627722 1.566091 -1.697517 -6.568468 -9.913761 -2.066692 4.876185 1.983122 7.387534 -4.644942 -3.686110 -0.610508 6.405482 -1.091248 -4.274088 1.832048 -3.008475 2.592285 -8.886689 -7.101944 9.116616 9.295325 3.509300 -0.035896 5.135583 2.106654 -4.851512 -2.901948 -3.037195 3.734365 0.375077 -4.629775 -0.805439 0.627695 -6.053558 -2.028285 -1.570948 1.147125 0.723216 -0.478976 2.996973 0.902124 -3.053700 -1.422669 2.802456 -2.896631 -3.233622 -1.627219 0.736475 0.704585 2.416161 -2.913417 -1.144976 2.493802 -4.871181 -0.590154 2.156324 2.710573 1.933776 8.269371 6.697497 -1.247711 3.831836 -1.068550 -2.934495 8.074922 -3.641012 -0.482029 -0.563815 2.225625 0.654166 2.105937 3.627909 -2.144559 -3.817153 -5.166575 0.163897 0.227434 3.302861 -3.415468 -6.441065 -6.892074 -0.085676 0.681392 6.827075 -0.084676 10.278052 -1.797265 2.207111 -10.693561 0.581481 3.161568 -0.999600 3.195450 1.893413 -4.091994 -6.697988 -0.948994 -4.394044 -2.692263 -0.032324 -3.860413 -2.919685 -5.110185 5.396525 -3.908311 0.873268 3.157889 0.542977 5.141489 1.994193 -1.005281 -3.452121 1.208292 3.544974 0.652026 -3.606741 5.283652 0.518132 12.367836 -2.490257 3.847853 -2.503014 3.000370 -1.803174 -4.024919 -1.961668 6.036973 6.841282 2.248127 -1.279107 -0.229626 -2.291000 3.677210 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = -0.378654 0.211222 1.781850 0.949760 -0.850231 -1.961537 -0.428443 -2.513138 1.381392 0.734993 1.882595 0.271463 1.537613 -0.881144 0.087191 0.140524 1.266723 -0.037205 0.060002 -0.713684 -0.316071 2.398739 0.198015 -0.403768 0.313923 -1.216931 0.944128 0.745951 1.020274 1.429046 0.433358 0.079254 -0.372540 0.510683 -0.515188 0.398916 -0.214138 0.704261 -1.034363 -0.489626 0.243404 -0.732607 1.529584 0.171580 1.257854 -0.246060 0.952418 -0.058313 -0.816246 -0.843848 -0.745097 0.980747 -0.748552 0.817334 -0.474424 -0.573827 0.571464 0.147030 0.134035 -1.147818 0.170044 -0.427833 -1.001110 -0.152508 -0.984947 0.247932 -0.737019 -0.870303 -0.181532 -0.832272 0.723804 0.115916 -0.040793 -0.412633 -2.481299 0.093663 0.438428 0.086776 0.928696 0.910899 -0.271928 -0.745486 -1.129600 -1.199635 1.624776 0.759718 0.323613 0.832817 -1.656702 -0.357680 -0.149512 0.242012 0.608128 0.694571 -1.165589 0.390253 0.193261 -0.571179 -0.375434 -1.621289 0.405819 -0.894993 0.246119 0.227805 -0.022087 0.135559 -0.640894 0.283820 -0.780861 -1.240694 0.576540 -0.815679 -0.608765 1.567050 -0.705145 -0.631136 -0.866397 0.049327 0.276499 0.922912 0.322079 0.440282 1.079152 0.765446 0.883699 -1.368057 -0.263526 0.934132 0.923165 0.524595 0.149097 -0.545921 -0.751875 0.559654 -1.132887 -2.355106 -0.974799 1.188419 1.374785 -0.207735 -0.746276 0.674774 -0.671711 0.965734 1.505841 0.304008 0.489648 0.479439 -1.193635 0.548597 1.698715 -0.681948 0.997999 -0.414883 -0.869291 1.510081 -0.541208 0.581264 -0.125992 -0.281861 -0.229454 -0.582468 0.313825 1.535980 0.206424 0.538351 -0.414343 0.522610 -0.757231 -1.645802 -2.584505 -0.381229 1.840582 1.197770 2.056956 -1.192579 -0.548096 0.176678 0.928477 -0.245759 -1.066335 0.665098 -1.000794 0.879718 -3.194035 -1.932956 2.712932 1.794436 1.117988 0.021195 0.810966 0.751651 -0.860321 -0.861555 -0.812882 0.793756 0.373351 -1.795462 -0.391588 0.267654 -1.764586 -0.513364 -0.061407 0.222468 0.170191 -0.374939 1.231424 -0.855070 -0.580844 -0.663428 1.007120 -0.828128 -0.492423 -0.352679 -0.080935 0.178326 0.670775 -0.325738 0.008507 0.235849 -1.013399 -0.193263 -0.059304 0.702110 0.383023 2.024091 2.319882 -0.664659 0.736922 -0.270728 -1.065557 2.251173 -1.071688 0.105915 -0.086072 0.925582 0.541325 0.666438 1.299301 -0.628089 -0.639115 -1.562607 -0.365206 0.861151 0.877651 -1.020421 -1.227298 -2.141576 0.120594 -0.211627 2.139410 -0.288029 2.583730 -1.121955 0.592861 -2.566244 0.263934 0.622888 -0.177906 1.149026 0.390527 -1.072047 -0.877560 -0.445068 -1.383331 -0.448144 -0.053922 -0.817927 -0.824003 -0.903253 0.762775 -1.397584 0.225845 0.678010 -0.486188 1.511173 -0.199669 -0.047961 -1.022803 0.537776 0.914914 0.252501 -0.892841 1.157927 0.199755 2.995334 -0.193750 1.014152 -0.696053 1.073570 -0.739745 -1.634566 -0.732204 1.695948 1.851080 0.385735 0.099958 0.224039 0.033676 1.139634 -PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.314859 0.359114 1.683724 0.966557 -0.755493 -1.829808 -0.370544 -1.923822 0.988997 0.488489 1.562545 0.244575 1.123737 -0.355138 0.230389 0.136706 0.855207 0.074296 -0.009223 -0.560803 -0.395583 1.810609 0.510684 -0.675840 0.265724 -0.879306 0.809336 0.814164 0.786404 1.201532 0.219804 0.010301 -0.218318 0.606830 -0.671606 0.142212 -0.364383 0.650688 -0.741697 -0.285826 0.285206 -0.390321 1.219110 0.250503 0.982462 0.161747 1.038761 -0.020140 -0.748580 -0.606951 -0.806663 1.114656 -0.782458 0.803909 -0.564711 -0.158057 0.465125 -0.054376 0.064701 -1.349969 0.203364 -0.096456 -1.011452 -0.208498 -0.962665 0.140320 -0.543051 -0.885887 -0.089989 -0.412014 0.790861 0.023545 -0.164370 -0.508281 -1.991661 0.044838 0.214073 0.270803 0.814576 0.486314 -0.420525 -0.423046 -0.888432 -1.037647 1.227813 0.293734 0.350506 0.581053 -1.106577 -0.338089 -0.178559 0.218787 0.274510 0.755244 -0.904208 0.684459 0.226076 -0.390022 -0.515687 -1.118809 0.287051 -0.862901 0.263247 0.248954 0.148347 0.006395 -0.697270 0.283833 -0.639143 -1.254086 0.381850 -0.590362 -0.635375 1.054266 -0.629767 -0.341518 -0.224497 0.020130 0.224021 0.947508 0.390809 0.321565 0.910291 0.746325 0.605328 -1.077469 -0.128851 0.484159 0.819362 0.699583 0.289008 -0.501097 -0.726692 0.382786 -0.837909 -2.057131 -0.376829 1.287277 1.107442 -0.031425 -0.959150 0.648881 -0.643959 0.806971 1.254782 0.623851 0.488286 0.248427 -0.934585 0.446054 1.760924 -0.694070 0.980710 -0.186676 -0.798902 1.506356 -0.632071 0.637993 0.052263 -0.220938 0.009855 -0.568059 -0.013435 1.431506 0.481830 0.489945 0.184164 0.297825 -0.607091 -1.522102 -2.032860 -0.392478 1.522603 0.818678 1.845012 -0.986557 -0.468735 0.099929 0.811255 -0.446078 -0.845234 0.315561 -0.646935 0.731455 -2.821539 -1.587447 2.201470 1.462678 0.784776 -0.005183 0.843731 0.723779 -0.462972 -0.849814 -0.714364 0.673348 0.191521 -1.001860 -0.271100 0.087686 -1.590324 -0.229153 -0.044824 0.193170 0.065590 -0.365574 0.598493 -0.529688 -0.808447 -0.551982 0.432685 -0.928065 -0.441106 -0.202915 -0.085101 0.052976 0.336338 -0.263765 -0.128624 0.293299 -1.045067 -0.197004 0.001147 0.661466 0.489609 1.918547 1.787290 -0.432054 0.712154 -0.003754 -0.914091 2.218258 -0.891436 0.073169 -0.028917 1.121652 0.335493 0.611676 1.031054 -0.511958 -0.648380 -1.408095 -0.069111 0.769552 0.738565 -0.888473 -0.928220 -1.705471 -0.025298 0.091103 1.887347 -0.427816 2.254256 -0.721402 0.633141 -2.310472 0.244871 0.495589 -0.253914 0.872391 0.484389 -0.948908 -0.998218 -0.427791 -0.919565 -0.182582 -0.035290 -0.719257 -0.663970 -0.640014 0.237736 -1.256479 0.285462 0.627109 -0.519354 1.131519 -0.179340 -0.082031 -0.629633 0.288219 1.073516 0.297449 -0.950612 1.063695 0.090274 2.805582 -0.213847 1.104255 -0.706507 0.682070 -0.482565 -0.999780 -0.620318 1.574616 1.530527 0.364790 0.223301 0.335096 -0.023869 0.883403 -PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -2.352676 1.665269 9.986419 3.984478 -3.375849 -6.446150 -2.711805 -10.960512 6.062718 3.555956 8.440489 0.499510 5.089732 -1.320018 0.370307 -0.391525 4.274110 -1.565858 -0.099227 -2.878317 -0.235571 9.025360 2.299915 -3.036019 1.037587 -7.351526 3.346937 2.309263 4.004423 4.907862 1.539739 0.078902 -1.380887 3.235007 -2.845669 1.451315 0.740147 2.770394 -3.632795 -2.267031 1.661407 0.050306 5.202840 0.856827 6.283091 -0.060012 3.611472 -0.901438 -3.854019 -3.017001 -2.187924 6.083305 -3.567592 3.611410 0.540305 0.111000 0.673860 -2.565941 -0.050022 -5.904532 1.040157 0.332853 -3.739197 -0.289151 -3.800173 1.253670 -1.873816 -2.337599 0.147460 -3.610583 3.702626 -0.285240 0.424737 -1.742830 -8.506013 1.659671 0.898068 0.458451 3.766744 2.546603 -1.892612 -1.865083 -3.525803 -5.552164 5.311951 3.853499 0.378333 2.145265 -4.415083 -0.765715 -0.547893 -0.382458 0.355836 5.091414 -6.222263 2.466686 0.866402 -2.787751 -2.482724 -5.088031 0.915662 -5.286988 1.675791 2.499016 -1.099274 0.362081 -2.271385 1.498879 -2.299016 -5.189679 2.392072 -1.972502 -1.257409 6.135908 -3.923839 -2.205193 -2.310637 -0.150286 0.879368 4.622710 0.953943 2.210797 5.387133 3.867500 3.832935 -5.526865 -0.432337 3.797287 4.151462 2.685687 1.633785 -4.663282 -2.834188 2.029480 -3.192056 -9.896057 -2.840758 4.608198 5.977772 0.043243 -5.016124 1.597821 -2.306080 5.181281 5.828457 2.444409 1.660443 1.303472 -4.691266 1.828485 8.644037 -3.145204 4.503983 -1.698185 -3.610177 5.950341 -3.749248 4.176873 0.112182 0.655123 -0.138309 -4.347726 0.241587 7.292889 1.638568 2.977177 -1.032340 1.479599 -2.116119 -7.947776 -11.137973 -2.447737 5.955417 3.143931 8.787155 -4.940938 -3.542399 -0.261084 5.884127 -1.081961 -4.305914 2.427751 -3.698708 3.429979 -11.377122 -8.192193 10.626639 9.850173 3.668832 -0.648795 5.242484 2.503983 -4.256055 -4.222336 -3.730821 4.103980 0.924219 -4.502963 -0.822128 0.599118 -7.250615 -2.178584 -0.752533 1.053166 1.485025 -1.485421 3.146315 -0.211194 -3.728563 -2.725539 3.547300 -3.483186 -3.273875 -1.790596 0.627126 0.378684 2.814545 -2.475430 -1.578700 2.447295 -4.892545 -1.144108 1.556828 3.153968 1.611133 8.784725 8.048079 -1.500477 4.193403 -0.416746 -3.836175 10.595875 -4.429304 -0.431431 -0.490383 3.103020 0.793638 3.017866 4.055207 -2.635626 -3.975970 -6.327270 0.260505 0.838926 3.994951 -5.104991 -6.654192 -7.445337 -0.223443 0.450708 7.669679 -0.437125 12.109947 -3.079977 2.705033 -12.377699 0.883028 4.263834 -1.065619 4.327328 2.583903 -5.002718 -6.522477 -1.458002 -4.758661 -1.945741 -0.202468 -4.552158 -3.704158 -5.061333 5.150703 -5.140566 1.562798 4.058062 -0.615670 5.905562 0.330370 -0.905786 -3.808065 1.010145 3.923584 1.070554 -4.514315 5.616037 0.148489 13.801402 -2.902427 4.872158 -3.490833 3.515572 -2.773052 -5.238717 -2.761969 7.586584 7.641045 2.432762 -0.872159 -0.068868 -2.226922 4.322297 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -4.359006 4.149641 20.923423 9.588988 -9.735194 -12.168092 -6.456351 -18.549615 9.050105 6.607974 14.920167 -2.939265 5.657355 1.137777 -0.311023 -1.087609 6.791151 -3.338462 -1.775216 -6.586093 -5.603274 12.769056 5.956512 -8.755984 3.339562 -14.848310 8.897652 3.731391 4.340544 9.043119 3.872386 0.272006 -1.614127 8.039733 -6.024523 4.886261 2.140016 4.812986 -5.823902 -0.956882 5.012072 2.834132 9.434006 1.555435 12.047416 7.263971 6.022598 -1.152497 -12.890027 -4.332413 -4.115415 12.349809 -7.686092 7.160033 1.214476 4.190532 0.809873 -11.183700 -2.074384 -12.176845 0.800951 1.711216 -7.344806 0.222852 -9.670115 1.950964 -2.750570 -5.721219 2.789477 -4.983819 7.220263 -0.594898 -0.400500 -2.914892 -10.288597 5.241401 3.425190 2.691414 7.248100 -0.164202 -1.990921 -1.083604 -6.241840 -10.158601 7.386385 3.970633 3.059637 2.761431 -2.157368 -3.720227 -0.055301 -1.798337 -0.421838 11.778617 -9.929261 4.429761 -0.437664 -6.115980 -8.893618 -9.972253 0.666455 -10.050648 5.713148 8.469980 -5.797198 2.251986 -1.517147 5.192969 -1.817085 -9.788764 2.228033 -4.526329 1.552623 11.759478 -7.076804 -6.426747 -2.941608 -1.826706 1.234108 9.855499 1.243683 2.943058 13.103766 7.990830 9.343989 -9.858263 -0.569066 3.129157 6.485212 6.115448 6.679142 -10.942636 -5.794355 2.011482 -5.090004 -17.716450 -4.146405 4.496849 11.338110 0.629262 -12.601326 4.279896 -4.913541 10.432927 7.759702 6.992591 3.564041 0.031001 -8.750892 2.904578 18.269427 -6.175002 8.260993 -5.333782 -9.566327 9.823813 -3.995464 7.802924 2.556095 -0.117472 1.156763 -10.666150 0.753968 14.060920 3.989034 2.652495 2.302024 2.943537 -4.354932 -15.617366 -18.828495 -1.836392 7.910801 2.340666 19.544805 -11.365866 -6.984319 -3.541469 14.032812 -1.994045 -5.743281 2.342510 -5.410813 5.587816 -20.077708 -16.500023 19.704030 18.723635 6.781796 -1.944626 11.455351 2.819710 -8.708498 -7.954158 -8.390207 7.419193 3.074810 -3.430241 -1.993593 0.914206 -13.416102 -3.225007 -1.158452 3.798193 6.018265 -5.163551 -0.511142 -0.394040 -10.385118 -6.141919 4.998699 -9.430197 -5.547922 -0.950062 1.833560 0.494431 5.411387 -5.223292 -6.066530 2.603334 -9.184904 -2.001311 4.555226 9.756844 2.338537 17.317922 15.309918 -2.763164 9.153166 0.691253 -6.919754 23.439674 -7.418948 -0.630397 -0.861922 6.848245 0.714946 3.387148 8.129983 -5.018796 -8.344158 -11.533637 2.414643 -0.124358 5.599278 -13.187616 -10.658490 -15.799736 -1.296268 0.770592 14.447651 1.319534 23.309913 -1.719268 3.724758 -24.066418 1.007494 10.122217 -1.483103 7.346077 6.899684 -10.915769 -17.053563 -1.918082 -9.592340 -0.712089 -1.330512 -8.107045 -8.110761 -7.007027 9.019478 -5.387420 3.739431 13.150528 -0.366182 8.545955 2.958504 -2.611032 -4.807823 -2.544611 9.064493 2.354234 -8.841936 12.487969 0.776316 29.117123 -3.067975 9.255599 -7.276490 2.814014 -1.792024 -6.985661 -6.144165 13.556932 12.075445 5.698114 0.565309 0.008106 -5.890569 8.928503 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = -0.213902 0.186961 0.927885 0.167515 -0.243783 -0.763843 -0.248683 -1.180849 0.505181 0.322694 0.940098 -0.064011 0.663706 -0.233948 0.118182 0.133706 0.521856 -0.145557 0.199082 -0.250279 -0.015038 0.946964 0.110059 0.063567 0.090989 -0.611926 0.184795 0.202244 0.469741 0.570437 0.129026 -0.065901 -0.157332 0.197525 -0.180736 0.220566 0.207773 0.324386 -0.470138 -0.115586 -0.178820 -0.292660 0.486736 -0.052899 0.586013 -0.053993 0.313561 -0.004993 -0.372771 -0.371700 -0.271440 0.605495 -0.400521 0.291709 0.010489 -0.368654 0.090910 0.092028 -0.051368 -0.577472 -0.003466 -0.222165 -0.277828 0.014092 -0.360473 0.216140 -0.349138 -0.306662 -0.029320 -0.199873 0.373000 0.177022 0.246045 0.225097 -0.980595 0.211576 0.206898 0.108202 0.317721 0.152499 0.032045 -0.175758 -0.339139 -0.585895 0.715124 0.453450 0.217646 0.192475 -0.713149 0.133421 -0.074209 0.025761 0.164812 0.329482 -0.461116 0.213312 -0.005579 -0.219049 -0.199187 -0.917002 0.017458 -0.497505 0.102717 0.186422 0.111611 -0.009733 -0.516328 0.270989 -0.403970 -0.642347 0.391328 -0.241519 -0.406040 0.660909 -0.500706 -0.069818 -0.281541 0.059775 0.105021 0.378316 0.136340 0.360752 0.249435 0.420337 0.374240 -0.554136 -0.161105 0.372449 0.565744 0.238324 0.154515 -0.368790 -0.357604 0.244214 -0.571513 -1.042679 -0.453219 0.570841 0.613555 -0.032756 -0.383663 0.167562 -0.305376 0.547857 0.661492 0.183249 0.139127 0.150732 -0.513910 0.294107 0.660745 -0.436616 0.625619 -0.018986 -0.205837 0.451328 -0.335102 0.326326 -0.000671 0.015684 -0.026595 -0.372971 -0.109428 0.685554 0.419842 0.417893 -0.301510 0.194697 -0.369693 -0.836628 -1.070416 -0.208331 0.831877 0.127536 0.653127 -0.442183 -0.510185 0.143330 0.629521 -0.171708 -0.563693 0.219455 -0.421817 0.371116 -1.202494 -0.873639 1.178749 0.978265 0.483907 0.015710 0.361105 0.505903 -0.724066 -0.376917 -0.296163 0.384113 -0.145954 -1.110334 -0.488626 0.120020 -0.737112 -0.174109 -0.102922 0.138936 -0.004216 0.200489 0.536250 0.044220 -0.278417 -0.061296 0.425177 -0.345776 -0.369247 -0.151882 0.023042 0.225140 0.287089 -0.373755 0.048975 0.401850 -0.675841 -0.093088 0.091458 0.337314 0.245547 1.098891 0.891417 -0.093207 0.377466 -0.125935 -0.539067 0.777083 -0.405163 0.033964 -0.126784 0.268501 0.055321 0.281713 0.562049 -0.268536 -0.633201 -0.733740 -0.281184 0.240848 0.433644 -0.065221 -0.858437 -0.752159 0.125329 0.113193 0.877080 -0.084501 1.131229 -0.382678 0.289871 -1.120821 0.109811 0.209387 -0.162750 0.507262 0.194275 -0.379016 -0.604533 -0.207884 -0.613330 -0.500097 -0.077111 -0.505710 -0.211891 -0.598546 0.554317 -0.526546 0.013458 0.124998 0.068030 0.792848 0.254708 -0.137160 -0.572384 0.385436 0.543817 0.027402 -0.432986 0.581979 0.169856 1.546210 -0.200463 0.291213 -0.338427 0.249785 -0.153519 -0.461431 -0.210725 0.813382 0.954832 0.247943 -0.126737 0.046501 -0.108425 0.426715 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = -0.007092 0.155141 0.755034 0.164259 -0.129552 -0.766339 -0.168927 -1.204728 0.535795 0.318025 0.811847 -0.059343 0.649391 -0.292582 0.059832 0.215525 0.429547 -0.002068 0.107570 -0.230924 -0.067792 0.896563 -0.123612 0.071881 0.115096 -0.564979 0.247677 0.314126 0.442473 0.461665 0.155754 0.006843 -0.073973 0.166622 -0.247265 0.201387 0.102729 0.287170 -0.436132 -0.162285 -0.112760 -0.203347 0.455391 0.020118 0.528580 -0.043806 0.316991 -0.001545 -0.146782 -0.286680 -0.248092 0.523526 -0.226014 0.259872 -0.199932 -0.347861 0.126063 0.059871 0.048958 -0.305338 0.071629 -0.089519 -0.381395 -0.036750 -0.333224 0.134458 -0.193453 -0.317540 -0.063880 -0.218594 0.302741 0.048478 -0.007501 -0.022552 -1.019822 0.064655 0.213385 -0.014251 0.334697 0.154362 0.057006 -0.255214 -0.399852 -0.500113 0.823914 0.536357 0.196108 0.321003 -0.695021 -0.067838 -0.129190 0.032436 0.308919 0.317182 -0.377651 0.112055 0.026344 -0.201224 -0.182886 -0.724053 0.173642 -0.384002 0.112674 0.023515 0.185769 0.113108 -0.156213 0.227620 -0.309631 -0.502265 0.236828 -0.294392 -0.182514 0.671636 -0.268075 -0.228831 -0.333583 -0.020044 0.010289 0.334796 0.169568 0.193642 0.420265 0.307575 0.339475 -0.536907 -0.233904 0.433745 0.373436 0.269030 0.019464 -0.413365 -0.270124 0.210673 -0.541843 -0.978727 -0.419507 0.371545 0.515954 -0.267304 -0.257719 0.319361 -0.223144 0.360451 0.593298 0.043818 0.128079 0.206737 -0.454600 0.215464 0.635881 -0.307561 0.428069 -0.192877 -0.201496 0.292203 -0.174802 0.180006 0.014968 -0.105322 -0.065643 -0.229608 0.101870 0.595107 0.175156 0.310237 -0.265092 0.249976 -0.458157 -0.611517 -0.984252 -0.191996 0.699081 0.197038 0.742698 -0.416113 -0.428329 0.085181 0.526050 -0.184509 -0.373445 0.299745 -0.498513 0.371336 -0.964124 -0.751579 0.989388 0.736473 0.566759 -0.070969 0.349780 0.356767 -0.527522 -0.292167 -0.209463 0.299797 0.125367 -1.023698 -0.318543 0.046110 -0.680281 -0.183167 -0.115928 0.108358 -0.120398 0.203959 0.621965 -0.264171 -0.229994 -0.172536 0.417950 -0.274787 -0.121442 -0.190242 0.009169 0.032931 0.297592 -0.374550 0.058334 0.303437 -0.464497 0.025164 0.075641 0.195383 0.161708 0.911922 0.829980 -0.193717 0.471501 -0.162502 -0.400155 0.645082 -0.277209 0.055486 -0.041150 0.244169 0.085252 0.276138 0.482224 -0.258038 -0.408351 -0.686918 -0.292384 0.328270 0.341693 0.089904 -0.499277 -0.758168 -0.009212 -0.073800 0.901315 -0.052276 0.962043 -0.389300 0.325992 -0.935025 0.121754 0.124112 -0.178736 0.392095 0.134603 -0.385331 -0.433008 -0.122347 -0.556162 -0.701566 -0.063470 -0.436641 -0.322762 -0.555711 0.384559 -0.536912 0.012780 0.196791 0.051896 0.550566 -0.145446 -0.020435 -0.446818 0.351351 0.483315 -0.016490 -0.425277 0.284033 0.128922 1.364213 -0.137774 0.419590 -0.308168 0.341801 -0.252868 -0.551192 -0.247617 0.679547 0.770863 0.176855 -0.063750 0.067111 -0.015122 0.453725 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = -0.586307 0.154214 1.577108 0.233294 -0.636283 -1.242899 -0.406124 -1.970318 0.917873 0.636352 1.643757 0.020764 1.084705 -0.556513 0.236829 0.201089 1.015519 -0.381356 0.157698 -0.550861 0.127702 1.301264 0.216499 0.027402 0.308751 -0.981244 0.288421 0.281121 0.558414 0.871154 0.387937 -0.123589 -0.500486 0.342578 -0.005754 0.663783 0.568557 0.432273 -0.746564 -0.232608 -0.190492 -0.500301 0.850775 -0.071163 1.261661 -0.205533 0.481383 0.003279 -0.903227 -0.725169 -0.280136 0.976747 -0.722872 0.534308 0.266881 -0.411851 0.053310 -0.072421 -0.065315 -1.090820 0.013386 -0.497889 -0.460444 0.037814 -0.466899 0.292352 -0.429765 -0.381172 -0.083469 -0.665874 0.513875 0.110223 0.267975 0.531292 -1.377834 0.194191 0.390330 0.133835 0.603780 0.333438 -0.054164 -0.529028 -0.513464 -0.919320 1.065301 0.674982 0.314348 0.377581 -1.302163 0.400962 -0.077527 -0.018902 0.294698 0.524469 -1.102985 0.017979 0.246350 -0.547620 -0.386931 -1.348370 0.186133 -0.731328 0.177179 0.334390 -0.110509 -0.045699 -1.082346 0.445593 -0.779121 -0.777733 0.696369 -0.440461 -0.519340 1.037144 -0.906750 -0.226935 -0.697325 0.048811 0.366205 0.595305 0.152911 0.511336 0.524603 0.702626 0.815065 -0.973325 -0.303554 0.607275 1.045185 0.350033 0.191908 -0.553447 -0.499557 0.519740 -1.098128 -1.660600 -0.889481 0.748752 1.162326 0.241348 -0.692768 0.008309 -0.509214 0.969882 0.991872 0.368163 0.142584 0.343878 -0.969243 0.309651 0.956877 -0.675985 1.014802 0.097003 -0.166581 0.527992 -0.510405 0.476005 0.092525 -0.056990 -0.118304 -0.571273 -0.280599 1.080136 0.728008 0.665233 -0.828385 0.459673 -0.584543 -1.354202 -1.975448 -0.421258 1.347970 0.378528 0.973100 -0.858490 -0.816599 -0.012911 1.112482 -0.285895 -1.082239 0.382057 -0.739153 0.628930 -1.738136 -1.331405 2.089838 1.852699 0.920104 0.072941 0.656717 0.608656 -1.451271 -0.474916 -0.490256 0.588511 -0.218446 -1.727070 -0.610272 0.272107 -1.277202 -0.435495 -0.219665 0.271050 -0.053059 0.271713 1.062874 0.378556 -0.211630 -0.014249 0.598102 -0.375225 -0.715192 -0.287342 0.068302 0.572628 0.524286 -0.647021 -0.011387 0.577735 -1.192256 -0.228597 0.229559 0.708288 0.516245 1.800432 1.419846 -0.185728 0.675596 -0.377929 -0.957133 1.078121 -0.629094 0.129555 -0.208680 0.313498 0.324736 0.354499 0.994445 -0.499998 -0.863924 -1.091369 -0.579205 0.322109 0.902118 -0.270366 -1.555123 -1.334049 0.324167 0.117689 1.303675 -0.210891 1.857706 -0.557131 0.468655 -1.930904 0.124154 0.538488 -0.237762 0.634156 0.261737 -0.688948 -1.157774 -0.264047 -1.178183 -0.801370 0.017623 -0.405575 -0.380721 -1.004728 1.293184 -0.820584 -0.034097 0.193059 0.121436 1.417850 0.604251 -0.139980 -0.801489 0.537966 0.778703 0.108421 -0.703422 1.035137 0.434543 2.536941 -0.252614 0.415455 -0.423623 0.506018 -0.296405 -0.835947 -0.456486 1.219713 1.742631 0.490342 -0.278847 0.014836 -0.307215 0.813034 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = -0.024243 0.392989 1.253451 0.166058 -0.471517 -1.037317 -0.265062 -1.629608 0.719636 0.479184 1.006975 -0.006353 0.816532 -0.300003 -0.029168 0.244870 0.688139 0.000813 0.060464 -0.472575 -0.298181 0.963748 -0.099377 0.021041 0.336233 -0.883637 0.564721 0.271628 0.573109 0.713538 0.312468 0.034308 -0.289495 0.400630 -0.052419 0.285726 0.235827 0.385527 -0.605237 0.003748 -0.037269 -0.310799 0.695371 0.245687 0.766207 0.176012 0.174366 0.072659 -0.404931 -0.375151 -0.180973 0.534467 -0.389432 0.456209 -0.156428 -0.237179 0.060594 -0.105542 0.175335 -0.379836 0.052337 -0.308654 -0.463712 0.020732 -0.575392 0.079160 -0.430483 -0.526925 -0.209808 -0.417318 0.351237 0.030468 -0.063931 0.036723 -1.295639 0.052187 0.367220 0.073082 0.626837 0.198884 -0.083517 -0.384455 -0.645207 -0.822315 0.923157 0.661590 0.270647 0.408351 -0.823564 -0.231400 -0.112652 0.042274 0.438039 0.606345 -0.693625 0.072047 -0.151574 -0.394329 -0.357429 -1.222080 0.238680 -0.505021 0.245381 -0.051862 -0.106551 0.091116 -0.286498 0.322896 -0.249588 -0.485521 0.346503 -0.452604 -0.164620 0.992284 -0.243255 -0.473288 -0.556984 -0.173993 0.170989 0.516155 0.175938 0.090980 0.742777 0.456572 0.570828 -0.724963 -0.272487 0.458686 0.316761 0.309671 0.232689 -0.606033 -0.411309 0.347842 -0.718684 -1.366004 -0.456762 0.269121 0.681511 -0.341282 -0.306710 0.209457 -0.465227 0.350521 0.734917 0.203358 0.231879 0.146296 -0.614820 0.210870 0.918452 -0.440443 0.559240 -0.301336 -0.298865 0.459032 -0.221603 0.305016 -0.123181 -0.243754 -0.136954 -0.302595 0.097329 0.906310 0.116601 0.261688 -0.236392 0.270946 -0.613617 -0.805990 -1.332505 -0.238844 1.040395 0.331696 0.962970 -0.705452 -0.357488 -0.065003 0.826494 -0.067895 -0.462102 0.404362 -0.535379 0.494374 -1.212933 -1.023138 1.353632 1.134718 0.668034 -0.194622 0.340380 0.313961 -0.824343 -0.591937 -0.391929 0.301757 0.024971 -1.199403 -0.531037 0.173778 -0.963740 -0.107109 -0.088218 0.224869 0.257874 0.097236 0.744984 -0.178421 -0.261767 -0.511466 0.546095 -0.307524 -0.273037 -0.108249 0.044410 0.101579 0.420825 -0.355512 -0.150933 0.317208 -0.570505 -0.011520 0.177254 0.426246 0.116644 1.270014 0.997888 -0.264408 0.358212 -0.164802 -0.554773 1.010219 -0.432163 0.199678 0.036210 0.351489 0.068874 0.387092 0.761274 -0.376380 -0.548092 -0.883287 -0.431894 0.266429 0.436567 -0.084232 -0.755380 -1.064746 0.096743 -0.176989 1.168786 -0.065284 1.371786 -0.320248 0.454898 -1.194768 0.146443 0.354336 -0.239638 0.607323 0.301609 -0.678111 -0.526920 -0.207187 -0.903595 -0.717224 -0.005175 -0.262721 -0.471723 -0.409860 0.500018 -0.520827 0.041285 0.358674 -0.025670 0.798017 -0.111527 0.028165 -0.597100 0.312839 0.858223 -0.053716 -0.521218 0.484675 0.274821 1.733663 -0.036213 0.550427 -0.268811 0.196169 -0.147815 -0.756144 -0.522181 0.957703 0.955908 0.420070 -0.073895 0.021917 0.020731 0.696018 -PE-benchmarks/strongly-connected-components.cpp__main = -0.163090 2.094125 7.425884 2.433752 -3.215660 -5.882905 -2.037449 -8.591365 3.682453 2.262473 5.575642 -0.590305 3.022976 0.181562 0.208042 1.141786 3.167635 -0.464411 -0.103650 -2.724724 -1.939947 5.763771 0.835058 -1.514694 1.408782 -5.502605 2.712891 2.289032 3.019440 3.362682 1.530104 -0.088266 -0.962916 2.566151 -2.064218 1.191906 0.538425 1.602409 -3.675172 0.228451 0.572456 0.204164 4.140334 0.675088 4.223495 1.755412 2.705643 0.392042 -3.120459 -1.630211 -2.098661 5.109079 -2.009768 2.775677 -0.453034 0.066430 0.114403 -2.496072 -0.199071 -2.269442 -0.006482 0.200663 -3.043167 0.038406 -3.611463 0.621099 -1.962683 -2.650922 0.373592 -1.504551 2.728862 -0.341453 -0.727800 -1.156013 -6.444265 1.104440 1.256632 1.235066 2.812152 0.230435 -0.248122 -0.684708 -3.122172 -4.041171 3.741118 3.084114 1.152952 1.183979 -3.037596 -1.773974 -0.655687 -0.364155 0.992258 3.720024 -4.061165 1.667495 -1.001406 -2.248065 -3.415692 -5.106533 0.812003 -3.092950 2.022872 0.544426 -0.371563 0.628163 -0.564314 1.585768 -0.895666 -3.727755 0.934808 -1.509246 -0.116381 5.657201 -1.921602 -2.400725 -1.873606 -0.766297 -0.459129 3.422000 1.127837 0.796599 4.658726 3.178381 3.064536 -3.748827 -1.113543 1.616610 2.072786 2.541570 2.263701 -3.543427 -2.451373 1.093123 -2.583257 -7.296018 -1.663775 2.237836 4.247950 -1.008047 -2.548864 1.005133 -2.285058 3.537516 3.368932 1.683159 1.547224 0.070943 -3.335569 1.651718 6.903331 -2.310306 3.300753 -2.531013 -2.538027 3.439481 -1.542625 2.557521 0.595906 -0.593853 -0.453884 -2.679832 0.322400 5.065538 1.277060 1.038964 0.568708 1.292712 -2.571872 -5.211133 -7.407631 -0.851504 3.828424 1.032660 6.533949 -3.908565 -2.719410 -0.930835 4.604973 -0.653086 -2.466987 1.980800 -2.991114 2.359861 -7.198003 -5.733001 7.437308 7.257613 3.007253 -1.082971 3.753918 1.890616 -4.167904 -3.585199 -2.563189 2.661710 0.782963 -4.382027 -1.586319 0.511074 -5.240736 -0.707461 -0.614767 1.523529 1.710065 -0.250623 2.187955 -1.046330 -3.741836 -2.739662 2.667653 -2.932700 -1.461749 -0.169260 0.243349 -0.218837 2.215699 -2.182746 -1.457450 1.686117 -3.509636 -0.008461 1.292365 2.906148 0.657513 6.638497 5.654109 -0.699188 4.377591 -0.110025 -3.067741 7.680519 -2.586699 0.603193 -0.216314 2.090736 -0.426034 1.843572 3.111159 -1.880919 -3.494410 -4.604896 -0.100829 0.623732 2.447106 -2.227082 -4.152107 -6.152735 -0.420711 -0.001710 6.240975 0.070542 8.170746 -1.651174 2.257788 -8.548178 0.793005 2.316789 -0.683930 3.137539 2.035961 -4.031825 -4.239520 -0.583475 -4.271501 -2.404670 -0.166377 -3.331280 -3.239765 -2.910497 2.931000 -2.827050 0.696266 3.877268 -0.666031 3.832881 -0.346469 -0.783695 -2.323005 0.188840 4.853504 0.358559 -3.439727 3.547678 0.458163 11.224195 -0.600623 3.739593 -2.190479 0.739881 -0.547790 -3.654508 -2.508939 5.427698 4.850844 1.991496 -0.239885 -0.108421 -0.827246 3.113912 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = -1.498457 0.827263 5.711391 0.150139 -2.357603 -3.407694 -1.535441 -7.246860 3.386339 2.708007 5.272566 0.129718 3.491458 -1.558920 0.099633 0.654885 3.102605 -1.670249 0.662052 -2.005702 -0.486284 4.379814 0.381826 0.773601 1.265608 -4.483046 2.192707 0.044970 2.207669 3.091957 1.486750 -0.105241 -1.715712 1.578205 0.922181 2.433684 1.822190 1.725143 -1.885240 -0.144975 0.073010 -1.970298 2.738240 0.588616 4.341304 -0.334116 0.581362 -0.160977 -2.641968 -2.245189 -0.395630 2.169595 -2.661501 1.597038 0.741320 -1.050654 -0.338250 -0.750162 0.053786 -2.415279 -0.136319 -2.265750 -1.602112 0.520175 -1.868814 0.934807 -2.181367 -1.077753 -0.794619 -2.418552 1.621054 0.520852 0.691306 1.791553 -4.904943 0.665203 1.492647 -0.079764 2.382800 0.929272 -0.846938 -1.583881 -2.328271 -3.714719 3.733977 3.122902 0.683970 0.814828 -3.678518 0.806854 -0.491845 0.074018 1.217851 2.864860 -4.192151 -0.243485 -0.002883 -2.137973 -1.304083 -5.291120 0.704288 -2.872809 1.016934 0.905235 -1.605369 -0.213102 -2.617451 1.290479 -1.807185 -2.256764 1.822766 -1.775604 -0.650308 3.911968 -2.230126 -1.345476 -3.031045 -0.446374 1.691293 1.832963 0.568408 1.142246 3.325804 2.261416 2.932390 -3.272492 -1.143808 2.377764 2.398500 0.754257 0.693127 -2.617476 -1.636530 1.741356 -2.979096 -5.668062 -2.836493 1.346642 3.258547 -0.392039 -1.476484 -0.157823 -1.677897 2.434698 3.780633 0.943888 0.544245 1.119446 -2.998111 0.979692 3.745779 -1.945763 2.746552 -0.814205 -0.921792 2.391532 -2.024736 1.708332 -0.129658 0.150349 -0.937367 -2.207712 -0.401862 3.889563 0.909130 1.911444 -2.331961 1.367397 -1.556604 -3.859425 -6.411639 -1.402056 4.825481 1.677885 3.398107 -3.262595 -1.625285 0.041650 3.938925 0.596583 -3.068216 1.650764 -2.102476 2.039289 -5.363743 -4.623104 6.328133 6.028280 2.892171 -0.169403 1.697876 1.745175 -4.900137 -2.059248 -2.099447 2.075537 -0.632781 -5.311657 -2.196779 1.108020 -4.137043 -1.211944 -0.858299 0.938279 1.342150 0.195222 3.295872 1.253895 -0.519438 -1.211607 2.857063 -1.040179 -2.740896 -1.109404 0.396101 1.422007 1.896813 -1.590217 -0.143751 1.515367 -3.078284 -0.421170 1.510696 1.929956 0.716528 5.629559 4.612618 -1.169714 0.702695 -1.311374 -2.197282 3.277451 -1.981254 0.373019 -0.107497 0.625467 0.646787 1.476406 3.413565 -1.651587 -2.937363 -3.391819 -1.563905 0.333220 2.570721 -0.769544 -4.731045 -4.508837 0.983463 0.060714 4.540661 0.069928 6.444693 -1.219581 1.803419 -5.780223 0.347642 2.077106 -0.732906 2.769211 0.989025 -2.550324 -2.490775 -1.133907 -3.931583 -2.523809 0.157290 -0.730405 -1.910035 -2.688708 3.961523 -2.114327 0.003111 0.711246 0.485465 4.416202 1.520127 -0.265559 -3.208783 1.843739 3.038585 0.089651 -2.013446 3.239019 1.295216 7.558298 -1.076177 1.503666 -0.937904 1.381972 -0.938447 -3.026765 -1.684784 4.097804 5.007987 2.035526 -1.257295 -0.490244 -0.673560 2.900696 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = -2.942250 -0.292164 5.465383 0.610384 -1.861781 -3.929224 -1.691695 -6.659484 3.296627 2.489156 6.498060 0.115288 3.680364 -1.954364 1.310490 0.650210 3.408516 -2.631675 0.621800 -1.830073 1.061087 5.026139 1.633832 0.199527 0.804390 -3.920067 0.149490 0.958194 1.555291 2.809279 1.172613 -0.376807 -1.419664 1.088949 -0.355688 2.867529 2.196794 1.356802 -2.039839 -1.095143 -0.363045 -1.242468 2.918883 -0.748694 5.032698 -1.215538 2.285894 -0.296465 -3.500489 -3.001273 -1.021574 4.055666 -2.807844 1.494595 1.386057 -1.123636 0.128600 -0.922521 -1.003231 -4.630936 -0.082849 -1.237662 -1.611507 0.177133 -1.008831 1.459798 -0.914378 -0.609360 0.239787 -2.507019 2.106171 0.499095 1.149051 2.230588 -4.121082 1.117547 1.220026 0.224426 1.558900 0.928211 -0.726497 -1.407891 -1.278701 -3.018703 3.667727 2.417290 0.925102 0.907088 -4.524576 2.370778 -0.474106 -0.305801 0.320865 1.838373 -4.335243 -0.138420 2.286528 -2.277861 -1.714885 -3.444374 0.460259 -2.878727 0.522619 2.158007 -0.331832 -0.368165 -4.763630 1.319187 -3.585905 -3.018902 2.357167 -1.421790 -1.770401 3.155763 -4.268439 0.027994 -2.462358 0.547224 1.447392 2.145989 0.304440 2.274508 2.120462 2.697118 2.505623 -3.366483 -0.833927 1.977962 4.797314 1.039262 0.528238 -2.103891 -1.713620 1.714788 -3.728617 -5.581245 -3.593129 3.128227 4.298746 1.519623 -3.141320 0.345353 -1.223419 4.433611 3.942056 1.034618 0.192543 1.399297 -3.701469 1.396239 3.676272 -2.437960 4.022478 0.369392 -0.793113 2.443978 -2.675284 2.023743 1.281818 0.376907 -0.667572 -2.490908 -1.185578 3.637174 3.191320 2.917929 -3.421493 1.705748 -0.849394 -4.913539 -7.598368 -1.793588 4.018463 1.358201 3.845817 -2.939007 -3.320003 -0.127617 3.987617 -1.077816 -4.440063 1.125967 -2.576708 1.966116 -6.411481 -4.740426 7.859053 7.349437 3.440570 1.024223 3.337356 2.384109 -5.097280 -0.983343 -1.515660 2.764644 -0.533703 -5.712987 -1.408769 0.902469 -4.403182 -2.225207 -1.613371 0.858999 -0.842192 0.861154 3.549791 1.976150 -1.117252 1.009932 1.737236 -1.500340 -3.252069 -1.415307 0.300825 2.179245 1.707979 -2.454353 0.325503 1.973296 -4.861895 -0.978022 1.187284 2.672220 2.451079 6.108656 5.438918 -0.659228 2.989893 -1.682967 -3.003361 3.010562 -2.275649 -0.081232 -1.008482 0.930405 1.475090 1.039309 3.092483 -1.546910 -2.986502 -3.480967 -0.816784 0.994303 3.344866 -1.340164 -6.029252 -4.723136 0.980914 1.186257 4.497234 -0.772318 6.862080 -1.952211 1.434513 -7.872746 0.324476 1.690473 -0.410707 1.785024 0.784188 -2.206030 -4.793370 -0.865235 -3.903964 -2.651795 0.226380 -1.865185 -1.360230 -4.556650 5.657385 -3.429781 -0.074307 0.706687 0.767531 5.178045 3.349236 -0.887704 -2.977312 1.978069 2.269326 0.721724 -2.233970 4.062474 1.117182 9.133610 -1.673028 1.542712 -1.633567 2.603289 -1.193172 -2.665008 -1.040370 4.210929 6.617979 1.228963 -1.198706 -0.272525 -1.479061 2.792005 -PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.636674 0.460827 2.391177 2.197014 -1.945923 -2.388707 -0.651999 -2.416319 1.559562 0.564572 2.022611 0.202868 1.350116 -1.026539 -0.255563 -0.738856 1.386182 0.438959 -0.640089 -1.054593 -1.094221 2.098852 0.379433 -2.049719 0.656631 -1.158318 1.870847 1.169897 0.445418 1.662731 0.532391 0.257853 -0.710147 1.040257 -0.856957 0.221186 -0.216989 0.717333 -1.046332 -0.679179 1.174988 -0.241219 1.963467 0.187050 1.447648 0.703427 0.925676 0.033553 -1.942031 -0.785050 -0.421205 0.852381 -0.754144 1.319499 -0.178892 0.397436 0.997719 -0.984518 0.255846 -2.103331 0.612332 -0.258218 -1.122430 -0.245432 -1.573596 -0.070210 -0.141613 -1.532377 0.311941 -1.549577 0.587820 -0.365359 -0.439739 -1.179817 -1.728649 0.136738 0.724397 0.415450 1.273053 1.245882 -0.354349 -0.991857 -1.418512 -1.159187 0.864493 -0.041994 0.559770 1.206964 -1.084828 -1.059873 0.644711 0.034571 0.526813 1.085214 -1.242526 0.342598 0.002154 -0.723601 -0.958025 -1.549704 0.581390 -0.824052 0.637269 0.968818 -1.321978 0.500830 0.042398 0.526453 -0.388743 -1.153500 0.338210 -1.319049 0.248325 1.822778 -0.543584 -1.485917 -0.790236 -0.380231 0.318959 1.508199 -0.045505 0.101952 1.665048 0.963301 1.152457 -1.691954 -0.190380 0.644640 0.797106 0.786478 0.700022 -1.123973 -0.715620 0.458664 -1.359876 -2.687488 -0.697321 0.557024 1.802054 -0.045183 -1.899582 1.236465 -1.042029 1.163994 1.001997 1.097937 0.554872 0.236968 -1.538521 0.337883 2.055808 -0.562682 0.899649 -0.545628 -1.877465 1.667993 0.265101 0.618521 -0.118584 -0.725198 0.038091 -0.829724 0.727853 1.809747 0.045088 0.052924 0.243931 0.504188 -1.132958 -2.252006 -3.057076 0.118116 1.743853 1.712831 3.490137 -1.966907 -0.691685 -0.544815 1.576160 -0.637706 -0.882514 0.486498 -0.884409 1.063178 -3.548821 -2.558438 3.256785 1.914159 0.984472 -0.119117 1.397075 -0.296566 -0.438864 -1.144812 -1.333715 0.609578 1.018991 -0.515048 0.172822 0.294903 -2.205971 -0.382709 0.332176 0.499059 1.011086 -1.387296 0.372451 -1.352217 -0.879559 -1.511893 0.739307 -1.012431 -0.148107 0.098606 -0.010253 0.095483 0.922510 -0.193314 -1.093946 -0.604412 -0.971042 -0.309264 -0.078880 1.304628 0.394249 2.618327 2.604583 -0.898075 1.070874 0.147368 -1.184406 4.146852 -1.476843 0.288606 0.090323 1.745054 0.921474 0.557468 1.710604 -0.829035 -0.150125 -1.871795 -0.290547 0.593961 0.813593 -3.312082 -1.022413 -2.907991 -0.076494 -0.609399 2.119010 -0.273927 3.372345 -0.758199 0.257868 -3.493027 0.090625 1.692196 -0.198877 1.154059 0.805092 -1.750240 -2.181227 -0.246691 -1.631533 0.288266 -0.253939 -0.563013 -1.179047 -0.179756 0.574633 -0.971219 0.589719 2.208345 -0.848050 1.148253 -0.390097 0.083256 -0.350011 -0.718238 0.754120 0.344839 -1.126023 1.725102 0.343580 3.746206 0.374746 1.387156 -0.891032 1.271004 -0.630614 -2.042613 -1.266894 1.739568 1.782172 0.659588 0.554900 0.601963 -0.523563 1.610512 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.198128 0.547659 2.071949 0.885581 -1.370135 -1.674195 -0.569803 -2.330521 1.255191 0.481308 1.173669 -0.124489 0.802380 -0.628640 -0.292291 0.534937 1.142848 0.121156 -0.200103 -0.881571 -0.590795 1.573600 0.212077 -0.751065 0.707581 -1.475075 1.280363 -0.012214 0.864329 1.433776 0.660375 -0.196218 -0.416939 0.844165 0.484443 1.231522 0.431932 0.482000 -1.159134 0.228267 0.069998 -0.523328 1.035386 0.308265 1.468409 0.645282 0.524750 0.117070 -1.419588 -0.304217 -0.648405 1.153985 -1.107815 0.946911 -0.011543 0.234093 0.032512 -0.711850 -0.043499 -0.828449 -0.422958 -0.561728 -0.938801 0.100501 -1.424588 0.130365 -0.764698 -0.631058 -0.452447 -0.412090 0.589891 0.280374 -0.006940 0.166880 -1.640878 0.111439 0.470418 0.647209 1.171402 0.056882 0.064612 -0.760250 -0.962084 -1.235961 1.194526 0.238372 0.473853 0.505258 -0.507517 -0.419664 -0.330255 0.060547 0.459594 0.990939 -1.226161 0.021218 -0.536944 -0.467946 -0.545117 -2.056225 0.225168 -0.770414 0.409825 0.148891 -0.450182 0.209303 -0.079618 0.732603 -0.141623 -0.565930 0.513976 -0.415103 -0.411567 1.509303 -0.159388 -0.890276 -0.690494 -0.314118 0.151857 1.053468 0.254395 0.325123 1.159724 0.935365 1.634714 -1.060309 -0.405306 0.459802 0.564535 0.593827 0.835502 -0.804731 -0.753949 0.472266 -0.707469 -2.051081 -0.620456 0.511158 1.278526 0.230614 -0.779511 -0.281396 -0.703201 0.878207 0.519641 0.517909 0.398475 -0.030705 -1.011222 0.402666 1.890112 -0.658541 0.715553 -0.681930 -0.254709 0.846965 -0.263832 0.373142 -0.481709 -0.429022 -0.052799 -0.759279 0.017785 1.404730 0.220484 -0.078075 -0.092895 0.469110 -1.035068 -1.706672 -1.782612 -0.267829 1.574218 0.268061 1.586514 -1.265899 -0.482437 -0.507873 1.117384 -0.053505 -0.403797 0.328196 -1.079992 0.848401 -2.019289 -1.762326 2.704077 1.810852 0.956528 -0.184266 0.483572 0.633663 -1.617728 -0.918492 -0.919327 0.422865 0.077760 -1.452348 -0.916825 0.283502 -1.737231 -0.393236 0.211118 0.554395 0.715403 0.123677 0.532659 -0.027561 -0.486085 -0.993894 0.811550 -0.727232 -0.510310 0.154370 0.116356 0.342506 0.821122 -0.453530 -0.385469 0.371225 -0.814763 -0.224938 0.300663 1.086155 0.166028 1.768916 1.980551 -0.176604 0.807341 0.122679 -1.192409 2.039674 -0.436895 0.478118 0.006467 0.350011 0.280273 0.371714 1.323683 -0.671390 -0.919633 -1.349289 -0.703196 0.268751 0.883056 -0.716903 -1.418800 -1.518186 0.104226 -0.029073 1.484993 0.056262 2.137017 -0.432632 0.620515 -2.317543 0.231558 1.484303 -0.156256 0.864007 0.677494 -1.137091 -1.348482 -0.322964 -1.268551 -0.590455 -0.390629 -0.164578 -0.782574 -0.427977 1.064740 -0.567217 0.143483 1.126271 0.060522 1.449670 -0.013326 0.144372 -0.827825 -0.064989 1.072405 0.165513 -0.867914 0.942855 0.711895 3.040136 0.098567 0.571839 -0.588600 0.058111 -0.132510 -1.207085 -0.839079 1.421709 1.460004 0.618790 0.319845 -0.040265 -0.299517 1.193698 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.463800 0.313980 2.643212 1.367229 -1.312725 -2.373463 -0.603398 -3.583389 2.123469 1.115596 2.492040 0.529394 2.115575 -1.268924 -0.144262 -0.140217 1.735207 -0.070946 0.147198 -0.959726 -0.343800 3.547639 0.190350 -0.547788 0.378110 -2.067212 1.655164 0.767873 1.782212 2.203294 0.607047 0.053874 -0.687345 0.725743 -0.490506 0.360235 -0.379300 0.973438 -1.538790 -0.720340 0.502212 -1.134767 2.193680 0.293100 1.687595 -0.655400 1.010614 -0.205669 -1.016040 -1.119355 -0.971660 1.030678 -1.039107 1.182364 -0.449649 -0.847462 0.591306 0.355555 0.277826 -1.326897 0.267843 -0.768920 -1.173707 -0.145128 -1.488667 0.314722 -1.436444 -1.103562 -0.291417 -1.453103 0.923075 0.256252 0.227963 -0.725401 -3.725220 0.260854 0.535224 0.075243 1.340069 1.602336 -0.415263 -1.018891 -1.630090 -1.729991 1.999216 1.325084 0.113562 0.983940 -2.222641 -0.678415 -0.102475 0.415749 0.785609 1.070040 -1.862474 0.648284 -0.371629 -0.735787 -0.136262 -2.554497 0.449617 -1.374877 0.384519 0.268913 -0.422804 0.194556 -0.461240 0.299585 -0.719990 -1.671989 0.844218 -1.014654 -0.720872 2.466671 -0.828513 -1.089722 -1.412688 0.096025 0.385025 1.177535 0.309799 0.636369 1.508171 1.005912 1.461695 -1.976798 -0.262241 1.690616 0.971925 0.591705 0.169627 -0.686783 -0.934508 0.737813 -1.245135 -3.344315 -1.298656 1.456358 1.854481 -0.398707 -0.686766 0.546211 -1.021713 1.322201 2.171788 0.332921 0.817385 0.742739 -1.606770 0.791670 2.453604 -0.807676 1.135642 -0.817616 -1.348013 2.292634 -0.775654 0.999679 -0.629254 -0.064067 -0.226036 -1.005665 0.559067 2.241910 -0.210926 0.724442 -0.561555 0.618771 -0.906307 -2.363417 -3.570880 -0.533683 2.665611 1.919781 2.733261 -1.669932 -0.496266 0.351438 1.277199 0.157484 -1.396803 1.135966 -1.340849 1.232036 -4.637592 -2.803510 3.623289 2.653260 1.263912 -0.101768 0.907901 1.020289 -1.207496 -1.399480 -1.366257 1.114062 0.441534 -2.446063 -0.556649 0.462826 -2.332521 -0.702925 0.210833 0.198911 0.844414 -0.859209 1.651809 -1.090932 -0.710704 -1.347469 1.988787 -1.176830 -0.799554 -0.537659 -0.054546 0.209489 1.094310 -0.285539 -0.048675 0.367328 -1.058983 -0.253903 -0.073056 0.803674 0.119379 2.486251 3.150760 -0.918130 0.551975 -0.248203 -1.418626 3.551201 -1.698455 0.030814 -0.020838 1.022634 0.607369 1.126491 1.662829 -0.938642 -0.875089 -2.147078 -0.490768 0.816393 1.218873 -1.765093 -1.877108 -2.850597 0.258991 -0.414523 2.712519 -0.085221 3.810166 -1.648422 0.743021 -3.467886 0.274784 1.187534 -0.116262 2.061391 0.551408 -1.511733 -0.855065 -0.690299 -1.867507 -0.061050 -0.123308 -1.254718 -1.213216 -1.147531 1.175622 -1.712558 0.456425 0.939032 -0.831967 2.274911 -0.467589 -0.085478 -1.642887 0.720972 0.986770 0.435465 -1.170198 1.753097 0.153130 3.780097 -0.417489 1.230354 -0.928766 1.526241 -1.203439 -2.526445 -1.034514 2.410999 2.374932 0.784274 -0.125497 0.110939 -0.068993 1.495407 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.644981 0.359725 4.169721 1.843167 -1.667801 -3.330883 -0.985105 -5.799037 3.485574 2.000000 3.922000 0.675686 3.319475 -2.035505 -0.326289 -0.069501 2.529158 -0.237355 0.178301 -1.426254 -0.282389 5.516036 0.049929 -0.738679 0.596507 -3.624529 2.541738 1.061729 2.670249 3.275531 0.928475 0.224805 -0.851299 1.161894 -0.777494 0.844859 -0.279348 1.531935 -2.135514 -1.213236 0.828873 -1.353915 3.079382 0.474765 2.904514 -0.968932 1.319866 -0.496732 -1.332356 -1.699380 -1.148057 1.514363 -1.511907 1.726875 -0.761385 -1.150009 0.667359 0.233760 0.451454 -1.975663 0.590964 -0.874677 -1.857142 -0.192106 -2.117454 0.542061 -1.732976 -1.489818 -0.528932 -2.337679 1.364466 0.299241 0.186328 -1.181096 -5.637307 0.399025 0.903814 -0.226782 2.061003 2.203472 -0.740175 -1.705986 -2.433860 -2.727945 3.369599 2.548963 0.082271 1.660633 -3.229015 -1.031920 -0.307555 0.536088 1.268251 1.971639 -2.913824 0.666388 -0.296539 -1.173524 -0.112033 -3.561074 0.812167 -2.248770 0.606344 0.511026 -0.623971 0.542216 -0.246670 0.618652 -1.100601 -2.281512 1.225837 -1.586265 -0.729116 3.778337 -1.067792 -1.818279 -2.333104 0.018114 0.616592 1.820651 0.357399 0.910044 2.796220 1.477472 2.304119 -3.124279 -0.534231 2.917362 1.441906 0.892554 0.069602 -1.578440 -1.299541 1.098625 -1.947501 -5.079533 -2.172487 1.784865 2.769403 -1.099346 -1.099387 1.087129 -1.323981 2.027922 3.414759 0.246229 1.045312 1.283648 -2.539279 1.120888 3.907268 -1.163759 1.538451 -1.548281 -1.988225 3.188583 -1.166885 1.485800 -0.893818 -0.085143 -0.437676 -1.626753 1.153741 3.470878 -0.574238 1.283918 -1.208679 1.057894 -1.392809 -3.429229 -5.599095 -1.107096 3.854604 2.860965 4.485638 -2.555913 -0.949796 0.344273 2.167538 0.326041 -1.932394 1.862147 -2.260194 1.922901 -6.664867 -4.347595 5.495062 4.187417 2.328583 -0.228763 1.652759 1.373850 -1.802712 -1.926763 -1.856391 1.741852 1.012424 -3.724753 -0.717711 0.665025 -3.565750 -1.334488 0.062442 0.257157 1.008534 -1.042509 2.676175 -1.598802 -0.985589 -2.061653 3.053449 -1.675461 -1.143000 -1.098869 0.092107 0.130404 1.769559 -0.767260 -0.046288 0.675595 -1.447262 -0.192898 0.174432 1.018971 0.184092 3.546570 4.886971 -1.552313 1.004199 -0.549308 -1.851798 5.038929 -2.324517 -0.044026 0.110148 1.228195 0.915442 1.709113 2.409343 -1.440274 -1.101947 -3.303864 -0.699267 1.185548 1.827035 -2.383528 -2.728590 -4.183098 0.239085 -0.780111 4.223905 0.064028 5.883728 -2.399531 1.293130 -5.387125 0.422497 1.859771 -0.259802 2.939942 0.851095 -2.343426 -1.668988 -0.909506 -2.780891 -0.837108 -0.256120 -1.950685 -2.054467 -2.035934 2.067336 -2.652438 0.685093 1.627241 -0.837177 3.332372 -1.014329 -0.004902 -2.599182 1.182756 1.300571 0.556043 -1.792147 2.220354 0.233573 5.789437 -0.936614 2.104985 -1.438132 2.612176 -2.049775 -3.962227 -1.564568 3.617913 3.565572 1.214898 -0.271390 -0.005668 -0.218798 2.472424 -PE-benchmarks/strongly-connected-components.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.409952 -0.069641 8.474069 0.854056 -3.528254 -4.722853 -2.388962 -10.357156 5.068555 3.965125 9.559729 0.486004 5.704415 -2.780648 1.263034 -0.115004 5.393068 -3.800970 2.110314 -2.414472 1.864510 8.307555 2.067480 1.395466 0.638542 -5.877552 1.656115 0.152624 3.855366 5.023175 1.700280 -0.993749 -3.020882 1.273219 1.007390 3.591619 2.747517 2.679423 -3.272876 -1.541436 -0.783200 -4.330868 4.459164 -1.079290 6.877036 -3.389422 2.454044 -0.867325 -5.098065 -4.441232 -1.680250 4.272493 -4.837149 2.186738 2.797880 -3.389355 -0.266088 0.788843 -1.105547 -5.995115 -0.353076 -3.999865 -1.546370 0.725706 -2.054729 2.437468 -4.083602 -0.567103 -0.231899 -4.079419 2.786461 1.641587 3.491771 4.282302 -7.905708 2.053774 1.687079 0.166270 2.382947 2.649159 -0.757924 -2.006341 -2.398005 -5.087517 4.903760 4.434101 0.591828 0.296127 -7.361478 3.980188 -0.176431 0.457938 0.275170 2.940297 -6.970489 0.760177 0.650509 -2.936362 -0.976773 -8.052302 0.013977 -5.061232 0.809885 2.838001 -1.864122 -1.234278 -7.047813 1.700715 -4.440076 -5.225491 3.859750 -2.049990 -3.141367 5.279870 -6.145200 -0.102632 -4.533228 1.121076 2.985641 2.202922 0.422030 4.013575 2.136592 3.791169 4.592580 -5.372356 -1.142155 4.219905 6.099480 0.928897 0.361795 -1.912571 -2.467079 2.605810 -4.825831 -8.498252 -5.454202 5.021553 6.121047 2.039493 -2.704000 -1.622822 -2.600894 6.376523 6.822158 1.950768 0.627589 2.685803 -5.076326 2.098223 4.807197 -3.432907 5.549290 0.791076 -1.019202 4.513039 -4.279553 3.619139 0.163333 2.101646 -0.975227 -4.405637 -2.373920 5.836008 3.626451 4.491101 -5.153116 2.025246 -1.033196 -7.618157 -10.851615 -2.496208 8.046892 3.031316 3.849325 -4.438692 -3.818163 1.730181 5.241096 0.623787 -7.097799 2.198148 -3.150367 3.099691 -11.081730 -7.622568 10.728990 10.562033 3.870136 1.200132 3.022201 4.264512 -8.518322 -2.593182 -3.428196 4.535132 -2.799341 -9.456773 -3.319979 2.022306 -6.328277 -2.717854 -1.174184 0.979685 1.000610 0.283457 5.588439 3.676181 -0.716950 0.575795 4.958535 -2.100699 -6.043846 -2.424029 0.309775 4.002058 2.743771 -2.731731 1.021448 3.319157 -6.535062 -1.680923 1.438096 2.956756 2.011634 9.103906 8.069619 -0.890295 1.225268 -2.301715 -4.645400 5.415891 -4.201597 -0.356429 -1.431687 0.440305 1.564124 2.294908 5.141605 -2.548937 -5.581447 -5.408343 -2.338214 0.523881 5.432592 -2.395664 -9.961286 -6.726684 2.633741 1.893933 6.315900 -0.275465 10.742270 -3.383705 2.140437 -10.505712 0.289136 3.084120 -0.585405 4.968357 0.868037 -2.999372 -4.370062 -2.011094 -5.743590 -1.781390 0.279350 -2.817575 -1.861563 -6.076382 7.825169 -4.155682 -0.138284 -0.716388 0.489027 9.007699 5.397119 -1.677004 -5.525626 3.852078 3.262507 1.181757 -3.163142 7.174797 1.701542 12.637200 -2.903089 0.767740 -2.056173 3.474263 -2.096879 -4.409502 -1.333786 6.889116 9.776669 2.970525 -3.090058 -0.792602 -2.217012 3.524124 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.405048 0.210521 1.434332 1.170063 -0.762590 -1.817033 -0.360347 -1.779161 1.035441 0.464121 1.556587 0.196648 1.236835 -0.717860 0.128041 0.084859 1.051118 0.099018 -0.055374 -0.566965 -0.504387 2.055855 0.468280 -0.721422 0.242827 -0.708337 0.771083 0.768950 0.714084 1.204685 0.255890 0.119168 -0.088498 0.502799 -0.706887 0.234077 -0.474170 0.683009 -0.764871 -0.498152 0.339845 -0.645416 1.357545 0.150678 0.874242 -0.020520 1.118975 -0.111731 -0.917861 -0.680066 -0.833661 0.964045 -0.738221 0.730940 -0.597688 -0.349749 0.798467 0.074705 0.064501 -1.363607 0.132964 -0.231264 -0.997644 -0.247058 -0.916804 0.192926 -0.481602 -0.916892 -0.073328 -0.461162 0.680828 0.171246 -0.101018 -0.530383 -1.908752 0.125368 0.396211 0.177567 0.766652 0.794091 -0.257908 -0.577589 -0.956920 -0.977898 1.440163 0.118744 0.472742 0.797028 -1.230179 -0.365447 -0.081025 0.281283 0.391655 0.548244 -0.764569 0.534509 0.435534 -0.449279 -0.473700 -1.170774 0.237470 -0.798465 0.148717 0.428453 0.023948 0.165055 -0.759504 0.232147 -0.748354 -1.253913 0.385124 -0.787473 -0.759526 1.063256 -0.692237 -0.423692 -0.388188 0.138972 0.253820 0.877766 0.292160 0.419319 0.897627 0.622383 0.596184 -1.114237 -0.033722 0.459211 0.898495 0.512374 0.245438 -0.336638 -0.771711 0.404565 -0.911475 -2.032355 -0.703284 1.333177 1.153441 0.040615 -1.042097 0.905380 -0.526457 0.847417 1.249146 0.432988 0.462513 0.315303 -0.959848 0.468761 1.485749 -0.706028 0.972689 -0.204647 -0.965274 1.599890 -0.482739 0.494161 -0.030700 -0.364736 -0.075400 -0.537657 0.238584 1.377550 0.338222 0.332692 -0.047534 0.332061 -0.556595 -1.527405 -2.143709 -0.235020 1.494177 1.044075 2.019236 -1.014683 -0.461960 0.199688 0.612086 -0.524491 -0.876867 0.311556 -0.743303 0.732683 -3.074096 -1.760824 2.432715 1.214399 0.835163 0.178872 0.794561 0.626676 -0.363990 -0.739379 -0.738800 0.692584 0.456110 -1.151087 -0.267679 0.180998 -1.582882 -0.346227 -0.043909 0.163671 -0.004119 -0.556525 0.736701 -0.985480 -0.711790 -0.433113 0.519989 -0.925358 -0.377091 -0.230837 -0.130899 0.150747 0.468825 -0.109258 -0.087376 -0.063041 -0.992844 -0.340763 -0.240374 0.785805 0.527886 1.871534 2.210540 -0.623361 0.687341 -0.092107 -0.959103 2.129903 -1.021301 0.015181 -0.133801 1.212476 0.553835 0.543526 1.247408 -0.478284 -0.493789 -1.384315 -0.100278 0.956252 0.602273 -1.233860 -0.796265 -1.877474 -0.009623 -0.054005 1.924310 -0.447476 2.208795 -0.962978 0.411411 -2.361826 0.245199 0.484528 -0.146762 0.930456 0.443846 -0.955445 -0.962214 -0.478047 -1.030628 -0.055418 -0.073377 -0.711719 -0.643518 -0.618991 0.323709 -1.372559 0.312585 0.698085 -0.521175 1.166598 -0.040284 -0.052439 -0.714103 0.332581 0.854587 0.312423 -0.739410 1.099918 0.118865 2.658937 -0.084380 0.979467 -0.777050 0.882554 -0.525559 -1.237782 -0.632691 1.481442 1.596685 0.162198 0.398392 0.401169 0.041528 1.060075 -PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.241380 1.158143 5.918681 3.181847 0.371121 -1.302865 -0.914399 -3.909253 2.247510 0.958986 4.776219 -1.889258 1.987873 0.518409 -0.404048 -1.184488 2.369517 -1.456364 1.142836 -0.552003 2.876089 4.441327 1.569459 -2.347875 0.366010 -4.625562 1.544908 1.393945 1.797830 2.300524 0.776112 2.013291 1.296722 1.044652 -1.883029 -0.097049 -0.130716 1.640440 -1.246176 -1.446104 0.476329 0.527995 0.937861 0.825443 2.556065 0.670148 3.128553 -1.609475 -1.401840 -0.859482 -4.336309 4.124078 -2.145195 -0.447952 -1.561129 -1.069439 1.547824 -1.750530 -1.067850 -5.202976 0.297836 1.561884 -1.652892 0.087993 -2.310082 2.739140 -0.091615 0.387185 0.158700 -0.250724 2.318157 1.673100 1.823658 0.092139 -3.697554 2.739363 -0.270798 0.544154 1.157576 -0.513179 -0.536015 1.550408 -0.829160 -2.332111 3.651089 1.679157 1.174834 0.466079 0.083593 0.034308 -2.116876 -0.318227 -2.260474 2.575020 -2.445291 2.678925 1.111188 -1.266182 -0.952453 0.503301 -0.351858 -3.564346 -0.054023 3.606422 -0.807186 1.411090 -2.615227 0.484225 -1.329531 -3.428992 0.877407 -2.006870 -1.178959 2.691566 -3.853662 0.103932 -1.513865 1.559347 1.064224 2.922087 -2.099793 3.419710 0.845235 1.850207 0.377257 -1.743111 0.887302 2.325821 2.437935 1.173670 1.070157 -1.986024 -2.099862 -1.667570 0.014651 -3.690779 -1.519568 2.874582 2.956521 0.875220 -5.300228 2.523440 -0.651841 4.231890 3.777148 1.002314 0.638997 1.995639 -2.365596 1.548117 5.326763 -2.311798 2.697685 -1.023617 -0.897904 3.178760 -2.184084 2.604283 0.405553 1.516624 1.093831 -3.161384 -1.394334 3.236423 2.550534 1.474904 1.631324 0.322798 2.361415 -5.176923 -5.199570 -2.253532 1.738493 -0.349065 4.394858 -1.946020 -1.516382 -0.168021 2.424062 -0.654298 -1.630092 -0.505925 -1.534452 0.825010 -6.305950 -5.146036 4.213994 3.755850 0.178995 1.407557 2.590279 2.244102 -0.688309 -1.084826 -0.615477 3.548050 -1.059976 -0.725808 -0.224294 -0.361985 -2.535857 -3.042005 -0.582861 0.344750 -0.186304 -0.735743 1.201288 0.021942 -2.564708 -0.710974 -0.232414 -3.073783 -3.823831 -0.828100 -0.076597 1.138100 0.615218 -1.940707 0.787194 2.630021 -2.785405 -2.139176 0.443516 1.211764 0.738354 2.214275 4.813043 0.652507 1.464599 0.581999 -2.222119 5.421773 -0.291162 -0.791554 -0.863132 0.013995 1.056219 1.614435 0.695241 -1.058506 -2.450277 -4.158493 2.376362 0.091649 1.968064 -2.679407 -2.576664 -2.260654 -0.568409 3.098090 3.017320 -0.155164 6.773425 -1.119402 -0.839786 -6.119876 0.080917 3.060066 -0.461008 1.834804 1.868653 -2.437036 -3.310357 -0.720228 -1.435103 0.898868 -1.396416 -4.247843 -2.845319 -2.337445 3.399023 -3.212404 1.489985 2.027254 1.692929 1.961439 2.231145 -0.962280 -1.558832 0.054282 0.882549 2.112188 -2.309761 3.120081 -1.943232 5.347372 -3.263054 1.768946 -3.100218 2.304073 -1.024216 -1.081505 0.003548 5.504276 3.291889 0.134513 -0.086916 -1.497998 -1.143247 2.885222 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = 0.164375 0.324627 0.600767 0.168004 -0.092430 -0.273243 -0.104435 -0.528583 0.138569 -0.000851 0.227614 -0.206050 0.132944 0.093616 -0.071975 0.010287 0.174562 0.200061 0.049141 -0.108613 -0.083730 0.254784 -0.093795 -0.228619 0.100628 -0.405151 0.163700 0.199195 0.318404 0.242263 -0.064761 -0.025771 -0.053365 0.181670 -0.268321 -0.267866 0.233320 0.080962 -0.422381 0.067048 -0.111193 0.281606 0.122569 -0.067426 0.104695 0.329815 -0.056223 0.091129 -0.104371 0.065547 -0.037339 0.358356 0.021519 0.244477 0.045463 -0.058589 -0.047680 -0.152259 -0.015894 -0.078319 0.057977 0.176319 0.023838 -0.002513 -0.306674 0.007780 -0.043282 -0.301957 0.153881 0.071625 0.151984 0.026174 0.083644 -0.137949 -0.331191 0.234864 0.176656 0.268616 0.162560 -0.142976 0.272130 0.088720 -0.145491 -0.244146 0.103157 0.243960 0.169815 0.059102 -0.002346 -0.241771 0.133528 -0.087685 -0.006455 0.249619 0.013189 0.200075 -0.476577 -0.003763 -0.179829 -0.506126 -0.060090 -0.141155 0.152172 0.028934 0.036154 0.184905 0.288589 0.305649 0.166950 -0.236738 0.114423 -0.008333 -0.029157 0.450836 0.036768 -0.198369 0.005526 -0.091662 -0.262491 0.291117 -0.003971 0.095681 0.097317 0.269793 0.127895 -0.198230 -0.132284 0.077685 -0.009585 0.275758 0.321847 -0.399382 -0.149979 0.000994 -0.195694 -0.479826 0.050388 -0.014767 0.263416 -0.224892 -0.153830 0.086842 -0.267474 0.236376 0.029926 0.090922 0.102872 -0.140812 -0.127129 0.210227 0.423795 -0.208589 0.167378 -0.225084 -0.150185 -0.073333 0.109042 0.176040 -0.131129 -0.064098 0.180760 -0.225784 0.042319 0.350310 0.154941 0.055389 0.191167 -0.008319 -0.288525 -0.429851 -0.267033 0.000750 0.119294 -0.253854 0.446828 -0.127424 -0.405507 -0.139138 0.430983 -0.177996 0.077760 0.090770 -0.215246 0.151847 -0.233041 -0.403440 0.368581 0.442994 0.074010 -0.218124 0.199015 0.073607 -0.209258 -0.283427 -0.086352 0.050103 -0.010551 -0.411674 -0.355558 -0.023667 -0.238697 0.080871 0.118853 0.122995 0.175379 0.235619 -0.043515 -0.021068 -0.387520 -0.322412 0.243226 -0.251711 0.118294 0.147164 0.040140 -0.049241 0.194076 -0.317419 -0.250014 0.264331 -0.171479 0.038372 0.039155 0.188350 -0.038467 0.334150 0.149398 0.182954 0.415039 0.211630 -0.305728 0.692039 -0.097707 0.108785 0.042015 0.062053 -0.267538 0.178429 0.117548 -0.103664 -0.320126 -0.446348 -0.174184 -0.063447 0.099297 -0.030766 -0.332676 -0.159953 -0.109163 0.046936 0.254671 0.070068 0.489410 -0.034066 0.126049 -0.437247 0.032313 0.169736 -0.121856 0.240198 0.231481 -0.281310 -0.577496 0.017381 -0.231387 -0.343590 -0.160272 -0.452295 -0.160302 -0.150236 0.130648 0.010666 0.105725 0.396843 0.122614 0.185408 -0.174284 -0.047014 -0.145720 -0.077747 0.287856 -0.060810 -0.301264 0.060031 0.100062 0.813119 0.003213 0.198448 -0.269179 -0.249646 0.134210 -0.105169 -0.116682 0.346835 0.198761 0.218346 -0.015788 0.021491 -0.160461 0.196602 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.789695 -1.284874 28.293151 6.284593 -9.103509 -13.164206 -8.637931 -28.896857 15.452242 12.394273 31.473573 0.188338 16.766684 -7.901766 3.938417 -4.101708 15.976830 -15.062823 5.482616 -7.294844 5.740141 25.780467 11.121574 -1.031118 1.696970 -21.458329 6.637074 0.727567 8.564281 17.133370 4.953327 -1.162951 -6.826579 5.972734 -0.192080 10.799280 8.612585 8.445827 -6.175910 -6.486820 2.227320 -6.382553 13.645519 -2.099474 21.984503 -5.550724 8.165239 -4.346200 -17.869849 -13.997758 -5.961964 14.784265 -17.201011 5.866894 8.767093 -5.792526 2.751756 -3.947922 -5.401590 -25.348712 -0.440536 -7.727910 -5.622792 2.091881 -6.918591 8.446164 -9.717968 -0.590293 1.475170 -12.040447 10.723934 5.464258 10.747220 10.744866 -18.539207 9.817240 4.254097 0.721332 8.093872 5.615717 -5.922718 -3.252762 -6.405587 -16.060703 14.989637 9.247982 2.557587 1.338056 -16.344611 11.383669 -1.329948 -0.336299 -2.860754 11.315667 -19.060210 3.194742 7.517759 -10.039383 -4.531980 -17.524360 -0.798229 -17.425413 2.101534 16.794905 -8.169988 -3.705399 -23.953781 4.521811 -15.197880 -16.963442 12.361045 -7.710156 -8.690794 13.596208 -22.491589 0.950457 -12.208332 3.901489 11.164516 11.020924 0.411111 13.244163 8.289442 12.907667 11.914302 -16.034011 -1.171846 11.029581 21.189379 3.076079 3.017182 -9.273942 -8.760709 6.647921 -13.265612 -25.745920 -15.507382 16.074069 19.219328 9.648564 -16.705205 1.507146 -6.866911 21.222637 21.691474 7.566528 2.243731 7.341260 -16.169123 8.000044 18.100791 -12.037564 18.050360 1.656603 -7.407558 17.728501 -15.583595 12.539630 3.007622 7.045561 -1.085420 -16.545759 -6.394751 19.553525 13.300618 15.010160 -11.794104 5.909515 2.791001 -25.776185 -34.716766 -7.088819 21.305990 8.530142 17.880657 -14.182674 -11.285427 3.147967 18.341581 -0.265103 -20.980508 3.420083 -7.709518 8.289291 -37.815899 -25.190793 35.934691 32.414369 10.820705 4.651316 12.086417 13.091384 -20.139826 -5.682415 -11.562678 16.126798 -6.619796 -21.014612 -5.842171 4.564095 -19.087632 -11.064718 -4.881152 2.961180 3.276274 -4.386124 10.084843 10.553465 -5.741126 2.238184 11.727089 -9.714132 -20.281521 -7.721760 1.014158 11.772614 7.389953 -7.479320 1.771725 9.129840 -21.229879 -8.419871 6.083960 12.422742 8.917779 27.150254 25.577451 -3.166648 4.189382 -4.806357 -13.116062 20.561029 -12.763765 -3.234150 -4.103166 5.011503 7.704629 6.786248 14.502240 -7.320255 -16.793495 -17.457783 -0.480942 1.889267 15.805921 -14.316390 -29.751608 -21.758328 5.354575 8.497022 20.120756 -1.510363 36.822464 -7.990563 3.969850 -34.864415 0.247344 12.705473 -1.390632 12.974344 5.103276 -10.593538 -19.004443 -7.291702 -16.472488 -0.728545 0.303574 -10.199003 -6.884253 -19.576707 25.846241 -14.352477 2.926188 2.077032 3.032290 24.299920 20.133330 -5.476988 -16.525042 8.465489 6.737961 5.771417 -10.572600 24.751819 2.727580 38.497501 -11.847607 4.865752 -9.818387 12.746067 -7.168599 -10.882025 -2.981765 21.930450 30.074188 7.009544 -6.291578 -1.778474 -8.445359 13.002818 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.081431 0.970725 3.042871 1.182234 -1.656547 -2.238039 -0.718126 -3.843688 1.794894 1.650861 2.340125 -0.186484 1.509094 -0.432073 -0.549594 0.384066 1.381727 -0.012491 -0.143751 -1.456918 -1.591593 2.391919 0.047240 -0.126512 0.875406 -3.036778 2.407380 0.155309 1.250247 1.602089 0.859969 0.296828 -0.503172 1.338390 -0.237305 0.667187 -0.032214 1.158555 -0.859728 0.328052 0.950921 -0.324309 1.579820 1.371514 1.804431 1.196076 0.348105 -0.199776 -1.586502 -1.011116 -0.489267 0.675519 -1.189351 1.529336 -1.063868 -0.199248 0.471927 -0.540301 0.694464 -1.099633 0.120723 -0.833471 -0.993036 0.060887 -1.662583 0.317818 -1.274644 -1.542628 -0.560189 -0.457511 1.459136 0.282691 -0.312361 -0.108442 -2.795045 0.469907 0.708408 0.186646 1.970561 0.099123 -0.751191 -0.847669 -2.030840 -2.390645 2.284280 1.198995 0.635851 0.956220 -0.944786 -1.370969 -0.234638 -0.086346 1.049976 2.100722 -1.710077 0.128093 -0.379829 -0.877863 -0.819809 -2.753046 0.145558 -1.568906 0.722231 0.594397 -1.180468 0.597162 -0.153196 0.642298 -0.227422 -1.016731 0.827183 -1.233771 0.266461 2.399791 -0.228766 -1.874997 -0.924998 -0.392821 0.503267 1.425788 0.751988 -0.064531 3.143788 1.008901 1.452627 -1.575008 -0.414564 0.954021 0.266411 0.796028 0.914023 -1.485318 -1.458793 0.575257 -1.060815 -3.023787 -0.725194 0.470770 1.967445 -1.175189 -0.800928 1.125899 -1.176099 0.736741 1.912846 0.549828 0.845377 0.008731 -1.690221 0.614558 2.998175 -0.899594 0.874842 -1.262699 -1.097365 1.735157 -0.488480 0.740364 -0.124631 -0.584578 -0.301310 -1.265955 0.328610 2.575118 -0.415977 0.115739 0.413853 1.123307 -1.378378 -1.966378 -3.223315 -0.484931 2.275310 1.078973 3.027524 -2.048175 -0.041483 -0.363686 2.016960 0.318292 -0.772734 0.794165 -0.836412 0.788508 -3.406103 -2.783971 3.722162 3.093245 1.524362 -0.882093 0.921775 1.036658 -1.201748 -1.906939 -1.210535 0.606122 0.660827 -1.983999 -1.399634 0.790594 -2.139109 -0.935940 0.035719 0.482472 1.231770 -0.968146 0.924949 -0.804404 -0.828777 -1.716135 1.334559 -1.133365 -0.609212 -0.100740 0.374504 -0.007793 1.019407 -0.432145 -0.477848 0.305365 -0.922945 -0.070889 0.690791 1.624525 0.410755 2.923593 2.765206 -1.055343 0.450737 0.000810 -1.172836 3.423239 -1.287804 0.199813 0.326501 1.079561 0.162287 0.877115 1.784851 -1.031992 -0.912805 -2.276835 -0.060401 0.380198 0.252137 -1.266202 -0.813121 -3.308381 0.111147 -0.824797 2.774390 0.178240 3.860806 -0.635860 0.485401 -2.814219 0.199180 1.517910 -0.698454 1.755266 1.119842 -1.654695 -1.189461 -0.908244 -2.002619 -0.531438 -0.119741 -0.543839 -1.430574 -0.362190 0.483098 -1.173795 0.944993 1.457171 0.216350 1.560873 -0.857225 0.116930 -1.668212 0.704968 2.033220 0.253022 -1.556232 1.372985 0.262129 4.017716 -0.248858 1.331601 -0.926395 0.072957 -0.616454 -1.980093 -1.448227 2.290714 1.806748 1.317348 0.332513 0.167121 0.114734 2.371573 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = -1.049391 0.898494 5.190114 1.797225 -2.478312 -3.725239 -1.243058 -6.100974 3.006696 2.497026 4.801963 -0.137232 2.754145 -1.144183 0.060225 1.047995 3.056252 -0.859304 -0.091710 -2.333972 -1.300265 4.262226 1.098723 -0.331789 1.334411 -4.360130 2.000905 0.356553 1.930468 2.397823 1.376902 0.187413 -0.876247 1.698294 -0.224116 1.835489 0.688507 1.468848 -1.944004 -0.183679 0.765894 -0.936566 2.616260 1.326841 3.646303 0.512662 1.900352 -0.458348 -3.305273 -1.976786 -1.541322 3.039974 -2.417801 2.165907 -0.454590 -0.467520 0.749899 -0.996914 0.148627 -3.093895 -0.339143 -1.276528 -1.731356 -0.004310 -1.999406 1.031534 -1.785779 -1.680610 -0.486781 -0.731236 2.532096 0.687031 0.222411 0.864627 -4.149786 1.040009 1.024737 0.574222 2.721355 0.383026 -0.928384 -1.347353 -2.458353 -3.505791 4.069076 1.232123 1.068900 1.165134 -2.502336 -0.332007 -0.719008 -0.278311 0.842698 2.570189 -3.743501 0.310960 0.847432 -1.854595 -1.611834 -3.957553 -0.033124 -2.713755 0.598932 1.504800 -1.232764 0.710174 -2.664452 1.140517 -1.753462 -2.188462 1.813195 -1.484606 -1.222236 3.286636 -2.203027 -1.742492 -1.417093 0.206207 0.825908 2.294433 1.003665 1.201629 3.919478 2.081943 2.329233 -2.521708 -0.370232 1.202708 2.341625 1.285220 1.487577 -1.869764 -2.500879 1.261333 -2.163366 -5.169657 -1.907239 2.442202 3.811076 0.324476 -2.289190 0.794113 -1.442158 2.660902 3.243932 1.011925 0.976315 0.265751 -2.985114 1.213525 4.540048 -2.222376 2.711198 -0.993320 -1.024617 2.819950 -1.861477 1.430182 0.227097 -0.451530 -0.264090 -2.390034 -0.809332 4.090596 1.202280 0.692936 -0.628597 1.821888 -1.471806 -4.223328 -6.118820 -1.265986 3.456356 1.305814 4.351781 -2.930260 -1.317606 -0.603982 3.101090 -0.529666 -2.473475 0.978212 -1.895253 1.317263 -6.038928 -4.675887 7.338091 5.843590 2.555381 -0.474718 2.199157 2.249365 -3.351163 -2.383088 -1.795787 1.631764 0.520763 -4.246198 -2.228946 1.154724 -3.985633 -1.849814 -0.569787 0.798439 0.661959 -0.602376 2.311042 0.210110 -1.533478 -0.915075 1.859489 -1.893007 -2.121707 -0.561894 0.457845 1.144590 1.621436 -1.273539 -0.374221 1.056599 -3.166492 -1.016210 0.957236 3.312021 1.794289 5.431492 5.236554 -0.837264 2.028463 -0.479703 -2.874683 4.410489 -2.161414 0.072991 -0.285600 1.338221 0.534852 1.210564 3.023170 -1.499444 -2.488461 -3.502144 -0.179751 0.597215 1.479821 -1.691754 -3.192102 -4.941971 0.358831 0.085323 4.300306 -0.442405 6.422397 -1.608551 0.769542 -6.064699 0.329349 2.429980 -0.843520 2.392691 1.643713 -2.572756 -3.060391 -1.432026 -3.309552 -1.023779 0.129802 -1.164648 -1.901224 -2.292213 2.905388 -2.914632 1.139930 1.569874 0.688590 3.914132 0.953665 -0.185478 -2.740287 1.718709 3.167716 0.922378 -2.487816 3.146495 0.702272 7.827717 -0.787594 1.719490 -1.903567 0.394679 -0.857993 -2.580548 -1.787133 3.809825 4.818840 1.658368 0.165339 0.079336 -0.579089 3.737631 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.774946 1.823501 18.074314 6.853590 -8.027176 -12.999941 -4.738200 -20.142493 10.599694 7.129173 17.520802 0.034208 10.067791 -5.048646 1.331037 2.669679 11.052100 -4.224113 0.281290 -7.009753 -2.888543 16.778551 5.509480 -3.223120 3.811494 -13.297645 5.505927 2.406061 6.672718 9.548694 3.752678 0.207894 -2.640464 5.358169 -1.115993 6.805293 2.511000 4.900351 -6.945274 -2.458414 2.411844 -4.235121 9.974941 1.850852 12.847976 -0.222858 8.532586 -1.674806 -11.707913 -6.675740 -6.498593 12.408454 -9.434493 6.284483 0.417672 -1.447507 3.275325 -4.137487 -1.757847 -12.532060 -1.679699 -3.696250 -7.151463 -0.130117 -6.899785 3.844844 -5.476870 -4.474929 -0.336783 -3.623738 7.911746 2.741058 1.640235 2.435711 -14.035708 3.998060 3.793266 2.206815 7.932758 2.650829 -2.688880 -3.894829 -7.458121 -10.931723 13.634207 2.990515 3.685579 3.197557 -9.477660 1.460498 -2.375848 -0.012724 1.119757 7.825650 -12.720801 2.098714 4.054354 -6.638273 -6.096346 -12.692178 0.219699 -9.580572 1.692721 6.537674 -3.762016 1.282266 -10.875205 3.762139 -7.581762 -9.674362 5.428166 -5.198971 -6.023505 10.241244 -9.683096 -3.445144 -5.362986 1.206912 3.143590 8.150621 2.497479 5.938994 11.092557 8.040711 7.907239 -9.426542 -1.201415 3.950181 10.643440 4.290946 4.646227 -6.295173 -7.890725 4.392543 -7.775636 -18.816133 -7.591519 10.562816 12.611152 3.824310 -9.934160 2.386763 -4.293444 11.188816 11.561434 4.003776 2.757356 1.950403 -9.928969 4.973171 15.339201 -8.206601 10.690180 -2.855414 -4.735168 11.813039 -7.838954 5.631651 0.812119 -0.312408 -0.813755 -8.858346 -2.786993 13.710388 5.827452 3.758836 -3.158118 4.703951 -2.671013 -16.028644 -21.819590 -4.047010 12.274766 5.138833 15.865932 -9.857580 -6.175763 -1.012249 9.805746 -2.901087 -9.619136 2.781513 -7.258844 5.496394 -23.336826 -16.969438 25.784193 18.620517 8.080193 0.864712 8.543235 7.379814 -11.716402 -6.421544 -7.075109 7.716337 1.339447 -14.123866 -5.602096 2.848552 -14.701567 -5.555996 -2.608234 2.749934 1.430296 -1.967450 7.356594 0.849073 -6.315862 -1.707236 6.653023 -7.333625 -8.566063 -2.665491 0.504131 4.623077 5.577294 -4.196747 -0.937577 3.072956 -12.380846 -4.562834 2.660466 10.590391 6.208322 18.789888 19.615579 -2.424077 7.688302 -1.807170 -9.851403 14.799724 -7.628200 -0.223464 -1.590855 5.286920 2.861518 4.436965 11.045874 -4.625399 -9.560542 -11.881583 -0.443289 2.771564 7.222581 -7.463858 -13.646428 -16.114940 0.587088 3.090304 15.373700 -2.230757 22.490311 -6.091100 3.393920 -23.595539 1.184143 8.090435 -1.560865 8.039996 5.012731 -9.116441 -11.863375 -4.624989 -10.701631 -2.990244 0.264345 -5.144130 -6.546415 -10.013812 11.924749 -11.136254 2.912382 5.114440 1.194154 14.335484 6.361294 -1.103812 -8.980964 4.939689 9.502993 3.589224 -7.677499 12.334649 2.615907 28.112166 -3.422203 6.255322 -7.225069 3.953308 -2.978479 -8.475609 -4.758870 13.431273 18.270245 3.921238 0.299699 0.218913 -3.172346 11.661665 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.528557 1.604125 6.051634 4.257618 -5.062277 -4.886550 -1.467400 -6.674188 3.925699 2.038920 4.101174 0.082067 2.473498 -2.187057 -1.214170 0.319013 3.299127 1.085551 -1.708855 -3.020407 -3.512165 3.724577 0.578678 -3.516430 2.533659 -4.160333 4.565319 0.623072 1.477324 2.666263 1.982027 0.641559 -1.400339 2.881432 0.105726 1.858867 0.244701 1.626823 -2.516465 -0.516906 2.358788 -1.419971 3.444911 2.055513 3.983423 1.700600 1.863969 -0.234631 -4.993590 -1.169427 -1.202333 2.572809 -2.317276 3.268629 -0.506461 1.283548 1.176929 -2.877391 1.020594 -3.417095 0.259437 -1.724221 -2.691512 -0.281603 -3.616197 0.155624 -1.094597 -3.059949 -0.520388 -1.588110 1.961696 -0.138960 -1.081252 -1.043596 -3.868831 0.151347 1.711906 1.014912 3.933659 1.547883 -0.566550 -2.705249 -3.527170 -3.678479 3.729359 -0.072506 1.366427 2.165230 -1.264821 -2.421653 0.355339 -0.479061 1.636728 3.434820 -4.428179 -0.191492 -0.240352 -2.070127 -2.204906 -4.871129 0.726668 -2.537124 1.402102 1.607936 -3.716475 2.034577 0.235968 1.750960 -0.210289 -1.524757 1.000257 -2.306409 0.460842 4.429934 -0.363927 -4.179820 -1.431534 -0.878549 0.559294 3.013304 0.611219 0.244559 5.940453 2.240761 3.336617 -3.028734 -0.412274 1.263255 1.051059 1.799882 2.332335 -3.057231 -2.448197 1.350016 -1.909046 -6.266366 -1.349216 0.784199 4.179025 -0.113376 -3.500880 1.057370 -1.812903 2.002408 1.901127 1.838247 1.122256 -0.058642 -3.264642 0.519848 5.301272 -1.739144 1.706720 -1.719933 -2.193470 2.909168 -0.097259 0.807273 -0.876529 -1.732273 0.159274 -2.346730 0.335840 4.605159 -0.620209 -1.462130 0.427321 1.836894 -3.504569 -4.968772 -6.453418 -0.522371 3.975953 2.386366 6.802613 -4.570424 -0.982460 -2.013702 3.772912 -0.731540 -1.183577 1.150207 -2.414249 2.108859 -5.871260 -5.918249 7.900690 5.062436 2.356444 -1.126056 2.663484 0.074546 -3.119653 -3.416422 -3.042876 0.625738 2.508097 -2.106198 -1.658162 1.222369 -5.236710 -1.491414 0.733657 1.268074 2.737472 -2.151900 1.489196 -1.453517 -1.509800 -3.371415 1.995556 -1.829120 -0.815675 0.257112 0.635447 0.733644 2.555329 -0.650156 -2.460608 -0.998255 -1.997500 -0.941934 0.753138 4.050809 0.973227 6.530063 6.247435 -1.552238 2.202092 0.306656 -3.089695 7.686179 -2.407473 0.821614 0.348921 2.260913 0.935654 1.122373 4.388445 -2.017487 -1.313591 -4.050207 -0.831165 0.145900 1.273075 -5.129495 -1.812579 -6.196173 -0.294795 -1.358431 4.165882 -0.230824 7.189719 -1.296916 0.511157 -7.143119 0.148645 4.662974 -1.011012 2.877523 2.340340 -4.098775 -4.594574 -1.210144 -3.713711 -0.327833 -0.565587 0.172327 -2.977193 -0.315851 2.160497 -2.012118 1.651744 4.553275 -0.067723 3.138237 -1.251589 0.700157 -1.435158 -0.347279 3.134053 0.735141 -2.880828 3.491315 1.220446 8.949168 0.628238 2.325529 -2.036661 0.168763 -0.996128 -3.875198 -3.235724 3.767216 4.099250 2.334340 1.116697 0.713482 -1.258245 4.900380 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = -1.195304 -0.113724 1.743518 -0.010097 -0.689619 -0.997551 -0.552445 -2.140581 0.956429 0.915168 2.187472 0.076023 1.332956 -0.631564 0.369869 -0.142500 1.105604 -1.001142 0.607590 -0.451443 0.394043 1.672579 0.555363 0.518763 0.093039 -1.171773 0.372834 -0.145173 0.632868 1.247862 0.345419 -0.264654 -0.759615 0.205532 0.345475 0.927324 0.735752 0.665782 -0.466006 -0.280493 -0.232041 -1.075234 0.857746 -0.295120 1.530688 -0.604719 0.317148 -0.166648 -1.140288 -1.102918 -0.225936 0.660678 -1.238978 0.401326 0.641643 -0.857170 -0.057795 0.344726 -0.323301 -1.605081 -0.064904 -1.123642 -0.242334 0.232097 -0.392741 0.614809 -0.991530 -0.108995 -0.089409 -0.884370 0.657857 0.468081 0.949168 1.277406 -1.533243 0.477284 0.345907 -0.008999 0.470635 0.454071 -0.266252 -0.402036 -0.464080 -1.121920 1.034243 0.868605 0.173452 -0.013544 -1.591830 1.144410 -0.009211 0.100326 0.094723 0.584798 -1.295641 0.129103 0.245473 -0.561030 -0.076642 -1.867387 -0.024526 -1.119510 0.148323 0.835274 -0.417628 -0.444269 -1.807993 0.444611 -1.153301 -1.236582 1.040821 -0.456481 -0.786702 0.965220 -1.491178 0.187704 -0.930980 0.240195 0.893353 0.459396 0.175793 0.947438 0.230542 0.851204 0.962718 -1.142583 -0.312397 0.930831 1.491706 0.102298 0.013326 -0.439609 -0.549751 0.657184 -1.242214 -1.753734 -1.273376 1.132578 1.297061 0.464336 -0.678037 -0.193409 -0.600762 1.278658 1.576351 0.509383 0.095656 0.590975 -1.149887 0.490478 0.858201 -0.794507 1.290294 0.431934 -0.202684 1.007567 -0.970398 0.730080 0.134942 0.538931 -0.200574 -0.976520 -0.630603 1.205483 1.044516 1.248055 -1.258687 0.494289 -0.253707 -1.662775 -2.218950 -0.541911 1.982488 0.591495 0.637955 -0.957405 -0.778451 0.504013 1.299304 0.177183 -1.677250 0.335577 -0.507644 0.637276 -2.514350 -1.604937 2.326889 2.248451 0.923990 0.322147 0.494181 1.096667 -1.868272 -0.432313 -0.798773 0.978967 -0.866831 -2.149760 -0.874451 0.431258 -1.339021 -0.624451 -0.291171 0.231388 0.192577 0.123109 1.069234 1.036959 0.027276 0.316308 1.006200 -0.434835 -1.439966 -0.561258 0.081428 1.029249 0.438941 -0.607911 0.403117 0.811389 -1.512339 -0.358822 0.437385 0.618331 0.534036 2.150421 1.618225 -0.283023 -0.122863 -0.582827 -0.990097 1.033135 -0.872546 -0.082962 -0.329551 0.199544 0.458744 0.399790 1.195198 -0.545002 -1.351633 -1.148304 -0.631288 0.215265 1.211171 -0.406752 -2.340469 -1.474540 0.749778 0.449763 1.431335 -0.079347 2.290330 -0.619944 0.476337 -2.065285 0.052890 0.609596 -0.204140 1.018646 0.129937 -0.474405 -1.011852 -0.524449 -1.281691 -0.424813 0.007798 -0.508589 -0.205933 -1.315454 1.655215 -0.780265 -0.125191 -0.412811 0.196224 1.979748 1.475817 -0.407570 -1.332583 0.972725 0.614901 0.222635 -0.694586 1.718406 0.479357 2.676369 -0.638589 0.012311 -0.380826 0.795856 -0.501864 -0.760681 -0.174685 1.457244 2.216941 0.662172 -0.663984 -0.092571 -0.413435 0.647947 -PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = -0.304501 0.201149 1.808481 0.317777 -0.422138 -1.496654 -0.468478 -2.594108 1.245386 0.872811 1.920153 -0.036766 1.394864 -0.612382 0.101166 0.242691 0.967656 -0.363272 0.213179 -0.578833 -0.069385 2.005223 -0.039663 0.113690 0.254379 -1.523215 0.690471 0.545397 0.862649 1.129409 0.363937 0.045271 -0.273914 0.451179 -0.419441 0.574663 0.295025 0.652303 -0.729960 -0.339309 0.043802 -0.353678 1.083243 0.058978 1.348236 -0.088086 0.548629 -0.091981 -0.536425 -0.799161 -0.350808 0.923574 -0.651548 0.563395 -0.260084 -0.548600 0.202589 -0.094066 0.039964 -0.865367 0.187712 -0.239522 -0.779078 0.000524 -0.686494 0.312454 -0.439734 -0.568379 -0.108943 -0.807955 0.651213 0.084227 0.007232 0.003658 -2.063931 0.229423 0.481355 -0.120710 0.725355 0.380137 -0.202736 -0.529983 -0.883141 -1.165661 1.581280 1.249768 0.317343 0.613665 -1.445576 -0.039957 -0.215146 0.087400 0.539653 0.880621 -1.038365 0.114588 0.202989 -0.593910 -0.437104 -1.426650 0.375623 -0.945085 0.309598 0.309413 -0.002507 0.117088 -0.518483 0.405501 -0.726341 -1.027452 0.523936 -0.723735 -0.203335 1.432542 -0.725901 -0.502651 -0.945277 -0.087293 0.296097 0.766323 0.250468 0.373678 1.148964 0.701321 0.829524 -1.273673 -0.455263 0.979893 0.897285 0.455210 0.045995 -0.945100 -0.556201 0.464536 -1.160829 -2.115225 -1.009634 0.671402 1.168567 -0.503003 -0.642508 0.676436 -0.522993 0.923374 1.456031 0.160549 0.270232 0.506057 -1.094410 0.449997 1.495094 -0.633173 0.929315 -0.492936 -0.625317 0.910808 -0.530525 0.570364 0.117896 -0.095155 -0.276031 -0.667882 0.279623 1.376833 0.282068 0.819680 -0.662668 0.530864 -0.632755 -1.330420 -2.372005 -0.488649 1.516476 0.697495 1.745623 -1.057638 -0.774414 0.119761 1.245736 -0.154815 -0.964104 0.643703 -0.944539 0.767365 -2.291204 -1.706279 2.251502 1.911888 1.232214 -0.043449 0.872886 0.655339 -1.094041 -0.581853 -0.563506 0.816866 0.230629 -1.919852 -0.456755 0.198936 -1.465998 -0.531268 -0.352089 0.235227 -0.037948 0.090196 1.222139 -0.374162 -0.466714 -0.428765 0.934976 -0.605142 -0.526042 -0.482801 0.058424 0.122199 0.645915 -0.703949 0.073969 0.547176 -1.014477 0.006047 0.319877 0.474217 0.341374 1.857322 1.842224 -0.563809 0.771388 -0.428921 -0.720344 1.467979 -0.732662 0.029386 -0.040362 0.534344 0.324625 0.606848 1.045760 -0.570723 -0.755874 -1.408115 -0.370823 0.581275 0.786980 -0.241457 -1.269633 -1.768233 0.065940 -0.132420 1.968272 -0.040502 2.339816 -0.723351 0.687176 -2.216974 0.207076 0.423932 -0.272900 0.866271 0.307668 -0.899251 -1.011114 -0.294417 -1.280481 -1.185673 -0.039343 -0.835770 -0.783008 -1.189904 1.044682 -1.118763 0.090565 0.479412 0.060414 1.270168 -0.034610 -0.082759 -1.048585 0.639850 0.911342 0.053368 -0.831376 0.818906 0.236837 2.821184 -0.444622 0.946211 -0.582060 0.957306 -0.604987 -1.301394 -0.555143 1.513019 1.693533 0.441642 -0.221049 0.001469 -0.103965 1.031861 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = -1.439196 -0.267954 2.840469 1.333314 -0.919547 -2.643314 -0.807117 -3.259095 1.926173 1.128784 3.416440 0.134819 2.075514 -1.331258 0.665260 0.222764 1.829858 -0.882108 -0.143142 -1.000721 0.373474 3.131279 1.065219 -1.058298 0.488816 -1.863329 0.302651 1.216629 0.707529 1.692573 0.474065 0.074892 -0.282468 0.723635 -1.160087 1.171152 0.474973 0.806955 -1.156935 -1.059617 0.320953 -0.184605 1.903726 -0.319285 2.483884 -0.346001 1.840394 -0.283196 -1.925777 -1.566990 -0.870495 2.355600 -1.308713 1.076084 -0.102821 -0.225166 0.737757 -0.739256 -0.445620 -3.083167 0.338731 0.141145 -1.385289 -0.309659 -0.813242 0.597225 0.199672 -0.821147 0.328381 -1.369550 1.213631 0.080843 0.006992 -0.079622 -2.323150 0.439641 0.713987 0.151715 0.933904 0.775603 -0.488488 -0.982662 -0.893203 -1.437950 2.294927 0.734941 0.738771 1.197477 -2.209248 0.499376 -0.165224 -0.016083 0.245834 0.932180 -1.921987 0.140808 1.776374 -1.152519 -0.991120 -0.974095 0.457901 -1.471270 0.220571 1.401618 0.075670 0.326142 -1.988458 0.754327 -1.918476 -1.783165 0.968976 -1.028994 -0.999394 1.629830 -2.066068 -0.331199 -0.992693 0.368212 0.538975 1.538913 0.060181 1.083465 1.535017 1.322301 1.153136 -1.999089 -0.199205 0.916191 2.587790 0.873393 0.285833 -1.107527 -1.030998 0.745876 -2.026648 -3.297535 -1.811399 1.900131 2.485871 0.692230 -2.465233 1.292934 -0.594877 2.415750 2.104700 0.560492 0.300102 0.791403 -2.089902 0.728884 2.453336 -1.332554 2.057789 -0.075304 -1.099380 1.725184 -1.072076 0.997051 0.721422 -0.317538 -0.089770 -1.260739 0.005305 2.174778 1.497292 1.322677 -1.353970 0.927653 -0.518092 -2.819518 -4.336083 -0.990968 1.819682 1.180192 3.325481 -1.681588 -1.794010 -0.343649 1.816071 -1.294575 -2.029847 0.446731 -1.611469 1.163606 -4.284825 -2.845433 4.595172 3.514096 2.039110 0.697697 2.276361 0.944093 -1.501729 -0.401748 -0.736986 1.438647 0.763151 -2.244387 -0.130276 0.251977 -2.634277 -1.367859 -0.733414 0.355347 -0.957497 -0.139245 1.589368 -0.173885 -1.134329 0.299027 0.496374 -1.344872 -1.098337 -0.717274 0.032703 0.735531 0.906890 -1.172328 -0.075642 0.540796 -2.446141 -0.619002 0.175851 1.643106 1.554913 3.080625 3.557589 -0.706518 2.209711 -0.684088 -1.724383 2.570280 -1.430803 -0.157917 -0.505789 1.316891 1.192287 0.614175 1.709791 -0.834958 -0.823569 -2.195003 0.007611 1.257853 1.556171 -1.649195 -2.377168 -2.907538 0.046400 0.333914 2.903715 -0.710806 3.948801 -1.405082 0.706232 -4.835402 0.249933 0.935655 -0.154688 0.746935 0.625015 -1.478288 -3.274802 -0.401007 -1.975288 -1.087152 -0.031426 -1.328925 -1.029898 -2.269792 2.437366 -2.408456 0.344676 1.216758 0.039193 2.369423 0.975535 -0.295305 -1.186842 0.620777 0.919770 0.641289 -1.343035 1.893106 0.374980 5.120822 -0.739360 1.582014 -1.362753 1.938315 -0.971300 -1.794385 -0.815469 2.367556 3.447253 0.281610 0.140256 0.197466 -0.723866 1.891528 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = -3.850301 -0.385756 6.266454 0.282411 -2.807210 -3.483113 -1.903627 -7.653256 3.821218 3.130656 7.232773 0.332231 4.176518 -2.541444 1.130730 0.199421 4.097483 -3.169547 1.088132 -1.996264 1.522719 5.176759 1.651056 0.902157 0.957878 -4.288414 0.860538 -0.281375 1.878334 3.409573 1.664412 -0.810469 -2.559114 1.035964 1.422459 3.850202 3.053190 1.719413 -2.087489 -1.165273 -0.559506 -2.835006 2.928737 -0.780869 5.888655 -2.199982 1.533406 -0.558310 -4.428069 -3.463931 -0.633125 3.401963 -3.835260 1.668086 2.694334 -1.750831 -0.444755 -0.299806 -0.915815 -5.073886 -0.307133 -3.136626 -1.209707 0.603600 -1.082588 1.730406 -2.165573 -0.075119 -0.299558 -3.330191 1.979245 0.852610 2.244612 3.903886 -4.577735 1.175877 1.335324 0.047359 1.976415 1.583969 -0.704426 -2.066045 -1.431044 -3.670837 3.727763 2.797184 0.572803 0.422626 -5.264485 3.577952 -0.254373 -0.132375 0.406162 2.146867 -5.545483 -0.507448 1.544833 -2.482989 -0.915777 -5.322897 0.326849 -3.528988 0.516431 2.463003 -1.698512 -0.905715 -5.724756 1.597040 -3.738905 -3.073428 3.209696 -1.433810 -2.121396 3.484237 -4.732718 -0.112796 -3.383954 0.595910 2.548591 1.747091 0.360712 2.826074 1.813952 2.895632 3.766592 -3.848529 -1.070858 2.917508 5.076499 0.604561 0.250578 -1.891720 -1.680869 2.324010 -4.089271 -6.013373 -4.389935 3.147719 4.787989 2.249517 -2.681295 -1.368917 -1.622597 4.619586 4.414646 1.526025 0.055967 1.939790 -4.038879 1.154587 3.178186 -2.619751 4.159185 1.129197 -0.118401 2.370776 -3.050480 2.215548 0.573760 1.182467 -0.730098 -3.130126 -2.057540 4.076173 3.206191 3.401900 -4.766144 1.963398 -1.128622 -5.595799 -8.211501 -2.027091 5.676925 1.826268 2.599817 -3.441670 -3.127069 0.401826 4.562626 -0.065506 -5.368210 1.368980 -2.548535 2.301576 -6.867164 -5.246535 8.475554 8.207122 3.445094 0.958557 2.515607 2.778111 -7.068441 -1.298767 -2.401622 3.009546 -1.834138 -6.823092 -2.290569 1.474791 -4.828597 -2.454012 -1.206234 0.911216 0.102927 0.774134 4.254336 3.760800 0.105905 1.076259 2.939605 -1.019050 -4.491952 -1.855192 0.474669 3.402965 2.103965 -2.473806 0.553389 2.437022 -5.185993 -1.379866 1.576533 2.724023 2.159020 7.029771 5.690262 -0.691666 1.380190 -2.108781 -3.564134 2.983665 -2.582308 -0.065059 -1.130837 0.122423 1.709030 1.158279 3.963937 -1.964770 -3.952392 -3.698535 -2.124799 0.312915 4.267516 -1.532910 -7.657085 -4.908321 2.026784 1.274289 4.296150 -0.418464 7.609639 -2.041829 1.574566 -7.862224 0.148271 2.769454 -0.614906 2.658921 0.577097 -2.145235 -4.496352 -1.302168 -4.526765 -2.242813 0.274210 -0.991373 -1.179467 -4.802448 6.919400 -2.923571 -0.329522 -0.393758 1.058714 6.620398 4.544175 -0.937968 -3.797830 2.694110 2.072522 0.787728 -2.414241 5.263098 1.857571 9.575691 -1.961802 0.422410 -1.334034 2.538420 -1.583816 -2.975006 -1.117920 4.551538 7.684712 2.219910 -2.158034 -0.523748 -2.055624 2.924682 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = -4.654241 -0.809216 6.247191 -0.243091 -2.460936 -3.851444 -1.968079 -8.093742 3.960750 3.591053 8.240573 0.653444 5.009121 -2.792199 1.638667 0.120618 4.436174 -4.009483 1.863218 -1.850036 1.956214 6.410200 2.057260 2.100133 0.521114 -4.380080 0.634007 -0.354404 2.282768 4.144376 1.664393 -0.920778 -2.732493 0.688464 1.471799 4.194630 2.816531 2.089692 -1.904532 -1.347104 -0.881343 -3.810203 3.363646 -0.938694 6.257680 -2.968262 1.823034 -0.704066 -4.275722 -4.230932 -1.115148 3.365917 -4.392513 1.455510 2.641871 -2.860481 -0.182536 0.885460 -1.165053 -5.689510 -0.487150 -3.827659 -1.225506 0.696379 -0.964146 2.168565 -3.252239 0.194993 -0.522247 -3.578765 2.380795 1.314646 3.022366 4.670085 -5.709066 1.466174 1.166299 -0.242266 1.874009 2.014589 -1.264085 -1.879306 -1.512006 -4.074624 4.268511 3.240835 0.410949 0.251181 -6.551807 4.416265 -0.627383 0.151304 0.353778 1.956340 -5.732890 -0.046580 2.135864 -2.524729 -0.540819 -6.019531 0.223083 -3.939785 0.246250 2.751588 -1.028391 -1.754303 -7.364596 1.242086 -4.755015 -3.965846 3.925091 -1.637715 -3.119064 3.422993 -5.801612 0.791083 -3.754735 1.058849 3.199459 1.745702 0.713598 3.399602 1.116410 3.054222 3.820783 -4.100325 -1.026472 3.464801 5.991325 0.286898 -0.289264 -1.400083 -1.878302 2.692914 -4.611105 -6.360281 -5.081701 4.586789 5.018642 2.501756 -2.436499 -1.198568 -1.723841 5.014525 5.690892 1.456794 0.210642 2.399144 -4.383083 1.615424 3.268413 -2.893086 4.837367 1.627614 -0.283603 3.563850 -4.077368 2.625044 0.851768 1.786048 -1.082150 -3.312216 -2.387826 4.312098 3.904818 4.363750 -5.354326 2.093423 -0.677993 -5.916372 -8.979456 -2.288394 6.796608 2.434970 2.381945 -3.419699 -3.018017 1.415274 4.541060 0.332015 -6.504759 1.502141 -2.352803 2.348965 -8.879112 -5.563364 9.285220 8.804606 3.775067 1.323830 2.322792 4.016972 -7.368304 -1.319520 -2.693931 3.681874 -2.735162 -8.122385 -2.540562 1.606210 -5.135360 -2.726052 -1.627726 0.715155 -0.054461 0.796547 4.883521 3.861421 0.289073 1.756382 3.401117 -1.225332 -5.499185 -2.381268 0.312219 3.794428 1.859065 -2.342117 1.538713 2.965575 -5.951333 -1.576421 1.562157 2.488925 2.476034 7.752013 6.345672 -0.952148 0.645483 -2.561923 -3.720260 2.893346 -3.078222 -0.376292 -1.406411 0.329863 2.179244 1.384432 4.187777 -1.991408 -4.699829 -3.948213 -2.049211 0.863291 4.729811 -1.260123 -8.796266 -5.584491 2.635764 1.701398 5.150023 -0.599886 8.348073 -2.597750 1.748241 -8.238322 0.296137 2.290676 -0.562851 3.172804 0.289380 -1.881139 -3.636504 -1.758879 -4.837906 -1.995840 0.513237 -1.508814 -0.869615 -5.642490 7.171057 -3.671266 -0.500834 -1.512206 0.767687 7.568528 5.607698 -1.348181 -4.864158 3.766854 2.223961 0.948719 -2.408219 6.112458 1.711890 9.922483 -2.584293 0.240633 -1.312515 3.437368 -2.066370 -3.166933 -0.698720 5.112877 8.655721 2.116430 -2.490785 -0.441009 -1.647562 2.669450 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/strongly-connected-components.cpp___GLOBAL__sub_I_strongly_connected_components.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/overlapping-subproblems-property.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.120605 0.786582 1.687157 1.517948 -1.406390 -1.310619 -0.428097 -0.954159 0.210100 -0.032455 0.764892 -0.372963 0.154050 0.537139 -0.044747 -0.601950 0.575447 0.602393 -0.427727 -0.589054 -1.067546 0.248220 0.407938 -1.612624 0.410875 -0.454865 1.033210 0.861267 -0.040286 0.610397 0.131582 0.053329 -0.518285 0.672480 -0.920463 -0.603788 -0.034703 0.177804 -0.664880 -0.066081 0.608111 0.177404 0.875646 -0.055443 0.261764 1.038938 0.406823 0.238482 -1.348232 -0.128571 -0.273036 0.800128 -0.192428 0.831768 0.246940 0.510788 0.402264 -1.062552 0.067622 -1.022582 0.418517 0.027404 -0.435900 -0.108663 -0.978018 -0.138755 -0.074920 -1.165785 0.781918 -0.376285 0.327912 -0.506447 -0.317606 -0.792108 -0.343610 0.207663 0.378498 0.622765 0.497873 0.186131 0.299169 0.045672 -0.678923 -0.503220 -0.232680 -0.385668 0.497351 0.218475 -0.058624 -0.747981 0.788390 -0.182334 -0.036114 0.714407 -0.367383 0.617001 -0.731343 -0.353681 -1.143050 -1.004271 0.121469 -0.401350 0.636529 0.571996 -1.010356 0.314501 0.345752 0.491360 0.347198 -1.027333 -0.105326 -0.514321 0.401598 0.937958 -0.285728 -0.836422 0.145943 -0.395549 -0.161302 0.844904 0.016937 -0.021336 0.761121 0.661873 0.364632 -0.719265 -0.124961 -0.247650 0.071169 0.706248 0.884657 -0.829460 -0.431224 0.073494 -0.585676 -1.381518 0.212060 0.031486 0.987621 0.277550 -1.171087 0.396773 -0.802677 0.510962 -0.061627 1.211904 0.273911 -0.309991 -0.498787 0.056917 1.160109 -0.543856 0.652696 -0.209532 -1.135586 0.580644 0.538561 0.414985 0.173003 -0.314209 0.407648 -0.571914 -0.035220 1.084333 0.342120 -0.183988 1.012827 0.008369 -0.886287 -1.503880 -1.149173 0.401943 0.607820 0.106364 1.653259 -1.073975 -0.597454 -0.422770 1.315313 -0.678109 -0.290542 0.039943 -0.158138 0.455956 -1.286072 -1.297040 0.969318 0.795167 -0.106178 -0.336722 0.830225 -0.370562 -0.400860 -0.841580 -0.877964 0.283253 0.260176 0.502573 -0.062619 -0.062980 -0.988641 0.449187 0.434565 0.493145 0.896295 -0.939329 -0.533514 -0.384236 -1.196740 -1.056769 0.236770 -0.946424 0.224359 0.451519 -0.007881 0.017942 0.352164 -0.122280 -1.169705 -0.235001 -0.501558 -0.126918 0.040937 0.848255 0.019378 1.678939 0.650898 -0.057931 0.765959 0.390708 -0.764191 3.019483 -0.810721 0.268069 -0.033891 1.196440 -0.235490 0.236823 0.907095 -0.358668 -0.594620 -1.004155 -0.183562 -0.194473 0.322596 -1.983224 -0.359638 -1.420699 -0.284261 -0.125573 0.944823 -0.144036 1.596660 0.053210 0.123835 -1.745640 -0.001544 0.768717 -0.310009 0.571267 0.588309 -1.048292 -1.704535 0.076345 -0.749546 0.601786 -0.124807 -0.565822 -0.620671 0.228901 -0.134518 0.137002 0.279908 1.490911 -0.494818 0.170286 0.029894 -0.202983 0.397482 -0.876731 0.866834 0.070227 -0.833808 1.293132 0.242314 2.332538 0.562049 0.748717 -0.500303 -0.429839 0.262617 -0.422783 -0.733081 0.886052 0.565865 0.622567 0.189692 0.498333 -0.562892 0.580003 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -0.576562 2.036615 7.080640 4.309449 -2.193139 -2.464223 -1.551254 -3.187524 1.925145 0.379807 3.243127 -0.264322 0.921100 1.997408 0.061942 -1.643167 1.618915 -0.262137 -0.489563 -1.418438 0.017799 3.604926 2.820206 -5.626228 0.231198 -4.962668 2.511920 1.839486 1.981241 3.005529 -0.152371 0.044591 0.162910 2.616671 -3.691012 -2.403592 -0.023826 1.100422 -2.265799 -0.724514 1.840016 3.372890 2.183696 0.071481 1.365934 2.225730 2.644363 -0.356046 -2.459238 -0.346413 -2.218045 4.263024 -1.772476 2.428534 -0.050164 2.506468 0.224994 -3.459913 -0.889142 -4.911833 1.151158 3.168219 -1.427179 -0.542060 -3.211677 0.597749 0.081405 -2.269641 1.881514 -0.017142 2.474620 0.223465 1.084129 -3.327718 -2.893154 2.190512 -0.564008 2.306143 1.327558 -0.498391 -1.034274 0.979884 -1.074262 -2.236371 0.084368 0.368072 0.320312 -0.240067 1.773640 -1.621374 0.265683 -0.249376 -2.489550 3.264935 -2.011791 3.569564 -1.800079 -0.470454 -1.785167 -0.469493 -1.148575 -3.501885 1.276366 3.132401 -1.259021 1.281572 0.227041 1.283291 0.362043 -3.360736 0.280908 0.051666 -0.887551 2.870652 -1.981925 -1.159838 1.437170 0.311199 -0.448225 3.497663 -1.132085 1.791484 2.831146 2.727670 0.698627 -2.589421 1.260530 0.401740 1.666768 2.666515 3.457902 -3.156197 -2.118745 -0.909236 0.261400 -5.162455 1.899453 2.157839 3.046578 0.365672 -5.525996 1.392216 -2.031404 4.191315 2.220980 3.172271 1.577823 -0.694735 -1.807154 1.582129 6.711982 -2.282865 2.772043 -1.963134 -2.890733 3.970874 -1.193585 3.503582 -0.471873 1.086795 1.947336 -3.784310 -0.679867 4.665196 1.883751 1.365600 3.737246 -0.798730 0.565104 -6.024235 -3.976952 -1.363966 0.885176 -0.321960 6.410854 -2.381829 -2.284444 -1.247846 2.882384 -1.800999 -0.986442 -0.196311 -0.861565 1.218211 -6.533890 -5.011027 4.597195 4.932446 -0.833100 -0.307909 4.037049 0.704044 0.014351 -2.773801 -1.764498 2.299727 0.443612 1.778567 0.205247 0.030577 -3.386864 -0.403798 1.049896 0.813577 2.507796 -2.380426 -2.797011 1.001917 -5.393800 -2.851120 0.977634 -4.183704 -1.757836 0.529217 0.474166 -0.220126 0.732716 -0.985740 -2.663187 1.797922 -2.303814 -1.356847 0.651600 2.912640 0.726897 3.175968 3.066833 1.075815 2.821279 2.426355 -2.456732 9.471903 -2.493788 -0.952414 -0.127082 2.750615 -1.455978 1.933163 0.756823 -1.053018 -2.328686 -4.040859 2.821745 -1.164493 1.370409 -5.357039 -2.399120 -1.737001 -1.294675 1.723051 3.325671 -0.294105 7.298055 -0.519869 0.648627 -7.656831 0.008066 3.177871 0.000105 2.244852 3.214956 -2.996813 -6.063634 -0.505939 -0.755869 2.366111 -0.936862 -4.533968 -2.485226 -1.268113 1.124584 -1.805224 2.000300 4.999458 -0.854018 2.260710 0.255606 -1.289693 -0.308443 -1.889502 1.703417 1.934411 -2.903121 3.956831 -1.359761 7.877004 -1.665781 3.263808 -3.293669 -0.196145 -0.031275 -0.916409 -1.503581 4.924905 2.218698 1.650600 0.801336 -0.530775 -2.220508 2.198531 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.375854 1.071451 2.718340 1.547794 -1.107105 -1.686206 -0.596303 -2.345622 1.085770 0.222127 1.337856 -0.204592 0.712207 0.417154 -0.133324 -0.014743 0.917278 0.354677 -0.073867 -0.728009 -0.564330 2.022481 0.417534 -1.480610 0.282706 -1.930624 1.000042 0.927889 1.391182 1.153399 0.149142 -0.074581 -0.111893 0.925942 -1.305209 -0.770867 -0.149582 0.474508 -1.644220 -0.098277 0.254542 0.524879 1.272451 0.009639 0.632474 0.575749 1.147724 0.118895 -0.798830 -0.120208 -1.049242 1.931237 -0.401014 1.102084 -0.171337 0.211336 0.101505 -0.835928 -0.110430 -0.827699 0.155398 0.640449 -0.762349 -0.158801 -1.491397 0.157078 -0.512585 -1.234500 0.524990 -0.024836 0.948327 0.091470 0.183371 -1.214214 -2.191564 0.660304 0.147051 0.905040 0.728161 0.233016 0.249076 0.129823 -0.942653 -1.134295 0.705795 0.751203 0.288843 0.119082 -0.303715 -1.007170 0.061643 -0.084440 -0.180794 1.145483 -1.050879 1.268089 -1.277538 -0.322819 -0.944481 -1.489406 -0.197638 -1.156172 0.657110 0.279218 -0.155476 0.606410 0.541883 0.554200 0.294925 -1.515594 0.110777 -0.158015 -0.298373 2.012645 -0.433795 -0.838959 0.053728 -0.037009 -0.705293 1.217425 -0.010278 0.534809 1.292513 1.090907 0.643832 -1.157654 0.007193 0.445035 0.393370 1.083794 1.245576 -1.177578 -0.905092 -0.061753 -0.212554 -2.561747 0.216741 0.897002 1.330521 -0.354066 -1.192471 0.292370 -0.892342 1.422567 0.847918 0.764676 0.742745 -0.226026 -0.777407 0.734673 2.647852 -0.849592 1.050091 -1.083423 -1.076901 1.398972 -0.252240 1.150939 -0.361865 0.087293 0.415384 -1.174273 0.045986 1.858659 0.335436 0.158258 1.119982 -0.052617 -0.704233 -2.286664 -1.974574 -0.223792 0.864361 0.010969 2.482753 -1.090039 -1.055489 -0.301898 1.243612 -0.525634 -0.406832 0.507193 -0.944693 0.739080 -2.553675 -2.172164 2.135737 2.081458 0.092700 -0.396458 1.385020 0.478804 -0.835939 -1.546534 -0.864966 0.798422 0.356507 -0.851351 -0.556009 0.106395 -1.610340 0.066799 0.410922 0.426430 1.038853 -0.354878 0.000140 -0.412767 -1.965721 -1.406939 1.070857 -1.448943 -0.257300 0.279496 0.117114 -0.237193 0.753332 -0.560197 -0.893921 0.621349 -0.881013 -0.165749 0.096049 0.990336 -0.052933 1.798273 1.700595 0.262894 1.614378 0.669126 -1.234488 3.678976 -1.083263 -0.010120 -0.087479 0.906611 -0.765705 0.881565 0.729877 -0.565137 -1.220561 -1.750360 0.348960 -0.208828 0.553259 -1.421832 -1.103615 -1.348549 -0.493760 0.227074 1.659687 0.054394 2.826603 -0.710152 0.505852 -3.096011 0.185546 0.946192 -0.090458 1.385802 1.016772 -1.370113 -1.713268 -0.196563 -0.891786 0.004921 -0.380152 -1.899650 -1.103068 -0.648822 0.502886 -0.817851 0.540024 1.862872 -0.464937 1.176361 -0.535501 -0.374815 -0.491457 -0.341944 1.372065 0.361213 -1.214739 1.311013 -0.244194 3.710412 -0.199238 1.250826 -1.132852 -0.225104 0.006609 -1.085839 -0.801994 2.016367 1.102335 0.709292 0.078199 -0.097046 -0.548247 0.946728 -PE-benchmarks/overlapping-subproblems-property.cpp___GLOBAL__sub_I_overlapping_subproblems_property.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/count-1s-sorted-binary-array.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -2.284997 2.890679 14.884502 10.385733 -3.501173 -4.706214 -4.102525 -7.092982 5.157427 1.749623 8.614866 -2.081527 2.239752 2.767421 -1.091068 -5.133406 3.185450 -1.720668 -0.477930 -3.067230 -1.259579 8.962190 7.595348 -11.911464 0.108678 -10.726993 6.683204 3.105646 3.980918 8.522964 0.074474 0.519474 2.081430 6.055083 -7.997332 -3.908127 -1.024655 2.975399 -3.740570 -1.751796 4.975251 6.928648 6.578102 1.021596 3.617359 5.233510 4.166911 -2.107385 -6.687746 -0.613082 -3.745167 7.400306 -5.245621 3.877201 -0.497753 4.891549 2.410528 -8.146315 -2.255665 -11.725526 1.884660 6.191120 -4.142853 -0.378152 -7.570705 1.574592 -1.855183 -4.681501 3.951151 -1.510697 4.907711 1.949853 1.877520 -6.848203 -5.442851 6.362418 0.552134 3.207366 3.333855 -1.041261 -1.963816 2.512992 -2.864794 -5.060238 2.044437 -0.417954 1.314146 1.091850 4.697234 -4.644214 0.996858 0.378071 -4.077281 7.353607 -1.708606 7.550505 -2.045252 -2.883639 -3.199867 -1.667632 -2.195958 -8.209224 3.073150 8.347813 -5.094813 3.652498 -0.283308 3.333609 0.387796 -8.099702 0.665600 -1.605523 -0.553235 6.984790 -5.454374 -3.744304 0.379836 1.064426 0.609268 7.868395 -2.460886 4.042600 5.964553 5.092975 1.310183 -6.622308 3.316042 0.367175 3.195419 4.591676 6.883228 -5.434388 -5.179616 -2.578481 1.173922 -11.856596 1.292468 2.988508 5.372728 0.735503 -12.083179 5.347737 -4.148446 8.787045 6.350473 6.195010 3.777171 -1.083726 -4.716316 3.585051 12.670059 -5.178279 5.834259 -4.845982 -9.930540 9.294879 -2.745951 7.519343 -2.047367 1.369456 5.027967 -8.779959 1.178516 10.448389 2.280013 2.342015 6.696955 -1.464657 3.716102 -11.679622 -9.600890 -0.804169 2.407308 1.276692 14.351917 -5.309689 -4.094371 -1.971693 5.743304 -1.587404 -1.374407 -0.887951 -1.689149 2.504106 -18.788348 -12.603445 10.711073 9.418094 0.435520 -0.180891 6.508018 1.350664 2.755209 -4.911470 -4.616947 5.998377 2.041763 3.892925 0.581137 -0.414560 -6.052660 -1.426502 2.005244 1.574216 5.531093 -9.736705 -6.536343 -1.417845 -10.948245 -5.739630 2.902623 -10.227396 -4.134076 0.417582 0.251151 -0.186362 2.152174 -0.949342 -4.640291 1.652048 -4.413034 -3.903224 1.103956 7.655103 0.869373 6.328510 9.069150 0.276129 4.103836 4.661171 -4.563967 20.277941 -7.174372 -2.410435 0.042387 6.393906 -0.958372 3.797880 2.999470 -2.367456 -3.850583 -7.936588 6.698108 -0.370149 2.746762 -13.522442 -5.145663 -5.769222 -2.564200 2.941330 8.062036 0.591316 16.696749 -1.069523 0.505312 -14.525043 -0.551704 7.590281 0.810308 7.216349 6.885062 -7.796399 -12.201725 -2.398384 -3.609214 8.614198 -2.403157 -9.215419 -5.907040 -1.396974 3.641546 -3.898297 5.861237 10.015438 -2.312277 3.806590 1.952939 -2.898487 -1.558927 -4.664065 2.674223 4.060811 -5.637727 8.534342 -3.181604 15.058378 -3.629939 7.045041 -8.313632 1.545685 -0.936148 -1.524589 -3.556548 10.886911 5.714657 2.575885 1.650050 -1.072027 -4.258010 5.093774 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -0.221248 1.060734 4.483819 2.203030 -1.224382 -2.093548 -1.200559 -3.773231 1.835426 0.826323 2.993441 -0.685604 1.304770 0.584897 -0.155986 -0.468070 1.494089 -0.786821 0.485636 -1.118991 -0.496082 3.454348 1.219250 -1.964679 0.162416 -3.751331 2.000124 0.907236 1.757370 2.398583 0.493379 -0.023769 0.180239 1.508575 -1.731964 -0.562720 0.188816 1.015314 -1.744083 -0.137629 0.638158 1.134444 2.098167 0.110929 1.465239 1.098424 1.568342 -0.128772 -1.500245 -0.454240 -1.484711 2.567236 -1.453089 1.146103 -0.181256 0.286310 0.501486 -1.818056 -0.685342 -2.117438 0.038257 0.948893 -1.378747 0.142535 -2.292289 0.707417 -1.112380 -1.314860 0.810066 -0.114511 1.662687 0.738673 0.730481 -1.171071 -3.048076 1.646489 0.226111 0.936056 1.073494 -0.341593 -0.182815 0.588044 -1.464716 -2.001896 1.519242 1.291514 0.488519 -0.034932 0.076800 -0.895996 -0.291494 -0.027989 -0.590310 2.164944 -1.115560 1.856197 -1.082631 -0.916542 -1.301305 -1.972413 -0.401787 -2.420129 1.036668 1.640285 -0.878975 0.766330 -0.193147 0.937384 -0.217435 -2.586891 0.441536 -0.666554 -0.183792 2.927125 -1.525947 -1.068424 -0.695199 0.114977 -0.008797 2.090013 -0.235073 1.250314 2.194656 1.838971 0.783170 -2.067113 0.113691 0.723498 1.150472 1.339808 1.858247 -2.016491 -1.643234 -0.346202 -0.240338 -3.941616 -0.234271 1.163982 1.890871 -0.524563 -2.537864 1.106187 -1.322346 2.694763 2.304027 1.363305 1.067782 0.000000 -1.497024 1.382603 4.015372 -1.502263 1.912564 -1.881105 -2.022655 2.523397 -0.900707 2.010664 -0.348634 0.567021 0.553785 -2.415844 0.169995 3.027318 0.843424 0.888246 1.466470 0.058313 0.258083 -3.434280 -3.364320 -0.257047 1.592319 0.165749 4.066598 -1.899793 -1.478075 -0.233761 1.898854 -0.114517 -0.961669 0.416893 -1.156071 0.959450 -5.152909 -3.815715 3.682053 3.235426 0.610460 -0.276797 1.875264 1.046882 -1.012284 -1.854172 -1.457870 2.034349 0.161412 -1.174898 -0.578345 0.227401 -2.339816 -0.542068 0.216594 0.736323 1.808894 -1.535577 -0.517160 -0.436417 -3.033066 -1.664461 1.756848 -2.508245 -1.493289 0.030600 0.077895 0.085893 1.002840 -0.675768 -0.717080 1.059900 -1.684891 -0.808106 0.696149 1.928960 0.011108 2.752748 3.118072 0.171021 1.609191 0.822951 -1.601118 5.136651 -1.691749 -0.437364 -0.135585 1.273076 -0.531677 1.197660 1.361935 -0.861852 -2.146225 -2.680745 1.309703 -0.112508 1.136002 -2.418743 -2.015341 -2.362479 -0.599716 0.796380 3.182819 0.362206 5.000838 -0.733740 0.622595 -4.535173 0.094912 1.693772 0.130262 2.237468 1.645735 -2.197617 -2.440744 -0.655631 -1.758727 0.584038 -0.637509 -2.862158 -2.010292 -1.206168 1.432280 -1.346516 1.022483 2.607474 -0.423205 1.792097 0.404248 -0.850809 -1.166804 -0.410738 1.744459 0.796688 -1.849309 2.534731 -0.684222 5.626082 -0.990858 1.811546 -2.058837 0.349347 -0.289906 -1.171142 -0.975554 3.453483 2.108652 0.843095 0.105753 -0.557988 -0.806781 1.688955 -PE-benchmarks/count-1s-sorted-binary-array.cpp___GLOBAL__sub_I_count_1s_sorted_binary_array.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/bfs.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/bfs.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.268643 0.351573 1.552905 0.930686 -0.696781 -1.715566 -0.335272 -1.741506 0.895105 0.423983 1.417793 0.228207 1.015188 -0.298223 0.221611 0.136317 0.768489 0.107423 -0.030404 -0.513915 -0.389527 1.652745 0.494344 -0.680355 0.247538 -0.779538 0.744673 0.787771 0.719517 1.098878 0.186748 0.012349 -0.175562 0.576514 -0.663992 0.096534 -0.375856 0.599203 -0.684655 -0.259782 0.275330 -0.328743 1.124024 0.244826 0.880623 0.187145 0.997675 -0.014203 -0.687518 -0.536527 -0.773002 1.063757 -0.716355 0.756123 -0.559639 -0.108701 0.444002 -0.068804 0.063149 -1.267504 0.196519 -0.042288 -0.959185 -0.211748 -0.905083 0.114412 -0.476450 -0.845574 -0.074609 -0.340270 0.741692 0.008684 -0.184594 -0.522070 -1.829503 0.029896 0.184949 0.272518 0.755714 0.430593 -0.393991 -0.377578 -0.817343 -0.947650 1.126506 0.221359 0.336081 0.544082 -0.986175 -0.346655 -0.169559 0.204749 0.238242 0.700598 -0.811971 0.668680 0.217463 -0.346397 -0.498305 -0.989188 0.263737 -0.791954 0.244240 0.221237 0.168216 0.016226 -0.629060 0.262574 -0.578076 -1.169715 0.327582 -0.536746 -0.598952 0.948833 -0.564260 -0.310798 -0.147341 0.018538 0.183397 0.892982 0.369885 0.283920 0.845039 0.689891 0.534406 -0.981805 -0.103112 0.407653 0.745342 0.676889 0.285526 -0.458703 -0.680762 0.337813 -0.753505 -1.901628 -0.295806 1.214284 1.012624 -0.022589 -0.918402 0.624110 -0.594440 0.735676 1.139520 0.599626 0.461641 0.208058 -0.848878 0.409255 1.656453 -0.647262 0.907647 -0.169575 -0.750835 1.408711 -0.581789 0.590495 0.056338 -0.224459 0.033271 -0.516108 -0.019330 1.328300 0.457954 0.430327 0.237216 0.258747 -0.566511 -1.410148 -1.851852 -0.361049 1.380583 0.740730 1.732869 -0.901810 -0.432407 0.078528 0.729580 -0.453059 -0.753430 0.269442 -0.588771 0.674062 -2.611344 -1.457707 2.019199 1.317052 0.706653 -0.009173 0.797884 0.663209 -0.372709 -0.796046 -0.652052 0.609675 0.198014 -0.861408 -0.233433 0.062122 -1.475326 -0.187931 -0.033323 0.176278 0.041065 -0.346997 0.509578 -0.514522 -0.787761 -0.518757 0.350499 -0.883472 -0.379478 -0.170193 -0.084427 0.023315 0.291446 -0.235251 -0.140762 0.260577 -0.966543 -0.183589 -0.014426 0.619910 0.467409 1.772902 1.642096 -0.388182 0.692191 0.027528 -0.846288 2.087523 -0.819676 0.069678 -0.020746 1.077778 0.297378 0.568165 0.940991 -0.466938 -0.585335 -1.307087 -0.035844 0.727884 0.667079 -0.832280 -0.809939 -1.562480 -0.051864 0.096544 1.747212 -0.419835 2.071360 -0.656342 0.590043 -2.144141 0.230912 0.448414 -0.240635 0.790124 0.465390 -0.885619 -0.944835 -0.393606 -0.816994 -0.147833 -0.034997 -0.671485 -0.615214 -0.565892 0.158918 -1.176419 0.278827 0.606484 -0.500505 1.012314 -0.201303 -0.071360 -0.541871 0.237748 1.015416 0.283527 -0.892157 0.967902 0.069295 2.605826 -0.186116 1.055243 -0.671212 0.606770 -0.430584 -0.895409 -0.579866 1.458232 1.393051 0.326145 0.240866 0.331843 -0.018460 0.813990 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -2.642842 3.467868 15.896737 5.596852 -6.411592 -10.002652 -4.340937 -16.912377 8.339798 5.816236 12.386830 -0.778311 6.446179 -0.433630 0.011983 0.129434 6.147727 -2.218491 -0.321939 -4.932729 -2.574142 12.173755 2.761465 -3.553771 2.081713 -12.313713 5.714225 2.993841 5.588531 6.743320 3.069368 -0.091087 -2.154786 5.252973 -3.907759 3.162426 1.672571 3.878707 -5.377787 -1.742280 2.689878 0.246752 7.468371 1.193761 9.592062 2.183287 5.186748 -1.166674 -7.252805 -4.259066 -3.724110 9.598940 -5.183279 5.672297 0.871031 0.621797 0.197684 -5.179146 -0.207564 -7.512443 0.687573 0.028815 -5.444386 0.082660 -6.447814 1.855694 -3.317607 -3.840777 0.772543 -4.543131 5.894835 -0.738839 0.425045 -1.431787 -11.695420 3.258610 1.895879 1.214066 5.856657 1.996919 -1.780274 -2.095421 -5.592088 -8.672098 7.649453 6.007236 1.110058 2.230770 -5.742369 -1.696589 -0.706781 -1.218748 0.466025 8.726030 -9.671721 3.372597 -0.607933 -4.533609 -5.544082 -9.474866 0.809028 -7.855873 3.208162 4.207382 -2.781528 1.001815 -2.362298 2.704180 -2.231552 -7.566657 3.071429 -2.966750 -0.161752 9.754016 -5.489731 -4.500485 -3.249250 -0.817446 0.680579 6.896744 1.869878 2.739147 9.685507 5.898439 7.150238 -8.007578 -1.210977 4.720854 5.383851 4.309664 3.494525 -7.956073 -4.646256 2.557396 -4.663933 -14.742400 -3.719860 5.561941 9.474338 -0.439567 -7.154324 1.986158 -3.797127 7.948216 7.755766 3.940446 2.691406 1.132323 -7.082988 2.659063 13.806941 -4.704256 6.584981 -3.609991 -5.350891 7.913821 -4.637651 5.965539 1.053817 0.955654 -0.329446 -7.344423 -0.057194 11.198712 2.506104 3.530867 -0.250502 2.964633 -4.256301 -12.073569 -16.104320 -2.897273 8.065529 2.904603 13.406092 -8.368147 -5.367728 -1.055236 10.299577 -1.251538 -6.113976 3.475962 -5.326993 4.777824 -15.401774 -12.534590 16.102219 16.001120 5.119067 -1.934597 8.076362 3.844275 -8.115446 -6.937075 -6.292620 5.942357 1.534348 -7.105632 -2.391606 1.299457 -10.910481 -3.045302 -1.246196 2.202947 3.366768 -1.869605 3.838561 0.180734 -6.251098 -4.670778 5.620412 -5.527998 -4.811257 -1.893209 1.539639 0.600449 4.682318 -4.671975 -3.169497 3.637070 -7.435791 -1.229072 3.276670 5.718577 1.995344 14.243810 12.111864 -2.047197 7.069432 -0.447810 -5.740367 16.547376 -6.247665 -0.521705 -0.785301 4.230515 0.233300 4.181396 6.158604 -4.194383 -7.067018 -9.545658 0.397786 -0.180788 5.054437 -7.015468 -9.526995 -12.460791 -0.461836 0.279900 11.508849 0.360588 18.421342 -3.383093 3.659980 -18.631123 1.102655 6.931955 -1.862889 6.539305 4.304884 -7.738840 -9.923192 -1.805930 -7.322775 -3.523596 -0.270905 -6.764501 -5.838336 -7.656290 7.468872 -5.998544 2.408230 7.206306 0.328951 8.264028 0.949567 -1.671090 -5.543556 1.154748 7.593772 1.547826 -7.094965 9.006481 0.636859 22.227312 -3.648326 6.963285 -4.987342 3.165678 -2.811259 -7.480498 -4.548811 11.111512 10.864503 4.706991 -1.329395 -0.173029 -3.724848 7.106420 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = -1.389364 -0.388183 1.756104 -0.043996 -0.664101 -0.927190 -0.546786 -2.021790 0.883008 0.974458 2.386363 0.026989 1.287462 -0.653432 0.479692 -0.184802 1.044035 -1.227145 0.602998 -0.440249 0.585077 1.532066 0.777845 0.445390 0.096833 -1.150567 0.258482 -0.148176 0.437285 1.305726 0.255139 -0.310657 -0.751581 0.145720 0.347799 1.101079 0.836243 0.664865 -0.296791 -0.278262 -0.198330 -1.071978 0.798590 -0.510894 1.716213 -0.629392 0.417003 -0.233776 -1.356205 -1.212205 -0.120526 0.581152 -1.389488 0.357911 0.608039 -0.790891 -0.195330 0.248137 -0.540549 -2.017198 0.000825 -1.087418 -0.260091 0.235952 -0.307125 0.693490 -0.789622 -0.107400 0.043271 -1.005480 0.672743 0.546074 0.949957 1.444101 -1.287251 0.484369 0.421842 -0.048697 0.273210 0.243675 -0.313201 -0.403949 -0.362725 -0.968097 0.945567 0.809978 0.246620 -0.093803 -1.547291 1.467874 0.095603 0.167449 -0.025697 0.549470 -1.287621 0.014724 0.470340 -0.609237 -0.095741 -1.646951 -0.026754 -1.160263 0.198854 1.074023 -0.558473 -0.324043 -1.963956 0.612131 -1.342649 -1.315069 0.958219 -0.433553 -0.682164 0.784314 -1.689613 0.290520 -0.987442 0.307937 1.060083 0.367843 0.026371 1.047861 0.309779 0.878929 0.971816 -1.254928 -0.344928 0.839195 1.719475 0.147447 -0.029390 -0.357188 -0.532495 0.578412 -1.386524 -1.768551 -1.391960 1.055490 1.375691 0.519443 -0.898576 -0.097798 -0.597957 1.545899 1.715594 0.553262 0.019434 0.712032 -1.265412 0.466053 0.829734 -0.834896 1.385910 0.470831 -0.191331 0.962095 -0.927432 0.743437 0.330052 0.596724 -0.130488 -1.124023 -0.726536 1.175509 1.288424 1.454790 -1.463338 0.564188 -0.062392 -1.721046 -2.232737 -0.716692 1.900905 0.644910 0.690373 -1.014762 -0.895550 0.414660 1.267106 0.153882 -1.797415 0.171483 -0.504515 0.591933 -2.660644 -1.669605 2.358615 2.435533 1.124032 0.575467 0.660780 1.029935 -1.814175 -0.126370 -0.697041 1.063219 -0.858095 -2.111052 -0.821626 0.423402 -1.361151 -0.783535 -0.405478 0.244935 -0.047909 0.089117 0.987208 1.312789 0.026862 0.545578 0.857081 -0.553997 -1.560110 -0.638209 0.105213 1.240870 0.305047 -0.750430 0.528675 0.781809 -1.663191 -0.322500 0.532846 0.701971 0.688637 2.082304 1.698861 -0.337778 -0.133057 -0.722522 -1.007179 0.831488 -0.846139 -0.143365 -0.328206 0.180584 0.557916 0.302652 1.226467 -0.535027 -1.190361 -1.062420 -0.556175 0.315676 1.317695 -0.401802 -2.434587 -1.452791 0.809677 0.566867 1.455073 -0.096748 2.309728 -0.533566 0.553106 -2.222927 -0.037232 0.516332 -0.119899 0.898483 0.092462 -0.435270 -1.366518 -0.475225 -1.284901 -0.380066 -0.000315 -0.419031 -0.211900 -1.364230 1.756968 -0.729039 -0.177060 -0.531674 0.269536 2.079493 1.751956 -0.435054 -1.212284 0.948269 0.507240 0.386687 -0.700181 1.738100 0.554999 2.813211 -0.637681 -0.009101 -0.410589 0.934788 -0.514483 -0.605538 -0.108127 1.443861 2.389572 0.662999 -0.698973 -0.218015 -0.489874 0.649380 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = -0.112323 0.208669 1.150620 0.442719 -0.419951 -1.121026 -0.252673 -1.778975 0.863064 0.509000 1.232396 0.043252 1.004232 -0.521779 0.031301 0.148949 0.745150 0.028766 0.143651 -0.371117 -0.183906 1.479895 -0.100568 0.000243 0.166499 -0.766985 0.563909 0.410196 0.734023 0.796565 0.262571 0.006794 -0.216132 0.259274 -0.277637 0.244908 -0.034522 0.488258 -0.672085 -0.318673 -0.005674 -0.568338 0.832796 0.048152 0.760484 -0.240624 0.515355 -0.074500 -0.377602 -0.464169 -0.429096 0.635991 -0.424982 0.461337 -0.244104 -0.575544 0.252896 0.221023 0.115511 -0.516324 0.111168 -0.344537 -0.566194 -0.071562 -0.576725 0.182454 -0.505479 -0.507991 -0.111785 -0.445426 0.426330 0.096377 0.059218 -0.115499 -1.648892 0.106828 0.330848 -0.031019 0.548981 0.523257 0.041101 -0.452347 -0.689439 -0.787916 1.160508 0.690583 0.210978 0.447686 -1.118900 -0.131779 -0.092470 0.144814 0.434287 0.479370 -0.706920 0.261567 -0.090151 -0.322787 -0.184770 -1.248459 0.226837 -0.637882 0.174184 0.085385 0.024358 0.140135 -0.259024 0.263312 -0.412108 -0.839038 0.350425 -0.485013 -0.331684 1.045509 -0.403600 -0.423198 -0.557831 0.026531 0.115740 0.448179 0.252397 0.321817 0.650920 0.441702 0.620127 -0.871035 -0.258277 0.718187 0.498252 0.344073 0.003626 -0.441821 -0.421803 0.353901 -0.746787 -1.527005 -0.655558 0.670145 0.821626 -0.308697 -0.324398 0.350246 -0.391146 0.552541 0.968766 0.137127 0.263538 0.369623 -0.686861 0.312350 0.947428 -0.439900 0.594534 -0.259570 -0.429989 0.715783 -0.277695 0.325530 -0.118936 -0.068008 -0.101711 -0.424406 0.151180 0.974803 0.114356 0.395770 -0.375711 0.337629 -0.628905 -1.012472 -1.559695 -0.240071 1.215446 0.598722 1.129512 -0.700154 -0.473724 0.246802 0.671233 -0.120829 -0.652523 0.494272 -0.684186 0.587017 -1.790924 -1.235323 1.546819 1.069294 0.714454 -0.090255 0.438431 0.511226 -0.769216 -0.564888 -0.519954 0.505722 0.167514 -1.426773 -0.437197 0.154180 -1.078286 -0.242999 -0.039359 0.119010 0.072515 -0.010949 0.904139 -0.452588 -0.294807 -0.372961 0.812427 -0.448771 -0.282189 -0.311926 -0.016512 0.127233 0.485979 -0.362342 0.047850 0.279698 -0.639288 -0.056344 0.015442 0.311096 0.145698 1.385809 1.387838 -0.378466 0.445648 -0.216724 -0.652277 1.243884 -0.599785 0.035682 -0.058150 0.423819 0.183114 0.474718 0.842026 -0.414676 -0.601002 -1.039322 -0.439314 0.446436 0.551103 -0.282075 -0.779630 -1.256748 0.079615 -0.147856 1.338331 -0.065579 1.581785 -0.690880 0.434103 -1.466101 0.153650 0.316354 -0.207097 0.815603 0.193797 -0.628946 -0.457866 -0.265443 -0.849727 -0.610545 -0.058074 -0.577611 -0.516159 -0.709668 0.514684 -0.794073 0.078439 0.266414 -0.137510 0.961289 -0.178486 -0.047250 -0.706183 0.508630 0.660920 0.071266 -0.607179 0.648952 0.174747 1.994761 -0.178612 0.552636 -0.458489 0.565644 -0.461835 -0.969237 -0.418049 1.059130 1.196879 0.346538 -0.114391 0.131151 -0.037145 0.694268 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = -0.402938 0.209155 1.910944 0.580440 -0.707279 -1.708928 -0.446147 -2.620378 1.417578 0.840127 1.920255 0.182568 1.498687 -0.830997 0.103671 0.291489 1.259780 -0.203891 0.131083 -0.684465 -0.032481 2.227189 0.133062 -0.115654 0.360936 -1.433735 0.688627 0.506542 1.047642 1.311981 0.468511 -0.004737 -0.406206 0.470725 -0.248649 0.625484 0.172321 0.610404 -1.048792 -0.403389 0.003231 -0.654459 1.303072 0.142252 1.429847 -0.361293 0.762449 -0.097330 -0.779814 -0.823726 -0.589756 1.108770 -0.746287 0.751100 -0.178443 -0.541946 0.258644 0.061707 0.091592 -1.055500 0.093673 -0.440634 -0.847415 -0.066129 -0.817765 0.290577 -0.702193 -0.620107 -0.246086 -0.858622 0.674557 0.142259 0.105590 -0.047983 -2.353262 0.154749 0.429178 0.044597 0.875805 0.726621 -0.225452 -0.734274 -0.954217 -1.230557 1.624275 1.002428 0.244853 0.690941 -1.670213 -0.099429 -0.258693 0.139690 0.534043 0.748544 -1.370515 0.221017 0.188477 -0.623324 -0.303206 -1.660910 0.328448 -0.952309 0.200315 0.171400 0.021710 0.123563 -0.758057 0.404206 -0.770127 -1.029509 0.718348 -0.632380 -0.641458 1.544061 -0.772847 -0.550716 -0.953881 0.064180 0.289177 0.839236 0.235983 0.506833 1.007798 0.755579 1.014893 -1.291488 -0.292983 1.022089 0.990425 0.450317 0.131269 -0.649415 -0.667956 0.590115 -1.130902 -2.279643 -1.060333 1.041928 1.357749 -0.130884 -0.646930 0.311368 -0.588974 1.047783 1.440452 0.212836 0.375726 0.496737 -1.179277 0.470845 1.610757 -0.737231 1.020423 -0.364605 -0.551085 1.143691 -0.632596 0.617733 -0.167226 -0.137868 -0.195040 -0.650920 0.132221 1.501436 0.322705 0.629112 -0.735760 0.534913 -0.730498 -1.597353 -2.583203 -0.548333 1.712896 0.907335 1.728348 -1.085962 -0.723181 0.047554 1.080649 -0.180057 -1.094384 0.689301 -1.071646 0.830999 -2.749810 -1.837184 2.683306 2.082562 1.183388 -0.014216 0.808298 0.781267 -1.270631 -0.788829 -0.699351 0.766384 0.171892 -2.059930 -0.562083 0.297439 -1.695000 -0.555187 -0.185733 0.205280 0.084220 0.004583 1.413122 -0.334778 -0.441362 -0.469438 1.031341 -0.664302 -0.664132 -0.433456 0.026573 0.307410 0.735838 -0.563751 0.036626 0.528529 -1.122697 -0.199976 0.117103 0.686319 0.414880 1.974674 2.155350 -0.456897 0.803067 -0.370947 -1.079241 1.806880 -0.925646 0.075647 -0.133225 0.518824 0.417120 0.646051 1.181029 -0.621224 -0.806244 -1.463897 -0.470436 0.605538 0.949765 -0.569080 -1.528011 -1.845234 0.194020 -0.121974 1.934240 -0.175662 2.499596 -0.998692 0.649443 -2.515035 0.236612 0.673240 -0.201250 1.055209 0.358503 -1.009816 -0.997461 -0.380146 -1.391518 -0.786788 -0.024680 -0.752795 -0.743780 -1.133801 1.204201 -1.297097 0.145284 0.506812 -0.167033 1.676456 0.038653 -0.064611 -1.126169 0.679878 0.931738 0.195738 -0.855232 1.043958 0.298525 2.983645 -0.346413 0.844990 -0.629128 0.920060 -0.667014 -1.496443 -0.673863 1.623286 1.953465 0.502812 -0.145103 0.032386 -0.131845 1.112190 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.063568 0.265041 0.769921 0.241068 -0.351293 -0.645405 -0.113357 -0.857622 0.429571 0.243443 0.540157 0.096186 0.565992 -0.236154 -0.068758 -0.127949 0.459695 0.144471 0.063357 -0.258250 -0.071413 0.623576 -0.067266 -0.142247 0.144407 -0.448289 0.493869 0.208624 0.432852 0.635819 0.142832 -0.005586 -0.321676 0.216402 -0.097663 -0.069869 0.071281 0.263218 -0.458318 -0.079584 -0.010122 -0.217429 0.507111 0.126199 0.349739 0.074388 -0.048142 0.062059 -0.229672 -0.264959 -0.063909 0.077326 -0.196460 0.376519 -0.082169 -0.240348 0.089293 0.183058 0.201746 -0.380955 0.174003 -0.236868 -0.141417 -0.014314 -0.439927 -0.010294 -0.396757 -0.439536 -0.123660 -0.430160 0.158235 0.019979 0.110395 -0.120256 -0.914417 0.044532 0.191143 0.104383 0.413265 0.340336 -0.060840 -0.285706 -0.402756 -0.474234 0.331091 0.372139 0.099349 0.338615 -0.558082 -0.265904 0.109974 0.096434 0.271023 0.278175 -0.302210 0.178151 -0.330258 -0.113684 0.023610 -0.864122 0.125184 -0.257553 0.126296 -0.032848 -0.102020 0.014123 -0.107751 0.196824 -0.064295 -0.308694 0.355961 -0.281317 -0.193290 0.656606 -0.104320 -0.347541 -0.344742 -0.075185 0.145598 0.341026 0.030134 0.062845 0.159328 0.243560 0.385411 -0.510375 -0.103253 0.411646 0.112782 0.176986 0.119644 -0.218320 -0.208981 0.218155 -0.485743 -0.831664 -0.221736 0.185545 0.446886 -0.214024 -0.141916 0.108993 -0.456285 0.179088 0.452819 0.219551 0.235217 0.107026 -0.388423 0.124987 0.476500 -0.228321 0.285436 -0.072048 -0.301093 0.325935 -0.003110 0.257163 -0.277171 -0.141368 0.031591 -0.154946 0.118752 0.583496 0.026112 0.217653 -0.105876 0.112645 -0.433853 -0.580009 -0.767259 -0.118784 0.785314 0.367633 0.556025 -0.418846 -0.135223 0.033875 0.478436 -0.002589 -0.287563 0.265006 -0.231363 0.328565 -1.033058 -0.646240 0.784146 0.683658 0.305242 -0.172890 0.053940 0.166203 -0.303988 -0.443406 -0.291514 0.099994 -0.115030 -0.670205 -0.328524 0.134370 -0.556616 -0.027519 0.181984 0.093696 0.333811 -0.109028 0.377706 -0.183439 -0.096426 -0.481476 0.433464 -0.231498 -0.111378 -0.007413 0.007762 0.089365 0.238145 -0.136003 -0.140910 0.239897 -0.236922 -0.024552 -0.046866 0.207947 -0.023178 0.698284 0.511236 -0.161503 -0.018140 0.000554 -0.440581 1.052838 -0.424964 0.139353 0.039899 0.309284 0.098121 0.288397 0.439311 -0.274352 -0.230834 -0.621055 -0.393518 0.200396 0.296407 -0.366499 -0.548621 -0.650505 0.193156 -0.224704 0.653703 -0.046965 0.921249 -0.288496 0.222136 -0.639184 0.075399 0.309583 -0.148506 0.511549 0.201830 -0.406440 -0.311412 -0.147526 -0.576476 -0.099416 -0.050275 -0.251170 -0.188988 -0.081292 0.149639 -0.226605 0.081819 0.222667 -0.213470 0.554069 -0.169556 0.007931 -0.385151 0.122413 0.325931 0.000000 -0.340144 0.389277 0.164606 0.897382 0.025088 0.275164 -0.161390 0.202567 -0.179614 -0.570297 -0.362947 0.640753 0.520702 0.352783 -0.030649 0.078136 0.012974 0.344791 -PE-benchmarks/bfs.cpp__main = 0.407474 2.099586 6.871806 1.715697 -2.722161 -5.960250 -1.723993 -9.143342 3.922064 2.216377 5.414164 -0.141208 3.419893 -0.191989 0.306475 1.746999 3.274588 -0.225672 0.231637 -2.592152 -1.383223 6.271435 0.089141 -0.394064 1.248710 -5.486678 2.085596 2.372389 3.750074 3.041260 1.502950 -0.237106 -1.129993 2.111336 -1.774556 0.918338 0.455371 1.440790 -4.135741 0.117859 -0.049819 -0.346073 4.062621 0.580081 4.059665 0.584206 2.928039 0.500692 -1.968646 -1.664978 -2.339174 5.198199 -1.518305 2.669882 -0.585972 -0.805376 -0.120324 -1.351381 0.127952 -1.102217 -0.153431 -0.096304 -2.927659 0.008620 -3.201967 0.674964 -2.276077 -2.418861 -0.035143 -1.403170 2.709468 -0.366419 -0.626138 -0.975824 -7.518034 0.713476 0.965466 1.084818 2.697259 0.724148 -0.056246 -0.939331 -3.238811 -3.996336 4.199227 3.959277 0.760265 1.086042 -4.165181 -1.505862 -0.985870 -0.314600 1.329730 3.248712 -4.469718 1.572728 -1.251907 -2.063219 -2.982032 -5.446963 0.931987 -2.808174 1.660478 -0.618508 0.500950 0.474249 -0.599192 1.148039 -1.033712 -3.561274 1.131282 -1.152729 -0.507865 5.887993 -1.666201 -2.160763 -2.120383 -0.571620 -0.901705 3.004156 1.413260 0.863698 4.316935 3.037908 2.836111 -3.609732 -1.432465 2.170826 2.000775 2.424023 1.760096 -3.155633 -2.398896 1.286810 -2.582410 -7.293044 -1.724839 2.716268 4.190955 -1.376513 -1.335458 0.393612 -2.156401 3.374072 3.583616 0.952109 1.502945 0.314746 -3.222408 1.834969 6.620289 -2.124673 3.184199 -2.525278 -1.664351 3.229202 -1.851863 2.346735 0.297769 -0.387017 -0.861212 -2.120843 0.163303 4.770962 1.014972 1.229689 0.025423 1.450168 -2.847930 -4.861298 -7.418546 -1.158668 4.088260 1.131466 5.672445 -3.496950 -2.696761 -0.496344 4.073864 -0.516940 -2.698972 2.527352 -3.442624 2.396872 -6.602547 -5.288566 7.283736 7.344397 2.924909 -1.184561 3.395723 2.381542 -4.592569 -3.697661 -2.235417 2.552245 0.602345 -5.859515 -1.859320 0.614701 -5.129332 -0.763068 -0.689552 1.314002 1.200253 0.716481 3.534054 -1.046537 -3.219649 -2.641766 3.172838 -2.300176 -1.339267 -0.363689 0.197868 -0.286979 2.321525 -2.334219 -0.837532 2.142108 -3.396155 0.263977 1.117750 2.203464 0.569683 6.412711 5.466061 -0.476296 4.625934 -0.377758 -3.120759 6.666665 -2.456600 0.719754 -0.242127 1.485228 -0.707251 2.174568 2.825621 -1.858249 -3.561479 -4.511072 -0.550885 0.632308 2.574623 -0.763811 -4.286523 -5.852632 -0.366095 -0.068545 6.035506 -0.080464 7.673337 -2.310186 2.477166 -8.155231 0.911621 1.724058 -0.750370 3.256391 1.578764 -3.637915 -2.895190 -0.558803 -4.121971 -3.439999 0.008506 -3.471832 -3.064614 -3.442466 2.975154 -3.274870 0.400543 2.923734 -0.580565 4.162747 -1.030155 -0.637094 -2.701735 1.085752 4.988121 0.199052 -3.370240 2.952937 0.409338 10.771907 -0.762835 3.526726 -1.871032 0.833226 -0.826441 -4.150328 -2.314308 5.332387 4.971646 1.874164 -0.752127 -0.255742 -0.401476 2.905855 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/bfs.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = -0.260628 0.333435 1.731486 0.416982 -0.693480 -1.566681 -0.361392 -2.154712 1.107542 0.594881 1.592895 0.015094 1.162509 -0.563572 0.066883 0.262515 0.999716 -0.054182 0.005735 -0.625012 -0.156563 1.600647 -0.024764 -0.219994 0.381962 -1.174297 0.565788 0.509415 0.783482 1.027856 0.386818 -0.027179 -0.412835 0.470452 -0.230745 0.419658 0.316204 0.415839 -0.980759 -0.238450 -0.107865 -0.388548 1.028892 0.101857 1.189717 0.007513 0.508063 0.056919 -0.692431 -0.557550 -0.371104 1.008559 -0.504996 0.666817 -0.015988 -0.295466 0.126242 -0.165914 0.133670 -0.917293 0.102007 -0.342163 -0.668444 -0.050098 -0.739219 0.125034 -0.483472 -0.669015 -0.120355 -0.779769 0.483191 -0.016878 0.007930 -0.046738 -1.772357 0.127496 0.444384 0.171886 0.734030 0.455535 -0.083829 -0.562200 -0.772390 -0.967390 1.153984 0.822338 0.327812 0.604646 -1.330160 -0.153374 -0.113089 0.011184 0.456496 0.648528 -1.104328 0.143254 0.052666 -0.531127 -0.444586 -1.475754 0.284207 -0.649887 0.260909 0.084181 -0.021211 0.179774 -0.570742 0.428426 -0.494654 -0.736724 0.622089 -0.556868 -0.348303 1.322398 -0.544364 -0.562412 -0.754824 -0.078178 0.131148 0.793556 0.141478 0.261172 0.822135 0.639736 0.871160 -1.028365 -0.304792 0.737765 0.756707 0.488446 0.290833 -0.674977 -0.516172 0.429992 -1.028491 -1.903608 -0.699379 0.616246 1.096338 -0.179508 -0.632466 0.230673 -0.571439 0.894724 1.042755 0.313008 0.290722 0.249095 -0.990679 0.306089 1.325833 -0.614142 0.870092 -0.316218 -0.507758 0.688229 -0.299832 0.488664 -0.078991 -0.252521 -0.109393 -0.449035 0.088829 1.198504 0.376553 0.446706 -0.519716 0.395880 -0.785072 -1.331916 -2.089026 -0.408896 1.357826 0.641152 1.586507 -0.947757 -0.780562 -0.169430 1.051753 -0.276139 -0.834761 0.549879 -0.884798 0.679948 -2.074266 -1.537023 2.208398 1.878724 1.014713 -0.139863 0.799409 0.425276 -1.164818 -0.713860 -0.551240 0.475916 0.073484 -1.704029 -0.483571 0.226155 -1.407989 -0.316784 -0.157788 0.265019 0.175277 0.123171 1.122291 -0.265989 -0.392830 -0.511234 0.717663 -0.472583 -0.427878 -0.179448 0.064437 0.254489 0.629840 -0.624017 -0.220210 0.467857 -0.978824 -0.081697 0.116724 0.660358 0.359559 1.800464 1.631412 -0.233949 0.874476 -0.228415 -0.909472 1.655612 -0.686464 0.203829 -0.072457 0.487340 0.242048 0.497659 0.978237 -0.519504 -0.668608 -1.203076 -0.452710 0.389282 0.712247 -0.503058 -1.375602 -1.530694 0.159412 -0.152301 1.526030 -0.163400 2.115550 -0.618449 0.553461 -2.145897 0.186724 0.636138 -0.234972 0.800311 0.382534 -0.972753 -1.047972 -0.182952 -1.195523 -0.870915 -0.001279 -0.627504 -0.593348 -0.868371 1.011250 -0.952821 0.079101 0.602128 -0.077916 1.292874 0.024991 -0.023860 -0.772046 0.356542 0.994276 0.048203 -0.736065 0.815064 0.331462 2.652853 -0.143851 0.702180 -0.481547 0.601094 -0.321560 -1.181110 -0.666571 1.293979 1.513637 0.543455 -0.174701 0.046749 -0.159922 0.927530 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = -1.833463 0.080165 4.861780 1.323895 -2.413272 -3.824522 -1.311291 -5.884188 3.436727 1.949832 5.106715 -0.053932 3.106360 -2.044827 0.115209 0.317262 2.608690 -1.145123 -0.013080 -1.687228 -0.493106 4.714631 0.525371 -0.883077 1.106233 -3.665685 2.116207 0.424757 1.482937 3.117444 1.203241 -0.093978 -1.283324 1.323578 0.371580 2.421452 1.199642 1.235357 -1.759471 -0.903164 0.346360 -1.678681 2.496904 0.149529 4.109964 -0.190074 1.317001 -0.272507 -2.779096 -1.763673 -0.785839 2.341559 -2.345083 1.566616 0.665169 -0.268635 0.287497 -1.245098 -0.152313 -3.682894 0.053521 -1.858368 -2.121588 0.135264 -1.957211 0.722750 -1.349483 -1.058628 -0.310638 -2.676505 1.371436 0.170703 0.341423 0.690659 -3.979918 0.415116 1.139554 0.122516 1.894355 1.212042 -0.819443 -1.661218 -2.149596 -2.670192 3.218256 1.804407 0.736261 1.157611 -3.165688 0.660403 -0.388365 -0.026580 0.903191 2.147793 -3.719315 -0.203822 1.057158 -1.695071 -0.990410 -3.881383 0.728007 -2.255537 0.721459 1.532346 -1.382808 0.370951 -1.994880 1.281012 -1.740299 -2.119727 1.833170 -1.687633 -0.521725 3.112374 -1.925121 -1.394147 -2.480173 -0.241808 1.239087 2.226445 0.292648 1.063968 2.921395 1.869035 2.859718 -2.833402 -0.901940 2.359400 2.771623 0.968139 0.623558 -2.140494 -1.346793 1.221184 -2.579388 -5.057858 -2.456989 1.527341 3.131922 0.181604 -2.509642 0.482516 -1.129696 2.942280 3.261065 1.142790 0.364621 0.980976 -3.091966 0.726891 3.816582 -1.600167 2.310493 -0.804477 -1.593369 2.467397 -1.219653 1.203930 0.084352 0.035322 -0.485492 -1.883600 -0.002078 3.191719 1.001057 1.487533 -2.045011 1.337005 -1.575365 -3.939229 -6.124379 -1.299548 4.175496 2.369513 4.788420 -3.093488 -1.990886 -0.542608 3.050520 -0.144840 -2.710033 1.136658 -2.335490 1.787875 -6.278331 -4.715194 6.742713 5.409771 3.081119 0.141062 2.536093 1.127337 -3.692263 -1.409502 -2.189362 1.766851 0.198192 -3.983947 -0.830807 0.704651 -4.106008 -1.616633 -0.756367 0.790621 0.811228 -0.405533 2.644456 0.081774 -0.527359 -0.985938 2.123869 -1.191539 -2.094362 -0.891761 0.288846 1.283992 1.761943 -1.561179 -0.334116 0.823473 -2.857456 -0.500033 0.973660 1.921140 1.178200 5.294063 5.298437 -0.954003 1.517744 -0.940557 -2.141091 4.256674 -1.697144 0.228772 -0.273843 1.084701 1.369160 1.010961 3.096586 -1.411541 -1.925063 -2.969911 -0.756436 0.681722 2.219156 -2.488872 -4.393742 -4.483588 0.584243 -0.014562 4.109834 -0.109732 6.428102 -1.360535 1.356584 -6.610671 0.302844 2.803154 -0.479168 2.102538 0.875103 -2.564576 -3.338887 -0.629064 -3.087324 -1.852784 -0.161733 -1.154395 -1.816090 -2.762116 3.724013 -2.572837 0.221830 1.632138 0.343659 3.804989 1.233325 -0.084078 -2.326913 0.922335 2.039768 0.384139 -1.897991 3.009713 1.071116 7.429333 -0.918396 1.383935 -1.292880 2.446197 -1.396572 -3.218407 -1.498720 3.246923 4.566539 1.532541 -0.705054 -0.070052 -1.002307 2.722099 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/bfs.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.137287 0.402115 1.653936 0.705834 -1.091195 -1.487060 -0.398140 -2.022887 1.172423 0.480308 1.081101 0.117626 0.939750 -0.721470 -0.208741 0.428360 1.058691 0.194482 -0.109972 -0.756774 -0.427247 1.343372 0.169122 -0.555796 0.621181 -1.149262 1.030201 0.027100 0.741718 1.198311 0.539480 -0.069429 -0.460138 0.639556 0.469521 0.825635 0.293980 0.440473 -0.926998 0.059536 0.041888 -0.706437 0.925330 0.447800 1.193763 0.168700 0.395934 0.076206 -1.009485 -0.390386 -0.415576 0.700366 -0.881013 0.769993 -0.136005 0.085531 0.102769 -0.318303 0.183453 -0.821106 -0.142757 -0.709559 -0.839593 0.064073 -1.030483 0.137735 -0.693267 -0.623391 -0.555884 -0.464451 0.452774 0.221667 -0.054725 0.141375 -1.623889 -0.163494 0.334005 0.354292 1.034110 0.321188 -0.172091 -0.855768 -0.962780 -1.077195 1.200543 0.293291 0.311196 0.567830 -0.758317 -0.312183 -0.249567 0.130494 0.578501 0.738877 -1.165474 -0.064018 -0.179509 -0.432693 -0.231000 -1.725949 0.279063 -0.658967 0.220694 -0.080701 -0.426008 0.202004 -0.344040 0.565144 -0.312632 -0.444805 0.544260 -0.438662 -0.484864 1.256722 -0.128140 -0.766307 -0.707784 -0.208912 0.325691 0.809416 0.185625 0.256847 1.010252 0.696981 1.032280 -0.920759 -0.321392 0.549277 0.477969 0.404639 0.518882 -0.557586 -0.682589 0.490038 -0.684404 -1.789323 -0.595122 0.454436 1.013018 0.093096 -0.565078 -0.213684 -0.611210 0.543252 0.690764 0.439919 0.274858 0.102513 -0.910843 0.247097 1.385998 -0.595427 0.646756 -0.359598 -0.142732 0.742765 -0.317942 0.247066 -0.566293 -0.430704 -0.089980 -0.417654 -0.032208 1.197106 0.032414 -0.008609 -0.292857 0.433119 -0.933902 -1.311341 -1.667778 -0.334071 1.589228 0.533644 1.206461 -1.076971 -0.282196 -0.355898 0.821626 -0.008947 -0.468276 0.353073 -0.892934 0.716544 -1.809261 -1.483666 2.227115 1.390517 0.888388 -0.110981 0.270296 0.481914 -1.230186 -0.798903 -0.668118 0.262650 0.063202 -1.328757 -0.779133 0.314834 -1.501795 -0.357145 0.174517 0.384352 0.475480 -0.048413 0.862001 -0.039099 -0.157500 -0.800610 0.675340 -0.457614 -0.463478 0.000350 0.055297 0.371782 0.628094 -0.245218 -0.187201 0.270421 -0.639369 -0.209733 0.188391 0.813691 0.228037 1.619699 1.722185 -0.257484 0.357812 -0.060973 -1.012221 1.546905 -0.503844 0.423936 0.033660 0.331327 0.301789 0.347508 1.231031 -0.561862 -0.591482 -1.101753 -0.707781 0.358416 0.768997 -0.529357 -1.078547 -1.298842 0.162735 -0.164840 1.331474 -0.132991 1.759397 -0.527138 0.550246 -1.779150 0.188341 1.114897 -0.227477 0.804303 0.480400 -0.917824 -0.922455 -0.375512 -1.136670 -0.448160 -0.242009 0.069532 -0.620885 -0.210759 0.777802 -0.677411 0.108567 0.649101 -0.044581 1.311842 -0.134499 0.222255 -0.714685 0.222645 0.881274 0.100931 -0.718942 0.758707 0.578221 2.307591 0.137421 0.487507 -0.383670 0.178755 -0.301551 -1.113530 -0.782972 1.222631 1.355106 0.529365 0.183840 0.001103 -0.096921 1.050612 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/bfs.cpp__std::allocator >::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.463800 0.313980 2.643212 1.367229 -1.312725 -2.373463 -0.603398 -3.583389 2.123469 1.115596 2.492040 0.529394 2.115575 -1.268924 -0.144262 -0.140217 1.735207 -0.070946 0.147198 -0.959726 -0.343800 3.547639 0.190350 -0.547788 0.378110 -2.067212 1.655164 0.767873 1.782212 2.203294 0.607047 0.053874 -0.687345 0.725743 -0.490506 0.360235 -0.379300 0.973438 -1.538790 -0.720340 0.502212 -1.134767 2.193680 0.293100 1.687595 -0.655400 1.010614 -0.205669 -1.016040 -1.119355 -0.971660 1.030678 -1.039107 1.182364 -0.449649 -0.847462 0.591306 0.355555 0.277826 -1.326897 0.267843 -0.768920 -1.173707 -0.145128 -1.488667 0.314722 -1.436444 -1.103562 -0.291417 -1.453103 0.923075 0.256252 0.227963 -0.725401 -3.725220 0.260854 0.535224 0.075243 1.340069 1.602336 -0.415263 -1.018891 -1.630090 -1.729991 1.999216 1.325084 0.113562 0.983940 -2.222641 -0.678415 -0.102475 0.415749 0.785609 1.070040 -1.862474 0.648284 -0.371629 -0.735787 -0.136262 -2.554497 0.449617 -1.374877 0.384519 0.268913 -0.422804 0.194556 -0.461240 0.299585 -0.719990 -1.671989 0.844218 -1.014654 -0.720872 2.466671 -0.828513 -1.089722 -1.412688 0.096025 0.385025 1.177535 0.309799 0.636369 1.508171 1.005912 1.461695 -1.976798 -0.262241 1.690616 0.971925 0.591705 0.169627 -0.686783 -0.934508 0.737813 -1.245135 -3.344315 -1.298656 1.456358 1.854481 -0.398707 -0.686766 0.546211 -1.021713 1.322201 2.171788 0.332921 0.817385 0.742739 -1.606770 0.791670 2.453604 -0.807676 1.135642 -0.817616 -1.348013 2.292634 -0.775654 0.999679 -0.629254 -0.064067 -0.226036 -1.005665 0.559067 2.241910 -0.210926 0.724442 -0.561555 0.618771 -0.906307 -2.363417 -3.570880 -0.533683 2.665611 1.919781 2.733261 -1.669932 -0.496266 0.351438 1.277199 0.157484 -1.396803 1.135966 -1.340849 1.232036 -4.637592 -2.803510 3.623289 2.653260 1.263912 -0.101768 0.907901 1.020289 -1.207496 -1.399480 -1.366257 1.114062 0.441534 -2.446063 -0.556649 0.462826 -2.332521 -0.702925 0.210833 0.198911 0.844414 -0.859209 1.651809 -1.090932 -0.710704 -1.347469 1.988787 -1.176830 -0.799554 -0.537659 -0.054546 0.209489 1.094310 -0.285539 -0.048675 0.367328 -1.058983 -0.253903 -0.073056 0.803674 0.119379 2.486251 3.150760 -0.918130 0.551975 -0.248203 -1.418626 3.551201 -1.698455 0.030814 -0.020838 1.022634 0.607369 1.126491 1.662829 -0.938642 -0.875089 -2.147078 -0.490768 0.816393 1.218873 -1.765093 -1.877108 -2.850597 0.258991 -0.414523 2.712519 -0.085221 3.810166 -1.648422 0.743021 -3.467886 0.274784 1.187534 -0.116262 2.061391 0.551408 -1.511733 -0.855065 -0.690299 -1.867507 -0.061050 -0.123308 -1.254718 -1.213216 -1.147531 1.175622 -1.712558 0.456425 0.939032 -0.831967 2.274911 -0.467589 -0.085478 -1.642887 0.720972 0.986770 0.435465 -1.170198 1.753097 0.153130 3.780097 -0.417489 1.230354 -0.928766 1.526241 -1.203439 -2.526445 -1.034514 2.410999 2.374932 0.784274 -0.125497 0.110939 -0.068993 1.495407 -PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.644981 0.359725 4.169721 1.843167 -1.667801 -3.330883 -0.985105 -5.799037 3.485574 2.000000 3.922000 0.675686 3.319475 -2.035505 -0.326289 -0.069501 2.529158 -0.237355 0.178301 -1.426254 -0.282389 5.516036 0.049929 -0.738679 0.596507 -3.624529 2.541738 1.061729 2.670249 3.275531 0.928475 0.224805 -0.851299 1.161894 -0.777494 0.844859 -0.279348 1.531935 -2.135514 -1.213236 0.828873 -1.353915 3.079382 0.474765 2.904514 -0.968932 1.319866 -0.496732 -1.332356 -1.699380 -1.148057 1.514363 -1.511907 1.726875 -0.761385 -1.150009 0.667359 0.233760 0.451454 -1.975663 0.590964 -0.874677 -1.857142 -0.192106 -2.117454 0.542061 -1.732976 -1.489818 -0.528932 -2.337679 1.364466 0.299241 0.186328 -1.181096 -5.637307 0.399025 0.903814 -0.226782 2.061003 2.203472 -0.740175 -1.705986 -2.433860 -2.727945 3.369599 2.548963 0.082271 1.660633 -3.229015 -1.031920 -0.307555 0.536088 1.268251 1.971639 -2.913824 0.666388 -0.296539 -1.173524 -0.112033 -3.561074 0.812167 -2.248770 0.606344 0.511026 -0.623971 0.542216 -0.246670 0.618652 -1.100601 -2.281512 1.225837 -1.586265 -0.729116 3.778337 -1.067792 -1.818279 -2.333104 0.018114 0.616592 1.820651 0.357399 0.910044 2.796220 1.477472 2.304119 -3.124279 -0.534231 2.917362 1.441906 0.892554 0.069602 -1.578440 -1.299541 1.098625 -1.947501 -5.079533 -2.172487 1.784865 2.769403 -1.099346 -1.099387 1.087129 -1.323981 2.027922 3.414759 0.246229 1.045312 1.283648 -2.539279 1.120888 3.907268 -1.163759 1.538451 -1.548281 -1.988225 3.188583 -1.166885 1.485800 -0.893818 -0.085143 -0.437676 -1.626753 1.153741 3.470878 -0.574238 1.283918 -1.208679 1.057894 -1.392809 -3.429229 -5.599095 -1.107096 3.854604 2.860965 4.485638 -2.555913 -0.949796 0.344273 2.167538 0.326041 -1.932394 1.862147 -2.260194 1.922901 -6.664867 -4.347595 5.495062 4.187417 2.328583 -0.228763 1.652759 1.373850 -1.802712 -1.926763 -1.856391 1.741852 1.012424 -3.724753 -0.717711 0.665025 -3.565750 -1.334488 0.062442 0.257157 1.008534 -1.042509 2.676175 -1.598802 -0.985589 -2.061653 3.053449 -1.675461 -1.143000 -1.098869 0.092107 0.130404 1.769559 -0.767260 -0.046288 0.675595 -1.447262 -0.192898 0.174432 1.018971 0.184092 3.546570 4.886971 -1.552313 1.004199 -0.549308 -1.851798 5.038929 -2.324517 -0.044026 0.110148 1.228195 0.915442 1.709113 2.409343 -1.440274 -1.101947 -3.303864 -0.699267 1.185548 1.827035 -2.383528 -2.728590 -4.183098 0.239085 -0.780111 4.223905 0.064028 5.883728 -2.399531 1.293130 -5.387125 0.422497 1.859771 -0.259802 2.939942 0.851095 -2.343426 -1.668988 -0.909506 -2.780891 -0.837108 -0.256120 -1.950685 -2.054467 -2.035934 2.067336 -2.652438 0.685093 1.627241 -0.837177 3.332372 -1.014329 -0.004902 -2.599182 1.182756 1.300571 0.556043 -1.792147 2.220354 0.233573 5.789437 -0.936614 2.104985 -1.438132 2.612176 -2.049775 -3.962227 -1.564568 3.617913 3.565572 1.214898 -0.271390 -0.005668 -0.218798 2.472424 -PE-benchmarks/bfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.560239 0.158232 2.510528 1.003174 -1.139379 -1.852612 -0.675708 -2.754246 1.672612 0.736648 1.977166 -0.030312 1.215068 -0.987157 0.013147 0.471796 1.357084 -0.249148 -0.334982 -0.994860 0.087410 1.848500 0.499209 -1.146682 0.775345 -1.923306 0.712245 0.410788 0.698267 1.334512 0.561726 -0.061624 -0.408056 0.846965 -0.082433 1.170788 0.866650 0.413799 -1.234227 -0.301974 0.128193 0.014958 1.146277 0.071605 2.040164 0.155400 0.847784 -0.024095 -1.574466 -0.732774 -0.376014 1.656347 -1.037065 1.011324 0.121328 0.421065 0.002377 -1.123378 -0.172211 -1.785542 0.068736 -0.077743 -1.031574 -0.031041 -0.992731 0.324422 0.090865 -0.644106 -0.112737 -0.904687 0.743164 0.106133 -0.108061 0.067412 -1.603187 0.089454 0.542104 0.436462 1.055069 0.164259 -0.138014 -1.019907 -0.817051 -1.189758 1.536468 0.618151 0.491554 0.834122 -0.935530 -0.028554 -0.186848 -0.140936 0.396987 0.996512 -1.713647 -0.298244 0.478237 -0.786524 -0.629023 -1.256510 0.368393 -0.999871 0.342336 0.556749 -0.420070 0.578027 -0.549970 0.966753 -0.779616 -0.670680 0.676463 -0.473844 -0.376616 1.642850 -0.765762 -0.853202 -0.876121 -0.107143 0.192833 1.251223 -0.101936 0.607433 1.535913 1.118002 1.262522 -1.413109 -0.380543 0.716816 1.350657 0.753719 0.702677 -1.200550 -0.789605 0.511691 -1.162135 -2.479569 -1.070238 0.514221 1.779159 0.355581 -1.585216 0.156382 -0.583455 1.558912 0.938299 0.450371 0.164145 0.264582 -1.526479 0.414010 2.081067 -0.898387 1.162937 -0.502644 -0.313721 0.620973 -0.451307 0.538481 -0.117904 -0.477843 0.049216 -0.898431 -0.008844 1.623884 0.613356 0.447078 -0.870366 0.727941 -0.911332 -2.104391 -2.800928 -0.754218 1.351413 0.404648 2.230921 -1.422110 -1.239091 -0.914632 1.558431 -0.628655 -0.854078 0.397248 -1.497792 0.953298 -2.184509 -2.125725 3.341744 2.722506 1.520017 0.175349 1.384289 0.425422 -1.670978 -0.541733 -0.527207 0.618588 0.577786 -1.626882 -0.568688 0.268986 -2.013867 -0.977191 -0.149811 0.520753 -0.135557 0.209947 1.087439 0.349818 -0.650984 -0.500153 0.563309 -0.809387 -0.604316 -0.168547 0.209050 0.541334 0.942858 -0.992548 -0.399506 0.549966 -1.328502 -0.283570 0.421963 1.368834 0.784739 2.038331 2.419163 -0.221865 1.638904 -0.239940 -1.400552 1.982641 -0.667407 0.312388 -0.137556 0.373383 0.514384 0.358774 1.311169 -0.748558 -0.565660 -1.568529 -0.469322 0.418778 1.195286 -0.934241 -1.768692 -1.703883 -0.038027 0.038293 1.701846 -0.210469 2.707647 -0.722707 0.644897 -3.348868 0.147350 1.439555 -0.175977 0.590924 0.698650 -1.272782 -2.711005 -0.187107 -1.537199 -1.100234 -0.352213 -0.495599 -0.937301 -1.125933 2.014190 -1.180947 0.224545 1.370824 0.369147 1.775815 0.170191 0.099023 -0.764163 0.090993 0.764618 0.313070 -1.091326 1.024371 0.637105 3.771513 -0.217751 0.973225 -0.856220 0.703604 -0.481577 -1.390140 -0.911451 1.671273 2.184339 0.552080 0.125942 -0.174807 -0.704295 1.566556 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/bfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = -0.815596 0.571660 4.216713 1.205513 -2.065200 -2.998168 -0.969379 -5.329806 3.106019 1.773718 3.445727 0.528069 2.802655 -1.766997 -0.279024 0.392632 2.632237 -0.403130 0.260315 -1.537430 -0.107922 4.251714 0.298970 -0.449914 0.942276 -3.401764 2.148221 0.204477 2.318004 2.993138 1.159217 -0.151123 -1.244709 1.186169 0.570171 1.548903 0.665234 1.227361 -2.157082 -0.479951 0.152113 -1.641960 2.495865 0.601801 3.049665 -0.722817 0.892945 -0.206567 -1.901336 -1.486171 -0.904020 1.602290 -1.878428 1.673716 0.103594 -0.699994 0.084531 -0.078707 0.321676 -1.960970 -0.002598 -1.537585 -1.508812 0.139932 -1.987371 0.525638 -1.958217 -1.078009 -0.926656 -1.929881 1.167346 0.523667 0.563926 0.235863 -4.700655 0.235495 0.774309 0.249948 2.087511 1.526933 -0.646910 -1.719258 -2.095243 -2.713893 2.828802 2.013433 0.185220 1.104769 -2.818530 -0.272806 -0.481267 0.345056 1.039847 1.835735 -3.222770 0.199480 -0.434319 -1.192577 -0.165392 -4.034843 0.522939 -2.044188 0.489208 0.224838 -0.881646 0.187058 -1.181071 0.939408 -1.035784 -1.559150 1.609757 -1.130462 -1.125799 3.311379 -1.098683 -1.491314 -2.251824 -0.082589 0.931698 1.651348 0.251166 0.958096 2.219001 1.567459 2.564252 -2.595682 -0.581108 2.296147 1.530366 0.685061 0.540634 -1.322994 -1.312934 1.229177 -1.812846 -4.520633 -1.973013 1.523584 2.609747 -0.138883 -0.964630 -0.389646 -1.404803 1.934765 2.684306 0.639631 0.783465 0.909547 -2.310956 0.800631 3.345130 -1.347760 1.684267 -0.921454 -0.827569 2.302505 -1.257576 1.320408 -1.126946 -0.076879 -0.370781 -1.511223 0.129820 3.121528 0.062132 0.949767 -1.436361 0.990010 -1.478191 -3.295314 -4.908275 -1.123918 3.842575 1.933955 3.059065 -2.427564 -0.923386 -0.133695 2.174674 0.444813 -1.928129 1.407879 -2.043079 1.697728 -5.317297 -3.802224 5.361086 4.290648 2.080242 -0.210384 1.058675 1.402676 -3.004292 -1.913380 -1.729962 1.314205 -0.077706 -3.860292 -1.449715 0.889342 -3.436635 -1.121501 0.101349 0.500505 1.249165 -0.319193 2.604635 0.024801 -0.453069 -1.603740 2.537902 -1.142914 -1.710451 -0.700673 0.217174 0.884192 1.658818 -0.806940 -0.114578 1.078126 -1.785286 -0.504127 0.480720 1.431719 0.342918 3.695779 4.213071 -0.784141 0.653308 -0.533112 -2.193919 3.902934 -1.817494 0.303718 -0.058407 0.513346 0.734051 1.295638 2.520757 -1.384452 -1.635525 -2.799799 -1.225071 0.590774 2.022610 -1.557483 -3.379989 -3.358756 0.658710 -0.341686 3.390474 0.006245 5.091427 -1.746069 1.281739 -4.770826 0.364457 2.231927 -0.318258 2.489464 0.871319 -2.111623 -1.722039 -0.917696 -2.829424 -0.897224 -0.220572 -0.881699 -1.534945 -1.628604 2.595308 -1.981544 0.344844 1.096793 -0.315292 3.693371 0.078376 0.070051 -2.431030 1.151773 1.666132 0.417249 -1.623737 2.293282 0.824533 5.523198 -0.621701 1.198850 -0.992088 1.449081 -1.306881 -3.148749 -1.532788 3.255346 3.625279 1.461435 -0.426428 -0.287792 -0.450995 2.307887 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.020722 0.459052 0.877579 0.788818 -0.478021 -0.863164 -0.094100 -0.560191 0.232956 0.021340 0.463570 -0.021122 0.475953 0.021549 -0.009416 -0.141214 0.566134 0.189437 0.109134 -0.269150 -0.403692 0.743537 0.138893 -0.718102 0.091580 -0.426905 0.850528 0.473885 0.273986 0.685007 0.137793 0.097475 0.011319 0.397880 -0.456488 -0.420094 -0.199554 0.383091 -0.371103 -0.051029 0.174169 0.009699 0.650811 0.164803 -0.023931 0.539350 0.513952 0.130579 -0.386047 -0.101122 -0.551061 0.281380 -0.307719 0.439761 -0.441410 -0.074424 0.606074 -0.120629 0.089370 -0.673687 0.105865 0.076651 -0.381726 -0.113259 -0.732157 -0.007164 -0.237649 -0.692946 0.053554 0.250662 0.317088 0.204330 0.119611 -0.522256 -0.877973 0.219462 0.107935 0.357339 0.418375 0.080615 -0.145306 -0.015953 -0.591782 -0.534444 0.390304 -0.057334 0.364256 0.236927 -0.089389 -0.455771 -0.032564 0.139337 -0.066029 0.403540 0.122948 0.559880 -0.237537 -0.012796 -0.334961 -0.626363 -0.074455 -0.417240 0.130489 0.379168 -0.073663 0.097369 -0.242415 0.153226 -0.107641 -0.566644 0.181209 -0.524261 -0.341925 0.452009 -0.103391 -0.303405 0.002992 -0.001979 0.221299 0.582679 -0.068694 0.111505 0.427869 0.375382 0.071064 -0.444848 0.099519 -0.003686 0.146455 0.353900 0.481682 -0.357801 -0.468738 -0.040141 -0.284439 -0.871973 0.186992 0.504120 0.399961 -0.246824 -0.774589 0.627745 -0.506782 0.370313 0.547429 0.573255 0.355512 0.012964 -0.233348 0.300412 0.849094 -0.386594 0.413739 -0.310358 -0.491597 0.813246 0.072431 0.316490 -0.187633 -0.183560 0.062884 -0.312442 0.100768 0.753446 0.281552 0.039053 0.776063 -0.064263 -0.167963 -0.808944 -0.628624 0.087356 0.701702 0.257485 1.281641 -0.572935 -0.098615 0.040176 0.126009 -0.292252 -0.192964 -0.027596 -0.071479 0.275599 -1.582277 -0.918039 0.932534 0.114713 -0.018931 -0.099182 0.224066 0.149243 0.126575 -0.621749 -0.376805 0.283690 -0.044736 -0.120231 -0.147758 0.185686 -0.762082 0.069309 0.238794 0.157303 0.619583 -0.548255 -0.291827 -0.629331 -0.737913 -0.573175 0.166931 -0.620609 -0.242646 0.186324 -0.098489 0.069723 0.134167 0.200044 -0.272636 0.027965 -0.363449 -0.374419 -0.161946 0.536731 0.070886 0.864561 0.854165 -0.042653 0.053961 0.377552 -0.481574 1.563993 -0.395212 -0.010844 0.035748 0.785990 0.101664 0.310997 0.654965 -0.206207 -0.366960 -0.887691 0.202805 0.317782 0.113410 -0.939613 0.019272 -0.776548 -0.092418 0.041288 1.060012 -0.239854 1.102839 -0.184777 0.073330 -0.900874 0.081933 0.245562 -0.040859 0.433284 0.474823 -0.583843 -0.271541 -0.236448 -0.423292 0.289828 -0.125848 -0.407592 -0.402681 0.180210 -0.475770 -0.395185 0.223148 0.762281 -0.419021 0.308036 -0.100624 -0.055780 -0.148342 -0.137840 0.579810 0.173961 -0.391823 0.664804 -0.126720 1.273758 0.062479 0.461615 -0.467669 0.028739 0.044598 -0.367361 -0.388630 0.847269 0.291572 0.144565 0.539748 0.206341 0.116408 0.657337 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/bfs.cpp___GLOBAL__sub_I_bfs.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/binomial-coefficient.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -1.372102 3.135145 13.604773 8.905065 -4.646500 -5.654491 -2.706152 -5.325684 2.895057 1.550955 6.262768 -1.414673 1.565765 3.280907 -0.151220 -3.594090 1.946060 0.723176 -0.239891 -2.198499 -2.535275 5.960131 6.771656 -9.983891 0.405277 -8.568229 6.445766 3.713677 3.627221 6.042095 0.053802 0.680261 0.334951 4.771385 -7.042981 -3.385750 -2.559180 2.308842 -2.967863 -0.161172 3.710993 5.332778 3.268937 0.331846 3.010705 5.033963 5.417331 -1.186833 -5.993482 -0.980908 -3.511964 7.449478 -3.465379 3.200527 0.179064 5.200468 0.081794 -6.651996 -1.552627 -10.484568 3.269144 4.952345 -4.566909 0.318115 -7.701846 0.922444 -2.898957 -4.223814 3.664050 0.038343 3.675181 0.014276 0.813487 -6.910032 -4.620773 3.976271 -0.837619 3.135673 2.584522 -0.793923 -2.764553 2.721988 -2.396174 -4.088793 0.057822 -0.626555 0.236591 -0.926908 3.600740 -4.190931 0.667720 -0.188940 -4.196206 6.226564 -4.383127 6.878156 -3.357383 -0.950022 -3.564783 -1.926317 -1.752832 -6.716035 2.694085 6.668123 -3.408018 1.900926 -0.505283 2.331481 1.358869 -7.393215 -1.030163 -1.351958 0.645088 5.544929 -4.474999 -1.791692 1.138072 0.572907 0.084472 6.695657 -1.455217 2.693907 6.093604 4.069411 0.754209 -4.330298 2.615399 1.065704 1.649883 4.500722 5.540735 -5.880128 -3.803611 -2.490991 1.488859 -9.900288 3.151748 3.166355 3.032419 1.267936 -9.352035 2.537204 -3.108209 6.945833 4.403311 6.142889 2.754396 -1.298260 -2.125055 2.240407 12.257535 -4.208808 3.943162 -2.659013 -8.775452 9.045461 -2.619137 6.434408 -0.050944 2.004759 3.969762 -6.973203 -0.633574 8.496056 2.063005 1.810403 8.504994 -1.535235 2.528305 -9.736964 -6.794221 0.298044 1.238778 0.239118 12.663892 -4.776769 -2.315091 -1.904527 5.696311 -1.272911 -1.456981 -1.434439 -0.457214 1.420855 -13.936185 -9.962757 6.377535 7.520391 -1.459262 -1.492414 7.260810 1.668302 0.710304 -4.728323 -5.119081 4.378728 0.054925 5.352700 1.399827 0.225908 -7.324753 0.632070 1.322312 1.259048 6.090490 -6.845847 -7.287406 -0.571172 -10.182206 -5.534428 1.731326 -7.609214 -2.784407 -0.381562 0.782824 -0.487893 0.856662 -2.387116 -4.594870 1.594435 -4.314031 -2.502591 1.612191 5.127643 1.188440 8.833782 5.575583 1.485410 2.713873 3.951450 -3.390708 19.584523 -3.776070 -2.007431 -0.046742 5.723860 -2.297700 2.728955 1.534238 -1.701881 -5.064879 -6.406043 5.170021 -1.299374 1.531860 -10.487248 -3.505749 -5.320614 -2.879504 2.743046 6.931366 0.807411 13.801324 -0.245959 0.814636 -12.157733 0.036683 5.727807 -0.843122 6.073242 5.536567 -6.159007 -9.341574 -1.786095 -0.736773 7.467849 -1.433820 -7.749884 -4.753770 -0.323376 0.680890 -2.174400 4.433963 8.473191 -1.976935 2.846591 2.236107 -1.885111 0.080081 -3.333709 3.261381 3.780129 -5.809381 8.189465 -2.643952 14.271870 -2.630690 5.881754 -5.874640 -0.556338 -0.252447 -0.787413 -2.525684 7.913952 4.782644 3.436267 1.188856 0.416007 -4.187113 3.128926 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/binomial-coefficient.cpp__main = 0.296628 0.975130 4.554772 2.615626 -1.277800 -2.381377 -1.009889 -3.795444 2.291149 0.785710 2.378497 -0.254662 1.273678 0.059374 -0.365766 -0.095861 1.047379 0.059587 0.201235 -0.827374 -0.479224 4.269327 1.376577 -2.308519 0.181019 -4.087319 1.655460 1.106497 2.767809 2.258105 0.174543 -0.024554 0.252015 1.395230 -2.212153 -0.636845 -0.710043 0.842996 -2.361436 -0.326143 0.522918 1.133111 1.699049 -0.063752 1.572180 0.333927 2.180426 -0.325733 -1.129029 -0.420956 -1.771944 3.329765 -0.886753 1.380470 -0.203598 0.583741 -0.149528 -1.458870 -0.580247 -1.974008 0.357846 1.381023 -1.615239 0.020225 -2.602106 0.537501 -1.233347 -1.315364 0.761400 -0.186993 1.651199 0.592153 0.652119 -2.261427 -3.771222 1.377165 -0.133101 1.030199 1.024736 0.590837 -0.247266 0.460195 -1.322581 -1.848762 1.477906 1.494524 -0.127969 -0.040207 -0.153811 -1.590750 -0.418774 -0.145286 -0.577035 1.949531 -2.282607 2.069748 -1.568934 -0.407082 -0.814021 -1.816983 -0.489563 -2.354665 0.853867 1.021527 -0.028944 0.988848 0.852829 0.797654 0.373466 -2.613819 0.152926 -0.165915 -0.334782 3.365791 -1.175486 -0.881587 -0.324684 0.353315 -1.059381 2.127080 -0.205345 1.253816 2.410265 1.568195 1.053515 -1.788355 0.362587 1.526050 0.918460 1.455365 1.573064 -2.056736 -1.346165 -0.382201 0.509244 -4.293837 -0.065441 1.699926 1.627048 -0.380825 -1.964166 0.480439 -0.809325 2.778069 1.908742 0.596426 1.222470 -0.037988 -1.145891 1.364104 4.990546 -1.265512 1.356878 -1.959204 -2.426150 3.141764 -1.280380 2.289839 -0.655670 0.792188 0.832312 -2.403400 0.442867 3.032915 0.053308 0.525570 1.626347 -0.040899 -0.080066 -3.655800 -3.455145 -0.410627 0.959031 0.276953 4.589082 -1.580727 -1.412092 -0.476142 1.879863 -0.122590 -0.528631 0.651312 -1.677330 0.959876 -5.082759 -3.886754 3.652864 3.747490 0.357859 -0.431552 2.657028 1.305136 -0.984659 -2.140370 -1.590244 1.596596 0.780546 -1.088824 -0.402783 0.175837 -2.816689 -0.498562 0.339191 0.303753 1.697371 -0.895092 -0.340131 -0.835309 -3.295006 -2.006126 2.034179 -2.526538 -0.818610 -0.252067 0.401348 -0.531607 1.274140 -1.194601 -0.834047 1.075970 -1.398978 -0.370658 0.445532 1.357641 -0.060746 2.703560 3.358201 0.383883 2.275415 0.937243 -1.616244 6.136113 -1.601197 -0.661061 -0.211304 1.036560 -0.929610 1.366440 0.575298 -0.866076 -1.895965 -2.553357 1.417642 -0.239863 0.728148 -2.446833 -2.118294 -2.092282 -1.082867 0.588134 2.617066 0.705218 5.088733 -1.476144 0.654729 -5.404476 0.306105 1.844158 0.101915 2.681014 1.568956 -2.091235 -2.690455 -0.646180 -0.950624 0.735173 -0.859329 -3.708937 -1.846997 -1.491665 1.504369 -1.691265 1.317517 3.019097 -0.501013 2.094775 -0.582364 -0.535729 -1.337651 -0.185901 1.309416 0.967157 -1.929170 2.157514 -0.925860 5.708039 -1.211318 2.003325 -2.098526 0.528911 -0.728987 -1.885191 -0.817153 3.185377 2.016858 0.910122 -0.024055 -0.439153 -1.228264 1.383914 -PE-benchmarks/binomial-coefficient.cpp___GLOBAL__sub_I_binomial_coefficient.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/tower-of-hanoi.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = 0.782251 1.399076 7.736820 4.403296 -2.179136 -4.192512 -1.675367 -8.198940 5.811798 1.482975 3.927265 0.422495 3.015975 -1.873020 -1.122382 0.547956 2.733781 -0.862299 0.432206 -1.613999 0.554448 9.949337 1.014553 -3.900182 0.521753 -9.051655 2.790273 2.039034 6.122259 4.224997 0.578306 -0.339405 0.447048 2.579459 -3.409781 -0.973260 -0.105078 1.322614 -5.594102 -1.344542 0.552417 2.300016 4.235812 -0.432340 3.321361 -0.990079 3.904660 -0.196355 -1.152294 -0.826956 -3.539935 6.080920 -1.065566 3.316085 -0.395490 0.027868 0.272660 -2.337276 -0.962412 -1.978980 -0.241987 2.599999 -2.060008 -0.418478 -4.140744 0.684502 -0.895007 -2.099386 1.010134 -0.885424 3.112591 1.916434 1.944266 -4.266596 -8.548183 2.707063 0.212372 2.100781 2.179778 2.288853 -0.005749 -0.040977 -2.788349 -3.679128 3.493554 4.683124 -0.309908 0.674089 -1.487664 -3.053716 -1.286748 -0.593668 -0.536398 3.208648 -4.448349 2.561806 -2.715068 -0.807024 -0.902503 -3.293221 -0.823783 -3.863784 1.250139 1.019089 0.828850 2.121026 2.623211 1.238301 0.334969 -3.357405 1.480476 -0.549136 -1.063102 7.211435 -1.212723 -2.229372 -1.652158 0.791799 -2.649066 3.794860 -1.148116 2.159662 4.769390 3.166975 2.945240 -3.560262 0.298241 3.897197 2.371132 2.346960 2.557643 -3.911015 -1.999336 -0.198001 0.794964 -7.950893 -1.278873 3.064880 3.939285 -1.590212 -2.900296 0.817398 -1.373197 5.937505 3.583382 -0.710280 2.550800 0.829330 -2.689667 3.267925 9.649326 -1.623298 2.026117 -5.148688 -3.180237 5.216270 -2.141138 4.295735 -2.153960 1.184498 0.672858 -4.222910 2.092442 5.354679 -0.587852 0.736947 1.210329 0.461673 -0.668094 -6.941147 -7.788946 -1.483391 1.959528 1.161423 9.525089 -3.050871 -3.316793 -1.523812 2.755632 -0.240046 -0.808486 2.513412 -4.646405 2.363519 -9.098621 -7.253249 8.956464 8.052041 1.356581 -0.265970 5.135457 2.051232 -2.507043 -4.234881 -2.067911 2.586936 2.693080 -4.555556 -0.867154 0.900535 -5.064065 -2.493804 0.811203 0.207437 3.137276 -0.476589 1.442985 -2.162448 -5.595643 -3.833717 4.830940 -4.300876 -1.594826 -0.039086 0.895413 -1.027435 3.906003 -1.829107 -1.204104 2.232168 -2.131548 -0.746189 0.344496 2.597273 -0.620263 2.895071 7.759907 0.662240 5.878185 1.687987 -3.326192 10.220082 -3.315661 -1.292040 -0.267909 0.671105 -0.747315 2.983370 1.104254 -2.043137 -2.007676 -5.285698 2.995614 -0.371663 1.520075 -5.046759 -4.420665 -3.871685 -2.014175 0.551845 4.249790 1.367767 9.536401 -3.952896 0.870602 -11.577451 0.505845 3.486444 1.442399 4.554642 2.628000 -3.920919 -4.788025 -0.945067 -2.820706 -0.472499 -1.966124 -7.171652 -3.526981 -4.020084 4.570771 -4.116625 2.344543 6.885155 -0.985447 4.886870 -3.017674 -0.539439 -3.797971 -0.167581 1.520417 1.451898 -2.773325 3.085837 -1.976660 10.248468 -2.736554 3.392617 -3.839899 2.546035 -1.925803 -5.739627 -1.641285 6.105053 2.979655 1.077801 0.216419 -1.723345 -2.245599 3.979671 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.332749 0.665814 2.112002 1.274463 -0.852370 -1.705680 -0.486498 -2.333261 1.344530 0.278343 1.164563 0.002257 0.928482 -0.267094 -0.193117 0.212605 1.005109 0.130004 0.103823 -0.650769 -0.357512 2.537031 0.217487 -1.048614 0.347633 -2.060209 0.947596 0.778153 1.488721 1.307249 0.224822 -0.031681 -0.057740 0.713208 -0.953463 -0.391480 -0.158859 0.386542 -1.672381 -0.055758 0.116968 0.365268 1.398008 0.045959 0.718413 0.248383 1.008475 0.207596 -0.489412 -0.275380 -0.995059 1.522811 -0.251526 1.038504 -0.383159 -0.089159 0.306769 -0.497352 -0.128872 -0.469471 -0.053610 0.429046 -0.735169 -0.105685 -1.372251 0.141044 -0.561450 -0.949382 0.243401 -0.159572 0.863540 0.328682 0.175147 -1.153878 -2.462399 0.526089 0.178752 0.751290 0.704756 0.505071 0.080673 -0.027558 -1.098457 -1.102131 0.982058 1.018164 0.208573 0.306424 -0.651920 -1.093211 -0.210672 -0.066019 0.141422 0.821634 -0.970563 0.811179 -0.884192 -0.306224 -0.548414 -1.422223 -0.061363 -0.865582 0.442986 0.039775 0.211445 0.494438 0.603293 0.466920 0.116270 -1.128434 0.406326 -0.248519 -0.424226 2.116334 -0.185628 -0.789019 -0.485776 0.024327 -0.685539 1.182105 -0.057799 0.433141 1.233978 0.973062 0.690606 -0.972959 -0.084221 0.735148 0.489602 0.720281 0.917322 -0.960558 -0.789999 0.075293 -0.212033 -2.269669 -0.339072 0.873040 1.243973 -0.562079 -0.736283 0.428926 -0.710241 1.323782 0.925423 0.082807 0.753561 -0.010691 -0.833568 0.912300 2.536874 -0.598434 0.716752 -1.311247 -0.963597 1.450625 -0.265587 0.933133 -0.512027 -0.032350 0.063697 -0.857230 0.544115 1.506558 0.012227 0.062593 0.618187 0.165590 -0.590182 -1.814762 -2.108364 -0.186510 0.877737 0.355158 2.547157 -0.972750 -0.788062 -0.420201 0.837237 -0.197730 -0.331217 0.656596 -1.175328 0.654814 -2.687369 -1.947247 2.457030 2.009492 0.472123 -0.216078 1.153198 0.612872 -0.697719 -1.353566 -0.724821 0.702890 0.561362 -1.351888 -0.478728 0.236440 -1.519877 -0.354176 0.266356 0.284412 0.953223 -0.213566 0.409474 -0.941539 -1.626298 -1.243697 1.197635 -1.202705 -0.209823 0.253382 0.008106 -0.292995 0.933688 -0.372087 -0.411747 0.477350 -0.685713 -0.158595 -0.020377 0.850290 -0.142996 1.260368 2.066895 0.113478 1.490990 0.451111 -1.167353 3.077432 -0.962146 -0.009472 -0.126033 0.558417 -0.237861 0.761168 0.657316 -0.513624 -0.781283 -1.576643 0.492243 0.172694 0.458636 -1.328804 -1.093405 -1.517781 -0.422337 -0.018545 1.684665 0.187028 2.548398 -1.048211 0.378170 -2.929694 0.247454 0.790565 0.210661 1.233542 0.702564 -1.183707 -1.180441 -0.205302 -1.130507 -0.194971 -0.479572 -1.771837 -1.040448 -0.700759 0.729097 -1.006988 0.505451 1.859780 -0.495891 1.265662 -0.787388 -0.223787 -0.909152 -0.129774 0.950063 0.255363 -0.891538 0.890393 -0.272213 3.053277 -0.253069 1.053182 -0.941709 0.324815 -0.319033 -1.587153 -0.675140 1.726327 0.966649 0.333140 0.287024 -0.205773 -0.236169 1.027131 -PE-benchmarks/tower-of-hanoi.cpp___GLOBAL__sub_I_tower_of_hanoi.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/quicksort-on-singly-linked-list.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.368307 0.262202 1.271473 1.462056 -1.171794 -1.736384 -0.307626 -1.530372 0.961562 0.360262 1.237762 0.353985 1.110324 -0.702845 -0.090201 -0.355173 1.010590 0.297689 -0.047080 -0.572246 -0.860109 1.961515 0.445923 -0.952489 0.322750 -0.554489 1.447518 0.627636 0.691263 1.459030 0.272473 0.118009 -0.366501 0.522294 -0.439130 -0.039795 -0.799684 0.717740 -0.689172 -0.339754 0.695098 -0.917491 1.512069 0.299757 0.564472 0.135583 0.793022 -0.031098 -0.979537 -0.612627 -0.749770 0.231547 -0.746121 0.875754 -0.668502 -0.326019 0.914180 0.234176 0.191438 -1.176292 0.184429 -0.631026 -0.911113 -0.193026 -1.199326 0.032774 -0.898634 -1.042814 -0.100719 -0.630119 0.560588 0.152090 -0.131891 -0.801982 -1.938357 0.013673 0.356892 0.250005 0.843469 1.087914 -0.362725 -0.551031 -1.249222 -0.956547 0.991932 -0.106509 0.349621 0.658325 -1.024954 -0.725796 0.180162 0.430660 0.468646 0.555260 -0.628757 0.629808 -0.151227 -0.338164 -0.241020 -1.480855 0.279450 -0.679348 0.266610 0.383945 -0.532914 0.058736 -0.269841 0.175391 -0.321885 -1.237223 0.330833 -0.846042 -0.532016 1.166757 -0.280651 -0.721077 -0.520858 -0.004834 0.393162 0.826369 0.305225 0.199174 0.904428 0.557596 0.690979 -1.053233 -0.025105 0.513008 0.426041 0.376088 0.262510 -0.118865 -0.713105 0.399588 -0.709054 -1.879541 -0.559570 1.071921 1.062785 -0.116543 -0.751670 0.809772 -0.771386 0.486873 1.148842 0.574676 0.635967 0.293950 -0.843610 0.438206 1.433968 -0.477920 0.576822 -0.330859 -1.235168 1.894157 -0.159836 0.424612 -0.351265 -0.282832 -0.078214 -0.503565 0.438400 1.313970 -0.133877 0.091312 0.348454 0.261023 -0.579150 -1.380407 -1.858557 0.048369 1.743487 1.462757 1.969303 -1.148344 0.127663 0.248322 0.422255 -0.067619 -0.705445 0.318399 -0.458599 0.680310 -3.325156 -1.676852 2.108941 0.814662 0.507204 0.044221 0.354043 0.437254 -0.032143 -0.960403 -1.129198 0.602475 0.383395 -0.622334 -0.176007 0.256569 -1.474721 -0.180236 0.364118 0.160497 0.761244 -1.219666 0.317731 -1.268989 -0.610103 -0.961392 0.804019 -0.937032 -0.269436 -0.027137 -0.258070 0.087619 0.455608 0.378262 -0.181021 -0.420250 -0.544962 -0.346363 -0.325576 0.666067 0.065828 1.635414 2.033210 -0.769687 -0.103505 0.088838 -0.916218 2.726031 -1.160498 0.073854 -0.014385 1.329852 0.643222 0.561309 1.337861 -0.487839 -0.327510 -1.316049 -0.101897 0.859303 0.505084 -1.947068 -0.537776 -2.055774 0.104459 -0.312698 1.852383 -0.254178 2.161349 -0.913971 0.297508 -1.943159 0.182041 0.711384 -0.040605 1.186669 0.366900 -0.951896 -0.420207 -0.528733 -1.064367 0.783288 -0.151108 -0.446819 -0.722391 0.037740 -0.224896 -0.932445 0.410763 0.818011 -0.963756 1.005325 -0.331833 -0.021946 -0.646737 0.030673 0.655717 0.340741 -0.680654 1.251560 0.109193 2.109391 0.166793 0.808818 -0.604318 0.797335 -0.636810 -1.426360 -0.725293 1.342852 1.181987 0.299423 0.518799 0.471894 0.173233 0.924924 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.284608 0.255041 1.643178 1.095454 -0.979393 -1.304116 -0.483692 -1.643763 1.051329 0.210996 1.382347 -0.167475 0.730021 -0.508397 -0.125051 -0.192854 0.568418 0.111118 -0.216613 -0.516207 -0.364471 1.561268 0.242097 -1.190734 0.246877 -1.166427 0.543096 0.717217 0.532054 0.841849 0.122633 -0.050729 -0.259347 0.614472 -0.745415 0.018869 0.234471 0.299531 -0.924161 -0.400947 0.240511 0.196587 0.918118 -0.286271 1.069671 0.365601 0.730703 0.101227 -1.064610 -0.297640 -0.301790 1.195701 -0.319301 0.684954 0.269221 0.209150 0.206811 -0.810631 -0.165228 -1.274849 0.188768 0.163542 -0.436607 -0.046259 -0.865850 0.105644 0.109504 -0.887248 0.474115 -0.612905 0.486381 0.007272 0.126486 -0.542641 -0.922866 0.443424 0.397122 0.494116 0.475100 0.390450 0.172830 -0.207918 -0.545130 -0.599913 0.347960 0.314785 0.345751 0.345521 -0.491932 -0.365871 0.377435 -0.247458 0.050686 0.634343 -0.809002 0.345865 -0.168033 -0.334393 -0.695325 -0.898085 0.029203 -0.574742 0.482145 0.677893 -0.455475 0.441820 0.132205 0.481607 -0.183667 -0.852864 0.295099 -0.480258 0.220985 1.280194 -0.576010 -0.589815 -0.205206 -0.128132 -0.350465 1.007655 -0.158078 0.321250 0.834060 0.750458 0.555412 -0.904879 -0.186435 0.448077 0.853262 0.627444 0.696484 -0.974880 -0.399453 0.074507 -0.609423 -1.700057 -0.303564 0.381724 1.034249 -0.051713 -1.179105 0.619000 -0.502162 1.332505 0.582387 0.527265 0.257840 -0.037945 -1.003990 0.401067 1.550230 -0.395711 0.773490 -0.425924 -1.111708 0.823939 0.006426 0.615593 0.045178 -0.181624 0.175671 -0.751711 0.185333 0.988720 0.419786 0.104400 0.162569 0.212217 -0.707644 -1.749144 -1.880595 -0.053892 0.633452 0.454632 2.330496 -1.023113 -1.096756 -0.416082 1.208507 -0.509278 -0.468898 0.284807 -0.735583 0.590476 -1.932443 -1.798147 2.232380 1.773191 0.531172 -0.031031 1.380266 -0.043310 -0.745634 -0.759734 -0.559959 0.369611 0.479849 -0.863363 -0.121097 0.127945 -1.246182 -0.309192 0.064823 0.362325 0.508065 -0.104572 0.228542 -0.353265 -0.849136 -0.670025 0.483128 -0.647973 -0.155737 0.174047 0.195670 0.065860 0.663215 -0.613790 -0.670557 0.029990 -0.879630 -0.014440 0.152035 0.802705 0.280440 1.708398 1.614948 -0.065631 1.416146 0.198119 -0.735227 2.460162 -0.805567 0.113098 -0.049587 0.709118 0.170154 0.318337 0.732403 -0.481318 -0.476429 -1.072019 0.079908 -0.048890 0.442389 -1.750193 -1.220049 -1.333450 -0.215429 0.017751 0.876344 0.036205 2.284838 -0.376459 0.140736 -2.778861 0.018464 0.912316 -0.059830 0.767119 0.576592 -0.984134 -1.895844 -0.051346 -0.812379 -0.367658 -0.339031 -1.096432 -0.553385 -0.659461 0.916886 -0.645916 0.286228 1.592689 -0.131475 0.826937 -0.044630 -0.113478 -0.271091 -0.393903 0.539573 0.116336 -0.720460 1.010428 0.099029 2.820294 -0.058484 0.677477 -0.660451 0.625008 -0.170421 -1.071007 -0.514292 1.115439 1.089000 0.403672 -0.017791 0.122894 -0.654999 0.786535 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.752649 0.013254 1.950165 1.591025 -1.553152 -1.661429 -0.621589 -1.923710 1.083311 0.220199 1.829039 -0.150518 0.718443 -0.837274 -0.097131 -0.586457 0.689855 0.029122 -0.442799 -0.757414 -0.462718 1.321367 0.364309 -1.894818 0.449129 -1.187427 1.123714 1.046322 0.082415 1.090979 0.209252 -0.036880 -0.566877 0.899873 -0.740144 0.087829 0.468683 0.318880 -0.772651 -0.499856 0.706492 0.334590 1.180714 -0.501350 1.548149 0.663875 0.784426 0.129117 -1.835204 -0.477870 -0.100091 1.115307 -0.624127 0.921571 0.431395 0.445103 0.303400 -1.358395 -0.296969 -2.067356 0.470885 0.002698 -0.536116 -0.107867 -1.046164 0.092274 0.459924 -1.125434 0.860234 -0.974586 0.505967 -0.249492 -0.136092 -0.524072 -0.517036 0.428758 0.699718 0.684229 0.608211 0.275693 0.238359 -0.479832 -0.631970 -0.562518 0.094212 0.017961 0.583817 0.512698 -0.407179 -0.284698 0.843317 -0.291714 0.052183 0.853853 -0.855621 -0.015277 -0.017153 -0.503928 -0.969598 -0.875262 0.283512 -0.665921 0.766687 1.327160 -1.171988 0.590065 0.179557 0.737198 -0.413309 -1.025848 0.196301 -0.812617 0.782123 1.355925 -0.722522 -0.883666 -0.451732 -0.265525 -0.017355 1.240296 -0.290665 0.332564 1.230818 1.177264 0.690258 -1.334473 -0.468310 0.355363 1.063143 0.925438 0.799342 -1.375744 -0.403447 0.072912 -1.099108 -1.947497 -0.473199 -0.024303 1.512481 0.151830 -1.781182 0.878396 -0.777173 1.734923 0.630481 0.893744 0.115502 0.085767 -1.439603 0.590259 1.661427 -0.431268 0.868020 -0.368925 -1.317296 0.746861 0.297678 0.513540 0.398835 -0.390916 0.259126 -0.958158 0.149898 1.195937 0.645473 0.306827 0.125840 0.445728 -0.841197 -2.169858 -2.257171 0.108044 0.950110 0.753504 2.945413 -1.568938 -1.360766 -0.686923 1.708304 -0.669432 -0.696087 0.212440 -0.783810 0.832535 -2.157807 -2.134861 2.634686 2.139200 0.797299 0.100442 1.726247 -0.236815 -0.851561 -0.512261 -0.723570 0.494864 0.726905 -0.522727 0.139126 0.164427 -1.515896 -0.635071 0.241444 0.567212 0.604233 -0.536644 -0.118117 -0.152926 -0.870084 -0.836424 0.406811 -0.819332 -0.102025 0.211907 0.167869 0.394129 0.735316 -0.758526 -0.964343 -0.268841 -1.032812 -0.012075 0.275188 1.201278 0.547181 2.020828 1.801603 -0.278688 1.636598 0.253784 -0.896406 3.073749 -0.798030 0.348527 0.186640 0.974437 0.548734 0.229701 1.111796 -0.666014 -0.210020 -1.429735 -0.062571 0.048658 0.939812 -2.660274 -1.300420 -1.995640 -0.244510 0.071135 0.973232 -0.100147 2.787459 -0.170883 0.103374 -3.245951 -0.146152 1.315296 -0.101829 0.667132 0.655826 -1.264278 -2.867609 0.018301 -1.109392 -0.277830 -0.444641 -0.775054 -0.863176 -0.575835 1.165335 -0.461557 0.369189 2.050285 -0.155264 0.766987 -0.005480 -0.119780 0.023736 -0.877618 0.276321 0.272642 -1.089989 1.464370 0.357315 3.520258 0.061800 0.778509 -0.825208 0.859998 -0.295240 -1.116664 -0.610449 1.251790 1.410702 0.647131 0.042515 0.352934 -0.983943 1.181754 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -3.599184 -0.722349 6.814254 7.477244 -5.337377 -8.052527 -2.121756 -5.966620 5.016729 1.993613 7.082607 0.659779 4.125621 -3.473697 -0.284095 -2.845231 3.474537 -0.218439 -1.742493 -2.660869 -2.985288 7.551325 2.699852 -6.986325 1.383267 -4.537182 5.716562 4.199822 0.693171 5.464708 0.773725 0.858824 -1.351542 2.769933 -3.297975 0.855006 -0.910557 1.987595 -1.914346 -3.032504 4.135352 -1.189147 6.329477 -0.364300 5.238696 1.358199 4.116276 -0.686398 -6.729872 -2.944047 -1.906370 2.360202 -2.694710 3.365886 -0.431110 1.766160 3.443593 -3.557522 -0.469175 -8.900807 2.196082 -0.219417 -4.201569 -0.737262 -4.898397 0.470596 0.005812 -4.223891 1.746606 -5.337204 2.043499 -0.564618 -0.768347 -3.875488 -4.978130 1.079655 1.867671 0.747977 2.615992 3.964204 -2.329946 -2.327829 -4.218680 -2.761228 2.088765 -0.510509 1.257007 3.056953 -3.285060 -2.626020 2.006759 0.149823 0.316006 3.153462 -3.632461 1.210913 2.251266 -2.205706 -2.500482 -3.529902 1.262953 -2.990436 1.665453 5.132755 -4.060881 1.720633 -0.463696 1.654687 -2.078639 -4.983525 1.263436 -4.388825 0.817350 4.349259 -2.827270 -3.285628 -2.198622 -0.346887 1.380607 4.800431 -0.992413 1.158513 5.164329 2.899156 2.640390 -5.083120 -0.014927 2.429482 4.181524 2.031570 1.712393 -3.301978 -1.944915 0.825098 -3.619181 -8.526763 -2.630795 2.894357 5.462595 0.338436 -7.236829 4.976334 -2.364535 5.341813 4.247424 3.327202 1.239934 1.164831 -5.335059 1.365033 6.877901 -1.698321 2.894798 -1.708775 -7.380317 7.279463 -0.062216 2.374331 0.502093 -1.092014 0.317159 -3.426738 2.199215 5.139676 0.730060 1.160527 0.403993 1.494599 -1.667432 -7.254379 -9.745221 -0.575328 5.056612 6.617679 12.730352 -6.626939 -2.465172 -1.792546 4.356257 -1.795310 -3.019711 0.790116 -2.424736 2.661789 -14.479228 -9.281950 10.572598 6.858861 3.620317 1.044183 5.810912 -0.769992 0.346580 -2.289184 -4.280648 2.692495 3.526632 -0.217877 2.070819 0.675016 -7.170793 -2.788368 0.231815 1.109319 2.570321 -5.677114 0.144033 -5.023726 -3.112666 -4.104072 1.656281 -3.741288 -1.233347 -0.396976 0.114190 0.554633 2.234128 -0.408466 -2.484036 -2.207790 -3.193335 -1.077388 0.206074 3.837503 1.892898 7.970117 9.736835 -2.838725 3.150985 0.079138 -2.895855 14.170758 -5.301383 -0.178130 0.049309 5.804369 3.616483 1.353017 4.730799 -2.092956 0.456899 -4.991387 1.492203 1.812837 2.520060 -12.265735 -3.901807 -10.195474 -0.414953 -0.843836 6.901309 -0.642819 11.127409 -2.261602 0.498542 -12.259437 -0.062802 5.090244 0.168489 3.670933 2.255126 -5.519390 -8.316881 -0.632482 -4.056217 2.687044 -0.941402 -2.995529 -3.438653 -1.716674 1.818697 -3.775239 2.056000 6.874467 -2.364798 3.567854 0.167412 -0.250490 -1.151815 -2.119023 0.430425 1.855548 -2.929021 6.399287 0.339905 11.622761 -0.171612 4.184687 -3.062980 5.978114 -2.970214 -5.850631 -2.830358 4.964194 5.513797 1.279244 1.508401 1.444753 -2.161633 4.510676 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -4.598205 -0.390477 11.538405 9.868049 -7.723018 -10.629364 -3.627418 -12.807110 8.451081 4.338519 12.193204 0.950773 7.488623 -5.349604 -0.538658 -3.279264 6.253354 -1.216076 -2.005557 -4.711134 -3.749622 13.420627 3.237608 -8.597669 2.272655 -8.173597 8.954782 5.274981 2.403686 8.771990 1.920237 1.461235 -2.080674 4.565189 -4.861718 2.098213 -1.660409 4.354623 -3.188369 -4.243260 6.753576 -1.524211 9.627648 -0.045746 8.415244 1.574479 5.664387 -1.290318 -8.877216 -5.207779 -2.353915 3.709413 -5.116595 5.347750 -2.121115 0.931158 4.534878 -4.592600 -0.354892 -11.361112 2.962448 -0.831270 -6.426959 -1.001991 -6.688506 1.096086 -0.503751 -6.051529 1.940615 -7.794905 3.865741 -0.653228 -2.006750 -5.569429 -9.426017 1.416540 3.605087 0.266199 4.928420 5.332991 -3.116898 -4.157005 -7.031680 -5.927431 6.307206 1.859774 2.355354 4.923474 -5.570095 -3.078048 2.256678 1.032086 1.939089 6.144321 -6.428822 1.243661 2.572527 -4.218589 -4.059393 -5.510823 2.760060 -5.822270 3.190220 6.924373 -6.533334 2.492713 -0.572676 2.230229 -3.631615 -7.697169 1.034312 -6.645592 1.631544 8.398062 -4.172717 -5.889328 -4.974185 -0.902135 2.716449 6.797881 -0.026472 1.661280 10.507674 4.867740 5.065723 -9.278230 -1.176998 4.485803 5.771010 3.441539 1.963983 -5.628703 -3.814017 1.865246 -6.301899 -13.795112 -5.347527 3.552306 8.965811 -1.260832 -9.552466 8.015011 -3.976825 7.499973 8.386260 3.884929 2.348768 2.778365 -8.333954 2.608082 11.512133 -2.969395 4.718493 -3.973931 -9.937450 10.869017 -0.870632 3.679365 1.118202 -1.631709 -0.907703 -5.774092 4.014491 9.377527 -0.113465 2.850299 -0.443111 3.015118 -2.481344 -10.984227 -16.470019 -1.323868 8.672184 9.786459 18.429431 -9.808623 -3.162625 -1.160805 7.014085 -1.741676 -5.497569 2.442901 -4.697938 5.041285 -20.420148 -13.706368 16.546692 10.722412 6.383649 1.326870 8.354500 -0.013826 -1.172795 -3.691977 -6.387744 5.628851 5.892226 -2.756068 2.173138 1.382673 -10.632016 -4.371098 -0.088925 1.932845 3.009138 -7.844713 2.035274 -6.317159 -4.908135 -5.752411 4.584699 -6.175487 -2.177169 -1.631124 -0.153961 0.512319 4.093932 -1.137365 -2.883251 -2.947914 -4.974184 -1.241071 0.754990 5.507545 2.235079 11.401531 15.001542 -6.030847 4.312671 -0.827813 -4.410094 18.188288 -7.310372 -0.227132 0.390533 8.111976 5.121238 3.055402 8.271835 -3.774199 -0.440583 -9.021608 1.320015 3.918695 4.419116 -15.604154 -5.257999 -14.913117 -0.755007 -1.729471 12.332318 -0.757386 18.050732 -4.431085 2.069490 -18.727410 0.313294 6.745093 -0.137277 5.913415 3.197604 -7.824276 -10.784604 -1.745083 -7.552384 1.277905 -1.055955 -4.361007 -6.860389 -3.641780 4.148327 -6.669347 2.889442 9.312478 -3.266711 6.117772 -0.840881 -0.280731 -3.158575 -1.680493 2.262204 2.674109 -5.257639 8.653818 0.671740 18.397894 -0.963687 7.530934 -4.945038 9.047961 -5.049692 -10.282927 -4.892088 9.172916 9.551251 2.268819 1.922209 1.596638 -2.203897 8.039829 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -1.345601 -0.212662 3.726480 3.070537 -2.036040 -3.297738 -1.066193 -4.234401 3.007413 1.414832 3.811174 0.455196 2.616650 -2.034800 -0.227557 -0.969134 2.011073 -0.233409 -0.558042 -1.366666 -0.615771 4.697431 0.872073 -2.739851 0.665613 -2.943802 2.665466 1.630782 1.192527 3.043531 0.567914 0.468926 -0.567156 1.364320 -1.629425 0.583093 -0.440963 1.293216 -1.323935 -1.578112 1.867477 -0.264985 2.955878 0.051538 2.775174 0.100503 1.685753 -0.502727 -2.350987 -1.624980 -0.842581 1.345516 -1.456616 1.763925 -0.743955 0.149776 1.314167 -1.170861 -0.030519 -3.637198 1.058468 -0.011625 -1.942198 -0.415434 -2.100798 0.392450 -0.179191 -1.764090 0.457281 -2.518303 1.272083 -0.100198 -0.375151 -1.990888 -3.495347 0.463033 0.965898 0.063732 1.640026 1.869873 -0.975147 -1.467285 -2.097241 -1.904528 2.245520 0.930179 0.493952 1.797123 -1.897863 -1.157906 0.487494 0.283578 0.656728 1.833962 -2.125414 0.465438 0.780636 -1.138320 -0.670545 -1.672449 0.849929 -1.905473 0.778533 2.006820 -1.481562 0.935879 0.098873 0.807625 -1.150231 -2.279402 0.698535 -1.849594 0.116797 2.861747 -1.242267 -1.842997 -1.609369 -0.096700 0.656762 2.292907 -0.157241 0.744129 3.019668 1.531271 1.671293 -2.942989 -0.266331 1.955293 1.879162 1.099188 0.448516 -1.851244 -1.136475 0.633304 -1.907562 -4.461860 -1.784741 1.287967 2.897974 -0.465627 -2.906975 2.430897 -1.169372 2.460459 2.743565 0.873306 0.794481 0.998421 -2.714501 0.975995 3.877305 -0.967019 1.421439 -1.335225 -2.975697 3.288199 -0.419201 1.243910 -0.063668 -0.439564 -0.030011 -1.783405 1.405133 3.056837 -0.128012 1.024784 -0.424341 0.992579 -0.921280 -3.633082 -5.330894 -0.726370 2.740011 3.014216 5.879495 -2.841123 -1.169617 -0.456601 2.225489 -0.582058 -1.596611 0.959593 -1.790655 1.663658 -6.659539 -4.380527 5.497742 3.657766 2.159621 0.322861 2.622395 0.308650 -0.312516 -1.166671 -1.800555 1.636544 1.955919 -1.287014 0.569974 0.356516 -3.395230 -1.644853 0.102787 0.417342 0.752715 -2.117032 0.961686 -1.966070 -1.520811 -1.857088 1.703231 -2.034150 -0.629905 -0.665264 0.029441 0.072611 1.420028 -0.570902 -0.739957 -0.442724 -1.456530 -0.384237 0.119901 1.593368 0.721003 3.283819 4.860708 -1.711031 1.546293 -0.180131 -1.581821 5.917414 -2.291994 -0.152458 0.115385 2.211909 1.638787 1.109988 2.285692 -1.241677 -0.050037 -3.040577 0.332875 1.300617 1.519147 -4.673102 -1.921803 -4.398242 -0.272606 -0.622019 3.793542 -0.184151 5.861061 -1.772866 0.667644 -6.062498 0.154606 2.275731 -0.037588 1.957114 1.039346 -2.415322 -3.584979 -0.548224 -2.324124 0.206767 -0.523834 -1.811211 -2.101972 -1.486371 1.669708 -2.371679 1.039559 3.017924 -0.918826 2.217504 -0.696140 -0.038936 -1.342118 -0.271112 0.314109 0.881365 -1.750803 2.458558 0.107598 5.706616 -0.622498 2.397346 -1.736197 3.110573 -1.968052 -3.468640 -1.470216 3.021487 3.108179 0.731636 0.572624 0.421466 -0.784763 2.568284 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.400228 1.387966 4.644407 3.033111 -3.041954 -5.179931 -0.997983 -6.369659 3.444975 1.134730 3.592338 0.623192 3.049684 -1.638549 -0.358857 0.535382 3.017801 1.043305 -0.321270 -2.085204 -1.639832 5.762499 -0.068931 -1.910353 1.056046 -3.200616 2.603586 2.416189 3.254629 3.126457 1.058664 0.019854 -1.083729 1.626794 -1.636608 -0.236271 -0.938501 1.244299 -3.918268 -0.639713 0.591782 -1.238085 4.200443 0.369933 2.475294 -0.148790 2.559607 0.450991 -1.955232 -1.185391 -2.066876 3.001273 -0.884083 2.550188 -1.028979 -0.956370 1.023575 -0.173448 0.568696 -1.237625 0.213020 -0.578012 -2.284758 -0.423330 -3.135182 0.046927 -1.961771 -2.969755 -0.025477 -1.712887 1.581297 -0.031869 -0.553843 -2.328652 -6.441429 0.257237 1.173713 1.136943 2.364588 2.433694 0.248236 -1.511394 -3.105610 -2.707096 2.901168 1.986564 0.709297 1.770471 -3.581397 -2.393625 0.103269 0.346436 1.560700 1.685714 -3.061540 1.396367 -1.524279 -1.291040 -1.617361 -4.570230 0.857444 -1.619829 1.193158 -0.623462 -0.277089 0.943226 0.372218 0.665920 -0.462707 -2.778069 0.756098 -1.603453 -0.688361 5.049092 -0.604127 -2.504084 -1.878212 -0.221573 -0.857455 2.375460 0.637330 0.492001 3.037110 2.043481 2.233576 -3.160259 -0.705396 1.902798 1.097577 1.786112 1.360611 -1.370131 -1.825884 0.961366 -1.981723 -5.983517 -1.419010 2.205383 3.273115 -1.096412 -0.996698 0.865659 -2.050540 2.478233 2.634733 0.661983 1.653437 0.418276 -2.613000 1.493247 4.824269 -1.285121 1.943770 -2.079541 -2.469737 3.491728 -0.417428 1.581474 -0.917565 -1.091960 -0.428055 -1.224830 1.149068 3.671994 -0.306694 -0.005282 0.340375 0.910412 -2.524695 -4.164954 -5.922588 -0.264147 3.682599 2.704462 5.598048 -3.001746 -1.473982 -0.261465 2.083927 -0.463681 -1.715394 2.136660 -2.808190 2.177316 -7.048694 -4.795361 6.275130 4.613767 1.932052 -0.635299 2.265179 1.066014 -2.249705 -3.222816 -2.098946 1.418184 1.406453 -4.222478 -1.056742 0.753403 -4.209826 -0.477429 0.604516 0.815081 1.753415 -0.901496 2.711615 -2.905322 -2.289537 -3.090369 2.965460 -2.085128 -0.218085 0.159531 -0.159124 -0.223264 2.163923 -0.702490 -1.048783 0.152645 -1.811666 -0.024021 -0.482026 1.918551 0.023667 4.505063 5.329095 -0.971625 3.099335 0.166521 -2.853777 7.077913 -2.797426 0.769036 0.031620 2.084684 0.239094 1.822691 2.835817 -1.593037 -1.411493 -3.725066 -0.734527 1.251835 1.725791 -3.296242 -2.637498 -5.136665 -0.198171 -0.908117 4.464270 -0.324556 6.224547 -2.762741 1.314717 -6.660592 0.615598 1.749147 -0.111815 3.420710 1.291090 -3.222101 -1.890377 -0.674399 -3.414589 -0.734906 -0.297641 -2.545360 -2.410542 -1.322968 1.357039 -2.765057 0.716001 3.126979 -1.962740 3.366879 -1.956595 -0.050632 -1.824599 0.178853 2.922669 0.452668 -2.241744 2.508524 0.265010 7.683364 0.412165 2.609723 -1.627751 1.470298 -1.045884 -4.559574 -2.297342 4.090253 3.458666 1.258180 0.229118 0.361391 0.007844 2.621654 -PE-benchmarks/quicksort-on-singly-linked-list.cpp___GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/biconnectivity.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.584091 0.403055 2.708960 1.320072 -0.856556 -2.514184 -0.592519 -2.854698 1.607741 0.840667 2.467350 0.421936 1.652024 -0.422796 0.460817 0.309509 1.226700 -0.124879 -0.053300 -0.785178 -0.103716 2.849474 1.008876 -1.057119 0.307973 -1.625239 0.754401 1.151260 1.275619 1.709536 0.268750 0.010370 -0.179747 0.886593 -1.175433 0.305319 -0.414934 0.881727 -1.131934 -0.579492 0.353161 -0.216469 1.647952 0.323493 1.694631 -0.017664 1.724263 -0.196936 -1.018848 -0.946840 -1.253913 2.118470 -1.154098 1.156311 -0.677719 -0.011065 0.429904 -0.264627 -0.051869 -2.262009 0.333297 0.274244 -1.499750 -0.351668 -1.239548 0.318491 -0.590269 -1.057340 -0.099472 -0.663453 1.291060 0.009776 -0.117187 -0.793303 -2.954384 0.172665 0.119931 0.356545 1.097540 0.652794 -0.812615 -0.565695 -1.040299 -1.521508 1.848644 0.607600 0.310110 0.795379 -1.595009 -0.296972 -0.470684 0.219811 0.116511 1.188614 -1.681546 1.095005 0.671819 -0.620091 -0.683536 -1.171754 0.321599 -1.459987 0.284971 0.453334 0.510624 0.054625 -1.219494 0.410637 -1.083570 -1.817977 0.648700 -0.596260 -1.146021 1.464977 -1.215132 -0.268071 -0.191847 0.199311 0.237334 1.476246 0.454703 0.687122 1.343985 1.125300 0.884755 -1.585439 -0.009682 0.836550 1.502262 1.069145 0.406945 -0.822156 -1.052588 0.534096 -1.091995 -3.081343 -0.543950 2.158111 1.709479 0.177656 -1.616633 0.791861 -0.758764 1.534305 1.955584 0.836312 0.673594 0.390486 -1.434785 0.650211 2.896861 -1.129833 1.613563 -0.250606 -1.072455 2.261368 -1.304172 1.201325 0.153420 -0.100435 0.126869 -1.020513 -0.185042 2.212943 0.913464 0.922831 0.085910 0.398860 -0.627707 -2.411146 -3.216643 -0.962915 1.918899 1.054309 2.767622 -1.286167 -0.946605 0.012898 1.256720 -0.780537 -1.343886 0.460350 -1.071279 1.027439 -4.173916 -2.357234 3.430045 2.649440 1.213444 0.076763 1.627544 1.189727 -0.730773 -1.166180 -0.869709 1.115769 0.309337 -1.418024 -0.252837 0.061349 -2.383523 -0.530013 -0.271665 0.186609 -0.226623 -0.300177 0.994030 -0.342582 -1.349075 -0.555394 0.526362 -1.441659 -0.881140 -0.488888 0.011704 0.055324 0.454705 -0.634447 -0.158126 0.760027 -1.743468 -0.344371 0.112340 0.978417 0.937869 2.677484 2.679919 -0.441599 1.430122 -0.053502 -1.371709 3.161157 -1.320951 -0.099496 -0.142575 1.444428 0.391958 0.940069 1.188306 -0.718801 -1.001953 -2.020580 0.205723 0.979499 1.191032 -1.156703 -1.696030 -2.187916 -0.107474 0.362993 2.672678 -0.655485 3.505963 -1.140719 1.007688 -3.862981 0.387472 0.796188 -0.330765 1.160437 0.791063 -1.381893 -1.872236 -0.580749 -1.174590 -0.348496 0.002772 -1.377724 -0.964577 -1.400549 0.823283 -2.136101 0.485631 0.939400 -0.594635 1.893134 -0.076577 -0.207564 -0.999083 0.534062 1.463624 0.585658 -1.439233 1.533293 -0.022735 4.297350 -0.689489 1.762876 -1.159577 1.152848 -0.816406 -1.383335 -0.801653 2.422688 2.467039 0.516027 0.178384 0.286940 -0.265570 1.251668 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -6.626800 3.722816 25.942620 16.407683 -9.600340 -14.385268 -6.877680 -17.759242 11.890723 5.569240 18.414999 1.478645 8.119525 2.093648 0.730272 -6.120592 6.718676 -2.157677 -2.745585 -6.083050 -2.674545 20.441264 12.736005 -18.230120 1.761394 -17.414400 10.534390 6.789977 6.902015 14.589224 0.325243 1.033651 -1.503214 9.176293 -12.163616 -1.810078 -3.119373 6.131956 -5.916263 -5.397452 9.485998 5.065742 11.605126 1.978442 11.760544 4.880094 10.328890 -3.175258 -11.983094 -6.059452 -6.546440 13.858672 -9.266128 9.427152 -0.968778 7.815608 2.645948 -10.253879 -2.231222 -23.512464 5.045087 6.137965 -9.476674 -1.767007 -11.723133 2.673542 -2.423526 -8.265669 3.770835 -7.680914 9.721478 -1.086109 0.624255 -11.327819 -15.319152 4.963838 -0.548304 3.914376 6.932327 4.514122 -8.379252 -0.817171 -7.293645 -10.488933 5.552275 1.805527 0.342169 3.203937 -1.440606 -4.726993 1.159368 0.130547 -4.388324 12.982536 -12.704079 10.879449 1.157541 -4.552463 -6.020684 -5.093707 -0.013841 -13.219983 4.548825 11.364204 -5.743768 2.065049 -3.014832 3.893655 -2.662835 -14.827126 2.778208 -2.986851 -3.045235 10.933975 -9.792530 -4.295848 0.995932 0.096397 1.953133 14.133802 -0.624485 5.539715 12.698226 9.201139 5.766752 -12.066573 3.136858 5.360913 9.047225 7.663324 7.453124 -10.315645 -7.432761 1.285875 -3.389960 -23.252252 -0.476625 12.186378 13.369306 2.429412 -19.219924 7.698749 -6.453349 14.057966 13.136387 10.817576 5.192876 0.120257 -10.760437 4.312997 25.892478 -7.816508 11.039591 -4.353171 -15.459361 20.899111 -8.573305 12.488959 0.420941 2.844736 3.878906 -12.833172 0.127766 18.440755 5.020876 6.434386 6.704918 0.321911 -0.355884 -21.852127 -23.190174 -5.993695 9.806876 8.235801 26.928248 -11.842084 -6.342674 -2.825873 13.034491 -4.900318 -7.992735 1.217852 -4.688314 6.146669 -33.793377 -21.381871 23.698703 22.169171 3.770706 0.278825 15.888845 3.968247 -0.104520 -9.861137 -10.026532 9.838561 3.748352 3.220662 2.209648 -0.392017 -16.769405 -3.642771 0.723294 2.327806 6.132815 -11.028894 -3.803905 -0.723321 -14.690022 -9.640066 4.150266 -14.105413 -7.504804 -1.843826 1.418840 -1.147889 3.231980 -3.340151 -6.862670 3.168282 -10.779976 -3.445503 3.235041 8.598118 4.290706 18.463451 18.368671 -2.943936 7.821259 3.348833 -8.139323 36.516337 -12.719657 -2.879233 -0.697282 12.971613 1.132649 6.664935 6.647105 -4.826435 -6.903276 -14.134228 7.882168 0.819336 7.219093 -23.210891 -13.407464 -15.424471 -2.511407 3.233165 17.162582 -1.596628 31.899940 -5.042016 4.929539 -33.764776 1.329766 13.212823 -1.298744 10.056449 8.903758 -12.157763 -22.237704 -3.260284 -6.191066 8.202852 -2.014157 -14.022507 -8.975142 -7.394528 5.503910 -11.464256 7.229103 14.802571 -4.954472 11.531840 1.318076 -3.499066 -4.715059 -3.510379 6.355151 6.077481 -10.862347 15.880965 -2.334622 31.670336 -6.545435 14.044668 -10.091823 7.958110 -5.792729 -9.195413 -6.116132 18.033327 15.446635 5.385492 1.318344 0.658710 -6.759914 8.044802 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -2.551434 3.161719 17.593030 9.385776 -7.875270 -8.057526 -4.335701 -13.255604 7.276448 3.652359 12.005234 0.162084 4.717154 1.646385 0.380633 -2.225138 4.572427 -1.711307 -1.406650 -4.420036 -4.053497 10.658356 8.516463 -10.229372 2.504005 -11.737347 6.285575 3.160401 5.462566 7.769775 1.122239 0.740305 -1.145782 6.032419 -6.546475 -1.588389 -1.400255 3.488367 -5.645944 -2.193550 5.384084 1.191222 7.309064 1.619496 7.731601 2.578714 5.872059 -1.405341 -8.585111 -2.486300 -5.073623 11.203700 -5.842508 6.062723 0.692471 4.617253 0.261686 -7.780150 -2.297099 -12.762378 1.912371 1.863716 -5.022584 -0.121560 -7.728249 2.341975 -2.908029 -5.283959 3.066257 -2.866920 6.756981 0.260536 1.360017 -4.908995 -9.363377 3.964257 1.193232 2.918957 4.981179 2.004230 -2.691545 0.080122 -4.746791 -7.427231 5.235261 1.771001 0.367958 0.232830 -0.123044 -3.578943 1.354870 -1.096995 -2.987491 8.953128 -10.408743 7.308507 -1.058538 -3.830937 -5.188563 -6.791024 -0.877585 -9.102986 4.107075 6.947781 -4.757613 2.626461 -0.762101 4.307224 -0.813232 -10.195953 0.752823 -1.392983 -1.750622 9.103214 -6.111140 -3.849250 0.306909 0.367309 -0.131113 7.816295 -0.363270 4.717470 10.358500 7.168469 3.688704 -6.446075 2.318816 3.283270 5.127720 5.644533 5.838980 -7.901490 -5.197748 1.979583 -1.140608 -15.213737 -1.154584 6.259439 8.764638 1.378795 -11.570101 2.349698 -3.680618 8.915420 7.714063 6.569449 3.415006 -0.505208 -5.772484 3.642556 16.789915 -5.925436 7.154762 -3.244607 -9.137123 11.314852 -5.652983 7.671290 -0.135712 1.826401 2.697854 -9.558569 -1.141546 12.063524 3.391603 1.845245 4.012777 0.540467 -2.051579 -14.455752 -13.933726 -3.392104 5.073899 2.899879 16.658038 -7.609775 -4.873550 -2.710328 9.993840 -1.665584 -4.504812 1.418895 -3.949251 3.803336 -18.722302 -13.777603 14.705807 14.232171 3.119228 -0.309608 10.049021 2.969690 -3.877692 -7.839891 -6.803868 5.918491 3.154183 -0.258707 -1.773248 -0.019694 -11.390061 -1.533355 0.550788 2.120125 6.367483 -5.659365 -1.281348 1.312599 -10.724863 -5.073945 4.410748 -9.694555 -5.704734 -0.857243 1.088701 0.319714 2.943146 -2.686744 -4.862320 1.694264 -7.243742 -2.294944 2.674271 7.763460 1.198229 13.171027 12.168816 -0.637776 4.782442 1.941843 -6.629926 21.297914 -7.808850 -2.104962 -0.951355 5.633352 -1.445449 3.578306 5.252882 -3.554874 -6.637567 -9.330510 4.255003 -1.276399 4.308182 -12.933082 -8.546872 -9.952387 -2.481399 2.747819 10.513171 0.914565 19.943169 -2.850895 1.731475 -20.871880 0.506209 7.656060 -0.874522 7.767738 6.171126 -8.416308 -13.632860 -2.508781 -5.227897 4.814673 -1.624642 -8.542758 -6.507106 -4.778171 6.257364 -5.640011 4.566245 10.194722 -2.447797 8.371822 1.677080 -2.993904 -3.825335 -0.886126 5.794320 3.311164 -7.016122 11.285451 -1.212094 22.555956 -3.337980 7.644687 -7.398936 1.433447 -1.946255 -3.660865 -3.836776 11.642787 10.017886 4.971993 0.535564 -0.296542 -5.540438 5.513516 -PE-benchmarks/biconnectivity.cpp__main = -0.980949 8.491943 35.280712 13.588436 -15.487919 -23.581213 -9.219075 -39.575895 18.278769 8.426146 25.834856 0.452504 12.930631 -0.477692 1.278882 3.679816 12.696483 -2.815557 -1.189988 -11.362277 -6.472287 27.030251 7.189586 -11.437855 5.633872 -26.755656 10.546498 10.527324 16.076597 13.454686 5.505777 -0.447270 -4.641735 12.164200 -11.101749 0.480644 1.326573 6.411499 -18.089528 -2.518248 4.545719 2.057392 17.594805 1.831309 19.533702 2.048019 14.560870 0.793963 -13.098131 -6.140993 -11.315600 28.371092 -9.160544 12.861858 1.560940 2.309681 -0.941744 -12.867646 -2.469379 -13.333114 0.855804 2.216280 -12.146732 -0.268451 -15.014326 4.029261 -6.763119 -10.700560 4.056511 -5.736512 13.882688 -1.526385 -0.496067 -7.019610 -28.594607 5.753862 3.739756 6.941657 12.269907 4.080757 -0.676836 -2.708172 -11.879258 -17.424200 15.991517 13.406793 2.148548 2.694941 -11.238847 -6.682804 -1.478619 -3.382564 0.781571 16.997441 -23.689275 9.576741 -4.695343 -9.319988 -14.093549 -19.673357 2.254765 -16.105735 9.030853 4.394609 -2.619992 3.669735 -1.475654 6.357823 -4.156967 -18.864886 2.900838 -4.220628 -1.519856 26.018483 -10.657587 -8.931626 -5.350212 -1.323188 -4.634965 15.503634 3.700613 7.257518 21.856396 16.776137 10.690087 -16.036519 -3.039511 9.358594 11.069555 13.167877 10.479735 -18.071503 -10.624771 5.377144 -7.337911 -34.262762 -5.651121 12.468115 19.884876 -0.934119 -14.103468 1.179588 -8.519417 19.111413 15.413660 7.817825 6.445046 0.382524 -14.234355 9.850884 34.166546 -10.728885 15.555411 -9.828722 -11.523360 17.538586 -11.416574 13.748907 1.900471 0.521969 -0.141595 -14.716128 -1.573949 23.733445 6.083466 5.102608 3.153140 4.649542 -10.079954 -27.791959 -34.007996 -5.385901 15.016082 4.198424 30.973226 -16.516820 -14.392048 -4.314894 22.034829 -3.976999 -11.573825 9.424515 -14.805176 11.234047 -30.681133 -26.734717 33.935795 34.681171 10.353250 -3.475943 20.838515 9.474549 -19.379953 -17.140259 -11.483822 12.420326 5.861606 -17.325644 -5.923938 1.512086 -24.296188 -4.447737 -1.006818 5.967174 8.550267 -0.828874 9.427482 0.341421 -18.965454 -11.441976 13.317774 -14.317985 -8.281176 -1.687741 1.989281 -0.617735 10.519621 -10.316197 -7.703587 7.795942 -16.339603 -0.805735 5.971832 13.416865 3.128806 29.317733 25.234098 -0.670697 21.801950 1.386517 -14.594062 36.607934 -12.584688 0.808707 -0.925982 7.832714 -4.060851 9.232783 11.626175 -8.946518 -16.155073 -21.563058 2.149452 -0.823374 12.629141 -13.642793 -20.552266 -24.325898 -4.923139 4.008184 23.266131 0.367677 39.406251 -9.203652 7.777759 -43.433042 2.836831 12.394631 -2.812633 15.573602 9.985845 -17.727460 -22.608141 -3.691201 -15.776314 -7.695211 -1.851329 -18.103577 -14.995138 -16.082015 17.874604 -14.854803 5.236215 18.888939 -3.148291 18.791908 -2.812871 -4.369408 -10.408242 1.399775 17.904512 3.108795 -16.701039 18.925365 -0.415388 52.473168 -6.083049 16.507373 -12.461838 3.575106 -3.827294 -14.697818 -8.921900 25.457660 22.917840 9.698131 -3.050877 -0.859245 -8.299288 13.483074 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/biconnectivity.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/biconnectivity.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/biconnectivity.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/biconnectivity.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/biconnectivity.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/biconnectivity.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/biconnectivity.cpp___GLOBAL__sub_I_biconnectivity.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/find-parity.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.107985 0.590844 1.883070 1.710103 -1.316018 -1.525631 -0.482061 -0.796662 0.231047 -0.023412 0.628357 -0.236152 0.195452 0.259869 -0.107252 -0.492151 0.626190 0.635833 0.087571 -0.481394 -1.458834 0.647474 0.576063 -1.557989 0.371818 -0.581393 1.153737 0.930472 0.016289 0.955948 0.307828 0.168971 -0.341099 0.590478 -0.735776 -0.461084 -0.078821 0.536941 -0.674546 0.140743 0.491458 0.230420 1.048770 -0.346827 0.207507 1.034668 0.701039 0.207723 -1.608399 -0.140057 -0.518840 0.502793 -0.193696 0.696863 0.086929 0.443163 0.515515 -0.846369 -0.205368 -1.126256 0.169383 0.043791 -0.509100 0.049580 -1.057740 -0.142564 -0.289410 -1.228393 0.929474 0.316428 0.223740 -0.233826 -0.244034 -0.771687 -0.778629 0.391996 0.501561 0.522229 0.430013 -0.073305 0.408720 0.050447 -0.702418 -0.443692 -0.112269 -0.468872 0.537100 0.031596 -0.020740 -1.029383 0.574517 -0.209666 -0.199532 0.564864 -0.130986 0.977300 -0.867871 -0.298501 -0.981981 -1.353480 0.065711 -0.561710 0.645879 0.667366 -0.855096 0.432079 0.298807 0.724990 0.387461 -1.035382 -0.053192 -0.762297 0.212072 1.115394 -0.062434 -0.748332 -0.044919 -0.305671 -0.094889 1.120725 -0.084945 -0.065742 0.807769 0.550983 0.330685 -0.778792 -0.124829 -0.473523 0.076920 0.652831 1.012205 -0.918377 -0.494441 -0.243721 -0.429416 -1.381706 0.017274 -0.021329 0.542208 -0.131956 -0.955117 0.407473 -0.701837 0.984321 0.034225 1.167044 0.257604 -0.211553 -0.479500 0.297836 1.747250 -0.606518 0.389528 -0.346462 -1.533552 1.022448 0.648089 0.435357 0.059484 -0.243097 0.317658 -0.718939 0.197961 1.175413 0.323718 -0.215453 1.094576 0.150090 -0.729292 -1.758676 -1.298446 0.602726 0.754062 0.231910 2.812556 -1.140934 -0.878469 -0.242034 0.922524 -0.507365 -0.189389 0.039357 -0.189733 0.405253 -2.374474 -1.931940 1.511850 0.471215 -0.081900 -0.031147 0.756138 -0.410460 -0.223730 -1.065142 -0.888476 0.220914 0.173714 0.327325 -0.266858 0.126716 -1.001697 0.489921 0.355854 0.385922 1.227054 -0.931016 -0.976754 -0.707444 -1.676714 -0.965837 0.146267 -1.582045 -0.160281 0.285141 -0.052357 0.430235 0.410394 -0.109672 -1.046836 -0.481676 -0.393217 0.019561 -0.040973 0.776368 0.006140 1.684487 1.889808 -0.023330 0.587671 0.341123 -0.604413 3.410352 -0.788400 0.244026 0.027485 1.069383 -0.177436 0.098399 1.199025 -0.315251 -0.608279 -1.035141 0.008232 -0.126818 0.191881 -2.594834 -0.272321 -1.572920 -0.120072 0.104804 1.181610 -0.067130 1.908585 0.017811 0.298700 -2.142053 -0.040925 0.571218 -0.140229 0.888335 0.482988 -1.099346 -2.021610 -0.244247 -0.742762 1.109360 -0.185992 -0.352059 -0.764969 0.437026 -0.593939 0.346758 0.526503 1.840674 -0.718326 0.296861 0.015823 -0.261923 0.179324 -0.736122 1.008800 0.031011 -0.696807 1.340890 0.101802 2.683348 0.680206 0.589361 -0.452761 -0.364950 0.251475 -0.090782 -0.637693 0.879727 0.425563 0.711609 0.257979 0.470074 -0.381229 0.771240 -PE-benchmarks/find-parity.cpp__main = 0.887491 0.443565 2.186083 0.999410 -0.845382 -1.150042 -0.552464 -2.799293 1.238649 0.288052 1.302806 -0.262440 0.694067 -0.103176 -0.332730 0.687076 0.501847 0.081909 0.353900 -0.481013 -0.495931 2.244937 0.387824 -0.482509 0.094953 -2.111729 0.688451 0.575579 1.842342 1.070203 0.297166 -0.304154 0.179652 0.505964 -0.913650 -0.219078 -0.418456 0.588561 -1.855651 0.101404 -0.110697 -0.212153 1.040580 -0.553973 0.952714 -0.325011 1.138560 -0.002399 -0.521682 0.157047 -1.269779 2.005549 -0.451121 0.649112 -0.300247 -0.247177 -0.351665 -0.290815 -0.577251 -0.185395 -0.351180 0.351875 -0.607090 0.349768 -1.309241 0.394975 -0.744956 -0.933744 0.417401 0.378914 0.896464 0.703709 0.466045 -0.516564 -2.420732 0.722747 0.341651 0.590375 0.409522 0.055860 0.911103 0.053877 -0.746343 -0.877767 1.296815 1.428024 0.057589 -0.258841 -0.411694 -0.743182 -0.033598 0.026317 0.060002 0.826093 -1.187184 1.009648 -1.502127 -0.143060 -0.528961 -1.765200 -0.246747 -1.090123 0.749720 -0.055113 0.058601 0.907389 0.951123 0.760757 0.204479 -1.417176 -0.293890 -0.092577 -0.058327 2.359508 -0.298052 -0.782134 -0.477663 0.197853 -1.017834 0.569606 0.010850 0.845327 1.452834 0.936987 0.772341 -1.046598 -0.318516 0.849452 0.339629 1.046535 0.843110 -0.715890 -0.769557 -0.150947 0.174739 -2.484261 -0.505867 0.430028 0.711892 -0.779514 -0.084628 -0.319654 -0.485990 1.773714 0.892704 0.200862 0.655531 0.109611 -0.515489 1.077440 2.465798 -0.612498 0.679907 -1.178570 -0.944391 1.056259 -0.330235 1.025844 -0.481685 0.071599 0.048627 -1.310038 0.177985 1.427373 -0.048184 0.206291 0.264966 0.207415 -0.684377 -1.844244 -1.555142 -0.242055 0.571747 0.070350 2.346789 -0.823174 -1.283131 -0.000206 0.879664 0.311007 -0.232591 0.719171 -1.495387 0.694961 -2.396583 -2.240683 1.998720 1.833611 0.868630 -0.085303 1.242433 0.813183 -1.255531 -1.353622 -0.587292 0.819390 0.649175 -2.176306 -0.987689 0.289984 -1.339577 -0.203935 0.258160 0.334533 0.676518 0.363717 0.776710 -0.509741 -1.601712 -0.665070 1.533774 -1.549732 -0.374226 -0.074713 0.213889 -0.108962 0.889447 -0.992741 -0.074904 0.421572 -0.604275 0.312820 0.209904 0.757815 -0.446041 1.183790 2.347026 0.233553 1.596918 0.247783 -1.010962 2.280498 -0.803317 -0.140382 -0.020999 -0.168259 -0.932452 0.548509 0.757438 -0.714447 -0.957777 -1.384532 0.135242 0.056089 0.481740 -0.345342 -1.035402 -0.969364 -0.620391 0.405043 1.306761 0.779603 2.388352 -0.975508 0.363840 -2.731608 0.129693 0.417033 0.095196 1.713288 0.588351 -1.079966 -1.071374 -0.418345 -0.847817 -0.310791 -0.535947 -1.902964 -1.186901 -0.982351 1.034562 -0.675773 0.457756 1.377547 -0.382097 1.336912 -0.816824 -0.312260 -0.871740 0.306942 0.957679 0.306370 -0.941134 0.849626 -0.233217 3.608737 -0.231562 0.702807 -1.185934 -0.025272 -0.145560 -0.956314 -0.383502 1.778365 1.070109 0.715736 -0.277960 -0.474963 -0.504214 0.657374 -PE-benchmarks/find-parity.cpp___GLOBAL__sub_I_find_parity.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.593854 0.461464 3.941813 2.695039 -2.070734 -1.961368 -1.126302 -2.241280 0.994961 0.229730 2.312437 -0.408414 0.182553 0.698667 0.016478 -0.807748 0.615175 -0.288662 -0.485275 -1.075751 -0.522210 1.938098 2.171925 -3.546379 0.545994 -2.507621 1.573444 1.291480 0.799777 2.077946 -0.550652 -0.307431 -0.095130 1.663168 -1.983725 -0.817860 -0.017328 0.678466 -1.304054 0.248567 1.289134 1.367466 1.583884 -0.924673 1.581477 1.661724 1.603084 -0.120790 -2.737232 -0.463004 -0.599159 2.001877 -1.501125 1.736644 -0.271066 1.398222 -0.511842 -2.211487 -1.204651 -3.520353 0.677675 1.213340 -0.920522 -0.213381 -2.120485 0.388625 0.350309 -2.010062 1.621004 -0.473609 1.410833 0.319815 -0.010350 -1.409198 -1.109364 1.203184 0.723283 1.663314 0.311626 -0.782920 0.042564 0.339113 -0.771478 -0.931873 -0.403116 0.034841 0.807830 -0.205088 0.908942 -0.559861 1.201295 0.161617 -1.045192 1.915468 -1.108450 1.330938 -1.213765 -0.522711 -1.607115 -0.914550 -0.440394 -1.813098 1.496677 1.982809 -1.545510 1.319744 0.777588 1.673051 0.074032 -2.559099 -0.507300 -0.005237 0.454554 1.984308 -1.003876 -0.906847 0.376112 0.043358 -0.387994 1.735365 -0.698899 0.969523 2.367041 2.049329 0.801638 -2.086246 -0.039894 -0.288083 1.220146 1.896277 2.173965 -1.647709 -1.269272 -0.618784 -0.627611 -3.354937 0.179243 0.510183 2.283962 -0.213697 -3.021529 1.038644 -1.503488 3.185285 1.324520 1.570466 0.732452 -0.372645 -1.735133 1.287953 3.969569 -1.223224 1.593050 -1.369778 -2.089982 2.296251 -0.038138 1.772356 0.324843 0.204133 1.017668 -2.511816 -0.135555 2.573203 1.281992 0.946736 1.462650 -0.045194 -0.039249 -3.620617 -2.499757 -0.673623 0.725407 0.285863 4.173150 -1.963507 -1.858371 -1.132545 1.934275 -0.662947 -0.692661 -0.248421 -0.926479 0.941814 -4.197193 -3.361388 3.023357 3.854455 0.649824 0.588468 2.844416 0.167855 -0.245412 -1.062503 -1.012757 1.450885 0.770301 0.487813 -0.405585 0.111144 -2.148413 -0.546955 0.555061 0.814142 1.040461 -1.290482 -1.799257 0.737495 -3.080677 -1.525870 0.482024 -2.841526 -0.508864 0.568425 0.229379 0.339532 0.497740 -1.140113 -1.408379 0.135893 -1.546657 0.029213 0.536341 2.010845 0.559664 1.813491 2.506182 -0.016737 2.120272 1.021317 -1.592395 5.412989 -1.511825 0.030953 0.219191 1.597237 -0.702746 0.747842 1.113248 -0.736510 -0.568771 -2.211090 1.216666 -0.064596 1.218525 -3.527249 -1.851499 -1.838872 -0.550833 0.996330 1.918716 0.081178 4.234763 -0.165541 0.802852 -5.226595 -0.215020 1.516249 0.329222 1.528719 1.594927 -1.861836 -5.003482 -0.077906 -0.993809 1.109318 -0.966065 -2.219272 -1.614060 -0.291551 0.769741 -0.432095 0.927889 2.979945 -0.516399 1.619758 0.166126 -0.789097 0.056331 -1.641317 1.107277 1.209124 -1.786713 2.133164 0.030343 5.610593 -0.234794 1.799681 -1.819916 -0.011425 0.181782 -0.681672 -0.886913 2.731892 1.751841 1.144804 0.294177 -0.380973 -1.373927 1.267369 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.560464 1.218509 4.086030 2.733924 -2.538084 -2.807461 -1.142233 -2.577639 1.123175 0.432983 2.113226 -0.701221 0.511970 0.904673 -0.075542 -0.952918 0.969511 0.277582 -0.678339 -1.084051 -1.801152 1.546412 1.279909 -3.005105 0.545064 -2.485285 1.820386 1.478848 0.489097 1.414455 0.160005 0.035543 -0.672398 1.509711 -2.065022 -0.653583 0.306337 0.434885 -1.287605 -0.431993 1.138196 0.805802 1.857401 -0.285424 1.385256 1.508573 1.117845 0.079115 -2.771666 -0.528719 -0.680191 2.459598 -0.731709 1.518450 0.824132 1.390120 0.342825 -2.594852 -0.285900 -2.653720 0.715078 0.545534 -1.180580 -0.118301 -2.006131 0.094021 -0.130573 -1.823590 1.546386 -0.974015 1.065667 -0.623794 -0.079179 -1.383183 -1.336081 0.917088 0.537181 1.035584 0.925399 0.261455 -0.004934 0.259488 -1.263188 -1.320206 -0.006398 0.090898 0.618255 0.284256 -0.187966 -1.038951 1.025267 -0.577571 -0.492747 1.895544 -1.499008 1.222920 -0.861202 -0.831669 -2.398617 -1.861909 -0.008383 -1.467868 1.187838 1.700453 -1.615692 0.621961 0.369714 0.919742 0.252358 -2.417986 0.035143 -1.077811 0.694389 2.058254 -1.271265 -1.172803 0.194008 -0.531232 -0.385081 1.926886 -0.337770 0.435912 1.957900 1.533467 0.933185 -1.699028 0.012106 0.119128 0.936737 1.402233 1.682786 -2.250282 -0.846636 0.074536 -0.809314 -3.504261 0.105576 0.496072 2.073696 0.705777 -2.827105 0.719095 -1.182553 2.057025 0.496997 2.031186 0.491626 -0.386147 -1.284864 0.403687 3.301554 -1.238123 1.665686 -0.776977 -2.346442 1.900756 -0.031043 1.685808 0.489898 -0.044772 0.809782 -1.823000 -0.084816 2.549390 0.810215 0.256378 1.500937 0.056033 -1.010827 -3.535021 -3.115833 0.362819 1.219526 0.040598 4.109482 -2.377417 -1.734760 -0.922619 3.083155 -1.206139 -0.790352 0.213078 -0.739737 0.990641 -3.513102 -3.379019 2.775167 3.036685 0.156669 -0.348465 2.663963 -0.242404 -1.011772 -1.562912 -1.770867 0.999205 0.664647 0.660944 -0.005871 -0.149338 -2.441307 0.223792 0.333040 0.800705 1.649554 -1.452350 -0.882436 -0.330497 -2.661287 -1.788106 0.685027 -2.169058 -0.254345 0.388480 0.393013 -0.051508 0.917312 -0.763477 -2.038100 0.184716 -1.394259 -0.221175 0.591950 1.650127 0.338506 3.721753 2.177896 -0.029217 2.190244 0.624845 -1.296290 6.113332 -1.753384 0.035585 -0.106653 1.978320 -0.531080 0.685203 1.598555 -0.822110 -1.321739 -2.103806 0.511046 -0.650535 0.816435 -3.708303 -1.808375 -3.037374 -0.794042 0.270541 2.107194 -0.043722 4.039172 -0.072339 0.401095 -4.780573 0.018605 1.920830 -0.422311 1.296194 1.370958 -2.159756 -4.069337 -0.008983 -1.300030 0.781419 -0.351368 -2.140275 -1.301089 -0.708802 0.761624 -0.424344 0.881655 3.113199 -0.451640 0.927243 0.388566 -0.489558 0.067295 -1.351589 1.573248 0.330679 -1.699364 2.958344 0.094055 5.495751 -0.054409 1.772107 -1.307644 0.024561 0.176054 -1.011242 -1.143983 2.272657 1.554408 1.160221 -0.062818 0.455000 -1.625887 1.347167 -PE-benchmarks/the-knights-tour.cpp__solveKT() = -1.266411 2.776846 9.048015 4.491670 -5.762622 -6.632175 -2.955171 -7.839565 2.588103 1.552146 6.198276 -1.755071 1.875115 1.932628 0.164050 -1.355810 3.016456 -0.697245 -0.690429 -3.090381 -4.478387 4.082043 2.052777 -4.151065 1.615638 -5.860804 4.309801 3.045313 1.051159 3.155398 1.043455 0.000539 -2.006537 3.226001 -3.189619 -0.250352 1.154087 1.441574 -2.734773 0.153475 2.474057 0.755717 4.759540 -0.417516 3.613616 3.665951 2.413142 0.664773 -6.067353 -1.893191 -1.378894 4.918950 -2.261915 3.038112 1.523829 1.804356 0.863521 -5.279994 -0.795384 -4.102937 0.725846 -0.275729 -2.936732 0.348869 -4.360152 0.633034 -1.362118 -3.633890 2.937404 -2.266449 2.647334 -1.280045 -0.804094 -1.327091 -3.740964 1.880040 1.717937 2.015834 2.228630 -0.037382 0.079251 0.567638 -3.794700 -3.785454 1.210079 1.482194 1.943638 0.044859 -1.752846 -1.448927 1.792165 -0.958816 -0.106062 4.550529 -3.745401 1.814493 -1.981381 -2.803506 -6.102369 -5.669776 0.515870 -3.420957 3.105274 3.301680 -4.253727 0.541021 -0.311557 1.845304 -0.178074 -5.629979 -0.025618 -2.601970 1.997528 5.599224 -2.992452 -2.844046 -1.351177 -1.687630 -0.106148 3.961632 0.391267 0.726635 5.475339 3.969960 2.351160 -4.140290 -1.267058 0.135007 2.326293 2.772470 3.719915 -5.081544 -2.507130 0.633285 -2.917093 -8.015234 -0.984477 0.917611 5.080381 0.428184 -5.081756 1.818277 -3.139474 4.324729 2.320345 4.125491 1.066580 -0.649982 -3.447059 1.481066 6.940896 -2.768745 4.080035 -2.284525 -4.640214 4.194928 -0.347610 3.083099 1.913747 -0.100899 0.024914 -3.885001 -0.178390 5.593167 1.874775 1.094696 2.615768 0.776351 -2.238057 -6.869983 -7.848935 1.040254 3.767365 0.566816 8.137782 -5.835908 -3.384113 -1.381124 7.029216 -1.634235 -3.026038 1.027778 -1.835880 2.281354 -7.264669 -7.124056 6.727923 7.375200 1.203572 -0.708236 5.218951 0.173602 -4.176821 -3.552038 -4.441099 3.394994 0.819627 -0.955529 -0.620381 0.292662 -5.519881 0.255877 -0.178678 2.436224 3.858503 -2.838277 -0.693536 -0.665144 -5.319822 -3.702128 2.374944 -3.906171 -1.294431 0.769345 0.200394 0.149054 2.276973 -1.733957 -3.597731 0.255439 -3.892021 -0.294087 2.013818 3.783442 0.593793 9.117644 5.105132 -0.754977 4.285781 0.456398 -2.868970 11.263625 -3.577863 0.597528 -0.348448 4.107148 -0.948306 1.625600 4.381514 -1.856942 -4.192015 -4.895814 0.640891 -1.038835 2.315188 -6.396941 -4.342128 -8.165088 -1.143280 0.598681 6.409639 0.166395 9.298117 -0.121092 1.454707 -9.946451 0.180671 3.422521 -0.944074 3.040974 2.401604 -4.671435 -7.173043 -0.211494 -4.452841 -0.196872 -0.299524 -3.725220 -3.741974 -2.063291 2.373021 -1.059649 1.122793 5.718530 -0.701827 2.527443 1.717070 -1.454893 -0.747133 -2.160351 5.041637 0.333926 -3.833225 6.582319 0.749316 12.957585 0.215816 3.879602 -2.355981 -0.167695 0.569358 -2.943624 -2.699963 5.401740 4.580646 2.529722 -0.526850 0.580594 -2.437576 3.231120 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.399024 2.920146 12.893431 9.489233 -5.811269 -7.801676 -3.875188 -7.221767 4.686763 1.454091 7.780107 -0.385335 2.788240 1.892254 -0.548152 -4.482575 3.210501 -0.495166 -1.983367 -3.582660 -4.022307 8.475689 6.100995 -10.471680 1.497549 -9.184365 7.285170 4.138860 2.642299 7.791630 -0.116108 0.779350 -0.465833 5.389142 -6.529934 -2.467151 -2.038082 2.530315 -2.675981 -1.387501 6.411487 3.544600 6.913870 1.326233 3.665165 5.333555 3.967244 -1.001099 -6.956895 -2.489224 -3.527915 5.564610 -4.402652 4.749165 -1.101602 5.170503 2.810355 -6.888954 -0.988733 -9.929993 2.386487 3.207575 -4.639801 -0.797046 -7.241317 0.834218 -1.628911 -5.252541 3.352897 -3.735654 4.554246 -0.462504 -0.611007 -6.547498 -5.711143 3.153855 0.473403 3.158501 3.632058 1.237697 -3.303670 0.852390 -4.678714 -4.978417 1.415617 -0.992999 1.460971 1.506611 1.248167 -4.885940 1.769735 0.401323 -1.968988 6.599779 -4.098105 5.243835 -1.620444 -2.530825 -4.367247 -3.093975 -0.325726 -6.133358 2.911532 6.619614 -5.392027 1.505300 0.412895 1.901016 0.152593 -7.845068 0.211193 -2.197487 -0.172638 6.410956 -3.952221 -3.742999 0.384827 -0.755173 0.604039 7.518837 -0.665847 1.834175 7.191465 4.901826 2.251051 -5.978028 1.413005 0.730575 3.249164 3.943146 5.554107 -5.555624 -4.265436 -0.465024 -1.280114 -11.546669 0.882201 3.602469 6.648157 1.290849 -10.297256 5.487725 -4.344130 6.014892 5.004542 5.979450 3.188516 -1.164992 -5.126900 2.933392 12.685758 -4.138001 5.162704 -4.025842 -9.510514 10.537941 -2.261793 5.518149 -0.142469 0.352761 2.543711 -6.434540 1.336000 9.383183 1.025003 2.064355 6.538923 -0.447715 0.273163 -10.746473 -10.414261 -0.833367 4.108709 3.312618 13.989444 -6.873573 -2.136343 -2.113014 7.358593 -2.632095 -2.620789 -0.086544 -1.493556 2.844396 -16.228226 -10.789998 10.730380 9.475860 0.319937 0.235343 7.047529 1.211510 1.430273 -4.690248 -6.023781 4.864534 3.027825 3.894051 1.397338 -0.414913 -7.282838 -1.026163 1.390603 1.843160 5.152174 -8.395108 -4.606129 -2.505424 -8.956021 -6.910700 2.360631 -8.522783 -2.087856 0.778052 -0.145122 -1.383197 1.995449 -0.099907 -5.018510 0.109386 -3.914971 -1.878640 1.194088 5.603041 1.519498 8.436318 8.417495 -1.750904 3.451850 3.205240 -3.854799 20.117464 -6.873478 -0.949993 0.067405 8.322138 0.115392 3.698417 3.698694 -2.283844 -2.943730 -7.622714 4.694466 0.087387 2.323390 -13.402350 -4.395983 -9.045570 -2.383983 1.249653 9.055202 -0.373611 15.335085 -1.352885 1.198085 -14.978402 0.139950 6.891696 -0.210218 5.289728 5.096040 -6.604596 -11.472960 -1.676336 -3.563333 6.458981 -1.530976 -6.867910 -5.392979 -1.457736 1.524654 -3.948853 4.433440 9.366112 -2.778959 3.477640 0.546375 -1.926576 -1.619063 -4.202250 3.297751 3.079571 -5.110092 8.682354 -1.253780 14.234749 -1.661144 7.481118 -5.614689 2.233918 -1.510050 -4.447971 -3.846141 8.990665 5.542361 2.515529 2.051863 0.708068 -3.071959 4.749205 -PE-benchmarks/the-knights-tour.cpp__main = -0.039991 0.866997 2.153845 1.014676 -1.274378 -1.711226 -0.648100 -2.015668 0.586037 0.302527 1.416671 -0.493494 0.553635 0.486153 0.009766 -0.179817 0.776056 0.104411 -0.070477 -0.723389 -1.144195 1.042732 0.272477 -0.847527 0.417630 -1.291024 1.036831 0.783060 0.433997 0.802566 0.229076 -0.014689 -0.435653 0.739781 -0.801611 -0.219046 0.223354 0.399971 -0.864119 0.137526 0.364775 0.077519 1.135594 -0.045134 0.688131 0.969853 0.528115 0.241264 -1.246402 -0.359806 -0.393608 1.172832 -0.432924 0.782141 0.164798 0.190619 0.235183 -0.983289 -0.079473 -0.751995 0.157991 -0.098797 -0.691097 0.061428 -1.150540 0.118895 -0.467491 -1.037473 0.604369 -0.356953 0.631500 -0.246603 -0.193093 -0.353942 -1.183809 0.424483 0.465355 0.552311 0.578821 -0.031699 0.217897 0.125126 -1.002727 -0.976081 0.461823 0.455270 0.566352 0.081797 -0.535166 -0.523926 0.402826 -0.167253 0.133206 1.043814 -0.713800 0.567946 -0.756153 -0.578547 -1.385270 -1.689515 0.107213 -0.780527 0.734492 0.526076 -0.765995 0.198032 0.078730 0.551258 0.075522 -1.390847 0.045655 -0.585994 0.301579 1.494598 -0.526422 -0.759080 -0.288456 -0.413617 -0.164436 0.941407 0.180867 0.158019 1.184623 0.929198 0.553295 -0.971833 -0.363228 0.054773 0.393513 0.722034 0.933864 -1.186839 -0.672723 0.164694 -0.785383 -2.008589 -0.200889 0.264268 1.187383 -0.173337 -1.036641 0.478949 -0.852511 0.881951 0.558081 0.932201 0.332139 -0.210485 -0.771634 0.396689 1.625601 -0.718972 0.967853 -0.581678 -1.043109 0.878866 0.067147 0.660280 0.280305 -0.128492 0.045554 -0.822215 0.002181 1.374858 0.444413 0.199950 0.700842 0.157516 -0.808555 -1.603400 -1.765327 0.269795 1.028102 0.023200 1.872021 -1.308396 -0.848264 -0.247539 1.624795 -0.434732 -0.627727 0.308157 -0.511225 0.583391 -1.746650 -1.712463 1.566792 1.624214 0.321460 -0.310372 1.059146 0.142751 -1.035932 -1.020697 -1.024261 0.727119 0.119513 -0.600359 -0.451786 0.072431 -1.340397 0.225917 0.047816 0.592792 0.917494 -0.454586 -0.032467 -0.355181 -1.303810 -0.986688 0.662335 -0.934173 -0.151398 0.262035 -0.003237 -0.023447 0.571809 -0.468032 -0.831364 0.172240 -0.910660 -0.018814 0.362656 0.856765 0.051430 2.261002 1.210240 -0.117105 1.027108 0.170235 -0.823018 2.730711 -0.834555 0.234114 -0.091742 0.991576 -0.374407 0.465733 1.111217 -0.448116 -1.151255 -1.311487 -0.081054 -0.132232 0.496642 -1.199571 -0.965200 -1.905947 -0.249699 0.042553 1.678833 0.045362 2.160693 -0.120090 0.434160 -2.200695 0.107308 0.677346 -0.312981 0.850669 0.588351 -1.129297 -1.543284 -0.059172 -1.142507 -0.312183 -0.136251 -0.989546 -0.880045 -0.408446 0.342012 -0.246599 0.224566 1.311685 -0.181378 0.636983 0.176792 -0.342529 -0.254135 -0.394553 1.432219 -0.024017 -0.972248 1.383334 0.242329 3.187812 0.170818 0.934578 -0.598755 -0.247146 0.205384 -0.742225 -0.711277 1.367290 1.085464 0.647746 -0.072559 0.199925 -0.423448 0.764323 -PE-benchmarks/coin-change.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -2.337102 3.678324 16.274831 10.822596 -6.143449 -7.735882 -3.364152 -7.162599 3.593760 2.148554 8.019182 -1.665007 2.305739 3.520014 0.004110 -4.425275 2.999128 0.392916 -0.612671 -2.991460 -3.642005 7.084460 7.681726 -12.045135 0.738363 -10.583960 8.133881 4.599975 3.265868 7.097590 0.564565 0.987793 -0.280554 5.697055 -8.360215 -3.414682 -2.170058 2.897514 -3.152083 -0.544479 4.814328 5.885147 4.354320 0.339833 4.315328 6.031731 6.128262 -1.159121 -7.732349 -1.693842 -3.968161 8.716559 -4.172206 4.044676 0.623487 6.135063 0.879032 -8.371158 -1.831710 -13.000223 3.625197 5.167586 -5.542474 0.239993 -9.011313 0.995079 -2.659152 -5.160229 4.451866 -0.276541 4.273080 -0.571893 0.628747 -7.847705 -5.296848 4.363194 -0.466041 3.844995 3.383865 -0.743377 -3.498553 2.528582 -3.432684 -5.109938 0.404930 -0.605805 0.760377 -0.503419 3.357905 -4.416255 1.156684 -0.527617 -4.474255 7.549275 -5.257268 7.235733 -2.921923 -1.704482 -5.231881 -2.780274 -1.433692 -7.717932 3.321944 8.504964 -4.844605 1.967072 -1.154203 2.613812 0.895859 -8.688224 -0.866277 -2.855837 1.244867 6.373709 -5.497470 -2.554703 0.832951 0.124624 0.786669 8.177089 -1.817624 2.821208 7.694249 5.460526 1.300403 -5.574143 2.504643 1.194166 2.534174 5.431201 6.236051 -7.694167 -4.328885 -2.235987 0.487383 -11.954440 2.970933 3.645750 4.404127 1.702473 -11.802540 3.317981 -3.837518 8.506642 5.135715 7.985950 2.909850 -1.098285 -3.019159 2.737921 14.690236 -4.920498 4.995662 -2.848215 -10.629516 10.677428 -2.604557 7.488653 0.706098 1.869739 3.958857 -8.025330 -0.650748 10.349043 2.722701 2.320378 9.367219 -1.274648 2.457390 -12.217655 -9.395051 0.566049 2.486118 0.837617 16.179432 -6.663284 -3.067741 -2.297792 7.476334 -2.103905 -2.415136 -1.400672 -0.621537 2.070483 -16.928659 -12.358062 8.839389 9.346718 -1.195008 -1.638570 9.058124 1.683060 0.095600 -5.451835 -6.366844 5.257916 0.408774 6.090966 2.027365 0.384802 -9.115431 0.192285 1.242182 1.793442 7.149492 -8.240204 -7.921035 -0.941431 -11.694997 -6.587732 1.857863 -8.812116 -3.386834 -0.437013 0.939186 -0.234974 1.297420 -2.553345 -5.763840 1.410596 -5.355022 -3.059718 2.078000 6.279513 1.641782 11.551655 7.645164 1.275212 3.744514 4.002951 -4.007895 23.457255 -4.449599 -2.130663 -0.100967 7.540613 -1.840234 3.009375 3.098322 -2.261675 -5.720334 -7.870282 5.751483 -1.382701 2.412899 -13.815836 -4.368588 -7.829687 -3.431783 3.282866 8.881847 0.442379 16.756596 -0.145190 0.968788 -15.726471 0.045878 7.078799 -1.211795 6.357090 6.307708 -7.782358 -11.809040 -1.883583 -1.824801 8.038072 -1.551342 -8.513395 -5.766462 -0.799612 0.776119 -2.677737 5.031380 10.602625 -2.302619 3.238444 2.901244 -2.058291 0.242560 -4.057001 3.941619 4.034770 -7.092355 10.403413 -2.604230 17.929586 -3.021844 7.086714 -6.562990 0.252696 -0.399261 -1.550128 -3.090516 9.323696 5.920846 4.023714 1.482726 0.848942 -5.018578 4.465659 -PE-benchmarks/coin-change.cpp__main = -0.438574 1.211929 4.693531 2.533518 -1.895435 -2.895743 -1.172060 -3.438119 1.477384 0.861120 2.865591 -0.507573 1.276290 0.716491 0.014835 -0.589859 1.359345 -0.166109 0.213896 -1.151269 -1.355644 3.118176 1.709718 -2.302946 0.395828 -3.415230 2.336804 1.224997 1.478788 2.377587 0.363941 0.148454 -0.283160 1.565040 -1.945405 -0.466909 -0.440635 1.066067 -1.425289 0.165801 0.982016 0.793601 1.854687 0.149373 1.555963 1.559009 1.732441 -0.047632 -2.055091 -0.815967 -1.321061 2.525694 -1.368702 1.313569 -0.120673 0.840937 0.355915 -1.810523 -0.512109 -2.808917 0.498372 0.650501 -1.743311 0.208344 -2.693417 0.495811 -1.401416 -1.635375 0.880761 -0.218964 1.528946 0.135406 0.176220 -1.560082 -2.784011 1.173877 0.173020 1.083424 1.155283 -0.047134 -0.757457 0.543679 -1.658854 -2.043560 1.034992 0.716917 0.478038 -0.087505 -0.173047 -1.160144 0.047002 -0.034214 -0.542440 2.238779 -1.747478 1.859345 -1.036027 -0.774443 -1.719499 -2.189394 -0.214442 -2.250426 1.092300 1.741131 -1.064395 0.330200 -0.451295 0.810505 -0.059532 -2.846998 0.105997 -0.945657 0.017448 2.682904 -1.497706 -0.859335 -0.451718 -0.144736 0.116812 2.315173 0.007521 0.842933 2.491460 1.839692 0.769015 -1.878163 0.102188 0.624418 0.985475 1.419036 1.783360 -2.200638 -1.569544 -0.179762 -0.472101 -4.032528 0.019867 1.394409 1.739520 -0.133915 -2.598965 1.011507 -1.363618 2.393555 2.015718 1.815587 0.973007 -0.221870 -1.306029 1.170735 4.432031 -1.519260 1.771309 -1.254941 -2.750783 3.313790 -0.937573 2.024239 0.170192 0.409172 0.415207 -2.178477 0.015740 3.119230 0.744351 0.801643 2.063673 -0.010185 0.027116 -3.492867 -3.452271 0.073964 1.699292 0.477529 4.536394 -2.199714 -0.999021 -0.332986 2.354784 -0.258279 -1.150068 0.154548 -0.737254 0.869331 -5.304889 -3.817686 3.437442 3.291219 0.354435 -0.414295 2.344302 1.066653 -0.959939 -1.984839 -2.002064 1.828691 0.002314 -0.217843 -0.250965 0.302722 -2.924337 -0.068566 0.081148 0.742324 2.045843 -1.709071 -1.034639 -0.630595 -3.148728 -1.947068 1.250904 -2.408106 -1.123911 -0.045088 0.101438 -0.083859 0.731627 -0.757008 -1.121101 0.583806 -1.826428 -0.584324 0.707181 1.724620 0.295386 3.830644 2.956705 0.017374 1.249128 0.719101 -1.462685 6.200836 -1.527384 -0.282554 -0.144559 2.017675 -0.512995 1.056361 1.496678 -0.785525 -2.195304 -2.590380 1.167350 -0.016873 0.925806 -3.086540 -1.900532 -3.046660 -0.694050 0.728656 3.431178 0.217805 5.109365 -0.545814 0.715829 -4.865677 0.252142 1.689286 -0.311821 2.187281 1.551013 -2.259852 -2.731651 -0.663279 -1.435520 1.077253 -0.460334 -2.580482 -1.851457 -0.701329 0.579549 -1.148329 1.056000 2.709492 -0.651553 1.605663 0.663769 -0.682625 -0.831196 -0.529743 1.985577 0.783223 -2.039135 2.927296 -0.411505 5.887446 -0.697218 2.051452 -1.684358 0.193378 -0.189811 -1.282942 -1.021669 3.120797 2.237511 1.089427 0.251122 0.093169 -0.854392 1.456594 -PE-benchmarks/coin-change.cpp___GLOBAL__sub_I_coin_change.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/magic-square.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/magic-square.cpp__generateSquare(int) = -2.193561 4.071563 18.761509 16.919710 -11.524627 -15.067915 -3.946728 -9.371843 5.625209 2.565486 8.730944 -2.931496 2.765197 1.655129 -0.910992 -3.811690 4.097420 4.095185 -0.352105 -3.788924 -9.782279 10.772249 8.670957 -14.155029 1.036292 -10.983915 12.123074 9.173929 6.428110 8.684557 0.778175 0.768384 -0.066823 6.755152 -9.779969 -3.798414 -6.182494 2.975253 -6.395977 -0.574244 4.347940 -0.836568 8.850048 -1.782562 5.294845 5.650880 11.633509 -1.354793 -13.408099 -2.027537 -8.277903 11.188546 -4.185207 5.565293 1.933618 4.331705 3.978421 -9.455752 -2.159433 -13.116097 3.537239 1.767353 -9.354575 0.759477 -14.283914 1.252359 -6.921763 -10.468438 6.042042 -0.820535 4.446899 0.447328 1.237776 -9.172513 -10.744815 6.521128 1.502575 4.553047 3.771929 2.141896 -0.510478 2.758088 -7.015312 -6.242453 0.731335 -1.779923 1.292158 -0.404714 -0.225051 -9.674595 1.793623 -0.854824 -4.445826 8.333925 -6.686464 11.660912 -4.906331 -2.656058 -9.651395 -11.919012 -2.000388 -9.065440 4.293918 8.141986 -5.651302 3.779921 0.994722 3.623341 2.031633 -14.075235 -1.401534 -6.175195 2.539947 10.811250 -5.914944 -3.458436 -1.049943 1.061410 -1.297427 9.059702 -2.146375 4.305624 9.715560 6.008590 2.799895 -7.414381 2.142213 2.244142 3.240898 5.884128 7.655073 -8.827022 -5.462468 -2.837003 1.285205 -17.541251 0.913037 7.309185 5.754290 2.113333 -11.377811 3.517832 -4.020444 10.852827 4.890763 9.755504 3.413550 -1.202053 -4.136259 3.574917 17.441621 -5.985245 5.179693 -5.218780 -16.137207 15.763392 -1.456203 9.058053 0.107828 2.040293 4.551109 -10.075253 0.769256 12.225485 2.152597 -1.933571 13.643973 -1.148224 -0.654263 -15.644554 -12.123797 4.456929 5.031505 4.202356 22.483824 -10.594263 -4.684190 -3.187010 8.928480 -1.026358 -1.781544 -1.009759 -3.467916 2.868763 -25.890547 -19.202668 11.965490 9.275270 -0.430471 -1.110264 10.100911 2.121722 -1.593544 -10.420911 -10.293011 6.250446 1.091971 3.494693 0.708422 1.095575 -13.850343 3.589452 2.070409 2.146522 12.086851 -12.320964 -7.163620 -9.339929 -14.654181 -11.726355 4.025746 -10.441346 -2.569590 -0.149560 1.814565 0.693197 3.782781 0.064800 -6.357070 -1.541203 -5.069973 -3.294755 1.547852 8.240727 0.822183 17.706198 13.133384 1.649780 6.941647 4.052070 -5.766988 34.768807 -8.948100 -2.308378 -0.341975 10.695943 -2.329233 3.709825 6.969179 -3.216504 -5.663052 -9.751788 5.494922 -1.740442 2.126655 -21.157165 -6.100516 -16.021428 -4.184370 2.979753 12.317613 1.781545 19.524271 -2.072282 0.347827 -20.153429 -0.035644 7.105799 -0.524693 13.603152 7.335078 -13.613716 -10.816536 -2.374038 -3.334018 11.951586 -2.886639 -10.923065 -7.163602 2.977326 -2.290740 -3.007511 6.078840 13.736626 -5.697917 5.026428 3.101510 -2.106208 -1.181041 -5.022850 7.616597 4.397140 -7.669231 14.801169 -2.720779 24.034108 1.045639 7.689327 -8.116216 -0.168656 0.156842 -4.090054 -4.197336 11.255901 6.346556 4.550808 0.871563 3.464696 -6.621994 6.394187 -PE-benchmarks/magic-square.cpp__main = -0.262017 1.228267 4.332985 3.780173 -2.683895 -3.799729 -0.901804 -2.495004 1.310933 0.524018 2.078471 -0.643067 0.885958 0.402576 -0.205445 -0.718488 1.223823 1.159108 -0.079014 -1.038503 -2.409053 2.655074 1.730482 -3.116627 0.412384 -2.402974 2.841085 2.196936 1.579142 2.181287 0.234521 0.195743 -0.126228 1.578815 -2.251902 -1.004126 -1.414009 0.776600 -1.763541 0.020524 0.901658 -0.279180 2.294452 -0.198893 1.079290 1.543844 2.508874 -0.096796 -2.922604 -0.496014 -1.895974 2.472852 -0.883926 1.485734 0.078340 0.771389 1.051144 -1.867813 -0.291478 -2.748775 0.757017 0.288606 -2.156305 0.099675 -3.381240 0.197767 -1.722557 -2.659907 1.211306 -0.195578 1.079075 0.050537 0.068888 -2.175172 -2.883679 1.315705 0.478684 1.180641 1.052886 0.555769 -0.042678 0.489373 -1.902719 -1.626193 0.429977 -0.284868 0.525390 0.156742 -0.383026 -2.434561 0.443962 -0.076077 -0.654802 1.889200 -1.391360 2.651459 -1.329734 -0.650840 -2.244266 -3.121413 -0.321848 -1.939824 1.032998 1.487219 -1.123312 0.841602 0.257763 0.912613 0.490344 -3.223870 -0.184477 -1.445688 0.307003 2.753131 -1.115121 -1.045477 -0.320211 0.091211 -0.354731 2.188743 -0.296940 0.817051 2.212323 1.448907 0.701306 -1.781221 0.347763 0.429212 0.607429 1.420237 1.875823 -1.920184 -1.429622 -0.468939 -0.090744 -4.210042 0.153015 1.701129 1.521877 0.158100 -2.445507 0.991999 -1.228391 2.251897 1.210122 2.199123 0.946188 -0.371542 -1.066883 0.888994 4.028120 -1.460327 1.310672 -1.269170 -3.608298 3.562811 -0.136974 1.939418 -0.122044 0.128235 0.898342 -2.056571 0.308201 2.928803 0.487263 -0.465341 3.095222 -0.214599 -0.558929 -3.544856 -2.949622 0.979964 1.496948 1.025434 5.147961 -2.470167 -1.029736 -0.689942 2.049394 -0.368891 -0.479504 -0.062322 -0.880114 0.779301 -6.060800 -4.363793 2.995317 2.183875 0.069445 -0.397307 2.118772 0.540143 -0.410646 -2.601031 -2.355880 1.376003 0.249318 0.321655 -0.150575 0.285924 -3.258232 0.913092 0.547666 0.603845 2.738734 -2.634624 -1.320651 -2.396694 -3.367083 -2.840668 1.007957 -2.421213 -0.403609 0.179131 0.240107 0.045566 0.912352 0.022280 -1.503123 -0.308551 -1.234642 -0.686300 0.174654 1.943246 0.135245 4.203789 3.118230 0.254828 1.606371 0.942101 -1.588156 7.998256 -2.134963 -0.266853 -0.088790 2.623926 -0.540809 0.960455 1.835439 -0.773338 -1.424576 -2.479372 0.959423 -0.094267 0.512934 -4.590505 -1.368934 -3.877388 -0.847396 0.428469 3.228978 0.257498 4.559484 -0.634234 0.265987 -4.592511 0.120861 1.516615 -0.209697 3.093072 1.681550 -3.145976 -2.365240 -0.540617 -1.160771 2.345894 -0.630909 -2.474773 -1.714355 0.739695 -0.715604 -0.796087 1.300726 3.172302 -1.449776 1.264766 0.390958 -0.479255 -0.376822 -1.089434 2.144496 0.847886 -1.833272 3.208275 -0.437012 5.712759 0.467820 1.926537 -1.813649 -0.177457 0.102024 -1.241858 -1.212387 2.768893 1.587456 1.073153 0.397050 0.858626 -1.145899 1.554771 -PE-benchmarks/magic-square.cpp___GLOBAL__sub_I_magic_square.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/detect-cycle-undirected-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.584091 0.403055 2.708960 1.320072 -0.856556 -2.514184 -0.592519 -2.854698 1.607741 0.840667 2.467350 0.421936 1.652024 -0.422796 0.460817 0.309509 1.226700 -0.124879 -0.053300 -0.785178 -0.103716 2.849474 1.008876 -1.057119 0.307973 -1.625239 0.754401 1.151260 1.275619 1.709536 0.268750 0.010370 -0.179747 0.886593 -1.175433 0.305319 -0.414934 0.881727 -1.131934 -0.579492 0.353161 -0.216469 1.647952 0.323493 1.694631 -0.017664 1.724263 -0.196936 -1.018848 -0.946840 -1.253913 2.118470 -1.154098 1.156311 -0.677719 -0.011065 0.429904 -0.264627 -0.051869 -2.262009 0.333297 0.274244 -1.499750 -0.351668 -1.239548 0.318491 -0.590269 -1.057340 -0.099472 -0.663453 1.291060 0.009776 -0.117187 -0.793303 -2.954384 0.172665 0.119931 0.356545 1.097540 0.652794 -0.812615 -0.565695 -1.040299 -1.521508 1.848644 0.607600 0.310110 0.795379 -1.595009 -0.296972 -0.470684 0.219811 0.116511 1.188614 -1.681546 1.095005 0.671819 -0.620091 -0.683536 -1.171754 0.321599 -1.459987 0.284971 0.453334 0.510624 0.054625 -1.219494 0.410637 -1.083570 -1.817977 0.648700 -0.596260 -1.146021 1.464977 -1.215132 -0.268071 -0.191847 0.199311 0.237334 1.476246 0.454703 0.687122 1.343985 1.125300 0.884755 -1.585439 -0.009682 0.836550 1.502262 1.069145 0.406945 -0.822156 -1.052588 0.534096 -1.091995 -3.081343 -0.543950 2.158111 1.709479 0.177656 -1.616633 0.791861 -0.758764 1.534305 1.955584 0.836312 0.673594 0.390486 -1.434785 0.650211 2.896861 -1.129833 1.613563 -0.250606 -1.072455 2.261368 -1.304172 1.201325 0.153420 -0.100435 0.126869 -1.020513 -0.185042 2.212943 0.913464 0.922831 0.085910 0.398860 -0.627707 -2.411146 -3.216643 -0.962915 1.918899 1.054309 2.767622 -1.286167 -0.946605 0.012898 1.256720 -0.780537 -1.343886 0.460350 -1.071279 1.027439 -4.173916 -2.357234 3.430045 2.649440 1.213444 0.076763 1.627544 1.189727 -0.730773 -1.166180 -0.869709 1.115769 0.309337 -1.418024 -0.252837 0.061349 -2.383523 -0.530013 -0.271665 0.186609 -0.226623 -0.300177 0.994030 -0.342582 -1.349075 -0.555394 0.526362 -1.441659 -0.881140 -0.488888 0.011704 0.055324 0.454705 -0.634447 -0.158126 0.760027 -1.743468 -0.344371 0.112340 0.978417 0.937869 2.677484 2.679919 -0.441599 1.430122 -0.053502 -1.371709 3.161157 -1.320951 -0.099496 -0.142575 1.444428 0.391958 0.940069 1.188306 -0.718801 -1.001953 -2.020580 0.205723 0.979499 1.191032 -1.156703 -1.696030 -2.187916 -0.107474 0.362993 2.672678 -0.655485 3.505963 -1.140719 1.007688 -3.862981 0.387472 0.796188 -0.330765 1.160437 0.791063 -1.381893 -1.872236 -0.580749 -1.174590 -0.348496 0.002772 -1.377724 -0.964577 -1.400549 0.823283 -2.136101 0.485631 0.939400 -0.594635 1.893134 -0.076577 -0.207564 -0.999083 0.534062 1.463624 0.585658 -1.439233 1.533293 -0.022735 4.297350 -0.689489 1.762876 -1.159577 1.152848 -0.816406 -1.383335 -0.801653 2.422688 2.467039 0.516027 0.178384 0.286940 -0.265570 1.251668 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -2.824895 2.686129 11.900680 5.536072 -5.043617 -7.198675 -3.562841 -12.172215 6.207102 3.605993 9.616277 -0.121457 5.082118 -0.643229 0.223064 -1.586844 4.899768 -1.650071 -0.481836 -3.551804 -1.662328 9.415330 2.674549 -4.647678 1.396595 -8.088507 4.641347 3.115854 3.677052 4.972190 1.608920 0.236503 -1.862737 4.211394 -4.017348 0.575278 0.957967 3.272299 -3.981128 -2.357801 2.937858 0.880768 6.247769 0.505023 6.386312 1.430914 3.721973 -0.722877 -5.652693 -3.285282 -1.894004 6.745671 -3.829860 4.444496 1.339498 0.653397 1.338083 -4.177869 -0.148557 -6.650325 1.408696 0.500468 -3.779814 -0.258232 -4.613988 1.148600 -1.454573 -3.342541 1.498824 -4.041958 4.076571 -0.881669 0.104965 -2.425015 -8.072542 2.538361 1.715890 1.062098 4.197899 2.793381 -1.378428 -1.462489 -4.205435 -6.341341 4.856342 3.736662 1.152563 2.052673 -4.054021 -1.359458 0.759574 -0.761605 0.096442 6.309181 -6.492667 2.868615 -0.049787 -3.521118 -4.313925 -5.880205 0.829280 -6.005363 2.674913 4.009982 -3.142871 0.507953 -1.851188 1.825259 -1.790231 -6.380088 1.969341 -2.803751 -0.125959 7.371878 -4.334504 -3.236876 -2.304266 -0.733628 0.728478 5.437929 0.990509 2.095026 6.818498 4.775121 4.133184 -6.386458 -0.607410 3.271129 4.283388 3.272496 2.824524 -6.147857 -3.324610 2.001963 -3.774725 -11.211891 -2.864515 4.119600 7.169537 -0.065356 -6.605424 2.594112 -3.150879 5.988866 5.798764 3.653347 1.883917 0.896983 -5.238648 2.139533 9.595865 -3.557277 5.081170 -2.059242 -5.284904 6.707571 -3.133184 4.811417 0.803919 0.577820 -0.212389 -5.451314 0.547075 8.473761 1.798264 3.021947 -0.023431 1.361749 -2.417167 -9.375084 -12.724102 -1.531098 6.232376 3.268515 10.886632 -6.278291 -4.349089 -0.485479 7.690876 -1.706786 -4.862284 2.530678 -3.624879 3.935660 -12.024740 -9.636635 11.550431 10.964734 3.154507 -0.921281 6.576314 1.636586 -4.842303 -5.251905 -5.010698 4.981816 1.456453 -3.497113 -0.590663 0.854433 -7.942432 -1.788368 -0.476783 1.701913 2.882620 -2.868465 1.935680 -0.566038 -5.184184 -3.701021 3.931945 -4.143360 -3.123454 -1.245000 0.535110 0.268282 3.611342 -2.600303 -3.300034 1.581712 -5.563935 -1.432725 1.773779 4.281827 1.446124 10.532762 8.623815 -1.861599 5.088581 0.093923 -4.243981 13.533953 -5.438327 -0.378346 -0.581068 4.543474 0.505081 3.371429 5.167632 -2.994593 -4.769421 -7.591348 0.660921 0.193545 4.060820 -8.093544 -6.943413 -9.269279 -0.611603 0.464806 8.638232 -0.277066 14.189506 -2.753949 2.419197 -14.394468 0.739960 5.111329 -1.263122 4.991254 3.227895 -6.115446 -8.635001 -1.411958 -5.757072 -1.581686 -0.293170 -5.308794 -4.662262 -5.026530 5.521867 -4.785840 2.047299 6.105426 -0.831823 5.684607 0.764920 -1.452793 -3.504452 -0.340077 4.751054 0.960645 -5.242348 7.315192 0.214374 16.415724 -2.715369 5.740370 -4.167776 3.070526 -2.206795 -5.854610 -3.510117 8.555740 8.089459 3.054372 -0.791725 0.415401 -3.154823 5.215407 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.331612 2.452592 9.306379 6.126808 -4.990338 -5.993884 -2.858056 -7.441990 3.815117 1.813807 6.416703 -0.805848 2.645918 0.708446 0.036309 -2.285521 3.407386 -0.407446 -1.263322 -2.855875 -2.709400 5.653481 3.070642 -6.192249 1.299129 -5.582768 3.940524 3.117467 1.427165 3.709880 0.932881 0.398239 -1.382322 3.630303 -4.268866 -0.628974 0.527410 1.807027 -2.829927 -1.720669 3.055798 1.820861 4.914925 0.242118 4.044775 2.869708 2.969912 -0.209936 -5.813811 -2.024719 -1.482874 5.329220 -2.463159 3.716092 1.504469 2.168688 1.775188 -5.151695 -0.306772 -6.226224 1.458733 1.009769 -2.894031 -0.333994 -4.194078 0.492457 -0.340922 -3.420216 2.438854 -2.911960 2.917461 -1.286260 -0.422168 -3.111056 -4.048841 2.115958 1.288499 1.612163 2.938411 1.611195 -0.825812 -0.365845 -3.204975 -4.126729 1.852837 0.791704 1.327331 1.627593 -1.455295 -2.148601 1.700727 -1.114876 -0.633966 4.751619 -3.940290 2.538932 -0.098963 -2.631468 -4.539629 -3.761358 0.425517 -4.005351 2.382334 3.986836 -3.435296 0.819059 -0.625657 1.687226 -0.501687 -5.138499 1.016023 -2.275099 0.696972 5.052421 -3.316811 -2.836348 -0.709367 -0.945149 0.145494 4.913931 0.181333 1.218541 5.056673 3.738640 2.444723 -4.406145 0.013797 0.971444 2.871534 2.765050 3.310841 -5.046208 -2.517188 1.070167 -2.471505 -7.962152 -1.199556 2.594173 5.574579 1.170127 -6.625475 2.608096 -2.608703 4.522426 2.858231 4.055653 1.372586 -0.294983 -3.680521 1.305551 7.526355 -2.898528 3.962271 -1.595321 -5.320061 5.018464 -1.245501 3.594448 0.977614 -0.120156 0.713014 -4.151047 0.558066 6.371828 1.741757 1.042478 2.129781 0.599986 -2.075951 -7.800510 -8.978833 0.019932 3.431346 1.747296 9.360003 -5.223098 -3.432406 -1.512954 6.383349 -2.358019 -2.942433 1.025319 -2.090456 2.612986 -9.028681 -7.405509 8.207524 7.433159 1.467543 -0.733357 5.534040 0.042036 -2.363565 -3.874322 -4.151824 3.342080 1.606611 0.371464 0.338209 0.111085 -5.925286 -0.634720 0.189628 1.701975 3.184407 -3.851153 -0.716100 -1.205912 -5.356598 -3.577028 1.820231 -4.160879 -1.534610 0.126232 0.384208 0.017092 2.452756 -1.334621 -3.986494 0.242292 -3.929543 -1.388552 1.157466 4.121504 1.141893 8.278258 6.043785 -1.015791 4.415463 0.915097 -3.315856 12.853909 -4.387198 -0.086571 -0.555067 4.736372 0.247517 1.983586 3.856755 -2.029996 -3.193996 -5.444853 1.256706 -0.335163 2.528831 -9.018663 -4.446957 -7.464042 -1.208716 0.314154 6.054579 -0.421341 10.531942 -1.231613 1.120858 -11.440842 0.380021 4.463963 -0.884911 3.052842 2.991658 -5.129342 -8.466494 -0.559094 -4.111586 0.990116 -0.494479 -4.206581 -3.472731 -2.434386 3.081631 -2.611575 1.952957 6.628844 -1.143773 2.975624 1.014303 -1.233978 -1.106601 -2.320540 3.492561 0.769422 -3.999771 6.368074 0.122752 12.472030 -0.779716 4.594198 -3.369152 1.375679 -0.841258 -3.642535 -2.942254 5.971722 5.125513 2.108877 0.299390 0.945764 -3.011567 3.831939 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -0.243490 3.280103 11.057798 4.243707 -5.173445 -8.979420 -3.141817 -13.845840 6.001466 2.657502 8.307783 -0.256456 4.524331 -0.543483 0.405129 1.495045 4.777974 -0.473767 -0.394536 -4.032403 -2.212597 8.982052 0.655860 -3.017643 1.866708 -8.310352 3.444195 4.358831 4.911054 3.942716 2.175774 -0.313411 -2.029234 3.981812 -3.636104 0.526198 1.295450 1.982887 -6.299972 -0.762531 0.846720 1.010389 6.264833 0.235912 6.400881 1.123999 4.732224 0.888317 -4.214114 -2.332384 -3.178780 9.121642 -2.355068 4.354353 0.817713 -0.140260 0.317440 -4.071556 -0.139904 -2.807161 0.198687 0.487946 -4.145392 -0.206517 -4.797721 0.867741 -1.803277 -3.764300 1.365912 -2.327667 4.116267 -1.264144 -0.989238 -2.147466 -9.633810 1.536070 1.607769 2.350562 4.224289 1.472856 0.520369 -1.307111 -4.339589 -5.817055 5.221243 5.036791 1.381080 1.738796 -5.221320 -2.236784 -0.433795 -1.335850 1.386598 5.213498 -6.904948 2.032658 -1.610503 -3.294767 -5.509528 -6.999872 1.497295 -4.464430 3.001544 0.517396 -0.474527 0.764197 -0.548626 1.618215 -1.554456 -5.720152 1.336310 -2.137449 0.296185 9.030071 -3.149480 -3.297304 -2.601846 -1.122858 -1.757330 5.199632 1.792586 1.500288 6.711784 5.463572 3.849846 -5.741255 -2.234425 2.841432 3.556064 4.246404 3.287612 -6.198788 -3.313234 1.856663 -3.697337 -11.123157 -2.320224 3.619860 6.861808 -0.578594 -3.756466 0.710423 -3.167376 5.910154 4.343064 2.251022 1.845769 0.212586 -4.984247 3.066726 10.166076 -3.205847 5.092569 -3.313328 -3.179198 4.578309 -2.732960 3.889859 1.197915 -0.685417 -0.849583 -3.733553 0.064646 7.414888 1.879099 1.752960 0.603324 1.938653 -4.297640 -8.640758 -11.855336 -0.776341 5.621246 1.244098 9.702457 -5.812510 -5.270829 -1.258090 7.552060 -1.973352 -4.092910 3.666841 -5.276081 4.124414 -8.715849 -8.352514 11.233943 11.308073 3.614645 -1.648176 6.567345 2.705617 -7.268983 -5.450917 -3.646534 3.991816 1.698732 -6.930045 -1.685340 0.661612 -7.767310 -1.355495 -0.514307 2.312397 2.205661 0.414635 4.095888 -1.026196 -5.583034 -4.135011 4.363231 -3.629396 -1.601778 -0.219791 0.463701 -0.377370 4.060808 -3.657043 -2.785715 2.612389 -5.357906 0.050334 1.770952 4.017017 1.249085 10.147154 7.819370 -0.448873 8.681372 0.155267 -4.717851 11.641375 -3.762187 1.233376 -0.228682 2.970075 -0.960087 3.131817 4.301856 -3.041648 -5.266003 -7.328604 -0.486739 0.184966 4.430544 -3.904456 -6.679144 -9.040824 -1.448741 0.567256 7.893770 -0.440052 12.274647 -3.109294 2.992976 -13.816206 1.143092 3.703628 -1.226691 4.457264 2.789679 -5.932228 -7.104494 -0.715273 -6.101667 -4.776540 -0.317513 -5.611556 -4.895766 -5.500018 5.799774 -4.812679 1.043288 6.248827 -0.809045 5.475265 -1.474231 -1.066758 -3.135666 0.005876 6.528461 0.191666 -5.658541 5.705080 0.457243 17.433486 -1.309137 5.544829 -3.451122 1.356088 -1.084058 -6.011695 -3.356104 8.142843 7.413088 2.821635 -1.249706 0.241894 -2.242319 4.833349 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/detect-cycle-undirected-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/detect-cycle-undirected-graph.cpp___GLOBAL__sub_I_detect_cycle_undirected_graph.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/channel-assignment.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -2.900193 1.974055 10.292294 7.841541 -4.977933 -6.131103 -2.908364 -6.071552 4.135087 1.749794 6.475716 0.215679 2.481496 1.349774 0.169138 -3.149809 2.764604 -0.236911 -1.766748 -2.700136 -1.936946 6.641100 5.560907 -8.997383 0.898571 -5.991264 4.455064 3.261777 1.892321 5.307302 0.037147 0.501001 -0.691267 4.218731 -5.636189 -1.504314 -1.111954 2.285735 -2.469363 -2.144228 4.265332 2.840980 4.923439 0.619546 4.264666 3.240697 4.103474 -1.003820 -6.039167 -2.089042 -2.334911 5.526788 -3.543197 4.368841 0.085474 3.956115 1.418141 -5.345441 -0.866427 -9.553241 2.348634 2.650453 -3.712320 -0.865982 -5.209748 0.728902 -0.246463 -4.023629 2.271514 -2.954343 3.834065 -0.883565 -0.118109 -5.126672 -4.703522 2.169779 0.089571 2.135814 2.915618 1.561250 -2.800910 -0.230430 -2.909242 -4.019302 1.090482 -0.535155 0.575473 1.672841 0.297749 -2.699591 1.484143 -0.411968 -2.095384 5.399246 -4.182122 4.452822 0.424600 -1.879028 -3.434984 -1.841190 -0.053288 -5.028545 2.265282 4.970840 -3.005246 1.238504 -0.448980 1.922923 -0.546990 -6.104428 0.875333 -1.371326 -0.580187 4.209838 -3.614773 -2.218036 1.078682 -0.236725 0.442013 5.887450 -0.344808 1.967208 5.205896 3.965724 2.087715 -4.856449 1.372377 1.084664 3.389397 3.509641 3.844651 -4.571907 -3.062867 0.452873 -1.360027 -8.658049 0.245128 4.384494 5.747177 1.501293 -8.566033 3.299388 -2.835854 5.455709 3.922437 5.092861 2.077305 -0.534424 -4.053906 1.513135 9.985142 -3.234483 4.280012 -1.585804 -6.452230 7.697291 -2.395694 4.916299 0.377482 0.556271 1.968589 -5.229175 0.240986 7.401320 2.156866 1.677394 3.833915 -0.052524 -0.873199 -9.148691 -8.747333 -1.580139 3.310458 2.645963 10.927766 -5.130985 -2.858237 -1.817489 5.574853 -2.493536 -2.613148 0.070511 -1.574438 2.552831 -12.610244 -8.207386 8.825229 8.145879 1.191027 -0.096011 6.506528 0.565420 0.538548 -4.099333 -4.178777 3.676204 1.852186 3.338140 1.189690 -0.334298 -6.683556 -1.100679 0.777767 1.301474 3.122702 -5.326189 -2.763981 -0.638056 -6.593338 -4.260624 0.852625 -5.947101 -2.178984 -0.023231 0.621677 -0.400576 1.227616 -0.904459 -3.981161 0.577658 -3.866898 -1.633836 1.041381 4.237952 1.723116 7.432515 6.744124 -1.055160 3.738544 1.917446 -3.572947 15.858479 -5.178715 -0.820202 -0.315209 6.018127 0.230622 2.335213 2.953820 -1.985936 -2.255966 -5.769985 3.153079 0.168490 2.784144 -11.066968 -4.657998 -6.532553 -1.344067 1.124917 6.494934 -0.904210 12.031786 -1.520609 1.638387 -13.254203 0.464009 5.445814 -0.569559 3.428376 4.070856 -5.302159 -10.223993 -0.988231 -2.641179 4.032151 -1.028019 -5.394765 -3.591380 -1.745482 1.618783 -3.613020 2.962777 7.321243 -2.267980 3.612479 0.509101 -1.425806 -0.844442 -2.982277 2.640488 2.308748 -4.595104 6.855757 -0.811439 12.824649 -1.601563 5.873860 -4.317751 2.263581 -1.773368 -3.164548 -2.895460 7.173841 5.208206 2.160861 1.257134 0.703336 -3.221949 3.410689 -PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -0.988067 2.186612 10.579964 5.316829 -4.557316 -6.737588 -3.184138 -9.735571 4.513213 1.799711 7.437755 -1.697662 2.620730 1.129702 0.106968 -0.828627 3.069374 -1.308715 -0.642418 -3.054644 -2.587181 7.045714 2.615162 -4.484937 1.325082 -8.442710 3.393451 3.211400 3.113159 4.368860 1.086282 -0.425925 -1.145860 3.248051 -4.096561 0.216852 0.957250 1.039300 -4.133463 -0.921473 2.083271 1.321389 5.071042 -0.537002 4.699553 1.836652 4.012990 -0.010684 -5.029720 -2.057407 -3.288495 7.752591 -2.712031 3.023367 1.507701 1.686693 0.719701 -5.749341 -1.476674 -4.470383 0.349529 1.135723 -3.437836 0.094106 -4.542652 1.297165 -1.690398 -3.058165 3.169532 -2.754146 3.689995 -0.417169 0.159594 -2.077552 -5.722191 2.595805 0.910914 2.164339 2.378282 0.436317 0.303154 0.743657 -3.373063 -3.997650 2.939255 2.373921 1.241971 0.126810 -2.149922 -1.641332 0.511792 -1.095546 -0.468302 4.520471 -5.326070 2.616525 -1.830942 -2.894562 -5.102797 -5.097258 0.196589 -4.589309 2.725061 3.383662 -2.897523 1.275102 -0.013380 1.824830 -0.592260 -6.511828 0.454788 -1.576460 0.963612 7.072291 -4.536242 -2.653886 -1.495154 -0.631118 -1.237196 4.800172 0.316780 2.158996 5.715079 4.413201 3.015126 -4.806549 -0.940083 1.668154 3.732887 3.283247 3.702659 -5.395152 -2.785301 0.414761 -1.991318 -10.007761 -1.442881 2.504029 6.039225 1.641187 -5.872562 1.524681 -2.567975 5.956250 3.412306 3.266918 1.651690 -0.129990 -4.189927 2.356802 9.456232 -3.418718 5.045678 -3.609515 -4.997319 5.047657 -1.998466 3.856894 1.211160 0.920366 1.155862 -5.089816 -0.177498 6.712940 1.946026 1.656286 2.181779 1.121377 -1.930344 -9.052160 -9.709332 -0.236624 3.468755 0.217183 9.190773 -5.532448 -4.448940 -1.545612 7.593875 -2.120235 -3.240335 1.587573 -3.622742 2.696338 -9.323292 -8.594558 9.188576 9.448528 1.684602 -0.249883 6.240380 1.978758 -5.047230 -3.377099 -4.270395 4.155201 1.861626 -3.089525 -0.629873 -0.418257 -6.068412 -1.012249 -0.179487 2.083565 2.730959 -2.574718 0.609227 -0.429191 -6.603377 -3.742978 3.967034 -5.598607 -1.920619 0.000445 0.465254 -0.115543 3.130187 -2.562564 -2.865064 1.895256 -4.603200 -0.603473 2.213028 4.151016 0.992278 8.827675 6.914701 -0.185042 6.467282 0.605740 -3.758324 12.475895 -4.374396 -0.275915 -0.851934 3.698785 -1.023474 2.532227 3.413574 -2.306114 -5.080856 -5.700777 1.389529 -1.154194 3.038487 -5.794259 -5.835287 -7.660274 -2.100364 1.332267 6.556735 0.620412 11.428320 -1.719809 1.570050 -12.855108 0.207334 4.382115 -0.406493 4.144291 2.815488 -5.067083 -8.285580 -0.570772 -4.333967 -0.016172 -0.878798 -6.226347 -4.255303 -4.694518 5.299445 -3.045127 1.732942 6.189204 -0.228784 4.088954 1.391822 -1.684515 -2.051212 -1.242182 4.375974 1.293366 -4.525497 6.924690 -0.114630 14.512440 -1.165043 4.470959 -3.871809 1.035351 -0.748058 -3.823945 -2.437014 6.759123 6.054325 2.216789 -1.135808 -0.190983 -3.365073 3.651538 -PE-benchmarks/channel-assignment.cpp__main = -0.024339 1.274900 3.320049 1.787872 -2.390671 -3.588533 -1.056048 -4.239192 1.253996 0.584897 2.975402 -0.598324 1.419622 0.392895 0.285568 0.413774 1.837387 0.032475 0.151222 -1.451829 -2.231118 2.785719 0.499921 -0.607140 0.762265 -1.742879 1.668129 1.399623 1.169457 1.560829 0.740015 -0.192225 -0.756827 1.025847 -0.927851 0.217587 -0.331798 0.866956 -1.830539 0.335132 0.425412 -1.283516 2.519932 -0.004124 1.314353 0.916380 1.959612 0.486877 -2.119227 -0.874466 -1.621321 2.451634 -1.190183 1.268042 -0.198226 -0.569172 0.849038 -0.898782 -0.262916 -0.738921 -0.389674 -1.019804 -1.759289 0.098079 -2.052172 0.418386 -1.721131 -1.794090 0.658410 -0.329884 1.383664 -0.093213 -0.478900 -0.180650 -3.104765 0.445887 0.791095 0.934034 1.102111 0.386606 0.520589 0.018754 -2.195919 -1.894362 1.838865 0.629511 1.127765 -0.000895 -2.014937 -0.558773 0.159323 0.091816 0.662705 1.423676 -1.709517 1.127338 -1.013454 -1.262096 -2.514752 -3.639083 0.354262 -1.417554 1.185262 0.349013 -0.972544 0.057948 -0.764561 0.588589 -0.478720 -2.989915 -0.002415 -1.103490 -0.134721 2.870817 -1.277132 -1.122208 -0.909645 -0.415251 -0.189907 1.395841 1.060098 0.511172 2.213766 1.711615 1.160392 -1.800050 -0.878132 0.049955 1.055779 1.204867 1.381576 -1.213192 -1.582739 0.579901 -1.529287 -3.915858 -0.890242 1.592086 2.299399 -0.000943 -1.190533 0.603016 -1.442561 1.559194 1.621240 1.405711 0.801641 -0.081725 -1.487071 0.967813 2.907414 -1.385966 2.048455 -1.045571 -1.568309 2.327670 -0.390287 0.841993 0.616214 -0.201355 -0.453013 -1.288341 -0.276203 2.421096 0.885356 0.198930 0.991543 0.588886 -1.497473 -2.834445 -3.566132 0.514966 2.590873 0.674680 2.896719 -2.341227 -1.124433 0.241929 2.099847 -0.528137 -1.767761 0.758047 -1.257493 1.147352 -4.021806 -3.085479 3.507542 2.586085 0.844331 -0.236459 1.445608 1.097396 -2.555748 -1.945667 -2.091364 1.733252 0.117614 -2.454932 -1.074710 0.270764 -2.697837 0.334981 -0.125038 1.087164 1.263501 -0.822446 0.964274 -1.122963 -2.120786 -1.337976 1.638132 -1.663966 -0.661755 0.267639 -0.376698 0.237591 1.040117 -0.415308 -0.643473 0.016897 -2.075100 -0.215922 0.411136 1.595089 0.208920 4.454871 3.056340 -0.493241 1.783990 -0.114144 -1.832586 4.044057 -1.632504 0.484234 -0.417268 1.893437 -0.346867 0.907112 2.533488 -0.825346 -2.617061 -2.308641 -0.361549 0.422453 1.196633 -1.467623 -1.737451 -3.959292 -0.260186 0.254421 3.616324 -0.158809 3.833932 -0.929417 0.984061 -4.046395 0.360236 0.720695 -0.376515 1.934223 0.671036 -1.930001 -1.203120 -0.474094 -2.386208 -0.546580 0.007429 -1.421442 -1.715981 -1.027204 0.649113 -1.200432 0.079744 1.427805 -0.783084 1.756878 0.572857 -0.656004 -0.833290 0.091681 3.197800 0.154310 -1.724945 2.689627 0.486402 6.054640 0.559771 1.470255 -1.029351 -0.273593 0.142432 -1.722948 -1.208669 2.625769 2.701842 0.805354 -0.102227 0.451696 -0.089675 1.385497 -PE-benchmarks/channel-assignment.cpp___GLOBAL__sub_I_channel_assignment.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/longest-palindrome-substring.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.154237 0.836475 2.524005 2.101343 -1.542069 -1.711378 -0.645145 -1.675028 0.975094 0.175199 1.128310 -0.158623 0.491269 0.209407 -0.248101 -0.676137 0.669752 0.467747 -0.419600 -0.672226 -0.992920 1.581538 0.797033 -2.196153 0.383399 -1.568824 1.446817 1.016703 0.748058 1.309057 0.033500 0.036762 -0.337287 1.067031 -1.352328 -0.694356 -0.288302 0.406095 -1.065260 -0.287515 0.875595 0.455979 1.361149 0.021063 0.678196 0.898496 0.766423 0.054099 -1.429211 -0.256405 -0.658072 1.314852 -0.482643 1.206590 0.056260 0.686391 0.458333 -1.261337 -0.015492 -1.670488 0.453245 0.390882 -0.711487 -0.190531 -1.487448 -0.075776 -0.228962 -1.381596 0.776406 -0.577391 0.730131 -0.171570 -0.062169 -1.429607 -1.332987 0.538589 0.339541 0.788720 0.809834 0.551335 -0.024115 0.042631 -0.945808 -0.960157 0.149243 0.001548 0.350287 0.394392 -0.062730 -1.209504 0.607178 -0.143240 -0.149191 1.169726 -0.841594 0.995841 -0.870663 -0.354684 -1.011596 -1.182093 -0.020152 -0.930868 0.703311 0.790783 -0.889254 0.466994 0.634133 0.539996 0.355115 -1.426797 0.086603 -0.584522 0.178642 1.586037 -0.403331 -0.964485 0.106351 -0.259958 -0.355359 1.363494 -0.122360 0.200385 1.293411 0.963012 0.679478 -1.132874 0.060144 0.271896 0.358181 0.921109 1.081870 -1.201532 -0.640984 0.025384 -0.297984 -2.293908 0.137563 0.518048 1.289349 0.149783 -1.688001 0.643427 -0.891169 1.112732 0.477403 1.087327 0.619515 -0.213317 -0.831040 0.475672 2.437179 -0.690243 0.812227 -0.765486 -1.754316 1.600712 0.003330 1.158750 -0.190799 -0.150653 0.571876 -1.097962 0.330700 1.768445 0.077252 -0.028031 1.217445 -0.029677 -0.755798 -2.295720 -2.026542 0.132542 0.897407 0.460758 2.866023 -1.372661 -0.761685 -0.527604 1.573478 -0.585511 -0.271474 0.246337 -0.569879 0.739407 -2.724000 -2.185524 2.050599 1.706052 0.046888 -0.251022 1.400506 -0.024585 -0.091606 -1.289956 -1.129193 0.539593 0.651944 0.304718 -0.053021 -0.018704 -1.530099 0.094039 0.545264 0.371408 1.220471 -1.236000 -0.698027 -0.704998 -1.781905 -1.562065 0.690805 -1.587777 0.008750 0.361932 0.123338 -0.233486 0.725031 -0.175699 -1.250182 -0.054595 -0.612175 -0.184307 0.052064 1.039559 -0.002200 1.815408 1.645130 -0.157645 1.162740 0.678728 -0.946483 4.356045 -1.321636 0.030662 0.055693 1.428794 -0.182004 0.658942 0.923536 -0.591066 -0.550323 -1.574524 0.370693 -0.108881 0.409498 -2.810692 -0.859522 -1.788844 -0.538057 -0.020164 1.351434 -0.002485 2.792696 -0.397143 0.209837 -3.121223 0.048898 1.397051 -0.106999 1.212162 0.943369 -1.461486 -2.311450 -0.191715 -0.847121 0.937615 -0.409802 -1.404973 -0.915849 -0.134072 0.247691 -0.479642 0.852968 2.227164 -0.685279 0.696139 -0.425883 -0.193585 -0.186696 -0.910026 0.821980 0.301592 -1.067913 1.622487 -0.087430 3.158798 0.053045 1.248246 -0.981001 0.138585 -0.112768 -1.093053 -0.864782 1.630972 0.807392 0.687207 0.285231 0.354984 -0.804035 1.002560 -PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -1.288904 7.060945 24.717936 16.753429 -10.320142 -12.139550 -5.648269 -13.914602 7.423452 3.617339 12.397814 -2.763719 3.661523 6.250925 -1.372148 -5.679853 5.065947 0.486641 -1.387823 -5.969554 -6.945320 12.915365 10.455108 -17.152858 1.639585 -17.477667 12.976168 6.199207 7.376667 11.026549 1.399805 0.968603 -0.015839 9.521602 -11.908163 -5.817896 -3.992527 4.661971 -6.673382 -0.749405 7.914193 7.915579 8.912061 2.610214 5.809353 9.444872 9.326175 -1.809472 -11.205539 -2.102858 -7.367118 13.093241 -6.956390 7.571139 -0.556250 8.125032 1.734715 -12.776160 -1.839411 -14.849426 4.061981 6.643251 -8.690020 0.152717 -14.571822 1.893189 -5.952559 -8.914709 5.748228 -1.275499 8.460062 0.156597 0.712494 -11.773043 -11.333513 7.098698 -0.949227 5.706660 6.382666 -0.680193 -4.140799 3.690356 -7.425876 -9.357750 2.503077 0.540243 1.214194 -0.516699 4.462391 -9.119395 1.164764 -0.821872 -5.495770 12.771287 -8.260216 11.896708 -6.419238 -3.453911 -8.272970 -7.246829 -2.478055 -12.615827 5.980924 10.238317 -7.865115 4.149742 1.574723 3.779743 2.765523 -14.017252 -0.974459 -2.841141 1.906310 12.573390 -7.093312 -6.241519 1.039836 -0.148299 -0.352769 12.336220 -0.651977 4.178820 14.082886 8.185048 3.254207 -9.251283 3.262717 1.844489 2.789482 8.428450 11.059725 -11.060500 -8.138066 -2.690014 1.777741 -19.646374 4.361667 6.042348 8.775757 1.096621 -16.174606 5.391853 -6.691732 11.051936 8.454818 11.068263 6.120223 -2.525077 -5.531581 4.299797 23.401831 -7.738967 7.908789 -7.591500 -14.972455 16.509702 -4.083228 11.121518 -0.544548 2.946418 5.656783 -13.150752 -0.322086 16.931138 2.242791 1.861427 15.168501 -1.222319 1.088636 -18.959248 -14.857315 0.029160 4.681940 1.644713 23.276623 -10.850914 -3.965981 -3.338870 11.389980 -1.865121 -2.720119 -0.548996 -2.419787 3.515214 -25.976157 -19.221416 14.986431 15.067371 -1.161619 -3.395787 11.785339 3.088264 -0.424981 -10.619625 -10.448942 8.518282 1.879492 6.558611 0.782606 0.303352 -13.454704 0.048538 2.957597 3.325037 12.321158 -13.256883 -9.469059 -2.752080 -18.082555 -12.275094 5.403777 -14.087746 -4.644095 0.297809 1.393177 -1.425322 2.993364 -2.252641 -8.669519 2.700585 -6.490101 -4.239440 3.580900 10.467588 0.900410 16.364940 12.377086 0.913276 6.366896 6.499233 -7.324486 35.963126 -8.994656 -2.848047 -0.156675 11.254411 -4.184959 5.958724 4.974691 -4.119526 -9.391360 -12.705174 8.636625 -2.655585 3.121775 -19.611097 -6.160205 -13.174159 -5.174738 3.241010 14.638238 1.462369 26.054540 -1.539085 2.246136 -23.651359 0.317796 11.281356 -1.460623 11.383830 10.393503 -12.391575 -15.187595 -3.518406 -4.499399 11.464398 -2.344688 -13.558698 -10.142675 -1.295491 1.523911 -4.752229 7.661797 16.279829 -3.762335 5.731011 1.350609 -3.391505 -1.408766 -6.079250 8.618775 6.011368 -11.214436 15.413116 -4.237019 27.093735 -3.374403 11.543232 -10.715655 -1.476355 -1.100548 -4.495476 -6.292159 16.222313 8.192480 6.335673 2.012057 -0.108074 -6.424169 7.652479 -PE-benchmarks/longest-palindrome-substring.cpp__main = 0.522952 3.854086 10.111264 4.392608 -5.834943 -6.145154 -2.501079 -9.802189 4.054885 3.134350 5.489061 -1.405126 2.319522 0.853690 -1.414343 1.193754 3.213896 -0.079366 -1.173191 -3.871374 -6.024039 4.830155 1.588547 -2.933457 2.944064 -7.884053 6.180797 0.530923 2.961590 3.653904 2.884678 0.425323 -0.786000 4.455771 -1.099348 1.766691 -0.323923 2.502774 -3.339591 1.511020 2.686191 0.100954 4.047527 2.741221 4.450736 4.816865 2.959661 -0.124670 -5.383626 -0.938679 -2.927138 5.500566 -3.584147 3.721380 -1.139408 1.943276 0.090555 -5.075642 0.165363 -2.666950 -0.713382 -0.907907 -3.989676 0.371143 -6.024073 0.509322 -3.219828 -4.141955 -0.065512 -0.009892 3.901151 0.443241 -0.990821 -1.638457 -5.730452 2.058305 1.547082 1.905635 4.680759 -0.563987 -0.656970 -0.470665 -4.626377 -5.759752 4.823602 1.386376 1.784538 0.355883 0.180620 -3.727671 -1.153406 -0.964212 0.990771 6.220426 -5.468412 2.034160 -2.970363 -2.870358 -4.882213 -6.919231 0.002546 -4.772230 3.120692 2.195837 -3.986981 2.161389 0.891943 2.020051 1.148122 -4.074359 0.124642 -2.233489 1.461193 6.948789 -1.350136 -4.556599 -0.958227 -1.239908 -0.114143 4.200654 1.703898 0.301061 9.037185 3.445187 4.439965 -3.687553 -0.358616 0.868061 0.430735 2.958509 4.528894 -5.517184 -3.921113 0.755341 -0.891330 -9.154960 -0.253355 1.202705 4.489657 -1.407086 -4.452038 1.610956 -2.430007 2.637781 3.136190 2.645617 2.738782 -0.964740 -3.055683 1.406197 9.715598 -3.037110 2.846085 -4.212156 -3.750092 5.417623 -1.209465 2.741540 0.058270 -0.516761 0.358491 -4.883065 -0.080741 7.088624 0.076774 -0.930363 3.839362 1.540211 -3.017488 -6.957207 -7.230962 -0.201451 3.925888 0.409408 8.822005 -5.781067 -0.855635 -2.146528 6.177600 0.138757 -1.159156 1.245580 -2.529147 2.167041 -7.603420 -7.867684 8.764572 7.490599 1.797892 -2.395265 3.856391 1.628633 -5.003984 -5.659512 -4.900931 2.380296 1.844428 -2.447876 -2.955447 1.103028 -6.593512 -0.459660 0.264572 2.074593 5.408361 -2.490447 -0.422156 -1.037420 -4.951773 -5.234692 3.168256 -4.029303 -1.990322 0.469279 1.265695 -0.117671 2.798846 -1.502525 -3.209054 0.277937 -3.055149 -0.938687 2.722306 5.395565 0.077917 8.753503 6.613034 -1.323643 3.072933 1.027785 -3.421062 10.874304 -2.540595 0.198418 0.332422 3.450069 -1.374756 2.146627 4.490167 -2.518331 -4.996808 -5.353102 1.101093 -1.033330 0.782170 -4.355229 -2.489215 -7.601293 -1.225527 -0.550239 6.729472 1.059255 10.282743 -0.292854 1.553718 -9.280071 0.495426 4.886872 -1.146140 4.736985 3.961256 -5.577514 -4.308072 -1.881486 -4.489118 -0.473897 -0.605903 -2.029988 -4.708762 -0.859054 2.204685 -1.789838 2.100146 6.184014 -0.080881 3.338073 -0.669936 -0.201621 -2.402474 -0.676528 6.870835 1.267907 -4.414225 5.459778 0.208161 13.106177 0.121072 4.017610 -3.173970 -2.242359 0.202800 -3.351152 -3.919077 6.296360 4.233604 3.486089 0.932888 -0.221532 -1.136525 5.388842 -PE-benchmarks/longest-palindrome-substring.cpp___GLOBAL__sub_I_longest_palindrome_substring.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -2.770692 4.717784 20.029288 14.388455 -8.408711 -10.299175 -4.154369 -7.687577 4.120485 2.380580 9.244733 -2.197333 2.216581 4.685670 -0.087401 -5.653616 2.837922 1.786610 -1.035701 -3.481672 -5.308844 8.396883 10.733312 -15.857681 0.878314 -11.930840 9.892081 6.434730 4.796058 8.708882 0.005869 1.146547 -0.224079 7.267457 -10.714946 -4.912656 -4.346884 3.310553 -4.006136 -0.533262 6.027468 6.833663 5.150634 0.291482 4.942613 7.938664 8.434685 -1.701945 -10.449594 -2.006757 -5.018235 10.869964 -5.125751 5.283810 1.209561 8.177311 0.797578 -10.474148 -1.967467 -16.181251 5.291512 6.140648 -7.353350 0.525114 -11.926874 1.140541 -4.397645 -7.086314 5.823058 -0.923724 5.225639 -0.871367 0.497559 -10.271390 -6.279108 5.668028 -0.811188 4.468811 3.974228 -0.125703 -4.280864 3.665096 -4.108698 -6.095384 -0.906063 -1.906900 0.598302 -0.954205 4.320597 -6.831158 1.991921 -0.739423 -6.012887 9.358410 -6.948357 10.147735 -4.053020 -1.757233 -6.568170 -3.916473 -2.156719 -9.640510 4.220038 10.044758 -5.727834 2.399574 -0.777190 3.312453 1.963162 -11.665473 -1.685927 -2.768887 1.873248 8.015236 -6.798185 -2.614622 1.653321 0.370294 0.236160 10.238591 -1.885804 3.550926 9.384076 6.043552 1.318742 -6.499078 3.726185 1.211413 2.675493 6.587089 8.088108 -9.141203 -5.444196 -2.881038 1.519479 -14.583705 4.058342 5.526087 4.953866 2.934217 -14.178021 3.989237 -4.490199 9.908173 5.628931 10.159733 3.646801 -2.123739 -3.271325 2.776169 18.192580 -6.273740 5.806211 -3.219413 -14.523454 14.075344 -3.448452 9.487874 0.861505 2.597487 5.422261 -10.082669 -0.872494 12.731967 3.332406 1.959851 13.124145 -2.084794 2.447879 -14.932025 -10.439239 1.110936 2.193823 1.362724 19.495463 -8.071856 -3.479649 -3.076592 9.474410 -2.020423 -2.103293 -2.351302 -0.632114 2.192546 -21.064061 -15.294641 9.628792 11.051577 -1.857676 -2.145796 11.273384 1.924512 0.884232 -7.425100 -8.580437 6.286194 0.116106 9.015221 2.366277 0.205956 -11.792844 1.624127 2.039461 2.076023 9.521336 -10.901036 -10.751188 -2.125895 -15.109825 -8.957741 1.938602 -10.985962 -3.110712 -0.596378 1.316237 -0.513127 1.272339 -2.834685 -7.536152 1.136475 -6.185253 -3.548940 2.473771 7.711769 2.086584 14.734487 8.468048 1.635062 4.265253 5.194057 -4.904686 30.976949 -6.246297 -2.600899 -0.171676 9.876101 -3.030055 3.586551 2.964654 -2.603202 -7.127772 -9.284693 7.107877 -2.022619 2.208568 -18.353534 -5.411205 -10.340017 -4.304243 3.682262 10.528869 0.887338 20.259944 -0.087065 1.126403 -19.374627 0.090853 8.452520 -1.776954 9.068289 8.021598 -10.034291 -14.803637 -2.491700 -1.295172 11.902060 -1.893414 -11.035949 -6.700387 0.380802 0.270478 -2.721065 6.250605 13.365518 -3.309053 3.838017 3.938619 -2.538361 0.572280 -5.888935 4.894259 5.023871 -8.691353 13.138553 -3.221653 21.477548 -2.893309 8.902161 -8.090206 -0.688480 -0.228820 -1.653950 -4.000492 11.401039 7.013198 5.149088 1.666693 1.754760 -6.613201 4.696178 -PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.466155 1.476962 5.323432 3.940427 -2.192005 -3.143922 -1.248459 -2.465753 1.475671 0.535973 2.463729 -0.470477 0.948493 1.027758 -0.193272 -1.243679 1.149691 0.575858 -0.196740 -1.091745 -1.600490 3.381192 2.776134 -4.182406 0.346175 -3.544586 2.662696 1.679745 1.783446 2.859263 -0.093243 0.349678 0.135444 2.015363 -2.984692 -1.444367 -1.338242 1.010001 -1.620976 -0.034508 1.543077 1.627470 1.960557 0.267314 1.136869 2.179357 2.188791 -0.321852 -2.572453 -0.597557 -1.623417 2.859802 -1.320343 1.728760 -0.244859 1.855235 0.588520 -2.373968 -0.476834 -3.966933 1.067918 1.581549 -1.966838 0.016686 -3.428586 0.363163 -1.411517 -2.202926 1.291313 -0.174501 1.647414 0.147911 0.203795 -3.000352 -2.597546 1.589863 -0.080272 1.465742 1.210894 0.265509 -1.107423 0.897007 -1.569420 -1.983201 0.273631 -0.246928 0.336230 0.079233 0.820649 -2.336597 0.385562 -0.022257 -1.251827 2.474297 -1.654893 2.861047 -1.257050 -0.483159 -1.627775 -1.623840 -0.678571 -2.546639 1.054760 2.279313 -1.100607 0.728747 0.091108 0.948987 0.535285 -3.249286 -0.085986 -0.681206 -0.256348 2.702757 -1.466535 -0.898982 0.352541 0.112649 -0.260512 3.009766 -0.431437 1.009326 2.537226 1.782552 0.439440 -1.823607 0.988026 0.379412 0.778895 1.658536 2.455106 -2.286756 -1.814303 -0.601758 0.288537 -4.281101 0.760584 1.893102 1.678269 0.299588 -3.582433 1.472927 -1.421044 2.669680 1.752281 2.273044 1.287207 -0.742723 -1.170240 1.210647 5.356175 -1.801994 1.718239 -1.391756 -4.002096 4.364134 -0.963878 2.585090 -0.278460 0.417243 1.214716 -2.581374 0.282060 3.639373 0.640923 0.376017 3.455655 -0.579810 0.362509 -4.155499 -3.250473 0.144749 0.984117 0.608861 5.680782 -2.161291 -0.923663 -0.802695 2.330345 -0.548939 -0.533146 -0.335647 -0.535021 0.731956 -6.545819 -4.417190 3.486328 3.260460 -0.249970 -0.437417 2.885987 0.858227 0.442196 -2.446834 -2.284188 1.752252 0.331126 1.582226 0.130739 0.151262 -3.249441 0.288142 0.610647 0.579676 2.633340 -2.786274 -2.432609 -1.273457 -4.279782 -2.698872 0.858844 -3.260318 -0.750337 0.178714 0.179268 -0.431821 0.612872 -0.457701 -1.878317 0.283048 -1.594128 -0.910071 0.321869 2.164516 0.418777 3.677972 3.112517 0.267589 1.347369 1.542738 -1.655916 8.606414 -2.115538 -0.561260 -0.133275 2.793739 -0.783823 1.212827 1.044593 -0.689330 -1.860391 -2.824432 2.052685 -0.138448 0.478876 -5.055033 -1.671983 -2.995728 -1.108389 0.786414 3.345256 0.191642 5.741568 -0.613600 0.390653 -5.713135 0.237845 2.233493 -0.225974 2.700868 2.227220 -2.764198 -3.887926 -0.770194 -0.814816 2.961598 -0.754275 -3.447773 -1.891229 0.069841 -0.001908 -1.206080 1.760770 3.940253 -1.135942 1.452352 0.532840 -0.760038 -0.519962 -1.450323 1.597487 1.213076 -2.157481 3.280187 -0.865128 5.879832 -0.686765 2.599760 -2.288477 -0.034091 -0.124198 -1.207825 -1.245013 3.453114 1.905086 1.119839 0.850140 0.372795 -1.279579 1.473897 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -4.803805 6.047929 29.886985 21.069976 -10.224040 -12.943950 -7.097272 -12.113109 7.425292 4.288087 15.194133 -3.000696 3.183315 8.701311 0.032054 -8.861029 3.852856 0.576406 -1.493872 -4.863231 -5.370395 12.673230 16.545127 -23.359710 0.150395 -17.434746 12.297024 8.493598 6.563736 12.962677 -0.046504 1.153427 1.060051 10.764952 -16.415798 -6.830531 -4.783439 5.491782 -5.738221 -2.558507 8.794208 10.819891 8.363501 1.297451 8.589027 9.987313 11.829708 -3.835856 -14.735754 -2.063195 -8.223215 17.130651 -8.856214 7.577235 1.712968 12.750302 0.833776 -16.289483 -4.382891 -25.066452 6.968779 11.175299 -10.418986 -0.102904 -15.892079 2.568876 -4.931281 -9.888464 7.980497 -1.655404 9.255675 -0.370252 2.468175 -14.036030 -9.940456 9.135097 -2.308410 6.043365 5.527564 -1.002252 -6.832313 5.470022 -4.556190 -8.919768 0.154725 -2.244266 -0.146407 -0.946178 7.610447 -8.277341 1.835829 -1.072863 -10.017524 14.844267 -9.125564 16.842070 -3.724739 -3.225339 -8.117067 -3.727096 -3.587967 -15.752611 6.152494 15.128672 -7.651074 4.566200 -1.486896 5.900786 1.500901 -17.354070 -0.814261 -2.340597 0.577285 10.459322 -11.407625 -3.756780 4.191714 1.117299 0.833623 14.611239 -2.968310 6.726688 12.286059 9.321274 2.272695 -10.532262 6.178257 2.046166 5.586480 10.253339 11.665536 -12.659020 -7.988738 -4.179845 2.929034 -22.144244 5.917850 9.274539 7.992968 4.216960 -22.437699 5.066628 -6.494440 15.470820 9.928260 16.405303 5.775867 -2.534180 -6.028219 3.898821 26.292280 -9.611295 10.494415 -4.286172 -19.742195 19.028325 -7.278319 15.511651 0.006678 4.906471 9.848577 -16.595055 -2.366770 19.260147 6.133391 3.980124 17.237731 -3.135569 3.454920 -22.543341 -16.216756 -0.958339 3.617669 1.828818 27.317342 -10.956276 -7.474320 -4.198248 13.538078 -3.268140 -3.661675 -2.875563 -0.931656 3.718684 -32.897645 -22.501747 15.243725 17.192236 -1.237739 -3.005747 16.503664 2.820048 2.501119 -11.374749 -11.228787 10.063354 0.749781 13.282486 3.284509 -1.215949 -15.739973 1.045978 2.466581 2.646806 11.489098 -16.448304 -14.391196 -0.012792 -21.187168 -11.273486 2.736696 -17.569431 -7.336004 -1.468087 2.394451 -0.817542 1.078930 -4.031136 -10.390129 3.386262 -9.572250 -5.570793 4.429775 11.360013 2.911455 19.474507 13.766806 2.539325 7.232630 7.590398 -7.566166 43.935541 -11.177170 -4.929363 -0.437816 13.382744 -4.743383 5.365093 3.931788 -3.975208 -10.494411 -13.158877 11.547661 -3.177160 5.251840 -24.760062 -10.048413 -12.334922 -5.699584 6.816366 15.426810 0.849659 30.458904 -0.281065 3.091920 -28.774248 0.038457 13.680519 -1.894012 13.098953 12.437108 -14.977681 -23.746320 -3.707148 -2.084161 17.402254 -2.760210 -17.244534 -9.918983 -2.158107 1.256806 -5.719056 9.448876 18.378278 -5.773684 6.846342 5.174262 -4.812781 0.460349 -8.015148 7.104377 7.983754 -13.370382 19.316702 -5.755554 32.878745 -5.547725 13.779233 -13.187160 0.420669 -1.886603 -0.437847 -5.317574 18.504188 11.243495 7.688100 1.287605 1.005762 -10.544462 5.981569 -PE-benchmarks/palindrome-partitioning.cpp__main = -0.777768 1.614034 6.994940 3.979031 -2.325594 -3.344121 -1.751669 -4.088072 1.963893 1.217461 3.920466 -0.876006 1.161109 1.852666 0.037731 -1.331220 1.183194 -0.180607 0.102233 -1.293215 -1.339527 3.493480 3.132789 -4.056776 0.161109 -4.507776 2.689279 1.784065 1.993110 3.003843 0.197529 0.065084 -0.004359 2.359712 -3.281119 -1.092110 -0.594697 1.387947 -1.766314 -0.192233 1.398831 1.898479 2.108113 0.193379 2.287581 2.125099 2.550893 -0.570917 -3.073272 -0.678396 -1.879227 4.114566 -2.061688 1.727137 0.412675 2.062426 -0.042919 -3.291897 -1.006014 -4.743805 1.125739 1.897448 -2.348353 0.204918 -3.621389 0.761026 -1.592887 -2.235341 1.561839 -0.352768 2.282377 0.128027 0.675487 -2.361570 -3.177417 2.083266 -0.251327 1.376714 1.354110 -0.368950 -1.151075 1.196923 -1.431333 -2.495953 0.734728 0.556666 0.176647 -0.373181 0.823368 -1.562926 0.156194 -0.283410 -1.705303 3.475975 -2.373611 3.511811 -1.281958 -0.934542 -2.126486 -2.099415 -0.690689 -3.628628 1.574282 2.832596 -1.436275 0.821889 -0.446713 1.437073 0.161434 -4.138343 0.059042 -0.611098 0.105889 3.147178 -2.590133 -0.888791 0.330385 0.057949 0.019301 3.192828 -0.282348 1.554564 3.004337 2.382373 0.877109 -2.584145 0.752491 0.775525 1.432581 2.286261 2.633605 -3.135815 -1.968714 -0.637473 0.152434 -5.512261 0.744786 2.115873 2.090117 0.381229 -4.328175 0.924012 -1.656843 3.568460 2.602150 3.297038 1.320528 -0.477803 -1.605408 1.174792 6.093839 -2.261603 2.649849 -1.302485 -4.006105 4.113182 -1.777216 3.454907 0.097510 1.130192 1.660870 -3.714294 -0.557005 4.452238 1.477128 1.154794 3.311400 -0.409249 0.231067 -5.113987 -4.195894 -0.252681 1.513760 0.178710 5.910859 -2.682715 -1.992856 -0.686406 3.489910 -0.456262 -1.204331 -0.163307 -0.698023 1.059042 -7.232123 -5.272769 3.957592 4.587794 0.218197 -0.775063 3.609136 1.142983 -0.718049 -2.852825 -2.596059 2.499234 -0.149002 1.111244 -0.072680 -0.084625 -3.779250 0.189537 0.266307 0.828006 2.616121 -2.761437 -2.212563 0.095046 -4.629068 -2.522380 1.282941 -3.721648 -1.818219 -0.319318 0.525181 -0.125537 0.602415 -1.298476 -1.951031 1.221210 -2.511184 -0.930590 1.285051 2.438891 0.480914 5.007835 3.424908 0.522601 1.945998 1.333009 -1.904521 9.253129 -2.454695 -0.841401 -0.178298 2.643949 -1.302942 1.376860 1.282140 -1.052661 -3.096302 -3.258916 2.046355 -0.675744 1.402798 -4.380907 -2.934214 -3.244045 -1.099169 1.482831 4.026399 0.402687 7.095299 -0.284372 1.083753 -6.700864 0.163170 2.755602 -0.516445 3.218785 2.595626 -3.357373 -4.873907 -0.876036 -1.170182 2.468701 -0.630597 -4.077091 -2.367523 -1.075703 0.832026 -1.400122 1.734457 3.782762 -0.970393 2.072742 1.152267 -1.160481 -0.598809 -1.180396 2.418642 1.407856 -3.120885 4.289455 -0.989033 8.253990 -1.253896 3.002620 -2.776952 -0.032749 -0.311247 -0.588680 -1.233710 4.509424 2.982051 1.848121 -0.130452 -0.004748 -2.083338 1.468846 -PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -1.102323 2.021138 6.976071 5.153630 -3.553149 -3.875309 -1.866355 -2.890933 1.620683 0.342639 3.173558 -0.819494 0.376756 1.254422 -0.623363 -2.667437 1.622303 -0.152489 -0.750043 -1.806835 -1.780282 3.614930 3.076410 -6.469832 0.622376 -5.527361 4.450214 2.350635 1.412925 3.957481 0.238624 0.445237 0.016793 3.142943 -3.543143 -2.346070 -0.204990 1.060244 -1.553492 -0.297844 2.942065 3.153499 3.273738 0.138168 1.410308 3.537011 2.110531 -0.282489 -4.044824 -0.603594 -1.411639 2.735516 -1.972183 2.403414 0.474269 2.532513 1.578934 -4.482513 -0.616521 -5.191517 1.331146 1.962512 -1.842027 -0.415697 -4.136557 0.272981 -0.047810 -3.091331 2.846993 -0.858586 2.001880 0.183840 0.409035 -3.469306 -1.938864 2.525678 0.569921 2.440454 1.664747 -0.211956 -0.990453 0.974475 -1.960325 -2.488384 -0.622195 -0.476966 0.926792 0.384887 2.144732 -3.134553 1.634309 -0.367472 -1.993559 3.651432 -0.774506 2.785677 -1.544473 -1.186850 -2.633633 -1.880466 -0.884800 -3.111651 1.666051 4.333656 -3.679071 1.249722 0.662725 1.297321 0.579251 -3.841740 0.214355 -1.682204 0.033172 2.929473 -1.757326 -1.704772 0.212225 -0.287741 0.261106 4.024430 -1.290493 1.198720 3.127198 2.901905 0.363097 -2.789389 0.862778 -0.261181 1.208494 2.252375 3.669454 -3.580379 -2.063727 -0.604859 -0.151279 -5.340381 1.282580 1.076033 3.360051 0.341172 -5.716260 2.717585 -2.576750 3.937142 1.885498 3.333558 1.450857 -0.933264 -2.209499 2.038392 6.884584 -2.260587 2.454565 -2.356077 -4.919356 5.015610 -0.161986 3.062635 -0.439639 0.187081 1.651225 -3.696745 0.606113 5.054890 1.105363 0.788148 4.709341 -0.736115 0.687819 -5.882950 -4.418800 0.406551 1.708812 0.313400 8.377342 -3.981378 -1.190635 -1.714850 3.579388 -1.253151 -0.587173 -0.074786 -0.294225 1.327359 -7.710410 -6.202547 5.595780 4.645878 -0.322363 -0.186781 3.367373 0.203014 0.932309 -2.806230 -2.906020 2.257273 1.447897 2.685230 0.094124 -0.188745 -3.806042 -0.797364 1.401686 0.840096 4.122113 -4.471721 -3.806801 -1.393573 -5.390279 -4.093391 1.086536 -4.621863 -1.172780 1.095973 0.142123 -0.007821 1.191412 0.097204 -3.365753 0.058516 -1.738925 -1.800878 0.487844 3.286107 0.847834 3.687104 3.986154 0.186026 1.963248 2.972884 -2.032345 11.540957 -2.773916 -0.507817 0.369303 3.592705 -0.148315 1.714866 1.902386 -1.128033 -1.306648 -3.969366 3.033460 -0.843468 0.924508 -8.159527 -1.649635 -4.057497 -1.372377 0.907259 3.588452 0.092143 7.743747 0.077496 -0.175364 -7.614827 -0.124674 3.731838 0.416177 2.465763 3.177188 -3.740201 -6.488195 -0.633518 -1.539524 3.656354 -0.945659 -3.825361 -2.899047 -0.144517 0.725488 -0.776968 2.496595 6.396194 -1.195435 1.304663 0.420616 -1.252515 -0.391699 -3.211959 1.470248 1.323851 -2.332338 4.775154 -0.766672 7.045887 -0.995917 3.288605 -3.101097 0.108348 0.255770 -1.451210 -1.917649 4.413153 1.817665 1.427091 1.514348 0.299297 -2.116934 3.056832 -PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -1.022646 0.594446 4.060849 2.849995 -1.394039 -2.498532 -0.888387 -2.419659 1.689186 0.729414 2.556929 0.460068 1.173427 0.337430 -0.176804 -0.866158 1.214824 0.012246 -0.472545 -1.013475 -0.244283 3.462966 1.983132 -3.273557 0.613521 -2.712075 1.789066 1.307104 1.211716 2.643036 0.094051 0.728658 -0.004063 1.508485 -1.866931 -0.645624 -0.500853 1.282452 -1.251243 -0.464001 1.743479 1.221495 1.787087 0.487959 1.787862 1.040641 1.495848 -0.443432 -1.620005 -0.682502 -0.876506 1.743466 -1.573472 1.700056 -0.605127 1.086564 0.288195 -1.630532 -0.328512 -3.668734 0.697703 1.435042 -1.262533 -0.440014 -2.047025 0.399183 -0.095851 -1.360808 0.816744 -1.096673 1.699876 0.042919 0.049283 -1.704979 -2.713784 0.859384 0.180009 0.957210 1.371374 0.339772 -1.357992 -0.243260 -1.139461 -1.724264 0.796194 0.028939 0.235640 0.733013 0.001853 -1.401550 0.509018 -0.001656 -0.928431 2.004774 -1.291009 2.103406 -0.046649 -0.672903 -0.220570 -0.633560 -0.018021 -1.968095 0.557902 1.692658 -0.535528 0.535002 -0.050695 0.683288 -0.285036 -2.399392 0.590527 -0.346612 -0.983998 2.218174 -1.198499 -0.844609 0.328826 0.274199 0.235204 2.481064 -0.206961 1.029956 1.906945 1.620616 0.635344 -2.233115 0.518448 0.419734 1.440844 1.437932 1.627448 -1.216899 -1.399857 -0.060019 -0.417234 -3.609656 -0.107693 1.906596 2.216937 0.077331 -2.983505 1.336032 -1.356901 2.275439 2.090452 1.224818 0.983718 0.014291 -1.571881 1.227232 4.325275 -1.614019 1.673768 -0.602916 -2.573559 3.449246 -1.121050 1.761116 -0.099026 0.245925 0.688484 -1.949967 0.100964 3.083456 0.517136 1.428828 1.402049 0.057663 -0.117558 -3.626440 -3.450206 -1.087287 1.616963 1.395889 4.552369 -1.741358 -1.052307 -0.377811 1.717116 -1.123423 -0.954886 -0.030284 -1.148456 1.068607 -5.694700 -3.556498 4.042903 3.307927 0.701152 0.395592 2.089873 0.479342 0.595959 -1.453635 -1.350944 1.497832 0.669096 0.435936 0.124829 0.126307 -2.536623 -0.840159 0.352975 0.191214 0.955089 -1.824614 -0.745743 -0.366917 -2.684326 -1.600715 0.588000 -2.676999 -1.042201 -0.228345 0.223134 -0.135896 0.169074 -0.148262 -1.134737 0.310672 -1.487974 -0.700557 0.105414 1.428632 0.740348 2.224698 3.285265 -0.233952 1.101206 0.906122 -1.636736 5.783279 -2.083032 -0.688108 -0.087105 2.342028 0.313470 1.095437 1.251944 -0.803950 -0.782229 -2.744039 1.336667 0.813274 1.233622 -3.796562 -1.864853 -2.183650 -0.524050 0.636288 2.711290 -0.524146 4.971373 -0.977268 0.738668 -5.185906 0.340192 2.120366 0.006672 1.558926 1.387764 -1.975551 -4.162415 -0.674970 -1.299569 1.379944 -0.658856 -2.329009 -1.191593 -0.556491 0.734511 -1.875853 1.366360 2.582490 -1.113306 1.575436 -0.102359 -0.593392 -0.857579 -0.606158 0.729857 0.981502 -1.674904 2.056322 -0.554394 4.798729 -1.022317 2.333784 -1.859364 0.900742 -0.918230 -1.182257 -1.116572 3.018237 2.340692 0.881979 0.890964 0.105367 -0.844349 1.835331 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.684266 1.108429 4.483217 3.197679 -1.965888 -2.897963 -0.975298 -2.867778 1.896978 0.732371 2.506239 0.265577 1.427982 -0.025812 -0.270777 -1.109190 1.468282 0.277731 -0.197322 -1.175981 -0.698015 3.892238 2.057477 -3.370911 0.537503 -3.277584 2.694570 1.399205 1.970945 3.102754 0.122021 0.343096 -0.206521 1.805123 -2.019633 -1.033712 -1.073563 1.186441 -1.607717 -0.252215 1.577571 1.033801 2.260144 0.471394 1.393136 1.358141 1.664971 -0.299240 -1.938729 -0.876942 -1.154215 1.758984 -1.465436 1.932976 -0.534314 0.857483 0.658813 -1.354750 -0.067486 -3.302225 0.888731 0.877198 -1.578699 -0.228856 -2.920252 0.225503 -1.148271 -1.925530 0.744011 -0.946835 1.557077 0.242442 0.094003 -2.493759 -3.219796 1.093880 0.229433 1.194017 1.508171 0.814660 -1.189655 -0.010961 -1.676122 -2.126435 0.747478 0.297915 0.268457 0.621797 -0.121962 -2.098298 0.461496 0.218088 -0.652676 2.205554 -1.560829 2.147338 -0.909711 -0.622511 -0.703656 -1.751070 -0.220038 -2.213941 0.825300 1.621769 -1.055570 0.486491 0.132055 0.703856 0.150648 -2.642218 0.450920 -0.716149 -0.677646 2.711827 -0.965256 -1.070754 -0.327613 0.139333 0.176240 2.643630 -0.166751 0.835883 2.315870 1.722046 0.854475 -2.132721 0.557033 0.823667 0.890183 1.404012 1.783078 -1.639871 -1.617586 -0.001049 -0.299000 -4.027791 0.085781 1.836267 2.167648 -0.166182 -2.742581 1.458560 -1.611955 2.201351 2.172976 1.416863 1.329772 -0.166987 -1.557198 1.364660 4.839821 -1.509873 1.410042 -1.287782 -3.188653 4.167148 -0.859430 2.043220 -0.618556 0.215813 0.659134 -2.104346 0.599184 3.492591 0.192425 0.835159 2.179367 -0.177480 0.072710 -3.771571 -3.651517 -0.443918 1.846945 1.457950 5.095972 -2.102077 -0.407655 -0.516993 1.777662 -0.294676 -0.837293 0.235693 -0.870443 1.059321 -6.342677 -3.969809 4.166125 3.428369 0.404612 -0.153728 1.948433 0.934760 0.412549 -2.171940 -1.980941 1.602687 0.507424 0.360977 -0.111763 0.297327 -3.010935 -0.468980 0.702157 0.313261 2.182681 -2.412510 -1.155733 -1.213237 -3.102345 -2.584216 1.195918 -2.693968 -0.800631 0.036430 0.010918 -0.170346 0.759948 -0.073324 -1.349625 0.247843 -1.265572 -0.874708 0.008704 1.751015 0.376855 2.618156 3.251575 -0.280681 0.806518 1.241671 -1.776388 7.254497 -2.095072 -0.373789 0.053407 2.406100 0.129594 1.474906 1.311730 -0.889625 -1.014642 -2.944146 1.373205 0.500443 0.884892 -4.569390 -1.692965 -2.904320 -0.542901 0.296883 3.177638 -0.054590 5.485239 -1.119078 0.575687 -5.248667 0.283809 2.065593 0.018323 2.437326 1.727555 -2.395840 -3.083453 -0.845224 -1.366394 2.036091 -0.622643 -2.511245 -1.751960 -0.135443 0.428258 -1.543878 1.491239 3.124204 -1.261080 1.850545 -0.254654 -0.525217 -1.127330 -0.918100 1.179798 1.040180 -1.834078 2.550931 -0.502866 4.785510 -0.830194 2.406329 -1.951542 0.703654 -0.708557 -2.010496 -1.394468 3.352102 2.040023 1.030669 0.878434 0.209871 -0.727565 1.870419 -PE-benchmarks/dfa-based-division.cpp__main = 0.061939 1.236465 3.064488 2.293212 -1.760329 -2.072582 -0.860501 -2.272428 1.154473 0.185507 1.487514 -0.237579 0.724128 0.257362 -0.360850 -0.517782 1.166441 0.455122 -0.285806 -0.990995 -1.212319 2.440486 0.949445 -2.297277 0.505819 -2.024409 1.607680 1.057822 1.300355 1.585176 0.050507 0.104196 -0.167292 1.301554 -1.581635 -0.958666 -0.484128 0.724725 -1.674053 0.027633 0.895109 0.627171 1.792449 0.021942 0.592770 1.245085 1.056902 0.120381 -1.639235 -0.328793 -0.775586 1.566372 -0.616760 1.469895 -0.208045 0.502800 0.524082 -1.152198 -0.105631 -1.393665 0.252260 0.527171 -0.840899 -0.141435 -1.992525 0.064615 -0.544014 -1.740344 0.775701 -0.332172 0.990462 0.136628 -0.040931 -1.628728 -1.984093 0.902253 0.573855 1.167247 0.917062 0.555289 0.121389 0.113369 -1.323656 -1.406400 0.455267 0.289578 0.621612 0.364929 -0.074727 -1.580038 0.654145 0.009385 -0.141920 1.425351 -0.920340 1.320959 -1.362127 -0.552187 -1.280155 -1.790995 -0.271951 -1.242281 0.889569 0.793402 -0.956532 0.664300 0.652408 0.674255 0.488261 -1.816155 0.025906 -0.513581 -0.176154 2.366450 -0.355315 -1.183246 -0.093264 -0.171952 -0.587282 1.611019 -0.087494 0.408988 1.751376 1.284667 0.702918 -1.415081 0.133650 0.097172 0.365537 1.054894 1.722761 -1.271388 -1.202716 -0.048264 -0.340171 -2.896235 -0.004620 0.806304 1.639470 -0.400414 -1.677477 0.914695 -1.226936 1.561821 0.871541 0.945424 0.931141 -0.481480 -1.020803 0.946238 2.995166 -0.974014 1.065418 -1.201475 -2.080841 2.252922 -0.011208 1.302891 -0.402585 -0.226734 0.303550 -1.398678 0.553542 2.235600 0.073169 -0.005138 1.488155 -0.164904 -0.574113 -2.595094 -2.450503 0.151731 1.008886 0.552141 3.437433 -1.538909 -0.848141 -0.473638 1.458827 -0.502146 -0.425661 0.359158 -0.840292 0.826036 -3.469352 -2.752828 2.733525 2.350255 0.079479 -0.220305 1.573895 0.178429 -0.355534 -1.867644 -1.347899 0.973429 0.667163 -0.243328 -0.525635 0.316612 -1.865552 0.094073 0.581844 0.556717 1.638042 -1.254567 -0.623563 -1.069640 -2.350140 -1.887071 0.998971 -1.765156 -0.086864 0.584645 -0.011786 -0.270668 0.947307 -0.215664 -1.393203 -0.169328 -0.882062 -0.335205 -0.121490 1.481763 -0.068768 2.005696 2.275646 -0.134822 1.416972 0.904114 -1.389680 4.879996 -1.598289 0.071722 -0.076910 1.643414 -0.493760 0.925777 1.220917 -0.608805 -0.939342 -2.030999 0.648792 0.033520 0.350106 -3.070702 -1.114092 -2.107592 -0.491620 0.040036 2.024227 0.075859 3.467003 -0.759934 0.300745 -3.742124 0.191569 1.274262 0.043332 1.743834 1.243043 -1.768791 -2.402569 -0.350453 -1.302557 0.785218 -0.532952 -1.928950 -1.296335 -0.024329 0.324897 -0.728163 0.865463 2.633500 -0.801686 1.151962 -0.388819 -0.442585 -0.562151 -0.967147 1.399325 0.381221 -1.171569 1.702423 -0.136675 3.948082 0.056395 1.542572 -1.302706 -0.184015 0.155311 -1.567862 -1.144315 2.255533 1.157483 0.711590 0.537892 0.126804 -0.554625 1.305104 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -0.881159 2.046989 7.608617 6.034099 -4.453737 -5.264281 -1.761096 -3.882380 1.938853 0.591710 3.539311 -0.673819 1.067304 1.542574 -0.285143 -2.013467 2.097227 0.772761 -0.689694 -1.823077 -3.478518 3.909194 2.931246 -6.468415 0.806677 -4.730087 4.501214 3.031877 1.299372 3.837346 0.361974 0.363217 -0.521283 2.964244 -3.937249 -2.106986 -0.844265 1.141166 -2.262397 -0.455174 2.521359 1.473128 3.970387 0.112582 1.754967 2.906689 3.093934 -0.007850 -4.795618 -0.590584 -2.622208 3.991412 -1.667443 2.728162 0.024207 2.712650 1.491611 -4.131727 -0.594649 -5.844467 1.268104 1.564875 -2.673611 -0.414457 -4.497358 0.084817 -1.222029 -3.590845 2.408554 -0.530996 2.062366 -0.355412 0.111436 -3.888080 -3.580411 1.857444 0.511883 2.257839 1.870508 0.564049 -1.078505 0.809211 -2.846132 -2.565262 0.088477 -0.670507 0.930359 0.394677 0.619400 -2.780125 1.109147 -0.240624 -1.452330 3.513180 -2.095885 3.299048 -1.837163 -1.019343 -3.501057 -2.962212 -0.449106 -3.045177 1.832345 3.707914 -2.661728 1.199974 0.252392 1.490820 0.424592 -4.538357 0.099937 -2.157764 0.150152 3.438006 -1.912714 -2.117734 0.441422 -0.381381 -0.042998 4.018230 -1.138920 0.920428 3.618441 2.794437 1.131308 -2.915111 0.953039 0.136289 1.170642 2.539221 3.292177 -3.333741 -2.028461 -0.654962 -0.601821 -6.390056 1.060421 2.052634 3.061189 0.722825 -5.501502 1.769227 -2.470566 4.229656 2.008259 3.979877 1.552892 -0.561430 -2.011935 1.407871 7.088299 -2.334347 2.863116 -2.034877 -4.904671 5.190138 -0.418820 3.510514 -0.089500 -0.022662 1.792311 -3.435430 0.134274 5.097505 1.308603 -0.070519 4.576959 -0.419145 -0.531274 -6.265321 -5.238990 0.876428 2.457546 1.084038 8.801688 -4.255256 -2.096161 -1.416361 3.758833 -1.751943 -1.216404 0.048314 -0.738706 1.567621 -9.330508 -6.524238 5.466173 4.391930 -0.368356 -0.626625 4.445423 0.072655 0.060851 -3.453117 -3.437652 2.107867 1.085687 2.227053 0.428879 0.155088 -4.739663 0.385141 1.184086 1.060648 4.146812 -4.332763 -3.112384 -1.871988 -5.709086 -3.740921 1.385150 -4.971528 -1.306188 0.809687 0.267438 -0.192491 1.267999 -0.254934 -3.290336 -0.080527 -2.506505 -1.242179 0.408909 3.282082 0.436093 6.242369 5.255451 0.130003 2.688210 2.223694 -2.452395 12.612174 -3.317326 -0.368448 0.174098 4.018607 -0.615038 1.560789 2.822369 -1.272497 -2.295366 -4.211236 2.523666 -0.494877 1.346559 -8.170533 -2.463359 -5.468490 -1.511380 0.822405 4.683436 -0.248472 8.227555 -0.398220 0.475966 -8.600995 0.077005 3.819826 -0.128800 3.127659 2.901880 -4.219504 -6.233309 -0.574250 -1.940783 4.053647 -0.774941 -4.150931 -2.888777 -0.288766 -0.409597 -1.465520 2.536411 6.294410 -2.207580 1.954991 0.191872 -0.981507 0.011741 -2.604989 2.670321 1.508148 -2.983360 5.646521 -0.781410 9.788279 -0.271904 3.303554 -2.984494 0.374319 0.006997 -1.635254 -1.996808 4.578907 2.568565 1.917661 1.144936 0.942901 -2.156221 2.782793 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.010649 0.847522 2.483644 1.818746 -1.040073 -1.791427 -0.571840 -1.383287 0.733897 0.018991 1.186018 -0.279040 0.487408 0.427626 -0.166542 -0.629376 0.622590 0.338466 -0.129880 -0.562463 -1.113635 1.567472 0.821712 -1.810754 0.282674 -1.753586 1.481036 0.981768 0.823712 1.570766 -0.017792 0.021485 0.051315 0.980248 -1.237879 -0.832389 -0.423820 0.328964 -0.872683 -0.033563 0.726984 0.461703 1.427778 0.264325 0.274380 1.011545 0.836152 -0.013174 -1.125684 -0.135903 -1.091699 1.299583 -0.620063 0.836583 -0.316701 0.698231 0.672558 -1.046678 -0.084352 -1.529403 0.274369 0.564702 -0.851270 -0.168079 -1.611743 0.042029 -0.794016 -1.180879 0.682386 -0.147858 0.774331 0.158374 0.077417 -1.261339 -1.480838 0.715430 0.146426 0.845627 0.709839 0.082003 -0.230616 0.407733 -1.007701 -0.917066 0.370836 -0.220313 0.425526 0.199581 0.145097 -1.224932 0.205040 0.118853 -0.304498 1.031636 -0.423370 1.244893 -0.933170 -0.285612 -0.883683 -1.247800 -0.253881 -1.052418 0.474832 1.007299 -0.636050 0.372773 0.149854 0.452336 0.242900 -1.603289 0.112853 -0.530513 -0.291774 1.384580 -0.596048 -0.747417 0.137435 -0.039789 -0.153443 1.413114 -0.241158 0.341120 0.972334 0.913162 0.338901 -0.943110 0.333186 0.048452 0.315833 0.842412 1.174870 -0.925200 -0.828651 -0.281302 -0.115279 -2.363375 0.434379 0.727565 1.007408 0.192261 -1.723163 0.822860 -0.933111 1.151147 0.817030 1.092650 0.728413 -0.287174 -0.723547 0.732807 2.364074 -0.909997 1.016160 -0.922137 -1.697871 1.810949 -0.249084 1.026501 -0.383677 -0.045708 0.784604 -1.062934 0.177426 1.788957 0.262349 0.055516 1.641765 -0.215290 -0.124181 -2.074148 -1.657236 0.276721 0.934405 0.219235 2.636946 -1.219353 -0.523258 -0.319251 1.229757 -0.613549 -0.270988 0.032413 -0.339453 0.534065 -3.306673 -2.196018 1.923045 1.422034 -0.188211 -0.166312 1.043456 0.478172 0.173623 -1.098522 -1.148552 0.700659 0.365859 0.186198 -0.169622 -0.087763 -1.368102 0.188866 0.510290 0.297039 1.260586 -1.438105 -0.943199 -0.876568 -1.962512 -1.422462 0.705934 -1.861626 -0.278381 0.343987 -0.124678 -0.230909 0.520942 0.003857 -0.931292 0.214157 -0.766517 -0.429767 -0.010896 1.126400 0.125289 1.902824 1.704678 0.067051 0.773555 0.925863 -0.910045 4.067346 -1.240419 -0.098067 0.051203 1.453871 -0.246754 0.843086 0.834770 -0.429856 -0.912141 -1.597769 0.760913 0.001344 0.325898 -2.122974 -0.741714 -1.724551 -0.579635 0.295797 1.718751 -0.028433 2.773180 -0.268352 0.117563 -2.511482 -0.003153 1.194604 -0.019728 1.323051 0.999040 -1.326077 -1.720313 -0.367949 -0.674637 1.304651 -0.376193 -1.559136 -0.934600 -0.149014 -0.075592 -0.663086 0.954552 1.777838 -0.606094 0.658469 -0.091542 -0.358029 -0.344130 -0.675066 0.997715 0.504221 -0.961540 1.657295 -0.284258 2.852472 -0.158237 1.166842 -1.207007 0.005519 0.014588 -0.630047 -0.714836 1.715640 0.889571 0.536665 0.417894 0.292118 -0.476110 0.944127 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.259881 0.721905 1.462419 1.111675 -0.724244 -1.348540 -0.401950 -1.234613 0.572224 0.019590 0.724914 -0.162979 0.496658 0.210494 -0.154366 -0.043650 0.611222 0.379300 0.028688 -0.456414 -0.875588 1.511849 0.409472 -0.898395 0.228015 -1.031633 0.861058 0.573173 0.840399 1.021307 0.004223 0.038360 0.069287 0.592115 -0.805495 -0.522940 -0.471200 0.371910 -0.921246 0.148649 0.269695 0.014709 1.037280 0.186233 0.103905 0.658786 0.638273 0.114674 -0.582622 -0.110360 -0.763593 0.853087 -0.314719 0.680881 -0.464350 0.074283 0.457531 -0.291867 -0.019845 -0.521975 -0.025363 0.162575 -0.610845 -0.081699 -1.164836 0.081027 -0.703443 -0.953864 0.217542 0.116201 0.596873 0.232929 -0.001769 -0.841693 -1.471268 0.409441 0.186573 0.626117 0.490148 0.220607 0.023674 0.181955 -0.892546 -0.797606 0.549897 0.119240 0.362558 0.183986 -0.203620 -0.960236 0.052527 0.138886 0.068895 0.640904 -0.284598 0.893794 -0.767667 -0.184178 -0.602935 -1.263148 -0.171201 -0.631418 0.350113 0.180092 -0.097279 0.264449 0.262770 0.317282 0.207848 -1.128881 0.099100 -0.268336 -0.446501 1.240298 -0.121858 -0.524507 0.006150 -0.049727 -0.349182 0.882253 0.095274 0.232056 0.742454 0.632519 0.258545 -0.609201 0.075406 0.052805 0.124633 0.507775 0.867554 -0.504293 -0.747105 -0.031247 -0.143491 -1.606318 0.046356 0.728668 0.722849 -0.305295 -0.683238 0.567506 -0.648352 0.638058 0.601395 0.440195 0.577845 -0.295105 -0.478523 0.614809 1.647672 -0.594107 0.642761 -0.745731 -1.048884 1.386162 -0.129943 0.608624 -0.363185 -0.150470 0.169797 -0.571128 0.293132 1.165836 0.043195 -0.100095 0.995200 -0.115151 -0.392739 -1.255453 -1.160149 0.144503 0.770955 0.237424 1.715132 -0.721573 -0.314208 -0.067712 0.579833 -0.232537 -0.179816 0.199185 -0.437560 0.393485 -2.239066 -1.452499 1.456406 0.935961 0.055975 -0.152721 0.575534 0.467223 -0.078510 -1.070046 -0.739170 0.508392 0.241427 -0.467678 -0.484009 0.086904 -1.004040 0.191478 0.279046 0.264583 0.837416 -0.591832 -0.212862 -0.913817 -1.300218 -1.005196 0.620649 -1.082530 -0.059386 0.334338 -0.131485 -0.267168 0.420473 0.040360 -0.459035 0.046529 -0.469492 -0.158075 -0.140380 0.666404 -0.066720 1.217524 1.382450 -0.040508 0.601713 0.510189 -0.754743 2.519297 -0.847964 0.069053 -0.063475 0.919589 -0.318095 0.558646 0.696544 -0.251527 -0.729232 -1.096825 0.350126 0.215854 0.118682 -1.159939 -0.506337 -1.194822 -0.289039 0.049121 1.381376 0.005480 1.726765 -0.506930 0.239605 -1.742356 0.186955 0.500692 0.001887 1.030248 0.605946 -0.864917 -0.754790 -0.276041 -0.662500 0.415925 -0.310675 -1.148243 -0.652123 -0.008440 -0.204676 -0.559849 0.447407 1.167639 -0.509710 0.632076 -0.303028 -0.250924 -0.485629 -0.248270 1.003612 0.159048 -0.588643 0.829608 -0.117974 2.026948 0.079180 0.802134 -0.695819 -0.144676 0.060739 -0.789059 -0.534404 1.237351 0.606739 0.247357 0.387680 0.148441 0.027318 0.586191 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -3.821347 3.062655 16.799520 12.360457 -7.373716 -9.474121 -4.421113 -7.392435 5.445884 2.445765 9.095763 -0.385149 2.827957 3.091678 -0.089551 -5.199454 3.426875 0.274080 -2.648334 -3.567164 -4.070545 9.223028 8.957789 -13.996149 1.285713 -10.246042 7.009952 5.186171 2.959081 8.662312 -0.521932 0.860884 -0.584441 6.326628 -9.341020 -2.813250 -2.078906 2.954704 -3.518241 -2.633538 6.547771 4.152237 7.381560 0.530751 5.730098 5.172182 5.844649 -1.895124 -9.961719 -2.776265 -4.300353 8.911967 -4.758011 6.068138 0.302203 7.341906 2.073586 -9.022449 -1.698331 -15.288630 3.852564 5.059774 -5.621692 -1.243470 -8.207821 0.854305 -0.756120 -6.630032 4.646607 -4.310892 5.239542 -1.064985 0.411436 -8.174135 -6.602030 4.039005 0.247424 3.569077 3.703717 2.388752 -4.357862 1.142118 -3.963014 -5.497971 0.640462 -1.456382 0.827953 1.730871 1.382472 -5.143308 2.369040 -0.274658 -3.996464 8.120954 -6.317520 7.699632 -0.337179 -2.621176 -5.464682 -2.847327 -1.022807 -7.734248 3.226967 8.509529 -5.083430 2.384490 -0.810196 3.204117 -0.295111 -9.743024 0.825494 -2.819190 -1.060146 6.131700 -5.995758 -3.183484 2.167765 -0.150466 0.400871 8.864933 -2.045187 2.924848 7.455296 5.356393 2.949465 -6.979344 2.923723 1.291985 4.974023 5.136591 6.166031 -6.720367 -4.217306 -0.717834 -1.259391 -14.310645 1.343843 5.757032 7.444945 3.210768 -13.284093 4.550495 -4.376284 8.745798 5.332847 8.378915 3.242266 -1.088149 -5.590833 2.047583 15.762940 -5.510157 6.911343 -2.860966 -11.681275 12.478846 -3.369066 8.476798 0.165212 1.019796 4.722439 -8.520867 0.104321 11.546205 2.976799 2.376612 7.251442 -1.008959 0.046372 -14.109248 -12.914320 -1.885516 4.184441 3.657357 18.072698 -7.986717 -4.648166 -3.302989 9.354723 -4.018456 -3.234571 -0.554311 -1.596745 3.292320 -20.747705 -13.932007 12.595816 12.211289 0.650040 0.077571 10.818708 0.590479 1.541793 -6.442455 -6.443212 5.058951 3.022539 6.196282 1.931167 -0.717253 -9.956304 -0.430230 1.080737 1.467587 5.373501 -9.396976 -5.588278 -1.228651 -11.280154 -6.966659 1.339328 -10.864657 -3.366822 0.135872 1.294745 -0.968038 1.843247 -1.477854 -6.767961 0.822897 -5.809002 -2.384774 1.491410 6.494941 2.562756 11.495996 10.822427 -0.828655 5.578091 3.589659 -4.903732 26.234469 -8.875970 -2.040174 -0.262929 9.584279 -0.637815 3.692883 4.202621 -2.700297 -3.321998 -8.399539 5.864601 -0.713135 3.108675 -17.443615 -7.125150 -9.513732 -2.757386 2.167928 9.488540 -0.825934 18.639336 -1.403126 1.855983 -20.414036 0.293516 8.599395 -0.585575 6.434751 6.530820 -8.711175 -16.611220 -1.516603 -3.025176 9.205014 -1.464723 -9.475060 -5.232043 -2.438386 1.736614 -4.873556 5.580175 11.697786 -3.704767 5.109616 2.002685 -2.296713 -0.926279 -4.696686 3.791681 4.091611 -6.357320 11.426177 -1.720713 19.458495 -2.550247 8.774725 -6.801085 2.863412 -1.690035 -3.827128 -4.126892 10.522519 7.187098 3.909237 1.560498 1.332056 -5.774026 5.003546 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -0.438449 0.999389 4.801890 2.502231 -1.971810 -3.132416 -1.318445 -4.117551 2.144858 1.038439 3.125493 -0.286307 1.437232 0.391870 -0.059058 -0.345785 1.326674 -0.325078 -0.054700 -1.172868 -1.140901 3.777513 1.545696 -2.153589 0.453881 -3.672422 1.807039 1.249513 1.846814 2.410746 0.261252 -0.065776 -0.369322 1.534895 -1.981314 -0.093286 -0.184969 1.025621 -1.833379 -0.343467 0.923202 0.339251 2.296710 -0.018406 2.104085 0.804079 1.826167 -0.189348 -2.130350 -0.955401 -1.480416 3.003027 -1.345120 1.636178 0.028591 0.723738 0.211266 -1.820267 -0.564591 -2.651952 0.357432 0.592127 -1.722268 -0.032106 -2.383927 0.515246 -0.991877 -1.688423 0.867174 -1.033966 1.758474 0.125703 0.314380 -1.384404 -3.460394 1.106043 0.282565 0.920174 1.159535 0.668166 -0.545942 0.199652 -1.669319 -2.100737 1.408785 1.203827 0.322089 0.193923 -0.889059 -1.051832 0.059022 -0.133918 -0.295439 2.282318 -2.362891 1.776395 -0.777468 -0.940526 -1.662728 -2.404106 -0.078264 -2.290704 1.112328 1.358538 -0.798619 0.528886 -0.058715 0.936917 -0.252851 -2.995547 0.442364 -0.774939 -0.249563 2.985161 -1.619851 -0.968743 -0.393541 -0.142643 -0.330875 2.184430 0.049176 0.971069 2.509420 1.789892 1.391787 -2.191905 -0.064042 1.083579 1.535502 1.414049 1.513606 -2.124813 -1.351069 0.169992 -0.687306 -4.685051 -0.528882 1.771205 2.331864 0.028422 -2.421186 0.774261 -1.255506 2.598122 2.044248 1.467095 1.017132 0.023914 -1.751212 1.020347 4.696290 -1.489700 2.058954 -1.430283 -2.538882 3.211293 -1.206166 2.253310 0.042590 0.479051 0.533899 -2.375857 0.103743 3.246443 0.689584 0.855105 1.165107 0.232551 -0.701092 -3.886406 -4.268247 -0.533277 1.974739 0.791374 4.649209 -2.373154 -1.629707 -0.471242 2.810813 -0.513240 -1.290161 0.633397 -1.376808 1.212130 -5.497713 -4.091183 4.197227 4.193049 0.885824 -0.165999 2.808124 0.978720 -1.405661 -2.171474 -1.907087 1.753327 0.612035 -1.087794 -0.465854 0.063537 -3.108200 -0.365903 -0.022197 0.617381 1.487758 -1.238934 0.079742 -0.455524 -2.881549 -1.865155 1.588954 -2.592299 -1.116229 -0.121548 0.347226 -0.235492 1.114190 -0.969658 -1.078100 0.818019 -1.947668 -0.243584 0.761622 1.524081 0.293539 3.809895 3.615324 -0.251099 2.122714 0.420662 -1.666001 6.222039 -2.219662 -0.336778 -0.224392 1.859191 -0.465121 1.245797 1.536060 -0.999938 -1.920584 -2.650162 0.935329 -0.078072 1.173646 -2.972861 -2.724652 -3.198827 -0.647089 0.502246 3.283878 0.234972 5.397845 -1.017086 1.022974 -5.923042 0.308956 1.919824 -0.159399 2.300001 1.419861 -2.341350 -3.460906 -0.541250 -1.689531 0.531655 -0.489282 -3.001967 -1.761547 -1.629333 1.369449 -1.658488 1.021536 2.729936 -0.657055 2.201822 0.164848 -0.649978 -1.254347 -0.290195 1.963727 0.710603 -1.981246 2.913915 -0.259472 6.507012 -0.792609 2.210485 -1.714377 0.791083 -0.605978 -1.899808 -1.085434 3.334097 2.584792 1.125288 -0.188046 -0.070424 -1.211945 1.526300 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp___GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/eulerian-path-and-circuit.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.584091 0.403055 2.708960 1.320072 -0.856556 -2.514184 -0.592519 -2.854698 1.607741 0.840667 2.467350 0.421936 1.652024 -0.422796 0.460817 0.309509 1.226700 -0.124879 -0.053300 -0.785178 -0.103716 2.849474 1.008876 -1.057119 0.307973 -1.625239 0.754401 1.151260 1.275619 1.709536 0.268750 0.010370 -0.179747 0.886593 -1.175433 0.305319 -0.414934 0.881727 -1.131934 -0.579492 0.353161 -0.216469 1.647952 0.323493 1.694631 -0.017664 1.724263 -0.196936 -1.018848 -0.946840 -1.253913 2.118470 -1.154098 1.156311 -0.677719 -0.011065 0.429904 -0.264627 -0.051869 -2.262009 0.333297 0.274244 -1.499750 -0.351668 -1.239548 0.318491 -0.590269 -1.057340 -0.099472 -0.663453 1.291060 0.009776 -0.117187 -0.793303 -2.954384 0.172665 0.119931 0.356545 1.097540 0.652794 -0.812615 -0.565695 -1.040299 -1.521508 1.848644 0.607600 0.310110 0.795379 -1.595009 -0.296972 -0.470684 0.219811 0.116511 1.188614 -1.681546 1.095005 0.671819 -0.620091 -0.683536 -1.171754 0.321599 -1.459987 0.284971 0.453334 0.510624 0.054625 -1.219494 0.410637 -1.083570 -1.817977 0.648700 -0.596260 -1.146021 1.464977 -1.215132 -0.268071 -0.191847 0.199311 0.237334 1.476246 0.454703 0.687122 1.343985 1.125300 0.884755 -1.585439 -0.009682 0.836550 1.502262 1.069145 0.406945 -0.822156 -1.052588 0.534096 -1.091995 -3.081343 -0.543950 2.158111 1.709479 0.177656 -1.616633 0.791861 -0.758764 1.534305 1.955584 0.836312 0.673594 0.390486 -1.434785 0.650211 2.896861 -1.129833 1.613563 -0.250606 -1.072455 2.261368 -1.304172 1.201325 0.153420 -0.100435 0.126869 -1.020513 -0.185042 2.212943 0.913464 0.922831 0.085910 0.398860 -0.627707 -2.411146 -3.216643 -0.962915 1.918899 1.054309 2.767622 -1.286167 -0.946605 0.012898 1.256720 -0.780537 -1.343886 0.460350 -1.071279 1.027439 -4.173916 -2.357234 3.430045 2.649440 1.213444 0.076763 1.627544 1.189727 -0.730773 -1.166180 -0.869709 1.115769 0.309337 -1.418024 -0.252837 0.061349 -2.383523 -0.530013 -0.271665 0.186609 -0.226623 -0.300177 0.994030 -0.342582 -1.349075 -0.555394 0.526362 -1.441659 -0.881140 -0.488888 0.011704 0.055324 0.454705 -0.634447 -0.158126 0.760027 -1.743468 -0.344371 0.112340 0.978417 0.937869 2.677484 2.679919 -0.441599 1.430122 -0.053502 -1.371709 3.161157 -1.320951 -0.099496 -0.142575 1.444428 0.391958 0.940069 1.188306 -0.718801 -1.001953 -2.020580 0.205723 0.979499 1.191032 -1.156703 -1.696030 -2.187916 -0.107474 0.362993 2.672678 -0.655485 3.505963 -1.140719 1.007688 -3.862981 0.387472 0.796188 -0.330765 1.160437 0.791063 -1.381893 -1.872236 -0.580749 -1.174590 -0.348496 0.002772 -1.377724 -0.964577 -1.400549 0.823283 -2.136101 0.485631 0.939400 -0.594635 1.893134 -0.076577 -0.207564 -0.999083 0.534062 1.463624 0.585658 -1.439233 1.533293 -0.022735 4.297350 -0.689489 1.762876 -1.159577 1.152848 -0.816406 -1.383335 -0.801653 2.422688 2.467039 0.516027 0.178384 0.286940 -0.265570 1.251668 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -2.285222 1.503834 8.966207 3.259528 -2.719859 -5.333972 -2.471491 -9.678086 5.169495 3.232624 7.719557 0.270657 4.404918 -0.748667 0.507298 -0.598008 3.574935 -1.727744 0.095888 -2.373064 0.046395 7.774178 2.130158 -2.430430 0.705483 -6.541347 2.637007 2.009647 3.421618 4.050039 1.226247 0.012471 -1.226100 2.788885 -2.763813 1.086408 0.896579 2.480865 -2.976933 -2.108000 1.396947 0.332455 4.358878 0.553230 5.537365 -0.077991 3.095262 -0.889970 -3.298999 -2.716168 -1.751330 5.541449 -3.118296 3.054200 0.885016 0.009499 0.407683 -2.348400 -0.192567 -5.332171 1.027900 0.486494 -3.049856 -0.197552 -3.084351 1.212783 -1.533009 -1.837032 0.424144 -3.191122 3.354692 -0.352321 0.627877 -1.302644 -7.216782 1.756400 0.705500 0.280629 3.082857 2.095702 -1.641190 -1.295820 -2.834692 -4.895151 4.468484 3.651878 0.242887 1.577074 -3.848319 -0.262355 -0.358919 -0.513936 -0.013941 4.634789 -5.463342 2.382650 0.802189 -2.488079 -2.308469 -4.308248 0.659980 -4.875618 1.545774 2.528860 -0.971781 0.147842 -2.216913 1.311321 -2.058222 -4.821677 2.150334 -1.594914 -0.966249 5.238733 -3.849226 -1.642128 -1.859185 -0.084419 0.792537 3.985607 0.860619 2.097395 4.562356 3.445285 3.233230 -4.834076 -0.347166 3.371798 3.828769 2.368572 1.365657 -4.354797 -2.384561 1.764788 -2.817539 -8.631496 -2.463913 4.142041 5.274064 0.073037 -4.571248 1.401249 -1.962961 4.730990 5.251107 2.290242 1.363552 1.180046 -4.043789 1.577682 7.482302 -2.827384 4.125978 -1.253243 -3.192434 5.100642 -3.499242 3.925712 0.428571 1.014047 -0.044163 -4.101933 -0.037864 6.441937 1.801211 3.012750 -0.983231 1.209610 -1.659320 -7.065302 -9.833541 -2.212964 5.064822 2.471971 7.524887 -4.228182 -3.421757 -0.028070 5.508132 -1.000068 -4.026486 2.099303 -3.043775 2.936194 -9.754011 -7.133922 9.025017 8.924031 3.064133 -0.630684 4.832052 2.230317 -3.901176 -3.692765 -3.311467 3.851273 0.510746 -3.849106 -0.666593 0.439382 -6.221728 -1.846705 -0.847177 0.890607 1.244757 -1.174289 2.595509 0.323853 -3.408652 -2.073646 3.097250 -3.007746 -3.108326 -1.742669 0.633301 0.371423 2.383717 -2.429439 -1.430355 2.449251 -4.570104 -1.023538 1.596363 2.639537 1.444291 7.932984 6.681423 -1.170965 3.723030 -0.423812 -3.244900 9.230608 -3.935602 -0.610193 -0.547714 2.666519 0.471807 2.700848 3.366038 -2.275620 -3.890282 -5.549698 0.392514 0.414968 3.566294 -4.354929 -6.153521 -6.397824 -0.180337 0.652948 6.650149 -0.285499 10.775523 -2.516943 2.392377 -10.918963 0.729200 3.600019 -1.042101 3.759809 2.236945 -4.297070 -5.943838 -1.226139 -4.064366 -1.884252 -0.081692 -4.340849 -3.162982 -4.867354 4.762744 -4.411858 1.347974 3.364599 -0.316031 5.131327 0.722392 -1.059212 -3.357796 0.969004 3.484405 0.888728 -4.067572 5.154994 0.001831 12.327524 -2.927524 4.258871 -3.126602 3.039029 -2.400981 -4.241071 -2.211986 6.713754 6.829552 2.245033 -1.151820 -0.116665 -2.247672 3.568596 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -2.732272 3.482829 14.698573 9.249884 -7.959348 -9.436170 -4.468750 -11.535452 5.357606 2.922566 10.212454 -1.867990 3.749788 1.462456 0.216581 -1.977217 5.382427 -0.406910 -1.453162 -4.531360 -4.677132 8.548495 5.182754 -9.056868 2.123982 -7.990880 5.454966 5.085134 2.772917 5.792824 1.371914 0.253318 -1.469367 5.499314 -6.590646 -0.557371 0.279668 3.126661 -5.251118 -1.372448 3.832898 1.651347 7.649433 -0.533246 6.392215 4.185927 5.629647 -0.395469 -9.976465 -2.677184 -3.083883 9.174529 -4.316280 5.362374 1.333022 2.969827 1.762856 -7.609512 -1.515163 -9.614248 1.690520 1.605866 -5.019286 -0.326352 -6.656554 1.006768 -1.065382 -6.203321 4.008840 -3.022228 4.486412 -0.922314 -0.641132 -3.954289 -6.686665 3.573945 2.825525 3.004760 3.944736 1.406703 -0.097777 -0.138725 -4.657487 -6.042831 3.430657 1.119579 2.776296 1.688883 -2.326143 -2.774069 2.375889 -0.764669 -0.999519 7.075609 -6.117606 4.408788 -1.037865 -4.259050 -7.543844 -6.564296 0.073519 -6.483740 4.125268 5.724679 -5.144384 2.405514 -1.621543 3.644877 -1.235827 -8.613165 0.428607 -3.603676 0.530392 8.248352 -5.292261 -4.298356 -1.080301 -0.838418 -0.127155 6.710338 0.104605 2.403995 8.208231 5.847560 3.891100 -7.228269 -0.207732 0.594457 4.595260 4.946934 5.678548 -6.567721 -4.503881 0.647023 -3.880487 -13.169359 -1.951559 3.672836 7.864778 1.232267 -9.461897 3.159235 -4.325098 8.159255 4.780012 6.455948 2.342209 -0.420796 -5.705369 2.272195 11.728868 -5.048876 6.758462 -2.648708 -8.201373 7.618062 -1.611097 5.816366 1.535265 -0.625106 1.511949 -7.058374 -0.006033 9.949816 3.254299 1.480041 3.091680 0.801339 -2.811029 -11.887843 -13.441418 -0.005601 5.169236 2.412868 14.527834 -8.004853 -6.314596 -2.204154 9.014409 -3.131922 -4.462754 1.245503 -3.569052 4.051721 -15.020101 -12.420059 12.770979 11.451275 2.935985 -0.591359 8.938924 0.282526 -4.742450 -6.111505 -5.922254 5.422714 2.476655 -1.078902 -0.726651 0.726631 -9.271084 -0.385737 0.046497 2.775432 3.991811 -5.272445 -0.749081 -1.337634 -8.877741 -4.526671 3.026311 -7.433387 -2.672184 0.227564 0.558620 0.705935 3.650089 -2.903492 -5.646934 -0.016478 -6.769630 -1.829101 1.608217 7.154846 1.984914 12.721036 10.812893 -1.212684 7.653014 1.225308 -5.659901 18.784444 -6.822612 -0.105502 -0.741132 6.699159 -0.721539 2.634092 6.663814 -3.082601 -5.310859 -8.230220 1.731044 0.062655 4.001365 -12.173779 -6.776497 -10.877846 -1.656596 1.308331 9.699856 -0.496665 16.012324 -1.858416 2.272161 -17.873571 0.418435 5.838365 -0.929984 5.923103 4.826551 -8.308976 -13.384164 -1.138954 -6.457437 1.828877 -0.690017 -6.582456 -5.727983 -3.464101 4.569968 -3.934455 2.755466 9.763642 -2.209139 5.578348 2.349141 -2.131266 -1.231541 -3.076683 6.659413 1.858527 -6.245074 9.823410 0.340556 21.256157 -0.373390 6.824021 -5.534389 0.954611 -0.144143 -4.672796 -4.547831 9.677467 8.565099 3.766136 0.218380 1.075486 -4.508618 5.873791 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = 0.253590 0.470860 1.184006 0.426304 -0.609236 -0.805338 -0.254605 -1.332772 0.800055 0.226078 0.388903 -0.121013 0.417702 -0.371785 -0.334122 0.522360 0.547564 0.368536 -0.153703 -0.450113 -0.323929 0.731345 -0.052360 -0.450353 0.486656 -0.922337 0.655434 -0.170173 0.615859 0.674558 0.337675 -0.086431 -0.088326 0.506830 0.409694 0.622110 0.320904 0.229122 -0.727462 0.173208 -0.139745 -0.276250 0.339778 0.379333 0.703645 0.302672 0.148174 0.019625 -0.548401 0.045031 -0.265045 0.625482 -0.498156 0.519632 -0.101876 0.266523 -0.139355 -0.409392 0.162336 -0.255424 -0.197873 -0.265583 -0.550056 0.055844 -0.783825 0.036020 -0.332793 -0.375761 -0.472363 -0.040900 0.236262 0.222278 -0.044604 0.049265 -0.971645 -0.080102 0.218161 0.320499 0.717136 -0.044069 0.103812 -0.558390 -0.560136 -0.714868 0.861944 0.220770 0.223715 0.355031 -0.100228 -0.405768 -0.293789 0.031516 0.374108 0.610919 -0.710738 -0.063369 -0.423679 -0.174972 -0.100953 -1.192647 0.070359 -0.456107 0.144460 -0.226573 -0.175537 0.367624 0.261613 0.558499 0.135616 -0.060371 0.272999 -0.094603 -0.294089 0.868131 0.234923 -0.646819 -0.292482 -0.205622 -0.033255 0.532163 0.049768 0.132439 0.750868 0.386250 0.816317 -0.478493 -0.195023 0.326993 0.059828 0.326237 0.504534 -0.548766 -0.424385 0.208304 -0.186674 -1.154919 -0.210329 0.052611 0.511600 -0.069578 -0.336056 -0.329159 -0.294338 0.256830 0.148118 0.193983 0.161235 -0.080676 -0.440052 0.078971 1.019345 -0.402722 0.265315 -0.448903 0.091512 0.154157 -0.080927 0.108562 -0.634356 -0.330627 0.112569 -0.318135 0.018355 0.794050 -0.143271 -0.250371 -0.064437 0.193036 -0.793422 -0.822682 -0.786595 -0.264867 0.789539 -0.068007 0.730465 -0.593707 -0.283106 -0.431442 0.543611 -0.040187 0.100059 0.196960 -0.732436 0.464589 -0.688074 -0.968542 1.319555 0.797768 0.534361 -0.220117 0.129553 0.243530 -0.905239 -0.597874 -0.336382 -0.015646 0.138687 -0.860404 -0.744463 0.151908 -0.936479 -0.132016 0.195852 0.256531 0.330042 0.286119 0.466591 0.051834 -0.162390 -0.667400 0.428706 -0.296472 -0.138173 0.083977 0.151149 0.114055 0.521288 -0.311448 -0.266979 0.307998 -0.246684 -0.082007 0.174278 0.522187 0.025708 0.889318 1.057560 0.028104 0.419479 0.125297 -0.645363 0.908031 -0.112963 0.301491 0.061907 -0.031839 -0.078101 0.238591 0.695232 -0.360360 -0.439151 -0.702350 -0.545150 0.038304 0.342015 0.018509 -0.560844 -0.440944 -0.055676 -0.136507 0.663871 0.083113 0.963555 -0.215288 0.405935 -1.062735 0.138865 0.893335 -0.190830 0.498819 0.442698 -0.630095 -0.757351 -0.183874 -0.570065 -0.593881 -0.322435 0.018162 -0.420139 -0.068739 0.519229 -0.288234 0.105973 0.616708 0.248178 0.757525 -0.355772 0.246614 -0.426152 0.062354 0.657033 -0.018789 -0.457335 0.144996 0.435366 1.490039 0.098035 0.294868 -0.324451 -0.237180 -0.042260 -0.618505 -0.558424 0.733944 0.656997 0.401917 0.165838 -0.110650 -0.178906 0.736926 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -1.043704 2.428903 9.733772 5.828295 -5.711730 -5.564879 -3.067523 -7.348237 2.665257 1.547618 6.448106 -1.975420 1.870686 1.776114 -0.165928 -1.260598 3.119704 -0.161789 -0.846931 -3.056009 -4.087976 4.453954 3.199344 -5.870169 1.578192 -5.347229 4.297811 3.360043 1.386762 3.751897 0.877820 0.316006 -0.865652 3.514059 -4.089493 -0.825798 0.044533 2.183537 -3.358229 0.096853 2.908208 1.081856 4.597360 -0.845379 3.712460 3.650046 2.894933 -0.057505 -6.871908 -1.216416 -1.794896 5.446365 -2.826478 3.222326 0.610768 2.064615 0.796716 -5.525081 -1.233102 -5.789705 0.841598 1.109051 -2.772340 0.407658 -4.528383 0.704057 -0.499467 -4.525211 3.526133 -1.262751 2.688975 -0.458800 -0.626333 -1.939553 -3.410214 2.598279 2.463020 2.251419 2.341269 -0.399589 0.881831 0.430757 -3.038575 -3.674822 1.688913 0.629157 2.263092 0.359136 -0.457752 -2.199636 2.514923 -0.442413 -0.817167 4.831247 -3.249256 2.892093 -2.169532 -2.725923 -5.303024 -4.657134 -0.089395 -4.178440 3.343010 4.134883 -4.457881 1.971467 -0.133492 2.895926 -0.096452 -5.723984 -0.749655 -2.578589 1.281981 5.888510 -2.948198 -3.494136 -0.943433 -0.857349 -0.233960 4.024122 -0.263600 1.482272 5.965175 3.975494 2.223325 -4.828945 -0.614953 -0.310499 2.231267 3.547483 4.457459 -4.214944 -3.046774 -0.229675 -2.472251 -8.369551 -1.122910 0.613924 4.631266 0.039958 -5.708626 1.998382 -3.212474 5.397599 2.640266 4.586671 1.412531 -0.591451 -3.292201 1.814569 7.417861 -3.509318 4.176978 -2.019547 -5.871605 4.269900 0.076113 3.500289 1.325802 -0.742299 0.781635 -4.886551 -0.002138 6.335585 1.822051 1.092347 2.616938 0.398958 -1.922871 -7.455920 -7.665763 0.403644 2.834582 1.075093 9.883713 -5.499036 -4.329736 -1.329430 6.130795 -1.819432 -2.451320 0.463623 -2.213687 2.471527 -8.960586 -8.316531 7.473511 6.625813 1.946873 -0.104138 5.652686 -0.356994 -3.231606 -3.871571 -3.861128 3.631335 1.741460 -0.631583 -0.803441 0.715642 -5.450074 0.280876 0.258362 2.286943 3.079288 -3.670639 -1.241338 -0.903920 -6.297106 -3.121751 2.211436 -5.588460 -1.473022 0.475604 0.248419 0.645382 2.238531 -1.961935 -4.028185 -0.741029 -3.954436 -0.768679 1.282398 4.793512 0.685812 7.663377 6.889746 -0.696923 4.475586 1.024240 -3.438129 11.848078 -4.218088 0.061992 -0.239999 4.167607 -1.184720 1.336658 4.934968 -2.058319 -3.518329 -5.462689 0.969105 -0.130071 2.248879 -7.786358 -3.550099 -6.852068 -1.509081 1.066850 6.210993 0.392222 10.141085 -0.383662 1.244453 -10.833584 0.014737 3.454251 -0.568279 3.980689 3.174025 -5.468318 -9.034979 -0.730597 -4.433963 1.392541 -0.687980 -4.128659 -4.121480 -1.395879 2.559843 -1.224164 1.711738 6.707373 -1.440466 2.809597 1.633150 -1.671206 -0.160273 -2.433591 4.460083 1.156882 -3.927269 6.270444 0.456749 13.786326 0.381706 4.181264 -3.695789 -0.524642 0.855659 -2.163417 -3.011807 6.189083 4.920789 3.022946 0.214532 0.599159 -2.948820 3.899816 -PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = -0.068584 1.348730 4.418635 2.762563 -2.876961 -2.478333 -1.339979 -3.990493 1.604481 0.517418 2.581248 -0.749127 0.807695 0.168512 -0.407214 -0.611399 1.491783 0.199540 -0.657218 -1.519005 -1.537153 2.082907 0.592545 -2.846900 0.781249 -2.617774 1.915281 1.604137 1.090185 1.216744 0.475048 -0.065182 -0.787712 1.687483 -1.858613 -0.617499 0.523920 0.855476 -2.293794 -0.279686 1.111432 0.853809 2.138667 -0.724601 1.734674 1.304973 1.232866 0.263300 -2.882204 -0.427143 -0.464763 2.641270 -0.837490 1.768137 0.718566 0.639084 0.092978 -2.449592 -0.364711 -1.734166 0.428328 0.503579 -0.882870 0.030751 -2.047363 0.136532 0.286207 -2.198265 1.641014 -0.917003 1.092577 -0.330823 -0.188700 -1.164904 -1.710849 1.129157 1.306011 1.274314 1.207936 0.371967 1.193466 -0.257343 -1.322695 -1.550603 0.591914 0.903436 1.016672 0.398658 -0.312279 -1.125723 1.436408 -0.490530 0.048044 1.981765 -1.776988 0.805678 -1.878272 -1.130675 -2.425546 -2.352466 0.102824 -1.573537 1.716206 1.390194 -2.172129 1.258613 1.032809 1.260748 0.368558 -2.186527 -0.382965 -1.027023 1.218022 3.439735 -0.897690 -2.066599 -0.557944 -0.567005 -0.867667 1.633949 -0.175180 0.554889 2.784651 1.937022 1.423169 -2.397315 -0.611753 0.273080 0.804330 1.802969 2.075297 -2.338225 -1.142224 0.002261 -1.124266 -3.987359 -0.503508 -0.249130 2.487351 -0.322058 -2.321914 0.601565 -1.519927 2.549112 0.657385 1.547242 0.683261 -0.245566 -1.612123 0.854808 3.188542 -1.096910 1.551566 -1.253994 -2.182548 1.124405 0.516023 1.473362 0.331884 -0.473675 0.326678 -2.115673 0.299760 2.689218 0.423930 0.253157 0.737455 0.384713 -1.509406 -3.660079 -3.577769 0.333184 1.189770 0.272083 4.291608 -2.550147 -2.311915 -0.833372 3.052896 -0.986109 -0.876566 0.754363 -1.587682 1.474757 -2.706662 -3.672556 3.380420 3.608156 0.663208 -0.337075 2.756244 -0.580973 -2.153311 -1.916461 -1.584144 1.238839 1.241639 -0.954754 -0.567647 0.423617 -2.418223 -0.123223 0.614314 1.155496 1.577572 -0.976479 -0.137354 -0.330603 -2.549911 -1.962451 1.530252 -1.910171 -0.001079 0.534596 0.321053 0.181988 1.653131 -1.346566 -2.191387 -0.237537 -1.455013 -0.002783 0.453361 2.149855 -0.052988 3.251895 2.694710 -0.266654 2.976925 0.584133 -1.759393 5.513564 -1.771057 0.364222 -0.009261 1.559424 -0.751449 0.771771 2.010754 -1.201998 -1.298469 -2.664802 -0.198844 -0.473673 1.069157 -3.521034 -1.777994 -2.990131 -0.701225 0.036355 2.054253 0.303567 4.496873 -0.543809 0.421636 -5.131690 -0.064880 1.874119 -0.229138 1.932406 1.459528 -2.456391 -4.389918 -0.084893 -2.171671 -0.365227 -0.580083 -2.056375 -1.904153 -0.831676 1.810919 -0.357246 0.682805 3.512099 -0.399994 1.371267 -0.303052 -0.484956 -0.053426 -1.379791 1.711895 0.309466 -1.934191 2.570768 0.321880 6.540311 0.330574 1.754452 -1.629084 -0.247324 0.369271 -1.752746 -1.559991 2.777926 1.964702 1.461756 -0.189466 0.075032 -1.661372 1.951061 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = -2.450233 10.542908 36.066214 10.789908 -21.058239 -26.979785 -9.469959 -40.279872 15.659530 9.999201 24.768233 -3.463865 11.146993 -1.486171 0.096423 8.315235 15.416265 -2.974873 -4.770462 -14.552385 -12.897789 20.499416 4.283605 -7.395911 10.984569 -23.144716 14.269060 6.116220 11.176516 14.882700 10.648098 -2.125839 -5.233902 13.722933 -2.858214 14.634803 3.684685 7.477219 -17.693889 3.801685 3.526483 -2.739666 18.366336 2.731540 23.317147 12.861990 14.053277 2.291144 -21.799018 -6.076024 -11.801971 27.041091 -13.882369 14.847886 -1.007717 3.228115 -2.249186 -15.070309 -2.533555 -11.550934 -4.504451 -2.281430 -13.841597 -0.134265 -19.253609 1.373834 -7.873980 -12.740767 0.557217 -6.721852 12.325991 -0.737574 -3.673763 0.019139 -23.801559 5.392211 9.074654 8.543057 15.056878 -0.816527 2.372534 -5.968558 -12.108373 -18.732457 17.363001 8.125938 8.281113 4.448887 -10.331541 -6.234823 -3.551870 -2.288233 4.413667 18.023538 -23.055446 4.975470 -7.305921 -11.581264 -18.995569 -26.676941 3.362440 -14.125659 11.162681 5.072120 -5.475743 4.326941 -2.558795 9.584365 -2.629047 -14.767596 2.448469 -6.340170 -0.378318 25.781226 -8.967904 -13.494474 -6.547871 -3.813741 -1.706796 14.622510 5.161089 3.366939 24.472700 16.010453 23.773180 -17.111857 -4.206691 3.865605 10.380858 12.932020 13.498292 -16.488012 -11.311863 6.398450 -13.156077 -34.699003 -7.896718 9.024934 22.546243 -0.793639 -15.857706 1.305650 -9.986220 17.720053 10.927193 8.551802 8.495296 -0.555602 -15.605153 6.696486 33.408832 -11.023685 15.304221 -11.705518 -9.028019 14.411436 -4.452946 9.986403 3.673004 -4.279331 -1.376330 -15.334149 -1.134689 23.795415 9.548880 1.662099 1.397065 7.052877 -14.883768 -27.593906 -32.326370 -5.110468 17.236423 1.894941 29.248210 -20.071601 -11.821579 -7.761790 23.258661 -4.694464 -11.364487 7.182207 -15.168525 12.334508 -28.422847 -26.540051 39.253581 36.826226 13.746414 -3.841719 17.933171 8.522690 -28.067174 -16.725462 -14.713464 10.299012 4.702118 -21.917275 -10.745153 3.067489 -27.226772 -3.295729 -2.056490 8.790461 10.316467 2.754232 7.257085 0.649749 -16.007718 -11.770687 10.348500 -13.888062 -8.562196 1.595229 2.777041 2.712636 11.500645 -11.542707 -9.954746 5.101363 -19.227202 -1.343961 6.767103 19.233949 3.724609 32.912116 27.486255 -4.220470 21.725894 -0.341328 -17.078536 32.937699 -9.482565 3.689136 -1.448423 9.746723 -0.488396 7.096666 17.698527 -10.470955 -18.285878 -21.788645 -3.392356 0.899541 12.047808 -10.393369 -20.544422 -28.820303 -0.071592 0.291854 26.284772 1.375779 37.454209 -4.498313 9.475434 -42.535789 3.027498 14.924243 -2.199170 13.163408 11.348354 -19.736680 -22.838939 -2.430397 -20.885385 -12.933856 -1.448768 -8.549209 -14.830262 -13.119176 18.528656 -9.288217 1.967024 20.078294 -1.631833 20.604378 2.388969 -2.997860 -9.827593 -1.785430 25.403869 3.892972 -15.571251 18.606851 6.351725 57.702253 0.097806 14.818443 -10.300220 -1.226208 1.381536 -15.288697 -14.001521 24.167445 24.353495 11.757589 1.642386 -1.046889 -5.653899 17.751110 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -0.819384 0.136482 2.966130 0.956317 -1.410560 -1.379655 -0.673133 -2.943557 1.178942 0.848222 2.458362 -0.219157 0.996582 -0.671336 0.005321 -0.392515 1.105896 -0.574175 -0.168833 -0.847014 0.245430 1.329374 0.599663 -0.962680 0.416494 -1.837325 0.558659 0.659282 0.727203 1.185549 0.144490 -0.307750 -0.736747 0.840099 -0.699063 0.352476 0.949146 0.658653 -1.162310 -0.400772 0.275120 0.104552 1.245835 -0.784739 2.059324 0.138139 0.831890 -0.154274 -1.977819 -0.875138 0.053545 1.499645 -1.108533 1.074454 0.694585 -0.036566 -0.447629 -0.860225 -0.349893 -2.126171 0.521131 -0.009683 -0.180518 -0.004730 -0.872754 0.200984 0.158092 -1.130071 0.719602 -1.461286 0.548104 0.120590 0.464010 0.444936 -1.179086 0.820804 1.047420 0.462153 0.545611 0.340159 0.365540 -0.569936 -0.436318 -0.973429 0.382906 1.030124 0.570684 0.382527 -1.137660 0.582816 0.959606 0.011587 -0.101404 1.138285 -1.647329 0.000818 -0.437349 -0.789391 -0.919967 -1.708626 -0.007979 -1.205383 0.855376 1.162357 -1.304938 0.667914 -0.691025 1.066688 -0.726218 -1.253172 0.337502 -0.621746 0.330381 1.728173 -1.431920 -0.857159 -0.799230 0.033303 0.246560 0.723349 -0.504937 0.644164 1.268555 1.324395 1.380298 -1.920832 -0.277834 0.635497 1.407086 1.028815 0.774514 -1.209470 -0.492477 0.203776 -1.625642 -2.669187 -0.915673 0.253640 1.851323 -0.027286 -1.602386 0.171816 -1.068390 2.423305 1.202909 0.859498 0.333137 0.428436 -1.430171 0.565035 1.707816 -0.831309 1.462996 -0.275418 -0.953355 0.536400 -0.100291 1.189738 0.146347 0.044707 0.343383 -1.606884 -0.129053 1.815653 1.079994 1.055586 -0.889690 0.385379 -0.527960 -2.474901 -2.894678 -0.611672 1.331559 0.555582 2.147004 -1.563191 -1.822438 -0.418066 1.933504 -0.459060 -1.408816 0.415184 -1.086650 0.985506 -2.397521 -2.424011 2.857579 3.617591 1.001127 0.250639 1.828076 0.059959 -1.970053 -0.635030 -0.679248 0.854758 0.118842 -2.125483 -0.658152 0.453553 -1.827121 -0.659027 -0.041783 0.479659 0.410844 0.090296 0.687596 1.027971 -0.873085 -0.384626 0.922360 -1.036201 -0.888745 -0.142294 0.388224 0.871386 0.919531 -1.469514 -0.896881 0.441864 -1.846640 -0.113163 0.360968 1.327608 0.585946 2.409279 2.092962 -0.325293 1.615206 -0.194238 -1.286933 2.540541 -1.289814 0.030560 -0.058259 0.658035 0.011799 0.600807 1.312489 -0.880682 -0.775887 -1.794329 -0.555522 -0.085023 1.404476 -1.537282 -2.376141 -1.794207 0.344600 0.236875 1.292706 0.078246 3.143209 -0.389542 0.562311 -3.607288 -0.185895 1.038501 -0.059935 1.227045 0.794386 -1.348753 -3.113909 -0.108259 -1.554654 -0.750744 -0.183175 -0.997279 -0.760221 -1.332240 2.183486 -0.438831 0.240222 1.135942 0.068082 2.064436 0.886856 -0.311583 -0.516683 -0.231751 0.954235 0.472040 -1.188531 1.670474 0.548303 4.561535 -0.221684 0.771560 -0.906225 0.553529 -0.044729 -1.110816 -0.913460 1.907481 2.398436 1.184930 -0.620068 -0.329299 -1.173075 1.405114 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.063568 0.265041 0.769921 0.241068 -0.351293 -0.645405 -0.113357 -0.857622 0.429571 0.243443 0.540157 0.096186 0.565992 -0.236154 -0.068758 -0.127949 0.459695 0.144471 0.063357 -0.258250 -0.071413 0.623576 -0.067266 -0.142247 0.144407 -0.448289 0.493869 0.208624 0.432852 0.635819 0.142832 -0.005586 -0.321676 0.216402 -0.097663 -0.069869 0.071281 0.263218 -0.458318 -0.079584 -0.010122 -0.217429 0.507111 0.126199 0.349739 0.074388 -0.048142 0.062059 -0.229672 -0.264959 -0.063909 0.077326 -0.196460 0.376519 -0.082169 -0.240348 0.089293 0.183058 0.201746 -0.380955 0.174003 -0.236868 -0.141417 -0.014314 -0.439927 -0.010294 -0.396757 -0.439536 -0.123660 -0.430160 0.158235 0.019979 0.110395 -0.120256 -0.914417 0.044532 0.191143 0.104383 0.413265 0.340336 -0.060840 -0.285706 -0.402756 -0.474234 0.331091 0.372139 0.099349 0.338615 -0.558082 -0.265904 0.109974 0.096434 0.271023 0.278175 -0.302210 0.178151 -0.330258 -0.113684 0.023610 -0.864122 0.125184 -0.257553 0.126296 -0.032848 -0.102020 0.014123 -0.107751 0.196824 -0.064295 -0.308694 0.355961 -0.281317 -0.193290 0.656606 -0.104320 -0.347541 -0.344742 -0.075185 0.145598 0.341026 0.030134 0.062845 0.159328 0.243560 0.385411 -0.510375 -0.103253 0.411646 0.112782 0.176986 0.119644 -0.218320 -0.208981 0.218155 -0.485743 -0.831664 -0.221736 0.185545 0.446886 -0.214024 -0.141916 0.108993 -0.456285 0.179088 0.452819 0.219551 0.235217 0.107026 -0.388423 0.124987 0.476500 -0.228321 0.285436 -0.072048 -0.301093 0.325935 -0.003110 0.257163 -0.277171 -0.141368 0.031591 -0.154946 0.118752 0.583496 0.026112 0.217653 -0.105876 0.112645 -0.433853 -0.580009 -0.767259 -0.118784 0.785314 0.367633 0.556025 -0.418846 -0.135223 0.033875 0.478436 -0.002589 -0.287563 0.265006 -0.231363 0.328565 -1.033058 -0.646240 0.784146 0.683658 0.305242 -0.172890 0.053940 0.166203 -0.303988 -0.443406 -0.291514 0.099994 -0.115030 -0.670205 -0.328524 0.134370 -0.556616 -0.027519 0.181984 0.093696 0.333811 -0.109028 0.377706 -0.183439 -0.096426 -0.481476 0.433464 -0.231498 -0.111378 -0.007413 0.007762 0.089365 0.238145 -0.136003 -0.140910 0.239897 -0.236922 -0.024552 -0.046866 0.207947 -0.023178 0.698284 0.511236 -0.161503 -0.018140 0.000554 -0.440581 1.052838 -0.424964 0.139353 0.039899 0.309284 0.098121 0.288397 0.439311 -0.274352 -0.230834 -0.621055 -0.393518 0.200396 0.296407 -0.366499 -0.548621 -0.650505 0.193156 -0.224704 0.653703 -0.046965 0.921249 -0.288496 0.222136 -0.639184 0.075399 0.309583 -0.148506 0.511549 0.201830 -0.406440 -0.311412 -0.147526 -0.576476 -0.099416 -0.050275 -0.251170 -0.188988 -0.081292 0.149639 -0.226605 0.081819 0.222667 -0.213470 0.554069 -0.169556 0.007931 -0.385151 0.122413 0.325931 0.000000 -0.340144 0.389277 0.164606 0.897382 0.025088 0.275164 -0.161390 0.202567 -0.179614 -0.570297 -0.362947 0.640753 0.520702 0.352783 -0.030649 0.078136 0.012974 0.344791 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = -0.260628 0.333435 1.731486 0.416982 -0.693480 -1.566681 -0.361392 -2.154712 1.107542 0.594881 1.592895 0.015094 1.162509 -0.563572 0.066883 0.262515 0.999716 -0.054182 0.005735 -0.625012 -0.156563 1.600647 -0.024764 -0.219994 0.381962 -1.174297 0.565788 0.509415 0.783482 1.027856 0.386818 -0.027179 -0.412835 0.470452 -0.230745 0.419658 0.316204 0.415839 -0.980759 -0.238450 -0.107865 -0.388548 1.028892 0.101857 1.189717 0.007513 0.508063 0.056919 -0.692431 -0.557550 -0.371104 1.008559 -0.504996 0.666817 -0.015988 -0.295466 0.126242 -0.165914 0.133670 -0.917293 0.102007 -0.342163 -0.668444 -0.050098 -0.739219 0.125034 -0.483472 -0.669015 -0.120355 -0.779769 0.483191 -0.016878 0.007930 -0.046738 -1.772357 0.127496 0.444384 0.171886 0.734030 0.455535 -0.083829 -0.562200 -0.772390 -0.967390 1.153984 0.822338 0.327812 0.604646 -1.330160 -0.153374 -0.113089 0.011184 0.456496 0.648528 -1.104328 0.143254 0.052666 -0.531127 -0.444586 -1.475754 0.284207 -0.649887 0.260909 0.084181 -0.021211 0.179774 -0.570742 0.428426 -0.494654 -0.736724 0.622089 -0.556868 -0.348303 1.322398 -0.544364 -0.562412 -0.754824 -0.078178 0.131148 0.793556 0.141478 0.261172 0.822135 0.639736 0.871160 -1.028365 -0.304792 0.737765 0.756707 0.488446 0.290833 -0.674977 -0.516172 0.429992 -1.028491 -1.903608 -0.699379 0.616246 1.096338 -0.179508 -0.632466 0.230673 -0.571439 0.894724 1.042755 0.313008 0.290722 0.249095 -0.990679 0.306089 1.325833 -0.614142 0.870092 -0.316218 -0.507758 0.688229 -0.299832 0.488664 -0.078991 -0.252521 -0.109393 -0.449035 0.088829 1.198504 0.376553 0.446706 -0.519716 0.395880 -0.785072 -1.331916 -2.089026 -0.408896 1.357826 0.641152 1.586507 -0.947757 -0.780562 -0.169430 1.051753 -0.276139 -0.834761 0.549879 -0.884798 0.679948 -2.074266 -1.537023 2.208398 1.878724 1.014713 -0.139863 0.799409 0.425276 -1.164818 -0.713860 -0.551240 0.475916 0.073484 -1.704029 -0.483571 0.226155 -1.407989 -0.316784 -0.157788 0.265019 0.175277 0.123171 1.122291 -0.265989 -0.392830 -0.511234 0.717663 -0.472583 -0.427878 -0.179448 0.064437 0.254489 0.629840 -0.624017 -0.220210 0.467857 -0.978824 -0.081697 0.116724 0.660358 0.359559 1.800464 1.631412 -0.233949 0.874476 -0.228415 -0.909472 1.655612 -0.686464 0.203829 -0.072457 0.487340 0.242048 0.497659 0.978237 -0.519504 -0.668608 -1.203076 -0.452710 0.389282 0.712247 -0.503058 -1.375602 -1.530694 0.159412 -0.152301 1.526030 -0.163400 2.115550 -0.618449 0.553461 -2.145897 0.186724 0.636138 -0.234972 0.800311 0.382534 -0.972753 -1.047972 -0.182952 -1.195523 -0.870915 -0.001279 -0.627504 -0.593348 -0.868371 1.011250 -0.952821 0.079101 0.602128 -0.077916 1.292874 0.024991 -0.023860 -0.772046 0.356542 0.994276 0.048203 -0.736065 0.815064 0.331462 2.652853 -0.143851 0.702180 -0.481547 0.601094 -0.321560 -1.181110 -0.666571 1.293979 1.513637 0.543455 -0.174701 0.046749 -0.159922 0.927530 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = -1.833463 0.080165 4.861780 1.323895 -2.413272 -3.824522 -1.311291 -5.884188 3.436727 1.949832 5.106715 -0.053932 3.106360 -2.044827 0.115209 0.317262 2.608690 -1.145123 -0.013080 -1.687228 -0.493106 4.714631 0.525371 -0.883077 1.106233 -3.665685 2.116207 0.424757 1.482937 3.117444 1.203241 -0.093978 -1.283324 1.323578 0.371580 2.421452 1.199642 1.235357 -1.759471 -0.903164 0.346360 -1.678681 2.496904 0.149529 4.109964 -0.190074 1.317001 -0.272507 -2.779096 -1.763673 -0.785839 2.341559 -2.345083 1.566616 0.665169 -0.268635 0.287497 -1.245098 -0.152313 -3.682894 0.053521 -1.858368 -2.121588 0.135264 -1.957211 0.722750 -1.349483 -1.058628 -0.310638 -2.676505 1.371436 0.170703 0.341423 0.690659 -3.979918 0.415116 1.139554 0.122516 1.894355 1.212042 -0.819443 -1.661218 -2.149596 -2.670192 3.218256 1.804407 0.736261 1.157611 -3.165688 0.660403 -0.388365 -0.026580 0.903191 2.147793 -3.719315 -0.203822 1.057158 -1.695071 -0.990410 -3.881383 0.728007 -2.255537 0.721459 1.532346 -1.382808 0.370951 -1.994880 1.281012 -1.740299 -2.119727 1.833170 -1.687633 -0.521725 3.112374 -1.925121 -1.394147 -2.480173 -0.241808 1.239087 2.226445 0.292648 1.063968 2.921395 1.869035 2.859718 -2.833402 -0.901940 2.359400 2.771623 0.968139 0.623558 -2.140494 -1.346793 1.221184 -2.579388 -5.057858 -2.456989 1.527341 3.131922 0.181604 -2.509642 0.482516 -1.129696 2.942280 3.261065 1.142790 0.364621 0.980976 -3.091966 0.726891 3.816582 -1.600167 2.310493 -0.804477 -1.593369 2.467397 -1.219653 1.203930 0.084352 0.035322 -0.485492 -1.883600 -0.002078 3.191719 1.001057 1.487533 -2.045011 1.337005 -1.575365 -3.939229 -6.124379 -1.299548 4.175496 2.369513 4.788420 -3.093488 -1.990886 -0.542608 3.050520 -0.144840 -2.710033 1.136658 -2.335490 1.787875 -6.278331 -4.715194 6.742713 5.409771 3.081119 0.141062 2.536093 1.127337 -3.692263 -1.409502 -2.189362 1.766851 0.198192 -3.983947 -0.830807 0.704651 -4.106008 -1.616633 -0.756367 0.790621 0.811228 -0.405533 2.644456 0.081774 -0.527359 -0.985938 2.123869 -1.191539 -2.094362 -0.891761 0.288846 1.283992 1.761943 -1.561179 -0.334116 0.823473 -2.857456 -0.500033 0.973660 1.921140 1.178200 5.294063 5.298437 -0.954003 1.517744 -0.940557 -2.141091 4.256674 -1.697144 0.228772 -0.273843 1.084701 1.369160 1.010961 3.096586 -1.411541 -1.925063 -2.969911 -0.756436 0.681722 2.219156 -2.488872 -4.393742 -4.483588 0.584243 -0.014562 4.109834 -0.109732 6.428102 -1.360535 1.356584 -6.610671 0.302844 2.803154 -0.479168 2.102538 0.875103 -2.564576 -3.338887 -0.629064 -3.087324 -1.852784 -0.161733 -1.154395 -1.816090 -2.762116 3.724013 -2.572837 0.221830 1.632138 0.343659 3.804989 1.233325 -0.084078 -2.326913 0.922335 2.039768 0.384139 -1.897991 3.009713 1.071116 7.429333 -0.918396 1.383935 -1.292880 2.446197 -1.396572 -3.218407 -1.498720 3.246923 4.566539 1.532541 -0.705054 -0.070052 -1.002307 2.722099 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.137287 0.402115 1.653936 0.705834 -1.091195 -1.487060 -0.398140 -2.022887 1.172423 0.480308 1.081101 0.117626 0.939750 -0.721470 -0.208741 0.428360 1.058691 0.194482 -0.109972 -0.756774 -0.427247 1.343372 0.169122 -0.555796 0.621181 -1.149262 1.030201 0.027100 0.741718 1.198311 0.539480 -0.069429 -0.460138 0.639556 0.469521 0.825635 0.293980 0.440473 -0.926998 0.059536 0.041888 -0.706437 0.925330 0.447800 1.193763 0.168700 0.395934 0.076206 -1.009485 -0.390386 -0.415576 0.700366 -0.881013 0.769993 -0.136005 0.085531 0.102769 -0.318303 0.183453 -0.821106 -0.142757 -0.709559 -0.839593 0.064073 -1.030483 0.137735 -0.693267 -0.623391 -0.555884 -0.464451 0.452774 0.221667 -0.054725 0.141375 -1.623889 -0.163494 0.334005 0.354292 1.034110 0.321188 -0.172091 -0.855768 -0.962780 -1.077195 1.200543 0.293291 0.311196 0.567830 -0.758317 -0.312183 -0.249567 0.130494 0.578501 0.738877 -1.165474 -0.064018 -0.179509 -0.432693 -0.231000 -1.725949 0.279063 -0.658967 0.220694 -0.080701 -0.426008 0.202004 -0.344040 0.565144 -0.312632 -0.444805 0.544260 -0.438662 -0.484864 1.256722 -0.128140 -0.766307 -0.707784 -0.208912 0.325691 0.809416 0.185625 0.256847 1.010252 0.696981 1.032280 -0.920759 -0.321392 0.549277 0.477969 0.404639 0.518882 -0.557586 -0.682589 0.490038 -0.684404 -1.789323 -0.595122 0.454436 1.013018 0.093096 -0.565078 -0.213684 -0.611210 0.543252 0.690764 0.439919 0.274858 0.102513 -0.910843 0.247097 1.385998 -0.595427 0.646756 -0.359598 -0.142732 0.742765 -0.317942 0.247066 -0.566293 -0.430704 -0.089980 -0.417654 -0.032208 1.197106 0.032414 -0.008609 -0.292857 0.433119 -0.933902 -1.311341 -1.667778 -0.334071 1.589228 0.533644 1.206461 -1.076971 -0.282196 -0.355898 0.821626 -0.008947 -0.468276 0.353073 -0.892934 0.716544 -1.809261 -1.483666 2.227115 1.390517 0.888388 -0.110981 0.270296 0.481914 -1.230186 -0.798903 -0.668118 0.262650 0.063202 -1.328757 -0.779133 0.314834 -1.501795 -0.357145 0.174517 0.384352 0.475480 -0.048413 0.862001 -0.039099 -0.157500 -0.800610 0.675340 -0.457614 -0.463478 0.000350 0.055297 0.371782 0.628094 -0.245218 -0.187201 0.270421 -0.639369 -0.209733 0.188391 0.813691 0.228037 1.619699 1.722185 -0.257484 0.357812 -0.060973 -1.012221 1.546905 -0.503844 0.423936 0.033660 0.331327 0.301789 0.347508 1.231031 -0.561862 -0.591482 -1.101753 -0.707781 0.358416 0.768997 -0.529357 -1.078547 -1.298842 0.162735 -0.164840 1.331474 -0.132991 1.759397 -0.527138 0.550246 -1.779150 0.188341 1.114897 -0.227477 0.804303 0.480400 -0.917824 -0.922455 -0.375512 -1.136670 -0.448160 -0.242009 0.069532 -0.620885 -0.210759 0.777802 -0.677411 0.108567 0.649101 -0.044581 1.311842 -0.134499 0.222255 -0.714685 0.222645 0.881274 0.100931 -0.718942 0.758707 0.578221 2.307591 0.137421 0.487507 -0.383670 0.178755 -0.301551 -1.113530 -0.782972 1.222631 1.355106 0.529365 0.183840 0.001103 -0.096921 1.050612 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.463800 0.313980 2.643212 1.367229 -1.312725 -2.373463 -0.603398 -3.583389 2.123469 1.115596 2.492040 0.529394 2.115575 -1.268924 -0.144262 -0.140217 1.735207 -0.070946 0.147198 -0.959726 -0.343800 3.547639 0.190350 -0.547788 0.378110 -2.067212 1.655164 0.767873 1.782212 2.203294 0.607047 0.053874 -0.687345 0.725743 -0.490506 0.360235 -0.379300 0.973438 -1.538790 -0.720340 0.502212 -1.134767 2.193680 0.293100 1.687595 -0.655400 1.010614 -0.205669 -1.016040 -1.119355 -0.971660 1.030678 -1.039107 1.182364 -0.449649 -0.847462 0.591306 0.355555 0.277826 -1.326897 0.267843 -0.768920 -1.173707 -0.145128 -1.488667 0.314722 -1.436444 -1.103562 -0.291417 -1.453103 0.923075 0.256252 0.227963 -0.725401 -3.725220 0.260854 0.535224 0.075243 1.340069 1.602336 -0.415263 -1.018891 -1.630090 -1.729991 1.999216 1.325084 0.113562 0.983940 -2.222641 -0.678415 -0.102475 0.415749 0.785609 1.070040 -1.862474 0.648284 -0.371629 -0.735787 -0.136262 -2.554497 0.449617 -1.374877 0.384519 0.268913 -0.422804 0.194556 -0.461240 0.299585 -0.719990 -1.671989 0.844218 -1.014654 -0.720872 2.466671 -0.828513 -1.089722 -1.412688 0.096025 0.385025 1.177535 0.309799 0.636369 1.508171 1.005912 1.461695 -1.976798 -0.262241 1.690616 0.971925 0.591705 0.169627 -0.686783 -0.934508 0.737813 -1.245135 -3.344315 -1.298656 1.456358 1.854481 -0.398707 -0.686766 0.546211 -1.021713 1.322201 2.171788 0.332921 0.817385 0.742739 -1.606770 0.791670 2.453604 -0.807676 1.135642 -0.817616 -1.348013 2.292634 -0.775654 0.999679 -0.629254 -0.064067 -0.226036 -1.005665 0.559067 2.241910 -0.210926 0.724442 -0.561555 0.618771 -0.906307 -2.363417 -3.570880 -0.533683 2.665611 1.919781 2.733261 -1.669932 -0.496266 0.351438 1.277199 0.157484 -1.396803 1.135966 -1.340849 1.232036 -4.637592 -2.803510 3.623289 2.653260 1.263912 -0.101768 0.907901 1.020289 -1.207496 -1.399480 -1.366257 1.114062 0.441534 -2.446063 -0.556649 0.462826 -2.332521 -0.702925 0.210833 0.198911 0.844414 -0.859209 1.651809 -1.090932 -0.710704 -1.347469 1.988787 -1.176830 -0.799554 -0.537659 -0.054546 0.209489 1.094310 -0.285539 -0.048675 0.367328 -1.058983 -0.253903 -0.073056 0.803674 0.119379 2.486251 3.150760 -0.918130 0.551975 -0.248203 -1.418626 3.551201 -1.698455 0.030814 -0.020838 1.022634 0.607369 1.126491 1.662829 -0.938642 -0.875089 -2.147078 -0.490768 0.816393 1.218873 -1.765093 -1.877108 -2.850597 0.258991 -0.414523 2.712519 -0.085221 3.810166 -1.648422 0.743021 -3.467886 0.274784 1.187534 -0.116262 2.061391 0.551408 -1.511733 -0.855065 -0.690299 -1.867507 -0.061050 -0.123308 -1.254718 -1.213216 -1.147531 1.175622 -1.712558 0.456425 0.939032 -0.831967 2.274911 -0.467589 -0.085478 -1.642887 0.720972 0.986770 0.435465 -1.170198 1.753097 0.153130 3.780097 -0.417489 1.230354 -0.928766 1.526241 -1.203439 -2.526445 -1.034514 2.410999 2.374932 0.784274 -0.125497 0.110939 -0.068993 1.495407 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.644981 0.359725 4.169721 1.843167 -1.667801 -3.330883 -0.985105 -5.799037 3.485574 2.000000 3.922000 0.675686 3.319475 -2.035505 -0.326289 -0.069501 2.529158 -0.237355 0.178301 -1.426254 -0.282389 5.516036 0.049929 -0.738679 0.596507 -3.624529 2.541738 1.061729 2.670249 3.275531 0.928475 0.224805 -0.851299 1.161894 -0.777494 0.844859 -0.279348 1.531935 -2.135514 -1.213236 0.828873 -1.353915 3.079382 0.474765 2.904514 -0.968932 1.319866 -0.496732 -1.332356 -1.699380 -1.148057 1.514363 -1.511907 1.726875 -0.761385 -1.150009 0.667359 0.233760 0.451454 -1.975663 0.590964 -0.874677 -1.857142 -0.192106 -2.117454 0.542061 -1.732976 -1.489818 -0.528932 -2.337679 1.364466 0.299241 0.186328 -1.181096 -5.637307 0.399025 0.903814 -0.226782 2.061003 2.203472 -0.740175 -1.705986 -2.433860 -2.727945 3.369599 2.548963 0.082271 1.660633 -3.229015 -1.031920 -0.307555 0.536088 1.268251 1.971639 -2.913824 0.666388 -0.296539 -1.173524 -0.112033 -3.561074 0.812167 -2.248770 0.606344 0.511026 -0.623971 0.542216 -0.246670 0.618652 -1.100601 -2.281512 1.225837 -1.586265 -0.729116 3.778337 -1.067792 -1.818279 -2.333104 0.018114 0.616592 1.820651 0.357399 0.910044 2.796220 1.477472 2.304119 -3.124279 -0.534231 2.917362 1.441906 0.892554 0.069602 -1.578440 -1.299541 1.098625 -1.947501 -5.079533 -2.172487 1.784865 2.769403 -1.099346 -1.099387 1.087129 -1.323981 2.027922 3.414759 0.246229 1.045312 1.283648 -2.539279 1.120888 3.907268 -1.163759 1.538451 -1.548281 -1.988225 3.188583 -1.166885 1.485800 -0.893818 -0.085143 -0.437676 -1.626753 1.153741 3.470878 -0.574238 1.283918 -1.208679 1.057894 -1.392809 -3.429229 -5.599095 -1.107096 3.854604 2.860965 4.485638 -2.555913 -0.949796 0.344273 2.167538 0.326041 -1.932394 1.862147 -2.260194 1.922901 -6.664867 -4.347595 5.495062 4.187417 2.328583 -0.228763 1.652759 1.373850 -1.802712 -1.926763 -1.856391 1.741852 1.012424 -3.724753 -0.717711 0.665025 -3.565750 -1.334488 0.062442 0.257157 1.008534 -1.042509 2.676175 -1.598802 -0.985589 -2.061653 3.053449 -1.675461 -1.143000 -1.098869 0.092107 0.130404 1.769559 -0.767260 -0.046288 0.675595 -1.447262 -0.192898 0.174432 1.018971 0.184092 3.546570 4.886971 -1.552313 1.004199 -0.549308 -1.851798 5.038929 -2.324517 -0.044026 0.110148 1.228195 0.915442 1.709113 2.409343 -1.440274 -1.101947 -3.303864 -0.699267 1.185548 1.827035 -2.383528 -2.728590 -4.183098 0.239085 -0.780111 4.223905 0.064028 5.883728 -2.399531 1.293130 -5.387125 0.422497 1.859771 -0.259802 2.939942 0.851095 -2.343426 -1.668988 -0.909506 -2.780891 -0.837108 -0.256120 -1.950685 -2.054467 -2.035934 2.067336 -2.652438 0.685093 1.627241 -0.837177 3.332372 -1.014329 -0.004902 -2.599182 1.182756 1.300571 0.556043 -1.792147 2.220354 0.233573 5.789437 -0.936614 2.104985 -1.438132 2.612176 -2.049775 -3.962227 -1.564568 3.617913 3.565572 1.214898 -0.271390 -0.005668 -0.218798 2.472424 -PE-benchmarks/eulerian-path-and-circuit.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.560239 0.158232 2.510528 1.003174 -1.139379 -1.852612 -0.675708 -2.754246 1.672612 0.736648 1.977166 -0.030312 1.215068 -0.987157 0.013147 0.471796 1.357084 -0.249148 -0.334982 -0.994860 0.087410 1.848500 0.499209 -1.146682 0.775345 -1.923306 0.712245 0.410788 0.698267 1.334512 0.561726 -0.061624 -0.408056 0.846965 -0.082433 1.170788 0.866650 0.413799 -1.234227 -0.301974 0.128193 0.014958 1.146277 0.071605 2.040164 0.155400 0.847784 -0.024095 -1.574466 -0.732774 -0.376014 1.656347 -1.037065 1.011324 0.121328 0.421065 0.002377 -1.123378 -0.172211 -1.785542 0.068736 -0.077743 -1.031574 -0.031041 -0.992731 0.324422 0.090865 -0.644106 -0.112737 -0.904687 0.743164 0.106133 -0.108061 0.067412 -1.603187 0.089454 0.542104 0.436462 1.055069 0.164259 -0.138014 -1.019907 -0.817051 -1.189758 1.536468 0.618151 0.491554 0.834122 -0.935530 -0.028554 -0.186848 -0.140936 0.396987 0.996512 -1.713647 -0.298244 0.478237 -0.786524 -0.629023 -1.256510 0.368393 -0.999871 0.342336 0.556749 -0.420070 0.578027 -0.549970 0.966753 -0.779616 -0.670680 0.676463 -0.473844 -0.376616 1.642850 -0.765762 -0.853202 -0.876121 -0.107143 0.192833 1.251223 -0.101936 0.607433 1.535913 1.118002 1.262522 -1.413109 -0.380543 0.716816 1.350657 0.753719 0.702677 -1.200550 -0.789605 0.511691 -1.162135 -2.479569 -1.070238 0.514221 1.779159 0.355581 -1.585216 0.156382 -0.583455 1.558912 0.938299 0.450371 0.164145 0.264582 -1.526479 0.414010 2.081067 -0.898387 1.162937 -0.502644 -0.313721 0.620973 -0.451307 0.538481 -0.117904 -0.477843 0.049216 -0.898431 -0.008844 1.623884 0.613356 0.447078 -0.870366 0.727941 -0.911332 -2.104391 -2.800928 -0.754218 1.351413 0.404648 2.230921 -1.422110 -1.239091 -0.914632 1.558431 -0.628655 -0.854078 0.397248 -1.497792 0.953298 -2.184509 -2.125725 3.341744 2.722506 1.520017 0.175349 1.384289 0.425422 -1.670978 -0.541733 -0.527207 0.618588 0.577786 -1.626882 -0.568688 0.268986 -2.013867 -0.977191 -0.149811 0.520753 -0.135557 0.209947 1.087439 0.349818 -0.650984 -0.500153 0.563309 -0.809387 -0.604316 -0.168547 0.209050 0.541334 0.942858 -0.992548 -0.399506 0.549966 -1.328502 -0.283570 0.421963 1.368834 0.784739 2.038331 2.419163 -0.221865 1.638904 -0.239940 -1.400552 1.982641 -0.667407 0.312388 -0.137556 0.373383 0.514384 0.358774 1.311169 -0.748558 -0.565660 -1.568529 -0.469322 0.418778 1.195286 -0.934241 -1.768692 -1.703883 -0.038027 0.038293 1.701846 -0.210469 2.707647 -0.722707 0.644897 -3.348868 0.147350 1.439555 -0.175977 0.590924 0.698650 -1.272782 -2.711005 -0.187107 -1.537199 -1.100234 -0.352213 -0.495599 -0.937301 -1.125933 2.014190 -1.180947 0.224545 1.370824 0.369147 1.775815 0.170191 0.099023 -0.764163 0.090993 0.764618 0.313070 -1.091326 1.024371 0.637105 3.771513 -0.217751 0.973225 -0.856220 0.703604 -0.481577 -1.390140 -0.911451 1.671273 2.184339 0.552080 0.125942 -0.174807 -0.704295 1.566556 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.171744 0.192227 0.804822 0.267422 -0.260729 -0.542263 -0.190894 -0.848946 0.445031 0.258651 0.644316 0.017737 0.551444 -0.217358 -0.039876 -0.137217 0.401029 -0.014762 0.143905 -0.190612 -0.032037 0.790793 0.091919 -0.140660 0.070400 -0.567119 0.423167 0.101545 0.430710 0.658705 0.071865 -0.015863 -0.194582 0.210189 -0.143384 0.012727 0.091791 0.307011 -0.358853 -0.116490 -0.003189 -0.201035 0.424912 0.043192 0.385656 0.041577 0.028894 -0.028234 -0.274432 -0.287434 -0.124905 0.181730 -0.321827 0.310411 -0.037009 -0.238612 0.096924 0.130085 0.051412 -0.548461 0.115427 -0.203953 -0.148191 0.011735 -0.417823 0.119737 -0.375672 -0.330792 -0.062101 -0.303522 0.254746 0.159898 0.264631 -0.011370 -0.841458 0.183312 0.149099 0.094018 0.328826 0.252619 -0.075213 -0.173615 -0.338835 -0.501264 0.416263 0.347400 0.099731 0.219927 -0.431470 -0.103567 0.054391 0.077920 0.141582 0.326276 -0.286279 0.239288 -0.224550 -0.092255 0.044516 -0.805558 0.002307 -0.411088 0.096501 0.197889 -0.084643 0.009856 -0.183018 0.232083 -0.153720 -0.468561 0.369898 -0.223508 -0.287438 0.589652 -0.253417 -0.191131 -0.249301 0.005523 0.155428 0.363561 0.022063 0.238560 0.171203 0.299666 0.338636 -0.489115 -0.061663 0.421009 0.282437 0.150652 0.144196 -0.303138 -0.261730 0.177760 -0.393828 -0.842359 -0.283748 0.330960 0.459536 -0.142183 -0.306212 0.189338 -0.354753 0.328141 0.540848 0.200706 0.190827 0.109975 -0.407884 0.224709 0.576885 -0.295055 0.368982 -0.070173 -0.339044 0.477546 -0.167522 0.314898 -0.221949 0.023681 0.061320 -0.324332 0.059286 0.616174 0.130446 0.322797 -0.120391 0.094229 -0.298030 -0.700155 -0.790837 -0.156779 0.760844 0.258604 0.619236 -0.392195 -0.232056 0.108774 0.516129 -0.003311 -0.334063 0.181903 -0.237667 0.307965 -1.166115 -0.762693 0.883035 0.726143 0.295443 -0.057405 0.159289 0.320728 -0.326216 -0.389713 -0.322179 0.235089 -0.121158 -0.660816 -0.369595 0.113800 -0.563908 -0.121691 0.106712 0.078706 0.270394 -0.089354 0.250564 -0.061502 -0.194161 -0.323481 0.446589 -0.336428 -0.248807 -0.075451 0.028523 0.122707 0.230534 -0.172093 -0.046752 0.282582 -0.332172 -0.074338 0.026685 0.220932 0.045432 0.740345 0.662857 -0.141413 -0.015992 0.014405 -0.410522 1.009786 -0.425979 0.020884 -0.022623 0.287409 0.075443 0.279880 0.429481 -0.242959 -0.370492 -0.640866 -0.231196 0.164682 0.294945 -0.388075 -0.648482 -0.588339 0.145654 -0.045607 0.674972 0.003177 1.013687 -0.302623 0.188657 -0.807772 0.068359 0.337870 -0.121743 0.538387 0.218114 -0.338030 -0.475146 -0.202275 -0.479242 -0.083572 -0.137412 -0.422844 -0.175639 -0.248458 0.273966 -0.296465 0.111546 0.222698 -0.068130 0.605723 0.031749 -0.076295 -0.498417 0.192242 0.256028 0.040963 -0.337678 0.492749 0.108020 1.011200 -0.149750 0.240322 -0.267462 0.252972 -0.211898 -0.475400 -0.232228 0.688460 0.603196 0.286540 -0.039388 0.045968 -0.078231 0.337341 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.425667 -0.004763 0.848537 0.175063 -0.099970 -0.954627 -0.281519 -1.036677 0.473682 0.290030 1.102856 -0.087132 0.679242 -0.282313 0.331175 0.284738 0.543379 -0.342486 0.127637 -0.277554 0.107160 0.951165 0.367839 -0.057515 0.126453 -0.577936 -0.105920 0.337631 0.201198 0.541136 0.120386 -0.017697 -0.017769 0.184207 -0.337599 0.459095 0.286580 0.253607 -0.347760 -0.152438 -0.180239 -0.058414 0.477861 -0.084164 0.750397 0.068122 0.566207 0.022238 -0.489113 -0.503440 -0.350247 0.885341 -0.464608 0.243404 -0.079443 -0.166656 0.239778 -0.154741 -0.220747 -0.965247 -0.032175 0.014595 -0.443566 -0.030657 -0.239493 0.288269 -0.027815 -0.221638 0.032678 -0.148917 0.486463 0.143505 0.098531 0.286025 -0.732075 0.161047 0.153323 0.134206 0.251626 -0.052308 -0.145269 -0.156145 -0.244037 -0.510457 0.847305 0.236137 0.347934 0.296554 -0.711049 0.302035 -0.224209 -0.053656 0.092937 0.238199 -0.423526 0.090741 0.660836 -0.304448 -0.373027 -0.437317 0.081763 -0.449321 0.010867 0.380552 0.366319 -0.048268 -0.914081 0.292956 -0.752881 -0.643482 0.442787 -0.255336 -0.548140 0.436575 -0.755297 0.152660 -0.201940 0.111896 0.157565 0.551865 0.132369 0.420820 0.260802 0.493688 0.212639 -0.494639 -0.138690 0.160681 0.960847 0.270480 0.169804 -0.402263 -0.425486 0.258191 -0.712250 -0.984291 -0.561103 0.770310 0.726080 0.245639 -0.782064 0.453726 -0.185114 0.720662 0.674567 0.185525 0.052101 0.131469 -0.641139 0.334078 0.758437 -0.537868 0.830772 0.090913 -0.175604 0.479271 -0.480095 0.274404 0.329397 -0.116549 -0.064629 -0.310562 -0.166301 0.619017 0.779116 0.514182 -0.379993 0.293686 -0.224464 -0.851886 -1.236683 -0.307774 0.649400 0.027926 0.850523 -0.430219 -0.658595 -0.052319 0.644239 -0.495721 -0.679487 0.033890 -0.478990 0.314253 -1.263514 -0.813418 1.475477 1.086044 0.711017 0.236795 0.631568 0.588297 -0.613449 -0.111266 -0.130574 0.455467 -0.020235 -0.994140 -0.292590 0.033601 -0.815551 -0.386211 -0.364302 0.176431 -0.459690 0.297637 0.519890 0.067776 -0.399220 0.295435 -0.002138 -0.416421 -0.420471 -0.163499 -0.017541 0.256911 0.174976 -0.454703 0.151852 0.413483 -0.953403 -0.181203 0.132163 0.518904 0.617203 1.162071 1.043731 -0.082352 0.734169 -0.224741 -0.583468 0.530944 -0.315785 0.017682 -0.238191 0.412885 0.304254 0.132815 0.529812 -0.207570 -0.543890 -0.701021 -0.035883 0.488091 0.486102 -0.023871 -0.884336 -0.839459 0.034723 0.273987 1.031493 -0.287528 1.112010 -0.374205 0.281679 -1.400308 0.152094 0.122518 -0.133342 0.117596 0.188818 -0.344835 -1.012208 -0.163576 -0.637069 -0.658417 -0.056696 -0.504296 -0.185544 -0.804749 0.735152 -0.801225 0.001813 0.211744 0.185098 0.753086 0.519631 -0.156700 -0.493808 0.362853 0.509688 0.089076 -0.446838 0.557073 0.168266 1.704622 -0.253225 0.443698 -0.407606 0.444286 -0.166790 -0.340628 -0.143921 0.782551 1.156886 -0.008747 0.080334 0.088275 -0.102986 0.497045 -PE-benchmarks/eulerian-path-and-circuit.cpp___GLOBAL__sub_I_eulerian_path_and_circuit.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -2.987243 4.579266 18.566129 13.369315 -8.195069 -9.344055 -4.420198 -7.658302 4.556740 2.053005 8.324432 -1.105203 1.628037 5.377031 -0.202542 -4.709667 3.986163 1.545303 -1.831568 -3.834747 -4.952445 9.757200 9.177419 -15.626152 0.832934 -11.479566 9.689640 5.671351 3.193205 9.798323 0.475838 1.534571 -0.186544 6.715925 -10.128433 -4.022944 -2.794224 3.265206 -4.294064 -2.431806 7.187102 4.792586 7.251475 0.747258 5.168324 5.985470 7.262500 -1.659515 -10.098006 -1.156196 -6.442603 10.300149 -4.605645 6.273458 -0.237839 7.365969 3.188609 -9.992798 -1.287787 -16.060639 2.867364 5.181125 -7.205256 -1.172090 -9.654701 1.020252 -2.393950 -7.507802 4.525181 -1.921104 4.982966 -1.133494 0.324833 -9.603237 -7.868912 4.634272 0.038853 4.817725 4.338318 1.308750 -4.204445 2.266515 -4.855450 -6.460155 1.016447 -1.786473 0.818238 0.675195 2.795130 -5.381526 0.797781 -0.218308 -4.971773 9.164655 -5.197845 10.205508 -1.272179 -2.834269 -5.792874 -3.048052 -1.023285 -8.635811 3.318674 8.570380 -6.048128 2.122880 -1.226333 3.461381 0.789482 -10.681036 0.640643 -3.421964 -0.560851 6.849283 -5.596187 -3.100333 2.322163 -0.108355 0.661674 10.249903 -2.893207 3.660285 7.438804 6.085795 1.968315 -6.956980 3.204219 1.050987 4.118473 5.336841 6.865175 -6.806641 -5.468918 -2.085657 0.646954 -13.290047 2.934220 7.411341 6.818517 2.948755 -12.901873 3.897635 -4.365841 9.376615 5.617273 9.664516 3.092569 -1.381537 -5.358163 2.136411 17.389317 -6.097198 6.947592 -4.236079 -12.896190 13.354705 -2.625512 9.435381 -0.032488 1.552557 5.005864 -9.096306 0.181995 12.958964 3.452244 1.236072 10.421346 -1.761913 1.121360 -14.637493 -12.487058 -0.549728 4.090041 2.614047 19.481602 -7.746402 -4.194655 -2.907703 8.929552 -3.303139 -2.513061 -1.128775 -1.726810 3.260285 -22.559239 -14.985044 12.434238 10.175775 -1.347169 -1.258237 10.097027 1.842650 2.104315 -7.504278 -6.613495 6.040539 2.066599 8.122768 2.197688 -0.165622 -9.882322 0.757862 2.143609 1.907970 7.155374 -11.228072 -6.763088 -2.465238 -13.654035 -8.268431 2.135134 -12.135418 -4.495573 0.920756 1.354921 -0.582640 1.696392 0.019943 -6.597640 1.476022 -5.779737 -3.101434 1.263151 7.067237 1.811812 11.949984 11.606189 0.451175 5.361369 4.998473 -5.095105 28.850283 -8.627557 -2.520558 0.086018 8.962488 -1.307167 3.732611 4.894234 -2.491130 -4.797875 -9.842124 7.437422 -1.332597 3.110330 -19.348789 -6.181419 -10.118370 -3.246456 3.095673 10.476245 -1.146663 20.023788 -0.893943 0.658900 -20.636370 0.486535 9.211713 -0.663083 7.020161 7.181166 -9.469974 -15.659045 -1.804650 -3.042034 11.358291 -1.920836 -10.094021 -6.858466 -0.698916 0.218870 -5.471748 7.050882 12.668727 -4.179441 4.240121 2.191123 -2.615724 -0.759267 -5.318298 5.286833 3.789858 -7.034705 11.989005 -2.871125 20.939364 -2.955360 8.890279 -7.362668 2.725554 -1.088399 -2.665117 -4.254740 11.596239 6.615329 3.858269 2.143365 1.899587 -5.579030 5.441377 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -1.361473 2.074615 8.742016 6.368355 -3.577620 -4.653766 -2.148976 -3.981119 2.718468 1.047062 4.048177 -0.277404 1.312304 1.852206 -0.256829 -2.155653 2.099753 0.679824 -0.766473 -1.833831 -2.090453 5.715570 4.298115 -7.339807 0.444389 -5.933969 4.598737 2.654039 2.099891 5.178286 0.069602 0.762872 0.107558 3.258225 -4.844098 -1.907516 -1.455431 1.645868 -2.344184 -1.198558 3.314488 2.324504 3.779358 0.518083 2.506605 2.689703 3.277559 -0.813473 -4.423653 -0.770332 -3.057808 4.668335 -2.219834 3.158768 -0.547067 3.219706 1.674275 -4.269184 -0.546408 -7.526865 1.363747 2.541456 -3.332420 -0.618461 -4.745653 0.539589 -1.262625 -3.590493 1.866021 -1.074401 2.553891 -0.129511 0.317040 -4.832678 -4.483967 2.284614 0.074536 2.280448 2.238874 0.938403 -2.173113 0.857367 -2.520591 -3.315909 0.947350 -0.458255 0.375816 0.763142 1.028480 -3.022360 0.253590 0.030869 -2.059685 4.285043 -2.442230 4.720426 -0.602146 -1.221131 -2.263418 -1.686773 -0.561477 -4.138359 1.403249 3.902457 -2.327789 1.101576 -0.285415 1.655111 0.251075 -4.984829 0.676958 -1.567183 -0.816405 3.697221 -2.415039 -1.584341 0.845404 0.075146 0.155886 5.106892 -1.369405 1.801653 3.606970 2.967961 1.048552 -3.422475 1.580371 0.915780 2.066390 2.444874 3.278824 -3.269907 -2.737657 -0.824735 0.201768 -6.651599 1.001902 3.680053 3.424370 0.960415 -6.058734 2.329454 -2.148955 4.519406 3.032963 3.979542 1.714670 -0.617531 -2.807251 1.495309 8.675425 -2.899574 3.232427 -2.366693 -6.241007 6.832829 -1.486221 4.488112 -0.518762 0.557368 2.234059 -4.223147 0.643846 6.292554 1.267895 0.721938 4.614330 -0.767116 0.454513 -7.060752 -6.348605 -0.527259 2.227507 1.594828 9.711117 -3.627103 -1.930524 -1.411900 4.075938 -1.451192 -1.125490 -0.268529 -1.160445 1.681577 -11.488320 -7.379527 6.692181 5.275609 -0.212220 -0.425365 4.751737 1.212865 1.307321 -3.694595 -3.074310 2.848364 1.283735 3.095550 0.782829 0.008352 -4.849035 -0.064569 1.042156 0.762696 3.358481 -5.141805 -2.901886 -1.700939 -6.474801 -4.129393 1.321122 -5.897776 -1.995866 0.417924 0.536319 -0.521332 1.082892 0.026633 -2.909947 0.767861 -2.598956 -1.450522 0.365656 3.358184 0.863911 5.285800 6.130893 0.002007 2.565148 2.443918 -2.580471 13.884798 -4.301442 -1.156151 0.053759 4.273257 -0.372186 2.030044 2.269205 -1.244868 -1.979789 -4.962798 3.614685 -0.183033 1.416328 -9.247967 -3.144029 -4.903885 -1.524607 1.253048 5.291441 -0.467096 9.853338 -0.999442 0.381510 -10.179488 0.335554 4.399041 -0.118889 3.627253 3.473103 -4.508937 -7.451843 -1.017397 -1.673956 5.115496 -1.172510 -5.214221 -3.238511 -0.510512 0.344538 -3.021490 3.428878 6.301401 -2.032587 2.442895 0.495138 -1.174222 -1.060144 -2.307076 2.232405 1.806240 -3.224154 5.383081 -1.418295 9.738484 -1.606325 4.415372 -3.674394 1.720997 -0.853051 -2.035274 -2.092383 5.798400 3.218130 1.641460 1.320133 0.773405 -2.350809 2.846281 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.296782 0.718652 2.593138 2.018578 -1.542776 -1.879137 -0.674777 -1.989149 1.089948 0.319035 1.458401 -0.155811 0.696191 0.043636 -0.133191 -0.526895 0.819061 0.310781 -0.401444 -0.741000 -0.895398 1.724303 0.777716 -2.006310 0.376157 -1.568865 1.308206 1.051769 0.723438 1.288226 0.153573 0.035360 -0.389573 1.012636 -1.326766 -0.402910 -0.175860 0.477750 -1.085613 -0.426483 0.789520 0.269210 1.413347 -0.046251 0.957980 0.702717 0.964888 0.023804 -1.524267 -0.427381 -0.714535 1.524913 -0.605313 1.158318 0.095054 0.527708 0.473462 -1.225923 -0.063871 -1.684796 0.424902 0.274734 -0.844378 -0.188354 -1.394909 0.032837 -0.187408 -1.338519 0.726523 -0.684146 0.799541 -0.188842 -0.058082 -1.190528 -1.472064 0.487578 0.383010 0.676999 0.844581 0.597085 -0.012790 -0.121858 -0.953459 -1.024757 0.466003 0.111706 0.404041 0.480800 -0.390356 -0.920547 0.515833 -0.158810 -0.053316 1.151961 -1.047359 0.876269 -0.557166 -0.476543 -1.101045 -1.242470 0.089284 -1.007644 0.685733 0.840883 -0.822953 0.446443 0.285494 0.529765 0.040466 -1.532093 0.143395 -0.692190 0.122587 1.613867 -0.678381 -0.894535 -0.033363 -0.220059 -0.244877 1.343117 -0.025850 0.321760 1.363505 1.011866 0.769252 -1.289208 -0.045664 0.367646 0.646053 0.947621 0.958948 -1.231478 -0.684361 0.148391 -0.549565 -2.475223 -0.110265 0.695114 1.448303 0.264975 -1.648694 0.662332 -0.839799 1.253003 0.663970 1.087154 0.550042 -0.069108 -0.979115 0.450006 2.408478 -0.768135 1.019324 -0.635959 -1.635827 1.563848 -0.137018 1.009014 0.004233 -0.169177 0.458344 -1.126435 0.213124 1.824415 0.272302 0.135418 0.882107 0.133732 -0.836696 -2.417980 -2.329635 0.023813 1.085085 0.524157 2.871200 -1.473404 -0.925976 -0.433008 1.686187 -0.694670 -0.538157 0.300583 -0.720879 0.830647 -2.820734 -2.294229 2.337919 1.900543 0.298706 -0.167131 1.527778 0.086147 -0.545532 -1.186388 -1.111672 0.657781 0.655480 -0.084460 -0.076032 -0.003592 -1.713085 -0.059727 0.374870 0.416373 0.930703 -1.056830 -0.198644 -0.604984 -1.654251 -1.329209 0.707931 -1.521250 -0.134307 0.193921 0.151616 -0.086319 0.739429 -0.340884 -1.106007 0.021555 -0.859911 -0.197932 0.119909 1.087622 0.185624 2.139052 1.865826 -0.259626 1.341195 0.442679 -1.033811 4.113723 -1.315306 0.034497 -0.018312 1.441612 -0.052217 0.625302 1.084516 -0.654645 -0.679790 -1.640848 0.199640 0.029024 0.591796 -2.582242 -1.056925 -1.983945 -0.472911 0.016720 1.545318 -0.105266 2.930836 -0.514283 0.306386 -3.346893 0.086138 1.230427 -0.181608 1.161606 0.893966 -1.473781 -2.393234 -0.223130 -0.997716 0.590653 -0.328865 -1.368015 -0.940349 -0.455286 0.535498 -0.705585 0.612540 2.044938 -0.579231 0.891208 -0.229444 -0.186822 -0.261168 -0.675761 0.907356 0.319704 -1.157482 1.741703 0.002211 3.545706 0.009131 1.276996 -0.996990 0.339064 -0.214560 -1.163152 -0.859196 1.735951 1.183937 0.666642 0.189378 0.359509 -0.817246 1.100551 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.321698 1.240426 4.984176 2.165248 -1.994283 -3.633775 -1.374802 -4.825804 2.339456 1.094641 3.333891 -0.246387 1.807321 0.176808 0.070207 0.260756 1.907870 -0.321237 0.100454 -1.504764 -1.004146 4.324036 1.275910 -1.807316 0.567111 -4.005578 1.729103 1.525448 2.152968 2.645960 0.532976 -0.009950 -0.447553 1.623541 -1.906119 0.052880 0.082157 0.987905 -2.399667 -0.169840 0.558424 0.355068 2.660560 0.055046 2.367070 0.790790 1.987240 0.131165 -2.021857 -1.062561 -1.669333 3.403668 -1.286192 1.758250 -0.124957 0.286605 0.395247 -1.646173 -0.382737 -2.349850 0.043869 0.432369 -1.843190 -0.009394 -2.428503 0.572060 -1.226835 -1.870203 0.586458 -0.859315 1.812462 0.192084 0.177508 -1.205958 -4.127188 1.071269 0.520749 1.147137 1.475625 0.515196 -0.431216 0.000911 -1.910079 -2.474393 1.940222 1.659921 0.562789 0.509891 -1.570579 -1.078177 -0.295845 -0.181749 0.061240 2.216639 -2.409222 1.600690 -0.612339 -1.174868 -1.903724 -2.844819 0.091364 -2.169784 1.051317 0.834249 -0.329664 0.368562 -0.605441 0.895623 -0.601721 -2.851352 0.757193 -0.941479 -0.536521 3.522494 -1.613147 -0.980986 -0.849733 -0.169592 -0.399253 2.502583 0.134069 0.991959 2.530991 2.129061 1.354579 -2.354613 -0.318138 1.076900 1.735444 1.461278 1.687097 -2.165393 -1.694705 0.346101 -1.087532 -4.763039 -0.809839 2.048915 2.594933 -0.141956 -2.084704 0.782668 -1.407574 2.810264 2.255063 1.192606 1.006526 -0.046582 -2.091967 1.375250 4.890851 -1.673073 2.370398 -1.661739 -2.295365 3.161427 -1.292623 2.191457 0.080261 0.014666 0.059712 -2.011452 0.242909 3.426387 0.913546 0.840842 0.899942 0.397931 -0.912868 -3.955320 -4.809445 -0.507075 2.284511 0.687592 4.779907 -2.379987 -1.830809 -0.522332 2.851773 -0.570961 -1.536746 0.931086 -1.829379 1.403469 -5.642966 -4.198594 4.987540 4.610497 1.248820 -0.233595 2.714328 1.424866 -1.918043 -2.310793 -1.609352 1.842561 0.457072 -2.202468 -0.802062 0.321735 -3.274244 -0.472217 -0.162451 0.815125 1.314634 -0.742248 0.861556 -0.747834 -3.002967 -1.887326 1.726182 -2.499042 -1.185397 0.052950 0.238284 -0.107742 1.348650 -1.008438 -0.895865 1.089345 -2.234371 -0.232007 0.610154 1.833063 0.509120 3.970213 3.991509 -0.163467 2.705306 0.340593 -1.964853 5.940688 -2.150887 0.023079 -0.213907 1.666884 -0.357389 1.313718 1.810972 -1.069680 -2.085381 -3.033689 0.722509 0.265586 1.394008 -2.595222 -3.013794 -3.609458 -0.527906 0.492653 3.715647 -0.076162 5.627256 -1.301523 1.040868 -6.232758 0.468400 1.656883 -0.159355 2.285882 1.464072 -2.514330 -3.303365 -0.573752 -2.313549 -0.278661 -0.432069 -3.000275 -1.904025 -1.745681 1.794351 -2.135834 0.881900 2.800259 -0.621306 2.559069 0.134493 -0.615563 -1.668538 -0.061733 2.524858 0.446138 -2.012060 2.738117 -0.140918 6.954701 -0.698500 2.340339 -1.656373 0.865664 -0.393083 -2.316544 -1.296788 3.704361 2.927313 0.976651 -0.062955 -0.066677 -0.784863 1.892649 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp___GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/rotate-bits-of-an-integer.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 0.938023 0.772226 4.365336 1.733188 -0.500316 -2.416753 -1.112491 -5.748340 3.696147 1.171818 2.547094 -0.038585 1.871729 -1.006878 -0.877152 1.139354 1.256841 -0.737987 0.722903 -0.789905 0.333489 6.918590 0.442237 -0.847231 0.139315 -5.913900 1.051534 0.631185 4.449089 2.506561 0.359276 -0.221916 0.702335 1.188914 -1.859103 0.125523 -0.212476 0.966779 -3.373068 -0.563433 -0.192211 0.770180 2.146217 -0.174681 2.307695 -1.199877 2.319169 -0.315160 0.182116 -0.425406 -2.174126 3.773009 -0.789910 1.406179 -0.393859 -0.674860 -0.463694 -0.798289 -0.803340 -0.138451 -0.558282 1.295562 -1.519422 -0.018006 -2.344882 0.922262 -1.218742 -0.744518 0.185410 -0.401990 2.154634 1.535825 1.321447 -1.898638 -5.881464 1.618439 -0.015958 0.788434 1.094750 1.170104 0.178701 0.114270 -1.607102 -2.457030 3.024062 3.765843 -0.518800 0.166476 -1.214426 -1.606540 -1.278762 -0.369841 0.083247 1.989332 -2.809635 1.665390 -1.696624 -0.513733 -0.117548 -2.635048 -0.562547 -2.509184 0.621665 0.000000 1.184474 1.263887 1.941320 0.578080 0.127474 -2.553368 0.758373 0.154813 -0.889628 4.673199 -0.859219 -0.856734 -1.131647 0.598254 -1.977572 2.019234 -0.070560 1.708484 2.826542 1.725964 1.664590 -2.062164 -0.180714 2.768402 1.435751 1.212733 1.154071 -2.262747 -1.315659 0.024407 0.927679 -4.973634 -1.286744 2.213378 2.104556 -1.515923 -0.663326 0.185249 -0.373410 3.379394 2.616683 -1.259770 1.409404 0.495757 -1.582050 2.257998 6.151739 -1.002349 1.311436 -3.351905 -1.812477 3.407134 -2.063769 2.543980 -1.355532 1.144729 0.031506 -2.582230 1.220249 3.172738 -0.747175 0.809011 0.244849 0.421092 -0.505151 -3.862099 -4.624153 -1.157110 1.392786 0.383867 4.884864 -1.386123 -1.875616 -0.250648 1.688295 0.468486 -0.380297 1.872267 -3.221234 1.476961 -5.280266 -4.466083 5.335696 5.088033 1.345964 -0.194814 2.707423 2.221611 -1.972718 -2.489389 -1.285489 1.822593 1.619113 -4.044627 -1.292720 0.233910 -2.892132 -1.699218 0.040889 -0.032333 1.319463 0.634767 1.762002 -1.382525 -3.057706 -1.943117 3.522153 -2.455932 -0.983179 -0.447337 0.685740 -0.964640 2.126893 -1.355976 0.223174 1.743704 -1.151340 0.054266 0.565168 0.769061 -0.448416 1.805969 4.898396 0.218680 3.401795 0.606355 -1.659145 4.966663 -1.777495 -0.934788 -0.174443 -0.215654 -0.924368 1.852570 0.420899 -1.133828 -1.770553 -2.789613 1.575080 -0.130140 0.862696 -1.046410 -3.001513 -1.971126 -1.226247 0.445977 2.711757 1.305706 5.460680 -2.754535 0.870851 -6.681245 0.601995 1.731021 0.698844 3.112292 1.195856 -1.906365 -2.084332 -0.745295 -1.433166 -1.279960 -1.286397 -4.938657 -2.032366 -3.181983 3.096430 -2.758594 1.184928 3.164706 -0.058024 3.206939 -1.905326 -0.438157 -3.246205 0.915602 1.200806 0.575694 -1.585900 1.246839 -1.154546 6.053094 -2.088087 1.919678 -2.117818 1.534111 -1.487321 -3.431964 -0.548300 3.582185 2.160290 0.413194 -0.474202 -1.370237 -0.962503 1.863836 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.278669 0.823347 1.820161 1.346051 -0.467059 -1.199645 -0.189921 -0.723204 0.400374 0.040649 0.793303 -0.168302 0.267399 0.346393 -0.361151 -0.488654 0.680734 0.067044 0.259505 -0.368681 -0.236410 1.696995 0.793452 -1.518827 0.346495 -1.398801 1.412769 0.608327 0.791324 1.403852 0.254436 0.293557 0.348820 0.763292 -0.965186 -0.682604 -0.223786 0.635912 -0.462948 0.027520 0.580355 0.701527 0.940700 0.416180 0.281240 0.873465 0.754242 0.079179 -0.570211 0.130870 -0.592659 0.205464 -0.795649 0.562504 -0.353673 0.169669 0.560311 -0.662423 -0.146333 -1.381062 0.378431 0.713167 -0.643893 -0.217743 -1.296691 0.145073 -0.269528 -0.690795 0.409271 0.055035 0.719245 0.483502 0.331816 -1.036460 -1.110514 0.635170 0.120298 0.538460 0.626768 -0.109509 -0.452757 0.214487 -0.507679 -1.019245 0.325228 0.171308 0.220591 0.316689 0.553807 -1.073441 0.203753 -0.077012 -0.581374 0.990055 0.391316 1.320003 -0.362516 -0.161730 -0.023796 -0.603684 -0.426752 -0.833289 0.035021 1.148664 -0.355876 0.371022 0.077837 0.198883 0.062024 -1.266445 0.238287 -0.453409 -0.638503 0.769402 -0.372136 -0.266965 0.160983 0.272036 0.331413 1.365410 -0.291213 0.554389 0.614124 0.618105 -0.227766 -0.720381 0.384119 -0.098177 0.295488 0.686644 0.885372 -0.596561 -0.764609 -0.213793 0.390034 -1.460313 0.404068 0.754854 0.819750 -0.459274 -1.495384 0.858971 -0.798239 1.067843 1.113277 0.802106 0.558405 -0.043411 -0.469673 0.906680 2.390772 -0.740599 0.643494 -0.692092 -1.480815 1.863413 -0.248831 0.871288 -0.562951 0.085157 0.278582 -0.929311 0.104651 1.602039 0.294968 0.531431 1.617539 -0.228924 0.361781 -1.603837 -1.236248 -0.024111 0.795488 0.319183 2.249865 -0.675957 0.116860 -0.155313 0.310577 -0.322520 0.053266 -0.056581 -0.155087 0.594539 -2.861819 -1.970706 1.864195 0.779227 0.006509 -0.187619 0.252983 0.498373 0.820471 -0.946210 -0.962039 0.636571 0.192836 0.555336 -0.257376 -0.042687 -1.147102 -0.389763 0.516186 -0.122939 1.191167 -1.304656 -1.103369 -0.976360 -1.610822 -0.885575 0.300755 -1.402588 -0.445542 0.328320 -0.014986 0.023496 -0.179007 0.568677 -0.411309 0.069391 -0.458181 -0.871793 -0.133783 0.851032 0.402488 1.029175 1.380455 0.098803 -0.160180 1.061293 -0.676726 3.069353 -0.726205 -0.501300 0.353578 1.084761 0.247862 0.602111 0.718427 -0.339591 -0.257654 -1.327002 0.983375 0.302633 0.247324 -1.824353 0.019286 -0.828528 -0.275431 0.347179 1.471279 -0.063501 2.196810 -0.246679 -0.254936 -1.831222 0.142500 0.887721 0.059047 0.777751 0.766912 -0.956049 -1.135539 -0.383478 -0.275641 1.183461 -0.344919 -1.216564 -0.702017 0.107938 -0.305324 -0.594244 0.821411 1.610631 -0.587186 0.577048 -0.050085 -0.305754 -0.766765 -0.415280 0.470151 0.424027 -0.630328 0.944751 -0.373651 1.867525 -0.562452 0.812983 -0.909129 -0.009219 -0.182437 -0.281127 -0.540978 1.184459 0.615288 0.203281 0.843139 0.100248 -0.104675 1.112412 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.278669 0.823347 1.820161 1.346051 -0.467059 -1.199645 -0.189921 -0.723204 0.400374 0.040649 0.793303 -0.168302 0.267399 0.346393 -0.361151 -0.488654 0.680734 0.067044 0.259505 -0.368681 -0.236410 1.696995 0.793452 -1.518827 0.346495 -1.398801 1.412769 0.608327 0.791324 1.403852 0.254436 0.293557 0.348820 0.763292 -0.965186 -0.682604 -0.223786 0.635912 -0.462948 0.027520 0.580355 0.701527 0.940700 0.416180 0.281240 0.873465 0.754242 0.079179 -0.570211 0.130870 -0.592659 0.205464 -0.795649 0.562504 -0.353673 0.169669 0.560311 -0.662423 -0.146333 -1.381062 0.378431 0.713167 -0.643893 -0.217743 -1.296691 0.145073 -0.269528 -0.690795 0.409271 0.055035 0.719245 0.483502 0.331816 -1.036460 -1.110514 0.635170 0.120298 0.538460 0.626768 -0.109509 -0.452757 0.214487 -0.507679 -1.019245 0.325228 0.171308 0.220591 0.316689 0.553807 -1.073441 0.203753 -0.077012 -0.581374 0.990055 0.391316 1.320003 -0.362516 -0.161730 -0.023796 -0.603684 -0.426752 -0.833289 0.035021 1.148664 -0.355876 0.371022 0.077837 0.198883 0.062024 -1.266445 0.238287 -0.453409 -0.638503 0.769402 -0.372136 -0.266965 0.160983 0.272036 0.331413 1.365410 -0.291213 0.554389 0.614124 0.618105 -0.227766 -0.720381 0.384119 -0.098177 0.295488 0.686644 0.885372 -0.596561 -0.764609 -0.213793 0.390034 -1.460313 0.404068 0.754854 0.819750 -0.459274 -1.495384 0.858971 -0.798239 1.067843 1.113277 0.802106 0.558405 -0.043411 -0.469673 0.906680 2.390772 -0.740599 0.643494 -0.692092 -1.480815 1.863413 -0.248831 0.871288 -0.562951 0.085157 0.278582 -0.929311 0.104651 1.602039 0.294968 0.531431 1.617539 -0.228924 0.361781 -1.603837 -1.236248 -0.024111 0.795488 0.319183 2.249865 -0.675957 0.116860 -0.155313 0.310577 -0.322520 0.053266 -0.056581 -0.155087 0.594539 -2.861819 -1.970706 1.864195 0.779227 0.006509 -0.187619 0.252983 0.498373 0.820471 -0.946210 -0.962039 0.636571 0.192836 0.555336 -0.257376 -0.042687 -1.147102 -0.389763 0.516186 -0.122939 1.191167 -1.304656 -1.103369 -0.976360 -1.610822 -0.885575 0.300755 -1.402588 -0.445542 0.328320 -0.014986 0.023496 -0.179007 0.568677 -0.411309 0.069391 -0.458181 -0.871793 -0.133783 0.851032 0.402488 1.029175 1.380455 0.098803 -0.160180 1.061293 -0.676726 3.069353 -0.726205 -0.501300 0.353578 1.084761 0.247862 0.602111 0.718427 -0.339591 -0.257654 -1.327002 0.983375 0.302633 0.247324 -1.824353 0.019286 -0.828528 -0.275431 0.347179 1.471279 -0.063501 2.196810 -0.246679 -0.254936 -1.831222 0.142500 0.887721 0.059047 0.777751 0.766912 -0.956049 -1.135539 -0.383478 -0.275641 1.183461 -0.344919 -1.216564 -0.702017 0.107938 -0.305324 -0.594244 0.821411 1.610631 -0.587186 0.577048 -0.050085 -0.305754 -0.766765 -0.415280 0.470151 0.424027 -0.630328 0.944751 -0.373651 1.867525 -0.562452 0.812983 -0.909129 -0.009219 -0.182437 -0.281127 -0.540978 1.184459 0.615288 0.203281 0.843139 0.100248 -0.104675 1.112412 -PE-benchmarks/rotate-bits-of-an-integer.cpp___GLOBAL__sub_I_rotate_bits_of_an_integer.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/union-find.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/union-find.cpp__createGraph(int, int) = -0.231760 0.663989 3.102291 1.394858 -1.734997 -1.710419 -0.457453 -3.179929 1.645424 0.755618 2.323553 0.498264 1.558201 -0.660320 0.062910 0.051586 1.280649 -0.167428 0.261916 -0.897551 -0.777242 2.753336 1.549997 -0.860296 0.738838 -2.196166 1.583122 0.127850 2.134253 1.904093 0.393855 -0.012995 -0.559634 0.916910 -0.263974 -0.177176 -0.925885 0.840780 -1.670477 -0.023538 0.546115 -1.213810 1.528168 0.494475 1.350218 -0.233572 1.194711 -0.083994 -1.258164 -0.691503 -1.329119 1.824362 -1.350264 1.327379 -0.088452 -0.284817 -0.006527 -0.057060 -0.217473 -1.714842 -0.023874 -0.938456 -0.836307 0.226318 -1.938096 0.541939 -2.002190 -1.016024 -0.055927 -0.334233 1.354288 0.705710 0.646681 -0.443939 -2.995731 0.613118 0.407176 0.650560 1.256767 1.041430 -0.344744 -0.284516 -1.353586 -1.868136 1.729753 0.624664 -0.006041 -0.234680 -0.898105 -0.831654 0.078176 0.081486 -0.156672 1.369312 -2.678229 1.509149 -0.910488 -0.598616 -0.336854 -2.871840 -0.275947 -1.817497 0.657942 0.607584 -0.602398 0.179863 -0.414910 0.754808 -0.090573 -2.170969 0.325622 -0.161695 -0.975376 2.480584 -0.932410 -0.651263 -0.683639 0.440679 0.046550 1.180856 0.300887 1.160930 2.102819 1.482787 1.042298 -1.055879 0.444495 1.216156 0.806351 0.882028 0.910675 -0.991080 -1.277841 0.877205 -0.149908 -3.185780 -0.736559 1.791340 1.741847 0.065391 -1.214459 -0.131315 -0.809966 1.371776 2.031016 0.564032 1.000384 0.113739 -0.912059 1.187396 3.285672 -1.215482 1.071474 -0.645836 -1.539483 2.899031 -1.354429 1.199098 -0.633230 0.546779 0.101357 -1.714308 -0.255151 2.389631 0.340313 0.211388 0.495346 0.259850 -0.540528 -2.803683 -2.637209 -0.663564 1.747428 1.026755 2.672220 -1.289928 -0.069075 -0.043215 1.372517 0.588959 -1.132314 0.529764 -1.091765 0.748058 -4.169690 -2.679333 3.226752 2.724642 0.695040 -0.011299 0.984154 1.599539 -1.508683 -1.985911 -1.685231 1.109660 0.027066 -1.734945 -1.343968 0.459378 -2.637001 -0.218660 0.349090 0.299409 1.972280 -0.771215 0.490002 -0.012064 -1.772873 -1.131747 1.725925 -1.571980 -1.334509 -0.290682 -0.034083 0.532002 0.802468 -0.192199 -0.220224 0.287446 -1.383289 -0.592379 0.173777 1.576247 -0.167409 2.720140 2.623496 -0.117678 -0.207321 0.201338 -1.863170 3.684750 -1.440874 -0.336104 -0.328347 0.730686 -0.147281 1.003744 1.400550 -0.846738 -1.754867 -2.087302 0.204444 0.108969 0.802704 -1.892215 -1.882865 -2.256463 -0.146902 0.427016 2.326780 0.482750 3.870670 -1.285947 0.200799 -3.551713 0.190804 1.030014 -0.107016 2.473666 0.935517 -1.488776 -0.706188 -1.019133 -1.386583 1.004542 -0.423754 -1.262181 -1.177137 -0.543551 1.345754 -1.178737 0.732534 1.076065 -0.661723 2.524366 0.329097 -0.485686 -1.733425 0.839765 1.386803 0.679815 -1.257540 2.171602 -0.026581 3.946548 -0.606934 0.877806 -1.383185 -0.014857 -0.476261 -1.274425 -0.751735 2.413844 2.277700 1.122560 0.163406 -0.095377 -0.497478 1.176854 -PE-benchmarks/union-find.cpp__find(int*, int) = -1.007490 0.773075 4.067601 2.675851 -1.510766 -2.268832 -1.143500 -2.554138 1.805464 0.852709 2.655888 0.210209 1.372816 0.119526 -0.036089 -1.048170 1.146774 -0.241900 -0.463305 -0.997633 -0.514055 3.258163 2.009587 -3.115463 0.364543 -2.796654 1.893714 1.143022 1.108177 2.476726 -0.104373 0.305006 -0.072530 1.688359 -2.160996 -0.489994 -0.533060 1.225107 -0.890702 -0.717443 1.684381 1.129587 1.931305 0.362565 1.626017 1.290165 1.292668 -0.477774 -1.955339 -1.016553 -0.807753 1.792492 -1.488207 1.703916 -0.559934 1.280050 0.626809 -1.597863 -0.243858 -3.700431 0.907974 1.128210 -1.403466 -0.356635 -2.000885 0.302146 -0.088012 -1.631019 0.589252 -1.164206 1.548790 0.002701 0.011725 -1.994099 -2.311983 0.912429 0.228189 0.744444 1.250027 0.649861 -1.360370 -0.175693 -1.245237 -1.875639 0.961526 0.244534 0.382855 0.838857 -0.042531 -1.160867 0.336541 0.166880 -0.567526 2.230956 -1.510978 1.605607 0.151331 -0.679883 -0.938421 -0.690798 -0.067958 -2.133453 0.749519 1.927542 -0.958463 0.444727 -0.273132 0.751503 -0.380482 -2.226996 0.461693 -0.767096 -0.582603 1.831200 -1.195968 -0.848906 0.179516 -0.073074 0.367977 2.341451 -0.190057 0.714769 2.263285 1.481425 0.896477 -2.064028 0.491235 0.685083 1.382955 1.257241 1.365445 -1.792953 -1.327640 0.124753 -0.701107 -3.649740 -0.094317 1.610856 2.098600 -0.028133 -3.189006 1.815571 -1.215864 2.070663 2.016283 1.585538 0.964226 -0.046847 -1.723060 0.833394 4.157692 -1.318809 1.631070 -0.847355 -2.685952 3.410939 -1.070465 2.023078 -0.066620 0.078247 0.593415 -2.053901 0.454892 3.112049 0.536036 1.069950 1.220835 -0.063101 -0.036566 -3.390527 -3.679103 -0.943165 1.581590 1.310225 4.637458 -1.910438 -0.931795 -0.522852 2.106657 -0.836449 -0.990050 0.071811 -0.670070 1.079201 -5.353224 -3.434003 3.858519 3.349298 0.696610 0.133628 2.492438 0.475898 0.481325 -1.612949 -1.457820 1.483368 0.853413 0.730124 0.246054 0.089840 -2.573633 -0.615354 0.176892 0.343566 0.964387 -1.889892 -0.851437 -0.433008 -2.488239 -1.674651 0.470899 -2.409255 -0.889123 -0.120312 0.193179 -0.335663 0.584651 -0.403037 -1.298050 0.274525 -1.473350 -0.557923 0.293455 1.551907 0.715489 2.510818 3.015055 -0.713751 1.136334 0.727008 -1.290914 5.831142 -2.079857 -0.435404 0.027588 2.427514 0.258278 1.172751 1.218141 -0.803452 -0.650760 -2.594200 1.345622 0.500710 0.852232 -3.973880 -1.743153 -2.436991 -0.467559 0.357245 2.937817 -0.329372 5.018561 -0.766146 0.726197 -5.224943 0.244486 1.924907 -0.183580 1.551917 1.613544 -2.001905 -3.902201 -0.649195 -1.134657 1.202447 -0.469055 -2.219448 -1.481596 -0.768358 0.657588 -1.772215 1.300455 2.771398 -0.781891 1.609087 -0.066347 -0.447005 -0.890613 -0.802058 0.949059 0.903267 -1.653543 2.284977 -0.361335 4.771159 -0.974933 2.526567 -1.757484 1.260721 -0.786315 -1.655285 -1.168633 3.087759 2.057638 0.817605 0.689066 0.201500 -0.937145 1.668517 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.660834 1.199916 4.471100 3.599169 -2.111393 -2.876600 -1.224294 -2.768813 2.029846 0.656126 2.533373 0.270633 1.467131 0.053779 -0.350592 -1.186993 1.476344 0.350176 -0.577170 -1.213103 -1.260523 4.066918 2.158747 -3.861534 0.491662 -2.934163 2.559573 1.489371 1.686924 3.008747 -0.213634 0.337169 0.051785 2.019965 -2.551137 -1.125829 -1.232166 1.384029 -1.519136 -0.606983 1.974923 0.865026 2.679221 0.444496 1.257288 1.532719 1.632503 -0.428489 -2.325835 -0.858804 -1.252841 1.840949 -1.497955 2.169670 -0.989099 1.228257 1.040019 -1.461907 -0.096338 -3.660257 0.858224 1.094205 -1.597134 -0.497198 -2.747340 0.149142 -0.589489 -2.384846 0.687244 -0.992158 1.637937 0.258180 -0.051210 -2.838314 -3.092953 1.129568 0.507803 1.180118 1.503537 1.119766 -1.136370 -0.159859 -1.808186 -2.140387 1.000403 -0.005233 0.585860 1.035858 -0.038785 -2.097350 0.618616 0.439482 -0.475736 2.367764 -1.425820 2.164648 -0.657862 -0.657484 -1.138344 -1.503195 -0.280311 -2.247308 0.925090 1.804108 -1.190245 0.771704 0.272259 0.821881 0.052129 -2.703037 0.299186 -0.952620 -0.836650 2.506246 -0.821913 -1.366035 0.239192 -0.011406 0.017438 2.626861 -0.254249 0.678385 2.611634 1.650325 1.019343 -2.316215 0.710170 0.551223 1.021967 1.456179 1.900405 -1.624398 -1.705347 -0.005891 -0.525069 -4.320947 0.058424 1.902224 2.307042 -0.338005 -3.228772 2.072045 -1.600434 2.254320 2.125972 1.667128 1.407782 -0.277691 -1.805415 1.191855 4.805491 -1.467278 1.641232 -1.407259 -3.438872 4.351891 -0.818761 2.231886 -0.649571 -0.193705 0.703655 -2.214297 0.907160 3.619656 0.095850 0.563585 1.978195 -0.297479 -0.222239 -3.899638 -3.973455 -0.607010 1.886793 1.785179 5.586523 -2.220763 -0.806844 -0.503231 1.861254 -0.779549 -0.798725 0.227308 -0.844005 1.279085 -6.723923 -4.194926 4.421997 3.357614 0.450937 0.085646 2.518216 0.469332 0.871962 -2.347167 -1.888059 1.549787 1.196785 0.699105 -0.028377 0.270061 -2.946208 -0.308239 0.655535 0.383190 1.746246 -2.598390 -1.153864 -1.484388 -3.161480 -2.512672 0.924915 -3.031546 -0.628875 0.260539 0.029685 -0.525743 0.912711 0.024744 -1.696673 -0.226268 -1.316983 -0.663413 -0.201154 1.929950 0.422520 2.685430 3.868255 -0.829803 1.235414 1.230361 -1.659334 7.416109 -2.700086 -0.335651 0.113379 2.972106 0.059786 1.519255 1.668998 -0.894806 -0.605385 -3.064065 1.538119 0.669895 0.660532 -5.155692 -1.569988 -3.009160 -0.603553 0.176195 3.376600 -0.306857 5.653833 -1.173605 0.640759 -5.888521 0.276559 2.123996 0.036709 2.405123 1.950783 -2.520265 -3.874308 -0.829447 -1.371908 2.057380 -0.684324 -2.661960 -1.784637 -0.180039 0.059356 -1.911563 1.639968 3.526041 -1.447869 1.850523 -0.593852 -0.482666 -1.030471 -1.169418 1.365726 1.032066 -1.685450 2.587867 -0.475113 5.307362 -0.609745 2.800411 -2.102130 1.044180 -0.617785 -2.274570 -1.571838 3.573281 1.956895 0.904205 1.107290 0.360631 -0.752137 2.003906 -PE-benchmarks/union-find.cpp__isCycle(Graph*) = -3.339612 1.374150 12.489883 6.625833 -4.117103 -6.350166 -3.291726 -9.197168 6.106059 3.283803 9.203960 0.474287 4.850459 -0.734713 0.497582 -1.741980 4.074820 -2.057955 -0.647099 -3.165470 -0.437210 10.607777 6.611546 -7.214684 1.439661 -9.901394 4.259086 2.496748 4.319763 7.147515 0.311361 0.869999 -0.337660 4.319767 -5.328267 0.070639 -1.033674 2.903467 -3.482894 -1.949283 3.821332 2.390752 5.251418 0.673930 6.215308 1.947003 4.502261 -1.477466 -5.757399 -3.663974 -2.854532 7.103328 -4.496325 4.462660 -0.288360 2.868917 0.916126 -4.783217 -1.510074 -10.513673 1.975018 2.391577 -4.014881 -0.228626 -5.585610 1.916645 -1.462513 -3.401896 1.728713 -3.390424 4.895431 0.652812 0.861568 -4.220467 -7.355620 3.120541 0.756632 1.772669 3.436373 1.858107 -3.696720 -0.430654 -3.366386 -5.892463 4.317363 2.045937 0.534657 1.523989 -1.376318 -2.439084 0.191307 -0.278287 -1.936611 6.211838 -6.996361 4.152650 1.409389 -2.701691 -2.688713 -3.077762 -0.487331 -6.826762 1.955114 5.688224 -2.090055 1.247458 -2.037378 2.450542 -1.959564 -6.884394 1.649527 -1.526518 -2.057281 6.557955 -5.022830 -1.708865 -1.185938 0.699559 0.837802 6.738861 -0.616162 3.482407 7.530557 4.971335 2.791831 -5.556188 1.563037 3.153509 5.302077 3.286470 3.739163 -5.832872 -4.137525 1.159597 -1.887873 -11.014902 -2.152555 5.413890 6.779664 0.977262 -8.947454 3.950587 -2.521210 7.246417 6.731081 3.199760 2.404145 0.222700 -5.183760 3.267568 12.919945 -4.539553 5.252863 -2.759824 -7.391594 10.119345 -4.556187 5.811847 0.281992 1.187770 1.086549 -6.571927 0.749225 9.140191 2.274080 3.324311 1.838877 0.559804 0.456482 -10.566379 -11.968022 -3.315178 3.882273 3.230039 13.373297 -5.277872 -3.146102 -1.955401 6.779687 -1.450477 -3.957727 0.648120 -3.326051 2.743970 -15.551769 -10.477324 12.711244 11.736309 3.180922 0.880198 7.785788 3.163114 -1.371692 -4.335801 -4.246283 5.095388 2.094558 -0.739036 -0.153804 0.584090 -8.447148 -2.699105 -0.637363 1.079912 2.891533 -4.159887 -0.678705 -0.154876 -7.700940 -3.577954 2.538548 -6.799588 -3.898321 -1.370283 0.717679 0.131155 2.283840 -2.125786 -2.560931 1.601110 -5.419041 -1.998848 1.541187 5.333750 2.394547 8.080457 9.745155 -1.260255 3.780095 0.926830 -4.582153 15.323566 -5.546584 -1.766284 -0.844534 5.084675 0.730012 3.186884 3.350786 -2.388539 -3.404579 -7.407459 3.984009 0.936671 2.992372 -10.142572 -6.868091 -7.586109 -1.539420 1.774631 8.851236 -0.013184 15.312646 -3.176261 1.635020 -16.480433 0.753732 5.124519 -0.303321 5.102947 4.332035 -5.862065 -10.689607 -2.051207 -4.026467 2.602823 -1.328354 -6.952837 -4.548528 -4.008311 5.413669 -5.727093 3.385062 7.419306 -1.026837 6.543735 1.965927 -1.740057 -4.194456 -0.459186 2.738949 2.829315 -4.751233 7.167290 -0.967296 14.801442 -3.725309 6.523600 -5.411531 3.599802 -2.480549 -4.971119 -2.784518 8.995810 7.807966 2.351362 1.195096 -0.306243 -3.205231 5.035980 -PE-benchmarks/union-find.cpp__main = -0.364797 1.641800 5.400102 4.032985 -3.806177 -4.813489 -1.466877 -5.723863 2.585452 0.896479 4.195394 0.023187 2.359051 -0.453714 0.086860 -0.050741 2.871992 0.470019 -0.374863 -2.158523 -2.597627 5.091410 1.816827 -3.029544 1.179005 -2.912262 2.882852 2.055416 2.392582 2.849194 0.761795 0.129208 -0.806397 1.994381 -2.144595 -0.435971 -1.395351 1.597781 -3.126593 -0.330799 1.530856 -1.096376 3.839246 0.133105 2.112865 0.991004 3.203298 0.211051 -3.447013 -1.272918 -2.318899 3.634689 -1.867745 2.619013 -0.647923 -0.107415 1.281818 -1.333997 -0.294464 -2.770293 0.124354 -0.606186 -2.492163 -0.222134 -3.489269 0.550115 -1.858852 -3.009003 0.902737 -0.720338 2.208035 0.126953 -0.451363 -1.968492 -4.799983 0.885480 1.191449 1.565320 2.039858 1.644371 0.194412 -0.619097 -2.989963 -2.921093 2.642300 0.462201 1.228665 0.671839 -2.034766 -1.795492 0.658624 0.216433 0.398309 2.360498 -3.157339 2.198851 -1.246096 -1.552237 -2.717404 -4.259381 0.196230 -2.548074 1.600235 1.202976 -1.552856 0.836481 -0.349396 1.066033 -0.454584 -4.198743 -0.036553 -1.383406 -0.743151 4.456265 -1.503604 -1.984609 -0.868052 -0.056311 -0.459826 2.575254 0.841139 1.196973 3.921797 2.658803 1.733658 -2.903143 -0.197446 0.656839 1.584009 2.066846 2.279548 -1.897707 -2.532062 0.845333 -1.542623 -6.055558 -1.140894 2.786508 3.695439 -0.096461 -2.871016 1.366311 -1.976005 2.902857 2.651595 1.814996 1.553381 -0.115614 -2.339650 1.733987 5.415075 -2.031266 2.549522 -1.584587 -3.247079 4.670215 -0.818731 1.822278 0.054963 -0.404644 -0.189424 -2.454041 0.255306 4.222246 0.734012 0.118909 1.568630 0.585427 -1.706406 -5.050510 -5.640516 0.006432 3.221766 1.989086 6.023069 -3.287142 -1.432647 -0.170611 2.602481 -0.811480 -2.150064 1.013910 -2.132466 1.871545 -7.333564 -5.243123 6.094495 4.353066 1.195098 -0.084613 2.910002 1.313758 -2.241921 -3.310650 -2.985380 2.363363 1.213727 -2.198962 -1.147403 0.674091 -4.559490 -0.134868 0.459163 1.194624 2.244335 -2.010189 0.650235 -1.920882 -3.677228 -2.491639 2.260118 -2.965097 -0.887458 0.262130 -0.325327 0.250968 1.700395 -0.442305 -1.512218 -0.550374 -2.626383 -0.717720 -0.079497 2.934202 0.371719 5.516145 5.369981 -0.899156 2.494557 0.482556 -3.113215 7.790750 -2.916929 0.245281 -0.471252 3.062174 -0.174047 1.569279 3.386130 -1.386420 -2.553382 -3.957051 0.292730 0.874266 1.560830 -4.686243 -2.385700 -5.382016 -0.599002 0.236842 4.974640 -0.275072 6.755500 -2.164480 0.927533 -7.399032 0.500165 1.865636 -0.255926 3.424766 1.713400 -3.264929 -3.145645 -1.002142 -3.058617 0.696123 -0.481550 -2.598082 -2.714077 -0.973596 1.182599 -2.371540 1.006041 3.481847 -1.662318 3.142638 -0.054094 -0.778298 -1.401102 -0.312058 3.355233 0.913649 -2.597508 3.932028 0.209020 8.828558 0.256580 2.736738 -2.344496 0.308209 -0.375553 -3.194724 -2.059109 4.384149 3.916141 1.294462 0.740298 0.612787 -0.645232 2.632917 -PE-benchmarks/union-find.cpp___GLOBAL__sub_I_union_find.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -2.019914 2.520777 10.919491 8.091331 -5.318337 -5.972433 -3.015778 -6.049363 3.600221 1.344440 6.600806 -0.964996 2.561875 1.264996 -0.650132 -3.819537 3.620889 -0.626519 -1.401212 -3.250044 -3.193789 6.766459 4.269370 -8.916602 1.352468 -7.617260 6.616898 3.565197 1.677689 6.277071 0.261174 0.798448 -0.383415 4.474809 -5.469144 -2.299027 -0.825583 2.336729 -2.462635 -1.201247 5.113460 2.989046 5.944827 0.290275 2.732430 4.782596 3.284445 -0.578993 -6.437119 -2.084785 -2.452947 3.948225 -3.432429 4.015093 -0.851591 3.528171 2.815686 -6.046467 -0.897845 -8.151183 2.011912 2.564982 -3.247801 -0.595823 -5.895132 0.592537 -0.486419 -4.971436 3.311420 -2.799428 3.248848 0.060120 -0.181447 -5.273301 -4.208393 3.173276 1.465448 2.638032 2.784398 0.715021 -1.856635 0.508240 -4.066557 -4.125181 1.182060 -0.230437 2.084404 1.384027 0.995655 -3.733385 2.076936 0.393778 -1.709674 5.496925 -2.586223 3.684936 -1.691272 -2.341990 -4.361644 -2.895742 -0.481392 -5.023623 2.727040 6.269050 -5.449313 2.034964 0.268768 2.008707 0.066701 -6.064284 -0.054418 -3.041084 0.610270 5.559929 -3.178465 -3.833791 -0.628480 -0.616107 0.994732 5.883822 -1.500723 1.448986 6.736097 4.062232 2.006260 -5.503485 1.000251 0.254300 2.594195 3.245285 5.011701 -4.958300 -3.580311 -0.728686 -1.910445 -9.493907 0.247538 1.720862 5.726131 0.136217 -9.080890 5.255346 -3.968685 5.746675 4.288273 5.048998 2.538401 -0.494101 -4.186487 2.357866 9.824733 -3.526642 4.256814 -4.011896 -7.768958 7.923242 -0.305903 4.413648 -0.001737 -0.133694 1.673372 -5.668053 1.598361 7.872051 1.118525 1.612439 5.043866 -0.287871 0.424387 -9.110581 -8.802042 -0.267198 3.347450 2.782347 12.759442 -6.241232 -2.329749 -1.893208 5.680234 -2.326512 -2.296149 -0.071649 -1.378432 2.435695 -13.318649 -9.702804 9.110568 7.239929 0.409419 0.385608 5.969270 -0.224050 0.733609 -3.737926 -4.577514 4.212787 2.576562 2.546035 0.972714 0.452349 -6.073930 -0.846314 1.232459 1.835872 4.822224 -7.268097 -3.869946 -2.503527 -7.758611 -5.675413 2.247031 -7.073992 -1.872069 0.902086 -0.055583 -0.267029 2.134677 -0.133132 -4.553976 -0.635183 -3.337745 -2.021351 0.735218 5.455744 0.981200 6.773438 7.585059 -1.542478 2.922501 2.522668 -3.412405 16.310619 -5.517824 -0.846045 0.094849 6.801252 0.273666 2.867677 4.267643 -2.022361 -2.179598 -6.777021 3.721144 0.109833 1.701975 -12.060945 -2.925005 -7.659066 -1.826806 0.675067 7.849921 -0.239839 12.844335 -0.907058 0.634868 -12.618292 -0.160489 5.216375 0.209434 4.255363 4.450347 -5.966407 -9.542715 -1.120395 -3.826586 4.747899 -1.228127 -5.375852 -4.923757 -0.666233 1.291981 -2.661821 3.341666 8.669930 -2.194070 2.913096 0.984827 -1.529526 -0.946109 -3.803002 2.890218 2.559472 -3.881167 7.284075 -0.870224 12.426217 -0.780885 5.784013 -4.782547 1.679580 -0.488269 -4.021412 -3.615275 7.537471 4.250808 2.187676 2.144997 0.342021 -2.505437 5.128796 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.425644 0.881325 3.113260 2.525180 -1.610466 -2.248788 -0.864592 -2.019972 1.227740 0.360441 1.896795 -0.124160 1.046649 0.108305 -0.239349 -0.921529 1.216722 0.150261 -0.313261 -0.987080 -1.229329 2.562706 1.213443 -2.555173 0.447744 -2.119916 2.143168 1.162033 0.843208 2.180950 0.056759 0.266389 -0.069511 1.357207 -1.635287 -0.737342 -0.624356 0.851543 -0.982561 -0.268658 1.398803 0.497443 2.040964 0.287023 0.723485 1.423933 1.059761 -0.080956 -1.761597 -0.638715 -0.952632 1.088145 -1.039605 1.359647 -0.692112 0.739048 1.083047 -1.282211 -0.094556 -2.315815 0.511427 0.520972 -1.159408 -0.233803 -2.024616 0.137986 -0.537925 -1.741051 0.677690 -0.669405 1.061674 0.177011 -0.121248 -1.750960 -1.946239 0.807417 0.480776 0.863854 1.043155 0.487886 -0.593508 0.010048 -1.524369 -1.445168 0.730575 -0.084628 0.696119 0.668345 -0.048780 -1.479494 0.487200 0.278702 -0.179732 1.560347 -0.652918 1.286243 -0.581168 -0.586593 -1.131907 -1.370586 -0.088177 -1.436400 0.733382 1.479698 -1.204713 0.529608 0.116274 0.590629 -0.014521 -1.958792 0.152345 -0.995828 -0.249364 1.879115 -0.673545 -1.172841 -0.197908 -0.168874 0.203759 1.881469 -0.212023 0.386933 1.915908 1.234735 0.614047 -1.643155 0.266986 0.183576 0.679642 0.969400 1.465484 -1.284521 -1.250419 -0.068289 -0.642490 -3.033669 -0.034681 0.923414 1.695872 -0.222014 -2.409913 1.732955 -1.289714 1.492183 1.443345 1.342224 0.932543 -0.189121 -1.303323 0.895190 3.111753 -1.079701 1.244676 -1.222616 -2.432195 2.785607 -0.172735 1.252943 -0.279344 -0.279938 0.384431 -1.453554 0.690969 2.440202 0.166118 0.332027 1.594529 -0.068583 -0.198765 -2.689551 -2.726901 -0.017611 1.460625 1.104182 3.969483 -1.845943 -0.506431 -0.390684 1.472639 -0.609540 -0.632548 0.102915 -0.537290 0.844186 -4.620407 -3.013558 3.050642 2.006916 0.297951 0.054439 1.533841 0.259952 0.393861 -1.440355 -1.453578 1.170448 0.783077 0.311231 -0.009790 0.186789 -2.024691 -0.174571 0.463936 0.501527 1.484098 -2.101340 -0.907894 -1.351050 -2.290366 -1.884257 0.784314 -2.176252 -0.406923 0.346936 -0.145914 -0.223047 0.684751 0.150838 -1.173776 -0.260515 -0.940822 -0.552195 -0.040566 1.561024 0.241826 2.184893 2.670532 -0.603963 0.749292 0.816950 -1.180180 5.148534 -1.780801 -0.097316 0.055617 2.223608 0.179927 0.965303 1.482267 -0.628937 -0.644162 -2.220354 0.950932 0.473557 0.463114 -3.565596 -0.844954 -2.569310 -0.479709 0.042954 2.696537 -0.174159 3.898721 -0.613592 0.294044 -3.780185 0.109616 1.442964 0.030572 1.558387 1.309616 -1.829140 -2.464633 -0.506758 -1.293032 1.373756 -0.469558 -1.676764 -1.428771 -0.004063 -0.024228 -1.072424 1.022771 2.557892 -0.932930 1.035327 -0.125970 -0.373742 -0.594788 -0.929024 1.100143 0.654762 -1.176545 2.046874 -0.219878 3.768381 -0.104084 1.825417 -1.436168 0.582687 -0.257675 -1.543030 -1.168969 2.419760 1.326992 0.561012 0.890342 0.308228 -0.371084 1.574041 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.041571 0.656077 1.870353 0.581147 -0.795599 -1.487950 -0.598012 -2.195715 0.837817 0.441574 1.412698 -0.266863 0.843859 0.137609 -0.036071 0.180988 0.814577 -0.228480 0.308012 -0.631275 -0.713289 1.831497 0.273221 -0.179157 0.272610 -1.598241 0.885587 0.420899 0.936007 1.119193 0.215659 -0.057627 -0.211998 0.607284 -0.488980 0.051017 0.045270 0.554020 -0.915246 0.275721 0.102680 -0.185038 1.110011 0.066585 0.734767 0.572325 0.549713 0.180362 -0.674531 -0.474778 -0.576774 0.970360 -0.613854 0.635210 -0.220477 -0.257966 0.194064 -0.360251 -0.164285 -0.428768 -0.159230 -0.222068 -0.660795 0.149818 -1.090290 0.296415 -0.852593 -0.797677 0.126312 -0.181719 0.770913 0.281383 0.111269 -0.137884 -1.821787 0.473369 0.329612 0.452354 0.561518 0.035764 -0.034999 0.116705 -1.039635 -1.159887 0.931547 0.884477 0.413244 0.025818 -0.723586 -0.417348 -0.092158 0.053714 0.256329 0.941459 -0.724815 0.573728 -0.653316 -0.466260 -0.835182 -1.771441 -0.010043 -0.883648 0.537447 0.219650 -0.234341 0.029718 -0.154214 0.393366 -0.156720 -1.285750 0.273922 -0.434616 -0.191731 1.605684 -0.478890 -0.462628 -0.556576 -0.199663 -0.081719 0.865893 0.283883 0.322058 1.117644 0.886213 0.564327 -0.927518 -0.361219 0.367822 0.514058 0.481890 0.766195 -0.892773 -0.803881 0.195165 -0.590181 -1.961217 -0.467335 0.653342 0.994296 -0.512369 -0.532159 0.470781 -0.744564 0.890116 1.066598 0.398188 0.477374 -0.070664 -0.790034 0.703529 1.810182 -0.667498 0.920647 -0.822088 -0.848063 1.324887 -0.410062 0.718680 -0.011534 0.037509 -0.249297 -0.787100 0.163496 1.321663 0.266443 0.395276 0.411060 0.177898 -0.479215 -1.375148 -1.770465 -0.041354 1.251022 0.237211 1.671991 -1.031526 -0.547261 0.052585 1.111639 0.053269 -0.668341 0.423376 -0.647473 0.539496 -2.206771 -1.667207 1.881140 1.689977 0.543533 -0.121647 0.731835 0.707394 -0.992644 -1.056689 -0.824697 0.860102 -0.053188 -1.389850 -0.719888 0.231965 -1.252582 -0.063651 -0.093734 0.445213 0.799775 -0.189326 0.365650 -0.435408 -1.108771 -0.844238 0.943381 -0.887257 -0.479001 0.113401 -0.045061 -0.059830 0.560088 -0.327499 -0.186801 0.374200 -0.861339 -0.009811 0.328953 0.646882 -0.026278 1.734315 1.564372 -0.199736 0.657241 0.073445 -0.760817 2.056825 -0.796159 0.123256 -0.097450 0.696558 -0.262240 0.578979 0.963425 -0.408430 -1.169161 -1.261321 0.107241 0.177336 0.457558 -0.610100 -1.147427 -1.601839 -0.091073 0.128943 1.814363 0.149821 2.155638 -0.474038 0.541372 -2.094420 0.223109 0.432611 -0.088713 1.083419 0.490501 -0.903928 -0.761380 -0.316290 -1.148041 -0.454879 -0.219417 -1.125375 -0.812832 -0.558596 0.467958 -0.630816 0.167394 0.890465 -0.193413 1.027029 0.090200 -0.324061 -0.901959 0.134335 1.345170 0.021299 -0.755854 1.047166 0.076053 2.732161 -0.136424 0.807563 -0.552215 0.070369 -0.021690 -1.016004 -0.519940 1.527914 1.120265 0.409013 -0.024700 -0.087462 0.011905 0.719061 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -3.504896 -0.172305 8.175526 7.313957 -5.255203 -7.575734 -2.527738 -8.386052 5.712173 2.666141 8.189358 1.089119 5.174114 -3.791353 0.124068 -1.955048 5.061569 -0.886462 -1.556854 -3.422994 -1.735582 9.421755 3.242376 -6.631649 1.609112 -5.261632 5.148472 3.707818 1.975032 6.103945 1.307074 0.933136 -1.310192 3.150426 -3.867311 1.251389 -1.223539 2.890138 -3.071395 -3.128420 4.297758 -0.609730 6.881815 -0.114959 5.605683 0.556718 4.594700 -0.842769 -6.446111 -3.856700 -2.275461 3.733189 -3.792652 4.096233 -1.494340 0.671535 3.362704 -2.845872 -0.478689 -8.465578 1.806126 -0.044914 -4.366912 -1.052365 -4.402936 0.931435 -0.145048 -4.109065 1.332422 -4.703888 3.105048 -0.153140 -1.017172 -3.843993 -6.693561 1.020915 2.243267 0.838338 3.553147 3.936649 -1.880242 -3.087808 -4.340050 -4.130378 4.734981 0.558013 1.787401 3.815024 -3.931857 -1.869124 1.301409 0.707466 1.031814 3.586722 -4.688134 1.187106 2.313105 -2.921764 -2.685173 -3.161445 1.615098 -4.060133 1.707479 4.654479 -3.472351 1.691320 -1.661472 1.554265 -3.128278 -5.421337 1.158706 -3.953773 -0.678766 5.767170 -3.526395 -3.502252 -2.849419 0.088055 1.604841 4.880271 -0.048560 1.891316 6.440773 3.717824 3.392782 -6.386501 -0.181693 2.569337 4.713111 2.599443 1.754638 -3.158331 -3.184010 1.527201 -4.316749 -9.647038 -3.837190 3.738747 6.898989 0.537627 -7.137520 5.009659 -2.756184 5.653155 5.503603 2.548971 1.857592 1.729676 -5.765011 2.191133 8.101303 -2.662719 3.986802 -2.052084 -6.103251 7.601277 -1.257919 2.810825 0.617359 -1.413650 -0.274528 -3.923686 2.222658 6.805497 0.816005 2.083900 -0.686882 2.072531 -1.459898 -8.291594 -11.598732 -1.274015 5.778638 6.097099 12.046198 -6.232791 -2.510352 -0.968683 4.467755 -2.190828 -4.213837 1.450021 -3.657500 3.611598 -14.304054 -9.154060 12.152332 7.919000 4.110836 1.417884 5.854910 0.764059 -1.055150 -2.525991 -3.999079 3.941096 4.033145 -1.972355 1.106964 0.986168 -7.483917 -3.327812 0.188265 1.276147 1.094915 -5.098329 1.548796 -3.665868 -3.955219 -3.148214 2.681496 -4.845550 -1.678795 -0.947901 -0.272724 0.811231 2.823594 -0.794442 -1.918921 -1.549438 -4.035702 -1.547816 -0.207660 4.683841 2.294954 7.439281 10.552321 -3.707182 3.827171 -0.357318 -4.193722 12.498531 -5.299885 -0.163464 -0.292497 5.762661 3.539269 2.102665 5.607390 -2.613008 -0.360852 -6.596513 0.938579 3.325240 3.461872 -10.631649 -4.099268 -9.757552 -0.407633 -0.656744 8.394251 -1.362746 12.254648 -4.005766 1.223569 -13.498201 0.419862 4.501363 0.087931 3.822935 2.492155 -5.219686 -8.443779 -1.446861 -5.389821 1.498014 -0.781325 -3.368551 -4.374445 -2.813268 3.665956 -5.400311 2.187785 6.299820 -2.411097 5.102599 -0.081138 -0.390145 -2.373651 -0.965594 1.413111 2.309416 -3.796270 6.306128 0.412004 13.024865 -0.721492 5.294866 -3.956166 5.684711 -3.305334 -6.869446 -3.446935 6.885958 7.307251 1.187168 1.905761 1.126431 -1.608767 5.758082 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -2.477001 -0.243373 7.227614 5.434327 -3.945074 -5.875415 -2.146496 -8.295813 5.366770 2.780366 7.336090 0.614215 4.645615 -3.338153 -0.235746 -1.485105 3.909748 -0.905086 -1.020893 -2.726793 -1.148764 8.430310 1.758771 -4.691068 1.272952 -5.492453 4.581664 2.932364 2.180232 5.149615 1.126249 0.742705 -1.045375 2.588850 -3.047039 1.296384 -0.592902 2.515452 -2.536374 -2.713844 3.442003 -0.449050 5.476115 -0.209888 5.237732 0.121994 3.391042 -0.942543 -4.686291 -3.119604 -1.494171 2.971867 -2.945906 3.241766 -1.190213 0.139062 2.132199 -2.409025 -0.299107 -6.349140 1.716111 -0.016426 -3.576419 -0.697018 -3.630403 0.854403 -0.151595 -3.191511 1.071698 -4.422597 2.483559 -0.166323 -0.813255 -3.172484 -6.258567 1.013086 2.076386 0.126502 2.922367 3.097245 -1.401318 -2.621328 -3.765078 -3.655844 4.400764 1.999868 1.177805 3.026643 -3.555892 -1.535703 0.964960 0.542098 1.143003 3.577219 -4.263180 0.699718 1.342687 -2.471283 -1.929906 -3.107344 1.518957 -3.750715 1.699733 3.740359 -3.047052 1.766993 -0.220834 1.519977 -2.286853 -4.457330 0.853166 -3.348319 0.404175 5.448673 -2.643578 -3.375812 -3.055675 -0.157138 1.183764 3.877748 -0.105977 1.481059 6.103653 3.014201 3.254979 -5.685421 -0.659890 3.212922 3.633901 2.193360 1.004122 -3.446800 -2.293426 1.177302 -3.678891 -8.436603 -3.518881 2.296965 5.611063 -0.777986 -5.354484 4.202233 -2.165334 4.856178 5.113835 1.611079 1.413964 1.885589 -4.963492 1.804378 7.084027 -1.976599 2.961553 -2.526105 -5.116746 5.843361 -0.910919 2.407649 0.374287 -0.726268 -0.327253 -3.622753 2.296483 5.830976 0.030595 2.105444 -1.093219 1.915237 -1.478736 -6.786619 -10.056316 -1.371102 4.906820 5.151620 10.408603 -5.331127 -2.461367 -0.686684 4.251474 -1.155201 -3.338051 1.824226 -3.477066 3.176257 -11.588117 -8.037057 10.009173 7.155721 3.993745 0.785204 5.118737 0.547881 -1.383879 -2.078853 -3.306750 3.456006 3.596969 -2.705086 0.820571 0.791553 -6.254418 -2.978930 -0.075342 0.969501 1.070625 -3.684688 1.948713 -2.999440 -3.056615 -2.996468 3.227783 -3.824751 -1.366671 -1.303677 0.053126 0.367847 2.747203 -1.360719 -1.416765 -0.848937 -3.101653 -0.711453 0.398552 3.223547 1.406639 6.203554 8.927305 -3.253634 3.286415 -0.593520 -3.006446 10.105956 -4.169973 -0.297343 0.078611 3.978306 2.626919 2.068710 4.499445 -2.348102 -0.485083 -5.663734 0.540078 2.309316 2.948462 -8.001285 -3.624950 -8.099322 -0.498045 -0.872640 7.143677 -0.365821 10.745655 -3.234618 1.416189 -11.386694 0.256681 3.840319 -0.043119 3.587787 1.919437 -4.448812 -6.800307 -1.018894 -4.532532 -0.097702 -0.754671 -3.244963 -4.098634 -3.087317 3.599419 -4.341594 1.727905 5.252422 -1.456375 4.305929 -0.773186 -0.240500 -2.401651 -0.391927 1.158064 1.682592 -3.308019 4.712760 0.316514 11.234181 -1.143082 4.503837 -3.269602 5.247548 -3.216993 -6.200009 -2.799714 5.802038 6.103903 1.420655 0.790716 0.515678 -1.550195 4.894575 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -2.095054 -0.686640 3.387727 2.711326 -2.226831 -3.629573 -1.157999 -4.059398 2.785962 1.072404 4.620299 0.162793 2.556831 -2.197295 0.250530 -0.615160 1.807530 -0.596886 -0.441013 -1.363803 -0.543953 4.583688 1.257177 -2.624284 0.699683 -2.584599 1.748126 1.755918 0.415055 2.952240 0.552975 0.226690 -0.634918 1.331015 -1.312527 1.297448 0.072356 0.994571 -0.980162 -1.416101 1.435566 -0.358952 2.700002 -0.337192 3.547487 0.493020 2.312338 -0.183345 -3.025090 -1.654099 -0.921648 2.196817 -1.686122 1.483521 -0.138441 0.361168 1.314608 -1.685803 -0.554423 -4.935554 0.648595 -0.304160 -1.888215 -0.258565 -1.832203 0.550541 0.067307 -1.621735 0.790132 -2.441497 1.360017 -0.108211 -0.321340 -0.967934 -2.361155 0.536119 0.947169 0.491865 1.276164 1.095160 -1.258920 -1.085694 -1.724140 -1.604956 1.771673 0.176262 0.886199 1.299920 -2.111304 -0.066021 0.471660 -0.061944 0.320171 1.556799 -2.198372 0.223538 2.029572 -1.234480 -1.218392 -1.329075 0.720828 -1.671591 0.805597 2.632293 -1.302871 0.523926 -1.327956 0.898055 -2.007488 -2.389384 1.026973 -1.831056 0.125220 2.198717 -2.136643 -1.057525 -1.306959 -0.094944 0.767793 2.707828 -0.072118 0.893557 2.532395 1.903094 1.289327 -2.542769 -0.534288 1.327457 3.108197 1.171991 0.731676 -1.921808 -1.152114 0.596564 -2.430803 -4.017520 -1.747162 1.765027 2.901730 0.430549 -3.746290 2.566040 -1.065375 3.403570 2.750010 1.304249 0.389218 0.705640 -3.158710 1.145717 3.838272 -1.135892 2.195143 -0.667641 -2.921719 3.268870 -0.644352 1.051262 0.831987 -0.496243 -0.121511 -1.677226 0.528288 2.564638 1.352924 1.009433 -0.315610 1.064891 -0.902592 -4.004076 -5.668377 -0.591069 2.560641 2.693219 6.236015 -2.879185 -1.963621 -0.668023 2.487306 -1.008173 -2.227016 0.437104 -1.553594 1.455589 -6.730949 -4.445146 6.616637 4.213794 2.640478 0.676082 3.394290 0.567680 -0.835036 -0.837582 -1.618117 1.639980 1.362956 -1.904302 0.717798 0.316794 -3.585291 -1.802266 -0.580693 0.696878 0.389418 -1.272375 0.924745 -1.161603 -1.489296 -0.727488 0.800370 -1.780892 -1.215810 -0.399950 0.009377 0.609241 1.110236 -0.984127 -0.633801 -0.456189 -2.754872 -0.465524 0.432121 1.992579 1.662601 4.507142 5.180173 -1.210553 2.418112 -0.252405 -1.632255 5.168365 -1.904514 0.105345 -0.040988 2.225855 2.122887 0.617885 2.411118 -1.086258 -0.751716 -2.697417 0.683222 1.186342 1.786739 -4.804789 -2.902079 -4.486243 -0.240356 0.162461 3.432908 -0.508029 6.132890 -1.150916 0.543052 -7.106461 0.091352 2.449761 -0.076041 1.306249 0.911784 -2.241652 -4.276457 -0.446788 -2.281397 -0.433433 -0.447619 -1.667790 -1.706327 -2.102093 2.404219 -2.570390 0.707427 3.131973 -0.584343 2.311102 0.762727 -0.252759 -0.975561 -0.416252 0.744303 0.771725 -1.770673 2.842981 0.389142 6.712428 -0.645548 1.931532 -1.565016 3.507468 -1.604507 -2.909523 -1.035497 2.690138 3.908926 0.532618 0.476363 0.685427 -0.989741 2.357895 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -0.979779 0.465723 2.926278 3.104279 -2.857607 -3.271332 -0.799329 -3.217026 1.971274 0.710525 2.618288 0.661148 1.942103 -1.383889 -0.179750 -0.963858 2.175483 0.365170 -0.445064 -1.414359 -1.455224 3.424488 0.924024 -2.436974 0.759698 -1.312733 2.716175 1.348413 1.103818 2.535388 0.688322 0.175454 -1.121973 1.179416 -0.934926 -0.062208 -0.989638 1.200302 -1.654603 -0.816856 1.573936 -1.264325 3.032237 0.200920 1.525188 0.240390 1.547294 0.052670 -2.549374 -1.265768 -1.110721 0.834728 -1.399950 1.875098 -0.562447 -0.253687 1.475863 -0.291829 0.205864 -2.488305 0.476448 -1.056206 -1.539666 -0.339023 -2.211323 0.064996 -1.189011 -2.043035 0.274038 -1.666454 1.037499 -0.036169 -0.284492 -1.508766 -3.175381 0.135677 0.862520 0.699917 1.648341 2.140461 -0.382539 -1.229499 -2.189907 -1.712052 1.390371 -0.137636 0.675643 1.239302 -1.832720 -1.199212 0.816573 0.499314 0.751968 1.132689 -1.726400 0.861429 -0.438958 -0.929826 -0.905079 -2.611659 0.622180 -1.261847 0.805290 1.058823 -1.726297 0.334552 -0.388618 0.442970 -0.599538 -2.234774 0.509869 -1.584743 -0.426820 2.618423 -0.795694 -1.704074 -1.162209 -0.121760 0.571082 1.649497 0.336588 0.460605 2.017999 1.395477 1.539242 -2.317625 -0.164061 0.913489 1.045665 0.936373 0.830337 -0.571988 -1.304240 0.775966 -1.538225 -3.734980 -1.161607 1.544073 2.543443 0.146947 -1.840653 1.203192 -1.606146 1.512342 1.842160 1.303162 1.085120 0.497126 -1.909393 0.810326 2.765672 -0.858606 1.246471 -0.614771 -2.338417 3.164616 -0.055829 0.935706 -0.386133 -0.609595 -0.151385 -1.202423 0.701498 2.561356 -0.083743 0.201948 0.346466 0.658565 -1.181680 -3.120619 -3.982532 0.136342 3.033560 2.707936 3.976045 -2.521107 -0.261913 0.026502 1.371353 -0.348248 -1.572277 0.739940 -1.104980 1.454489 -5.742963 -3.361707 4.281963 2.394660 0.940038 0.110344 1.277267 0.326477 -0.686612 -1.779566 -2.167962 1.208391 0.966636 -0.968350 -0.089692 0.602596 -2.898410 -0.584201 0.814814 0.577952 1.591091 -2.373152 0.568322 -1.820206 -1.271263 -1.932127 1.599734 -1.688029 -0.480646 0.106136 -0.342821 0.421159 1.144279 0.359554 -0.883912 -0.905753 -1.192894 -0.635850 -0.466648 1.715145 0.197436 3.196093 3.744886 -1.364013 0.562476 0.149404 -1.977667 5.602503 -2.305584 0.303594 -0.060972 2.411361 1.163536 0.928473 2.583266 -1.100869 -0.508428 -2.570252 -0.311203 1.171940 1.297189 -4.467436 -1.456144 -4.085599 0.205233 -0.581484 3.122992 -0.479071 4.462859 -1.679880 0.406317 -4.401430 0.195066 1.818009 -0.014378 2.160266 0.840707 -2.052516 -1.876766 -0.759625 -2.335247 1.447165 -0.272250 -0.853617 -1.570272 -0.113950 0.473350 -1.513712 0.756429 2.161284 -1.743685 2.061214 -0.418537 -0.112331 -0.876961 -0.462302 1.016845 0.743860 -1.495885 2.818715 0.342840 4.717553 0.445683 1.547938 -1.189503 1.462314 -1.063823 -2.879413 -1.575546 2.632193 2.474139 0.813982 0.743941 0.733735 -0.241269 1.942712 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -0.819634 -0.039592 3.557775 2.787218 -2.438176 -3.361702 -1.060717 -4.640075 3.132678 0.901409 3.620865 0.140209 2.185576 -2.060337 -0.258932 -0.203988 1.628900 -0.022258 -0.515531 -1.299142 -0.885936 4.635036 0.419166 -2.438062 0.556047 -2.858690 1.565759 1.696419 1.596320 2.139663 0.654242 -0.068792 -0.726001 1.224245 -1.432961 0.702712 0.055469 0.828629 -2.246810 -1.553428 0.858032 -0.373901 2.603577 -0.612659 3.044365 -0.308410 2.357726 0.008490 -2.354728 -1.039830 -1.177683 2.825447 -0.994867 1.587623 0.316794 0.007113 0.684280 -1.487056 -0.389946 -2.839802 0.339250 -0.105637 -1.598949 -0.202717 -1.974556 0.398879 -0.058157 -1.757135 0.783557 -1.872326 1.281124 0.031470 0.110898 -1.414399 -3.207811 0.641309 0.819972 0.672753 1.321255 1.723248 0.178745 -1.077926 -1.652902 -1.491920 1.720350 1.070864 0.451994 1.022200 -1.999353 -0.688523 0.450777 -0.386376 0.524983 1.341263 -2.668205 0.534456 0.112127 -0.975820 -1.290457 -2.125913 0.528729 -1.486601 1.012313 1.370276 -1.023313 1.027586 0.320353 0.755103 -0.917629 -2.182848 0.625266 -1.355284 0.513617 3.303630 -1.455788 -1.521752 -1.150973 -0.098425 -0.632982 2.125495 -0.050756 0.912982 2.510936 1.728861 1.714777 -2.469919 -0.612589 1.800028 2.238753 1.372318 0.905580 -1.957269 -0.906593 0.482885 -1.419343 -4.361819 -1.411515 1.395416 2.699719 -0.042791 -2.456764 1.293441 -0.879201 3.185426 1.934984 0.746597 0.660965 0.592129 -2.585427 1.019754 3.872482 -0.693180 1.632861 -1.248155 -2.453154 2.481860 -0.411869 1.282374 0.133810 -0.260064 0.002952 -1.755030 0.671187 2.369109 0.433081 0.313479 -0.326574 0.996885 -1.648140 -4.093361 -5.113310 -0.315625 2.080173 2.040899 5.603287 -2.642881 -2.204233 -0.644703 2.409251 -0.791126 -1.479065 1.138211 -2.266631 1.631552 -5.584936 -4.357736 5.778674 4.181263 1.732799 0.132777 3.232831 0.256332 -1.886880 -1.605847 -1.581627 1.199250 1.694124 -2.600491 0.130366 0.354967 -3.330534 -1.354159 0.057720 0.681514 0.904570 -0.547089 1.485476 -1.635786 -1.560530 -1.507423 1.823853 -1.453871 -0.558241 -0.170477 0.373324 0.197640 1.771716 -1.227630 -0.906065 -0.175695 -1.929863 -0.032388 0.332020 1.635745 0.604967 3.965948 4.671672 -0.719468 3.281535 -0.047985 -1.749916 5.779968 -1.979007 0.110812 -0.118783 1.465131 0.970147 0.827983 1.952354 -1.306511 -0.852824 -2.546871 0.109816 0.336614 1.464055 -4.063797 -2.788421 -4.121754 -0.493677 -0.164199 2.476170 0.084195 5.579634 -1.674993 0.474441 -6.846255 0.104354 2.349990 0.050794 2.046031 0.976490 -2.297152 -3.582440 -0.298396 -2.093784 -0.832350 -0.670256 -2.358432 -1.679968 -2.084397 2.540816 -2.185889 0.622586 3.358866 -0.625935 2.379447 -0.575511 -0.068730 -0.999084 -0.343107 0.888737 0.553453 -1.776283 2.521961 0.109954 6.752734 -0.333441 1.662840 -1.543173 2.452693 -1.309152 -3.297792 -1.157114 2.693899 3.038636 0.745160 -0.145217 0.230757 -1.359085 2.080572 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -0.815076 1.509478 7.527212 5.958713 -5.717471 -7.896920 -1.860379 -9.525165 5.405680 1.990506 6.408954 1.145974 4.803095 -3.012074 -0.434181 -0.491479 5.105002 1.034174 -0.921877 -3.460619 -2.686545 8.863083 0.836453 -4.347844 1.787058 -4.606469 4.910844 3.677045 3.989695 5.207080 1.748995 0.234458 -2.142279 2.692380 -2.603128 -0.031272 -1.528903 2.270694 -5.331747 -1.721319 2.291062 -2.100492 6.928014 0.265136 4.274195 -0.170923 4.102339 0.311054 -4.626383 -2.492557 -2.853429 4.004597 -2.185714 4.237623 -1.191983 -1.005203 2.227409 -0.932655 0.561878 -3.820750 0.809154 -1.330097 -3.679777 -0.756932 -4.878542 0.222423 -2.514828 -4.594583 0.557638 -3.592507 2.509395 -0.288709 -0.917980 -3.670051 -8.930875 0.476384 2.091615 1.582317 3.741379 4.378097 -0.018272 -2.767344 -4.917234 -4.161456 4.186878 2.012878 1.280579 2.890109 -5.248357 -3.126130 1.014555 0.653411 2.085582 2.836987 -5.018185 1.866196 -1.551793 -2.406971 -2.621417 -6.451284 1.514662 -2.927378 2.015755 0.815663 -2.269137 1.484505 0.060238 1.167603 -1.188539 -4.802629 1.067890 -3.041784 -0.689118 7.462964 -1.631050 -4.189111 -3.131467 -0.292407 -0.298001 3.825759 0.771928 1.070375 5.281559 3.407182 3.767759 -5.495451 -0.895769 2.848762 2.366352 2.687310 2.026739 -2.168778 -2.916668 1.663064 -3.551328 -9.434290 -2.795989 3.352028 5.929441 -0.795338 -3.097553 2.004257 -3.341431 4.309605 4.341388 1.818272 2.425020 1.070515 -4.582827 2.155145 7.338061 -2.068427 3.143690 -2.685146 -4.603171 6.113174 -0.411658 2.443966 -0.918503 -1.503027 -0.591395 -2.610354 1.785266 6.055663 -0.292120 0.385070 0.156119 1.688567 -3.417217 -7.196384 -10.004462 -0.307808 6.123192 5.233695 9.472075 -5.441404 -2.103389 -0.440209 3.617082 -0.929950 -3.392946 2.878548 -4.024904 3.554949 -12.056788 -7.995546 10.352991 7.251628 2.989344 -0.375550 3.973357 1.073382 -3.132110 -4.511120 -4.050960 2.786447 2.659233 -4.930851 -0.770425 1.304607 -6.899159 -1.355720 1.148031 1.384865 2.903471 -3.123972 3.313001 -4.247477 -3.480443 -4.580704 4.473438 -3.589110 -0.742438 0.015515 -0.387471 0.311548 3.361551 -0.696271 -1.989804 -0.775684 -3.073443 -0.634831 -0.718753 3.632056 0.380753 7.385202 8.890913 -2.305856 4.067415 0.069600 -4.637665 12.064795 -4.882070 0.898464 -0.099690 4.079216 1.402708 2.585819 5.188537 -2.633215 -1.761332 -6.069753 -0.906927 2.109139 3.131394 -7.679553 -4.102453 -9.011195 -0.086340 -1.386287 7.245943 -0.692926 10.548045 -4.299600 1.636439 -11.195545 0.673509 3.613980 -0.070825 5.187710 2.015363 -5.160704 -4.324563 -1.169667 -5.619157 0.355669 -0.481274 -3.345965 -4.084449 -1.907034 2.532726 -4.181295 1.400797 5.314816 -3.273097 5.321205 -2.057992 -0.238016 -2.462039 -0.351343 3.522096 1.274780 -3.679920 5.209355 0.607235 12.393729 0.616818 4.108928 -2.836397 3.099013 -2.178908 -7.259901 -3.724982 6.433690 6.050460 2.044992 0.699104 0.883719 -0.634005 4.576476 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp___GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/trie-suffixes.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.465324 2.379487 9.919547 3.950703 -5.005166 -6.246393 -2.526151 -10.604213 4.970584 3.326129 7.183192 -0.392650 3.369398 -0.329588 -0.391785 1.184039 3.704696 -1.006588 -0.935897 -3.771777 -3.253013 6.439013 2.084314 -2.604606 2.516475 -8.013594 4.039074 1.165065 3.471543 3.873253 2.095523 0.036404 -1.342689 3.636703 -1.644305 1.676648 0.448497 2.299857 -3.910346 0.183106 2.167810 -0.150411 4.408558 1.655351 5.612608 1.991391 3.558218 -0.371395 -5.026151 -2.183341 -2.740612 6.192153 -3.613140 3.912219 -0.756010 0.999737 -0.178203 -3.739559 -0.313234 -4.266554 -0.187392 -0.708422 -3.460256 -0.080097 -4.422750 1.180476 -2.237121 -3.633682 0.282778 -1.436144 4.336792 0.430117 -0.364347 -0.827138 -6.767877 1.662809 1.331340 1.727540 4.015063 0.434301 -0.874287 -1.258704 -4.027129 -5.339895 5.225787 2.412370 1.371243 0.771503 -2.135478 -1.744125 -0.732271 -0.772692 0.932164 5.188869 -6.658315 1.578704 -1.218588 -3.000640 -3.807598 -5.848361 0.224338 -4.818890 2.487047 2.089393 -2.927044 2.027440 -0.793788 2.138965 -0.832390 -4.577728 1.151079 -1.552168 -0.017833 6.888742 -2.791078 -3.574411 -1.282356 -0.379929 -0.229936 3.984448 1.406191 1.495630 7.862465 3.904162 3.989476 -4.458257 -0.687537 1.896947 2.739784 3.102400 3.485421 -4.541937 -3.784580 1.299749 -2.168638 -9.724566 -1.582743 2.680705 5.993342 -0.501405 -4.491570 1.233933 -2.510133 4.426941 4.383377 2.091620 2.246316 -0.050039 -4.441956 1.893477 9.512043 -3.242228 4.042975 -3.111309 -2.836092 5.130505 -2.342319 3.132582 0.408190 -0.072159 0.353346 -4.806489 -0.816209 7.049820 1.241617 0.860569 1.003110 2.188518 -2.869431 -7.786299 -9.319899 -1.902800 4.569007 1.322978 8.292355 -5.358866 -2.484453 -1.846264 6.214722 -0.810167 -2.932117 1.775027 -3.512099 2.560691 -8.647531 -7.955046 10.425739 9.972537 2.974823 -1.059474 5.017744 2.428292 -5.452815 -4.672332 -3.778053 2.858442 2.023702 -4.654611 -2.826159 1.037293 -6.656910 -1.995888 -0.198803 1.722497 2.620101 -1.330041 2.018308 0.622928 -4.306208 -3.491121 3.390815 -4.064847 -2.530347 -0.217216 1.108069 0.575972 2.826895 -2.457727 -2.060746 1.380549 -4.368695 -0.665322 2.362222 4.986383 1.431836 8.517788 7.505305 -1.260305 4.519765 0.075151 -4.301440 9.747640 -3.532648 0.059872 -0.151552 2.853094 -0.734434 2.369792 4.172251 -2.647577 -4.296969 -5.683775 0.714949 -0.326120 2.291858 -3.734557 -4.691802 -7.372877 -0.663458 0.115505 6.564692 0.185097 11.023697 -1.923521 1.943602 -11.300945 0.434603 4.450470 -0.962731 4.423242 3.215073 -4.832292 -6.304142 -1.724227 -4.834586 -1.375323 -0.496093 -3.094766 -4.211395 -3.188985 4.386493 -3.605364 1.930294 4.808005 0.172038 5.317984 -0.299095 -0.576550 -3.099968 0.685786 5.644166 1.657980 -4.673523 5.439948 0.407757 14.090500 -0.884390 4.038076 -3.343402 -0.163093 -1.050224 -4.127581 -3.337968 6.800168 6.428417 3.216608 -0.170637 -0.525834 -1.698846 5.174264 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -0.053096 1.069982 2.339205 1.802037 -2.060699 -1.971011 -0.548564 -2.060720 0.663690 0.205595 1.287841 -0.230680 0.616582 0.305397 -0.140894 -0.524550 1.072950 0.706500 -0.316541 -0.889532 -1.423152 1.024184 0.276860 -1.486864 0.517300 -0.763579 1.523679 1.010714 0.589115 1.004596 0.379730 -0.067449 -0.895414 0.845225 -0.814212 -0.588565 -0.197513 0.469652 -1.269716 -0.084164 0.588891 -0.535163 1.513679 -0.038075 0.583059 0.749873 0.715691 0.307026 -1.679020 -0.315156 -0.589802 1.077251 -0.455175 1.167779 0.286854 0.028511 0.434197 -0.748987 0.205193 -0.896223 0.303435 -0.554584 -0.665389 -0.080078 -1.432833 -0.121684 -0.771313 -1.574045 0.662042 -0.622566 0.509028 -0.415206 -0.195820 -0.769520 -1.474738 0.246658 0.598337 0.746019 0.871980 0.725479 0.486982 -0.211582 -1.194144 -0.991304 0.183367 0.012589 0.548281 0.264552 -0.817881 -0.863011 0.858301 -0.041401 0.267725 0.946017 -0.976074 0.851850 -1.332539 -0.552191 -1.344884 -2.220297 0.202801 -0.693774 0.867963 0.314803 -1.271181 0.284584 0.227635 0.488865 0.326831 -1.535459 -0.002935 -0.786180 0.298526 1.744984 -0.407645 -1.182345 -0.255472 -0.417294 -0.163530 0.908205 0.261614 0.077503 1.108840 0.927432 0.882125 -1.227272 -0.316203 0.108968 0.105790 0.883590 0.989789 -0.824093 -0.679136 0.311208 -0.862381 -2.295793 -0.052151 0.412197 1.403132 0.139508 -0.909436 0.092292 -1.180886 0.759456 0.397316 1.362159 0.549417 -0.155010 -0.770204 0.219978 1.605889 -0.692102 0.922802 -0.368862 -1.325181 1.109854 0.412437 0.666479 -0.054694 -0.299374 0.237013 -0.807393 -0.077862 1.619373 0.220171 -0.183149 0.936551 0.135990 -1.332936 -2.092784 -1.924921 0.473133 1.498336 0.589202 1.989537 -1.557697 -0.662904 -0.121147 1.563059 -0.447509 -0.711762 0.460173 -0.482575 0.826125 -2.251559 -1.973121 1.706498 1.394315 0.017901 -0.492099 0.852184 -0.125607 -1.165894 -1.478486 -1.382924 0.522935 0.136397 -0.465612 -0.477653 0.179984 -1.588231 0.543430 0.625333 0.614981 1.420624 -1.058168 0.059929 -0.603079 -1.265947 -1.511043 0.989272 -1.089780 0.004807 0.420815 -0.022125 0.178958 0.706879 -0.133188 -1.229203 -0.223502 -0.764633 -0.128702 -0.017365 1.020271 -0.178306 2.528569 1.337975 -0.240961 0.832820 0.322753 -1.199210 3.868448 -1.276003 0.403766 -0.025504 1.382508 -0.322122 0.558598 1.509885 -0.656090 -1.077200 -1.498601 -0.613669 -0.148513 0.651852 -2.262768 -0.893506 -2.201319 -0.098293 -0.245628 1.497588 -0.117061 2.428606 -0.368480 0.358171 -2.440570 0.066199 0.976401 -0.361133 1.366493 0.673421 -1.453461 -1.417441 -0.154642 -1.310545 0.580639 -0.070779 -0.727225 -0.896954 0.092311 0.030966 -0.097528 0.257958 1.505976 -0.867894 0.851913 -0.107630 -0.224874 0.014200 -0.632683 1.479814 0.097820 -1.136746 1.884664 0.371735 3.441507 0.690083 0.838606 -0.589390 -0.400273 0.172832 -1.082329 -1.050154 1.510289 1.128818 0.990784 -0.048850 0.529291 -0.523939 0.867901 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.695183 1.079149 6.948854 2.700951 -3.435758 -4.634535 -2.032792 -8.509968 3.865036 2.878387 6.014516 -0.616254 2.620242 -0.512796 -0.023229 1.082972 2.600204 -1.495882 -0.463833 -2.816017 -1.691267 5.281297 1.265271 -1.402009 1.444007 -6.278468 2.749059 1.109459 2.198329 2.351942 1.555555 0.022143 -0.987678 2.450997 -1.646608 2.026006 0.860101 1.950943 -2.440833 -0.173969 1.566677 0.469169 2.974685 0.657486 4.908242 1.353498 2.861020 -0.269748 -3.822104 -2.227621 -1.500658 4.549935 -2.655689 2.772912 -0.517813 0.340495 -0.031249 -2.931184 -0.519501 -3.277655 0.014018 -0.218927 -2.610598 0.107761 -2.750010 1.230856 -0.670637 -2.259335 0.459735 -1.288778 3.424064 0.093351 -0.450223 -0.037471 -4.823816 1.172439 1.021651 0.836380 2.718566 -0.114251 -0.671526 -1.149205 -2.913781 -3.943192 4.181123 2.720436 1.170355 0.799863 -1.970046 -0.522426 -0.472537 -0.826646 0.874713 3.951162 -4.807529 0.372945 0.214658 -2.253362 -3.048442 -3.607583 0.512284 -3.576824 1.959318 2.024887 -1.899738 1.295688 -0.731457 1.563578 -1.415316 -3.333540 0.834755 -1.538250 0.891483 4.983597 -2.403921 -2.467654 -1.484973 -0.481739 -0.033520 2.892713 1.272201 1.156038 6.287911 3.009951 2.949647 -3.668100 -1.261653 1.717207 2.790366 2.407543 2.018349 -3.781024 -2.634737 0.989157 -2.171999 -6.821016 -1.990061 1.814353 4.843322 -0.718204 -3.281807 1.513745 -1.665936 3.920211 3.563571 1.356821 1.159312 0.384232 -3.714856 1.421943 6.909811 -2.009063 3.001091 -2.225620 -1.850205 3.145198 -1.759985 2.239323 1.512895 -0.069553 -0.524495 -3.620282 -0.363045 4.901325 1.154434 1.353825 -0.139573 2.322997 -2.145509 -5.435548 -7.548209 -1.520824 3.315378 1.046243 6.506687 -4.189152 -2.473065 -1.141125 4.837573 -0.684888 -2.639528 1.392897 -2.888283 1.946155 -5.855533 -5.775865 7.998904 7.964348 3.218454 -0.573665 4.476372 1.871245 -4.298276 -2.817499 -2.284489 2.546103 1.752141 -3.902111 -1.594184 0.914423 -4.900338 -2.473571 -0.790712 1.448654 0.807048 -0.471540 2.026453 0.432929 -2.891812 -1.787671 2.285139 -2.556273 -1.793327 -0.557243 0.929425 0.364363 2.121235 -2.507749 -0.953734 1.196169 -3.529133 -0.054700 2.135175 3.382517 1.462986 6.389706 5.814795 -1.308038 4.199849 -0.592639 -2.822835 6.283365 -2.263817 -0.013324 -0.230967 1.862094 -0.009185 1.333189 3.040989 -2.078021 -2.775670 -4.343985 0.563854 0.240651 1.932570 -2.387160 -3.509081 -6.051874 -0.522013 0.062696 5.231422 0.251315 8.236462 -1.586249 1.556472 -8.817687 0.415241 2.958834 -0.896274 2.500971 1.989199 -3.211532 -5.280175 -1.046113 -3.783965 -2.473515 -0.383754 -2.638284 -3.252173 -3.307100 3.730133 -2.976327 1.198046 3.560609 0.839945 3.730579 -0.229519 -0.471054 -2.360273 0.797353 3.701318 0.991478 -3.753003 3.665509 0.361059 11.129885 -1.182992 3.144697 -2.390442 0.965163 -1.267800 -3.446606 -2.113431 4.949159 5.061931 2.040604 -0.298163 -0.413358 -1.488162 4.001757 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -0.506604 2.023903 9.817096 2.667690 -4.084118 -5.962930 -2.738583 -13.748110 6.200669 4.616394 8.501020 -1.182733 4.588859 -1.458819 -0.804688 1.224490 4.007402 -2.575492 0.514380 -3.563713 -2.203497 8.465603 -0.284103 0.239343 1.595176 -9.763044 4.614136 1.155080 4.225313 3.331392 2.656687 -0.088412 -1.572366 3.230019 -1.361553 2.807716 2.060308 3.032054 -3.683782 -0.644002 1.291639 -0.321795 4.710144 0.896110 6.704800 0.839311 2.831040 -0.359916 -3.927237 -2.910356 -1.524338 5.314133 -3.201433 3.355139 0.298746 -1.420949 0.130964 -3.234444 -0.006156 -1.998881 -0.303216 -1.270651 -3.123615 0.661236 -3.945639 1.504274 -2.073061 -2.546586 0.131148 -2.519799 4.018939 0.569372 0.271516 0.441542 -8.424066 2.254930 2.055852 0.096619 4.006911 0.922840 -0.210143 -1.639569 -4.796438 -6.267983 6.665853 6.382892 1.280025 1.197052 -4.165403 -0.967079 -0.776925 -1.211161 1.950100 5.905714 -6.363125 0.231338 -1.019111 -3.345182 -3.760339 -7.481487 0.841974 -5.198454 2.833799 2.105511 -2.829954 1.351278 -0.329066 1.757932 -1.411456 -4.354260 1.715066 -3.027019 2.151045 8.076923 -2.939287 -3.968694 -4.147671 -1.048878 0.285256 3.423101 1.618677 1.249325 8.619741 3.805468 4.810983 -5.484907 -2.286822 3.941358 2.940138 2.508625 1.931853 -6.036638 -2.959288 1.747933 -3.114587 -9.946332 -3.837505 1.666794 6.007752 -2.605518 -2.834591 1.683211 -2.256107 4.885578 5.691294 0.946257 1.635767 1.457376 -4.571255 1.991958 8.480727 -2.349022 3.503012 -4.049644 -2.531173 3.789368 -2.355174 3.282467 1.041165 0.477107 -1.567136 -4.962448 0.814780 6.857921 0.232446 2.034805 -1.329090 3.050051 -3.218798 -6.835054 -10.972425 -1.313543 5.724873 1.961619 8.755488 -6.067764 -3.404381 -0.455938 6.806526 0.537094 -3.662110 3.261498 -4.404837 3.092679 -7.994766 -8.472597 10.504390 10.524248 4.526726 -1.599441 4.948263 2.262672 -7.150204 -4.576807 -3.726218 3.833694 1.689043 -7.865624 -2.680077 1.652069 -6.693804 -3.015215 -1.188641 1.765642 2.770076 -0.430418 4.282294 -0.856668 -3.118796 -3.372409 5.340891 -2.484315 -2.877218 -1.396816 1.323035 0.446229 4.102431 -3.319885 -1.048714 2.032660 -4.292173 -0.074148 3.096582 3.623872 0.400442 9.243008 8.218878 -2.055995 4.738239 -1.225859 -3.195279 8.077239 -3.289201 -0.184593 -0.078677 1.485525 -0.056205 2.608155 4.837754 -3.160850 -4.628910 -6.244817 -0.174167 -0.181122 2.647149 -2.478908 -5.362867 -8.972703 -0.520014 -0.724132 7.625559 1.437323 11.627244 -2.369441 2.283993 -11.054117 0.552573 3.767388 -1.124531 4.678847 2.260707 -4.918593 -4.515073 -1.549972 -6.182534 -5.093114 -0.380135 -3.851717 -4.688584 -5.176293 5.775995 -3.624373 1.247712 4.329812 1.322440 5.225102 -0.757457 -0.448019 -4.593246 1.875311 5.450821 0.259854 -4.616747 4.860097 0.431719 14.765059 -2.216635 3.710122 -2.949206 1.955944 -2.006095 -5.956127 -2.937607 7.015205 6.583840 3.020807 -1.585477 -1.061882 -1.832612 5.812775 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/trie-suffixes.cpp__main = 2.593577 10.712223 26.043931 4.074173 -17.074422 -17.802544 -6.916659 -36.353688 13.939679 11.325243 16.306259 -3.314262 9.191536 -3.380643 -4.529357 10.290179 10.988510 -2.753304 -3.262435 -11.939203 -18.762398 12.716647 -3.113057 2.311377 11.518247 -21.392721 15.088662 -1.610637 8.328420 6.898493 12.294169 0.353710 -4.740239 11.554105 5.347341 13.627614 4.364374 7.228632 -11.205690 5.356631 3.784061 -7.060617 11.843912 7.460529 17.381675 9.976234 6.336076 1.489481 -13.398238 -2.763327 -6.540907 16.204815 -10.025962 9.535606 -1.514199 0.255400 -2.432140 -12.594833 1.267097 1.731598 -6.681282 -9.849650 -11.009799 1.804369 -13.868983 0.744922 -8.247091 -9.945338 -4.398055 -1.746350 9.618985 1.324092 -4.188794 3.098984 -18.360590 3.202926 8.550653 2.803852 14.969172 0.274595 2.170623 -5.833303 -13.982355 -17.836381 20.493552 9.614512 6.255995 1.654182 -6.446349 -6.302949 -6.194389 -4.181263 9.374924 16.919549 -19.823768 -1.645887 -8.060822 -11.107397 -15.722765 -25.833575 3.649913 -11.095273 9.653115 0.270825 -10.729556 5.681252 2.507047 5.734330 1.553663 -7.457934 1.324948 -8.019345 5.948184 22.619032 -1.810315 -14.278435 -7.803864 -5.714166 -0.749904 7.757752 7.584671 -1.273623 28.121412 9.561751 18.239703 -10.559602 -5.930080 4.849563 1.550372 6.287049 9.463427 -17.392459 -9.166704 6.712377 -6.963393 -26.978819 -7.157623 0.171709 13.005122 -7.285232 -6.082819 0.986824 -4.644007 4.341370 7.840089 1.520521 6.464143 0.013278 -9.322747 2.847436 23.369305 -6.837340 7.089887 -12.614834 -3.521836 9.283191 -3.004602 3.870691 1.074263 -3.534314 -4.120286 -11.160373 0.332293 17.347807 -0.816617 -3.631015 0.382836 7.887372 -14.817736 -16.481558 -22.730930 -1.284190 14.846992 0.846992 20.121130 -17.429783 -3.523031 -6.192163 19.710436 2.065702 -4.654694 8.134279 -11.876553 8.595786 -11.004775 -19.860988 27.127161 22.694336 9.961956 -7.072377 9.002086 3.527473 -26.267873 -15.792791 -13.448172 4.928002 6.589200 -20.440368 -12.867252 4.165636 -19.531497 -2.096887 -2.342332 6.693740 13.292709 2.782473 9.732000 -1.138715 -6.320660 -12.524256 11.931019 -4.876029 -5.984759 0.416221 4.690113 1.356618 11.644120 -6.845883 -6.801374 0.033036 -9.587327 -0.111305 10.023995 13.817692 -1.443117 26.769068 19.770797 -6.624685 11.023957 -2.649911 -9.099671 16.693374 -3.756945 3.332456 1.393928 4.545016 -2.483552 5.298758 16.533581 -8.495230 -15.765863 -13.520253 -4.187340 -2.953138 3.622860 -1.587809 -9.724135 -22.979784 -1.374543 -4.453778 17.890564 3.787582 25.178864 -0.978901 6.649026 -24.565626 1.965982 11.722888 -3.239684 12.025778 7.849979 -15.334007 -7.118501 -4.625400 -17.792526 -16.427882 -0.485275 1.252996 -13.124983 -6.676693 13.366469 -4.749023 1.025169 13.561321 2.571597 11.713485 -3.669526 2.016307 -9.990637 2.536283 23.277142 -0.291368 -10.361280 12.330052 4.820564 39.025469 2.432346 8.571543 -4.872521 -6.011873 1.080291 -12.715539 -11.783967 15.471123 14.072716 10.083271 -0.482767 -2.147544 -1.174711 17.190123 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = 0.059332 2.233433 7.095834 3.275740 -4.020779 -4.731377 -1.749332 -7.227569 3.084210 2.274652 4.632081 -0.696478 1.945246 0.622933 -0.423475 0.618675 2.493087 -0.011506 -0.804556 -2.828772 -2.919794 3.946315 1.258203 -2.171164 1.705956 -5.612768 3.270873 1.274707 2.200264 2.392718 1.416609 0.129869 -1.199673 2.715292 -1.762074 0.512634 0.240069 1.511787 -2.718099 0.386860 1.642030 0.322770 3.067655 1.379674 3.542870 2.236827 2.207886 0.002277 -3.861210 -1.469172 -1.675149 4.123955 -1.974196 3.084737 -0.446807 0.903248 0.155823 -2.961221 0.240598 -2.722856 0.180605 -0.371970 -2.223881 -0.012270 -3.281031 0.577093 -1.535870 -3.123021 0.537113 -0.845861 2.987345 -0.242842 -0.594654 -0.933000 -4.501626 1.124532 0.935483 1.397235 2.951332 0.081077 -0.537982 -0.647327 -3.138495 -3.848562 2.945640 1.643885 1.118974 0.718659 -1.372734 -2.013708 0.025104 -0.815573 0.713069 3.910058 -4.273215 1.259972 -1.224794 -1.982594 -3.246511 -4.411292 0.132130 -3.090570 1.965192 1.267595 -2.282500 1.348474 -0.146569 1.464138 -0.076495 -3.095364 0.764728 -1.440029 0.671541 4.829492 -1.584133 -2.949181 -0.683090 -0.713392 -0.358704 3.020100 1.101803 0.483668 5.651957 2.640821 2.570723 -3.004500 -0.658580 0.942571 1.310854 2.370333 2.733689 -3.372794 -2.633541 0.806325 -1.572775 -6.508472 -0.604533 1.485238 4.235433 -0.471994 -2.831885 0.916936 -2.155334 2.798250 2.533978 2.104887 1.527020 -0.475046 -2.944484 1.031198 6.706511 -2.193818 2.710259 -2.186267 -2.368887 3.220526 -1.044603 2.257995 0.571155 -0.450223 0.223594 -3.122861 -0.502788 5.040429 0.658136 0.106809 1.686055 1.535286 -2.631773 -5.322491 -6.418372 -0.805889 3.039553 0.742185 6.123521 -3.991377 -1.730006 -1.453664 4.732436 -0.719207 -1.789401 1.228618 -2.025989 1.614101 -5.694760 -5.524885 6.828928 6.794862 1.859595 -1.379119 3.571508 1.326911 -3.492981 -3.789735 -2.617979 1.657423 1.275596 -2.566360 -1.938601 0.792659 -4.524894 -0.932963 0.046288 1.376181 2.291042 -1.410136 1.101543 -0.147573 -3.401087 -3.044611 2.107355 -2.913383 -1.206242 0.270152 0.872548 0.052785 1.914408 -1.559143 -2.066503 0.873475 -2.779599 -0.233110 1.597285 3.509363 0.887462 6.352461 4.740059 -0.732567 3.384481 0.303343 -2.912128 8.026805 -2.681462 0.281889 -0.000937 2.387529 -0.867321 1.526152 2.947404 -1.868878 -2.870751 -4.075316 0.427312 -0.473093 1.180694 -3.281995 -2.724867 -5.689951 -0.625354 -0.337512 4.592823 0.126616 7.642305 -0.992574 1.216404 -7.691839 0.363749 3.075077 -1.080867 2.985434 2.398822 -3.648766 -4.525720 -1.008609 -3.443611 -0.583143 -0.194136 -2.324294 -2.919273 -1.566472 2.031227 -2.015883 1.512281 3.963703 -0.028523 3.078575 -0.586349 -0.390579 -1.719238 0.030585 4.432593 0.794430 -3.509398 3.822808 0.309494 9.952547 -0.156289 2.978324 -2.124283 -0.746628 -0.345306 -2.892957 -2.590055 4.621679 3.862932 2.541065 -0.026972 0.093208 -1.248624 3.664619 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/trie-suffixes.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/trie-suffixes.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/trie-suffixes.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/trie-suffixes.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/trie-suffixes.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/trie-suffixes.cpp___GLOBAL__sub_I_trie_suffixes.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.212021 1.547767 5.021831 4.107365 -3.069814 -3.428315 -1.461240 -3.403948 1.651445 0.647024 3.192211 -0.361028 1.100461 0.851677 0.019926 -1.538219 1.561625 0.243498 -0.859936 -1.571193 -1.933848 2.639536 2.312145 -4.258867 0.659185 -2.260075 2.686291 1.856561 0.594887 2.276124 0.227394 0.136043 -0.624049 2.268549 -2.625004 -0.885596 -0.482533 1.218515 -1.303847 -0.727872 2.017318 0.927144 2.762494 0.263680 1.778795 2.244760 1.907373 -0.074969 -3.472642 -0.843686 -0.943618 2.575813 -1.751855 2.256213 0.217800 1.517333 1.182316 -2.771159 -0.175093 -4.070685 0.917105 0.656104 -1.782726 -0.322377 -2.752292 0.105420 -0.261852 -2.585462 1.353341 -1.164756 1.727411 -0.566869 -0.465699 -2.172216 -1.948765 1.039644 0.671080 1.216456 1.641009 0.620808 -0.615446 -0.065416 -1.823062 -2.124539 0.560557 -0.577787 0.978578 0.857026 -0.030075 -1.482370 1.269790 -0.270368 -0.572922 2.700350 -1.534629 2.052904 -0.306372 -1.189229 -2.596042 -1.877199 0.133646 -2.203171 1.541093 2.261881 -2.120275 0.527581 -0.291104 1.005465 -0.080347 -3.203314 0.125521 -1.291451 0.377861 2.294245 -1.604239 -1.534163 0.323955 -0.530635 0.252179 2.752589 0.222793 0.516663 2.773072 2.093428 1.079267 -2.474869 0.224260 -0.177889 1.245147 1.900243 2.177553 -2.326243 -1.634051 0.355213 -1.134123 -4.409348 0.084374 1.636703 2.870189 0.624124 -4.053009 1.751048 -1.754382 2.281522 1.593119 2.939506 1.017011 -0.423160 -1.838648 0.669335 4.276998 -1.640227 2.184815 -0.720577 -3.303298 3.408709 -0.527664 2.029247 0.479084 -0.262411 0.712028 -2.335829 0.127264 3.639053 1.125235 0.405091 2.172865 0.046903 -1.009385 -4.450727 -4.232661 0.093385 2.112808 1.183335 5.299850 -2.907820 -1.455595 -0.668758 2.956220 -1.332047 -1.345194 0.079552 -0.667683 1.435614 -5.694918 -4.149238 4.099913 3.357515 0.506772 -0.322487 2.780345 -0.101870 -0.299722 -2.331717 -2.355173 1.733428 0.719004 1.265540 0.157100 -0.062572 -3.263521 0.118556 0.506967 1.014121 1.982156 -2.909208 -1.401951 -0.881780 -3.281380 -2.360443 0.458629 -2.781620 -0.698660 0.393417 0.078892 0.041044 0.823933 -0.210436 -2.365904 -0.330094 -2.019875 -0.789721 0.415132 2.443385 0.607633 4.460795 3.129232 -0.710406 1.878549 0.960629 -1.852773 7.810218 -2.567031 0.098140 -0.072051 3.475744 0.037318 1.100327 2.386574 -1.101778 -1.508718 -2.983736 0.865618 0.190848 1.291572 -5.614636 -1.846987 -3.929630 -0.670970 0.326403 3.353128 -0.543336 5.664206 -0.384271 0.770927 -6.051642 0.159686 2.362537 -0.498692 1.868062 1.937103 -2.952608 -4.546228 -0.503933 -1.915588 1.648564 -0.362198 -2.013183 -1.843418 -0.256036 0.325339 -1.214485 1.205041 3.602495 -1.294975 1.296592 0.354995 -0.633956 -0.017594 -1.789408 2.207170 0.678007 -2.358187 3.598422 0.034631 6.771168 -0.048811 2.721859 -2.002390 0.362900 -0.190419 -1.467586 -1.769782 3.485097 2.470805 1.182552 0.644322 0.794765 -1.373397 1.933155 -PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -1.493781 2.496104 8.946050 7.290305 -5.607315 -5.980354 -2.890233 -5.520600 3.094035 0.957117 5.153988 -0.731069 1.801743 0.996697 -0.643991 -3.057450 2.921206 0.405866 -1.478246 -2.878547 -4.060957 5.243418 3.454699 -7.756011 1.470207 -5.394568 5.590407 3.519914 1.403898 4.702643 0.450948 0.631296 -0.924244 3.978080 -4.571346 -1.957112 -1.000540 1.832107 -2.771131 -0.654934 4.279733 2.136659 5.385693 0.415081 2.566249 4.190348 2.507749 -0.065042 -6.178715 -1.407414 -1.927026 3.860694 -2.495766 3.682165 -0.054342 3.163056 2.271230 -5.240086 -0.517639 -6.188649 1.653375 1.557248 -3.022547 -0.358099 -5.239097 0.150470 -0.957831 -4.475106 2.853590 -2.276232 2.611652 -0.738230 -0.823367 -4.510331 -3.550212 2.252160 1.435117 2.489776 2.879473 1.320562 -0.864154 0.307441 -3.574676 -3.525192 0.642183 -0.716710 1.633021 1.351298 0.520326 -3.944872 2.184347 -0.118741 -0.694685 4.507775 -2.585791 3.166392 -1.926387 -2.110398 -4.063402 -3.360783 0.020937 -3.647428 2.633216 4.388989 -4.611077 1.441647 0.874537 1.850319 0.507322 -5.198912 -0.081453 -2.567310 0.856369 5.378051 -2.056714 -3.643181 -0.266705 -0.987667 -0.055242 5.066996 -0.390521 0.781698 5.237915 3.633108 1.807195 -4.273661 0.405860 0.114759 1.649699 2.920419 4.263301 -4.196492 -2.886607 -0.197323 -1.517461 -7.856087 0.035195 1.310978 4.655470 0.405830 -6.589693 3.435289 -3.396404 4.154761 2.406962 4.479498 2.050035 -0.973540 -3.534197 1.891690 7.893450 -2.604577 3.233294 -2.538940 -6.913635 6.117492 -0.139165 3.445009 0.054961 -0.782851 1.359170 -4.167704 1.310458 6.213392 0.467019 0.403788 4.292050 -0.047021 -1.075761 -7.233784 -7.458957 0.831620 3.061332 2.347415 10.326011 -5.385011 -2.251601 -1.827039 5.551324 -1.800290 -1.637176 0.385733 -1.259935 2.340385 -10.355916 -7.758630 7.367906 6.045886 0.445966 -0.472847 5.012610 -0.410844 -0.180517 -4.058136 -4.483281 3.009194 2.452288 2.385218 0.650921 0.301486 -5.229348 -0.198138 1.385751 1.744404 4.389399 -5.879346 -3.016499 -2.624306 -6.152499 -4.967162 1.918823 -5.387863 -0.659958 1.156753 -0.162924 -0.671590 2.216844 -0.247226 -4.440580 -1.038626 -2.617999 -1.239851 0.493356 4.551973 0.495413 6.602460 6.229920 -1.233089 3.230192 2.196409 -3.015069 14.661722 -4.826388 0.041528 0.087182 5.588026 0.001722 1.910571 3.597533 -1.799064 -1.995102 -5.473718 2.210659 -0.038557 1.616334 -10.631642 -2.696387 -7.306460 -1.496961 0.210414 6.057197 -0.088691 10.351384 -0.835500 0.408996 -10.329426 0.036645 4.782239 -0.223514 4.013719 3.482653 -5.278621 -8.521941 -0.842258 -3.554285 4.093282 -1.068226 -4.239317 -3.966396 -0.132479 1.112823 -1.794424 2.782616 7.860379 -2.403593 2.104154 0.053379 -1.251223 -0.451270 -3.677696 2.708547 1.440779 -3.637945 6.438756 -0.380962 11.174331 0.093027 4.777353 -3.632302 0.770326 -0.301084 -3.460032 -3.215042 5.864401 3.566747 2.156557 1.495702 1.074198 -2.472916 3.709874 -PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -0.528269 2.114855 6.392130 4.205542 -4.183642 -4.680332 -2.112951 -5.129769 1.934377 0.887286 4.013100 -1.094043 1.344759 1.037201 -0.191893 -1.010670 2.267251 0.253984 -0.600558 -2.183405 -3.466082 3.379797 1.678839 -4.025718 1.144949 -3.546686 3.327959 2.665564 1.094069 2.545727 0.693455 0.224719 -0.905208 2.614527 -2.930572 -0.820154 -0.076547 1.387358 -2.435520 0.113647 2.054432 0.754267 3.679766 -0.115813 2.130831 2.860068 2.072739 0.384872 -4.444454 -0.920307 -1.430118 3.542692 -1.591582 2.380146 0.257512 1.342724 1.068294 -3.569490 -0.502681 -3.158128 0.669290 0.357660 -2.276992 0.038757 -3.464568 0.215831 -0.888494 -3.219861 2.055664 -0.944079 1.849338 -0.614701 -0.742621 -1.999122 -2.896153 1.482702 1.456158 1.731071 1.929042 0.340790 0.372763 0.339357 -2.654423 -2.707137 1.111805 0.439692 1.579220 0.509931 -0.679441 -2.034610 1.340004 -0.297383 0.031869 3.189942 -2.113203 1.863722 -1.701398 -1.795876 -3.932015 -3.672863 0.191252 -2.467709 2.223466 2.291059 -2.894975 0.937486 0.224571 1.515761 0.066886 -3.931095 -0.309658 -1.976823 0.971896 4.283622 -1.566587 -2.479169 -0.558190 -0.961307 -0.382019 3.059000 0.315924 0.483046 3.933055 2.748956 1.454875 -3.045514 -0.587989 -0.112567 1.236861 2.276871 2.961936 -3.212304 -2.097487 0.039924 -1.694885 -5.706121 -0.409367 0.741689 3.178129 -0.136740 -3.648101 1.732529 -2.403626 2.974074 1.582150 3.022463 1.185769 -0.628138 -2.366472 1.268959 5.178573 -1.959654 2.656351 -1.663382 -4.066177 3.270802 0.040456 2.214767 0.731416 -0.723754 0.393983 -2.786654 0.361892 4.196056 0.819987 0.153501 2.530339 0.286164 -1.702030 -4.825258 -5.433382 1.021406 2.408884 0.843824 6.590807 -3.941041 -2.369332 -0.970506 4.341821 -1.171678 -1.529290 0.640112 -1.277466 1.804411 -6.006574 -5.335930 5.039057 4.366009 0.781898 -0.651649 3.632101 -0.128784 -2.102732 -3.063562 -3.060011 2.231374 1.283082 -0.178094 -0.389455 0.409760 -3.880060 0.325501 0.414615 1.585435 2.736208 -2.650919 -0.959641 -1.443580 -4.213161 -2.843623 1.645676 -3.309755 -0.476973 0.781526 -0.041250 -0.215533 1.771767 -0.999891 -2.890335 -0.493673 -2.448537 -0.438363 0.713959 3.129769 0.304527 5.849892 4.394829 -0.658982 3.192776 0.943576 -2.240049 8.954738 -2.863942 0.407748 -0.052720 3.307611 -0.650759 1.100566 3.086567 -1.347732 -2.464025 -3.827007 0.627411 -0.109860 1.340249 -5.567074 -2.162819 -5.483262 -0.976366 0.279150 4.562402 0.026541 6.850135 -0.439345 0.753083 -7.133114 0.166969 2.503516 -0.494784 2.806996 2.125014 -3.693097 -5.487455 -0.465990 -3.068416 0.897122 -0.458620 -2.816155 -2.882083 -0.730835 1.094825 -1.041519 1.221925 5.009519 -1.261775 1.661524 0.381832 -0.939907 -0.278019 -1.920175 3.374662 0.459249 -2.799934 4.501929 0.160579 9.342990 0.599380 3.085713 -2.190301 -0.271318 0.442604 -2.208273 -2.210571 4.118163 2.953277 1.770422 0.381601 0.769247 -1.630489 2.556097 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.031931 0.868860 2.545784 1.751707 -1.375100 -1.595859 -0.678209 -1.868923 0.922985 0.187375 1.177723 -0.325520 0.435114 0.351033 -0.177883 -0.336630 0.661414 0.305792 -0.325959 -0.670275 -0.801828 1.504520 0.702980 -1.801930 0.296803 -1.659433 0.932094 0.888945 0.843957 1.002749 0.082245 -0.050316 -0.288766 0.950333 -1.334068 -0.527436 0.002571 0.342695 -1.246355 -0.239375 0.487070 0.487693 1.135880 -0.162111 0.781149 0.719336 0.879224 0.093813 -1.316252 -0.226194 -0.683522 1.749379 -0.415592 1.038737 0.300094 0.543882 0.173996 -1.276933 -0.164973 -1.261931 0.254159 0.447595 -0.621330 -0.105837 -1.293231 0.077164 -0.158279 -1.232948 0.781804 -0.387398 0.778561 -0.104167 0.123784 -1.030100 -1.290198 0.627637 0.293446 0.812485 0.655160 0.346653 0.243707 0.121708 -0.737786 -0.923326 0.257120 0.276327 0.347756 0.219118 -0.142447 -0.858329 0.464248 -0.291085 -0.185340 1.082995 -0.993303 0.930940 -0.880985 -0.387390 -1.159188 -1.245351 -0.117456 -0.941088 0.703858 0.627340 -0.622318 0.497969 0.457437 0.544572 0.254953 -1.422144 0.079571 -0.384367 0.122772 1.648669 -0.631526 -0.748052 0.146878 -0.201578 -0.578718 1.214265 -0.077245 0.385861 1.171151 0.991761 0.656255 -1.077538 -0.035802 0.237082 0.527575 0.933435 1.146386 -1.268118 -0.653183 0.026906 -0.285252 -2.274274 0.066282 0.583218 1.273253 0.226783 -1.413967 0.330165 -0.746374 1.291866 0.389951 0.948947 0.510653 -0.279699 -0.771636 0.471705 2.326792 -0.754484 1.015632 -0.702424 -1.390110 1.245458 -0.145141 1.072324 -0.037540 -0.048255 0.498959 -1.136582 0.067442 1.658125 0.338029 0.045861 0.962155 0.000000 -0.809101 -2.324139 -1.955935 0.039641 0.702204 0.005652 2.485618 -1.226003 -1.097663 -0.470184 1.670931 -0.664864 -0.362047 0.293340 -0.733502 0.704809 -2.172238 -2.100362 1.997096 1.952737 0.086798 -0.240856 1.520971 0.107690 -0.772879 -1.242043 -0.917964 0.571000 0.491002 -0.219906 -0.305402 -0.020984 -1.462976 0.081268 0.359236 0.451819 0.951132 -0.625375 -0.237829 -0.305606 -1.754068 -1.250117 0.708814 -1.422120 -0.097150 0.323978 0.252901 -0.144043 0.729625 -0.504318 -1.135890 0.241371 -0.807117 -0.096306 0.186964 1.014606 0.068570 1.903965 1.517073 0.065967 1.576758 0.528943 -0.990531 3.781081 -1.153791 0.039417 -0.083941 1.122084 -0.487923 0.573876 0.794132 -0.566108 -0.889003 -1.438027 0.234642 -0.293556 0.449729 -2.091406 -1.153670 -1.490901 -0.530342 0.155495 1.165348 0.033321 2.599303 -0.412866 0.280370 -3.158422 0.100315 1.103269 -0.153175 1.118617 0.924475 -1.338028 -2.350561 -0.134888 -0.826952 0.367450 -0.377745 -1.596992 -0.809376 -0.505739 0.650014 -0.496010 0.529315 2.004179 -0.374344 0.838811 -0.166892 -0.267644 -0.234009 -0.678813 1.007715 0.219704 -1.067938 1.551577 -0.054168 3.415466 0.002457 1.097459 -0.936404 -0.087297 0.075321 -0.911499 -0.726328 1.630872 0.949164 0.658206 0.018360 0.157235 -0.880126 0.864837 -PE-benchmarks/m-coloring-problem.cpp__main = -0.129670 0.814093 2.354616 0.906159 -1.301733 -1.927348 -0.798374 -2.550931 0.843157 0.538547 1.816577 -0.427549 0.897235 0.306290 0.029065 0.018658 1.023070 -0.193067 0.201148 -0.855831 -1.162841 1.729822 0.388570 -0.519255 0.438606 -1.617025 1.188956 0.723452 0.705929 1.193151 0.350542 -0.005862 -0.438040 0.812679 -0.677135 0.065432 0.147248 0.652752 -0.974701 0.324655 0.345009 -0.170857 1.397749 0.042378 0.964579 0.958458 0.626358 0.266508 -1.273159 -0.585657 -0.544590 1.175620 -0.739253 0.801597 -0.073827 -0.080109 0.303030 -0.797106 -0.190691 -0.770839 -0.020436 -0.328536 -0.871770 0.185910 -1.297045 0.270484 -0.850044 -1.070271 0.386604 -0.336764 0.836867 0.016148 -0.122852 -0.155297 -1.752645 0.497520 0.535051 0.539766 0.730996 -0.006851 0.032356 0.116158 -1.246041 -1.328747 0.907603 0.773378 0.624162 0.073924 -0.827733 -0.478554 0.157801 -0.017554 0.313781 1.206518 -0.867385 0.594143 -0.665854 -0.713809 -1.341152 -2.060057 0.132961 -0.995074 0.787985 0.495649 -0.695488 0.042625 -0.270197 0.568219 -0.210593 -1.582931 0.194252 -0.717927 0.084455 1.843211 -0.644409 -0.723975 -0.641639 -0.395208 0.024370 1.081575 0.378900 0.255571 1.432337 1.110919 0.661542 -1.169176 -0.514417 0.221599 0.606251 0.675129 0.964772 -1.187903 -0.923812 0.249045 -0.934593 -2.300243 -0.542931 0.521000 1.260647 -0.425575 -0.870484 0.604415 -0.987125 1.019975 1.064693 0.846423 0.465198 -0.125483 -1.003223 0.664328 1.979034 -0.814865 1.147605 -0.736672 -1.184294 1.348482 -0.249845 0.776725 0.267002 -0.130382 -0.253039 -0.936831 0.096517 1.580486 0.433915 0.385536 0.568540 0.269025 -0.735539 -1.645738 -2.209190 0.190096 1.465185 0.307972 2.102652 -1.451880 -0.771244 -0.074055 1.633566 -0.098217 -0.877087 0.423205 -0.622261 0.680962 -2.444177 -1.980604 2.135460 1.923167 0.657188 -0.233788 1.023821 0.511880 -1.281718 -1.221997 -1.138594 1.023709 0.012055 -1.199361 -0.649294 0.257511 -1.554768 0.045061 -0.110036 0.653683 0.983743 -0.477353 0.246532 -0.465334 -1.336380 -0.964755 0.925918 -1.038866 -0.467735 0.184616 -0.085516 0.001612 0.648979 -0.445532 -0.528995 0.205407 -1.121617 -0.038033 0.450980 0.949240 0.057158 2.427992 1.761618 -0.309858 0.877036 0.044630 -0.912129 2.706483 -0.969080 0.248915 -0.100253 1.020102 -0.235072 0.519073 1.328921 -0.512439 -1.379721 -1.511875 -0.010756 0.163241 0.634118 -1.127705 -1.246587 -2.222133 -0.109296 0.105376 2.204123 0.096393 2.605682 -0.324741 0.592455 -2.502536 0.208052 0.622597 -0.238947 1.154430 0.593344 -1.220944 -1.338842 -0.281254 -1.494499 -0.410474 -0.151269 -1.076796 -1.053934 -0.538667 0.522738 -0.542460 0.185356 1.275737 -0.296774 1.008004 0.297224 -0.409224 -0.703584 -0.120816 1.670930 -0.010466 -1.034296 1.523817 0.222312 3.571483 0.084828 1.035139 -0.622170 -0.033008 0.081460 -1.048517 -0.739879 1.722337 1.417706 0.626810 -0.028428 0.113589 -0.175391 0.894635 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = -1.701122 0.177966 5.604120 0.467775 -2.159595 -3.193733 -2.048083 -6.306295 1.834540 1.548007 6.132473 -1.006884 2.203074 0.064248 1.222685 1.225543 2.129640 -2.899423 1.250294 -1.639387 -0.279134 3.729061 2.812877 0.250981 0.592614 -4.270587 0.584258 1.046403 1.440447 2.581978 0.765674 -0.875074 -0.462755 1.444920 -0.895130 1.868909 1.340235 1.506885 -1.815199 0.727036 -0.147965 -0.820566 2.477130 -1.502371 4.149756 0.417372 2.308875 0.026390 -3.872955 -1.727214 -1.727267 4.759569 -3.241755 1.101722 0.890347 -0.317707 -0.312324 -1.759135 -2.195234 -4.160714 -0.921818 -0.597454 -1.304374 1.160009 -1.712158 1.662718 -1.196011 -1.079925 1.256451 -0.124146 2.545560 1.319685 1.125331 2.841120 -2.744010 2.012425 1.437659 1.230207 0.744635 -1.542690 0.325483 0.374406 -1.116770 -2.801238 2.945089 2.204036 1.486077 -0.925351 -2.277737 2.070819 0.074749 -0.081267 -0.605078 2.466787 -3.063161 0.725179 0.724192 -1.841951 -2.980534 -3.512269 -0.465365 -3.136895 1.501389 2.681686 -0.871438 -0.170116 -4.073403 1.959206 -2.825408 -3.862669 0.647693 -1.129979 -0.891320 3.158122 -3.917247 0.242141 -1.740841 0.423272 0.875769 1.774485 0.299455 2.451374 2.911627 3.349320 1.538982 -2.698315 -1.139147 0.349800 3.989649 1.900440 1.840270 -2.028884 -2.275627 0.639149 -2.539989 -5.330339 -2.661373 1.980731 3.096210 0.855379 -2.791258 0.132339 -1.575986 5.142874 3.493233 2.074961 0.357391 0.500930 -2.666659 2.567012 4.233439 -2.749298 4.048192 -0.116505 -1.436561 2.596918 -2.430033 2.391098 1.845760 0.238531 -0.833044 -3.330436 -1.754347 3.517888 3.649552 2.859159 -1.288480 0.961325 -0.001106 -4.386637 -5.512474 -0.951969 2.679791 -0.028342 4.177098 -2.770285 -3.611757 -0.035170 3.921458 -0.248429 -3.734674 0.252286 -2.103714 1.451406 -5.837581 -4.792659 6.339263 6.372465 3.263865 1.234309 3.535634 2.851062 -4.669920 -1.397753 -1.494372 3.414145 -0.822192 -5.137496 -2.074459 1.054678 -3.637466 -1.268648 -1.548143 1.380780 -0.114252 0.801469 1.648992 2.199632 -2.787808 1.535066 1.204475 -2.837839 -3.338291 -0.653149 0.061979 1.859058 1.158797 -2.658318 0.308356 1.404357 -4.846277 -0.546318 1.683080 3.346362 1.807486 5.479350 4.998853 0.160162 2.970841 -0.737956 -2.585031 2.413433 -1.757702 -0.159164 -0.629015 0.627934 -0.156364 0.654484 3.184032 -1.467084 -3.503997 -3.400419 0.479752 0.835607 2.718643 -0.562709 -4.845938 -3.954013 -0.109521 2.699902 4.453628 0.273849 6.362111 -0.590096 0.977506 -6.997917 0.112427 0.563352 -0.277505 2.011305 1.054741 -2.228579 -4.548212 -1.136545 -3.352285 -1.821022 -0.118238 -2.378460 -2.004622 -3.620299 4.585841 -2.195131 0.235377 1.127276 0.556238 3.948790 3.660352 -1.580444 -2.354002 1.188978 3.151507 0.753939 -2.282856 4.080300 0.815512 9.734657 -1.419353 1.385733 -2.356799 0.537955 0.439467 -0.692604 -0.474569 4.412074 5.519688 1.520216 -0.895763 -0.518020 -1.474051 2.117475 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -6.933574 5.774983 33.206781 18.180749 -14.614922 -22.642452 -8.762275 -23.021621 10.980832 7.490817 22.384412 -2.355333 7.293151 5.962694 1.153221 -4.246897 8.183232 -3.789680 -1.530097 -7.881278 -10.452477 18.212509 14.348345 -16.121363 2.815297 -24.278004 12.730487 8.421645 6.390296 14.414314 2.103739 0.883274 -2.354341 11.012237 -12.857847 1.180466 -0.076560 6.179947 -6.690976 -2.134916 8.247898 4.299542 14.478856 1.194969 16.019364 8.293837 14.100223 -2.413905 -19.482956 -6.637773 -9.450451 20.537824 -10.339999 9.535512 2.256301 10.048442 2.708840 -15.720838 -3.811285 -25.526757 3.862551 4.939107 -12.965037 0.038909 -16.423518 3.843208 -5.667196 -10.548809 6.313097 -5.340938 11.549391 -0.902932 1.874330 -6.238228 -17.187356 7.888949 0.494468 5.674517 7.752154 1.166935 -8.063953 1.674249 -10.472590 -13.127821 6.355017 2.449545 1.758493 0.334449 -2.232840 -3.934161 0.491200 -2.050205 -5.876666 16.732690 -16.580230 13.011404 1.322221 -6.830587 -13.298038 -12.969842 -1.236766 -16.255192 6.280812 14.751094 -8.371013 2.505417 -7.646234 5.838468 -4.896095 -20.380008 3.224266 -6.992891 -0.781970 13.879907 -14.258615 -4.754452 0.060247 -0.697515 2.221475 15.702963 -1.838513 6.535529 16.355279 12.029675 6.574061 -13.089044 2.174355 4.011927 12.398586 9.586482 10.563118 -15.461431 -8.989660 0.279546 -6.099969 -29.219228 0.083230 13.994908 14.707643 3.588394 -21.383463 5.282681 -7.575885 19.722711 12.819514 14.885766 4.410347 -0.794081 -11.579002 5.418127 30.836124 -10.632813 15.607225 -5.503471 -18.044193 22.796817 -9.379105 15.613009 3.252798 3.659332 4.388764 -15.962640 -3.364288 21.642666 9.383765 6.405263 11.081293 1.181359 0.130246 -25.823473 -27.804976 -3.380426 11.825663 4.505057 32.339492 -17.898890 -11.478194 -4.709108 19.427802 -5.254762 -10.671381 0.750109 -4.882683 6.208111 -39.135419 -28.116604 27.303807 28.705222 4.249547 -0.899757 20.968792 5.565164 -7.946793 -13.031214 -13.306359 11.341443 1.808549 -0.468379 -0.366230 0.738905 -23.207342 -2.939208 -2.516298 4.188049 10.843779 -10.820223 -4.205532 -0.399867 -18.820971 -10.085125 4.764195 -16.407350 -11.296569 -1.394973 2.954303 0.692074 4.076634 -6.123861 -8.611108 5.855723 -16.790652 -4.020729 6.588686 12.520177 7.079104 32.312826 23.592945 -0.489642 13.103480 3.091512 -9.272413 43.849109 -14.103738 -2.921842 -0.906886 14.206115 -2.255906 6.338937 10.281843 -5.706668 -13.593978 -16.369952 9.043877 -2.415403 7.948159 -22.867250 -18.324486 -24.137611 -3.609391 5.808383 22.007116 -0.604794 35.368920 -2.017082 5.118627 -38.614192 0.887253 14.617525 -2.484360 13.209177 10.737228 -17.032795 -26.971846 -3.492938 -8.356631 7.027000 -1.825079 -16.084036 -10.695973 -10.239567 7.292507 -9.884633 8.207110 17.698718 -3.072302 13.610587 7.957735 -4.672814 -5.396730 -3.248428 13.011571 5.795171 -13.783019 23.267513 -1.900674 46.153716 -7.410630 14.516824 -11.116584 4.281027 -2.472798 -6.025261 -6.467400 20.819619 19.716632 8.526390 -0.330769 0.950434 -9.529303 10.499126 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = -0.593790 0.295853 2.450470 1.441446 -1.084633 -2.270953 -0.598099 -3.072113 1.749372 0.927413 2.375744 0.210666 1.806816 -0.963543 -0.039629 -0.066404 1.528207 -0.154096 0.071973 -0.903051 -0.282907 3.054246 0.426337 -0.843355 0.404360 -1.825576 1.438221 0.928169 1.237443 1.853710 0.521994 0.291926 -0.364025 0.756501 -0.759837 0.406296 -0.362897 0.950074 -1.168781 -0.587213 0.561675 -0.629828 1.823035 0.268824 1.619643 -0.031293 1.200840 -0.168055 -1.097982 -1.036241 -0.977089 1.158822 -1.011683 0.951435 -0.700699 -0.542489 0.730069 -0.128917 0.077011 -1.674291 0.297483 -0.334177 -1.280875 -0.117425 -1.399409 0.431773 -0.794249 -1.036316 -0.162910 -1.068515 0.963417 0.203373 -0.053137 -0.690421 -2.960927 0.286398 0.506830 0.132952 1.161845 1.002986 -0.478713 -0.734452 -1.422975 -1.534140 1.910556 0.980259 0.411641 0.984769 -1.638937 -0.597484 -0.199454 0.257486 0.543280 1.098645 -1.472428 0.566915 0.219355 -0.738080 -0.527291 -1.694935 0.485608 -1.248476 0.395247 0.582679 -0.335791 0.277165 -0.614788 0.333097 -0.839735 -1.598893 0.569900 -1.119504 -0.464194 2.043297 -0.904025 -0.833250 -1.164961 0.050208 0.410071 1.318044 0.192368 0.608007 1.561276 1.017907 1.016351 -1.722665 -0.260731 1.217347 1.072669 0.668670 0.315771 -0.874124 -0.998234 0.469030 -1.187036 -2.877123 -1.175999 1.318983 1.720611 -0.345369 -1.218710 1.083547 -0.842015 1.342616 1.943655 0.408729 0.624347 0.626009 -1.527032 0.746604 2.447343 -0.819529 1.149208 -0.714822 -1.290803 2.123415 -0.679051 0.864940 -0.091949 -0.249901 -0.279662 -0.916689 0.480019 1.973203 0.166543 0.674635 -0.190865 0.603463 -0.597480 -2.167715 -3.261600 -0.522051 2.131244 1.501988 2.880053 -1.590489 -0.545606 0.094568 1.233659 -0.138028 -1.196685 0.705409 -1.183338 1.040322 -4.077399 -2.578054 3.290854 2.293369 1.272155 0.112276 1.156452 0.844957 -0.784609 -1.072267 -1.030001 1.161440 0.482447 -1.710549 -0.292002 0.317459 -2.166030 -0.827394 -0.063603 0.319284 0.410312 -0.743177 1.220832 -1.115390 -0.899208 -1.055078 1.124255 -1.165100 -0.716230 -0.404466 -0.079336 0.162925 0.798686 -0.409998 -0.032155 0.232102 -1.133041 -0.281364 0.024979 0.868809 0.363599 2.262605 2.931774 -0.855817 0.801797 -0.218940 -1.218503 3.175136 -1.234557 0.092318 -0.055488 1.144762 0.717209 0.835769 1.494086 -0.788593 -0.668998 -2.020189 -0.096350 0.974925 1.043291 -1.736207 -1.427495 -2.672489 0.043540 -0.132652 2.636090 -0.239427 3.460687 -1.280748 0.599338 -3.366635 0.294115 0.998916 -0.182001 1.460691 0.616027 -1.443624 -1.272733 -0.545810 -1.657025 -0.246546 -0.213124 -1.179988 -1.243552 -0.932364 0.961510 -1.669403 0.416719 1.158929 -0.527179 1.695274 -0.227349 -0.073705 -1.211741 0.379256 0.971703 0.442162 -1.157512 1.500045 0.050863 3.615654 -0.402089 1.380474 -0.955104 1.442784 -0.939853 -2.059743 -0.884344 2.278611 2.117153 0.444249 0.202428 0.119306 -0.014998 1.502941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = -4.868026 -0.688813 7.544563 1.844203 -3.338013 -4.361590 -2.285144 -8.896913 5.039680 3.958594 8.886629 0.959842 5.580320 -3.289831 0.911287 -1.280980 4.897885 -3.622395 1.282779 -2.253123 1.477160 8.068020 2.326359 -0.081124 0.707205 -5.577472 2.600973 0.355407 2.683178 5.297717 1.677720 -0.239621 -2.752462 1.404010 0.290080 3.311135 1.821728 2.674529 -2.113081 -2.220168 0.921664 -3.271573 4.529858 -0.571403 6.508705 -2.580189 1.992917 -1.163784 -4.862021 -4.508689 -1.232065 2.833848 -4.510103 2.208937 1.855910 -2.317339 0.642524 0.175508 -0.826476 -6.813040 0.457182 -3.270861 -1.794391 0.383456 -2.014779 2.068206 -2.987171 -0.691317 -0.152100 -4.804694 2.612690 1.056694 2.571803 2.423558 -6.769726 1.724045 1.459959 -0.377026 2.545953 3.246533 -1.864237 -2.270967 -2.510458 -4.605951 4.461388 3.426944 0.312941 1.145821 -6.184965 2.788574 0.016508 0.404985 0.415977 2.952254 -6.102472 0.439093 1.754926 -2.779154 -0.468511 -5.763729 0.566104 -4.604958 0.684392 3.752948 -2.532810 -0.953670 -5.772793 1.237609 -4.212155 -4.574712 3.607131 -2.548266 -2.306242 4.596751 -5.441150 -0.627242 -4.264740 0.864295 3.355622 2.632934 0.194954 3.271692 2.718307 3.266473 4.156846 -5.185443 -0.698784 4.351834 5.595543 0.595280 -0.089073 -2.132042 -2.134836 2.471527 -4.525596 -7.665626 -5.222292 4.265105 5.784583 1.649427 -3.600398 0.351214 -2.225227 5.411836 6.473433 1.759174 0.766968 2.772657 -5.066403 1.825112 4.910816 -2.798803 4.495391 0.499319 -2.257227 5.260566 -3.635576 3.230126 0.333260 1.630191 -0.897473 -4.054798 -0.968533 5.510256 2.549683 4.284997 -4.532578 2.093214 -0.527547 -6.980267 -10.534569 -2.350076 7.265744 4.205002 5.239642 -4.504890 -2.613981 1.138255 5.009380 0.499856 -6.285098 1.889527 -2.605835 2.850865 -11.387027 -7.182412 10.318074 9.295330 3.790867 1.261478 3.188629 3.214208 -5.806824 -1.975476 -3.539810 4.202390 -1.244439 -6.587654 -1.504010 1.668294 -5.898191 -3.262285 -0.975102 0.664269 1.078154 -1.440431 4.284653 2.126502 -0.539395 -0.060482 4.149013 -2.250305 -5.177993 -2.451531 0.276296 3.136960 2.391785 -1.871960 0.693830 2.011141 -5.264821 -1.693838 1.287912 2.729757 1.951516 7.657947 7.835089 -2.004327 0.435260 -2.093721 -3.780411 6.388225 -4.157892 -0.649919 -1.010412 1.468194 2.730102 1.997007 4.644679 -2.389097 -3.670378 -5.058174 -1.206976 1.102019 4.687471 -4.700274 -8.253170 -7.032681 2.183349 0.948751 6.205678 -0.371641 10.559805 -3.200511 1.542646 -10.039109 0.220637 3.538324 -0.387975 4.144534 0.882657 -2.970600 -4.732663 -1.886913 -5.275822 -0.434519 0.133928 -2.357967 -2.106096 -5.129070 6.806690 -4.117224 0.463635 0.510415 -0.140105 7.464689 4.199114 -1.217118 -4.924616 2.745822 1.505679 1.461405 -2.862848 6.780067 1.146088 10.659038 -2.783631 1.522453 -2.047075 4.776397 -3.056786 -4.834023 -1.453267 6.147274 8.559700 2.376991 -1.885209 -0.328370 -1.902159 3.677454 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = -2.407352 0.607784 6.050352 0.669233 -2.643213 -2.988891 -1.574950 -7.025539 3.635332 2.799242 5.595109 0.275849 3.630765 -1.942507 0.000952 0.156338 3.488686 -1.916235 0.773169 -1.929326 0.030788 4.554973 0.963563 0.275218 1.428024 -4.485489 2.444139 -0.567274 2.115570 3.475252 1.669254 0.139819 -1.878600 1.540217 1.583041 2.777913 1.865965 1.886521 -1.753217 -0.487669 0.253584 -2.671063 2.579964 0.830942 4.733159 -0.782525 0.627796 -0.550305 -3.235482 -2.364645 -0.834628 2.108941 -3.293552 1.531253 0.999242 -1.112871 -0.193765 -0.675382 -0.135875 -3.661614 -0.219079 -2.891879 -1.513042 0.548563 -1.969168 1.361639 -2.461302 -0.608322 -1.065422 -2.542309 1.769248 0.948612 1.428182 2.337397 -4.844839 0.845330 1.290934 -0.059749 2.571574 1.345669 -1.134530 -1.677223 -2.198727 -3.877767 3.915889 2.554331 0.535728 0.689793 -3.445852 1.300810 -0.671684 0.052337 0.752311 2.905144 -4.802147 -0.052703 0.340945 -2.182817 -0.677786 -5.286624 0.507841 -3.301244 0.714414 1.654982 -2.205846 -0.196561 -3.336555 1.417520 -2.035677 -2.415644 2.331383 -1.806318 -1.345053 3.709566 -2.742715 -1.132371 -3.086882 -0.027971 2.304292 1.971387 0.179931 1.883657 2.883747 2.390714 3.154761 -3.157226 -0.695478 2.787183 2.800234 0.476280 0.635143 -2.397150 -1.788418 1.809723 -2.727246 -5.598080 -3.199170 1.909817 3.618933 0.487739 -2.192453 -0.547962 -1.585175 2.737526 4.041675 1.161304 0.484997 1.478508 -3.236928 0.991533 3.896182 -2.165106 2.877603 -0.249785 -0.659072 2.868030 -2.464599 1.839621 -0.528963 0.645566 -0.587814 -2.640004 -1.033233 4.038490 1.243260 1.872696 -2.597447 1.421327 -1.208465 -4.574900 -6.715095 -1.802269 5.356111 1.887656 3.215610 -3.362234 -1.380451 0.038126 3.960923 0.849888 -3.360329 1.352306 -1.985121 2.045688 -6.175121 -5.033445 6.868994 6.132376 2.628459 0.197815 1.483756 2.067437 -5.139168 -2.110773 -2.423054 2.257426 -1.078715 -4.898668 -2.380268 1.166784 -4.378397 -1.780536 -0.618638 0.819863 1.624846 -0.163089 3.260834 2.052750 -0.144642 -0.971111 2.826504 -1.185763 -3.690273 -1.267315 0.412289 2.136151 1.855677 -1.383441 0.106181 1.627617 -3.290093 -1.080688 1.482030 2.129445 0.793305 5.702483 5.203334 -1.038502 -0.194454 -1.268186 -2.646501 3.706186 -2.022659 0.195569 -0.340459 0.258641 1.163177 1.405725 3.608178 -1.725549 -3.196867 -3.557194 -1.498605 0.091377 3.002106 -1.720112 -5.343126 -4.383164 1.361374 0.554582 4.201487 0.009995 6.968944 -1.396483 1.371951 -6.191330 0.243222 3.033559 -0.703990 3.008814 1.076037 -2.529850 -2.809296 -1.404547 -3.917998 -1.413808 -0.113735 -0.516311 -1.872245 -2.655793 4.627632 -2.228609 0.194282 0.586696 0.665234 5.032358 2.342346 -0.350197 -3.498048 1.980717 2.442398 0.525227 -2.063297 4.037647 1.247447 7.466421 -1.490016 0.952440 -1.122197 1.636367 -1.322487 -2.890797 -1.491996 4.403637 5.514345 2.156305 -1.241071 -0.627421 -1.037903 3.103043 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = -4.379857 7.721203 30.782940 15.651656 -15.359391 -18.003223 -8.051820 -25.441936 12.945878 8.105472 19.577860 -1.499928 8.953062 2.181546 -2.070150 -3.820047 10.080103 -1.059909 -2.073289 -9.420606 -10.484570 18.201504 8.672732 -12.961335 5.238241 -21.844381 16.757226 4.656330 8.974382 15.811109 4.133764 0.932967 -3.905591 11.409208 -6.143599 0.911747 -0.772042 6.416094 -8.461748 -1.080604 8.725734 -1.768197 14.441984 4.802782 13.607719 7.591573 7.942515 -2.311696 -16.137967 -5.629459 -8.489790 13.762338 -11.407841 10.322930 0.004775 5.269511 2.311343 -12.179295 -0.633254 -16.826447 2.052266 -2.051086 -10.027800 0.017150 -15.894958 3.288275 -9.708298 -11.213225 2.481353 -6.961079 10.536023 0.894897 1.410849 -5.477874 -18.854291 6.614921 2.817919 4.855324 10.857650 2.591488 -4.906555 -1.175283 -12.030418 -14.956779 9.453063 3.403285 2.469602 2.148678 -3.744829 -7.895243 0.436055 -0.718011 -1.018983 16.420249 -15.507294 9.550301 -5.726584 -7.363099 -10.047771 -18.852127 -0.379700 -15.164766 6.870517 9.984266 -11.702251 3.845991 -1.746238 5.579256 -0.505903 -16.216412 3.575169 -5.926846 -0.451385 17.449134 -8.893059 -9.454660 -3.356828 -1.563077 2.713345 13.531718 0.734365 5.083666 18.213028 11.245369 10.127129 -13.596165 0.533177 5.837841 6.204850 7.796438 10.672723 -13.628711 -9.837829 2.305477 -4.863965 -28.102831 -2.081921 8.258926 15.588432 0.847467 -16.186267 4.433930 -8.824174 12.363475 13.080351 11.574681 6.228985 -0.439832 -11.924295 5.476791 27.007841 -10.027525 11.831856 -8.647271 -14.237057 19.738862 -6.782717 11.206544 -1.681294 1.888642 3.483861 -14.750473 -1.133886 21.675828 2.724738 2.755239 8.362588 2.314352 -5.735158 -24.332481 -24.873037 -3.154840 15.779734 6.394357 25.965271 -16.829609 -5.393930 -3.620822 18.577621 -0.880283 -7.798470 3.602444 -6.148925 7.412750 -33.299968 -25.802451 26.198466 24.319732 4.526810 -2.628836 12.250124 5.891061 -9.663215 -14.201425 -13.994833 9.673900 2.378571 -4.681850 -5.084609 1.423099 -19.147696 -1.902703 1.707032 4.534714 13.807686 -12.150262 -0.632695 -1.205623 -14.256939 -15.089523 10.224426 -14.882804 -8.860812 -0.602136 2.244561 1.320574 6.498238 -2.327860 -8.182987 3.014985 -10.123286 -3.447127 5.830396 12.404234 2.057916 25.002431 20.783428 -3.288712 6.045187 3.174914 -10.357552 38.637474 -13.478685 -0.545500 0.433673 11.788414 -1.767806 8.117632 12.631314 -6.858136 -12.268099 -16.836655 3.384613 -2.616784 7.520696 -20.361845 -14.358262 -21.935411 -1.774259 1.697066 19.965418 0.775923 33.851189 -3.270513 4.791152 -31.342995 0.611446 15.523384 -2.458024 15.590330 10.523211 -16.153233 -17.811100 -4.785314 -11.676572 6.014841 -2.151597 -10.877085 -11.738429 -4.730477 7.072568 -7.627383 6.621748 15.129204 -3.299747 13.431997 2.357795 -3.020228 -8.172494 -2.048044 13.825756 5.081545 -12.238000 20.222193 0.128258 36.563788 -2.789422 11.932142 -10.001272 1.223664 -3.082264 -10.325375 -9.066352 20.811549 15.936033 9.706958 -0.356467 0.440105 -5.991225 12.628245 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = -1.668911 0.246482 2.380620 0.588154 -0.528478 -0.536985 -0.552925 -2.055403 0.937048 0.859286 2.440727 -0.426179 1.210997 -0.122848 0.034336 -0.699833 1.282859 -1.094655 0.826116 -0.315802 1.092039 1.692717 0.676680 -0.027151 0.170872 -1.484198 0.728717 -0.078682 0.552062 1.228494 0.455761 0.424129 -0.480465 0.275616 0.231367 0.615676 0.610080 0.956309 -0.329143 -0.457784 -0.038389 -1.007002 0.563577 0.075835 1.621568 -0.207456 0.476184 -0.519703 -1.221007 -0.926117 -1.000787 0.841272 -1.405125 0.031338 0.224451 -1.038189 0.256382 0.045084 -0.429981 -2.425464 0.010865 -0.877762 -0.196433 0.294149 -0.649281 1.137560 -0.717834 0.206972 -0.209804 -0.777793 0.849139 0.722241 1.312613 1.404527 -1.608014 0.959520 0.181735 0.043246 0.560214 0.281497 -0.344857 0.166306 -0.416995 -1.294409 1.200841 0.959780 0.362843 -0.033410 -0.959333 1.067166 -0.367015 -0.037566 -0.561255 1.037951 -1.408658 0.671051 0.335417 -0.637035 -0.113008 -1.203663 -0.080644 -1.477435 0.091691 1.471947 -0.882413 -0.176446 -2.018206 0.394775 -0.997248 -1.467769 1.073142 -0.935849 -0.737664 1.013151 -1.846015 0.243393 -1.053500 0.454782 1.187111 0.783641 -0.509051 1.433203 -0.119234 0.904729 0.786396 -0.989230 -0.037164 1.254282 1.395389 0.093615 0.091560 -0.557472 -0.700807 0.076343 -0.850601 -1.532825 -1.335630 1.262329 1.480249 0.530347 -1.492312 0.179501 -0.645633 1.625141 1.833438 0.745201 0.097523 1.016777 -1.264692 0.477092 1.386548 -0.903768 1.325475 0.490113 -0.044912 1.215083 -1.077338 1.115667 0.167099 0.865241 0.026863 -1.345325 -1.021267 1.299467 1.360377 1.146058 -0.607814 0.382105 0.385601 -2.129468 -2.475209 -0.930856 2.010399 0.379705 0.872329 -1.096202 -0.638645 0.429379 1.472063 0.323530 -1.555233 0.029746 -0.325737 0.556042 -2.808822 -2.029926 2.061614 2.154348 0.461981 0.572956 0.581260 1.052441 -1.479989 -0.633172 -0.695824 1.420544 -1.351636 -1.286616 -0.759866 0.266439 -1.217199 -1.157806 -0.243329 0.225908 0.309782 -0.062449 1.046170 1.114747 -0.020766 0.130579 0.414533 -0.710783 -2.169481 -0.484009 0.054630 1.185078 0.282430 -0.745099 0.536487 1.133865 -1.535728 -0.758876 0.435262 0.382398 0.271572 1.758308 1.900603 -0.071532 -0.471835 -0.337306 -1.079795 1.758819 -0.522031 -0.124892 -0.410637 -0.169624 0.689481 0.476568 1.007951 -0.608057 -1.440459 -1.579077 -0.075580 -0.043445 1.353945 -1.107602 -2.320701 -1.341913 0.759276 1.097541 1.230132 -0.047196 2.864959 -0.418387 -0.028411 -2.343428 0.018534 1.290861 -0.331814 1.017853 0.373033 -0.724674 -1.221299 -0.488088 -1.219428 0.195674 -0.337354 -0.979409 -0.625552 -1.085739 1.769796 -0.866656 0.140386 -0.108920 0.543982 1.704045 1.756993 -0.516628 -1.211128 0.588627 0.461516 0.536713 -0.872171 2.000140 -0.061272 2.519179 -1.187755 0.000390 -0.637062 1.049724 -0.537011 -0.578572 0.024626 2.165199 2.028329 0.616980 -0.651411 -0.466822 -0.540440 0.899800 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -1.054236 1.039050 5.466612 2.802628 -2.991212 -3.664396 -1.368023 -5.891440 3.437049 2.511381 4.348074 0.273570 2.806115 -1.324914 -0.680163 -0.072008 2.849868 -0.480656 -0.190517 -2.303210 -1.567527 5.009096 1.283181 -1.468610 1.295974 -4.972019 3.628644 0.311517 2.285051 3.414556 1.218453 0.536710 -0.931277 2.169783 -0.486997 1.052323 -0.187939 1.890328 -1.751978 -0.215960 1.752955 -0.863896 3.087037 1.796615 3.396394 0.899738 1.219975 -0.626127 -3.275024 -2.001876 -1.314567 1.603573 -2.495388 2.550250 -1.144631 -0.132206 0.998271 -0.899628 0.593534 -3.512399 0.258028 -1.320722 -1.702437 -0.026599 -2.804705 0.862315 -2.118512 -2.170569 -0.720100 -1.399000 2.447078 0.825321 0.276867 -0.379653 -4.854686 1.019776 0.952982 0.559536 3.053116 1.138496 -1.632428 -1.455717 -3.014769 -3.816725 3.464771 1.431773 0.733167 1.569712 -1.807481 -1.646421 -0.280693 0.050360 0.927443 3.138241 -3.519353 0.677178 0.030255 -1.547901 -0.873264 -4.044049 0.033466 -2.946117 0.848924 1.717805 -2.077534 0.821361 -1.294630 1.008494 -0.996759 -2.221511 1.756107 -1.892753 -0.706096 3.866238 -1.333685 -2.434051 -1.646232 -0.016915 1.160815 2.713303 0.517970 0.868260 4.365954 2.030844 2.375313 -2.871866 -0.041031 1.889456 1.505570 1.142852 1.545471 -1.977750 -2.485141 0.989893 -1.591839 -5.317821 -1.662538 1.918894 3.711891 -0.588689 -2.332896 1.456207 -1.894673 2.353379 3.582324 1.120072 1.383322 0.373674 -3.173197 1.347354 5.343937 -1.785821 2.008959 -1.566689 -2.168051 4.053246 -1.584724 1.840550 -0.609769 -0.460658 -0.207745 -2.503059 0.251500 4.478921 -0.142116 0.542604 0.192031 1.526482 -1.358929 -4.342714 -6.180890 -1.220643 4.045078 2.461355 5.430936 -3.405121 -0.367335 -0.577911 3.039853 0.402967 -1.942473 1.112124 -1.563392 1.509434 -7.457687 -5.244702 7.136926 5.687762 2.238902 -0.516575 1.983633 1.908121 -1.845324 -2.996670 -2.216439 1.551390 0.855294 -2.773255 -1.806675 1.303646 -3.983256 -2.016924 0.205793 0.631816 2.033647 -2.165949 1.484590 -0.787682 -1.611117 -2.465818 2.216584 -2.376178 -1.928767 -0.342824 0.452600 0.599382 1.713198 -0.439583 -0.679759 0.490028 -2.036584 -0.813872 0.704096 2.909848 0.969193 4.632934 5.587763 -1.507717 0.656653 0.098460 -2.491323 6.611380 -2.749038 0.049483 0.165097 1.817934 0.872595 1.532325 2.994250 -1.683468 -1.417331 -3.898416 0.378204 0.699753 1.215222 -3.889554 -2.631802 -5.275004 0.403690 -0.546460 4.398933 -0.066603 7.228100 -1.737690 0.558983 -6.225183 0.282726 3.167312 -0.627419 3.216927 1.927733 -2.868613 -2.951024 -1.633006 -3.263486 0.669807 -0.396165 -1.433600 -2.265327 -0.982971 1.869169 -2.601623 1.711456 2.624301 -0.157645 3.618706 -0.307470 -0.094157 -2.960418 0.936934 2.400542 1.010144 -2.405143 3.298614 0.216742 6.870561 -0.920004 2.079160 -1.873006 1.140848 -1.421969 -3.541401 -2.138515 4.332390 3.802619 1.889879 0.548868 0.074802 -0.360600 3.823110 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = -0.919842 -0.080558 1.293022 0.391603 -0.514157 -1.028679 -0.389152 -1.382098 0.799255 0.600271 1.544865 0.171558 1.053736 -0.617710 0.234007 -0.222472 0.796592 -0.566857 0.265815 -0.352863 0.127020 1.421781 0.581046 -0.134203 0.125711 -0.853278 0.532452 0.152331 0.393066 1.146746 0.195825 -0.060608 -0.397927 0.320337 -0.049207 0.560167 0.251383 0.551862 -0.252310 -0.324996 0.123344 -0.557735 0.830018 -0.018906 1.066485 -0.155997 0.352542 -0.138777 -0.882441 -0.833667 -0.271872 0.437180 -0.931573 0.442789 0.102983 -0.354287 0.324361 0.104297 -0.134948 -1.559595 0.101158 -0.553635 -0.400073 0.029827 -0.473366 0.324923 -0.533053 -0.292769 -0.087562 -0.699158 0.540576 0.299764 0.454114 0.429113 -1.168761 0.278713 0.254606 0.035767 0.519864 0.447102 -0.476482 -0.370210 -0.480757 -0.862982 0.853457 0.322847 0.230157 0.334585 -1.024847 0.427705 -0.023641 0.135988 0.106318 0.495459 -0.757027 0.173849 0.495069 -0.377540 -0.063998 -1.039191 0.077481 -0.797157 0.056587 0.758411 -0.230116 -0.281089 -1.255277 0.293155 -0.876615 -0.900690 0.763888 -0.547635 -0.645706 0.628292 -0.979170 0.033182 -0.552027 0.143664 0.711129 0.640324 0.093688 0.541810 0.326117 0.607102 0.618255 -0.883008 -0.089055 0.602457 1.108000 0.155064 0.043198 -0.368088 -0.466411 0.451388 -0.907343 -1.403876 -0.823885 0.940915 0.968198 0.340827 -0.883551 0.383927 -0.476434 0.850568 1.195305 0.450409 0.190892 0.407682 -0.913551 0.386465 0.924020 -0.595698 0.903270 0.237107 -0.521908 1.100432 -0.692156 0.547970 0.065069 0.123179 -0.064325 -0.639947 -0.162671 1.023215 0.649531 0.819622 -0.606029 0.335830 -0.150818 -1.276213 -1.778332 -0.374326 1.458284 0.693283 1.078412 -0.805065 -0.415372 0.213719 0.887415 -0.101982 -1.066041 0.131330 -0.344250 0.517313 -2.354065 -1.306639 1.978414 1.477104 0.741728 0.287958 0.482086 0.716480 -0.733072 -0.331780 -0.608421 0.649502 -0.295191 -1.098786 -0.358477 0.241312 -1.126672 -0.524137 -0.158343 0.113574 0.091170 -0.292917 0.527594 0.225164 -0.169767 0.034615 0.459297 -0.553949 -0.874381 -0.343821 -0.007121 0.544479 0.301629 -0.244827 0.164310 0.374743 -1.039792 -0.355671 0.161303 0.579143 0.520989 1.546193 1.448279 -0.394976 -0.043845 -0.262333 -0.707675 1.279517 -0.766543 -0.076814 -0.158806 0.607693 0.643021 0.342803 0.925570 -0.418466 -0.619301 -1.016148 -0.192166 0.500414 0.761775 -0.852838 -1.400432 -1.322441 0.377748 0.215631 1.295243 -0.225117 1.884243 -0.501622 0.292812 -1.745480 0.077998 0.557776 -0.128308 0.663065 0.232027 -0.507743 -0.992880 -0.450572 -0.916839 -0.017642 -0.057031 -0.391418 -0.224244 -0.760002 0.890978 -0.832835 0.136220 0.094777 -0.065982 1.252465 0.767764 -0.177227 -0.908623 0.481103 0.346390 0.231732 -0.538551 1.213740 0.247213 1.911560 -0.448298 0.360003 -0.437533 0.869545 -0.497645 -0.719378 -0.266175 1.158720 1.520683 0.326165 -0.065699 0.138231 -0.219008 0.696301 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = -0.074034 0.721519 2.751621 1.846217 -1.495830 -1.813854 -0.704343 -2.532266 1.359514 0.394942 1.507040 -0.181945 0.751648 -0.058992 -0.214947 -0.329818 0.802402 0.228537 -0.250201 -0.719806 -0.685324 2.051771 0.527741 -1.713526 0.354782 -2.016081 1.213406 0.939256 1.148516 1.265614 0.213454 -0.102329 -0.461813 0.946660 -1.214098 -0.330521 0.020250 0.420004 -1.451960 -0.410461 0.522228 0.258589 1.362944 -0.182305 1.141917 0.349544 0.971861 0.060772 -1.276695 -0.369400 -0.789072 1.811715 -0.516799 1.171324 0.284579 0.292345 0.154638 -1.155315 -0.147234 -1.250728 0.294794 0.235701 -0.766326 -0.108032 -1.416282 0.117199 -0.334195 -1.190766 0.720458 -0.688516 0.877356 -0.077505 0.168968 -1.083123 -1.902367 0.564964 0.321460 0.704079 0.826584 0.645576 0.247967 -0.099265 -0.948751 -1.084994 0.602493 0.663296 0.223163 0.297609 -0.545107 -0.862380 0.382916 -0.278127 0.017821 1.159926 -1.360407 0.850069 -0.975719 -0.439253 -0.962390 -1.560810 0.060969 -1.089229 0.747969 0.583657 -0.650015 0.532718 0.665439 0.597099 0.166942 -1.559441 0.220767 -0.477902 0.207066 2.058103 -0.642803 -0.940615 -0.215013 -0.187372 -0.570491 1.260640 -0.007035 0.471746 1.400934 1.110946 0.978310 -1.328506 -0.210728 0.758743 0.649628 0.987602 0.921225 -1.393238 -0.619273 0.168274 -0.401405 -2.662265 -0.252874 0.652220 1.521277 0.097149 -1.292751 0.265311 -0.784740 1.444403 0.681954 0.791188 0.576623 0.017916 -0.999876 0.584643 2.625718 -0.694796 0.962259 -0.886322 -1.408472 1.362625 -0.223980 1.100640 -0.145924 0.072484 0.453785 -1.257119 0.201249 1.822509 0.159039 0.181638 0.640911 0.237396 -1.017234 -2.553304 -2.447394 -0.057400 1.104764 0.323447 2.757780 -1.432299 -1.152420 -0.434015 1.828304 -0.481221 -0.513539 0.575463 -1.058058 0.904619 -2.602293 -2.373888 2.429801 2.307224 0.365867 -0.281179 1.596832 0.279945 -1.088275 -1.309047 -1.108245 0.687487 0.651163 -0.731766 -0.307395 0.010694 -1.745068 -0.194090 0.418069 0.415853 1.024565 -0.620612 0.152784 -0.404764 -1.658030 -1.399917 1.195466 -1.460798 -0.162427 0.137107 0.256707 -0.114675 0.978422 -0.622251 -0.963131 0.356863 -0.830931 -0.040038 0.263293 0.945662 -0.035944 2.094028 1.920434 -0.074490 1.648634 0.397516 -1.129409 4.058365 -1.249700 0.016101 -0.053650 0.975416 -0.292422 0.708207 0.928499 -0.744397 -0.921986 -1.690243 0.073052 -0.217274 0.716379 -2.160641 -1.406730 -1.872631 -0.513695 0.032175 1.400898 0.169847 3.031285 -0.720230 0.385261 -3.536781 0.093174 1.306236 -0.124674 1.380253 0.826416 -1.435732 -2.309124 -0.181967 -1.067163 0.178043 -0.457784 -1.712457 -1.010827 -0.834626 1.004807 -0.685560 0.549778 2.062877 -0.418711 1.155029 -0.474416 -0.212353 -0.516454 -0.473073 0.890017 0.267496 -1.259797 1.679114 -0.038950 3.831264 -0.156293 1.143573 -1.013929 0.323167 -0.335839 -1.363036 -0.771946 1.820349 1.240159 0.772498 -0.134919 0.117038 -0.969270 1.040436 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -6.576937 12.377909 45.116715 12.377301 -24.012234 -26.442371 -11.748585 -49.631492 22.385057 17.688880 32.476102 -1.934774 18.251713 -4.622243 -3.675502 4.517939 19.856967 -6.028378 -1.619660 -16.266209 -18.711264 25.760655 6.207620 -4.975577 13.179040 -33.108542 22.595668 -0.416137 13.238250 19.254060 13.026841 1.960628 -8.337330 16.781366 3.398305 14.001423 5.751806 12.132566 -13.892141 1.579545 7.853257 -11.311728 20.407286 9.956184 27.703530 8.520922 9.547079 -2.220440 -24.540814 -9.217178 -9.585916 21.462243 -19.332187 14.273632 1.190109 1.086564 -0.251045 -15.369008 0.795501 -17.566963 -3.108724 -13.781924 -15.423024 2.089147 -20.682331 5.122765 -15.544544 -13.893609 -4.216889 -8.631320 15.124737 3.490425 0.985130 4.060469 -30.410190 7.576180 9.992149 3.409069 20.621117 4.667014 -4.745278 -7.786520 -19.646758 -27.501147 26.538726 11.549888 6.261394 3.745963 -12.512725 -4.899647 -4.802263 -3.016341 6.296409 25.701167 -30.592822 4.663911 -5.123874 -15.946479 -16.740726 -36.766199 2.442103 -22.283094 10.576221 9.580153 -18.123936 5.653886 -8.799754 9.524024 -4.402312 -18.593695 7.841679 -12.373039 -0.537268 29.360614 -11.929709 -15.690390 -11.878218 -3.814764 6.829821 15.955123 5.192469 5.909939 33.353578 16.588025 21.382539 -19.498835 -3.277399 10.809721 9.851548 8.515492 13.027351 -22.946507 -15.323011 9.500745 -12.726707 -42.897508 -11.758861 9.634663 22.880006 -3.284478 -17.809823 2.358106 -10.120942 14.471460 20.771579 9.767137 7.863738 2.387254 -18.360961 6.509097 36.078331 -14.992807 17.215111 -11.464500 -11.640814 23.610481 -11.571435 12.274631 -1.732399 -0.105021 -1.667465 -19.924849 -3.264773 31.116109 4.228608 2.622153 -0.586421 8.367677 -13.390423 -32.320756 -41.281568 -6.306866 28.501031 8.289207 33.170795 -26.369781 -7.780212 -5.608735 29.561325 2.568913 -14.360261 9.282430 -13.624318 13.022040 -38.627034 -36.973504 44.795320 38.764979 13.668210 -5.487904 15.129497 9.061804 -30.810668 -22.324801 -20.807590 12.581821 2.766430 -24.175068 -16.237573 6.099485 -31.919636 -5.268910 -2.732420 7.731130 19.385226 -5.939282 11.943675 3.187516 -11.581616 -16.776133 17.288426 -13.083605 -17.154905 -3.167509 5.044471 6.832313 13.727002 -7.662526 -8.773151 3.972771 -19.011539 -5.184382 12.120354 20.332734 2.969049 43.308714 34.813361 -8.232560 8.145194 -2.588692 -16.248765 38.100033 -13.938443 1.986201 0.714423 10.076037 -0.549615 10.419253 25.247187 -11.825175 -23.264295 -23.953352 -3.166541 -3.125788 11.840798 -16.426086 -24.430928 -34.833723 1.384198 -0.394385 30.279497 1.672421 47.667324 -4.584324 9.185949 -44.153338 1.855645 21.250357 -5.204182 22.533987 13.134774 -23.938806 -19.783097 -8.964886 -24.886113 -8.688766 -1.008538 -4.495405 -17.685731 -11.183176 20.743195 -11.964316 5.035785 16.780581 1.104851 24.928485 5.479344 -0.951803 -17.617825 5.203539 27.758728 3.493232 -16.651239 27.239646 5.504826 59.000604 -3.298069 13.530956 -10.707350 -0.822301 -2.989649 -17.534698 -15.321622 29.459844 29.593003 16.056680 -2.758513 -1.935050 -5.414977 24.106975 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = -3.341197 1.108253 10.218411 2.409454 -4.881627 -6.189659 -2.789339 -13.066807 6.568941 5.677928 10.137537 0.331724 6.522001 -3.184850 -0.308717 0.478608 5.835602 -2.945857 0.898601 -3.805208 -1.836726 9.369969 1.479098 0.738094 2.282141 -8.700490 5.410168 -0.368469 3.916697 6.024524 3.074012 0.512486 -2.613686 2.974306 1.067829 4.337917 1.392794 3.794859 -2.811565 -0.870312 1.823437 -4.155343 5.346657 2.025213 7.870142 -0.497371 2.155225 -1.339968 -5.662670 -4.442288 -2.190116 3.557075 -5.493587 3.368274 -0.269974 -2.331481 0.691151 -0.771826 0.249661 -5.906804 -0.180023 -4.618355 -3.214920 0.564832 -3.940921 2.343209 -4.636997 -2.352844 -1.633754 -3.638508 4.163272 1.584643 1.527555 2.434055 -9.461327 1.896410 2.214117 -0.354943 4.974297 2.447634 -2.289789 -2.923359 -4.990864 -7.268897 7.882637 4.490319 1.081166 1.698483 -5.940414 0.522184 -1.303288 0.051487 2.057920 5.583572 -7.889653 0.403217 0.647160 -3.729255 -1.725317 -9.032474 0.725295 -6.063211 1.585258 3.284807 -3.825957 0.431654 -4.541441 1.883746 -3.418797 -4.979764 3.681272 -3.646954 -1.512567 7.146020 -4.324551 -3.119661 -4.699325 0.113815 3.326330 3.661378 1.506655 2.620027 7.239871 3.928297 5.490252 -5.810682 -1.196850 4.910365 4.304954 1.298822 1.195532 -4.162788 -3.902756 2.908588 -4.575896 -10.350400 -5.279625 3.918696 6.835456 -0.746839 -3.554165 1.371301 -2.763251 4.590380 7.779977 1.586711 1.713247 2.290833 -6.022408 2.214992 8.222305 -3.601570 4.605038 -1.758931 -2.508535 6.622869 -3.916063 3.138663 -0.145311 0.727773 -1.325902 -5.027216 -0.724401 7.820835 1.187066 2.933763 -3.067610 3.277944 -2.577991 -8.028269 -12.368206 -2.722153 9.081840 4.311753 7.739563 -6.367032 -1.690755 0.375917 6.763434 1.458123 -5.698961 2.777711 -3.500962 3.326571 -12.729836 -9.523703 13.041786 10.966833 5.030966 -0.384770 3.340623 4.192473 -7.376542 -4.487209 -4.737670 4.162210 -0.030300 -8.595548 -3.890112 2.313406 -7.800727 -3.679526 -1.062362 1.247934 2.918452 -1.703475 5.252729 0.951776 -1.164738 -2.442770 5.424383 -3.016573 -5.431504 -2.284080 0.912177 2.595320 3.359825 -2.064541 0.256280 1.885331 -5.283243 -1.457487 2.537100 4.242570 1.692606 10.333636 10.261045 -3.109280 0.475229 -1.954094 -4.405342 8.389711 -4.275000 -0.164001 -0.259917 1.875250 1.907981 2.755512 6.435204 -3.226981 -5.071270 -6.778243 -1.223971 0.891407 3.932371 -4.022906 -7.373460 -9.749668 1.780922 -0.219828 8.653237 0.207833 13.221271 -3.124018 2.065320 -11.304591 0.518346 4.928956 -1.355532 5.933803 2.214547 -4.694823 -4.171440 -2.914940 -6.882786 -1.975769 -0.085016 -1.831546 -3.987924 -4.544630 6.331560 -4.764732 1.295741 1.975088 0.650064 8.078396 2.154990 -0.573227 -6.475547 3.738965 4.853991 1.405366 -4.228056 7.121561 1.303207 13.969319 -2.412975 2.712460 -2.673066 3.063669 -3.070453 -6.145003 -3.066548 7.907284 9.242789 3.756973 -1.224766 -0.425285 -0.923027 6.307601 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = -0.031557 0.261391 0.788075 0.207840 -0.280656 -0.827791 -0.133904 -0.998481 0.439554 0.232680 0.670280 0.023161 0.597806 -0.226664 0.047639 0.108569 0.500517 0.108815 0.049662 -0.291299 -0.082332 0.692415 -0.052429 -0.079743 0.167050 -0.439118 0.279433 0.344294 0.415657 0.526691 0.159757 -0.011579 -0.214739 0.212470 -0.213306 0.042444 0.107749 0.240429 -0.528840 -0.075459 -0.121077 -0.169561 0.529205 0.077509 0.436315 0.082598 0.199622 0.095098 -0.250389 -0.280620 -0.189618 0.417869 -0.188197 0.356725 -0.137984 -0.253912 0.127528 0.092300 0.129582 -0.383402 0.100075 -0.121014 -0.273309 -0.044374 -0.394016 0.032353 -0.268216 -0.444699 -0.084120 -0.293659 0.239712 0.003225 0.005539 -0.063344 -0.947187 0.033680 0.215825 0.131866 0.388669 0.215945 0.012081 -0.269980 -0.389076 -0.480325 0.545292 0.380456 0.210734 0.367815 -0.677631 -0.183199 -0.007165 0.045773 0.287717 0.251664 -0.343888 0.156693 -0.100519 -0.184888 -0.185278 -0.788041 0.152798 -0.262096 0.116695 -0.066509 0.124112 0.047713 -0.269893 0.219781 -0.224948 -0.388580 0.318754 -0.283177 -0.264595 0.660819 -0.223970 -0.264258 -0.298569 -0.045761 0.042846 0.383273 0.102597 0.106506 0.234183 0.305856 0.336633 -0.508596 -0.155594 0.302469 0.289890 0.266103 0.147341 -0.271418 -0.276786 0.227270 -0.576903 -0.923911 -0.284875 0.337504 0.520684 -0.153384 -0.244901 0.190728 -0.383491 0.302859 0.469045 0.178875 0.197268 0.095003 -0.435363 0.168487 0.557765 -0.315800 0.440703 -0.075127 -0.221015 0.277466 -0.081539 0.226573 -0.090226 -0.222470 -0.014473 -0.131576 0.053105 0.591597 0.222398 0.225967 -0.151149 0.173257 -0.479650 -0.619981 -0.902529 -0.146043 0.711419 0.230219 0.647315 -0.416029 -0.334059 -0.009510 0.504283 -0.207987 -0.362187 0.255752 -0.373190 0.348096 -0.985814 -0.671755 0.955038 0.773947 0.444178 -0.114833 0.237232 0.255763 -0.448898 -0.395116 -0.205229 0.164956 -0.031114 -0.877837 -0.347464 0.095959 -0.651563 -0.061506 0.016480 0.134210 0.053955 0.106803 0.527638 -0.216624 -0.216713 -0.293951 0.306708 -0.258684 -0.099904 -0.025755 -0.007445 0.086651 0.251553 -0.272447 -0.093916 0.286869 -0.444795 -0.024466 -0.030440 0.298241 0.148979 0.871085 0.653734 -0.117058 0.368756 -0.067030 -0.504910 0.864889 -0.364674 0.156660 -0.028056 0.338737 0.087919 0.263867 0.477482 -0.263227 -0.328802 -0.660895 -0.355747 0.307079 0.332913 -0.120264 -0.564411 -0.728880 0.101965 -0.125780 0.790456 -0.140954 0.921179 -0.332711 0.281167 -0.843293 0.117875 0.176376 -0.168553 0.394867 0.199195 -0.434603 -0.448196 -0.117861 -0.620987 -0.422124 -0.020025 -0.324866 -0.222838 -0.293368 0.268758 -0.419180 0.031729 0.236443 -0.118663 0.578229 -0.102486 -0.010708 -0.360072 0.197134 0.518829 -0.012214 -0.394897 0.345648 0.177667 1.220278 0.021798 0.378079 -0.230773 0.192733 -0.117578 -0.531676 -0.350253 0.682765 0.691362 0.250473 -0.001616 0.098562 0.021485 0.411119 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.146749 0.404956 1.123862 0.356062 -0.693716 -0.857694 -0.171581 -1.250416 0.610495 0.378162 0.762705 0.211486 0.800305 -0.339176 -0.145484 -0.286470 0.712824 0.185491 0.130925 -0.395902 -0.165429 0.884822 -0.086145 -0.137793 0.189367 -0.593958 0.834131 0.193970 0.683650 0.944400 0.243171 -0.054189 -0.607445 0.313153 0.032709 -0.124161 0.060228 0.413644 -0.672829 -0.086388 0.028459 -0.545126 0.792230 0.171904 0.487215 -0.012915 -0.127573 0.081706 -0.430796 -0.394366 -0.077906 -0.029700 -0.360984 0.556818 0.015194 -0.434631 0.080687 0.383662 0.318141 -0.476360 0.205945 -0.585906 -0.125952 0.023081 -0.663687 -0.019024 -0.795677 -0.633633 -0.208309 -0.680389 0.189634 0.062754 0.268539 -0.070534 -1.368243 0.083446 0.289683 0.159425 0.620581 0.631860 -0.073031 -0.429592 -0.615880 -0.719962 0.350961 0.527143 0.076822 0.379358 -0.861198 -0.321524 0.243612 0.188592 0.379014 0.406599 -0.543929 0.290379 -0.685979 -0.174444 0.070563 -1.482097 0.139432 -0.396640 0.219476 -0.070055 -0.366486 -0.064139 -0.217849 0.215554 -0.039960 -0.479361 0.513264 -0.417635 -0.263812 0.988565 -0.155998 -0.525655 -0.563185 -0.101719 0.292447 0.392655 0.065305 0.101370 0.192199 0.356712 0.645222 -0.767832 -0.141493 0.626743 0.085686 0.198579 0.174894 -0.194361 -0.297305 0.348442 -0.655885 -1.195785 -0.315517 0.275644 0.635489 -0.256153 -0.041480 -0.068454 -0.727401 0.242544 0.680254 0.382796 0.367922 0.171382 -0.537241 0.172119 0.597831 -0.294073 0.385693 -0.050969 -0.431954 0.577988 -0.029167 0.412769 -0.487098 -0.110315 0.000707 -0.269276 0.090340 0.855290 -0.043512 0.287999 -0.163358 0.131186 -0.601827 -0.867671 -1.082871 -0.105843 1.292082 0.662062 0.633981 -0.653509 -0.074103 0.175780 0.651723 0.189114 -0.500516 0.432110 -0.249872 0.490593 -1.562801 -0.952698 1.075128 0.989291 0.307796 -0.268210 -0.055933 0.239780 -0.574106 -0.747275 -0.555374 0.165902 -0.318483 -0.989584 -0.534526 0.282482 -0.790071 0.029633 0.360731 0.138743 0.729061 -0.291966 0.545461 -0.161255 -0.033308 -0.772997 0.793953 -0.283264 -0.273118 -0.004528 0.009811 0.228807 0.363074 -0.080278 -0.217992 0.277908 -0.298857 -0.057679 -0.080185 0.283036 -0.146891 1.040081 0.706472 -0.256861 -0.271092 0.006145 -0.641689 1.589930 -0.700120 0.215166 0.078029 0.406956 0.103832 0.444114 0.714669 -0.422877 -0.405179 -0.858055 -0.655898 0.171290 0.473362 -0.677500 -0.887502 -0.969473 0.401199 -0.321182 0.850024 -0.029558 1.356097 -0.419107 0.294310 -0.844200 0.076779 0.509941 -0.190169 0.920858 0.269643 -0.584766 -0.217842 -0.274734 -0.854568 0.100985 -0.028901 -0.253717 -0.249929 -0.009832 0.197896 -0.212985 0.096214 0.195245 -0.422244 0.904755 -0.150283 -0.010128 -0.595893 0.190487 0.486762 0.019406 -0.456550 0.741997 0.260247 1.228976 0.075482 0.251340 -0.154745 0.226210 -0.235738 -0.859124 -0.534833 0.939183 0.747943 0.618238 -0.154858 0.096934 0.016345 0.447628 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.175506 0.453271 0.349613 0.681678 -0.794967 -1.155788 -0.073755 -0.692322 0.069548 -0.113630 0.317735 0.020662 0.354086 -0.114127 -0.008978 0.122770 0.443985 0.530432 -0.062363 -0.359537 -0.949759 0.385182 -0.045453 -0.315103 0.171362 0.392772 0.669902 0.504093 0.203049 0.355578 0.193710 -0.015394 -0.231869 0.264368 -0.181395 -0.168369 -0.475646 0.364011 -0.461443 0.093576 0.093863 -0.740097 0.703775 0.115902 -0.029410 0.379801 0.540722 0.277590 -0.508190 -0.072217 -0.479117 0.207457 -0.305320 0.365879 -0.457530 -0.345997 0.520527 0.247870 0.196024 -0.121800 -0.080375 -0.540595 -0.503605 -0.083767 -0.656634 -0.066828 -0.494462 -0.861617 -0.076169 0.189442 0.215131 0.018017 -0.268769 -0.172644 -0.793335 -0.176361 0.290008 0.336686 0.455006 0.283919 0.275285 -0.262135 -0.658799 -0.362040 0.452335 -0.359709 0.489902 0.295689 -0.485233 -0.370360 0.187113 0.215822 0.455774 0.085078 0.038251 0.351148 -0.394903 -0.083147 -0.558975 -1.105334 0.198198 -0.045777 0.266895 -0.200840 -0.174567 0.007958 -0.189982 0.031454 -0.111349 -0.679195 -0.130174 -0.516317 -0.145525 0.516407 0.034875 -0.363711 0.019500 -0.155317 0.006598 0.228219 0.444404 -0.071431 0.289531 0.300303 0.154007 -0.422551 -0.242738 -0.240856 -0.038634 0.386155 0.327275 0.077249 -0.455660 0.174607 -0.461729 -0.823093 0.034426 0.464338 0.350570 -0.112552 -0.139093 0.312818 -0.496104 -0.074354 0.221843 0.492466 0.287105 -0.098563 -0.220067 0.163601 0.297169 -0.212716 0.366574 0.031014 -0.341091 0.587333 0.184989 -0.081323 0.001083 -0.505919 -0.141575 0.069702 -0.034691 0.434682 0.109320 -0.243471 0.515675 0.113657 -0.725431 -0.531988 -0.390895 0.391633 0.978493 0.384892 0.546434 -0.576153 0.046478 0.309270 0.099436 -0.241458 -0.243647 0.091158 -0.143774 0.387827 -1.012639 -0.602865 0.623911 -0.157804 0.097808 -0.110549 -0.087417 0.161856 -0.258278 -0.590920 -0.470397 0.073569 0.024034 -0.513747 -0.403864 0.112445 -0.661158 0.326902 0.291278 0.299203 0.322460 -0.310405 0.162818 -0.779771 -0.232285 -0.500041 0.172674 -0.290353 0.174887 0.274249 -0.195963 0.082748 0.092252 0.209853 -0.172792 -0.366639 -0.264328 -0.011899 -0.267229 0.375104 0.014804 1.158178 0.657391 -0.330598 0.114067 0.116749 -0.474531 1.042116 -0.355032 0.398472 0.052231 0.877829 0.042713 0.145103 0.898715 -0.238921 -0.355716 -0.587194 -0.519544 0.528810 0.165149 -0.425623 0.109564 -1.021626 0.049160 -0.145698 0.824921 -0.340691 0.524895 -0.265536 0.186645 -0.422534 0.131301 0.016479 -0.214741 0.530649 0.193264 -0.428721 0.156021 -0.261669 -0.512222 0.036753 -0.024503 0.089628 -0.232936 0.397287 -0.679531 -0.235068 -0.049438 0.182999 -0.547964 0.188964 -0.279642 0.065784 0.051474 -0.038799 0.878387 -0.030939 -0.393957 0.565300 0.237542 1.209775 0.617282 0.286605 -0.158096 -0.205856 0.163598 -0.379916 -0.429565 0.575475 0.402747 0.128694 0.331307 0.462979 0.346139 0.341858 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.752391 0.842833 7.536107 2.946550 -2.583939 -3.520740 -1.861049 -7.487890 4.090312 2.728918 6.481526 -0.469094 3.729374 -1.075857 -0.458813 -1.532170 3.487505 -2.044747 0.990210 -1.977188 0.921892 6.699308 1.642061 -1.934502 0.925493 -6.274210 3.805647 1.131746 2.711129 4.439352 1.272692 0.951129 -1.304956 1.947835 -1.058856 1.044033 0.580343 2.365378 -2.146648 -0.995549 1.429866 -0.624673 3.304080 0.351811 4.677331 0.479126 1.736964 -0.825228 -3.236634 -2.637134 -1.758945 2.468166 -2.973871 1.668067 -0.143147 -1.099067 0.629113 -1.562594 -0.586087 -5.097087 0.787963 -0.865278 -1.957984 0.587418 -3.348969 1.865996 -1.893437 -1.256488 0.065910 -3.212246 2.398596 0.913650 1.299282 -0.161884 -5.954281 2.062436 1.009121 0.309704 2.297867 1.362851 -1.470341 -0.391712 -2.768843 -3.986308 3.224321 3.613325 0.654524 0.924990 -2.597249 -0.295563 -0.325910 -0.026026 -0.265359 3.777921 -4.286358 1.425807 -0.154381 -2.101471 -1.302250 -3.709381 0.561251 -3.899460 1.369394 3.017210 -2.655786 0.433510 -1.888565 1.129569 -1.464856 -3.874107 1.723439 -2.617107 0.131608 5.123277 -3.228920 -1.538884 -3.664077 0.147906 1.818355 3.301437 -0.816493 2.219733 3.503377 2.847989 2.631363 -3.986119 -0.533622 3.596589 2.735381 1.152452 1.158780 -3.105365 -2.145455 0.402892 -2.195963 -6.281344 -3.125024 2.047755 4.308991 -0.600455 -3.672527 1.840846 -2.200118 4.374794 5.020327 1.456010 1.129560 1.883780 -3.813428 1.766529 6.339981 -2.024004 2.744523 -1.716465 -2.912592 4.810773 -1.990768 3.193158 0.131202 1.115336 -0.501311 -3.635790 0.234298 4.771580 1.101804 2.477889 -0.428508 1.207752 0.260707 -5.848371 -8.060053 -1.794988 4.653076 2.681847 6.400497 -4.089673 -1.479099 -0.182881 4.302760 1.044825 -3.166590 1.259037 -2.174909 2.000362 -9.072798 -6.641862 7.100858 7.141991 2.309503 0.507006 3.057058 1.794658 -2.767524 -2.505719 -2.629480 3.723201 -0.699009 -3.020941 -0.728958 0.931056 -4.579960 -2.710165 -0.376592 0.962961 2.373081 -1.940037 2.028522 -0.174312 -2.158856 -2.603279 2.664886 -2.667083 -3.527220 -1.040255 0.256457 1.226022 1.868299 -1.741959 -0.091056 1.644085 -2.950736 -1.018676 1.321838 1.854418 0.165997 4.787167 6.116731 -1.238222 0.739722 -0.501445 -2.618987 8.018340 -2.435912 -0.169377 -0.284968 1.221386 1.443557 1.932530 2.870546 -1.955096 -2.424570 -4.768782 0.693499 0.425020 2.924662 -5.104902 -5.077693 -5.682535 0.567896 0.882481 5.261363 0.519043 9.383942 -1.856484 0.892406 -8.459738 0.267309 3.523261 -0.354954 3.632812 1.671452 -3.529347 -3.915233 -1.069187 -4.046446 0.218657 -0.875921 -3.444582 -3.259398 -2.367972 4.061928 -2.669961 1.090337 2.901149 0.001798 4.200981 1.540344 -0.806886 -3.167970 0.281777 1.717506 1.318857 -2.856156 4.567654 -0.296841 8.306282 -2.317139 2.458374 -2.138186 3.301682 -1.951578 -4.199603 -1.494753 6.022506 4.837665 1.771480 -0.799099 -1.101363 -1.172648 3.351122 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(int (*)(suffix, suffix)) = -0.087326 0.178073 1.171277 0.186688 -0.170719 -1.080054 -0.298486 -1.755161 0.835216 0.574257 1.232095 -0.055837 0.968912 -0.384458 0.039052 0.213930 0.597282 -0.171565 0.153263 -0.377671 -0.120933 1.384756 -0.102394 0.098058 0.180746 -1.074030 0.539835 0.411704 0.582626 0.812770 0.232546 0.084550 -0.106851 0.315857 -0.349410 0.357674 0.142071 0.455226 -0.451207 -0.181228 0.036370 -0.152842 0.714534 0.139805 0.844856 0.095733 0.314158 -0.030725 -0.200851 -0.511335 -0.239465 0.548002 -0.381825 0.365137 -0.367033 -0.346696 0.200126 -0.064779 0.078423 -0.497822 0.154021 -0.078593 -0.598539 -0.003994 -0.516082 0.189579 -0.282591 -0.428383 -0.133778 -0.495194 0.451564 0.043501 -0.099859 -0.116052 -1.464498 0.102219 0.301093 -0.108861 0.520231 0.176097 -0.201492 -0.336036 -0.673200 -0.808654 1.154000 0.885271 0.241349 0.492652 -0.920693 -0.189544 -0.220469 0.073508 0.448569 0.627835 -0.553655 0.083770 0.157806 -0.360042 -0.277523 -0.925429 0.309430 -0.600589 0.202483 0.136462 0.116300 0.089794 -0.206769 0.274982 -0.449836 -0.662020 0.339298 -0.526860 -0.106395 0.975561 -0.363564 -0.375273 -0.634809 -0.126751 0.180929 0.584654 0.204526 0.164624 0.828837 0.440777 0.487291 -0.828820 -0.342328 0.669007 0.514654 0.312791 0.019794 -0.710078 -0.388375 0.294011 -0.781131 -1.417779 -0.636035 0.396618 0.713573 -0.515210 -0.410836 0.645521 -0.354775 0.481361 0.994461 0.065039 0.204122 0.311170 -0.715880 0.314191 1.078519 -0.408619 0.570485 -0.438487 -0.472767 0.624500 -0.316843 0.334374 0.066140 -0.147663 -0.208547 -0.363717 0.320944 0.920195 0.104337 0.534455 -0.323913 0.358963 -0.472566 -0.784819 -1.534881 -0.322116 1.019386 0.452703 1.274399 -0.699138 -0.445052 0.058374 0.827893 -0.109933 -0.528231 0.429650 -0.632824 0.501724 -1.546958 -1.117879 1.463957 1.156471 0.891231 -0.082997 0.540655 0.455244 -0.553177 -0.390514 -0.338198 0.513353 0.223114 -1.257837 -0.290475 0.082622 -0.975245 -0.341123 -0.260132 0.159871 -0.050204 0.068525 0.798346 -0.461070 -0.349139 -0.386319 0.582344 -0.428895 -0.244647 -0.304707 0.016976 -0.061236 0.397565 -0.449075 0.084487 0.381165 -0.590803 0.063984 0.225799 0.248621 0.199625 1.204719 1.222296 -0.427528 0.488980 -0.267287 -0.414781 0.998677 -0.434305 0.044995 0.016524 0.427484 0.229932 0.417967 0.671017 -0.364108 -0.452775 -0.973110 -0.212242 0.497263 0.445144 -0.045479 -0.694846 -1.212585 -0.026107 -0.168352 1.456739 -0.018724 1.533889 -0.464442 0.506008 -1.382862 0.181013 0.228917 -0.218012 0.526555 0.215537 -0.607549 -0.602912 -0.191208 -0.853023 -0.911520 -0.059948 -0.595133 -0.565944 -0.734507 0.518653 -0.777739 0.076134 0.382071 0.042655 0.716481 -0.211234 -0.011391 -0.719828 0.425845 0.647354 -0.020038 -0.566344 0.392929 0.132441 1.803295 -0.282249 0.748828 -0.386484 0.671399 -0.437266 -0.901781 -0.389411 1.013980 1.028719 0.235270 -0.043285 0.029025 0.053071 0.701118 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -3.894854 0.570537 9.315189 3.791778 -4.048586 -5.682812 -2.597000 -9.455742 5.362336 3.454581 8.635851 -0.540718 4.817966 -1.520129 -0.405243 -2.063587 4.312301 -2.649578 0.969963 -2.643745 -0.477249 8.846371 1.970159 -2.633660 1.309178 -7.804756 5.434175 1.706653 2.641413 6.191681 1.631229 1.030967 -2.043766 2.448604 -1.005282 1.780267 0.903235 2.741004 -2.275016 -1.294409 2.315815 -1.914957 4.965726 0.363923 6.149250 0.720896 1.885788 -0.797344 -4.908694 -3.591242 -2.182498 2.735452 -3.840847 2.225467 0.019329 -0.970088 1.431683 -2.438025 -0.820663 -6.952274 0.833047 -2.111661 -2.897316 0.672137 -4.252966 2.117839 -2.688487 -2.010149 0.409459 -4.743260 2.906042 0.778713 1.312777 -0.090034 -7.594911 2.268314 1.533417 0.306839 2.861350 1.961958 -2.218907 -0.616371 -4.192041 -4.900272 3.874632 4.058357 0.980906 1.239697 -4.135708 -0.341941 -0.073885 0.031241 0.093565 4.697615 -5.221337 1.472057 0.400492 -2.922366 -2.365641 -5.625874 1.019725 -4.547644 1.813431 4.170855 -3.967060 0.163406 -2.571986 1.465929 -2.194394 -5.304328 2.501817 -4.102155 0.296407 6.189962 -4.093911 -2.126703 -4.592884 -0.300597 2.650460 4.418770 -0.855671 2.354539 4.472800 3.613820 3.460591 -5.119324 -1.037113 4.360586 3.923943 1.181940 1.317867 -3.880439 -2.491052 0.886133 -3.410430 -8.462127 -4.168839 2.435582 5.622667 -0.359395 -4.722328 2.821209 -2.970244 5.380930 6.328219 2.637580 1.228595 2.258666 -5.431159 2.065259 7.967697 -2.501291 3.741140 -2.157880 -4.647106 6.696834 -2.246799 3.743222 0.510577 1.063415 -0.769450 -4.356019 0.447675 5.904623 1.383539 2.885376 -0.706014 1.738152 -0.395897 -7.451998 -10.833155 -1.813872 6.780349 4.343356 9.133998 -6.040922 -2.012040 -0.378852 6.008300 1.035421 -4.265692 1.735626 -2.582139 2.598765 -13.100050 -9.071640 10.119538 8.910034 3.350712 0.859602 4.017997 1.959476 -3.399428 -3.070465 -3.997189 4.522443 -0.413426 -3.766425 -0.540805 0.998432 -6.067511 -3.163524 -0.622599 1.361732 3.336090 -3.397893 2.521255 -1.047938 -2.526140 -3.523068 3.520511 -3.673860 -4.365130 -1.043548 0.242947 1.447067 2.487942 -1.570176 -0.260618 1.339023 -3.792010 -1.060788 1.887378 2.431859 0.395255 7.303914 8.677873 -2.097408 0.949870 -0.932249 -3.006571 10.926404 -3.870403 -0.094915 -0.246253 2.452088 2.520004 2.143972 4.594077 -2.430031 -2.786333 -5.761817 0.896263 0.601251 3.734634 -7.656914 -6.635729 -8.739123 0.789703 0.798805 7.323594 0.474789 12.341521 -2.081089 1.192440 -11.539025 0.256382 4.613684 -0.329107 4.494914 1.811565 -4.753746 -5.220803 -1.223237 -5.483076 0.759868 -0.902716 -4.033909 -3.959915 -3.116174 4.602286 -3.434969 1.401344 4.053330 -0.555479 5.239891 2.207728 -1.060832 -3.948423 0.308167 2.462213 1.365319 -3.296417 6.628573 0.067659 11.104188 -2.289018 3.110795 -2.259425 4.890660 -2.600585 -5.655615 -1.965397 7.090921 6.237771 2.193369 -0.921286 -0.707516 -1.460412 4.218436 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__lg(long) = 0.168936 0.571566 1.001791 0.696557 -0.052635 -0.355401 -0.066146 -0.852419 0.307218 0.042254 0.400469 -0.250773 0.176039 0.548263 -0.026509 -0.153554 0.202675 0.074905 0.275559 -0.087658 0.070270 0.533865 0.222089 -0.621666 -0.136408 -0.623810 0.470721 0.158584 0.506964 0.347005 0.066590 -0.124381 0.183847 0.381880 -0.529444 -0.596387 0.056932 0.225415 -0.471407 -0.135696 -0.243886 0.548910 0.284637 0.191541 0.061609 0.389398 0.527618 0.044151 0.054108 0.302119 -0.399538 0.670191 -0.231331 0.371524 0.007189 -0.054975 0.121950 -0.353320 -0.024555 -0.395059 0.030939 0.448019 -0.242405 -0.016969 -0.707607 0.088896 -0.265722 -0.368236 0.075438 0.491127 0.481001 0.253299 0.373293 -0.521082 -0.849731 0.421585 -0.235837 0.249208 0.227489 -0.318888 0.038432 0.287900 -0.326241 -0.467202 0.234021 0.316825 0.002373 -0.080023 0.391371 -0.326727 -0.111400 -0.210090 -0.414365 0.587621 0.181201 0.929454 -0.430458 0.070708 -0.182759 -0.525997 -0.240614 -0.605305 0.271415 0.141149 0.269274 0.232522 0.220901 0.302108 0.243228 -0.614645 0.247929 0.126363 -0.042785 0.386927 -0.173407 -0.151007 0.210103 0.055430 -0.102308 0.491732 -0.016464 0.297308 0.230586 0.421006 -0.011840 -0.261523 0.194548 0.090810 -0.085985 0.499342 0.522659 -0.575424 -0.346840 -0.066375 0.271000 -0.698841 0.399469 0.584079 0.290244 -0.338230 -0.686677 0.094571 -0.257382 0.471940 0.508463 0.539073 0.317458 -0.060304 0.078390 0.220248 0.860736 -0.340011 0.323151 -0.423968 -0.097761 0.317709 -0.201680 0.533533 -0.319043 0.345925 0.340542 -0.531949 -0.094566 0.690321 0.473760 0.002877 0.818481 -0.151450 -0.146227 -0.848683 -0.217237 -0.059980 0.299931 -0.334131 0.737430 -0.208276 -0.381028 0.032370 0.001831 -0.020380 0.038470 0.052440 -0.173209 0.143139 -1.070922 -0.681052 0.338562 0.271602 -0.047021 -0.462107 0.120864 0.212087 0.049719 -0.727788 -0.231949 0.343399 -0.421905 -0.055959 -0.308345 -0.104469 -0.567702 0.135007 0.227200 0.134201 0.788128 -0.278249 -0.431177 -0.154198 -0.902457 -0.559515 0.274650 -0.505856 -0.394343 0.053855 0.071378 0.070159 0.019500 -0.028480 -0.191160 0.608811 -0.313541 -0.332095 0.158809 0.323071 -0.240725 0.678131 0.285696 0.440927 0.248120 0.484251 -0.455806 1.391740 -0.163469 -0.119168 -0.032766 0.224429 -0.424807 0.351731 0.189410 -0.170425 -0.794993 -0.569983 0.337754 -0.156841 0.283418 -0.393998 -0.278368 -0.129719 -0.216027 0.225133 0.591567 0.060070 0.875112 -0.059296 0.311311 -0.682069 0.058480 0.273379 -0.061609 0.416197 0.506358 -0.555093 -0.036019 -0.079509 -0.194280 0.025484 -0.215877 -0.767498 -0.322194 -0.036109 -0.290068 -0.104581 0.163055 0.537603 -0.192285 0.205386 -0.218910 -0.187446 -0.042944 -0.165792 0.677427 0.063400 -0.607983 0.366059 -0.310622 1.266940 -0.291480 0.309193 -0.597766 -0.337277 -0.025568 0.158519 -0.172164 0.854157 0.175137 0.180055 0.078505 -0.192007 -0.133789 0.198359 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.792291 0.575935 9.247511 2.875142 -3.846609 -5.242245 -2.662404 -10.459806 5.576079 3.944646 9.042336 -0.047224 5.259427 -2.215341 -0.103082 -1.621235 4.817259 -3.139610 0.823719 -2.863543 0.488005 8.320233 1.439538 -1.434669 1.377797 -7.598787 4.275783 1.592018 2.780493 5.314970 1.992539 0.710262 -2.508379 2.352794 -0.884499 2.500390 1.812174 2.845682 -2.616096 -1.678737 1.964910 -1.487977 5.044993 0.135782 6.768845 -0.159436 1.913154 -0.774182 -4.682634 -4.014877 -1.437599 3.239977 -3.729018 2.470576 0.820593 -1.305108 0.905957 -2.109117 -0.587729 -6.042504 0.894541 -1.842049 -2.497275 0.570362 -3.357611 1.947450 -2.012984 -1.548475 0.254560 -5.228570 2.864874 0.355921 1.246624 0.718099 -7.358984 2.024114 1.766298 -0.041837 3.122878 2.584391 -1.810285 -1.559283 -3.718305 -5.138872 4.426646 4.749138 0.825874 1.584144 -5.060913 0.552536 -0.016095 -0.177992 0.614938 4.557711 -6.131476 0.626766 0.705805 -3.267553 -2.100566 -5.487463 1.290190 -4.623927 1.760959 3.708050 -3.638753 0.022846 -3.145909 1.429641 -2.825027 -4.535843 2.669997 -3.596721 0.179067 6.435452 -4.443144 -2.312552 -5.036868 -0.312436 2.543310 3.836953 -0.413502 2.321411 4.787721 3.675234 4.096328 -5.560577 -1.320226 4.539930 4.403065 1.264295 0.882446 -4.147428 -2.280379 1.601476 -4.292299 -8.564548 -4.794808 2.457723 6.096900 -0.361296 -4.349304 1.977853 -2.817266 5.491004 6.234645 1.922095 1.112064 2.552671 -5.416040 1.895322 7.057599 -2.436148 3.998784 -1.672713 -3.430326 5.258810 -2.523788 3.667379 0.693398 0.960146 -1.198392 -4.302912 0.410994 6.009451 1.523486 3.532861 -2.466749 2.154022 -0.891008 -7.097335 -11.454187 -2.047606 6.657037 4.082959 8.013886 -5.756653 -2.691288 -0.256459 6.382935 0.620702 -5.091072 2.262399 -3.056648 2.996237 -10.899401 -8.161990 10.141185 9.902591 3.872862 0.564012 4.372549 1.827042 -5.092171 -2.961609 -3.693260 4.502955 -0.088108 -5.320863 -0.754350 1.359111 -6.246505 -3.396425 -1.026795 1.315632 2.305359 -1.940948 3.911326 0.136108 -1.817373 -2.498455 3.900956 -2.670596 -4.391368 -1.602726 0.379769 1.657395 2.909480 -2.386749 -0.438007 1.740614 -4.571488 -1.029814 1.948328 2.634113 0.898746 7.635253 8.106807 -2.221133 1.828303 -1.528257 -3.329529 8.986106 -3.883295 -0.134295 -0.445427 1.802594 2.371839 2.277051 4.503609 -2.682015 -3.141607 -5.931585 -0.143771 0.606545 4.175183 -5.947716 -7.246397 -8.363435 1.057668 0.386749 7.137650 0.359163 11.897640 -2.455130 1.529299 -11.164291 0.323086 4.386241 -0.524522 4.105815 1.577083 -4.426928 -5.625922 -1.201187 -6.014241 -1.335470 -0.405196 -3.399886 -3.884916 -4.338368 6.235323 -3.687675 0.981153 3.372443 -0.065950 5.939932 2.208608 -0.970043 -4.276482 0.895442 2.467026 1.142935 -3.506483 6.225801 0.495740 11.823176 -2.533261 3.156666 -2.251316 4.808727 -2.758516 -5.901424 -2.206947 7.042724 7.334119 2.476586 -1.484540 -0.843810 -1.864723 4.523015 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.039087 0.357664 3.280359 2.131758 -1.934894 -3.031436 -0.888182 -3.819022 2.351971 1.196255 3.057094 0.489555 2.299933 -1.325889 -0.200940 -0.640999 2.042661 -0.239687 -0.099389 -1.327246 -0.636801 3.806870 0.644518 -1.541439 0.617488 -2.434489 2.348725 1.169195 1.321465 2.699236 0.755576 0.395699 -0.892964 1.140024 -0.832740 0.476650 -0.341115 1.183099 -1.404066 -0.772088 1.178463 -0.748727 2.656678 0.450807 2.207529 0.219908 1.149860 -0.091779 -1.802721 -1.463262 -0.959637 1.005796 -1.355945 1.428011 -0.624648 -0.296275 1.087834 -0.474941 0.180359 -2.467399 0.527113 -0.652926 -1.511333 -0.109265 -1.947004 0.405444 -1.055433 -1.497436 -0.136663 -1.948199 1.153965 0.069916 -0.053685 -1.016376 -3.574514 0.312094 0.647959 0.268959 1.670073 1.602599 -0.938138 -1.072206 -2.008734 -1.988314 1.863106 1.034073 0.415408 1.365063 -2.007293 -0.975795 0.096454 0.271670 0.729734 1.513421 -1.965825 0.602704 0.180379 -1.003274 -0.691562 -2.297856 0.738682 -1.468443 0.633627 0.990806 -1.096909 0.192143 -0.687273 0.386908 -0.991119 -1.867739 0.911045 -1.650379 -0.311707 2.704903 -1.100808 -1.366782 -1.644027 -0.190621 0.769565 1.920315 0.091050 0.559829 2.024538 1.395496 1.435484 -2.327320 -0.325869 1.582673 1.346729 0.744290 0.545761 -1.218747 -1.177782 0.715051 -1.657919 -3.695224 -1.446382 1.382857 2.363013 -0.325349 -1.736679 1.414673 -1.369075 1.679764 2.373281 0.887144 0.860635 0.708367 -2.173352 0.893479 3.170112 -0.876616 1.410969 -0.906892 -2.045063 2.917489 -0.679718 1.197731 -0.238746 -0.416653 -0.393003 -1.171568 0.801436 2.549824 0.039250 0.785586 -0.133267 0.787990 -0.853834 -2.888344 -4.392796 -0.470848 2.978869 2.389637 4.035026 -2.401675 -0.501643 -0.123196 1.882428 -0.036160 -1.596818 0.933256 -1.271343 1.373489 -5.543510 -3.403023 4.460082 3.126612 1.525966 0.084095 1.484242 0.695941 -0.839511 -1.523703 -1.604058 1.360414 0.661927 -1.674870 -0.094481 0.484855 -2.838316 -1.069674 0.134599 0.510846 1.167501 -1.550090 1.272204 -1.466053 -1.003590 -1.789286 1.499082 -1.465817 -0.977972 -0.283125 -0.085659 0.194746 1.068067 -0.213628 -0.384456 0.015041 -1.320548 -0.374970 0.099933 1.241378 0.364279 3.015251 3.724501 -1.269999 0.701617 -0.169834 -1.523528 4.838137 -1.921532 0.231101 0.048079 1.746727 1.219920 0.994446 2.045784 -1.095620 -0.576332 -2.569001 -0.093096 1.063215 1.402396 -3.306176 -2.040102 -3.801039 0.215488 -0.425147 3.301783 -0.281727 4.750344 -1.473589 0.620272 -4.488658 0.301239 1.793905 -0.149084 1.883694 0.861281 -2.009730 -1.878188 -0.666863 -2.350286 0.304507 -0.281353 -1.274321 -1.603133 -0.823882 1.174243 -1.860145 0.653076 1.950309 -1.033095 2.155513 -0.289642 -0.067939 -1.488048 0.022004 0.991376 0.551175 -1.444473 2.326572 0.134524 4.535569 -0.293797 1.761767 -1.040009 2.091557 -1.292234 -2.914492 -1.313779 2.877798 2.601333 0.724931 0.349727 0.250500 -0.132464 1.947111 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.132259 0.416968 7.246206 3.652658 -2.865653 -4.739326 -1.964217 -7.693159 4.822317 2.729360 7.014838 0.179190 4.279621 -2.317324 -0.142209 -1.209699 3.910223 -1.657827 0.205197 -2.155304 0.415577 7.627811 1.652145 -2.582680 0.909886 -5.675930 3.507343 1.913233 2.384730 4.614307 1.605519 1.164922 -1.126364 2.026410 -1.691615 1.624679 0.314893 2.329615 -2.292524 -2.131770 1.936956 -0.922879 4.309379 0.503710 5.252545 -0.189892 2.702964 -0.961580 -3.659037 -2.902899 -2.370193 3.585596 -2.774339 2.090668 -0.217827 -0.911165 1.927193 -1.689008 -0.238181 -5.901435 0.706804 -0.837759 -2.835491 -0.075149 -3.038887 1.623250 -1.216482 -1.465883 -0.002309 -3.701607 2.450497 0.216557 0.792797 -0.744347 -6.475954 1.678879 1.116042 0.099534 2.871714 2.687764 -1.597592 -1.440327 -2.982553 -4.073334 4.260887 2.543989 0.658461 2.156514 -3.760958 -0.377008 -0.725450 -0.085213 0.292437 3.479048 -4.582712 1.360330 1.759462 -2.536627 -1.581398 -3.232647 1.173447 -3.788227 0.777095 3.043084 -2.104701 0.432455 -2.665167 0.756039 -2.465181 -3.917907 2.295332 -3.243586 -0.817721 4.965129 -3.567947 -1.725231 -3.281738 0.272550 1.686217 3.800988 -0.549451 2.340655 3.369082 2.737264 2.772801 -4.351091 -0.326497 3.667998 3.859174 1.094870 0.610826 -3.008833 -2.214471 0.971586 -2.763815 -6.931177 -3.588121 3.383088 4.931263 0.265530 -4.254002 2.655819 -1.822124 4.638991 4.918685 1.395054 0.981537 1.996524 -4.581707 1.603506 6.476690 -2.122569 3.286671 -1.289233 -3.392698 5.221822 -2.199880 3.003124 0.213932 0.369015 -0.427281 -3.197910 0.630178 5.059681 1.276774 2.118750 -0.980776 1.552261 -0.410669 -6.207982 -9.547458 -1.727673 5.089672 3.549648 7.476026 -4.280465 -2.005266 -0.336379 4.434297 -0.404349 -3.617962 1.446473 -2.786966 2.472582 -10.190627 -6.960921 9.065531 7.148842 2.833395 0.764582 3.782139 1.807443 -2.519880 -2.563865 -2.716132 3.544521 0.786733 -3.364226 0.054375 0.681146 -5.355366 -2.986982 -0.628571 0.747332 1.202177 -2.121753 3.102417 -1.314229 -1.931096 -2.084842 2.252346 -2.653834 -3.387231 -1.165674 0.304966 0.889519 2.261825 -1.390410 -0.204775 1.028563 -3.618238 -1.437851 0.748806 2.275254 1.176557 5.920647 7.390501 -1.755998 2.338472 -0.759468 -2.885177 8.450372 -3.402659 -0.371078 -0.397893 2.136153 2.603631 1.955011 3.364472 -2.095725 -1.725915 -5.246289 0.676303 1.153539 3.127869 -6.065928 -5.271250 -6.803017 0.350928 0.531926 5.820672 -0.398036 9.948043 -2.642617 0.642117 -9.787535 0.480961 3.934292 -0.412343 3.352838 1.667472 -3.913552 -4.810430 -1.168051 -4.289220 -0.088300 -0.750350 -3.305919 -3.249741 -3.165788 4.561194 -4.344610 1.524881 3.431853 -0.431615 4.429206 1.087633 -0.601256 -3.350441 0.489266 1.595983 1.273556 -2.859206 4.798234 -0.294084 9.441083 -2.254964 3.254843 -2.495489 4.712125 -2.665774 -4.813223 -1.789322 5.984005 5.900446 1.227172 -0.232872 -0.066357 -1.395148 4.144535 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.476981 0.972247 7.321778 3.920852 -3.850828 -4.700481 -2.100472 -7.491080 4.373445 2.498732 6.342496 0.149882 3.865466 -1.702090 -0.526380 -1.866757 3.770188 -1.230178 -0.003157 -2.446473 -0.866337 6.814622 1.398099 -3.046021 1.150472 -5.605792 4.432421 1.819835 2.207880 4.686686 1.397475 0.794445 -1.770349 2.360974 -1.600594 0.839569 0.345936 2.231419 -2.390413 -1.410785 2.425126 -0.671286 4.572794 0.402408 4.476035 0.783643 1.737552 -0.445522 -4.065885 -2.708112 -1.387192 2.339405 -2.609574 2.553154 0.088492 -0.262657 1.583110 -2.066314 -0.077097 -5.087187 1.002325 -1.026441 -2.264155 0.118810 -3.510809 1.053918 -1.542104 -2.318834 0.496470 -3.953389 2.169214 0.049577 0.509482 -1.284148 -5.773842 1.557349 1.410744 0.527393 2.827926 2.548831 -1.503938 -1.284909 -3.416521 -3.966393 2.860596 2.506927 0.763704 1.759061 -3.092366 -1.210914 0.522852 0.007902 0.511584 3.663342 -4.142616 1.168654 -0.103824 -2.287412 -1.917271 -4.253938 0.951454 -3.416325 1.529947 2.961064 -3.294584 0.455483 -1.248859 1.031027 -1.441774 -3.708996 1.697224 -3.101344 0.224468 5.323015 -2.673570 -2.591820 -3.249580 -0.444944 1.516360 3.658550 -0.438178 1.434928 4.090848 2.880352 2.910971 -4.425465 -0.580079 3.051694 2.736237 1.276117 1.417008 -3.288074 -2.067986 0.996320 -2.887048 -6.930607 -2.863060 1.934402 4.733188 -0.460967 -3.982340 2.385987 -2.555222 4.007199 4.342391 2.020880 1.302137 1.353635 -4.165473 1.594634 6.197304 -1.830066 2.833191 -1.843408 -4.039028 5.086393 -1.216638 2.900249 -0.088416 0.111457 -0.544345 -3.238628 1.125357 5.069780 0.470776 1.789180 -0.225866 1.269066 -0.993178 -5.985123 -8.734557 -0.869742 5.020131 3.721659 7.750995 -4.762048 -1.677083 -0.514737 4.675319 0.095608 -3.225832 1.621074 -2.212336 2.444994 -9.623513 -6.884975 8.199220 6.843651 2.405436 0.157902 3.494602 0.850629 -2.402831 -2.997141 -3.299124 3.152718 0.827312 -2.633366 -0.161742 0.994999 -5.125533 -2.058326 0.024045 1.107793 2.860474 -2.954855 1.828664 -1.480044 -2.317308 -3.253119 2.969612 -2.761637 -2.571092 -0.544406 0.177615 0.645148 2.364782 -0.968706 -1.296102 0.324940 -2.906957 -0.949517 0.866932 2.498666 0.439998 5.896802 6.676414 -1.922570 1.557070 -0.256251 -2.701727 9.460781 -3.649564 0.020501 -0.079786 2.682432 1.828480 1.923657 3.699521 -2.089435 -1.797018 -4.988678 0.338926 0.626329 2.691971 -6.977195 -4.648662 -6.936070 0.331737 -0.215857 5.732819 0.097278 9.707692 -2.059281 0.822855 -9.189053 0.290688 4.039692 -0.286955 3.637746 1.814909 -4.021404 -4.698546 -0.999860 -4.483689 0.536771 -0.653355 -2.928867 -3.313489 -2.040486 3.434208 -2.840922 1.412480 4.233344 -1.098146 4.032668 0.626116 -0.609788 -2.813588 -0.438355 1.863453 1.003619 -2.788287 5.038057 0.103696 9.229978 -1.212752 3.087295 -2.131765 3.645064 -2.012253 -5.062244 -2.279738 5.604624 4.963410 1.840727 -0.112590 -0.007297 -1.333389 3.814524 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.222664 0.883126 3.840466 2.473403 -1.718641 -2.035329 -0.873971 -3.482610 1.946953 0.947916 3.121208 -0.461229 1.656363 -0.342122 -0.588824 -1.195396 1.811938 -0.223906 0.177565 -0.983878 -0.065858 3.114949 0.558371 -1.882938 0.616062 -2.494944 2.300480 1.128515 1.081179 2.085473 0.651351 0.912145 -0.513446 1.103398 -0.905818 -0.005866 -0.155194 1.280043 -1.207970 -0.710403 1.082062 -0.569186 1.885143 0.414111 2.059600 0.727520 1.217588 -0.442954 -1.940055 -0.895114 -1.497416 1.351428 -1.243662 0.859224 -0.546426 -0.435479 0.971187 -1.019664 -0.116902 -2.833610 0.536635 -0.317865 -1.089625 0.062096 -2.030362 0.921993 -0.544976 -1.126564 0.134339 -1.438668 1.142635 0.323293 0.496134 -0.520199 -2.930392 1.070473 0.586146 0.409672 1.313439 1.002609 -0.345733 -0.103193 -1.624269 -1.836626 1.472942 1.143351 0.637441 0.791734 -1.009418 -0.760359 0.028407 -0.051868 -0.248728 1.955118 -1.926302 1.217174 -0.286124 -0.983371 -1.029882 -1.765144 0.365302 -1.772774 0.741873 1.643785 -1.778644 0.696748 -0.500428 0.570801 -0.452554 -2.074888 0.608222 -1.848664 0.186180 2.586290 -1.414580 -1.236617 -1.463703 -0.002644 0.692965 1.880840 -0.791284 1.083327 1.501452 1.365946 1.151250 -1.907250 -0.116722 1.598790 1.037336 0.777600 0.800030 -1.489870 -1.106425 -0.162539 -1.064352 -3.156485 -1.227382 1.087019 2.282477 -0.400363 -2.329481 1.422354 -1.280624 2.188409 2.176806 1.198924 0.644431 0.953851 -2.001861 0.742855 3.284665 -0.913131 1.365388 -0.844513 -1.732568 2.431855 -0.422648 1.553743 -0.104582 0.204697 0.066359 -1.737560 0.120586 2.336672 0.578050 0.502268 0.658576 0.468952 -0.269372 -3.225230 -4.078806 -0.624390 2.405378 1.544184 3.878036 -2.348338 -0.849247 -0.268005 2.152228 0.111085 -1.274621 0.503067 -0.968527 1.098796 -4.825936 -3.701402 3.491824 2.885330 0.641808 0.242770 1.689598 0.311255 -0.922935 -1.703958 -1.394742 1.690247 -0.014196 -0.855171 -0.244669 0.278919 -2.393965 -1.168108 0.126882 0.545298 1.415481 -1.283931 0.958533 -0.904047 -1.130872 -1.778697 0.871210 -1.550594 -1.639770 -0.075131 0.040163 0.434640 0.916783 -0.692569 -0.480410 0.343493 -1.418061 -0.601090 0.277936 0.892037 -0.049157 2.671882 3.502444 -0.618897 0.650702 0.182446 -1.427294 5.147443 -1.362907 0.125439 -0.052283 0.951650 0.845187 0.962108 1.651338 -1.031862 -0.965272 -2.685537 0.383563 0.129610 1.338375 -3.617596 -2.012819 -3.114035 0.135863 0.440642 2.460502 0.073013 4.874368 -0.807201 0.023909 -4.506781 0.088330 2.225312 -0.283698 1.879033 1.065874 -2.160667 -2.206978 -0.369706 -1.945995 0.608133 -0.692970 -1.812168 -1.882926 -0.552115 1.268305 -1.315127 0.782707 2.210228 -0.327123 1.656765 0.288489 -0.328535 -1.006396 -0.549706 1.075398 0.731106 -1.512551 2.450139 -0.359391 4.501338 -0.700665 1.364090 -1.246401 1.627282 -0.801958 -2.153148 -0.903673 3.221930 2.176235 0.867723 -0.057074 -0.248148 -0.641288 1.893143 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -3.859714 2.320651 12.284894 4.637701 -4.459975 -4.826537 -3.132799 -10.365191 5.064686 3.693185 9.308753 -1.829548 4.463078 0.435679 -0.884398 -2.665855 5.026644 -3.299435 1.761802 -2.892541 -0.049985 9.149254 2.694809 -3.332989 1.112517 -10.082573 6.626658 1.669729 3.367485 6.692758 1.890198 1.638070 -1.477986 3.325709 -2.027451 0.545367 1.285029 3.613509 -2.614943 -0.839237 2.602965 -0.560377 5.109602 0.401610 5.899984 2.215612 2.490124 -1.178157 -5.467288 -3.231981 -3.330264 4.000896 -4.332454 2.422849 0.184347 -1.354923 1.596942 -3.639429 -1.063556 -7.708597 0.485564 -1.281979 -2.801843 1.006551 -5.348719 2.803739 -2.944694 -2.259468 1.038412 -3.599835 3.516720 1.400712 2.541847 0.028912 -8.231705 4.253964 1.731603 0.964307 3.168828 1.001042 -1.736337 0.803028 -4.459764 -6.331712 4.016952 4.719013 1.429738 0.323416 -2.482509 -0.404613 -0.552898 -0.116654 -1.382303 6.641970 -5.203195 3.242048 -1.234785 -3.468678 -3.439474 -6.147769 0.163415 -6.449402 2.261973 5.361618 -5.238732 0.603119 -2.964990 1.677011 -1.401968 -6.588638 2.417859 -4.549284 0.320496 7.432709 -4.880128 -2.385373 -4.752071 -0.067579 2.903652 5.045313 -1.900990 3.485593 5.273568 4.319558 3.480376 -5.835449 -0.529265 4.174691 3.735666 1.481314 2.712877 -5.317898 -3.541922 -0.226202 -2.552784 -9.348130 -3.677235 2.902330 6.127493 -1.001336 -5.983859 3.154340 -3.659272 6.940483 7.108389 3.205165 1.562708 2.230573 -5.332290 2.589795 9.967309 -3.592712 4.645892 -3.334121 -4.970518 7.518972 -2.357255 5.607390 0.231323 2.244993 -0.326238 -6.241876 -0.043971 7.715685 2.141797 3.266688 1.668625 0.946914 1.098149 -9.117580 -11.503600 -1.919010 6.755209 2.716798 9.944712 -6.467729 -2.366868 -0.134421 6.916304 1.227649 -4.423768 1.203301 -2.367851 2.672298 -13.645232 -10.523729 10.022791 9.739492 1.923112 0.788256 4.543409 2.329208 -3.887689 -4.548094 -4.373832 6.044775 -1.553765 -3.281950 -1.293991 1.310434 -6.492445 -2.906349 -0.452140 1.692480 5.021808 -3.980510 1.433134 -0.152238 -4.662360 -4.378819 3.821094 -4.978459 -6.157864 -0.682985 0.624975 1.717222 2.730056 -1.725286 -0.824335 2.289514 -4.587766 -2.142372 2.280128 3.119890 -0.294101 7.632405 8.754565 -1.269063 0.893296 -0.003005 -3.468907 13.112180 -4.251290 -0.842084 -0.289528 2.262566 1.253212 3.086447 4.763626 -2.686079 -4.526104 -7.557731 2.233207 -0.701428 3.690675 -8.616945 -7.309239 -8.490460 0.433023 2.109187 8.127215 0.892653 14.341148 -1.454200 0.819495 -12.543131 0.215373 5.417553 -0.391359 5.736581 3.089521 -5.787868 -6.044910 -1.601828 -5.883192 1.487631 -1.494970 -5.617830 -5.250717 -2.752420 5.039613 -3.311771 2.237094 5.122663 0.050841 5.397526 3.362143 -1.852158 -4.524300 -0.354437 3.810272 1.776052 -3.959894 7.793250 -0.978671 13.000029 -3.414389 3.739137 -3.387333 3.670155 -1.558870 -4.826286 -2.188613 9.315751 6.221512 2.858006 -1.075937 -1.548019 -2.069249 5.497312 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = -2.171333 -0.258373 4.588529 -0.225052 -1.310129 -2.084781 -1.655228 -5.365249 2.664206 2.506359 4.858503 -0.001651 2.812057 -0.740970 0.246307 -0.472487 2.026727 -3.043586 1.441381 -1.276367 0.503220 4.797176 1.466781 1.022788 0.341464 -5.051504 1.924011 -0.528811 1.720734 3.632899 0.646172 -0.226812 -1.339295 0.962630 0.424979 2.082774 1.473127 1.545800 -0.626444 0.153566 0.492733 -0.957230 2.188547 -0.143120 3.651266 -0.113561 0.011600 -0.343401 -1.942292 -2.604888 -0.047482 0.704366 -2.663007 0.930375 0.640302 -0.860768 -0.434065 -0.495801 -0.956344 -2.891430 -0.091735 -1.620271 -0.919383 0.905782 -1.499887 1.403100 -2.270259 -0.216281 -0.202920 -2.541122 1.776629 1.096716 1.494687 1.734172 -3.889006 1.313228 0.603442 -0.189438 1.023348 0.300847 -1.827354 -0.193395 -1.846514 -2.978268 2.063146 3.270329 0.049096 -0.271852 -2.503783 1.329071 -0.401772 0.240709 0.232964 2.480379 -2.881473 0.088424 0.228754 -1.509197 -0.427305 -3.636468 0.117294 -2.781697 0.885286 1.952980 -1.500643 -0.912616 -2.376126 0.915391 -1.849941 -2.556956 1.911913 -1.111478 -0.421876 3.027007 -2.606934 -0.130496 -2.942574 -0.168971 1.964245 1.717142 0.093212 1.429246 2.375831 2.057825 2.058144 -2.725800 -0.921709 2.404844 2.726441 0.014193 0.460793 -2.059836 -1.328067 1.030782 -2.105535 -4.191098 -2.793903 1.350207 2.625433 -0.565977 -1.306171 0.618214 -1.499838 2.851697 4.104313 0.623571 0.543767 1.074302 -2.754581 1.506104 3.785759 -1.438896 2.331272 -1.132414 -1.643857 3.446527 -2.307933 2.216837 0.324035 1.407916 -1.074330 -2.577385 0.050685 3.039047 0.998559 2.963648 -1.806338 1.002818 0.417786 -3.138086 -5.344625 -1.420409 3.859589 1.736642 3.088381 -2.610466 -0.930680 0.386193 3.263426 1.606161 -3.022494 0.959838 -1.113038 1.110550 -6.201432 -3.935157 5.200741 5.868229 2.414947 0.632638 1.634810 2.175065 -2.951808 -1.126439 -1.920704 2.727372 -1.235367 -3.769691 -1.217488 0.932146 -2.846532 -1.796620 -1.099139 0.664382 1.552169 -0.667654 1.591326 1.431722 -0.867446 -0.720278 2.639979 -1.517191 -3.171933 -1.084931 0.265690 1.042306 1.030259 -1.074301 0.896681 1.667530 -2.505281 -0.187208 1.858896 1.025198 0.402098 3.570175 3.846328 -1.143264 -0.625179 -1.176077 -1.246083 3.122637 -1.979405 -0.391311 -0.261889 0.457715 0.839774 1.119476 2.059458 -1.091638 -2.375533 -2.442570 0.352197 0.275267 2.103367 -1.510904 -4.909339 -3.713333 1.055477 0.620279 4.132003 0.754941 5.947947 -0.958707 1.434219 -5.152075 0.223095 1.563799 0.058821 2.295868 0.518032 -1.440841 -2.133986 -1.023414 -3.073770 -0.749963 -0.227454 -1.896384 -1.485046 -2.558881 3.394073 -1.528714 0.145288 0.448909 0.321468 3.797734 2.380709 -0.905464 -3.493703 1.413284 1.336031 0.447675 -1.373097 3.180034 0.444674 5.332331 -1.880081 1.095714 -0.668833 2.355300 -1.403539 -2.566340 -0.515453 3.543862 3.873155 1.267740 -1.199881 -1.098073 -0.442220 1.536038 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -3.186387 0.862193 8.887144 2.204453 -3.173175 -4.096499 -2.403927 -9.416678 5.019604 3.730168 7.794146 -0.108858 4.832516 -1.214556 -0.456069 -1.580281 4.299809 -3.263785 1.990406 -2.287579 0.578280 8.719693 1.746502 -0.442703 0.789315 -8.322742 4.903646 0.387308 3.773906 6.120184 1.680331 0.589040 -2.032353 2.056574 -0.127291 1.689984 1.116635 2.893697 -2.363843 -0.711598 1.413839 -1.865726 4.423488 0.513960 5.478743 -0.235532 1.284754 -0.873652 -3.400849 -3.476965 -2.074838 2.155743 -3.885682 1.995094 0.379689 -1.960133 0.540129 -0.946196 -0.662208 -5.033992 0.207421 -2.322129 -2.026905 1.030983 -3.860241 2.234194 -3.976105 -1.124030 -0.296471 -3.907424 2.894676 1.542588 2.525513 0.920854 -8.254746 2.576511 0.983690 0.133163 2.752606 1.939413 -2.245360 -0.396402 -3.785401 -5.347689 3.919893 4.995215 0.157228 0.324269 -3.973584 0.245687 -0.810264 0.300196 -0.026907 4.579532 -5.246844 1.769225 -0.923584 -2.498653 -0.923989 -6.312575 0.360471 -5.004454 1.424646 3.204890 -3.095127 -0.513995 -2.866900 1.085384 -1.938538 -4.812663 2.950201 -2.933626 -0.748138 6.302418 -3.861795 -1.553260 -4.873917 0.098420 2.718536 3.515971 -0.598077 2.711386 3.918203 3.387234 3.600506 -4.836110 -0.805615 4.763592 3.403782 0.605230 1.103756 -3.469402 -2.510431 1.030648 -2.635265 -7.748237 -3.980687 2.906577 4.878573 -0.951541 -2.924445 1.196002 -2.855944 4.974872 6.660573 1.575985 1.480543 2.266417 -4.479234 2.403958 7.440342 -2.504089 3.498594 -2.354840 -3.288673 6.353983 -3.055246 4.124187 -0.524514 2.162856 -1.042999 -4.483881 0.194982 5.911906 0.961492 3.471875 -0.944787 1.360959 0.313260 -6.625185 -9.626723 -2.019963 6.805984 3.454778 6.707218 -4.911649 -1.311925 0.656736 5.118182 2.251546 -4.391510 1.974754 -2.284094 2.349894 -11.717780 -7.852898 8.850103 8.729762 2.650227 0.471834 2.721714 3.099183 -4.243565 -3.457267 -3.778826 4.628285 -1.672698 -5.184978 -1.583164 1.480291 -5.455140 -2.821810 -0.524275 0.977321 3.928589 -2.385774 2.787469 0.347529 -2.217474 -3.079023 4.738290 -3.175915 -5.194585 -1.448938 0.347317 1.561985 2.366156 -1.272851 0.547587 2.452457 -3.576098 -1.225808 1.972160 1.832489 -0.218277 6.146404 7.413229 -1.521559 -0.529023 -0.860710 -2.891782 8.905447 -3.645060 -0.609093 -0.322649 1.072402 1.453184 2.615285 3.799206 -2.283190 -3.926452 -5.547059 0.693968 0.052495 3.589155 -5.132770 -7.152384 -6.947433 1.246240 0.963889 6.843333 1.014065 11.271290 -2.304263 1.463562 -9.428825 0.378187 4.064097 -0.109857 5.084071 1.626620 -3.788629 -3.029868 -1.739689 -5.156644 0.438905 -0.784529 -4.028394 -3.533672 -3.289988 4.856201 -3.075108 1.135948 2.375803 -0.326783 5.956449 2.418991 -1.299086 -5.195813 1.492161 2.421432 1.258317 -2.956623 6.049684 -0.232708 9.616239 -3.052243 2.292384 -2.011165 3.887128 -2.528808 -5.098410 -1.549902 7.125940 5.936377 2.460815 -1.528947 -1.429531 -1.034219 3.718430 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(suffix&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = -4.429599 2.498151 16.457738 7.836970 -7.345009 -9.667193 -3.994421 -13.398022 7.575950 4.547407 11.973302 -0.429876 6.880808 -1.351970 -0.215230 -2.754917 7.388139 -3.164321 1.583176 -4.388477 -2.262719 14.349420 5.102862 -6.240994 1.205389 -13.336419 9.236874 3.612042 5.908330 10.699879 2.166769 0.632272 -1.921123 5.016757 -3.811826 -0.071697 0.386821 4.233487 -5.117018 -1.523126 3.467899 -0.424448 9.194685 -0.171859 7.201880 1.759196 5.659743 -1.001419 -8.288220 -4.684845 -4.977853 6.607765 -5.885829 5.261741 0.811693 -0.696457 2.944660 -4.414120 -1.036279 -10.932549 0.635287 -1.093559 -4.819307 0.603151 -8.579720 2.241589 -5.450696 -5.083505 2.310518 -4.140173 4.811869 1.999085 3.364047 -2.576039 -12.812180 5.363216 2.271073 2.408020 4.779503 2.964357 -2.805262 -0.323154 -6.641918 -8.464744 5.074665 4.073781 1.449792 1.031461 -4.725749 -2.124952 -0.078557 0.372024 -1.677735 7.705803 -6.952245 5.373593 -1.853311 -4.108361 -4.407161 -10.121624 -0.570535 -8.766509 2.570469 6.920940 -4.961661 0.574605 -4.425733 2.267779 -2.405985 -9.691323 3.803222 -5.306795 -1.932468 10.415296 -6.360844 -3.363011 -5.292339 0.695540 3.024394 7.561628 -1.891100 4.471518 7.978212 6.232759 4.904571 -8.743797 0.474824 4.621576 6.033396 2.770582 4.703850 -6.609187 -5.277309 0.584307 -3.558425 -14.826300 -3.723834 6.379842 8.476810 -0.089445 -8.518166 3.800308 -5.156760 10.296534 9.622349 4.708241 3.084629 1.799359 -6.968031 4.461870 14.485673 -5.698730 6.883935 -4.938353 -8.899881 12.444761 -3.421708 7.670225 -0.929794 2.266710 0.257589 -8.284791 0.921537 11.777490 2.791326 4.014124 3.231337 0.878083 0.639136 -13.636764 -15.873651 -1.371987 9.201386 5.095826 16.240658 -8.966230 -3.800138 -0.239447 7.708649 0.017991 -6.322421 1.833642 -4.003534 4.045835 -22.835404 -15.318574 16.830085 13.303678 2.727150 0.889998 6.753873 4.071254 -4.568301 -6.905644 -7.000233 7.304129 -0.729524 -5.508503 -1.434443 2.482345 -10.979114 -2.384557 0.296181 1.868282 8.013081 -7.094005 0.095793 -2.388381 -8.707187 -6.549895 6.699309 -8.146221 -7.163171 -0.936701 0.720944 2.452786 4.378107 -0.760316 -2.265616 1.991376 -6.835773 -3.721992 1.717564 6.578680 1.089256 12.300515 13.667717 -1.267315 2.874991 1.065649 -5.950236 20.743825 -8.048088 -1.845525 -0.464139 5.848305 1.601749 4.811101 7.546970 -3.661764 -6.149936 -10.703439 3.397600 0.198804 4.757657 -13.733823 -10.075807 -12.867773 -0.117630 2.015073 12.578305 0.256149 20.173944 -3.644583 1.730950 -18.927052 0.350461 6.850042 0.520939 9.288219 4.900023 -8.652376 -8.572481 -2.994911 -7.803978 3.885542 -1.575557 -7.988923 -6.236090 -3.663398 5.513597 -5.849004 3.699420 8.148355 -2.344491 9.034298 4.063558 -2.447928 -6.462169 -0.003881 5.521052 3.004035 -5.450817 11.663169 -1.035883 19.685435 -3.522532 5.754431 -5.722408 4.507857 -2.156659 -7.242370 -3.983738 12.269735 9.409157 3.874871 0.117826 -0.323329 -2.971995 8.246580 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter&>(__gnu_cxx::__ops::_Iter_comp_iter&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.137619 0.173674 0.870598 0.661777 -0.498002 -1.225833 -0.210211 -1.307776 0.650451 0.291950 0.982750 0.080323 0.826462 -0.473116 0.063357 0.103669 0.660796 0.145081 0.003880 -0.380296 -0.381460 1.226276 0.082159 -0.325184 0.184570 -0.423082 0.589767 0.510708 0.456948 0.754160 0.219445 0.062764 -0.145279 0.284203 -0.372983 0.163939 -0.231061 0.435766 -0.536565 -0.261016 0.140869 -0.476810 0.836226 0.100580 0.563200 0.034281 0.617601 0.018311 -0.476192 -0.407031 -0.486131 0.529164 -0.423057 0.453602 -0.427726 -0.345878 0.471459 0.109444 0.089231 -0.669322 0.099221 -0.258185 -0.645980 -0.123103 -0.614082 0.119374 -0.353432 -0.621132 -0.080156 -0.287386 0.413451 0.061600 -0.120918 -0.275321 -1.302130 -0.012599 0.272052 0.095290 0.526537 0.442706 -0.047900 -0.416559 -0.679782 -0.620590 0.970918 0.200885 0.324418 0.517830 -0.844196 -0.257295 -0.044378 0.162171 0.405675 0.331408 -0.425483 0.270136 0.114558 -0.255207 -0.291522 -0.922322 0.256788 -0.439697 0.150586 0.141098 0.023339 0.116824 -0.305041 0.193114 -0.434950 -0.786045 0.230881 -0.525420 -0.342844 0.791163 -0.324767 -0.365787 -0.334790 -0.004965 0.127089 0.521356 0.267997 0.215258 0.575179 0.417216 0.398923 -0.729888 -0.186269 0.371218 0.471329 0.363975 0.114923 -0.289354 -0.468929 0.289807 -0.675267 -1.297757 -0.466252 0.693232 0.733711 -0.143733 -0.515370 0.566787 -0.387771 0.413747 0.760210 0.257146 0.273161 0.218668 -0.619142 0.295602 0.869786 -0.391518 0.559158 -0.168631 -0.511266 0.815511 -0.172198 0.191607 -0.014165 -0.282048 -0.092830 -0.253110 0.172159 0.814666 0.171920 0.216094 -0.059496 0.297314 -0.565748 -0.903707 -1.284660 -0.095002 1.072780 0.608126 1.183970 -0.681251 -0.292719 0.150871 0.464121 -0.285634 -0.518815 0.274009 -0.524659 0.506387 -1.759261 -1.064344 1.435815 0.692865 0.607207 0.009893 0.393859 0.405183 -0.362779 -0.467758 -0.466360 0.388794 0.269589 -0.919535 -0.258014 0.093943 -1.002050 -0.200991 0.018032 0.167469 0.017382 -0.227504 0.569560 -0.668710 -0.357444 -0.365005 0.434271 -0.500997 -0.125815 -0.124300 -0.098936 0.076841 0.310437 -0.137469 -0.003879 0.016987 -0.554496 -0.101685 -0.099508 0.414743 0.243673 1.258315 1.294555 -0.417598 0.416217 -0.100618 -0.611511 1.288260 -0.542244 0.119569 -0.045930 0.709444 0.319110 0.322181 0.834241 -0.338341 -0.365032 -0.914722 -0.283480 0.626505 0.427704 -0.547154 -0.449980 -1.253941 0.008973 -0.133144 1.272001 -0.238912 1.319379 -0.597459 0.319841 -1.310822 0.164240 0.274942 -0.168534 0.585709 0.226195 -0.579847 -0.493047 -0.262625 -0.733557 -0.290592 -0.082644 -0.398802 -0.446724 -0.368500 0.142794 -0.762488 0.107951 0.397713 -0.294093 0.678030 -0.197862 0.002667 -0.438109 0.254450 0.589686 0.110939 -0.544755 0.622229 0.151328 1.735266 0.041410 0.592820 -0.431107 0.509833 -0.358300 -0.812891 -0.420417 0.914403 0.982835 0.148206 0.209959 0.273920 0.093314 0.644391 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -2.407902 0.981233 7.425838 3.541166 -3.985302 -4.887493 -2.028043 -7.029280 3.810660 2.215747 5.779674 0.165187 3.202363 -1.551284 -0.135494 -1.223446 3.494434 -1.452975 0.812807 -2.117762 -1.281013 6.828333 2.119877 -2.511170 0.741845 -5.915160 4.386125 1.516371 2.749511 5.146058 1.248031 -0.058195 -1.619428 2.433411 -1.267777 0.592288 0.559249 2.144187 -2.406204 -0.731965 1.571204 -1.110813 4.601710 -0.147825 4.010735 0.367280 2.310953 -0.294877 -4.251496 -2.423253 -2.070377 3.019579 -3.003872 2.688427 0.830157 -0.653960 1.340341 -1.421785 -0.410840 -5.202522 0.042578 -1.827086 -2.268065 0.200585 -3.648573 0.930861 -2.646633 -2.331174 0.594296 -2.329836 2.230764 0.717295 1.444903 -0.591967 -6.321318 2.098724 1.391701 1.126162 2.516480 2.072672 -0.986310 -0.841533 -3.202161 -4.109298 2.476960 2.132829 0.690607 0.717539 -3.029143 -0.438981 -0.032557 0.194926 0.040971 3.511246 -3.622447 1.905559 -0.802825 -2.143785 -2.146928 -5.550807 0.163490 -3.788700 1.343485 2.843433 -2.602076 -0.179462 -2.160551 1.088216 -1.450464 -4.406581 2.096580 -2.676511 -0.718843 5.039636 -2.719849 -1.579197 -2.650714 0.015540 1.499899 3.431580 -0.336830 2.138599 3.344485 3.145523 2.886614 -4.169579 -0.373068 2.489524 2.970633 1.217998 1.625949 -3.063631 -2.348047 0.944947 -2.222407 -7.058793 -2.400708 3.031282 4.246096 0.016581 -3.218387 1.212966 -2.561689 4.788054 4.302176 2.106404 1.292682 1.010769 -3.823522 2.152696 6.610968 -2.162134 3.025526 -1.685379 -3.757227 5.712957 -1.693579 3.468378 -0.386613 0.766160 -0.249106 -3.569034 0.286446 5.448302 1.399201 1.860723 0.754081 0.812263 -0.605642 -6.509336 -8.006178 -0.358560 5.452177 2.827062 7.214647 -4.391837 -1.806268 0.034020 4.160992 0.301179 -3.315529 1.299633 -2.002192 2.338025 -10.504248 -7.045005 8.320345 6.797794 1.758903 0.287890 2.977134 1.984484 -3.023149 -3.446427 -3.523178 3.130735 -0.357462 -3.366212 -1.107530 1.299514 -5.087213 -1.295508 0.290492 0.899548 3.690055 -2.695693 0.979106 -0.682499 -3.023718 -2.855464 3.238225 -3.105429 -3.382178 -0.251158 0.327122 1.345435 2.373964 -0.459661 -0.760393 0.763889 -3.274195 -1.285869 0.857811 2.818471 0.521134 6.304801 6.476691 -0.953158 1.515218 0.147326 -2.846044 9.593799 -3.820668 -0.296662 0.007387 2.522784 1.167368 2.155310 3.875162 -1.986847 -2.615809 -4.978979 0.730349 0.156396 2.762922 -6.677252 -5.595562 -6.634139 0.501483 0.848797 5.568587 0.049437 9.447902 -1.840433 0.888220 -9.060973 0.188843 3.420753 -0.009667 4.410622 1.826376 -3.866392 -4.241131 -1.502702 -4.049256 1.280845 -0.857259 -2.973199 -2.918331 -1.840840 2.994510 -2.686645 1.686797 3.569531 -1.225469 4.537718 1.306766 -0.947519 -3.429957 0.162022 2.559737 0.961193 -2.626453 5.655836 0.141942 9.730660 -1.527152 2.331909 -2.250061 2.624666 -1.348932 -3.747206 -1.780468 5.547509 4.828794 2.038011 -0.447210 0.283658 -1.508914 3.659195 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(int (*&)(suffix, suffix)) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = -2.171333 -0.258373 4.588529 -0.225052 -1.310129 -2.084781 -1.655228 -5.365249 2.664206 2.506359 4.858503 -0.001651 2.812057 -0.740970 0.246307 -0.472487 2.026727 -3.043586 1.441381 -1.276367 0.503220 4.797176 1.466781 1.022788 0.341464 -5.051504 1.924011 -0.528811 1.720734 3.632899 0.646172 -0.226812 -1.339295 0.962630 0.424979 2.082774 1.473127 1.545800 -0.626444 0.153566 0.492733 -0.957230 2.188547 -0.143120 3.651266 -0.113561 0.011600 -0.343401 -1.942292 -2.604888 -0.047482 0.704366 -2.663007 0.930375 0.640302 -0.860768 -0.434065 -0.495801 -0.956344 -2.891430 -0.091735 -1.620271 -0.919383 0.905782 -1.499887 1.403100 -2.270259 -0.216281 -0.202920 -2.541122 1.776629 1.096716 1.494687 1.734172 -3.889006 1.313228 0.603442 -0.189438 1.023348 0.300847 -1.827354 -0.193395 -1.846514 -2.978268 2.063146 3.270329 0.049096 -0.271852 -2.503783 1.329071 -0.401772 0.240709 0.232964 2.480379 -2.881473 0.088424 0.228754 -1.509197 -0.427305 -3.636468 0.117294 -2.781697 0.885286 1.952980 -1.500643 -0.912616 -2.376126 0.915391 -1.849941 -2.556956 1.911913 -1.111478 -0.421876 3.027007 -2.606934 -0.130496 -2.942574 -0.168971 1.964245 1.717142 0.093212 1.429246 2.375831 2.057825 2.058144 -2.725800 -0.921709 2.404844 2.726441 0.014193 0.460793 -2.059836 -1.328067 1.030782 -2.105535 -4.191098 -2.793903 1.350207 2.625433 -0.565977 -1.306171 0.618214 -1.499838 2.851697 4.104313 0.623571 0.543767 1.074302 -2.754581 1.506104 3.785759 -1.438896 2.331272 -1.132414 -1.643857 3.446527 -2.307933 2.216837 0.324035 1.407916 -1.074330 -2.577385 0.050685 3.039047 0.998559 2.963648 -1.806338 1.002818 0.417786 -3.138086 -5.344625 -1.420409 3.859589 1.736642 3.088381 -2.610466 -0.930680 0.386193 3.263426 1.606161 -3.022494 0.959838 -1.113038 1.110550 -6.201432 -3.935157 5.200741 5.868229 2.414947 0.632638 1.634810 2.175065 -2.951808 -1.126439 -1.920704 2.727372 -1.235367 -3.769691 -1.217488 0.932146 -2.846532 -1.796620 -1.099139 0.664382 1.552169 -0.667654 1.591326 1.431722 -0.867446 -0.720278 2.639979 -1.517191 -3.171933 -1.084931 0.265690 1.042306 1.030259 -1.074301 0.896681 1.667530 -2.505281 -0.187208 1.858896 1.025198 0.402098 3.570175 3.846328 -1.143264 -0.625179 -1.176077 -1.246083 3.122637 -1.979405 -0.391311 -0.261889 0.457715 0.839774 1.119476 2.059458 -1.091638 -2.375533 -2.442570 0.352197 0.275267 2.103367 -1.510904 -4.909339 -3.713333 1.055477 0.620279 4.132003 0.754941 5.947947 -0.958707 1.434219 -5.152075 0.223095 1.563799 0.058821 2.295868 0.518032 -1.440841 -2.133986 -1.023414 -3.073770 -0.749963 -0.227454 -1.896384 -1.485046 -2.558881 3.394073 -1.528714 0.145288 0.448909 0.321468 3.797734 2.380709 -0.905464 -3.493703 1.413284 1.336031 0.447675 -1.373097 3.180034 0.444674 5.332331 -1.880081 1.095714 -0.668833 2.355300 -1.403539 -2.566340 -0.515453 3.543862 3.873155 1.267740 -1.199881 -1.098073 -0.442220 1.536038 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__move_median_to_first >(suffix*, suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -4.110440 1.465103 12.819624 6.036031 -6.111066 -8.144610 -3.962919 -13.600438 8.619866 4.606822 10.477847 1.360802 7.242037 -4.067075 -0.632886 -2.761037 6.960344 -2.451637 -0.769241 -4.646542 -0.364705 12.463271 2.148899 -5.489279 2.129313 -11.111584 6.542974 3.021437 4.497195 7.947013 2.556636 0.899062 -3.459873 4.401999 -3.284756 1.531729 1.855517 3.170469 -5.258458 -3.121043 4.036382 1.260799 8.171168 0.780280 8.197732 0.529352 1.886225 -0.410730 -6.258017 -5.197880 -1.019195 4.889671 -3.796163 5.291361 1.369897 0.555604 2.143428 -4.017151 0.348165 -7.700360 2.046498 -0.351208 -3.323170 -0.088688 -5.206904 1.158802 -1.759884 -3.453057 0.884646 -7.661391 3.776910 -0.739054 0.571622 -3.274375 -9.985159 2.325709 2.255195 0.982517 5.555100 5.152409 -2.806884 -3.344382 -5.214135 -7.122405 5.103772 5.372024 0.583899 4.148808 -5.759344 -2.781542 0.958303 -0.653464 1.615287 5.985793 -7.930458 0.695177 0.290262 -4.054254 -2.480695 -6.318619 1.859747 -5.539166 2.293566 4.523634 -4.273156 0.437044 -1.548822 1.658980 -2.576480 -4.851176 3.947181 -4.194845 -0.241302 10.029270 -4.207433 -4.840565 -5.631897 -0.958246 1.608904 6.895932 -0.304454 2.021482 7.362660 5.267818 5.480665 -7.851659 -0.867438 5.907253 5.212281 2.262161 2.522135 -6.583202 -3.255176 2.836450 -5.240998 -12.203342 -5.223699 2.768219 8.778578 -0.243463 -6.564570 3.392674 -4.139641 6.739047 6.663927 2.351688 2.334804 1.729084 -7.404897 3.039380 10.805301 -3.087793 4.735518 -3.251786 -6.622866 7.683161 -2.707408 5.026043 -0.544210 -0.499260 -1.141271 -5.028359 2.955721 9.053734 -0.019384 3.684779 -2.328802 2.502446 -2.318039 -10.237526 -15.984108 -1.934247 7.706156 5.967638 13.379379 -7.586419 -3.602205 -1.811385 8.996308 -0.768476 -5.494378 3.857817 -4.824708 4.654341 -14.802615 -10.957970 15.327663 13.840108 4.745167 -0.419059 6.766050 1.527576 -4.824112 -4.920936 -5.145696 4.783787 2.754845 -5.018027 0.239255 1.854433 -8.678091 -4.247236 0.162457 1.763328 4.107880 -4.162830 3.682104 -1.874196 -4.141412 -5.496428 5.827757 -4.217777 -3.175745 -1.144474 0.527067 0.345503 5.124147 -2.241060 -3.171792 1.401567 -4.670686 -1.493819 1.377948 4.952800 1.299626 9.137097 10.747319 -3.168087 4.558676 -0.458219 -5.006921 15.894536 -6.598708 0.088157 -0.339624 4.365063 3.098207 3.489277 5.419617 -3.768771 -2.508218 -8.745496 0.305018 1.071060 4.802727 -11.595271 -8.832489 -11.395231 0.251345 -1.390463 9.463292 0.009812 16.782689 -4.541906 1.606465 -16.458447 0.787980 7.222206 -0.400939 5.502598 3.258792 -6.675396 -10.027390 -1.541651 -8.208091 -0.626818 -0.800985 -5.633378 -5.300460 -5.245105 8.434625 -5.622979 2.621127 8.316406 -1.536280 7.495222 -0.122534 -0.868051 -5.646852 -0.539895 1.793632 1.225497 -4.864732 7.954272 0.466571 15.565784 -2.791307 6.031930 -3.797685 6.456930 -4.116576 -9.942474 -4.470665 9.295586 8.722746 3.123523 -0.119131 -0.006696 -2.929722 6.830599 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.974469 0.699026 5.549248 4.146948 -4.350019 -5.800490 -1.766129 -6.220735 3.775968 1.725201 5.607285 0.248340 3.243978 -2.015276 -0.295638 -1.571452 2.871670 0.314894 -0.564747 -2.066016 -2.886157 5.457309 0.879378 -2.768916 1.030838 -3.119585 3.612574 2.636437 1.310530 3.519748 1.073707 0.335767 -1.705784 2.015348 -1.507131 1.077759 -0.179194 1.413698 -2.082608 -1.423723 1.985133 -1.732560 4.573782 0.028214 4.084044 0.815197 2.533327 -0.027858 -4.514234 -2.088006 -1.285014 2.587546 -1.666210 2.348390 0.898253 0.434507 2.180385 -2.192118 0.085098 -4.156283 1.016614 -1.458569 -2.455426 -0.025050 -3.455637 0.371557 -1.455559 -3.000393 0.860829 -3.346725 1.477751 -0.557463 0.064143 -1.145111 -4.491608 1.034551 1.283651 0.619496 2.308915 3.165362 -0.810913 -1.393260 -3.348151 -2.839682 1.681671 0.583209 0.659243 1.646855 -3.826520 -1.587225 1.075830 -0.397042 0.632595 2.620796 -3.699779 1.354758 0.538325 -1.786002 -2.675399 -4.974501 0.822394 -2.258394 1.322685 2.516607 -2.670330 0.353728 -1.076108 0.942881 -1.509381 -3.383023 1.428583 -3.191353 0.556904 4.161460 -2.410800 -2.344632 -2.157429 -0.659654 0.707029 3.340907 -0.143811 0.724537 3.270410 2.349516 2.331899 -3.440174 -0.559307 2.123319 2.860431 1.194991 1.361484 -3.039605 -1.343928 1.106004 -3.105413 -6.314224 -2.031013 2.412913 3.875359 0.000000 -3.411537 2.128044 -1.971191 3.607820 2.881052 2.733131 0.866009 0.596572 -3.622661 1.085279 4.670685 -1.278143 2.647711 -1.108966 -4.659614 4.464715 -0.497472 1.947699 0.131637 -0.387495 -0.346423 -2.297689 1.079374 3.778246 0.860804 0.254416 0.445568 1.069294 -2.465175 -5.048176 -7.683250 0.668374 4.365764 4.001873 7.951724 -4.722067 -2.404716 -0.860455 4.205669 -0.681151 -2.941131 1.381212 -1.831265 2.054727 -8.985707 -6.394103 7.798114 5.163761 1.885226 -0.210997 3.773913 0.025905 -2.746963 -3.216591 -3.568946 1.956223 1.244894 -2.806752 0.244936 0.789432 -5.445359 -0.485505 -0.327358 1.024935 3.113558 -2.570506 1.595226 -2.957495 -1.816527 -2.938237 2.216078 -1.735619 -1.687939 -0.197362 0.221725 0.369427 2.190831 -0.507965 -1.892697 -1.045633 -3.318465 -0.624943 0.641208 2.408480 1.149041 7.941931 6.514421 -1.414477 2.665808 -0.081405 -2.172866 9.286912 -3.936374 0.213621 -0.115150 3.426495 1.753402 1.281877 3.860927 -1.677532 -1.733038 -3.792674 -0.064368 0.250159 2.010624 -7.096516 -4.207177 -7.394979 0.067601 -0.609286 4.982973 -0.022139 8.061349 -1.479144 0.520926 -8.560229 0.162651 3.318669 -0.337874 3.369420 1.463519 -4.113678 -3.894267 -0.522478 -3.569872 0.301699 -0.398553 -2.166236 -2.299561 -1.419639 1.771302 -2.299070 1.049956 4.361138 -1.755923 3.379627 0.777441 -0.396983 -1.746606 -0.803073 2.544574 0.451836 -2.244003 4.894738 0.471201 9.527660 0.324429 2.467564 -1.655223 2.925489 -1.474780 -4.397114 -2.049418 3.808360 4.863624 1.536295 -0.016369 1.430210 -1.592044 2.992654 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = -0.167210 0.215272 1.155503 0.587301 -0.622916 -1.090231 -0.249638 -1.487221 0.863904 0.448167 0.963834 0.234375 0.926357 -0.517505 -0.125794 -0.173742 0.732077 0.064563 0.065292 -0.447204 -0.203292 1.390999 0.028114 -0.331038 0.208456 -0.898940 0.915182 0.331113 0.706832 1.090091 0.265747 0.051851 -0.413707 0.357049 -0.194838 0.062062 -0.104692 0.445249 -0.655370 -0.210697 0.236599 -0.391425 0.937921 0.205244 0.683230 -0.011421 0.184210 0.024562 -0.400963 -0.491322 -0.267250 0.174166 -0.418841 0.574311 -0.272533 -0.311142 0.262018 0.157330 0.196498 -0.615731 0.205818 -0.365335 -0.451936 -0.026537 -0.750650 0.076629 -0.632778 -0.607672 -0.182587 -0.705421 0.366631 0.075304 0.071449 -0.368682 -1.583791 0.044857 0.232830 0.090195 0.653365 0.638594 -0.252607 -0.465514 -0.775403 -0.768102 0.704870 0.578563 0.079950 0.512156 -0.851259 -0.452968 0.044318 0.176482 0.434472 0.490287 -0.628009 0.249118 -0.301054 -0.244509 0.006951 -1.184675 0.263992 -0.493022 0.217047 0.071511 -0.239528 0.048335 -0.053482 0.194179 -0.211692 -0.622054 0.439827 -0.493914 -0.216668 1.111843 -0.197809 -0.563955 -0.644612 -0.092232 0.227878 0.600098 0.109504 0.153947 0.589845 0.444989 0.608671 -0.861397 -0.175708 0.738948 0.289596 0.255524 0.135713 -0.370984 -0.393420 0.334156 -0.621772 -1.391223 -0.487526 0.428538 0.771354 -0.332431 -0.284175 0.336740 -0.593353 0.403632 0.872415 0.226357 0.388199 0.250369 -0.706112 0.319961 1.048696 -0.295461 0.412096 -0.352333 -0.634462 0.916303 -0.168004 0.403824 -0.342821 -0.148121 -0.098183 -0.335446 0.342120 0.943992 -0.137739 0.320585 -0.129197 0.270395 -0.519163 -0.960891 -1.416913 -0.192573 1.251768 0.833636 1.206171 -0.773463 -0.097097 0.068868 0.642272 0.119697 -0.491562 0.460977 -0.483754 0.532434 -1.965763 -1.154100 1.472176 1.091305 0.569398 -0.136145 0.257212 0.351403 -0.367750 -0.648489 -0.575455 0.352770 0.110367 -0.931900 -0.278616 0.200977 -0.983437 -0.269214 0.203167 0.145958 0.529614 -0.415903 0.584856 -0.530550 -0.252572 -0.792137 0.800348 -0.480549 -0.235795 -0.102379 -0.023393 0.040892 0.413058 -0.084723 -0.077836 0.180691 -0.320367 -0.037783 -0.014302 0.319737 -0.038365 1.027712 1.179047 -0.433076 0.035609 -0.050582 -0.607822 1.736448 -0.705022 0.132572 0.062676 0.533579 0.302228 0.443514 0.720013 -0.427378 -0.270748 -0.961772 -0.316741 0.407282 0.493143 -0.850840 -0.773783 -1.254184 0.172871 -0.322054 1.201191 -0.026841 1.616832 -0.616309 0.338429 -1.314526 0.136688 0.567511 -0.102919 0.841252 0.277286 -0.659828 -0.412424 -0.278354 -0.888989 -0.004077 -0.121104 -0.477076 -0.495213 -0.239475 0.299925 -0.564397 0.188616 0.514418 -0.420574 0.876146 -0.354488 0.015112 -0.682249 0.183363 0.382217 0.111865 -0.535465 0.697782 0.125989 1.490562 -0.058170 0.554053 -0.312888 0.625698 -0.507430 -1.115472 -0.517763 1.041867 0.861285 0.388512 0.048772 0.078502 0.060992 0.614059 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(suffix&, suffix&) = -0.876669 0.056883 2.667358 0.404453 -1.240513 -1.347886 -0.686080 -3.629157 2.084474 1.471027 2.495615 0.523199 2.044357 -1.151672 -0.275212 -0.644967 1.547329 -0.839193 0.686051 -0.783357 0.328483 3.160375 0.033791 0.347953 0.287358 -2.671025 1.825034 -0.216906 1.725826 2.375955 0.670703 -0.147397 -1.342974 0.464552 0.493820 0.692617 0.482357 0.927449 -1.165689 -0.414438 0.307862 -1.227788 1.650395 0.143818 1.965942 -0.896791 -0.242069 -0.195553 -0.802740 -1.344376 -0.147022 0.007513 -1.173989 0.958431 0.425430 -1.083904 -0.188904 0.560180 0.115311 -1.082592 0.251560 -1.476924 -0.394632 0.334722 -1.194399 0.495794 -1.917257 -0.388071 -0.421846 -2.035637 0.741178 0.405208 1.004246 0.294513 -3.395025 0.430704 0.348826 -0.173154 1.112639 1.465276 -0.650374 -0.825089 -1.398819 -1.792278 1.255328 2.155006 -0.411543 0.297484 -2.094215 0.038038 0.037017 0.267407 0.657473 1.202488 -2.083974 0.228316 -0.979620 -0.646091 0.590915 -2.998702 0.340866 -1.451814 0.458753 0.430638 -1.045341 -0.299014 -0.383373 0.427798 -0.493001 -1.276835 1.359544 -0.698399 -0.306335 2.511733 -0.865168 -0.898142 -2.048132 -0.066738 0.882416 0.837863 0.105081 0.737668 1.074244 0.991368 1.772903 -1.840272 -0.511723 2.356460 0.871441 0.038267 -0.104192 -0.871024 -0.535244 0.885229 -1.182351 -2.759041 -1.633347 0.706070 1.699488 -0.574015 0.012990 -0.301210 -1.136537 1.200213 2.241373 0.218252 0.619857 0.934493 -1.566756 0.701618 1.996782 -0.512037 0.786258 -0.665819 -0.923236 1.787138 -0.828907 1.153348 -0.826797 0.753954 -0.385788 -1.251802 0.348663 1.913283 -0.329770 1.292963 -1.274851 0.689638 -0.641304 -2.040757 -3.244015 -0.697865 2.908633 1.760001 1.644958 -1.574199 -0.218118 0.438039 1.726564 1.235726 -1.572720 1.240613 -0.960131 1.010788 -3.899049 -2.395792 3.005778 3.162340 1.168947 -0.236321 0.345811 1.072436 -1.890896 -1.242818 -1.494538 1.142566 -0.514151 -2.645375 -0.816606 0.656196 -1.845437 -0.925842 0.260145 0.190188 1.593768 -0.636409 1.597254 0.240596 0.030409 -1.304769 2.590349 -0.632421 -1.394505 -0.675599 0.145103 0.554376 1.059353 -0.411244 0.295900 0.938410 -0.780548 -0.091460 0.550518 0.290247 -0.430815 2.006443 2.264035 -0.753537 -0.727132 -0.531440 -1.144571 2.947271 -1.482833 -0.064856 -0.013993 0.038082 0.545032 0.972582 1.309427 -0.946049 -1.171210 -1.757922 -0.764685 0.042875 1.435045 -1.438175 -2.777363 -2.347473 0.843532 -0.428595 2.112629 0.582750 3.660204 -1.263332 0.734781 -2.691742 0.124642 1.473688 -0.065820 2.101096 0.219500 -1.030900 -0.466391 -0.628367 -1.985914 -0.015846 -0.202140 -1.042941 -0.950624 -1.211594 1.847677 -0.776393 0.204626 0.353202 -0.430789 2.550586 0.127296 -0.253164 -2.146163 0.943572 0.334481 0.251740 -0.995193 1.895012 0.313174 2.879265 -0.819814 0.415100 -0.356741 1.531802 -1.415925 -2.386494 -0.676841 2.111558 2.153023 1.220446 -0.883284 -0.422657 -0.310490 0.966163 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.517694 0.242649 9.271231 3.259084 -4.441384 -6.063921 -2.853056 -11.211958 6.354468 4.263673 9.325072 0.551665 5.808815 -3.263339 -0.119398 -1.781763 4.849991 -2.737522 0.361114 -3.057361 -0.563594 9.236077 1.197052 -1.713713 1.367107 -7.787160 4.764179 1.815384 3.085221 5.790768 1.949671 0.232645 -2.875190 2.538586 -1.156393 2.692841 1.715163 2.767655 -2.887154 -2.162997 2.450275 -1.652024 5.847662 -0.150462 7.013482 -0.671989 1.872153 -0.738157 -4.963004 -4.309195 -0.729447 3.063159 -3.552930 3.200317 1.392311 -0.940618 1.020713 -2.150455 -0.280084 -5.806775 1.295101 -2.036671 -2.796818 0.377916 -3.605699 1.378136 -2.275439 -2.095676 0.581756 -5.986623 2.708801 -0.098524 0.943819 -0.213205 -7.844642 1.752534 2.033162 -0.287878 3.392861 3.715743 -1.777956 -2.447330 -4.225041 -5.259562 4.469552 4.750961 0.426463 2.002976 -5.904781 0.019167 0.651681 -0.119982 1.301093 4.569333 -6.464716 0.357275 0.490066 -3.256813 -1.899574 -6.560950 1.447038 -4.686228 1.900480 3.698248 -3.826795 0.087501 -2.148250 1.594270 -2.769952 -4.638626 2.759853 -3.535896 0.439445 6.955622 -4.069705 -3.048757 -5.137361 -0.588333 2.243006 3.955334 0.064989 1.917538 5.694397 3.684053 4.676695 -6.157063 -1.450696 4.982825 4.527671 1.317686 0.719420 -4.663493 -2.046921 2.260012 -4.764759 -9.560492 -4.977206 2.402942 6.355086 -0.640138 -4.171735 2.111074 -2.821089 5.400857 6.238685 1.887506 1.229166 2.381420 -5.661123 1.918461 7.140196 -2.270679 3.808826 -2.059285 -4.542570 5.658551 -2.239295 3.496507 0.287457 0.797374 -1.200949 -4.402840 1.411961 6.459310 0.660883 3.539089 -3.052445 2.339774 -1.920274 -7.293600 -12.187830 -1.532400 7.021893 5.147632 9.246887 -6.211299 -3.039757 -0.298336 6.757431 0.457072 -5.238821 2.876630 -3.492001 3.381663 -11.856971 -8.722565 11.212049 10.268848 4.386332 0.098635 4.789670 1.534705 -5.375765 -3.227877 -4.492823 4.236741 1.104418 -5.910489 -0.471489 1.530136 -7.008627 -3.034156 -0.830615 1.210035 2.817280 -2.518229 3.881483 -0.798797 -1.936074 -3.053118 5.127529 -2.632448 -3.607274 -1.908263 0.501412 1.258736 3.577515 -2.212874 -1.052950 1.072811 -4.473696 -0.778793 1.919609 2.915531 1.018131 8.757380 8.781296 -2.772206 2.283019 -1.605028 -3.315968 10.112362 -4.883952 -0.360322 -0.311088 2.533267 2.473810 2.491347 5.033337 -2.854486 -2.953447 -6.086812 -0.612586 0.669671 4.099925 -6.897177 -7.387491 -9.387722 0.847548 -0.671453 7.783632 0.622422 12.531332 -2.998556 1.853532 -11.960326 0.297664 4.534122 -0.432657 4.727720 1.529623 -4.765780 -6.033560 -1.250473 -6.232653 -1.580540 -0.298038 -3.403145 -3.906189 -4.757694 6.275686 -3.816800 1.162010 4.079619 -0.612952 6.390263 1.442185 -0.827465 -4.620313 1.017865 2.263339 0.931296 -3.588500 6.491790 0.886373 12.811276 -2.189514 3.536320 -2.409964 5.246289 -3.382636 -6.946334 -2.669057 6.637092 7.842125 2.777111 -1.452130 -0.193742 -2.272876 4.752073 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.325612 0.452339 4.032967 1.804520 -2.456362 -3.569989 -1.220324 -5.110747 2.619985 1.664355 4.235933 0.152825 2.627282 -1.391457 -0.013111 -0.675325 2.277824 -0.687627 0.020701 -1.535734 -1.185216 3.908774 0.373217 -0.909725 0.755933 -2.756402 2.377357 1.334154 1.156640 2.516250 0.967998 0.137210 -1.385940 1.233139 -0.622492 1.101041 0.420195 1.332483 -1.380338 -0.782264 1.141227 -1.313482 2.992497 0.036199 2.937443 0.187202 1.300189 -0.054542 -2.520629 -1.814445 -0.610477 1.459682 -1.548833 1.545690 0.320683 -0.489616 0.881092 -0.931338 0.059371 -2.564001 0.537441 -1.207831 -1.639247 0.101232 -1.987179 0.441528 -1.204640 -1.522695 0.284722 -2.522562 1.184446 -0.231363 -0.014692 -0.183601 -3.618057 0.537224 1.100302 0.068686 1.677081 1.757537 -0.661199 -1.161301 -2.333025 -2.355164 2.061380 1.597076 0.598014 1.043686 -2.982106 -0.235263 0.474501 0.021703 0.867079 1.970374 -2.668842 0.391070 0.149337 -1.496685 -1.448312 -3.578234 0.827476 -1.855121 1.015982 1.409271 -1.822724 0.032637 -1.107757 0.684491 -1.280153 -2.383745 0.961660 -1.961404 0.318412 3.122779 -1.708008 -1.577620 -2.142022 -0.483004 0.966464 1.855172 0.323651 0.570020 2.639796 1.684789 1.975717 -2.772557 -0.831806 1.720755 1.871881 0.809710 0.515738 -1.968295 -1.087431 1.046253 -2.490192 -4.545639 -1.995293 1.288915 2.838137 -0.360431 -1.958334 1.262855 -1.503635 2.167365 2.672808 1.262233 0.625507 0.883566 -2.529401 0.776309 3.067607 -1.051420 1.878163 -0.794508 -2.263599 2.715216 -0.641333 1.297069 0.314570 -0.128289 -0.642611 -1.674423 0.581812 2.876628 0.473897 1.173049 -0.807854 1.055897 -1.449430 -3.265683 -5.446805 -0.207092 3.534087 2.560856 4.496793 -3.132121 -1.338327 -0.047376 2.952308 -0.096506 -2.403966 1.203242 -1.458305 1.601639 -5.644156 -4.081298 5.130702 4.064324 1.949281 -0.090119 2.071748 0.502867 -2.346611 -1.797102 -2.286547 1.758797 0.526266 -2.770979 -0.318782 0.684657 -3.510530 -0.869443 -0.343195 0.749442 1.396952 -1.244905 1.762890 -1.169670 -0.941920 -1.617629 2.033004 -1.151179 -1.355865 -0.559092 0.051906 0.536585 1.509926 -0.825482 -0.693647 0.011472 -2.233741 -0.307476 0.665710 1.484815 0.558821 4.916507 4.175299 -1.376287 1.205799 -0.638430 -1.607749 4.990527 -2.314135 0.165207 -0.079373 1.766495 1.160230 1.056203 2.835145 -1.302863 -1.481891 -2.836902 -0.601495 0.598350 1.740897 -3.258784 -2.894169 -4.924193 0.332204 -0.445956 3.918208 -0.005929 5.567430 -1.223808 0.881469 -5.340220 0.191049 1.926456 -0.381765 2.224910 0.718985 -2.440520 -2.380398 -0.579544 -2.971927 -0.816712 -0.035222 -1.151342 -1.813625 -1.651843 1.957306 -1.689234 0.410505 1.953029 -0.647365 2.623642 0.540921 -0.275002 -1.660594 0.260200 1.852180 0.283211 -1.738565 3.110721 0.584774 6.390261 -0.303531 1.722246 -1.022619 2.144141 -1.170705 -3.121259 -1.441293 2.982205 3.631564 1.229879 -0.359768 0.360630 -0.720403 2.217117 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = -1.863377 0.365856 5.031406 1.971913 -2.898968 -3.539983 -1.457098 -6.331632 3.673036 2.321170 5.015826 0.711689 3.575276 -2.015795 -0.233096 -1.139179 3.018205 -1.112342 0.545990 -1.700637 -0.569659 5.756884 0.634120 -0.645541 0.726595 -4.044403 3.161029 0.644080 2.352186 3.880024 1.204571 -0.001180 -1.998067 1.287606 -0.104040 1.249202 0.377306 1.705445 -2.006686 -1.032814 1.180068 -1.940356 3.575860 0.230664 3.579884 -0.782374 0.868082 -0.317031 -2.642727 -2.419160 -0.762147 1.195398 -2.137293 1.971409 0.670403 -1.145872 0.738239 -0.110060 0.124871 -3.007828 0.505588 -2.105092 -1.433354 0.274139 -2.406108 0.731693 -2.574899 -1.370231 -0.173375 -3.316028 1.508230 0.267552 1.007915 -0.089003 -5.388766 0.862255 0.930316 0.011817 2.146560 2.767150 -1.084693 -1.458583 -2.734893 -3.209640 2.430358 2.514257 -0.029650 0.987092 -3.778825 -0.271308 0.310451 0.268840 0.945961 2.322787 -3.746613 0.680900 -0.546086 -1.571657 -0.456307 -4.838677 0.671482 -2.608222 0.924693 1.501675 -2.090204 -0.334725 -1.376431 0.695724 -1.331548 -2.792237 1.961525 -1.932667 -0.511432 4.194649 -2.062880 -1.722599 -3.013029 -0.185424 1.405518 2.157985 0.284446 1.168440 2.562964 1.993189 2.846671 -3.366636 -0.668948 3.131451 2.178253 0.482757 0.362084 -1.886625 -1.302946 1.508558 -2.505735 -5.413239 -2.738055 1.978129 3.469971 -0.327548 -1.560878 0.576195 -1.937218 2.633371 3.752605 1.160385 1.061727 1.323509 -3.072952 1.199004 3.988216 -1.258796 2.047967 -0.983044 -2.613872 3.882929 -1.372073 2.026920 -0.657762 0.651424 -0.694816 -2.304143 0.659947 3.722483 0.070367 1.708485 -1.429922 1.169333 -1.295954 -4.213194 -6.700765 -0.655537 4.837486 3.405763 4.647394 -3.386076 -1.018574 0.382756 3.314951 0.908541 -3.086926 1.811362 -1.748778 1.929577 -7.713971 -4.941059 6.462285 5.429121 1.995849 -0.165318 1.773419 1.391074 -3.138310 -2.444653 -2.980124 2.262152 -0.064517 -3.873999 -0.813318 1.071223 -4.034439 -1.335676 0.051099 0.569081 2.503693 -1.736882 2.419450 -0.638054 -0.786253 -2.110014 3.563255 -1.480972 -2.299997 -0.935345 0.111270 0.849312 1.984038 -0.593301 -0.312531 0.629577 -2.313900 -0.596574 0.708358 1.423603 0.125756 5.037722 5.088591 -1.520306 0.180816 -0.730258 -2.217768 6.286825 -3.080038 -0.095576 -0.215090 1.463768 1.391558 1.611050 3.024142 -1.650695 -2.088307 -3.474233 -0.760318 0.428723 2.373305 -4.169301 -4.478235 -5.318543 0.948443 -0.542636 4.411795 0.392366 7.157311 -2.125963 1.041852 -6.342889 0.280407 2.690474 -0.202868 3.410273 0.768273 -2.554908 -1.996785 -1.060380 -3.630610 0.103239 -0.191819 -1.835073 -1.973482 -2.121193 2.956723 -2.103847 0.645789 1.815819 -1.061571 4.161336 0.708899 -0.498883 -3.088372 0.924037 1.419414 0.543869 -1.947032 3.995151 0.520495 6.750185 -0.973589 1.516618 -1.139216 2.774349 -2.065665 -4.283464 -1.555327 3.910197 4.428654 1.778428 -0.827328 0.041685 -0.832456 2.369300 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Val_comp_iter __gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter) = -0.010123 0.265137 1.101674 0.108506 -0.220082 -1.122442 -0.277115 -1.754742 0.705187 0.502033 1.191053 -0.120791 0.895643 -0.287464 0.094275 0.347713 0.599486 -0.116429 0.176027 -0.382594 -0.223576 1.211667 -0.160175 0.237125 0.185291 -0.869585 0.409792 0.439908 0.558992 0.638986 0.248073 0.025128 -0.121162 0.285129 -0.300503 0.349347 0.161921 0.434520 -0.509151 -0.093202 -0.103730 -0.276758 0.682202 0.083628 0.769613 0.099182 0.402317 0.038441 -0.236724 -0.447786 -0.292140 0.674915 -0.360386 0.333211 -0.308365 -0.441286 0.172833 -0.011536 0.069083 -0.334511 0.054546 -0.167181 -0.581246 0.006548 -0.477568 0.179410 -0.317677 -0.461751 -0.112739 -0.323516 0.435418 0.037346 -0.114523 0.048019 -1.401609 0.087319 0.339033 -0.044634 0.481078 0.100152 -0.023851 -0.293465 -0.641306 -0.775895 1.147688 0.821828 0.326096 0.402323 -0.985835 -0.087094 -0.209391 0.058129 0.461596 0.555020 -0.530857 0.101861 0.078534 -0.369601 -0.435500 -1.059314 0.280901 -0.542613 0.227161 0.017551 0.169628 0.061181 -0.325992 0.268363 -0.454168 -0.702125 0.272277 -0.502950 -0.129522 0.941205 -0.384225 -0.317973 -0.556539 -0.125221 0.107865 0.481984 0.291827 0.159066 0.746921 0.449050 0.460965 -0.767832 -0.395801 0.507886 0.497279 0.353233 0.065888 -0.633508 -0.408679 0.298015 -0.808872 -1.380780 -0.587117 0.441634 0.682022 -0.456554 -0.311360 0.506138 -0.357213 0.458244 0.895350 0.107073 0.178896 0.256795 -0.640754 0.293053 0.926253 -0.434562 0.633349 -0.340437 -0.329846 0.488477 -0.286565 0.275218 0.144976 -0.180609 -0.235938 -0.310537 0.162193 0.851532 0.231826 0.460445 -0.297365 0.346003 -0.564826 -0.748354 -1.419603 -0.230089 1.011610 0.301268 1.061057 -0.664335 -0.517630 0.124339 0.790177 -0.176270 -0.566908 0.414959 -0.624056 0.496324 -1.315877 -1.034830 1.355375 1.066699 0.827412 -0.102621 0.492385 0.472899 -0.763919 -0.428122 -0.321434 0.488516 0.114083 -1.412717 -0.420896 0.095128 -0.949867 -0.202352 -0.277836 0.206358 -0.099363 0.231289 0.858558 -0.390359 -0.339244 -0.278245 0.533155 -0.355581 -0.226566 -0.247967 -0.001607 0.006728 0.383043 -0.483141 0.075566 0.374258 -0.684124 0.073600 0.203938 0.277539 0.217097 1.343398 1.126813 -0.344037 0.596090 -0.280410 -0.457361 0.796180 -0.375171 0.111634 -0.019303 0.409106 0.111603 0.385704 0.733798 -0.349479 -0.606628 -0.927610 -0.337522 0.465532 0.444263 0.190245 -0.676888 -1.180480 -0.008229 -0.098745 1.394626 -0.067938 1.363790 -0.417639 0.519857 -1.270108 0.185330 0.092650 -0.257218 0.514165 0.185486 -0.579043 -0.482826 -0.181836 -0.853126 -1.048097 -0.007935 -0.516251 -0.507914 -0.724245 0.468301 -0.723767 -0.018087 0.243239 0.061856 0.703324 -0.115637 -0.033508 -0.632897 0.466624 0.863030 -0.071937 -0.567985 0.405192 0.194061 1.911960 -0.166731 0.657367 -0.347110 0.444279 -0.262309 -0.766322 -0.377228 0.971496 1.051502 0.244819 -0.099601 0.067609 0.076267 0.648827 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix const*, suffix const*, suffix*) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = -2.171333 -0.258373 4.588529 -0.225052 -1.310129 -2.084781 -1.655228 -5.365249 2.664206 2.506359 4.858503 -0.001651 2.812057 -0.740970 0.246307 -0.472487 2.026727 -3.043586 1.441381 -1.276367 0.503220 4.797176 1.466781 1.022788 0.341464 -5.051504 1.924011 -0.528811 1.720734 3.632899 0.646172 -0.226812 -1.339295 0.962630 0.424979 2.082774 1.473127 1.545800 -0.626444 0.153566 0.492733 -0.957230 2.188547 -0.143120 3.651266 -0.113561 0.011600 -0.343401 -1.942292 -2.604888 -0.047482 0.704366 -2.663007 0.930375 0.640302 -0.860768 -0.434065 -0.495801 -0.956344 -2.891430 -0.091735 -1.620271 -0.919383 0.905782 -1.499887 1.403100 -2.270259 -0.216281 -0.202920 -2.541122 1.776629 1.096716 1.494687 1.734172 -3.889006 1.313228 0.603442 -0.189438 1.023348 0.300847 -1.827354 -0.193395 -1.846514 -2.978268 2.063146 3.270329 0.049096 -0.271852 -2.503783 1.329071 -0.401772 0.240709 0.232964 2.480379 -2.881473 0.088424 0.228754 -1.509197 -0.427305 -3.636468 0.117294 -2.781697 0.885286 1.952980 -1.500643 -0.912616 -2.376126 0.915391 -1.849941 -2.556956 1.911913 -1.111478 -0.421876 3.027007 -2.606934 -0.130496 -2.942574 -0.168971 1.964245 1.717142 0.093212 1.429246 2.375831 2.057825 2.058144 -2.725800 -0.921709 2.404844 2.726441 0.014193 0.460793 -2.059836 -1.328067 1.030782 -2.105535 -4.191098 -2.793903 1.350207 2.625433 -0.565977 -1.306171 0.618214 -1.499838 2.851697 4.104313 0.623571 0.543767 1.074302 -2.754581 1.506104 3.785759 -1.438896 2.331272 -1.132414 -1.643857 3.446527 -2.307933 2.216837 0.324035 1.407916 -1.074330 -2.577385 0.050685 3.039047 0.998559 2.963648 -1.806338 1.002818 0.417786 -3.138086 -5.344625 -1.420409 3.859589 1.736642 3.088381 -2.610466 -0.930680 0.386193 3.263426 1.606161 -3.022494 0.959838 -1.113038 1.110550 -6.201432 -3.935157 5.200741 5.868229 2.414947 0.632638 1.634810 2.175065 -2.951808 -1.126439 -1.920704 2.727372 -1.235367 -3.769691 -1.217488 0.932146 -2.846532 -1.796620 -1.099139 0.664382 1.552169 -0.667654 1.591326 1.431722 -0.867446 -0.720278 2.639979 -1.517191 -3.171933 -1.084931 0.265690 1.042306 1.030259 -1.074301 0.896681 1.667530 -2.505281 -0.187208 1.858896 1.025198 0.402098 3.570175 3.846328 -1.143264 -0.625179 -1.176077 -1.246083 3.122637 -1.979405 -0.391311 -0.261889 0.457715 0.839774 1.119476 2.059458 -1.091638 -2.375533 -2.442570 0.352197 0.275267 2.103367 -1.510904 -4.909339 -3.713333 1.055477 0.620279 4.132003 0.754941 5.947947 -0.958707 1.434219 -5.152075 0.223095 1.563799 0.058821 2.295868 0.518032 -1.440841 -2.133986 -1.023414 -3.073770 -0.749963 -0.227454 -1.896384 -1.485046 -2.558881 3.394073 -1.528714 0.145288 0.448909 0.321468 3.797734 2.380709 -0.905464 -3.493703 1.413284 1.336031 0.447675 -1.373097 3.180034 0.444674 5.332331 -1.880081 1.095714 -0.668833 2.355300 -1.403539 -2.566340 -0.515453 3.543862 3.873155 1.267740 -1.199881 -1.098073 -0.442220 1.536038 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.137619 0.173674 0.870598 0.661777 -0.498002 -1.225833 -0.210211 -1.307776 0.650451 0.291950 0.982750 0.080323 0.826462 -0.473116 0.063357 0.103669 0.660796 0.145081 0.003880 -0.380296 -0.381460 1.226276 0.082159 -0.325184 0.184570 -0.423082 0.589767 0.510708 0.456948 0.754160 0.219445 0.062764 -0.145279 0.284203 -0.372983 0.163939 -0.231061 0.435766 -0.536565 -0.261016 0.140869 -0.476810 0.836226 0.100580 0.563200 0.034281 0.617601 0.018311 -0.476192 -0.407031 -0.486131 0.529164 -0.423057 0.453602 -0.427726 -0.345878 0.471459 0.109444 0.089231 -0.669322 0.099221 -0.258185 -0.645980 -0.123103 -0.614082 0.119374 -0.353432 -0.621132 -0.080156 -0.287386 0.413451 0.061600 -0.120918 -0.275321 -1.302130 -0.012599 0.272052 0.095290 0.526537 0.442706 -0.047900 -0.416559 -0.679782 -0.620590 0.970918 0.200885 0.324418 0.517830 -0.844196 -0.257295 -0.044378 0.162171 0.405675 0.331408 -0.425483 0.270136 0.114558 -0.255207 -0.291522 -0.922322 0.256788 -0.439697 0.150586 0.141098 0.023339 0.116824 -0.305041 0.193114 -0.434950 -0.786045 0.230881 -0.525420 -0.342844 0.791163 -0.324767 -0.365787 -0.334790 -0.004965 0.127089 0.521356 0.267997 0.215258 0.575179 0.417216 0.398923 -0.729888 -0.186269 0.371218 0.471329 0.363975 0.114923 -0.289354 -0.468929 0.289807 -0.675267 -1.297757 -0.466252 0.693232 0.733711 -0.143733 -0.515370 0.566787 -0.387771 0.413747 0.760210 0.257146 0.273161 0.218668 -0.619142 0.295602 0.869786 -0.391518 0.559158 -0.168631 -0.511266 0.815511 -0.172198 0.191607 -0.014165 -0.282048 -0.092830 -0.253110 0.172159 0.814666 0.171920 0.216094 -0.059496 0.297314 -0.565748 -0.903707 -1.284660 -0.095002 1.072780 0.608126 1.183970 -0.681251 -0.292719 0.150871 0.464121 -0.285634 -0.518815 0.274009 -0.524659 0.506387 -1.759261 -1.064344 1.435815 0.692865 0.607207 0.009893 0.393859 0.405183 -0.362779 -0.467758 -0.466360 0.388794 0.269589 -0.919535 -0.258014 0.093943 -1.002050 -0.200991 0.018032 0.167469 0.017382 -0.227504 0.569560 -0.668710 -0.357444 -0.365005 0.434271 -0.500997 -0.125815 -0.124300 -0.098936 0.076841 0.310437 -0.137469 -0.003879 0.016987 -0.554496 -0.101685 -0.099508 0.414743 0.243673 1.258315 1.294555 -0.417598 0.416217 -0.100618 -0.611511 1.288260 -0.542244 0.119569 -0.045930 0.709444 0.319110 0.322181 0.834241 -0.338341 -0.365032 -0.914722 -0.283480 0.626505 0.427704 -0.547154 -0.449980 -1.253941 0.008973 -0.133144 1.272001 -0.238912 1.319379 -0.597459 0.319841 -1.310822 0.164240 0.274942 -0.168534 0.585709 0.226195 -0.579847 -0.493047 -0.262625 -0.733557 -0.290592 -0.082644 -0.398802 -0.446724 -0.368500 0.142794 -0.762488 0.107951 0.397713 -0.294093 0.678030 -0.197862 0.002667 -0.438109 0.254450 0.589686 0.110939 -0.544755 0.622229 0.151328 1.735266 0.041410 0.592820 -0.431107 0.509833 -0.358300 -0.812891 -0.420417 0.914403 0.982835 0.148206 0.209959 0.273920 0.093314 0.644391 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = 0.110308 0.333594 0.631393 0.631438 -0.546755 -1.031016 -0.115884 -1.003191 0.409539 0.132611 0.576076 0.044342 0.587941 -0.283453 -0.064462 0.039469 0.490572 0.388322 -0.023163 -0.316893 -0.599640 0.827960 -0.094071 -0.303150 0.165171 -0.133816 0.698698 0.455323 0.409245 0.569945 0.176409 0.050012 -0.159724 0.265132 -0.288664 -0.089418 -0.356308 0.396641 -0.484955 -0.115311 0.147464 -0.521950 0.709746 0.147375 0.212490 0.176585 0.422041 0.087090 -0.341611 -0.188215 -0.394491 0.237953 -0.266440 0.410168 -0.455607 -0.341781 0.426897 0.202697 0.209622 -0.273834 0.087827 -0.323885 -0.508940 -0.106160 -0.632588 -0.011423 -0.418559 -0.703776 -0.092776 -0.127356 0.256063 0.020243 -0.180704 -0.355775 -1.099564 -0.068364 0.275957 0.136158 0.483432 0.407644 0.104976 -0.334344 -0.668894 -0.493845 0.683367 0.074815 0.316087 0.418197 -0.602849 -0.435593 0.085536 0.200573 0.432935 0.272454 -0.176917 0.318123 -0.284653 -0.131523 -0.281185 -0.992207 0.218130 -0.267351 0.205480 -0.064158 -0.106216 0.129911 0.017171 0.129551 -0.114103 -0.645144 0.045910 -0.487733 -0.159671 0.699934 -0.011371 -0.461501 -0.203288 -0.099186 0.036700 0.344825 0.288125 0.025098 0.469001 0.276394 0.313346 -0.573470 -0.186869 0.209904 0.059935 0.336358 0.158123 -0.164562 -0.384317 0.197476 -0.488315 -1.037361 -0.191568 0.427175 0.473534 -0.302820 -0.228745 0.439663 -0.424948 0.094176 0.492266 0.292065 0.296029 0.095862 -0.367932 0.187318 0.594152 -0.248351 0.321161 -0.183181 -0.472303 0.636493 0.076197 0.081819 -0.138785 -0.328494 -0.064934 -0.118170 0.197529 0.642990 -0.052266 -0.015384 0.222635 0.164554 -0.630897 -0.640256 -0.791443 0.105774 0.950455 0.523802 0.883152 -0.578265 -0.077836 0.216056 0.283138 -0.164423 -0.260281 0.246687 -0.330520 0.430270 -1.319776 -0.823493 0.890153 0.240618 0.321073 -0.136239 0.110807 0.203150 -0.199658 -0.547788 -0.461638 0.196983 0.202319 -0.656062 -0.303137 0.091405 -0.757771 0.078388 0.199998 0.167165 0.255216 -0.299509 0.353508 -0.770440 -0.274081 -0.555035 0.421161 -0.380640 0.085729 0.028557 -0.114404 -0.017440 0.243468 0.024740 -0.123692 -0.139239 -0.252833 -0.015577 -0.176024 0.275816 -0.002064 1.031180 0.900503 -0.379383 0.162108 0.034037 -0.463714 1.217555 -0.447882 0.197206 0.050509 0.690086 0.122053 0.296487 0.762386 -0.284614 -0.286297 -0.746961 -0.386189 0.490047 0.226111 -0.481668 -0.101121 -1.029085 0.002566 -0.242578 0.996310 -0.170381 0.928592 -0.423533 0.257432 -0.766505 0.132054 0.181598 -0.187492 0.611056 0.206986 -0.507769 -0.107470 -0.229911 -0.567815 -0.123375 -0.074940 -0.217976 -0.376130 0.030813 -0.293754 -0.426177 0.081812 0.330861 -0.397978 0.382413 -0.414282 0.055883 -0.230911 0.101741 0.626240 0.021039 -0.439424 0.459071 0.147484 1.289155 0.257078 0.456347 -0.294216 0.178855 -0.169789 -0.657311 -0.432999 0.709020 0.563257 0.197099 0.217790 0.313235 0.191011 0.480912 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.042060 0.344728 0.839529 0.806161 -0.677208 -1.285460 -0.167754 -1.109592 0.576409 0.177112 0.652978 0.176176 0.719251 -0.382591 -0.104216 -0.042051 0.619177 0.388072 -0.105033 -0.452524 -0.602734 1.058308 0.030577 -0.571512 0.221741 -0.374401 0.895348 0.570763 0.485126 0.859311 0.214550 0.109038 -0.231627 0.401038 -0.393148 -0.118064 -0.401187 0.424679 -0.590427 -0.129731 0.295248 -0.378850 0.938548 0.260124 0.354196 0.307463 0.421261 0.135338 -0.428275 -0.301423 -0.410023 0.217744 -0.326205 0.550659 -0.574127 -0.186319 0.513047 0.099454 0.257262 -0.509411 0.165689 -0.239088 -0.606131 -0.126270 -0.802711 -0.038550 -0.446657 -0.857984 -0.146654 -0.332456 0.326361 0.001471 -0.244466 -0.585600 -1.309909 -0.097218 0.269372 0.215437 0.646842 0.502857 -0.123282 -0.429921 -0.800826 -0.603442 0.671601 0.091065 0.309306 0.618758 -0.629424 -0.668092 0.086205 0.218816 0.488274 0.354496 -0.254983 0.328595 -0.215054 -0.172378 -0.283448 -0.980669 0.299578 -0.272640 0.232642 -0.045647 -0.132742 0.121656 -0.002108 0.112415 -0.167685 -0.628959 0.145098 -0.588549 -0.186147 0.874336 -0.011837 -0.571589 -0.306113 -0.149268 0.093743 0.587657 0.229397 -0.025475 0.591733 0.376792 0.348335 -0.720611 -0.154774 0.272758 0.118308 0.384815 0.265807 -0.226778 -0.469511 0.231459 -0.564264 -1.231736 -0.193699 0.456398 0.603010 -0.315418 -0.378197 0.593833 -0.566769 0.170458 0.603567 0.345733 0.398881 0.060991 -0.539794 0.268273 0.895479 -0.271177 0.384694 -0.297356 -0.674967 0.901822 0.025016 0.194252 -0.205874 -0.481748 -0.095362 -0.098662 0.355455 0.800496 -0.111181 0.014246 0.307552 0.192519 -0.621320 -0.792646 -1.047304 0.044004 1.081498 0.739692 1.245735 -0.731765 -0.002127 0.071066 0.374345 -0.168104 -0.277111 0.286191 -0.376646 0.499361 -1.746935 -0.990124 1.220390 0.501418 0.433203 -0.124711 0.207657 0.203088 -0.014968 -0.635671 -0.483394 0.197162 0.290075 -0.570782 -0.203733 0.119641 -0.917503 -0.034764 0.249189 0.208397 0.375540 -0.499696 0.339902 -0.939757 -0.372831 -0.804629 0.405777 -0.513742 0.082293 0.097975 -0.117873 -0.084287 0.264390 0.091083 -0.199375 -0.146223 -0.237610 -0.020496 -0.201612 0.400572 0.043553 1.038623 1.080272 -0.473967 0.199087 0.092509 -0.540289 1.674364 -0.596322 0.268707 0.111090 0.882836 0.266185 0.342781 0.797398 -0.349563 -0.111352 -0.882177 -0.287505 0.624696 0.283550 -0.849185 -0.208782 -1.251368 0.009163 -0.331293 1.184042 -0.247213 1.232930 -0.504650 0.280587 -1.057517 0.168010 0.347748 -0.149342 0.661793 0.330339 -0.666456 -0.304471 -0.266477 -0.724231 0.055079 -0.101105 -0.288537 -0.459863 0.125052 -0.283429 -0.561582 0.177011 0.598267 -0.568129 0.473938 -0.543363 0.101659 -0.305841 -0.028501 0.593683 0.075751 -0.498038 0.547236 0.119435 1.390658 0.275700 0.663736 -0.324698 0.375803 -0.254320 -0.901025 -0.573437 0.903100 0.605564 0.196863 0.369203 0.309804 0.257743 0.606411 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = -1.834645 0.906467 5.316503 1.075682 -1.755633 -2.915474 -1.301083 -5.877391 2.767093 1.918270 4.884620 -0.504366 2.749922 -0.953212 0.162121 0.635640 2.947328 -1.420857 0.596203 -1.579061 0.281608 3.804778 0.901667 -0.278938 1.256276 -3.622865 1.381937 0.411473 1.598527 2.274332 1.319740 0.556425 -0.752235 1.346559 0.345414 2.033474 1.352232 1.580312 -1.734402 -0.415286 -0.069969 -1.601619 2.002396 0.657751 3.873634 -0.005880 1.676917 -0.449076 -2.691100 -1.648449 -1.730156 3.196450 -2.512047 0.993025 0.088551 -0.930689 0.286643 -1.182778 -0.431134 -3.403874 -0.335003 -1.343999 -1.692003 0.281011 -1.722957 1.481794 -1.097553 -0.604546 -0.604448 -1.243720 1.835503 0.820402 0.815985 1.766315 -3.974962 0.992744 1.062631 0.306385 1.958712 0.365320 -0.490277 -0.765347 -1.687462 -3.108868 3.839272 1.988979 1.130884 0.727021 -2.539861 0.945198 -1.058287 -0.219873 0.183618 2.487887 -3.743687 0.433856 0.953490 -1.956880 -1.565858 -3.354057 0.420349 -2.761197 0.592033 1.514911 -1.104288 0.331319 -3.072367 1.226884 -1.906776 -2.441667 1.518005 -1.758399 -1.209315 3.060200 -2.683477 -0.659297 -2.122285 0.189265 1.348021 2.023754 -0.105627 1.871053 2.345556 2.176875 2.049092 -2.399875 -0.537905 1.753964 2.648178 0.910812 0.892824 -2.169737 -1.829476 0.892621 -2.173944 -4.689052 -2.542783 2.103981 3.234200 0.497588 -2.770854 0.340063 -1.125701 2.907279 3.251351 1.005709 0.339324 1.232905 -2.742717 0.982534 3.868224 -2.118763 2.878112 -0.322464 -0.303121 2.209625 -2.069834 1.640175 0.303936 0.214074 -0.371995 -2.202258 -1.192685 3.316351 1.928299 1.282794 -1.366536 1.152862 -0.778337 -4.126229 -5.833445 -1.662102 3.749620 0.710801 3.316181 -2.734776 -1.855536 -0.282594 3.265632 -0.230087 -2.632267 0.766067 -1.995923 1.643484 -4.906011 -4.413496 5.765828 5.014325 2.177590 0.507507 2.053528 1.777479 -4.021109 -1.731800 -1.426139 2.244895 -0.700793 -3.863045 -1.860787 0.613841 -3.705264 -1.715089 -0.952422 0.851164 0.310958 0.506493 2.878764 1.208664 -0.933319 -0.399455 1.195003 -1.415332 -3.048315 -0.790416 0.217040 1.600030 1.398446 -1.715947 0.127956 1.577767 -3.325915 -1.038564 1.066943 1.944248 1.060420 4.808131 4.794116 -0.440124 1.407641 -0.864568 -2.437345 3.107897 -1.185506 0.273336 -0.531428 0.310176 0.850552 1.106164 2.825662 -1.350742 -2.806714 -3.339513 -0.566411 0.382294 2.447954 -1.067606 -4.004421 -3.649175 0.566565 1.217785 3.713413 -0.377107 5.852267 -1.109085 0.957926 -5.930642 0.340946 2.244914 -0.700543 1.947740 1.142550 -2.391636 -3.093722 -0.897720 -3.159798 -1.849994 -0.286642 -1.231992 -1.937631 -2.505625 3.811969 -2.501391 0.224389 1.042408 0.974038 3.667381 1.993872 -0.417945 -2.343629 1.290230 2.708182 0.575022 -2.005641 3.077119 0.605020 7.148660 -1.365017 1.331186 -1.439293 1.236683 -0.620319 -1.996934 -1.098775 4.184508 4.642003 1.242861 -0.680895 -0.605251 -0.839334 2.877587 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = 0.032927 0.279881 0.710585 0.596872 -0.461948 -0.996480 -0.125619 -0.883029 0.472492 0.152581 0.528833 0.120186 0.599254 -0.309199 -0.082703 -0.054071 0.484088 0.315611 -0.072712 -0.339436 -0.387597 0.823742 -0.000874 -0.457994 0.183249 -0.353543 0.682132 0.449332 0.392142 0.713028 0.153523 0.089593 -0.182765 0.311245 -0.337676 -0.109644 -0.240922 0.326466 -0.480921 -0.118113 0.188878 -0.212640 0.702318 0.210051 0.296557 0.268990 0.254888 0.103838 -0.291811 -0.245859 -0.274446 0.166126 -0.225386 0.447620 -0.444843 -0.138566 0.376898 0.076952 0.216501 -0.456504 0.179866 -0.127951 -0.440582 -0.103541 -0.624778 -0.035427 -0.308900 -0.669236 -0.116556 -0.306001 0.251754 -0.005920 -0.163727 -0.468693 -1.037236 -0.063235 0.209681 0.164064 0.512603 0.372614 -0.104919 -0.344863 -0.602708 -0.481797 0.530006 0.130481 0.239169 0.527538 -0.494180 -0.541968 0.070006 0.153682 0.384480 0.288528 -0.176505 0.250926 -0.169134 -0.117627 -0.160223 -0.753795 0.236530 -0.220278 0.165145 -0.024454 -0.051393 0.116255 0.027503 0.145285 -0.118839 -0.457139 0.182080 -0.443062 -0.168762 0.701121 -0.007018 -0.457674 -0.248649 -0.119758 0.071880 0.497751 0.136895 -0.012311 0.416413 0.289550 0.283514 -0.572618 -0.116334 0.269572 0.105234 0.305677 0.199442 -0.232029 -0.347682 0.185432 -0.484303 -0.981196 -0.163047 0.319373 0.489921 -0.279833 -0.336599 0.495017 -0.460267 0.136214 0.475745 0.260308 0.310969 0.055579 -0.441786 0.199931 0.713606 -0.230988 0.303059 -0.224576 -0.523705 0.625069 0.046312 0.168474 -0.195844 -0.380384 -0.021939 -0.079742 0.300883 0.647666 -0.059896 0.060706 0.195835 0.153793 -0.517084 -0.636567 -0.840454 -0.016361 0.833350 0.533604 0.996250 -0.552367 -0.051299 0.008037 0.359789 -0.168062 -0.195726 0.224127 -0.310946 0.392922 -1.358827 -0.781440 0.972925 0.456565 0.380807 -0.122627 0.170559 0.155156 0.006405 -0.482169 -0.340484 0.125186 0.215309 -0.478584 -0.182815 0.076543 -0.718852 -0.048255 0.199611 0.150363 0.261986 -0.331800 0.279093 -0.700919 -0.292080 -0.634412 0.308815 -0.408397 0.081366 0.069328 -0.074778 -0.073419 0.215133 0.005627 -0.167745 -0.024515 -0.193278 -0.012828 -0.149807 0.306838 0.044884 0.800336 0.813035 -0.341204 0.168901 0.075430 -0.449587 1.347343 -0.461830 0.202810 0.082435 0.667775 0.215039 0.280007 0.585132 -0.281986 -0.077386 -0.730413 -0.253826 0.491890 0.227629 -0.624813 -0.212915 -0.940464 0.013639 -0.286196 0.936308 -0.179853 0.999591 -0.391635 0.231615 -0.834784 0.133900 0.294394 -0.139730 0.492127 0.273520 -0.524583 -0.348985 -0.187380 -0.586465 -0.027656 -0.104032 -0.278027 -0.343461 0.061683 -0.173460 -0.435023 0.152549 0.495752 -0.394324 0.386889 -0.449163 0.081637 -0.267197 -0.013103 0.423485 0.045140 -0.411128 0.380650 0.106103 1.091704 0.179977 0.538697 -0.273916 0.315145 -0.224614 -0.707451 -0.457426 0.722777 0.487657 0.178676 0.284303 0.231649 0.171595 0.484698 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.141258 0.307773 0.245847 0.290721 -0.349742 -0.607703 -0.034844 -0.400660 0.016953 -0.041853 0.166396 -0.054360 0.224273 -0.016770 -0.040248 0.014727 0.194953 0.320323 0.001966 -0.173067 -0.508511 0.136393 -0.110579 -0.135056 0.107752 0.143780 0.445518 0.260192 0.091658 0.251842 0.084433 0.008355 -0.135945 0.156270 -0.114083 -0.132950 -0.172772 0.228218 -0.203823 0.089337 0.025121 -0.310070 0.319528 0.104830 -0.041511 0.361572 0.109176 0.168969 -0.188508 -0.036339 -0.148456 -0.016624 -0.134445 0.201949 -0.292676 -0.188102 0.261174 0.132980 0.154821 -0.069941 0.030737 -0.263045 -0.232206 -0.023514 -0.385967 -0.058746 -0.246289 -0.503449 -0.060354 0.059604 0.096956 -0.004755 -0.146133 -0.092661 -0.422277 -0.090468 0.178283 0.156242 0.266706 0.069090 0.132523 -0.125826 -0.378336 -0.231377 0.237647 -0.099855 0.294485 0.200802 -0.211417 -0.263323 0.127637 0.114104 0.294112 0.113061 0.142283 0.174847 -0.293515 -0.009823 -0.250592 -0.650562 0.130782 -0.027198 0.164660 -0.099771 -0.097055 0.009469 0.004719 0.093640 0.009490 -0.328131 -0.023618 -0.310551 -0.012180 0.298247 0.090185 -0.247030 -0.015355 -0.157389 0.043188 0.159914 0.219040 -0.095956 0.142063 0.139423 0.083389 -0.241054 -0.175501 -0.079414 -0.094151 0.207708 0.170096 -0.073397 -0.219003 0.088111 -0.317613 -0.452673 0.038404 0.103885 0.155506 -0.216869 -0.087246 0.276131 -0.326782 -0.140600 0.127574 0.288756 0.157455 -0.058704 -0.113294 0.057123 0.147624 -0.116128 0.160120 -0.004454 -0.213636 0.205046 0.190797 -0.050765 -0.034105 -0.294807 -0.039384 0.047436 0.048816 0.256208 0.038097 -0.067695 0.300987 0.055890 -0.460130 -0.239468 -0.160450 0.198335 0.562771 0.144953 0.311211 -0.318318 0.030970 0.143657 0.167382 -0.123907 -0.058975 0.037049 -0.036952 0.208191 -0.483572 -0.319911 0.252653 -0.105622 0.094983 -0.132479 -0.108545 0.049054 -0.075010 -0.315112 -0.235042 -0.006517 -0.029586 -0.278173 -0.271673 0.035763 -0.329961 0.207512 0.173260 0.169259 0.206550 -0.131366 0.042498 -0.431167 -0.104370 -0.350096 0.086562 -0.148869 0.151537 0.160332 -0.091268 -0.003555 0.035595 0.059714 -0.115745 -0.115593 -0.093392 0.040169 -0.097163 0.148397 -0.040983 0.633089 0.244331 -0.193346 -0.045648 0.072890 -0.223176 0.604820 -0.157581 0.231008 0.064239 0.493372 0.011279 0.094051 0.472512 -0.139706 -0.190516 -0.371285 -0.349382 0.296169 0.048821 -0.139420 0.082722 -0.531075 0.033544 -0.154836 0.506778 -0.133829 0.296590 -0.060076 0.139089 -0.106325 0.074764 0.009819 -0.180507 0.260256 0.121186 -0.231991 0.030219 -0.123663 -0.308095 -0.102497 -0.051232 0.031910 -0.122180 0.262050 -0.444037 -0.037921 -0.022873 0.117128 -0.230326 0.027484 -0.226784 0.053462 0.004933 -0.030726 0.474564 -0.081607 -0.240649 0.218279 0.161879 0.604257 0.327778 0.190205 -0.074266 -0.127741 0.084175 -0.185890 -0.256251 0.321177 0.153427 0.120015 0.183991 0.254934 0.203105 0.186794 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.540570 0.334195 1.935908 1.361343 -1.342823 -1.657498 -0.523129 -1.876573 1.045948 0.465506 1.524938 0.178107 1.021773 -0.590372 -0.092477 -0.504059 1.031671 0.012119 -0.184134 -0.768294 -0.527820 1.630523 0.487196 -1.256285 0.380908 -1.108241 1.353247 0.737244 0.605201 1.413287 0.250173 0.028658 -0.571759 0.780560 -0.591197 -0.029289 -0.054234 0.639455 -0.854913 -0.313104 0.670027 -0.228015 1.457101 -0.015045 1.041351 0.408520 0.544853 0.057661 -1.353520 -0.690839 -0.309337 0.535934 -0.816855 0.980744 -0.172747 -0.009085 0.479546 -0.407229 0.042089 -1.552342 0.367128 -0.293723 -0.639020 -0.101912 -1.144457 0.078571 -0.385640 -1.139937 0.224832 -0.931930 0.580691 0.049386 -0.016792 -0.571614 -1.519015 0.266396 0.578612 0.430685 0.873546 0.682251 -0.181121 -0.568736 -0.961487 -0.977260 0.627046 0.264289 0.449953 0.677467 -0.779873 -0.510484 0.500383 0.167407 0.313327 0.816700 -0.822835 0.353268 -0.318638 -0.478071 -0.571509 -1.378498 0.260753 -0.768664 0.532201 0.705812 -0.871072 0.235297 -0.233354 0.456263 -0.367138 -1.113794 0.341669 -0.820394 -0.038775 1.451418 -0.526811 -0.849942 -0.593716 -0.143357 0.308436 0.990198 -0.002389 0.264650 1.086754 0.890894 0.810152 -1.376928 -0.187527 0.499915 0.679164 0.638026 0.602899 -0.695227 -0.668886 0.313623 -0.982875 -2.092160 -0.548405 0.493646 1.364905 -0.107914 -1.181994 0.720033 -0.953591 1.026630 1.025957 0.741280 0.491571 0.193114 -1.149590 0.503138 1.578044 -0.543112 0.818700 -0.376281 -1.183759 1.364104 -0.066170 0.657367 -0.119782 -0.360049 0.018500 -0.772102 0.328997 1.462951 0.195821 0.430052 0.062438 0.333574 -0.612586 -1.795935 -2.133019 -0.096555 1.541292 1.057510 2.185874 -1.376884 -0.495809 -0.152029 1.156834 -0.255111 -0.788557 0.361888 -0.616005 0.835260 -2.801230 -1.910108 2.287612 1.754061 0.682705 0.058141 0.874565 0.158885 -0.490451 -0.837586 -0.891552 0.607496 0.363832 -0.701047 -0.239368 0.304931 -1.503224 -0.373689 0.345409 0.388247 0.732894 -0.922345 0.193199 -0.530982 -0.755117 -1.035015 0.735030 -0.963574 -0.294423 0.081390 -0.030908 0.262404 0.620098 -0.202183 -0.570399 -0.116270 -0.756963 -0.177273 -0.021186 0.979435 0.220154 1.716075 1.789769 -0.619388 0.511586 0.125740 -0.970607 2.926841 -1.134893 0.232970 0.086012 1.176104 0.450641 0.522875 1.268443 -0.653776 -0.269960 -1.500999 -0.232313 0.507787 0.752191 -2.063702 -1.073336 -1.973710 0.119392 -0.189145 1.597558 -0.203309 2.536555 -0.616165 0.315345 -2.458461 0.044910 0.968909 -0.085002 1.094679 0.622053 -1.138804 -1.632925 -0.343480 -1.272565 0.308779 -0.238414 -0.627305 -0.770821 -0.200409 0.524038 -0.682639 0.376112 1.228180 -0.584986 1.127004 -0.123631 -0.076520 -0.535749 -0.295887 0.596733 0.313100 -0.870670 1.414426 0.254219 2.764287 0.072268 0.912530 -0.686017 0.716022 -0.371840 -1.333696 -0.846742 1.575888 1.328133 0.583677 0.238604 0.237747 -0.286794 1.096273 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.102845 0.249062 0.747821 0.258657 -0.372361 -0.589189 -0.110810 -0.792895 0.412206 0.243600 0.512235 0.111397 0.558386 -0.245760 -0.096053 -0.218759 0.438715 0.140237 0.075383 -0.240765 -0.076174 0.590726 -0.053342 -0.167179 0.134053 -0.429991 0.574229 0.155661 0.403461 0.680909 0.134372 -0.001628 -0.355546 0.212589 -0.054853 -0.085919 0.062565 0.281560 -0.400118 -0.084061 0.035182 -0.245748 0.488826 0.137185 0.324152 0.091264 -0.129939 0.050277 -0.239264 -0.272417 -0.020288 -0.054320 -0.224528 0.373258 -0.071198 -0.236647 0.097487 0.210870 0.210803 -0.424639 0.199293 -0.292462 -0.105777 -0.000730 -0.453140 -0.012146 -0.430885 -0.433054 -0.133515 -0.467624 0.139278 0.034125 0.149909 -0.112441 -0.871645 0.045200 0.180329 0.090913 0.416183 0.365266 -0.095450 -0.288358 -0.406700 -0.468634 0.267935 0.337110 0.077893 0.326237 -0.504737 -0.264551 0.150980 0.115006 0.264257 0.282919 -0.262175 0.178917 -0.371657 -0.085303 0.094557 -0.878795 0.119261 -0.260190 0.126188 0.017705 -0.187068 -0.009142 -0.081289 0.196857 -0.036543 -0.300423 0.373293 -0.292882 -0.173190 0.626229 -0.083231 -0.356286 -0.351151 -0.086030 0.207553 0.331719 0.014663 0.059069 0.125647 0.227523 0.390220 -0.508378 -0.092605 0.436901 0.079255 0.142991 0.104075 -0.205048 -0.191716 0.218340 -0.470520 -0.790257 -0.211935 0.144361 0.425176 -0.218548 -0.142825 0.115829 -0.477601 0.132627 0.455004 0.250252 0.237882 0.115644 -0.379419 0.112165 0.436513 -0.203626 0.243217 -0.046561 -0.331260 0.350155 0.021011 0.252559 -0.316234 -0.111759 0.046758 -0.167031 0.130394 0.572550 -0.012535 0.232285 -0.092073 0.102119 -0.415597 -0.570284 -0.713386 -0.104129 0.829213 0.410090 0.526133 -0.427596 -0.064594 0.058978 0.476876 0.055525 -0.273731 0.241897 -0.169214 0.319759 -1.063662 -0.638219 0.732527 0.627440 0.268789 -0.174183 -0.012494 0.148043 -0.245231 -0.435511 -0.327625 0.086328 -0.150004 -0.582689 -0.319975 0.140399 -0.527957 -0.029215 0.230546 0.086121 0.409913 -0.191401 0.302637 -0.165382 -0.047315 -0.517995 0.453209 -0.227362 -0.124665 -0.004635 0.006768 0.104499 0.216651 -0.085377 -0.138165 0.216204 -0.180791 -0.032184 -0.042834 0.181575 -0.063020 0.663941 0.469706 -0.190716 -0.174996 0.015776 -0.416045 1.102047 -0.436002 0.131317 0.056404 0.322627 0.128584 0.280244 0.443785 -0.275663 -0.204939 -0.609875 -0.406486 0.186535 0.288608 -0.455728 -0.538167 -0.637717 0.227370 -0.245445 0.624474 -0.023517 0.917624 -0.263201 0.198095 -0.562888 0.060339 0.354512 -0.149216 0.530824 0.196668 -0.381325 -0.284877 -0.165238 -0.559644 0.011007 -0.070291 -0.212443 -0.169708 -0.009624 0.098567 -0.161229 0.093726 0.206324 -0.232244 0.534078 -0.160632 0.011123 -0.391053 0.100854 0.247398 0.005889 -0.326796 0.421438 0.168937 0.793698 0.025396 0.233729 -0.141427 0.220534 -0.209189 -0.561188 -0.353940 0.621670 0.475977 0.373520 -0.023701 0.086581 0.011645 0.321651 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -6.233650 0.222783 13.849517 6.431886 -5.658786 -8.310381 -3.674687 -15.635840 9.714020 6.076241 14.029041 1.623506 9.591185 -5.390283 -0.088978 -2.366474 8.379965 -3.706898 1.803750 -3.759947 1.341642 16.883364 3.743908 -2.908793 1.141835 -10.696855 6.641949 1.862622 6.980828 10.272717 2.416330 0.730259 -2.777461 3.289840 -1.622489 3.125412 -0.205377 5.252131 -5.021798 -4.268550 2.748917 -5.389702 8.853457 0.354700 9.623998 -3.867841 5.017432 -2.696829 -7.132611 -6.285424 -4.729681 5.429344 -7.113988 4.381157 -0.005999 -3.903622 2.483199 0.569804 -0.654540 -11.048292 1.054783 -3.867899 -4.399976 -0.128539 -5.786155 3.467761 -5.736690 -2.721109 -0.680245 -6.922100 4.989065 2.593157 3.875263 -0.104018 -14.933727 3.456748 2.251821 -0.052109 5.181569 6.672509 -3.043780 -3.413851 -5.824352 -8.475377 8.960143 5.797369 0.499698 3.006059 -9.147638 0.748888 -0.670709 1.504133 0.554444 6.035499 -9.900981 3.294513 1.006267 -4.031821 -0.369129 -9.923630 0.604114 -8.621850 1.223841 5.685146 -3.786433 0.262913 -6.291370 1.746009 -5.260860 -8.948701 4.987568 -4.893001 -4.442415 9.522796 -7.391340 -2.613969 -6.528340 1.884036 4.159287 5.609988 -0.264368 5.660705 5.983604 5.388130 6.729079 -9.135888 -0.100857 8.184853 7.440655 1.851861 0.657309 -3.607622 -4.552144 2.847403 -5.489284 -14.641214 -7.610460 8.336203 9.555664 0.796206 -6.424543 2.347941 -3.968348 9.184665 11.703010 2.478363 2.689367 4.637847 -8.306196 4.000620 11.638950 -4.804082 6.786066 -1.824916 -5.820777 11.956932 -5.972452 6.287870 -1.611238 2.363053 -0.678714 -7.336728 0.198919 10.857804 1.856040 5.426152 -4.101744 2.612206 -0.819036 -12.962689 -18.131658 -4.019517 12.389689 8.315105 12.443169 -7.879230 -3.464666 2.131765 6.971345 1.154662 -8.579123 3.693618 -5.207290 5.280779 -23.140619 -14.393140 17.957154 14.344786 5.378221 1.730115 5.666046 5.646511 -6.579877 -5.432912 -6.452021 7.400133 -0.143652 -9.770026 -2.398023 2.481158 -10.733606 -5.349516 -0.274956 0.619331 3.274204 -4.345659 6.617655 -0.725389 -3.105244 -3.285703 7.942320 -6.041740 -7.810271 -3.692788 0.198962 3.360183 4.576910 -2.058856 0.651526 2.627163 -7.178240 -2.973900 0.705020 4.202080 1.891960 11.704056 15.982659 -3.697077 1.131372 -1.587556 -6.582445 15.693055 -7.843525 -1.371700 -1.046161 3.449838 3.852653 4.843558 7.719090 -4.189675 -5.353559 -10.177488 -0.258838 2.472366 6.901616 -10.517983 -11.682013 -12.302947 2.155438 1.297762 11.630668 -0.333661 19.727927 -6.862440 2.322462 -18.609728 0.728210 6.964218 -0.291137 9.256263 2.760224 -6.535528 -7.034152 -3.670123 -8.092394 1.585367 -0.916438 -6.532938 -5.284194 -7.184830 8.805620 -8.371121 2.429145 3.503960 -1.751310 12.057785 3.262137 -1.702763 -8.562346 3.694818 2.971598 3.214765 -5.221901 10.833948 0.158212 18.306752 -4.932101 4.354959 -5.066685 8.444571 -5.780604 -9.961663 -3.110166 12.289068 12.967310 3.678293 -1.656549 -0.548678 -2.417468 7.276248 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -0.698102 2.152073 8.165576 3.689832 -2.649309 -3.175921 -1.935421 -7.072581 3.580852 1.592906 5.248680 -1.072424 2.506351 0.016746 -0.984620 -1.097089 2.894231 -0.713870 0.587745 -1.806732 -0.240201 6.327983 1.211784 -3.069175 0.632865 -6.390345 3.523994 1.601459 3.780426 3.785501 0.310151 0.242403 -0.107590 2.637949 -2.223136 -0.921178 0.443171 2.117080 -3.127751 -0.738592 1.142192 0.239483 3.426706 -0.135155 2.931823 0.745388 2.122607 -0.896284 -3.248412 -1.135948 -2.197548 3.792087 -2.416206 2.195414 0.038167 -0.428313 0.431670 -2.106792 -0.511211 -3.650358 0.456649 0.603233 -1.471004 0.020291 -3.709226 1.245386 -1.483235 -2.273976 1.146333 -1.434707 2.207775 1.326817 1.557530 -1.190224 -5.704323 2.901046 1.537341 1.472835 1.962908 0.731853 0.368408 0.184024 -2.493578 -3.766544 2.719262 3.085726 1.176481 0.506966 -1.213941 -1.311776 0.479527 0.354347 -0.879249 4.079572 -3.310252 2.413793 -2.663828 -1.589990 -1.982456 -4.637550 -0.789492 -4.327942 1.660395 2.709607 -2.504538 1.584559 -0.109175 1.666011 -0.019120 -4.240016 0.585081 -1.848230 -0.312026 5.292432 -2.309233 -2.195290 -1.880593 0.257403 0.138312 2.964290 -1.206734 2.211551 3.821491 2.944911 2.440059 -4.072426 -0.036726 2.147751 1.716609 2.113774 2.588190 -3.337550 -2.307504 -0.485071 -1.129306 -7.183710 -1.316013 1.692870 3.899804 -0.935210 -3.755562 1.167235 -2.456375 4.953342 4.053535 1.790741 1.431524 0.799886 -2.929975 2.184304 6.515585 -2.508953 3.027197 -2.812444 -3.137110 4.138104 -1.412168 3.597267 -1.074778 0.910451 0.766904 -4.342422 0.220361 5.582137 0.590072 1.503059 1.213389 -0.041368 -0.159902 -6.433618 -6.833540 -1.086411 3.572561 1.129801 6.825691 -3.705034 -2.882455 0.010263 3.889477 -0.124915 -1.987064 1.265580 -2.353993 2.291661 -8.233826 -7.320288 6.458993 6.581267 0.870204 0.124024 3.484867 1.385514 -2.716253 -3.350501 -2.430810 3.282808 0.246117 -3.104398 -1.825419 0.893061 -4.193589 -1.135000 0.593007 0.879664 2.814393 -1.787945 0.705749 -0.296638 -4.004421 -3.236507 3.417298 -3.870820 -2.508379 -0.267110 0.333776 0.595885 2.561880 -1.748580 -1.757168 1.530468 -2.804673 -0.969377 0.519103 2.532872 -0.105838 4.685041 6.176227 -0.181786 2.465475 1.166207 -2.769184 8.829033 -3.155555 -0.419735 0.026835 1.499423 -0.854600 2.797610 2.894729 -1.831492 -2.979489 -5.351946 0.856865 -0.596777 2.119565 -4.644916 -4.103740 -4.240003 -0.565967 1.327107 4.568992 0.695295 9.140765 -1.586307 0.898715 -8.721728 0.005143 3.340328 -0.117527 4.590307 2.610675 -3.917846 -4.972423 -1.081264 -2.994690 0.300937 -1.158473 -4.652898 -3.340904 -2.273186 3.127752 -2.324258 1.773976 3.922754 0.052857 3.985373 0.451328 -1.120964 -2.610304 -0.365872 2.854909 1.204455 -2.758892 4.158411 -0.426164 9.527466 -2.026853 2.651104 -3.282435 1.039438 -0.345467 -3.360333 -1.785852 6.293506 3.997384 2.260083 -0.777382 -0.942521 -2.042106 3.728626 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::difference_type __gnu_cxx::operator- > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.453609 0.576020 2.006244 1.347289 -0.226954 -0.798749 -0.308625 -1.841392 1.074671 0.443779 1.495795 -0.427022 0.942653 -0.102666 -0.411279 -0.398799 0.922496 0.039542 0.275195 -0.273221 0.538517 1.931836 0.117186 -0.928391 0.224562 -1.433395 1.016009 0.613296 0.907937 0.995245 0.289167 0.750757 0.242073 0.454417 -0.708621 -0.207067 -0.310195 0.802204 -0.740051 -0.595884 0.293454 -0.248628 0.670075 0.420123 0.911742 0.176026 0.846191 -0.485596 -0.409411 -0.243626 -1.347895 1.009592 -0.575192 0.209466 -0.883652 -0.621497 0.589612 -0.202109 -0.026264 -1.483806 0.259143 0.225950 -0.650338 -0.086583 -1.031200 0.737841 -0.136041 -0.352896 -0.188908 -0.323049 0.738480 0.448867 0.416109 -0.420059 -2.018545 0.673761 0.148443 0.107492 0.698144 0.392887 -0.067499 0.097314 -0.712334 -1.006234 1.449935 0.871406 0.367651 0.580744 -0.332570 -0.525294 -0.489888 0.022018 -0.246973 1.029343 -0.844028 0.951391 -0.070604 -0.342380 -0.165486 -0.481882 0.129291 -1.105290 0.141643 0.754196 -0.312942 0.654350 -0.105809 0.273333 -0.196804 -1.174677 0.335421 -0.925117 -0.321441 1.334835 -0.680774 -0.486522 -0.609122 0.292282 0.192546 0.974795 -0.546641 0.892596 0.518923 0.585591 0.432449 -0.855820 0.100772 1.168744 0.417182 0.477290 0.220255 -0.704588 -0.673009 -0.332418 -0.213005 -1.578572 -0.663865 0.876276 1.090299 -0.406841 -1.324199 0.946985 -0.432374 1.113000 1.320691 0.263240 0.370891 0.755595 -0.912913 0.472327 1.944189 -0.582936 0.643881 -0.518282 -0.508280 1.194965 -0.432423 0.850874 -0.243808 0.200481 0.236961 -0.910056 -0.004831 1.260844 0.282227 0.270579 0.435745 0.199122 0.018896 -1.733853 -1.981493 -0.742971 1.163634 0.449313 1.893027 -0.884479 -0.441656 0.049215 0.843540 -0.034690 -0.366967 0.249423 -0.715663 0.586506 -2.513656 -1.966205 1.571288 1.184223 0.331630 0.192925 0.780533 0.516196 -0.107170 -0.856452 -0.368800 0.976732 0.005339 -0.527630 -0.284307 -0.050968 -1.098497 -0.915261 0.087826 0.094128 0.196345 -0.278702 0.803523 -0.646123 -0.646329 -0.813200 0.322772 -1.015183 -0.898067 -0.213081 0.002000 0.102374 0.418436 -0.552573 0.123422 0.621312 -0.568609 -0.399573 -0.047870 0.143598 -0.120207 0.854090 2.012980 -0.188571 0.395169 0.191427 -0.796736 2.482495 -0.367735 -0.047577 -0.079567 0.138946 0.347711 0.660625 0.574910 -0.517808 -0.522200 -1.646738 0.341049 0.268052 0.661353 -1.255363 -0.743482 -1.144679 -0.093909 0.480918 1.254894 -0.003472 2.465871 -0.683665 -0.053016 -2.198052 0.143024 1.134940 -0.249827 0.979588 0.612690 -1.028566 -1.011575 -0.243740 -0.742544 0.088456 -0.573911 -1.441346 -1.085906 -0.522447 0.642668 -1.085307 0.509771 0.977651 0.148957 0.755289 -0.249710 -0.130323 -0.667794 0.019356 0.413009 0.487913 -0.863045 0.872237 -0.513825 2.076822 -0.816087 0.797339 -0.935587 0.984770 -0.609299 -1.009984 -0.279631 1.991487 0.980991 0.250752 0.044735 -0.310957 -0.196550 1.080091 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.524943 0.305455 1.865725 1.177731 -1.292670 -1.407962 -0.585119 -2.057628 0.924579 0.316099 1.455045 0.014796 0.717973 -0.621769 -0.102614 -0.404339 0.795747 -0.123259 -0.061755 -0.660788 -0.405984 1.356288 0.298123 -1.110404 0.359407 -1.262315 1.233911 0.646289 0.561002 1.107343 0.242933 -0.107509 -0.575147 0.832041 -0.387182 -0.016385 0.324589 0.478266 -0.816414 -0.205825 0.495909 0.008047 1.154730 -0.234749 1.129457 0.339945 0.470552 0.095118 -1.344472 -0.496559 -0.258802 0.861895 -0.787346 0.889685 0.278705 -0.060771 0.229182 -0.664217 -0.140433 -1.291538 0.211545 -0.342499 -0.416460 -0.045834 -1.000092 0.144035 -0.221139 -0.844095 0.478910 -0.590409 0.598646 0.031312 0.119457 -0.177156 -1.130822 0.436500 0.582677 0.617544 0.749662 0.345802 0.219407 -0.391859 -0.709331 -0.897981 0.465484 0.375422 0.446543 0.348348 -0.545159 -0.257752 0.512794 -0.082664 0.179998 0.866880 -0.815438 0.115869 -0.526761 -0.419584 -0.633725 -1.396585 0.160553 -0.832086 0.610369 0.831746 -0.863795 0.213305 -0.026457 0.532349 -0.323156 -1.076190 0.307260 -0.633512 0.233176 1.445367 -0.533465 -0.688071 -0.549402 -0.156532 0.125144 0.904586 0.008372 0.396510 1.018782 1.144971 0.770275 -1.226747 -0.433974 0.455960 0.673406 0.735755 0.630348 -1.079970 -0.535274 0.228864 -0.826467 -1.882358 -0.527937 0.235510 1.330169 0.058477 -1.055194 0.347714 -0.819942 1.216191 0.752828 0.595401 0.275212 0.157879 -1.065165 0.772337 1.482124 -0.510277 0.759267 -0.351036 -0.811458 0.877353 -0.134314 0.584282 0.056170 -0.165053 0.105854 -0.887397 0.054960 1.327778 0.345549 0.480951 0.031445 0.351820 -0.661104 -1.821390 -1.905592 0.113628 1.380725 0.519650 1.911505 -1.279085 -0.865157 -0.181452 1.440465 -0.232921 -0.726225 0.379954 -0.697471 0.850995 -1.926180 -1.747045 2.102401 1.865769 0.541837 -0.008900 0.962729 0.363816 -1.025333 -0.712902 -0.812877 0.605415 0.283997 -0.875500 -0.375943 0.275141 -1.294331 -0.481390 0.380150 0.415733 0.743231 -0.480246 0.049744 0.024147 -0.745802 -0.832864 0.830445 -0.822627 -0.288791 0.089781 0.041943 0.382986 0.755202 -0.487230 -0.600664 0.073429 -0.799314 -0.100950 0.176185 0.959892 0.244898 1.634873 1.481225 -0.286151 0.903163 0.273242 -0.914662 2.523039 -0.753890 0.296841 0.180034 0.711389 0.233278 0.476920 1.080950 -0.651344 -0.540196 -1.515844 -0.274472 0.139315 0.942039 -1.729302 -1.200828 -1.746677 -0.072636 0.150375 1.069709 -0.063985 2.352853 -0.400328 0.205758 -2.343843 -0.041392 1.033679 -0.120595 0.974217 0.535953 -1.002964 -1.858042 -0.287582 -1.123124 -0.150153 -0.375941 -0.655924 -0.773600 -0.505222 0.990834 -0.414191 0.355048 1.261297 -0.180479 0.958266 -0.110956 -0.166133 -0.520382 -0.358607 0.460154 0.193752 -1.014810 1.413789 0.290306 2.905116 -0.148510 0.602638 -0.743411 0.411297 -0.257935 -1.001190 -0.522868 1.426636 1.259459 0.687338 -0.055862 0.246842 -0.640021 1.086307 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.346990 0.059010 1.309984 1.201323 -0.824623 -1.738097 -0.421935 -1.916106 1.183376 0.600682 1.441869 0.291498 1.283441 -0.832646 -0.138638 -0.208643 0.858898 -0.008145 -0.041764 -0.620826 -0.722053 2.180602 0.279756 -0.757610 0.228588 -1.105894 1.548636 0.626094 0.620842 1.551270 0.330935 0.276909 -0.210633 0.585423 -0.537637 0.317314 -0.587397 0.789007 -0.409572 -0.420300 0.811661 -0.557101 1.389373 0.373744 0.947444 0.268386 0.666198 -0.075457 -0.657969 -0.745995 -0.573325 0.154991 -0.828046 0.660928 -0.926881 -0.220985 0.848729 -0.056930 0.150711 -1.156303 0.287186 -0.383761 -1.116922 -0.108189 -1.115026 0.208143 -0.593873 -0.911679 -0.231734 -0.762177 0.664036 0.133507 -0.295558 -0.790693 -1.999479 -0.050753 0.316523 -0.043920 0.923008 0.744324 -0.635813 -0.652442 -1.273854 -1.036751 1.371079 0.367432 0.305235 0.875134 -0.883603 -0.701404 -0.083784 0.351704 0.661990 0.787511 -0.563390 0.298599 0.266816 -0.368913 -0.237656 -1.122866 0.524269 -0.754410 0.309559 0.504321 -0.417689 0.107081 -0.066315 0.112599 -0.599877 -1.123513 0.253589 -1.018895 -0.115305 1.233051 -0.291678 -0.726825 -0.744203 -0.187418 0.501848 0.979912 0.338508 0.154844 1.340039 0.626900 0.570737 -1.242246 -0.277569 0.791231 0.553193 0.400275 0.114120 -0.629164 -0.703457 0.374441 -0.810763 -1.922103 -0.703988 0.753664 0.992801 -0.520766 -0.851949 1.308468 -0.609544 0.466601 1.402930 0.360754 0.480271 0.387170 -1.049952 0.535096 1.679909 -0.373060 0.571156 -0.655219 -1.244069 1.841932 -0.354032 0.356311 -0.087149 -0.386351 -0.329911 -0.463639 0.736808 1.299392 -0.304675 0.417950 0.154477 0.470271 -0.509753 -1.246870 -1.993540 -0.149801 1.764708 1.437912 2.294089 -1.265308 0.093547 0.211943 0.696165 0.024893 -0.610339 0.415895 -0.620994 0.752239 -3.149253 -1.746630 2.186401 0.943525 0.967062 0.081009 0.562722 0.514154 0.117008 -0.632944 -0.865571 0.701845 0.677181 -0.713652 0.037419 0.147488 -1.482159 -0.572794 0.071380 0.243053 0.431263 -1.051724 0.468929 -1.374391 -0.503047 -1.030849 0.781728 -0.895028 -0.227072 -0.243291 -0.146156 -0.158065 0.399109 0.154789 0.062906 -0.264723 -0.380553 -0.053457 0.024226 0.464832 0.163050 1.502607 2.106751 -1.068802 0.022689 -0.099199 -0.518075 2.353406 -0.894026 0.111383 0.171629 1.275898 0.770647 0.502275 1.210481 -0.525982 -0.098985 -1.349661 -0.005176 1.033244 0.536210 -1.516142 -0.426082 -2.126844 -0.061316 -0.385750 2.114275 -0.195557 2.270821 -0.827164 0.445213 -1.973598 0.229873 0.698977 -0.128452 0.952231 0.394761 -0.912550 -0.598728 -0.503547 -1.050187 0.091391 -0.232033 -0.550268 -0.906924 -0.245970 -0.049998 -1.114415 0.345109 0.909736 -0.628922 0.771266 -0.599274 0.111277 -0.803426 0.147598 0.453687 0.247560 -0.737922 0.977731 0.035657 2.099138 -0.082441 1.123250 -0.578460 1.290703 -0.886548 -1.539958 -0.648936 1.424720 1.132582 0.127654 0.529627 0.331428 0.308544 1.039815 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.129172 0.087638 0.445059 0.202718 -0.145381 -0.618231 -0.107580 -0.585185 0.244117 0.126261 0.517794 -0.031458 0.416919 -0.192225 0.093577 0.053474 0.296336 0.018391 0.040214 -0.169028 -0.097521 0.450235 0.058677 -0.120386 0.105605 -0.205197 0.203926 0.242617 0.111167 0.386882 0.087549 0.019532 -0.087714 0.126381 -0.186007 0.126585 0.063815 0.200179 -0.206300 -0.080208 -0.034105 -0.113489 0.313265 0.035607 0.309486 0.168704 0.190536 0.061708 -0.225551 -0.238861 -0.148806 0.252554 -0.220388 0.198595 -0.183499 -0.140220 0.212236 0.011934 0.012077 -0.475305 0.076775 -0.084424 -0.265037 -0.034892 -0.259148 0.075990 -0.079985 -0.289936 -0.032442 -0.137206 0.214244 0.029945 -0.024729 0.014763 -0.494824 -0.003575 0.127576 0.073178 0.237366 0.051386 -0.046209 -0.172211 -0.262237 -0.293788 0.446607 0.090611 0.230040 0.274708 -0.378336 -0.032080 -0.023300 0.030551 0.193417 0.144609 -0.093028 0.075779 0.158542 -0.104036 -0.141810 -0.403440 0.133269 -0.184475 0.054475 0.132852 0.099060 0.009607 -0.279564 0.185329 -0.284731 -0.343634 0.217718 -0.248112 -0.200643 0.308666 -0.227421 -0.093899 -0.135807 -0.032647 0.118858 0.312447 0.108039 0.114697 0.151066 0.228545 0.145885 -0.325409 -0.129606 0.133904 0.329078 0.182453 0.076383 -0.221364 -0.221528 0.154977 -0.453392 -0.583368 -0.237735 0.287839 0.369757 -0.038879 -0.372188 0.352741 -0.220520 0.190894 0.341921 0.176334 0.088165 0.076726 -0.331379 0.131094 0.362798 -0.238048 0.344786 0.029580 -0.181238 0.230743 -0.062501 0.072553 0.068443 -0.176650 -0.005830 -0.091078 0.023402 0.360591 0.275583 0.214923 -0.082925 0.168866 -0.310707 -0.431799 -0.583940 -0.083032 0.517945 0.129660 0.514532 -0.309166 -0.226491 0.005896 0.356450 -0.243509 -0.266383 0.044103 -0.216568 0.223549 -0.741463 -0.458369 0.700143 0.390035 0.374772 0.017165 0.185050 0.223079 -0.196861 -0.136394 -0.140845 0.145621 0.020241 -0.481837 -0.186948 0.010433 -0.466751 -0.122511 -0.040946 0.116390 -0.106910 0.034633 0.239183 -0.181695 -0.149969 -0.072118 0.058025 -0.223058 -0.069939 -0.029431 -0.038061 0.084324 0.089894 -0.171169 0.020010 0.145269 -0.362729 -0.047592 0.010875 0.231765 0.212721 0.675930 0.506424 -0.148362 0.209962 -0.071762 -0.325446 0.526749 -0.190782 0.092982 -0.049574 0.361858 0.197709 0.097594 0.382938 -0.158515 -0.214016 -0.463823 -0.196102 0.349987 0.228098 -0.109999 -0.306911 -0.560930 0.038751 -0.031444 0.637817 -0.151696 0.601353 -0.193832 0.171648 -0.576970 0.086800 0.106820 -0.141969 0.135096 0.117257 -0.232839 -0.439761 -0.101804 -0.397537 -0.308111 -0.068844 -0.185720 -0.133672 -0.211693 0.118589 -0.329481 0.013929 0.162319 -0.017169 0.303087 0.025099 -0.010087 -0.210162 0.131366 0.282287 0.005980 -0.295763 0.268828 0.140571 0.864241 0.011247 0.277324 -0.198110 0.224400 -0.130217 -0.267563 -0.179537 0.436457 0.517246 0.063684 0.123793 0.145819 0.031394 0.294304 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.120370 0.162706 0.553223 0.706665 -0.494493 -0.947308 -0.123802 -0.668489 0.387381 0.116304 0.537252 0.127871 0.555673 -0.339793 -0.040027 -0.151925 0.449721 0.258541 -0.079209 -0.294110 -0.456317 0.778111 0.141864 -0.539753 0.162425 -0.160306 0.721893 0.396835 0.209371 0.709574 0.131582 0.111167 -0.152370 0.270065 -0.307479 -0.043790 -0.346084 0.357528 -0.288357 -0.164622 0.311854 -0.326322 0.675483 0.190979 0.242593 0.279084 0.319604 0.054441 -0.408273 -0.281385 -0.302538 0.046274 -0.326424 0.401569 -0.472456 -0.108810 0.510418 0.080143 0.148983 -0.640925 0.169945 -0.216496 -0.481653 -0.113394 -0.594437 -0.002503 -0.285373 -0.618228 -0.084431 -0.268092 0.256821 0.020540 -0.167329 -0.427025 -0.839348 -0.082562 0.182913 0.128999 0.455790 0.395034 -0.174490 -0.328294 -0.596007 -0.419147 0.508741 -0.127963 0.269164 0.483636 -0.408484 -0.429433 0.099895 0.194234 0.325899 0.236603 -0.088987 0.251623 0.014656 -0.107092 -0.140879 -0.621650 0.224872 -0.228650 0.128157 0.169230 -0.165665 0.067434 -0.092866 0.119057 -0.200234 -0.532551 0.146326 -0.482899 -0.205105 0.500530 -0.073895 -0.374949 -0.181196 -0.082272 0.203608 0.469507 0.163308 0.027686 0.390434 0.259893 0.225037 -0.521019 -0.070266 0.175689 0.179664 0.245881 0.149176 -0.136180 -0.358124 0.183946 -0.462714 -0.866932 -0.193939 0.409299 0.476466 -0.137728 -0.473551 0.607286 -0.405755 0.104142 0.484758 0.332987 0.277742 0.085057 -0.423622 0.178668 0.619593 -0.224956 0.292470 -0.109915 -0.581160 0.758563 0.037376 0.098978 -0.113062 -0.334475 -0.022134 -0.106456 0.261773 0.587066 -0.010430 0.057607 0.231173 0.158779 -0.411547 -0.614774 -0.771589 0.035554 0.851307 0.621071 0.987355 -0.561795 0.052410 0.074949 0.257223 -0.183820 -0.242476 0.090883 -0.200163 0.348043 -1.473871 -0.752426 0.949542 0.240161 0.334341 -0.009391 0.135537 0.156984 0.142672 -0.378084 -0.418976 0.176470 0.231942 -0.235796 -0.082161 0.060340 -0.700212 -0.083073 0.189218 0.135752 0.225179 -0.519018 0.113221 -0.721326 -0.255412 -0.503849 0.204310 -0.435078 0.027736 0.044469 -0.124394 -0.009529 0.130261 0.138197 -0.105487 -0.187242 -0.209756 -0.099711 -0.167635 0.323319 0.102897 0.814383 0.867789 -0.422192 -0.015880 0.057203 -0.413915 1.294746 -0.461971 0.142863 0.042928 0.781121 0.356040 0.205182 0.652777 -0.239852 -0.049111 -0.669021 -0.166734 0.564745 0.210629 -0.818446 -0.104471 -0.983743 0.023932 -0.228355 0.947938 -0.220277 0.937104 -0.369147 0.162416 -0.785714 0.114886 0.301531 -0.118141 0.421058 0.224208 -0.448702 -0.330351 -0.228403 -0.513268 0.198790 -0.111012 -0.161303 -0.314757 0.125844 -0.280417 -0.434204 0.164584 0.437530 -0.422399 0.315719 -0.286385 0.061243 -0.205289 -0.037267 0.308326 0.105372 -0.372460 0.483241 0.103711 0.984611 0.189934 0.479366 -0.283107 0.386018 -0.276427 -0.616044 -0.389861 0.636148 0.500437 0.092530 0.382695 0.310371 0.174850 0.462032 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.286328 0.071109 1.371667 1.217515 -0.818363 -1.744841 -0.419252 -2.068069 1.278805 0.631413 1.482554 0.306983 1.328798 -0.885888 -0.152169 -0.146986 0.902612 0.029372 -0.040016 -0.622832 -0.669335 2.315714 0.214326 -0.725783 0.220919 -1.171120 1.499204 0.648453 0.761770 1.529247 0.345179 0.258598 -0.197556 0.574928 -0.560292 0.305020 -0.596330 0.781927 -0.539881 -0.480305 0.757574 -0.596096 1.421265 0.343080 0.988517 0.107569 0.745914 -0.107798 -0.620872 -0.723756 -0.636915 0.292145 -0.790261 0.685451 -0.896095 -0.298864 0.800120 -0.007813 0.163747 -1.069146 0.276704 -0.366101 -1.125154 -0.131119 -1.114774 0.218530 -0.621980 -0.901571 -0.229531 -0.763036 0.673863 0.141248 -0.262325 -0.832808 -2.165656 -0.027560 0.327473 -0.054315 0.935078 0.828915 -0.547035 -0.690511 -1.273112 -1.059112 1.464588 0.482014 0.260726 0.880560 -0.987649 -0.714594 -0.111466 0.344855 0.672637 0.786821 -0.684677 0.332141 0.191709 -0.379446 -0.212372 -1.198339 0.510154 -0.798861 0.303610 0.430966 -0.353966 0.173572 0.004073 0.116199 -0.582645 -1.153290 0.254129 -0.978203 -0.153267 1.344522 -0.293965 -0.765072 -0.768297 -0.138431 0.403508 0.952249 0.338752 0.209460 1.368470 0.635533 0.635349 -1.282664 -0.273306 0.893638 0.554765 0.432057 0.090508 -0.632988 -0.701379 0.383750 -0.786301 -2.019535 -0.742500 0.813512 1.036827 -0.543211 -0.782804 1.211557 -0.580194 0.544568 1.431706 0.286390 0.493667 0.427540 -1.062532 0.558165 1.735779 -0.384390 0.577962 -0.707481 -1.209171 1.826277 -0.383773 0.387730 -0.148462 -0.347459 -0.310690 -0.500386 0.736438 1.348982 -0.345193 0.402161 0.076390 0.481204 -0.562270 -1.318527 -2.087995 -0.188264 1.765347 1.445186 2.315734 -1.249109 0.003661 0.233681 0.690898 0.026148 -0.627693 0.512939 -0.737343 0.795549 -3.178324 -1.815913 2.257537 1.041113 0.981535 0.051542 0.616454 0.551904 -0.004221 -0.689976 -0.867926 0.722473 0.729167 -0.892128 -0.005867 0.158794 -1.529490 -0.586020 0.083520 0.215890 0.410900 -0.968540 0.612473 -1.381348 -0.526526 -1.040780 0.916411 -0.902137 -0.225193 -0.293012 -0.125351 -0.161226 0.483044 0.087473 0.063706 -0.213228 -0.396487 -0.044693 -0.003455 0.452778 0.140366 1.520516 2.201390 -1.032581 0.162033 -0.106679 -0.572048 2.385313 -0.925213 0.088153 0.158122 1.182237 0.703478 0.560659 1.201154 -0.551451 -0.147907 -1.395214 -0.045866 0.989807 0.575152 -1.459557 -0.487619 -2.118083 -0.080756 -0.389420 2.102520 -0.167526 2.339057 -0.934986 0.464669 -2.090149 0.232944 0.711585 -0.119039 1.051382 0.394979 -0.947586 -0.586682 -0.497517 -1.057315 0.009538 -0.232202 -0.649964 -0.943321 -0.369401 0.067764 -1.185272 0.350966 0.916851 -0.621188 0.876953 -0.677529 0.106210 -0.855961 0.220549 0.476324 0.260772 -0.765095 0.970222 0.015980 2.230708 -0.127073 1.126845 -0.626621 1.300777 -0.924508 -1.624737 -0.658430 1.473097 1.204004 0.163568 0.451899 0.300249 0.259776 1.069191 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.250308 0.367581 2.319562 1.796351 -1.076900 -2.095451 -0.519145 -3.052122 1.862895 0.819914 2.042894 0.255139 1.745262 -1.104365 -0.310952 -0.182663 1.368973 0.261618 -0.000907 -0.779868 -0.424036 3.246981 0.177873 -1.108158 0.298643 -1.763786 1.723418 0.927612 1.524782 1.848091 0.444307 0.332666 -0.214535 0.760107 -0.897754 0.075942 -0.712062 1.003052 -1.302692 -0.785479 0.679908 -0.718663 1.780904 0.280297 1.346874 -0.228479 1.219630 -0.288040 -0.837140 -0.761376 -1.100517 1.016476 -0.866953 0.987122 -0.896916 -0.658054 0.765679 0.072401 0.219619 -1.375175 0.389774 -0.273861 -1.283284 -0.214827 -1.558823 0.379977 -0.837515 -1.158556 -0.176555 -0.917818 0.894166 0.277389 -0.001034 -1.173359 -3.209091 0.292080 0.481199 0.093540 1.213996 1.272721 -0.221391 -0.818963 -1.478300 -1.452786 1.968411 0.973639 0.269560 1.056568 -1.390403 -0.981017 -0.122567 0.339042 0.612164 1.085316 -1.330402 0.773697 -0.287731 -0.503078 -0.223448 -1.777721 0.435045 -1.277701 0.400115 0.459220 -0.377061 0.575455 0.184073 0.297062 -0.482467 -1.645057 0.363958 -1.071382 -0.358886 2.198595 -0.511531 -1.090339 -0.991683 0.096025 0.127480 1.207177 0.174225 0.631663 1.615219 0.895241 1.030617 -1.745365 -0.189204 1.465738 0.669561 0.738643 0.252168 -0.863038 -0.942405 0.341241 -0.827493 -2.910091 -0.982726 1.233786 1.562948 -0.653860 -1.028009 1.109515 -0.757504 1.176191 1.836547 0.255987 0.709699 0.655214 -1.371005 0.775661 2.492370 -0.654491 0.821424 -0.951877 -1.419546 2.178269 -0.487199 0.798915 -0.479490 -0.204220 -0.095327 -0.952171 0.727709 1.989885 -0.340056 0.433722 0.039569 0.517237 -0.778491 -2.217581 -2.971512 -0.427618 2.110465 1.606804 3.004306 -1.507374 -0.439067 0.261983 1.003699 -0.022176 -0.820737 0.842052 -1.284955 1.129167 -4.110135 -2.699672 3.024493 1.849114 1.050214 -0.037671 1.025410 0.767071 -0.476507 -1.224540 -1.092459 1.024328 0.814515 -1.569690 -0.309281 0.263337 -2.096347 -0.758559 0.287923 0.207154 0.609528 -0.899478 1.099180 -1.525769 -0.915277 -1.430154 1.476305 -1.256750 -0.402831 -0.421326 -0.041934 -0.051017 0.914185 -0.299292 -0.095429 0.076215 -0.667130 -0.180075 -0.162656 0.651299 0.043990 1.977509 3.002686 -0.921638 0.711802 0.013057 -1.128292 3.571188 -1.259530 0.034588 0.079137 1.094537 0.528340 0.962179 1.413830 -0.823080 -0.495485 -2.093762 -0.178790 0.901127 0.884999 -1.933608 -1.019059 -2.480632 -0.122071 -0.311467 2.424221 -0.081372 3.400127 -1.475860 0.506405 -3.205257 0.263934 1.131753 -0.171941 1.796814 0.670339 -1.446210 -1.046581 -0.582933 -1.370167 -0.037237 -0.414166 -1.379679 -1.327536 -0.745736 0.623193 -1.599946 0.553758 1.337125 -0.644260 1.535390 -0.904064 0.031158 -1.175757 0.331713 0.713284 0.469224 -1.168671 1.343419 -0.103420 3.414495 -0.382273 1.368141 -1.098472 1.440471 -1.108269 -2.211159 -0.890046 2.255068 1.775596 0.481192 0.246301 0.174351 -0.044233 1.497004 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.236074 0.928791 3.612861 2.763495 -1.675425 -1.709445 -0.749046 -2.440078 1.445719 0.653695 2.418499 -0.359077 1.321863 -0.254578 -0.541277 -1.278711 1.611114 -0.074509 0.155421 -0.905163 -0.006923 2.832773 1.362320 -2.420901 0.464642 -2.141279 2.328885 0.900369 1.210252 2.133426 0.360807 0.802546 -0.260349 1.227348 -1.150796 -0.470283 -0.759381 1.378160 -1.101082 -0.471726 1.149133 -0.178222 1.553880 0.295682 1.389444 1.041285 1.318704 -0.476532 -2.029237 -0.850928 -1.351259 1.088037 -1.467856 0.953540 -0.675008 -0.257893 0.885627 -0.755282 -0.158301 -3.154309 0.558993 -0.076984 -1.028499 0.083827 -2.259123 0.801650 -0.752536 -1.284634 0.184393 -0.901178 1.109174 0.617950 0.522992 -0.954990 -2.359995 1.188508 0.539411 0.710850 1.211743 0.816059 -0.454914 0.055475 -1.317275 -1.738214 1.074708 0.400430 0.738384 0.632834 -0.182145 -0.934626 0.239210 0.204485 -0.530658 1.759359 -1.428690 1.473213 -0.540192 -0.705648 -0.787291 -1.354463 -0.020231 -1.829364 0.686565 1.775708 -1.699971 0.613260 -0.647168 0.477705 -0.152509 -2.178903 0.277525 -1.460864 -0.091846 2.269112 -1.278159 -0.868559 -0.990390 0.271248 0.708657 1.813440 -0.660423 1.136051 1.456725 1.274567 0.841042 -1.763755 0.300667 1.026734 0.784602 0.824218 1.153852 -1.083840 -1.395164 -0.354177 -0.483860 -2.824746 -0.770760 1.250665 1.893312 -0.067536 -2.509464 1.448174 -1.259875 1.968994 1.965548 1.139649 0.831221 0.557376 -1.506549 0.850283 3.196974 -1.067081 1.152401 -0.609862 -2.007487 2.978386 -0.476699 1.587658 -0.212487 0.179142 0.243391 -1.806768 0.109444 2.418314 0.475411 0.515533 1.259743 0.099719 0.398348 -3.202839 -3.183444 -0.476616 1.914529 1.286400 3.500986 -1.917721 -0.237479 -0.067788 1.515633 0.149815 -0.953903 -0.045302 -0.632877 0.903578 -4.798015 -3.425773 2.949688 2.403227 0.204779 0.392046 1.333616 0.538541 -0.113791 -1.579105 -1.373678 1.625786 -0.249396 0.090094 -0.290540 0.428193 -2.160043 -0.932710 0.493172 0.487356 1.514393 -1.772169 -0.176298 -0.827873 -1.579564 -1.777047 0.526624 -1.762788 -1.313823 0.037085 -0.018053 0.550664 0.638935 -0.362466 -0.569754 0.056839 -1.093107 -0.862445 -0.072975 1.234242 -0.024365 1.996572 2.921097 -0.556224 0.056001 0.536954 -1.482393 5.267763 -1.246390 0.012966 -0.084568 1.419538 0.620833 0.953498 1.446086 -0.890184 -0.772483 -2.557173 0.648509 0.437650 0.923956 -3.922301 -1.502781 -2.521339 0.061978 0.614049 2.198331 -0.050404 4.445943 -0.837830 -0.117558 -3.955669 0.105402 1.939740 -0.212955 2.061570 1.304004 -1.939441 -2.142267 -0.718137 -1.470885 1.635537 -0.772076 -1.715184 -1.600458 0.221251 0.756288 -1.126912 0.948619 2.003477 -0.448076 1.437074 0.529482 -0.311198 -0.838609 -0.740057 0.778843 0.985707 -1.425076 2.375575 -0.433049 3.633230 -0.667765 1.330070 -1.440010 1.038692 -0.468310 -1.717328 -0.914441 3.154926 1.716080 0.719974 0.416049 -0.170468 -0.484671 1.755240 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = 0.411798 0.985637 2.740099 1.101839 -1.197863 -1.868613 -0.580304 -2.762747 1.432024 0.523880 1.452690 -0.162288 1.018274 -0.164707 -0.415275 0.155954 1.071361 0.391632 -0.021048 -0.919183 -0.604875 2.165976 0.112295 -1.052690 0.513667 -2.057533 1.490358 0.775522 1.543770 1.528168 0.104845 -0.046539 -0.258538 1.075764 -0.611534 -0.161973 0.104592 0.716112 -1.427928 0.174039 0.225542 0.003574 1.463805 0.307221 1.038954 0.654236 0.402529 0.112607 -1.016971 -0.404777 -0.279651 0.931143 -0.608153 1.188546 -0.372498 0.120640 0.083802 -0.635087 0.276756 -0.649433 0.223733 0.118370 -0.848156 0.013756 -1.591304 -0.031690 -0.660355 -1.300847 -0.021998 -0.755867 0.555631 0.164321 -0.204945 -0.756851 -2.495398 0.295515 0.761306 0.572994 1.035948 0.269482 -0.025796 -0.461244 -1.365124 -1.473997 1.029151 1.210288 0.555985 0.717697 -0.835755 -1.129893 0.297078 0.340828 0.435687 1.447256 -1.088474 0.496309 -1.089286 -0.549970 -0.777927 -2.277759 0.142356 -1.057327 0.705251 -0.103330 -0.549993 0.465430 0.416617 0.800560 0.245421 -1.007007 0.145460 -0.727474 0.010864 2.116785 0.031315 -1.258233 -0.931708 -0.440303 -0.077775 1.174940 -0.104985 0.062319 1.718436 0.920394 1.044013 -1.552360 -0.354500 0.557958 0.181462 0.867079 0.967766 -1.080211 -0.804949 0.152886 -0.755803 -2.751537 -0.392775 0.201192 1.252941 -0.834615 -0.649865 0.274523 -1.196543 1.118216 1.194462 0.635732 0.582009 -0.010248 -1.035009 0.494770 2.302638 -0.726684 0.840217 -1.211502 -1.174562 1.157596 -0.134960 0.983102 -0.676445 -0.485719 -0.037426 -0.877827 0.602863 1.965050 -0.355680 0.134698 0.395153 0.077968 -0.843795 -1.682028 -2.373606 -0.293112 1.555067 0.706080 2.501097 -1.439101 -0.763890 -0.303853 1.193619 -0.020518 -0.345542 0.641455 -1.012809 0.953617 -2.701861 -2.330527 2.344641 2.222266 0.891056 -0.293786 0.911105 0.192129 -0.842465 -1.407434 -0.729658 0.631960 0.297842 -1.406024 -0.844273 0.386865 -1.754945 0.024713 0.253975 0.466675 0.979630 -0.477809 0.633031 -0.763769 -1.272503 -1.687693 1.146322 -1.098533 -0.170729 0.178077 0.008018 -0.189691 0.970864 -0.472440 -0.811255 0.354773 -0.714686 0.069593 0.044311 0.855194 -0.166997 1.827073 2.110936 -0.266418 0.926923 0.288772 -1.003365 3.055257 -1.188434 0.347992 0.193695 0.799633 -0.273862 0.947663 1.301139 -0.692211 -0.565008 -1.840994 -0.334182 0.318600 0.608265 -1.137628 -1.164186 -1.787616 -0.172535 -0.243298 2.106823 0.160522 2.861724 -0.597657 0.863538 -2.780097 0.210774 0.938553 -0.176705 1.512923 0.878305 -1.566150 -1.503985 -0.288997 -1.419726 -0.470131 -0.294010 -1.096121 -1.162733 -0.205524 0.399627 -0.756313 0.480203 1.493722 -0.313933 1.381576 -0.712767 -0.019965 -0.834342 -0.175997 1.569116 -0.012493 -0.955000 0.673991 0.350755 3.314286 -0.068875 1.325155 -0.775543 0.183362 0.010212 -1.670256 -1.152469 2.045054 1.245912 0.831667 0.027006 -0.139764 -0.284665 1.345409 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = -0.455547 0.769478 3.311870 1.767936 -2.020714 -2.931676 -0.800596 -3.982052 2.046252 1.633278 2.910104 0.087810 1.862241 -0.846650 -0.219914 0.429989 1.914491 -0.088849 -0.267194 -1.663632 -1.467338 2.966956 0.667345 -0.666209 0.958638 -2.847963 2.143690 0.487245 1.273022 1.889271 0.925700 0.280382 -0.596168 1.390730 -0.479377 0.805642 -0.179268 1.201205 -1.207858 -0.000956 0.979729 -0.606297 2.085932 1.256971 2.173686 0.839745 1.128533 -0.215984 -2.248436 -1.357378 -0.958402 1.359000 -1.515730 1.791002 -1.016152 -0.208908 0.860494 -0.498994 0.524590 -2.118553 0.083673 -0.913940 -1.286856 -0.122289 -1.739638 0.454929 -1.280544 -1.729783 -0.470287 -0.546765 1.735199 0.358484 -0.223444 -0.112756 -3.100160 0.458430 0.714572 0.437507 2.105009 0.520921 -0.883737 -1.101048 -2.083345 -2.488118 2.593782 0.675291 0.795594 1.210628 -1.500807 -1.114466 -0.237051 -0.064401 0.936078 1.870258 -2.152655 0.301837 0.347175 -1.073000 -0.988367 -2.728521 0.131369 -1.706442 0.562267 0.885031 -0.999012 0.570689 -1.154916 0.664469 -0.883847 -1.448711 1.126736 -1.324172 -0.486621 2.433517 -0.878179 -1.659967 -0.840164 -0.051333 0.602428 1.740708 0.769504 0.344814 3.019878 1.307378 1.470317 -1.801315 -0.201549 0.827406 1.064538 0.954523 1.045619 -1.187342 -1.783332 0.785660 -1.399378 -3.513568 -1.025306 1.427297 2.556383 -0.366090 -1.473223 1.182773 -1.251130 1.357606 2.198585 0.780372 0.919384 0.080140 -2.100140 0.811446 3.312077 -1.258599 1.476601 -0.841345 -1.213559 2.331441 -0.864026 0.891423 0.014797 -0.735194 -0.228996 -1.362472 0.009008 2.879093 0.216910 0.190857 0.179841 1.266593 -1.371684 -2.689752 -4.044985 -0.627228 2.612484 1.432443 3.508734 -2.250232 -0.365430 -0.426298 1.988139 -0.206816 -1.372815 0.695534 -1.088994 0.958204 -4.586540 -3.235646 4.871019 3.637725 1.735076 -0.503521 1.354099 1.358701 -1.392378 -1.969780 -1.334291 0.819488 0.734181 -2.245759 -1.358354 0.871123 -2.713229 -1.222158 -0.016252 0.512925 0.861797 -1.133813 1.210746 -0.782493 -1.068637 -1.325524 1.131124 -1.452414 -0.933792 -0.126905 0.265084 0.397022 1.062715 -0.405074 -0.445171 0.232241 -1.620108 -0.473133 0.405298 2.207918 1.023263 3.576363 3.619955 -1.037634 0.985663 -0.059667 -1.811383 3.982198 -1.715793 0.195404 0.052777 1.511180 0.578997 0.868926 2.170597 -1.121103 -1.015372 -2.581952 0.027220 0.793739 0.660027 -1.986239 -1.360776 -3.846632 0.213083 -0.536323 3.130846 -0.329283 4.462602 -1.146549 0.423143 -3.916369 0.256830 1.689996 -0.621920 1.831797 1.228057 -1.864269 -1.869806 -1.075527 -2.303437 -0.125507 -0.065405 -0.673567 -1.396803 -0.692959 0.938494 -1.889180 1.035068 1.582663 -0.053129 2.227924 -0.323763 0.013433 -1.743848 0.815359 2.113674 0.568851 -1.755784 2.030161 0.316672 4.966708 -0.228111 1.462717 -1.233760 0.412179 -0.754177 -2.194267 -1.547089 2.686578 2.688346 1.182847 0.566253 0.379760 -0.011213 2.667575 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = -1.319157 -0.047325 2.357369 1.035790 -1.339395 -1.877028 -0.702735 -2.971755 1.714132 1.148910 2.689745 0.479935 1.974928 -1.231743 0.140567 -0.486771 1.608656 -0.711269 0.458364 -0.755897 -0.100914 3.033347 0.711514 -0.253280 0.234839 -1.645459 1.489933 0.235717 1.156666 2.177958 0.504035 -0.086622 -0.900481 0.568157 0.053150 0.792173 0.030880 1.051937 -0.818220 -0.639063 0.455509 -1.486651 1.803585 0.029827 1.816961 -0.673028 0.706929 -0.281257 -1.493023 -1.377582 -0.669422 0.578235 -1.578215 0.927218 0.101707 -0.925488 0.549556 0.463300 -0.070224 -2.124585 0.154793 -1.361019 -0.819831 0.058539 -1.134978 0.564492 -1.491935 -0.658254 -0.228020 -1.366994 0.923588 0.502433 0.766186 0.353800 -2.804797 0.417242 0.470871 0.013682 1.080239 1.321746 -0.639604 -0.833299 -1.249772 -1.649510 1.604140 0.854087 0.154910 0.525483 -2.027191 0.362360 0.047183 0.383513 0.417774 0.955132 -1.681743 0.475748 0.114846 -0.679600 0.030352 -2.476160 0.219342 -1.486991 0.260257 1.009616 -0.787807 -0.331585 -1.494246 0.372766 -1.195389 -1.783394 1.146177 -0.981947 -0.934209 1.707652 -1.368534 -0.422912 -1.278230 0.218883 1.064587 0.987759 0.300783 0.951970 0.935234 1.097726 1.350842 -1.766197 -0.242510 1.472185 1.501052 0.280510 0.042806 -0.540788 -0.877577 0.842787 -1.388679 -2.763000 -1.508603 1.622276 1.803890 0.232808 -0.991914 0.370701 -0.951950 1.422091 2.235956 0.668361 0.508705 0.816424 -1.624275 0.783555 1.837497 -0.874940 1.324235 -0.017631 -1.084257 2.303951 -1.075917 0.950780 -0.279479 0.353585 -0.262528 -1.197559 -0.049526 1.958454 0.466218 1.173826 -0.949390 0.631069 -0.502999 -2.360449 -3.275600 -0.507689 2.930353 1.740087 2.017403 -1.607779 -0.452798 0.622775 1.383188 0.324656 -1.851064 0.669367 -0.808781 1.067218 -4.541150 -2.571798 3.479051 2.532252 1.152915 0.276381 0.668736 1.260192 -1.473797 -1.003135 -1.463588 1.263895 -0.310308 -2.161523 -0.674400 0.554645 -2.125623 -0.847941 0.057239 0.213107 0.790518 -0.893046 1.173643 -0.053736 -0.282443 -0.563002 1.641114 -0.995423 -1.436337 -0.640361 -0.065315 0.831489 0.780080 -0.186272 0.266416 0.404690 -1.423481 -0.502901 0.176558 0.842826 0.409241 2.685970 2.860676 -0.879971 -0.295992 -0.411443 -1.307901 2.860697 -1.566668 -0.082464 -0.174869 0.926330 0.925729 0.804518 1.807297 -0.838950 -1.165977 -1.894993 -0.519395 0.699690 1.423813 -1.892166 -2.350891 -2.645178 0.681699 0.089850 2.392982 -0.152108 3.573845 -1.261499 0.553253 -3.128954 0.139768 1.198869 -0.143086 1.803499 0.359300 -1.059516 -1.051997 -0.839981 -1.729941 0.305762 -0.132940 -0.787920 -0.747675 -1.171868 1.404372 -1.386293 0.267075 0.292533 -0.515715 2.394758 0.778344 -0.297185 -1.735505 0.880481 0.636317 0.462859 -1.019534 2.301311 0.356994 3.474314 -0.643772 0.600635 -0.742914 1.538594 -1.126466 -1.846746 -0.622148 2.171700 2.606587 0.778147 -0.267098 0.186029 -0.271988 1.235254 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator(std::allocator const&) = -0.363853 0.187600 0.983057 0.553081 -0.703230 -0.844167 -0.212687 -1.066837 0.629375 0.383830 0.815302 0.264370 0.807572 -0.464191 -0.135601 -0.442358 0.651471 0.045646 0.101679 -0.367925 -0.217569 1.007185 0.127795 -0.341538 0.152834 -0.575289 1.004305 0.141393 0.483709 1.082194 0.220147 0.023545 -0.539952 0.315902 0.011106 0.009963 -0.080684 0.473999 -0.398954 -0.184835 0.292144 -0.557035 0.802634 0.192769 0.529553 0.044423 -0.066431 0.005916 -0.528063 -0.490733 -0.102941 -0.223446 -0.531773 0.507265 -0.120096 -0.309608 0.274451 0.290187 0.217116 -0.798425 0.239348 -0.607856 -0.250970 0.017865 -0.682685 0.057076 -0.717227 -0.568748 -0.197792 -0.719724 0.252270 0.115816 0.236613 -0.140838 -1.205038 0.051682 0.219662 0.084450 0.606885 0.648627 -0.302344 -0.443216 -0.658411 -0.680768 0.385461 0.285912 0.072470 0.411640 -0.678006 -0.274310 0.224949 0.231544 0.339347 0.413600 -0.441127 0.246507 -0.366559 -0.153926 0.150961 -1.206274 0.182694 -0.441265 0.183215 0.241170 -0.508853 -0.103919 -0.254110 0.167084 -0.188702 -0.561838 0.483992 -0.512011 -0.234259 0.811767 -0.220797 -0.459347 -0.543371 -0.090146 0.480283 0.475698 0.070745 0.148647 0.296167 0.367131 0.560374 -0.774169 -0.103820 0.621357 0.220578 0.132999 0.108854 -0.198895 -0.328600 0.335749 -0.607281 -1.113438 -0.385431 0.344616 0.642679 -0.162458 -0.295954 0.236341 -0.650618 0.236159 0.779200 0.421560 0.339199 0.226554 -0.606941 0.217230 0.674241 -0.252039 0.350853 -0.045433 -0.605395 0.876584 -0.104328 0.355010 -0.386438 -0.079027 -0.035518 -0.320712 0.184736 0.822636 -0.079622 0.349652 -0.105942 0.184897 -0.423245 -0.880634 -1.094250 -0.098336 1.345761 0.856902 0.849052 -0.730697 0.097223 0.201132 0.581858 0.218366 -0.512876 0.290292 -0.165192 0.464575 -1.865021 -1.001161 1.176847 0.808587 0.355222 -0.098797 -0.020569 0.272475 -0.258502 -0.576008 -0.633726 0.259115 -0.168675 -0.616293 -0.306501 0.239728 -0.812093 -0.165090 0.333827 0.129933 0.689284 -0.606978 0.304491 -0.286300 -0.020025 -0.722827 0.688783 -0.386059 -0.330810 -0.060042 -0.033077 0.218346 0.264478 0.090520 -0.098143 0.084903 -0.241308 -0.117391 -0.042536 0.288170 -0.068287 0.974343 0.884812 -0.451124 -0.493064 -0.006771 -0.532293 1.657632 -0.703233 0.137509 0.084964 0.586939 0.368664 0.357082 0.757953 -0.395183 -0.242615 -0.830707 -0.435868 0.330525 0.465353 -1.035262 -0.749123 -1.095723 0.357873 -0.284529 0.954550 -0.057341 1.415576 -0.426460 0.218625 -0.910896 0.065785 0.611584 -0.136534 0.823498 0.248821 -0.517201 -0.302943 -0.341381 -0.774254 0.384276 -0.104886 -0.192469 -0.289195 0.045464 0.102793 -0.291846 0.162056 0.273640 -0.454392 0.792632 -0.080751 0.002379 -0.593400 0.123364 0.211333 0.117119 -0.434041 0.850907 0.199508 1.087258 0.009613 0.296832 -0.195791 0.517211 -0.428362 -0.866085 -0.454688 0.899688 0.734359 0.457853 0.039095 0.158153 0.045609 0.476530 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.299260 0.374332 1.359623 0.713330 -0.974618 -1.229437 -0.261957 -1.558077 0.856655 0.480897 1.039907 0.349089 1.050549 -0.556727 -0.177079 -0.399794 0.926734 0.177161 0.092398 -0.545060 -0.342646 1.360469 0.068773 -0.397325 0.231602 -0.755047 1.206936 0.307928 0.792683 1.309650 0.322104 0.002871 -0.694376 0.442657 -0.044154 -0.064468 -0.142711 0.578556 -0.751026 -0.198303 0.276938 -0.739635 1.143529 0.250930 0.677552 -0.006683 0.058474 0.059077 -0.665299 -0.571681 -0.235089 -0.045760 -0.588333 0.716642 -0.156815 -0.452043 0.305740 0.392118 0.338218 -0.802439 0.251460 -0.736096 -0.363284 -0.008352 -0.918780 0.023857 -0.974145 -0.833213 -0.258361 -0.866983 0.327850 0.106142 0.229908 -0.260754 -1.762266 0.059627 0.334502 0.181212 0.826688 0.883647 -0.253838 -0.592046 -0.891444 -0.917066 0.562496 0.472511 0.114628 0.554676 -1.032699 -0.462559 0.262220 0.288588 0.486353 0.530125 -0.698984 0.374611 -0.610678 -0.251499 0.042631 -1.702429 0.237029 -0.542607 0.273932 0.076800 -0.541068 -0.073741 -0.300742 0.188204 -0.188826 -0.732010 0.566034 -0.638956 -0.331097 1.215419 -0.242680 -0.667497 -0.706618 -0.110173 0.442279 0.598664 0.130055 0.153880 0.445960 0.499075 0.768096 -1.030376 -0.149013 0.762298 0.220903 0.260343 0.215125 -0.224543 -0.463002 0.437626 -0.785976 -1.573555 -0.453463 0.504080 0.863634 -0.250224 -0.241858 0.161213 -0.869457 0.361451 0.970286 0.501762 0.488711 0.247940 -0.768976 0.295652 0.942526 -0.356784 0.504725 -0.142432 -0.731609 1.095819 -0.130786 0.496752 -0.529032 -0.186037 -0.075583 -0.369972 0.220490 1.121094 -0.121556 0.336450 -0.101558 0.220043 -0.654371 -1.172036 -1.502575 -0.109035 1.702629 1.074557 1.114127 -0.943449 0.026503 0.238218 0.723566 0.227545 -0.667279 0.496299 -0.338208 0.647135 -2.355395 -1.328399 1.578244 1.161360 0.448869 -0.203227 0.039098 0.346081 -0.502107 -0.894885 -0.791488 0.318976 -0.183072 -1.025893 -0.475527 0.341201 -1.113593 -0.107164 0.429587 0.187328 0.892498 -0.653195 0.585687 -0.454584 -0.121208 -1.003668 0.956130 -0.490969 -0.364291 -0.033542 -0.039826 0.242501 0.429001 0.058756 -0.211477 0.130525 -0.363202 -0.118195 -0.122786 0.422876 -0.106438 1.332464 1.194201 -0.506729 -0.348165 0.009644 -0.774391 2.179313 -0.947070 0.240143 0.109668 0.724897 0.325029 0.531941 0.998933 -0.533785 -0.379257 -1.111743 -0.621117 0.395146 0.608631 -1.208105 -0.987634 -1.451763 0.425255 -0.384736 1.248501 -0.108466 1.847324 -0.628049 0.337272 -1.291221 0.113620 0.716202 -0.173616 1.157817 0.356132 -0.775949 -0.308255 -0.414863 -1.063377 0.356135 -0.069919 -0.312079 -0.424036 0.017928 0.161959 -0.452359 0.189281 0.392232 -0.656234 1.103732 -0.222832 0.010008 -0.745193 0.175816 0.517855 0.127464 -0.587415 1.056500 0.255347 1.613923 0.091038 0.446733 -0.265345 0.528122 -0.439535 -1.205884 -0.674308 1.234734 0.988922 0.632495 -0.004452 0.187150 0.084873 0.655892 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = -1.680969 -0.096196 2.900181 1.165249 -1.297481 -2.906322 -0.939983 -3.668708 1.865594 1.193661 3.709493 0.209053 2.267239 -1.301377 0.765088 0.316220 2.024053 -1.114264 0.380056 -1.006903 -0.076832 3.566497 1.251878 -0.341690 0.394049 -1.762274 0.613352 0.892605 1.015034 1.998523 0.561068 -0.143369 -0.533041 0.738579 -0.551875 1.365406 0.299247 1.081863 -1.109479 -0.732841 0.122961 -1.265279 2.150261 -0.258871 2.480677 -0.560009 1.945191 -0.222739 -2.171251 -1.709743 -1.254614 2.290243 -1.883365 1.036401 0.079489 -0.848337 0.859318 -0.117037 -0.512722 -2.981659 -0.123316 -0.902540 -1.416082 -0.107751 -1.038839 0.801897 -0.910290 -0.781471 0.088440 -0.985121 1.429094 0.499788 0.484408 0.736951 -2.894575 0.582543 0.694963 0.288369 1.061538 0.895618 -0.513425 -0.792261 -1.188285 -1.878351 2.516441 0.662559 0.787752 0.711414 -2.674387 0.929198 -0.315047 0.171736 0.279573 1.002793 -2.080727 0.456243 1.425485 -1.154646 -1.029393 -2.216214 0.229902 -1.776407 0.228132 1.369773 -0.034829 -0.289760 -2.843567 0.586766 -2.177743 -2.392195 1.219393 -1.141779 -1.514291 1.705566 -2.349911 0.052118 -1.081623 0.456075 0.906281 1.427241 0.502458 1.333985 1.288889 1.587378 1.285117 -1.983203 -0.330530 0.903893 2.732065 0.722859 0.323396 -0.839320 -1.318370 0.962004 -2.032254 -3.516088 -1.952312 2.619053 2.470026 0.933784 -2.026635 0.831884 -0.797322 2.395249 2.553948 0.793041 0.389084 0.802753 -2.090138 1.071642 2.443849 -1.527383 2.371246 0.216936 -1.000413 2.495388 -1.645854 1.101471 0.641482 0.035862 -0.356571 -1.406163 -0.508272 2.350469 1.722017 1.438478 -1.231161 0.878512 -0.533961 -3.040034 -4.420755 -0.704651 2.849629 1.309155 2.825694 -1.839957 -1.525628 0.372374 1.789114 -0.778622 -2.554661 0.475167 -1.383533 1.253104 -5.075662 -3.087722 4.892347 3.473942 1.821496 0.741760 1.769297 1.742701 -2.219006 -0.857539 -1.282512 1.752664 -0.068009 -3.005265 -0.761435 0.489332 -2.847968 -1.129481 -0.703514 0.407823 -0.387336 -0.214296 1.685076 0.076683 -0.989479 0.405143 0.954396 -1.369239 -1.742608 -0.742511 -0.121352 1.107435 0.896050 -0.809896 0.305962 0.602517 -2.802076 -0.784061 0.233512 1.637905 1.481337 3.884164 3.886320 -0.713492 1.452115 -0.675595 -1.864522 2.564699 -1.627572 -0.093356 -0.559910 1.379274 1.127282 0.764967 2.245526 -0.881657 -1.717905 -2.348369 -0.206367 1.242009 1.795686 -1.510284 -2.915425 -3.325501 0.390147 0.746670 3.204260 -0.731220 4.198049 -1.475306 0.773661 -4.738651 0.296862 0.869914 -0.209191 1.391063 0.507388 -1.385653 -2.337553 -0.853347 -2.145568 -0.760079 0.018466 -1.174215 -0.884745 -2.252372 2.278266 -2.443055 0.199981 0.516264 -0.143143 2.866298 1.624082 -0.499709 -1.757244 1.120602 1.523892 0.573092 -1.380006 2.649854 0.486542 5.470050 -0.809049 1.136272 -1.253043 1.666545 -0.848552 -1.721848 -0.639462 2.687291 3.835916 0.439941 -0.088803 0.363924 -0.488187 1.787248 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.089856 0.314661 1.094765 1.223147 -0.867494 -1.577431 -0.297717 -1.419969 0.839499 0.254103 0.946937 0.234689 0.909319 -0.554072 -0.129401 -0.136735 0.733766 0.344588 -0.078460 -0.508838 -0.821986 1.693024 0.256709 -0.851004 0.234128 -0.631647 1.259005 0.669646 0.657723 1.209467 0.189126 0.141511 -0.152458 0.552124 -0.538866 -0.092229 -0.666546 0.598644 -0.617248 -0.228542 0.561448 -0.527785 1.248950 0.290750 0.483762 0.306635 0.692976 0.039304 -0.642339 -0.407665 -0.661917 0.317968 -0.585170 0.700835 -0.765796 -0.201279 0.761210 0.061441 0.189344 -0.839359 0.164269 -0.304093 -0.860223 -0.168975 -1.077574 0.042474 -0.615570 -0.988792 -0.105126 -0.333249 0.528921 0.146165 -0.232784 -0.816376 -1.699566 0.004281 0.309433 0.249889 0.783878 0.676793 -0.258305 -0.440563 -1.060723 -0.822868 0.957652 0.026792 0.354898 0.667348 -0.681317 -0.809704 0.057249 0.316733 0.482286 0.546403 -0.362567 0.519389 -0.167714 -0.214978 -0.316137 -1.170548 0.277914 -0.541431 0.275857 0.221170 -0.252028 0.145403 0.024268 0.136138 -0.271613 -1.019784 0.152027 -0.743925 -0.300607 1.077778 -0.088121 -0.645854 -0.333652 -0.094055 0.154821 0.804213 0.293612 0.103516 0.913147 0.553234 0.438209 -0.917027 -0.119204 0.400775 0.281619 0.462484 0.323464 -0.333628 -0.655670 0.244932 -0.542808 -1.629449 -0.319755 0.777926 0.804096 -0.341393 -0.646816 0.895253 -0.620416 0.380657 0.929039 0.404834 0.515791 0.138030 -0.733455 0.498821 1.381332 -0.372509 0.483777 -0.488904 -1.044041 1.547904 -0.158531 0.314323 -0.254057 -0.417965 -0.102558 -0.333856 0.498967 1.106691 -0.190991 0.062046 0.470760 0.227039 -0.581328 -1.144857 -1.463315 0.062464 1.409895 1.051818 1.848771 -0.971371 0.019498 0.163947 0.423292 -0.125312 -0.390877 0.314091 -0.492279 0.638279 -2.633454 -1.453872 1.742425 0.637060 0.515977 -0.015798 0.391217 0.416822 0.101036 -0.802970 -0.775003 0.447199 0.492567 -0.569528 -0.172348 0.146383 -1.230242 -0.169286 0.284711 0.199986 0.537536 -0.869971 0.216352 -1.256420 -0.638217 -0.970849 0.616455 -0.851503 -0.032712 0.036988 -0.187431 -0.124527 0.386760 0.224255 -0.165403 -0.296871 -0.338932 -0.113607 -0.224021 0.530153 0.075790 1.316406 1.702004 -0.667436 0.185866 0.184301 -0.630604 2.295766 -0.844092 0.178652 0.123365 1.159122 0.415537 0.490334 1.054178 -0.424322 -0.181664 -1.186697 -0.055302 0.795703 0.361733 -1.409138 -0.266344 -1.689413 -0.086873 -0.257879 1.601179 -0.239700 1.782934 -0.716995 0.294212 -1.627792 0.181204 0.535128 -0.083710 0.973742 0.417512 -0.840116 -0.460453 -0.429490 -0.814368 0.331149 -0.225350 -0.514435 -0.671622 0.047179 -0.312597 -0.846742 0.346078 0.868405 -0.718983 0.651564 -0.608712 0.056121 -0.527629 -0.027996 0.633470 0.201310 -0.624753 0.861374 0.030955 1.861024 0.140295 0.868373 -0.563722 0.651227 -0.461594 -1.184270 -0.623444 1.208739 0.826717 0.170711 0.526480 0.405074 0.241523 0.834606 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.101171 0.300069 1.087616 1.182199 -0.817329 -1.529403 -0.292912 -1.387152 0.823292 0.259632 0.957459 0.211373 0.899600 -0.521464 -0.107764 -0.142983 0.736161 0.326727 -0.067132 -0.491450 -0.771083 1.670472 0.258175 -0.827122 0.248451 -0.641382 1.207592 0.651548 0.629361 1.193099 0.178764 0.146063 -0.143015 0.521840 -0.537422 -0.090684 -0.632409 0.568982 -0.604870 -0.219604 0.545010 -0.484767 1.215756 0.286493 0.470582 0.307244 0.660890 0.029083 -0.624180 -0.410856 -0.636131 0.316711 -0.546365 0.694638 -0.741499 -0.188465 0.743656 0.047831 0.175192 -0.836342 0.175105 -0.271901 -0.835575 -0.167810 -1.042914 0.044059 -0.596414 -0.938421 -0.082690 -0.347201 0.517016 0.123869 -0.237020 -0.810216 -1.658692 0.013348 0.298504 0.235536 0.743529 0.654111 -0.265379 -0.411137 -1.040654 -0.807163 0.938975 0.044901 0.341556 0.642238 -0.684446 -0.794521 0.051578 0.304054 0.454065 0.539365 -0.363135 0.511245 -0.140865 -0.227045 -0.295713 -1.124485 0.267748 -0.539530 0.257809 0.234315 -0.233746 0.148736 0.030058 0.165583 -0.254001 -0.997184 0.176143 -0.700882 -0.319506 1.056496 -0.091719 -0.636259 -0.347323 -0.084240 0.152488 0.800894 0.269647 0.109676 0.890417 0.536124 0.431466 -0.879999 -0.103803 0.403555 0.287102 0.435811 0.309551 -0.335594 -0.637524 0.244005 -0.549561 -1.588000 -0.343854 0.761377 0.813882 -0.337718 -0.650499 0.887487 -0.605147 0.385484 0.916977 0.385150 0.500742 0.141517 -0.725006 0.482964 1.364351 -0.384561 0.472368 -0.488706 -1.029001 1.498114 -0.136722 0.309369 -0.248567 -0.382396 -0.086461 -0.337882 0.497803 1.090863 -0.167882 0.073608 0.440836 0.222170 -0.553258 -1.108387 -1.466059 0.038630 1.344295 1.021406 1.822910 -0.934142 0.001761 0.125883 0.426389 -0.132418 -0.395778 0.304760 -0.486468 0.601941 -2.592950 -1.415773 1.716614 0.655516 0.519952 -0.019304 0.398299 0.407241 0.102696 -0.776793 -0.766485 0.460992 0.481564 -0.549187 -0.157931 0.136524 -1.202960 -0.170799 0.255212 0.185237 0.515103 -0.849965 0.213107 -1.219155 -0.653376 -0.926118 0.604660 -0.841631 -0.039560 0.026086 -0.196451 -0.125317 0.383785 0.204472 -0.162141 -0.267964 -0.355093 -0.131524 -0.214147 0.521574 0.078781 1.277534 1.669721 -0.629179 0.187187 0.166965 -0.640791 2.250454 -0.830625 0.150101 0.091935 1.108344 0.411939 0.483049 1.014697 -0.398335 -0.198059 -1.165369 -0.023394 0.767675 0.356380 -1.382491 -0.280249 -1.655715 -0.085659 -0.257025 1.602861 -0.215916 1.762352 -0.707340 0.292902 -1.613157 0.179235 0.521676 -0.075551 0.927988 0.393015 -0.823335 -0.483592 -0.393769 -0.817159 0.317019 -0.216417 -0.529603 -0.673746 0.013736 -0.272242 -0.829119 0.347092 0.866255 -0.686302 0.652284 -0.563866 0.028678 -0.527360 -0.024004 0.612619 0.200665 -0.611847 0.824084 0.032351 1.822732 0.115387 0.858423 -0.560981 0.637748 -0.469677 -1.164155 -0.608074 1.169000 0.836299 0.169172 0.514531 0.385678 0.222255 0.813630 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.092089 0.262008 1.147644 0.971773 -0.612195 -1.330983 -0.305397 -1.423492 0.879129 0.339030 0.958485 0.177781 0.889453 -0.503217 -0.129651 -0.114375 0.642453 0.190153 -0.021437 -0.432130 -0.548996 1.672023 0.212694 -0.689352 0.198878 -0.881882 1.075843 0.560984 0.689813 1.154210 0.142139 0.137539 -0.084993 0.513233 -0.530151 -0.038165 -0.456257 0.534576 -0.557676 -0.234570 0.465160 -0.286653 1.075157 0.263871 0.556924 0.243509 0.522218 -0.027307 -0.470955 -0.407605 -0.521404 0.347753 -0.503451 0.623777 -0.646827 -0.153213 0.577830 -0.014910 0.151378 -0.789972 0.195833 -0.125847 -0.734835 -0.132493 -0.932653 0.073914 -0.495637 -0.793021 -0.095428 -0.398588 0.505266 0.152067 -0.141966 -0.738422 -1.616579 0.093281 0.269527 0.157329 0.695902 0.551262 -0.307881 -0.365027 -0.912446 -0.811995 0.935075 0.285849 0.253039 0.612725 -0.622825 -0.722693 -0.021009 0.243568 0.394932 0.603136 -0.403702 0.436373 -0.110930 -0.215194 -0.202716 -0.993518 0.226591 -0.589265 0.230247 0.247963 -0.144176 0.158618 0.077989 0.181201 -0.246551 -0.873229 0.229565 -0.624266 -0.262344 1.046434 -0.119733 -0.570786 -0.382549 -0.076328 0.130262 0.785890 0.180680 0.131294 0.884316 0.508970 0.439168 -0.865310 -0.099674 0.527704 0.315096 0.397282 0.257109 -0.468066 -0.555611 0.210435 -0.490958 -1.538832 -0.362163 0.643133 0.746641 -0.409198 -0.612779 0.838645 -0.523248 0.441445 0.939536 0.262203 0.449610 0.170471 -0.715222 0.478675 1.388456 -0.366589 0.446237 -0.546982 -0.955731 1.354587 -0.231903 0.387900 -0.258158 -0.286981 -0.065671 -0.390197 0.522137 1.076064 -0.188885 0.195541 0.295282 0.207895 -0.451284 -1.057388 -1.464372 -0.085854 1.202229 0.886395 1.768935 -0.847301 -0.090659 0.077668 0.520926 -0.078597 -0.345203 0.338944 -0.516982 0.574178 -2.389193 -1.378823 1.656850 0.825496 0.567661 -0.029749 0.463240 0.416400 0.067279 -0.695070 -0.636578 0.453481 0.460580 -0.620438 -0.156085 0.119433 -1.111667 -0.251217 0.167271 0.135744 0.436495 -0.674091 0.263003 -1.030002 -0.619159 -0.867279 0.624349 -0.793951 -0.092220 -0.056683 -0.108895 -0.166138 0.408644 0.060240 -0.128565 -0.084609 -0.332307 -0.077120 -0.107005 0.433350 0.076082 1.114265 1.566335 -0.565743 0.240593 0.136931 -0.530983 2.052267 -0.760587 0.079921 0.114345 0.911258 0.348382 0.504887 0.836720 -0.391775 -0.174117 -1.122461 0.036121 0.652703 0.337479 -1.163646 -0.391734 -1.453295 -0.107316 -0.224630 1.483776 -0.123453 1.759139 -0.648515 0.310787 -1.603932 0.164265 0.518975 -0.068510 0.877287 0.398733 -0.776176 -0.579249 -0.360684 -0.748876 0.123024 -0.227251 -0.635425 -0.639165 -0.155997 -0.057053 -0.821044 0.352969 0.836969 -0.504758 0.660968 -0.555757 0.030573 -0.623279 0.040649 0.507701 0.168740 -0.571679 0.692023 -0.013601 1.713328 -0.071098 0.853703 -0.553230 0.698123 -0.491525 -1.122414 -0.538377 1.153607 0.790249 0.186121 0.385990 0.255701 0.137505 0.792096 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = -0.094726 0.566714 2.119331 1.041744 -0.825262 -1.910964 -0.611766 -2.579117 1.328004 0.746506 1.743880 -0.000739 1.346293 -0.436129 -0.190916 -0.041657 0.935419 -0.052508 0.080649 -0.723914 -0.872492 2.475030 0.221440 -0.624249 0.320156 -1.805077 1.559903 0.792062 1.037278 1.602948 0.235150 0.200687 -0.101447 0.888255 -0.810287 0.096959 -0.336911 0.888030 -0.716159 -0.155959 0.652579 -0.196186 1.552497 0.367301 1.032547 0.625548 0.608764 -0.051151 -0.722020 -0.691387 -0.541182 0.662620 -0.786635 0.855861 -0.803155 -0.192847 0.636318 -0.345154 0.176840 -0.969077 0.250664 -0.093886 -1.073657 -0.052652 -1.329299 0.158653 -0.664564 -1.135834 -0.071098 -0.671236 0.801239 0.175308 -0.268876 -0.818414 -2.374472 0.336733 0.569284 0.122853 1.006481 0.474593 -0.480722 -0.361314 -1.400551 -1.451019 1.503351 0.952317 0.480364 0.760620 -0.970391 -0.924498 -0.070378 0.279496 0.572573 1.294763 -0.732056 0.519615 -0.202160 -0.548053 -0.698066 -1.641038 0.322833 -1.082292 0.529467 0.446399 -0.374974 0.177131 0.016462 0.330896 -0.355916 -1.336149 0.263500 -1.039127 -0.050729 1.718080 -0.314436 -0.867621 -0.779706 -0.295843 0.263562 1.178444 0.286133 0.092491 1.723915 0.831475 0.737978 -1.420133 -0.329054 0.758867 0.502533 0.600750 0.471690 -1.122005 -0.840308 0.290333 -0.887064 -2.491564 -0.638932 0.671994 1.112300 -0.907832 -0.897722 1.321057 -0.817209 0.773910 1.579656 0.409641 0.602431 0.240366 -1.108184 0.689140 2.213377 -0.646030 0.817233 -1.024784 -1.470017 1.901197 -0.450315 0.762682 -0.115741 -0.337095 -0.292428 -0.787042 0.789758 1.777901 -0.226071 0.524411 0.357670 0.297759 -0.563999 -1.511692 -2.445731 -0.183911 1.730827 1.099937 2.733530 -1.405820 -0.345427 0.098568 1.200878 -0.027873 -0.628877 0.583237 -0.775427 0.858331 -3.251982 -2.183844 2.451611 1.661178 0.990985 -0.115965 0.922890 0.548686 -0.269117 -1.079313 -0.944526 0.898721 0.569261 -1.181952 -0.332124 0.231636 -1.665427 -0.300788 -0.080425 0.300965 0.685244 -0.802111 0.496951 -1.292962 -1.044339 -1.278735 0.977415 -1.122638 -0.300421 -0.169635 -0.062704 -0.315821 0.696277 -0.186041 -0.288796 0.034680 -0.700520 0.006340 0.179002 0.640621 0.093398 1.900573 2.261848 -0.876907 0.511402 0.050530 -0.600555 2.774466 -1.093060 0.078907 0.205816 1.281783 0.293192 0.840119 1.300177 -0.604447 -0.537114 -1.733148 0.137018 0.767615 0.462707 -1.346706 -0.781464 -2.264753 -0.205333 -0.269782 2.454813 -0.019022 2.856731 -0.680803 0.653082 -2.543262 0.249917 0.639393 -0.185240 1.292300 0.640164 -1.281615 -0.995818 -0.494672 -1.293349 -0.408277 -0.214552 -1.040605 -1.109182 -0.496988 0.179919 -1.155592 0.456567 1.235306 -0.450693 0.963602 -0.581152 -0.033119 -1.060585 0.114345 1.175561 0.094242 -0.877470 1.000688 0.020745 2.912785 -0.277552 1.443596 -0.779353 0.924831 -0.519743 -1.640057 -0.840052 1.869536 1.267581 0.412662 0.303533 0.196876 0.140923 1.283485 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__fill_n_a(int*, unsigned long, int const&, std::random_access_iterator_tag) = -1.065973 0.361427 3.149627 2.211632 -1.616430 -2.702206 -0.954904 -2.966189 1.892188 1.018352 2.767198 0.219870 1.849122 -0.966524 -0.102518 -0.753815 1.556110 -0.355967 -0.361598 -1.162870 -0.914373 3.217880 1.072349 -2.073153 0.569314 -2.268347 2.186676 1.264473 0.741939 2.379761 0.344335 0.398884 -0.359333 1.376600 -1.401607 0.267926 -0.345807 1.211084 -0.746060 -0.730235 1.544189 0.120885 2.374489 0.324724 1.789400 0.963789 1.041467 -0.212497 -1.992955 -1.338112 -0.537155 0.924138 -1.372220 1.429860 -0.755265 0.393180 1.238529 -1.101103 0.051344 -2.856436 0.683742 0.095333 -1.481708 -0.242760 -1.741570 0.185996 -0.196914 -1.617534 0.283641 -1.594029 1.112694 0.010917 -0.415189 -1.347152 -2.399044 0.495200 0.858664 0.271618 1.426940 1.013440 -1.037884 -0.794007 -1.712139 -1.811267 1.632748 0.466308 0.780242 1.389628 -1.128146 -1.026127 0.374031 0.293412 0.437937 1.715510 -1.220813 0.498245 0.630402 -0.983484 -1.064233 -1.345443 0.521907 -1.519060 0.684643 1.609041 -1.204277 0.307165 -0.594980 0.536940 -0.885532 -1.795776 0.510193 -1.655411 -0.086092 1.998123 -1.003564 -1.224805 -1.000492 -0.289441 0.804684 1.953908 0.015577 0.275199 2.402739 1.262950 1.089814 -2.203601 -0.116897 0.800010 1.352097 0.851857 0.752570 -1.497103 -1.149267 0.473022 -1.530487 -3.452220 -1.073454 1.007359 2.073041 -0.323967 -2.467369 2.190790 -1.189439 1.571366 2.087061 1.038378 0.765175 0.426603 -1.904899 0.777579 3.048032 -0.992420 1.361899 -0.900604 -2.460736 2.853377 -0.532259 1.185129 0.157190 -0.621573 -0.174300 -1.336319 1.036600 2.592761 0.115108 0.870284 0.243045 0.509163 -0.421032 -2.630702 -3.954077 -0.362790 2.197401 1.988865 4.427198 -2.259039 -0.610228 -0.313555 1.884687 -0.604294 -1.227691 0.414537 -0.927583 1.223371 -5.041797 -3.233454 4.056129 2.701534 1.406946 0.280539 1.845413 0.261611 0.028646 -1.116619 -1.418908 1.311777 1.126017 -0.518956 0.236541 0.349046 -2.527049 -0.867658 -0.045421 0.447811 0.743672 -1.885788 0.201535 -1.489728 -1.495929 -1.483672 0.750493 -1.751541 -0.589909 -0.212480 -0.072300 -0.046459 0.913018 -0.167476 -0.817183 -0.396138 -1.309057 -0.439397 0.115094 1.514591 0.664688 2.700612 3.406886 -1.409190 0.852563 0.049988 -1.114517 4.536777 -1.863203 -0.024626 0.129427 2.339211 1.152220 0.924290 1.966170 -0.909721 -0.171987 -2.468348 0.502727 1.214852 0.873344 -3.537054 -1.305978 -3.465088 -0.196098 -0.312226 3.272279 -0.389066 4.446888 -0.941028 0.564114 -4.377559 0.208303 1.460516 -0.130195 1.374259 1.046308 -1.944848 -2.785213 -0.649044 -1.935348 0.352608 -0.261293 -1.182737 -1.502575 -0.656972 0.767786 -1.750432 0.886514 2.270403 -0.776680 1.436110 -0.154332 -0.067488 -1.066484 -0.425637 0.900347 0.524545 -1.274273 2.016875 0.103945 4.257376 -0.371567 2.139904 -1.292835 1.846978 -0.914082 -2.316957 -1.311088 2.597382 2.166179 0.502740 0.775587 0.445939 -0.318685 2.097560 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = 0.008972 0.213030 0.374333 0.276048 -0.130329 -0.423624 -0.063511 -0.244120 0.121514 -0.007514 0.176997 -0.029515 0.214099 -0.035034 -0.031916 -0.110479 0.130499 0.184860 0.014704 -0.084531 -0.189697 0.276623 0.069380 -0.303760 0.100858 -0.175569 0.342219 0.205107 0.133719 0.392110 -0.040116 0.022026 -0.026605 0.186156 -0.214031 -0.173158 -0.055482 0.147441 -0.156272 0.034684 0.054621 0.060466 0.247434 0.108871 0.019455 0.353918 -0.021891 0.069589 -0.127930 -0.063681 -0.073949 0.019590 -0.101619 0.240745 -0.219991 0.013669 0.198231 -0.003753 0.085202 -0.351196 0.121821 0.033714 -0.119446 -0.046195 -0.336571 -0.050317 -0.103938 -0.341760 0.004837 -0.043965 0.125357 0.047960 -0.020808 -0.221834 -0.338535 0.052305 0.100278 0.161219 0.209130 0.025276 -0.061643 -0.022983 -0.237048 -0.229962 0.132035 -0.027513 0.180286 0.208156 -0.052687 -0.312496 0.080863 0.059418 0.094057 0.172120 0.123731 0.196445 -0.146693 0.022780 -0.041352 -0.333734 0.018365 -0.115565 0.064734 0.090578 0.020845 0.030635 0.045567 0.185402 0.032922 -0.221815 0.155299 -0.166162 -0.141341 0.242868 0.044681 -0.161609 0.018876 -0.068837 0.034838 0.311370 0.003112 -0.022106 0.071932 0.147602 0.066698 -0.178971 -0.007092 0.038459 0.027368 0.152553 0.174862 -0.180121 -0.159684 0.029594 -0.204458 -0.402704 0.024788 0.104175 0.182362 -0.154831 -0.288848 0.339462 -0.266606 0.029098 0.161445 0.188576 0.158181 -0.051042 -0.163795 0.123315 0.353403 -0.158837 0.130500 -0.069234 -0.307239 0.256241 0.076545 0.106046 -0.135894 -0.163648 0.123578 -0.067306 0.140257 0.314690 0.068475 0.056562 0.241213 -0.010910 -0.222441 -0.299421 -0.268941 0.019684 0.332944 0.081673 0.497516 -0.203291 -0.054860 -0.064392 0.236927 -0.144597 0.007757 -0.018364 -0.042104 0.138399 -0.635215 -0.350029 0.385301 0.166117 0.111181 -0.069340 0.045583 0.083193 0.154500 -0.235958 -0.150819 0.008331 0.011728 -0.076881 -0.161210 -0.001576 -0.275578 0.051260 0.132140 0.051085 0.169755 -0.153804 -0.130124 -0.279191 -0.246353 -0.296817 0.022585 -0.278380 0.071025 0.118869 -0.052164 -0.057223 0.071503 -0.004238 -0.140984 0.059037 -0.110666 -0.040892 -0.070060 0.172278 0.028588 0.355531 0.270161 -0.064659 -0.001128 0.162357 -0.215603 0.750043 -0.206219 0.073835 0.038787 0.368495 0.074347 0.143958 0.228387 -0.101410 -0.061519 -0.396313 -0.044866 0.216569 0.026867 -0.335301 -0.088542 -0.343039 -0.018946 -0.078129 0.421958 -0.058569 0.456976 -0.058187 0.074426 -0.323140 0.043309 0.138171 -0.081198 0.192468 0.174039 -0.224135 -0.347546 -0.084776 -0.224697 0.045232 -0.132493 -0.194707 -0.087498 0.119863 -0.192640 -0.105225 0.135650 0.310760 -0.121521 0.096254 -0.172146 0.001159 -0.126753 -0.093515 0.195671 -0.013614 -0.193473 0.141428 0.052244 0.446732 0.047456 0.248515 -0.182979 0.032432 -0.021712 -0.181730 -0.191770 0.329642 0.130487 0.098699 0.209349 0.153691 0.035049 0.208697 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.104808 0.225037 0.200017 0.131034 -0.142934 -0.372170 -0.009471 -0.254544 0.003465 -0.025823 0.108082 -0.073265 0.170301 -0.001192 -0.025616 -0.011642 0.109893 0.234107 0.019273 -0.086330 -0.248850 0.033842 -0.115665 -0.080723 0.080050 0.059422 0.261804 0.166181 0.055105 0.187722 0.033847 0.004823 -0.091010 0.091221 -0.098767 -0.114550 -0.019226 0.140525 -0.141583 0.055892 -0.049503 -0.111971 0.147075 0.071609 -0.029875 0.290120 -0.032422 0.117683 -0.065164 -0.021225 -0.032138 -0.031027 -0.046436 0.139966 -0.182119 -0.122918 0.137723 0.093954 0.120203 -0.091549 0.073511 -0.114368 -0.099044 -0.015850 -0.240358 -0.048610 -0.111203 -0.327721 -0.039082 0.010553 0.049430 -0.012189 -0.063067 -0.047254 -0.255704 -0.047419 0.117741 0.100183 0.170979 -0.003212 0.098097 -0.079543 -0.209959 -0.150561 0.145017 -0.010377 0.201505 0.166898 -0.124270 -0.182395 0.094806 0.052321 0.196627 0.077665 0.151312 0.105400 -0.210979 0.023760 -0.099269 -0.418312 0.083653 -0.012364 0.090674 -0.059523 -0.002690 0.025046 0.038699 0.133094 0.032290 -0.168988 0.055448 -0.179144 -0.025624 0.193676 0.071955 -0.165363 -0.003936 -0.114057 0.025336 0.131179 0.101347 -0.062225 0.015931 0.076629 0.055257 -0.149732 -0.118207 -0.009626 -0.063581 0.139856 0.102797 -0.107438 -0.114149 0.058024 -0.258286 -0.289731 0.027230 0.005802 0.103080 -0.185203 -0.092029 0.210047 -0.233907 -0.113857 0.064282 0.186091 0.093946 -0.038912 -0.076454 0.015058 0.073042 -0.094267 0.100668 0.024480 -0.115843 0.004096 0.175565 -0.030665 -0.055058 -0.198765 0.039103 0.039023 0.042705 0.171421 0.068260 0.007153 0.156201 0.034508 -0.348880 -0.153230 -0.083183 0.087097 0.346229 0.010797 0.186285 -0.172998 -0.035894 0.047758 0.184613 -0.127739 -0.002581 0.010918 -0.024572 0.130371 -0.251172 -0.190736 0.139136 -0.033812 0.095952 -0.123125 -0.085481 0.020380 -0.034353 -0.182416 -0.103819 -0.051892 -0.054190 -0.214930 -0.222116 -0.000609 -0.195889 0.134567 0.122021 0.100675 0.095822 0.001698 0.027308 -0.229033 -0.056987 -0.222739 0.030588 -0.089475 0.130514 0.107070 -0.041224 -0.006518 0.020822 -0.038948 -0.089885 0.028955 -0.065301 0.035631 -0.052001 0.080415 -0.020840 0.402928 0.081062 -0.082421 -0.031099 0.053403 -0.168829 0.402110 -0.077635 0.150231 0.036654 0.293457 0.000434 0.064707 0.263870 -0.094996 -0.126304 -0.276495 -0.282617 0.190661 0.026709 -0.006550 0.016152 -0.280806 0.032697 -0.129818 0.324679 -0.070321 0.191987 -0.010969 0.103059 -0.025031 0.049491 0.012988 -0.155518 0.126554 0.089986 -0.139357 -0.091345 -0.052363 -0.213679 -0.166164 -0.062670 -0.020844 -0.045148 0.148126 -0.262191 0.010735 -0.011336 0.085652 -0.080106 0.011217 -0.167988 0.036936 -0.011047 -0.010573 0.275167 -0.083604 -0.178208 0.075436 0.130917 0.378623 0.189383 0.127256 -0.060444 -0.094712 0.048756 -0.089193 -0.170226 0.208327 0.096228 0.108760 0.111794 0.161924 0.102531 0.117190 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.212423 0.284122 1.207304 1.257971 -0.930751 -1.608166 -0.297602 -1.345374 0.856273 0.272786 0.998780 0.241248 0.919907 -0.585834 -0.142997 -0.294601 0.798231 0.353500 -0.228474 -0.584777 -0.672452 1.465709 0.231870 -1.055207 0.290362 -0.666270 1.207463 0.750034 0.486877 1.182159 0.244572 0.189191 -0.302913 0.569388 -0.600246 -0.094494 -0.466853 0.523873 -0.652026 -0.342279 0.600256 -0.297747 1.250328 0.270012 0.629795 0.406938 0.572551 0.077806 -0.791154 -0.469745 -0.459969 0.299858 -0.467483 0.745321 -0.573453 -0.005480 0.732087 -0.147527 0.236304 -1.056583 0.320123 -0.171092 -0.779500 -0.174455 -1.038661 -0.017034 -0.362526 -1.054414 -0.037187 -0.651656 0.436560 -0.040682 -0.265979 -0.857365 -1.476298 -0.023285 0.332641 0.256655 0.802114 0.749689 -0.309905 -0.551760 -0.992638 -0.747463 0.725239 -0.003619 0.342056 0.812114 -0.671988 -0.843864 0.212103 0.205856 0.466750 0.533667 -0.439155 0.403149 -0.040106 -0.276569 -0.325931 -0.987984 0.357065 -0.438186 0.296509 0.319022 -0.397904 0.204332 0.000263 0.184012 -0.268002 -0.826167 0.251617 -0.772984 -0.149313 1.081565 -0.162924 -0.754189 -0.403623 -0.170538 0.191173 0.893834 0.131789 0.040297 0.855523 0.530002 0.467925 -0.974786 -0.100786 0.424032 0.355376 0.463229 0.366965 -0.434226 -0.563677 0.271643 -0.715331 -1.615943 -0.318691 0.579003 0.899846 -0.249614 -0.839003 0.903985 -0.682444 0.456311 0.795209 0.536800 0.467716 0.109223 -0.823849 0.347195 1.284669 -0.347817 0.513534 -0.382326 -1.111850 1.306649 0.012354 0.342388 -0.209384 -0.531111 -0.050398 -0.293124 0.522339 1.081312 -0.108040 0.086290 0.367133 0.254114 -0.631930 -1.190529 -1.576152 -0.010991 1.252083 1.099531 1.961528 -1.051573 -0.099149 -0.066758 0.625523 -0.272191 -0.414306 0.301046 -0.470596 0.626899 -2.485399 -1.448746 1.797158 0.873389 0.571560 -0.061468 0.544495 0.131945 0.103579 -0.757965 -0.709886 0.330944 0.521123 -0.419261 -0.008576 0.147962 -1.256732 -0.235282 0.285221 0.249312 0.549520 -0.880734 0.255395 -1.173035 -0.553053 -1.029894 0.467042 -0.731833 0.011577 0.085449 -0.108760 -0.082882 0.383708 0.123031 -0.372619 -0.270664 -0.371816 -0.116012 -0.200968 0.618243 0.153037 1.344612 1.561374 -0.634166 0.324419 0.140684 -0.677684 2.470105 -0.894225 0.228960 0.114014 1.206411 0.506862 0.408112 0.977228 -0.453053 -0.024661 -1.150716 -0.124559 0.704501 0.395523 -1.659944 -0.413508 -1.720713 -0.031130 -0.388234 1.496056 -0.279786 1.849510 -0.626872 0.247354 -1.729638 0.159126 0.696804 -0.125000 0.816830 0.473148 -0.940894 -0.850467 -0.305497 -0.913757 0.311150 -0.177888 -0.471606 -0.640133 0.042689 -0.118229 -0.753338 0.345232 1.055617 -0.715336 0.632919 -0.535355 0.090238 -0.371400 -0.210272 0.470393 0.191837 -0.641333 0.884742 0.100913 1.893692 0.200531 0.905198 -0.506606 0.735176 -0.462669 -1.227777 -0.719699 1.156398 0.866507 0.244003 0.503909 0.379245 0.104440 0.858453 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__enable_if<__is_scalar::__value, void>::__type std::__fill_a1(int*, int*, int const&) = -0.600000 0.439194 1.859371 2.106361 -1.658313 -2.087431 -0.555752 -1.525060 0.965269 0.218952 1.479860 0.034978 0.871118 -0.549936 -0.234073 -0.866840 0.952914 0.451541 -0.544511 -0.802337 -1.174311 1.438516 0.454140 -1.988314 0.458640 -0.812691 1.677054 1.174583 0.152069 1.225528 0.246421 0.238189 -0.531052 0.917324 -0.958456 -0.263297 -0.413994 0.601778 -0.709208 -0.578798 1.093605 -0.106688 1.658897 0.071373 0.916101 0.947197 0.809513 0.105328 -1.823720 -0.513636 -0.367306 0.558731 -0.534831 1.055186 -0.098182 0.463026 1.072461 -0.925700 0.177550 -1.831839 0.554599 -0.082516 -0.875747 -0.195800 -1.436855 -0.111312 0.034795 -1.585664 0.508558 -1.043314 0.448571 -0.308676 -0.344897 -1.104618 -1.063492 0.248175 0.622420 0.506925 0.906146 1.024511 -0.203615 -0.526527 -1.227479 -0.830299 0.281110 -0.495264 0.601002 0.842045 -0.474342 -1.083163 0.832829 0.000146 0.256185 0.878138 -0.629772 0.594814 -0.069728 -0.502326 -0.865851 -1.137323 0.309613 -0.596900 0.616735 1.099690 -1.307827 0.393666 0.091639 0.402601 -0.142296 -1.188078 0.209731 -1.085602 0.344915 1.313721 -0.409048 -1.150533 -0.311431 -0.373435 0.183402 1.267432 -0.079851 0.005146 1.244776 0.787964 0.609976 -1.249580 -0.074417 0.252049 0.626632 0.677774 0.815558 -0.934706 -0.615892 0.213053 -0.989240 -2.125090 -0.248235 0.470966 1.318232 -0.048812 -1.734280 1.257069 -0.940098 0.993292 0.642782 1.261258 0.457949 -0.046464 -1.123050 0.288856 1.547707 -0.449424 0.743973 -0.337972 -1.946145 1.579315 0.390382 0.537960 -0.000132 -0.624155 0.116146 -0.693803 0.558551 1.395549 0.111585 -0.040332 0.803502 0.200309 -0.799329 -1.847002 -2.191287 0.230675 1.190091 1.400374 3.076528 -1.699399 -0.554611 -0.389594 1.282191 -0.642742 -0.594748 0.184635 -0.403331 0.765539 -3.036971 -2.192738 2.361318 1.382997 0.441622 -0.093427 1.273312 -0.459726 -0.015028 -1.141811 -1.239716 0.442936 0.770972 0.098528 0.286099 0.222407 -1.723866 -0.181507 0.379349 0.466508 1.160696 -1.497846 -0.231593 -1.425532 -0.934212 -1.420695 0.366395 -0.893198 0.018703 0.321619 -0.045807 0.015256 0.624297 0.118758 -1.144426 -0.711969 -0.741225 -0.263141 -0.138451 1.122933 0.276215 2.247679 1.994620 -0.675385 0.774414 0.354314 -0.850907 3.907928 -1.397249 0.247968 0.096119 1.856851 0.603267 0.403069 1.354857 -0.584953 -0.121609 -1.465955 0.057091 0.370433 0.422473 -3.278328 -0.707776 -2.520004 -0.146293 -0.401772 1.673121 -0.263517 2.671396 -0.379882 0.039392 -2.743399 0.022497 1.283606 -0.181436 1.054565 0.750913 -1.524794 -2.046605 -0.204301 -1.164219 0.702729 -0.244823 -0.640607 -0.865390 0.070212 0.057149 -0.569213 0.548555 1.997803 -0.908048 0.592220 -0.209611 -0.018149 -0.019244 -0.901746 0.535828 0.226190 -0.863358 1.642758 0.203514 3.039810 0.325974 1.109981 -0.740690 0.774206 -0.322598 -1.412519 -0.997724 1.342244 1.147393 0.507067 0.560178 0.602934 -0.451373 1.188794 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__alloc_traits, int>::_S_select_on_copy(std::allocator const&) = -0.046450 0.330090 0.774083 0.449955 -0.648675 -0.891615 -0.155986 -0.992784 0.437536 0.201047 0.549511 0.153770 0.600670 -0.288907 -0.119551 -0.149857 0.521703 0.222863 0.054291 -0.361748 -0.391464 0.717987 -0.046717 -0.231765 0.145978 -0.349863 0.790706 0.262746 0.465593 0.749883 0.208103 -0.013538 -0.423386 0.300470 -0.048906 -0.081090 -0.106280 0.371851 -0.501669 -0.027866 0.108130 -0.482186 0.692328 0.155346 0.344285 0.158007 0.067192 0.146683 -0.377988 -0.279561 -0.183666 -0.004718 -0.356955 0.427360 -0.194265 -0.314434 0.220632 0.242635 0.225104 -0.363604 0.108884 -0.488336 -0.270519 0.007991 -0.633396 0.002856 -0.597478 -0.641114 -0.170773 -0.365449 0.218379 0.072103 0.071955 -0.130198 -1.072995 -0.019370 0.227976 0.191624 0.543293 0.420176 -0.034341 -0.350536 -0.591813 -0.548524 0.366501 0.232243 0.177448 0.352543 -0.572403 -0.340141 0.168795 0.166424 0.396519 0.297648 -0.280391 0.237964 -0.489609 -0.102867 -0.099200 -1.159529 0.183123 -0.252763 0.228615 -0.058905 -0.279812 -0.038579 -0.111502 0.119221 -0.098324 -0.488347 0.260688 -0.435845 -0.127154 0.779211 -0.064129 -0.427929 -0.351451 -0.144378 0.191321 0.368126 0.176184 0.039022 0.270324 0.348876 0.400952 -0.619776 -0.197916 0.350231 0.063178 0.246310 0.212927 -0.175242 -0.331002 0.248565 -0.506281 -0.969373 -0.178008 0.259816 0.479159 -0.236573 -0.108873 0.155126 -0.578681 0.123601 0.504933 0.354877 0.302492 0.067289 -0.438891 0.211783 0.543194 -0.199486 0.324815 -0.094572 -0.399708 0.591995 -0.001917 0.214391 -0.273345 -0.244254 -0.079415 -0.135027 0.113811 0.633452 -0.044736 0.138390 0.087240 0.151732 -0.564002 -0.696600 -0.763868 0.047329 1.107402 0.534037 0.644754 -0.609467 0.009493 0.180644 0.455799 0.083624 -0.330378 0.285502 -0.212232 0.430794 -1.286394 -0.782882 0.878071 0.554979 0.269734 -0.169465 -0.036833 0.226580 -0.340325 -0.583504 -0.453002 0.125125 -0.120170 -0.697769 -0.393159 0.183861 -0.681752 0.018461 0.308163 0.201210 0.542613 -0.303750 0.323202 -0.378439 -0.088102 -0.683767 0.530586 -0.287598 -0.095749 0.085569 -0.041018 0.112528 0.229351 0.026678 -0.134949 0.055286 -0.189757 0.014541 -0.074722 0.264501 -0.084329 0.920800 0.655700 -0.316224 -0.142085 0.053261 -0.465403 1.313458 -0.494389 0.274782 0.109871 0.536315 0.125782 0.286789 0.676577 -0.341439 -0.274014 -0.704448 -0.501425 0.307960 0.342708 -0.575895 -0.478879 -0.921437 0.220985 -0.242264 0.784076 -0.110195 1.008547 -0.330603 0.230283 -0.660674 0.091152 0.363439 -0.168667 0.694154 0.242222 -0.467614 -0.132264 -0.261313 -0.655612 0.061296 -0.086568 -0.154519 -0.249220 0.127612 -0.091620 -0.217024 0.052828 0.249773 -0.405997 0.551258 -0.259929 0.044669 -0.373508 0.071900 0.465403 0.004307 -0.410155 0.612020 0.198124 1.077337 0.204587 0.283929 -0.141271 0.181326 -0.154923 -0.669361 -0.432511 0.765164 0.519152 0.361310 0.058770 0.181387 0.145947 0.384106 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy_a<__gnu_cxx::__normal_iterator > >, int*, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*, std::allocator&) = -1.069115 0.140540 2.588583 0.266148 -1.497201 -2.203432 -0.891423 -3.993830 1.701969 1.461968 3.096063 0.170619 2.092673 -0.843416 0.157056 -0.050728 1.648305 -1.222973 0.782803 -1.037406 -0.555078 3.015634 0.306344 0.804354 0.370398 -2.227999 1.759344 0.113288 1.130272 2.130787 0.818590 -0.140607 -1.205872 0.594747 0.457552 1.305147 0.422564 1.190686 -0.735006 -0.015235 0.318216 -1.668589 1.876679 0.110656 2.160284 -0.197427 0.461193 0.062457 -1.350429 -1.595772 -0.449905 0.463065 -1.692204 0.754445 0.077534 -1.168290 0.276281 0.224255 -0.156902 -1.235322 -0.152449 -1.835688 -1.028902 0.447178 -1.227239 0.684529 -1.873027 -0.642465 -0.376799 -1.466368 1.059969 0.405452 0.471337 1.026770 -3.127013 0.302073 0.591616 -0.113623 1.124928 0.775778 -0.688518 -0.644559 -1.720090 -2.011458 1.867663 1.724478 0.319615 0.178464 -2.366955 0.586762 -0.181025 0.302441 0.858629 1.347368 -1.859253 0.085848 -0.131773 -1.008620 -0.617118 -3.217513 0.545147 -1.493005 0.676288 0.652693 -1.034184 -0.673668 -1.538127 0.330721 -1.245622 -1.890691 0.995428 -1.241430 -0.198990 2.213709 -1.370597 -0.525120 -1.972739 -0.291929 1.225230 0.926221 0.720615 0.631312 1.596588 1.297156 1.492769 -1.915164 -0.954395 1.477164 1.413808 0.231326 0.097193 -1.004445 -0.970183 0.983818 -1.751844 -2.990648 -1.801329 1.130119 1.791965 -0.403246 -0.400134 0.354168 -1.166541 1.222816 2.518900 0.648439 0.466493 0.804893 -1.719808 0.816530 2.001225 -0.802337 1.444925 -0.458771 -0.917355 2.163449 -1.111575 0.895278 0.243809 0.369992 -0.976053 -1.162012 -0.026120 1.922075 0.422804 1.404235 -0.984891 0.907526 -0.685934 -1.974828 -3.486768 -0.353495 3.343340 1.580002 1.824791 -2.013762 -0.324419 0.720479 1.889140 0.844350 -2.090808 0.909623 -0.857980 1.067442 -3.994256 -2.500580 3.366187 2.899220 1.551725 0.084262 0.581421 1.368604 -2.337420 -1.103383 -1.619853 1.575191 -0.651488 -2.962218 -0.922680 0.648724 -2.201463 -0.776554 -0.389726 0.597379 1.079979 -0.531444 1.628359 0.022773 -0.172051 -0.750822 1.933595 -0.675691 -1.605314 -0.603886 -0.071870 0.711392 0.787343 -0.384448 0.536696 0.564064 -1.556744 -0.088431 0.832116 0.652485 0.125642 3.210353 2.663715 -1.106217 -0.382137 -0.861655 -1.052881 2.181615 -1.285639 0.191862 -0.104017 0.804545 0.733547 0.736830 2.079531 -0.904850 -1.725011 -1.833933 -0.709995 0.634367 1.502213 -0.871093 -2.557452 -3.230642 0.746508 -0.010034 3.039970 0.138290 3.614974 -0.918451 0.994332 -2.891972 0.259949 0.871485 -0.277729 1.726886 0.163213 -1.093464 -0.364442 -0.795978 -2.307123 -0.764155 0.038084 -0.591377 -1.085331 -1.309289 1.470979 -1.115917 -0.141772 0.027869 -0.313613 2.292671 0.908083 -0.329603 -1.958150 1.082099 1.467536 0.100502 -1.145197 2.266648 0.562142 3.929603 -0.486659 0.697513 -0.303586 1.352853 -0.933179 -2.001383 -0.666869 2.288354 2.663745 0.866429 -0.613215 -0.088383 0.122013 1.170144 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = -0.111479 0.312595 0.841681 0.485579 -0.681209 -0.911846 -0.172525 -1.040688 0.490488 0.244305 0.620986 0.181015 0.662073 -0.333594 -0.126746 -0.213352 0.565047 0.194848 0.065578 -0.375042 -0.369733 0.799760 -0.013372 -0.261445 0.152215 -0.406611 0.859782 0.247234 0.484736 0.841341 0.217449 -0.006573 -0.460812 0.313572 -0.038534 -0.065583 -0.104704 0.404676 -0.497848 -0.060189 0.148537 -0.513229 0.737467 0.168009 0.392815 0.140557 0.042707 0.123419 -0.420603 -0.331114 -0.173643 -0.048621 -0.403817 0.457587 -0.185906 -0.323950 0.238750 0.260233 0.231010 -0.462688 0.138606 -0.528518 -0.275626 0.010233 -0.664367 0.013795 -0.641344 -0.648011 -0.181870 -0.448486 0.232436 0.083249 0.107285 -0.136666 -1.135170 -0.005805 0.233913 0.176577 0.574121 0.479872 -0.089087 -0.380756 -0.624860 -0.593256 0.382510 0.250718 0.162367 0.376114 -0.612604 -0.338313 0.185652 0.184996 0.398302 0.330760 -0.321885 0.247605 -0.481319 -0.116507 -0.052474 -1.207529 0.189141 -0.298889 0.227155 -0.000854 -0.334947 -0.052933 -0.143740 0.132768 -0.119677 -0.519323 0.314039 -0.465607 -0.152814 0.811696 -0.097600 -0.448477 -0.401550 -0.138344 0.255491 0.401911 0.160969 0.062247 0.284503 0.364156 0.446202 -0.671314 -0.185694 0.416130 0.096764 0.231858 0.199210 -0.185814 -0.341555 0.274287 -0.543357 -1.030498 -0.225426 0.285436 0.527835 -0.229636 -0.149919 0.176540 -0.612358 0.150232 0.576617 0.380043 0.319916 0.101385 -0.487131 0.219932 0.587510 -0.216646 0.340850 -0.087897 -0.454169 0.668646 -0.022464 0.249661 -0.305075 -0.219350 -0.073283 -0.176664 0.131790 0.692404 -0.053204 0.185256 0.051512 0.163423 -0.554650 -0.756627 -0.855406 0.019774 1.191988 0.616411 0.707106 -0.654029 0.027355 0.190763 0.496204 0.113360 -0.377890 0.295977 -0.209899 0.451910 -1.444999 -0.852634 0.967095 0.624200 0.295823 -0.160980 -0.034808 0.243311 -0.335305 -0.601455 -0.504247 0.156094 -0.133877 -0.704733 -0.388932 0.201163 -0.730546 -0.017634 0.323567 0.193662 0.590034 -0.374520 0.330233 -0.372626 -0.077423 -0.714371 0.579912 -0.316877 -0.145953 0.059299 -0.040797 0.137443 0.244021 0.040336 -0.132086 0.063052 -0.206392 -0.011361 -0.070775 0.278051 -0.083932 0.962202 0.723379 -0.353745 -0.217017 0.043030 -0.494294 1.426074 -0.552637 0.256487 0.108552 0.564317 0.178551 0.310407 0.715404 -0.363569 -0.276868 -0.753181 -0.505028 0.322739 0.378661 -0.686965 -0.548891 -0.987009 0.255729 -0.258793 0.844307 -0.103298 1.123571 -0.360794 0.235628 -0.732741 0.089117 0.425182 -0.167863 0.743161 0.251616 -0.493119 -0.170809 -0.286037 -0.701194 0.127936 -0.093117 -0.167260 -0.265523 0.115436 -0.055791 -0.239222 0.076435 0.262872 -0.429209 0.617909 -0.232757 0.037700 -0.429936 0.084589 0.430103 0.027013 -0.428604 0.680198 0.205005 1.115233 0.172411 0.295974 -0.156884 0.254547 -0.214775 -0.731018 -0.451363 0.817574 0.579499 0.392662 0.056794 0.182786 0.130744 0.415395 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.080429 0.125947 2.581434 0.225199 -1.447035 -2.155403 -0.886619 -3.961013 1.685763 1.467498 3.106585 0.147303 2.082955 -0.810808 0.178694 -0.056975 1.650700 -1.240835 0.794131 -1.020018 -0.504175 2.993083 0.307810 0.828236 0.384721 -2.237734 1.707930 0.095190 1.101909 2.114419 0.808228 -0.136054 -1.196428 0.564463 0.458996 1.306692 0.456701 1.161024 -0.722628 -0.006297 0.301778 -1.625570 1.843485 0.106399 2.147103 -0.196818 0.429107 0.052236 -1.332270 -1.598963 -0.424119 0.461808 -1.653398 0.748248 0.101830 -1.155476 0.258727 0.210645 -0.171053 -1.232305 -0.141613 -1.803496 -1.004255 0.448343 -1.192579 0.686113 -1.853872 -0.592094 -0.354362 -1.480321 1.048064 0.383156 0.467101 1.032931 -3.086139 0.311140 0.580687 -0.127977 1.084580 0.753096 -0.695592 -0.615133 -1.700020 -1.995753 1.848986 1.742587 0.306274 0.153354 -2.370084 0.601945 -0.186696 0.289761 0.830408 1.340330 -1.859821 0.077705 -0.104925 -1.020686 -0.596694 -3.171450 0.534980 -1.491105 0.658241 0.665838 -1.015902 -0.670335 -1.532337 0.360166 -1.228010 -1.868091 1.019544 -1.198387 -0.217888 2.192427 -1.374195 -0.515525 -1.986410 -0.282114 1.222897 0.922902 0.696650 0.637473 1.573857 1.280045 1.486026 -1.878136 -0.938994 1.479945 1.419290 0.204653 0.083280 -1.006411 -0.952037 0.982891 -1.758598 -2.949199 -1.825428 1.113570 1.801751 -0.399572 -0.403818 0.346401 -1.151271 1.227642 2.506837 0.628755 0.451444 0.808380 -1.711359 0.800673 1.984244 -0.814390 1.433516 -0.458573 -0.902315 2.113659 -1.089767 0.890323 0.249299 0.405562 -0.959956 -1.166039 -0.027284 1.906247 0.445913 1.415796 -1.014814 0.902658 -0.657864 -1.938357 -3.489512 -0.377329 3.277739 1.549590 1.798930 -1.976533 -0.342156 0.682415 1.892237 0.837244 -2.095709 0.900291 -0.852168 1.031104 -3.953752 -2.462480 3.340377 2.917676 1.555701 0.080756 0.588503 1.359023 -2.335760 -1.077206 -1.611335 1.588984 -0.662490 -2.941877 -0.908263 0.638866 -2.174182 -0.778066 -0.419225 0.582630 1.057547 -0.511438 1.625114 0.060038 -0.187210 -0.706091 1.921801 -0.665819 -1.612162 -0.614788 -0.080889 0.710602 0.784368 -0.404232 0.539959 0.592971 -1.572904 -0.106348 0.841990 0.643905 0.128633 3.171481 2.631431 -1.067959 -0.380817 -0.878991 -1.063067 2.136303 -1.272173 0.163310 -0.135447 0.753768 0.729949 0.729546 2.040050 -0.878864 -1.741406 -1.812605 -0.678087 0.606339 1.496859 -0.844446 -2.571357 -3.196944 0.747722 -0.009180 3.041651 0.162073 3.594392 -0.908795 0.993022 -2.877338 0.257979 0.858032 -0.269570 1.681132 0.138716 -1.076682 -0.387581 -0.760257 -2.309915 -0.778285 0.047017 -0.606545 -1.087455 -1.342732 1.511334 -1.098295 -0.140758 0.025719 -0.280932 2.293392 0.952929 -0.357045 -1.957880 1.086091 1.446684 0.099857 -1.132291 2.229358 0.563538 3.891311 -0.511568 0.687563 -0.300845 1.339373 -0.941262 -1.981268 -0.651499 2.248615 2.673327 0.864889 -0.625165 -0.107779 0.102744 1.149167 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.164296 0.029459 2.711332 0.159431 -1.316375 -2.121588 -0.911554 -4.133113 1.854406 1.575928 3.276642 0.170391 2.194871 -0.938138 0.218063 0.002605 1.691519 -1.371324 0.814672 -1.000785 -0.249369 3.199786 0.330161 0.880325 0.356061 -2.452091 1.546160 0.085250 1.213327 2.141679 0.809970 -0.149006 -1.153432 0.549680 0.416679 1.425899 0.582403 1.152355 -0.783358 -0.140531 0.224278 -1.545779 1.828142 0.049261 2.346081 -0.410306 0.495548 -0.034416 -1.300213 -1.670086 -0.441986 0.668724 -1.674804 0.742414 0.188919 -1.185086 0.177792 0.191916 -0.219461 -1.362752 -0.122179 -1.694816 -1.001583 0.430475 -1.109162 0.751349 -1.767921 -0.475235 -0.354856 -1.574915 1.097477 0.419168 0.572223 1.079670 -3.206264 0.378491 0.567882 -0.193045 1.080679 0.792444 -0.721442 -0.667948 -1.609476 -2.035686 2.005013 1.929018 0.238606 0.198255 -2.496297 0.724432 -0.278530 0.243568 0.784474 1.363208 -2.041463 0.038994 0.058775 -1.057040 -0.511706 -3.084398 0.517695 -1.599415 0.597809 0.727908 -0.875742 -0.628765 -1.627892 0.392237 -1.357699 -1.865755 1.129260 -1.151339 -0.311257 2.242621 -1.529384 -0.450239 -2.043579 -0.190441 1.202673 0.955216 0.633288 0.766081 1.584140 1.308511 1.560850 -1.949045 -0.911602 1.659821 1.614109 0.212188 0.004741 -1.089170 -0.928769 1.011282 -1.789893 -3.062949 -1.962138 1.216049 1.892710 -0.336821 -0.483041 0.307937 -1.065118 1.425717 2.624541 0.518226 0.419092 0.908373 -1.804949 0.834457 2.094707 -0.866503 1.516354 -0.460466 -0.847876 2.085484 -1.249859 0.982780 0.252857 0.489569 -0.922508 -1.260249 -0.044211 1.981358 0.519651 1.555620 -1.268415 0.952729 -0.609595 -2.065482 -3.721727 -0.546895 3.247407 1.528564 1.880548 -1.948001 -0.528207 0.650306 1.983865 0.786269 -2.185310 0.964952 -1.001953 1.072758 -4.040261 -2.564375 3.563676 3.208122 1.690548 0.131880 0.756813 1.453630 -2.468445 -1.014451 -1.538179 1.650184 -0.613982 -3.160388 -0.901839 0.633980 -2.247099 -0.942682 -0.514216 0.525784 0.877845 -0.350159 1.816270 0.206129 -0.188340 -0.571227 1.985127 -0.686708 -1.720276 -0.754073 -0.015787 0.750410 0.862610 -0.574855 0.603754 0.766624 -1.695540 -0.128762 0.883596 0.653395 0.233960 3.182030 2.784029 -1.028079 -0.180205 -0.951522 -1.108008 2.069532 -1.294901 0.074346 -0.176793 0.617109 0.765300 0.774489 1.971169 -0.912486 -1.761838 -1.874197 -0.648013 0.591261 1.592476 -0.749307 -2.793439 -3.154032 0.738174 0.051697 3.043803 0.174401 3.763059 -1.018183 1.019207 -3.143989 0.258241 0.906374 -0.254364 1.687578 0.145834 -1.088285 -0.599874 -0.758154 -2.322655 -0.955837 0.041313 -0.764291 -1.088069 -1.655111 1.861854 -1.276985 -0.119567 0.019543 -0.148276 2.478418 1.011129 -0.370295 -2.097172 1.224017 1.352782 0.141201 -1.162558 2.229015 0.534595 4.062075 -0.714084 0.720611 -0.385626 1.522129 -1.058046 -2.050300 -0.610476 2.331645 2.865195 0.869341 -0.729650 -0.188269 -0.024995 1.219581 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.467663 0.040729 3.924186 0.427947 -1.725028 -3.229321 -1.253122 -6.201715 2.856821 2.244358 4.850475 0.224861 3.247711 -1.504163 0.427031 0.403625 2.562392 -1.739794 1.036218 -1.412840 -0.259635 4.972029 0.380262 1.195224 0.503622 -3.406542 1.760111 0.433563 2.003399 2.790929 1.151302 -0.208706 -1.338875 0.734706 0.245892 2.029238 0.650998 1.590317 -1.487739 -0.494129 0.138118 -2.248158 2.718770 -0.050512 3.410631 -1.042290 1.356866 -0.191110 -1.814800 -2.278998 -1.025617 1.744431 -2.216148 1.115344 0.175581 -1.846010 0.322895 0.321382 -0.319980 -1.844662 -0.220921 -2.098330 -1.658300 0.401100 -1.492092 1.092767 -2.303477 -0.694908 -0.411677 -2.020812 1.639495 0.556413 0.686798 1.271453 -4.940854 0.567870 0.878965 -0.300535 1.512771 1.317898 -0.699276 -1.072830 -2.232905 -2.875750 3.390196 2.800856 0.383081 0.437616 -3.924119 1.005059 -0.573780 0.323308 1.100570 1.840732 -3.190160 0.204598 0.319978 -1.595186 -0.883748 -4.271132 0.704618 -2.386243 0.741303 0.872442 -0.768751 -0.576993 -2.315859 0.573868 -2.067170 -2.835009 1.487188 -1.550030 -0.747236 3.313566 -2.295750 -0.655400 -2.756200 -0.018422 1.312549 1.322522 0.951514 1.284324 2.395987 1.853045 2.269283 -2.835655 -1.195316 2.406356 2.486540 0.504535 -0.068426 -1.495576 -1.391360 1.435092 -2.541448 -4.676560 -2.908947 2.189995 2.871311 -0.377728 -0.774091 0.415187 -1.269648 2.350920 3.781124 0.510526 0.593613 1.399139 -2.595882 1.231151 3.159406 -1.391936 2.322017 -0.728784 -1.112979 2.934831 -1.890430 1.400471 0.392343 0.642937 -1.209668 -1.840170 -0.098192 2.970296 0.839958 2.068702 -1.988499 1.392577 -1.011195 -3.162481 -5.668931 -0.908155 4.396920 2.127246 2.954050 -2.654593 -1.208739 0.935669 2.654165 0.705128 -3.185222 1.543206 -1.871356 1.644367 -5.886180 -3.860055 5.435836 4.689673 2.539029 0.224129 1.476438 2.179750 -3.729039 -1.498230 -2.081378 2.449442 -0.464169 -4.957355 -1.290164 0.847951 -3.432454 -1.369340 -0.871077 0.637478 0.724977 -0.173451 3.054422 0.042826 -0.529731 -0.546432 2.890728 -1.096288 -2.337002 -1.258944 -0.021867 1.026724 1.436678 -1.066131 0.843119 1.114896 -2.683129 -0.262168 1.035164 1.040586 0.557625 4.714606 4.473688 -1.344584 0.610234 -1.400379 -1.804491 2.871851 -1.904467 -0.016654 -0.390059 0.797245 0.962506 1.238471 2.830949 -1.306382 -2.611780 -2.827402 -0.896569 0.946602 2.325764 -0.827851 -3.919584 -4.515552 0.820698 0.163259 4.445489 0.114193 5.475761 -1.841469 1.503499 -5.042498 0.418610 1.136907 -0.349252 2.483307 0.222931 -1.697159 -1.034693 -1.025174 -3.244844 -1.765756 0.121585 -1.411631 -1.674196 -2.873470 2.940023 -2.340980 -0.127761 0.110307 -0.154364 3.749534 1.264675 -0.541796 -2.960923 1.972261 2.140664 0.295127 -1.745699 3.046717 0.676035 6.419061 -1.113517 1.220680 -0.857584 2.216134 -1.556323 -3.059612 -0.898276 3.426991 4.450833 1.137705 -1.069874 -0.212072 -0.172534 1.941834 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -0.576952 0.258556 3.153074 0.415870 -1.237526 -2.380632 -0.897257 -5.188580 2.463303 1.751537 3.482272 0.179195 2.564629 -1.252814 0.005558 0.338227 1.876859 -0.905933 0.776618 -1.038595 -0.223373 4.092259 -0.235680 0.908581 0.337361 -2.917413 1.623456 0.388318 2.073248 2.168751 0.870158 -0.145154 -0.968053 0.611270 0.062351 1.211067 0.378524 1.251557 -1.508934 -0.490220 0.042204 -1.668395 2.082413 0.020377 2.494752 -0.996118 0.883643 -0.194834 -0.930732 -1.481177 -0.799297 1.302481 -1.418377 0.945388 -0.019798 -1.619166 0.061279 0.440970 0.006986 -0.808158 -0.036976 -1.472520 -1.225675 0.257283 -1.331374 0.748128 -1.869802 -0.692663 -0.396940 -1.548716 1.180335 0.429765 0.553481 0.503085 -4.377979 0.450766 0.712311 -0.294480 1.304851 1.219453 -0.219717 -0.945468 -1.828767 -2.267602 2.755773 2.660793 0.107802 0.468318 -2.979051 0.263067 -0.422932 0.270715 1.054585 1.534383 -2.468558 0.292592 -0.508980 -1.048181 -0.400417 -3.617042 0.563559 -1.874424 0.651084 0.271028 -0.500312 -0.106510 -0.805800 0.470671 -1.131979 -2.105479 1.017682 -1.125200 -0.340770 3.029140 -1.280499 -0.913489 -2.166128 -0.072589 0.607506 0.940238 0.698391 0.916589 2.003651 1.341717 1.890637 -2.311121 -0.985944 2.311349 1.401808 0.519014 -0.106717 -1.349266 -0.973389 1.015471 -1.720403 -3.823408 -2.082216 1.386521 2.088968 -0.896414 -0.164818 0.211866 -0.989341 1.652021 2.861940 0.122864 0.572344 1.118779 -1.896653 0.982696 2.602344 -0.910526 1.463077 -0.993385 -0.890858 2.063081 -1.236498 1.096715 -0.164373 0.499116 -0.799753 -1.418185 0.259954 2.402822 0.050333 1.432118 -1.440233 1.025527 -1.133868 -2.456313 -4.244660 -0.706231 3.396743 1.642509 2.405730 -1.986131 -0.967134 0.793049 2.045011 0.738612 -2.051727 1.557011 -1.706255 1.421584 -4.366006 -3.128496 3.943265 3.532064 1.889174 -0.173472 1.041559 1.591902 -2.830925 -1.426830 -1.572677 1.712290 -0.076255 -4.114632 -1.155679 0.625696 -2.611135 -0.955616 -0.365698 0.407823 0.809809 0.007925 2.547619 -0.326218 -0.423413 -0.983735 2.781442 -0.851813 -1.431117 -1.004202 0.088327 0.479410 1.355120 -0.947969 0.532387 0.982557 -1.590790 0.057785 0.712095 0.511055 0.003602 3.372669 3.418667 -1.029457 0.581143 -0.900575 -1.320161 2.599343 -1.463925 0.014178 -0.102601 0.360919 0.377591 1.196055 2.026622 -1.111699 -1.916230 -2.353287 -0.942881 0.553391 1.683593 -0.446423 -2.794852 -3.292118 0.475937 -0.185879 3.294950 0.353220 4.282814 -1.612732 1.222984 -3.751793 0.322261 0.977079 -0.319455 2.324259 0.251660 -1.418792 -0.555197 -0.747417 -2.392752 -1.620460 -0.068295 -1.420915 -1.456002 -2.180706 2.124031 -1.708836 -0.012971 0.297730 -0.145627 2.833728 0.074080 -0.283151 -2.380574 1.560841 1.581954 0.130488 -1.428885 2.011871 0.406862 4.912156 -0.881474 1.029770 -0.750734 1.649182 -1.339845 -2.679586 -0.802493 2.736400 3.109890 1.072616 -0.977958 -0.245389 -0.149854 1.532749 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > > std::__miter_base<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >) = -0.416125 0.096535 0.973938 -0.123751 -0.400821 -0.699061 -0.305148 -1.364960 0.510809 0.526812 1.109456 -0.036025 0.752097 -0.213779 0.085830 -0.071520 0.539356 -0.478572 0.360792 -0.322165 -0.057133 0.845178 0.055864 0.408600 0.151790 -0.825321 0.559987 -0.033952 0.315240 0.779399 0.262177 -0.079066 -0.495240 0.178206 0.218470 0.464717 0.402014 0.408336 -0.202693 0.073747 -0.036291 -0.464403 0.513391 0.032651 0.766863 0.089382 -0.106045 0.071603 -0.416553 -0.592439 0.021893 0.055977 -0.571920 0.246163 0.120920 -0.422212 0.001365 0.086957 -0.050636 -0.520013 0.004465 -0.643245 -0.217567 0.211165 -0.382011 0.236613 -0.620240 -0.189291 -0.136554 -0.573802 0.342017 0.135889 0.261733 0.560439 -0.963701 0.134926 0.213423 -0.035444 0.365426 0.109169 -0.246674 -0.175017 -0.524845 -0.718157 0.562065 0.703366 0.150984 0.044510 -0.806880 0.302576 -0.026078 0.057096 0.297621 0.487418 -0.533708 -0.027900 -0.084279 -0.319831 -0.142234 -1.182560 0.179698 -0.504617 0.228708 0.266506 -0.322824 -0.299774 -0.612041 0.248171 -0.418411 -0.577721 0.506544 -0.401462 -0.074142 0.728353 -0.511040 -0.131026 -0.715376 -0.156404 0.511454 0.345586 0.198401 0.209837 0.374690 0.446104 0.524896 -0.634052 -0.383115 0.539588 0.519179 0.048192 0.032787 -0.454507 -0.284726 0.366059 -0.751529 -0.981878 -0.642962 0.245684 0.615544 -0.182386 -0.176255 0.122736 -0.482380 0.367524 0.850321 0.279708 0.123428 0.266101 -0.601352 0.231585 0.580708 -0.319772 0.532532 -0.041897 -0.232718 0.491874 -0.314623 0.318655 0.089440 0.151918 -0.272381 -0.395940 -0.069989 0.643807 0.306332 0.636242 -0.439917 0.318312 -0.296987 -0.645526 -1.142697 -0.174278 1.182986 0.356339 0.476397 -0.661217 -0.185917 0.191618 0.850272 0.266155 -0.731101 0.254346 -0.221183 0.335255 -1.203016 -0.788716 1.081669 1.102105 0.593261 -0.023880 0.118592 0.472523 -0.890241 -0.325810 -0.498795 0.482560 -0.437632 -1.115994 -0.449018 0.207354 -0.702251 -0.248651 -0.155260 0.227145 0.355348 -0.008650 0.541180 0.241213 0.016581 -0.198150 0.598217 -0.169703 -0.585343 -0.186363 0.004636 0.307096 0.230875 -0.269512 0.188319 0.409864 -0.604149 -0.015763 0.378765 0.202223 0.055529 1.162986 0.693072 -0.298617 -0.250927 -0.330324 -0.392164 0.662572 -0.379287 0.089081 -0.057520 0.218247 0.249165 0.226119 0.676883 -0.316740 -0.685119 -0.659456 -0.377877 0.181795 0.535550 -0.087313 -1.043468 -1.019445 0.348700 -0.014524 1.044099 0.087842 1.222610 -0.178872 0.379504 -0.843039 0.084426 0.291440 -0.178802 0.491228 0.048787 -0.320650 -0.282337 -0.237172 -0.870924 -0.455556 -0.011763 -0.196425 -0.274021 -0.474347 0.579922 -0.239603 -0.095042 -0.073796 0.048301 0.794562 0.444994 -0.138583 -0.721714 0.406565 0.501975 -0.049104 -0.423769 0.732522 0.289904 1.317816 -0.199907 0.176745 -0.056378 0.394494 -0.276767 -0.564619 -0.213864 0.777580 0.937120 0.382187 -0.276618 -0.054726 0.001360 0.354156 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.022691 0.152123 0.555646 0.301595 -0.157164 -0.625360 -0.089776 -0.794376 0.406436 0.165579 0.505147 0.009253 0.497744 -0.280634 -0.009715 0.048399 0.337792 0.172591 0.023408 -0.170143 -0.077608 0.664422 -0.090853 -0.167035 0.101275 -0.333135 0.300395 0.281012 0.353493 0.442132 0.096376 0.024148 -0.082105 0.143683 -0.247277 0.007709 -0.013549 0.221331 -0.396873 -0.174405 -0.038655 -0.144616 0.382402 0.051646 0.306024 0.010687 0.202519 0.013026 -0.117961 -0.177988 -0.201677 0.298179 -0.135686 0.275489 -0.220412 -0.234026 0.168803 0.108622 0.103060 -0.327193 0.131445 -0.050256 -0.271544 -0.076920 -0.343340 0.047665 -0.152750 -0.351911 -0.054913 -0.191563 0.202429 0.031201 0.003367 -0.194042 -0.799783 0.014601 0.149110 0.051058 0.306416 0.228366 0.056494 -0.252828 -0.327214 -0.344485 0.545079 0.271898 0.145846 0.343486 -0.459123 -0.214725 -0.013853 0.054462 0.255000 0.187994 -0.196412 0.158388 -0.086918 -0.072726 -0.024510 -0.558651 0.134789 -0.242010 0.068223 0.009099 0.123444 0.144510 0.019115 0.200038 -0.146427 -0.363074 0.209480 -0.226559 -0.193966 0.526644 -0.103298 -0.259520 -0.184136 -0.008537 -0.018355 0.303260 0.085468 0.132815 0.224414 0.210759 0.253032 -0.414094 -0.115589 0.346278 0.197651 0.230985 0.046001 -0.256450 -0.205898 0.151223 -0.390933 -0.748100 -0.238240 0.277803 0.401570 -0.201868 -0.248866 0.287020 -0.233772 0.207025 0.381987 0.081310 0.154700 0.129221 -0.336261 0.152491 0.480176 -0.214485 0.263390 -0.118684 -0.229393 0.243592 -0.015426 0.119157 -0.130755 -0.151075 0.055764 -0.133558 0.139721 0.468250 0.070112 0.160494 -0.099790 0.160559 -0.433669 -0.522181 -0.673982 -0.117577 0.563928 0.218085 0.631320 -0.313041 -0.263359 0.034491 0.350463 -0.186276 -0.191202 0.206458 -0.355669 0.302937 -0.854965 -0.591047 0.743803 0.452151 0.366920 -0.090137 0.195020 0.214717 -0.219019 -0.273544 -0.180357 0.125761 0.142511 -0.637829 -0.236495 0.021695 -0.527377 -0.112488 0.074272 0.065918 -0.009464 0.039572 0.373062 -0.324615 -0.181452 -0.266992 0.313364 -0.262981 0.015927 -0.074079 -0.007747 0.005112 0.219555 -0.211550 -0.030153 0.183466 -0.248374 -0.004467 -0.056929 0.168608 0.081394 0.636532 0.619084 -0.151223 0.282098 -0.021534 -0.375597 0.772830 -0.267836 0.071378 -0.009761 0.281861 0.100412 0.219308 0.367411 -0.213187 -0.200257 -0.572972 -0.275735 0.298420 0.234378 -0.151966 -0.301533 -0.562713 0.000271 -0.143130 0.643360 -0.069842 0.738662 -0.348101 0.197227 -0.673560 0.089887 0.185812 -0.140247 0.343992 0.149730 -0.317005 -0.385774 -0.101099 -0.403401 -0.333465 -0.111390 -0.342407 -0.219756 -0.258131 0.143214 -0.372089 0.071624 0.258443 -0.072085 0.392689 -0.267753 0.020592 -0.286432 0.173349 0.259158 0.014842 -0.343992 0.218278 0.096012 0.954479 -0.021915 0.325709 -0.270571 0.258237 -0.231056 -0.463847 -0.244501 0.523550 0.507811 0.154126 0.060243 0.119525 -0.006691 0.349731 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.129172 0.087638 0.445059 0.202718 -0.145381 -0.618231 -0.107580 -0.585185 0.244117 0.126261 0.517794 -0.031458 0.416919 -0.192225 0.093577 0.053474 0.296336 0.018391 0.040214 -0.169028 -0.097521 0.450235 0.058677 -0.120386 0.105605 -0.205197 0.203926 0.242617 0.111167 0.386882 0.087549 0.019532 -0.087714 0.126381 -0.186007 0.126585 0.063815 0.200179 -0.206300 -0.080208 -0.034105 -0.113489 0.313265 0.035607 0.309486 0.168704 0.190536 0.061708 -0.225551 -0.238861 -0.148806 0.252554 -0.220388 0.198595 -0.183499 -0.140220 0.212236 0.011934 0.012077 -0.475305 0.076775 -0.084424 -0.265037 -0.034892 -0.259148 0.075990 -0.079985 -0.289936 -0.032442 -0.137206 0.214244 0.029945 -0.024729 0.014763 -0.494824 -0.003575 0.127576 0.073178 0.237366 0.051386 -0.046209 -0.172211 -0.262237 -0.293788 0.446607 0.090611 0.230040 0.274708 -0.378336 -0.032080 -0.023300 0.030551 0.193417 0.144609 -0.093028 0.075779 0.158542 -0.104036 -0.141810 -0.403440 0.133269 -0.184475 0.054475 0.132852 0.099060 0.009607 -0.279564 0.185329 -0.284731 -0.343634 0.217718 -0.248112 -0.200643 0.308666 -0.227421 -0.093899 -0.135807 -0.032647 0.118858 0.312447 0.108039 0.114697 0.151066 0.228545 0.145885 -0.325409 -0.129606 0.133904 0.329078 0.182453 0.076383 -0.221364 -0.221528 0.154977 -0.453392 -0.583368 -0.237735 0.287839 0.369757 -0.038879 -0.372188 0.352741 -0.220520 0.190894 0.341921 0.176334 0.088165 0.076726 -0.331379 0.131094 0.362798 -0.238048 0.344786 0.029580 -0.181238 0.230743 -0.062501 0.072553 0.068443 -0.176650 -0.005830 -0.091078 0.023402 0.360591 0.275583 0.214923 -0.082925 0.168866 -0.310707 -0.431799 -0.583940 -0.083032 0.517945 0.129660 0.514532 -0.309166 -0.226491 0.005896 0.356450 -0.243509 -0.266383 0.044103 -0.216568 0.223549 -0.741463 -0.458369 0.700143 0.390035 0.374772 0.017165 0.185050 0.223079 -0.196861 -0.136394 -0.140845 0.145621 0.020241 -0.481837 -0.186948 0.010433 -0.466751 -0.122511 -0.040946 0.116390 -0.106910 0.034633 0.239183 -0.181695 -0.149969 -0.072118 0.058025 -0.223058 -0.069939 -0.029431 -0.038061 0.084324 0.089894 -0.171169 0.020010 0.145269 -0.362729 -0.047592 0.010875 0.231765 0.212721 0.675930 0.506424 -0.148362 0.209962 -0.071762 -0.325446 0.526749 -0.190782 0.092982 -0.049574 0.361858 0.197709 0.097594 0.382938 -0.158515 -0.214016 -0.463823 -0.196102 0.349987 0.228098 -0.109999 -0.306911 -0.560930 0.038751 -0.031444 0.637817 -0.151696 0.601353 -0.193832 0.171648 -0.576970 0.086800 0.106820 -0.141969 0.135096 0.117257 -0.232839 -0.439761 -0.101804 -0.397537 -0.308111 -0.068844 -0.185720 -0.133672 -0.211693 0.118589 -0.329481 0.013929 0.162319 -0.017169 0.303087 0.025099 -0.010087 -0.210162 0.131366 0.282287 0.005980 -0.295763 0.268828 0.140571 0.864241 0.011247 0.277324 -0.198110 0.224400 -0.130217 -0.267563 -0.179537 0.436457 0.517246 0.063684 0.123793 0.145819 0.031394 0.294304 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.120370 0.162706 0.553223 0.706665 -0.494493 -0.947308 -0.123802 -0.668489 0.387381 0.116304 0.537252 0.127871 0.555673 -0.339793 -0.040027 -0.151925 0.449721 0.258541 -0.079209 -0.294110 -0.456317 0.778111 0.141864 -0.539753 0.162425 -0.160306 0.721893 0.396835 0.209371 0.709574 0.131582 0.111167 -0.152370 0.270065 -0.307479 -0.043790 -0.346084 0.357528 -0.288357 -0.164622 0.311854 -0.326322 0.675483 0.190979 0.242593 0.279084 0.319604 0.054441 -0.408273 -0.281385 -0.302538 0.046274 -0.326424 0.401569 -0.472456 -0.108810 0.510418 0.080143 0.148983 -0.640925 0.169945 -0.216496 -0.481653 -0.113394 -0.594437 -0.002503 -0.285373 -0.618228 -0.084431 -0.268092 0.256821 0.020540 -0.167329 -0.427025 -0.839348 -0.082562 0.182913 0.128999 0.455790 0.395034 -0.174490 -0.328294 -0.596007 -0.419147 0.508741 -0.127963 0.269164 0.483636 -0.408484 -0.429433 0.099895 0.194234 0.325899 0.236603 -0.088987 0.251623 0.014656 -0.107092 -0.140879 -0.621650 0.224872 -0.228650 0.128157 0.169230 -0.165665 0.067434 -0.092866 0.119057 -0.200234 -0.532551 0.146326 -0.482899 -0.205105 0.500530 -0.073895 -0.374949 -0.181196 -0.082272 0.203608 0.469507 0.163308 0.027686 0.390434 0.259893 0.225037 -0.521019 -0.070266 0.175689 0.179664 0.245881 0.149176 -0.136180 -0.358124 0.183946 -0.462714 -0.866932 -0.193939 0.409299 0.476466 -0.137728 -0.473551 0.607286 -0.405755 0.104142 0.484758 0.332987 0.277742 0.085057 -0.423622 0.178668 0.619593 -0.224956 0.292470 -0.109915 -0.581160 0.758563 0.037376 0.098978 -0.113062 -0.334475 -0.022134 -0.106456 0.261773 0.587066 -0.010430 0.057607 0.231173 0.158779 -0.411547 -0.614774 -0.771589 0.035554 0.851307 0.621071 0.987355 -0.561795 0.052410 0.074949 0.257223 -0.183820 -0.242476 0.090883 -0.200163 0.348043 -1.473871 -0.752426 0.949542 0.240161 0.334341 -0.009391 0.135537 0.156984 0.142672 -0.378084 -0.418976 0.176470 0.231942 -0.235796 -0.082161 0.060340 -0.700212 -0.083073 0.189218 0.135752 0.225179 -0.519018 0.113221 -0.721326 -0.255412 -0.503849 0.204310 -0.435078 0.027736 0.044469 -0.124394 -0.009529 0.130261 0.138197 -0.105487 -0.187242 -0.209756 -0.099711 -0.167635 0.323319 0.102897 0.814383 0.867789 -0.422192 -0.015880 0.057203 -0.413915 1.294746 -0.461971 0.142863 0.042928 0.781121 0.356040 0.205182 0.652777 -0.239852 -0.049111 -0.669021 -0.166734 0.564745 0.210629 -0.818446 -0.104471 -0.983743 0.023932 -0.228355 0.947938 -0.220277 0.937104 -0.369147 0.162416 -0.785714 0.114886 0.301531 -0.118141 0.421058 0.224208 -0.448702 -0.330351 -0.228403 -0.513268 0.198790 -0.111012 -0.161303 -0.314757 0.125844 -0.280417 -0.434204 0.164584 0.437530 -0.422399 0.315719 -0.286385 0.061243 -0.205289 -0.037267 0.308326 0.105372 -0.372460 0.483241 0.103711 0.984611 0.189934 0.479366 -0.283107 0.386018 -0.276427 -0.616044 -0.389861 0.636148 0.500437 0.092530 0.382695 0.310371 0.174850 0.462032 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp___GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/weighted-job-scheduling.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = -0.714495 0.336970 2.175772 0.231288 -1.331631 -1.691775 -0.680658 -2.748408 0.900444 0.885358 2.267833 -0.109058 1.213430 -0.177293 0.207422 -0.051409 1.049959 -0.873609 0.714608 -0.721589 -0.693301 1.886581 0.547735 0.465366 0.370027 -1.529551 1.331212 0.214501 0.853504 1.617425 0.290294 -0.356751 -0.843435 0.596831 0.319888 0.654340 0.303706 0.885435 -0.562582 0.480816 0.119450 -1.265105 1.449004 -0.167259 1.371445 0.272608 0.422728 0.149531 -1.403965 -1.006361 -0.351081 0.397412 -1.408012 0.720863 0.063622 -0.806036 0.022861 0.092291 -0.322533 -1.105727 -0.214602 -1.378740 -0.622233 0.355931 -1.119366 0.400001 -1.504657 -0.804823 0.045237 -0.714404 0.824193 0.542053 0.400463 0.943785 -2.076560 0.475901 0.693840 0.301762 0.611910 0.103977 -0.261840 -0.048154 -1.263569 -1.461015 0.951517 1.044892 0.556646 -0.300808 -1.527595 0.510148 0.171868 0.355783 0.338652 1.105117 -1.127778 0.355039 -0.632943 -0.721963 -0.834110 -2.763792 0.075139 -1.186632 0.728196 0.560353 -0.951850 -0.453040 -1.231336 0.585697 -0.702227 -1.729023 0.546590 -0.810440 -0.139441 1.560505 -0.987046 -0.287456 -1.193786 -0.186221 0.841637 0.594540 0.411071 0.428307 1.174822 1.132236 1.098807 -1.373290 -0.697101 0.544828 0.977749 0.390872 0.452613 -0.603883 -0.823657 0.482320 -1.270472 -2.357346 -1.049402 0.791705 1.291130 -0.357363 -0.386309 0.154566 -1.148895 1.193320 1.836504 0.759530 0.446960 0.426082 -1.181901 0.748325 1.587156 -0.784346 1.208029 -0.380626 -0.801700 1.700276 -0.661561 0.841538 0.215581 0.345639 -0.468369 -1.121055 -0.289465 1.541415 0.694644 1.009698 -0.287195 0.431416 -0.383058 -1.606380 -2.334453 -0.117839 2.411819 0.887871 1.373116 -1.541142 -0.429153 0.448786 1.362171 0.619910 -1.525789 0.405648 -0.445224 0.725833 -3.166225 -2.012602 2.328612 2.301007 0.941314 0.192730 0.482392 0.993850 -1.763052 -0.980781 -1.292966 1.206383 -0.819593 -2.174226 -1.081590 0.553808 -1.614891 -0.166538 -0.212835 0.487584 1.065041 -0.457904 0.627859 0.307309 -0.587970 -0.547365 1.274125 -0.865176 -1.252147 -0.150730 -0.133786 0.733044 0.539187 -0.323676 0.209315 0.352389 -1.446526 -0.061411 0.601810 0.756434 0.067675 2.535350 1.912596 -0.558208 -0.282355 -0.365132 -0.923409 1.856709 -1.069121 0.171240 -0.017614 0.714265 0.195970 0.648242 1.719281 -0.637742 -1.459517 -1.427193 -0.359550 0.361782 1.039544 -0.728548 -1.976038 -2.350207 0.563353 0.340071 2.231639 0.149685 2.703862 -0.328663 0.816485 -2.257104 0.036932 0.378221 -0.079949 1.525673 0.219617 -0.927524 -0.549554 -0.600695 -1.699295 -0.251186 -0.032221 -0.433085 -0.749337 -0.620402 0.728901 -0.471183 -0.065774 0.011732 -0.323964 1.773366 0.988585 -0.411485 -1.278260 0.535606 1.651375 0.141724 -0.863291 1.817556 0.517695 3.322804 -0.186867 0.425902 -0.340954 0.381786 -0.125852 -1.057023 -0.519167 1.812897 1.918034 0.860184 -0.488720 -0.087013 -0.006669 0.841287 -PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -1.246671 1.202870 4.863488 3.366932 -2.533287 -3.042381 -1.300533 -2.997852 1.514620 0.746805 3.173218 -0.367993 1.322391 0.552105 0.187415 -1.178430 1.790137 -0.201818 -0.554481 -1.404210 -1.226663 2.720806 1.778950 -3.699251 0.611280 -2.747145 2.304461 1.792266 0.502990 2.259020 0.296518 0.284343 -0.486176 1.905409 -2.429859 -0.635840 0.025201 1.110606 -1.188357 -0.704326 1.689190 1.034723 2.394307 -0.028909 1.706462 1.874365 1.859439 -0.083546 -3.112986 -1.065560 -1.108559 2.521350 -1.495898 1.915761 0.090461 1.293684 1.132176 -2.580150 -0.365450 -4.017638 0.883737 0.865402 -1.522280 -0.313478 -2.259576 0.265602 0.136901 -2.171066 1.371535 -0.964933 1.541046 -0.317081 -0.044375 -1.766668 -1.901670 1.137359 0.622696 1.133399 1.329831 0.396997 -0.732360 -0.007784 -1.557570 -1.985065 0.760102 -0.078096 0.998821 0.677088 -0.286300 -0.978425 0.772215 -0.194187 -0.749026 2.389313 -1.555081 1.597994 -0.002494 -1.073024 -2.289570 -1.367149 -0.038168 -2.172345 1.117067 2.655978 -1.727231 0.548095 -0.798079 0.968317 -0.525471 -2.705920 0.345460 -1.447510 -0.073788 2.091808 -1.745070 -1.199498 0.026808 -0.292270 0.480643 2.578171 -0.316573 0.733763 2.645853 1.932132 0.962496 -2.326678 0.224066 0.102244 1.675655 1.602702 1.947663 -2.380915 -1.499442 0.123961 -1.344779 -4.100600 -0.077109 1.434790 2.687143 0.524201 -4.154060 1.857580 -1.588678 2.620246 1.728938 2.528752 0.820778 -0.100719 -1.838470 0.772013 4.167853 -1.711677 2.243875 -0.841011 -2.828496 3.057817 -0.430325 2.099256 0.567781 -0.147839 0.573174 -2.298383 0.025117 3.419104 1.352763 0.816951 1.739262 0.076385 -0.512992 -4.202575 -4.240050 -0.266565 1.769062 0.912362 5.392063 -2.716650 -1.641378 -0.791056 2.829789 -1.516991 -1.483155 -0.011881 -0.707018 1.231645 -5.350430 -4.062912 4.284513 3.356142 0.494830 0.016140 2.992092 0.024194 -0.588422 -1.840657 -1.856277 1.729470 0.694288 0.674263 0.260087 0.226133 -3.120793 -0.265665 0.182032 0.838165 1.521740 -2.258708 -1.171826 -0.482912 -3.191145 -1.766400 0.456734 -2.687775 -1.035821 0.221483 0.161335 0.217035 0.852286 -0.479955 -1.988798 0.050141 -2.155969 -0.931333 0.419595 2.380196 0.903506 3.936869 3.274187 -0.437217 1.923037 0.753002 -1.761633 6.798193 -2.204242 -0.242814 -0.156721 2.929006 0.190939 1.002987 2.111086 -0.962681 -1.390779 -3.053145 1.107690 0.143895 1.120681 -4.896080 -1.767798 -3.461610 -0.637125 0.519144 3.419022 -0.561976 5.512561 -0.407873 0.530418 -6.004405 0.119477 2.020197 -0.318439 1.437416 1.821455 -2.624381 -4.597262 -0.419535 -1.787524 1.133856 -0.294906 -2.130774 -1.820752 -0.803346 0.816542 -1.440132 1.210320 3.580030 -0.835830 1.551091 0.801811 -0.630245 -0.288959 -1.279648 1.755769 0.843872 -2.001261 3.414902 -0.112131 6.472060 -0.353265 2.479807 -1.909114 0.649663 -0.130996 -1.491611 -1.490176 3.299416 2.412870 1.068179 0.747626 0.529517 -1.357737 2.250395 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.660757 1.976650 12.685314 7.346894 -4.845302 -6.716370 -2.746535 -8.411539 5.283696 2.585265 8.347042 0.323555 3.992477 0.674177 0.248454 -2.240589 3.565296 -1.035066 -0.815893 -2.896116 -2.094101 9.286554 5.655796 -8.188047 1.218024 -9.239727 5.571401 2.961462 3.443070 7.023134 0.488590 0.718632 -0.618273 4.177231 -5.342004 -1.234615 -1.074298 2.569357 -3.168380 -2.110154 3.909790 1.539335 5.541307 0.869042 5.005870 2.242700 4.689016 -1.030012 -5.757660 -2.455411 -3.681989 6.649622 -3.940613 4.205630 -0.528239 3.363433 1.574492 -5.050180 -1.171120 -10.844835 1.936581 2.459914 -3.972415 -0.543484 -5.787788 1.339968 -1.406680 -4.222428 1.973187 -2.500002 4.370494 0.274816 1.044844 -4.957702 -7.494117 2.669112 0.394260 1.985400 3.229060 1.575617 -3.582535 -0.065282 -3.910220 -5.113100 3.093029 1.266606 0.466966 0.965429 -0.225886 -2.515519 0.442572 -0.186823 -2.285871 6.106277 -6.106921 4.949544 -0.154471 -2.071005 -3.474347 -3.591229 -0.489640 -6.144197 2.190429 5.798191 -2.872455 1.440391 -1.314731 2.278947 -1.116279 -6.873961 1.201158 -2.347603 -1.493378 5.496877 -4.344441 -2.270816 -0.047252 0.192632 0.965120 6.484954 -1.388135 2.764582 6.800363 4.505981 2.483061 -5.107479 1.888918 2.563966 4.207532 3.512101 3.801737 -5.421889 -3.477529 0.583583 -1.496536 -11.101471 -0.194716 5.225733 6.014626 0.628869 -9.329409 3.477187 -2.962076 7.274616 6.317140 5.054061 2.408421 0.203413 -4.503523 2.408668 12.753236 -4.031048 5.182741 -2.937941 -7.341116 9.751755 -3.537383 5.922600 -0.107760 1.171868 1.770015 -6.188717 0.035650 8.819618 2.560386 2.144071 3.581693 0.134227 -0.113806 -10.625507 -10.581137 -2.592003 4.522560 3.373663 14.055106 -5.912107 -2.985709 -1.760708 6.098476 -2.093961 -3.450063 0.725580 -2.371780 2.625941 -16.253181 -10.809420 11.450984 9.807089 1.685441 0.228186 7.695667 1.854131 -0.630436 -4.905613 -4.507855 4.224709 1.776515 0.528978 0.042432 0.227078 -8.288793 -1.317620 0.297435 1.163941 4.398761 -5.164296 -1.877600 -0.711374 -7.796341 -4.708873 2.597211 -7.322549 -4.126794 -0.580925 0.817607 0.035245 1.796317 -1.287451 -3.145698 1.304586 -5.070416 -1.867673 1.508213 4.715710 1.456933 9.178672 9.512438 -0.833382 3.085325 1.716533 -4.028151 17.199600 -5.766462 -1.624842 -0.280023 5.521354 0.228600 3.063450 3.961757 -2.312399 -3.614243 -6.927407 4.062618 -0.069719 2.779691 -11.083874 -5.786007 -7.564721 -1.584915 1.586569 8.424767 -0.254655 15.201091 -2.078085 1.571390 -15.992644 0.454799 5.829407 -0.303855 5.160884 4.395341 -6.165156 -9.777908 -1.561354 -3.278443 4.062279 -1.063562 -6.670318 -4.414039 -3.058795 2.403522 -4.941297 3.614005 7.896542 -2.216244 5.761375 1.000253 -1.605333 -2.641171 -1.003145 3.514227 2.804512 -4.501728 7.853552 -1.182746 15.301965 -2.802670 5.873328 -4.938440 3.123221 -1.802733 -3.867447 -2.799831 8.332538 6.623563 2.796966 1.143329 0.115823 -3.050843 4.595788 -PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = -0.593790 0.295853 2.450470 1.441446 -1.084633 -2.270953 -0.598099 -3.072113 1.749372 0.927413 2.375744 0.210666 1.806816 -0.963543 -0.039629 -0.066404 1.528207 -0.154096 0.071973 -0.903051 -0.282907 3.054246 0.426337 -0.843355 0.404360 -1.825576 1.438221 0.928169 1.237443 1.853710 0.521994 0.291926 -0.364025 0.756501 -0.759837 0.406296 -0.362897 0.950074 -1.168781 -0.587213 0.561675 -0.629828 1.823035 0.268824 1.619643 -0.031293 1.200840 -0.168055 -1.097982 -1.036241 -0.977089 1.158822 -1.011683 0.951435 -0.700699 -0.542489 0.730069 -0.128917 0.077011 -1.674291 0.297483 -0.334177 -1.280875 -0.117425 -1.399409 0.431773 -0.794249 -1.036316 -0.162910 -1.068515 0.963417 0.203373 -0.053137 -0.690421 -2.960927 0.286398 0.506830 0.132952 1.161845 1.002986 -0.478713 -0.734452 -1.422975 -1.534140 1.910556 0.980259 0.411641 0.984769 -1.638937 -0.597484 -0.199454 0.257486 0.543280 1.098645 -1.472428 0.566915 0.219355 -0.738080 -0.527291 -1.694935 0.485608 -1.248476 0.395247 0.582679 -0.335791 0.277165 -0.614788 0.333097 -0.839735 -1.598893 0.569900 -1.119504 -0.464194 2.043297 -0.904025 -0.833250 -1.164961 0.050208 0.410071 1.318044 0.192368 0.608007 1.561276 1.017907 1.016351 -1.722665 -0.260731 1.217347 1.072669 0.668670 0.315771 -0.874124 -0.998234 0.469030 -1.187036 -2.877123 -1.175999 1.318983 1.720611 -0.345369 -1.218710 1.083547 -0.842015 1.342616 1.943655 0.408729 0.624347 0.626009 -1.527032 0.746604 2.447343 -0.819529 1.149208 -0.714822 -1.290803 2.123415 -0.679051 0.864940 -0.091949 -0.249901 -0.279662 -0.916689 0.480019 1.973203 0.166543 0.674635 -0.190865 0.603463 -0.597480 -2.167715 -3.261600 -0.522051 2.131244 1.501988 2.880053 -1.590489 -0.545606 0.094568 1.233659 -0.138028 -1.196685 0.705409 -1.183338 1.040322 -4.077399 -2.578054 3.290854 2.293369 1.272155 0.112276 1.156452 0.844957 -0.784609 -1.072267 -1.030001 1.161440 0.482447 -1.710549 -0.292002 0.317459 -2.166030 -0.827394 -0.063603 0.319284 0.410312 -0.743177 1.220832 -1.115390 -0.899208 -1.055078 1.124255 -1.165100 -0.716230 -0.404466 -0.079336 0.162925 0.798686 -0.409998 -0.032155 0.232102 -1.133041 -0.281364 0.024979 0.868809 0.363599 2.262605 2.931774 -0.855817 0.801797 -0.218940 -1.218503 3.175136 -1.234557 0.092318 -0.055488 1.144762 0.717209 0.835769 1.494086 -0.788593 -0.668998 -2.020189 -0.096350 0.974925 1.043291 -1.736207 -1.427495 -2.672489 0.043540 -0.132652 2.636090 -0.239427 3.460687 -1.280748 0.599338 -3.366635 0.294115 0.998916 -0.182001 1.460691 0.616027 -1.443624 -1.272733 -0.545810 -1.657025 -0.246546 -0.213124 -1.179988 -1.243552 -0.932364 0.961510 -1.669403 0.416719 1.158929 -0.527179 1.695274 -0.227349 -0.073705 -1.211741 0.379256 0.971703 0.442162 -1.157512 1.500045 0.050863 3.615654 -0.402089 1.380474 -0.955104 1.442784 -0.939853 -2.059743 -0.884344 2.278611 2.117153 0.444249 0.202428 0.119306 -0.014998 1.502941 -PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/weighted-job-scheduling.cpp__main = -0.334722 0.784805 3.854811 1.519514 -1.464559 -2.498491 -0.981181 -3.940090 1.904833 0.998388 2.871712 -0.130288 1.585608 0.019830 0.046873 0.084112 1.339443 -0.533533 0.248820 -1.042707 -0.796424 3.487796 0.992842 -1.134145 0.426027 -3.227338 1.567587 0.805375 1.680363 2.092116 0.408949 -0.020077 -0.376069 1.130503 -1.175262 0.132462 -0.002693 0.921850 -1.543091 -0.200766 0.515809 -0.118048 1.881825 0.113949 1.829775 0.425955 1.442935 -0.014305 -1.381996 -0.885799 -1.234654 2.294828 -1.210841 1.217319 -0.169793 0.070952 0.207988 -1.053474 -0.408125 -1.960427 0.067537 0.079919 -1.329056 0.096129 -1.850864 0.594054 -1.070124 -1.236415 0.339533 -0.636631 1.504335 0.329051 0.374972 -0.737632 -3.301678 0.800875 0.313713 0.606690 1.057116 0.388930 -0.518613 -0.029354 -1.587222 -1.950499 1.688409 1.460639 0.294782 0.098929 -1.023866 -0.544613 -0.220786 -0.076185 -0.023087 1.848548 -2.087642 1.221887 -0.607741 -0.801423 -1.265190 -2.376017 0.014249 -1.888686 0.861600 0.952294 -0.471817 0.273060 -0.317156 0.721669 -0.460116 -2.337412 0.497820 -0.717304 -0.362543 2.593658 -1.259595 -0.744586 -0.715495 -0.103696 -0.042645 1.740725 0.132791 0.879382 2.246878 1.598381 1.115970 -1.751841 -0.185994 1.130860 1.321690 1.047741 1.097464 -1.797300 -1.224507 0.398820 -0.788149 -3.801811 -0.695848 1.579033 1.970551 -0.410819 -1.763705 0.694504 -1.016647 2.173458 2.164455 0.965349 0.782553 0.174511 -1.522793 1.060624 3.885977 -1.207101 1.712210 -1.290047 -1.716489 2.675599 -1.173633 1.655176 0.027646 0.395556 -0.045484 -1.790154 0.057235 2.633433 0.667857 0.808898 0.557279 0.383145 -0.620444 -3.077904 -3.591115 -0.623906 2.009196 0.756759 3.753787 -1.921765 -1.167385 -0.171594 2.102887 -0.174805 -1.312602 0.747533 -1.295164 1.015056 -4.563816 -3.345294 3.782235 3.472147 1.004130 -0.104534 2.066030 1.146629 -1.540797 -1.765087 -1.462301 1.531949 0.273535 -1.816578 -0.750954 0.246292 -2.653769 -0.464388 -0.154896 0.578450 1.297921 -0.596901 0.547495 -0.326772 -2.137332 -1.407236 1.593022 -1.874071 -1.244480 -0.200374 0.195076 -0.000358 0.938687 -0.778859 -0.432498 0.795782 -1.728002 -0.185810 0.710150 1.210910 0.168718 3.249571 3.157192 -0.288134 1.370717 0.120188 -1.396105 4.400312 -1.572808 -0.187559 -0.174100 1.185251 -0.231477 1.044992 1.493865 -0.847668 -1.840102 -2.285214 0.597231 0.087011 1.067593 -1.891728 -2.289358 -2.740150 -0.345539 0.401207 3.022576 0.214760 4.561046 -0.978453 0.883891 -4.769835 0.311138 1.348553 -0.144163 1.918064 1.034870 -1.792822 -2.146870 -0.538130 -1.650890 -0.245862 -0.368149 -2.236541 -1.515072 -1.481910 1.254371 -1.558870 0.631158 1.932013 -0.400490 2.158231 0.120901 -0.523417 -1.453399 0.312181 1.825816 0.455783 -1.529741 2.217043 -0.118959 5.363063 -0.758319 1.621151 -1.284140 0.771970 -0.523026 -1.714349 -0.831267 2.801548 2.359864 0.875813 -0.132176 -0.205482 -0.579121 1.395744 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.752391 0.842833 7.536107 2.946550 -2.583939 -3.520740 -1.861049 -7.487890 4.090312 2.728918 6.481526 -0.469094 3.729374 -1.075857 -0.458813 -1.532170 3.487505 -2.044747 0.990210 -1.977188 0.921892 6.699308 1.642061 -1.934502 0.925493 -6.274210 3.805647 1.131746 2.711129 4.439352 1.272692 0.951129 -1.304956 1.947835 -1.058856 1.044033 0.580343 2.365378 -2.146648 -0.995549 1.429866 -0.624673 3.304080 0.351811 4.677331 0.479126 1.736964 -0.825228 -3.236634 -2.637134 -1.758945 2.468166 -2.973871 1.668067 -0.143147 -1.099067 0.629113 -1.562594 -0.586087 -5.097087 0.787963 -0.865278 -1.957984 0.587418 -3.348969 1.865996 -1.893437 -1.256488 0.065910 -3.212246 2.398596 0.913650 1.299282 -0.161884 -5.954281 2.062436 1.009121 0.309704 2.297867 1.362851 -1.470341 -0.391712 -2.768843 -3.986308 3.224321 3.613325 0.654524 0.924990 -2.597249 -0.295563 -0.325910 -0.026026 -0.265359 3.777921 -4.286358 1.425807 -0.154381 -2.101471 -1.302250 -3.709381 0.561251 -3.899460 1.369394 3.017210 -2.655786 0.433510 -1.888565 1.129569 -1.464856 -3.874107 1.723439 -2.617107 0.131608 5.123277 -3.228920 -1.538884 -3.664077 0.147906 1.818355 3.301437 -0.816493 2.219733 3.503377 2.847989 2.631363 -3.986119 -0.533622 3.596589 2.735381 1.152452 1.158780 -3.105365 -2.145455 0.402892 -2.195963 -6.281344 -3.125024 2.047755 4.308991 -0.600455 -3.672527 1.840846 -2.200118 4.374794 5.020327 1.456010 1.129560 1.883780 -3.813428 1.766529 6.339981 -2.024004 2.744523 -1.716465 -2.912592 4.810773 -1.990768 3.193158 0.131202 1.115336 -0.501311 -3.635790 0.234298 4.771580 1.101804 2.477889 -0.428508 1.207752 0.260707 -5.848371 -8.060053 -1.794988 4.653076 2.681847 6.400497 -4.089673 -1.479099 -0.182881 4.302760 1.044825 -3.166590 1.259037 -2.174909 2.000362 -9.072798 -6.641862 7.100858 7.141991 2.309503 0.507006 3.057058 1.794658 -2.767524 -2.505719 -2.629480 3.723201 -0.699009 -3.020941 -0.728958 0.931056 -4.579960 -2.710165 -0.376592 0.962961 2.373081 -1.940037 2.028522 -0.174312 -2.158856 -2.603279 2.664886 -2.667083 -3.527220 -1.040255 0.256457 1.226022 1.868299 -1.741959 -0.091056 1.644085 -2.950736 -1.018676 1.321838 1.854418 0.165997 4.787167 6.116731 -1.238222 0.739722 -0.501445 -2.618987 8.018340 -2.435912 -0.169377 -0.284968 1.221386 1.443557 1.932530 2.870546 -1.955096 -2.424570 -4.768782 0.693499 0.425020 2.924662 -5.104902 -5.077693 -5.682535 0.567896 0.882481 5.261363 0.519043 9.383942 -1.856484 0.892406 -8.459738 0.267309 3.523261 -0.354954 3.632812 1.671452 -3.529347 -3.915233 -1.069187 -4.046446 0.218657 -0.875921 -3.444582 -3.259398 -2.367972 4.061928 -2.669961 1.090337 2.901149 0.001798 4.200981 1.540344 -0.806886 -3.167970 0.281777 1.717506 1.318857 -2.856156 4.567654 -0.296841 8.306282 -2.317139 2.458374 -2.138186 3.301682 -1.951578 -4.199603 -1.494753 6.022506 4.837665 1.771480 -0.799099 -1.101363 -1.172648 3.351122 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.087326 0.178073 1.171277 0.186688 -0.170719 -1.080054 -0.298486 -1.755161 0.835216 0.574257 1.232095 -0.055837 0.968912 -0.384458 0.039052 0.213930 0.597282 -0.171565 0.153263 -0.377671 -0.120933 1.384756 -0.102394 0.098058 0.180746 -1.074030 0.539835 0.411704 0.582626 0.812770 0.232546 0.084550 -0.106851 0.315857 -0.349410 0.357674 0.142071 0.455226 -0.451207 -0.181228 0.036370 -0.152842 0.714534 0.139805 0.844856 0.095733 0.314158 -0.030725 -0.200851 -0.511335 -0.239465 0.548002 -0.381825 0.365137 -0.367033 -0.346696 0.200126 -0.064779 0.078423 -0.497822 0.154021 -0.078593 -0.598539 -0.003994 -0.516082 0.189579 -0.282591 -0.428383 -0.133778 -0.495194 0.451564 0.043501 -0.099859 -0.116052 -1.464498 0.102219 0.301093 -0.108861 0.520231 0.176097 -0.201492 -0.336036 -0.673200 -0.808654 1.154000 0.885271 0.241349 0.492652 -0.920693 -0.189544 -0.220469 0.073508 0.448569 0.627835 -0.553655 0.083770 0.157806 -0.360042 -0.277523 -0.925429 0.309430 -0.600589 0.202483 0.136462 0.116300 0.089794 -0.206769 0.274982 -0.449836 -0.662020 0.339298 -0.526860 -0.106395 0.975561 -0.363564 -0.375273 -0.634809 -0.126751 0.180929 0.584654 0.204526 0.164624 0.828837 0.440777 0.487291 -0.828820 -0.342328 0.669007 0.514654 0.312791 0.019794 -0.710078 -0.388375 0.294011 -0.781131 -1.417779 -0.636035 0.396618 0.713573 -0.515210 -0.410836 0.645521 -0.354775 0.481361 0.994461 0.065039 0.204122 0.311170 -0.715880 0.314191 1.078519 -0.408619 0.570485 -0.438487 -0.472767 0.624500 -0.316843 0.334374 0.066140 -0.147663 -0.208547 -0.363717 0.320944 0.920195 0.104337 0.534455 -0.323913 0.358963 -0.472566 -0.784819 -1.534881 -0.322116 1.019386 0.452703 1.274399 -0.699138 -0.445052 0.058374 0.827893 -0.109933 -0.528231 0.429650 -0.632824 0.501724 -1.546958 -1.117879 1.463957 1.156471 0.891231 -0.082997 0.540655 0.455244 -0.553177 -0.390514 -0.338198 0.513353 0.223114 -1.257837 -0.290475 0.082622 -0.975245 -0.341123 -0.260132 0.159871 -0.050204 0.068525 0.798346 -0.461070 -0.349139 -0.386319 0.582344 -0.428895 -0.244647 -0.304707 0.016976 -0.061236 0.397565 -0.449075 0.084487 0.381165 -0.590803 0.063984 0.225799 0.248621 0.199625 1.204719 1.222296 -0.427528 0.488980 -0.267287 -0.414781 0.998677 -0.434305 0.044995 0.016524 0.427484 0.229932 0.417967 0.671017 -0.364108 -0.452775 -0.973110 -0.212242 0.497263 0.445144 -0.045479 -0.694846 -1.212585 -0.026107 -0.168352 1.456739 -0.018724 1.533889 -0.464442 0.506008 -1.382862 0.181013 0.228917 -0.218012 0.526555 0.215537 -0.607549 -0.602912 -0.191208 -0.853023 -0.911520 -0.059948 -0.595133 -0.565944 -0.734507 0.518653 -0.777739 0.076134 0.382071 0.042655 0.716481 -0.211234 -0.011391 -0.719828 0.425845 0.647354 -0.020038 -0.566344 0.392929 0.132441 1.803295 -0.282249 0.748828 -0.386484 0.671399 -0.437266 -0.901781 -0.389411 1.013980 1.028719 0.235270 -0.043285 0.029025 0.053071 0.701118 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -3.894854 0.570537 9.315189 3.791778 -4.048586 -5.682812 -2.597000 -9.455742 5.362336 3.454581 8.635851 -0.540718 4.817966 -1.520129 -0.405243 -2.063587 4.312301 -2.649578 0.969963 -2.643745 -0.477249 8.846371 1.970159 -2.633660 1.309178 -7.804756 5.434175 1.706653 2.641413 6.191681 1.631229 1.030967 -2.043766 2.448604 -1.005282 1.780267 0.903235 2.741004 -2.275016 -1.294409 2.315815 -1.914957 4.965726 0.363923 6.149250 0.720896 1.885788 -0.797344 -4.908694 -3.591242 -2.182498 2.735452 -3.840847 2.225467 0.019329 -0.970088 1.431683 -2.438025 -0.820663 -6.952274 0.833047 -2.111661 -2.897316 0.672137 -4.252966 2.117839 -2.688487 -2.010149 0.409459 -4.743260 2.906042 0.778713 1.312777 -0.090034 -7.594911 2.268314 1.533417 0.306839 2.861350 1.961958 -2.218907 -0.616371 -4.192041 -4.900272 3.874632 4.058357 0.980906 1.239697 -4.135708 -0.341941 -0.073885 0.031241 0.093565 4.697615 -5.221337 1.472057 0.400492 -2.922366 -2.365641 -5.625874 1.019725 -4.547644 1.813431 4.170855 -3.967060 0.163406 -2.571986 1.465929 -2.194394 -5.304328 2.501817 -4.102155 0.296407 6.189962 -4.093911 -2.126703 -4.592884 -0.300597 2.650460 4.418770 -0.855671 2.354539 4.472800 3.613820 3.460591 -5.119324 -1.037113 4.360586 3.923943 1.181940 1.317867 -3.880439 -2.491052 0.886133 -3.410430 -8.462127 -4.168839 2.435582 5.622667 -0.359395 -4.722328 2.821209 -2.970244 5.380930 6.328219 2.637580 1.228595 2.258666 -5.431159 2.065259 7.967697 -2.501291 3.741140 -2.157880 -4.647106 6.696834 -2.246799 3.743222 0.510577 1.063415 -0.769450 -4.356019 0.447675 5.904623 1.383539 2.885376 -0.706014 1.738152 -0.395897 -7.451998 -10.833155 -1.813872 6.780349 4.343356 9.133998 -6.040922 -2.012040 -0.378852 6.008300 1.035421 -4.265692 1.735626 -2.582139 2.598765 -13.100050 -9.071640 10.119538 8.910034 3.350712 0.859602 4.017997 1.959476 -3.399428 -3.070465 -3.997189 4.522443 -0.413426 -3.766425 -0.540805 0.998432 -6.067511 -3.163524 -0.622599 1.361732 3.336090 -3.397893 2.521255 -1.047938 -2.526140 -3.523068 3.520511 -3.673860 -4.365130 -1.043548 0.242947 1.447067 2.487942 -1.570176 -0.260618 1.339023 -3.792010 -1.060788 1.887378 2.431859 0.395255 7.303914 8.677873 -2.097408 0.949870 -0.932249 -3.006571 10.926404 -3.870403 -0.094915 -0.246253 2.452088 2.520004 2.143972 4.594077 -2.430031 -2.786333 -5.761817 0.896263 0.601251 3.734634 -7.656914 -6.635729 -8.739123 0.789703 0.798805 7.323594 0.474789 12.341521 -2.081089 1.192440 -11.539025 0.256382 4.613684 -0.329107 4.494914 1.811565 -4.753746 -5.220803 -1.223237 -5.483076 0.759868 -0.902716 -4.033909 -3.959915 -3.116174 4.602286 -3.434969 1.401344 4.053330 -0.555479 5.239891 2.207728 -1.060832 -3.948423 0.308167 2.462213 1.365319 -3.296417 6.628573 0.067659 11.104188 -2.289018 3.110795 -2.259425 4.890660 -2.600585 -5.655615 -1.965397 7.090921 6.237771 2.193369 -0.921286 -0.707516 -1.460412 4.218436 -PE-benchmarks/weighted-job-scheduling.cpp__std::__lg(long) = 0.168936 0.571566 1.001791 0.696557 -0.052635 -0.355401 -0.066146 -0.852419 0.307218 0.042254 0.400469 -0.250773 0.176039 0.548263 -0.026509 -0.153554 0.202675 0.074905 0.275559 -0.087658 0.070270 0.533865 0.222089 -0.621666 -0.136408 -0.623810 0.470721 0.158584 0.506964 0.347005 0.066590 -0.124381 0.183847 0.381880 -0.529444 -0.596387 0.056932 0.225415 -0.471407 -0.135696 -0.243886 0.548910 0.284637 0.191541 0.061609 0.389398 0.527618 0.044151 0.054108 0.302119 -0.399538 0.670191 -0.231331 0.371524 0.007189 -0.054975 0.121950 -0.353320 -0.024555 -0.395059 0.030939 0.448019 -0.242405 -0.016969 -0.707607 0.088896 -0.265722 -0.368236 0.075438 0.491127 0.481001 0.253299 0.373293 -0.521082 -0.849731 0.421585 -0.235837 0.249208 0.227489 -0.318888 0.038432 0.287900 -0.326241 -0.467202 0.234021 0.316825 0.002373 -0.080023 0.391371 -0.326727 -0.111400 -0.210090 -0.414365 0.587621 0.181201 0.929454 -0.430458 0.070708 -0.182759 -0.525997 -0.240614 -0.605305 0.271415 0.141149 0.269274 0.232522 0.220901 0.302108 0.243228 -0.614645 0.247929 0.126363 -0.042785 0.386927 -0.173407 -0.151007 0.210103 0.055430 -0.102308 0.491732 -0.016464 0.297308 0.230586 0.421006 -0.011840 -0.261523 0.194548 0.090810 -0.085985 0.499342 0.522659 -0.575424 -0.346840 -0.066375 0.271000 -0.698841 0.399469 0.584079 0.290244 -0.338230 -0.686677 0.094571 -0.257382 0.471940 0.508463 0.539073 0.317458 -0.060304 0.078390 0.220248 0.860736 -0.340011 0.323151 -0.423968 -0.097761 0.317709 -0.201680 0.533533 -0.319043 0.345925 0.340542 -0.531949 -0.094566 0.690321 0.473760 0.002877 0.818481 -0.151450 -0.146227 -0.848683 -0.217237 -0.059980 0.299931 -0.334131 0.737430 -0.208276 -0.381028 0.032370 0.001831 -0.020380 0.038470 0.052440 -0.173209 0.143139 -1.070922 -0.681052 0.338562 0.271602 -0.047021 -0.462107 0.120864 0.212087 0.049719 -0.727788 -0.231949 0.343399 -0.421905 -0.055959 -0.308345 -0.104469 -0.567702 0.135007 0.227200 0.134201 0.788128 -0.278249 -0.431177 -0.154198 -0.902457 -0.559515 0.274650 -0.505856 -0.394343 0.053855 0.071378 0.070159 0.019500 -0.028480 -0.191160 0.608811 -0.313541 -0.332095 0.158809 0.323071 -0.240725 0.678131 0.285696 0.440927 0.248120 0.484251 -0.455806 1.391740 -0.163469 -0.119168 -0.032766 0.224429 -0.424807 0.351731 0.189410 -0.170425 -0.794993 -0.569983 0.337754 -0.156841 0.283418 -0.393998 -0.278368 -0.129719 -0.216027 0.225133 0.591567 0.060070 0.875112 -0.059296 0.311311 -0.682069 0.058480 0.273379 -0.061609 0.416197 0.506358 -0.555093 -0.036019 -0.079509 -0.194280 0.025484 -0.215877 -0.767498 -0.322194 -0.036109 -0.290068 -0.104581 0.163055 0.537603 -0.192285 0.205386 -0.218910 -0.187446 -0.042944 -0.165792 0.677427 0.063400 -0.607983 0.366059 -0.310622 1.266940 -0.291480 0.309193 -0.597766 -0.337277 -0.025568 0.158519 -0.172164 0.854157 0.175137 0.180055 0.078505 -0.192007 -0.133789 0.198359 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.792291 0.575935 9.247511 2.875142 -3.846609 -5.242245 -2.662404 -10.459806 5.576079 3.944646 9.042336 -0.047224 5.259427 -2.215341 -0.103082 -1.621235 4.817259 -3.139610 0.823719 -2.863543 0.488005 8.320233 1.439538 -1.434669 1.377797 -7.598787 4.275783 1.592018 2.780493 5.314970 1.992539 0.710262 -2.508379 2.352794 -0.884499 2.500390 1.812174 2.845682 -2.616096 -1.678737 1.964910 -1.487977 5.044993 0.135782 6.768845 -0.159436 1.913154 -0.774182 -4.682634 -4.014877 -1.437599 3.239977 -3.729018 2.470576 0.820593 -1.305108 0.905957 -2.109117 -0.587729 -6.042504 0.894541 -1.842049 -2.497275 0.570362 -3.357611 1.947450 -2.012984 -1.548475 0.254560 -5.228570 2.864874 0.355921 1.246624 0.718099 -7.358984 2.024114 1.766298 -0.041837 3.122878 2.584391 -1.810285 -1.559283 -3.718305 -5.138872 4.426646 4.749138 0.825874 1.584144 -5.060913 0.552536 -0.016095 -0.177992 0.614938 4.557711 -6.131476 0.626766 0.705805 -3.267553 -2.100566 -5.487463 1.290190 -4.623927 1.760959 3.708050 -3.638753 0.022846 -3.145909 1.429641 -2.825027 -4.535843 2.669997 -3.596721 0.179067 6.435452 -4.443144 -2.312552 -5.036868 -0.312436 2.543310 3.836953 -0.413502 2.321411 4.787721 3.675234 4.096328 -5.560577 -1.320226 4.539930 4.403065 1.264295 0.882446 -4.147428 -2.280379 1.601476 -4.292299 -8.564548 -4.794808 2.457723 6.096900 -0.361296 -4.349304 1.977853 -2.817266 5.491004 6.234645 1.922095 1.112064 2.552671 -5.416040 1.895322 7.057599 -2.436148 3.998784 -1.672713 -3.430326 5.258810 -2.523788 3.667379 0.693398 0.960146 -1.198392 -4.302912 0.410994 6.009451 1.523486 3.532861 -2.466749 2.154022 -0.891008 -7.097335 -11.454187 -2.047606 6.657037 4.082959 8.013886 -5.756653 -2.691288 -0.256459 6.382935 0.620702 -5.091072 2.262399 -3.056648 2.996237 -10.899401 -8.161990 10.141185 9.902591 3.872862 0.564012 4.372549 1.827042 -5.092171 -2.961609 -3.693260 4.502955 -0.088108 -5.320863 -0.754350 1.359111 -6.246505 -3.396425 -1.026795 1.315632 2.305359 -1.940948 3.911326 0.136108 -1.817373 -2.498455 3.900956 -2.670596 -4.391368 -1.602726 0.379769 1.657395 2.909480 -2.386749 -0.438007 1.740614 -4.571488 -1.029814 1.948328 2.634113 0.898746 7.635253 8.106807 -2.221133 1.828303 -1.528257 -3.329529 8.986106 -3.883295 -0.134295 -0.445427 1.802594 2.371839 2.277051 4.503609 -2.682015 -3.141607 -5.931585 -0.143771 0.606545 4.175183 -5.947716 -7.246397 -8.363435 1.057668 0.386749 7.137650 0.359163 11.897640 -2.455130 1.529299 -11.164291 0.323086 4.386241 -0.524522 4.105815 1.577083 -4.426928 -5.625922 -1.201187 -6.014241 -1.335470 -0.405196 -3.399886 -3.884916 -4.338368 6.235323 -3.687675 0.981153 3.372443 -0.065950 5.939932 2.208608 -0.970043 -4.276482 0.895442 2.467026 1.142935 -3.506483 6.225801 0.495740 11.823176 -2.533261 3.156666 -2.251316 4.808727 -2.758516 -5.901424 -2.206947 7.042724 7.334119 2.476586 -1.484540 -0.843810 -1.864723 4.523015 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.039087 0.357664 3.280359 2.131758 -1.934894 -3.031436 -0.888182 -3.819022 2.351971 1.196255 3.057094 0.489555 2.299933 -1.325889 -0.200940 -0.640999 2.042661 -0.239687 -0.099389 -1.327246 -0.636801 3.806870 0.644518 -1.541439 0.617488 -2.434489 2.348725 1.169195 1.321465 2.699236 0.755576 0.395699 -0.892964 1.140024 -0.832740 0.476650 -0.341115 1.183099 -1.404066 -0.772088 1.178463 -0.748727 2.656678 0.450807 2.207529 0.219908 1.149860 -0.091779 -1.802721 -1.463262 -0.959637 1.005796 -1.355945 1.428011 -0.624648 -0.296275 1.087834 -0.474941 0.180359 -2.467399 0.527113 -0.652926 -1.511333 -0.109265 -1.947004 0.405444 -1.055433 -1.497436 -0.136663 -1.948199 1.153965 0.069916 -0.053685 -1.016376 -3.574514 0.312094 0.647959 0.268959 1.670073 1.602599 -0.938138 -1.072206 -2.008734 -1.988314 1.863106 1.034073 0.415408 1.365063 -2.007293 -0.975795 0.096454 0.271670 0.729734 1.513421 -1.965825 0.602704 0.180379 -1.003274 -0.691562 -2.297856 0.738682 -1.468443 0.633627 0.990806 -1.096909 0.192143 -0.687273 0.386908 -0.991119 -1.867739 0.911045 -1.650379 -0.311707 2.704903 -1.100808 -1.366782 -1.644027 -0.190621 0.769565 1.920315 0.091050 0.559829 2.024538 1.395496 1.435484 -2.327320 -0.325869 1.582673 1.346729 0.744290 0.545761 -1.218747 -1.177782 0.715051 -1.657919 -3.695224 -1.446382 1.382857 2.363013 -0.325349 -1.736679 1.414673 -1.369075 1.679764 2.373281 0.887144 0.860635 0.708367 -2.173352 0.893479 3.170112 -0.876616 1.410969 -0.906892 -2.045063 2.917489 -0.679718 1.197731 -0.238746 -0.416653 -0.393003 -1.171568 0.801436 2.549824 0.039250 0.785586 -0.133267 0.787990 -0.853834 -2.888344 -4.392796 -0.470848 2.978869 2.389637 4.035026 -2.401675 -0.501643 -0.123196 1.882428 -0.036160 -1.596818 0.933256 -1.271343 1.373489 -5.543510 -3.403023 4.460082 3.126612 1.525966 0.084095 1.484242 0.695941 -0.839511 -1.523703 -1.604058 1.360414 0.661927 -1.674870 -0.094481 0.484855 -2.838316 -1.069674 0.134599 0.510846 1.167501 -1.550090 1.272204 -1.466053 -1.003590 -1.789286 1.499082 -1.465817 -0.977972 -0.283125 -0.085659 0.194746 1.068067 -0.213628 -0.384456 0.015041 -1.320548 -0.374970 0.099933 1.241378 0.364279 3.015251 3.724501 -1.269999 0.701617 -0.169834 -1.523528 4.838137 -1.921532 0.231101 0.048079 1.746727 1.219920 0.994446 2.045784 -1.095620 -0.576332 -2.569001 -0.093096 1.063215 1.402396 -3.306176 -2.040102 -3.801039 0.215488 -0.425147 3.301783 -0.281727 4.750344 -1.473589 0.620272 -4.488658 0.301239 1.793905 -0.149084 1.883694 0.861281 -2.009730 -1.878188 -0.666863 -2.350286 0.304507 -0.281353 -1.274321 -1.603133 -0.823882 1.174243 -1.860145 0.653076 1.950309 -1.033095 2.155513 -0.289642 -0.067939 -1.488048 0.022004 0.991376 0.551175 -1.444473 2.326572 0.134524 4.535569 -0.293797 1.761767 -1.040009 2.091557 -1.292234 -2.914492 -1.313779 2.877798 2.601333 0.724931 0.349727 0.250500 -0.132464 1.947111 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.132259 0.416968 7.246206 3.652658 -2.865653 -4.739326 -1.964217 -7.693159 4.822317 2.729360 7.014838 0.179190 4.279621 -2.317324 -0.142209 -1.209699 3.910223 -1.657827 0.205197 -2.155304 0.415577 7.627811 1.652145 -2.582680 0.909886 -5.675930 3.507343 1.913233 2.384730 4.614307 1.605519 1.164922 -1.126364 2.026410 -1.691615 1.624679 0.314893 2.329615 -2.292524 -2.131770 1.936956 -0.922879 4.309379 0.503710 5.252545 -0.189892 2.702964 -0.961580 -3.659037 -2.902899 -2.370193 3.585596 -2.774339 2.090668 -0.217827 -0.911165 1.927193 -1.689008 -0.238181 -5.901435 0.706804 -0.837759 -2.835491 -0.075149 -3.038887 1.623250 -1.216482 -1.465883 -0.002309 -3.701607 2.450497 0.216557 0.792797 -0.744347 -6.475954 1.678879 1.116042 0.099534 2.871714 2.687764 -1.597592 -1.440327 -2.982553 -4.073334 4.260887 2.543989 0.658461 2.156514 -3.760958 -0.377008 -0.725450 -0.085213 0.292437 3.479048 -4.582712 1.360330 1.759462 -2.536627 -1.581398 -3.232647 1.173447 -3.788227 0.777095 3.043084 -2.104701 0.432455 -2.665167 0.756039 -2.465181 -3.917907 2.295332 -3.243586 -0.817721 4.965129 -3.567947 -1.725231 -3.281738 0.272550 1.686217 3.800988 -0.549451 2.340655 3.369082 2.737264 2.772801 -4.351091 -0.326497 3.667998 3.859174 1.094870 0.610826 -3.008833 -2.214471 0.971586 -2.763815 -6.931177 -3.588121 3.383088 4.931263 0.265530 -4.254002 2.655819 -1.822124 4.638991 4.918685 1.395054 0.981537 1.996524 -4.581707 1.603506 6.476690 -2.122569 3.286671 -1.289233 -3.392698 5.221822 -2.199880 3.003124 0.213932 0.369015 -0.427281 -3.197910 0.630178 5.059681 1.276774 2.118750 -0.980776 1.552261 -0.410669 -6.207982 -9.547458 -1.727673 5.089672 3.549648 7.476026 -4.280465 -2.005266 -0.336379 4.434297 -0.404349 -3.617962 1.446473 -2.786966 2.472582 -10.190627 -6.960921 9.065531 7.148842 2.833395 0.764582 3.782139 1.807443 -2.519880 -2.563865 -2.716132 3.544521 0.786733 -3.364226 0.054375 0.681146 -5.355366 -2.986982 -0.628571 0.747332 1.202177 -2.121753 3.102417 -1.314229 -1.931096 -2.084842 2.252346 -2.653834 -3.387231 -1.165674 0.304966 0.889519 2.261825 -1.390410 -0.204775 1.028563 -3.618238 -1.437851 0.748806 2.275254 1.176557 5.920647 7.390501 -1.755998 2.338472 -0.759468 -2.885177 8.450372 -3.402659 -0.371078 -0.397893 2.136153 2.603631 1.955011 3.364472 -2.095725 -1.725915 -5.246289 0.676303 1.153539 3.127869 -6.065928 -5.271250 -6.803017 0.350928 0.531926 5.820672 -0.398036 9.948043 -2.642617 0.642117 -9.787535 0.480961 3.934292 -0.412343 3.352838 1.667472 -3.913552 -4.810430 -1.168051 -4.289220 -0.088300 -0.750350 -3.305919 -3.249741 -3.165788 4.561194 -4.344610 1.524881 3.431853 -0.431615 4.429206 1.087633 -0.601256 -3.350441 0.489266 1.595983 1.273556 -2.859206 4.798234 -0.294084 9.441083 -2.254964 3.254843 -2.495489 4.712125 -2.665774 -4.813223 -1.789322 5.984005 5.900446 1.227172 -0.232872 -0.066357 -1.395148 4.144535 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.492920 0.986276 7.283765 3.904900 -3.836524 -4.706580 -2.095853 -7.478174 4.381970 2.495493 6.318144 0.174104 3.884362 -1.726538 -0.523766 -1.867184 3.782513 -1.222060 -0.006122 -2.441946 -0.869020 6.812928 1.369539 -3.018597 1.150261 -5.581582 4.432074 1.811848 2.193322 4.667593 1.426572 0.809765 -1.782016 2.357845 -1.579368 0.852023 0.349529 2.225198 -2.377098 -1.432059 2.424168 -0.668824 4.568797 0.450796 4.464200 0.778443 1.709042 -0.435633 -4.030288 -2.714689 -1.391193 2.338561 -2.592613 2.544937 0.109733 -0.264154 1.629567 -2.053795 -0.038494 -5.055232 0.995521 -1.042132 -2.261009 0.117802 -3.490056 1.041115 -1.551360 -2.281035 0.460229 -3.957647 2.161023 0.019152 0.504365 -1.280474 -5.771239 1.536284 1.383713 0.511930 2.866091 2.592183 -1.533836 -1.301414 -3.414890 -3.983956 2.881677 2.489962 0.747495 1.791134 -3.115864 -1.228982 0.488985 -0.014335 0.534320 3.650610 -4.144256 1.152072 -0.053130 -2.285823 -1.899045 -4.235394 0.972525 -3.394435 1.496727 2.945364 -3.259892 0.399792 -1.289419 0.986022 -1.453302 -3.665415 1.740269 -3.119712 0.194602 5.305052 -2.667920 -2.581733 -3.248239 -0.455396 1.529010 3.680017 -0.406817 1.413585 4.048571 2.864721 2.902029 -4.390766 -0.572037 3.068885 2.734706 1.245967 1.389804 -3.295807 -2.055324 1.030876 -2.884880 -6.889010 -2.865081 1.957665 4.720103 -0.420834 -3.968898 2.381967 -2.537503 3.942898 4.315271 2.016602 1.296991 1.348918 -4.152130 1.580277 6.164253 -1.817296 2.818848 -1.801038 -4.021321 5.076408 -1.242605 2.879351 -0.091672 0.095788 -0.568287 -3.190228 1.131074 5.049952 0.453505 1.771747 -0.231364 1.274852 -1.010721 -5.951300 -8.742831 -0.845878 5.036198 3.722204 7.717141 -4.745892 -1.642936 -0.504824 4.685337 0.081182 -3.227336 1.632753 -2.196073 2.445188 -9.574932 -6.835683 8.204059 6.795605 2.388008 0.128539 3.458241 0.863396 -2.405767 -3.008566 -3.306633 3.132550 0.818046 -2.613834 -0.133074 0.990062 -5.114653 -2.059349 0.020709 1.099072 2.859727 -2.948244 1.854740 -1.507505 -2.273660 -3.242697 2.951536 -2.710836 -2.567146 -0.548027 0.169827 0.623114 2.373114 -0.936579 -1.298828 0.331771 -2.896852 -0.975707 0.856911 2.482603 0.447706 5.910943 6.645112 -1.924158 1.539938 -0.258175 -2.688297 9.436363 -3.637776 0.026524 -0.090771 2.690664 1.871271 1.917702 3.688468 -2.087545 -1.807202 -4.986824 0.324872 0.629974 2.684842 -6.975510 -4.636232 -6.945343 0.333973 -0.234860 5.721654 0.077956 9.682853 -2.065557 0.796538 -9.139013 0.308191 4.060051 -0.308651 3.602979 1.802559 -4.006251 -4.640581 -1.008996 -4.484238 0.522610 -0.636659 -2.901053 -3.290199 -2.052303 3.444900 -2.867554 1.414976 4.227357 -1.096136 4.003100 0.617693 -0.597502 -2.832062 -0.421939 1.842188 0.972936 -2.778498 5.038184 0.097694 9.161750 -1.227510 3.081529 -2.110614 3.664458 -2.034158 -5.075773 -2.278444 5.578738 4.949679 1.818657 -0.096576 0.030554 -1.321852 3.814182 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.222664 0.883126 3.840466 2.473403 -1.718641 -2.035329 -0.873971 -3.482610 1.946953 0.947916 3.121208 -0.461229 1.656363 -0.342122 -0.588824 -1.195396 1.811938 -0.223906 0.177565 -0.983878 -0.065858 3.114949 0.558371 -1.882938 0.616062 -2.494944 2.300480 1.128515 1.081179 2.085473 0.651351 0.912145 -0.513446 1.103398 -0.905818 -0.005866 -0.155194 1.280043 -1.207970 -0.710403 1.082062 -0.569186 1.885143 0.414111 2.059600 0.727520 1.217588 -0.442954 -1.940055 -0.895114 -1.497416 1.351428 -1.243662 0.859224 -0.546426 -0.435479 0.971187 -1.019664 -0.116902 -2.833610 0.536635 -0.317865 -1.089625 0.062096 -2.030362 0.921993 -0.544976 -1.126564 0.134339 -1.438668 1.142635 0.323293 0.496134 -0.520199 -2.930392 1.070473 0.586146 0.409672 1.313439 1.002609 -0.345733 -0.103193 -1.624269 -1.836626 1.472942 1.143351 0.637441 0.791734 -1.009418 -0.760359 0.028407 -0.051868 -0.248728 1.955118 -1.926302 1.217174 -0.286124 -0.983371 -1.029882 -1.765144 0.365302 -1.772774 0.741873 1.643785 -1.778644 0.696748 -0.500428 0.570801 -0.452554 -2.074888 0.608222 -1.848664 0.186180 2.586290 -1.414580 -1.236617 -1.463703 -0.002644 0.692965 1.880840 -0.791284 1.083327 1.501452 1.365946 1.151250 -1.907250 -0.116722 1.598790 1.037336 0.777600 0.800030 -1.489870 -1.106425 -0.162539 -1.064352 -3.156485 -1.227382 1.087019 2.282477 -0.400363 -2.329481 1.422354 -1.280624 2.188409 2.176806 1.198924 0.644431 0.953851 -2.001861 0.742855 3.284665 -0.913131 1.365388 -0.844513 -1.732568 2.431855 -0.422648 1.553743 -0.104582 0.204697 0.066359 -1.737560 0.120586 2.336672 0.578050 0.502268 0.658576 0.468952 -0.269372 -3.225230 -4.078806 -0.624390 2.405378 1.544184 3.878036 -2.348338 -0.849247 -0.268005 2.152228 0.111085 -1.274621 0.503067 -0.968527 1.098796 -4.825936 -3.701402 3.491824 2.885330 0.641808 0.242770 1.689598 0.311255 -0.922935 -1.703958 -1.394742 1.690247 -0.014196 -0.855171 -0.244669 0.278919 -2.393965 -1.168108 0.126882 0.545298 1.415481 -1.283931 0.958533 -0.904047 -1.130872 -1.778697 0.871210 -1.550594 -1.639770 -0.075131 0.040163 0.434640 0.916783 -0.692569 -0.480410 0.343493 -1.418061 -0.601090 0.277936 0.892037 -0.049157 2.671882 3.502444 -0.618897 0.650702 0.182446 -1.427294 5.147443 -1.362907 0.125439 -0.052283 0.951650 0.845187 0.962108 1.651338 -1.031862 -0.965272 -2.685537 0.383563 0.129610 1.338375 -3.617596 -2.012819 -3.114035 0.135863 0.440642 2.460502 0.073013 4.874368 -0.807201 0.023909 -4.506781 0.088330 2.225312 -0.283698 1.879033 1.065874 -2.160667 -2.206978 -0.369706 -1.945995 0.608133 -0.692970 -1.812168 -1.882926 -0.552115 1.268305 -1.315127 0.782707 2.210228 -0.327123 1.656765 0.288489 -0.328535 -1.006396 -0.549706 1.075398 0.731106 -1.512551 2.450139 -0.359391 4.501338 -0.700665 1.364090 -1.246401 1.627282 -0.801958 -2.153148 -0.903673 3.221930 2.176235 0.867723 -0.057074 -0.248148 -0.641288 1.893143 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -3.859714 2.320651 12.284894 4.637701 -4.459975 -4.826537 -3.132799 -10.365191 5.064686 3.693185 9.308753 -1.829548 4.463078 0.435679 -0.884398 -2.665855 5.026644 -3.299435 1.761802 -2.892541 -0.049985 9.149254 2.694809 -3.332989 1.112517 -10.082573 6.626658 1.669729 3.367485 6.692758 1.890198 1.638070 -1.477986 3.325709 -2.027451 0.545367 1.285029 3.613509 -2.614943 -0.839237 2.602965 -0.560377 5.109602 0.401610 5.899984 2.215612 2.490124 -1.178157 -5.467288 -3.231981 -3.330264 4.000896 -4.332454 2.422849 0.184347 -1.354923 1.596942 -3.639429 -1.063556 -7.708597 0.485564 -1.281979 -2.801843 1.006551 -5.348719 2.803739 -2.944694 -2.259468 1.038412 -3.599835 3.516720 1.400712 2.541847 0.028912 -8.231705 4.253964 1.731603 0.964307 3.168828 1.001042 -1.736337 0.803028 -4.459764 -6.331712 4.016952 4.719013 1.429738 0.323416 -2.482509 -0.404613 -0.552898 -0.116654 -1.382303 6.641970 -5.203195 3.242048 -1.234785 -3.468678 -3.439474 -6.147769 0.163415 -6.449402 2.261973 5.361618 -5.238732 0.603119 -2.964990 1.677011 -1.401968 -6.588638 2.417859 -4.549284 0.320496 7.432709 -4.880128 -2.385373 -4.752071 -0.067579 2.903652 5.045313 -1.900990 3.485593 5.273568 4.319558 3.480376 -5.835449 -0.529265 4.174691 3.735666 1.481314 2.712877 -5.317898 -3.541922 -0.226202 -2.552784 -9.348130 -3.677235 2.902330 6.127493 -1.001336 -5.983859 3.154340 -3.659272 6.940483 7.108389 3.205165 1.562708 2.230573 -5.332290 2.589795 9.967309 -3.592712 4.645892 -3.334121 -4.970518 7.518972 -2.357255 5.607390 0.231323 2.244993 -0.326238 -6.241876 -0.043971 7.715685 2.141797 3.266688 1.668625 0.946914 1.098149 -9.117580 -11.503600 -1.919010 6.755209 2.716798 9.944712 -6.467729 -2.366868 -0.134421 6.916304 1.227649 -4.423768 1.203301 -2.367851 2.672298 -13.645232 -10.523729 10.022791 9.739492 1.923112 0.788256 4.543409 2.329208 -3.887689 -4.548094 -4.373832 6.044775 -1.553765 -3.281950 -1.293991 1.310434 -6.492445 -2.906349 -0.452140 1.692480 5.021808 -3.980510 1.433134 -0.152238 -4.662360 -4.378819 3.821094 -4.978459 -6.157864 -0.682985 0.624975 1.717222 2.730056 -1.725286 -0.824335 2.289514 -4.587766 -2.142372 2.280128 3.119890 -0.294101 7.632405 8.754565 -1.269063 0.893296 -0.003005 -3.468907 13.112180 -4.251290 -0.842084 -0.289528 2.262566 1.253212 3.086447 4.763626 -2.686079 -4.526104 -7.557731 2.233207 -0.701428 3.690675 -8.616945 -7.309239 -8.490460 0.433023 2.109187 8.127215 0.892653 14.341148 -1.454200 0.819495 -12.543131 0.215373 5.417553 -0.391359 5.736581 3.089521 -5.787868 -6.044910 -1.601828 -5.883192 1.487631 -1.494970 -5.617830 -5.250717 -2.752420 5.039613 -3.311771 2.237094 5.122663 0.050841 5.397526 3.362143 -1.852158 -4.524300 -0.354437 3.810272 1.776052 -3.959894 7.793250 -0.978671 13.000029 -3.414389 3.739137 -3.387333 3.670155 -1.558870 -4.826286 -2.188613 9.315751 6.221512 2.858006 -1.075937 -1.548019 -2.069249 5.497312 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = -2.251029 -0.188227 4.398466 -0.304811 -1.238611 -2.115280 -1.632134 -5.300719 2.706832 2.490164 4.736742 0.119457 2.906537 -0.863210 0.259376 -0.474623 2.088356 -3.002994 1.426560 -1.253727 0.489806 4.788704 1.323982 1.159911 0.340408 -4.930456 1.922274 -0.568747 1.647945 3.537434 0.791661 -0.150214 -1.397634 0.946987 0.531110 2.145044 1.491091 1.514695 -0.559868 0.047199 0.487946 -0.944917 2.168564 0.098819 3.592092 -0.139561 -0.130947 -0.293960 -1.764309 -2.637775 -0.067487 0.700145 -2.578198 0.889292 0.746505 -0.868255 -0.201780 -0.433207 -0.763327 -2.731657 -0.125756 -1.698726 -0.903656 0.900743 -1.396122 1.339089 -2.316541 -0.027284 -0.384126 -2.562414 1.735675 0.944589 1.469102 1.752543 -3.875993 1.207906 0.468288 -0.266753 1.214172 0.517607 -1.976840 -0.275920 -1.838362 -3.066080 2.168552 3.185500 -0.031951 -0.111487 -2.621270 1.238735 -0.571104 0.129526 0.346642 2.416721 -2.889672 0.005514 0.482227 -1.501251 -0.336177 -3.543750 0.222646 -2.672247 0.719186 1.874481 -1.327184 -1.191072 -2.578922 0.690364 -1.907580 -2.339051 2.127136 -1.203316 -0.571205 2.937188 -2.578686 -0.080058 -2.935869 -0.221235 2.027497 1.824478 0.250015 1.322533 2.164442 1.979674 2.013432 -2.552306 -0.881497 2.490800 2.718784 -0.136560 0.324771 -2.098502 -1.264758 1.203564 -2.094694 -3.983111 -2.804008 1.466518 2.560009 -0.365313 -1.238963 0.598115 -1.411241 2.530193 3.968715 0.602181 0.518035 1.050718 -2.687869 1.434320 3.620502 -1.375044 2.259554 -0.920560 -1.555326 3.396602 -2.437772 2.112345 0.307760 1.329574 -1.194037 -2.335389 0.079272 2.939911 0.912204 2.876484 -1.833827 1.031745 0.330070 -2.968972 -5.385999 -1.301090 3.939921 1.739363 2.919109 -2.529685 -0.759942 0.435755 3.313515 1.534031 -3.030013 1.018236 -1.031723 1.111522 -5.958525 -3.688698 5.224934 5.627999 2.327808 0.485823 1.453006 2.238898 -2.966490 -1.183562 -1.958251 2.626531 -1.281694 -3.672031 -1.074150 0.907462 -2.792132 -1.801735 -1.115815 0.620777 1.548432 -0.634598 1.721710 1.294417 -0.649205 -0.668166 2.549598 -1.263185 -3.152207 -1.103036 0.226747 0.932133 1.071917 -0.913666 0.883056 1.701686 -2.454757 -0.318157 1.808792 0.944886 0.440635 3.640880 3.689821 -1.151205 -0.710837 -1.185696 -1.178931 3.000551 -1.920462 -0.361196 -0.316815 0.498874 1.053733 1.089703 2.004193 -1.082185 -2.426454 -2.433301 0.281930 0.293492 2.067722 -1.502479 -4.847191 -3.759702 1.066657 0.525265 4.076179 0.658331 5.823753 -0.990091 1.302632 -4.901873 0.310607 1.665595 -0.049660 2.122034 0.456278 -1.365077 -1.844161 -1.069093 -3.076515 -0.820769 -0.143972 -1.757310 -1.368597 -2.617963 3.447532 -1.661874 0.157767 0.418975 0.331521 3.649898 2.338595 -0.844030 -3.586071 1.495365 1.229708 0.294258 -1.324153 3.180668 0.414665 4.991194 -1.953873 1.066887 -0.563078 2.452270 -1.513065 -2.633983 -0.508983 3.414432 3.804499 1.157390 -1.119812 -0.908821 -0.384532 1.534326 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -3.186387 0.862193 8.887144 2.204453 -3.173175 -4.096499 -2.403927 -9.416678 5.019604 3.730168 7.794146 -0.108858 4.832516 -1.214556 -0.456069 -1.580281 4.299809 -3.263785 1.990406 -2.287579 0.578280 8.719693 1.746502 -0.442703 0.789315 -8.322742 4.903646 0.387308 3.773906 6.120184 1.680331 0.589040 -2.032353 2.056574 -0.127291 1.689984 1.116635 2.893697 -2.363843 -0.711598 1.413839 -1.865726 4.423488 0.513960 5.478743 -0.235532 1.284754 -0.873652 -3.400849 -3.476965 -2.074838 2.155743 -3.885682 1.995094 0.379689 -1.960133 0.540129 -0.946196 -0.662208 -5.033992 0.207421 -2.322129 -2.026905 1.030983 -3.860241 2.234194 -3.976105 -1.124030 -0.296471 -3.907424 2.894676 1.542588 2.525513 0.920854 -8.254746 2.576511 0.983690 0.133163 2.752606 1.939413 -2.245360 -0.396402 -3.785401 -5.347689 3.919893 4.995215 0.157228 0.324269 -3.973584 0.245687 -0.810264 0.300196 -0.026907 4.579532 -5.246844 1.769225 -0.923584 -2.498653 -0.923989 -6.312575 0.360471 -5.004454 1.424646 3.204890 -3.095127 -0.513995 -2.866900 1.085384 -1.938538 -4.812663 2.950201 -2.933626 -0.748138 6.302418 -3.861795 -1.553260 -4.873917 0.098420 2.718536 3.515971 -0.598077 2.711386 3.918203 3.387234 3.600506 -4.836110 -0.805615 4.763592 3.403782 0.605230 1.103756 -3.469402 -2.510431 1.030648 -2.635265 -7.748237 -3.980687 2.906577 4.878573 -0.951541 -2.924445 1.196002 -2.855944 4.974872 6.660573 1.575985 1.480543 2.266417 -4.479234 2.403958 7.440342 -2.504089 3.498594 -2.354840 -3.288673 6.353983 -3.055246 4.124187 -0.524514 2.162856 -1.042999 -4.483881 0.194982 5.911906 0.961492 3.471875 -0.944787 1.360959 0.313260 -6.625185 -9.626723 -2.019963 6.805984 3.454778 6.707218 -4.911649 -1.311925 0.656736 5.118182 2.251546 -4.391510 1.974754 -2.284094 2.349894 -11.717780 -7.852898 8.850103 8.729762 2.650227 0.471834 2.721714 3.099183 -4.243565 -3.457267 -3.778826 4.628285 -1.672698 -5.184978 -1.583164 1.480291 -5.455140 -2.821810 -0.524275 0.977321 3.928589 -2.385774 2.787469 0.347529 -2.217474 -3.079023 4.738290 -3.175915 -5.194585 -1.448938 0.347317 1.561985 2.366156 -1.272851 0.547587 2.452457 -3.576098 -1.225808 1.972160 1.832489 -0.218277 6.146404 7.413229 -1.521559 -0.529023 -0.860710 -2.891782 8.905447 -3.645060 -0.609093 -0.322649 1.072402 1.453184 2.615285 3.799206 -2.283190 -3.926452 -5.547059 0.693968 0.052495 3.589155 -5.132770 -7.152384 -6.947433 1.246240 0.963889 6.843333 1.014065 11.271290 -2.304263 1.463562 -9.428825 0.378187 4.064097 -0.109857 5.084071 1.626620 -3.788629 -3.029868 -1.739689 -5.156644 0.438905 -0.784529 -4.028394 -3.533672 -3.289988 4.856201 -3.075108 1.135948 2.375803 -0.326783 5.956449 2.418991 -1.299086 -5.195813 1.492161 2.421432 1.258317 -2.956623 6.049684 -0.232708 9.616239 -3.052243 2.292384 -2.011165 3.887128 -2.528808 -5.098410 -1.549902 7.125940 5.936377 2.460815 -1.528947 -1.429531 -1.034219 3.718430 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(Job&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -4.445538 2.512180 16.419725 7.821018 -7.330705 -9.673293 -3.989802 -13.385116 7.584475 4.544168 11.948950 -0.405654 6.899704 -1.376418 -0.212616 -2.755345 7.400464 -3.156202 1.580212 -4.383949 -2.265402 14.347726 5.074302 -6.213569 1.205177 -13.312209 9.236527 3.604054 5.893772 10.680785 2.195867 0.647592 -1.932791 5.013628 -3.790600 -0.059243 0.390414 4.227266 -5.103703 -1.544400 3.466942 -0.421986 9.190688 -0.123471 7.190045 1.753996 5.631234 -0.991531 -8.252624 -4.691423 -4.981854 6.606921 -5.868868 5.253524 0.832933 -0.697955 2.991117 -4.401601 -0.997676 -10.900594 0.628483 -1.109250 -4.816162 0.602143 -8.558967 2.228787 -5.459952 -5.045706 2.274277 -4.144431 4.803679 1.968660 3.358930 -2.572364 -12.809578 5.342152 2.244043 2.392557 4.817667 3.007710 -2.835159 -0.339659 -6.640288 -8.482306 5.095746 4.056815 1.433582 1.063534 -4.749246 -2.143019 -0.112424 0.349787 -1.654999 7.693072 -6.953885 5.357011 -1.802617 -4.106772 -4.388936 -10.103080 -0.549464 -8.744618 2.537249 6.905241 -4.926970 0.518914 -4.466292 2.222773 -2.417513 -9.647742 3.846267 -5.325163 -1.962334 10.397332 -6.355195 -3.352923 -5.290998 0.685087 3.037044 7.583096 -1.859739 4.450175 7.935934 6.217128 4.895628 -8.709098 0.482867 4.638767 6.031864 2.740432 4.676645 -6.616920 -5.264648 0.618863 -3.556257 -14.784702 -3.725855 6.403104 8.463726 -0.049312 -8.504725 3.796288 -5.139041 10.232233 9.595230 4.703964 3.079483 1.794642 -6.954688 4.447513 14.452622 -5.685960 6.869591 -4.895982 -8.882175 12.434776 -3.447676 7.649327 -0.933049 2.251042 0.233648 -8.236392 0.927254 11.757663 2.774055 3.996691 3.225839 0.883869 0.621593 -13.602942 -15.881926 -1.348124 9.217452 5.096370 16.206804 -8.950073 -3.765990 -0.229535 7.718667 0.003565 -6.323925 1.845322 -3.987271 4.046029 -22.786823 -15.269282 16.834924 13.255632 2.709722 0.860635 6.717512 4.084021 -4.571237 -6.917069 -7.007743 7.283960 -0.738790 -5.488971 -1.405775 2.477408 -10.968233 -2.385580 0.292846 1.859561 8.012333 -7.087393 0.121869 -2.415842 -8.663539 -6.539473 6.681233 -8.095420 -7.159226 -0.940322 0.713155 2.430751 4.386438 -0.728189 -2.268342 1.998207 -6.825668 -3.748182 1.707544 6.562617 1.096963 12.314656 13.636416 -1.268903 2.857860 1.063725 -5.936805 20.719407 -8.036299 -1.839502 -0.475124 5.856537 1.644541 4.805147 7.535917 -3.659874 -6.160120 -10.701586 3.383547 0.202449 4.750528 -13.732138 -10.063378 -12.877046 -0.115394 1.996070 12.567140 0.236827 20.149106 -3.650860 1.704633 -18.877011 0.367963 6.870401 0.499243 9.253452 4.887673 -8.637223 -8.514516 -3.004047 -7.804527 3.871381 -1.558860 -7.961109 -6.212800 -3.675214 5.524289 -5.875636 3.701916 8.142368 -2.342480 9.004731 4.055135 -2.435641 -6.480643 0.012535 5.499788 2.973352 -5.441028 11.663296 -1.041885 19.617208 -3.537291 5.748666 -5.701257 4.527251 -2.178564 -7.255899 -3.982444 12.243849 9.395426 3.852801 0.133840 -0.285479 -2.960457 8.246237 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter&>(__gnu_cxx::__ops::_Iter_comp_iter&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.137619 0.173674 0.870598 0.661777 -0.498002 -1.225833 -0.210211 -1.307776 0.650451 0.291950 0.982750 0.080323 0.826462 -0.473116 0.063357 0.103669 0.660796 0.145081 0.003880 -0.380296 -0.381460 1.226276 0.082159 -0.325184 0.184570 -0.423082 0.589767 0.510708 0.456948 0.754160 0.219445 0.062764 -0.145279 0.284203 -0.372983 0.163939 -0.231061 0.435766 -0.536565 -0.261016 0.140869 -0.476810 0.836226 0.100580 0.563200 0.034281 0.617601 0.018311 -0.476192 -0.407031 -0.486131 0.529164 -0.423057 0.453602 -0.427726 -0.345878 0.471459 0.109444 0.089231 -0.669322 0.099221 -0.258185 -0.645980 -0.123103 -0.614082 0.119374 -0.353432 -0.621132 -0.080156 -0.287386 0.413451 0.061600 -0.120918 -0.275321 -1.302130 -0.012599 0.272052 0.095290 0.526537 0.442706 -0.047900 -0.416559 -0.679782 -0.620590 0.970918 0.200885 0.324418 0.517830 -0.844196 -0.257295 -0.044378 0.162171 0.405675 0.331408 -0.425483 0.270136 0.114558 -0.255207 -0.291522 -0.922322 0.256788 -0.439697 0.150586 0.141098 0.023339 0.116824 -0.305041 0.193114 -0.434950 -0.786045 0.230881 -0.525420 -0.342844 0.791163 -0.324767 -0.365787 -0.334790 -0.004965 0.127089 0.521356 0.267997 0.215258 0.575179 0.417216 0.398923 -0.729888 -0.186269 0.371218 0.471329 0.363975 0.114923 -0.289354 -0.468929 0.289807 -0.675267 -1.297757 -0.466252 0.693232 0.733711 -0.143733 -0.515370 0.566787 -0.387771 0.413747 0.760210 0.257146 0.273161 0.218668 -0.619142 0.295602 0.869786 -0.391518 0.559158 -0.168631 -0.511266 0.815511 -0.172198 0.191607 -0.014165 -0.282048 -0.092830 -0.253110 0.172159 0.814666 0.171920 0.216094 -0.059496 0.297314 -0.565748 -0.903707 -1.284660 -0.095002 1.072780 0.608126 1.183970 -0.681251 -0.292719 0.150871 0.464121 -0.285634 -0.518815 0.274009 -0.524659 0.506387 -1.759261 -1.064344 1.435815 0.692865 0.607207 0.009893 0.393859 0.405183 -0.362779 -0.467758 -0.466360 0.388794 0.269589 -0.919535 -0.258014 0.093943 -1.002050 -0.200991 0.018032 0.167469 0.017382 -0.227504 0.569560 -0.668710 -0.357444 -0.365005 0.434271 -0.500997 -0.125815 -0.124300 -0.098936 0.076841 0.310437 -0.137469 -0.003879 0.016987 -0.554496 -0.101685 -0.099508 0.414743 0.243673 1.258315 1.294555 -0.417598 0.416217 -0.100618 -0.611511 1.288260 -0.542244 0.119569 -0.045930 0.709444 0.319110 0.322181 0.834241 -0.338341 -0.365032 -0.914722 -0.283480 0.626505 0.427704 -0.547154 -0.449980 -1.253941 0.008973 -0.133144 1.272001 -0.238912 1.319379 -0.597459 0.319841 -1.310822 0.164240 0.274942 -0.168534 0.585709 0.226195 -0.579847 -0.493047 -0.262625 -0.733557 -0.290592 -0.082644 -0.398802 -0.446724 -0.368500 0.142794 -0.762488 0.107951 0.397713 -0.294093 0.678030 -0.197862 0.002667 -0.438109 0.254450 0.589686 0.110939 -0.544755 0.622229 0.151328 1.735266 0.041410 0.592820 -0.431107 0.509833 -0.358300 -0.812891 -0.420417 0.914403 0.982835 0.148206 0.209959 0.273920 0.093314 0.644391 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -2.423841 0.995263 7.387826 3.525214 -3.970998 -4.893593 -2.023424 -7.016374 3.819185 2.212508 5.755321 0.189408 3.221259 -1.575732 -0.132880 -1.223874 3.506760 -1.444857 0.809843 -2.113234 -1.283696 6.826639 2.091317 -2.483746 0.741634 -5.890950 4.385777 1.508383 2.734953 5.126965 1.277129 -0.042876 -1.631096 2.430282 -1.246551 0.604742 0.562842 2.137967 -2.392888 -0.753239 1.570246 -1.108351 4.597713 -0.099437 3.998900 0.362080 2.282444 -0.284988 -4.215899 -2.429830 -2.074378 3.018734 -2.986910 2.680211 0.851398 -0.655458 1.386798 -1.409266 -0.372236 -5.170567 0.035774 -1.842777 -2.264919 0.199577 -3.627820 0.918058 -2.655889 -2.293374 0.558054 -2.334095 2.222574 0.686869 1.439786 -0.588293 -6.318715 2.077660 1.364671 1.110699 2.554645 2.116024 -1.016208 -0.858038 -3.200530 -4.126861 2.498041 2.115863 0.674398 0.749612 -3.052640 -0.457048 -0.066423 0.172689 0.063706 3.498514 -3.624087 1.888977 -0.752131 -2.142196 -2.128702 -5.532263 0.184561 -3.766810 1.310265 2.827733 -2.567384 -0.235153 -2.201110 1.043210 -1.461992 -4.363000 2.139625 -2.694879 -0.748709 5.021672 -2.714199 -1.569110 -2.649373 0.005087 1.512550 3.453047 -0.305469 2.117256 3.302207 3.129892 2.877671 -4.134880 -0.365025 2.506715 2.969102 1.187847 1.598745 -3.071364 -2.335385 0.979504 -2.220239 -7.017196 -2.402729 3.054544 4.233011 0.056713 -3.204945 1.208946 -2.543970 4.723753 4.275057 2.102126 1.287536 1.006052 -3.810180 2.138339 6.577917 -2.149363 3.011182 -1.643008 -3.739520 5.702971 -1.719547 3.447480 -0.389868 0.750492 -0.273047 -3.520634 0.292163 5.428475 1.381930 1.843290 0.748583 0.818048 -0.623185 -6.475513 -8.014453 -0.334696 5.468243 2.827606 7.180793 -4.375681 -1.772121 0.043933 4.171010 0.286753 -3.317032 1.311312 -1.985929 2.338219 -10.455666 -6.995713 8.325184 6.749748 1.741475 0.258527 2.940773 1.997250 -3.026085 -3.457851 -3.530687 3.110567 -0.366728 -3.346680 -1.078862 1.294577 -5.076333 -1.296531 0.287157 0.890827 3.689308 -2.689082 1.005183 -0.709960 -2.980070 -2.845042 3.220149 -3.054628 -3.378233 -0.254779 0.319333 1.323401 2.382296 -0.427534 -0.763118 0.770721 -3.264090 -1.312058 0.847790 2.802409 0.528842 6.318942 6.445389 -0.954746 1.498086 0.145402 -2.832614 9.569382 -3.808879 -0.290639 -0.003599 2.531016 1.210160 2.149356 3.864109 -1.984956 -2.625994 -4.977125 0.716296 0.160041 2.755793 -6.675567 -5.583132 -6.643412 0.503719 0.829794 5.557422 0.030116 9.423063 -1.846710 0.861903 -9.010932 0.206345 3.441112 -0.031364 4.375856 1.814026 -3.851240 -4.183166 -1.511837 -4.049805 1.266684 -0.840562 -2.945384 -2.895041 -1.852656 3.005201 -2.713277 1.689293 3.563544 -1.223459 4.508151 1.298343 -0.935232 -3.448431 0.178438 2.538472 0.930509 -2.616664 5.655963 0.135940 9.662433 -1.541911 2.326144 -2.228910 2.644060 -1.370837 -3.760735 -1.779174 5.521623 4.815063 2.015941 -0.431197 0.321508 -1.497376 3.658853 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(bool (*&)(Job, Job)) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = -2.251029 -0.188227 4.398466 -0.304811 -1.238611 -2.115280 -1.632134 -5.300719 2.706832 2.490164 4.736742 0.119457 2.906537 -0.863210 0.259376 -0.474623 2.088356 -3.002994 1.426560 -1.253727 0.489806 4.788704 1.323982 1.159911 0.340408 -4.930456 1.922274 -0.568747 1.647945 3.537434 0.791661 -0.150214 -1.397634 0.946987 0.531110 2.145044 1.491091 1.514695 -0.559868 0.047199 0.487946 -0.944917 2.168564 0.098819 3.592092 -0.139561 -0.130947 -0.293960 -1.764309 -2.637775 -0.067487 0.700145 -2.578198 0.889292 0.746505 -0.868255 -0.201780 -0.433207 -0.763327 -2.731657 -0.125756 -1.698726 -0.903656 0.900743 -1.396122 1.339089 -2.316541 -0.027284 -0.384126 -2.562414 1.735675 0.944589 1.469102 1.752543 -3.875993 1.207906 0.468288 -0.266753 1.214172 0.517607 -1.976840 -0.275920 -1.838362 -3.066080 2.168552 3.185500 -0.031951 -0.111487 -2.621270 1.238735 -0.571104 0.129526 0.346642 2.416721 -2.889672 0.005514 0.482227 -1.501251 -0.336177 -3.543750 0.222646 -2.672247 0.719186 1.874481 -1.327184 -1.191072 -2.578922 0.690364 -1.907580 -2.339051 2.127136 -1.203316 -0.571205 2.937188 -2.578686 -0.080058 -2.935869 -0.221235 2.027497 1.824478 0.250015 1.322533 2.164442 1.979674 2.013432 -2.552306 -0.881497 2.490800 2.718784 -0.136560 0.324771 -2.098502 -1.264758 1.203564 -2.094694 -3.983111 -2.804008 1.466518 2.560009 -0.365313 -1.238963 0.598115 -1.411241 2.530193 3.968715 0.602181 0.518035 1.050718 -2.687869 1.434320 3.620502 -1.375044 2.259554 -0.920560 -1.555326 3.396602 -2.437772 2.112345 0.307760 1.329574 -1.194037 -2.335389 0.079272 2.939911 0.912204 2.876484 -1.833827 1.031745 0.330070 -2.968972 -5.385999 -1.301090 3.939921 1.739363 2.919109 -2.529685 -0.759942 0.435755 3.313515 1.534031 -3.030013 1.018236 -1.031723 1.111522 -5.958525 -3.688698 5.224934 5.627999 2.327808 0.485823 1.453006 2.238898 -2.966490 -1.183562 -1.958251 2.626531 -1.281694 -3.672031 -1.074150 0.907462 -2.792132 -1.801735 -1.115815 0.620777 1.548432 -0.634598 1.721710 1.294417 -0.649205 -0.668166 2.549598 -1.263185 -3.152207 -1.103036 0.226747 0.932133 1.071917 -0.913666 0.883056 1.701686 -2.454757 -0.318157 1.808792 0.944886 0.440635 3.640880 3.689821 -1.151205 -0.710837 -1.185696 -1.178931 3.000551 -1.920462 -0.361196 -0.316815 0.498874 1.053733 1.089703 2.004193 -1.082185 -2.426454 -2.433301 0.281930 0.293492 2.067722 -1.502479 -4.847191 -3.759702 1.066657 0.525265 4.076179 0.658331 5.823753 -0.990091 1.302632 -4.901873 0.310607 1.665595 -0.049660 2.122034 0.456278 -1.365077 -1.844161 -1.069093 -3.076515 -0.820769 -0.143972 -1.757310 -1.368597 -2.617963 3.447532 -1.661874 0.157767 0.418975 0.331521 3.649898 2.338595 -0.844030 -3.586071 1.495365 1.229708 0.294258 -1.324153 3.180668 0.414665 4.991194 -1.953873 1.066887 -0.563078 2.452270 -1.513065 -2.633983 -0.508983 3.414432 3.804499 1.157390 -1.119812 -0.908821 -0.384532 1.534326 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -4.190136 1.535250 12.629561 5.956272 -6.039548 -8.175108 -3.939825 -13.535908 8.662492 4.590627 10.356086 1.481910 7.336517 -4.189316 -0.619818 -2.763173 7.021973 -2.411045 -0.784062 -4.623902 -0.378119 12.454799 2.006100 -5.352156 2.128258 -10.990536 6.541237 2.981501 4.424406 7.851547 2.702125 0.975660 -3.518211 4.386357 -3.178624 1.593998 1.873481 3.139365 -5.191881 -3.227410 4.031595 1.273112 8.151185 1.022219 8.138558 0.503352 1.743678 -0.361289 -6.080034 -5.230767 -1.039199 4.885450 -3.711354 5.250278 1.476100 0.548117 2.375713 -3.954556 0.541182 -7.540587 2.012476 -0.429662 -3.307443 -0.093727 -5.103139 1.094791 -1.806166 -3.264061 0.703441 -7.682684 3.735957 -0.891181 0.546037 -3.256004 -9.972146 2.220386 2.120041 0.905203 5.745925 5.369170 -2.956370 -3.426906 -5.205983 -7.210217 5.209178 5.287195 0.502852 4.309173 -5.876831 -2.871878 0.788970 -0.764647 1.728965 5.922135 -7.938658 0.612267 0.543735 -4.046309 -2.389567 -6.225900 1.965099 -5.429715 2.127466 4.445135 -4.099697 0.158588 -1.751618 1.433952 -2.634118 -4.633271 4.162405 -4.286684 -0.390631 9.939452 -4.179185 -4.790128 -5.625191 -1.010511 1.672157 7.003268 -0.147651 1.914768 7.151271 5.189667 5.435953 -7.678164 -0.827225 5.993208 5.204623 2.111408 2.386113 -6.621868 -3.191867 3.009232 -5.230157 -11.995354 -5.233804 2.884530 8.713154 -0.042799 -6.497362 3.372575 -4.051044 6.417543 6.528330 2.330298 2.309072 1.705500 -7.338184 2.967596 10.640044 -3.023941 4.663801 -3.039933 -6.534335 7.633235 -2.837247 4.921552 -0.560486 -0.577602 -1.260979 -4.786363 2.984308 8.954598 -0.105740 3.597615 -2.356291 2.531373 -2.405755 -10.068412 -16.025482 -1.814928 7.786488 5.970360 13.210107 -7.505638 -3.431467 -1.761822 9.046398 -0.840606 -5.501897 3.916215 -4.743393 4.655312 -14.559708 -10.711511 15.351856 13.599877 4.658028 -0.565874 6.584246 1.591409 -4.838793 -4.978059 -5.183243 4.682946 2.708518 -4.920367 0.382592 1.829748 -8.623691 -4.252351 0.145780 1.719723 4.104143 -4.129774 3.812487 -2.011501 -3.923171 -5.444316 5.737376 -3.963771 -3.156019 -1.162579 0.488124 0.235330 5.165805 -2.080425 -3.185418 1.435723 -4.620162 -1.624768 1.327844 4.872488 1.338163 9.207802 10.590812 -3.176028 4.473019 -0.467838 -4.939769 15.772449 -6.539765 0.118272 -0.394551 4.406222 3.312166 3.459504 5.364351 -3.759319 -2.559139 -8.736227 0.234751 1.089285 4.767082 -11.586845 -8.770341 -11.441600 0.262526 -1.485477 9.407468 -0.086798 16.658495 -4.573290 1.474878 -16.208245 0.875492 7.324002 -0.509420 5.328763 3.197038 -6.599632 -9.737565 -1.587330 -8.210837 -0.697624 -0.717503 -5.494304 -5.184012 -5.304187 8.488084 -5.756140 2.633606 8.286471 -1.526227 7.347386 -0.164648 -0.806617 -5.739219 -0.457814 1.687308 1.072080 -4.815788 7.954906 0.436563 15.224646 -2.865099 6.003102 -3.691931 6.553899 -4.226101 -10.010118 -4.464195 9.166156 8.654090 3.013173 -0.039061 0.182557 -2.872033 6.828887 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.006348 0.727085 5.473223 4.115044 -4.321412 -5.812690 -1.756891 -6.194923 3.793019 1.718723 5.558580 0.296783 3.281770 -2.064172 -0.290411 -1.572306 2.896322 0.331130 -0.570676 -2.056960 -2.891523 5.453920 0.822258 -2.714067 1.030416 -3.071165 3.611880 2.620462 1.281414 3.481562 1.131903 0.366406 -1.729119 2.009091 -1.464678 1.102667 -0.172009 1.401256 -2.055978 -1.466270 1.983218 -1.727635 4.565789 0.124990 4.060375 0.804797 2.476308 -0.008082 -4.443041 -2.101161 -1.293016 2.585858 -1.632286 2.331956 0.940734 0.431512 2.273299 -2.167080 0.162305 -4.092374 1.003005 -1.489950 -2.449135 -0.027066 -3.414130 0.345953 -1.474072 -2.924795 0.788347 -3.355241 1.461369 -0.618314 0.053909 -1.137763 -4.486403 0.992422 1.229590 0.588571 2.385244 3.252066 -0.870707 -1.426270 -3.344890 -2.874807 1.723833 0.549277 0.626824 1.711001 -3.873515 -1.623360 1.008097 -0.441516 0.678066 2.595333 -3.703059 1.321594 0.639714 -1.782824 -2.638948 -4.937414 0.864535 -2.214614 1.256245 2.485207 -2.600946 0.242346 -1.157226 0.852870 -1.532436 -3.295861 1.514673 -3.228088 0.497172 4.125533 -2.399501 -2.324457 -2.154747 -0.680560 0.732330 3.383842 -0.081090 0.681852 3.185854 2.318255 2.314014 -3.370776 -0.543222 2.157701 2.857368 1.134690 1.307075 -3.055072 -1.318604 1.175117 -3.101076 -6.231030 -2.035055 2.459437 3.849189 0.080220 -3.384653 2.120004 -1.935752 3.479218 2.826813 2.724575 0.855716 0.587139 -3.595976 1.056565 4.604583 -1.252603 2.619024 -1.024224 -4.624201 4.444744 -0.549407 1.905903 0.125127 -0.418831 -0.394306 -2.200891 1.090809 3.738591 0.826262 0.219551 0.434572 1.080865 -2.500261 -4.980530 -7.699800 0.716101 4.397897 4.002961 7.884015 -4.689754 -2.336421 -0.840630 4.225705 -0.710003 -2.944138 1.404571 -1.798738 2.055115 -8.888544 -6.295519 7.807791 5.067669 1.850370 -0.269723 3.701191 0.051439 -2.752835 -3.239440 -3.583965 1.915887 1.226363 -2.767688 0.302271 0.779558 -5.423599 -0.487552 -0.334028 1.007493 3.112063 -2.557284 1.647380 -3.012417 -1.729230 -2.917393 2.179926 -1.634017 -1.680049 -0.204604 0.206148 0.325358 2.207494 -0.443711 -1.898148 -1.031971 -3.298256 -0.677322 0.621166 2.376355 1.164456 7.970213 6.451818 -1.417653 2.631545 -0.085253 -2.146006 9.238077 -3.912796 0.225667 -0.137120 3.442958 1.838985 1.269968 3.838821 -1.673751 -1.753406 -3.788967 -0.092475 0.257449 1.996366 -7.093146 -4.182318 -7.413527 0.072073 -0.647292 4.960644 -0.060782 8.011672 -1.491697 0.468291 -8.460148 0.197656 3.359388 -0.381266 3.299886 1.438818 -4.083372 -3.778336 -0.540749 -3.570971 0.273377 -0.365160 -2.110606 -2.252981 -1.443271 1.792685 -2.352335 1.054948 4.349164 -1.751902 3.320492 0.760596 -0.372409 -1.783553 -0.770241 2.502045 0.390469 -2.224425 4.894992 0.459198 9.391205 0.294912 2.456032 -1.612921 2.964277 -1.518590 -4.424172 -2.046830 3.756588 4.836162 1.492155 0.015658 1.505911 -1.568969 2.991969 -PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = -0.167210 0.215272 1.155503 0.587301 -0.622916 -1.090231 -0.249638 -1.487221 0.863904 0.448167 0.963834 0.234375 0.926357 -0.517505 -0.125794 -0.173742 0.732077 0.064563 0.065292 -0.447204 -0.203292 1.390999 0.028114 -0.331038 0.208456 -0.898940 0.915182 0.331113 0.706832 1.090091 0.265747 0.051851 -0.413707 0.357049 -0.194838 0.062062 -0.104692 0.445249 -0.655370 -0.210697 0.236599 -0.391425 0.937921 0.205244 0.683230 -0.011421 0.184210 0.024562 -0.400963 -0.491322 -0.267250 0.174166 -0.418841 0.574311 -0.272533 -0.311142 0.262018 0.157330 0.196498 -0.615731 0.205818 -0.365335 -0.451936 -0.026537 -0.750650 0.076629 -0.632778 -0.607672 -0.182587 -0.705421 0.366631 0.075304 0.071449 -0.368682 -1.583791 0.044857 0.232830 0.090195 0.653365 0.638594 -0.252607 -0.465514 -0.775403 -0.768102 0.704870 0.578563 0.079950 0.512156 -0.851259 -0.452968 0.044318 0.176482 0.434472 0.490287 -0.628009 0.249118 -0.301054 -0.244509 0.006951 -1.184675 0.263992 -0.493022 0.217047 0.071511 -0.239528 0.048335 -0.053482 0.194179 -0.211692 -0.622054 0.439827 -0.493914 -0.216668 1.111843 -0.197809 -0.563955 -0.644612 -0.092232 0.227878 0.600098 0.109504 0.153947 0.589845 0.444989 0.608671 -0.861397 -0.175708 0.738948 0.289596 0.255524 0.135713 -0.370984 -0.393420 0.334156 -0.621772 -1.391223 -0.487526 0.428538 0.771354 -0.332431 -0.284175 0.336740 -0.593353 0.403632 0.872415 0.226357 0.388199 0.250369 -0.706112 0.319961 1.048696 -0.295461 0.412096 -0.352333 -0.634462 0.916303 -0.168004 0.403824 -0.342821 -0.148121 -0.098183 -0.335446 0.342120 0.943992 -0.137739 0.320585 -0.129197 0.270395 -0.519163 -0.960891 -1.416913 -0.192573 1.251768 0.833636 1.206171 -0.773463 -0.097097 0.068868 0.642272 0.119697 -0.491562 0.460977 -0.483754 0.532434 -1.965763 -1.154100 1.472176 1.091305 0.569398 -0.136145 0.257212 0.351403 -0.367750 -0.648489 -0.575455 0.352770 0.110367 -0.931900 -0.278616 0.200977 -0.983437 -0.269214 0.203167 0.145958 0.529614 -0.415903 0.584856 -0.530550 -0.252572 -0.792137 0.800348 -0.480549 -0.235795 -0.102379 -0.023393 0.040892 0.413058 -0.084723 -0.077836 0.180691 -0.320367 -0.037783 -0.014302 0.319737 -0.038365 1.027712 1.179047 -0.433076 0.035609 -0.050582 -0.607822 1.736448 -0.705022 0.132572 0.062676 0.533579 0.302228 0.443514 0.720013 -0.427378 -0.270748 -0.961772 -0.316741 0.407282 0.493143 -0.850840 -0.773783 -1.254184 0.172871 -0.322054 1.201191 -0.026841 1.616832 -0.616309 0.338429 -1.314526 0.136688 0.567511 -0.102919 0.841252 0.277286 -0.659828 -0.412424 -0.278354 -0.888989 -0.004077 -0.121104 -0.477076 -0.495213 -0.239475 0.299925 -0.564397 0.188616 0.514418 -0.420574 0.876146 -0.354488 0.015112 -0.682249 0.183363 0.382217 0.111865 -0.535465 0.697782 0.125989 1.490562 -0.058170 0.554053 -0.312888 0.625698 -0.507430 -1.115472 -0.517763 1.041867 0.861285 0.388512 0.048772 0.078502 0.060992 0.614059 -PE-benchmarks/weighted-job-scheduling.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(Job&, Job&) = -0.876669 0.056883 2.667358 0.404453 -1.240513 -1.347886 -0.686080 -3.629157 2.084474 1.471027 2.495615 0.523199 2.044357 -1.151672 -0.275212 -0.644967 1.547329 -0.839193 0.686051 -0.783357 0.328483 3.160375 0.033791 0.347953 0.287358 -2.671025 1.825034 -0.216906 1.725826 2.375955 0.670703 -0.147397 -1.342974 0.464552 0.493820 0.692617 0.482357 0.927449 -1.165689 -0.414438 0.307862 -1.227788 1.650395 0.143818 1.965942 -0.896791 -0.242069 -0.195553 -0.802740 -1.344376 -0.147022 0.007513 -1.173989 0.958431 0.425430 -1.083904 -0.188904 0.560180 0.115311 -1.082592 0.251560 -1.476924 -0.394632 0.334722 -1.194399 0.495794 -1.917257 -0.388071 -0.421846 -2.035637 0.741178 0.405208 1.004246 0.294513 -3.395025 0.430704 0.348826 -0.173154 1.112639 1.465276 -0.650374 -0.825089 -1.398819 -1.792278 1.255328 2.155006 -0.411543 0.297484 -2.094215 0.038038 0.037017 0.267407 0.657473 1.202488 -2.083974 0.228316 -0.979620 -0.646091 0.590915 -2.998702 0.340866 -1.451814 0.458753 0.430638 -1.045341 -0.299014 -0.383373 0.427798 -0.493001 -1.276835 1.359544 -0.698399 -0.306335 2.511733 -0.865168 -0.898142 -2.048132 -0.066738 0.882416 0.837863 0.105081 0.737668 1.074244 0.991368 1.772903 -1.840272 -0.511723 2.356460 0.871441 0.038267 -0.104192 -0.871024 -0.535244 0.885229 -1.182351 -2.759041 -1.633347 0.706070 1.699488 -0.574015 0.012990 -0.301210 -1.136537 1.200213 2.241373 0.218252 0.619857 0.934493 -1.566756 0.701618 1.996782 -0.512037 0.786258 -0.665819 -0.923236 1.787138 -0.828907 1.153348 -0.826797 0.753954 -0.385788 -1.251802 0.348663 1.913283 -0.329770 1.292963 -1.274851 0.689638 -0.641304 -2.040757 -3.244015 -0.697865 2.908633 1.760001 1.644958 -1.574199 -0.218118 0.438039 1.726564 1.235726 -1.572720 1.240613 -0.960131 1.010788 -3.899049 -2.395792 3.005778 3.162340 1.168947 -0.236321 0.345811 1.072436 -1.890896 -1.242818 -1.494538 1.142566 -0.514151 -2.645375 -0.816606 0.656196 -1.845437 -0.925842 0.260145 0.190188 1.593768 -0.636409 1.597254 0.240596 0.030409 -1.304769 2.590349 -0.632421 -1.394505 -0.675599 0.145103 0.554376 1.059353 -0.411244 0.295900 0.938410 -0.780548 -0.091460 0.550518 0.290247 -0.430815 2.006443 2.264035 -0.753537 -0.727132 -0.531440 -1.144571 2.947271 -1.482833 -0.064856 -0.013993 0.038082 0.545032 0.972582 1.309427 -0.946049 -1.171210 -1.757922 -0.764685 0.042875 1.435045 -1.438175 -2.777363 -2.347473 0.843532 -0.428595 2.112629 0.582750 3.660204 -1.263332 0.734781 -2.691742 0.124642 1.473688 -0.065820 2.101096 0.219500 -1.030900 -0.466391 -0.628367 -1.985914 -0.015846 -0.202140 -1.042941 -0.950624 -1.211594 1.847677 -0.776393 0.204626 0.353202 -0.430789 2.550586 0.127296 -0.253164 -2.146163 0.943572 0.334481 0.251740 -0.995193 1.895012 0.313174 2.879265 -0.819814 0.415100 -0.356741 1.531802 -1.415925 -2.386494 -0.676841 2.111558 2.153023 1.220446 -0.883284 -0.422657 -0.310490 0.966163 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -3.533633 0.256678 9.233219 3.243132 -4.427080 -6.070021 -2.848437 -11.199052 6.362994 4.260434 9.300720 0.575887 5.827711 -3.287788 -0.116785 -1.782190 4.862317 -2.729403 0.358150 -3.052833 -0.566277 9.234382 1.168492 -1.686288 1.366896 -7.762951 4.763831 1.807397 3.070663 5.771675 1.978769 0.247965 -2.886857 2.535458 -1.135167 2.705295 1.718756 2.761435 -2.873839 -2.184270 2.449318 -1.649561 5.843665 -0.102074 7.001647 -0.677189 1.843644 -0.728269 -4.927407 -4.315772 -0.733448 3.062315 -3.535968 3.192100 1.413551 -0.942115 1.067170 -2.137936 -0.241480 -5.774820 1.288297 -2.052362 -2.793673 0.376908 -3.584946 1.365334 -2.284695 -2.057876 0.545515 -5.990881 2.700610 -0.128949 0.938702 -0.209531 -7.842040 1.731469 2.006132 -0.303341 3.431026 3.759095 -1.807853 -2.463835 -4.223410 -5.277125 4.490633 4.733995 0.410254 2.035049 -5.928278 0.001099 0.617815 -0.142219 1.323828 4.556602 -6.466355 0.340693 0.540761 -3.255224 -1.881348 -6.542407 1.468109 -4.664338 1.867260 3.682549 -3.792103 0.031810 -2.188810 1.549265 -2.781479 -4.595045 2.802897 -3.554263 0.409580 6.937658 -4.064056 -3.038670 -5.136019 -0.598786 2.255656 3.976802 0.096349 1.896195 5.652119 3.668423 4.667753 -6.122364 -1.442653 5.000016 4.526139 1.287535 0.692215 -4.671227 -2.034259 2.294568 -4.762591 -9.518895 -4.979227 2.426204 6.342002 -0.600005 -4.158293 2.107054 -2.803370 5.336557 6.211565 1.883228 1.224019 2.376703 -5.647781 1.904104 7.107144 -2.257908 3.794482 -2.016914 -4.524864 5.648566 -2.265263 3.475608 0.284202 0.781706 -1.224890 -4.354440 1.417679 6.439483 0.643612 3.521656 -3.057942 2.345559 -1.937817 -7.259778 -12.196105 -1.508537 7.037959 5.148176 9.213032 -6.195143 -3.005609 -0.288423 6.767449 0.442646 -5.240324 2.888310 -3.475738 3.381857 -11.808389 -8.673273 11.216887 10.220802 4.368904 0.069272 4.753309 1.547472 -5.378701 -3.239302 -4.500332 4.216572 1.095152 -5.890957 -0.442821 1.525199 -6.997746 -3.035179 -0.833950 1.201315 2.816532 -2.511618 3.907559 -0.826258 -1.892426 -3.042696 5.109453 -2.581647 -3.603329 -1.911884 0.493624 1.236702 3.585847 -2.180747 -1.055675 1.079643 -4.463592 -0.804983 1.909588 2.899469 1.025838 8.771521 8.749994 -2.773794 2.265887 -1.606952 -3.302537 10.087945 -4.872163 -0.354299 -0.322073 2.541498 2.516602 2.485393 5.022284 -2.852596 -2.963631 -6.084958 -0.626640 0.673316 4.092796 -6.895492 -7.375061 -9.396996 0.849785 -0.690456 7.772467 0.603101 12.506493 -3.004833 1.827214 -11.910286 0.315166 4.554481 -0.454353 4.692953 1.517272 -4.750627 -5.975595 -1.259608 -6.233202 -1.594701 -0.281342 -3.375331 -3.882899 -4.769510 6.286378 -3.843432 1.164506 4.073632 -0.610941 6.360696 1.433762 -0.815178 -4.638787 1.034281 2.242074 0.900613 -3.578711 6.491917 0.880372 12.743048 -2.204272 3.530555 -2.388813 5.265683 -3.404541 -6.959862 -2.667763 6.611205 7.828394 2.755041 -1.436117 -0.155891 -2.261338 4.751731 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.325612 0.452339 4.032967 1.804520 -2.456362 -3.569989 -1.220324 -5.110747 2.619985 1.664355 4.235933 0.152825 2.627282 -1.391457 -0.013111 -0.675325 2.277824 -0.687627 0.020701 -1.535734 -1.185216 3.908774 0.373217 -0.909725 0.755933 -2.756402 2.377357 1.334154 1.156640 2.516250 0.967998 0.137210 -1.385940 1.233139 -0.622492 1.101041 0.420195 1.332483 -1.380338 -0.782264 1.141227 -1.313482 2.992497 0.036199 2.937443 0.187202 1.300189 -0.054542 -2.520629 -1.814445 -0.610477 1.459682 -1.548833 1.545690 0.320683 -0.489616 0.881092 -0.931338 0.059371 -2.564001 0.537441 -1.207831 -1.639247 0.101232 -1.987179 0.441528 -1.204640 -1.522695 0.284722 -2.522562 1.184446 -0.231363 -0.014692 -0.183601 -3.618057 0.537224 1.100302 0.068686 1.677081 1.757537 -0.661199 -1.161301 -2.333025 -2.355164 2.061380 1.597076 0.598014 1.043686 -2.982106 -0.235263 0.474501 0.021703 0.867079 1.970374 -2.668842 0.391070 0.149337 -1.496685 -1.448312 -3.578234 0.827476 -1.855121 1.015982 1.409271 -1.822724 0.032637 -1.107757 0.684491 -1.280153 -2.383745 0.961660 -1.961404 0.318412 3.122779 -1.708008 -1.577620 -2.142022 -0.483004 0.966464 1.855172 0.323651 0.570020 2.639796 1.684789 1.975717 -2.772557 -0.831806 1.720755 1.871881 0.809710 0.515738 -1.968295 -1.087431 1.046253 -2.490192 -4.545639 -1.995293 1.288915 2.838137 -0.360431 -1.958334 1.262855 -1.503635 2.167365 2.672808 1.262233 0.625507 0.883566 -2.529401 0.776309 3.067607 -1.051420 1.878163 -0.794508 -2.263599 2.715216 -0.641333 1.297069 0.314570 -0.128289 -0.642611 -1.674423 0.581812 2.876628 0.473897 1.173049 -0.807854 1.055897 -1.449430 -3.265683 -5.446805 -0.207092 3.534087 2.560856 4.496793 -3.132121 -1.338327 -0.047376 2.952308 -0.096506 -2.403966 1.203242 -1.458305 1.601639 -5.644156 -4.081298 5.130702 4.064324 1.949281 -0.090119 2.071748 0.502867 -2.346611 -1.797102 -2.286547 1.758797 0.526266 -2.770979 -0.318782 0.684657 -3.510530 -0.869443 -0.343195 0.749442 1.396952 -1.244905 1.762890 -1.169670 -0.941920 -1.617629 2.033004 -1.151179 -1.355865 -0.559092 0.051906 0.536585 1.509926 -0.825482 -0.693647 0.011472 -2.233741 -0.307476 0.665710 1.484815 0.558821 4.916507 4.175299 -1.376287 1.205799 -0.638430 -1.607749 4.990527 -2.314135 0.165207 -0.079373 1.766495 1.160230 1.056203 2.835145 -1.302863 -1.481891 -2.836902 -0.601495 0.598350 1.740897 -3.258784 -2.894169 -4.924193 0.332204 -0.445956 3.918208 -0.005929 5.567430 -1.223808 0.881469 -5.340220 0.191049 1.926456 -0.381765 2.224910 0.718985 -2.440520 -2.380398 -0.579544 -2.971927 -0.816712 -0.035222 -1.151342 -1.813625 -1.651843 1.957306 -1.689234 0.410505 1.953029 -0.647365 2.623642 0.540921 -0.275002 -1.660594 0.260200 1.852180 0.283211 -1.738565 3.110721 0.584774 6.390261 -0.303531 1.722246 -1.022619 2.144141 -1.170705 -3.121259 -1.441293 2.982205 3.631564 1.229879 -0.359768 0.360630 -0.720403 2.217117 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = -1.879316 0.379885 4.993394 1.955962 -2.884665 -3.546083 -1.452479 -6.318726 3.681561 2.317931 4.991473 0.735911 3.594172 -2.040243 -0.230483 -1.139606 3.030531 -1.104223 0.543026 -1.696109 -0.572342 5.755189 0.605560 -0.618117 0.726384 -4.020194 3.160682 0.636093 2.337628 3.860931 1.233668 0.014140 -2.009735 1.284477 -0.082813 1.261656 0.380899 1.699224 -1.993371 -1.054087 1.179111 -1.937893 3.571863 0.279052 3.568049 -0.787573 0.839572 -0.307142 -2.607130 -2.425737 -0.766147 1.194554 -2.120331 1.963192 0.691644 -1.147370 0.784696 -0.097542 0.163475 -2.975874 0.498784 -2.120783 -1.430208 0.273131 -2.385355 0.718891 -2.584155 -1.332432 -0.209616 -3.320286 1.500040 0.237127 1.002798 -0.085328 -5.386163 0.841191 0.903285 -0.003646 2.184725 2.810502 -1.114590 -1.475088 -2.733263 -3.227203 2.451439 2.497292 -0.045859 1.019165 -3.802322 -0.289376 0.276584 0.246604 0.968697 2.310055 -3.748252 0.664318 -0.495391 -1.570068 -0.438081 -4.820133 0.692552 -2.586332 0.891473 1.485975 -2.055513 -0.390416 -1.416990 0.650719 -1.343076 -2.748656 2.004570 -1.951034 -0.541298 4.176686 -2.057230 -1.712512 -3.011688 -0.195877 1.418168 2.179452 0.315807 1.147098 2.520686 1.977558 2.837728 -3.331937 -0.660906 3.148642 2.176721 0.452606 0.334880 -1.894358 -1.290284 1.543114 -2.503567 -5.371642 -2.740076 2.001391 3.456886 -0.287415 -1.547436 0.572175 -1.919499 2.569071 3.725486 1.156107 1.056580 1.318793 -3.059610 1.184647 3.955165 -1.246025 2.033623 -0.940673 -2.596166 3.872943 -1.398040 2.006021 -0.661017 0.635755 -0.718757 -2.255743 0.665665 3.702655 0.053096 1.691053 -1.435420 1.175118 -1.313497 -4.179371 -6.709040 -0.631674 4.853552 3.406307 4.613540 -3.369920 -0.984426 0.392669 3.324969 0.894115 -3.088430 1.823041 -1.732515 1.929771 -7.665390 -4.891767 6.467124 5.381075 1.978421 -0.194681 1.737059 1.403841 -3.141246 -2.456078 -2.987634 2.241984 -0.073783 -3.854467 -0.784650 1.066287 -4.023559 -1.336699 0.047764 0.560360 2.502946 -1.730271 2.445527 -0.665515 -0.742605 -2.099592 3.545179 -1.430171 -2.296051 -0.938966 0.103482 0.827277 1.992370 -0.561174 -0.315256 0.636408 -2.303795 -0.622763 0.698337 1.407541 0.133464 5.051863 5.057289 -1.521894 0.163684 -0.732182 -2.204338 6.262407 -3.068250 -0.089553 -0.226076 1.471999 1.434350 1.605096 3.013089 -1.648804 -2.098491 -3.472379 -0.774372 0.432367 2.366176 -4.167616 -4.465806 -5.327817 0.950679 -0.561639 4.400630 0.373044 7.132473 -2.132240 1.015534 -6.292848 0.297910 2.710834 -0.224564 3.375507 0.755923 -2.539755 -1.938820 -1.069516 -3.631159 0.089078 -0.175122 -1.807258 -1.950192 -2.133009 2.967415 -2.130480 0.648285 1.809833 -1.059561 4.131769 0.700476 -0.486596 -3.106845 0.940453 1.398150 0.513186 -1.937244 3.995278 0.514493 6.681958 -0.988347 1.510852 -1.118065 2.793743 -2.087570 -4.296992 -1.554033 3.884311 4.414923 1.756358 -0.811314 0.079535 -0.820919 2.368957 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter __gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter) = -0.010123 0.265137 1.101674 0.108506 -0.220082 -1.122442 -0.277115 -1.754742 0.705187 0.502033 1.191053 -0.120791 0.895643 -0.287464 0.094275 0.347713 0.599486 -0.116429 0.176027 -0.382594 -0.223576 1.211667 -0.160175 0.237125 0.185291 -0.869585 0.409792 0.439908 0.558992 0.638986 0.248073 0.025128 -0.121162 0.285129 -0.300503 0.349347 0.161921 0.434520 -0.509151 -0.093202 -0.103730 -0.276758 0.682202 0.083628 0.769613 0.099182 0.402317 0.038441 -0.236724 -0.447786 -0.292140 0.674915 -0.360386 0.333211 -0.308365 -0.441286 0.172833 -0.011536 0.069083 -0.334511 0.054546 -0.167181 -0.581246 0.006548 -0.477568 0.179410 -0.317677 -0.461751 -0.112739 -0.323516 0.435418 0.037346 -0.114523 0.048019 -1.401609 0.087319 0.339033 -0.044634 0.481078 0.100152 -0.023851 -0.293465 -0.641306 -0.775895 1.147688 0.821828 0.326096 0.402323 -0.985835 -0.087094 -0.209391 0.058129 0.461596 0.555020 -0.530857 0.101861 0.078534 -0.369601 -0.435500 -1.059314 0.280901 -0.542613 0.227161 0.017551 0.169628 0.061181 -0.325992 0.268363 -0.454168 -0.702125 0.272277 -0.502950 -0.129522 0.941205 -0.384225 -0.317973 -0.556539 -0.125221 0.107865 0.481984 0.291827 0.159066 0.746921 0.449050 0.460965 -0.767832 -0.395801 0.507886 0.497279 0.353233 0.065888 -0.633508 -0.408679 0.298015 -0.808872 -1.380780 -0.587117 0.441634 0.682022 -0.456554 -0.311360 0.506138 -0.357213 0.458244 0.895350 0.107073 0.178896 0.256795 -0.640754 0.293053 0.926253 -0.434562 0.633349 -0.340437 -0.329846 0.488477 -0.286565 0.275218 0.144976 -0.180609 -0.235938 -0.310537 0.162193 0.851532 0.231826 0.460445 -0.297365 0.346003 -0.564826 -0.748354 -1.419603 -0.230089 1.011610 0.301268 1.061057 -0.664335 -0.517630 0.124339 0.790177 -0.176270 -0.566908 0.414959 -0.624056 0.496324 -1.315877 -1.034830 1.355375 1.066699 0.827412 -0.102621 0.492385 0.472899 -0.763919 -0.428122 -0.321434 0.488516 0.114083 -1.412717 -0.420896 0.095128 -0.949867 -0.202352 -0.277836 0.206358 -0.099363 0.231289 0.858558 -0.390359 -0.339244 -0.278245 0.533155 -0.355581 -0.226566 -0.247967 -0.001607 0.006728 0.383043 -0.483141 0.075566 0.374258 -0.684124 0.073600 0.203938 0.277539 0.217097 1.343398 1.126813 -0.344037 0.596090 -0.280410 -0.457361 0.796180 -0.375171 0.111634 -0.019303 0.409106 0.111603 0.385704 0.733798 -0.349479 -0.606628 -0.927610 -0.337522 0.465532 0.444263 0.190245 -0.676888 -1.180480 -0.008229 -0.098745 1.394626 -0.067938 1.363790 -0.417639 0.519857 -1.270108 0.185330 0.092650 -0.257218 0.514165 0.185486 -0.579043 -0.482826 -0.181836 -0.853126 -1.048097 -0.007935 -0.516251 -0.507914 -0.724245 0.468301 -0.723767 -0.018087 0.243239 0.061856 0.703324 -0.115637 -0.033508 -0.632897 0.466624 0.863030 -0.071937 -0.567985 0.405192 0.194061 1.911960 -0.166731 0.657367 -0.347110 0.444279 -0.262309 -0.766322 -0.377228 0.971496 1.051502 0.244819 -0.099601 0.067609 0.076267 0.648827 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job const*, Job const*, Job*) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = -2.251029 -0.188227 4.398466 -0.304811 -1.238611 -2.115280 -1.632134 -5.300719 2.706832 2.490164 4.736742 0.119457 2.906537 -0.863210 0.259376 -0.474623 2.088356 -3.002994 1.426560 -1.253727 0.489806 4.788704 1.323982 1.159911 0.340408 -4.930456 1.922274 -0.568747 1.647945 3.537434 0.791661 -0.150214 -1.397634 0.946987 0.531110 2.145044 1.491091 1.514695 -0.559868 0.047199 0.487946 -0.944917 2.168564 0.098819 3.592092 -0.139561 -0.130947 -0.293960 -1.764309 -2.637775 -0.067487 0.700145 -2.578198 0.889292 0.746505 -0.868255 -0.201780 -0.433207 -0.763327 -2.731657 -0.125756 -1.698726 -0.903656 0.900743 -1.396122 1.339089 -2.316541 -0.027284 -0.384126 -2.562414 1.735675 0.944589 1.469102 1.752543 -3.875993 1.207906 0.468288 -0.266753 1.214172 0.517607 -1.976840 -0.275920 -1.838362 -3.066080 2.168552 3.185500 -0.031951 -0.111487 -2.621270 1.238735 -0.571104 0.129526 0.346642 2.416721 -2.889672 0.005514 0.482227 -1.501251 -0.336177 -3.543750 0.222646 -2.672247 0.719186 1.874481 -1.327184 -1.191072 -2.578922 0.690364 -1.907580 -2.339051 2.127136 -1.203316 -0.571205 2.937188 -2.578686 -0.080058 -2.935869 -0.221235 2.027497 1.824478 0.250015 1.322533 2.164442 1.979674 2.013432 -2.552306 -0.881497 2.490800 2.718784 -0.136560 0.324771 -2.098502 -1.264758 1.203564 -2.094694 -3.983111 -2.804008 1.466518 2.560009 -0.365313 -1.238963 0.598115 -1.411241 2.530193 3.968715 0.602181 0.518035 1.050718 -2.687869 1.434320 3.620502 -1.375044 2.259554 -0.920560 -1.555326 3.396602 -2.437772 2.112345 0.307760 1.329574 -1.194037 -2.335389 0.079272 2.939911 0.912204 2.876484 -1.833827 1.031745 0.330070 -2.968972 -5.385999 -1.301090 3.939921 1.739363 2.919109 -2.529685 -0.759942 0.435755 3.313515 1.534031 -3.030013 1.018236 -1.031723 1.111522 -5.958525 -3.688698 5.224934 5.627999 2.327808 0.485823 1.453006 2.238898 -2.966490 -1.183562 -1.958251 2.626531 -1.281694 -3.672031 -1.074150 0.907462 -2.792132 -1.801735 -1.115815 0.620777 1.548432 -0.634598 1.721710 1.294417 -0.649205 -0.668166 2.549598 -1.263185 -3.152207 -1.103036 0.226747 0.932133 1.071917 -0.913666 0.883056 1.701686 -2.454757 -0.318157 1.808792 0.944886 0.440635 3.640880 3.689821 -1.151205 -0.710837 -1.185696 -1.178931 3.000551 -1.920462 -0.361196 -0.316815 0.498874 1.053733 1.089703 2.004193 -1.082185 -2.426454 -2.433301 0.281930 0.293492 2.067722 -1.502479 -4.847191 -3.759702 1.066657 0.525265 4.076179 0.658331 5.823753 -0.990091 1.302632 -4.901873 0.310607 1.665595 -0.049660 2.122034 0.456278 -1.365077 -1.844161 -1.069093 -3.076515 -0.820769 -0.143972 -1.757310 -1.368597 -2.617963 3.447532 -1.661874 0.157767 0.418975 0.331521 3.649898 2.338595 -0.844030 -3.586071 1.495365 1.229708 0.294258 -1.324153 3.180668 0.414665 4.991194 -1.953873 1.066887 -0.563078 2.452270 -1.513065 -2.633983 -0.508983 3.414432 3.804499 1.157390 -1.119812 -0.908821 -0.384532 1.534326 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.137619 0.173674 0.870598 0.661777 -0.498002 -1.225833 -0.210211 -1.307776 0.650451 0.291950 0.982750 0.080323 0.826462 -0.473116 0.063357 0.103669 0.660796 0.145081 0.003880 -0.380296 -0.381460 1.226276 0.082159 -0.325184 0.184570 -0.423082 0.589767 0.510708 0.456948 0.754160 0.219445 0.062764 -0.145279 0.284203 -0.372983 0.163939 -0.231061 0.435766 -0.536565 -0.261016 0.140869 -0.476810 0.836226 0.100580 0.563200 0.034281 0.617601 0.018311 -0.476192 -0.407031 -0.486131 0.529164 -0.423057 0.453602 -0.427726 -0.345878 0.471459 0.109444 0.089231 -0.669322 0.099221 -0.258185 -0.645980 -0.123103 -0.614082 0.119374 -0.353432 -0.621132 -0.080156 -0.287386 0.413451 0.061600 -0.120918 -0.275321 -1.302130 -0.012599 0.272052 0.095290 0.526537 0.442706 -0.047900 -0.416559 -0.679782 -0.620590 0.970918 0.200885 0.324418 0.517830 -0.844196 -0.257295 -0.044378 0.162171 0.405675 0.331408 -0.425483 0.270136 0.114558 -0.255207 -0.291522 -0.922322 0.256788 -0.439697 0.150586 0.141098 0.023339 0.116824 -0.305041 0.193114 -0.434950 -0.786045 0.230881 -0.525420 -0.342844 0.791163 -0.324767 -0.365787 -0.334790 -0.004965 0.127089 0.521356 0.267997 0.215258 0.575179 0.417216 0.398923 -0.729888 -0.186269 0.371218 0.471329 0.363975 0.114923 -0.289354 -0.468929 0.289807 -0.675267 -1.297757 -0.466252 0.693232 0.733711 -0.143733 -0.515370 0.566787 -0.387771 0.413747 0.760210 0.257146 0.273161 0.218668 -0.619142 0.295602 0.869786 -0.391518 0.559158 -0.168631 -0.511266 0.815511 -0.172198 0.191607 -0.014165 -0.282048 -0.092830 -0.253110 0.172159 0.814666 0.171920 0.216094 -0.059496 0.297314 -0.565748 -0.903707 -1.284660 -0.095002 1.072780 0.608126 1.183970 -0.681251 -0.292719 0.150871 0.464121 -0.285634 -0.518815 0.274009 -0.524659 0.506387 -1.759261 -1.064344 1.435815 0.692865 0.607207 0.009893 0.393859 0.405183 -0.362779 -0.467758 -0.466360 0.388794 0.269589 -0.919535 -0.258014 0.093943 -1.002050 -0.200991 0.018032 0.167469 0.017382 -0.227504 0.569560 -0.668710 -0.357444 -0.365005 0.434271 -0.500997 -0.125815 -0.124300 -0.098936 0.076841 0.310437 -0.137469 -0.003879 0.016987 -0.554496 -0.101685 -0.099508 0.414743 0.243673 1.258315 1.294555 -0.417598 0.416217 -0.100618 -0.611511 1.288260 -0.542244 0.119569 -0.045930 0.709444 0.319110 0.322181 0.834241 -0.338341 -0.365032 -0.914722 -0.283480 0.626505 0.427704 -0.547154 -0.449980 -1.253941 0.008973 -0.133144 1.272001 -0.238912 1.319379 -0.597459 0.319841 -1.310822 0.164240 0.274942 -0.168534 0.585709 0.226195 -0.579847 -0.493047 -0.262625 -0.733557 -0.290592 -0.082644 -0.398802 -0.446724 -0.368500 0.142794 -0.762488 0.107951 0.397713 -0.294093 0.678030 -0.197862 0.002667 -0.438109 0.254450 0.589686 0.110939 -0.544755 0.622229 0.151328 1.735266 0.041410 0.592820 -0.431107 0.509833 -0.358300 -0.812891 -0.420417 0.914403 0.982835 0.148206 0.209959 0.273920 0.093314 0.644391 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = 0.110308 0.333594 0.631393 0.631438 -0.546755 -1.031016 -0.115884 -1.003191 0.409539 0.132611 0.576076 0.044342 0.587941 -0.283453 -0.064462 0.039469 0.490572 0.388322 -0.023163 -0.316893 -0.599640 0.827960 -0.094071 -0.303150 0.165171 -0.133816 0.698698 0.455323 0.409245 0.569945 0.176409 0.050012 -0.159724 0.265132 -0.288664 -0.089418 -0.356308 0.396641 -0.484955 -0.115311 0.147464 -0.521950 0.709746 0.147375 0.212490 0.176585 0.422041 0.087090 -0.341611 -0.188215 -0.394491 0.237953 -0.266440 0.410168 -0.455607 -0.341781 0.426897 0.202697 0.209622 -0.273834 0.087827 -0.323885 -0.508940 -0.106160 -0.632588 -0.011423 -0.418559 -0.703776 -0.092776 -0.127356 0.256063 0.020243 -0.180704 -0.355775 -1.099564 -0.068364 0.275957 0.136158 0.483432 0.407644 0.104976 -0.334344 -0.668894 -0.493845 0.683367 0.074815 0.316087 0.418197 -0.602849 -0.435593 0.085536 0.200573 0.432935 0.272454 -0.176917 0.318123 -0.284653 -0.131523 -0.281185 -0.992207 0.218130 -0.267351 0.205480 -0.064158 -0.106216 0.129911 0.017171 0.129551 -0.114103 -0.645144 0.045910 -0.487733 -0.159671 0.699934 -0.011371 -0.461501 -0.203288 -0.099186 0.036700 0.344825 0.288125 0.025098 0.469001 0.276394 0.313346 -0.573470 -0.186869 0.209904 0.059935 0.336358 0.158123 -0.164562 -0.384317 0.197476 -0.488315 -1.037361 -0.191568 0.427175 0.473534 -0.302820 -0.228745 0.439663 -0.424948 0.094176 0.492266 0.292065 0.296029 0.095862 -0.367932 0.187318 0.594152 -0.248351 0.321161 -0.183181 -0.472303 0.636493 0.076197 0.081819 -0.138785 -0.328494 -0.064934 -0.118170 0.197529 0.642990 -0.052266 -0.015384 0.222635 0.164554 -0.630897 -0.640256 -0.791443 0.105774 0.950455 0.523802 0.883152 -0.578265 -0.077836 0.216056 0.283138 -0.164423 -0.260281 0.246687 -0.330520 0.430270 -1.319776 -0.823493 0.890153 0.240618 0.321073 -0.136239 0.110807 0.203150 -0.199658 -0.547788 -0.461638 0.196983 0.202319 -0.656062 -0.303137 0.091405 -0.757771 0.078388 0.199998 0.167165 0.255216 -0.299509 0.353508 -0.770440 -0.274081 -0.555035 0.421161 -0.380640 0.085729 0.028557 -0.114404 -0.017440 0.243468 0.024740 -0.123692 -0.139239 -0.252833 -0.015577 -0.176024 0.275816 -0.002064 1.031180 0.900503 -0.379383 0.162108 0.034037 -0.463714 1.217555 -0.447882 0.197206 0.050509 0.690086 0.122053 0.296487 0.762386 -0.284614 -0.286297 -0.746961 -0.386189 0.490047 0.226111 -0.481668 -0.101121 -1.029085 0.002566 -0.242578 0.996310 -0.170381 0.928592 -0.423533 0.257432 -0.766505 0.132054 0.181598 -0.187492 0.611056 0.206986 -0.507769 -0.107470 -0.229911 -0.567815 -0.123375 -0.074940 -0.217976 -0.376130 0.030813 -0.293754 -0.426177 0.081812 0.330861 -0.397978 0.382413 -0.414282 0.055883 -0.230911 0.101741 0.626240 0.021039 -0.439424 0.459071 0.147484 1.289155 0.257078 0.456347 -0.294216 0.178855 -0.169789 -0.657311 -0.432999 0.709020 0.563257 0.197099 0.217790 0.313235 0.191011 0.480912 -PE-benchmarks/weighted-job-scheduling.cpp___GLOBAL__sub_I_weighted_job_scheduling.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/euler-circuit-directed-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = 0.588138 2.412975 6.906567 2.819333 -4.081056 -2.557656 -0.975731 -5.920755 2.092164 0.811853 3.909469 -0.085156 1.315970 0.556374 -0.157685 0.065009 1.663614 0.089171 -0.665173 -1.956476 -3.408970 2.118943 2.598249 -2.833951 2.078023 -3.738862 2.634053 0.652774 2.972200 1.753334 0.354064 0.092632 -0.760744 2.450161 -1.241740 -1.395429 -0.781613 1.149162 -3.040166 0.028459 1.553338 -1.418958 2.653961 1.162304 2.344465 0.952162 1.916248 0.187508 -3.344298 0.031262 -2.264699 4.544695 -2.156750 2.640061 0.261829 1.076699 -0.843717 -2.617726 -0.521027 -2.973336 0.195129 -0.867745 -1.099225 -0.085630 -3.102466 0.643833 -1.829217 -3.025605 1.139562 0.052124 2.449532 0.521077 0.656791 -0.716205 -3.407117 1.344070 1.636749 1.602452 2.294269 0.691504 0.730952 0.013210 -1.882950 -3.100239 2.393037 0.490913 0.638323 -0.687774 0.265222 -1.869748 1.318722 -0.743519 -0.907909 3.561679 -5.169270 3.119285 -2.616344 -1.591445 -2.742969 -5.327518 -0.904393 -3.404830 2.198620 1.680730 -2.368404 1.771547 0.632837 2.237649 0.683973 -4.140770 -0.859341 -0.255063 -0.531899 4.181630 -1.542053 -2.267025 0.652304 0.164259 -0.929447 2.013538 -0.173718 1.675891 5.103555 3.220673 1.549144 -1.784162 0.985446 0.566133 0.804139 2.754040 2.886291 -3.196811 -2.046189 1.237256 0.033247 -6.212709 0.256503 1.669089 3.428196 -0.284338 -3.680749 -0.500048 -1.483342 2.820876 2.521626 2.280417 1.598367 -0.731168 -1.361536 1.728865 6.424077 -2.490775 2.613586 -1.753120 -2.915712 3.444238 -1.860549 2.577813 -0.691815 0.496423 1.256633 -3.899886 -1.240905 4.769947 1.266991 -0.806441 2.075414 0.013457 -2.209086 -5.771536 -4.312964 -1.293309 1.960101 0.156736 5.420763 -2.658355 -1.608372 -1.135550 3.916426 -0.498382 -1.061461 0.816408 -1.548343 1.721039 -4.901045 -5.129382 5.028202 5.198660 0.403187 -0.420233 3.243533 1.312641 -3.471825 -4.253972 -2.840313 1.113880 1.410045 -1.776120 -2.884901 0.027498 -4.676098 0.703418 0.743816 1.036427 4.008610 -1.185354 -0.218431 1.306138 -4.492317 -2.339200 2.441650 -3.796983 -2.050606 0.512621 0.477347 0.804442 1.257699 -0.738645 -2.564093 -0.026730 -2.899796 -0.577547 0.775386 3.762015 -0.280171 5.990525 4.175370 -0.016035 1.051183 1.028648 -3.160630 7.061684 -2.963632 -0.508574 0.055735 1.496440 -2.041101 1.644460 2.852104 -1.582473 -3.423889 -3.861500 0.441063 -1.672989 1.242142 -3.380316 -2.599508 -3.586728 -1.109012 1.146719 3.246448 0.924222 6.826911 -0.647760 0.144321 -7.144133 -0.120109 2.143483 -0.566518 4.127877 2.753157 -3.526003 -3.881478 -1.188853 -2.000113 1.442012 -0.735881 -2.259087 -2.439675 -1.025295 2.296204 -0.853428 1.531894 3.490061 -0.809574 3.991174 0.343075 -1.116515 -1.684401 0.382602 4.196675 1.090602 -2.673806 4.184457 0.163110 9.570360 -0.282814 2.057830 -2.725371 -2.218671 0.901797 -0.246730 -1.685534 4.200261 3.600574 2.987901 -0.026475 -0.115832 -2.142327 2.638661 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -1.780141 2.397605 10.150576 5.746551 -5.138512 -5.735754 -3.145098 -7.742167 3.320195 2.244546 7.037036 -1.482583 2.291300 1.591149 0.205075 -1.293532 3.222566 -0.593054 -0.969384 -3.057726 -3.054218 5.146990 3.498802 -5.875223 1.440600 -5.822257 3.777787 3.105595 1.479343 3.651808 0.908548 0.304831 -0.991772 3.802271 -4.472193 -0.240056 0.480900 2.290844 -2.911174 -0.602655 2.893840 1.779668 4.429644 -0.182149 4.434202 3.427396 3.319810 -0.365913 -6.568190 -1.867490 -1.666499 6.017136 -3.051204 3.459159 0.706505 2.416776 0.712677 -5.538370 -1.108949 -6.620267 1.354897 1.385253 -3.271472 -0.087563 -4.199158 0.824621 -0.307686 -4.000506 2.750841 -1.820464 3.212529 -0.841366 -0.603416 -2.350943 -3.859757 2.391131 1.738288 1.879321 2.643022 0.103496 -0.413473 0.138643 -2.880296 -4.174686 2.233649 1.002766 1.867269 0.786209 -0.846958 -1.584974 1.466265 -0.596574 -0.797257 5.276710 -4.161463 2.769038 -0.677499 -2.848734 -5.101228 -3.710159 0.062660 -4.632209 2.941451 4.237248 -3.804220 1.589698 -0.984933 2.561737 -0.806142 -5.603402 0.044624 -2.352037 0.844193 5.302372 -3.518983 -2.865246 -0.422960 -0.822130 0.149628 4.507074 0.226350 1.499025 6.073004 3.949966 2.467827 -4.818476 -0.346456 0.351817 3.011406 3.457436 3.846322 -4.948887 -3.061790 0.243644 -2.599469 -8.594379 -0.946332 1.821934 5.135084 0.453408 -6.515737 2.357787 -2.924394 5.296914 3.266358 4.583404 1.412919 -0.393493 -3.871826 1.369181 8.149657 -3.387114 4.509166 -1.729269 -5.370499 4.802893 -1.131191 3.949698 1.556412 -0.241955 1.012007 -5.015711 -0.352910 6.759859 2.242441 1.480425 2.263887 0.634276 -1.667619 -7.752136 -8.782333 -0.368758 3.218291 1.140662 9.640807 -5.337085 -4.179477 -1.553364 6.632318 -2.036661 -2.906934 0.605903 -2.007155 2.566181 -9.138340 -8.115843 8.134018 7.881482 1.980182 -0.580447 6.282274 0.183079 -3.209077 -3.905712 -3.776445 3.714490 1.637195 -0.120396 -0.422741 0.464191 -5.928868 -0.394786 -0.194483 1.961097 2.382212 -3.331464 -0.928225 0.061859 -5.965655 -2.885628 1.735409 -4.956067 -1.874194 0.031197 0.571521 0.268255 2.134089 -2.357993 -3.830499 0.275866 -4.512160 -0.959787 1.682887 4.677565 1.474576 8.371425 6.615406 -0.896221 4.903107 0.759650 -3.401647 12.102981 -4.161999 -0.192827 -0.326118 4.412382 -0.787508 1.635224 4.150969 -2.041488 -3.698219 -5.549933 1.374942 -0.259951 2.525275 -7.555268 -4.225480 -6.857390 -1.184984 1.020182 6.511365 -0.197773 10.825363 -0.641533 1.657168 -11.712097 0.244428 3.959953 -0.976897 3.592090 3.352247 -5.312222 -9.498907 -0.767628 -4.037444 0.821444 -0.401319 -4.310213 -4.032392 -2.443780 3.054977 -2.387032 1.897924 6.533825 -0.920685 3.361668 1.621744 -1.488994 -0.675123 -2.003222 4.449328 1.280617 -4.468901 6.429211 0.175219 14.296625 -0.600155 4.814230 -3.632554 0.361148 -0.042105 -2.617258 -2.951639 6.478107 5.582580 2.839188 0.026552 0.615001 -3.157032 3.920135 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -4.687013 6.131114 26.909270 13.979962 -13.338582 -15.332596 -8.059287 -22.591796 10.131726 7.111897 19.021817 -3.745401 6.685289 2.898000 -0.137267 -2.828892 8.889703 -2.490427 -2.303427 -8.416762 -7.818227 14.432972 8.255202 -13.099574 3.901788 -17.390576 9.962954 7.197058 4.989064 9.560663 3.000718 0.537442 -2.878948 10.073676 -10.203716 0.654252 2.308825 5.787200 -7.854578 -1.770593 6.956946 3.850091 12.266284 0.376931 13.032396 7.808635 8.385937 -1.270475 -16.991723 -5.323665 -4.063037 15.480049 -8.151106 9.273873 2.624552 5.259529 1.591837 -14.066950 -2.059815 -16.063589 2.906843 2.325934 -8.150468 0.087351 -10.970661 2.263489 -2.031626 -9.838017 6.073897 -5.727036 8.576496 -1.540864 -0.946705 -4.793041 -11.614907 6.675610 4.860053 4.109102 7.692504 0.786574 -1.372218 -0.457084 -8.374013 -11.903249 7.055933 4.506606 4.382567 2.659130 -3.750311 -4.069358 3.381213 -2.164992 -1.351452 14.263689 -12.166985 6.082777 -1.329536 -7.994252 -13.093956 -11.995710 0.076659 -12.343353 7.525594 10.365103 -10.034010 4.144728 -3.033193 6.347608 -2.308020 -13.885918 1.424129 -6.259990 2.827419 14.720887 -9.478500 -8.138611 -2.780323 -2.043414 0.694278 11.605712 0.644093 3.684352 16.749313 10.289283 7.572662 -12.809418 -0.993153 2.132763 7.843643 8.425473 9.604592 -13.255839 -7.889788 1.446464 -6.859555 -22.978288 -3.707730 5.035861 14.083780 0.811977 -15.812377 5.357526 -7.338502 14.076604 9.483207 10.577689 3.764405 -0.559923 -10.531106 3.747676 21.308150 -8.667421 11.612563 -5.466016 -13.094380 12.205597 -3.913742 10.407899 3.361341 -0.403898 1.967127 -13.179395 -0.364854 18.052243 5.135910 3.444498 4.414182 2.509082 -4.892294 -20.277117 -24.365915 -1.203516 9.179296 3.517793 24.761217 -14.513910 -10.643980 -4.191406 17.533788 -4.071111 -8.033482 2.720472 -6.121760 6.727685 -24.244316 -21.651100 22.771830 22.804516 6.237343 -2.030194 15.783949 1.181645 -9.779354 -10.641661 -9.994197 9.456500 3.959441 -3.408539 -2.171346 1.739002 -16.036875 -2.186582 -0.998258 4.888285 7.226231 -8.269833 -0.344112 -0.155587 -14.403286 -7.934982 5.826229 -12.085239 -5.788240 -0.443003 2.058063 1.217592 6.580128 -6.282209 -9.444091 1.485586 -11.962014 -2.566302 4.907260 12.440732 3.711273 22.834251 18.271092 -2.603634 12.754347 1.356778 -8.888640 30.895415 -11.211128 -0.464887 -0.697647 10.169145 -1.654071 4.845232 11.124844 -5.840092 -9.754058 -14.459893 3.207001 -1.206183 6.733478 -18.759679 -12.357094 -19.425314 -2.597640 1.830603 16.921750 0.117420 28.946208 -2.139835 4.249463 -30.715847 0.522280 10.839042 -2.432482 10.116245 8.675252 -14.291085 -23.129102 -2.321749 -11.650076 0.743837 -0.814080 -10.782906 -10.345912 -7.285794 9.585892 -6.597326 5.081345 16.141709 -1.412137 9.944574 4.076270 -3.425765 -3.572049 -3.960584 12.398429 2.932355 -11.436633 16.626311 0.658307 37.328601 -2.129281 11.839843 -9.255525 1.374005 -0.682051 -8.132305 -8.032546 17.104794 15.299175 7.690733 -0.861996 0.715835 -8.021730 11.328585 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = 0.253590 0.470860 1.184006 0.426304 -0.609236 -0.805338 -0.254605 -1.332772 0.800055 0.226078 0.388903 -0.121013 0.417702 -0.371785 -0.334122 0.522360 0.547564 0.368536 -0.153703 -0.450113 -0.323929 0.731345 -0.052360 -0.450353 0.486656 -0.922337 0.655434 -0.170173 0.615859 0.674558 0.337675 -0.086431 -0.088326 0.506830 0.409694 0.622110 0.320904 0.229122 -0.727462 0.173208 -0.139745 -0.276250 0.339778 0.379333 0.703645 0.302672 0.148174 0.019625 -0.548401 0.045031 -0.265045 0.625482 -0.498156 0.519632 -0.101876 0.266523 -0.139355 -0.409392 0.162336 -0.255424 -0.197873 -0.265583 -0.550056 0.055844 -0.783825 0.036020 -0.332793 -0.375761 -0.472363 -0.040900 0.236262 0.222278 -0.044604 0.049265 -0.971645 -0.080102 0.218161 0.320499 0.717136 -0.044069 0.103812 -0.558390 -0.560136 -0.714868 0.861944 0.220770 0.223715 0.355031 -0.100228 -0.405768 -0.293789 0.031516 0.374108 0.610919 -0.710738 -0.063369 -0.423679 -0.174972 -0.100953 -1.192647 0.070359 -0.456107 0.144460 -0.226573 -0.175537 0.367624 0.261613 0.558499 0.135616 -0.060371 0.272999 -0.094603 -0.294089 0.868131 0.234923 -0.646819 -0.292482 -0.205622 -0.033255 0.532163 0.049768 0.132439 0.750868 0.386250 0.816317 -0.478493 -0.195023 0.326993 0.059828 0.326237 0.504534 -0.548766 -0.424385 0.208304 -0.186674 -1.154919 -0.210329 0.052611 0.511600 -0.069578 -0.336056 -0.329159 -0.294338 0.256830 0.148118 0.193983 0.161235 -0.080676 -0.440052 0.078971 1.019345 -0.402722 0.265315 -0.448903 0.091512 0.154157 -0.080927 0.108562 -0.634356 -0.330627 0.112569 -0.318135 0.018355 0.794050 -0.143271 -0.250371 -0.064437 0.193036 -0.793422 -0.822682 -0.786595 -0.264867 0.789539 -0.068007 0.730465 -0.593707 -0.283106 -0.431442 0.543611 -0.040187 0.100059 0.196960 -0.732436 0.464589 -0.688074 -0.968542 1.319555 0.797768 0.534361 -0.220117 0.129553 0.243530 -0.905239 -0.597874 -0.336382 -0.015646 0.138687 -0.860404 -0.744463 0.151908 -0.936479 -0.132016 0.195852 0.256531 0.330042 0.286119 0.466591 0.051834 -0.162390 -0.667400 0.428706 -0.296472 -0.138173 0.083977 0.151149 0.114055 0.521288 -0.311448 -0.266979 0.307998 -0.246684 -0.082007 0.174278 0.522187 0.025708 0.889318 1.057560 0.028104 0.419479 0.125297 -0.645363 0.908031 -0.112963 0.301491 0.061907 -0.031839 -0.078101 0.238591 0.695232 -0.360360 -0.439151 -0.702350 -0.545150 0.038304 0.342015 0.018509 -0.560844 -0.440944 -0.055676 -0.136507 0.663871 0.083113 0.963555 -0.215288 0.405935 -1.062735 0.138865 0.893335 -0.190830 0.498819 0.442698 -0.630095 -0.757351 -0.183874 -0.570065 -0.593881 -0.322435 0.018162 -0.420139 -0.068739 0.519229 -0.288234 0.105973 0.616708 0.248178 0.757525 -0.355772 0.246614 -0.426152 0.062354 0.657033 -0.018789 -0.457335 0.144996 0.435366 1.490039 0.098035 0.294868 -0.324451 -0.237180 -0.042260 -0.618505 -0.558424 0.733944 0.656997 0.401917 0.165838 -0.110650 -0.178906 0.736926 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -2.285222 1.503834 8.966207 3.259528 -2.719859 -5.333972 -2.471491 -9.678086 5.169495 3.232624 7.719557 0.270657 4.404918 -0.748667 0.507298 -0.598008 3.574935 -1.727744 0.095888 -2.373064 0.046395 7.774178 2.130158 -2.430430 0.705483 -6.541347 2.637007 2.009647 3.421618 4.050039 1.226247 0.012471 -1.226100 2.788885 -2.763813 1.086408 0.896579 2.480865 -2.976933 -2.108000 1.396947 0.332455 4.358878 0.553230 5.537365 -0.077991 3.095262 -0.889970 -3.298999 -2.716168 -1.751330 5.541449 -3.118296 3.054200 0.885016 0.009499 0.407683 -2.348400 -0.192567 -5.332171 1.027900 0.486494 -3.049856 -0.197552 -3.084351 1.212783 -1.533009 -1.837032 0.424144 -3.191122 3.354692 -0.352321 0.627877 -1.302644 -7.216782 1.756400 0.705500 0.280629 3.082857 2.095702 -1.641190 -1.295820 -2.834692 -4.895151 4.468484 3.651878 0.242887 1.577074 -3.848319 -0.262355 -0.358919 -0.513936 -0.013941 4.634789 -5.463342 2.382650 0.802189 -2.488079 -2.308469 -4.308248 0.659980 -4.875618 1.545774 2.528860 -0.971781 0.147842 -2.216913 1.311321 -2.058222 -4.821677 2.150334 -1.594914 -0.966249 5.238733 -3.849226 -1.642128 -1.859185 -0.084419 0.792537 3.985607 0.860619 2.097395 4.562356 3.445285 3.233230 -4.834076 -0.347166 3.371798 3.828769 2.368572 1.365657 -4.354797 -2.384561 1.764788 -2.817539 -8.631496 -2.463913 4.142041 5.274064 0.073037 -4.571248 1.401249 -1.962961 4.730990 5.251107 2.290242 1.363552 1.180046 -4.043789 1.577682 7.482302 -2.827384 4.125978 -1.253243 -3.192434 5.100642 -3.499242 3.925712 0.428571 1.014047 -0.044163 -4.101933 -0.037864 6.441937 1.801211 3.012750 -0.983231 1.209610 -1.659320 -7.065302 -9.833541 -2.212964 5.064822 2.471971 7.524887 -4.228182 -3.421757 -0.028070 5.508132 -1.000068 -4.026486 2.099303 -3.043775 2.936194 -9.754011 -7.133922 9.025017 8.924031 3.064133 -0.630684 4.832052 2.230317 -3.901176 -3.692765 -3.311467 3.851273 0.510746 -3.849106 -0.666593 0.439382 -6.221728 -1.846705 -0.847177 0.890607 1.244757 -1.174289 2.595509 0.323853 -3.408652 -2.073646 3.097250 -3.007746 -3.108326 -1.742669 0.633301 0.371423 2.383717 -2.429439 -1.430355 2.449251 -4.570104 -1.023538 1.596363 2.639537 1.444291 7.932984 6.681423 -1.170965 3.723030 -0.423812 -3.244900 9.230608 -3.935602 -0.610193 -0.547714 2.666519 0.471807 2.700848 3.366038 -2.275620 -3.890282 -5.549698 0.392514 0.414968 3.566294 -4.354929 -6.153521 -6.397824 -0.180337 0.652948 6.650149 -0.285499 10.775523 -2.516943 2.392377 -10.918963 0.729200 3.600019 -1.042101 3.759809 2.236945 -4.297070 -5.943838 -1.226139 -4.064366 -1.884252 -0.081692 -4.340849 -3.162982 -4.867354 4.762744 -4.411858 1.347974 3.364599 -0.316031 5.131327 0.722392 -1.059212 -3.357796 0.969004 3.484405 0.888728 -4.067572 5.154994 0.001831 12.327524 -2.927524 4.258871 -3.126602 3.039029 -2.400981 -4.241071 -2.211986 6.713754 6.829552 2.245033 -1.151820 -0.116665 -2.247672 3.568596 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -2.808503 2.260531 12.792570 4.931735 -5.746993 -8.299130 -3.588080 -13.037667 6.236101 4.365119 10.542680 -0.468793 5.168513 -0.825293 0.318722 -0.466928 5.302330 -2.121259 -0.640677 -4.367054 -2.103875 8.799699 2.841551 -3.465463 1.954061 -9.617864 4.449111 2.837443 3.650278 5.336010 2.118255 0.077754 -2.393904 4.178168 -3.205833 1.941504 1.767105 2.981219 -4.173557 -1.470836 2.621181 -0.130130 6.230679 0.752388 7.699099 1.533730 4.123471 -0.693633 -6.887281 -4.086701 -2.559011 7.407223 -4.495637 4.534128 1.047681 0.677909 0.711221 -4.386940 -0.325569 -7.381256 1.048234 -0.438871 -3.802101 -0.027848 -4.535629 1.699195 -2.252947 -3.784859 1.338229 -3.996123 4.676154 -0.363875 0.442743 -0.353440 -8.217577 2.563251 1.856245 1.456207 4.555209 1.808776 -1.525657 -1.770697 -4.465835 -6.596311 5.437649 3.737957 1.567173 1.896208 -4.836094 -0.679544 0.358039 -0.903105 0.492229 6.234078 -7.858804 2.013559 0.240628 -3.857519 -4.796006 -7.229099 0.548222 -6.145560 2.616962 4.241236 -3.639649 0.988462 -3.418592 2.242504 -2.780724 -6.363063 2.469020 -2.983626 -0.264496 7.813749 -5.416613 -3.479939 -2.600193 -0.464570 1.060323 5.447270 0.976150 2.420752 7.635017 5.140537 4.663049 -6.634909 -0.965051 3.148985 5.232599 3.518608 3.328815 -5.959993 -3.950533 1.957221 -4.615393 -12.094623 -3.105942 4.085607 8.080985 0.750992 -6.568784 2.031403 -3.559826 6.890868 6.160096 3.765381 1.857209 0.718731 -6.264122 2.350921 10.347017 -4.188522 6.149979 -2.123753 -4.506183 6.358925 -3.389604 4.653227 1.354991 0.180019 0.030221 -5.833936 -0.775228 8.902660 2.690936 3.152146 -0.473056 2.440185 -3.034876 -10.194109 -13.501952 -2.182877 6.831286 2.810226 10.777207 -7.129553 -4.626142 -1.226822 8.851629 -1.830268 -5.590043 2.324682 -3.902772 3.677319 -12.574281 -10.516451 13.395103 13.250958 4.008065 -0.687941 7.004052 2.845135 -6.732944 -5.061687 -4.739896 4.544514 1.299383 -5.815735 -1.949597 1.336370 -8.570768 -2.771408 -0.836431 2.051694 2.294842 -2.137348 3.062499 0.843596 -4.913865 -3.230606 4.029017 -4.726187 -3.853799 -1.115356 1.082399 1.230075 3.569798 -3.486712 -2.814177 2.370098 -6.580932 -1.207290 2.463044 5.554535 2.738392 12.088709 9.580059 -1.731208 5.747339 -0.453415 -5.016891 13.363050 -5.672876 -0.132752 -0.594714 4.157864 0.394362 3.023551 5.633968 -3.361830 -5.176420 -7.829854 0.187295 -0.025795 4.217176 -6.535781 -7.814509 -10.445115 -0.137091 0.602546 8.917049 -0.395508 14.875914 -2.597588 2.210401 -15.073451 0.513447 5.497103 -1.548761 5.286394 3.580100 -6.230529 -9.629838 -1.760064 -6.397380 -1.761306 -0.125893 -4.879444 -4.561734 -5.584524 6.609384 -4.955595 2.120011 5.567656 0.223271 7.050997 1.936536 -1.356033 -4.077555 0.793769 5.747900 1.596125 -5.717673 8.239983 0.760727 18.143781 -2.241856 5.195946 -4.078971 2.299618 -1.838380 -5.656866 -3.758214 8.861481 9.389985 3.843913 -1.073744 0.112887 -3.168739 6.181676 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.378654 0.211222 1.781850 0.949760 -0.850231 -1.961537 -0.428443 -2.513138 1.381392 0.734993 1.882595 0.271463 1.537613 -0.881144 0.087191 0.140524 1.266723 -0.037205 0.060002 -0.713684 -0.316071 2.398739 0.198015 -0.403768 0.313923 -1.216931 0.944128 0.745951 1.020274 1.429046 0.433358 0.079254 -0.372540 0.510683 -0.515188 0.398916 -0.214138 0.704261 -1.034363 -0.489626 0.243404 -0.732607 1.529584 0.171580 1.257854 -0.246060 0.952418 -0.058313 -0.816246 -0.843848 -0.745097 0.980747 -0.748552 0.817334 -0.474424 -0.573827 0.571464 0.147030 0.134035 -1.147818 0.170044 -0.427833 -1.001110 -0.152508 -0.984947 0.247932 -0.737019 -0.870303 -0.181532 -0.832272 0.723804 0.115916 -0.040793 -0.412633 -2.481299 0.093663 0.438428 0.086776 0.928696 0.910899 -0.271928 -0.745486 -1.129600 -1.199635 1.624776 0.759718 0.323613 0.832817 -1.656702 -0.357680 -0.149512 0.242012 0.608128 0.694571 -1.165589 0.390253 0.193261 -0.571179 -0.375434 -1.621289 0.405819 -0.894993 0.246119 0.227805 -0.022087 0.135559 -0.640894 0.283820 -0.780861 -1.240694 0.576540 -0.815679 -0.608765 1.567050 -0.705145 -0.631136 -0.866397 0.049327 0.276499 0.922912 0.322079 0.440282 1.079152 0.765446 0.883699 -1.368057 -0.263526 0.934132 0.923165 0.524595 0.149097 -0.545921 -0.751875 0.559654 -1.132887 -2.355106 -0.974799 1.188419 1.374785 -0.207735 -0.746276 0.674774 -0.671711 0.965734 1.505841 0.304008 0.489648 0.479439 -1.193635 0.548597 1.698715 -0.681948 0.997999 -0.414883 -0.869291 1.510081 -0.541208 0.581264 -0.125992 -0.281861 -0.229454 -0.582468 0.313825 1.535980 0.206424 0.538351 -0.414343 0.522610 -0.757231 -1.645802 -2.584505 -0.381229 1.840582 1.197770 2.056956 -1.192579 -0.548096 0.176678 0.928477 -0.245759 -1.066335 0.665098 -1.000794 0.879718 -3.194035 -1.932956 2.712932 1.794436 1.117988 0.021195 0.810966 0.751651 -0.860321 -0.861555 -0.812882 0.793756 0.373351 -1.795462 -0.391588 0.267654 -1.764586 -0.513364 -0.061407 0.222468 0.170191 -0.374939 1.231424 -0.855070 -0.580844 -0.663428 1.007120 -0.828128 -0.492423 -0.352679 -0.080935 0.178326 0.670775 -0.325738 0.008507 0.235849 -1.013399 -0.193263 -0.059304 0.702110 0.383023 2.024091 2.319882 -0.664659 0.736922 -0.270728 -1.065557 2.251173 -1.071688 0.105915 -0.086072 0.925582 0.541325 0.666438 1.299301 -0.628089 -0.639115 -1.562607 -0.365206 0.861151 0.877651 -1.020421 -1.227298 -2.141576 0.120594 -0.211627 2.139410 -0.288029 2.583730 -1.121955 0.592861 -2.566244 0.263934 0.622888 -0.177906 1.149026 0.390527 -1.072047 -0.877560 -0.445068 -1.383331 -0.448144 -0.053922 -0.817927 -0.824003 -0.903253 0.762775 -1.397584 0.225845 0.678010 -0.486188 1.511173 -0.199669 -0.047961 -1.022803 0.537776 0.914914 0.252501 -0.892841 1.157927 0.199755 2.995334 -0.193750 1.014152 -0.696053 1.073570 -0.739745 -1.634566 -0.732204 1.695948 1.851080 0.385735 0.099958 0.224039 0.033676 1.139634 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -1.176045 0.175805 4.010680 1.287192 -2.019028 -1.761746 -0.951494 -3.919406 1.663600 1.157535 3.280460 -0.250424 1.306126 -0.876841 0.012784 -0.608958 1.543530 -0.885066 -0.264022 -1.192753 0.407407 1.776962 0.773495 -1.368668 0.592589 -2.531105 0.781739 0.854093 0.949756 1.500733 0.288414 -0.429530 -1.134148 1.120320 -0.852392 0.497343 1.412667 0.807874 -1.636481 -0.579423 0.412579 0.219328 1.693378 -1.102953 2.786383 0.070226 0.998542 -0.159892 -2.725130 -1.212350 0.167873 2.001853 -1.407701 1.458808 1.163310 -0.002727 -0.656805 -1.300727 -0.509555 -2.761718 0.662826 -0.055386 -0.194417 0.029258 -1.106829 0.282871 0.267788 -1.392446 1.034504 -2.083776 0.738943 0.071298 0.632580 0.546694 -1.509828 1.087701 1.371449 0.636704 0.747865 0.538259 0.523792 -0.794590 -0.558352 -1.290974 0.428303 1.461655 0.686545 0.452563 -1.504763 0.792677 1.307432 -0.106197 -0.138235 1.505504 -2.358361 -0.087560 -0.646636 -1.134638 -1.276965 -2.187363 0.042476 -1.584200 1.180847 1.574592 -1.876709 0.855976 -0.837113 1.383782 -0.876982 -1.598004 0.484544 -0.795742 0.578318 2.438170 -1.912357 -1.192148 -1.190607 0.008997 0.279488 0.971270 -0.681022 0.880165 1.748046 1.760114 1.920771 -2.574943 -0.432090 0.922907 1.892222 1.314124 1.038516 -1.651802 -0.611554 0.328181 -2.099706 -3.545479 -1.310519 0.190538 2.588103 0.097586 -2.118993 0.051054 -1.408161 3.232839 1.514590 1.115196 0.405982 0.593858 -1.967125 0.678283 2.246589 -1.047469 1.881093 -0.373520 -1.204173 0.614273 -0.104662 1.599233 0.264624 0.112608 0.390443 -2.168330 -0.204383 2.378499 1.367955 1.403933 -1.327704 0.596475 -0.713954 -3.359533 -3.952430 -0.786084 1.684061 0.739599 2.837957 -2.141369 -2.436328 -0.654474 2.711795 -0.582109 -1.906226 0.640216 -1.486862 1.333522 -2.979805 -3.195735 3.793666 4.938009 1.320742 0.317559 2.487767 -0.061660 -2.776670 -0.841628 -0.952169 1.170532 0.198845 -2.643553 -0.778356 0.636827 -2.382498 -0.948663 0.002603 0.686154 0.619448 0.040127 0.943077 1.485760 -1.126960 -0.564581 1.327481 -1.276207 -1.164473 -0.181646 0.540395 1.204735 1.329963 -1.956301 -1.246439 0.596132 -2.366517 -0.153981 0.557773 1.817944 0.697831 3.090160 2.645648 -0.388599 2.212142 -0.306685 -1.757620 3.442537 -1.708926 0.061775 -0.114833 0.743843 0.049678 0.757716 1.710340 -1.211400 -0.998036 -2.320069 -0.742942 -0.265195 1.887519 -2.238058 -3.264709 -2.413869 0.458985 0.272735 1.596507 0.149301 4.246004 -0.554540 0.690365 -4.890019 -0.269921 1.521776 -0.044020 1.591347 1.014264 -1.805514 -4.249299 -0.091267 -2.169404 -0.939700 -0.228122 -1.316707 -1.065829 -1.806497 3.139699 -0.541402 0.299772 1.626024 0.120759 2.745374 1.165258 -0.431450 -0.681015 -0.372567 1.103013 0.625075 -1.577591 2.337828 0.737320 6.007242 -0.323838 0.974599 -1.165347 0.780383 -0.106384 -1.584830 -1.212893 2.510221 3.136695 1.606392 -0.930523 -0.498028 -1.700274 1.840855 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = -0.962387 2.852023 9.757500 3.799957 -5.830366 -7.395512 -3.043705 -10.110308 3.905339 2.628906 6.614989 -1.741232 2.189602 0.766291 -0.147678 1.381180 3.747902 -1.053664 -1.377863 -4.136975 -3.483582 5.643063 1.386904 -2.529728 2.391900 -7.122567 4.787958 1.610510 2.383511 4.366272 2.954783 -0.740840 -1.300712 3.896360 -1.396482 4.258279 1.029256 1.932377 -4.045534 1.375523 1.675002 0.744423 4.791626 0.892606 5.965199 5.007891 3.451976 0.526415 -6.510031 -1.977345 -3.231034 6.900290 -3.957295 4.053615 -0.268451 1.626567 0.141920 -4.880832 -0.796005 -3.356107 -1.270081 0.160670 -3.708298 0.198957 -5.653480 0.558189 -2.340033 -3.023754 0.654986 -1.850934 3.735044 -0.460813 -1.055925 -0.091218 -5.523061 1.926560 1.671299 2.704939 4.104300 -1.305441 0.185495 -0.962547 -3.360492 -5.028388 3.707169 1.634544 2.379739 1.161844 -1.599290 -2.178366 -0.946552 -0.683458 0.917828 5.141487 -5.117762 1.346797 -2.096877 -2.824760 -5.264978 -6.420378 0.709374 -3.867968 3.077939 2.501310 -2.038335 0.573098 -0.457445 2.246184 -0.382260 -3.968623 0.877968 -1.756260 0.711056 6.766127 -2.666100 -3.904410 -1.557789 -1.398996 -0.266613 4.674405 1.771634 0.714552 6.349068 4.264181 6.639179 -4.665114 -1.313703 0.589054 2.813106 3.504895 4.132709 -4.410371 -3.281937 1.080556 -3.224752 -8.719864 -1.649527 2.121601 6.520314 0.588419 -4.748499 1.001655 -3.180395 4.924491 2.476764 3.174554 2.347070 -0.696883 -4.594488 1.778842 9.315107 -2.717909 4.055889 -3.410981 -2.941930 3.932834 -0.829220 2.718162 1.701115 -1.052995 -0.292429 -4.415383 -0.207489 6.433641 2.444430 0.667578 1.684027 2.206375 -3.528805 -7.484033 -8.488200 -0.657697 4.395483 0.028717 7.988514 -5.806467 -2.792333 -2.036083 6.808904 -1.283283 -3.009854 1.396347 -3.383682 2.904619 -8.084705 -7.113935 10.551374 10.166678 3.408730 -1.382441 4.767977 2.754861 -6.716257 -4.167652 -4.246636 3.229289 0.978739 -4.244168 -2.175227 0.779473 -6.621463 -1.482782 -0.236789 2.729857 2.881507 -0.594886 0.376512 -0.228604 -4.741668 -3.604956 2.536088 -4.207450 -2.014227 0.817231 0.629507 0.140577 2.992203 -2.937559 -2.805197 1.832098 -4.842956 -0.411384 2.140782 5.420665 1.194771 8.639129 6.870964 -1.053258 6.056434 0.490675 -4.337925 10.446099 -2.628930 0.980377 -0.629492 3.271087 0.218208 1.670914 4.232770 -2.855032 -4.995345 -6.051576 -0.134114 0.129031 2.921107 -3.825463 -5.162209 -8.463082 -0.110521 0.019326 7.332793 0.669363 10.557725 -0.786919 2.101690 -11.163049 0.807979 5.094199 -0.763224 3.040789 3.240848 -4.996398 -6.735869 -0.592566 -5.476976 -2.235793 -0.582019 -3.058102 -4.133829 -3.379956 4.438038 -2.163922 1.109746 6.108118 0.025139 4.493819 0.934615 -1.211170 -2.429457 -1.392101 6.193007 1.200953 -4.629441 5.526078 1.451314 15.102255 -0.333119 4.112557 -3.012851 -0.172626 0.148917 -4.241930 -3.751386 6.578599 5.949604 2.989104 0.857820 -0.024840 -1.767685 4.611964 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -0.258287 0.599440 2.356061 1.392253 -0.778226 -2.091380 -0.511997 -2.001850 1.070567 0.369654 1.857166 0.197461 1.096551 0.077874 0.253465 -0.112488 0.826999 0.098661 -0.092310 -0.648159 -0.517509 2.078445 0.969375 -1.161784 0.246866 -1.351398 0.998292 0.949221 1.053498 1.635646 0.120451 -0.041582 -0.072237 0.824911 -1.039586 -0.182143 -0.647298 0.653108 -0.848857 -0.296560 0.553322 -0.132497 1.437496 0.467887 0.869677 0.403530 1.323079 -0.146019 -0.818525 -0.577032 -1.300455 1.620378 -1.060338 0.888504 -0.700423 0.253493 0.552540 -0.344024 -0.024236 -1.780455 0.239528 0.277980 -1.263261 -0.286522 -1.344486 0.226673 -0.911297 -1.024308 0.091777 -0.414835 1.108802 0.081086 -0.090280 -0.859591 -2.244583 0.252963 -0.061994 0.543188 0.911340 0.344894 -0.627568 -0.110919 -0.972565 -1.164737 1.238352 -0.019917 0.333075 0.434493 -0.799037 -0.602102 -0.272950 0.336755 -0.034975 0.979861 -1.046997 1.288046 -0.050350 -0.420712 -0.600102 -1.118498 0.099421 -1.258241 0.297632 0.535047 0.036082 0.039124 -0.793709 0.265115 -0.518658 -1.784387 0.321482 -0.385403 -0.936306 1.228913 -0.996653 -0.354467 0.113744 0.127511 0.169625 1.322307 0.396296 0.542220 0.969622 0.929320 0.562194 -1.223225 0.150849 0.366856 0.923636 0.954106 0.669112 -0.536627 -1.010415 0.193445 -0.579749 -2.668962 0.077953 1.675868 1.308888 0.350204 -1.555908 0.765207 -0.852881 1.029656 1.503566 1.036163 0.764383 0.049537 -1.046326 0.615973 2.453341 -1.034688 1.377071 -0.377396 -1.212852 2.122077 -0.964117 0.971009 -0.095497 -0.000538 0.464051 -0.939673 -0.240276 1.936789 0.630873 0.612309 0.885861 0.093984 -0.333384 -2.121164 -2.218768 -0.501594 1.582833 0.696614 2.136583 -1.094069 -0.432544 0.107309 1.061691 -0.683062 -0.902691 0.152214 -0.575788 0.744938 -3.682294 -2.012643 2.492949 1.811429 0.444034 0.008025 1.009609 1.081202 -0.217091 -1.018255 -1.023729 0.937187 0.173453 -0.649541 -0.233227 -0.130225 -1.761754 -0.109723 0.121980 0.226767 0.251613 -0.867631 0.149985 -0.436881 -1.433152 -0.881415 0.536115 -1.578007 -0.627332 -0.149430 -0.164517 -0.087584 0.247951 -0.191891 -0.320408 0.574240 -1.259285 -0.388606 0.038816 0.929325 0.605649 2.248658 1.919065 -0.272598 0.780245 0.360511 -1.145705 3.203918 -1.256594 -0.087712 -0.084026 1.595119 0.101979 0.942435 0.939222 -0.549086 -1.073087 -1.709896 0.331517 0.634707 0.808368 -1.129366 -1.101806 -1.781211 -0.244319 0.402805 2.233154 -0.474739 2.939752 -0.727726 0.675077 -2.786726 0.220290 0.871667 -0.272588 1.207301 0.817276 -1.152109 -1.329754 -0.600023 -0.785105 0.542953 -0.082296 -1.235249 -0.864855 -0.753372 0.213561 -1.509707 0.624876 0.776035 -0.639631 1.255606 -0.016492 -0.286859 -0.649945 0.141211 1.310029 0.632500 -1.243094 1.535623 -0.126671 3.241298 -0.404376 1.469008 -1.132350 0.521196 -0.486488 -0.850546 -0.720753 2.085456 1.792245 0.472664 0.263488 0.312941 -0.158550 0.885581 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.063568 0.265041 0.769921 0.241068 -0.351293 -0.645405 -0.113357 -0.857622 0.429571 0.243443 0.540157 0.096186 0.565992 -0.236154 -0.068758 -0.127949 0.459695 0.144471 0.063357 -0.258250 -0.071413 0.623576 -0.067266 -0.142247 0.144407 -0.448289 0.493869 0.208624 0.432852 0.635819 0.142832 -0.005586 -0.321676 0.216402 -0.097663 -0.069869 0.071281 0.263218 -0.458318 -0.079584 -0.010122 -0.217429 0.507111 0.126199 0.349739 0.074388 -0.048142 0.062059 -0.229672 -0.264959 -0.063909 0.077326 -0.196460 0.376519 -0.082169 -0.240348 0.089293 0.183058 0.201746 -0.380955 0.174003 -0.236868 -0.141417 -0.014314 -0.439927 -0.010294 -0.396757 -0.439536 -0.123660 -0.430160 0.158235 0.019979 0.110395 -0.120256 -0.914417 0.044532 0.191143 0.104383 0.413265 0.340336 -0.060840 -0.285706 -0.402756 -0.474234 0.331091 0.372139 0.099349 0.338615 -0.558082 -0.265904 0.109974 0.096434 0.271023 0.278175 -0.302210 0.178151 -0.330258 -0.113684 0.023610 -0.864122 0.125184 -0.257553 0.126296 -0.032848 -0.102020 0.014123 -0.107751 0.196824 -0.064295 -0.308694 0.355961 -0.281317 -0.193290 0.656606 -0.104320 -0.347541 -0.344742 -0.075185 0.145598 0.341026 0.030134 0.062845 0.159328 0.243560 0.385411 -0.510375 -0.103253 0.411646 0.112782 0.176986 0.119644 -0.218320 -0.208981 0.218155 -0.485743 -0.831664 -0.221736 0.185545 0.446886 -0.214024 -0.141916 0.108993 -0.456285 0.179088 0.452819 0.219551 0.235217 0.107026 -0.388423 0.124987 0.476500 -0.228321 0.285436 -0.072048 -0.301093 0.325935 -0.003110 0.257163 -0.277171 -0.141368 0.031591 -0.154946 0.118752 0.583496 0.026112 0.217653 -0.105876 0.112645 -0.433853 -0.580009 -0.767259 -0.118784 0.785314 0.367633 0.556025 -0.418846 -0.135223 0.033875 0.478436 -0.002589 -0.287563 0.265006 -0.231363 0.328565 -1.033058 -0.646240 0.784146 0.683658 0.305242 -0.172890 0.053940 0.166203 -0.303988 -0.443406 -0.291514 0.099994 -0.115030 -0.670205 -0.328524 0.134370 -0.556616 -0.027519 0.181984 0.093696 0.333811 -0.109028 0.377706 -0.183439 -0.096426 -0.481476 0.433464 -0.231498 -0.111378 -0.007413 0.007762 0.089365 0.238145 -0.136003 -0.140910 0.239897 -0.236922 -0.024552 -0.046866 0.207947 -0.023178 0.698284 0.511236 -0.161503 -0.018140 0.000554 -0.440581 1.052838 -0.424964 0.139353 0.039899 0.309284 0.098121 0.288397 0.439311 -0.274352 -0.230834 -0.621055 -0.393518 0.200396 0.296407 -0.366499 -0.548621 -0.650505 0.193156 -0.224704 0.653703 -0.046965 0.921249 -0.288496 0.222136 -0.639184 0.075399 0.309583 -0.148506 0.511549 0.201830 -0.406440 -0.311412 -0.147526 -0.576476 -0.099416 -0.050275 -0.251170 -0.188988 -0.081292 0.149639 -0.226605 0.081819 0.222667 -0.213470 0.554069 -0.169556 0.007931 -0.385151 0.122413 0.325931 0.000000 -0.340144 0.389277 0.164606 0.897382 0.025088 0.275164 -0.161390 0.202567 -0.179614 -0.570297 -0.362947 0.640753 0.520702 0.352783 -0.030649 0.078136 0.012974 0.344791 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.260628 0.333435 1.731486 0.416982 -0.693480 -1.566681 -0.361392 -2.154712 1.107542 0.594881 1.592895 0.015094 1.162509 -0.563572 0.066883 0.262515 0.999716 -0.054182 0.005735 -0.625012 -0.156563 1.600647 -0.024764 -0.219994 0.381962 -1.174297 0.565788 0.509415 0.783482 1.027856 0.386818 -0.027179 -0.412835 0.470452 -0.230745 0.419658 0.316204 0.415839 -0.980759 -0.238450 -0.107865 -0.388548 1.028892 0.101857 1.189717 0.007513 0.508063 0.056919 -0.692431 -0.557550 -0.371104 1.008559 -0.504996 0.666817 -0.015988 -0.295466 0.126242 -0.165914 0.133670 -0.917293 0.102007 -0.342163 -0.668444 -0.050098 -0.739219 0.125034 -0.483472 -0.669015 -0.120355 -0.779769 0.483191 -0.016878 0.007930 -0.046738 -1.772357 0.127496 0.444384 0.171886 0.734030 0.455535 -0.083829 -0.562200 -0.772390 -0.967390 1.153984 0.822338 0.327812 0.604646 -1.330160 -0.153374 -0.113089 0.011184 0.456496 0.648528 -1.104328 0.143254 0.052666 -0.531127 -0.444586 -1.475754 0.284207 -0.649887 0.260909 0.084181 -0.021211 0.179774 -0.570742 0.428426 -0.494654 -0.736724 0.622089 -0.556868 -0.348303 1.322398 -0.544364 -0.562412 -0.754824 -0.078178 0.131148 0.793556 0.141478 0.261172 0.822135 0.639736 0.871160 -1.028365 -0.304792 0.737765 0.756707 0.488446 0.290833 -0.674977 -0.516172 0.429992 -1.028491 -1.903608 -0.699379 0.616246 1.096338 -0.179508 -0.632466 0.230673 -0.571439 0.894724 1.042755 0.313008 0.290722 0.249095 -0.990679 0.306089 1.325833 -0.614142 0.870092 -0.316218 -0.507758 0.688229 -0.299832 0.488664 -0.078991 -0.252521 -0.109393 -0.449035 0.088829 1.198504 0.376553 0.446706 -0.519716 0.395880 -0.785072 -1.331916 -2.089026 -0.408896 1.357826 0.641152 1.586507 -0.947757 -0.780562 -0.169430 1.051753 -0.276139 -0.834761 0.549879 -0.884798 0.679948 -2.074266 -1.537023 2.208398 1.878724 1.014713 -0.139863 0.799409 0.425276 -1.164818 -0.713860 -0.551240 0.475916 0.073484 -1.704029 -0.483571 0.226155 -1.407989 -0.316784 -0.157788 0.265019 0.175277 0.123171 1.122291 -0.265989 -0.392830 -0.511234 0.717663 -0.472583 -0.427878 -0.179448 0.064437 0.254489 0.629840 -0.624017 -0.220210 0.467857 -0.978824 -0.081697 0.116724 0.660358 0.359559 1.800464 1.631412 -0.233949 0.874476 -0.228415 -0.909472 1.655612 -0.686464 0.203829 -0.072457 0.487340 0.242048 0.497659 0.978237 -0.519504 -0.668608 -1.203076 -0.452710 0.389282 0.712247 -0.503058 -1.375602 -1.530694 0.159412 -0.152301 1.526030 -0.163400 2.115550 -0.618449 0.553461 -2.145897 0.186724 0.636138 -0.234972 0.800311 0.382534 -0.972753 -1.047972 -0.182952 -1.195523 -0.870915 -0.001279 -0.627504 -0.593348 -0.868371 1.011250 -0.952821 0.079101 0.602128 -0.077916 1.292874 0.024991 -0.023860 -0.772046 0.356542 0.994276 0.048203 -0.736065 0.815064 0.331462 2.652853 -0.143851 0.702180 -0.481547 0.601094 -0.321560 -1.181110 -0.666571 1.293979 1.513637 0.543455 -0.174701 0.046749 -0.159922 0.927530 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -1.833463 0.080165 4.861780 1.323895 -2.413272 -3.824522 -1.311291 -5.884188 3.436727 1.949832 5.106715 -0.053932 3.106360 -2.044827 0.115209 0.317262 2.608690 -1.145123 -0.013080 -1.687228 -0.493106 4.714631 0.525371 -0.883077 1.106233 -3.665685 2.116207 0.424757 1.482937 3.117444 1.203241 -0.093978 -1.283324 1.323578 0.371580 2.421452 1.199642 1.235357 -1.759471 -0.903164 0.346360 -1.678681 2.496904 0.149529 4.109964 -0.190074 1.317001 -0.272507 -2.779096 -1.763673 -0.785839 2.341559 -2.345083 1.566616 0.665169 -0.268635 0.287497 -1.245098 -0.152313 -3.682894 0.053521 -1.858368 -2.121588 0.135264 -1.957211 0.722750 -1.349483 -1.058628 -0.310638 -2.676505 1.371436 0.170703 0.341423 0.690659 -3.979918 0.415116 1.139554 0.122516 1.894355 1.212042 -0.819443 -1.661218 -2.149596 -2.670192 3.218256 1.804407 0.736261 1.157611 -3.165688 0.660403 -0.388365 -0.026580 0.903191 2.147793 -3.719315 -0.203822 1.057158 -1.695071 -0.990410 -3.881383 0.728007 -2.255537 0.721459 1.532346 -1.382808 0.370951 -1.994880 1.281012 -1.740299 -2.119727 1.833170 -1.687633 -0.521725 3.112374 -1.925121 -1.394147 -2.480173 -0.241808 1.239087 2.226445 0.292648 1.063968 2.921395 1.869035 2.859718 -2.833402 -0.901940 2.359400 2.771623 0.968139 0.623558 -2.140494 -1.346793 1.221184 -2.579388 -5.057858 -2.456989 1.527341 3.131922 0.181604 -2.509642 0.482516 -1.129696 2.942280 3.261065 1.142790 0.364621 0.980976 -3.091966 0.726891 3.816582 -1.600167 2.310493 -0.804477 -1.593369 2.467397 -1.219653 1.203930 0.084352 0.035322 -0.485492 -1.883600 -0.002078 3.191719 1.001057 1.487533 -2.045011 1.337005 -1.575365 -3.939229 -6.124379 -1.299548 4.175496 2.369513 4.788420 -3.093488 -1.990886 -0.542608 3.050520 -0.144840 -2.710033 1.136658 -2.335490 1.787875 -6.278331 -4.715194 6.742713 5.409771 3.081119 0.141062 2.536093 1.127337 -3.692263 -1.409502 -2.189362 1.766851 0.198192 -3.983947 -0.830807 0.704651 -4.106008 -1.616633 -0.756367 0.790621 0.811228 -0.405533 2.644456 0.081774 -0.527359 -0.985938 2.123869 -1.191539 -2.094362 -0.891761 0.288846 1.283992 1.761943 -1.561179 -0.334116 0.823473 -2.857456 -0.500033 0.973660 1.921140 1.178200 5.294063 5.298437 -0.954003 1.517744 -0.940557 -2.141091 4.256674 -1.697144 0.228772 -0.273843 1.084701 1.369160 1.010961 3.096586 -1.411541 -1.925063 -2.969911 -0.756436 0.681722 2.219156 -2.488872 -4.393742 -4.483588 0.584243 -0.014562 4.109834 -0.109732 6.428102 -1.360535 1.356584 -6.610671 0.302844 2.803154 -0.479168 2.102538 0.875103 -2.564576 -3.338887 -0.629064 -3.087324 -1.852784 -0.161733 -1.154395 -1.816090 -2.762116 3.724013 -2.572837 0.221830 1.632138 0.343659 3.804989 1.233325 -0.084078 -2.326913 0.922335 2.039768 0.384139 -1.897991 3.009713 1.071116 7.429333 -0.918396 1.383935 -1.292880 2.446197 -1.396572 -3.218407 -1.498720 3.246923 4.566539 1.532541 -0.705054 -0.070052 -1.002307 2.722099 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.137287 0.402115 1.653936 0.705834 -1.091195 -1.487060 -0.398140 -2.022887 1.172423 0.480308 1.081101 0.117626 0.939750 -0.721470 -0.208741 0.428360 1.058691 0.194482 -0.109972 -0.756774 -0.427247 1.343372 0.169122 -0.555796 0.621181 -1.149262 1.030201 0.027100 0.741718 1.198311 0.539480 -0.069429 -0.460138 0.639556 0.469521 0.825635 0.293980 0.440473 -0.926998 0.059536 0.041888 -0.706437 0.925330 0.447800 1.193763 0.168700 0.395934 0.076206 -1.009485 -0.390386 -0.415576 0.700366 -0.881013 0.769993 -0.136005 0.085531 0.102769 -0.318303 0.183453 -0.821106 -0.142757 -0.709559 -0.839593 0.064073 -1.030483 0.137735 -0.693267 -0.623391 -0.555884 -0.464451 0.452774 0.221667 -0.054725 0.141375 -1.623889 -0.163494 0.334005 0.354292 1.034110 0.321188 -0.172091 -0.855768 -0.962780 -1.077195 1.200543 0.293291 0.311196 0.567830 -0.758317 -0.312183 -0.249567 0.130494 0.578501 0.738877 -1.165474 -0.064018 -0.179509 -0.432693 -0.231000 -1.725949 0.279063 -0.658967 0.220694 -0.080701 -0.426008 0.202004 -0.344040 0.565144 -0.312632 -0.444805 0.544260 -0.438662 -0.484864 1.256722 -0.128140 -0.766307 -0.707784 -0.208912 0.325691 0.809416 0.185625 0.256847 1.010252 0.696981 1.032280 -0.920759 -0.321392 0.549277 0.477969 0.404639 0.518882 -0.557586 -0.682589 0.490038 -0.684404 -1.789323 -0.595122 0.454436 1.013018 0.093096 -0.565078 -0.213684 -0.611210 0.543252 0.690764 0.439919 0.274858 0.102513 -0.910843 0.247097 1.385998 -0.595427 0.646756 -0.359598 -0.142732 0.742765 -0.317942 0.247066 -0.566293 -0.430704 -0.089980 -0.417654 -0.032208 1.197106 0.032414 -0.008609 -0.292857 0.433119 -0.933902 -1.311341 -1.667778 -0.334071 1.589228 0.533644 1.206461 -1.076971 -0.282196 -0.355898 0.821626 -0.008947 -0.468276 0.353073 -0.892934 0.716544 -1.809261 -1.483666 2.227115 1.390517 0.888388 -0.110981 0.270296 0.481914 -1.230186 -0.798903 -0.668118 0.262650 0.063202 -1.328757 -0.779133 0.314834 -1.501795 -0.357145 0.174517 0.384352 0.475480 -0.048413 0.862001 -0.039099 -0.157500 -0.800610 0.675340 -0.457614 -0.463478 0.000350 0.055297 0.371782 0.628094 -0.245218 -0.187201 0.270421 -0.639369 -0.209733 0.188391 0.813691 0.228037 1.619699 1.722185 -0.257484 0.357812 -0.060973 -1.012221 1.546905 -0.503844 0.423936 0.033660 0.331327 0.301789 0.347508 1.231031 -0.561862 -0.591482 -1.101753 -0.707781 0.358416 0.768997 -0.529357 -1.078547 -1.298842 0.162735 -0.164840 1.331474 -0.132991 1.759397 -0.527138 0.550246 -1.779150 0.188341 1.114897 -0.227477 0.804303 0.480400 -0.917824 -0.922455 -0.375512 -1.136670 -0.448160 -0.242009 0.069532 -0.620885 -0.210759 0.777802 -0.677411 0.108567 0.649101 -0.044581 1.311842 -0.134499 0.222255 -0.714685 0.222645 0.881274 0.100931 -0.718942 0.758707 0.578221 2.307591 0.137421 0.487507 -0.383670 0.178755 -0.301551 -1.113530 -0.782972 1.222631 1.355106 0.529365 0.183840 0.001103 -0.096921 1.050612 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.463800 0.313980 2.643212 1.367229 -1.312725 -2.373463 -0.603398 -3.583389 2.123469 1.115596 2.492040 0.529394 2.115575 -1.268924 -0.144262 -0.140217 1.735207 -0.070946 0.147198 -0.959726 -0.343800 3.547639 0.190350 -0.547788 0.378110 -2.067212 1.655164 0.767873 1.782212 2.203294 0.607047 0.053874 -0.687345 0.725743 -0.490506 0.360235 -0.379300 0.973438 -1.538790 -0.720340 0.502212 -1.134767 2.193680 0.293100 1.687595 -0.655400 1.010614 -0.205669 -1.016040 -1.119355 -0.971660 1.030678 -1.039107 1.182364 -0.449649 -0.847462 0.591306 0.355555 0.277826 -1.326897 0.267843 -0.768920 -1.173707 -0.145128 -1.488667 0.314722 -1.436444 -1.103562 -0.291417 -1.453103 0.923075 0.256252 0.227963 -0.725401 -3.725220 0.260854 0.535224 0.075243 1.340069 1.602336 -0.415263 -1.018891 -1.630090 -1.729991 1.999216 1.325084 0.113562 0.983940 -2.222641 -0.678415 -0.102475 0.415749 0.785609 1.070040 -1.862474 0.648284 -0.371629 -0.735787 -0.136262 -2.554497 0.449617 -1.374877 0.384519 0.268913 -0.422804 0.194556 -0.461240 0.299585 -0.719990 -1.671989 0.844218 -1.014654 -0.720872 2.466671 -0.828513 -1.089722 -1.412688 0.096025 0.385025 1.177535 0.309799 0.636369 1.508171 1.005912 1.461695 -1.976798 -0.262241 1.690616 0.971925 0.591705 0.169627 -0.686783 -0.934508 0.737813 -1.245135 -3.344315 -1.298656 1.456358 1.854481 -0.398707 -0.686766 0.546211 -1.021713 1.322201 2.171788 0.332921 0.817385 0.742739 -1.606770 0.791670 2.453604 -0.807676 1.135642 -0.817616 -1.348013 2.292634 -0.775654 0.999679 -0.629254 -0.064067 -0.226036 -1.005665 0.559067 2.241910 -0.210926 0.724442 -0.561555 0.618771 -0.906307 -2.363417 -3.570880 -0.533683 2.665611 1.919781 2.733261 -1.669932 -0.496266 0.351438 1.277199 0.157484 -1.396803 1.135966 -1.340849 1.232036 -4.637592 -2.803510 3.623289 2.653260 1.263912 -0.101768 0.907901 1.020289 -1.207496 -1.399480 -1.366257 1.114062 0.441534 -2.446063 -0.556649 0.462826 -2.332521 -0.702925 0.210833 0.198911 0.844414 -0.859209 1.651809 -1.090932 -0.710704 -1.347469 1.988787 -1.176830 -0.799554 -0.537659 -0.054546 0.209489 1.094310 -0.285539 -0.048675 0.367328 -1.058983 -0.253903 -0.073056 0.803674 0.119379 2.486251 3.150760 -0.918130 0.551975 -0.248203 -1.418626 3.551201 -1.698455 0.030814 -0.020838 1.022634 0.607369 1.126491 1.662829 -0.938642 -0.875089 -2.147078 -0.490768 0.816393 1.218873 -1.765093 -1.877108 -2.850597 0.258991 -0.414523 2.712519 -0.085221 3.810166 -1.648422 0.743021 -3.467886 0.274784 1.187534 -0.116262 2.061391 0.551408 -1.511733 -0.855065 -0.690299 -1.867507 -0.061050 -0.123308 -1.254718 -1.213216 -1.147531 1.175622 -1.712558 0.456425 0.939032 -0.831967 2.274911 -0.467589 -0.085478 -1.642887 0.720972 0.986770 0.435465 -1.170198 1.753097 0.153130 3.780097 -0.417489 1.230354 -0.928766 1.526241 -1.203439 -2.526445 -1.034514 2.410999 2.374932 0.784274 -0.125497 0.110939 -0.068993 1.495407 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.644981 0.359725 4.169721 1.843167 -1.667801 -3.330883 -0.985105 -5.799037 3.485574 2.000000 3.922000 0.675686 3.319475 -2.035505 -0.326289 -0.069501 2.529158 -0.237355 0.178301 -1.426254 -0.282389 5.516036 0.049929 -0.738679 0.596507 -3.624529 2.541738 1.061729 2.670249 3.275531 0.928475 0.224805 -0.851299 1.161894 -0.777494 0.844859 -0.279348 1.531935 -2.135514 -1.213236 0.828873 -1.353915 3.079382 0.474765 2.904514 -0.968932 1.319866 -0.496732 -1.332356 -1.699380 -1.148057 1.514363 -1.511907 1.726875 -0.761385 -1.150009 0.667359 0.233760 0.451454 -1.975663 0.590964 -0.874677 -1.857142 -0.192106 -2.117454 0.542061 -1.732976 -1.489818 -0.528932 -2.337679 1.364466 0.299241 0.186328 -1.181096 -5.637307 0.399025 0.903814 -0.226782 2.061003 2.203472 -0.740175 -1.705986 -2.433860 -2.727945 3.369599 2.548963 0.082271 1.660633 -3.229015 -1.031920 -0.307555 0.536088 1.268251 1.971639 -2.913824 0.666388 -0.296539 -1.173524 -0.112033 -3.561074 0.812167 -2.248770 0.606344 0.511026 -0.623971 0.542216 -0.246670 0.618652 -1.100601 -2.281512 1.225837 -1.586265 -0.729116 3.778337 -1.067792 -1.818279 -2.333104 0.018114 0.616592 1.820651 0.357399 0.910044 2.796220 1.477472 2.304119 -3.124279 -0.534231 2.917362 1.441906 0.892554 0.069602 -1.578440 -1.299541 1.098625 -1.947501 -5.079533 -2.172487 1.784865 2.769403 -1.099346 -1.099387 1.087129 -1.323981 2.027922 3.414759 0.246229 1.045312 1.283648 -2.539279 1.120888 3.907268 -1.163759 1.538451 -1.548281 -1.988225 3.188583 -1.166885 1.485800 -0.893818 -0.085143 -0.437676 -1.626753 1.153741 3.470878 -0.574238 1.283918 -1.208679 1.057894 -1.392809 -3.429229 -5.599095 -1.107096 3.854604 2.860965 4.485638 -2.555913 -0.949796 0.344273 2.167538 0.326041 -1.932394 1.862147 -2.260194 1.922901 -6.664867 -4.347595 5.495062 4.187417 2.328583 -0.228763 1.652759 1.373850 -1.802712 -1.926763 -1.856391 1.741852 1.012424 -3.724753 -0.717711 0.665025 -3.565750 -1.334488 0.062442 0.257157 1.008534 -1.042509 2.676175 -1.598802 -0.985589 -2.061653 3.053449 -1.675461 -1.143000 -1.098869 0.092107 0.130404 1.769559 -0.767260 -0.046288 0.675595 -1.447262 -0.192898 0.174432 1.018971 0.184092 3.546570 4.886971 -1.552313 1.004199 -0.549308 -1.851798 5.038929 -2.324517 -0.044026 0.110148 1.228195 0.915442 1.709113 2.409343 -1.440274 -1.101947 -3.303864 -0.699267 1.185548 1.827035 -2.383528 -2.728590 -4.183098 0.239085 -0.780111 4.223905 0.064028 5.883728 -2.399531 1.293130 -5.387125 0.422497 1.859771 -0.259802 2.939942 0.851095 -2.343426 -1.668988 -0.909506 -2.780891 -0.837108 -0.256120 -1.950685 -2.054467 -2.035934 2.067336 -2.652438 0.685093 1.627241 -0.837177 3.332372 -1.014329 -0.004902 -2.599182 1.182756 1.300571 0.556043 -1.792147 2.220354 0.233573 5.789437 -0.936614 2.104985 -1.438132 2.612176 -2.049775 -3.962227 -1.564568 3.617913 3.565572 1.214898 -0.271390 -0.005668 -0.218798 2.472424 -PE-benchmarks/euler-circuit-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.560239 0.158232 2.510528 1.003174 -1.139379 -1.852612 -0.675708 -2.754246 1.672612 0.736648 1.977166 -0.030312 1.215068 -0.987157 0.013147 0.471796 1.357084 -0.249148 -0.334982 -0.994860 0.087410 1.848500 0.499209 -1.146682 0.775345 -1.923306 0.712245 0.410788 0.698267 1.334512 0.561726 -0.061624 -0.408056 0.846965 -0.082433 1.170788 0.866650 0.413799 -1.234227 -0.301974 0.128193 0.014958 1.146277 0.071605 2.040164 0.155400 0.847784 -0.024095 -1.574466 -0.732774 -0.376014 1.656347 -1.037065 1.011324 0.121328 0.421065 0.002377 -1.123378 -0.172211 -1.785542 0.068736 -0.077743 -1.031574 -0.031041 -0.992731 0.324422 0.090865 -0.644106 -0.112737 -0.904687 0.743164 0.106133 -0.108061 0.067412 -1.603187 0.089454 0.542104 0.436462 1.055069 0.164259 -0.138014 -1.019907 -0.817051 -1.189758 1.536468 0.618151 0.491554 0.834122 -0.935530 -0.028554 -0.186848 -0.140936 0.396987 0.996512 -1.713647 -0.298244 0.478237 -0.786524 -0.629023 -1.256510 0.368393 -0.999871 0.342336 0.556749 -0.420070 0.578027 -0.549970 0.966753 -0.779616 -0.670680 0.676463 -0.473844 -0.376616 1.642850 -0.765762 -0.853202 -0.876121 -0.107143 0.192833 1.251223 -0.101936 0.607433 1.535913 1.118002 1.262522 -1.413109 -0.380543 0.716816 1.350657 0.753719 0.702677 -1.200550 -0.789605 0.511691 -1.162135 -2.479569 -1.070238 0.514221 1.779159 0.355581 -1.585216 0.156382 -0.583455 1.558912 0.938299 0.450371 0.164145 0.264582 -1.526479 0.414010 2.081067 -0.898387 1.162937 -0.502644 -0.313721 0.620973 -0.451307 0.538481 -0.117904 -0.477843 0.049216 -0.898431 -0.008844 1.623884 0.613356 0.447078 -0.870366 0.727941 -0.911332 -2.104391 -2.800928 -0.754218 1.351413 0.404648 2.230921 -1.422110 -1.239091 -0.914632 1.558431 -0.628655 -0.854078 0.397248 -1.497792 0.953298 -2.184509 -2.125725 3.341744 2.722506 1.520017 0.175349 1.384289 0.425422 -1.670978 -0.541733 -0.527207 0.618588 0.577786 -1.626882 -0.568688 0.268986 -2.013867 -0.977191 -0.149811 0.520753 -0.135557 0.209947 1.087439 0.349818 -0.650984 -0.500153 0.563309 -0.809387 -0.604316 -0.168547 0.209050 0.541334 0.942858 -0.992548 -0.399506 0.549966 -1.328502 -0.283570 0.421963 1.368834 0.784739 2.038331 2.419163 -0.221865 1.638904 -0.239940 -1.400552 1.982641 -0.667407 0.312388 -0.137556 0.373383 0.514384 0.358774 1.311169 -0.748558 -0.565660 -1.568529 -0.469322 0.418778 1.195286 -0.934241 -1.768692 -1.703883 -0.038027 0.038293 1.701846 -0.210469 2.707647 -0.722707 0.644897 -3.348868 0.147350 1.439555 -0.175977 0.590924 0.698650 -1.272782 -2.711005 -0.187107 -1.537199 -1.100234 -0.352213 -0.495599 -0.937301 -1.125933 2.014190 -1.180947 0.224545 1.370824 0.369147 1.775815 0.170191 0.099023 -0.764163 0.090993 0.764618 0.313070 -1.091326 1.024371 0.637105 3.771513 -0.217751 0.973225 -0.856220 0.703604 -0.481577 -1.390140 -0.911451 1.671273 2.184339 0.552080 0.125942 -0.174807 -0.704295 1.566556 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.171744 0.192227 0.804822 0.267422 -0.260729 -0.542263 -0.190894 -0.848946 0.445031 0.258651 0.644316 0.017737 0.551444 -0.217358 -0.039876 -0.137217 0.401029 -0.014762 0.143905 -0.190612 -0.032037 0.790793 0.091919 -0.140660 0.070400 -0.567119 0.423167 0.101545 0.430710 0.658705 0.071865 -0.015863 -0.194582 0.210189 -0.143384 0.012727 0.091791 0.307011 -0.358853 -0.116490 -0.003189 -0.201035 0.424912 0.043192 0.385656 0.041577 0.028894 -0.028234 -0.274432 -0.287434 -0.124905 0.181730 -0.321827 0.310411 -0.037009 -0.238612 0.096924 0.130085 0.051412 -0.548461 0.115427 -0.203953 -0.148191 0.011735 -0.417823 0.119737 -0.375672 -0.330792 -0.062101 -0.303522 0.254746 0.159898 0.264631 -0.011370 -0.841458 0.183312 0.149099 0.094018 0.328826 0.252619 -0.075213 -0.173615 -0.338835 -0.501264 0.416263 0.347400 0.099731 0.219927 -0.431470 -0.103567 0.054391 0.077920 0.141582 0.326276 -0.286279 0.239288 -0.224550 -0.092255 0.044516 -0.805558 0.002307 -0.411088 0.096501 0.197889 -0.084643 0.009856 -0.183018 0.232083 -0.153720 -0.468561 0.369898 -0.223508 -0.287438 0.589652 -0.253417 -0.191131 -0.249301 0.005523 0.155428 0.363561 0.022063 0.238560 0.171203 0.299666 0.338636 -0.489115 -0.061663 0.421009 0.282437 0.150652 0.144196 -0.303138 -0.261730 0.177760 -0.393828 -0.842359 -0.283748 0.330960 0.459536 -0.142183 -0.306212 0.189338 -0.354753 0.328141 0.540848 0.200706 0.190827 0.109975 -0.407884 0.224709 0.576885 -0.295055 0.368982 -0.070173 -0.339044 0.477546 -0.167522 0.314898 -0.221949 0.023681 0.061320 -0.324332 0.059286 0.616174 0.130446 0.322797 -0.120391 0.094229 -0.298030 -0.700155 -0.790837 -0.156779 0.760844 0.258604 0.619236 -0.392195 -0.232056 0.108774 0.516129 -0.003311 -0.334063 0.181903 -0.237667 0.307965 -1.166115 -0.762693 0.883035 0.726143 0.295443 -0.057405 0.159289 0.320728 -0.326216 -0.389713 -0.322179 0.235089 -0.121158 -0.660816 -0.369595 0.113800 -0.563908 -0.121691 0.106712 0.078706 0.270394 -0.089354 0.250564 -0.061502 -0.194161 -0.323481 0.446589 -0.336428 -0.248807 -0.075451 0.028523 0.122707 0.230534 -0.172093 -0.046752 0.282582 -0.332172 -0.074338 0.026685 0.220932 0.045432 0.740345 0.662857 -0.141413 -0.015992 0.014405 -0.410522 1.009786 -0.425979 0.020884 -0.022623 0.287409 0.075443 0.279880 0.429481 -0.242959 -0.370492 -0.640866 -0.231196 0.164682 0.294945 -0.388075 -0.648482 -0.588339 0.145654 -0.045607 0.674972 0.003177 1.013687 -0.302623 0.188657 -0.807772 0.068359 0.337870 -0.121743 0.538387 0.218114 -0.338030 -0.475146 -0.202275 -0.479242 -0.083572 -0.137412 -0.422844 -0.175639 -0.248458 0.273966 -0.296465 0.111546 0.222698 -0.068130 0.605723 0.031749 -0.076295 -0.498417 0.192242 0.256028 0.040963 -0.337678 0.492749 0.108020 1.011200 -0.149750 0.240322 -0.267462 0.252972 -0.211898 -0.475400 -0.232228 0.688460 0.603196 0.286540 -0.039388 0.045968 -0.078231 0.337341 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.425667 -0.004763 0.848537 0.175063 -0.099970 -0.954627 -0.281519 -1.036677 0.473682 0.290030 1.102856 -0.087132 0.679242 -0.282313 0.331175 0.284738 0.543379 -0.342486 0.127637 -0.277554 0.107160 0.951165 0.367839 -0.057515 0.126453 -0.577936 -0.105920 0.337631 0.201198 0.541136 0.120386 -0.017697 -0.017769 0.184207 -0.337599 0.459095 0.286580 0.253607 -0.347760 -0.152438 -0.180239 -0.058414 0.477861 -0.084164 0.750397 0.068122 0.566207 0.022238 -0.489113 -0.503440 -0.350247 0.885341 -0.464608 0.243404 -0.079443 -0.166656 0.239778 -0.154741 -0.220747 -0.965247 -0.032175 0.014595 -0.443566 -0.030657 -0.239493 0.288269 -0.027815 -0.221638 0.032678 -0.148917 0.486463 0.143505 0.098531 0.286025 -0.732075 0.161047 0.153323 0.134206 0.251626 -0.052308 -0.145269 -0.156145 -0.244037 -0.510457 0.847305 0.236137 0.347934 0.296554 -0.711049 0.302035 -0.224209 -0.053656 0.092937 0.238199 -0.423526 0.090741 0.660836 -0.304448 -0.373027 -0.437317 0.081763 -0.449321 0.010867 0.380552 0.366319 -0.048268 -0.914081 0.292956 -0.752881 -0.643482 0.442787 -0.255336 -0.548140 0.436575 -0.755297 0.152660 -0.201940 0.111896 0.157565 0.551865 0.132369 0.420820 0.260802 0.493688 0.212639 -0.494639 -0.138690 0.160681 0.960847 0.270480 0.169804 -0.402263 -0.425486 0.258191 -0.712250 -0.984291 -0.561103 0.770310 0.726080 0.245639 -0.782064 0.453726 -0.185114 0.720662 0.674567 0.185525 0.052101 0.131469 -0.641139 0.334078 0.758437 -0.537868 0.830772 0.090913 -0.175604 0.479271 -0.480095 0.274404 0.329397 -0.116549 -0.064629 -0.310562 -0.166301 0.619017 0.779116 0.514182 -0.379993 0.293686 -0.224464 -0.851886 -1.236683 -0.307774 0.649400 0.027926 0.850523 -0.430219 -0.658595 -0.052319 0.644239 -0.495721 -0.679487 0.033890 -0.478990 0.314253 -1.263514 -0.813418 1.475477 1.086044 0.711017 0.236795 0.631568 0.588297 -0.613449 -0.111266 -0.130574 0.455467 -0.020235 -0.994140 -0.292590 0.033601 -0.815551 -0.386211 -0.364302 0.176431 -0.459690 0.297637 0.519890 0.067776 -0.399220 0.295435 -0.002138 -0.416421 -0.420471 -0.163499 -0.017541 0.256911 0.174976 -0.454703 0.151852 0.413483 -0.953403 -0.181203 0.132163 0.518904 0.617203 1.162071 1.043731 -0.082352 0.734169 -0.224741 -0.583468 0.530944 -0.315785 0.017682 -0.238191 0.412885 0.304254 0.132815 0.529812 -0.207570 -0.543890 -0.701021 -0.035883 0.488091 0.486102 -0.023871 -0.884336 -0.839459 0.034723 0.273987 1.031493 -0.287528 1.112010 -0.374205 0.281679 -1.400308 0.152094 0.122518 -0.133342 0.117596 0.188818 -0.344835 -1.012208 -0.163576 -0.637069 -0.658417 -0.056696 -0.504296 -0.185544 -0.804749 0.735152 -0.801225 0.001813 0.211744 0.185098 0.753086 0.519631 -0.156700 -0.493808 0.362853 0.509688 0.089076 -0.446838 0.557073 0.168266 1.704622 -0.253225 0.443698 -0.407606 0.444286 -0.166790 -0.340628 -0.143921 0.782551 1.156886 -0.008747 0.080334 0.088275 -0.102986 0.497045 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/euler-circuit-directed-graph.cpp___GLOBAL__sub_I_euler_circuit_directed_graph.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/sieve-of-eratosthenes.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -1.470422 2.655786 10.137448 7.266927 -4.480356 -5.235528 -2.854753 -5.944614 3.312428 1.506149 5.242550 -1.658766 1.448333 1.407135 -0.765210 -3.071815 2.241516 0.149513 -0.861283 -2.405632 -3.072046 4.812774 4.135307 -7.448609 0.908684 -6.427031 4.623328 3.063057 2.195705 4.063704 0.482948 0.320084 -0.366074 4.120960 -5.201785 -1.853092 -0.470128 1.722274 -3.062199 -0.791854 2.880589 3.508011 4.165668 0.062631 3.188625 3.902322 2.719327 -0.490177 -6.142035 -0.927361 -1.303346 5.399114 -2.322713 3.146235 1.671452 3.338324 1.027046 -6.266569 -0.826354 -6.450647 1.800400 2.829646 -2.917367 0.257294 -5.420620 0.294669 -1.267001 -3.820077 3.239802 -1.869028 2.584820 -0.377731 0.064362 -4.269153 -2.891430 3.359401 1.251028 2.049235 2.576882 0.614991 -0.458655 1.225066 -2.602828 -3.607925 0.522970 0.181822 1.118665 0.888643 1.410424 -3.926113 2.008283 -1.048933 -1.567974 4.978962 -2.801242 3.836655 -1.864566 -2.186214 -4.335005 -3.512354 -0.625986 -4.362951 2.833656 4.747548 -3.867365 1.779856 0.672577 2.266148 0.919012 -5.342293 0.017951 -2.169693 1.850475 5.533305 -3.144690 -2.948464 -0.511520 -0.567075 -0.475963 5.117429 -0.791590 1.261487 4.985423 3.450275 1.719311 -4.075405 0.934470 0.462788 1.578224 3.118969 4.321412 -5.123141 -2.543307 -0.728786 -0.402403 -8.079417 -0.004260 0.953013 3.699269 0.980129 -6.911062 2.268318 -2.588158 4.858907 2.236317 4.280819 1.860136 -0.976633 -2.628195 1.518488 7.918642 -2.989391 3.249482 -2.322963 -7.332576 5.174247 -0.880911 4.515988 0.121447 0.064693 2.385627 -5.000274 1.006420 6.440465 0.903617 0.396540 4.289551 -0.342818 -0.199973 -7.587532 -7.254858 1.363470 1.482683 1.053920 10.247380 -4.810226 -3.340854 -2.018172 6.092800 -1.256181 -1.084623 0.184865 -1.484701 1.972882 -9.803749 -8.211246 6.497093 6.674397 0.621135 -1.248677 5.386933 -0.300434 -0.867826 -4.118801 -4.211300 3.060952 1.390643 2.316076 0.365524 0.065653 -5.219858 0.214117 0.866468 1.519988 4.722212 -5.626715 -3.497144 -2.056257 -6.843055 -4.571857 1.962184 -5.294344 -1.031148 0.339229 0.612611 -0.257271 2.365660 -1.520939 -4.565650 -0.148824 -2.889182 -1.515171 1.183751 4.719233 0.309306 7.200581 5.330627 -0.007371 4.025057 2.271525 -2.855455 14.919149 -4.244405 -0.543864 -0.151926 4.762334 -0.933128 1.923864 2.691069 -1.863269 -2.852636 -4.880647 2.483894 -0.878351 1.532114 -10.086708 -3.732676 -6.376388 -1.999217 0.729991 5.052130 0.798362 10.491689 -0.381272 0.481320 -10.289012 -0.064244 4.883270 -0.463500 4.850939 3.850448 -5.942268 -8.611194 -0.901272 -3.182230 3.940068 -1.050510 -5.381964 -3.540992 -0.432467 2.405052 -1.177938 3.113755 7.687292 -1.383745 1.931029 1.210960 -1.279681 -0.382341 -3.523188 2.919709 1.367192 -4.055423 6.413337 -0.838064 11.532446 -0.844987 4.400807 -4.285014 0.123868 0.041086 -2.220019 -2.787429 5.957835 3.565771 2.447218 0.248320 0.560868 -3.684768 3.263323 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.240858 0.900698 3.223319 1.965840 -1.327593 -2.210074 -0.819344 -3.243606 1.745560 0.576871 1.816547 -0.329124 0.997524 -0.125101 -0.344552 -0.057395 0.990536 0.145665 -0.011901 -0.846314 -0.819602 2.840578 0.611464 -1.548000 0.366565 -2.637806 1.268810 1.013304 1.785287 1.458681 0.339931 -0.091873 -0.142553 1.101823 -1.481807 -0.332303 -0.221690 0.619957 -1.956605 -0.231215 0.309214 0.520229 1.653426 -0.039592 1.273955 0.443357 1.317201 0.038252 -1.207261 -0.337788 -1.003100 2.309965 -0.539167 1.197771 0.096421 0.194086 0.138698 -1.232990 -0.236826 -0.966395 0.123694 0.600023 -1.140981 0.031071 -1.882451 0.193958 -0.798232 -1.276558 0.611188 -0.518491 1.098816 0.198293 0.153474 -1.354907 -2.645573 0.872764 0.368864 0.744906 0.956715 0.644267 0.280066 0.082782 -1.258344 -1.434773 1.151190 1.133703 0.254875 0.334066 -0.579093 -1.337840 0.078606 -0.268375 0.111845 1.396661 -1.494218 1.167907 -1.136473 -0.630444 -1.126656 -2.001361 -0.038937 -1.389732 0.879251 0.454334 -0.333638 0.720469 0.750117 0.697198 0.273152 -1.840724 0.210954 -0.495173 0.168659 2.764246 -0.722457 -1.083770 -0.591545 -0.085457 -0.835723 1.500405 0.071284 0.567567 1.801282 1.210116 1.034084 -1.479782 -0.126733 0.890785 0.606167 1.087310 1.171291 -1.548957 -0.914382 0.031162 -0.178272 -3.275796 -0.478859 0.835387 1.477217 -0.313161 -1.256679 0.366857 -0.806168 1.727617 1.065501 0.525687 0.869701 -0.040842 -1.004275 0.833719 3.151841 -0.857520 1.048323 -1.361950 -1.800768 1.719240 -0.470626 1.433752 -0.335467 0.073226 0.405946 -1.497414 0.532513 2.141383 -0.009362 0.084541 0.833469 0.217059 -0.774786 -2.588117 -2.858360 0.099546 0.996555 0.385750 3.304958 -1.504721 -1.273776 -0.453430 1.754170 -0.220968 -0.427875 0.737286 -1.405062 0.917760 -3.337732 -2.827831 2.855526 2.749271 0.643031 -0.465838 1.741035 0.527865 -1.183517 -1.723798 -1.278638 0.999583 0.717311 -1.281828 -0.510600 0.120141 -2.049879 -0.223342 0.273413 0.451119 1.295401 -0.687069 0.281659 -1.040770 -2.107968 -1.606980 1.533302 -1.603479 -0.237918 0.060545 0.223989 -0.302225 1.226155 -0.809436 -0.876927 0.439383 -0.994071 -0.139462 0.290881 1.191215 -0.197607 2.367211 2.473291 0.018871 2.030870 0.465119 -1.333407 4.436768 -1.368645 -0.080228 -0.155342 0.987768 -0.486351 0.906562 0.923439 -0.794912 -1.253339 -1.881576 0.410602 -0.033780 0.649549 -2.009738 -1.627143 -2.221885 -0.674925 0.021037 1.983877 0.451826 3.552315 -1.021620 0.534764 -3.880615 0.226049 1.324847 -0.012241 1.933751 1.009822 -1.826860 -2.032458 -0.345901 -1.409343 0.016706 -0.517362 -2.302363 -1.338751 -0.917930 1.221775 -0.996619 0.773299 2.328907 -0.469605 1.379869 -0.591394 -0.292283 -0.860838 -0.367031 1.344563 0.310792 -1.433691 1.617417 -0.269214 4.438065 -0.325864 1.431023 -1.358990 0.294786 -0.353375 -1.667202 -0.903613 2.264140 1.478207 0.709760 -0.129237 -0.133260 -0.854918 1.177639 -PE-benchmarks/sieve-of-eratosthenes.cpp___GLOBAL__sub_I_sieve_of_eratosthenes.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/Iterative_QuickSort.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -1.907996 1.535245 8.781121 6.258806 -2.845200 -4.958952 -1.878323 -4.261510 3.427928 1.306734 5.192312 0.336350 2.587351 1.031606 0.207424 -2.367486 2.466438 -0.219579 -0.925359 -1.872551 -0.695113 6.302958 4.269002 -7.049871 0.436493 -6.110618 3.908714 2.831696 2.371940 5.602381 0.017222 0.503208 0.110231 3.177544 -4.748910 -1.685760 -1.398219 1.642914 -1.994487 -1.902203 3.164033 2.183688 4.089094 0.968822 2.704649 2.025370 3.747433 -1.094254 -3.688169 -1.695020 -3.460717 4.745533 -2.926862 3.108140 -1.017633 2.993451 1.798607 -3.717935 -0.573799 -8.154971 1.864994 2.854978 -3.168863 -0.982691 -4.335981 0.689220 -1.008685 -3.172748 1.654114 -1.941353 3.192896 0.118418 0.708032 -4.667940 -5.072578 2.012992 -0.556203 1.802471 2.372476 1.100504 -2.977296 0.299152 -2.374621 -3.281516 1.641898 -0.414020 0.329213 1.293050 0.061454 -2.556889 -0.026282 0.351286 -2.155395 4.008470 -3.105082 4.361694 0.221180 -1.096990 -1.766034 -1.084509 -0.537553 -4.520837 0.970433 4.340402 -1.465187 1.024928 -1.277259 1.108029 -0.844743 -4.984782 1.109211 -1.393348 -1.978509 3.183156 -3.435775 -1.407115 0.848686 0.519732 0.860661 5.097138 -0.988122 2.006394 3.730388 2.875860 1.411818 -3.907653 1.809108 1.344029 2.977258 2.748367 2.953608 -3.159019 -2.672334 -0.271420 -0.698546 -7.683548 0.994425 4.207969 4.169766 1.662694 -7.554168 3.065328 -2.409885 4.631617 4.148718 4.110264 2.180017 0.012316 -3.116877 1.624306 9.012999 -3.264391 3.965060 -2.044411 -5.378520 7.262314 -2.439032 4.559383 -0.572885 0.762188 2.404743 -4.317290 0.002987 6.633026 1.771247 1.855874 4.004310 -0.454105 0.499802 -7.919912 -7.098495 -1.894783 2.939840 2.115262 9.496263 -3.819721 -1.798882 -1.163630 3.871504 -2.315175 -2.039308 -0.189117 -1.125133 1.840466 -12.368801 -7.375439 7.792436 6.016413 0.343797 0.231236 4.836741 1.600030 1.373990 -3.011604 -3.054865 3.026906 1.265456 2.029503 1.086924 -0.366022 -5.404673 -0.924558 0.752339 0.486776 2.392072 -4.868109 -2.397080 -0.937455 -6.110585 -3.651143 1.218723 -6.157228 -2.484093 -0.329111 0.337348 -0.356568 0.795589 -0.204719 -2.582127 1.498163 -3.158985 -1.992044 0.418180 3.487205 1.744099 5.411619 6.119948 -0.338485 2.391074 2.049944 -3.023581 13.301030 -4.452850 -1.424248 -0.156190 5.103943 0.329158 2.643506 2.031891 -1.534271 -2.074746 -5.261587 3.367787 0.412398 1.962251 -8.195125 -3.291046 -4.654942 -1.468321 1.374886 5.977295 -1.007703 10.435142 -1.531766 1.076636 -10.713290 0.276551 4.386097 -0.157138 3.247305 3.638346 -4.337586 -7.188284 -1.302680 -1.577428 4.578645 -0.710452 -5.153135 -3.009799 -1.853888 1.049262 -3.925753 3.158130 5.620661 -2.057252 3.379757 0.661645 -1.093873 -1.305574 -1.532234 1.885374 2.678648 -3.487967 5.768281 -1.445019 9.575089 -2.009730 4.895292 -4.081521 2.251555 -1.621538 -2.484703 -2.196088 6.436624 4.132845 1.616658 1.459939 0.415073 -2.153478 3.324769 -PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -0.361375 2.518644 11.378720 9.711533 -4.881287 -7.778111 -1.926892 -4.631905 2.344934 0.446652 5.021188 -1.336556 1.268330 3.794209 -0.106930 -2.866357 1.913997 1.942993 -0.804261 -2.014673 -5.325656 6.109191 5.413085 -8.972967 0.585883 -8.761866 6.530075 4.386680 2.570866 7.526179 0.339627 0.122215 -0.083279 3.257861 -6.354974 -3.023855 -3.075370 0.560083 -2.468755 -0.806551 3.534199 1.280327 5.237438 1.095459 1.335965 3.190191 5.409247 -0.674509 -4.897821 -0.520835 -6.325582 6.174214 -2.779893 2.742559 -1.055351 5.222335 2.713003 -5.293302 -0.779622 -9.933007 1.714059 3.111107 -4.850079 -0.701549 -6.655825 0.503714 -4.427550 -4.940390 3.344540 -0.778044 3.125220 -0.259094 0.263618 -6.573330 -6.212884 2.231311 -0.910798 2.548897 2.162248 0.365815 -3.352569 2.284188 -4.138613 -2.682464 0.840125 -2.195274 0.477560 -0.222336 1.631320 -4.584331 0.265743 0.563417 -2.350796 4.123339 -3.006915 6.699261 -2.858758 -1.011344 -4.073351 -3.242944 -0.687518 -4.522253 1.876108 5.704773 -3.013591 1.476674 -0.198373 1.290445 0.813785 -8.032547 -0.406799 -2.404570 -0.607994 4.064506 -4.061356 -2.404854 1.388914 0.066238 0.126417 6.296185 -2.272309 1.735535 3.854586 2.989390 1.119487 -3.678855 3.297806 0.398892 1.352635 3.492239 3.942731 -3.175367 -2.820609 -1.273857 0.277118 -9.969034 2.744937 4.352444 3.640681 2.962560 -8.794681 2.186003 -3.169393 6.086759 3.592297 6.895329 2.611646 -0.691536 -2.384437 1.495651 12.201653 -3.932480 4.830700 -3.778744 -8.600724 9.484729 -1.597930 5.858662 -0.726304 1.187697 4.085852 -4.730658 -0.821855 8.141808 1.852592 -0.196289 8.689038 -0.843296 0.708169 -10.253711 -7.188429 0.692335 4.056830 1.699205 12.515620 -5.532923 -1.420112 -0.998329 4.914015 -2.282775 -1.607602 -0.417684 -0.618642 1.577298 -17.309968 -10.425246 7.408597 5.405798 -1.285991 -0.687749 6.080928 1.994319 2.618707 -3.998501 -5.481225 3.142850 0.885932 4.473891 0.907893 -1.577897 -6.476149 1.837554 1.846637 1.096360 5.598837 -8.145987 -5.632616 -3.723456 -9.670595 -6.361789 3.002273 -9.854068 -2.323471 0.451432 -0.089043 -0.598806 0.567732 1.199600 -3.310437 0.977674 -3.226432 -1.743750 0.824201 3.623841 0.848993 9.458266 7.882776 0.537101 2.209879 2.949612 -3.070509 20.394629 -5.421948 -1.172117 0.018325 6.753754 -1.350378 2.726612 3.387774 -1.499295 -4.712820 -5.109305 4.946067 -1.015400 1.806939 -11.097505 -3.750662 -7.364611 -2.756945 1.626160 7.386114 -0.242696 12.031739 -0.478349 0.992166 -12.550790 -0.135819 6.440204 -0.336755 5.472612 3.833385 -5.974189 -7.903098 -1.125693 -1.191163 9.616565 -0.753836 -7.927147 -3.967707 -0.425044 -2.156293 -2.543061 4.895355 7.361961 -3.780245 2.643457 1.033406 -1.565690 0.169793 -2.516958 3.009421 2.944345 -4.206400 8.769257 -1.650362 12.357418 -1.345069 4.654580 -4.293515 1.584781 -0.703388 -1.096359 -2.387070 6.461888 3.923645 2.407370 0.945229 1.691515 -2.347156 2.444550 -PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.296782 0.718652 2.593138 2.018578 -1.542776 -1.879137 -0.674777 -1.989149 1.089948 0.319035 1.458401 -0.155811 0.696191 0.043636 -0.133191 -0.526895 0.819061 0.310781 -0.401444 -0.741000 -0.895398 1.724303 0.777716 -2.006310 0.376157 -1.568865 1.308206 1.051769 0.723438 1.288226 0.153573 0.035360 -0.389573 1.012636 -1.326766 -0.402910 -0.175860 0.477750 -1.085613 -0.426483 0.789520 0.269210 1.413347 -0.046251 0.957980 0.702717 0.964888 0.023804 -1.524267 -0.427381 -0.714535 1.524913 -0.605313 1.158318 0.095054 0.527708 0.473462 -1.225923 -0.063871 -1.684796 0.424902 0.274734 -0.844378 -0.188354 -1.394909 0.032837 -0.187408 -1.338519 0.726523 -0.684146 0.799541 -0.188842 -0.058082 -1.190528 -1.472064 0.487578 0.383010 0.676999 0.844581 0.597085 -0.012790 -0.121858 -0.953459 -1.024757 0.466003 0.111706 0.404041 0.480800 -0.390356 -0.920547 0.515833 -0.158810 -0.053316 1.151961 -1.047359 0.876269 -0.557166 -0.476543 -1.101045 -1.242470 0.089284 -1.007644 0.685733 0.840883 -0.822953 0.446443 0.285494 0.529765 0.040466 -1.532093 0.143395 -0.692190 0.122587 1.613867 -0.678381 -0.894535 -0.033363 -0.220059 -0.244877 1.343117 -0.025850 0.321760 1.363505 1.011866 0.769252 -1.289208 -0.045664 0.367646 0.646053 0.947621 0.958948 -1.231478 -0.684361 0.148391 -0.549565 -2.475223 -0.110265 0.695114 1.448303 0.264975 -1.648694 0.662332 -0.839799 1.253003 0.663970 1.087154 0.550042 -0.069108 -0.979115 0.450006 2.408478 -0.768135 1.019324 -0.635959 -1.635827 1.563848 -0.137018 1.009014 0.004233 -0.169177 0.458344 -1.126435 0.213124 1.824415 0.272302 0.135418 0.882107 0.133732 -0.836696 -2.417980 -2.329635 0.023813 1.085085 0.524157 2.871200 -1.473404 -0.925976 -0.433008 1.686187 -0.694670 -0.538157 0.300583 -0.720879 0.830647 -2.820734 -2.294229 2.337919 1.900543 0.298706 -0.167131 1.527778 0.086147 -0.545532 -1.186388 -1.111672 0.657781 0.655480 -0.084460 -0.076032 -0.003592 -1.713085 -0.059727 0.374870 0.416373 0.930703 -1.056830 -0.198644 -0.604984 -1.654251 -1.329209 0.707931 -1.521250 -0.134307 0.193921 0.151616 -0.086319 0.739429 -0.340884 -1.106007 0.021555 -0.859911 -0.197932 0.119909 1.087622 0.185624 2.139052 1.865826 -0.259626 1.341195 0.442679 -1.033811 4.113723 -1.315306 0.034497 -0.018312 1.441612 -0.052217 0.625302 1.084516 -0.654645 -0.679790 -1.640848 0.199640 0.029024 0.591796 -2.582242 -1.056925 -1.983945 -0.472911 0.016720 1.545318 -0.105266 2.930836 -0.514283 0.306386 -3.346893 0.086138 1.230427 -0.181608 1.161606 0.893966 -1.473781 -2.393234 -0.223130 -0.997716 0.590653 -0.328865 -1.368015 -0.940349 -0.455286 0.535498 -0.705585 0.612540 2.044938 -0.579231 0.891208 -0.229444 -0.186822 -0.261168 -0.675761 0.907356 0.319704 -1.157482 1.741703 0.002211 3.545706 0.009131 1.276996 -0.996990 0.339064 -0.214560 -1.163152 -0.859196 1.735951 1.183937 0.666642 0.189378 0.359509 -0.817246 1.100551 -PE-benchmarks/Iterative_QuickSort.cpp__main = -0.163382 1.236053 4.541901 2.483096 -1.868408 -3.358826 -0.945806 -3.476777 1.377306 0.675715 2.774570 -0.534519 1.367390 0.958677 0.176218 -0.236634 1.654383 0.001929 0.228418 -1.218853 -1.497958 3.079036 1.216998 -1.994425 0.469441 -3.594947 2.203980 1.572004 1.366081 2.657664 0.565163 0.013140 -0.391851 1.283796 -1.812165 -0.521640 -0.194375 0.623841 -1.620162 0.050496 0.620294 0.256172 2.326300 0.284572 1.247348 1.225213 1.923714 0.204600 -1.752598 -0.715663 -2.019941 2.586940 -1.124547 1.282226 -0.331904 0.718245 0.836676 -1.638762 -0.304811 -2.612162 0.242732 0.519289 -1.727620 -0.012899 -2.411764 0.417179 -1.610567 -1.810305 0.840506 -0.313064 1.453418 0.082121 0.190337 -1.408451 -3.345939 0.906729 0.114355 1.012350 1.103427 -0.024508 -0.801627 0.494930 -1.954833 -1.848879 1.251361 0.725230 0.577646 0.042096 -0.752214 -1.173453 -0.241693 0.028746 -0.319996 1.837336 -1.531542 1.882645 -0.952683 -0.820548 -1.914865 -2.414375 -0.042945 -1.854224 0.891610 1.425093 -0.657608 0.290377 -0.700490 0.687581 -0.301707 -2.824571 0.426332 -1.111189 -0.405669 2.510976 -1.545335 -0.975107 -0.521204 -0.175259 0.136994 2.318565 -0.296753 0.725878 2.006130 1.669154 0.810102 -1.801075 0.248704 0.507740 1.056370 1.309693 1.627192 -1.770422 -1.438936 0.015280 -0.904895 -4.118806 0.051835 1.657212 1.996941 0.144080 -2.577624 0.872730 -1.514744 2.435953 1.984564 2.010312 0.966324 -0.062811 -1.397913 0.995670 4.432046 -1.636009 2.175793 -1.605528 -2.296660 3.034031 -0.694417 1.969790 0.035881 0.221547 0.445594 -1.720621 -0.200601 3.124640 1.106150 0.500049 2.114882 0.134568 -0.377894 -3.651638 -3.640002 -0.035157 2.170349 0.503948 4.501720 -2.333947 -1.111658 -0.337322 2.205627 -0.646716 -1.320564 0.429248 -0.891173 0.901674 -5.822489 -3.878616 3.758258 3.049799 0.441122 -0.363796 2.182219 1.093010 -0.882763 -1.922608 -1.822181 1.631508 -0.084624 -0.795681 -0.421280 0.038178 -2.887595 0.200531 0.116925 0.772060 1.942581 -1.673427 -0.474061 -1.036114 -3.247397 -2.035652 1.496921 -2.838210 -1.247738 0.165447 -0.053204 0.049280 0.703708 -0.233755 -0.896935 0.896443 -1.891635 -0.586110 0.574994 1.631669 0.353014 4.002349 3.266363 0.137614 1.460425 0.567426 -1.640698 6.242014 -1.794716 -0.099375 -0.169544 2.000417 -0.429468 1.120965 1.794189 -0.775302 -2.357483 -2.549961 1.106347 -0.040688 1.102125 -2.800364 -2.060390 -3.324237 -0.603048 0.519387 3.701367 -0.112824 4.882653 -0.573401 0.821671 -4.977138 0.230667 1.683960 -0.193929 1.941516 1.347157 -2.330147 -2.429829 -0.419526 -1.709912 1.104001 -0.182759 -2.718159 -1.791934 -0.927069 0.289223 -1.340076 1.014349 2.580944 -0.966461 1.793100 0.551583 -0.680098 -0.805807 -0.279865 2.221191 0.662874 -1.780406 3.033168 -0.268094 5.859183 -0.439104 1.849286 -1.445105 0.419564 -0.118433 -1.290809 -1.126770 3.045273 2.206522 0.970253 0.216495 0.194742 -0.475348 1.515841 -PE-benchmarks/Iterative_QuickSort.cpp___GLOBAL__sub_I_Iterative_QuickSort.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -6.234584 4.885701 30.078517 21.003824 -13.067003 -15.959797 -6.577272 -12.719693 9.984235 3.845064 16.337151 -0.906406 5.203315 5.360578 -0.051523 -9.361488 5.990225 -0.539260 -4.238216 -5.826924 -7.026242 15.221440 14.994173 -24.485561 2.315232 -20.715186 13.467221 9.009745 5.721068 15.377892 -0.496744 1.499834 -0.674747 10.314491 -14.753383 -6.293911 -2.524381 3.077482 -6.088784 -5.714766 11.012546 5.933096 12.706373 1.332359 9.504062 7.134025 11.139591 -3.526813 -16.290824 -4.049265 -10.232791 16.507098 -7.994718 9.758299 1.947298 13.194009 4.026362 -16.892072 -3.387953 -27.227852 6.393212 7.820146 -8.829786 -1.962132 -14.734254 2.465286 -2.981786 -10.525662 8.681781 -7.293075 9.310924 -0.577361 3.560289 -13.551987 -11.867781 8.132217 -0.668701 6.087441 6.035745 2.589178 -7.698322 2.615838 -7.493411 -9.016218 1.111716 -2.400095 0.152231 1.333691 2.938209 -8.920934 3.307920 -1.600155 -9.293478 13.871808 -12.403684 14.293267 -1.595726 -4.080886 -9.406454 -7.023480 -3.072289 -14.340607 4.757205 16.577792 -9.133497 4.977159 -0.600052 5.664056 0.272427 -17.214447 2.047953 -3.889979 -2.247535 10.396016 -11.691726 -5.482009 3.408950 1.005362 0.991200 15.413630 -6.260416 7.006819 13.303261 9.849867 4.530251 -10.847962 6.989928 3.795098 8.631877 8.698125 10.940560 -13.246338 -6.765156 -0.888717 -0.489246 -24.855096 3.298596 10.754175 13.760916 6.816517 -25.506795 7.173900 -6.653533 16.961035 10.366513 15.119202 5.392463 -1.274985 -9.185257 4.448358 28.307158 -10.217602 12.178390 -6.859024 -19.257304 21.059639 -6.596066 14.683752 -1.038134 4.085944 9.229818 -16.109777 -0.942390 20.163464 6.267947 2.928340 14.152949 -1.805150 0.222451 -26.542148 -20.972429 -3.552436 6.300157 4.874518 32.198882 -14.350049 -7.813903 -6.834979 16.483069 -7.241109 -5.550676 -0.950465 -3.298809 4.783102 -36.997987 -25.049436 22.204446 21.252258 -0.206111 0.616178 18.623586 2.107167 2.021839 -10.498511 -11.876940 8.694853 4.996198 10.056756 2.925415 -1.790392 -18.328854 -0.890104 2.764768 2.261601 12.872874 -16.668646 -10.196121 -1.733674 -20.754355 -12.897738 4.298921 -19.795787 -8.283523 -0.208515 2.623789 -0.305655 3.362711 -1.238327 -11.227512 3.081636 -10.140856 -5.610225 3.413390 12.294041 3.866287 21.644386 18.603042 0.836697 8.185649 6.687431 -9.067333 46.336675 -14.970899 -5.234891 -0.888051 14.507125 -1.307038 6.873099 6.792838 -4.792547 -7.348908 -15.037564 11.767759 -4.203910 5.435501 -30.259819 -12.743341 -17.272410 -5.892168 4.941657 16.701326 -0.198036 33.332580 -2.064650 1.153991 -35.587543 -0.496582 15.980555 -0.266739 11.137453 11.997329 -15.406502 -26.826677 -2.371426 -4.325314 16.397618 -3.100640 -17.397971 -9.415701 -5.166960 3.838492 -8.394135 10.232772 20.603220 -5.546905 10.261020 4.451867 -4.537176 -2.696413 -7.073092 5.979330 7.910613 -10.398724 21.681834 -4.060647 33.707361 -5.264028 13.574007 -12.916380 4.796198 -3.045443 -5.186521 -6.240091 18.166274 12.243750 7.100193 2.613445 1.108582 -11.249615 9.582276 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = -1.120217 1.456952 7.263404 4.276876 -3.086906 -4.230152 -1.740548 -4.335660 2.589116 1.138498 4.300769 -0.423312 1.675192 1.188064 0.001494 -1.507004 1.769278 -0.366384 -0.476979 -1.599244 -1.872672 4.363244 3.029367 -4.565234 0.646107 -5.317295 3.150398 1.990442 1.911579 3.758581 0.104959 0.189062 -0.333045 2.398741 -3.112599 -1.060297 -0.334735 0.999208 -1.936491 -0.813501 2.025428 0.902092 3.243093 0.275652 2.490882 1.714343 2.565679 -0.508809 -3.580376 -1.156888 -2.432806 4.054151 -2.004877 2.314941 0.307405 2.233026 0.782727 -3.482224 -0.822964 -5.411176 1.017127 1.237767 -2.194870 -0.195847 -3.632218 0.761875 -1.341365 -2.554599 1.727130 -1.506453 2.420763 0.130509 0.847576 -2.498089 -3.806095 1.938329 0.099716 1.497072 1.560036 0.456023 -1.455962 0.637864 -2.233443 -2.674097 1.007776 0.421384 0.304467 0.158887 -0.126188 -1.905636 0.471986 -0.322058 -1.566421 3.403751 -3.074968 3.175132 -0.856228 -1.165119 -2.490091 -2.902020 -0.606865 -3.464489 1.342211 3.239269 -1.820098 0.919228 -0.297480 1.408051 -0.099330 -4.336881 0.653044 -1.013446 -0.591365 3.309064 -2.682526 -1.324462 0.164795 0.035184 0.075769 3.572325 -0.925796 1.646035 3.395115 2.609240 1.347568 -2.768479 0.983370 1.090126 2.104505 2.027635 2.661210 -3.285137 -1.906829 0.031079 -0.559533 -6.325502 0.199321 2.619495 3.407305 0.895338 -5.151536 1.558970 -1.817328 3.983886 2.851232 3.153583 1.369358 -0.287837 -2.366421 1.414163 6.849263 -2.495078 3.107389 -1.949369 -4.213085 4.979693 -1.694728 3.404842 -0.163292 0.910685 1.519780 -3.718344 -0.163175 4.866316 1.486809 0.914539 2.922745 -0.169416 -0.394971 -6.145668 -5.419571 -0.748319 2.218928 0.991279 7.317871 -3.532347 -2.008755 -1.236275 4.113725 -1.273045 -1.651966 0.212700 -1.199777 1.327279 -8.682287 -6.074382 5.711901 5.539045 0.442721 -0.009299 4.149784 1.076837 -0.667048 -2.868320 -2.909369 2.364982 0.789436 0.559255 -0.132848 -0.163472 -4.513415 -0.206757 0.366432 0.797228 3.077530 -3.102788 -1.491995 -0.511933 -4.801569 -3.046934 1.646302 -4.411164 -2.054321 0.002311 0.508880 -0.076351 1.095680 -0.605332 -2.197549 1.042630 -2.701345 -1.021417 1.019744 2.793485 0.698614 5.626213 4.750874 0.088396 2.144512 1.247541 -2.338247 10.294454 -3.434179 -0.904259 -0.286184 3.153262 -0.559633 1.760538 2.025539 -1.241152 -2.510110 -3.824763 2.270606 -0.758157 1.452036 -5.948945 -3.527105 -4.542459 -1.173565 1.108684 4.615321 0.145046 8.042410 -0.764250 0.713361 -8.455892 0.101869 3.340129 -0.148175 2.999232 2.628044 -3.619400 -5.633789 -0.689223 -1.754497 2.549893 -0.745633 -4.269616 -2.410218 -1.591175 1.240502 -2.095158 2.009395 4.499531 -1.116208 2.872167 1.005767 -1.156748 -1.322284 -1.094479 2.321008 1.472469 -2.600289 4.974159 -0.692101 8.719957 -1.168413 3.157281 -2.848257 0.913071 -0.579243 -1.744702 -1.534164 4.677216 3.303616 1.716849 0.319921 0.072609 -2.163801 2.320708 -PE-benchmarks/cut-vertices.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.584091 0.403055 2.708960 1.320072 -0.856556 -2.514184 -0.592519 -2.854698 1.607741 0.840667 2.467350 0.421936 1.652024 -0.422796 0.460817 0.309509 1.226700 -0.124879 -0.053300 -0.785178 -0.103716 2.849474 1.008876 -1.057119 0.307973 -1.625239 0.754401 1.151260 1.275619 1.709536 0.268750 0.010370 -0.179747 0.886593 -1.175433 0.305319 -0.414934 0.881727 -1.131934 -0.579492 0.353161 -0.216469 1.647952 0.323493 1.694631 -0.017664 1.724263 -0.196936 -1.018848 -0.946840 -1.253913 2.118470 -1.154098 1.156311 -0.677719 -0.011065 0.429904 -0.264627 -0.051869 -2.262009 0.333297 0.274244 -1.499750 -0.351668 -1.239548 0.318491 -0.590269 -1.057340 -0.099472 -0.663453 1.291060 0.009776 -0.117187 -0.793303 -2.954384 0.172665 0.119931 0.356545 1.097540 0.652794 -0.812615 -0.565695 -1.040299 -1.521508 1.848644 0.607600 0.310110 0.795379 -1.595009 -0.296972 -0.470684 0.219811 0.116511 1.188614 -1.681546 1.095005 0.671819 -0.620091 -0.683536 -1.171754 0.321599 -1.459987 0.284971 0.453334 0.510624 0.054625 -1.219494 0.410637 -1.083570 -1.817977 0.648700 -0.596260 -1.146021 1.464977 -1.215132 -0.268071 -0.191847 0.199311 0.237334 1.476246 0.454703 0.687122 1.343985 1.125300 0.884755 -1.585439 -0.009682 0.836550 1.502262 1.069145 0.406945 -0.822156 -1.052588 0.534096 -1.091995 -3.081343 -0.543950 2.158111 1.709479 0.177656 -1.616633 0.791861 -0.758764 1.534305 1.955584 0.836312 0.673594 0.390486 -1.434785 0.650211 2.896861 -1.129833 1.613563 -0.250606 -1.072455 2.261368 -1.304172 1.201325 0.153420 -0.100435 0.126869 -1.020513 -0.185042 2.212943 0.913464 0.922831 0.085910 0.398860 -0.627707 -2.411146 -3.216643 -0.962915 1.918899 1.054309 2.767622 -1.286167 -0.946605 0.012898 1.256720 -0.780537 -1.343886 0.460350 -1.071279 1.027439 -4.173916 -2.357234 3.430045 2.649440 1.213444 0.076763 1.627544 1.189727 -0.730773 -1.166180 -0.869709 1.115769 0.309337 -1.418024 -0.252837 0.061349 -2.383523 -0.530013 -0.271665 0.186609 -0.226623 -0.300177 0.994030 -0.342582 -1.349075 -0.555394 0.526362 -1.441659 -0.881140 -0.488888 0.011704 0.055324 0.454705 -0.634447 -0.158126 0.760027 -1.743468 -0.344371 0.112340 0.978417 0.937869 2.677484 2.679919 -0.441599 1.430122 -0.053502 -1.371709 3.161157 -1.320951 -0.099496 -0.142575 1.444428 0.391958 0.940069 1.188306 -0.718801 -1.001953 -2.020580 0.205723 0.979499 1.191032 -1.156703 -1.696030 -2.187916 -0.107474 0.362993 2.672678 -0.655485 3.505963 -1.140719 1.007688 -3.862981 0.387472 0.796188 -0.330765 1.160437 0.791063 -1.381893 -1.872236 -0.580749 -1.174590 -0.348496 0.002772 -1.377724 -0.964577 -1.400549 0.823283 -2.136101 0.485631 0.939400 -0.594635 1.893134 -0.076577 -0.207564 -0.999083 0.534062 1.463624 0.585658 -1.439233 1.533293 -0.022735 4.297350 -0.689489 1.762876 -1.159577 1.152848 -0.816406 -1.383335 -0.801653 2.422688 2.467039 0.516027 0.178384 0.286940 -0.265570 1.251668 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -6.715312 2.945022 25.795367 15.978012 -8.561135 -13.972527 -6.552643 -16.696517 12.116980 5.654818 17.955280 2.113847 7.968892 2.138457 0.838234 -6.134133 5.898087 -2.412928 -2.642294 -5.466806 -1.423403 20.688625 13.535515 -18.530787 1.250540 -18.018182 9.664632 6.574032 7.443125 15.124566 -0.240952 0.952454 -0.992200 8.887454 -12.351443 -1.905115 -3.297225 5.857517 -5.617708 -5.725220 9.178626 5.604720 10.998792 2.099777 12.041230 4.005367 10.631759 -3.718212 -11.097238 -5.931193 -6.984337 13.909765 -9.296122 9.199582 -1.345447 8.409846 1.674810 -9.817389 -2.523958 -24.611989 5.415131 6.974068 -9.582961 -1.941534 -11.667574 2.893682 -2.536737 -7.556563 3.326799 -7.737622 9.909804 -0.664198 1.350404 -11.821095 -15.862569 4.901283 -1.607728 3.727328 6.505612 4.240928 -9.444334 -0.676323 -6.647065 -9.993699 5.128417 2.006910 -0.714678 3.073365 -0.981862 -4.422216 0.442857 0.267620 -5.206961 12.755248 -12.915005 11.398773 1.700284 -3.815247 -4.616521 -4.020005 -0.364658 -13.436071 3.946297 11.215475 -4.399765 2.198563 -2.909330 3.908122 -2.785837 -14.667726 3.206177 -1.827261 -3.946946 10.068687 -9.959061 -3.355741 1.716655 0.739512 1.918423 14.183746 -1.226067 6.083098 11.819845 8.875540 5.460873 -11.744358 3.871234 6.113008 9.312235 7.614512 6.983606 -9.849537 -7.106596 0.948234 -2.404536 -22.784376 0.137832 13.170371 12.820200 2.646912 -19.246504 7.235257 -5.949325 14.426001 13.566661 10.351554 5.238322 0.286209 -10.630206 4.305337 26.590361 -7.713301 10.886456 -4.250876 -15.021562 21.169464 -9.604969 13.071228 -0.217098 3.607989 4.713737 -12.976787 -0.150180 18.282178 5.198986 6.776407 6.824334 0.025978 0.266766 -21.849384 -22.435264 -7.113971 9.070739 8.072011 26.485854 -11.127884 -6.152578 -3.063605 12.301712 -4.656966 -7.555107 0.909574 -4.578182 5.776561 -34.668934 -20.930444 23.343216 22.679544 3.805177 0.566744 16.033992 4.600118 1.243635 -9.277686 -9.420407 9.516283 3.514844 3.886031 2.554946 -0.800043 -16.764085 -4.268137 0.741867 1.667283 5.651686 -10.558878 -4.076247 0.132072 -14.610364 -9.296577 3.762699 -14.501418 -8.012145 -2.345550 1.812280 -1.351912 2.488114 -3.640188 -6.105984 4.373405 -10.490236 -3.308164 3.332738 7.884944 4.537740 17.446361 18.218397 -2.390828 7.405916 3.562784 -7.886896 36.572329 -12.482967 -3.481420 -0.570561 12.160576 1.019638 6.729569 5.048892 -4.620405 -6.199570 -13.593293 8.714017 0.765280 7.308188 -22.408492 -13.921036 -14.111530 -2.493096 3.700304 16.574280 -1.567131 31.742019 -5.232588 5.165727 -33.821443 1.324639 13.341750 -1.028473 9.793028 9.037665 -11.551472 -22.573025 -3.281418 -4.902980 9.027886 -2.271345 -14.735064 -8.429736 -7.811333 5.309674 -11.958021 7.521594 14.282434 -4.845483 12.008534 0.959384 -3.431105 -4.967952 -3.104419 5.396425 6.705262 -10.742333 15.403712 -2.971517 30.705010 -7.312011 14.067498 -10.215365 8.683569 -6.567600 -8.594099 -5.475411 18.007091 15.242781 5.254114 1.192916 -0.021487 -6.924598 7.287262 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -3.573969 3.085871 21.118608 11.420875 -8.277788 -9.530940 -5.112600 -15.286078 9.339480 4.560319 14.093014 0.366735 5.548440 1.859251 0.461914 -2.938491 4.922018 -2.406745 -1.698073 -4.754680 -3.153563 13.566322 10.747565 -12.856617 2.299513 -14.942275 6.460446 3.872372 6.920003 9.663060 0.846226 0.663488 -0.824080 7.092261 -8.560040 -1.726199 -1.295263 3.763907 -6.628068 -3.478541 5.922115 2.731755 8.435615 1.656554 9.855012 2.269410 7.544636 -2.248892 -9.706395 -3.057054 -6.125671 13.889846 -6.822093 7.181656 1.209048 6.004310 -0.157177 -9.538541 -2.958712 -16.289806 2.649850 3.537889 -6.129264 -0.413508 -9.102701 2.897119 -2.939173 -5.663305 3.623409 -4.047514 8.223258 0.505029 2.283957 -6.602820 -11.538937 5.029947 0.513693 3.225392 5.490244 2.410632 -3.984990 0.215420 -5.011185 -8.477083 5.755249 2.551781 -0.402004 0.681687 -0.093307 -4.023490 1.080071 -1.607779 -4.306605 10.550409 -12.326159 8.941499 -0.230151 -4.149393 -5.311548 -6.763886 -1.277984 -11.071827 4.356232 8.349500 -4.309653 3.297453 -0.830169 5.016991 -1.194114 -11.999283 1.723023 -0.884590 -2.426687 10.225430 -7.915458 -3.753997 0.709554 0.935099 -0.395993 9.743376 -1.070284 6.045295 11.410114 8.263468 4.417993 -7.809879 3.251545 4.628925 6.796066 6.640926 6.570775 -9.438340 -5.750317 2.021746 -0.706609 -17.982643 -1.265858 8.462294 10.385370 2.290645 -14.247130 2.648011 -3.786509 11.506869 9.359536 7.352367 3.988592 -0.310489 -6.993046 4.202154 20.650685 -7.002848 8.607139 -4.002127 -10.731795 13.555013 -7.577541 9.943968 -0.490919 2.886826 3.997638 -11.610716 -1.142464 14.408612 4.321727 2.674180 4.523957 0.491272 -1.878781 -17.741581 -16.865866 -4.810765 5.316314 3.224967 19.970209 -8.616565 -6.410596 -3.609645 11.591798 -2.238426 -5.121731 1.587951 -5.031926 4.393898 -23.248274 -16.437695 17.793577 17.984945 3.933055 -0.178078 12.582019 3.795004 -3.559963 -8.691466 -7.510393 7.001385 3.635826 0.186948 -1.337413 -0.527299 -13.573401 -2.640348 0.436593 1.957990 6.831790 -6.521287 -1.573039 1.827783 -12.919783 -5.891289 4.888984 -11.868216 -7.029036 -1.553199 1.840726 0.194249 3.304576 -3.629841 -5.425377 3.256997 -8.569603 -2.777601 3.322566 8.656045 1.899509 14.898315 14.607299 -0.240845 6.624550 2.429478 -7.691953 26.088377 -9.371918 -3.032595 -1.195105 6.304510 -1.553897 4.458440 4.912561 -4.146872 -7.224488 -10.692239 5.928012 -1.590309 5.430688 -15.538118 -11.213211 -11.033336 -3.128768 3.534152 11.862820 0.988509 23.919153 -3.765061 2.434281 -25.871411 0.636329 9.532319 -0.708680 8.808007 7.481334 -9.891307 -17.315799 -2.738416 -5.430314 5.975472 -2.174136 -11.421034 -7.203392 -6.632331 7.981169 -7.377911 5.684309 12.229221 -2.615351 10.241210 1.836783 -3.432440 -4.742780 -1.212492 5.902288 4.304531 -8.388872 13.056725 -2.024750 26.411231 -4.911094 9.347811 -9.070147 2.941937 -3.226532 -4.439591 -4.112714 14.002054 11.890594 5.450246 0.251599 -0.922527 -7.166543 6.203079 -PE-benchmarks/cut-vertices.cpp__main = -1.019365 5.520007 25.785388 9.425731 -9.014708 -17.991367 -6.084264 -26.941585 13.522974 6.890898 19.234199 1.024222 10.645798 0.650139 1.855822 3.035280 9.562113 -1.881159 -0.465075 -7.804083 -3.003996 21.511760 7.198477 -8.141177 3.616621 -19.420505 6.157188 7.939381 12.451320 11.961770 2.949323 -0.065292 -2.179287 8.056793 -9.294396 0.355171 -0.620175 4.797376 -12.807855 -1.937320 2.565606 1.260564 13.243839 2.245625 13.992131 1.074965 11.540363 -0.259067 -8.282459 -5.270748 -9.065362 19.903529 -6.753239 9.395592 -1.468957 1.920617 -0.626842 -7.356038 -1.646779 -12.128693 1.378288 3.125125 -9.985082 -0.735761 -11.152965 3.095793 -6.088335 -8.097983 1.581676 -4.889933 10.466285 -0.362938 -0.316822 -6.642175 -23.318724 3.718064 1.583116 4.182782 8.224921 2.925412 -3.419674 -1.729744 -8.903403 -12.667389 12.271654 9.704769 0.903881 2.851842 -9.526926 -5.169915 -2.481025 -1.042712 -0.117795 11.881151 -16.733759 8.961311 -1.145355 -6.446672 -8.612065 -13.128133 1.288158 -11.976795 5.250840 2.197656 1.039984 2.651835 -3.132394 4.795180 -3.913061 -14.204306 3.302303 -2.171113 -4.396088 17.393587 -8.386801 -5.176066 -3.413824 0.137450 -2.419059 11.832265 2.089421 5.571390 14.597449 10.952070 7.230284 -11.685474 -0.502111 7.079598 8.835464 9.074065 7.001963 -10.706164 -8.306390 3.737991 -5.584523 -25.357731 -3.883277 12.116083 14.113804 -1.099048 -10.616852 2.095361 -6.256221 14.033812 13.482334 5.652614 5.454319 0.584763 -10.620201 6.482101 26.106634 -8.768716 12.177832 -7.187587 -9.098803 15.273475 -9.487167 11.051461 0.335793 0.678561 0.599183 -10.242741 -0.779595 17.956457 5.284171 4.589499 2.429738 2.719168 -5.815811 -19.841765 -25.194641 -6.445977 10.892841 4.536130 22.875966 -10.944484 -9.440186 -3.165843 13.640086 -2.982002 -8.774411 6.143615 -10.305475 7.302909 -27.889564 -19.675704 25.363945 25.692328 8.689773 -1.756034 14.844966 7.866594 -10.445095 -12.155040 -7.543671 9.350181 3.227128 -12.351141 -4.008050 0.648291 -18.361880 -3.023643 -1.844040 3.299818 4.550934 -1.309985 7.457402 -0.889219 -14.531873 -7.901198 8.382882 -11.904163 -7.014908 -2.038730 1.179023 -0.851160 5.885222 -6.840247 -3.989163 7.027933 -12.466443 -0.984736 3.594461 9.051098 3.247992 20.535647 19.650807 -0.541694 14.309668 0.467677 -10.980661 27.376223 -10.378561 -0.400918 -1.208400 6.594283 -2.505519 7.316937 7.599132 -5.778374 -10.818604 -15.083711 3.136675 1.411884 8.811288 -8.995506 -15.559938 -16.951222 -2.708117 2.766666 19.404848 -0.671932 29.076557 -7.697702 7.188456 -32.239476 2.581066 7.638032 -1.592170 11.291930 7.439331 -12.891732 -15.652648 -2.749692 -10.946164 -3.609419 -0.738519 -14.268624 -10.209666 -11.417636 10.693158 -12.846174 3.972274 12.063453 -3.565057 15.256613 -1.266683 -3.272700 -8.289174 2.274073 13.734216 3.360049 -11.485699 12.537859 -0.926519 36.814723 -4.854264 13.430922 -9.123766 4.121361 -3.711284 -10.819298 -6.758512 19.321739 17.565513 6.245058 -1.326598 -1.344771 -4.218550 8.907736 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/cut-vertices.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/cut-vertices.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/cut-vertices.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/cut-vertices.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/cut-vertices.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/cut-vertices.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/cut-vertices.cpp___GLOBAL__sub_I_cut_vertices.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/program-wish-womens-day.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/program-wish-womens-day.cpp__main = -2.940007 5.662807 19.485232 14.348540 -9.891912 -7.649671 -5.404197 -10.103800 5.188116 1.688236 8.323699 -4.886009 2.492958 0.356351 -2.715403 -7.683214 4.251850 -1.131545 -1.495006 -6.048807 -4.885725 8.860678 5.388333 -15.119160 1.189252 -15.925696 10.549682 5.724804 3.914133 8.323499 0.514723 0.219539 -1.733776 6.749519 -9.946056 -4.690338 0.079604 1.835998 -6.293262 -0.989855 5.935439 8.546672 7.496136 -1.463222 3.549820 7.348526 5.559996 -0.080288 -12.599759 -1.130225 -1.846766 9.960413 -2.544027 5.900461 5.353352 5.268281 2.172135 -12.792024 -3.180573 -11.638254 3.330283 4.334956 -4.802519 -0.151453 -10.549408 0.739887 -1.340727 -6.342937 7.183779 -3.034598 2.612979 0.007616 1.387829 -9.871095 -4.995150 7.637431 2.960162 5.045794 3.197305 0.850518 1.321522 1.561448 -5.817995 -6.769350 -0.461223 1.395197 2.278487 0.883687 3.702620 -7.293192 4.846930 -2.631633 -4.881044 7.775501 -6.234855 5.657339 -6.392372 -3.986737 -9.763013 -5.292818 -1.929418 -7.670438 5.014446 10.952943 -9.741931 3.563690 2.864116 3.823434 1.637821 -7.708749 -1.579105 -4.530920 4.960241 12.068575 -6.011224 -6.144269 -2.479076 -1.493666 -1.153443 9.314237 -5.284136 4.366424 10.283006 8.150564 3.977714 -8.480181 2.359990 1.328358 3.711140 5.532809 9.260742 -12.300963 -5.171383 -1.621867 -0.099539 -14.765004 0.612437 -0.397960 8.835416 1.818310 -14.565420 5.804901 -5.294884 12.962809 2.344863 5.489013 3.148453 -2.757122 -6.252851 4.668939 16.861309 -6.553552 6.184972 -8.026624 -13.113518 9.534549 1.736683 8.340327 0.505514 0.339275 4.164964 -9.750367 2.681564 12.645805 2.243220 0.878201 8.391992 0.781633 1.752912 -16.582345 -14.230843 2.562199 0.841873 -0.888909 22.194878 -9.598570 -8.022164 -6.414260 11.501801 -2.924410 -1.564784 -0.034352 -4.771752 3.498134 -14.452669 -16.470878 13.707067 14.498298 -1.421798 -1.289154 11.580086 -1.197340 -2.301748 -7.149448 -6.275772 6.155648 2.833515 4.361128 0.733433 1.140415 -11.324947 -0.800823 3.005285 3.535902 9.677895 -10.446364 -7.346720 -2.487337 -14.294895 -10.612754 5.617779 -10.558955 -1.392970 2.060142 1.394236 0.635927 7.074095 -3.343507 -8.576865 -0.800862 -4.780910 -3.601348 1.371323 9.620489 0.562476 11.215746 9.565817 1.901830 10.011135 4.450622 -6.219452 29.490664 -6.948717 -2.680766 0.204997 6.877326 -1.943485 4.572895 4.642629 -3.976457 -3.197659 -10.844461 6.373520 -3.777103 2.053289 -21.117912 -6.707246 -12.317600 -3.876793 1.147225 7.519770 1.983298 19.531977 -0.452492 -1.032076 -21.061323 -0.068868 8.263283 0.601613 7.092367 7.565915 -10.352159 -16.925378 -0.249573 -5.808133 6.555144 -4.251975 -10.881501 -7.895916 -0.931686 7.186737 -1.116556 6.273122 16.161066 0.446658 2.548388 4.099684 -2.823033 -1.074897 -7.489768 3.726985 4.152802 -6.993962 12.112720 -2.354088 22.155648 -2.043829 7.926767 -8.864199 0.785656 1.117344 -6.815463 -4.959417 12.324798 3.880495 5.481891 1.072184 0.754603 -8.375868 9.098536 -PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.088758 0.389407 0.367174 0.477261 -0.103108 -0.243353 -0.054128 -0.475412 0.053345 0.156126 0.006335 -0.149672 0.443832 -0.194124 -0.083823 -0.274936 -0.037895 0.019813 0.179864 -0.317928 -0.144121 0.470190 -0.057365 -0.204325 -0.031356 -0.378944 0.266025 0.184162 0.324190 0.376310 -0.166191 -0.183549 -0.201024 0.157836 -0.323915 -0.183024 -0.301307 0.163690 -0.338120 0.138617 -0.007024 -0.147127 0.303228 0.326687 -0.133809 0.292889 0.131750 0.109195 -0.135398 0.196959 -0.171977 0.215232 0.008630 0.275632 0.097048 -0.173048 -0.012969 0.006693 -0.035882 -0.265231 0.078970 -0.044505 -0.103421 -0.067166 -0.389308 -0.096351 -0.275246 -0.317099 -0.148152 0.078967 -0.094818 0.268288 0.009409 -0.494600 -0.783246 0.067321 0.055391 0.125408 -0.040651 0.147898 0.041088 -0.081002 -0.471651 -0.521400 0.390747 0.091321 0.017237 0.093118 0.027379 -0.516675 0.277481 0.135655 0.128979 -0.010760 -0.154293 0.386333 -0.408879 -0.101915 -0.164217 -0.296513 -0.071306 -0.065856 0.076038 -0.017107 0.250793 0.004328 0.026210 0.232703 -0.189951 -0.265187 -0.013553 -0.032959 -0.220403 0.445163 -0.090406 -0.226183 -0.064326 -0.177919 0.008034 0.227952 -0.002548 0.103118 -0.093736 0.406739 0.225127 -0.310563 0.136133 0.097947 0.029949 0.260861 0.226549 -0.335464 -0.174202 0.137045 -0.042538 -0.577662 0.020422 0.310688 0.112368 -0.306870 -0.163085 0.224375 -0.284380 0.368389 0.162104 0.002149 0.319195 -0.160767 -0.230754 0.100364 0.672585 -0.441849 0.332102 -0.440305 -0.298924 0.341161 0.107411 0.205529 -0.304635 -0.259840 0.224077 -0.081527 0.149320 0.482263 0.114192 -0.136218 0.073081 0.179491 -0.213514 -0.390386 -0.597767 -0.075054 0.302308 0.044236 0.756505 -0.121405 -0.485797 -0.225715 0.259044 0.035794 0.104891 0.170225 -0.371255 0.161323 -0.399096 -0.488027 0.783027 0.295814 0.216695 -0.343480 0.084964 0.083277 -0.006656 -0.680582 -0.055114 0.124224 -0.012594 -0.273022 -0.210379 0.006842 -0.734392 0.082207 0.185954 -0.007061 -0.041910 -0.107421 0.088093 -0.355955 -0.343026 -0.395620 0.455036 -0.499364 0.202479 0.077971 -0.141934 -0.053783 0.377612 -0.204811 -0.117188 -0.082236 -0.207284 0.093972 -0.199702 0.036854 -0.056455 0.288100 0.487330 0.037151 0.462035 0.136915 -0.317571 0.956319 -0.264649 -0.283349 0.091963 0.125739 -0.029458 0.300665 0.285266 -0.075264 0.077089 -0.494948 0.031330 0.083300 0.031910 -0.372364 -0.084407 -0.482420 0.107004 -0.119808 0.315640 -0.066897 0.586758 -0.162589 0.164032 -0.636885 0.142589 0.070637 -0.081034 0.260935 0.160375 -0.200964 -0.218339 0.113971 -0.356757 0.048683 -0.207364 -0.241289 -0.181652 0.029212 0.141618 -0.053780 0.166814 0.163464 0.013806 0.092888 -0.142122 -0.042171 -0.290898 0.045272 0.330794 0.004935 -0.283778 0.144866 -0.079815 0.723244 0.023824 0.366734 -0.432353 0.047297 0.063572 -0.575331 -0.122206 0.627367 0.058647 0.166926 0.043537 0.323205 -0.103439 0.241599 -PE-benchmarks/program-wish-womens-day.cpp___GLOBAL__sub_I_program_wish_womens_day.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/naive-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.188948 1.982358 8.402403 6.282019 -3.581511 -4.203326 -2.037516 -5.142918 3.374228 1.107138 4.337500 -0.882130 1.322101 1.298383 -0.708586 -2.694391 1.747354 -0.095004 -1.067864 -1.794439 -1.692920 4.838647 3.395890 -6.821363 0.391772 -5.954210 3.716619 2.189319 2.277988 3.677937 -0.000495 -0.014418 -0.112380 3.246845 -4.532137 -1.940143 -0.128605 1.223825 -2.648911 -1.864045 2.458402 2.766357 3.883436 -0.003218 2.714813 2.127447 2.753472 -0.792795 -4.347911 -0.658477 -1.625398 4.606247 -2.013289 3.099875 1.079703 2.731384 0.855662 -4.812133 -0.677759 -5.929161 1.452804 2.471449 -2.266731 -0.460907 -4.424304 0.407325 -0.391021 -3.179844 2.456798 -2.061253 2.608816 0.027610 0.828096 -4.139044 -3.692087 2.695480 0.388514 1.665330 1.840832 0.923848 -0.761389 0.512333 -2.315994 -2.787816 0.519733 0.562364 0.395003 0.914530 0.883275 -2.636356 1.542958 -0.835434 -1.885466 4.142703 -2.574559 3.553505 -1.423905 -1.372834 -2.933875 -2.553450 -0.704427 -3.933362 2.080962 3.772841 -2.697711 1.961665 1.309430 1.730801 0.808890 -4.701951 0.508153 -1.218460 0.808561 4.040613 -2.709943 -2.341568 0.317702 -0.113146 -0.571683 4.091767 -1.258068 1.587417 3.971943 2.830093 1.826481 -3.720196 1.268187 1.002237 1.706130 2.747698 3.354201 -4.035309 -1.901726 -0.253054 -0.039233 -7.268795 0.383850 2.020286 4.002096 0.792043 -6.392168 1.901728 -1.974313 4.763798 2.488598 3.436789 1.744995 -0.335099 -2.351559 1.188253 7.332020 -2.408603 2.936044 -2.570674 -5.022156 4.870957 -1.118827 4.216669 -0.595875 0.885055 2.305481 -4.589787 0.733642 5.717530 1.061032 0.678302 3.122888 -0.345182 -0.410538 -7.453297 -6.124533 -0.313166 1.855278 0.922030 8.717653 -4.017995 -2.946398 -1.565101 4.314978 -1.560446 -1.037710 0.420780 -1.743765 1.831880 -9.298521 -7.220398 5.961282 6.243754 0.343773 -0.560520 4.802716 -0.195724 0.061254 -3.281940 -3.225545 2.517099 1.477790 1.730479 0.306076 -0.412052 -4.704609 -0.466076 1.077419 0.932601 3.808131 -4.231581 -2.353057 -1.193253 -5.712571 -4.072323 1.919978 -4.906023 -1.407080 0.171131 0.874909 -0.163738 1.757930 -0.900916 -3.497948 0.838766 -2.333588 -1.269949 0.875800 3.393647 0.194724 5.501307 5.057212 0.022888 3.551892 1.955451 -2.675690 12.752549 -4.042106 -0.931425 -0.152900 3.707408 -0.836257 2.164240 2.278553 -1.686111 -2.073326 -4.204792 2.552855 -1.042056 1.643391 -8.277539 -3.653947 -4.731982 -1.698707 0.658675 4.029228 0.343043 9.011420 -0.965668 0.844575 -9.827600 -0.082888 4.387264 -0.000468 3.415350 3.359122 -4.575246 -7.189035 -0.527698 -2.106958 3.043591 -1.150038 -5.235719 -2.803543 -1.412453 1.716621 -1.701673 2.575600 6.145110 -1.287378 2.388383 0.018443 -1.012762 -0.582010 -2.694338 2.071179 1.503910 -3.312491 5.183342 -0.973839 9.785031 -1.425887 3.780207 -3.794879 1.041497 -0.790351 -2.248968 -2.176048 5.467341 3.011828 1.828437 0.170818 -0.240741 -3.163472 2.817434 -PE-benchmarks/naive-algorithm.cpp__main = -0.375317 0.742373 3.052181 0.632566 -1.203115 -1.995898 -0.885260 -3.423367 1.307471 0.943612 2.424920 -0.463416 1.171732 0.317321 0.071842 -0.018818 1.076458 -0.771103 0.373952 -0.929981 -0.621765 2.068240 0.456143 -0.217356 0.357568 -2.538262 1.181511 0.524055 1.022239 1.410432 0.464178 -0.192609 -0.629404 0.888465 -0.579304 0.385671 0.708237 0.673291 -1.058454 0.118641 0.113943 0.019232 1.467070 -0.010771 1.653376 0.665772 0.608624 0.172218 -1.231223 -0.824877 -0.395683 1.524216 -0.989092 0.847897 0.388956 -0.136796 -0.075712 -1.051328 -0.290865 -1.047456 -0.009111 -0.302268 -0.873684 0.313354 -1.343414 0.437241 -0.955202 -0.861340 0.338602 -0.860616 1.067396 0.100293 0.247923 0.179774 -2.227422 0.698161 0.426906 0.363034 0.781376 -0.105152 -0.202344 0.081444 -1.264430 -1.602860 1.072535 1.547712 0.400027 -0.003166 -1.121072 -0.072678 0.019305 -0.237283 0.172077 1.562197 -1.395096 0.552767 -0.557696 -0.889601 -1.357883 -2.349514 0.170282 -1.378897 0.906934 0.620824 -0.672314 -0.033945 -0.506509 0.647853 -0.380042 -1.738946 0.552327 -0.689108 0.321459 2.105644 -1.178934 -0.626021 -1.040972 -0.392261 0.204058 1.197608 0.252117 0.466377 1.619549 1.307806 1.024035 -1.516560 -0.594981 0.723769 0.982307 0.740222 0.873104 -1.623054 -0.842221 0.420390 -1.052749 -2.860828 -0.802635 0.614335 1.596381 -0.364430 -1.081313 0.327105 -0.999799 1.512262 1.563321 0.864709 0.460673 0.144719 -1.225647 0.652751 2.387790 -0.930536 1.434557 -0.910382 -1.004801 1.338717 -0.706524 1.219029 0.330845 0.310706 -0.237715 -1.335047 -0.043278 1.911315 0.720744 0.899141 0.083868 0.439317 -0.627887 -2.129840 -2.802788 -0.203788 1.771312 0.224960 2.212366 -1.690658 -1.091011 -0.124449 2.119822 0.077115 -1.217994 0.633082 -0.897697 0.792123 -2.788165 -2.359894 2.545301 2.981343 1.011222 -0.275401 1.286453 0.711663 -1.822534 -1.204571 -1.175382 1.275952 -0.334300 -1.805431 -0.748008 0.199874 -1.872612 -0.269861 -0.324129 0.682334 1.117634 -0.260473 0.648336 0.106628 -1.326880 -1.019619 1.252510 -1.047012 -0.997195 -0.123963 0.171907 0.224296 0.756382 -0.819756 -0.377313 0.888989 -1.459394 -0.019655 0.921192 0.925935 0.061376 2.845387 1.832586 -0.213691 1.044114 -0.199735 -1.004319 2.822070 -1.059489 0.112824 -0.134034 0.759262 -0.246136 0.727075 1.333238 -0.724675 -1.720434 -1.637453 -0.002037 -0.101520 1.042876 -0.830984 -2.163989 -2.395741 -0.032307 0.218327 2.368813 0.272260 3.234831 -0.332579 0.908458 -3.109164 0.182861 0.871514 -0.258768 1.244459 0.656700 -1.392004 -1.499482 -0.276190 -1.766269 -0.894932 -0.116143 -1.410122 -1.108321 -1.191964 1.288859 -0.665565 0.140239 1.073119 -0.005251 1.485316 0.556860 -0.449439 -1.078071 0.127190 1.788227 0.015996 -1.279272 1.770517 0.226002 4.181785 -0.449069 1.088798 -0.696903 0.334628 -0.182688 -1.172202 -0.715914 2.142516 1.875080 0.829099 -0.563195 -0.304381 -0.466593 0.981758 -PE-benchmarks/naive-algorithm.cpp___GLOBAL__sub_I_naive_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/kmp-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -2.224802 2.834399 14.837152 12.702691 -7.478239 -9.812788 -3.348205 -7.687107 5.051077 2.160624 7.446412 -0.746779 2.377817 3.330075 -0.564951 -3.809961 3.205489 1.994813 -1.440603 -2.970542 -5.570638 8.999189 7.770487 -12.264604 0.743740 -8.294988 7.328493 5.531763 3.479527 7.656493 0.094280 0.357408 -0.209431 5.253132 -8.419013 -2.709359 -3.054546 2.456590 -3.930736 -2.294471 4.533285 1.250475 7.476277 0.321893 4.896049 3.732082 7.227466 -1.450717 -8.695439 -1.457254 -5.213743 7.599584 -3.749538 5.252851 0.207521 5.463720 2.368113 -7.100864 -1.326065 -12.730444 2.821947 2.957546 -5.783278 -0.895041 -8.514216 0.704956 -2.556174 -7.316576 3.545759 -2.307683 4.715771 -0.272336 0.654904 -8.001992 -8.220974 3.581917 0.031271 2.777590 3.040595 2.798952 -3.126476 0.857525 -5.027971 -4.668694 1.060835 -1.228235 0.133162 1.086556 0.437606 -5.638617 1.749288 -0.414553 -3.435182 7.199445 -4.949239 8.808147 -1.275675 -2.013595 -5.644684 -5.698087 -0.934491 -6.803312 3.260352 6.066713 -3.781374 2.809206 0.573238 2.955263 0.358806 -9.700141 0.492687 -2.924603 -0.037065 5.867058 -4.492024 -3.245695 1.571437 -0.006384 -0.323123 7.597070 -1.797204 2.527431 6.570029 4.506585 2.660782 -6.038405 2.512010 1.448599 3.260365 4.903740 5.230339 -5.809374 -3.546615 -0.469496 -0.672456 -13.115858 1.531553 6.309446 6.036104 1.255634 -10.189523 2.844475 -3.533803 8.081071 4.990318 8.226583 2.999550 -0.654529 -4.110471 1.776491 15.005965 -4.234756 5.367596 -3.723022 -10.818504 11.903427 -2.862753 7.651506 -0.665375 1.443110 3.654290 -7.265455 0.314332 10.268298 2.233663 -0.244868 7.939513 -0.743557 -1.892432 -13.069989 -11.023371 -0.358872 4.831486 4.194332 17.528208 -7.610150 -4.130055 -2.340965 6.462626 -2.128290 -2.294969 0.268194 -2.070550 2.892313 -21.080355 -13.605095 10.657743 8.647261 0.985843 -0.684900 8.715569 0.272271 0.968080 -7.283281 -6.473939 4.288282 1.940756 4.266567 0.822055 -0.551012 -9.688222 1.225699 1.185146 1.337252 7.175321 -8.819833 -4.555323 -3.929645 -10.559588 -7.477634 2.372419 -9.555081 -3.184513 0.082189 1.232167 -0.307744 1.503241 0.132446 -5.247909 -0.027106 -4.590252 -1.827572 1.210091 5.170600 0.907217 11.878757 10.964778 -0.145299 4.857135 2.965758 -4.325756 25.916902 -8.109912 -1.516353 -0.081423 8.200336 -1.548081 3.083210 4.974153 -2.441515 -3.987651 -6.757503 5.049339 -0.954633 2.838978 -16.511593 -5.868940 -9.716557 -2.333655 1.364415 9.083974 -0.074256 15.923925 -1.668220 2.369881 -17.920261 0.280091 6.892722 -0.169441 7.306171 5.475563 -8.955706 -11.647591 -1.122968 -2.602863 8.586428 -1.508285 -8.513194 -4.944744 -0.325559 -1.603640 -3.737451 4.389966 10.548553 -4.994128 4.453188 0.540436 -1.794568 -0.701411 -3.715620 4.993682 3.008168 -5.817596 10.185049 -1.662981 18.665441 -0.650766 7.131606 -5.723774 2.169122 -1.533150 -3.123712 -3.538853 9.333664 5.834290 3.534260 0.937885 1.794146 -4.414827 3.692416 -PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -0.999000 1.650010 6.669897 6.249437 -4.614208 -5.576644 -1.477207 -3.042722 1.595540 0.500132 3.304656 -0.388452 0.859496 2.036531 0.089719 -1.849189 1.403928 1.746251 -1.115755 -1.559501 -3.996717 3.235895 3.559033 -6.178406 0.701579 -2.803716 3.695811 3.203571 0.713429 3.587358 0.083276 0.175359 -0.872757 2.326813 -3.817520 -1.404026 -1.762604 0.865851 -1.493107 -0.689159 2.509378 -0.400407 3.516331 0.145190 1.843960 2.374060 3.686437 -0.199551 -4.684400 -0.745384 -2.820179 3.533943 -1.648628 2.582001 0.018601 2.799700 1.337913 -3.349548 -0.364796 -6.295548 1.479609 0.435621 -3.016002 -0.528275 -4.113668 0.090978 -1.522582 -3.883010 2.024088 -1.016756 2.010183 -1.001659 -0.463510 -3.776751 -3.257940 0.838198 -0.003645 1.649449 1.469428 1.189717 -1.313931 0.408543 -2.701955 -1.857058 -0.183429 -1.745208 0.424023 0.261586 -0.279901 -2.567758 1.285005 -0.117739 -1.291624 3.037345 -2.478575 4.021905 -0.980162 -0.841042 -3.497756 -3.206746 0.022182 -2.574631 1.657873 2.634945 -2.342040 0.833904 0.150926 1.201968 0.282097 -5.031657 -0.254299 -1.582689 0.199781 2.300712 -1.942922 -1.576629 1.308672 -0.498261 -0.069230 3.656198 -0.322053 0.722835 2.868159 2.160303 1.111277 -2.564422 0.739425 -0.006496 1.387622 2.478930 2.460803 -2.479465 -1.619629 -0.006455 -0.898066 -5.861337 1.298914 3.129841 2.994600 1.390891 -4.798048 1.324061 -2.026464 3.259349 1.663402 4.691372 1.174480 -0.628758 -1.998721 0.480199 6.951079 -2.017279 2.688150 -1.105356 -5.183072 5.668305 -0.681499 2.892285 0.380290 0.283426 1.704284 -2.772474 -0.568465 4.603430 1.478069 -0.523597 4.702002 -0.243709 -1.902515 -6.364777 -4.848646 0.445534 2.755361 1.931167 7.958778 -4.014806 -1.598846 -1.028418 3.574551 -1.768686 -1.341837 -0.147887 -0.440375 1.374055 -9.511198 -6.025824 4.637295 3.241945 0.002333 -0.395890 4.061024 0.074041 0.173011 -3.258896 -3.592428 1.656090 0.742998 2.784799 0.509981 -0.539588 -4.736862 1.334885 0.828793 0.967618 3.298449 -4.184088 -2.347767 -1.806830 -4.941172 -3.721080 0.682829 -4.613419 -0.899251 0.499968 0.304941 -0.138861 0.291520 0.340935 -2.824545 -0.457622 -2.188224 -0.544547 0.514621 2.252263 0.728513 6.781683 4.583648 -0.226433 2.102957 1.337897 -2.062121 12.932453 -3.605138 -0.129243 0.000639 4.635311 -0.628822 1.179947 2.761087 -1.078637 -2.160654 -3.121401 1.568859 -0.502002 1.365762 -8.209020 -2.307727 -5.392386 -1.120057 0.563825 4.408093 -0.557535 7.178599 -0.302963 1.102032 -8.446218 0.140127 3.107836 -0.611695 2.960783 2.256313 -3.945041 -5.567165 -0.318695 -1.051103 4.462499 -0.461250 -3.150882 -2.196801 0.413678 -1.934877 -1.349534 1.722859 4.900458 -2.641859 1.654276 0.415202 -0.790196 0.537815 -2.043359 2.955516 1.274104 -2.922036 5.464867 -0.195990 8.975245 0.791204 3.275090 -2.103068 0.447515 -0.297255 -1.231331 -1.793677 3.821290 2.661972 1.887478 0.597571 1.724621 -1.878677 1.414246 -PE-benchmarks/kmp-algorithm.cpp__main = -0.582487 0.912781 4.339131 1.916700 -1.982460 -3.117790 -1.147398 -3.932205 1.642841 1.154309 3.046702 -0.436346 1.382875 0.723659 0.100569 -0.241932 1.368085 -0.353140 0.299404 -1.165202 -1.397308 2.900349 1.331062 -1.306004 0.427962 -3.006417 1.903886 1.192544 1.262547 2.206143 0.483133 -0.118244 -0.648814 1.289723 -1.356679 0.231827 0.123049 0.919844 -1.314819 0.032556 0.528919 -0.283945 2.185638 0.054251 2.089623 0.986698 1.503423 0.040633 -2.100729 -0.984633 -1.113352 2.122883 -1.336342 1.278492 0.214520 0.409672 0.226779 -1.509074 -0.420526 -2.407713 0.264717 -0.205049 -1.576994 0.226527 -2.161397 0.496767 -1.388233 -1.688686 0.556395 -0.909902 1.488787 0.040304 0.213285 -0.592816 -3.133200 0.875448 0.355457 0.585486 1.021329 0.269869 -0.675362 0.150483 -1.806825 -1.979036 1.180755 1.189592 0.347659 0.031240 -1.210206 -0.673131 0.060571 -0.153107 -0.137866 2.173546 -1.870032 1.603696 -0.528050 -1.017753 -1.900045 -2.978441 0.124269 -1.952887 1.142812 1.079599 -0.889046 0.135563 -0.653747 0.892746 -0.470059 -2.738584 0.549234 -1.030337 0.152334 2.470933 -1.535351 -0.806846 -0.790225 -0.370908 0.253770 1.898669 0.144289 0.654380 2.139167 1.643104 1.190895 -1.980202 -0.346216 0.813042 1.293154 1.171430 1.248331 -1.977867 -1.171199 0.377101 -1.179393 -4.030241 -0.573095 1.472166 2.003183 -0.271711 -1.840784 0.515654 -1.311697 2.175717 2.063665 1.822668 0.711584 0.080833 -1.577430 0.770398 3.922579 -1.295767 1.920867 -1.140852 -2.164071 2.745211 -1.055309 1.905996 0.316945 0.422317 0.032047 -1.870181 -0.127140 2.821469 0.955270 0.714507 1.047193 0.359642 -0.924266 -3.253178 -3.782556 -0.212929 2.366553 0.879420 3.974477 -2.409089 -1.327742 -0.279622 2.549351 -0.036454 -1.469446 0.602565 -0.963054 1.004210 -5.144531 -3.636833 3.484593 3.462044 1.139636 -0.300277 2.069024 0.805262 -1.641169 -2.004840 -1.825060 1.630189 -0.241707 -1.298214 -0.644813 0.172082 -2.869335 0.068494 -0.302583 0.763265 1.791072 -1.178123 0.207883 -0.440650 -2.296283 -1.700681 1.342999 -1.976823 -1.352681 -0.141751 0.243359 0.195495 0.705444 -0.613084 -0.727305 0.715815 -1.910727 -0.131179 0.988050 1.281325 0.203875 4.120877 3.014099 -0.247329 1.305163 0.002327 -1.334332 5.454941 -1.873051 -0.004162 -0.119739 1.657847 -0.388501 0.910869 1.872358 -0.875756 -2.103299 -2.147995 0.497260 -0.084036 1.281993 -2.477795 -2.606988 -3.392656 -0.159297 0.359475 3.379762 0.188800 4.617332 -0.473089 1.213519 -4.727696 0.255457 1.372606 -0.292563 2.022623 1.079988 -2.268096 -2.391193 -0.395244 -1.865450 0.213635 -0.187792 -2.065617 -1.536562 -0.974585 0.624807 -1.072721 0.503112 1.953808 -0.746601 1.898277 0.661259 -0.605800 -1.101952 -0.077066 2.372728 0.316848 -1.780293 2.770859 0.088174 5.957867 -0.294045 1.759078 -1.082682 0.560153 -0.331248 -1.347151 -0.988475 2.915780 2.439573 1.170263 -0.409782 0.102597 -0.716864 1.156755 -PE-benchmarks/kmp-algorithm.cpp___GLOBAL__sub_I_kmp_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/matrix-chain-multiplication.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -3.747591 3.998586 21.262422 13.809829 -5.837898 -9.420438 -4.154899 -7.759614 5.168432 3.253495 10.418629 -1.798994 3.423850 4.348718 0.244933 -5.921565 3.145708 0.049911 -0.315391 -3.192995 -2.678543 10.537259 11.660932 -15.836070 0.190864 -14.423914 9.670384 5.650303 5.319811 10.171676 -0.041950 1.470614 0.811887 7.294038 -11.206507 -4.487176 -3.959563 3.847217 -3.255414 -1.425749 6.018585 8.343088 4.680034 0.767985 5.555350 7.292202 8.893237 -2.565006 -9.046459 -2.749328 -5.561616 11.295985 -6.001100 4.826904 0.418222 8.436823 1.073696 -10.543870 -2.421366 -18.297251 5.531849 8.298127 -7.587440 0.431482 -11.697490 1.968863 -4.121368 -6.209647 5.205866 -0.979256 6.097970 0.168518 1.823415 -10.653448 -7.413273 6.248348 -1.970675 3.900105 3.975983 -0.769854 -6.439473 3.907473 -3.665604 -6.808686 0.441216 -0.992325 -0.112773 -0.838260 5.323977 -6.344352 0.233720 -0.521888 -7.187641 10.042841 -7.178301 10.924310 -2.361873 -1.523891 -5.109014 -1.798594 -2.664194 -11.142041 3.347019 11.685733 -4.459388 2.236025 -2.245770 3.027136 0.739695 -11.670955 -0.600764 -2.470425 0.313512 7.372735 -8.150535 -1.503174 1.510883 1.263971 1.504721 11.135872 -2.689902 4.702591 9.723940 6.129928 1.069189 -6.920053 4.721436 2.543177 4.143288 6.359836 7.791756 -9.786780 -5.846224 -3.393367 1.994182 -15.241963 4.289418 7.189398 5.098171 3.009685 -16.176496 5.147505 -4.031899 11.013838 7.895867 10.015863 3.891306 -1.366948 -3.695189 3.293937 19.928200 -6.992286 6.467205 -3.697172 -14.561551 15.671904 -5.370311 10.545188 0.545014 3.815040 5.901403 -11.104148 -0.840653 13.720208 4.013307 3.792838 13.106262 -2.218448 4.888741 -15.868304 -11.437786 -1.188234 2.142525 1.619363 20.816625 -7.620451 -3.215232 -2.900457 8.976540 -2.131218 -2.607483 -2.680003 -0.638077 1.994541 -23.511383 -15.958485 11.256341 12.097763 -1.642753 -1.504648 11.832703 3.370869 2.215840 -6.864352 -7.825868 7.334071 -0.249951 9.124624 3.163956 0.262470 -12.110911 0.048241 1.291602 1.508669 8.760991 -11.631833 -11.092848 -1.391737 -15.707737 -8.624376 1.731409 -11.826422 -5.024713 -1.752467 1.655795 -0.500408 0.799126 -2.783468 -6.353665 2.880797 -6.774932 -4.458268 2.980349 7.667569 2.887493 13.775487 9.439733 1.813892 3.512530 5.456879 -4.801927 30.922400 -6.408785 -3.983853 -0.361917 10.192234 -2.237313 4.479208 2.131232 -2.568104 -7.271185 -10.003121 9.105464 -1.506207 2.471358 -18.200730 -6.221337 -9.197825 -4.510443 4.558597 11.731942 0.738049 22.246044 -0.637331 1.407979 -20.566758 0.285748 8.963789 -1.442947 9.087741 8.671935 -10.057687 -15.273851 -3.036818 -0.732140 12.461016 -2.016514 -12.378848 -6.978800 -1.184952 1.334908 -4.671646 7.048870 13.143027 -2.547509 4.802132 4.759471 -2.725989 -0.871391 -4.716579 3.732689 6.267212 -8.772281 13.168686 -4.394074 21.133987 -5.324921 9.694692 -9.260010 1.246776 -1.491966 -1.692637 -3.506732 12.620201 7.710307 4.628705 2.121160 0.696184 -6.527396 5.356887 -PE-benchmarks/matrix-chain-multiplication.cpp__main = -0.422670 1.272305 5.709825 2.811602 -1.653005 -3.053530 -1.288107 -4.003909 1.979679 1.144126 3.300328 -0.595829 1.474268 0.787477 0.000191 -0.547655 1.254375 -0.316355 0.391869 -1.097652 -0.911102 3.935758 2.166872 -2.613809 0.210241 -4.461352 2.325764 1.336978 2.276087 2.707265 0.289535 0.083163 -0.034721 1.778647 -2.410421 -0.559528 -0.582809 1.187105 -1.736446 -0.042810 0.846702 1.269609 1.732381 0.055102 1.951369 1.360177 2.370386 -0.330361 -1.983549 -0.896177 -1.701306 3.438996 -1.585760 1.379131 0.056425 1.035877 0.020723 -2.158097 -0.691119 -3.300272 0.710698 1.314647 -2.052148 0.299111 -3.090817 0.733028 -1.669102 -1.647574 1.005994 -0.267177 1.907324 0.380480 0.610287 -1.917851 -3.486434 1.611977 -0.157821 1.043595 1.196700 -0.051883 -0.985928 0.831041 -1.558862 -2.357152 1.235582 1.185257 0.154179 -0.333811 0.053874 -1.359241 -0.316470 -0.169891 -1.024679 2.692384 -2.418857 2.504589 -1.226885 -0.695411 -1.629346 -2.155067 -0.498403 -2.970179 1.126227 2.037685 -0.698048 0.493431 -0.382602 0.893434 0.002422 -3.369093 0.129616 -0.670313 -0.033825 3.149420 -2.021416 -0.602527 -0.397955 0.143234 -0.108225 2.671127 -0.128040 1.319295 2.901465 1.952351 0.906371 -2.131801 0.383091 1.194750 1.302083 1.657022 1.958609 -2.729117 -1.721336 -0.422995 0.015150 -4.785362 0.195451 2.042858 1.804194 -0.002532 -3.054453 0.922455 -1.214197 3.035751 2.502455 1.867987 1.138306 -0.153276 -1.335797 1.295687 5.499612 -1.829453 1.995969 -1.577369 -3.168052 3.902404 -1.606260 2.694355 0.085240 1.005607 0.803811 -2.878722 -0.107430 3.696097 0.920062 1.108000 2.486418 -0.119185 0.350933 -4.226954 -3.848491 -0.365165 1.487459 0.314162 5.177426 -2.249274 -1.326396 -0.394785 2.710430 -0.157008 -1.115443 0.146241 -1.072627 0.913361 -6.043749 -4.485930 3.831553 4.104976 0.311609 -0.486836 2.987794 1.514220 -1.126552 -2.293105 -2.148386 2.193472 -0.106299 -0.312093 -0.240973 0.267860 -3.465566 -0.169020 0.043072 0.633739 2.228967 -1.759227 -1.207568 -0.464952 -3.850823 -2.236696 1.570257 -2.831383 -1.441114 -0.431239 0.408538 -0.161265 0.847833 -1.165861 -1.091655 1.202110 -2.108900 -0.681360 1.017258 1.800816 0.381922 4.198429 3.250210 0.326742 1.648844 0.903644 -1.604927 7.231142 -1.748564 -0.707697 -0.219710 2.033837 -0.882263 1.410500 1.090592 -0.922354 -2.702763 -2.952900 1.656954 -0.291663 0.980167 -3.221817 -2.492016 -3.029271 -0.995738 1.034130 3.680935 0.505455 6.078640 -0.774544 0.888472 -5.879769 0.297737 1.978800 -0.336326 2.842687 1.926574 -2.621305 -3.249685 -0.846249 -1.150648 1.331632 -0.595625 -3.596052 -2.069624 -1.238866 1.160158 -1.559456 1.347006 3.056187 -0.438781 2.076514 0.795917 -0.775614 -1.200976 -0.382928 1.987120 1.140846 -2.411018 3.269909 -0.815899 6.729817 -1.330062 2.405536 -2.215450 0.327577 -0.430949 -1.358236 -0.970384 3.757441 2.596566 1.274333 -0.021798 -0.175208 -1.337319 1.564954 -PE-benchmarks/matrix-chain-multiplication.cpp___GLOBAL__sub_I_matrix_chain_multiplication.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/snake-ladder.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -2.988752 3.959379 16.576847 7.965755 -7.325056 -10.253625 -4.799293 -12.614090 6.129215 3.869009 10.489094 -2.369110 3.407053 2.169053 -0.660857 -2.492523 4.692657 -2.368881 -1.419060 -5.057666 -5.145155 8.644759 4.689414 -7.603880 2.406560 -13.247937 7.895281 3.207760 3.067473 7.439698 2.226658 -0.073182 -1.550036 6.378423 -4.977236 1.499907 1.972812 2.585900 -3.950366 -0.312541 4.626572 3.705325 7.641481 0.943449 7.700260 6.787317 4.053598 -0.652644 -9.523032 -3.295951 -3.807525 8.632254 -5.228622 5.610357 1.456614 4.680371 1.643584 -9.378484 -1.311823 -9.419899 0.913904 2.331703 -5.065961 0.301832 -8.464045 1.314587 -2.422436 -4.705618 3.207514 -4.274643 5.549347 -0.754251 0.256038 -2.643262 -6.903574 4.633079 1.702028 3.237215 4.955194 -0.736229 -2.128431 0.307569 -5.224029 -7.219746 3.209358 2.347030 2.076404 1.238324 -0.190516 -4.203163 0.924339 -1.634769 -1.642023 9.091126 -6.841083 4.176838 -1.962276 -4.204593 -7.242522 -7.868694 -0.304252 -7.277485 3.992153 7.384671 -5.634832 1.483001 -0.786573 3.308211 -0.259589 -7.741481 1.968176 -3.309240 1.838750 8.604942 -5.497783 -4.964666 -1.813616 -1.545454 0.747093 8.274218 -0.285163 2.034466 9.508227 6.311438 6.055053 -7.158713 -0.088970 1.540037 4.571149 4.538647 6.348617 -8.865379 -4.586208 0.547706 -3.257067 -13.949449 -1.154715 2.745659 9.108336 1.200650 -10.695600 3.528662 -4.700639 8.508210 5.303128 6.648226 2.916578 -0.861655 -6.561024 2.910807 14.346563 -4.867309 6.443684 -4.896248 -8.328758 8.356772 -2.613653 6.337014 1.423802 0.638057 1.519153 -8.227788 0.329567 10.890363 3.089303 2.594221 4.845427 1.670233 -1.857851 -12.607801 -13.443658 -0.684131 5.332180 0.900209 15.278933 -9.497039 -4.814025 -3.416430 11.313591 -2.178997 -4.220231 1.059461 -3.296176 3.587774 -15.671426 -13.004625 14.416174 15.215662 2.738405 -1.355888 8.560960 2.095714 -4.964567 -5.905053 -6.966643 5.526668 1.764366 -0.965753 -0.969610 0.554389 -9.373857 -2.180220 -0.096212 3.015874 6.574462 -5.990370 -2.389275 -0.355593 -8.877355 -7.128823 3.569095 -7.702400 -4.091310 0.463175 1.382077 0.253518 3.933182 -3.245536 -5.568722 2.548851 -6.522995 -1.827333 3.665705 7.609933 1.847519 13.367165 9.965200 -1.013230 6.695230 1.933764 -5.145576 20.933121 -6.778545 -0.518776 -0.459995 6.821395 -0.058162 3.501756 4.952601 -3.648300 -6.072752 -8.959547 3.287994 -1.693000 3.707841 -11.365510 -8.223303 -12.723064 -1.696067 1.040848 10.636529 0.890232 18.025984 -0.422911 1.975933 -18.018994 0.221790 8.604624 -0.933205 5.743213 5.695281 -8.702663 -12.947076 -1.118045 -6.412475 1.760113 -1.219261 -7.162523 -5.947681 -4.743079 5.532817 -3.082574 3.774775 10.529138 0.136667 5.432255 2.546523 -2.270297 -3.267175 -3.258469 6.437748 2.261930 -6.619941 10.570124 0.206694 20.679460 -2.666422 7.017311 -5.590847 1.342461 -0.703609 -5.167170 -4.640602 10.367218 7.996816 4.448921 0.408126 -0.230367 -4.758893 6.904781 -PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = -0.213902 0.186961 0.927885 0.167515 -0.243783 -0.763843 -0.248683 -1.180849 0.505181 0.322694 0.940098 -0.064011 0.663706 -0.233948 0.118182 0.133706 0.521856 -0.145557 0.199082 -0.250279 -0.015038 0.946964 0.110059 0.063567 0.090989 -0.611926 0.184795 0.202244 0.469741 0.570437 0.129026 -0.065901 -0.157332 0.197525 -0.180736 0.220566 0.207773 0.324386 -0.470138 -0.115586 -0.178820 -0.292660 0.486736 -0.052899 0.586013 -0.053993 0.313561 -0.004993 -0.372771 -0.371700 -0.271440 0.605495 -0.400521 0.291709 0.010489 -0.368654 0.090910 0.092028 -0.051368 -0.577472 -0.003466 -0.222165 -0.277828 0.014092 -0.360473 0.216140 -0.349138 -0.306662 -0.029320 -0.199873 0.373000 0.177022 0.246045 0.225097 -0.980595 0.211576 0.206898 0.108202 0.317721 0.152499 0.032045 -0.175758 -0.339139 -0.585895 0.715124 0.453450 0.217646 0.192475 -0.713149 0.133421 -0.074209 0.025761 0.164812 0.329482 -0.461116 0.213312 -0.005579 -0.219049 -0.199187 -0.917002 0.017458 -0.497505 0.102717 0.186422 0.111611 -0.009733 -0.516328 0.270989 -0.403970 -0.642347 0.391328 -0.241519 -0.406040 0.660909 -0.500706 -0.069818 -0.281541 0.059775 0.105021 0.378316 0.136340 0.360752 0.249435 0.420337 0.374240 -0.554136 -0.161105 0.372449 0.565744 0.238324 0.154515 -0.368790 -0.357604 0.244214 -0.571513 -1.042679 -0.453219 0.570841 0.613555 -0.032756 -0.383663 0.167562 -0.305376 0.547857 0.661492 0.183249 0.139127 0.150732 -0.513910 0.294107 0.660745 -0.436616 0.625619 -0.018986 -0.205837 0.451328 -0.335102 0.326326 -0.000671 0.015684 -0.026595 -0.372971 -0.109428 0.685554 0.419842 0.417893 -0.301510 0.194697 -0.369693 -0.836628 -1.070416 -0.208331 0.831877 0.127536 0.653127 -0.442183 -0.510185 0.143330 0.629521 -0.171708 -0.563693 0.219455 -0.421817 0.371116 -1.202494 -0.873639 1.178749 0.978265 0.483907 0.015710 0.361105 0.505903 -0.724066 -0.376917 -0.296163 0.384113 -0.145954 -1.110334 -0.488626 0.120020 -0.737112 -0.174109 -0.102922 0.138936 -0.004216 0.200489 0.536250 0.044220 -0.278417 -0.061296 0.425177 -0.345776 -0.369247 -0.151882 0.023042 0.225140 0.287089 -0.373755 0.048975 0.401850 -0.675841 -0.093088 0.091458 0.337314 0.245547 1.098891 0.891417 -0.093207 0.377466 -0.125935 -0.539067 0.777083 -0.405163 0.033964 -0.126784 0.268501 0.055321 0.281713 0.562049 -0.268536 -0.633201 -0.733740 -0.281184 0.240848 0.433644 -0.065221 -0.858437 -0.752159 0.125329 0.113193 0.877080 -0.084501 1.131229 -0.382678 0.289871 -1.120821 0.109811 0.209387 -0.162750 0.507262 0.194275 -0.379016 -0.604533 -0.207884 -0.613330 -0.500097 -0.077111 -0.505710 -0.211891 -0.598546 0.554317 -0.526546 0.013458 0.124998 0.068030 0.792848 0.254708 -0.137160 -0.572384 0.385436 0.543817 0.027402 -0.432986 0.581979 0.169856 1.546210 -0.200463 0.291213 -0.338427 0.249785 -0.153519 -0.461431 -0.210725 0.813382 0.954832 0.247943 -0.126737 0.046501 -0.108425 0.426715 -PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = -0.019996 0.152568 0.729682 0.174644 -0.136001 -0.762645 -0.162941 -1.144000 0.507298 0.297238 0.784180 -0.055378 0.630434 -0.283910 0.063159 0.196510 0.420689 0.005654 0.098890 -0.228121 -0.074441 0.853001 -0.103466 0.043870 0.117054 -0.527844 0.249442 0.312452 0.409243 0.462112 0.149529 0.009117 -0.078439 0.165964 -0.245278 0.190012 0.097704 0.280542 -0.417368 -0.153518 -0.103859 -0.193246 0.447107 0.024733 0.506701 -0.013923 0.303706 0.008193 -0.158869 -0.284036 -0.238884 0.495297 -0.226674 0.259250 -0.203077 -0.325371 0.139853 0.055406 0.048240 -0.331465 0.075376 -0.088916 -0.372105 -0.038024 -0.332457 0.126420 -0.183227 -0.323795 -0.061683 -0.213383 0.295267 0.045571 -0.011272 -0.023708 -0.971938 0.056037 0.206462 -0.000893 0.330133 0.145855 0.044570 -0.249902 -0.390593 -0.482378 0.786027 0.487303 0.203918 0.323455 -0.665273 -0.071243 -0.115590 0.033436 0.300598 0.300455 -0.345957 0.111118 0.038654 -0.191147 -0.180063 -0.697091 0.171856 -0.362771 0.107768 0.034507 0.177408 0.102848 -0.170777 0.226269 -0.307605 -0.488244 0.238810 -0.293906 -0.188004 0.638912 -0.263326 -0.219103 -0.313369 -0.023340 0.022978 0.339415 0.163242 0.183887 0.391804 0.302073 0.320641 -0.519360 -0.223276 0.402039 0.369601 0.263553 0.029493 -0.394768 -0.268607 0.206770 -0.539627 -0.945641 -0.399812 0.364926 0.505651 -0.244633 -0.275780 0.329051 -0.229952 0.342338 0.568954 0.062949 0.127535 0.191505 -0.445954 0.207583 0.612609 -0.303416 0.423114 -0.168752 -0.204641 0.289257 -0.159772 0.170050 0.018017 -0.119738 -0.057486 -0.213581 0.096024 0.576394 0.188242 0.300457 -0.242017 0.242197 -0.449459 -0.598926 -0.948294 -0.180358 0.687857 0.193321 0.727961 -0.409841 -0.407589 0.074278 0.512778 -0.195646 -0.363043 0.272762 -0.469957 0.359120 -0.953426 -0.726715 0.968097 0.704047 0.549927 -0.063509 0.332692 0.342748 -0.489840 -0.280588 -0.204168 0.281819 0.114281 -0.968787 -0.307395 0.042673 -0.664522 -0.175723 -0.104482 0.111379 -0.116506 0.183197 0.581932 -0.262008 -0.224749 -0.168837 0.378628 -0.273609 -0.113459 -0.169649 0.003071 0.038172 0.276256 -0.353038 0.050469 0.287621 -0.456289 0.016641 0.065857 0.204189 0.168863 0.895315 0.800379 -0.190748 0.445115 -0.150644 -0.398893 0.648919 -0.272771 0.063287 -0.041437 0.265970 0.100177 0.259127 0.477284 -0.250228 -0.387266 -0.671204 -0.286336 0.336983 0.331459 0.061411 -0.481321 -0.745825 -0.002922 -0.073082 0.882366 -0.066625 0.932593 -0.370873 0.311550 -0.903514 0.119639 0.125405 -0.177224 0.367368 0.136738 -0.374709 -0.441103 -0.121419 -0.546350 -0.659058 -0.065423 -0.411829 -0.303992 -0.515146 0.352241 -0.517698 0.014638 0.199422 0.039878 0.527232 -0.131422 -0.018215 -0.422494 0.325501 0.466555 -0.014245 -0.416091 0.285579 0.132660 1.320912 -0.117646 0.410204 -0.298910 0.330322 -0.240054 -0.526365 -0.246384 0.660901 0.747984 0.167017 -0.038559 0.079199 -0.007974 0.441334 -PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = -0.606332 0.150330 1.601896 0.218889 -0.633559 -1.270007 -0.414185 -2.013274 0.929596 0.652379 1.693017 0.013602 1.107180 -0.566199 0.258457 0.228920 1.033149 -0.407076 0.166089 -0.557083 0.137468 1.324273 0.226690 0.054410 0.308915 -0.988692 0.258352 0.291171 0.562627 0.866187 0.394820 -0.130710 -0.497767 0.343663 -0.009162 0.697094 0.587648 0.442074 -0.752562 -0.240866 -0.211369 -0.517341 0.860048 -0.083649 1.296518 -0.222633 0.516084 -0.000605 -0.924496 -0.744518 -0.294981 1.028624 -0.743820 0.532377 0.278381 -0.429894 0.054192 -0.074005 -0.077243 -1.117307 0.001970 -0.504247 -0.475259 0.037496 -0.456769 0.305148 -0.424970 -0.377816 -0.082476 -0.663515 0.529499 0.116288 0.274464 0.570773 -1.395124 0.202250 0.401423 0.130319 0.605940 0.327173 -0.049299 -0.534635 -0.509837 -0.936053 1.107764 0.687729 0.330851 0.379326 -1.345278 0.442799 -0.092042 -0.022744 0.294438 0.529772 -1.130254 0.013776 0.286804 -0.566270 -0.414326 -1.363354 0.186306 -0.750807 0.175135 0.345542 -0.090498 -0.053318 -1.147590 0.450345 -0.821455 -0.801799 0.707127 -0.451396 -0.540790 1.038568 -0.952029 -0.205739 -0.702962 0.059146 0.374958 0.597986 0.164389 0.530171 0.531986 0.716214 0.826272 -0.989556 -0.311857 0.605474 1.092806 0.359126 0.187513 -0.561491 -0.510617 0.531823 -1.128629 -1.693983 -0.916618 0.786649 1.183915 0.263939 -0.714105 0.008541 -0.504069 1.002908 1.018692 0.372420 0.135983 0.356487 -0.986916 0.314144 0.965262 -0.698854 1.054990 0.115908 -0.153917 0.531332 -0.541440 0.485615 0.121701 -0.055631 -0.126724 -0.584960 -0.306326 1.097524 0.771838 0.688591 -0.863003 0.472025 -0.587906 -1.379882 -2.023330 -0.434415 1.367536 0.369817 0.980687 -0.869190 -0.853952 -0.002793 1.133450 -0.310115 -1.121300 0.383216 -0.758241 0.640632 -1.759280 -1.354199 2.139249 1.894068 0.948059 0.087632 0.684805 0.632826 -1.503016 -0.470923 -0.488809 0.609470 -0.228114 -1.787087 -0.625757 0.275733 -1.305087 -0.445826 -0.249522 0.274810 -0.092438 0.304563 1.102611 0.401911 -0.214874 0.026922 0.591559 -0.377582 -0.742941 -0.305175 0.071473 0.594413 0.531187 -0.674605 0.000664 0.595520 -1.246169 -0.237309 0.238335 0.726328 0.549963 1.857184 1.455955 -0.185784 0.716163 -0.400105 -0.973720 1.049629 -0.634104 0.125538 -0.221727 0.318563 0.332120 0.357906 1.017965 -0.507272 -0.896729 -1.108247 -0.588367 0.336007 0.923155 -0.236672 -1.593839 -1.358038 0.328215 0.140745 1.332020 -0.226500 1.886060 -0.565869 0.482284 -1.979971 0.128143 0.526035 -0.245658 0.633171 0.261448 -0.696388 -1.184059 -0.271829 -1.197121 -0.850388 0.028950 -0.412035 -0.379513 -1.055758 1.336990 -0.857159 -0.043977 0.171778 0.141062 1.451049 0.647031 -0.146294 -0.817453 0.568892 0.813079 0.109579 -0.715452 1.056812 0.444665 2.610345 -0.267499 0.422233 -0.435300 0.517486 -0.292253 -0.833666 -0.454597 1.243147 1.799300 0.489725 -0.293464 0.016878 -0.316991 0.831318 -PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = -0.024243 0.392989 1.253451 0.166058 -0.471517 -1.037317 -0.265062 -1.629608 0.719636 0.479184 1.006975 -0.006353 0.816532 -0.300003 -0.029168 0.244870 0.688139 0.000813 0.060464 -0.472575 -0.298181 0.963748 -0.099377 0.021041 0.336233 -0.883637 0.564721 0.271628 0.573109 0.713538 0.312468 0.034308 -0.289495 0.400630 -0.052419 0.285726 0.235827 0.385527 -0.605237 0.003748 -0.037269 -0.310799 0.695371 0.245687 0.766207 0.176012 0.174366 0.072659 -0.404931 -0.375151 -0.180973 0.534467 -0.389432 0.456209 -0.156428 -0.237179 0.060594 -0.105542 0.175335 -0.379836 0.052337 -0.308654 -0.463712 0.020732 -0.575392 0.079160 -0.430483 -0.526925 -0.209808 -0.417318 0.351237 0.030468 -0.063931 0.036723 -1.295639 0.052187 0.367220 0.073082 0.626837 0.198884 -0.083517 -0.384455 -0.645207 -0.822315 0.923157 0.661590 0.270647 0.408351 -0.823564 -0.231400 -0.112652 0.042274 0.438039 0.606345 -0.693625 0.072047 -0.151574 -0.394329 -0.357429 -1.222080 0.238680 -0.505021 0.245381 -0.051862 -0.106551 0.091116 -0.286498 0.322896 -0.249588 -0.485521 0.346503 -0.452604 -0.164620 0.992284 -0.243255 -0.473288 -0.556984 -0.173993 0.170989 0.516155 0.175938 0.090980 0.742777 0.456572 0.570828 -0.724963 -0.272487 0.458686 0.316761 0.309671 0.232689 -0.606033 -0.411309 0.347842 -0.718684 -1.366004 -0.456762 0.269121 0.681511 -0.341282 -0.306710 0.209457 -0.465227 0.350521 0.734917 0.203358 0.231879 0.146296 -0.614820 0.210870 0.918452 -0.440443 0.559240 -0.301336 -0.298865 0.459032 -0.221603 0.305016 -0.123181 -0.243754 -0.136954 -0.302595 0.097329 0.906310 0.116601 0.261688 -0.236392 0.270946 -0.613617 -0.805990 -1.332505 -0.238844 1.040395 0.331696 0.962970 -0.705452 -0.357488 -0.065003 0.826494 -0.067895 -0.462102 0.404362 -0.535379 0.494374 -1.212933 -1.023138 1.353632 1.134718 0.668034 -0.194622 0.340380 0.313961 -0.824343 -0.591937 -0.391929 0.301757 0.024971 -1.199403 -0.531037 0.173778 -0.963740 -0.107109 -0.088218 0.224869 0.257874 0.097236 0.744984 -0.178421 -0.261767 -0.511466 0.546095 -0.307524 -0.273037 -0.108249 0.044410 0.101579 0.420825 -0.355512 -0.150933 0.317208 -0.570505 -0.011520 0.177254 0.426246 0.116644 1.270014 0.997888 -0.264408 0.358212 -0.164802 -0.554773 1.010219 -0.432163 0.199678 0.036210 0.351489 0.068874 0.387092 0.761274 -0.376380 -0.548092 -0.883287 -0.431894 0.266429 0.436567 -0.084232 -0.755380 -1.064746 0.096743 -0.176989 1.168786 -0.065284 1.371786 -0.320248 0.454898 -1.194768 0.146443 0.354336 -0.239638 0.607323 0.301609 -0.678111 -0.526920 -0.207187 -0.903595 -0.717224 -0.005175 -0.262721 -0.471723 -0.409860 0.500018 -0.520827 0.041285 0.358674 -0.025670 0.798017 -0.111527 0.028165 -0.597100 0.312839 0.858223 -0.053716 -0.521218 0.484675 0.274821 1.733663 -0.036213 0.550427 -0.268811 0.196169 -0.147815 -0.756144 -0.522181 0.957703 0.955908 0.420070 -0.073895 0.021917 0.020731 0.696018 -PE-benchmarks/snake-ladder.cpp__main = -0.246649 2.752544 7.445894 5.841023 -5.488610 -7.087979 -2.202214 -6.820357 2.833262 1.151084 4.934936 -0.746677 2.291729 0.716311 -0.322624 -0.488359 3.477719 0.979633 -0.625019 -2.902288 -5.115340 5.727706 2.099292 -4.410791 1.492595 -3.863665 4.683063 3.103961 2.361465 3.849234 1.325610 0.185458 -0.936170 3.047889 -3.162230 -0.627802 -1.736120 2.047896 -3.625813 0.135968 2.401277 -0.998470 5.504241 0.582589 2.358819 2.869664 3.834529 0.343996 -5.300340 -1.234379 -3.403135 4.540828 -2.323666 3.333160 -0.894927 0.775903 2.208036 -2.877627 -0.224217 -3.395249 0.077398 -0.447621 -3.752963 -0.233226 -5.170705 0.231514 -2.812666 -4.345513 1.501985 -0.789840 2.683500 -0.291310 -0.970904 -2.858653 -5.770098 1.424610 1.508632 2.231234 2.876325 1.533586 0.178359 -0.118112 -4.277581 -3.820909 2.659738 -0.030503 1.880361 0.909028 -1.947165 -3.263532 0.839972 0.282197 0.512520 3.639475 -3.100563 3.240235 -2.186045 -2.162900 -4.493231 -6.006360 0.234999 -3.151392 2.365785 1.888092 -2.741847 0.996904 -0.265798 1.340522 0.002905 -5.463686 -0.122001 -2.577470 -0.223465 5.522796 -1.765343 -3.204174 -0.807844 -0.696620 -0.394498 3.741792 1.140612 0.713996 4.944951 3.123843 2.509799 -3.788694 -0.341618 0.004434 1.336008 2.706902 3.429492 -2.588623 -3.208851 0.463008 -1.848648 -7.906353 -0.664635 2.866091 4.229668 -0.008595 -3.810248 1.889813 -3.055757 3.346602 2.736442 3.590765 2.253619 -0.564143 -2.854905 1.705853 7.030125 -2.592086 3.342244 -2.305982 -5.076297 5.855137 -0.427728 2.631991 0.156597 -0.935039 0.200582 -3.237448 0.447836 5.650386 0.670513 -0.502681 3.675819 0.534599 -2.412503 -6.194276 -7.022973 1.214593 4.213053 2.216289 8.280730 -5.024864 -1.802586 -0.414718 3.911230 -1.099155 -2.235858 1.029680 -1.895969 2.327697 -10.035513 -7.070227 7.415229 4.966396 0.978434 -0.866553 3.604896 0.977619 -2.465574 -4.696313 -4.535688 2.891739 1.506802 -1.404596 -1.031057 0.718262 -5.616311 0.546896 0.766481 1.716147 3.795230 -3.886477 -0.246180 -3.349575 -5.103058 -4.000361 2.638595 -4.375091 -0.964624 0.870735 -0.358069 -0.193605 2.168289 -0.237086 -2.828785 -0.922097 -3.153629 -1.008237 0.116996 3.966933 0.224753 7.959420 6.928533 -1.170417 3.339943 1.130552 -3.559321 11.816675 -4.192454 0.428598 -0.332483 4.777189 -0.382986 1.820824 4.502386 -1.775229 -3.527098 -4.962511 0.719541 0.775847 1.638225 -6.796591 -2.487598 -7.846290 -0.921057 0.014942 6.769406 -0.283314 8.786847 -1.734366 1.208303 -9.055162 0.595838 3.081340 -0.437865 4.445552 2.547877 -4.868286 -4.220492 -1.176578 -4.003895 2.087165 -0.358938 -3.331342 -3.651479 -0.689844 0.192036 -2.306026 1.647437 5.432656 -2.594770 2.929931 -0.023375 -1.031894 -1.024657 -1.490514 5.131818 1.010976 -3.491137 5.827748 0.128638 11.782857 0.972993 3.791431 -2.830743 -0.168728 0.033839 -3.680614 -3.025488 5.587839 4.231623 1.971142 1.100979 1.225543 -0.950585 3.414501 -PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = -1.498457 0.827263 5.711391 0.150139 -2.357603 -3.407694 -1.535441 -7.246860 3.386339 2.708007 5.272566 0.129718 3.491458 -1.558920 0.099633 0.654885 3.102605 -1.670249 0.662052 -2.005702 -0.486284 4.379814 0.381826 0.773601 1.265608 -4.483046 2.192707 0.044970 2.207669 3.091957 1.486750 -0.105241 -1.715712 1.578205 0.922181 2.433684 1.822190 1.725143 -1.885240 -0.144975 0.073010 -1.970298 2.738240 0.588616 4.341304 -0.334116 0.581362 -0.160977 -2.641968 -2.245189 -0.395630 2.169595 -2.661501 1.597038 0.741320 -1.050654 -0.338250 -0.750162 0.053786 -2.415279 -0.136319 -2.265750 -1.602112 0.520175 -1.868814 0.934807 -2.181367 -1.077753 -0.794619 -2.418552 1.621054 0.520852 0.691306 1.791553 -4.904943 0.665203 1.492647 -0.079764 2.382800 0.929272 -0.846938 -1.583881 -2.328271 -3.714719 3.733977 3.122902 0.683970 0.814828 -3.678518 0.806854 -0.491845 0.074018 1.217851 2.864860 -4.192151 -0.243485 -0.002883 -2.137973 -1.304083 -5.291120 0.704288 -2.872809 1.016934 0.905235 -1.605369 -0.213102 -2.617451 1.290479 -1.807185 -2.256764 1.822766 -1.775604 -0.650308 3.911968 -2.230126 -1.345476 -3.031045 -0.446374 1.691293 1.832963 0.568408 1.142246 3.325804 2.261416 2.932390 -3.272492 -1.143808 2.377764 2.398500 0.754257 0.693127 -2.617476 -1.636530 1.741356 -2.979096 -5.668062 -2.836493 1.346642 3.258547 -0.392039 -1.476484 -0.157823 -1.677897 2.434698 3.780633 0.943888 0.544245 1.119446 -2.998111 0.979692 3.745779 -1.945763 2.746552 -0.814205 -0.921792 2.391532 -2.024736 1.708332 -0.129658 0.150349 -0.937367 -2.207712 -0.401862 3.889563 0.909130 1.911444 -2.331961 1.367397 -1.556604 -3.859425 -6.411639 -1.402056 4.825481 1.677885 3.398107 -3.262595 -1.625285 0.041650 3.938925 0.596583 -3.068216 1.650764 -2.102476 2.039289 -5.363743 -4.623104 6.328133 6.028280 2.892171 -0.169403 1.697876 1.745175 -4.900137 -2.059248 -2.099447 2.075537 -0.632781 -5.311657 -2.196779 1.108020 -4.137043 -1.211944 -0.858299 0.938279 1.342150 0.195222 3.295872 1.253895 -0.519438 -1.211607 2.857063 -1.040179 -2.740896 -1.109404 0.396101 1.422007 1.896813 -1.590217 -0.143751 1.515367 -3.078284 -0.421170 1.510696 1.929956 0.716528 5.629559 4.612618 -1.169714 0.702695 -1.311374 -2.197282 3.277451 -1.981254 0.373019 -0.107497 0.625467 0.646787 1.476406 3.413565 -1.651587 -2.937363 -3.391819 -1.563905 0.333220 2.570721 -0.769544 -4.731045 -4.508837 0.983463 0.060714 4.540661 0.069928 6.444693 -1.219581 1.803419 -5.780223 0.347642 2.077106 -0.732906 2.769211 0.989025 -2.550324 -2.490775 -1.133907 -3.931583 -2.523809 0.157290 -0.730405 -1.910035 -2.688708 3.961523 -2.114327 0.003111 0.711246 0.485465 4.416202 1.520127 -0.265559 -3.208783 1.843739 3.038585 0.089651 -2.013446 3.239019 1.295216 7.558298 -1.076177 1.503666 -0.937904 1.381972 -0.938447 -3.026765 -1.684784 4.097804 5.007987 2.035526 -1.257295 -0.490244 -0.673560 2.900696 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/snake-ladder.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = -2.942250 -0.292164 5.465383 0.610384 -1.861781 -3.929224 -1.691695 -6.659484 3.296627 2.489156 6.498060 0.115288 3.680364 -1.954364 1.310490 0.650210 3.408516 -2.631675 0.621800 -1.830073 1.061087 5.026139 1.633832 0.199527 0.804390 -3.920067 0.149490 0.958194 1.555291 2.809279 1.172613 -0.376807 -1.419664 1.088949 -0.355688 2.867529 2.196794 1.356802 -2.039839 -1.095143 -0.363045 -1.242468 2.918883 -0.748694 5.032698 -1.215538 2.285894 -0.296465 -3.500489 -3.001273 -1.021574 4.055666 -2.807844 1.494595 1.386057 -1.123636 0.128600 -0.922521 -1.003231 -4.630936 -0.082849 -1.237662 -1.611507 0.177133 -1.008831 1.459798 -0.914378 -0.609360 0.239787 -2.507019 2.106171 0.499095 1.149051 2.230588 -4.121082 1.117547 1.220026 0.224426 1.558900 0.928211 -0.726497 -1.407891 -1.278701 -3.018703 3.667727 2.417290 0.925102 0.907088 -4.524576 2.370778 -0.474106 -0.305801 0.320865 1.838373 -4.335243 -0.138420 2.286528 -2.277861 -1.714885 -3.444374 0.460259 -2.878727 0.522619 2.158007 -0.331832 -0.368165 -4.763630 1.319187 -3.585905 -3.018902 2.357167 -1.421790 -1.770401 3.155763 -4.268439 0.027994 -2.462358 0.547224 1.447392 2.145989 0.304440 2.274508 2.120462 2.697118 2.505623 -3.366483 -0.833927 1.977962 4.797314 1.039262 0.528238 -2.103891 -1.713620 1.714788 -3.728617 -5.581245 -3.593129 3.128227 4.298746 1.519623 -3.141320 0.345353 -1.223419 4.433611 3.942056 1.034618 0.192543 1.399297 -3.701469 1.396239 3.676272 -2.437960 4.022478 0.369392 -0.793113 2.443978 -2.675284 2.023743 1.281818 0.376907 -0.667572 -2.490908 -1.185578 3.637174 3.191320 2.917929 -3.421493 1.705748 -0.849394 -4.913539 -7.598368 -1.793588 4.018463 1.358201 3.845817 -2.939007 -3.320003 -0.127617 3.987617 -1.077816 -4.440063 1.125967 -2.576708 1.966116 -6.411481 -4.740426 7.859053 7.349437 3.440570 1.024223 3.337356 2.384109 -5.097280 -0.983343 -1.515660 2.764644 -0.533703 -5.712987 -1.408769 0.902469 -4.403182 -2.225207 -1.613371 0.858999 -0.842192 0.861154 3.549791 1.976150 -1.117252 1.009932 1.737236 -1.500340 -3.252069 -1.415307 0.300825 2.179245 1.707979 -2.454353 0.325503 1.973296 -4.861895 -0.978022 1.187284 2.672220 2.451079 6.108656 5.438918 -0.659228 2.989893 -1.682967 -3.003361 3.010562 -2.275649 -0.081232 -1.008482 0.930405 1.475090 1.039309 3.092483 -1.546910 -2.986502 -3.480967 -0.816784 0.994303 3.344866 -1.340164 -6.029252 -4.723136 0.980914 1.186257 4.497234 -0.772318 6.862080 -1.952211 1.434513 -7.872746 0.324476 1.690473 -0.410707 1.785024 0.784188 -2.206030 -4.793370 -0.865235 -3.903964 -2.651795 0.226380 -1.865185 -1.360230 -4.556650 5.657385 -3.429781 -0.074307 0.706687 0.767531 5.178045 3.349236 -0.887704 -2.977312 1.978069 2.269326 0.721724 -2.233970 4.062474 1.117182 9.133610 -1.673028 1.542712 -1.633567 2.603289 -1.193172 -2.665008 -1.040370 4.210929 6.617979 1.228963 -1.198706 -0.272525 -1.479061 2.792005 -PE-benchmarks/snake-ladder.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -0.636674 0.460827 2.391177 2.197014 -1.945923 -2.388707 -0.651999 -2.416319 1.559562 0.564572 2.022611 0.202868 1.350116 -1.026539 -0.255563 -0.738856 1.386182 0.438959 -0.640089 -1.054593 -1.094221 2.098852 0.379433 -2.049719 0.656631 -1.158318 1.870847 1.169897 0.445418 1.662731 0.532391 0.257853 -0.710147 1.040257 -0.856957 0.221186 -0.216989 0.717333 -1.046332 -0.679179 1.174988 -0.241219 1.963467 0.187050 1.447648 0.703427 0.925676 0.033553 -1.942031 -0.785050 -0.421205 0.852381 -0.754144 1.319499 -0.178892 0.397436 0.997719 -0.984518 0.255846 -2.103331 0.612332 -0.258218 -1.122430 -0.245432 -1.573596 -0.070210 -0.141613 -1.532377 0.311941 -1.549577 0.587820 -0.365359 -0.439739 -1.179817 -1.728649 0.136738 0.724397 0.415450 1.273053 1.245882 -0.354349 -0.991857 -1.418512 -1.159187 0.864493 -0.041994 0.559770 1.206964 -1.084828 -1.059873 0.644711 0.034571 0.526813 1.085214 -1.242526 0.342598 0.002154 -0.723601 -0.958025 -1.549704 0.581390 -0.824052 0.637269 0.968818 -1.321978 0.500830 0.042398 0.526453 -0.388743 -1.153500 0.338210 -1.319049 0.248325 1.822778 -0.543584 -1.485917 -0.790236 -0.380231 0.318959 1.508199 -0.045505 0.101952 1.665048 0.963301 1.152457 -1.691954 -0.190380 0.644640 0.797106 0.786478 0.700022 -1.123973 -0.715620 0.458664 -1.359876 -2.687488 -0.697321 0.557024 1.802054 -0.045183 -1.899582 1.236465 -1.042029 1.163994 1.001997 1.097937 0.554872 0.236968 -1.538521 0.337883 2.055808 -0.562682 0.899649 -0.545628 -1.877465 1.667993 0.265101 0.618521 -0.118584 -0.725198 0.038091 -0.829724 0.727853 1.809747 0.045088 0.052924 0.243931 0.504188 -1.132958 -2.252006 -3.057076 0.118116 1.743853 1.712831 3.490137 -1.966907 -0.691685 -0.544815 1.576160 -0.637706 -0.882514 0.486498 -0.884409 1.063178 -3.548821 -2.558438 3.256785 1.914159 0.984472 -0.119117 1.397075 -0.296566 -0.438864 -1.144812 -1.333715 0.609578 1.018991 -0.515048 0.172822 0.294903 -2.205971 -0.382709 0.332176 0.499059 1.011086 -1.387296 0.372451 -1.352217 -0.879559 -1.511893 0.739307 -1.012431 -0.148107 0.098606 -0.010253 0.095483 0.922510 -0.193314 -1.093946 -0.604412 -0.971042 -0.309264 -0.078880 1.304628 0.394249 2.618327 2.604583 -0.898075 1.070874 0.147368 -1.184406 4.146852 -1.476843 0.288606 0.090323 1.745054 0.921474 0.557468 1.710604 -0.829035 -0.150125 -1.871795 -0.290547 0.593961 0.813593 -3.312082 -1.022413 -2.907991 -0.076494 -0.609399 2.119010 -0.273927 3.372345 -0.758199 0.257868 -3.493027 0.090625 1.692196 -0.198877 1.154059 0.805092 -1.750240 -2.181227 -0.246691 -1.631533 0.288266 -0.253939 -0.563013 -1.179047 -0.179756 0.574633 -0.971219 0.589719 2.208345 -0.848050 1.148253 -0.390097 0.083256 -0.350011 -0.718238 0.754120 0.344839 -1.126023 1.725102 0.343580 3.746206 0.374746 1.387156 -0.891032 1.271004 -0.630614 -2.042613 -1.266894 1.739568 1.782172 0.659588 0.554900 0.601963 -0.523563 1.610512 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -0.198128 0.547659 2.071949 0.885581 -1.370135 -1.674195 -0.569803 -2.330521 1.255191 0.481308 1.173669 -0.124489 0.802380 -0.628640 -0.292291 0.534937 1.142848 0.121156 -0.200103 -0.881571 -0.590795 1.573600 0.212077 -0.751065 0.707581 -1.475075 1.280363 -0.012214 0.864329 1.433776 0.660375 -0.196218 -0.416939 0.844165 0.484443 1.231522 0.431932 0.482000 -1.159134 0.228267 0.069998 -0.523328 1.035386 0.308265 1.468409 0.645282 0.524750 0.117070 -1.419588 -0.304217 -0.648405 1.153985 -1.107815 0.946911 -0.011543 0.234093 0.032512 -0.711850 -0.043499 -0.828449 -0.422958 -0.561728 -0.938801 0.100501 -1.424588 0.130365 -0.764698 -0.631058 -0.452447 -0.412090 0.589891 0.280374 -0.006940 0.166880 -1.640878 0.111439 0.470418 0.647209 1.171402 0.056882 0.064612 -0.760250 -0.962084 -1.235961 1.194526 0.238372 0.473853 0.505258 -0.507517 -0.419664 -0.330255 0.060547 0.459594 0.990939 -1.226161 0.021218 -0.536944 -0.467946 -0.545117 -2.056225 0.225168 -0.770414 0.409825 0.148891 -0.450182 0.209303 -0.079618 0.732603 -0.141623 -0.565930 0.513976 -0.415103 -0.411567 1.509303 -0.159388 -0.890276 -0.690494 -0.314118 0.151857 1.053468 0.254395 0.325123 1.159724 0.935365 1.634714 -1.060309 -0.405306 0.459802 0.564535 0.593827 0.835502 -0.804731 -0.753949 0.472266 -0.707469 -2.051081 -0.620456 0.511158 1.278526 0.230614 -0.779511 -0.281396 -0.703201 0.878207 0.519641 0.517909 0.398475 -0.030705 -1.011222 0.402666 1.890112 -0.658541 0.715553 -0.681930 -0.254709 0.846965 -0.263832 0.373142 -0.481709 -0.429022 -0.052799 -0.759279 0.017785 1.404730 0.220484 -0.078075 -0.092895 0.469110 -1.035068 -1.706672 -1.782612 -0.267829 1.574218 0.268061 1.586514 -1.265899 -0.482437 -0.507873 1.117384 -0.053505 -0.403797 0.328196 -1.079992 0.848401 -2.019289 -1.762326 2.704077 1.810852 0.956528 -0.184266 0.483572 0.633663 -1.617728 -0.918492 -0.919327 0.422865 0.077760 -1.452348 -0.916825 0.283502 -1.737231 -0.393236 0.211118 0.554395 0.715403 0.123677 0.532659 -0.027561 -0.486085 -0.993894 0.811550 -0.727232 -0.510310 0.154370 0.116356 0.342506 0.821122 -0.453530 -0.385469 0.371225 -0.814763 -0.224938 0.300663 1.086155 0.166028 1.768916 1.980551 -0.176604 0.807341 0.122679 -1.192409 2.039674 -0.436895 0.478118 0.006467 0.350011 0.280273 0.371714 1.323683 -0.671390 -0.919633 -1.349289 -0.703196 0.268751 0.883056 -0.716903 -1.418800 -1.518186 0.104226 -0.029073 1.484993 0.056262 2.137017 -0.432632 0.620515 -2.317543 0.231558 1.484303 -0.156256 0.864007 0.677494 -1.137091 -1.348482 -0.322964 -1.268551 -0.590455 -0.390629 -0.164578 -0.782574 -0.427977 1.064740 -0.567217 0.143483 1.126271 0.060522 1.449670 -0.013326 0.144372 -0.827825 -0.064989 1.072405 0.165513 -0.867914 0.942855 0.711895 3.040136 0.098567 0.571839 -0.588600 0.058111 -0.132510 -1.207085 -0.839079 1.421709 1.460004 0.618790 0.319845 -0.040265 -0.299517 1.193698 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = -1.049391 0.898494 5.190114 1.797225 -2.478312 -3.725239 -1.243058 -6.100974 3.006696 2.497026 4.801963 -0.137232 2.754145 -1.144183 0.060225 1.047995 3.056252 -0.859304 -0.091710 -2.333972 -1.300265 4.262226 1.098723 -0.331789 1.334411 -4.360130 2.000905 0.356553 1.930468 2.397823 1.376902 0.187413 -0.876247 1.698294 -0.224116 1.835489 0.688507 1.468848 -1.944004 -0.183679 0.765894 -0.936566 2.616260 1.326841 3.646303 0.512662 1.900352 -0.458348 -3.305273 -1.976786 -1.541322 3.039974 -2.417801 2.165907 -0.454590 -0.467520 0.749899 -0.996914 0.148627 -3.093895 -0.339143 -1.276528 -1.731356 -0.004310 -1.999406 1.031534 -1.785779 -1.680610 -0.486781 -0.731236 2.532096 0.687031 0.222411 0.864627 -4.149786 1.040009 1.024737 0.574222 2.721355 0.383026 -0.928384 -1.347353 -2.458353 -3.505791 4.069076 1.232123 1.068900 1.165134 -2.502336 -0.332007 -0.719008 -0.278311 0.842698 2.570189 -3.743501 0.310960 0.847432 -1.854595 -1.611834 -3.957553 -0.033124 -2.713755 0.598932 1.504800 -1.232764 0.710174 -2.664452 1.140517 -1.753462 -2.188462 1.813195 -1.484606 -1.222236 3.286636 -2.203027 -1.742492 -1.417093 0.206207 0.825908 2.294433 1.003665 1.201629 3.919478 2.081943 2.329233 -2.521708 -0.370232 1.202708 2.341625 1.285220 1.487577 -1.869764 -2.500879 1.261333 -2.163366 -5.169657 -1.907239 2.442202 3.811076 0.324476 -2.289190 0.794113 -1.442158 2.660902 3.243932 1.011925 0.976315 0.265751 -2.985114 1.213525 4.540048 -2.222376 2.711198 -0.993320 -1.024617 2.819950 -1.861477 1.430182 0.227097 -0.451530 -0.264090 -2.390034 -0.809332 4.090596 1.202280 0.692936 -0.628597 1.821888 -1.471806 -4.223328 -6.118820 -1.265986 3.456356 1.305814 4.351781 -2.930260 -1.317606 -0.603982 3.101090 -0.529666 -2.473475 0.978212 -1.895253 1.317263 -6.038928 -4.675887 7.338091 5.843590 2.555381 -0.474718 2.199157 2.249365 -3.351163 -2.383088 -1.795787 1.631764 0.520763 -4.246198 -2.228946 1.154724 -3.985633 -1.849814 -0.569787 0.798439 0.661959 -0.602376 2.311042 0.210110 -1.533478 -0.915075 1.859489 -1.893007 -2.121707 -0.561894 0.457845 1.144590 1.621436 -1.273539 -0.374221 1.056599 -3.166492 -1.016210 0.957236 3.312021 1.794289 5.431492 5.236554 -0.837264 2.028463 -0.479703 -2.874683 4.410489 -2.161414 0.072991 -0.285600 1.338221 0.534852 1.210564 3.023170 -1.499444 -2.488461 -3.502144 -0.179751 0.597215 1.479821 -1.691754 -3.192102 -4.941971 0.358831 0.085323 4.300306 -0.442405 6.422397 -1.608551 0.769542 -6.064699 0.329349 2.429980 -0.843520 2.392691 1.643713 -2.572756 -3.060391 -1.432026 -3.309552 -1.023779 0.129802 -1.164648 -1.901224 -2.292213 2.905388 -2.914632 1.139930 1.569874 0.688590 3.914132 0.953665 -0.185478 -2.740287 1.718709 3.167716 0.922378 -2.487816 3.146495 0.702272 7.827717 -0.787594 1.719490 -1.903567 0.394679 -0.857993 -2.580548 -1.787133 3.809825 4.818840 1.658368 0.165339 0.079336 -0.579089 3.737631 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.775468 1.765144 17.921266 6.795935 -7.961182 -12.873768 -4.710481 -19.963400 10.513781 7.087764 17.417930 0.025903 9.960791 -5.006805 1.350056 2.691004 10.971271 -4.258451 0.261678 -6.964267 -2.860839 16.639490 5.525148 -3.192069 3.788198 -13.200047 5.400436 2.367262 6.576422 9.422089 3.731559 0.210839 -2.589692 5.312960 -1.088911 6.826124 2.503730 4.844294 -6.851426 -2.446161 2.415484 -4.192046 9.879936 1.831149 12.787508 -0.242772 8.535979 -1.686195 -11.669793 -6.634078 -6.475040 12.385111 -9.392497 6.212145 0.441524 -1.393972 3.256486 -4.173209 -1.790498 -12.466901 -1.708174 -3.651724 -7.120054 -0.128921 -6.802690 3.839337 -5.393977 -4.385471 -0.317911 -3.563481 7.872193 2.724585 1.611121 2.463632 -13.847621 3.980319 3.757432 2.180695 7.853855 2.593755 -2.691287 -3.849786 -7.374990 -10.835535 13.559206 2.914868 3.663494 3.140991 -9.385099 1.518922 -2.394742 -0.030830 1.067645 7.765666 -12.672905 2.051355 4.139825 -6.625379 -6.100940 -12.509411 0.203770 -9.520801 1.663824 6.539778 -3.746577 1.271798 -10.880480 3.717905 -7.577240 -9.595485 5.366223 -5.149233 -5.986788 10.102249 -9.670376 -3.377323 -5.307789 1.220933 3.130535 8.081861 2.486054 5.917078 11.055062 7.985306 7.836931 -9.328280 -1.176898 3.866645 10.625789 4.249895 4.614608 -6.239241 -7.842917 4.357190 -7.694645 -18.646481 -7.553079 10.522577 12.526417 3.880380 -9.905374 2.356889 -4.207652 11.150754 11.472448 3.965072 2.710350 1.934731 -9.855574 4.934124 15.231146 -8.160910 10.635973 -2.827121 -4.671549 11.740099 -7.836836 5.582561 0.871358 -0.292699 -0.824161 -8.818282 -2.813241 13.593206 5.827225 3.718548 -3.153984 4.684153 -2.579042 -15.905040 -21.679467 -4.030974 12.117781 5.081852 15.747117 -9.776237 -6.142178 -1.027783 9.709991 -2.903888 -9.573733 2.729305 -7.206760 5.428887 -23.129969 -16.830001 25.632375 18.496686 8.025782 0.900131 8.530678 7.333486 -11.655946 -6.327206 -7.012593 7.691307 1.355428 -13.985942 -5.524264 2.826146 -14.591774 -5.551891 -2.649870 2.729260 1.358197 -1.951070 7.296925 0.893935 -6.281812 -1.605521 6.554249 -7.276211 -8.550276 -2.666850 0.502974 4.613579 5.526107 -4.167723 -0.914302 3.024268 -12.340207 -4.563785 2.666571 10.553726 6.221111 18.648984 19.504726 -2.395194 7.686531 -1.818842 -9.767417 14.580794 -7.548455 -0.249124 -1.599790 5.227561 2.857534 4.376910 10.958542 -4.572008 -9.500860 -11.750915 -0.370846 2.736001 7.169161 -7.396803 -13.545687 -15.990532 0.560853 3.126221 15.242116 -2.231397 22.306142 -6.030903 3.351322 -23.465393 1.169045 8.028507 -1.531284 7.925839 4.969552 -9.039505 -11.799753 -4.592451 -10.598053 -2.963690 0.290101 -5.073264 -6.504065 -9.995072 11.904133 -11.093615 2.893839 5.060447 1.228372 14.231843 6.407765 -1.101321 -8.898460 4.914190 9.436119 3.591725 -7.605170 12.257384 2.589341 27.920508 -3.422217 6.201699 -7.182198 3.922264 -2.943750 -8.366877 -4.694785 13.299328 18.175158 3.854849 0.303396 0.202509 -3.173155 11.595337 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.081431 0.970725 3.042871 1.182234 -1.656547 -2.238039 -0.718126 -3.843688 1.794894 1.650861 2.340125 -0.186484 1.509094 -0.432073 -0.549594 0.384066 1.381727 -0.012491 -0.143751 -1.456918 -1.591593 2.391919 0.047240 -0.126512 0.875406 -3.036778 2.407380 0.155309 1.250247 1.602089 0.859969 0.296828 -0.503172 1.338390 -0.237305 0.667187 -0.032214 1.158555 -0.859728 0.328052 0.950921 -0.324309 1.579820 1.371514 1.804431 1.196076 0.348105 -0.199776 -1.586502 -1.011116 -0.489267 0.675519 -1.189351 1.529336 -1.063868 -0.199248 0.471927 -0.540301 0.694464 -1.099633 0.120723 -0.833471 -0.993036 0.060887 -1.662583 0.317818 -1.274644 -1.542628 -0.560189 -0.457511 1.459136 0.282691 -0.312361 -0.108442 -2.795045 0.469907 0.708408 0.186646 1.970561 0.099123 -0.751191 -0.847669 -2.030840 -2.390645 2.284280 1.198995 0.635851 0.956220 -0.944786 -1.370969 -0.234638 -0.086346 1.049976 2.100722 -1.710077 0.128093 -0.379829 -0.877863 -0.819809 -2.753046 0.145558 -1.568906 0.722231 0.594397 -1.180468 0.597162 -0.153196 0.642298 -0.227422 -1.016731 0.827183 -1.233771 0.266461 2.399791 -0.228766 -1.874997 -0.924998 -0.392821 0.503267 1.425788 0.751988 -0.064531 3.143788 1.008901 1.452627 -1.575008 -0.414564 0.954021 0.266411 0.796028 0.914023 -1.485318 -1.458793 0.575257 -1.060815 -3.023787 -0.725194 0.470770 1.967445 -1.175189 -0.800928 1.125899 -1.176099 0.736741 1.912846 0.549828 0.845377 0.008731 -1.690221 0.614558 2.998175 -0.899594 0.874842 -1.262699 -1.097365 1.735157 -0.488480 0.740364 -0.124631 -0.584578 -0.301310 -1.265955 0.328610 2.575118 -0.415977 0.115739 0.413853 1.123307 -1.378378 -1.966378 -3.223315 -0.484931 2.275310 1.078973 3.027524 -2.048175 -0.041483 -0.363686 2.016960 0.318292 -0.772734 0.794165 -0.836412 0.788508 -3.406103 -2.783971 3.722162 3.093245 1.524362 -0.882093 0.921775 1.036658 -1.201748 -1.906939 -1.210535 0.606122 0.660827 -1.983999 -1.399634 0.790594 -2.139109 -0.935940 0.035719 0.482472 1.231770 -0.968146 0.924949 -0.804404 -0.828777 -1.716135 1.334559 -1.133365 -0.609212 -0.100740 0.374504 -0.007793 1.019407 -0.432145 -0.477848 0.305365 -0.922945 -0.070889 0.690791 1.624525 0.410755 2.923593 2.765206 -1.055343 0.450737 0.000810 -1.172836 3.423239 -1.287804 0.199813 0.326501 1.079561 0.162287 0.877115 1.784851 -1.031992 -0.912805 -2.276835 -0.060401 0.380198 0.252137 -1.266202 -0.813121 -3.308381 0.111147 -0.824797 2.774390 0.178240 3.860806 -0.635860 0.485401 -2.814219 0.199180 1.517910 -0.698454 1.755266 1.119842 -1.654695 -1.189461 -0.908244 -2.002619 -0.531438 -0.119741 -0.543839 -1.430574 -0.362190 0.483098 -1.173795 0.944993 1.457171 0.216350 1.560873 -0.857225 0.116930 -1.668212 0.704968 2.033220 0.253022 -1.556232 1.372985 0.262129 4.017716 -0.248858 1.331601 -0.926395 0.072957 -0.616454 -1.980093 -1.448227 2.290714 1.806748 1.317348 0.332513 0.167121 0.114734 2.371573 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -0.512802 1.581665 5.964147 4.196141 -5.010050 -4.834265 -1.446323 -6.600945 3.892900 2.030687 4.050275 0.087743 2.448045 -2.172775 -1.202643 0.343884 3.261353 1.075771 -1.705716 -2.993304 -3.484619 3.666584 0.561494 -3.450343 2.517724 -4.105090 4.501609 0.591905 1.444401 2.606003 1.984709 0.640368 -1.375795 2.844208 0.133036 1.881747 0.231810 1.603648 -2.475328 -0.512483 2.328401 -1.438744 3.398418 2.063405 3.945921 1.659378 1.855775 -0.241146 -4.937368 -1.160153 -1.190386 2.542149 -2.287098 3.225496 -0.512967 1.280559 1.159468 -2.844564 1.029606 -3.363744 0.250346 -1.724456 -2.678955 -0.280147 -3.561136 0.153035 -1.079453 -3.012839 -0.543242 -1.573778 1.933273 -0.143805 -1.087416 -1.015905 -3.824885 0.121577 1.682489 0.977773 3.895097 1.542256 -0.576065 -2.703807 -3.490032 -3.638009 3.719981 -0.074767 1.343858 2.151215 -1.263440 -2.393685 0.325397 -0.475961 1.641815 3.392107 -4.413338 -0.213127 -0.198251 -2.059139 -2.174126 -4.805383 0.723999 -2.511510 1.375756 1.570061 -3.675020 2.021152 0.219068 1.723237 -0.211938 -1.477791 0.988046 -2.278360 0.454879 4.373294 -0.354940 -4.148009 -1.417723 -0.864611 0.564715 2.961203 0.606618 0.230674 5.902246 2.190382 3.308292 -2.981868 -0.394342 1.252746 1.035712 1.762074 2.290244 -3.011313 -2.420658 1.341730 -1.877323 -6.188252 -1.346527 0.771078 4.126758 -0.108804 -3.458901 1.032681 -1.767558 1.956974 1.877559 1.808402 1.103429 -0.049906 -3.229538 0.482351 5.225728 -1.715160 1.682285 -1.690432 -2.144597 2.864045 -0.096701 0.778290 -0.867929 -1.721715 0.146132 -2.302181 0.325439 4.545114 -0.633489 -1.471864 0.395328 1.828442 -3.486692 -4.889169 -6.387268 -0.530056 3.929347 2.367339 6.704424 -4.523684 -0.951182 -1.999421 3.717724 -0.719939 -1.176115 1.142966 -2.393122 2.078926 -5.775420 -5.841237 7.811546 4.997786 2.344645 -1.112918 2.628986 0.066967 -3.108634 -3.381341 -3.003841 0.603206 2.497377 -2.082667 -1.638252 1.218508 -5.184396 -1.482308 0.711262 1.248115 2.692870 -2.127148 1.513383 -1.438736 -1.461585 -3.314889 1.957337 -1.781522 -0.813989 0.240444 0.635562 0.727950 2.529648 -0.634701 -2.425972 -0.997911 -1.971965 -0.934536 0.747609 4.008990 0.970878 6.474650 6.192240 -1.548119 2.169437 0.277282 -3.048616 7.552327 -2.375616 0.806399 0.333012 2.223141 0.934484 1.099275 4.346894 -1.995581 -1.289511 -3.982224 -0.821178 0.139188 1.242991 -5.045772 -1.761845 -6.130050 -0.284260 -1.370509 4.118308 -0.229290 7.088378 -1.287123 0.500831 -7.051734 0.149089 4.612996 -1.003830 2.833942 2.306001 -4.047736 -4.511161 -1.196693 -3.673644 -0.338678 -0.547405 0.210684 -2.942756 -0.306841 2.143763 -2.001398 1.625907 4.487763 -0.058061 3.104188 -1.240078 0.700306 -1.414243 -0.321709 3.114185 0.724345 -2.835482 3.441890 1.206657 8.826442 0.626292 2.292426 -1.996375 0.167111 -0.996123 -3.841195 -3.216913 3.710417 4.056696 2.307032 1.104511 0.699600 -1.234831 4.855823 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.405048 0.210521 1.434332 1.170063 -0.762590 -1.817033 -0.360347 -1.779161 1.035441 0.464121 1.556587 0.196648 1.236835 -0.717860 0.128041 0.084859 1.051118 0.099018 -0.055374 -0.566965 -0.504387 2.055855 0.468280 -0.721422 0.242827 -0.708337 0.771083 0.768950 0.714084 1.204685 0.255890 0.119168 -0.088498 0.502799 -0.706887 0.234077 -0.474170 0.683009 -0.764871 -0.498152 0.339845 -0.645416 1.357545 0.150678 0.874242 -0.020520 1.118975 -0.111731 -0.917861 -0.680066 -0.833661 0.964045 -0.738221 0.730940 -0.597688 -0.349749 0.798467 0.074705 0.064501 -1.363607 0.132964 -0.231264 -0.997644 -0.247058 -0.916804 0.192926 -0.481602 -0.916892 -0.073328 -0.461162 0.680828 0.171246 -0.101018 -0.530383 -1.908752 0.125368 0.396211 0.177567 0.766652 0.794091 -0.257908 -0.577589 -0.956920 -0.977898 1.440163 0.118744 0.472742 0.797028 -1.230179 -0.365447 -0.081025 0.281283 0.391655 0.548244 -0.764569 0.534509 0.435534 -0.449279 -0.473700 -1.170774 0.237470 -0.798465 0.148717 0.428453 0.023948 0.165055 -0.759504 0.232147 -0.748354 -1.253913 0.385124 -0.787473 -0.759526 1.063256 -0.692237 -0.423692 -0.388188 0.138972 0.253820 0.877766 0.292160 0.419319 0.897627 0.622383 0.596184 -1.114237 -0.033722 0.459211 0.898495 0.512374 0.245438 -0.336638 -0.771711 0.404565 -0.911475 -2.032355 -0.703284 1.333177 1.153441 0.040615 -1.042097 0.905380 -0.526457 0.847417 1.249146 0.432988 0.462513 0.315303 -0.959848 0.468761 1.485749 -0.706028 0.972689 -0.204647 -0.965274 1.599890 -0.482739 0.494161 -0.030700 -0.364736 -0.075400 -0.537657 0.238584 1.377550 0.338222 0.332692 -0.047534 0.332061 -0.556595 -1.527405 -2.143709 -0.235020 1.494177 1.044075 2.019236 -1.014683 -0.461960 0.199688 0.612086 -0.524491 -0.876867 0.311556 -0.743303 0.732683 -3.074096 -1.760824 2.432715 1.214399 0.835163 0.178872 0.794561 0.626676 -0.363990 -0.739379 -0.738800 0.692584 0.456110 -1.151087 -0.267679 0.180998 -1.582882 -0.346227 -0.043909 0.163671 -0.004119 -0.556525 0.736701 -0.985480 -0.711790 -0.433113 0.519989 -0.925358 -0.377091 -0.230837 -0.130899 0.150747 0.468825 -0.109258 -0.087376 -0.063041 -0.992844 -0.340763 -0.240374 0.785805 0.527886 1.871534 2.210540 -0.623361 0.687341 -0.092107 -0.959103 2.129903 -1.021301 0.015181 -0.133801 1.212476 0.553835 0.543526 1.247408 -0.478284 -0.493789 -1.384315 -0.100278 0.956252 0.602273 -1.233860 -0.796265 -1.877474 -0.009623 -0.054005 1.924310 -0.447476 2.208795 -0.962978 0.411411 -2.361826 0.245199 0.484528 -0.146762 0.930456 0.443846 -0.955445 -0.962214 -0.478047 -1.030628 -0.055418 -0.073377 -0.711719 -0.643518 -0.618991 0.323709 -1.372559 0.312585 0.698085 -0.521175 1.166598 -0.040284 -0.052439 -0.714103 0.332581 0.854587 0.312423 -0.739410 1.099918 0.118865 2.658937 -0.084380 0.979467 -0.777050 0.882554 -0.525559 -1.237782 -0.632691 1.481442 1.596685 0.162198 0.398392 0.401169 0.041528 1.060075 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = 0.164375 0.324627 0.600767 0.168004 -0.092430 -0.273243 -0.104435 -0.528583 0.138569 -0.000851 0.227614 -0.206050 0.132944 0.093616 -0.071975 0.010287 0.174562 0.200061 0.049141 -0.108613 -0.083730 0.254784 -0.093795 -0.228619 0.100628 -0.405151 0.163700 0.199195 0.318404 0.242263 -0.064761 -0.025771 -0.053365 0.181670 -0.268321 -0.267866 0.233320 0.080962 -0.422381 0.067048 -0.111193 0.281606 0.122569 -0.067426 0.104695 0.329815 -0.056223 0.091129 -0.104371 0.065547 -0.037339 0.358356 0.021519 0.244477 0.045463 -0.058589 -0.047680 -0.152259 -0.015894 -0.078319 0.057977 0.176319 0.023838 -0.002513 -0.306674 0.007780 -0.043282 -0.301957 0.153881 0.071625 0.151984 0.026174 0.083644 -0.137949 -0.331191 0.234864 0.176656 0.268616 0.162560 -0.142976 0.272130 0.088720 -0.145491 -0.244146 0.103157 0.243960 0.169815 0.059102 -0.002346 -0.241771 0.133528 -0.087685 -0.006455 0.249619 0.013189 0.200075 -0.476577 -0.003763 -0.179829 -0.506126 -0.060090 -0.141155 0.152172 0.028934 0.036154 0.184905 0.288589 0.305649 0.166950 -0.236738 0.114423 -0.008333 -0.029157 0.450836 0.036768 -0.198369 0.005526 -0.091662 -0.262491 0.291117 -0.003971 0.095681 0.097317 0.269793 0.127895 -0.198230 -0.132284 0.077685 -0.009585 0.275758 0.321847 -0.399382 -0.149979 0.000994 -0.195694 -0.479826 0.050388 -0.014767 0.263416 -0.224892 -0.153830 0.086842 -0.267474 0.236376 0.029926 0.090922 0.102872 -0.140812 -0.127129 0.210227 0.423795 -0.208589 0.167378 -0.225084 -0.150185 -0.073333 0.109042 0.176040 -0.131129 -0.064098 0.180760 -0.225784 0.042319 0.350310 0.154941 0.055389 0.191167 -0.008319 -0.288525 -0.429851 -0.267033 0.000750 0.119294 -0.253854 0.446828 -0.127424 -0.405507 -0.139138 0.430983 -0.177996 0.077760 0.090770 -0.215246 0.151847 -0.233041 -0.403440 0.368581 0.442994 0.074010 -0.218124 0.199015 0.073607 -0.209258 -0.283427 -0.086352 0.050103 -0.010551 -0.411674 -0.355558 -0.023667 -0.238697 0.080871 0.118853 0.122995 0.175379 0.235619 -0.043515 -0.021068 -0.387520 -0.322412 0.243226 -0.251711 0.118294 0.147164 0.040140 -0.049241 0.194076 -0.317419 -0.250014 0.264331 -0.171479 0.038372 0.039155 0.188350 -0.038467 0.334150 0.149398 0.182954 0.415039 0.211630 -0.305728 0.692039 -0.097707 0.108785 0.042015 0.062053 -0.267538 0.178429 0.117548 -0.103664 -0.320126 -0.446348 -0.174184 -0.063447 0.099297 -0.030766 -0.332676 -0.159953 -0.109163 0.046936 0.254671 0.070068 0.489410 -0.034066 0.126049 -0.437247 0.032313 0.169736 -0.121856 0.240198 0.231481 -0.281310 -0.577496 0.017381 -0.231387 -0.343590 -0.160272 -0.452295 -0.160302 -0.150236 0.130648 0.010666 0.105725 0.396843 0.122614 0.185408 -0.174284 -0.047014 -0.145720 -0.077747 0.287856 -0.060810 -0.301264 0.060031 0.100062 0.813119 0.003213 0.198448 -0.269179 -0.249646 0.134210 -0.105169 -0.116682 0.346835 0.198761 0.218346 -0.015788 0.021491 -0.160461 0.196602 -PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::construct(std::allocator&, queueEntry*, queueEntry const&) = -0.347535 0.208124 1.447001 0.965723 -0.941968 -1.405059 -0.332118 -1.861421 1.145149 0.587744 1.282680 0.392242 1.236553 -0.796479 -0.187936 -0.361236 0.981627 0.104628 0.061162 -0.571477 -0.348542 1.899354 0.132229 -0.558810 0.220233 -1.019952 1.342076 0.397331 0.897641 1.487116 0.345536 0.082624 -0.555814 0.474879 -0.218319 0.086065 -0.300884 0.661808 -0.766459 -0.398200 0.456474 -0.736390 1.290127 0.256541 0.877723 -0.138237 0.327201 -0.052120 -0.660222 -0.667057 -0.416239 0.110937 -0.687097 0.751116 -0.369336 -0.453643 0.459269 0.305902 0.263053 -0.974977 0.284736 -0.634585 -0.628181 -0.064057 -1.013658 0.129546 -0.906275 -0.819503 -0.250915 -0.928565 0.478715 0.154303 0.155729 -0.503413 -2.067376 0.057465 0.310713 0.081314 0.890422 1.004799 -0.358687 -0.688777 -1.037685 -1.000428 0.939282 0.557018 0.085997 0.685840 -1.098184 -0.541326 0.125463 0.310428 0.544993 0.621092 -0.827522 0.384756 -0.362126 -0.293108 0.084626 -1.583487 0.324272 -0.706747 0.261658 0.239664 -0.483598 0.050954 -0.143522 0.186010 -0.342991 -0.926509 0.536697 -0.724976 -0.335744 1.369074 -0.303417 -0.733678 -0.793614 -0.058741 0.416451 0.743875 0.169290 0.273234 0.768966 0.575752 0.811807 -1.185340 -0.166943 0.986116 0.401293 0.314112 0.128048 -0.373411 -0.544283 0.451116 -0.773935 -1.831291 -0.647773 0.690201 1.018135 -0.325518 -0.442414 0.469261 -0.762063 0.528752 1.212428 0.376540 0.512538 0.385143 -0.940230 0.429517 1.315304 -0.373098 0.531208 -0.365791 -0.919492 1.422760 -0.268144 0.509987 -0.490383 -0.156935 -0.117493 -0.494717 0.421152 1.268934 -0.238809 0.404616 -0.155797 0.346675 -0.636259 -1.356447 -1.853239 -0.205051 1.799468 1.295094 1.608849 -1.069442 -0.021902 0.246712 0.738026 0.202106 -0.705792 0.571945 -0.570306 0.743538 -2.840568 -1.610527 1.973330 1.264442 0.669643 -0.104507 0.281833 0.482180 -0.392316 -0.851522 -0.871663 0.501732 0.174426 -1.084039 -0.317171 0.292950 -1.332202 -0.376502 0.356547 0.162428 0.756708 -0.783663 0.680005 -0.750994 -0.256932 -1.041209 1.104365 -0.677269 -0.371975 -0.188952 -0.051902 0.135019 0.521000 0.039185 -0.080513 0.066189 -0.380757 -0.119789 -0.093795 0.431019 -0.039288 1.400606 1.690509 -0.691263 -0.160565 -0.040946 -0.782997 2.406383 -1.012773 0.137538 0.102274 0.814146 0.493288 0.586382 1.067986 -0.578930 -0.313983 -1.278918 -0.433066 0.580831 0.678182 -1.413756 -0.951804 -1.717858 0.270320 -0.397036 1.557412 -0.085748 2.179658 -0.872587 0.374712 -1.741318 0.149514 0.829553 -0.124705 1.229107 0.367524 -0.854290 -0.470587 -0.462112 -1.093049 0.294086 -0.170049 -0.537823 -0.636938 -0.233286 0.292752 -0.777247 0.282740 0.614218 -0.655192 1.181136 -0.413974 0.029385 -0.890329 0.251195 0.384586 0.228217 -0.688356 1.101719 0.151638 1.924423 -0.072282 0.667524 -0.449390 0.923049 -0.747970 -1.481512 -0.664298 1.386501 1.171069 0.506941 0.107085 0.192408 0.070632 0.832779 -PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = -4.431965 -0.040724 8.587131 0.896582 -3.589541 -4.770756 -2.414773 -10.464752 5.112027 3.986978 9.629064 0.479603 5.744181 -2.796765 1.248877 -0.147963 5.442500 -3.801696 2.124166 -2.444548 1.850895 8.373956 2.073832 1.355128 0.655993 -5.955912 1.728720 0.167903 3.906746 5.098485 1.704017 -1.002200 -3.070287 1.308158 1.002044 3.573101 2.785290 2.707331 -3.328323 -1.540612 -0.768182 -4.328495 4.507223 -1.091910 6.929883 -3.361170 2.438431 -0.858311 -5.156117 -4.459724 -1.681122 4.295762 -4.874590 2.234854 2.829382 -3.408097 -0.268721 0.771706 -1.113149 -6.044131 -0.344382 -4.026637 -1.542774 0.734642 -2.113749 2.445340 -4.126760 -0.609617 -0.213323 -4.112499 2.815535 1.651986 3.523851 4.283116 -7.973948 2.091593 1.719474 0.203566 2.426429 2.661541 -0.741862 -2.010150 -2.438535 -5.143173 4.909909 4.469603 0.606307 0.298368 -7.384554 3.967431 -0.140666 0.453101 0.274354 2.990606 -7.004963 0.781144 0.575210 -2.949421 -0.993884 -8.165710 0.013738 -5.097903 0.841626 2.872119 -1.917934 -1.230123 -7.036126 1.738414 -4.434518 -5.277536 3.893413 -2.073795 -3.136937 5.361239 -6.162190 -0.138392 -4.569255 1.105290 2.988190 2.251118 0.425789 4.037124 2.163886 3.849933 4.642090 -5.430313 -1.170202 4.256999 6.116850 0.962221 0.402326 -1.966057 -2.492460 2.624285 -4.870388 -8.591668 -5.471195 5.028655 6.184918 2.028842 -2.727617 -1.627701 -2.661320 6.429162 6.858509 1.983289 0.648061 2.684457 -5.119765 2.138490 4.881401 -3.460378 5.579075 0.766007 -1.058151 4.547974 -4.282783 3.658944 0.141096 2.109435 -0.962280 -4.462156 -2.374744 5.906093 3.643880 4.518523 -5.144924 2.038123 -1.063459 -7.712049 -10.932674 -2.494249 8.122594 3.048300 3.927259 -4.492273 -3.856755 1.723855 5.321164 0.633751 -7.122032 2.219346 -3.174795 3.135915 -11.183144 -7.710221 10.826239 10.661982 3.885193 1.176757 3.044998 4.283630 -8.572560 -2.641507 -3.479135 4.562314 -2.819148 -9.523160 -3.365921 2.035244 -6.386282 -2.727461 -1.144813 1.002555 1.069347 0.272801 5.583383 3.694270 -0.752045 0.512046 5.030304 -2.140912 -6.063952 -2.411509 0.314565 4.023327 2.779784 -2.760495 0.990711 3.344903 -6.568138 -1.685847 1.454867 2.994232 2.000790 9.177492 8.119135 -0.887416 1.238533 -2.279204 -4.699450 5.559766 -4.240794 -0.338733 -1.417997 0.457107 1.556890 2.325566 5.189701 -2.579790 -5.632557 -5.486972 -2.374654 0.512525 5.479766 -2.467460 -10.055246 -6.796833 2.643032 1.904268 6.364661 -0.262700 10.864980 -3.396353 2.157916 -10.598826 0.286839 3.145958 -0.597333 5.034105 0.899413 -3.050871 -4.449754 -2.027153 -5.803526 -1.781531 0.259523 -2.862115 -1.893787 -6.097990 7.869576 -4.151936 -0.119298 -0.666031 0.486108 9.071639 5.398982 -1.683923 -5.570143 3.842412 3.286802 1.187433 -3.216527 7.241687 1.725984 12.778061 -2.909050 0.784015 -2.090302 3.471036 -2.101181 -4.453176 -1.353848 6.959382 9.836792 3.022025 -3.105202 -0.789238 -2.249463 3.565052 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::construct(queueEntry*, queueEntry const&) = -0.726521 0.080180 1.499614 0.698560 -1.129178 -1.025171 -0.386591 -1.825708 1.099291 0.727905 1.400953 0.457828 1.241546 -0.799575 -0.198541 -0.710628 1.019193 -0.261445 0.312578 -0.522875 -0.134398 1.757262 0.236941 -0.231867 0.175109 -1.100736 1.484561 -0.070525 0.851707 1.647925 0.397199 -0.058138 -0.953647 0.363033 0.312394 0.246780 -0.012135 0.701774 -0.597760 -0.312563 0.429328 -1.080199 1.179491 0.156898 0.997244 -0.354891 -0.110072 -0.080231 -0.835602 -0.841300 -0.160901 -0.346856 -0.931445 0.693120 0.126755 -0.633550 0.221490 0.515169 0.166768 -1.100636 0.228704 -1.196337 -0.284503 0.137748 -0.931315 0.234271 -1.315108 -0.546277 -0.288474 -1.216032 0.420226 0.285043 0.623015 0.083857 -1.922070 0.166351 0.251036 0.032672 0.819839 1.114287 -0.459458 -0.636587 -0.961045 -1.060341 0.572875 0.671140 -0.108699 0.324771 -1.156239 -0.076333 0.282642 0.320195 0.427247 0.624680 -1.015441 0.298713 -0.636778 -0.289306 0.391692 -1.976699 0.210972 -0.811420 0.278545 0.450788 -0.948204 -0.262455 -0.441194 0.207199 -0.341364 -0.928914 0.813577 -0.638183 -0.331757 1.334270 -0.505237 -0.594270 -1.045589 -0.041632 0.785748 0.564259 0.116082 0.426067 0.462911 0.611406 1.019435 -1.179272 -0.202000 1.208295 0.474120 0.050744 0.034440 -0.260143 -0.439317 0.572325 -0.794187 -1.661462 -0.829471 0.592192 1.049601 -0.121566 -0.232555 -0.016454 -0.889711 0.552519 1.318947 0.503978 0.463113 0.497855 -0.962067 0.398689 1.032253 -0.322337 0.505307 -0.094637 -0.784489 1.420648 -0.367311 0.613890 -0.599073 0.264558 -0.152619 -0.689012 0.148718 1.201726 -0.165515 0.658370 -0.476393 0.359478 -0.480611 -1.402311 -1.796898 -0.211612 2.132586 1.375448 1.050072 -1.110722 0.153750 0.428802 0.899487 0.671213 -0.989091 0.555548 -0.315421 0.682210 -2.856702 -1.545973 1.855108 1.489353 0.514285 -0.073618 -0.037287 0.584075 -0.806956 -0.845595 -1.113287 0.585527 -0.393689 -1.175888 -0.489461 0.443075 -1.210439 -0.431938 0.461610 0.163621 1.196262 -0.892772 0.615092 -0.069370 0.108375 -0.951279 1.414011 -0.498149 -0.807719 -0.250096 -0.013013 0.490276 0.495597 0.116376 0.061628 0.216896 -0.406393 -0.200656 0.096557 0.336089 -0.219467 1.427730 1.435196 -0.647766 -0.907247 -0.155703 -0.802404 2.309018 -1.084696 0.079154 0.044580 0.524693 0.551633 0.536657 1.108861 -0.613386 -0.578400 -1.150852 -0.621744 0.252814 0.871981 -1.553639 -1.492596 -1.639860 0.654475 -0.306303 1.311631 0.119010 2.242251 -0.759192 0.311035 -1.495033 0.052597 1.041980 -0.091298 1.402579 0.225739 -0.660576 -0.258560 -0.548791 -1.193907 0.672156 -0.161397 -0.339123 -0.462794 -0.214478 0.596725 -0.393377 0.184992 0.216700 -0.607502 1.482356 0.137662 -0.101625 -1.128522 0.378735 0.139197 0.243613 -0.623937 1.503139 0.274747 1.656321 -0.200908 0.186514 -0.230731 0.905836 -0.824701 -1.398894 -0.522531 1.334138 1.271295 0.756532 -0.238313 0.046206 -0.076985 0.617254 -PE-benchmarks/snake-ladder.cpp__queueEntry const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.249420 1.174413 5.973988 3.222001 0.337443 -1.326881 -0.927125 -3.945835 2.257588 0.957170 4.801899 -1.901283 1.989524 0.518906 -0.411250 -1.199838 2.390196 -1.448456 1.136107 -0.569239 2.856792 4.459218 1.580974 -2.399634 0.378157 -4.656675 1.578493 1.417685 1.811006 2.327090 0.769665 2.014165 1.281801 1.069763 -1.904908 -0.118970 -0.112711 1.649357 -1.272665 -1.444721 0.497790 0.558907 0.959053 0.812974 2.577132 0.709676 3.132284 -1.602268 -1.444039 -0.856629 -4.339290 4.152506 -2.158659 -0.421086 -1.547185 -1.058317 1.555633 -1.788610 -1.080571 -5.232241 0.301424 1.574051 -1.654414 0.087216 -2.341649 2.738442 -0.087279 0.357673 0.185060 -0.250530 2.334828 1.670834 1.822742 0.073947 -3.700519 2.764332 -0.247519 0.576359 1.177769 -0.524095 -0.519328 1.558981 -0.845905 -2.350706 3.643248 1.671583 1.194400 0.468379 0.098859 0.018365 -2.090197 -0.327294 -2.274081 2.603052 -2.447586 2.689557 1.080399 -1.274053 -0.986056 0.472112 -0.352296 -3.573238 -0.033364 3.635530 -0.839453 1.424464 -2.596909 0.505527 -1.322166 -3.454132 0.877000 -2.021211 -1.164486 2.720344 -3.857066 0.084954 -1.515615 1.546393 1.051051 2.956254 -2.097749 3.426389 0.869817 1.885975 0.390403 -1.766876 0.872197 2.316997 2.444390 1.203846 1.106391 -2.021010 -2.115130 -1.666634 -0.003799 -3.730933 -1.511768 2.873019 2.988780 0.877857 -5.329667 2.536391 -0.680352 4.265024 3.775979 1.023025 0.646809 1.981137 -2.381391 1.572831 5.371759 -2.326933 2.710779 -1.045172 -0.925873 3.191996 -2.177550 2.621074 0.408807 1.507549 1.106232 -3.193149 -1.392009 3.269144 2.566674 1.474833 1.661828 0.326074 2.355877 -5.225446 -5.230287 -2.242945 1.746911 -0.352008 4.457726 -1.971148 -1.545710 -0.187309 2.461544 -0.670249 -1.625371 -0.507964 -1.545388 0.839417 -6.340386 -5.187472 4.261957 3.794161 0.179197 1.396017 2.619105 2.238292 -0.693471 -1.100986 -0.635813 3.560381 -1.050499 -0.728860 -0.234199 -0.363579 -2.561365 -3.043875 -0.569789 0.361452 -0.160326 -0.744283 1.171155 0.020508 -2.603796 -0.744956 -0.216493 -3.103480 -3.817337 -0.809767 -0.075540 1.141307 0.629875 -1.956934 0.754687 2.626059 -2.802723 -2.143872 0.450113 1.243734 0.741646 2.240409 4.833518 0.660304 1.502188 0.607377 -2.247390 5.500660 -0.301999 -0.778857 -0.850227 0.034054 1.048808 1.624406 0.715329 -1.068453 -2.465884 -4.197312 2.372649 0.087481 1.985070 -2.731530 -2.606190 -2.293334 -0.583300 3.114560 3.033834 -0.156240 6.827752 -1.113516 -0.835852 -6.174336 0.078258 3.091391 -0.465849 1.850748 1.893384 -2.471120 -3.378763 -0.722619 -1.454848 0.901292 -1.407000 -4.271290 -2.868254 -2.342991 3.411314 -3.208885 1.507979 2.077273 1.694838 1.971856 2.227725 -0.961770 -1.559052 0.025263 0.894980 2.118800 -2.340160 3.145008 -1.931705 5.429207 -3.256963 1.789030 -3.128629 2.288990 -1.010603 -1.088373 -0.003245 5.530529 3.312596 0.150965 -0.078290 -1.488973 -1.166245 2.912691 -PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.805539 -1.245980 28.420261 6.344870 -9.175580 -13.278125 -8.662385 -29.048297 15.531101 12.435024 31.568507 0.208317 16.863709 -7.950898 3.922275 -4.129995 16.051966 -15.041327 5.495605 -7.338535 5.711417 25.906302 11.118016 -1.064584 1.717074 -21.535961 6.742903 0.759927 8.640375 17.251221 4.977048 -1.163485 -6.879051 6.013453 -0.206448 10.791109 8.608391 8.498973 -6.246563 -6.503884 2.241160 -6.435791 13.739195 -2.079364 22.045022 -5.541383 8.167836 -4.339218 -17.916500 -14.043522 -5.983722 14.790311 -17.250115 5.930420 8.745182 -5.836926 2.777533 -3.915252 -5.372756 -25.419311 -0.415264 -7.781674 -5.656717 2.090575 -7.003779 8.450770 -9.795665 -0.667399 1.454532 -12.106356 10.757998 5.477730 10.769276 10.720704 -18.701986 9.826180 4.285109 0.738846 8.167847 5.679863 -5.935407 -3.301473 -6.483778 -16.144797 15.053249 9.301083 2.573912 1.390814 -16.430878 11.338209 -1.311064 -0.314805 -2.813568 11.366894 -19.110078 3.230349 7.458098 -10.055125 -4.526441 -17.679113 -0.777669 -17.477449 2.126520 16.802128 -8.201226 -3.704374 -23.964266 4.550114 -15.212812 -17.033437 12.413671 -7.764965 -8.719390 13.710647 -22.508612 0.890914 -12.264671 3.889620 11.193301 11.080061 0.423670 13.261097 8.328984 12.955796 11.979637 -16.125920 -1.191822 11.103372 21.210380 3.107139 3.037546 -9.311918 -8.802627 6.683568 -13.338328 -25.893247 -15.546733 16.114863 19.295893 9.611540 -16.733461 1.535254 -6.942708 21.255043 21.777598 7.606243 2.285632 7.362396 -16.238666 8.032158 18.192942 -12.072622 18.096415 1.637695 -7.470350 17.812603 -15.591823 12.581353 2.960174 7.027350 -1.084514 -16.580466 -6.370958 19.655770 13.294906 15.045989 -11.801329 5.931289 2.719897 -25.884810 -34.847813 -7.100681 21.456799 8.606254 17.988873 -14.263874 -11.298303 3.166917 18.417850 -0.254443 -21.030244 3.464214 -7.748757 8.350414 -38.017887 -25.314530 36.076207 32.518084 10.869276 4.628731 12.094583 13.129500 -20.185606 -5.760543 -11.626420 16.152752 -6.631142 -21.120823 -5.895520 4.587757 -19.188532 -11.076040 -4.843796 2.978695 3.344734 -4.424770 10.135940 10.509714 -5.759809 2.148668 11.812773 -9.763288 -20.304174 -7.724840 1.012526 11.787334 7.431476 -7.489441 1.755448 9.155796 -21.263727 -8.423869 6.077361 12.457127 8.909384 27.274880 25.684543 -3.207048 4.172986 -4.801464 -13.185698 20.756150 -12.840029 -3.212114 -4.092431 5.073921 7.727052 6.836017 14.588203 -7.369331 -16.833809 -17.568270 -0.540936 1.928240 15.858200 -14.401833 -29.837546 -21.883012 5.383587 8.463938 20.238571 -1.515758 36.989211 -8.045681 4.003938 -34.981365 0.258793 12.766353 -1.412401 13.075662 5.137830 -10.661602 -19.049227 -7.326588 -16.565454 -0.726642 0.286406 -10.243065 -6.922953 -19.585647 25.861321 -14.394562 2.943471 2.119285 2.989027 24.392895 20.099434 -5.475513 -16.595977 8.485600 6.786779 5.776425 -10.632988 24.834252 2.750752 38.656845 -11.845413 4.911534 -9.851088 12.791050 -7.208619 -10.985091 -3.039234 22.045150 30.161657 7.065047 -6.290561 -1.760179 -8.440912 13.064405 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry* const*, queueEntry* const*, queueEntry**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry* const*, queueEntry* const*, queueEntry**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = -1.195304 -0.113724 1.743518 -0.010097 -0.689619 -0.997551 -0.552445 -2.140581 0.956429 0.915168 2.187472 0.076023 1.332956 -0.631564 0.369869 -0.142500 1.105604 -1.001142 0.607590 -0.451443 0.394043 1.672579 0.555363 0.518763 0.093039 -1.171773 0.372834 -0.145173 0.632868 1.247862 0.345419 -0.264654 -0.759615 0.205532 0.345475 0.927324 0.735752 0.665782 -0.466006 -0.280493 -0.232041 -1.075234 0.857746 -0.295120 1.530688 -0.604719 0.317148 -0.166648 -1.140288 -1.102918 -0.225936 0.660678 -1.238978 0.401326 0.641643 -0.857170 -0.057795 0.344726 -0.323301 -1.605081 -0.064904 -1.123642 -0.242334 0.232097 -0.392741 0.614809 -0.991530 -0.108995 -0.089409 -0.884370 0.657857 0.468081 0.949168 1.277406 -1.533243 0.477284 0.345907 -0.008999 0.470635 0.454071 -0.266252 -0.402036 -0.464080 -1.121920 1.034243 0.868605 0.173452 -0.013544 -1.591830 1.144410 -0.009211 0.100326 0.094723 0.584798 -1.295641 0.129103 0.245473 -0.561030 -0.076642 -1.867387 -0.024526 -1.119510 0.148323 0.835274 -0.417628 -0.444269 -1.807993 0.444611 -1.153301 -1.236582 1.040821 -0.456481 -0.786702 0.965220 -1.491178 0.187704 -0.930980 0.240195 0.893353 0.459396 0.175793 0.947438 0.230542 0.851204 0.962718 -1.142583 -0.312397 0.930831 1.491706 0.102298 0.013326 -0.439609 -0.549751 0.657184 -1.242214 -1.753734 -1.273376 1.132578 1.297061 0.464336 -0.678037 -0.193409 -0.600762 1.278658 1.576351 0.509383 0.095656 0.590975 -1.149887 0.490478 0.858201 -0.794507 1.290294 0.431934 -0.202684 1.007567 -0.970398 0.730080 0.134942 0.538931 -0.200574 -0.976520 -0.630603 1.205483 1.044516 1.248055 -1.258687 0.494289 -0.253707 -1.662775 -2.218950 -0.541911 1.982488 0.591495 0.637955 -0.957405 -0.778451 0.504013 1.299304 0.177183 -1.677250 0.335577 -0.507644 0.637276 -2.514350 -1.604937 2.326889 2.248451 0.923990 0.322147 0.494181 1.096667 -1.868272 -0.432313 -0.798773 0.978967 -0.866831 -2.149760 -0.874451 0.431258 -1.339021 -0.624451 -0.291171 0.231388 0.192577 0.123109 1.069234 1.036959 0.027276 0.316308 1.006200 -0.434835 -1.439966 -0.561258 0.081428 1.029249 0.438941 -0.607911 0.403117 0.811389 -1.512339 -0.358822 0.437385 0.618331 0.534036 2.150421 1.618225 -0.283023 -0.122863 -0.582827 -0.990097 1.033135 -0.872546 -0.082962 -0.329551 0.199544 0.458744 0.399790 1.195198 -0.545002 -1.351633 -1.148304 -0.631288 0.215265 1.211171 -0.406752 -2.340469 -1.474540 0.749778 0.449763 1.431335 -0.079347 2.290330 -0.619944 0.476337 -2.065285 0.052890 0.609596 -0.204140 1.018646 0.129937 -0.474405 -1.011852 -0.524449 -1.281691 -0.424813 0.007798 -0.508589 -0.205933 -1.315454 1.655215 -0.780265 -0.125191 -0.412811 0.196224 1.979748 1.475817 -0.407570 -1.332583 0.972725 0.614901 0.222635 -0.694586 1.718406 0.479357 2.676369 -0.638589 0.012311 -0.380826 0.795856 -0.501864 -0.760681 -0.174685 1.457244 2.216941 0.662172 -0.663984 -0.092571 -0.413435 0.647947 -PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/snake-ladder.cpp__std::deque >::front() = -0.097386 0.250296 1.171000 0.149843 -0.300980 -1.022200 -0.291538 -1.709813 0.759083 0.561687 1.160791 -0.036041 0.934452 -0.331485 -0.010127 0.106457 0.599436 -0.144280 0.196193 -0.387354 -0.197501 1.243387 -0.133243 0.156438 0.176119 -0.993209 0.669610 0.324458 0.583557 0.841318 0.248236 0.046429 -0.243293 0.323275 -0.205763 0.292922 0.155934 0.485093 -0.435347 -0.103473 0.037708 -0.292067 0.715384 0.151940 0.777030 0.129708 0.158887 0.008879 -0.248422 -0.499746 -0.164017 0.349870 -0.422635 0.374309 -0.279153 -0.405110 0.155923 0.034448 0.128076 -0.433912 0.144021 -0.273986 -0.495476 0.046199 -0.556684 0.160534 -0.447806 -0.472101 -0.166571 -0.526437 0.398349 0.060369 -0.017062 -0.007413 -1.436235 0.103421 0.319791 -0.077162 0.546423 0.214248 -0.177535 -0.329992 -0.696484 -0.828510 0.990465 0.862259 0.227553 0.418312 -0.904190 -0.171476 -0.117342 0.106869 0.464545 0.632482 -0.526081 0.103122 -0.073314 -0.330993 -0.243713 -1.143852 0.284612 -0.576616 0.246899 0.101189 -0.058491 0.007160 -0.223994 0.257164 -0.362449 -0.650875 0.355457 -0.547008 -0.061288 0.985488 -0.316634 -0.404718 -0.661193 -0.171854 0.261898 0.516749 0.218488 0.124986 0.735564 0.434248 0.528575 -0.830690 -0.363635 0.656496 0.396492 0.273637 0.048791 -0.644074 -0.373281 0.312023 -0.780879 -1.371581 -0.577010 0.311608 0.666012 -0.526469 -0.281449 0.502518 -0.459115 0.383553 0.963341 0.161427 0.225992 0.284228 -0.671592 0.283569 0.947497 -0.374179 0.531889 -0.365437 -0.459780 0.615038 -0.260270 0.340940 -0.012372 -0.118318 -0.220306 -0.357108 0.258874 0.903417 0.061572 0.519550 -0.278397 0.319721 -0.507908 -0.764655 -1.410743 -0.241669 1.156187 0.484633 1.087610 -0.730552 -0.330392 0.141959 0.840645 0.027434 -0.541200 0.431903 -0.509194 0.502874 -1.503712 -1.083302 1.323316 1.095514 0.773643 -0.138533 0.363956 0.421491 -0.619843 -0.473181 -0.419187 0.466946 0.040814 -1.242465 -0.385665 0.138594 -0.923663 -0.234325 -0.149936 0.185805 0.172847 -0.008023 0.733570 -0.367987 -0.242096 -0.487399 0.659887 -0.367288 -0.281542 -0.245611 0.016154 0.007327 0.376605 -0.366293 0.046276 0.357418 -0.523921 0.073600 0.226172 0.221059 0.087282 1.233025 1.071124 -0.432599 0.225008 -0.236497 -0.407522 1.058303 -0.465166 0.100582 0.054008 0.428468 0.182947 0.420696 0.728996 -0.383816 -0.505484 -0.945918 -0.346116 0.411519 0.448670 -0.103438 -0.736273 -1.200107 0.087726 -0.197773 1.369760 0.012016 1.491157 -0.388722 0.490176 -1.186812 0.156320 0.262646 -0.240271 0.630468 0.211091 -0.588703 -0.435118 -0.228693 -0.877591 -0.757915 -0.045758 -0.474389 -0.508920 -0.557882 0.408568 -0.595905 0.043425 0.277138 -0.028360 0.726281 -0.161205 -0.014693 -0.718159 0.399746 0.677772 -0.051166 -0.546413 0.492013 0.185288 1.686872 -0.199486 0.622057 -0.294302 0.547550 -0.367681 -0.867892 -0.411194 1.005536 0.953552 0.342616 -0.107210 0.038463 0.078210 0.634006 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = -3.930153 -0.400710 6.365624 0.223880 -2.796484 -3.592085 -1.935861 -7.825850 3.867458 3.194719 7.430336 0.302980 4.266336 -2.579648 1.217794 0.311966 4.168120 -3.272561 1.122035 -2.021227 1.561125 5.267998 1.691465 1.011732 0.958504 -4.317160 0.739211 -0.240917 1.895105 3.388512 1.692127 -0.839397 -2.548219 1.040215 1.409117 3.983939 3.129957 1.758826 -2.111642 -1.197851 -0.644113 -2.904253 2.965700 -0.831260 6.028131 -2.268474 1.673083 -0.573573 -4.513579 -3.541225 -0.692886 3.610786 -3.919312 1.660039 2.740784 -1.823918 -0.441417 -0.305831 -0.963648 -5.179071 -0.353542 -3.162763 -1.269095 0.602449 -1.041671 1.781669 -2.146547 -0.061891 -0.295533 -3.319713 2.041822 0.876941 2.270530 4.063505 -4.646774 1.208199 1.380226 0.033424 1.984894 1.558266 -0.683879 -2.088266 -1.416359 -3.737963 3.898340 2.848193 0.639641 0.429074 -5.437962 3.746573 -0.312583 -0.147811 0.405278 2.167976 -5.654727 -0.524265 1.706698 -2.557961 -1.026827 -5.384008 0.327396 -3.606964 0.508466 2.507082 -1.618025 -0.936542 -5.987419 1.616019 -3.908837 -3.170292 3.252345 -1.477806 -2.207376 3.489669 -4.914577 -0.027387 -3.406181 0.637278 2.583482 1.757116 0.407393 2.901479 1.843337 2.950112 3.811486 -3.913424 -1.104609 2.909325 5.267417 0.641280 0.233097 -1.923708 -1.725332 2.372515 -4.211927 -6.147256 -4.498554 3.299937 4.874255 2.340263 -2.766246 -1.368665 -1.601958 4.751842 4.521889 1.543416 0.029304 1.990168 -4.109276 1.172371 3.210845 -2.711694 4.320856 1.205632 -0.066795 2.383372 -3.174927 2.253826 0.691439 1.187742 -0.764171 -3.184836 -2.161700 4.145656 3.382750 3.495328 -4.904931 2.012855 -1.142637 -5.698502 -8.403001 -2.079328 5.755557 1.790425 2.628988 -3.484508 -3.277366 0.443056 4.646683 -0.163001 -5.525216 1.373557 -2.624975 2.348557 -6.950526 -5.337602 8.673041 8.372513 3.556960 1.017349 2.628003 2.875140 -7.277431 -1.282985 -2.395751 3.093575 -1.873665 -7.065016 -2.353569 1.489449 -4.940352 -2.494506 -1.326321 0.926561 -0.055406 0.906957 4.414246 3.854927 0.093067 1.242132 2.913065 -1.027994 -4.603285 -1.926569 0.487360 3.490753 2.131574 -2.584765 0.601696 2.508324 -5.402951 -1.414692 1.611771 2.796458 2.294389 7.258584 5.834573 -0.691600 1.543422 -2.197971 -3.630688 2.867824 -2.602040 -0.080842 -1.183291 0.142750 1.737905 1.171860 4.058859 -1.993923 -4.085053 -3.766036 -2.162399 0.368514 4.351818 -1.395967 -7.812242 -5.004476 2.043131 1.367206 4.409687 -0.481342 7.722475 -2.076395 1.629484 -8.058311 0.164302 2.718501 -0.646957 2.654973 0.575765 -2.174968 -4.600893 -1.333449 -4.602758 -2.440667 0.320094 -1.016690 -1.174295 -5.007222 7.094750 -3.070018 -0.369773 -0.480235 1.137718 6.753429 4.716466 -0.963368 -3.861451 2.818613 2.212049 0.791946 -2.462502 5.350115 1.898592 9.870976 -2.020937 0.449150 -1.380617 2.583102 -1.566014 -2.964982 -1.110289 4.645409 7.912241 2.217581 -2.217184 -0.515310 -2.094671 2.997847 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::destroy(std::allocator&, queueEntry*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = -4.552852 -0.786873 6.123341 -0.175602 -2.475401 -3.718598 -1.927739 -7.882828 3.898897 3.510691 7.996904 0.686234 4.896327 -2.741061 1.533293 -0.012433 4.348630 -3.881539 1.822932 -1.819286 1.904110 6.291185 2.004523 1.972815 0.520153 -4.337607 0.779110 -0.403370 2.261318 4.163254 1.630897 -0.887397 -2.746000 0.682579 1.490299 4.030551 2.723094 2.041722 -1.875343 -1.303540 -0.782431 -3.730437 3.316628 -0.878501 6.083620 -2.883226 1.653904 -0.683263 -4.171550 -4.133683 -1.042815 3.113109 -4.289062 1.463555 2.586635 -2.774836 -0.187875 0.894927 -1.106022 -5.553250 -0.433791 -3.799393 -1.152070 0.698555 -1.012800 2.104976 -3.276977 0.177221 -0.526961 -3.585349 2.303082 1.284688 2.989722 4.481154 -5.622000 1.426292 1.113480 -0.224028 1.862406 2.042693 -1.282975 -1.850241 -1.529254 -3.991913 4.059804 3.177212 0.332564 0.239804 -6.341308 4.213449 -0.555546 0.170155 0.355842 1.929318 -5.597387 -0.025575 1.933850 -2.433326 -0.411186 -5.950496 0.221472 -3.842689 0.257513 2.693192 -1.126237 -1.717951 -7.046804 1.218163 -4.546318 -3.848515 3.869384 -1.584319 -3.012727 3.414552 -5.578939 0.688217 -3.724945 1.007307 3.155089 1.728802 0.660052 3.305746 1.078775 2.986916 3.765093 -4.019012 -0.987653 3.468913 5.755389 0.243167 -0.266802 -1.358914 -1.824129 2.633368 -4.461870 -6.195112 -4.946369 4.400436 4.910252 2.390707 -2.327828 -1.203119 -1.749266 4.850136 5.556603 1.437319 0.242360 2.335804 -4.293245 1.592013 3.222084 -2.781062 4.641008 1.537148 -0.342180 3.543342 -3.923745 2.576187 0.710783 1.778450 -1.041999 -3.243578 -2.265446 4.224827 3.691856 4.246952 -5.182807 2.031909 -0.663990 -5.787889 -8.739904 -2.220632 6.700611 2.473539 2.338139 -3.366395 -2.835672 1.368476 4.437140 0.450023 -6.313259 1.496050 -2.257800 2.291334 -8.767338 -5.448846 9.037379 8.597331 3.635522 1.250506 2.182567 3.897872 -7.119639 -1.340432 -2.700756 3.578031 -2.691104 -7.831593 -2.468429 1.588857 -4.997009 -2.670239 -1.481746 0.697892 0.138350 0.639430 4.689643 3.748189 0.306000 1.556463 3.431983 -1.211124 -5.362141 -2.292338 0.296384 3.688739 1.824587 -2.207297 1.478975 2.877464 -5.688285 -1.532733 1.518932 2.400118 2.309944 7.477276 6.164499 -0.950429 0.447487 -2.453457 -3.638353 3.026449 -3.051627 -0.354786 -1.342493 0.304881 2.139010 1.367171 4.074382 -1.955323 -4.542997 -3.863786 -2.008164 0.793851 4.625395 -1.417771 -8.604144 -5.465528 2.616300 1.589595 5.009104 -0.524040 8.203398 -2.552134 1.682087 -7.992065 0.276552 2.347228 -0.525697 3.177693 0.289951 -1.843822 -3.502093 -1.720727 -4.744423 -1.759670 0.459480 -1.473902 -0.873959 -5.390589 6.952659 -3.489117 -0.455077 -1.412572 0.672062 7.403696 5.399643 -1.317339 -4.783155 3.616198 2.062211 0.940865 -2.348776 6.005650 1.663932 9.563806 -2.507832 0.204885 -1.253490 3.374075 -2.081180 -3.173822 -0.707793 4.996361 8.376650 2.120222 -2.421094 -0.449875 -1.598390 2.578191 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::destroy(queueEntry*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/snake-ladder.cpp___GLOBAL__sub_I_snake_ladder.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/floyd-warshall.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -3.208769 3.400034 16.675147 10.615331 -7.606247 -10.601245 -4.244847 -8.116827 4.060748 2.087101 8.991444 -1.497785 1.463210 5.481528 0.781723 -4.317543 2.220862 0.379358 -2.493695 -3.274633 -5.275109 6.025233 7.832784 -11.964131 1.181109 -9.954095 6.072104 5.413791 1.721908 6.439152 -0.315803 0.272687 -1.565035 5.454238 -8.468112 -2.201071 -0.484970 1.516415 -2.899086 -1.954460 5.154054 3.561463 5.899351 0.000000 6.097727 5.235486 6.465751 -1.104877 -9.436626 -2.220415 -4.399477 10.322067 -3.860069 5.037244 2.187411 7.773683 0.911698 -9.959492 -1.959067 -13.981507 3.562186 4.352115 -5.695311 -0.730591 -7.584236 1.171205 -1.093303 -5.939698 5.204207 -3.675656 5.122106 -2.520905 0.172531 -5.912234 -5.451716 3.208549 -0.807812 3.386482 2.709908 0.470275 -3.781990 1.985523 -3.679162 -4.582198 -0.550518 -1.146698 0.277166 -0.100589 1.277989 -3.330801 2.099809 -1.674128 -4.312858 7.847477 -7.149412 7.692146 -0.965837 -2.425887 -7.222195 -3.944987 -0.543928 -6.972082 3.554631 7.727694 -4.679245 1.607472 -0.443553 3.101687 -0.285893 -10.081931 0.421936 -2.018839 0.644003 5.201469 -6.608893 -2.212469 2.827760 -1.004691 -0.367930 8.002508 -1.644304 2.781092 6.634804 5.540303 2.463566 -5.751778 1.954631 0.970015 5.086569 5.334627 5.793799 -7.835281 -3.289542 -0.407383 -1.536553 -13.696821 2.390093 5.877930 7.281907 3.901975 -12.487454 2.388835 -3.711561 8.930887 4.045138 9.594764 1.927169 -1.508186 -4.777264 1.246526 14.769812 -5.133769 7.333098 -2.233033 -9.724439 10.004644 -3.582652 7.917398 1.942173 2.165094 4.502346 -7.814780 -1.986978 10.131017 4.771789 2.291236 7.862947 -0.579085 -1.509100 -13.471922 -11.488217 -1.260617 3.888167 1.180813 15.274261 -8.006113 -5.999396 -3.508840 10.694978 -4.317976 -3.787848 -0.471085 -1.413086 2.695971 -16.857482 -12.350965 10.257092 12.462573 -0.068706 -0.786782 11.292371 0.781167 -1.324000 -6.034442 -6.509639 4.699655 1.453057 5.946724 1.707674 -1.704303 -9.916175 0.671771 -0.043861 2.115886 5.378608 -7.002753 -5.507628 0.442030 -10.798855 -6.858978 1.037718 -9.405348 -3.535605 0.139464 1.711062 -0.826214 1.021946 -2.435831 -6.454681 1.967751 -6.704859 -1.231575 3.243241 5.076125 2.997307 14.607658 7.858400 0.648421 7.105985 2.828301 -4.228210 24.845800 -7.459064 -1.438581 -0.542255 8.485241 -2.294491 2.979461 3.627181 -2.354315 -5.683395 -7.022632 4.992363 -2.846696 3.691111 -13.373527 -8.269322 -10.123747 -3.007864 2.827890 9.142443 -0.548233 16.618307 0.161991 2.485548 -18.900635 0.239487 8.155357 -1.584810 5.111350 5.565348 -8.143280 -15.733947 -0.226249 -2.158448 6.395838 -1.049781 -9.266069 -4.694431 -3.578759 0.870263 -3.463708 4.384492 10.161516 -2.622091 4.515360 3.113051 -2.579686 0.291785 -4.249421 5.311524 3.137129 -6.845604 11.537708 -1.086732 21.291926 -2.101427 7.754254 -5.472092 1.272531 -0.953567 -1.510565 -3.120487 8.982514 7.466220 4.222018 -0.315106 1.653067 -6.312775 3.218150 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -0.815358 1.244895 6.329667 3.751559 -3.365525 -3.972553 -1.731222 -5.122529 2.630975 1.069916 3.777248 -0.546027 1.208195 0.594432 0.002429 -0.812833 1.419553 -0.214832 -0.864658 -1.584319 -1.413571 3.470170 1.820932 -4.023522 0.631245 -4.460449 2.123248 2.008931 1.626688 2.054788 0.423008 -0.185285 -0.982219 2.102389 -2.943956 -0.288972 0.607094 0.828662 -2.454843 -1.125500 1.388970 1.275872 2.579256 -0.663913 3.085424 0.950851 2.412884 -0.112820 -3.485461 -0.999680 -1.368459 4.618191 -1.378931 2.275267 1.230994 1.682894 -0.197474 -3.581612 -0.789986 -3.836368 0.901969 1.089039 -1.995340 -0.209073 -2.736144 0.503531 0.051052 -2.151185 1.954616 -1.685032 2.075048 -0.682414 0.243861 -1.894288 -3.093185 1.270061 0.388149 1.347287 1.432178 0.709766 -0.018027 -0.053709 -1.587044 -2.082313 0.859759 1.195603 0.368908 0.305237 -0.750088 -0.871760 0.825971 -0.960964 -0.699578 2.847761 -3.414512 1.718976 -1.015674 -1.220849 -2.916174 -2.323725 0.163917 -2.646568 1.723577 2.186463 -1.667222 1.091823 0.677182 1.316539 -0.117103 -3.616484 0.202493 -1.028377 0.861460 3.631697 -2.256626 -1.486892 0.048127 -0.430033 -0.940283 2.721379 -0.260755 1.250162 3.267420 2.518712 1.892680 -2.920471 -0.243520 1.246513 2.117002 2.348777 2.032721 -3.484322 -1.214136 0.265288 -0.954929 -5.764289 -0.302549 1.390375 3.450637 0.924957 -3.942398 0.487080 -1.369667 3.784154 1.385702 2.333609 0.799924 -0.009450 -2.266764 0.836223 5.671730 -1.648277 2.551524 -1.332357 -2.777621 2.779771 -0.933711 2.798685 0.746782 0.519953 1.077712 -3.150145 -0.349158 3.885061 1.253874 0.972893 1.179214 0.539248 -1.539467 -5.669450 -5.338357 -0.419965 1.892063 0.193288 6.012006 -3.359757 -3.045114 -1.259964 4.523473 -1.582838 -1.503944 0.790218 -2.014289 1.780292 -5.145091 -5.102217 4.926273 5.723523 0.840403 -0.354055 4.542832 0.267545 -2.429951 -2.246170 -2.343030 1.808507 1.311525 -0.304346 0.017065 -0.215631 -3.991970 -0.634433 0.297989 1.043938 1.641268 -1.119768 -0.174747 0.351489 -3.659766 -2.249993 1.616600 -2.994506 -0.824022 -0.033762 0.878919 -0.051379 1.605039 -1.912125 -2.304881 1.037403 -2.381096 -0.108508 1.233540 2.170951 0.609071 5.240657 3.738997 0.007629 4.153699 0.546904 -2.166812 8.363432 -2.429803 -0.229506 -0.260059 2.153860 -0.761750 1.185334 1.855054 -1.510169 -2.082882 -3.291102 0.741739 -0.932184 1.850443 -4.460367 -3.499045 -4.074040 -1.194843 0.682747 2.997369 0.119965 6.555698 -0.905890 1.011458 -8.116155 0.127041 3.045758 -0.486667 2.092548 1.921801 -3.008594 -6.179526 -0.125192 -1.860461 0.077494 -0.676133 -3.726409 -2.161820 -2.409092 2.535742 -1.496455 1.185345 4.310290 -0.359959 2.296098 0.001992 -0.665208 -0.455842 -1.245050 1.928698 0.832756 -2.960383 4.158543 -0.119843 9.074281 -0.874160 2.762715 -2.199075 0.866839 -0.610587 -2.017041 -1.420956 3.854809 3.074620 1.712040 -0.644558 0.060704 -2.761117 2.020821 -PE-benchmarks/floyd-warshall.cpp__main = -0.595438 1.022094 4.199075 1.856348 -1.857731 -2.950289 -1.098721 -3.067692 1.166575 0.779519 2.668349 -0.487720 0.858599 1.158845 0.260806 -0.545334 0.931325 -0.149598 -0.194471 -1.024616 -1.320972 1.829748 1.353003 -1.824490 0.452368 -2.694888 1.529205 1.255489 0.732199 1.715012 0.208830 -0.045922 -0.681029 1.261109 -1.598398 -0.138709 0.276468 0.561609 -1.036903 -0.083166 0.768289 0.401673 1.655569 0.036733 1.775593 1.295247 1.337053 0.030521 -2.091635 -0.796230 -0.960183 2.452092 -1.031800 1.233272 0.445152 1.127172 0.093966 -1.991415 -0.391966 -2.676634 0.584884 0.436568 -1.410210 0.044664 -1.888828 0.375513 -0.756968 -1.488392 0.953775 -0.963103 1.329753 -0.497204 0.010504 -0.735299 -2.081985 0.700745 0.089946 0.772483 0.846257 -0.039834 -0.688555 0.350112 -1.279415 -1.549762 0.475047 0.575656 0.314872 -0.031308 -0.553143 -0.583815 0.307047 -0.355798 -0.469334 1.987798 -1.874686 1.534115 -0.502701 -0.822814 -1.933189 -2.004109 0.094512 -1.696413 1.019540 1.352084 -0.954966 0.144082 -0.429317 0.856491 -0.278684 -2.507744 0.348327 -0.685274 0.172302 1.898358 -1.589400 -0.652939 -0.036937 -0.445431 0.025601 1.872041 -0.019963 0.592033 1.781415 1.543008 0.883147 -1.626052 -0.106045 0.464232 1.287576 1.257779 1.347703 -2.037674 -0.967196 0.197670 -0.988623 -3.660182 0.034239 1.298230 1.959458 0.390065 -2.382534 0.490879 -1.193109 2.050238 1.378668 2.074919 0.511302 -0.231066 -1.389651 0.480689 3.512852 -1.327820 1.968266 -0.692835 -1.986756 2.162510 -0.855412 1.779842 0.566190 0.387981 0.554771 -1.743428 -0.468043 2.537628 1.245478 0.816417 1.372665 0.158252 -0.796969 -3.108725 -3.215527 -0.291391 1.638427 0.248396 3.404466 -2.135547 -1.523354 -0.624021 2.882696 -0.740000 -1.289366 0.254084 -0.636517 0.827222 -3.968318 -3.046567 2.852041 3.456919 0.526396 -0.346395 2.414596 0.552170 -1.298434 -1.644962 -1.624352 1.320486 -0.052269 -0.119271 -0.214136 -0.184288 -2.586304 0.146584 -0.231815 0.734884 1.323279 -1.046719 -0.428943 0.127178 -2.343463 -1.623774 0.717677 -1.961264 -0.987594 0.018733 0.310544 -0.057564 0.466782 -0.869004 -1.206951 0.813274 -1.909755 -0.102420 0.984932 1.203992 0.583491 4.032285 2.051814 0.029780 1.693525 0.290020 -1.231717 5.352515 -1.681870 -0.040955 -0.161666 1.807669 -0.563084 0.812091 1.298758 -0.717123 -1.913159 -1.973811 0.585882 -0.450031 1.132734 -2.213345 -2.419858 -2.931163 -0.435798 0.525236 2.827373 -0.033150 4.185374 -0.086824 0.956072 -4.441661 0.189025 1.615914 -0.519056 1.403825 1.154394 -1.991932 -3.210992 -0.123892 -1.283305 0.367623 -0.157507 -2.102232 -1.282551 -1.141754 0.573135 -0.874595 0.674976 2.034742 -0.458530 1.479924 0.785783 -0.643302 -0.448537 -0.509368 1.994656 0.430892 -1.790543 2.693934 0.066305 5.674687 -0.389082 1.815800 -1.097655 0.212529 -0.150716 -0.773880 -0.893380 2.464518 2.228530 1.164033 -0.341161 0.256376 -1.121201 0.926016 -PE-benchmarks/floyd-warshall.cpp___GLOBAL__sub_I_floyd_warshall.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/optimal-binary-search-tree.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -3.716666 4.735004 22.464118 14.864789 -7.626343 -10.475618 -4.952273 -8.907090 5.480003 3.039173 10.768775 -2.282550 3.109346 4.708775 -0.420497 -6.769990 3.719028 0.057368 -1.232757 -3.984360 -4.694158 10.454971 11.301205 -17.368908 0.885640 -15.540186 10.851085 5.902064 4.775260 10.464487 -0.034172 1.517679 0.175077 8.107953 -11.792514 -5.061032 -2.904714 3.812627 -3.971487 -1.186006 7.179401 8.686063 6.447461 0.516426 5.944997 8.465024 7.676371 -2.166479 -11.037151 -2.703123 -5.050954 11.453506 -5.781195 5.748074 0.975002 9.172363 1.571664 -12.085619 -2.555826 -18.333249 5.300839 8.096487 -7.371900 0.242326 -12.522010 1.517408 -3.387054 -6.935713 6.307288 -1.671838 5.984293 -0.366052 1.275343 -11.096946 -7.066879 6.648661 -0.645086 5.059242 4.414039 -0.527922 -5.477895 3.740603 -4.535622 -7.078195 -0.249749 -0.726126 0.747766 -0.179187 5.272407 -7.113253 1.876296 -0.752649 -6.586554 10.673666 -7.054964 10.298145 -3.511856 -2.320724 -6.712548 -3.486674 -2.467310 -10.849040 4.272341 12.289847 -6.662169 2.892332 -0.917066 3.631552 1.445821 -12.094924 -0.722820 -3.542312 1.356125 8.676787 -7.757380 -3.281646 1.277287 0.334066 0.961828 11.603752 -3.137103 4.064267 10.572336 7.218471 1.780277 -7.751899 4.043328 1.872986 3.904790 6.886666 8.863027 -10.772083 -5.901642 -3.273891 1.070666 -16.741381 3.749055 5.078688 6.325393 2.652929 -16.952188 5.502378 -5.040065 11.717395 7.089009 10.446822 4.063307 -1.857953 -4.592888 3.893860 20.409402 -7.030803 6.986029 -4.620319 -15.675886 15.642856 -4.039651 10.770345 0.438497 2.752574 6.016545 -11.449502 0.074307 14.354246 3.460193 3.508903 13.109645 -2.142480 4.103715 -17.023081 -12.826024 -0.061722 2.743652 1.642860 22.803683 -9.195883 -4.171753 -3.749691 10.849655 -2.857316 -2.569300 -2.118129 -0.924893 2.661229 -24.201182 -17.445633 12.583651 13.801825 -1.586425 -1.544144 12.708944 2.283796 1.626860 -7.296948 -8.586635 7.219790 1.143060 9.151352 2.966691 0.312714 -12.374434 -0.230587 1.875723 2.136898 9.972546 -12.271158 -11.241762 -1.834254 -16.282583 -9.745289 2.400981 -12.754045 -4.253383 -0.585075 1.585948 -0.804406 1.909443 -3.224854 -8.161521 2.126741 -6.743761 -4.116120 2.828034 8.645991 2.429573 14.750083 10.549445 1.380620 4.985639 5.861802 -5.162951 33.274662 -7.446758 -3.327769 -0.135323 10.856098 -2.321259 4.606614 3.589303 -2.961048 -6.767261 -10.692285 8.807517 -2.025699 2.719010 -20.652907 -6.621036 -10.707604 -4.910507 4.276553 12.078539 0.868547 23.448720 -0.346177 1.087615 -22.177472 0.024492 10.246728 -1.224369 9.348143 9.057632 -10.979511 -17.692301 -2.608249 -2.210743 12.311645 -2.493743 -12.625850 -7.577993 -1.285400 1.932281 -3.970542 7.514537 15.320807 -2.736339 4.632738 4.070910 -2.893786 -0.556785 -6.359642 4.272326 5.793051 -9.020145 14.282474 -3.780777 23.286912 -4.650074 10.203084 -9.415817 1.059023 -0.829270 -2.759365 -4.264280 13.009515 7.638965 5.159782 2.204763 0.708816 -7.182064 6.208125 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.597415 0.901284 3.071910 2.913009 -1.910143 -2.552646 -0.775270 -1.532382 0.949965 0.223250 1.524137 -0.071062 0.745335 0.202102 -0.135407 -1.110042 1.002220 0.645867 -0.547615 -0.876955 -1.701528 1.969658 1.452196 -2.882711 0.481648 -1.493589 2.023566 1.414771 0.469862 2.048290 0.019705 0.215088 -0.338176 1.312464 -1.736716 -0.731848 -0.775369 0.662766 -0.840168 -0.348427 1.338577 -0.001635 1.981749 0.225958 0.707932 1.371023 1.123445 -0.001744 -2.189312 -0.546450 -1.059051 1.287456 -0.859734 1.417355 -0.261384 0.903136 1.173657 -1.486938 0.041868 -2.718469 0.606617 0.276539 -1.177068 -0.291553 -1.934383 -0.079714 -0.486003 -1.928282 0.915876 -0.720005 0.865641 -0.197271 -0.265429 -1.783964 -1.511127 0.552536 0.487638 0.867220 1.032804 0.838949 -0.477512 0.078570 -1.409307 -1.216874 0.263155 -0.742721 0.651403 0.712399 -0.163740 -1.532120 0.766490 0.074419 -0.185449 1.368015 -0.711219 1.364887 -0.375346 -0.527437 -1.431821 -1.537673 0.016748 -1.105252 0.704294 1.415999 -1.207498 0.336824 -0.020242 0.539933 0.043246 -2.075286 0.158109 -1.155908 -0.142162 1.428345 -0.778725 -1.012280 0.165395 -0.274216 0.138732 1.882269 -0.087047 0.178024 1.500170 1.095935 0.605711 -1.382643 0.255116 -0.049022 0.605907 0.964684 1.285577 -1.128796 -0.973461 -0.020567 -0.668843 -2.908252 0.101888 1.079405 1.555995 0.625370 -2.513809 1.307677 -1.168277 1.173779 0.840414 1.739318 0.740906 -0.279378 -1.105959 0.533340 2.946198 -1.112222 1.286314 -0.715023 -2.631368 2.710431 -0.075319 1.255849 -0.068213 -0.434574 0.789920 -1.167888 0.402927 2.307853 0.294911 -0.105309 1.837781 -0.088192 -0.628730 -2.865921 -2.622928 0.334836 1.495248 1.146947 3.966792 -1.888351 -0.558003 -0.482392 1.757319 -0.963227 -0.579575 -0.000424 -0.319966 0.824667 -4.522553 -2.901672 2.783178 1.529800 0.137222 -0.054249 1.509900 0.118283 0.424383 -1.566863 -1.582998 0.768657 0.673703 0.808349 0.108504 -0.076220 -2.069150 0.292422 0.513439 0.447517 1.473776 -2.422412 -1.173631 -1.422349 -2.293672 -1.827386 0.351729 -2.354425 -0.165727 0.418469 -0.053924 -0.140735 0.576672 0.344466 -1.436822 -0.468692 -0.910475 -0.482226 -0.124982 1.447490 0.338874 2.659349 2.474534 -0.519226 0.839162 0.885054 -1.111038 5.717065 -1.886133 0.052430 0.050321 2.563454 0.226531 0.848596 1.599130 -0.605968 -0.483100 -1.901380 0.591461 0.352955 0.451409 -4.220027 -0.805401 -2.770035 -0.577742 -0.001639 2.222398 -0.375806 3.642842 -0.398654 0.208631 -3.850969 0.098315 1.657590 -0.161817 1.574232 1.158998 -1.915178 -2.652969 -0.394372 -1.092279 2.132495 -0.321918 -1.383287 -1.030804 0.217828 -0.350655 -0.797433 1.165104 2.581725 -1.198101 0.774629 0.094334 -0.250116 -0.178752 -1.107899 1.207201 0.593037 -1.141437 2.404374 -0.021942 3.682843 0.336436 1.626608 -1.284005 0.365057 -0.107756 -1.222471 -1.121500 1.985021 1.164582 0.641055 0.764382 0.844712 -0.617493 1.320429 -PE-benchmarks/optimal-binary-search-tree.cpp__main = -0.733249 1.339251 6.322739 2.662355 -2.170764 -3.581141 -1.652719 -4.999236 2.224354 1.452505 4.053386 -0.752532 1.754417 0.821273 0.026417 -0.614392 1.613330 -0.847827 0.451104 -1.463584 -1.332972 4.202202 2.114094 -2.385483 0.423161 -5.134204 2.742706 1.308317 2.125513 3.027932 0.498400 0.049460 -0.456245 1.985546 -2.233330 -0.153385 -0.004049 1.342219 -1.775801 0.168138 1.051282 1.085376 2.279555 -0.005471 2.578935 1.661382 2.059934 -0.162055 -2.598709 -1.280473 -1.501105 3.479462 -1.909672 1.527116 0.297674 0.974184 0.048987 -2.551648 -0.843403 -3.442711 0.565611 0.842687 -2.161633 0.469034 -3.282983 0.847305 -1.804943 -1.702670 1.141097 -0.690761 2.071002 0.289508 0.527509 -1.397075 -3.716882 1.697955 0.205113 1.155593 1.403108 -0.191110 -1.015465 0.757888 -1.970724 -2.759032 1.411206 1.696076 0.415601 -0.305821 -0.420506 -1.084350 -0.113784 -0.239681 -0.726671 3.079106 -2.717290 2.136353 -1.235340 -1.132720 -2.201161 -2.982170 -0.272578 -3.123350 1.460593 2.312552 -1.340427 0.312497 -0.676027 1.058940 -0.275848 -3.693836 0.301508 -1.121934 0.321355 3.670666 -2.319287 -0.890413 -0.955281 -0.199905 0.177672 2.873472 -0.019249 1.255604 3.375085 2.451407 1.245113 -2.580226 -0.109951 1.245471 1.640649 1.723789 2.122839 -3.215813 -1.864583 -0.178539 -0.644268 -5.421703 -0.348588 1.642824 2.330057 -0.136029 -3.209373 1.034302 -1.585802 3.363247 2.820201 2.065745 1.097744 -0.094805 -1.865828 1.543368 5.782633 -1.958716 2.425796 -1.775097 -3.339715 4.057860 -1.623438 2.805008 0.415843 0.891121 0.447425 -3.081263 -0.058424 3.999352 1.073082 1.492035 2.116478 0.165261 0.171958 -4.585951 -4.709018 -0.221660 2.196909 0.436825 5.624557 -2.934032 -1.588994 -0.457330 3.571169 -0.064661 -1.622497 0.379869 -1.204457 1.161453 -6.488470 -5.015812 4.570148 5.047380 0.758281 -0.430697 3.243574 1.592807 -1.900663 -2.352374 -2.486258 2.528165 -0.142059 -0.946125 -0.422296 0.389612 -3.804510 -0.438501 -0.162259 0.959037 2.514988 -1.780403 -0.872334 -0.240845 -3.836627 -2.360907 1.911748 -2.946417 -1.710302 -0.353015 0.377246 -0.015714 1.104674 -1.429012 -1.193973 1.265164 -2.496097 -0.545690 1.387350 2.058308 0.407114 5.008634 3.712063 0.035962 1.819070 0.629406 -1.708605 7.497713 -1.969723 -0.475845 -0.197856 2.159658 -0.714889 1.431592 1.727945 -1.119509 -3.007139 -3.268278 1.445553 -0.314207 1.379395 -3.435258 -3.130712 -3.917708 -0.868557 1.070389 4.324777 0.564784 6.786712 -0.653292 1.070800 -6.497493 0.284384 2.238784 -0.386110 2.934367 1.910141 -2.870354 -3.731286 -0.840328 -1.935297 0.801505 -0.591204 -3.543092 -2.353090 -1.620078 1.714624 -1.513838 1.235765 3.255462 -0.314015 2.368575 1.133125 -0.902490 -1.494843 -0.428217 2.425884 0.964874 -2.631370 3.854147 -0.499464 7.782328 -1.325491 2.556523 -2.115640 0.529454 -0.392538 -1.743368 -1.134817 4.122058 3.110501 1.491473 -0.241554 -0.269216 -1.381215 1.856820 -PE-benchmarks/optimal-binary-search-tree.cpp___GLOBAL__sub_I_optimal_binary_search_tree.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/bellman-ford-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = 0.140559 0.742370 2.382846 1.290861 -1.548492 -1.400408 -0.320948 -2.398157 1.238948 0.428607 1.603251 0.497087 1.100622 -0.295129 -0.098318 0.014238 0.877562 0.137558 0.009557 -0.687577 -1.232323 1.995195 1.115785 -0.908208 0.658654 -1.519057 1.524400 0.145560 1.636681 1.508909 0.246347 0.051096 -0.318731 0.840302 -0.280460 -0.494971 -0.982195 0.728469 -1.275885 -0.087433 0.723314 -1.301362 1.465733 0.702364 0.758699 -0.065716 0.812850 -0.060983 -0.925321 -0.237416 -1.324266 1.340953 -1.037091 1.179168 -0.450233 -0.056713 0.260958 -0.047884 -0.035704 -1.245646 -0.103930 -0.809191 -0.650483 -0.010277 -1.568545 0.291087 -1.524879 -1.111441 -0.107613 -0.095446 1.123746 0.569328 0.440494 -0.566796 -2.510928 0.385875 0.405601 0.562385 1.144645 0.953143 -0.237459 -0.255525 -1.290041 -1.494773 1.493298 0.203850 0.059764 -0.079285 -0.476270 -1.015469 0.151181 0.176769 -0.054050 1.216165 -1.926877 1.471840 -0.918317 -0.411994 -0.348250 -2.460045 -0.233810 -1.388816 0.576313 0.389734 -0.613447 0.286613 0.056765 0.628667 0.130997 -1.777416 0.150952 -0.275327 -0.967470 1.813756 -0.383710 -0.807976 -0.094467 0.229335 -0.047801 0.866526 0.231219 0.756115 1.746661 1.118145 0.793949 -0.747004 0.497223 0.793711 0.343993 0.791515 0.768208 -0.685010 -0.994196 0.767051 0.003889 -2.669419 -0.274299 1.415297 1.336182 -0.163377 -1.023350 0.041545 -0.731722 0.775521 1.547232 0.686555 0.939347 0.004838 -0.631526 0.883780 2.672594 -0.932456 0.831530 -0.637390 -1.292341 2.392179 -0.997551 0.934088 -0.780542 0.230868 0.236525 -1.331726 -0.145274 1.986227 0.059212 -0.210388 0.733651 0.079006 -0.797777 -2.195073 -1.875105 -0.542069 1.585958 0.940268 2.331287 -1.119543 0.065708 0.009825 1.021033 0.309367 -0.633836 0.489928 -0.729449 0.687007 -3.495332 -2.174371 2.468487 1.687066 0.413704 -0.050809 0.677609 1.047532 -0.787684 -1.890040 -1.406686 0.650806 0.416672 -1.104333 -1.206482 0.205548 -2.059135 0.079254 0.499045 0.188713 1.761743 -0.858916 0.327389 -0.319104 -1.449489 -1.125830 1.367617 -1.559986 -0.999383 -0.008181 -0.069304 0.165046 0.601026 0.235535 -0.385048 -0.028578 -0.906560 -0.408597 -0.016078 1.229683 -0.347874 2.191848 2.276061 -0.265258 -0.363197 0.386279 -1.410547 3.151083 -1.437969 -0.278493 -0.104843 0.824036 -0.227451 0.880141 1.343377 -0.697073 -1.237494 -1.734167 0.228877 0.064097 0.454153 -1.663175 -1.081609 -1.812596 -0.234776 0.226732 1.888360 0.312978 3.024266 -0.912922 0.104269 -2.715457 0.137432 0.894167 -0.072824 2.012204 0.855380 -1.267686 -0.460160 -0.857887 -1.012310 1.084482 -0.360459 -0.914149 -0.967583 -0.202415 0.457186 -0.958990 0.756154 1.025564 -0.861773 1.830415 -0.294816 -0.358322 -1.294155 0.599659 1.326740 0.461815 -0.880278 1.740225 -0.075685 3.152649 -0.287089 0.817108 -1.162895 -0.129150 -0.301077 -0.861750 -0.702544 1.947529 1.501157 0.955364 0.366126 0.082996 -0.297800 0.990911 -PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -0.313228 0.869573 2.823372 2.235231 -1.561939 -1.904950 -0.771227 -1.737209 1.059440 0.224585 1.349552 -0.192866 0.592139 0.266120 -0.197787 -0.658976 0.801840 0.345480 -0.422817 -0.751369 -0.983635 1.876400 1.109283 -2.371675 0.351991 -1.800289 1.345402 1.055560 0.810846 1.486115 -0.003282 0.072832 -0.236239 1.172167 -1.569714 -0.655015 -0.275750 0.472872 -1.134260 -0.328706 0.883749 0.553239 1.484724 0.007529 0.814398 0.994567 0.946879 0.001766 -1.642279 -0.383904 -0.781121 1.601827 -0.629844 1.251724 0.070004 0.811882 0.535287 -1.404313 -0.126555 -1.946394 0.425040 0.534836 -0.802429 -0.195323 -1.583632 0.041930 -0.229868 -1.476203 0.807445 -0.569174 0.886683 -0.061141 0.065853 -1.427273 -1.426335 0.707428 0.328473 0.886340 0.829379 0.531605 -0.168215 0.097590 -0.952893 -1.102427 0.248504 -0.053185 0.416664 0.456937 -0.065910 -1.190356 0.553851 -0.159542 -0.283127 1.274437 -0.929952 1.146454 -0.644556 -0.425794 -1.154332 -1.195876 -0.142774 -1.105514 0.677854 1.003161 -0.805568 0.468587 0.300872 0.570084 0.174602 -1.622806 0.198255 -0.612538 -0.084619 1.630710 -0.690418 -0.831179 0.187966 -0.179869 -0.326395 1.580222 -0.188982 0.375735 1.336610 1.086979 0.642762 -1.237988 0.187545 0.200126 0.646972 0.953514 1.282993 -1.296590 -0.819397 0.023116 -0.347689 -2.543468 0.087332 0.827104 1.436607 0.313885 -1.908991 0.795966 -0.915855 1.397481 0.643333 1.196043 0.655974 -0.306490 -0.972827 0.589454 2.733679 -0.898154 1.117008 -0.756635 -1.942187 1.942273 -0.238437 1.249395 -0.143065 -0.157741 0.591344 -1.259708 0.284403 1.988486 0.305737 0.076392 1.273196 -0.082511 -0.636385 -2.599839 -2.310276 0.025899 0.931264 0.436606 3.184248 -1.457306 -0.928209 -0.563468 1.714547 -0.739297 -0.416060 0.164777 -0.611524 0.760991 -3.219434 -2.485635 2.471604 2.041470 0.113888 -0.118997 1.654135 0.123962 -0.205570 -1.376918 -1.140088 0.687116 0.626636 0.272418 -0.108950 0.002441 -1.722012 0.027971 0.432456 0.411820 1.172099 -1.276617 -0.608332 -0.679208 -2.024977 -1.515291 0.585149 -1.802412 -0.185292 0.363774 0.169304 -0.198220 0.710848 -0.211604 -1.293037 0.020485 -0.860493 -0.291476 0.060713 1.248486 0.210150 2.046051 1.965362 -0.136552 1.350645 0.711197 -1.067140 4.662298 -1.513939 -0.030054 -0.031935 1.635699 -0.190317 0.692629 0.994972 -0.592533 -0.676027 -1.702565 0.577492 -0.048291 0.439068 -3.031898 -1.152278 -1.898372 -0.551130 0.141351 1.572800 -0.104217 3.138978 -0.471084 0.226004 -3.617292 0.105845 1.351214 -0.091395 1.278948 1.120058 -1.590697 -2.708387 -0.271080 -0.911749 1.034321 -0.433693 -1.684786 -0.914161 -0.266584 0.395539 -0.725538 0.801227 2.384743 -0.667449 0.909003 -0.125154 -0.284094 -0.333817 -0.903492 0.943918 0.378930 -1.102340 1.849969 -0.131985 3.536028 -0.045543 1.404542 -1.129726 0.209664 -0.057985 -1.120109 -0.885131 1.898315 1.046844 0.635674 0.370829 0.335606 -0.849603 1.104086 -PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -7.522545 3.046128 25.840071 14.508859 -8.680893 -15.017893 -7.471571 -16.069206 10.002192 5.993059 18.745330 -0.801442 7.556852 2.948476 1.769527 -4.655773 6.890718 -4.382570 -1.914018 -5.990679 -3.624786 18.398250 13.566242 -16.067306 1.832704 -18.415471 8.568817 7.127351 4.886754 13.869356 0.232746 1.289725 -0.101627 8.976588 -12.819024 0.147898 -1.191762 5.794411 -4.318496 -3.935156 8.510633 5.568109 11.310502 0.796277 11.950868 6.489393 10.418712 -3.132339 -13.733202 -6.937914 -6.967690 15.254111 -9.565120 7.997770 -0.728801 8.401981 3.134499 -12.682606 -3.873295 -23.421744 4.131912 6.585520 -9.900622 -1.238450 -10.760938 3.381926 -1.399321 -7.725616 5.383227 -6.530419 9.847854 -0.216151 0.756020 -8.216021 -12.517492 6.252566 0.564079 3.776140 5.659952 1.450967 -8.266296 1.175291 -6.782832 -10.521814 6.611338 1.293182 2.243767 2.580993 -1.991371 -3.219777 0.236618 -0.171767 -5.018190 13.032999 -11.158622 9.301698 4.236111 -5.704424 -8.963220 -4.305906 -0.726664 -13.556312 4.273721 13.537747 -5.205894 1.920777 -6.521977 4.491228 -4.881323 -15.613227 2.685402 -4.873141 -3.328917 9.676128 -12.140199 -2.604381 0.424302 0.265941 2.794160 13.819185 -1.352557 5.891800 13.375717 9.314140 4.885283 -11.775880 2.671314 3.122871 11.549197 7.201248 7.908226 -11.282228 -7.794365 0.342456 -4.716127 -22.809582 -1.832451 11.202915 12.874196 4.100920 -20.581648 9.039986 -5.785232 15.254103 12.634072 10.701446 4.278612 0.167318 -10.554350 4.604398 25.191621 -9.591454 13.005410 -4.697403 -15.279401 19.862178 -8.658763 12.642165 3.032899 2.292229 3.896701 -13.442746 -0.404747 18.286021 7.014975 7.177235 6.633232 0.408921 1.426277 -21.295931 -23.732407 -5.148843 8.579940 5.324084 27.182123 -12.316860 -8.042118 -3.479015 14.697163 -6.139528 -8.498202 -0.325120 -4.240981 5.420361 -32.654939 -21.462348 23.968402 21.835344 4.979302 1.944441 17.312022 4.570589 -1.382681 -7.669899 -9.115793 10.801549 3.707367 2.730969 2.079511 -0.320788 -16.392132 -3.782780 -2.044631 2.620582 4.063184 -10.579519 -4.035532 -0.173155 -16.300963 -6.411930 2.325006 -15.652818 -8.313594 -2.085131 1.524188 -0.419099 2.874878 -3.768959 -6.335055 3.433446 -12.434524 -3.954002 4.135124 10.038486 6.522195 19.441851 19.444480 -2.609899 9.458183 2.366613 -7.575526 32.561477 -11.999479 -3.639146 -1.378529 13.417176 1.062623 5.894623 7.605164 -4.255184 -7.565137 -13.922279 9.400967 1.462065 6.417745 -20.684578 -13.296072 -16.272744 -3.524471 4.844837 18.745817 -1.869867 30.347838 -3.348774 4.605901 -33.392132 1.248862 10.935802 -1.016573 8.060703 8.869494 -12.006434 -24.140275 -3.233645 -6.874669 6.924958 -1.456296 -14.398268 -8.853444 -8.602123 7.096146 -11.328839 6.927582 14.951569 -2.878684 10.577720 5.865352 -4.005961 -4.946100 -3.205106 7.721007 6.038814 -10.009825 16.812151 -2.184740 32.462064 -6.494055 14.192214 -10.497136 7.385433 -3.906957 -7.024582 -5.365452 17.868157 15.352419 4.373198 1.867477 0.638574 -7.068446 9.176540 -PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.930393 3.176465 8.041978 8.118350 -7.720546 -10.983639 -2.379153 -8.490245 2.943599 0.844809 7.368094 0.070976 3.970100 0.452262 1.070134 0.300707 5.651547 1.832104 -0.789302 -4.047843 -7.370898 8.231376 3.762879 -5.326842 2.132332 -1.650690 5.502412 4.811078 2.489525 5.126681 1.553369 0.339704 -1.296527 3.237464 -3.877862 -0.719157 -4.415539 3.136818 -4.518379 0.013499 3.120258 -4.488178 8.139058 0.914872 2.389700 2.806554 7.451041 0.771044 -7.281736 -2.340183 -5.813002 6.013192 -3.853601 4.462204 -2.875294 -0.376171 4.477949 -1.483274 -0.293830 -5.351827 -0.378783 -2.358608 -6.113949 -0.919904 -6.512082 0.637201 -4.530305 -6.442047 1.336330 -0.104468 3.931611 -0.283209 -2.294591 -3.388420 -8.612571 0.422819 1.933414 3.025104 3.515547 2.930271 -0.264428 -0.832910 -6.542716 -4.891059 4.931369 -2.303000 3.349416 1.347673 -4.834345 -3.021120 0.845136 1.498771 1.132453 3.382082 -4.051404 4.875855 -0.773161 -3.010573 -6.480368 -8.134641 0.811589 -3.765304 2.558334 1.763182 -2.568714 0.460156 -3.336072 1.094150 -1.847890 -8.824224 -0.534121 -3.655129 -2.784665 5.959008 -2.987206 -2.986765 -0.514098 -0.250022 0.328940 4.448318 2.810070 1.377449 6.043523 4.263973 2.251045 -4.796176 -0.347331 -1.313849 2.819745 3.596350 4.026233 -1.034789 -5.264916 1.534259 -3.719017 -10.584701 -1.340020 7.095831 6.255105 1.006886 -5.209485 3.325087 -4.085295 3.985740 4.836441 5.108920 2.962916 -0.515292 -3.923618 2.482980 8.503372 -4.098656 5.568945 -1.636943 -6.002554 9.970118 -1.192236 2.377375 1.078512 -1.778989 -0.747674 -3.082453 -0.507603 7.211415 2.397365 -0.749289 4.749902 0.823922 -3.274697 -8.116210 -9.513000 1.302591 7.399060 4.695501 10.164471 -6.396816 -1.344764 0.884719 2.880699 -2.529049 -4.744565 0.872283 -2.359064 3.098289 -15.541968 -8.867776 10.586211 4.669380 1.611412 0.207852 4.115800 2.551016 -2.795904 -6.084376 -6.229724 4.512656 1.482345 -2.711102 -1.558068 0.971505 -8.483230 1.320198 0.507565 2.379861 3.383379 -5.374278 0.750637 -5.529735 -6.544209 -3.801844 2.379700 -5.814125 -1.672087 1.040819 -1.730425 0.580959 1.647202 1.288264 -2.318550 -2.568346 -5.547574 -1.918766 -1.067260 5.360245 1.594360 11.963577 10.383635 -2.337141 3.512803 0.742373 -5.667551 13.911288 -5.730000 1.001546 -1.069938 8.049767 0.443433 2.408286 7.860889 -1.889740 -5.120276 -6.549073 0.551460 3.301715 2.752678 -8.609667 -2.598377 -11.466290 -0.644305 0.650703 10.829180 -2.337375 10.844561 -3.511850 2.160590 -11.996718 1.257586 2.178847 -0.690981 5.483551 2.570609 -5.830495 -3.294792 -2.072001 -5.510386 3.126060 0.240273 -2.956337 -4.627049 -0.237086 -1.810974 -4.909109 1.375658 4.803604 -4.942433 4.763306 1.043901 -1.535266 -1.083688 -0.691357 8.328628 1.804865 -4.441563 8.063610 0.732947 15.995853 2.371111 5.110926 -3.593568 0.015179 -0.008437 -4.802819 -3.931504 7.460690 7.394757 1.453096 2.588766 2.779954 0.721809 4.259451 -PE-benchmarks/bellman-ford-algorithm.cpp___GLOBAL__sub_I_bellman_ford_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/dfs.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/dfs.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.268643 0.351573 1.552905 0.930686 -0.696781 -1.715566 -0.335272 -1.741506 0.895105 0.423983 1.417793 0.228207 1.015188 -0.298223 0.221611 0.136317 0.768489 0.107423 -0.030404 -0.513915 -0.389527 1.652745 0.494344 -0.680355 0.247538 -0.779538 0.744673 0.787771 0.719517 1.098878 0.186748 0.012349 -0.175562 0.576514 -0.663992 0.096534 -0.375856 0.599203 -0.684655 -0.259782 0.275330 -0.328743 1.124024 0.244826 0.880623 0.187145 0.997675 -0.014203 -0.687518 -0.536527 -0.773002 1.063757 -0.716355 0.756123 -0.559639 -0.108701 0.444002 -0.068804 0.063149 -1.267504 0.196519 -0.042288 -0.959185 -0.211748 -0.905083 0.114412 -0.476450 -0.845574 -0.074609 -0.340270 0.741692 0.008684 -0.184594 -0.522070 -1.829503 0.029896 0.184949 0.272518 0.755714 0.430593 -0.393991 -0.377578 -0.817343 -0.947650 1.126506 0.221359 0.336081 0.544082 -0.986175 -0.346655 -0.169559 0.204749 0.238242 0.700598 -0.811971 0.668680 0.217463 -0.346397 -0.498305 -0.989188 0.263737 -0.791954 0.244240 0.221237 0.168216 0.016226 -0.629060 0.262574 -0.578076 -1.169715 0.327582 -0.536746 -0.598952 0.948833 -0.564260 -0.310798 -0.147341 0.018538 0.183397 0.892982 0.369885 0.283920 0.845039 0.689891 0.534406 -0.981805 -0.103112 0.407653 0.745342 0.676889 0.285526 -0.458703 -0.680762 0.337813 -0.753505 -1.901628 -0.295806 1.214284 1.012624 -0.022589 -0.918402 0.624110 -0.594440 0.735676 1.139520 0.599626 0.461641 0.208058 -0.848878 0.409255 1.656453 -0.647262 0.907647 -0.169575 -0.750835 1.408711 -0.581789 0.590495 0.056338 -0.224459 0.033271 -0.516108 -0.019330 1.328300 0.457954 0.430327 0.237216 0.258747 -0.566511 -1.410148 -1.851852 -0.361049 1.380583 0.740730 1.732869 -0.901810 -0.432407 0.078528 0.729580 -0.453059 -0.753430 0.269442 -0.588771 0.674062 -2.611344 -1.457707 2.019199 1.317052 0.706653 -0.009173 0.797884 0.663209 -0.372709 -0.796046 -0.652052 0.609675 0.198014 -0.861408 -0.233433 0.062122 -1.475326 -0.187931 -0.033323 0.176278 0.041065 -0.346997 0.509578 -0.514522 -0.787761 -0.518757 0.350499 -0.883472 -0.379478 -0.170193 -0.084427 0.023315 0.291446 -0.235251 -0.140762 0.260577 -0.966543 -0.183589 -0.014426 0.619910 0.467409 1.772902 1.642096 -0.388182 0.692191 0.027528 -0.846288 2.087523 -0.819676 0.069678 -0.020746 1.077778 0.297378 0.568165 0.940991 -0.466938 -0.585335 -1.307087 -0.035844 0.727884 0.667079 -0.832280 -0.809939 -1.562480 -0.051864 0.096544 1.747212 -0.419835 2.071360 -0.656342 0.590043 -2.144141 0.230912 0.448414 -0.240635 0.790124 0.465390 -0.885619 -0.944835 -0.393606 -0.816994 -0.147833 -0.034997 -0.671485 -0.615214 -0.565892 0.158918 -1.176419 0.278827 0.606484 -0.500505 1.012314 -0.201303 -0.071360 -0.541871 0.237748 1.015416 0.283527 -0.892157 0.967902 0.069295 2.605826 -0.186116 1.055243 -0.671212 0.606770 -0.430584 -0.895409 -0.579866 1.458232 1.393051 0.326145 0.240866 0.331843 -0.018460 0.813990 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -2.147018 1.470908 9.427392 3.432706 -2.753382 -5.578050 -2.599966 -10.481741 5.754431 3.394959 8.001257 0.347589 4.650335 -1.044551 0.395112 -0.373289 3.680557 -1.878572 0.170311 -2.443791 0.224583 8.713350 2.133850 -2.469507 0.679217 -7.343955 2.651090 2.050656 4.070703 4.303207 1.279793 -0.070080 -1.160484 2.891530 -2.931768 1.205402 0.900970 2.543288 -3.478978 -2.257786 1.306741 0.406031 4.592288 0.459145 5.933221 -0.469943 3.438137 -0.944383 -3.195029 -2.778915 -2.060627 6.132837 -3.188406 3.209702 0.896954 -0.109601 0.257696 -2.413099 -0.328651 -5.256445 0.902481 0.639433 -3.218548 -0.195254 -3.301541 1.346972 -1.647089 -1.832891 0.411398 -3.278268 3.628060 -0.130268 0.850951 -1.505014 -8.022576 1.926529 0.651902 0.357827 3.206587 2.329145 -1.570682 -1.345166 -2.971459 -5.134312 4.889324 4.215137 0.083878 1.586357 -4.067465 -0.376843 -0.596458 -0.596172 0.034283 4.793124 -5.974393 2.486576 0.610819 -2.520558 -2.239528 -4.566788 0.622285 -5.161220 1.607487 2.427982 -0.720666 0.320319 -1.907711 1.346726 -2.087115 -5.058991 2.261366 -1.505444 -1.040135 5.879881 -3.968026 -1.716829 -2.042374 0.028336 0.434944 4.166469 0.851812 2.350973 4.898407 3.665236 3.518608 -5.087549 -0.405518 3.865225 4.075025 2.511032 1.418191 -4.619750 -2.478210 1.786532 -2.637994 -9.239107 -2.696610 4.433644 5.528307 -0.044674 -4.536887 1.275366 -1.905538 5.213339 5.534776 1.973956 1.521922 1.306699 -4.256241 1.870408 8.236963 -2.864497 4.239903 -1.691032 -3.281522 5.437530 -3.842660 4.237528 0.250735 1.199777 -0.045016 -4.411652 0.118204 6.743828 1.651902 3.100043 -1.148674 1.332314 -1.751225 -7.556111 -10.429036 -2.410778 5.194238 2.514550 8.058181 -4.361329 -3.723879 -0.073042 5.696785 -0.894801 -4.070533 2.409296 -3.577491 3.137722 -10.280580 -7.630185 9.724596 9.663848 3.278035 -0.614198 5.236269 2.551386 -4.288218 -3.939464 -3.389022 4.034645 0.787089 -4.527687 -0.796122 0.467393 -6.562716 -2.177623 -0.846890 0.866302 1.304804 -0.932490 2.988306 0.242274 -3.685185 -2.261042 3.626173 -3.246512 -3.227521 -1.856259 0.766996 0.252070 2.733756 -2.692997 -1.312109 2.732071 -4.678056 -0.943114 1.688975 2.675163 1.362488 8.039139 7.320821 -1.124105 4.314152 -0.411209 -3.440931 9.693772 -4.113222 -0.721865 -0.584108 2.468463 0.368968 2.911944 3.310391 -2.447588 -4.052820 -5.836107 0.551351 0.366991 3.726156 -4.367379 -6.636151 -6.571716 -0.353115 0.716390 6.810822 -0.086035 11.397260 -2.966513 2.502919 -11.817550 0.792269 3.841533 -0.902086 4.153067 2.337193 -4.472031 -6.183767 -1.313701 -4.209514 -2.153392 -0.276023 -4.989197 -3.383062 -5.418013 5.367849 -4.815904 1.466043 3.716867 -0.276045 5.602525 0.375592 -1.063964 -3.794869 1.154168 3.490532 0.976299 -4.258504 5.267194 -0.171694 13.058240 -3.243197 4.433751 -3.376809 3.360619 -2.680853 -4.751131 -2.212280 7.131325 7.099441 2.264155 -1.310985 -0.358514 -2.435407 3.762662 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.002879 1.087692 5.231528 3.112290 -2.413886 -3.788352 -1.383888 -4.536847 2.548608 1.196357 3.729148 0.037134 1.967894 -0.008888 0.146569 -0.673270 1.926229 -0.132571 -0.441020 -1.460863 -1.054076 4.142419 1.724620 -2.998719 0.633503 -3.462390 1.977138 1.839655 1.681733 2.664942 0.430012 0.116548 -0.648853 1.801019 -2.310230 -0.182163 -0.165678 1.126306 -1.971452 -0.967828 1.311239 0.397049 2.857171 0.216879 2.515418 0.774413 2.194930 -0.254015 -2.618797 -1.266904 -1.532698 3.251972 -1.488579 2.126997 0.091417 0.780428 0.645888 -1.930083 -0.201609 -3.557479 0.774921 0.525733 -1.998800 -0.331432 -2.483926 0.407258 -0.786386 -1.894671 0.858267 -1.566031 1.870991 -0.343915 -0.008409 -1.878732 -3.763606 0.918832 0.408216 0.871485 1.666272 1.157266 -0.787956 -0.410148 -1.921113 -2.399889 1.683745 0.937548 0.417181 0.930345 -1.565043 -1.146600 0.288854 -0.216410 -0.214972 2.449505 -2.702060 1.765914 -0.100995 -1.190649 -1.832071 -2.397316 0.251073 -2.424026 1.038083 1.576795 -0.898987 0.495861 -0.483416 0.925199 -0.599804 -3.117227 0.788685 -0.980892 -0.509010 3.027158 -1.832748 -1.272666 -0.422331 -0.147115 -0.024375 2.684529 0.174306 0.984323 2.671470 2.030183 1.564055 -2.602567 0.042318 1.223893 1.845011 1.649955 1.454400 -2.311257 -1.505059 0.613142 -1.310447 -4.971816 -0.713495 2.334602 3.056085 0.407621 -3.142453 1.181828 -1.438260 2.733897 2.285365 1.808481 1.024307 0.171414 -2.216077 0.962827 4.910993 -1.703156 2.325332 -1.040453 -2.689667 3.401263 -1.255430 2.216364 0.121219 0.126295 0.515923 -2.284651 0.172735 3.759450 0.935260 0.872659 0.969215 0.409210 -1.236342 -4.495949 -5.234304 -0.681474 2.393304 1.343138 5.248531 -2.725192 -1.801489 -0.608790 3.091041 -1.108184 -1.755983 0.783729 -1.549804 1.561354 -6.229724 -4.330340 5.117155 4.583779 1.173804 -0.248553 3.081111 0.853996 -1.302088 -2.253317 -2.168248 1.856567 0.852812 -0.867432 -0.101626 0.072185 -3.730465 -0.611948 0.080607 0.636966 1.317253 -1.562563 0.396031 -0.681560 -2.923685 -1.918657 1.398661 -2.628351 -1.102483 -0.261338 0.241995 -0.076446 1.248600 -0.943964 -1.486591 0.740937 -2.298032 -0.582827 0.492200 1.925291 0.753989 4.547386 4.049013 -0.517270 2.443999 0.388223 -2.105009 7.167816 -2.528312 -0.207137 -0.257841 2.347510 0.113422 1.402974 1.908596 -1.196981 -1.755947 -3.228030 0.671038 0.277296 1.624292 -4.061016 -2.836525 -4.035357 -0.558126 0.292104 3.806827 -0.317174 6.173502 -1.343646 1.050305 -6.781035 0.363741 2.259748 -0.396485 2.130968 1.590024 -2.720185 -4.248164 -0.540634 -2.096044 0.444805 -0.328472 -2.762479 -1.924141 -1.814895 1.619974 -2.212445 1.098055 3.162910 -0.871357 2.490589 0.041820 -0.587639 -1.184551 -0.470035 2.051527 0.764778 -2.341852 3.328572 -0.098790 7.238974 -0.720193 2.710868 -1.956294 1.254032 -0.972391 -2.392028 -1.508108 3.724329 3.275624 1.218267 0.093712 0.319104 -1.352118 2.055463 -PE-benchmarks/dfs.cpp__main = 0.623177 1.634976 4.629424 1.226573 -1.901145 -4.627878 -1.107060 -6.289783 2.560929 1.232833 3.590380 0.008473 2.442183 0.016909 0.369744 1.425116 2.404814 0.235983 0.162596 -1.873981 -1.126875 4.375845 -0.013307 -0.397149 0.972770 -3.482027 1.367821 2.130323 2.715577 2.224468 0.917398 -0.135576 -0.821714 1.422396 -1.457589 0.161573 0.060781 0.874775 -3.239868 0.316198 -0.223178 -0.254500 3.084236 0.450680 2.488339 0.517777 2.178521 0.675419 -1.123913 -1.067750 -1.778400 3.681988 -0.775419 1.937671 -0.770984 -0.639849 0.069207 -0.724613 0.173215 -0.493547 -0.049351 0.020777 -2.174427 -0.089758 -2.364643 0.334445 -1.712254 -2.049220 0.002460 -0.808624 1.821456 -0.355641 -0.782028 -1.076334 -5.610245 0.224066 0.676200 1.009574 1.822098 0.477266 0.018261 -0.559793 -2.457088 -2.676734 2.808638 2.680216 0.678172 0.857198 -3.180547 -1.417257 -0.683152 -0.070814 1.117782 1.972770 -2.859820 1.258530 -1.025243 -1.381484 -2.236705 -3.863693 0.799827 -1.650535 1.183873 -1.013991 0.766649 0.309715 -0.361525 0.795781 -0.694137 -2.591659 0.674838 -0.789792 -0.612683 4.281954 -0.906737 -1.482546 -1.458227 -0.464615 -0.872501 2.178715 1.019801 0.429513 2.792595 2.193511 1.589504 -2.440525 -1.085314 1.274137 1.228619 1.827139 1.378505 -1.943694 -1.762591 0.872965 -1.964137 -5.127980 -1.019366 1.994478 2.834776 -1.139089 -0.664176 0.368086 -1.727844 2.187517 2.415653 0.675810 1.134182 0.048395 -2.199528 1.410519 4.647305 -1.546507 2.308039 -1.861896 -1.204762 2.319499 -1.071961 1.537237 0.142863 -0.623445 -0.651877 -1.028784 0.196120 3.229608 0.762064 0.685430 0.390354 0.853779 -2.131073 -3.210388 -5.070374 -0.672429 2.882528 0.843724 3.967971 -2.325195 -1.850761 -0.438508 2.573666 -0.547565 -1.801990 1.830184 -2.451002 1.663592 -4.744020 -3.518304 4.902084 4.832828 2.044053 -0.825142 2.285789 1.661295 -2.941103 -2.680674 -1.394829 1.685739 0.379211 -4.218694 -1.309974 0.358090 -3.582181 -0.173478 -0.417585 0.992517 0.803472 0.578184 2.590548 -1.214005 -2.526768 -2.055698 2.083323 -1.712123 -0.578337 0.019474 -0.117446 -0.398624 1.490992 -1.448169 -0.586886 1.447357 -2.333667 0.316062 0.505960 1.477967 0.384377 4.395499 3.667740 -0.192842 3.439510 -0.164048 -2.330825 4.778648 -1.709940 0.790590 -0.125067 1.252762 -0.655018 1.558990 1.979930 -1.181746 -2.390339 -3.174029 -0.444120 0.759700 1.807660 -0.353254 -2.789180 -4.110146 -0.328611 -0.078709 4.478270 -0.304276 5.088611 -1.733076 1.890495 -5.541922 0.740920 0.755951 -0.485975 2.231953 1.049089 -2.601511 -1.794928 -0.286115 -3.015898 -2.400481 0.049314 -2.484916 -2.204323 -2.031742 1.563893 -2.399801 0.161717 2.079536 -0.863244 2.843588 -1.047014 -0.437632 -1.692355 0.632138 3.826579 0.044590 -2.337150 1.805959 0.296009 7.472854 -0.101016 2.668160 -1.214669 0.375697 -0.369919 -2.958403 -1.722482 3.740592 3.350547 1.158374 -0.337291 -0.062081 0.130778 1.850819 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/dfs.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/dfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/dfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/dfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/dfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/dfs.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/dfs.cpp___GLOBAL__sub_I_dfs.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/tug-of-war.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -4.401115 4.334932 22.584064 17.716127 -8.141420 -10.232840 -5.526790 -9.429063 8.944152 1.761946 11.545946 -0.403532 4.286098 1.466450 -1.589912 -7.852837 6.358789 -0.878598 -2.461101 -5.271267 -2.274274 16.840311 11.447120 -21.234678 1.069986 -17.478495 12.622215 6.464923 6.324204 15.279839 0.248958 2.198448 1.472566 9.174538 -12.342390 -6.524713 -3.194679 3.976389 -6.469871 -3.674790 9.752319 9.243777 11.655958 1.546402 5.407022 7.487998 7.811457 -2.399075 -10.487305 -2.496898 -7.792181 10.886805 -6.212776 8.479009 -1.979222 7.375637 5.908657 -11.314555 -1.839527 -19.582649 3.116463 7.766229 -7.337324 -1.989463 -12.633862 1.655250 -2.078892 -8.183594 5.547494 -4.268263 7.098548 1.164350 2.162786 -13.739056 -11.402124 8.041713 0.404407 6.199209 6.108604 2.360725 -4.897714 1.768652 -6.342210 -8.278071 2.222245 -2.032158 1.393401 3.193122 4.648393 -8.803379 0.730207 0.686706 -5.750960 10.595177 -4.646478 11.245152 -2.117582 -3.998804 -4.838460 -2.168854 -1.875373 -11.282362 2.990345 11.478140 -7.497080 4.578918 0.271501 3.214629 0.814484 -11.934780 2.647496 -3.863117 -2.868854 11.427881 -6.328186 -5.901347 0.549844 1.404613 0.638606 13.715609 -5.005678 5.950395 9.338263 7.774805 2.766389 -10.136575 5.229486 2.279214 5.959031 5.839843 9.765372 -8.256550 -8.002014 -2.992725 1.421830 -18.346922 1.961677 7.545413 10.574811 2.129021 -18.112302 9.859937 -6.733278 13.672677 8.754478 8.069483 5.667722 -1.434049 -8.900766 5.792262 23.077843 -7.356736 8.064045 -8.365006 -16.096805 18.330726 -2.916162 11.296516 -3.705968 1.454097 6.550927 -11.671684 3.213308 16.504694 2.508203 2.491526 12.234362 -2.015655 4.702710 -19.662579 -17.328859 -2.364872 4.914881 4.686022 25.341152 -9.023438 -3.771998 -4.736440 8.653570 -4.435434 -2.522893 -1.169026 -3.659771 4.163898 -31.234669 -19.608494 20.310519 15.398403 -0.782882 1.243155 11.143194 2.499068 6.193189 -8.630882 -7.672186 8.137942 4.933079 7.223172 2.937740 -0.129347 -11.457219 -3.185806 4.054049 1.860542 9.487109 -15.521366 -8.743975 -4.792875 -17.030589 -11.618938 3.513475 -15.549043 -5.638961 2.241367 0.819501 -1.324101 3.993068 0.782434 -7.188068 1.361719 -5.807603 -6.303941 -0.122880 10.919369 1.776929 9.060057 15.011565 -0.236970 7.050127 7.299648 -7.788622 36.237365 -12.297286 -3.670250 0.315033 11.452020 1.362710 6.711100 4.559175 -3.773901 -2.089672 -14.164492 11.275003 -0.189469 3.545479 -26.629671 -8.062984 -11.719571 -4.084827 3.365820 13.194656 -1.014236 27.241601 -3.859659 -0.594177 -26.521505 -0.083555 12.701067 1.684495 10.375850 10.286065 -12.328356 -19.391512 -3.221480 -5.415816 14.786315 -4.582875 -13.913753 -9.399875 -0.606658 4.351199 -8.527151 9.841154 18.164813 -5.124324 6.715373 0.343655 -3.380016 -3.761601 -7.717952 2.682204 6.672924 -7.712982 13.401674 -5.079290 22.132280 -5.148000 12.291053 -11.559940 5.523752 -2.793297 -6.710781 -6.144100 16.487068 7.813167 3.055825 5.118704 -0.092105 -5.777370 10.158726 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -3.252766 3.137920 18.079279 13.502706 -7.556408 -9.690739 -4.902510 -11.045713 7.811997 2.927566 10.288884 -0.408985 3.862655 1.752482 -0.711397 -4.734518 4.486135 -0.417880 -1.879278 -4.195390 -3.203717 13.025622 8.708911 -14.823256 1.087148 -12.684707 7.986461 5.386502 5.214801 9.997086 0.477889 0.799742 -0.225495 6.925508 -9.721039 -3.023619 -2.025958 3.457028 -5.735845 -3.106008 6.287870 5.069988 8.722354 0.699816 6.867818 4.298127 6.999850 -1.730296 -9.173518 -2.371201 -5.351053 10.366321 -5.177505 6.724370 0.033178 5.687185 2.194313 -9.272530 -1.979005 -14.195280 2.942232 4.997243 -6.424760 -1.018015 -9.400493 1.447644 -1.790858 -6.515068 4.329012 -3.878761 6.302011 -0.090133 0.929109 -9.390640 -9.808186 4.871909 0.244794 3.757457 4.726575 2.495896 -3.270728 0.859727 -5.102637 -6.719806 2.561834 0.596669 0.433797 2.087263 1.116950 -5.779285 1.343974 -0.649248 -3.387731 8.842977 -6.619791 8.119886 -1.357675 -3.195087 -5.038724 -4.089598 -0.695986 -8.811188 3.792151 7.671049 -4.717481 3.293237 1.029694 3.421105 -0.026865 -10.437151 1.439936 -2.411147 -0.638243 9.257077 -5.711026 -4.351725 0.513191 0.166061 -0.555774 9.860689 -1.501998 4.019820 8.698117 6.569495 3.514573 -8.128708 2.307728 2.858893 4.882686 5.701676 6.612376 -7.582594 -5.245097 -0.677511 -0.226228 -15.378216 0.142694 6.350752 8.430297 1.786581 -12.695047 4.724921 -4.494734 10.193346 6.658078 7.060388 3.966932 -0.608339 -6.510603 3.542420 18.074572 -5.428356 6.754542 -5.036885 -11.671050 12.861500 -3.790712 8.897988 -1.000486 1.380445 4.370532 -9.353014 1.339336 12.635979 2.155321 1.876582 7.114192 -0.282088 -0.376515 -15.551747 -14.712099 -1.737727 4.839905 3.777441 19.429469 -8.137656 -5.209605 -3.192799 8.877222 -2.759183 -2.992628 0.740885 -3.733412 4.092934 -22.650531 -15.181807 15.203606 13.468333 1.776847 -0.505282 10.509658 1.728541 0.547428 -7.487955 -6.838792 6.245165 3.758047 3.626601 1.440482 -0.506372 -10.599714 -2.007124 1.842134 1.828401 6.458287 -9.505301 -4.284851 -2.444690 -12.415783 -7.854377 3.714428 -11.413764 -3.836249 0.112712 1.242646 -1.068521 3.216706 -1.642077 -5.840900 1.547287 -5.497699 -2.778354 1.611218 7.227935 1.370386 10.889406 12.760298 -0.697728 7.217189 3.936522 -6.004139 27.602674 -8.950050 -2.021609 -0.206663 8.190026 -0.467047 4.295681 4.253597 -3.417838 -3.876612 -9.753407 6.248807 -0.342456 4.201574 -18.359370 -7.837282 -10.435559 -3.204178 2.096568 10.380856 -0.046748 20.890897 -3.258383 1.984662 -22.382823 0.486971 9.426001 0.103898 7.996334 6.964669 -9.560261 -15.968107 -1.980653 -4.670108 8.281029 -2.549771 -11.026245 -6.878472 -3.204056 4.037517 -5.944323 5.876709 13.542906 -4.022259 6.244304 -0.091440 -2.436434 -2.342093 -4.778040 3.991388 4.154011 -7.495195 11.318459 -2.656145 21.504738 -3.074675 9.314611 -8.081307 3.720749 -2.960312 -5.570890 -4.453996 12.428346 7.787338 3.574107 1.553416 0.224412 -5.651081 6.055418 -PE-benchmarks/tug-of-war.cpp__main = -0.657701 1.045352 4.704194 2.739652 -2.040582 -3.049486 -1.320966 -3.780235 2.026490 0.956520 3.077418 -0.237393 1.446805 0.417152 -0.056428 -0.701168 1.541401 -0.270138 -0.101193 -1.321200 -1.110571 3.581557 1.728591 -2.671693 0.485623 -3.386484 2.137166 1.352912 1.515304 2.691455 0.366749 0.112748 -0.396868 1.681721 -2.008217 -0.376973 -0.222205 1.043156 -1.703101 -0.302105 1.174427 0.678711 2.483597 0.250724 1.948250 1.265425 1.596169 -0.092617 -2.233019 -0.905781 -1.300920 2.523695 -1.409034 1.719648 -0.136402 0.786978 0.535852 -1.920554 -0.410553 -2.945903 0.465897 0.571881 -1.719532 -0.041070 -2.491128 0.451328 -1.035067 -1.794151 0.803010 -1.027616 1.690399 0.030838 0.113460 -1.658364 -3.193716 1.085891 0.324823 0.956305 1.352749 0.470537 -0.712637 0.135671 -1.777832 -2.133638 1.179515 0.820694 0.415305 0.480256 -0.603612 -1.283251 0.177660 -0.084186 -0.287251 2.306365 -1.813406 1.789634 -0.583385 -1.036044 -1.604089 -2.179243 0.046902 -2.179202 1.114772 1.452742 -1.050202 0.495400 -0.163032 0.937705 -0.241671 -2.803451 0.570574 -0.856788 -0.212390 2.881754 -1.443662 -1.171397 -0.509608 -0.212997 0.012806 2.456656 0.026767 0.872969 2.379541 1.867928 1.112547 -2.220911 0.029219 0.805256 1.306605 1.383575 1.680603 -2.016673 -1.538737 0.154813 -0.756621 -4.263686 -0.436680 1.597077 2.349964 -0.039758 -2.626791 1.167065 -1.477388 2.415443 2.059546 1.681486 1.042670 -0.111632 -1.862889 1.066211 4.517206 -1.496699 1.971343 -1.382810 -2.673568 3.185377 -0.947753 2.086738 -0.071443 0.174999 0.509114 -2.148741 0.302858 3.267286 0.705226 0.702000 1.448482 0.192913 -0.554010 -3.751134 -4.127280 -0.360855 1.998091 0.968771 4.656311 -2.331579 -1.313075 -0.580276 2.552268 -0.449847 -1.200376 0.488433 -1.128257 1.161855 -5.744436 -3.899061 4.195362 3.790675 0.913239 -0.250569 2.370309 0.816379 -0.783602 -2.124549 -1.872885 1.766924 0.495556 -0.494874 -0.257716 0.091247 -2.936727 -0.395100 0.185442 0.724329 1.721472 -1.839480 -0.298532 -0.711139 -2.920077 -2.019448 1.304074 -2.601310 -1.092246 0.082556 0.154317 -0.157413 0.941541 -0.576831 -1.161597 0.610659 -1.744082 -0.492580 0.597075 1.799126 0.283287 3.474802 3.384623 -0.333038 1.722887 0.603807 -1.718693 6.453235 -2.196365 -0.157151 -0.111966 2.029901 -0.143071 1.155655 1.596529 -0.954799 -1.596577 -2.706905 1.010183 0.172913 1.247604 -3.667783 -2.383493 -3.303145 -0.509699 0.378766 3.405710 0.018994 5.403643 -0.891677 0.873934 -5.520499 0.283694 1.989875 -0.140559 2.151543 1.551019 -2.448964 -3.393027 -0.553948 -1.921251 1.019677 -0.502120 -2.609369 -1.861278 -0.980053 1.096500 -1.526827 1.087342 2.975216 -0.928307 1.939130 0.142366 -0.664822 -1.063808 -0.714931 1.861094 0.711008 -1.993817 2.859190 -0.286966 6.015362 -0.551339 2.319402 -1.741358 0.768730 -0.586022 -1.788666 -1.275141 3.384415 2.413041 1.021594 0.214203 0.028574 -0.926969 1.622902 -PE-benchmarks/tug-of-war.cpp___GLOBAL__sub_I_tug_of_war.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.254431 3.336097 12.326237 6.202520 -5.965004 -7.927152 -3.667645 -9.942091 4.286097 3.414528 7.813643 -1.961570 2.285007 2.881412 -0.174150 -0.085506 3.216842 -0.764408 -0.554278 -3.821480 -4.600710 6.507651 4.411578 -5.570080 1.563220 -8.090794 5.590625 2.320260 2.913372 5.199573 2.039674 -0.184703 -0.336629 5.035226 -4.311117 1.479258 -0.180451 3.001879 -3.607222 0.875095 2.663907 2.329084 5.342172 1.213855 6.136078 5.692815 4.190628 -0.543153 -7.606286 -1.521919 -3.253748 7.638555 -4.623820 4.289318 -0.613513 3.358647 -0.103856 -6.310669 -1.416125 -7.199756 0.236092 1.823989 -5.137080 0.384643 -6.884990 1.108235 -2.655205 -4.375278 1.438951 -0.749420 4.940271 -0.248171 -0.470415 -2.183673 -6.444541 3.093270 1.061524 2.438505 4.091397 -1.662262 -1.404410 0.448547 -3.852722 -5.796291 3.607263 1.452515 1.579796 0.618162 0.193628 -3.027912 -0.265660 -0.752690 -1.048041 7.371525 -4.852759 4.533691 -1.596769 -2.991877 -5.649814 -6.019289 -0.279977 -5.877474 3.576428 4.215854 -2.594839 1.579681 -0.760891 3.250298 -0.350107 -6.418463 0.684678 -2.022392 0.711266 6.324036 -3.468469 -3.551195 -0.067312 -0.926356 0.079058 5.921295 1.315014 1.641301 7.436680 4.739740 4.495391 -5.289896 -0.024244 0.395977 2.733676 4.511451 4.973076 -5.599168 -4.382186 0.130740 -1.714189 -10.466575 -0.270421 3.085253 5.690965 -0.385694 -6.976731 1.801351 -3.497755 6.152157 4.414783 5.443564 2.734124 -1.029817 -4.459240 1.909195 11.425100 -3.761640 4.878547 -2.908609 -5.589458 6.507422 -2.611445 5.148375 1.219227 0.000616 1.207834 -6.324021 -0.673845 8.311558 2.787582 1.297846 3.871697 1.340420 -2.036508 -8.685931 -9.029650 -0.700584 4.426844 0.405496 11.176775 -6.421796 -3.806112 -1.845340 7.019948 -0.611769 -2.591191 0.584971 -2.331594 2.794703 -12.759725 -9.611446 10.284065 10.367619 3.110776 -2.015030 6.235569 2.191003 -3.648370 -5.830785 -5.008029 4.279745 0.887376 -0.570811 -1.743251 0.509832 -7.759238 -0.860183 -0.235589 2.389131 3.979288 -3.422726 -1.921904 -0.224085 -7.045701 -4.108696 2.023012 -6.104512 -3.220551 0.140637 1.054728 -0.040638 1.996266 -2.958279 -3.482956 1.801218 -5.176783 -0.993543 2.777749 5.828708 1.169954 10.236350 8.610492 -0.670269 5.319664 1.460738 -4.201931 14.879020 -4.257366 -0.157026 -0.263989 4.461875 -1.137353 1.867123 4.378739 -2.710606 -5.409413 -6.334937 2.353194 -0.075465 2.996291 -6.743146 -5.445025 -8.696743 -0.926373 1.165741 8.617356 0.538553 13.003344 -0.406051 2.765200 -12.963915 0.697792 5.679735 -1.124621 4.749539 4.635578 -6.426873 -8.629824 -1.324619 -4.475194 1.021821 -0.727260 -5.347108 -4.641382 -2.747544 2.214327 -2.545419 2.606713 7.462103 -1.080778 4.205814 1.100501 -1.827951 -1.681186 -1.906312 6.767158 1.830334 -5.985854 7.274727 -0.126587 17.598129 -1.600718 5.775411 -4.381511 -0.234669 -0.243589 -2.449710 -3.586470 8.434786 6.264245 3.702838 0.629232 0.087793 -2.828089 4.212750 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = -0.213902 0.186961 0.927885 0.167515 -0.243783 -0.763843 -0.248683 -1.180849 0.505181 0.322694 0.940098 -0.064011 0.663706 -0.233948 0.118182 0.133706 0.521856 -0.145557 0.199082 -0.250279 -0.015038 0.946964 0.110059 0.063567 0.090989 -0.611926 0.184795 0.202244 0.469741 0.570437 0.129026 -0.065901 -0.157332 0.197525 -0.180736 0.220566 0.207773 0.324386 -0.470138 -0.115586 -0.178820 -0.292660 0.486736 -0.052899 0.586013 -0.053993 0.313561 -0.004993 -0.372771 -0.371700 -0.271440 0.605495 -0.400521 0.291709 0.010489 -0.368654 0.090910 0.092028 -0.051368 -0.577472 -0.003466 -0.222165 -0.277828 0.014092 -0.360473 0.216140 -0.349138 -0.306662 -0.029320 -0.199873 0.373000 0.177022 0.246045 0.225097 -0.980595 0.211576 0.206898 0.108202 0.317721 0.152499 0.032045 -0.175758 -0.339139 -0.585895 0.715124 0.453450 0.217646 0.192475 -0.713149 0.133421 -0.074209 0.025761 0.164812 0.329482 -0.461116 0.213312 -0.005579 -0.219049 -0.199187 -0.917002 0.017458 -0.497505 0.102717 0.186422 0.111611 -0.009733 -0.516328 0.270989 -0.403970 -0.642347 0.391328 -0.241519 -0.406040 0.660909 -0.500706 -0.069818 -0.281541 0.059775 0.105021 0.378316 0.136340 0.360752 0.249435 0.420337 0.374240 -0.554136 -0.161105 0.372449 0.565744 0.238324 0.154515 -0.368790 -0.357604 0.244214 -0.571513 -1.042679 -0.453219 0.570841 0.613555 -0.032756 -0.383663 0.167562 -0.305376 0.547857 0.661492 0.183249 0.139127 0.150732 -0.513910 0.294107 0.660745 -0.436616 0.625619 -0.018986 -0.205837 0.451328 -0.335102 0.326326 -0.000671 0.015684 -0.026595 -0.372971 -0.109428 0.685554 0.419842 0.417893 -0.301510 0.194697 -0.369693 -0.836628 -1.070416 -0.208331 0.831877 0.127536 0.653127 -0.442183 -0.510185 0.143330 0.629521 -0.171708 -0.563693 0.219455 -0.421817 0.371116 -1.202494 -0.873639 1.178749 0.978265 0.483907 0.015710 0.361105 0.505903 -0.724066 -0.376917 -0.296163 0.384113 -0.145954 -1.110334 -0.488626 0.120020 -0.737112 -0.174109 -0.102922 0.138936 -0.004216 0.200489 0.536250 0.044220 -0.278417 -0.061296 0.425177 -0.345776 -0.369247 -0.151882 0.023042 0.225140 0.287089 -0.373755 0.048975 0.401850 -0.675841 -0.093088 0.091458 0.337314 0.245547 1.098891 0.891417 -0.093207 0.377466 -0.125935 -0.539067 0.777083 -0.405163 0.033964 -0.126784 0.268501 0.055321 0.281713 0.562049 -0.268536 -0.633201 -0.733740 -0.281184 0.240848 0.433644 -0.065221 -0.858437 -0.752159 0.125329 0.113193 0.877080 -0.084501 1.131229 -0.382678 0.289871 -1.120821 0.109811 0.209387 -0.162750 0.507262 0.194275 -0.379016 -0.604533 -0.207884 -0.613330 -0.500097 -0.077111 -0.505710 -0.211891 -0.598546 0.554317 -0.526546 0.013458 0.124998 0.068030 0.792848 0.254708 -0.137160 -0.572384 0.385436 0.543817 0.027402 -0.432986 0.581979 0.169856 1.546210 -0.200463 0.291213 -0.338427 0.249785 -0.153519 -0.461431 -0.210725 0.813382 0.954832 0.247943 -0.126737 0.046501 -0.108425 0.426715 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = -0.019996 0.152568 0.729682 0.174644 -0.136001 -0.762645 -0.162941 -1.144000 0.507298 0.297238 0.784180 -0.055378 0.630434 -0.283910 0.063159 0.196510 0.420689 0.005654 0.098890 -0.228121 -0.074441 0.853001 -0.103466 0.043870 0.117054 -0.527844 0.249442 0.312452 0.409243 0.462112 0.149529 0.009117 -0.078439 0.165964 -0.245278 0.190012 0.097704 0.280542 -0.417368 -0.153518 -0.103859 -0.193246 0.447107 0.024733 0.506701 -0.013923 0.303706 0.008193 -0.158869 -0.284036 -0.238884 0.495297 -0.226674 0.259250 -0.203077 -0.325371 0.139853 0.055406 0.048240 -0.331465 0.075376 -0.088916 -0.372105 -0.038024 -0.332457 0.126420 -0.183227 -0.323795 -0.061683 -0.213383 0.295267 0.045571 -0.011272 -0.023708 -0.971938 0.056037 0.206462 -0.000893 0.330133 0.145855 0.044570 -0.249902 -0.390593 -0.482378 0.786027 0.487303 0.203918 0.323455 -0.665273 -0.071243 -0.115590 0.033436 0.300598 0.300455 -0.345957 0.111118 0.038654 -0.191147 -0.180063 -0.697091 0.171856 -0.362771 0.107768 0.034507 0.177408 0.102848 -0.170777 0.226269 -0.307605 -0.488244 0.238810 -0.293906 -0.188004 0.638912 -0.263326 -0.219103 -0.313369 -0.023340 0.022978 0.339415 0.163242 0.183887 0.391804 0.302073 0.320641 -0.519360 -0.223276 0.402039 0.369601 0.263553 0.029493 -0.394768 -0.268607 0.206770 -0.539627 -0.945641 -0.399812 0.364926 0.505651 -0.244633 -0.275780 0.329051 -0.229952 0.342338 0.568954 0.062949 0.127535 0.191505 -0.445954 0.207583 0.612609 -0.303416 0.423114 -0.168752 -0.204641 0.289257 -0.159772 0.170050 0.018017 -0.119738 -0.057486 -0.213581 0.096024 0.576394 0.188242 0.300457 -0.242017 0.242197 -0.449459 -0.598926 -0.948294 -0.180358 0.687857 0.193321 0.727961 -0.409841 -0.407589 0.074278 0.512778 -0.195646 -0.363043 0.272762 -0.469957 0.359120 -0.953426 -0.726715 0.968097 0.704047 0.549927 -0.063509 0.332692 0.342748 -0.489840 -0.280588 -0.204168 0.281819 0.114281 -0.968787 -0.307395 0.042673 -0.664522 -0.175723 -0.104482 0.111379 -0.116506 0.183197 0.581932 -0.262008 -0.224749 -0.168837 0.378628 -0.273609 -0.113459 -0.169649 0.003071 0.038172 0.276256 -0.353038 0.050469 0.287621 -0.456289 0.016641 0.065857 0.204189 0.168863 0.895315 0.800379 -0.190748 0.445115 -0.150644 -0.398893 0.648919 -0.272771 0.063287 -0.041437 0.265970 0.100177 0.259127 0.477284 -0.250228 -0.387266 -0.671204 -0.286336 0.336983 0.331459 0.061411 -0.481321 -0.745825 -0.002922 -0.073082 0.882366 -0.066625 0.932593 -0.370873 0.311550 -0.903514 0.119639 0.125405 -0.177224 0.367368 0.136738 -0.374709 -0.441103 -0.121419 -0.546350 -0.659058 -0.065423 -0.411829 -0.303992 -0.515146 0.352241 -0.517698 0.014638 0.199422 0.039878 0.527232 -0.131422 -0.018215 -0.422494 0.325501 0.466555 -0.014245 -0.416091 0.285579 0.132660 1.320912 -0.117646 0.410204 -0.298910 0.330322 -0.240054 -0.526365 -0.246384 0.660901 0.747984 0.167017 -0.038559 0.079199 -0.007974 0.441334 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = -0.606332 0.150330 1.601896 0.218889 -0.633559 -1.270007 -0.414185 -2.013274 0.929596 0.652379 1.693017 0.013602 1.107180 -0.566199 0.258457 0.228920 1.033149 -0.407076 0.166089 -0.557083 0.137468 1.324273 0.226690 0.054410 0.308915 -0.988692 0.258352 0.291171 0.562627 0.866187 0.394820 -0.130710 -0.497767 0.343663 -0.009162 0.697094 0.587648 0.442074 -0.752562 -0.240866 -0.211369 -0.517341 0.860048 -0.083649 1.296518 -0.222633 0.516084 -0.000605 -0.924496 -0.744518 -0.294981 1.028624 -0.743820 0.532377 0.278381 -0.429894 0.054192 -0.074005 -0.077243 -1.117307 0.001970 -0.504247 -0.475259 0.037496 -0.456769 0.305148 -0.424970 -0.377816 -0.082476 -0.663515 0.529499 0.116288 0.274464 0.570773 -1.395124 0.202250 0.401423 0.130319 0.605940 0.327173 -0.049299 -0.534635 -0.509837 -0.936053 1.107764 0.687729 0.330851 0.379326 -1.345278 0.442799 -0.092042 -0.022744 0.294438 0.529772 -1.130254 0.013776 0.286804 -0.566270 -0.414326 -1.363354 0.186306 -0.750807 0.175135 0.345542 -0.090498 -0.053318 -1.147590 0.450345 -0.821455 -0.801799 0.707127 -0.451396 -0.540790 1.038568 -0.952029 -0.205739 -0.702962 0.059146 0.374958 0.597986 0.164389 0.530171 0.531986 0.716214 0.826272 -0.989556 -0.311857 0.605474 1.092806 0.359126 0.187513 -0.561491 -0.510617 0.531823 -1.128629 -1.693983 -0.916618 0.786649 1.183915 0.263939 -0.714105 0.008541 -0.504069 1.002908 1.018692 0.372420 0.135983 0.356487 -0.986916 0.314144 0.965262 -0.698854 1.054990 0.115908 -0.153917 0.531332 -0.541440 0.485615 0.121701 -0.055631 -0.126724 -0.584960 -0.306326 1.097524 0.771838 0.688591 -0.863003 0.472025 -0.587906 -1.379882 -2.023330 -0.434415 1.367536 0.369817 0.980687 -0.869190 -0.853952 -0.002793 1.133450 -0.310115 -1.121300 0.383216 -0.758241 0.640632 -1.759280 -1.354199 2.139249 1.894068 0.948059 0.087632 0.684805 0.632826 -1.503016 -0.470923 -0.488809 0.609470 -0.228114 -1.787087 -0.625757 0.275733 -1.305087 -0.445826 -0.249522 0.274810 -0.092438 0.304563 1.102611 0.401911 -0.214874 0.026922 0.591559 -0.377582 -0.742941 -0.305175 0.071473 0.594413 0.531187 -0.674605 0.000664 0.595520 -1.246169 -0.237309 0.238335 0.726328 0.549963 1.857184 1.455955 -0.185784 0.716163 -0.400105 -0.973720 1.049629 -0.634104 0.125538 -0.221727 0.318563 0.332120 0.357906 1.017965 -0.507272 -0.896729 -1.108247 -0.588367 0.336007 0.923155 -0.236672 -1.593839 -1.358038 0.328215 0.140745 1.332020 -0.226500 1.886060 -0.565869 0.482284 -1.979971 0.128143 0.526035 -0.245658 0.633171 0.261448 -0.696388 -1.184059 -0.271829 -1.197121 -0.850388 0.028950 -0.412035 -0.379513 -1.055758 1.336990 -0.857159 -0.043977 0.171778 0.141062 1.451049 0.647031 -0.146294 -0.817453 0.568892 0.813079 0.109579 -0.715452 1.056812 0.444665 2.610345 -0.267499 0.422233 -0.435300 0.517486 -0.292253 -0.833666 -0.454597 1.243147 1.799300 0.489725 -0.293464 0.016878 -0.316991 0.831318 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = -0.024243 0.392989 1.253451 0.166058 -0.471517 -1.037317 -0.265062 -1.629608 0.719636 0.479184 1.006975 -0.006353 0.816532 -0.300003 -0.029168 0.244870 0.688139 0.000813 0.060464 -0.472575 -0.298181 0.963748 -0.099377 0.021041 0.336233 -0.883637 0.564721 0.271628 0.573109 0.713538 0.312468 0.034308 -0.289495 0.400630 -0.052419 0.285726 0.235827 0.385527 -0.605237 0.003748 -0.037269 -0.310799 0.695371 0.245687 0.766207 0.176012 0.174366 0.072659 -0.404931 -0.375151 -0.180973 0.534467 -0.389432 0.456209 -0.156428 -0.237179 0.060594 -0.105542 0.175335 -0.379836 0.052337 -0.308654 -0.463712 0.020732 -0.575392 0.079160 -0.430483 -0.526925 -0.209808 -0.417318 0.351237 0.030468 -0.063931 0.036723 -1.295639 0.052187 0.367220 0.073082 0.626837 0.198884 -0.083517 -0.384455 -0.645207 -0.822315 0.923157 0.661590 0.270647 0.408351 -0.823564 -0.231400 -0.112652 0.042274 0.438039 0.606345 -0.693625 0.072047 -0.151574 -0.394329 -0.357429 -1.222080 0.238680 -0.505021 0.245381 -0.051862 -0.106551 0.091116 -0.286498 0.322896 -0.249588 -0.485521 0.346503 -0.452604 -0.164620 0.992284 -0.243255 -0.473288 -0.556984 -0.173993 0.170989 0.516155 0.175938 0.090980 0.742777 0.456572 0.570828 -0.724963 -0.272487 0.458686 0.316761 0.309671 0.232689 -0.606033 -0.411309 0.347842 -0.718684 -1.366004 -0.456762 0.269121 0.681511 -0.341282 -0.306710 0.209457 -0.465227 0.350521 0.734917 0.203358 0.231879 0.146296 -0.614820 0.210870 0.918452 -0.440443 0.559240 -0.301336 -0.298865 0.459032 -0.221603 0.305016 -0.123181 -0.243754 -0.136954 -0.302595 0.097329 0.906310 0.116601 0.261688 -0.236392 0.270946 -0.613617 -0.805990 -1.332505 -0.238844 1.040395 0.331696 0.962970 -0.705452 -0.357488 -0.065003 0.826494 -0.067895 -0.462102 0.404362 -0.535379 0.494374 -1.212933 -1.023138 1.353632 1.134718 0.668034 -0.194622 0.340380 0.313961 -0.824343 -0.591937 -0.391929 0.301757 0.024971 -1.199403 -0.531037 0.173778 -0.963740 -0.107109 -0.088218 0.224869 0.257874 0.097236 0.744984 -0.178421 -0.261767 -0.511466 0.546095 -0.307524 -0.273037 -0.108249 0.044410 0.101579 0.420825 -0.355512 -0.150933 0.317208 -0.570505 -0.011520 0.177254 0.426246 0.116644 1.270014 0.997888 -0.264408 0.358212 -0.164802 -0.554773 1.010219 -0.432163 0.199678 0.036210 0.351489 0.068874 0.387092 0.761274 -0.376380 -0.548092 -0.883287 -0.431894 0.266429 0.436567 -0.084232 -0.755380 -1.064746 0.096743 -0.176989 1.168786 -0.065284 1.371786 -0.320248 0.454898 -1.194768 0.146443 0.354336 -0.239638 0.607323 0.301609 -0.678111 -0.526920 -0.207187 -0.903595 -0.717224 -0.005175 -0.262721 -0.471723 -0.409860 0.500018 -0.520827 0.041285 0.358674 -0.025670 0.798017 -0.111527 0.028165 -0.597100 0.312839 0.858223 -0.053716 -0.521218 0.484675 0.274821 1.733663 -0.036213 0.550427 -0.268811 0.196169 -0.147815 -0.756144 -0.522181 0.957703 0.955908 0.420070 -0.073895 0.021917 0.020731 0.696018 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -1.585431 1.446062 6.294036 5.021967 -3.138642 -3.828810 -1.653970 -3.849319 2.441651 0.903958 3.826237 -0.018670 1.450656 0.886270 0.109206 -1.873879 1.818752 0.257170 -1.137074 -1.722213 -1.129712 3.720432 3.226126 -5.601431 0.628304 -3.279714 2.644951 2.131399 1.204710 3.114605 0.092956 0.161625 -0.561656 2.587764 -3.486301 -1.154231 -0.603000 1.217827 -1.899497 -1.313977 2.260478 1.685196 3.098349 0.328649 2.490864 1.969012 2.492123 -0.421094 -3.732331 -1.057952 -1.357441 3.578537 -1.981070 2.815347 0.260355 2.186695 0.937754 -3.235176 -0.362112 -5.616214 1.395243 1.579663 -2.098597 -0.579387 -3.191950 0.274930 -0.166821 -2.758062 1.502607 -1.722666 2.235240 -0.618741 -0.146766 -3.160381 -2.822820 1.278873 0.238593 1.447037 1.844925 0.978581 -1.214607 -0.193928 -1.726871 -2.367087 0.573371 -0.461680 0.508411 1.165015 0.047163 -1.817214 1.166144 -0.369986 -1.149761 3.108493 -2.378989 2.817702 -0.020938 -1.187154 -2.224114 -1.409498 0.006175 -2.846157 1.490136 2.662318 -1.750393 0.903835 -0.198639 1.308122 -0.176776 -3.670106 0.571480 -0.844306 -0.250147 2.700135 -2.153222 -1.555539 0.641590 -0.164367 0.050980 3.543994 -0.169882 1.108702 2.914010 2.457693 1.325980 -2.968113 0.783133 0.442772 1.855750 2.328372 2.461108 -2.641277 -1.848331 0.362940 -0.971614 -5.358833 0.197631 2.529653 3.605259 1.072377 -5.102104 1.717524 -1.862543 3.273195 2.110184 3.245120 1.301490 -0.392371 -2.369621 0.837857 5.802464 -2.046313 2.665403 -0.886610 -3.816687 4.251746 -1.129333 2.879215 0.114588 0.092325 1.386475 -2.993612 0.065649 4.515408 1.476136 0.778337 2.283544 -0.010179 -0.893649 -5.745464 -5.271752 -0.784227 2.084045 1.448232 6.492527 -3.042370 -1.981139 -1.174222 3.357579 -1.668727 -1.533003 0.152952 -1.099421 1.637659 -7.494867 -5.022537 5.291258 4.833152 0.744706 -0.285177 3.737316 0.201807 0.081320 -2.662178 -2.428466 2.020775 0.977943 1.700823 0.449983 -0.270888 -4.015369 -0.357250 0.666542 0.880611 1.940810 -3.219269 -1.498743 -0.511344 -4.109545 -2.729416 0.570151 -3.648011 -1.077485 0.169012 0.331686 -0.036814 0.854218 -0.548812 -2.633568 0.362379 -2.392278 -1.022016 0.434824 2.781472 0.959229 4.603788 3.892738 -0.432443 2.610370 1.239086 -2.486453 9.841730 -3.215457 -0.239465 -0.210124 3.679511 0.003385 1.429752 2.027379 -1.288647 -1.490090 -3.520199 1.469138 0.107328 1.816469 -6.754976 -2.842859 -3.930242 -0.812127 0.547076 3.694865 -0.654896 7.129172 -0.949033 1.021259 -7.959103 0.241677 3.212799 -0.407589 2.208184 2.487939 -3.464933 -6.126976 -0.493882 -1.865129 2.419276 -0.579197 -3.175756 -2.086148 -0.848285 0.996782 -1.963363 1.696011 4.453305 -1.559818 2.175421 0.216683 -0.821037 -0.247734 -1.954133 1.865637 1.259198 -2.914317 4.095308 -0.308220 7.956666 -0.676783 3.428867 -2.659955 0.970794 -0.833121 -1.835064 -1.947749 4.358282 3.187971 1.418810 0.675194 0.560906 -1.979037 2.082090 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -5.263243 5.090436 26.502729 16.906544 -11.746837 -17.079032 -7.127440 -16.123806 8.463663 4.497846 15.176800 -2.401593 3.775730 6.082666 0.457452 -5.400441 4.955240 -1.190441 -2.721147 -5.752749 -8.507860 13.491986 11.970626 -17.385693 2.096955 -18.444662 10.436644 7.822610 3.977928 10.519819 0.515930 0.330390 -1.651214 9.110684 -12.832196 -1.587648 -0.224007 3.660157 -5.600386 -2.772712 7.162059 6.089570 11.218575 0.076252 10.951608 8.029446 9.678374 -1.528141 -15.400065 -3.928936 -5.565217 15.445173 -6.605655 8.261563 3.257181 10.604689 2.194884 -14.820847 -3.047301 -20.825348 4.040757 6.306111 -9.245451 -0.499067 -12.611994 2.015118 -1.639685 -9.138217 6.563666 -5.475569 8.572838 -2.283242 0.465107 -8.934332 -10.922686 6.271865 0.363451 4.610775 5.159003 1.351601 -5.926795 1.831355 -7.441662 -8.827162 2.131317 0.952622 1.111624 0.968550 0.938979 -5.734001 2.677814 -2.967928 -5.496685 13.184683 -10.793559 10.879102 -0.305497 -4.940817 -11.808397 -7.942831 -0.714397 -11.459305 5.968474 12.328903 -6.709455 2.700412 -0.981415 5.229082 -0.992831 -15.235378 1.732507 -4.368488 1.743000 10.289301 -9.276820 -4.417983 1.714574 -1.618571 -0.348964 13.358963 -2.704032 4.076329 12.110484 9.213363 5.020065 -9.758413 2.765814 2.186080 8.099871 7.945573 9.059156 -13.117735 -5.775371 0.139420 -3.149603 -22.089152 0.989377 8.539679 11.986237 2.798235 -19.110592 4.746872 -5.539887 15.158674 7.697174 12.917859 3.320765 -1.724318 -8.286230 3.201501 24.534980 -7.271485 10.406143 -4.860690 -15.582534 17.115031 -5.996031 12.927280 2.712328 2.623160 4.305431 -12.432624 -0.797180 16.583088 6.517251 3.338259 9.273805 0.225713 -1.287153 -20.844825 -20.676676 -1.286826 7.103113 3.123937 27.912910 -13.486317 -9.807555 -5.334418 15.505954 -4.981936 -5.952125 0.694008 -4.132845 4.869647 -29.554515 -21.533376 19.237396 21.646762 2.654616 -1.219932 17.489061 1.091640 -2.713840 -10.426158 -10.539488 8.170495 2.752868 5.760604 1.290722 -1.007922 -16.234558 -0.399978 -0.828319 3.577191 9.537593 -9.658846 -7.053613 -1.813180 -16.507717 -10.025111 2.588917 -13.413793 -5.870119 0.053562 2.480714 -0.748812 3.449863 -3.777411 -9.089323 2.512403 -10.495210 -2.355570 5.055818 9.059320 3.850784 22.635493 16.228639 -0.073521 11.894924 3.655512 -6.772834 39.167716 -11.496350 -1.929841 -0.914975 11.920138 -2.332710 4.625873 7.444431 -4.215339 -8.417782 -11.707827 8.439631 -2.975764 5.816175 -23.028288 -13.941594 -17.935591 -3.831538 3.427237 15.680131 0.051169 27.403537 -1.023474 4.147938 -31.531172 0.630508 12.736845 -1.557334 8.752059 8.631306 -13.500898 -24.300642 -0.846927 -5.953334 7.130407 -2.065213 -14.543876 -7.993214 -5.582603 3.088782 -5.765089 7.062722 17.390305 -3.531803 7.569653 3.741259 -3.759980 -1.941696 -5.868750 8.503716 3.656734 -10.398405 16.954800 -1.505249 33.943096 -4.885318 12.138685 -8.791000 3.872796 -1.749513 -4.757491 -5.400735 15.175405 12.099859 5.881620 -0.191791 1.500179 -8.847655 6.766547 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -1.006597 1.341538 6.153895 3.112972 -2.710897 -4.299868 -1.701217 -4.717646 2.044678 1.242219 3.936639 -0.685464 1.316015 1.303045 0.232356 -0.722471 1.514210 -0.488629 -0.222644 -1.551740 -1.978059 3.354125 2.192762 -2.897440 0.660975 -4.422126 2.384160 1.742716 1.163902 2.543062 0.395360 -0.038292 -0.721122 1.972086 -2.454948 0.015719 0.355105 0.950671 -1.623306 -0.194965 1.152834 0.918715 2.737016 0.035186 2.768916 1.875860 2.009825 -0.005661 -3.296302 -1.150923 -1.224450 3.524370 -1.575269 1.879877 0.661987 1.693519 0.348455 -2.999174 -0.660812 -4.010816 0.644077 0.809975 -2.145424 0.111123 -2.907477 0.582195 -0.895740 -2.103620 1.251317 -1.290430 2.054117 -0.460122 0.045660 -1.312978 -3.188210 1.295540 0.296270 1.058077 1.316277 0.083038 -1.102580 0.347867 -2.059336 -2.391157 1.011172 1.002468 0.484162 0.138467 -0.631859 -1.053006 0.396942 -0.642673 -0.696540 3.026898 -2.621400 2.157867 -0.365773 -1.342593 -2.886380 -2.820990 0.077194 -2.571250 1.514805 2.257083 -1.335191 0.352413 -0.523668 1.302847 -0.443233 -3.570520 0.620041 -1.107232 0.385022 2.971368 -2.130286 -1.086944 -0.289656 -0.576848 -0.010925 2.974219 -0.205582 0.881269 2.883810 2.339272 1.367934 -2.402420 0.014065 0.690995 1.927654 1.784953 2.041432 -3.109881 -1.499697 0.317985 -1.326727 -5.323781 -0.281707 1.844428 2.957055 0.183004 -3.698014 0.947162 -1.566307 3.332428 2.093594 2.724098 0.776636 -0.304576 -2.128780 0.928153 5.510695 -1.762360 2.607406 -1.255763 -3.122837 3.582746 -1.332505 2.745938 0.761804 0.486643 0.476058 -2.647748 -0.249232 3.795987 1.643273 1.021708 1.661298 0.358018 -0.771571 -4.590364 -5.070361 -0.282239 2.278206 0.595629 5.926158 -3.239096 -2.306189 -1.031068 3.859833 -0.863527 -1.753105 0.496625 -1.220146 1.246332 -6.497694 -4.865274 4.690447 5.340599 1.101239 -0.424778 3.672279 0.672149 -1.645985 -2.516466 -2.439629 2.054380 0.202241 -0.198824 -0.306218 -0.051996 -3.862582 -0.101510 -0.408353 1.072734 2.158012 -1.543149 -0.732271 -0.310758 -3.532517 -2.244705 1.047010 -2.769343 -1.455275 0.036324 0.432361 -0.038373 0.950159 -1.147710 -1.693358 0.943023 -2.693662 -0.315224 1.377874 2.024454 0.761018 5.650388 3.741435 -0.077170 2.716187 0.443346 -1.785546 8.209512 -2.458441 -0.103132 -0.270915 2.454288 -0.579685 1.105376 2.058782 -1.072633 -2.518558 -2.904510 1.297123 -0.480374 1.602425 -4.117884 -3.594606 -4.540426 -0.606519 0.670817 4.181079 0.094920 6.333413 -0.349154 1.293636 -7.002688 0.279427 2.530758 -0.495601 2.098748 1.742539 -3.047649 -4.938267 -0.215014 -2.090548 0.477171 -0.382437 -3.189358 -1.977918 -1.569837 1.065105 -1.327589 1.178345 3.519015 -0.632879 2.109987 0.941752 -0.917951 -0.901196 -0.840829 2.649630 0.532497 -2.526068 3.794142 -0.006749 8.270018 -0.922160 2.683344 -1.750319 0.705472 -0.312924 -1.433519 -1.332072 3.694832 3.190307 1.465680 -0.302497 0.207938 -1.605209 1.605871 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = -1.498457 0.827263 5.711391 0.150139 -2.357603 -3.407694 -1.535441 -7.246860 3.386339 2.708007 5.272566 0.129718 3.491458 -1.558920 0.099633 0.654885 3.102605 -1.670249 0.662052 -2.005702 -0.486284 4.379814 0.381826 0.773601 1.265608 -4.483046 2.192707 0.044970 2.207669 3.091957 1.486750 -0.105241 -1.715712 1.578205 0.922181 2.433684 1.822190 1.725143 -1.885240 -0.144975 0.073010 -1.970298 2.738240 0.588616 4.341304 -0.334116 0.581362 -0.160977 -2.641968 -2.245189 -0.395630 2.169595 -2.661501 1.597038 0.741320 -1.050654 -0.338250 -0.750162 0.053786 -2.415279 -0.136319 -2.265750 -1.602112 0.520175 -1.868814 0.934807 -2.181367 -1.077753 -0.794619 -2.418552 1.621054 0.520852 0.691306 1.791553 -4.904943 0.665203 1.492647 -0.079764 2.382800 0.929272 -0.846938 -1.583881 -2.328271 -3.714719 3.733977 3.122902 0.683970 0.814828 -3.678518 0.806854 -0.491845 0.074018 1.217851 2.864860 -4.192151 -0.243485 -0.002883 -2.137973 -1.304083 -5.291120 0.704288 -2.872809 1.016934 0.905235 -1.605369 -0.213102 -2.617451 1.290479 -1.807185 -2.256764 1.822766 -1.775604 -0.650308 3.911968 -2.230126 -1.345476 -3.031045 -0.446374 1.691293 1.832963 0.568408 1.142246 3.325804 2.261416 2.932390 -3.272492 -1.143808 2.377764 2.398500 0.754257 0.693127 -2.617476 -1.636530 1.741356 -2.979096 -5.668062 -2.836493 1.346642 3.258547 -0.392039 -1.476484 -0.157823 -1.677897 2.434698 3.780633 0.943888 0.544245 1.119446 -2.998111 0.979692 3.745779 -1.945763 2.746552 -0.814205 -0.921792 2.391532 -2.024736 1.708332 -0.129658 0.150349 -0.937367 -2.207712 -0.401862 3.889563 0.909130 1.911444 -2.331961 1.367397 -1.556604 -3.859425 -6.411639 -1.402056 4.825481 1.677885 3.398107 -3.262595 -1.625285 0.041650 3.938925 0.596583 -3.068216 1.650764 -2.102476 2.039289 -5.363743 -4.623104 6.328133 6.028280 2.892171 -0.169403 1.697876 1.745175 -4.900137 -2.059248 -2.099447 2.075537 -0.632781 -5.311657 -2.196779 1.108020 -4.137043 -1.211944 -0.858299 0.938279 1.342150 0.195222 3.295872 1.253895 -0.519438 -1.211607 2.857063 -1.040179 -2.740896 -1.109404 0.396101 1.422007 1.896813 -1.590217 -0.143751 1.515367 -3.078284 -0.421170 1.510696 1.929956 0.716528 5.629559 4.612618 -1.169714 0.702695 -1.311374 -2.197282 3.277451 -1.981254 0.373019 -0.107497 0.625467 0.646787 1.476406 3.413565 -1.651587 -2.937363 -3.391819 -1.563905 0.333220 2.570721 -0.769544 -4.731045 -4.508837 0.983463 0.060714 4.540661 0.069928 6.444693 -1.219581 1.803419 -5.780223 0.347642 2.077106 -0.732906 2.769211 0.989025 -2.550324 -2.490775 -1.133907 -3.931583 -2.523809 0.157290 -0.730405 -1.910035 -2.688708 3.961523 -2.114327 0.003111 0.711246 0.485465 4.416202 1.520127 -0.265559 -3.208783 1.843739 3.038585 0.089651 -2.013446 3.239019 1.295216 7.558298 -1.076177 1.503666 -0.937904 1.381972 -0.938447 -3.026765 -1.684784 4.097804 5.007987 2.035526 -1.257295 -0.490244 -0.673560 2.900696 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = -2.942250 -0.292164 5.465383 0.610384 -1.861781 -3.929224 -1.691695 -6.659484 3.296627 2.489156 6.498060 0.115288 3.680364 -1.954364 1.310490 0.650210 3.408516 -2.631675 0.621800 -1.830073 1.061087 5.026139 1.633832 0.199527 0.804390 -3.920067 0.149490 0.958194 1.555291 2.809279 1.172613 -0.376807 -1.419664 1.088949 -0.355688 2.867529 2.196794 1.356802 -2.039839 -1.095143 -0.363045 -1.242468 2.918883 -0.748694 5.032698 -1.215538 2.285894 -0.296465 -3.500489 -3.001273 -1.021574 4.055666 -2.807844 1.494595 1.386057 -1.123636 0.128600 -0.922521 -1.003231 -4.630936 -0.082849 -1.237662 -1.611507 0.177133 -1.008831 1.459798 -0.914378 -0.609360 0.239787 -2.507019 2.106171 0.499095 1.149051 2.230588 -4.121082 1.117547 1.220026 0.224426 1.558900 0.928211 -0.726497 -1.407891 -1.278701 -3.018703 3.667727 2.417290 0.925102 0.907088 -4.524576 2.370778 -0.474106 -0.305801 0.320865 1.838373 -4.335243 -0.138420 2.286528 -2.277861 -1.714885 -3.444374 0.460259 -2.878727 0.522619 2.158007 -0.331832 -0.368165 -4.763630 1.319187 -3.585905 -3.018902 2.357167 -1.421790 -1.770401 3.155763 -4.268439 0.027994 -2.462358 0.547224 1.447392 2.145989 0.304440 2.274508 2.120462 2.697118 2.505623 -3.366483 -0.833927 1.977962 4.797314 1.039262 0.528238 -2.103891 -1.713620 1.714788 -3.728617 -5.581245 -3.593129 3.128227 4.298746 1.519623 -3.141320 0.345353 -1.223419 4.433611 3.942056 1.034618 0.192543 1.399297 -3.701469 1.396239 3.676272 -2.437960 4.022478 0.369392 -0.793113 2.443978 -2.675284 2.023743 1.281818 0.376907 -0.667572 -2.490908 -1.185578 3.637174 3.191320 2.917929 -3.421493 1.705748 -0.849394 -4.913539 -7.598368 -1.793588 4.018463 1.358201 3.845817 -2.939007 -3.320003 -0.127617 3.987617 -1.077816 -4.440063 1.125967 -2.576708 1.966116 -6.411481 -4.740426 7.859053 7.349437 3.440570 1.024223 3.337356 2.384109 -5.097280 -0.983343 -1.515660 2.764644 -0.533703 -5.712987 -1.408769 0.902469 -4.403182 -2.225207 -1.613371 0.858999 -0.842192 0.861154 3.549791 1.976150 -1.117252 1.009932 1.737236 -1.500340 -3.252069 -1.415307 0.300825 2.179245 1.707979 -2.454353 0.325503 1.973296 -4.861895 -0.978022 1.187284 2.672220 2.451079 6.108656 5.438918 -0.659228 2.989893 -1.682967 -3.003361 3.010562 -2.275649 -0.081232 -1.008482 0.930405 1.475090 1.039309 3.092483 -1.546910 -2.986502 -3.480967 -0.816784 0.994303 3.344866 -1.340164 -6.029252 -4.723136 0.980914 1.186257 4.497234 -0.772318 6.862080 -1.952211 1.434513 -7.872746 0.324476 1.690473 -0.410707 1.785024 0.784188 -2.206030 -4.793370 -0.865235 -3.903964 -2.651795 0.226380 -1.865185 -1.360230 -4.556650 5.657385 -3.429781 -0.074307 0.706687 0.767531 5.178045 3.349236 -0.887704 -2.977312 1.978069 2.269326 0.721724 -2.233970 4.062474 1.117182 9.133610 -1.673028 1.542712 -1.633567 2.603289 -1.193172 -2.665008 -1.040370 4.210929 6.617979 1.228963 -1.198706 -0.272525 -1.479061 2.792005 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.636674 0.460827 2.391177 2.197014 -1.945923 -2.388707 -0.651999 -2.416319 1.559562 0.564572 2.022611 0.202868 1.350116 -1.026539 -0.255563 -0.738856 1.386182 0.438959 -0.640089 -1.054593 -1.094221 2.098852 0.379433 -2.049719 0.656631 -1.158318 1.870847 1.169897 0.445418 1.662731 0.532391 0.257853 -0.710147 1.040257 -0.856957 0.221186 -0.216989 0.717333 -1.046332 -0.679179 1.174988 -0.241219 1.963467 0.187050 1.447648 0.703427 0.925676 0.033553 -1.942031 -0.785050 -0.421205 0.852381 -0.754144 1.319499 -0.178892 0.397436 0.997719 -0.984518 0.255846 -2.103331 0.612332 -0.258218 -1.122430 -0.245432 -1.573596 -0.070210 -0.141613 -1.532377 0.311941 -1.549577 0.587820 -0.365359 -0.439739 -1.179817 -1.728649 0.136738 0.724397 0.415450 1.273053 1.245882 -0.354349 -0.991857 -1.418512 -1.159187 0.864493 -0.041994 0.559770 1.206964 -1.084828 -1.059873 0.644711 0.034571 0.526813 1.085214 -1.242526 0.342598 0.002154 -0.723601 -0.958025 -1.549704 0.581390 -0.824052 0.637269 0.968818 -1.321978 0.500830 0.042398 0.526453 -0.388743 -1.153500 0.338210 -1.319049 0.248325 1.822778 -0.543584 -1.485917 -0.790236 -0.380231 0.318959 1.508199 -0.045505 0.101952 1.665048 0.963301 1.152457 -1.691954 -0.190380 0.644640 0.797106 0.786478 0.700022 -1.123973 -0.715620 0.458664 -1.359876 -2.687488 -0.697321 0.557024 1.802054 -0.045183 -1.899582 1.236465 -1.042029 1.163994 1.001997 1.097937 0.554872 0.236968 -1.538521 0.337883 2.055808 -0.562682 0.899649 -0.545628 -1.877465 1.667993 0.265101 0.618521 -0.118584 -0.725198 0.038091 -0.829724 0.727853 1.809747 0.045088 0.052924 0.243931 0.504188 -1.132958 -2.252006 -3.057076 0.118116 1.743853 1.712831 3.490137 -1.966907 -0.691685 -0.544815 1.576160 -0.637706 -0.882514 0.486498 -0.884409 1.063178 -3.548821 -2.558438 3.256785 1.914159 0.984472 -0.119117 1.397075 -0.296566 -0.438864 -1.144812 -1.333715 0.609578 1.018991 -0.515048 0.172822 0.294903 -2.205971 -0.382709 0.332176 0.499059 1.011086 -1.387296 0.372451 -1.352217 -0.879559 -1.511893 0.739307 -1.012431 -0.148107 0.098606 -0.010253 0.095483 0.922510 -0.193314 -1.093946 -0.604412 -0.971042 -0.309264 -0.078880 1.304628 0.394249 2.618327 2.604583 -0.898075 1.070874 0.147368 -1.184406 4.146852 -1.476843 0.288606 0.090323 1.745054 0.921474 0.557468 1.710604 -0.829035 -0.150125 -1.871795 -0.290547 0.593961 0.813593 -3.312082 -1.022413 -2.907991 -0.076494 -0.609399 2.119010 -0.273927 3.372345 -0.758199 0.257868 -3.493027 0.090625 1.692196 -0.198877 1.154059 0.805092 -1.750240 -2.181227 -0.246691 -1.631533 0.288266 -0.253939 -0.563013 -1.179047 -0.179756 0.574633 -0.971219 0.589719 2.208345 -0.848050 1.148253 -0.390097 0.083256 -0.350011 -0.718238 0.754120 0.344839 -1.126023 1.725102 0.343580 3.746206 0.374746 1.387156 -0.891032 1.271004 -0.630614 -2.042613 -1.266894 1.739568 1.782172 0.659588 0.554900 0.601963 -0.523563 1.610512 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.198128 0.547659 2.071949 0.885581 -1.370135 -1.674195 -0.569803 -2.330521 1.255191 0.481308 1.173669 -0.124489 0.802380 -0.628640 -0.292291 0.534937 1.142848 0.121156 -0.200103 -0.881571 -0.590795 1.573600 0.212077 -0.751065 0.707581 -1.475075 1.280363 -0.012214 0.864329 1.433776 0.660375 -0.196218 -0.416939 0.844165 0.484443 1.231522 0.431932 0.482000 -1.159134 0.228267 0.069998 -0.523328 1.035386 0.308265 1.468409 0.645282 0.524750 0.117070 -1.419588 -0.304217 -0.648405 1.153985 -1.107815 0.946911 -0.011543 0.234093 0.032512 -0.711850 -0.043499 -0.828449 -0.422958 -0.561728 -0.938801 0.100501 -1.424588 0.130365 -0.764698 -0.631058 -0.452447 -0.412090 0.589891 0.280374 -0.006940 0.166880 -1.640878 0.111439 0.470418 0.647209 1.171402 0.056882 0.064612 -0.760250 -0.962084 -1.235961 1.194526 0.238372 0.473853 0.505258 -0.507517 -0.419664 -0.330255 0.060547 0.459594 0.990939 -1.226161 0.021218 -0.536944 -0.467946 -0.545117 -2.056225 0.225168 -0.770414 0.409825 0.148891 -0.450182 0.209303 -0.079618 0.732603 -0.141623 -0.565930 0.513976 -0.415103 -0.411567 1.509303 -0.159388 -0.890276 -0.690494 -0.314118 0.151857 1.053468 0.254395 0.325123 1.159724 0.935365 1.634714 -1.060309 -0.405306 0.459802 0.564535 0.593827 0.835502 -0.804731 -0.753949 0.472266 -0.707469 -2.051081 -0.620456 0.511158 1.278526 0.230614 -0.779511 -0.281396 -0.703201 0.878207 0.519641 0.517909 0.398475 -0.030705 -1.011222 0.402666 1.890112 -0.658541 0.715553 -0.681930 -0.254709 0.846965 -0.263832 0.373142 -0.481709 -0.429022 -0.052799 -0.759279 0.017785 1.404730 0.220484 -0.078075 -0.092895 0.469110 -1.035068 -1.706672 -1.782612 -0.267829 1.574218 0.268061 1.586514 -1.265899 -0.482437 -0.507873 1.117384 -0.053505 -0.403797 0.328196 -1.079992 0.848401 -2.019289 -1.762326 2.704077 1.810852 0.956528 -0.184266 0.483572 0.633663 -1.617728 -0.918492 -0.919327 0.422865 0.077760 -1.452348 -0.916825 0.283502 -1.737231 -0.393236 0.211118 0.554395 0.715403 0.123677 0.532659 -0.027561 -0.486085 -0.993894 0.811550 -0.727232 -0.510310 0.154370 0.116356 0.342506 0.821122 -0.453530 -0.385469 0.371225 -0.814763 -0.224938 0.300663 1.086155 0.166028 1.768916 1.980551 -0.176604 0.807341 0.122679 -1.192409 2.039674 -0.436895 0.478118 0.006467 0.350011 0.280273 0.371714 1.323683 -0.671390 -0.919633 -1.349289 -0.703196 0.268751 0.883056 -0.716903 -1.418800 -1.518186 0.104226 -0.029073 1.484993 0.056262 2.137017 -0.432632 0.620515 -2.317543 0.231558 1.484303 -0.156256 0.864007 0.677494 -1.137091 -1.348482 -0.322964 -1.268551 -0.590455 -0.390629 -0.164578 -0.782574 -0.427977 1.064740 -0.567217 0.143483 1.126271 0.060522 1.449670 -0.013326 0.144372 -0.827825 -0.064989 1.072405 0.165513 -0.867914 0.942855 0.711895 3.040136 0.098567 0.571839 -0.588600 0.058111 -0.132510 -1.207085 -0.839079 1.421709 1.460004 0.618790 0.319845 -0.040265 -0.299517 1.193698 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = -1.049391 0.898494 5.190114 1.797225 -2.478312 -3.725239 -1.243058 -6.100974 3.006696 2.497026 4.801963 -0.137232 2.754145 -1.144183 0.060225 1.047995 3.056252 -0.859304 -0.091710 -2.333972 -1.300265 4.262226 1.098723 -0.331789 1.334411 -4.360130 2.000905 0.356553 1.930468 2.397823 1.376902 0.187413 -0.876247 1.698294 -0.224116 1.835489 0.688507 1.468848 -1.944004 -0.183679 0.765894 -0.936566 2.616260 1.326841 3.646303 0.512662 1.900352 -0.458348 -3.305273 -1.976786 -1.541322 3.039974 -2.417801 2.165907 -0.454590 -0.467520 0.749899 -0.996914 0.148627 -3.093895 -0.339143 -1.276528 -1.731356 -0.004310 -1.999406 1.031534 -1.785779 -1.680610 -0.486781 -0.731236 2.532096 0.687031 0.222411 0.864627 -4.149786 1.040009 1.024737 0.574222 2.721355 0.383026 -0.928384 -1.347353 -2.458353 -3.505791 4.069076 1.232123 1.068900 1.165134 -2.502336 -0.332007 -0.719008 -0.278311 0.842698 2.570189 -3.743501 0.310960 0.847432 -1.854595 -1.611834 -3.957553 -0.033124 -2.713755 0.598932 1.504800 -1.232764 0.710174 -2.664452 1.140517 -1.753462 -2.188462 1.813195 -1.484606 -1.222236 3.286636 -2.203027 -1.742492 -1.417093 0.206207 0.825908 2.294433 1.003665 1.201629 3.919478 2.081943 2.329233 -2.521708 -0.370232 1.202708 2.341625 1.285220 1.487577 -1.869764 -2.500879 1.261333 -2.163366 -5.169657 -1.907239 2.442202 3.811076 0.324476 -2.289190 0.794113 -1.442158 2.660902 3.243932 1.011925 0.976315 0.265751 -2.985114 1.213525 4.540048 -2.222376 2.711198 -0.993320 -1.024617 2.819950 -1.861477 1.430182 0.227097 -0.451530 -0.264090 -2.390034 -0.809332 4.090596 1.202280 0.692936 -0.628597 1.821888 -1.471806 -4.223328 -6.118820 -1.265986 3.456356 1.305814 4.351781 -2.930260 -1.317606 -0.603982 3.101090 -0.529666 -2.473475 0.978212 -1.895253 1.317263 -6.038928 -4.675887 7.338091 5.843590 2.555381 -0.474718 2.199157 2.249365 -3.351163 -2.383088 -1.795787 1.631764 0.520763 -4.246198 -2.228946 1.154724 -3.985633 -1.849814 -0.569787 0.798439 0.661959 -0.602376 2.311042 0.210110 -1.533478 -0.915075 1.859489 -1.893007 -2.121707 -0.561894 0.457845 1.144590 1.621436 -1.273539 -0.374221 1.056599 -3.166492 -1.016210 0.957236 3.312021 1.794289 5.431492 5.236554 -0.837264 2.028463 -0.479703 -2.874683 4.410489 -2.161414 0.072991 -0.285600 1.338221 0.534852 1.210564 3.023170 -1.499444 -2.488461 -3.502144 -0.179751 0.597215 1.479821 -1.691754 -3.192102 -4.941971 0.358831 0.085323 4.300306 -0.442405 6.422397 -1.608551 0.769542 -6.064699 0.329349 2.429980 -0.843520 2.392691 1.643713 -2.572756 -3.060391 -1.432026 -3.309552 -1.023779 0.129802 -1.164648 -1.901224 -2.292213 2.905388 -2.914632 1.139930 1.569874 0.688590 3.914132 0.953665 -0.185478 -2.740287 1.718709 3.167716 0.922378 -2.487816 3.146495 0.702272 7.827717 -0.787594 1.719490 -1.903567 0.394679 -0.857993 -2.580548 -1.787133 3.809825 4.818840 1.658368 0.165339 0.079336 -0.579089 3.737631 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.775468 1.765144 17.921266 6.795935 -7.961182 -12.873768 -4.710481 -19.963400 10.513781 7.087764 17.417930 0.025903 9.960791 -5.006805 1.350056 2.691004 10.971271 -4.258451 0.261678 -6.964267 -2.860839 16.639490 5.525148 -3.192069 3.788198 -13.200047 5.400436 2.367262 6.576422 9.422089 3.731559 0.210839 -2.589692 5.312960 -1.088911 6.826124 2.503730 4.844294 -6.851426 -2.446161 2.415484 -4.192046 9.879936 1.831149 12.787508 -0.242772 8.535979 -1.686195 -11.669793 -6.634078 -6.475040 12.385111 -9.392497 6.212145 0.441524 -1.393972 3.256486 -4.173209 -1.790498 -12.466901 -1.708174 -3.651724 -7.120054 -0.128921 -6.802690 3.839337 -5.393977 -4.385471 -0.317911 -3.563481 7.872193 2.724585 1.611121 2.463632 -13.847621 3.980319 3.757432 2.180695 7.853855 2.593755 -2.691287 -3.849786 -7.374990 -10.835535 13.559206 2.914868 3.663494 3.140991 -9.385099 1.518922 -2.394742 -0.030830 1.067645 7.765666 -12.672905 2.051355 4.139825 -6.625379 -6.100940 -12.509411 0.203770 -9.520801 1.663824 6.539778 -3.746577 1.271798 -10.880480 3.717905 -7.577240 -9.595485 5.366223 -5.149233 -5.986788 10.102249 -9.670376 -3.377323 -5.307789 1.220933 3.130535 8.081861 2.486054 5.917078 11.055062 7.985306 7.836931 -9.328280 -1.176898 3.866645 10.625789 4.249895 4.614608 -6.239241 -7.842917 4.357190 -7.694645 -18.646481 -7.553079 10.522577 12.526417 3.880380 -9.905374 2.356889 -4.207652 11.150754 11.472448 3.965072 2.710350 1.934731 -9.855574 4.934124 15.231146 -8.160910 10.635973 -2.827121 -4.671549 11.740099 -7.836836 5.582561 0.871358 -0.292699 -0.824161 -8.818282 -2.813241 13.593206 5.827225 3.718548 -3.153984 4.684153 -2.579042 -15.905040 -21.679467 -4.030974 12.117781 5.081852 15.747117 -9.776237 -6.142178 -1.027783 9.709991 -2.903888 -9.573733 2.729305 -7.206760 5.428887 -23.129969 -16.830001 25.632375 18.496686 8.025782 0.900131 8.530678 7.333486 -11.655946 -6.327206 -7.012593 7.691307 1.355428 -13.985942 -5.524264 2.826146 -14.591774 -5.551891 -2.649870 2.729260 1.358197 -1.951070 7.296925 0.893935 -6.281812 -1.605521 6.554249 -7.276211 -8.550276 -2.666850 0.502974 4.613579 5.526107 -4.167723 -0.914302 3.024268 -12.340207 -4.563785 2.666571 10.553726 6.221111 18.648984 19.504726 -2.395194 7.686531 -1.818842 -9.767417 14.580794 -7.548455 -0.249124 -1.599790 5.227561 2.857534 4.376910 10.958542 -4.572008 -9.500860 -11.750915 -0.370846 2.736001 7.169161 -7.396803 -13.545687 -15.990532 0.560853 3.126221 15.242116 -2.231397 22.306142 -6.030903 3.351322 -23.465393 1.169045 8.028507 -1.531284 7.925839 4.969552 -9.039505 -11.799753 -4.592451 -10.598053 -2.963690 0.290101 -5.073264 -6.504065 -9.995072 11.904133 -11.093615 2.893839 5.060447 1.228372 14.231843 6.407765 -1.101321 -8.898460 4.914190 9.436119 3.591725 -7.605170 12.257384 2.589341 27.920508 -3.422217 6.201699 -7.182198 3.922264 -2.943750 -8.366877 -4.694785 13.299328 18.175158 3.854849 0.303396 0.202509 -3.173155 11.595337 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.081431 0.970725 3.042871 1.182234 -1.656547 -2.238039 -0.718126 -3.843688 1.794894 1.650861 2.340125 -0.186484 1.509094 -0.432073 -0.549594 0.384066 1.381727 -0.012491 -0.143751 -1.456918 -1.591593 2.391919 0.047240 -0.126512 0.875406 -3.036778 2.407380 0.155309 1.250247 1.602089 0.859969 0.296828 -0.503172 1.338390 -0.237305 0.667187 -0.032214 1.158555 -0.859728 0.328052 0.950921 -0.324309 1.579820 1.371514 1.804431 1.196076 0.348105 -0.199776 -1.586502 -1.011116 -0.489267 0.675519 -1.189351 1.529336 -1.063868 -0.199248 0.471927 -0.540301 0.694464 -1.099633 0.120723 -0.833471 -0.993036 0.060887 -1.662583 0.317818 -1.274644 -1.542628 -0.560189 -0.457511 1.459136 0.282691 -0.312361 -0.108442 -2.795045 0.469907 0.708408 0.186646 1.970561 0.099123 -0.751191 -0.847669 -2.030840 -2.390645 2.284280 1.198995 0.635851 0.956220 -0.944786 -1.370969 -0.234638 -0.086346 1.049976 2.100722 -1.710077 0.128093 -0.379829 -0.877863 -0.819809 -2.753046 0.145558 -1.568906 0.722231 0.594397 -1.180468 0.597162 -0.153196 0.642298 -0.227422 -1.016731 0.827183 -1.233771 0.266461 2.399791 -0.228766 -1.874997 -0.924998 -0.392821 0.503267 1.425788 0.751988 -0.064531 3.143788 1.008901 1.452627 -1.575008 -0.414564 0.954021 0.266411 0.796028 0.914023 -1.485318 -1.458793 0.575257 -1.060815 -3.023787 -0.725194 0.470770 1.967445 -1.175189 -0.800928 1.125899 -1.176099 0.736741 1.912846 0.549828 0.845377 0.008731 -1.690221 0.614558 2.998175 -0.899594 0.874842 -1.262699 -1.097365 1.735157 -0.488480 0.740364 -0.124631 -0.584578 -0.301310 -1.265955 0.328610 2.575118 -0.415977 0.115739 0.413853 1.123307 -1.378378 -1.966378 -3.223315 -0.484931 2.275310 1.078973 3.027524 -2.048175 -0.041483 -0.363686 2.016960 0.318292 -0.772734 0.794165 -0.836412 0.788508 -3.406103 -2.783971 3.722162 3.093245 1.524362 -0.882093 0.921775 1.036658 -1.201748 -1.906939 -1.210535 0.606122 0.660827 -1.983999 -1.399634 0.790594 -2.139109 -0.935940 0.035719 0.482472 1.231770 -0.968146 0.924949 -0.804404 -0.828777 -1.716135 1.334559 -1.133365 -0.609212 -0.100740 0.374504 -0.007793 1.019407 -0.432145 -0.477848 0.305365 -0.922945 -0.070889 0.690791 1.624525 0.410755 2.923593 2.765206 -1.055343 0.450737 0.000810 -1.172836 3.423239 -1.287804 0.199813 0.326501 1.079561 0.162287 0.877115 1.784851 -1.031992 -0.912805 -2.276835 -0.060401 0.380198 0.252137 -1.266202 -0.813121 -3.308381 0.111147 -0.824797 2.774390 0.178240 3.860806 -0.635860 0.485401 -2.814219 0.199180 1.517910 -0.698454 1.755266 1.119842 -1.654695 -1.189461 -0.908244 -2.002619 -0.531438 -0.119741 -0.543839 -1.430574 -0.362190 0.483098 -1.173795 0.944993 1.457171 0.216350 1.560873 -0.857225 0.116930 -1.668212 0.704968 2.033220 0.253022 -1.556232 1.372985 0.262129 4.017716 -0.248858 1.331601 -0.926395 0.072957 -0.616454 -1.980093 -1.448227 2.290714 1.806748 1.317348 0.332513 0.167121 0.114734 2.371573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.512802 1.581665 5.964147 4.196141 -5.010050 -4.834265 -1.446323 -6.600945 3.892900 2.030687 4.050275 0.087743 2.448045 -2.172775 -1.202643 0.343884 3.261353 1.075771 -1.705716 -2.993304 -3.484619 3.666584 0.561494 -3.450343 2.517724 -4.105090 4.501609 0.591905 1.444401 2.606003 1.984709 0.640368 -1.375795 2.844208 0.133036 1.881747 0.231810 1.603648 -2.475328 -0.512483 2.328401 -1.438744 3.398418 2.063405 3.945921 1.659378 1.855775 -0.241146 -4.937368 -1.160153 -1.190386 2.542149 -2.287098 3.225496 -0.512967 1.280559 1.159468 -2.844564 1.029606 -3.363744 0.250346 -1.724456 -2.678955 -0.280147 -3.561136 0.153035 -1.079453 -3.012839 -0.543242 -1.573778 1.933273 -0.143805 -1.087416 -1.015905 -3.824885 0.121577 1.682489 0.977773 3.895097 1.542256 -0.576065 -2.703807 -3.490032 -3.638009 3.719981 -0.074767 1.343858 2.151215 -1.263440 -2.393685 0.325397 -0.475961 1.641815 3.392107 -4.413338 -0.213127 -0.198251 -2.059139 -2.174126 -4.805383 0.723999 -2.511510 1.375756 1.570061 -3.675020 2.021152 0.219068 1.723237 -0.211938 -1.477791 0.988046 -2.278360 0.454879 4.373294 -0.354940 -4.148009 -1.417723 -0.864611 0.564715 2.961203 0.606618 0.230674 5.902246 2.190382 3.308292 -2.981868 -0.394342 1.252746 1.035712 1.762074 2.290244 -3.011313 -2.420658 1.341730 -1.877323 -6.188252 -1.346527 0.771078 4.126758 -0.108804 -3.458901 1.032681 -1.767558 1.956974 1.877559 1.808402 1.103429 -0.049906 -3.229538 0.482351 5.225728 -1.715160 1.682285 -1.690432 -2.144597 2.864045 -0.096701 0.778290 -0.867929 -1.721715 0.146132 -2.302181 0.325439 4.545114 -0.633489 -1.471864 0.395328 1.828442 -3.486692 -4.889169 -6.387268 -0.530056 3.929347 2.367339 6.704424 -4.523684 -0.951182 -1.999421 3.717724 -0.719939 -1.176115 1.142966 -2.393122 2.078926 -5.775420 -5.841237 7.811546 4.997786 2.344645 -1.112918 2.628986 0.066967 -3.108634 -3.381341 -3.003841 0.603206 2.497377 -2.082667 -1.638252 1.218508 -5.184396 -1.482308 0.711262 1.248115 2.692870 -2.127148 1.513383 -1.438736 -1.461585 -3.314889 1.957337 -1.781522 -0.813989 0.240444 0.635562 0.727950 2.529648 -0.634701 -2.425972 -0.997911 -1.971965 -0.934536 0.747609 4.008990 0.970878 6.474650 6.192240 -1.548119 2.169437 0.277282 -3.048616 7.552327 -2.375616 0.806399 0.333012 2.223141 0.934484 1.099275 4.346894 -1.995581 -1.289511 -3.982224 -0.821178 0.139188 1.242991 -5.045772 -1.761845 -6.130050 -0.284260 -1.370509 4.118308 -0.229290 7.088378 -1.287123 0.500831 -7.051734 0.149089 4.612996 -1.003830 2.833942 2.306001 -4.047736 -4.511161 -1.196693 -3.673644 -0.338678 -0.547405 0.210684 -2.942756 -0.306841 2.143763 -2.001398 1.625907 4.487763 -0.058061 3.104188 -1.240078 0.700306 -1.414243 -0.321709 3.114185 0.724345 -2.835482 3.441890 1.206657 8.826442 0.626292 2.292426 -1.996375 0.167111 -0.996123 -3.841195 -3.216913 3.710417 4.056696 2.307032 1.104511 0.699600 -1.234831 4.855823 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.405048 0.210521 1.434332 1.170063 -0.762590 -1.817033 -0.360347 -1.779161 1.035441 0.464121 1.556587 0.196648 1.236835 -0.717860 0.128041 0.084859 1.051118 0.099018 -0.055374 -0.566965 -0.504387 2.055855 0.468280 -0.721422 0.242827 -0.708337 0.771083 0.768950 0.714084 1.204685 0.255890 0.119168 -0.088498 0.502799 -0.706887 0.234077 -0.474170 0.683009 -0.764871 -0.498152 0.339845 -0.645416 1.357545 0.150678 0.874242 -0.020520 1.118975 -0.111731 -0.917861 -0.680066 -0.833661 0.964045 -0.738221 0.730940 -0.597688 -0.349749 0.798467 0.074705 0.064501 -1.363607 0.132964 -0.231264 -0.997644 -0.247058 -0.916804 0.192926 -0.481602 -0.916892 -0.073328 -0.461162 0.680828 0.171246 -0.101018 -0.530383 -1.908752 0.125368 0.396211 0.177567 0.766652 0.794091 -0.257908 -0.577589 -0.956920 -0.977898 1.440163 0.118744 0.472742 0.797028 -1.230179 -0.365447 -0.081025 0.281283 0.391655 0.548244 -0.764569 0.534509 0.435534 -0.449279 -0.473700 -1.170774 0.237470 -0.798465 0.148717 0.428453 0.023948 0.165055 -0.759504 0.232147 -0.748354 -1.253913 0.385124 -0.787473 -0.759526 1.063256 -0.692237 -0.423692 -0.388188 0.138972 0.253820 0.877766 0.292160 0.419319 0.897627 0.622383 0.596184 -1.114237 -0.033722 0.459211 0.898495 0.512374 0.245438 -0.336638 -0.771711 0.404565 -0.911475 -2.032355 -0.703284 1.333177 1.153441 0.040615 -1.042097 0.905380 -0.526457 0.847417 1.249146 0.432988 0.462513 0.315303 -0.959848 0.468761 1.485749 -0.706028 0.972689 -0.204647 -0.965274 1.599890 -0.482739 0.494161 -0.030700 -0.364736 -0.075400 -0.537657 0.238584 1.377550 0.338222 0.332692 -0.047534 0.332061 -0.556595 -1.527405 -2.143709 -0.235020 1.494177 1.044075 2.019236 -1.014683 -0.461960 0.199688 0.612086 -0.524491 -0.876867 0.311556 -0.743303 0.732683 -3.074096 -1.760824 2.432715 1.214399 0.835163 0.178872 0.794561 0.626676 -0.363990 -0.739379 -0.738800 0.692584 0.456110 -1.151087 -0.267679 0.180998 -1.582882 -0.346227 -0.043909 0.163671 -0.004119 -0.556525 0.736701 -0.985480 -0.711790 -0.433113 0.519989 -0.925358 -0.377091 -0.230837 -0.130899 0.150747 0.468825 -0.109258 -0.087376 -0.063041 -0.992844 -0.340763 -0.240374 0.785805 0.527886 1.871534 2.210540 -0.623361 0.687341 -0.092107 -0.959103 2.129903 -1.021301 0.015181 -0.133801 1.212476 0.553835 0.543526 1.247408 -0.478284 -0.493789 -1.384315 -0.100278 0.956252 0.602273 -1.233860 -0.796265 -1.877474 -0.009623 -0.054005 1.924310 -0.447476 2.208795 -0.962978 0.411411 -2.361826 0.245199 0.484528 -0.146762 0.930456 0.443846 -0.955445 -0.962214 -0.478047 -1.030628 -0.055418 -0.073377 -0.711719 -0.643518 -0.618991 0.323709 -1.372559 0.312585 0.698085 -0.521175 1.166598 -0.040284 -0.052439 -0.714103 0.332581 0.854587 0.312423 -0.739410 1.099918 0.118865 2.658937 -0.084380 0.979467 -0.777050 0.882554 -0.525559 -1.237782 -0.632691 1.481442 1.596685 0.162198 0.398392 0.401169 0.041528 1.060075 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.164375 0.324627 0.600767 0.168004 -0.092430 -0.273243 -0.104435 -0.528583 0.138569 -0.000851 0.227614 -0.206050 0.132944 0.093616 -0.071975 0.010287 0.174562 0.200061 0.049141 -0.108613 -0.083730 0.254784 -0.093795 -0.228619 0.100628 -0.405151 0.163700 0.199195 0.318404 0.242263 -0.064761 -0.025771 -0.053365 0.181670 -0.268321 -0.267866 0.233320 0.080962 -0.422381 0.067048 -0.111193 0.281606 0.122569 -0.067426 0.104695 0.329815 -0.056223 0.091129 -0.104371 0.065547 -0.037339 0.358356 0.021519 0.244477 0.045463 -0.058589 -0.047680 -0.152259 -0.015894 -0.078319 0.057977 0.176319 0.023838 -0.002513 -0.306674 0.007780 -0.043282 -0.301957 0.153881 0.071625 0.151984 0.026174 0.083644 -0.137949 -0.331191 0.234864 0.176656 0.268616 0.162560 -0.142976 0.272130 0.088720 -0.145491 -0.244146 0.103157 0.243960 0.169815 0.059102 -0.002346 -0.241771 0.133528 -0.087685 -0.006455 0.249619 0.013189 0.200075 -0.476577 -0.003763 -0.179829 -0.506126 -0.060090 -0.141155 0.152172 0.028934 0.036154 0.184905 0.288589 0.305649 0.166950 -0.236738 0.114423 -0.008333 -0.029157 0.450836 0.036768 -0.198369 0.005526 -0.091662 -0.262491 0.291117 -0.003971 0.095681 0.097317 0.269793 0.127895 -0.198230 -0.132284 0.077685 -0.009585 0.275758 0.321847 -0.399382 -0.149979 0.000994 -0.195694 -0.479826 0.050388 -0.014767 0.263416 -0.224892 -0.153830 0.086842 -0.267474 0.236376 0.029926 0.090922 0.102872 -0.140812 -0.127129 0.210227 0.423795 -0.208589 0.167378 -0.225084 -0.150185 -0.073333 0.109042 0.176040 -0.131129 -0.064098 0.180760 -0.225784 0.042319 0.350310 0.154941 0.055389 0.191167 -0.008319 -0.288525 -0.429851 -0.267033 0.000750 0.119294 -0.253854 0.446828 -0.127424 -0.405507 -0.139138 0.430983 -0.177996 0.077760 0.090770 -0.215246 0.151847 -0.233041 -0.403440 0.368581 0.442994 0.074010 -0.218124 0.199015 0.073607 -0.209258 -0.283427 -0.086352 0.050103 -0.010551 -0.411674 -0.355558 -0.023667 -0.238697 0.080871 0.118853 0.122995 0.175379 0.235619 -0.043515 -0.021068 -0.387520 -0.322412 0.243226 -0.251711 0.118294 0.147164 0.040140 -0.049241 0.194076 -0.317419 -0.250014 0.264331 -0.171479 0.038372 0.039155 0.188350 -0.038467 0.334150 0.149398 0.182954 0.415039 0.211630 -0.305728 0.692039 -0.097707 0.108785 0.042015 0.062053 -0.267538 0.178429 0.117548 -0.103664 -0.320126 -0.446348 -0.174184 -0.063447 0.099297 -0.030766 -0.332676 -0.159953 -0.109163 0.046936 0.254671 0.070068 0.489410 -0.034066 0.126049 -0.437247 0.032313 0.169736 -0.121856 0.240198 0.231481 -0.281310 -0.577496 0.017381 -0.231387 -0.343590 -0.160272 -0.452295 -0.160302 -0.150236 0.130648 0.010666 0.105725 0.396843 0.122614 0.185408 -0.174284 -0.047014 -0.145720 -0.077747 0.287856 -0.060810 -0.301264 0.060031 0.100062 0.813119 0.003213 0.198448 -0.269179 -0.249646 0.134210 -0.105169 -0.116682 0.346835 0.198761 0.218346 -0.015788 0.021491 -0.160461 0.196602 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.417524 -0.037450 8.574525 0.914222 -3.577443 -4.781265 -2.411672 -10.444226 5.104881 3.973687 9.614597 0.474491 5.734855 -2.791285 1.250069 -0.136395 5.433689 -3.784769 2.110486 -2.442472 1.837473 8.372162 2.078609 1.330587 0.656073 -5.942778 1.719657 0.187011 3.898390 5.087812 1.696297 -0.993764 -3.044577 1.312688 0.973723 3.562409 2.766139 2.704054 -3.325609 -1.543454 -0.761552 -4.307014 4.506321 -1.087386 6.914512 -3.342914 2.459243 -0.858606 -5.150021 -4.448455 -1.693094 4.311802 -4.863773 2.234277 2.803417 -3.390934 -0.252096 0.757542 -1.112651 -6.045746 -0.342384 -3.995010 -1.557670 0.724304 -2.115743 2.440507 -4.101344 -0.620389 -0.208161 -4.090925 2.817629 1.647932 3.501464 4.252732 -7.962308 2.087945 1.718907 0.207713 2.423973 2.651251 -0.740861 -2.005949 -2.437614 -5.134035 4.918832 4.447634 0.617277 0.312047 -7.366006 3.945738 -0.146483 0.453144 0.272547 2.987388 -6.984344 0.787688 0.595502 -2.945926 -1.008025 -8.132056 0.014330 -5.090714 0.838187 2.871212 -1.897676 -1.216132 -7.023034 1.736404 -4.433223 -5.276898 3.876619 -2.075504 -3.139465 5.348789 -6.152036 -0.138581 -4.546467 1.106062 2.972355 2.259835 0.426064 4.029952 2.173775 3.845186 4.623392 -5.422399 -1.162357 4.235286 6.113152 0.971700 0.409513 -1.967466 -2.497564 2.613948 -4.861692 -8.587529 -5.456435 5.034396 6.177399 2.025398 -2.746244 -1.597249 -2.651236 6.424785 6.847157 1.980107 0.648968 2.674334 -5.113357 2.139186 4.890693 -3.462208 5.577802 0.756883 -1.068488 4.552582 -4.277056 3.651806 0.148838 2.090339 -0.957335 -4.452864 -2.362291 5.903521 3.642701 4.503064 -5.119577 2.032709 -1.061507 -7.705250 -10.922302 -2.490610 8.096586 3.040777 3.952814 -4.485504 -3.859796 1.714192 5.306027 0.608256 -7.103094 2.209427 -3.177917 3.132816 -11.180004 -7.707430 10.823285 10.636741 3.884855 1.180578 3.058894 4.276196 -8.536678 -2.636369 -3.466618 4.557202 -2.790938 -9.496161 -3.352129 2.025540 -6.385038 -2.723352 -1.149649 1.001223 1.047032 0.269838 5.568538 3.660844 -0.772848 0.513169 5.003299 -2.152426 -6.042100 -2.405142 0.311054 4.005140 2.774284 -2.756637 0.983312 3.330179 -6.563993 -1.685846 1.443871 2.999716 2.011787 9.167458 8.126695 -0.888655 1.267007 -2.268951 -4.693655 5.561647 -4.235195 -0.339401 -1.416677 0.476547 1.556074 2.323149 5.183840 -2.573000 -5.615211 -5.486417 -2.354426 0.528888 5.463246 -2.470194 -10.019422 -6.792669 2.621817 1.904595 6.370359 -0.273981 10.852322 -3.396038 2.155018 -10.603695 0.290516 3.134623 -0.596493 5.018357 0.906689 -3.054846 -4.462893 -2.023372 -5.788963 -1.784773 0.256874 -2.869334 -1.897825 -6.090293 7.844671 -4.166679 -0.111817 -0.645006 0.483888 9.047080 5.379320 -1.679136 -5.552325 3.829202 3.291403 1.188798 -3.214460 7.221639 1.717029 12.776084 -2.902233 0.804764 -2.101544 3.468946 -2.094238 -4.446339 -1.355906 6.954538 9.823032 3.003276 -3.080229 -0.779665 -2.242244 3.571051 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.249420 1.174413 5.973988 3.222001 0.337443 -1.326881 -0.927125 -3.945835 2.257588 0.957170 4.801899 -1.901283 1.989524 0.518906 -0.411250 -1.199838 2.390196 -1.448456 1.136107 -0.569239 2.856792 4.459218 1.580974 -2.399634 0.378157 -4.656675 1.578493 1.417685 1.811006 2.327090 0.769665 2.014165 1.281801 1.069763 -1.904908 -0.118970 -0.112711 1.649357 -1.272665 -1.444721 0.497790 0.558907 0.959053 0.812974 2.577132 0.709676 3.132284 -1.602268 -1.444039 -0.856629 -4.339290 4.152506 -2.158659 -0.421086 -1.547185 -1.058317 1.555633 -1.788610 -1.080571 -5.232241 0.301424 1.574051 -1.654414 0.087216 -2.341649 2.738442 -0.087279 0.357673 0.185060 -0.250530 2.334828 1.670834 1.822742 0.073947 -3.700519 2.764332 -0.247519 0.576359 1.177769 -0.524095 -0.519328 1.558981 -0.845905 -2.350706 3.643248 1.671583 1.194400 0.468379 0.098859 0.018365 -2.090197 -0.327294 -2.274081 2.603052 -2.447586 2.689557 1.080399 -1.274053 -0.986056 0.472112 -0.352296 -3.573238 -0.033364 3.635530 -0.839453 1.424464 -2.596909 0.505527 -1.322166 -3.454132 0.877000 -2.021211 -1.164486 2.720344 -3.857066 0.084954 -1.515615 1.546393 1.051051 2.956254 -2.097749 3.426389 0.869817 1.885975 0.390403 -1.766876 0.872197 2.316997 2.444390 1.203846 1.106391 -2.021010 -2.115130 -1.666634 -0.003799 -3.730933 -1.511768 2.873019 2.988780 0.877857 -5.329667 2.536391 -0.680352 4.265024 3.775979 1.023025 0.646809 1.981137 -2.381391 1.572831 5.371759 -2.326933 2.710779 -1.045172 -0.925873 3.191996 -2.177550 2.621074 0.408807 1.507549 1.106232 -3.193149 -1.392009 3.269144 2.566674 1.474833 1.661828 0.326074 2.355877 -5.225446 -5.230287 -2.242945 1.746911 -0.352008 4.457726 -1.971148 -1.545710 -0.187309 2.461544 -0.670249 -1.625371 -0.507964 -1.545388 0.839417 -6.340386 -5.187472 4.261957 3.794161 0.179197 1.396017 2.619105 2.238292 -0.693471 -1.100986 -0.635813 3.560381 -1.050499 -0.728860 -0.234199 -0.363579 -2.561365 -3.043875 -0.569789 0.361452 -0.160326 -0.744283 1.171155 0.020508 -2.603796 -0.744956 -0.216493 -3.103480 -3.817337 -0.809767 -0.075540 1.141307 0.629875 -1.956934 0.754687 2.626059 -2.802723 -2.143872 0.450113 1.243734 0.741646 2.240409 4.833518 0.660304 1.502188 0.607377 -2.247390 5.500660 -0.301999 -0.778857 -0.850227 0.034054 1.048808 1.624406 0.715329 -1.068453 -2.465884 -4.197312 2.372649 0.087481 1.985070 -2.731530 -2.606190 -2.293334 -0.583300 3.114560 3.033834 -0.156240 6.827752 -1.113516 -0.835852 -6.174336 0.078258 3.091391 -0.465849 1.850748 1.893384 -2.471120 -3.378763 -0.722619 -1.454848 0.901292 -1.407000 -4.271290 -2.868254 -2.342991 3.411314 -3.208885 1.507979 2.077273 1.694838 1.971856 2.227725 -0.961770 -1.559052 0.025263 0.894980 2.118800 -2.340160 3.145008 -1.931705 5.429207 -3.256963 1.789030 -3.128629 2.288990 -1.010603 -1.088373 -0.003245 5.530529 3.312596 0.150965 -0.078290 -1.488973 -1.166245 2.912691 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.805539 -1.245980 28.420261 6.344870 -9.175580 -13.278125 -8.662385 -29.048297 15.531101 12.435024 31.568507 0.208317 16.863709 -7.950898 3.922275 -4.129995 16.051966 -15.041327 5.495605 -7.338535 5.711417 25.906302 11.118016 -1.064584 1.717074 -21.535961 6.742903 0.759927 8.640375 17.251221 4.977048 -1.163485 -6.879051 6.013453 -0.206448 10.791109 8.608391 8.498973 -6.246563 -6.503884 2.241160 -6.435791 13.739195 -2.079364 22.045022 -5.541383 8.167836 -4.339218 -17.916500 -14.043522 -5.983722 14.790311 -17.250115 5.930420 8.745182 -5.836926 2.777533 -3.915252 -5.372756 -25.419311 -0.415264 -7.781674 -5.656717 2.090575 -7.003779 8.450770 -9.795665 -0.667399 1.454532 -12.106356 10.757998 5.477730 10.769276 10.720704 -18.701986 9.826180 4.285109 0.738846 8.167847 5.679863 -5.935407 -3.301473 -6.483778 -16.144797 15.053249 9.301083 2.573912 1.390814 -16.430878 11.338209 -1.311064 -0.314805 -2.813568 11.366894 -19.110078 3.230349 7.458098 -10.055125 -4.526441 -17.679113 -0.777669 -17.477449 2.126520 16.802128 -8.201226 -3.704374 -23.964266 4.550114 -15.212812 -17.033437 12.413671 -7.764965 -8.719390 13.710647 -22.508612 0.890914 -12.264671 3.889620 11.193301 11.080061 0.423670 13.261097 8.328984 12.955796 11.979637 -16.125920 -1.191822 11.103372 21.210380 3.107139 3.037546 -9.311918 -8.802627 6.683568 -13.338328 -25.893247 -15.546733 16.114863 19.295893 9.611540 -16.733461 1.535254 -6.942708 21.255043 21.777598 7.606243 2.285632 7.362396 -16.238666 8.032158 18.192942 -12.072622 18.096415 1.637695 -7.470350 17.812603 -15.591823 12.581353 2.960174 7.027350 -1.084514 -16.580466 -6.370958 19.655770 13.294906 15.045989 -11.801329 5.931289 2.719897 -25.884810 -34.847813 -7.100681 21.456799 8.606254 17.988873 -14.263874 -11.298303 3.166917 18.417850 -0.254443 -21.030244 3.464214 -7.748757 8.350414 -38.017887 -25.314530 36.076207 32.518084 10.869276 4.628731 12.094583 13.129500 -20.185606 -5.760543 -11.626420 16.152752 -6.631142 -21.120823 -5.895520 4.587757 -19.188532 -11.076040 -4.843796 2.978695 3.344734 -4.424770 10.135940 10.509714 -5.759809 2.148668 11.812773 -9.763288 -20.304174 -7.724840 1.012526 11.787334 7.431476 -7.489441 1.755448 9.155796 -21.263727 -8.423869 6.077361 12.457127 8.909384 27.274880 25.684543 -3.207048 4.172986 -4.801464 -13.185698 20.756150 -12.840029 -3.212114 -4.092431 5.073921 7.727052 6.836017 14.588203 -7.369331 -16.833809 -17.568270 -0.540936 1.928240 15.858200 -14.401833 -29.837546 -21.883012 5.383587 8.463938 20.238571 -1.515758 36.989211 -8.045681 4.003938 -34.981365 0.258793 12.766353 -1.412401 13.075662 5.137830 -10.661602 -19.049227 -7.326588 -16.565454 -0.726642 0.286406 -10.243065 -6.922953 -19.585647 25.861321 -14.394562 2.943471 2.119285 2.989027 24.392895 20.099434 -5.475513 -16.595977 8.485600 6.786779 5.776425 -10.632988 24.834252 2.750752 38.656845 -11.845413 4.911534 -9.851088 12.791050 -7.208619 -10.985091 -3.039234 22.045150 30.161657 7.065047 -6.290561 -1.760179 -8.440912 13.064405 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = -1.195304 -0.113724 1.743518 -0.010097 -0.689619 -0.997551 -0.552445 -2.140581 0.956429 0.915168 2.187472 0.076023 1.332956 -0.631564 0.369869 -0.142500 1.105604 -1.001142 0.607590 -0.451443 0.394043 1.672579 0.555363 0.518763 0.093039 -1.171773 0.372834 -0.145173 0.632868 1.247862 0.345419 -0.264654 -0.759615 0.205532 0.345475 0.927324 0.735752 0.665782 -0.466006 -0.280493 -0.232041 -1.075234 0.857746 -0.295120 1.530688 -0.604719 0.317148 -0.166648 -1.140288 -1.102918 -0.225936 0.660678 -1.238978 0.401326 0.641643 -0.857170 -0.057795 0.344726 -0.323301 -1.605081 -0.064904 -1.123642 -0.242334 0.232097 -0.392741 0.614809 -0.991530 -0.108995 -0.089409 -0.884370 0.657857 0.468081 0.949168 1.277406 -1.533243 0.477284 0.345907 -0.008999 0.470635 0.454071 -0.266252 -0.402036 -0.464080 -1.121920 1.034243 0.868605 0.173452 -0.013544 -1.591830 1.144410 -0.009211 0.100326 0.094723 0.584798 -1.295641 0.129103 0.245473 -0.561030 -0.076642 -1.867387 -0.024526 -1.119510 0.148323 0.835274 -0.417628 -0.444269 -1.807993 0.444611 -1.153301 -1.236582 1.040821 -0.456481 -0.786702 0.965220 -1.491178 0.187704 -0.930980 0.240195 0.893353 0.459396 0.175793 0.947438 0.230542 0.851204 0.962718 -1.142583 -0.312397 0.930831 1.491706 0.102298 0.013326 -0.439609 -0.549751 0.657184 -1.242214 -1.753734 -1.273376 1.132578 1.297061 0.464336 -0.678037 -0.193409 -0.600762 1.278658 1.576351 0.509383 0.095656 0.590975 -1.149887 0.490478 0.858201 -0.794507 1.290294 0.431934 -0.202684 1.007567 -0.970398 0.730080 0.134942 0.538931 -0.200574 -0.976520 -0.630603 1.205483 1.044516 1.248055 -1.258687 0.494289 -0.253707 -1.662775 -2.218950 -0.541911 1.982488 0.591495 0.637955 -0.957405 -0.778451 0.504013 1.299304 0.177183 -1.677250 0.335577 -0.507644 0.637276 -2.514350 -1.604937 2.326889 2.248451 0.923990 0.322147 0.494181 1.096667 -1.868272 -0.432313 -0.798773 0.978967 -0.866831 -2.149760 -0.874451 0.431258 -1.339021 -0.624451 -0.291171 0.231388 0.192577 0.123109 1.069234 1.036959 0.027276 0.316308 1.006200 -0.434835 -1.439966 -0.561258 0.081428 1.029249 0.438941 -0.607911 0.403117 0.811389 -1.512339 -0.358822 0.437385 0.618331 0.534036 2.150421 1.618225 -0.283023 -0.122863 -0.582827 -0.990097 1.033135 -0.872546 -0.082962 -0.329551 0.199544 0.458744 0.399790 1.195198 -0.545002 -1.351633 -1.148304 -0.631288 0.215265 1.211171 -0.406752 -2.340469 -1.474540 0.749778 0.449763 1.431335 -0.079347 2.290330 -0.619944 0.476337 -2.065285 0.052890 0.609596 -0.204140 1.018646 0.129937 -0.474405 -1.011852 -0.524449 -1.281691 -0.424813 0.007798 -0.508589 -0.205933 -1.315454 1.655215 -0.780265 -0.125191 -0.412811 0.196224 1.979748 1.475817 -0.407570 -1.332583 0.972725 0.614901 0.222635 -0.694586 1.718406 0.479357 2.676369 -0.638589 0.012311 -0.380826 0.795856 -0.501864 -0.760681 -0.174685 1.457244 2.216941 0.662172 -0.663984 -0.092571 -0.413435 0.647947 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = -0.097386 0.250296 1.171000 0.149843 -0.300980 -1.022200 -0.291538 -1.709813 0.759083 0.561687 1.160791 -0.036041 0.934452 -0.331485 -0.010127 0.106457 0.599436 -0.144280 0.196193 -0.387354 -0.197501 1.243387 -0.133243 0.156438 0.176119 -0.993209 0.669610 0.324458 0.583557 0.841318 0.248236 0.046429 -0.243293 0.323275 -0.205763 0.292922 0.155934 0.485093 -0.435347 -0.103473 0.037708 -0.292067 0.715384 0.151940 0.777030 0.129708 0.158887 0.008879 -0.248422 -0.499746 -0.164017 0.349870 -0.422635 0.374309 -0.279153 -0.405110 0.155923 0.034448 0.128076 -0.433912 0.144021 -0.273986 -0.495476 0.046199 -0.556684 0.160534 -0.447806 -0.472101 -0.166571 -0.526437 0.398349 0.060369 -0.017062 -0.007413 -1.436235 0.103421 0.319791 -0.077162 0.546423 0.214248 -0.177535 -0.329992 -0.696484 -0.828510 0.990465 0.862259 0.227553 0.418312 -0.904190 -0.171476 -0.117342 0.106869 0.464545 0.632482 -0.526081 0.103122 -0.073314 -0.330993 -0.243713 -1.143852 0.284612 -0.576616 0.246899 0.101189 -0.058491 0.007160 -0.223994 0.257164 -0.362449 -0.650875 0.355457 -0.547008 -0.061288 0.985488 -0.316634 -0.404718 -0.661193 -0.171854 0.261898 0.516749 0.218488 0.124986 0.735564 0.434248 0.528575 -0.830690 -0.363635 0.656496 0.396492 0.273637 0.048791 -0.644074 -0.373281 0.312023 -0.780879 -1.371581 -0.577010 0.311608 0.666012 -0.526469 -0.281449 0.502518 -0.459115 0.383553 0.963341 0.161427 0.225992 0.284228 -0.671592 0.283569 0.947497 -0.374179 0.531889 -0.365437 -0.459780 0.615038 -0.260270 0.340940 -0.012372 -0.118318 -0.220306 -0.357108 0.258874 0.903417 0.061572 0.519550 -0.278397 0.319721 -0.507908 -0.764655 -1.410743 -0.241669 1.156187 0.484633 1.087610 -0.730552 -0.330392 0.141959 0.840645 0.027434 -0.541200 0.431903 -0.509194 0.502874 -1.503712 -1.083302 1.323316 1.095514 0.773643 -0.138533 0.363956 0.421491 -0.619843 -0.473181 -0.419187 0.466946 0.040814 -1.242465 -0.385665 0.138594 -0.923663 -0.234325 -0.149936 0.185805 0.172847 -0.008023 0.733570 -0.367987 -0.242096 -0.487399 0.659887 -0.367288 -0.281542 -0.245611 0.016154 0.007327 0.376605 -0.366293 0.046276 0.357418 -0.523921 0.073600 0.226172 0.221059 0.087282 1.233025 1.071124 -0.432599 0.225008 -0.236497 -0.407522 1.058303 -0.465166 0.100582 0.054008 0.428468 0.182947 0.420696 0.728996 -0.383816 -0.505484 -0.945918 -0.346116 0.411519 0.448670 -0.103438 -0.736273 -1.200107 0.087726 -0.197773 1.369760 0.012016 1.491157 -0.388722 0.490176 -1.186812 0.156320 0.262646 -0.240271 0.630468 0.211091 -0.588703 -0.435118 -0.228693 -0.877591 -0.757915 -0.045758 -0.474389 -0.508920 -0.557882 0.408568 -0.595905 0.043425 0.277138 -0.028360 0.726281 -0.161205 -0.014693 -0.718159 0.399746 0.677772 -0.051166 -0.546413 0.492013 0.185288 1.686872 -0.199486 0.622057 -0.294302 0.547550 -0.367681 -0.867892 -0.411194 1.005536 0.953552 0.342616 -0.107210 0.038463 0.078210 0.634006 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = -3.930153 -0.400710 6.365624 0.223880 -2.796484 -3.592085 -1.935861 -7.825850 3.867458 3.194719 7.430336 0.302980 4.266336 -2.579648 1.217794 0.311966 4.168120 -3.272561 1.122035 -2.021227 1.561125 5.267998 1.691465 1.011732 0.958504 -4.317160 0.739211 -0.240917 1.895105 3.388512 1.692127 -0.839397 -2.548219 1.040215 1.409117 3.983939 3.129957 1.758826 -2.111642 -1.197851 -0.644113 -2.904253 2.965700 -0.831260 6.028131 -2.268474 1.673083 -0.573573 -4.513579 -3.541225 -0.692886 3.610786 -3.919312 1.660039 2.740784 -1.823918 -0.441417 -0.305831 -0.963648 -5.179071 -0.353542 -3.162763 -1.269095 0.602449 -1.041671 1.781669 -2.146547 -0.061891 -0.295533 -3.319713 2.041822 0.876941 2.270530 4.063505 -4.646774 1.208199 1.380226 0.033424 1.984894 1.558266 -0.683879 -2.088266 -1.416359 -3.737963 3.898340 2.848193 0.639641 0.429074 -5.437962 3.746573 -0.312583 -0.147811 0.405278 2.167976 -5.654727 -0.524265 1.706698 -2.557961 -1.026827 -5.384008 0.327396 -3.606964 0.508466 2.507082 -1.618025 -0.936542 -5.987419 1.616019 -3.908837 -3.170292 3.252345 -1.477806 -2.207376 3.489669 -4.914577 -0.027387 -3.406181 0.637278 2.583482 1.757116 0.407393 2.901479 1.843337 2.950112 3.811486 -3.913424 -1.104609 2.909325 5.267417 0.641280 0.233097 -1.923708 -1.725332 2.372515 -4.211927 -6.147256 -4.498554 3.299937 4.874255 2.340263 -2.766246 -1.368665 -1.601958 4.751842 4.521889 1.543416 0.029304 1.990168 -4.109276 1.172371 3.210845 -2.711694 4.320856 1.205632 -0.066795 2.383372 -3.174927 2.253826 0.691439 1.187742 -0.764171 -3.184836 -2.161700 4.145656 3.382750 3.495328 -4.904931 2.012855 -1.142637 -5.698502 -8.403001 -2.079328 5.755557 1.790425 2.628988 -3.484508 -3.277366 0.443056 4.646683 -0.163001 -5.525216 1.373557 -2.624975 2.348557 -6.950526 -5.337602 8.673041 8.372513 3.556960 1.017349 2.628003 2.875140 -7.277431 -1.282985 -2.395751 3.093575 -1.873665 -7.065016 -2.353569 1.489449 -4.940352 -2.494506 -1.326321 0.926561 -0.055406 0.906957 4.414246 3.854927 0.093067 1.242132 2.913065 -1.027994 -4.603285 -1.926569 0.487360 3.490753 2.131574 -2.584765 0.601696 2.508324 -5.402951 -1.414692 1.611771 2.796458 2.294389 7.258584 5.834573 -0.691600 1.543422 -2.197971 -3.630688 2.867824 -2.602040 -0.080842 -1.183291 0.142750 1.737905 1.171860 4.058859 -1.993923 -4.085053 -3.766036 -2.162399 0.368514 4.351818 -1.395967 -7.812242 -5.004476 2.043131 1.367206 4.409687 -0.481342 7.722475 -2.076395 1.629484 -8.058311 0.164302 2.718501 -0.646957 2.654973 0.575765 -2.174968 -4.600893 -1.333449 -4.602758 -2.440667 0.320094 -1.016690 -1.174295 -5.007222 7.094750 -3.070018 -0.369773 -0.480235 1.137718 6.753429 4.716466 -0.963368 -3.861451 2.818613 2.212049 0.791946 -2.462502 5.350115 1.898592 9.870976 -2.020937 0.449150 -1.380617 2.583102 -1.566014 -2.964982 -1.110289 4.645409 7.912241 2.217581 -2.217184 -0.515310 -2.094671 2.997847 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = -4.552852 -0.786873 6.123341 -0.175602 -2.475401 -3.718598 -1.927739 -7.882828 3.898897 3.510691 7.996904 0.686234 4.896327 -2.741061 1.533293 -0.012433 4.348630 -3.881539 1.822932 -1.819286 1.904110 6.291185 2.004523 1.972815 0.520153 -4.337607 0.779110 -0.403370 2.261318 4.163254 1.630897 -0.887397 -2.746000 0.682579 1.490299 4.030551 2.723094 2.041722 -1.875343 -1.303540 -0.782431 -3.730437 3.316628 -0.878501 6.083620 -2.883226 1.653904 -0.683263 -4.171550 -4.133683 -1.042815 3.113109 -4.289062 1.463555 2.586635 -2.774836 -0.187875 0.894927 -1.106022 -5.553250 -0.433791 -3.799393 -1.152070 0.698555 -1.012800 2.104976 -3.276977 0.177221 -0.526961 -3.585349 2.303082 1.284688 2.989722 4.481154 -5.622000 1.426292 1.113480 -0.224028 1.862406 2.042693 -1.282975 -1.850241 -1.529254 -3.991913 4.059804 3.177212 0.332564 0.239804 -6.341308 4.213449 -0.555546 0.170155 0.355842 1.929318 -5.597387 -0.025575 1.933850 -2.433326 -0.411186 -5.950496 0.221472 -3.842689 0.257513 2.693192 -1.126237 -1.717951 -7.046804 1.218163 -4.546318 -3.848515 3.869384 -1.584319 -3.012727 3.414552 -5.578939 0.688217 -3.724945 1.007307 3.155089 1.728802 0.660052 3.305746 1.078775 2.986916 3.765093 -4.019012 -0.987653 3.468913 5.755389 0.243167 -0.266802 -1.358914 -1.824129 2.633368 -4.461870 -6.195112 -4.946369 4.400436 4.910252 2.390707 -2.327828 -1.203119 -1.749266 4.850136 5.556603 1.437319 0.242360 2.335804 -4.293245 1.592013 3.222084 -2.781062 4.641008 1.537148 -0.342180 3.543342 -3.923745 2.576187 0.710783 1.778450 -1.041999 -3.243578 -2.265446 4.224827 3.691856 4.246952 -5.182807 2.031909 -0.663990 -5.787889 -8.739904 -2.220632 6.700611 2.473539 2.338139 -3.366395 -2.835672 1.368476 4.437140 0.450023 -6.313259 1.496050 -2.257800 2.291334 -8.767338 -5.448846 9.037379 8.597331 3.635522 1.250506 2.182567 3.897872 -7.119639 -1.340432 -2.700756 3.578031 -2.691104 -7.831593 -2.468429 1.588857 -4.997009 -2.670239 -1.481746 0.697892 0.138350 0.639430 4.689643 3.748189 0.306000 1.556463 3.431983 -1.211124 -5.362141 -2.292338 0.296384 3.688739 1.824587 -2.207297 1.478975 2.877464 -5.688285 -1.532733 1.518932 2.400118 2.309944 7.477276 6.164499 -0.950429 0.447487 -2.453457 -3.638353 3.026449 -3.051627 -0.354786 -1.342493 0.304881 2.139010 1.367171 4.074382 -1.955323 -4.542997 -3.863786 -2.008164 0.793851 4.625395 -1.417771 -8.604144 -5.465528 2.616300 1.589595 5.009104 -0.524040 8.203398 -2.552134 1.682087 -7.992065 0.276552 2.347228 -0.525697 3.177693 0.289951 -1.843822 -3.502093 -1.720727 -4.744423 -1.759670 0.459480 -1.473902 -0.873959 -5.390589 6.952659 -3.489117 -0.455077 -1.412572 0.672062 7.403696 5.399643 -1.317339 -4.783155 3.616198 2.062211 0.940865 -2.348776 6.005650 1.663932 9.563806 -2.507832 0.204885 -1.253490 3.374075 -2.081180 -3.173822 -0.707793 4.996361 8.376650 2.120222 -2.421094 -0.449875 -1.598390 2.578191 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp___GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.560464 1.218509 4.086030 2.733924 -2.538084 -2.807461 -1.142233 -2.577639 1.123175 0.432983 2.113226 -0.701221 0.511970 0.904673 -0.075542 -0.952918 0.969511 0.277582 -0.678339 -1.084051 -1.801152 1.546412 1.279909 -3.005105 0.545064 -2.485285 1.820386 1.478848 0.489097 1.414455 0.160005 0.035543 -0.672398 1.509711 -2.065022 -0.653583 0.306337 0.434885 -1.287605 -0.431993 1.138196 0.805802 1.857401 -0.285424 1.385256 1.508573 1.117845 0.079115 -2.771666 -0.528719 -0.680191 2.459598 -0.731709 1.518450 0.824132 1.390120 0.342825 -2.594852 -0.285900 -2.653720 0.715078 0.545534 -1.180580 -0.118301 -2.006131 0.094021 -0.130573 -1.823590 1.546386 -0.974015 1.065667 -0.623794 -0.079179 -1.383183 -1.336081 0.917088 0.537181 1.035584 0.925399 0.261455 -0.004934 0.259488 -1.263188 -1.320206 -0.006398 0.090898 0.618255 0.284256 -0.187966 -1.038951 1.025267 -0.577571 -0.492747 1.895544 -1.499008 1.222920 -0.861202 -0.831669 -2.398617 -1.861909 -0.008383 -1.467868 1.187838 1.700453 -1.615692 0.621961 0.369714 0.919742 0.252358 -2.417986 0.035143 -1.077811 0.694389 2.058254 -1.271265 -1.172803 0.194008 -0.531232 -0.385081 1.926886 -0.337770 0.435912 1.957900 1.533467 0.933185 -1.699028 0.012106 0.119128 0.936737 1.402233 1.682786 -2.250282 -0.846636 0.074536 -0.809314 -3.504261 0.105576 0.496072 2.073696 0.705777 -2.827105 0.719095 -1.182553 2.057025 0.496997 2.031186 0.491626 -0.386147 -1.284864 0.403687 3.301554 -1.238123 1.665686 -0.776977 -2.346442 1.900756 -0.031043 1.685808 0.489898 -0.044772 0.809782 -1.823000 -0.084816 2.549390 0.810215 0.256378 1.500937 0.056033 -1.010827 -3.535021 -3.115833 0.362819 1.219526 0.040598 4.109482 -2.377417 -1.734760 -0.922619 3.083155 -1.206139 -0.790352 0.213078 -0.739737 0.990641 -3.513102 -3.379019 2.775167 3.036685 0.156669 -0.348465 2.663963 -0.242404 -1.011772 -1.562912 -1.770867 0.999205 0.664647 0.660944 -0.005871 -0.149338 -2.441307 0.223792 0.333040 0.800705 1.649554 -1.452350 -0.882436 -0.330497 -2.661287 -1.788106 0.685027 -2.169058 -0.254345 0.388480 0.393013 -0.051508 0.917312 -0.763477 -2.038100 0.184716 -1.394259 -0.221175 0.591950 1.650127 0.338506 3.721753 2.177896 -0.029217 2.190244 0.624845 -1.296290 6.113332 -1.753384 0.035585 -0.106653 1.978320 -0.531080 0.685203 1.598555 -0.822110 -1.321739 -2.103806 0.511046 -0.650535 0.816435 -3.708303 -1.808375 -3.037374 -0.794042 0.270541 2.107194 -0.043722 4.039172 -0.072339 0.401095 -4.780573 0.018605 1.920830 -0.422311 1.296194 1.370958 -2.159756 -4.069337 -0.008983 -1.300030 0.781419 -0.351368 -2.140275 -1.301089 -0.708802 0.761624 -0.424344 0.881655 3.113199 -0.451640 0.927243 0.388566 -0.489558 0.067295 -1.351589 1.573248 0.330679 -1.699364 2.958344 0.094055 5.495751 -0.054409 1.772107 -1.307644 0.024561 0.176054 -1.011242 -1.143983 2.272657 1.554408 1.160221 -0.062818 0.455000 -1.625887 1.347167 -PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -1.291892 4.612796 16.648610 11.572540 -6.284650 -8.220366 -3.694472 -6.938032 3.676508 0.259931 8.512231 -1.229735 1.895287 6.225702 0.346415 -5.190255 3.786178 -0.477941 -1.407871 -3.901341 -3.322249 7.591292 7.065344 -13.415845 0.818254 -11.372381 8.427943 5.186550 3.286880 8.570890 0.355593 0.297183 0.135671 5.859242 -8.267920 -5.626358 -1.872321 1.971432 -3.931266 -1.268359 6.215336 5.831974 6.728621 1.480563 2.053590 6.557713 7.294950 -0.733141 -6.491508 -1.079831 -7.648031 9.264846 -5.114537 4.765161 -1.274321 6.792240 2.655754 -9.204921 -2.196967 -11.363869 2.529191 5.946394 -5.530318 -1.093182 -9.177895 1.695229 -2.885904 -5.562006 5.028455 -0.709877 6.115783 -0.053443 1.333176 -8.160496 -6.915270 4.461947 -2.399682 5.352940 3.219185 -1.710413 -3.363732 3.340607 -4.592448 -4.757355 0.233825 -1.834891 1.002124 -1.321797 4.172207 -4.718744 0.256583 0.256123 -5.646632 7.410496 -4.112913 9.334097 -4.490487 -1.675617 -5.484211 -2.523539 -1.953714 -8.284223 3.159972 8.444555 -5.204382 2.366892 -0.005951 2.058364 0.895384 -10.214458 -0.377646 -0.706201 -1.381157 6.525331 -5.873569 -3.445421 2.840397 0.301828 0.316028 8.792309 -1.790896 3.949214 7.070959 6.334071 0.989292 -6.084195 2.879301 -0.074708 3.504842 6.115896 8.396412 -6.566317 -5.622431 -2.549614 0.726176 -13.156753 5.430666 5.541328 7.421687 2.695213 -14.112261 4.484726 -5.516470 8.501819 5.874335 9.575219 4.218793 -1.843576 -4.384809 3.615102 15.979254 -5.866987 7.276288 -5.603900 -8.445927 11.226021 -2.534129 7.100019 -0.567477 2.911835 5.083565 -8.798259 -2.033236 11.195126 4.167346 2.408887 12.259760 -1.650874 1.720027 -14.307995 -8.869715 -1.370686 3.420329 0.140611 14.855256 -7.310776 -2.980266 -2.354995 7.026652 -4.210526 -2.871662 -1.282313 -0.811530 2.278831 -18.436376 -12.204084 10.144383 9.174447 -3.096761 -0.583181 7.949113 2.536967 1.066171 -5.691696 -6.672473 6.482148 1.036281 6.147762 1.888076 -1.124806 -8.394930 -0.094012 2.822952 2.611134 7.598134 -9.739153 -8.074569 -0.023342 -13.465681 -8.264213 2.996818 -11.500858 -4.423343 1.448210 -0.182630 -0.785858 0.669205 -0.089045 -5.813967 3.350428 -5.234268 -3.840247 2.047718 7.209982 1.609577 10.122887 7.371690 1.801982 4.364711 5.814356 -5.647793 24.629596 -6.577993 -2.230330 -0.486331 8.936488 -2.695218 4.700903 2.750141 -2.249109 -6.967838 -9.293786 7.239858 -2.567837 3.397406 -13.096715 -3.995643 -7.411116 -3.682948 4.091029 10.571511 -0.746969 17.636191 -0.492941 1.254266 -16.263443 -0.259017 8.236555 -0.098007 5.581889 7.323630 -7.359835 -11.433211 -1.507870 -1.925826 9.387263 -1.716944 -9.888385 -7.062328 -1.940286 0.134859 -3.972268 4.996331 10.858530 -3.219717 3.925161 2.012349 -3.500566 0.231118 -4.976874 5.107458 5.530007 -7.289250 11.871915 -3.387224 18.107011 -2.266826 8.035263 -7.894200 -0.701892 -0.572933 -1.440353 -3.769466 11.505223 5.601187 3.454407 2.463353 -0.414622 -4.100645 4.673694 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = -0.260417 2.049788 6.604678 3.166502 -2.935434 -3.671546 -1.876955 -4.888380 1.702574 0.846864 4.107857 -1.119773 1.247135 1.895183 0.133032 -0.795731 1.998253 -0.476265 -0.007779 -1.886650 -1.981485 3.143259 1.663357 -3.186449 0.739146 -4.383961 2.795983 1.952790 1.489293 2.588152 0.674831 -0.039962 -0.576698 2.233836 -2.593844 -0.997816 0.355636 1.170445 -2.277663 0.273865 1.417236 1.408217 2.819656 0.023425 1.839749 2.467131 2.100262 0.228274 -3.107450 -0.750958 -1.908902 3.942181 -1.775629 1.821386 0.209399 1.366945 0.392571 -3.337858 -0.878711 -2.922340 0.459415 1.102467 -2.006364 0.148882 -3.148071 0.661764 -1.235584 -2.329235 1.835237 -0.396655 2.169883 -0.179060 0.126129 -1.480507 -3.123730 1.732984 0.404063 1.770786 1.466297 -0.672645 -0.074698 0.974092 -2.062860 -2.538364 1.067202 1.009191 1.039312 -0.449208 -0.053546 -1.244609 0.344660 -0.222936 -0.824476 3.121728 -2.159976 2.428207 -2.027447 -1.446880 -3.164649 -2.905558 -0.274180 -2.968961 1.872130 2.358093 -2.101756 0.757782 -0.277702 1.361400 0.002085 -3.835067 -0.081362 -1.037926 0.300971 3.874566 -2.119231 -1.715895 -0.270627 -0.494145 -0.209818 2.880628 0.042611 1.139574 3.329017 2.726824 1.127209 -2.733524 -0.239370 0.168087 1.452806 2.282480 3.001422 -3.112217 -2.141291 -0.372915 -1.026465 -5.538271 0.382151 1.053894 2.935896 -0.023663 -3.811823 1.109970 -2.282687 3.306373 2.147742 3.053913 1.269543 -0.538172 -2.049028 1.393140 5.420350 -2.192351 2.951629 -1.900312 -2.939808 3.030437 -0.643917 2.560426 0.520479 0.427490 0.792639 -3.174393 -0.596628 4.138633 1.536290 1.034775 2.753416 0.042213 -0.565167 -4.834582 -4.573900 0.096098 2.066106 -0.170688 5.431740 -3.220218 -2.276559 -0.733158 3.902393 -1.019091 -1.637591 0.383904 -1.064734 1.355560 -5.657857 -4.910999 4.390458 4.578752 0.228107 -0.644784 3.300260 0.770381 -2.243436 -2.689669 -2.569177 2.599718 0.257197 -0.448955 -0.505716 0.191100 -3.412985 0.154018 0.306751 1.458403 2.519933 -2.009523 -1.167963 0.125177 -4.417044 -2.456278 1.822466 -3.381209 -1.438006 0.476644 0.035470 -0.056358 1.178275 -1.236997 -2.142313 1.071119 -2.650304 -0.713833 1.219974 2.806008 0.343849 5.105243 3.380236 0.295733 2.737102 1.111927 -2.270162 7.798450 -2.320190 -0.142161 -0.254633 2.530797 -1.288509 1.390251 2.144938 -1.157264 -3.410336 -3.676072 1.251726 -0.767658 1.572479 -3.530411 -2.528405 -3.889639 -0.940987 1.111724 4.436513 0.184885 6.686711 -0.223895 0.983914 -6.391473 0.111259 2.422678 -0.405507 2.529635 2.241264 -3.100406 -4.517849 -0.483700 -2.351053 0.775027 -0.400563 -3.433114 -2.846115 -1.458027 1.436057 -1.148485 1.154010 3.955299 -0.691043 1.984602 0.976661 -1.314932 -0.500065 -1.241785 3.224266 0.981321 -2.926060 4.289977 -0.374079 8.739650 -0.437833 2.799811 -2.383957 -0.608273 0.354084 -1.229862 -1.669738 4.391897 2.954364 1.793689 -0.038565 -0.092942 -1.572252 2.027030 -PE-benchmarks/n-queen-problem.cpp__main = 0.161207 0.721585 1.665178 0.749642 -0.708941 -1.119101 -0.432457 -1.425431 0.408931 0.161471 0.998587 -0.366434 0.428039 0.478664 0.003563 -0.067801 0.572415 0.148607 0.066053 -0.482643 -0.644814 0.854975 0.194593 -0.654604 0.242331 -0.995655 0.734068 0.564556 0.521624 0.689117 0.155351 -0.022789 -0.149685 0.541348 -0.682456 -0.368539 0.063664 0.345745 -0.772697 0.161604 0.153411 0.208019 0.747617 0.043054 0.333358 0.730089 0.465539 0.153964 -0.654422 -0.131360 -0.499609 0.977478 -0.335667 0.538796 -0.098088 0.103136 0.140994 -0.594861 -0.096138 -0.515876 0.104704 0.176842 -0.505024 0.021431 -0.908124 0.124641 -0.442184 -0.776542 0.383935 0.017006 0.536009 -0.026406 -0.007049 -0.384625 -1.060362 0.395072 0.202580 0.503301 0.426355 -0.158752 0.187107 0.206417 -0.656359 -0.726663 0.433247 0.360670 0.385486 -0.017016 -0.195306 -0.483063 0.113325 -0.020077 -0.010477 0.758054 -0.396715 0.690689 -0.765366 -0.307222 -0.797726 -1.136671 -0.050797 -0.690127 0.487864 0.337359 -0.335601 0.241384 0.085501 0.454478 0.111553 -1.031864 0.034507 -0.273185 -0.037733 1.149666 -0.351778 -0.533450 -0.072346 -0.174920 -0.185170 0.725206 0.111136 0.240607 0.755359 0.680571 0.308505 -0.690480 -0.157691 0.061389 0.218816 0.624036 0.790165 -0.792973 -0.599555 -0.036546 -0.407257 -1.513197 0.072437 0.291525 0.758486 -0.263707 -0.782654 0.337287 -0.681153 0.678280 0.523561 0.717885 0.372731 -0.188123 -0.492028 0.379104 1.321491 -0.603693 0.742172 -0.504835 -0.703028 0.645968 0.007885 0.555745 0.001651 -0.022814 0.199099 -0.680094 -0.081466 1.083952 0.376716 0.187966 0.728371 0.010688 -0.473977 -1.196320 -1.110320 0.080964 0.687850 -0.124301 1.330813 -0.785258 -0.626753 -0.117946 0.999430 -0.311703 -0.350037 0.179382 -0.356996 0.398232 -1.425287 -1.269851 1.099299 1.064924 0.126367 -0.297682 0.675408 0.262107 -0.649255 -0.848223 -0.649877 0.568064 0.007028 -0.499044 -0.428853 0.052118 -0.919018 0.205545 0.144902 0.397227 0.649780 -0.288835 -0.127352 -0.197117 -1.123254 -0.737517 0.551840 -0.829181 -0.180113 0.203495 -0.036221 -0.064529 0.352070 -0.368640 -0.540281 0.335376 -0.662317 -0.102763 0.203887 0.661278 0.001441 1.458522 0.865261 0.093037 0.717372 0.301341 -0.703257 2.037676 -0.583021 0.086176 -0.072979 0.676305 -0.442448 0.418663 0.663901 -0.308181 -0.994919 -1.067539 0.041113 -0.077997 0.348100 -0.626265 -0.602455 -1.050858 -0.209240 0.145161 1.284208 0.049060 1.638412 -0.140650 0.340002 -1.489699 0.093426 0.477377 -0.205268 0.748402 0.556282 -0.815091 -1.012245 -0.113613 -0.722149 -0.117803 -0.156459 -0.931125 -0.700874 -0.287393 0.154619 -0.264366 0.230809 0.959039 -0.179221 0.528415 0.028710 -0.314537 -0.204722 -0.210840 1.068745 0.105462 -0.790815 0.924865 0.017650 2.344225 0.040088 0.718620 -0.604350 -0.335262 0.162329 -0.399473 -0.505232 1.165321 0.760208 0.500539 0.025097 0.065218 -0.250384 0.523505 -PE-benchmarks/birthday-paradox.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.206634 0.358454 0.912284 0.613861 -0.749856 -0.276371 -0.414016 -0.615495 0.229928 0.521696 0.616241 -0.646733 0.529075 -0.693148 -0.237970 -0.485363 -0.341294 0.046320 0.195834 -0.610026 -0.225364 1.093339 -0.425920 -0.491203 -0.215399 -1.006308 -0.013759 -0.083377 0.686940 0.274853 -0.460971 -0.798989 -0.355868 -0.145334 -0.588773 -0.674621 -0.261023 0.044540 -0.516083 0.429972 -0.313337 -0.273670 0.494742 0.466231 -0.607799 -0.465654 0.323699 0.306302 -0.837403 0.657084 -0.502634 0.732762 0.496475 0.261229 0.778019 -0.668980 -0.357712 0.127134 -0.881173 0.414659 -0.268100 -0.168208 0.367632 -0.347043 -0.696527 -0.171859 -0.712489 -0.343210 -0.387457 -0.046896 -0.165304 0.598769 0.195975 -0.761558 -1.427602 0.318475 -0.311011 0.022115 -0.162427 0.451102 0.178790 -0.116563 -1.068237 -0.986048 0.711959 0.549515 0.134412 -0.139142 -0.104481 -0.873517 0.132701 -0.158655 -0.153034 -0.249039 -0.170311 0.629185 -0.985802 -0.095502 -0.314296 -0.365217 -0.530784 0.136557 -0.102142 0.133060 0.017579 -0.816555 0.120567 0.418629 -0.609255 0.074073 -0.237165 0.392884 -0.589291 1.010576 -0.232410 -0.354018 -0.273587 0.121591 -0.619644 0.269000 0.012961 0.346019 0.293707 0.737363 1.158883 -0.701679 0.444760 0.455074 0.066812 0.281011 0.242313 -1.194722 -0.432148 0.892947 0.319744 -0.911946 -0.072241 0.523194 0.377368 -0.367830 -0.094315 0.210306 -0.777293 0.892187 -0.487343 -0.387964 0.444752 -0.507528 -0.543668 0.990049 1.153343 -0.511747 0.417954 -1.141207 0.042225 0.111421 0.361169 0.432881 -0.192932 -0.533537 -0.119049 -0.237065 0.423787 0.898738 0.485607 -0.552237 -0.204944 0.725872 -0.793133 -0.680039 -1.163510 -0.255220 0.218131 -0.608373 1.238163 0.023033 -1.159022 -0.622140 0.311469 -0.022738 -0.207692 0.436816 -0.729483 0.191125 -0.497405 -0.384100 1.265819 0.895425 0.020653 -0.419805 0.890701 0.052066 -0.386244 -1.287772 0.430407 0.343440 0.009856 -1.025535 -0.400352 0.177511 -1.176843 0.109482 0.168844 0.061629 0.243459 -0.199524 0.614808 -0.702348 -0.243408 -0.551368 0.974535 -1.058806 0.395836 0.456381 -0.483307 -0.470242 1.270793 -0.648314 0.298468 0.063089 -0.393124 0.500325 -0.559124 0.103664 -0.173899 0.779129 1.131860 0.437965 1.039102 0.365464 -0.868495 0.925343 -0.072976 -0.397628 0.112865 -0.224538 -0.621104 0.628396 -0.068187 -0.100457 -0.045599 -0.033674 0.338598 0.176335 0.164148 0.136094 -0.416906 -0.724514 0.350583 -0.123687 0.391186 0.219850 0.359794 -0.403715 0.426921 -0.819283 0.335016 -0.791651 0.449258 -0.083529 -0.102107 -0.453514 -0.830705 0.181787 -0.366671 0.119113 -1.097243 -0.480062 -0.158460 -0.409436 0.175821 -0.036608 0.506705 0.208318 -0.113766 0.388334 0.198533 -0.453183 -0.640852 0.725045 0.547791 0.099057 -0.487439 -0.055684 -0.372652 1.820453 0.002570 0.680207 -1.027044 -0.165607 0.423174 -1.111095 0.238392 1.398394 0.040076 0.920319 -0.293507 -0.159720 -0.197542 0.224107 -PE-benchmarks/birthday-paradox.cpp__main = 0.338526 0.298090 0.593769 0.080963 -0.100505 -0.305350 -0.155760 -0.803632 0.299400 0.154586 0.316962 -0.275244 0.296985 -0.134658 -0.094786 0.140645 0.043185 0.122153 0.168492 -0.177385 0.002797 0.637601 -0.318395 0.034464 0.000134 -0.656814 -0.042213 0.075599 0.588347 0.169563 -0.068295 -0.240475 -0.065275 0.013778 -0.268124 -0.207196 0.125272 0.039168 -0.591232 0.134781 -0.373895 0.026518 0.169950 0.026685 0.013963 -0.128219 0.127640 0.143061 0.001186 0.176992 -0.237478 0.588647 0.191619 0.183701 0.157243 -0.359484 -0.240916 0.066776 -0.188093 0.318813 -0.100502 0.060359 0.040637 -0.046751 -0.329569 0.034956 -0.269369 -0.193353 -0.057983 0.074749 0.118694 0.205408 0.171008 -0.179499 -0.873178 0.184240 -0.020220 0.133938 0.047346 0.043659 0.333933 0.003255 -0.329279 -0.399612 0.449160 0.615608 0.053894 -0.028436 -0.232711 -0.314373 -0.070174 -0.121962 0.096261 0.065048 -0.197317 0.262314 -0.620010 -0.005372 -0.094145 -0.570317 -0.140081 -0.119578 0.068471 -0.204142 0.303981 0.003281 0.341503 0.293107 -0.009676 -0.177956 0.074666 0.193959 -0.196230 0.749312 -0.019115 -0.199939 -0.136944 0.016619 -0.478922 0.173291 0.044574 0.213295 0.137968 0.322123 0.390473 -0.278938 -0.064948 0.368051 0.040617 0.234547 0.183958 -0.538084 -0.182097 0.201359 -0.006143 -0.629191 -0.109370 0.167700 0.265896 -0.363146 0.086990 -0.053887 -0.248195 0.384038 -0.006453 -0.221561 0.176147 -0.120718 -0.213470 0.377650 0.609216 -0.223224 0.216012 -0.486857 0.072519 -0.114002 0.069897 0.211561 -0.192986 -0.060286 0.045088 -0.173594 0.118458 0.397917 0.144166 -0.046613 -0.100672 0.207608 -0.520216 -0.434999 -0.502224 -0.133462 0.174254 -0.399267 0.438224 -0.034575 -0.611044 -0.162324 0.360763 -0.050832 -0.024772 0.323709 -0.519122 0.182185 -0.177505 -0.370959 0.552792 0.640978 0.166996 -0.260580 0.333586 0.238214 -0.531700 -0.524268 0.080743 0.119573 0.012850 -0.945206 -0.464908 0.025655 -0.444301 0.015012 0.069563 0.077500 0.084410 0.417955 0.445011 -0.153726 -0.288427 -0.283339 0.570665 -0.324840 0.148138 0.113886 -0.032666 -0.177595 0.493850 -0.487327 0.060312 0.401703 -0.207929 0.227677 -0.047054 0.032572 -0.139548 0.430963 0.434750 0.269286 0.679397 0.111229 -0.428553 0.488691 -0.048098 -0.028378 -0.029434 -0.222327 -0.422241 0.288870 -0.001080 -0.127701 -0.372459 -0.317119 -0.118388 -0.040485 0.132965 0.418368 -0.418043 -0.212235 -0.014086 -0.039799 0.291538 0.198691 0.398683 -0.295805 0.249055 -0.546436 0.137438 -0.120706 0.024414 0.244945 0.062082 -0.222596 -0.378217 0.067560 -0.281227 -0.552611 -0.377165 -0.600614 -0.160349 -0.420034 0.326534 -0.107783 0.084034 0.234925 0.129545 0.356879 -0.235190 -0.146954 -0.389202 0.316397 0.390353 -0.076865 -0.325794 -0.061065 -0.054249 1.047736 -0.079770 0.237463 -0.369700 -0.160165 0.075354 -0.442350 -0.014593 0.583525 0.208326 0.322723 -0.219779 -0.142549 -0.123322 0.127556 -PE-benchmarks/birthday-paradox.cpp___GLOBAL__sub_I_birthday_paradox.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/edit-distance.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.051937 0.542768 1.597998 1.335866 -1.071352 -1.705940 -0.405035 -1.921554 0.977842 0.361868 1.260261 0.070293 0.968023 -0.479713 -0.150081 -0.209116 0.827476 0.367187 -0.095495 -0.587645 -0.967915 1.786975 0.139098 -0.951255 0.370582 -0.899578 1.456789 0.870285 0.769853 1.189927 0.181157 0.086444 -0.220354 0.736217 -0.672721 -0.203356 -0.503397 0.676596 -0.771309 -0.214717 0.635852 -0.403951 1.422871 0.199425 0.608866 0.451455 0.695614 0.029545 -0.887273 -0.401081 -0.580765 0.558182 -0.581978 0.907835 -0.604728 -0.214270 0.715295 -0.185979 0.225472 -0.839418 0.257777 -0.248819 -0.859328 -0.184640 -1.203993 -0.046033 -0.528691 -1.147408 0.134431 -0.446553 0.559655 0.036971 -0.324860 -0.887498 -1.822310 0.178092 0.576489 0.298332 0.873800 0.665357 -0.038574 -0.398552 -1.185033 -1.023366 1.031524 0.283977 0.504147 0.633874 -0.813871 -0.897678 0.253149 0.264843 0.474199 0.857924 -0.539157 0.551695 -0.467645 -0.383652 -0.624927 -1.481323 0.272679 -0.746420 0.477104 0.351032 -0.524690 0.263861 0.211036 0.342343 -0.109715 -1.197917 0.091976 -0.870158 -0.047408 1.401532 -0.084916 -0.920445 -0.440041 -0.188607 0.071145 0.871555 0.268389 0.039815 1.270066 0.698284 0.675936 -1.127770 -0.224667 0.447877 0.258649 0.644488 0.428630 -0.671193 -0.660496 0.237918 -0.720114 -2.034414 -0.386849 0.594275 1.034203 -0.524668 -0.797732 0.939507 -0.774712 0.590686 0.997425 0.521959 0.553425 0.198888 -0.837780 0.519813 1.599227 -0.481267 0.542345 -0.649912 -1.232807 1.459651 -0.010184 0.453164 -0.200925 -0.386088 -0.029469 -0.593885 0.551889 1.410401 -0.181040 0.111959 0.474370 0.232373 -0.742473 -1.386726 -1.881782 0.126776 1.472611 1.019247 2.231692 -1.201799 -0.297872 0.066180 0.816069 -0.223844 -0.474583 0.447435 -0.632644 0.789620 -2.667044 -1.774833 1.928749 1.020507 0.558267 -0.142082 0.671800 0.257329 -0.223278 -1.010342 -0.976584 0.589941 0.593513 -0.743955 -0.260740 0.199530 -1.417423 -0.055835 0.286441 0.240916 0.706916 -0.899415 0.211938 -1.230497 -0.895075 -1.127795 0.820918 -0.963475 0.007782 0.033003 -0.176940 -0.123028 0.673953 -0.005153 -0.479299 -0.295230 -0.544689 -0.114639 -0.145601 0.690495 0.011374 1.690599 1.852665 -0.657295 0.500612 0.229175 -0.744254 2.700127 -0.993607 0.155472 0.153466 1.207619 0.286349 0.684335 1.271144 -0.545281 -0.369260 -1.515194 -0.108407 0.630721 0.428073 -1.623554 -0.385440 -1.999511 -0.179240 -0.276514 1.811654 -0.116382 2.231823 -0.643975 0.371733 -2.050593 0.113013 0.618863 -0.138286 1.183175 0.490959 -1.120497 -0.860610 -0.374653 -1.048951 0.062424 -0.216179 -0.646750 -0.900902 -0.126715 -0.095685 -0.794871 0.430559 1.155599 -0.643174 0.733481 -0.666551 -0.007628 -0.538150 -0.144126 0.940988 0.149046 -0.809387 1.001878 0.105583 2.540406 0.080661 1.045652 -0.737106 0.534237 -0.364193 -1.332069 -0.803652 1.415530 1.011980 0.434448 0.363509 0.436349 -0.027659 1.101833 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 2.554244 16.308307 37.053578 12.786981 -22.119404 -19.082759 -8.368376 -35.956996 13.952515 10.109724 17.296325 -3.789094 8.798024 2.013917 -5.409833 6.161297 14.564792 -1.942710 -4.340466 -14.194734 -21.584024 13.785980 0.853036 -10.788062 12.897132 -28.224840 22.940430 0.536323 8.462475 10.932073 13.033205 2.178907 -3.696548 16.889722 0.378018 5.699086 4.065657 8.718441 -13.427353 5.544781 8.676916 0.321301 14.431884 9.226690 14.877307 17.641691 10.007243 1.890246 -17.440946 -0.534747 -11.002168 20.260099 -12.043537 13.311409 -2.736208 6.666867 0.093497 -20.769162 0.425726 -5.774654 -4.829778 -4.201172 -12.297521 0.637158 -20.023964 0.601056 -6.827251 -14.903666 -1.003335 3.106895 12.404921 2.357707 -1.966506 -5.065797 -19.124352 7.424966 7.201877 8.013376 17.400428 -2.227575 -0.216088 -2.635788 -16.255842 -20.999448 18.025039 6.522945 7.472085 -0.475688 2.635391 -11.099384 -6.200794 -4.874421 2.895468 22.740270 -19.665735 5.107974 -13.167204 -10.935526 -19.548141 -24.348455 0.196799 -16.280856 11.518427 7.517736 -15.870861 9.029427 4.097777 7.424105 4.598404 -10.433304 0.655134 -9.199538 4.666902 24.994785 -1.960417 -17.381575 -3.331886 -5.492784 0.051352 13.658271 3.277129 0.444313 34.147974 13.675033 16.551658 -12.229992 -1.548666 2.487208 0.701746 9.974821 18.087920 -23.942793 -13.232773 3.407180 -3.998217 -32.033826 0.619141 0.963348 15.357594 -8.272637 -17.886775 4.810277 -8.234739 8.968355 9.360547 8.731146 9.497908 -2.446341 -9.288834 5.218034 33.636634 -10.638380 9.705492 -17.466541 -7.776334 16.162944 -1.674437 8.496120 -1.490232 -2.155315 -0.413433 -17.088431 -0.944453 24.367035 1.905167 -4.571509 12.960535 4.343692 -11.681158 -25.290692 -24.072151 -1.567483 13.912439 -1.199179 32.495818 -21.364239 -4.247212 -9.973529 21.460829 -0.954656 -3.355102 5.825391 -10.074405 9.020390 -19.138169 -27.090500 31.220727 23.364155 3.474882 -8.635435 13.711976 1.202218 -23.006473 -21.653820 -16.574437 7.403426 7.026443 -10.413764 -11.398012 5.369712 -24.052514 -0.575098 1.317327 8.258773 23.359765 -4.713150 -1.186994 -0.201231 -17.244904 -19.527118 11.822456 -11.908224 -9.491247 3.718089 5.248854 1.507820 11.812947 -4.438966 -13.799883 0.265556 -10.842045 -5.254774 10.593564 20.548951 -1.835492 29.206407 22.455782 -3.274382 11.419045 4.576835 -12.219677 33.329863 -5.710864 1.209079 2.269725 9.968641 -5.840190 7.812973 18.215668 -9.017167 -19.329516 -19.796497 3.677610 -7.297566 3.076041 -14.882229 -7.348546 -22.994176 -4.500617 -1.486369 22.274244 2.621250 34.844031 1.379035 5.101367 -33.052832 1.212569 17.239796 -2.264032 14.236722 15.083700 -20.877676 -14.096625 -5.371223 -17.366328 -8.184033 -2.124317 -3.081533 -18.235994 -2.917824 10.072519 -4.695211 4.793952 25.809234 -0.370279 11.934210 -3.201811 0.376581 -7.522050 -3.649184 25.970257 3.602077 -13.476643 19.660033 0.792283 47.958049 1.779677 12.790381 -10.180304 -10.823315 3.988643 -11.266884 -14.926606 22.055779 12.206489 12.711559 4.950300 -2.949872 -3.498124 22.583438 -PE-benchmarks/edit-distance.cpp__main = 2.325345 8.111769 16.541487 4.080342 -10.117737 -9.558327 -3.860367 -19.811261 7.340769 5.888425 8.499531 -2.280906 4.536159 0.156265 -3.131854 4.866308 6.492625 -0.614075 -1.983955 -7.041532 -11.948395 6.166642 -0.729915 -1.284901 6.811097 -12.818613 9.682402 -0.878553 4.795579 3.823654 6.644259 0.711547 -1.962209 7.846073 1.819802 4.444827 2.060660 4.233633 -6.631599 3.418609 2.802462 -1.992245 6.929112 5.519354 8.115708 7.681123 3.713624 0.886898 -7.804406 -0.202492 -3.875811 9.410777 -5.490429 6.144744 -1.108139 1.511957 -0.750157 -8.680402 1.226702 0.238418 -3.406743 -4.361454 -5.946869 0.799564 -8.968599 0.081507 -4.650667 -7.210511 -2.040948 1.045758 5.939256 1.206674 -2.111846 -0.297541 -9.891433 2.907771 4.623829 2.533557 8.904173 -0.702879 0.845302 -2.062220 -8.543701 -10.788811 10.798854 4.367107 3.815202 0.464726 -0.860838 -5.416725 -3.025639 -2.815235 3.865657 10.921642 -10.171163 1.026709 -5.824660 -6.292531 -9.812361 -14.519374 0.773680 -7.134752 5.897605 0.748027 -7.197529 4.376416 1.995860 3.634950 2.469985 -4.515751 0.577890 -4.357653 3.281516 12.759933 -0.397898 -8.842159 -2.839289 -3.186580 -0.589572 5.316322 3.501126 -0.906804 17.060675 5.806359 8.638602 -5.456507 -1.829633 1.211854 -0.738231 4.172786 7.638032 -10.912358 -6.255272 3.046484 -2.384668 -15.654708 -1.610142 0.001799 6.949845 -5.006391 -5.368643 1.295397 -3.233748 2.283430 4.482510 2.298818 4.414487 -1.261069 -4.273344 1.803080 14.391666 -4.829792 4.198676 -8.073500 -2.857639 6.222998 -1.427877 3.129834 -0.684109 -1.916338 -1.146916 -7.118339 -0.025854 11.169706 -0.311017 -3.391020 3.779227 3.113476 -7.609670 -10.272819 -11.926871 -0.289632 7.392000 -0.432125 13.000314 -9.902591 -1.685571 -4.337644 10.628271 0.872132 -1.422378 3.955813 -5.697013 4.335957 -6.968509 -12.146279 14.651405 11.820346 3.690864 -5.063696 5.017617 0.885090 -12.840938 -10.872941 -7.876948 2.636028 3.398139 -8.805515 -7.790574 2.477653 -11.149016 0.209172 -0.436805 3.896905 10.370589 -0.596456 2.794351 -0.929448 -5.994171 -8.885374 6.173870 -3.871820 -3.732119 1.295694 2.772448 0.684533 6.263719 -2.606449 -5.733143 -0.351927 -5.144974 -1.336311 5.574778 9.311694 -1.350364 15.280926 10.613368 -2.624524 5.531424 0.495541 -5.558834 12.377258 -2.638313 1.565417 1.190225 3.725280 -3.151861 3.686849 9.522597 -4.520645 -9.635910 -8.118007 -0.381546 -2.942386 0.979993 -3.355463 -4.066876 -12.091523 -1.650674 -2.176691 10.139471 1.836611 15.075856 0.459891 3.336761 -13.884393 0.861294 7.054596 -1.825555 7.526364 6.184628 -10.015789 -4.126262 -2.966616 -9.745424 -6.997632 -0.394620 0.286278 -8.023160 -1.447733 5.437229 -2.077215 1.685763 9.601037 0.715884 5.762726 -2.442308 0.958467 -4.723378 -0.010833 14.727735 0.093021 -6.212076 7.514587 1.635337 22.313951 1.739576 5.470934 -3.829706 -6.146693 1.998747 -5.798147 -7.465015 9.722023 6.639396 6.189844 0.761852 -1.423796 -0.589458 10.527022 -PE-benchmarks/edit-distance.cpp___GLOBAL__sub_I_edit_distance.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/quicksort-for-linked-list.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.752649 0.013254 1.950165 1.591025 -1.553152 -1.661429 -0.621589 -1.923710 1.083311 0.220199 1.829039 -0.150518 0.718443 -0.837274 -0.097131 -0.586457 0.689855 0.029122 -0.442799 -0.757414 -0.462718 1.321367 0.364309 -1.894818 0.449129 -1.187427 1.123714 1.046322 0.082415 1.090979 0.209252 -0.036880 -0.566877 0.899873 -0.740144 0.087829 0.468683 0.318880 -0.772651 -0.499856 0.706492 0.334590 1.180714 -0.501350 1.548149 0.663875 0.784426 0.129117 -1.835204 -0.477870 -0.100091 1.115307 -0.624127 0.921571 0.431395 0.445103 0.303400 -1.358395 -0.296969 -2.067356 0.470885 0.002698 -0.536116 -0.107867 -1.046164 0.092274 0.459924 -1.125434 0.860234 -0.974586 0.505967 -0.249492 -0.136092 -0.524072 -0.517036 0.428758 0.699718 0.684229 0.608211 0.275693 0.238359 -0.479832 -0.631970 -0.562518 0.094212 0.017961 0.583817 0.512698 -0.407179 -0.284698 0.843317 -0.291714 0.052183 0.853853 -0.855621 -0.015277 -0.017153 -0.503928 -0.969598 -0.875262 0.283512 -0.665921 0.766687 1.327160 -1.171988 0.590065 0.179557 0.737198 -0.413309 -1.025848 0.196301 -0.812617 0.782123 1.355925 -0.722522 -0.883666 -0.451732 -0.265525 -0.017355 1.240296 -0.290665 0.332564 1.230818 1.177264 0.690258 -1.334473 -0.468310 0.355363 1.063143 0.925438 0.799342 -1.375744 -0.403447 0.072912 -1.099108 -1.947497 -0.473199 -0.024303 1.512481 0.151830 -1.781182 0.878396 -0.777173 1.734923 0.630481 0.893744 0.115502 0.085767 -1.439603 0.590259 1.661427 -0.431268 0.868020 -0.368925 -1.317296 0.746861 0.297678 0.513540 0.398835 -0.390916 0.259126 -0.958158 0.149898 1.195937 0.645473 0.306827 0.125840 0.445728 -0.841197 -2.169858 -2.257171 0.108044 0.950110 0.753504 2.945413 -1.568938 -1.360766 -0.686923 1.708304 -0.669432 -0.696087 0.212440 -0.783810 0.832535 -2.157807 -2.134861 2.634686 2.139200 0.797299 0.100442 1.726247 -0.236815 -0.851561 -0.512261 -0.723570 0.494864 0.726905 -0.522727 0.139126 0.164427 -1.515896 -0.635071 0.241444 0.567212 0.604233 -0.536644 -0.118117 -0.152926 -0.870084 -0.836424 0.406811 -0.819332 -0.102025 0.211907 0.167869 0.394129 0.735316 -0.758526 -0.964343 -0.268841 -1.032812 -0.012075 0.275188 1.201278 0.547181 2.020828 1.801603 -0.278688 1.636598 0.253784 -0.896406 3.073749 -0.798030 0.348527 0.186640 0.974437 0.548734 0.229701 1.111796 -0.666014 -0.210020 -1.429735 -0.062571 0.048658 0.939812 -2.660274 -1.300420 -1.995640 -0.244510 0.071135 0.973232 -0.100147 2.787459 -0.170883 0.103374 -3.245951 -0.146152 1.315296 -0.101829 0.667132 0.655826 -1.264278 -2.867609 0.018301 -1.109392 -0.277830 -0.444641 -0.775054 -0.863176 -0.575835 1.165335 -0.461557 0.369189 2.050285 -0.155264 0.766987 -0.005480 -0.119780 0.023736 -0.877618 0.276321 0.272642 -1.089989 1.464370 0.357315 3.520258 0.061800 0.778509 -0.825208 0.859998 -0.295240 -1.116664 -0.610449 1.251790 1.410702 0.647131 0.042515 0.352934 -0.983943 1.181754 -PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -3.734480 -0.587340 7.570131 6.003890 -4.464486 -6.759444 -2.344053 -7.459192 5.233637 2.117335 7.749319 0.609714 4.393326 -3.886788 0.296233 -1.865602 4.095393 -0.902670 -1.470753 -2.849928 -0.715594 7.918076 2.816813 -6.293627 1.510486 -5.326671 3.646254 3.552288 1.218434 5.146338 1.010911 0.637143 -1.328036 2.876238 -3.402196 1.272538 0.304232 1.794204 -2.740662 -2.933461 3.168459 0.610456 5.546197 -0.541836 6.012033 0.784524 3.961055 -0.559006 -6.131233 -3.237528 -1.650150 4.504194 -2.933803 3.525232 0.239191 1.406485 2.508260 -3.709396 -0.734012 -8.815597 1.743507 0.548657 -3.194481 -0.823244 -3.508529 0.753820 0.784484 -3.263093 1.838707 -4.805441 2.545290 -0.550380 -0.469857 -2.914554 -4.558494 1.377209 1.872678 1.173154 2.766109 2.975128 -1.854649 -2.328401 -3.009690 -3.252167 3.000217 0.441779 1.460690 3.109522 -3.425752 -1.280737 1.357619 -0.317361 0.210877 3.128622 -4.447399 0.559099 2.816119 -2.597374 -2.568442 -2.180773 1.143835 -3.359448 1.416489 4.936902 -2.760360 1.454199 -1.858739 1.794046 -3.065078 -4.117283 1.871482 -3.208054 -0.236013 4.782623 -3.736990 -2.630115 -2.322864 0.013694 1.041521 5.040904 -0.808447 1.786723 4.869482 3.892590 2.805507 -5.154414 -0.178938 2.314755 5.097577 2.344553 1.860583 -3.904556 -2.240178 1.187495 -4.066994 -8.114788 -3.203973 2.921425 6.178012 1.268715 -7.333420 4.150997 -2.236973 6.292568 4.302809 2.519684 1.089077 1.186241 -5.569614 2.262416 7.396600 -2.410698 3.862089 -1.316307 -5.496333 5.662513 -1.224282 2.729987 0.939830 -1.103503 0.299061 -3.519523 1.420448 5.598284 1.894003 1.823518 -0.817640 1.723404 -1.466735 -7.820912 -10.751603 -1.161257 4.243446 4.672412 11.445184 -5.380446 -3.691096 -1.987143 5.089110 -2.590671 -3.781992 1.056877 -3.378194 2.918979 -11.903133 -8.236465 11.802953 8.526308 3.980054 1.119579 6.350173 0.640951 -1.528832 -2.052662 -3.062026 3.027850 3.173141 -2.076973 1.342050 0.739832 -6.552526 -3.275002 -0.283734 1.145503 0.930440 -3.362624 1.252945 -2.074330 -3.515571 -2.236084 1.584122 -3.754707 -1.730348 -0.609323 0.176778 0.981859 2.656571 -1.624713 -2.337662 -0.733951 -4.421772 -1.388454 0.279223 4.444457 2.760640 7.176742 9.113772 -2.063850 5.098984 -0.089860 -3.743617 11.294608 -4.440347 -0.098308 -0.336302 4.416586 3.335588 1.548255 4.223362 -2.215048 -0.523406 -5.737958 1.237060 1.865241 3.587481 -10.065920 -5.103706 -8.367195 -0.522505 -0.055028 6.238995 -1.094287 11.416104 -2.725711 0.691331 -13.191266 0.154783 4.819961 0.017619 2.657862 2.302091 -4.808011 -9.349931 -0.696230 -4.610974 0.461755 -0.779119 -3.477451 -3.373910 -3.488972 4.904840 -4.608812 1.973612 6.592015 -1.354356 4.489683 0.688901 -0.539033 -1.812237 -1.424308 0.880076 1.757527 -3.556189 5.604475 0.486299 12.298037 -1.077648 4.272679 -3.469348 5.497434 -2.650848 -5.658789 -2.633855 5.598286 6.754943 1.287977 1.098118 1.075639 -2.594692 5.113980 -PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -3.157946 -1.116887 7.336072 4.767955 -2.888844 -5.111013 -2.088262 -7.168355 5.403679 2.802835 7.173248 0.768003 4.363071 -3.449908 0.095729 -1.595098 3.603466 -1.747037 -1.119512 -2.488500 0.881393 7.965353 2.623817 -5.158404 1.190144 -6.340128 3.237320 2.661485 1.908775 5.382895 0.701993 0.631465 -0.804241 2.399754 -3.244863 1.546135 0.506862 1.817192 -2.460631 -2.790815 2.956299 1.210106 4.788414 -0.602366 5.861357 -0.087072 2.949808 -1.097092 -4.510422 -3.369501 -0.974764 3.290809 -2.804621 3.107555 -0.664640 1.090009 1.297118 -3.016271 -0.903331 -7.744388 2.025381 1.329065 -2.895120 -0.707586 -2.956155 1.031969 0.911867 -2.436250 1.258478 -4.969740 2.456655 0.023191 -0.202654 -2.951220 -5.218056 1.312108 1.639877 0.286338 2.347227 2.395347 -2.054690 -2.444413 -2.561525 -3.040550 3.484382 2.175667 0.725222 3.109174 -2.917727 -0.973671 0.766947 0.176671 0.283435 3.180740 -4.337790 0.245183 2.440754 -2.299615 -1.147888 -1.265601 1.195986 -3.570259 1.230439 4.244575 -2.146549 1.933306 -0.725275 1.978686 -2.728444 -3.542565 1.596877 -2.434689 -0.116381 4.815614 -3.258348 -2.580005 -2.905489 0.333488 1.142130 4.219046 -1.218168 1.943673 5.166904 3.092634 2.995418 -5.392553 -0.111907 3.330496 4.571724 2.024468 1.069867 -3.499158 -1.915196 0.927106 -3.564937 -7.739200 -3.612401 2.084394 5.743202 -0.017256 -6.144138 3.924188 -1.853418 5.842888 4.883114 1.171619 1.140566 1.822091 -5.268824 1.910598 7.295198 -2.075618 3.134733 -2.293925 -4.622294 5.051530 -1.325334 2.856760 0.380258 -0.478649 0.299155 -3.732710 2.121052 5.453359 0.945749 2.832554 -2.028187 1.883324 -0.498718 -6.861382 -9.938507 -2.444521 3.570730 4.394343 10.209298 -4.646399 -3.136549 -1.891770 4.398065 -1.513189 -3.203550 1.372374 -3.609260 2.739830 -11.225960 -7.551550 10.283497 8.638879 4.434147 1.389848 5.744701 0.635697 -0.864484 -1.036691 -2.129746 3.168492 3.415009 -2.235372 1.181409 0.586007 -5.785646 -3.927611 -0.407741 0.721353 0.065584 -2.922641 1.637552 -1.443435 -3.141972 -2.149562 2.288589 -3.993310 -1.731192 -1.348222 0.414072 0.646967 2.441952 -2.084631 -1.207083 0.255144 -3.347973 -0.813332 0.630822 3.453903 2.142844 4.663898 8.387049 -2.444307 3.980940 -0.626395 -3.122323 9.511057 -3.934604 -0.596239 -0.134440 3.078942 2.892691 1.707113 3.156010 -2.150045 0.412333 -5.194529 1.306442 2.094893 3.246375 -7.749867 -4.742010 -6.739205 -0.351453 -0.403358 6.151695 -0.386680 10.523379 -3.063789 1.247167 -11.880621 0.113901 4.039675 0.415014 2.567395 2.078793 -4.073731 -8.769598 -0.573047 -4.180040 0.055652 -0.980617 -3.790656 -3.479110 -3.710343 5.078770 -4.419569 1.872523 5.462529 -0.764141 4.764181 -0.032900 -0.384291 -2.488070 -0.592373 -0.215802 2.075457 -3.037806 4.143413 0.160062 10.390169 -1.875631 4.368662 -3.340060 5.784554 -3.338265 -5.597875 -2.380845 5.527646 6.121618 1.174577 0.728484 -0.255155 -2.171072 4.601838 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.832623 -0.078761 2.796386 1.915592 -1.223958 -2.295844 -0.708491 -3.006526 2.104930 0.964891 2.593820 0.319231 1.818403 -1.361924 -0.097252 -0.501203 1.454965 -0.155673 -0.382084 -0.979886 -0.023588 3.173683 0.615379 -1.884356 0.501664 -2.251941 1.510915 1.183279 1.019126 2.145556 0.346832 0.248203 -0.385627 0.963033 -1.229173 0.314562 -0.035821 0.768848 -1.226786 -1.005105 0.981882 0.167551 1.987621 -0.021285 2.015672 0.047023 1.097267 -0.278606 -1.506942 -1.120861 -0.541385 1.227217 -0.902339 1.308933 -0.457215 0.140107 0.645191 -0.814208 -0.042190 -2.538752 0.759511 0.288183 -1.186993 -0.316741 -1.394238 0.253726 -0.009668 -1.235583 0.311607 -1.733533 0.903259 -0.040758 -0.161452 -1.338620 -2.520661 0.378106 0.666267 0.206674 1.123157 1.122395 -0.575027 -1.020829 -1.256138 -1.308585 1.498110 0.878496 0.335565 1.332896 -1.362413 -0.806077 0.282393 0.129993 0.402802 1.208733 -1.539453 0.305392 0.462738 -0.766555 -0.405726 -1.093115 0.530100 -1.278078 0.497844 1.184737 -0.647471 0.737869 -0.000915 0.714630 -0.809114 -1.410432 0.651504 -1.051973 -0.129366 2.113267 -0.912403 -1.213484 -1.100256 0.016434 0.275565 1.657381 -0.268298 0.585150 1.885079 1.146023 1.185224 -2.061247 -0.145372 1.366258 1.383515 0.868581 0.430595 -1.310794 -0.787010 0.421876 -1.402080 -3.154192 -1.211270 0.864813 2.104336 -0.289968 -1.984629 1.466574 -0.883015 1.901658 1.830186 0.483383 0.581299 0.624044 -1.924710 0.747949 2.792463 -0.782595 1.115292 -0.929951 -1.811090 1.943030 -0.329910 0.998333 -0.141640 -0.383319 0.126815 -1.202984 0.895685 2.175993 0.137247 0.821697 -0.465617 0.671085 -0.674235 -2.608922 -3.723296 -0.720527 1.712697 1.760441 3.933895 -1.805964 -1.086609 -0.551644 1.643811 -0.558984 -1.076575 0.709493 -1.414675 1.164351 -4.411675 -2.955152 3.902148 2.994717 1.592932 0.205816 1.903771 0.312235 -0.379593 -0.792886 -0.945151 1.022269 1.246186 -1.211545 0.193695 0.237821 -2.324724 -1.186378 0.074665 0.283912 0.309314 -1.043442 0.833020 -1.033548 -1.167508 -1.215787 1.102958 -1.469211 -0.413135 -0.393278 0.094228 0.095080 1.018658 -0.686526 -0.550500 0.094744 -1.130952 -0.231848 0.050811 1.211449 0.610761 2.077082 3.210505 -0.919058 1.459264 -0.085691 -1.306690 4.019042 -1.546631 -0.039302 0.050267 1.311607 0.971772 0.809709 1.368054 -0.886098 -0.011183 -2.180768 0.148471 0.886981 1.164225 -2.837821 -1.635418 -2.752670 -0.152843 -0.377938 2.499690 -0.177846 4.043508 -1.281120 0.545122 -4.313003 0.130290 1.503511 -0.004463 1.270907 0.820073 -1.688990 -2.850096 -0.291679 -1.690632 -0.122775 -0.389402 -1.461392 -1.359508 -1.179202 1.482430 -1.685086 0.714409 2.111224 -0.520832 1.762303 -0.517195 -0.048283 -0.996394 -0.154530 0.265004 0.619897 -1.269630 1.503008 0.108716 4.064929 -0.484699 1.700327 -1.255511 1.986722 -1.240348 -2.340282 -1.058273 2.215316 2.234846 0.575552 0.326076 0.128906 -0.611682 1.784710 -PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.244548 0.076453 1.674445 1.055119 -1.008105 -1.471431 -0.462561 -2.212527 1.376178 0.366391 1.622500 -0.093610 0.948999 -0.861772 -0.124001 -0.007083 0.634264 -0.004142 -0.166206 -0.541319 -0.232036 1.918523 0.020202 -0.957978 0.274150 -1.371446 0.561352 0.744346 0.742533 0.857360 0.284868 -0.116559 -0.368324 0.524159 -0.635828 0.314955 0.292951 0.337342 -1.110953 -0.561593 0.147711 -0.019735 1.002779 -0.366362 1.396230 -0.029440 0.930178 0.101398 -0.955627 -0.402899 -0.418020 1.392834 -0.345574 0.702741 0.274896 -0.046878 0.136802 -0.724267 -0.204036 -1.103440 0.133866 0.008743 -0.592797 -0.037903 -0.856045 0.157830 0.085161 -0.789565 0.405169 -0.807628 0.564473 0.013319 0.129488 -0.468408 -1.358903 0.328916 0.394682 0.365533 0.543863 0.599048 0.277434 -0.409973 -0.656105 -0.648001 0.722078 0.672469 0.263700 0.383156 -0.877050 -0.223729 0.227893 -0.288875 0.266613 0.601367 -1.150781 0.177606 -0.129250 -0.394831 -0.614013 -1.054797 0.222912 -0.624757 0.514354 0.536206 -0.359239 0.494387 0.261259 0.481483 -0.315526 -0.914908 0.340602 -0.535602 0.349299 1.571311 -0.648026 -0.674348 -0.501741 -0.112879 -0.425658 0.937432 -0.039853 0.393552 1.021336 0.786342 0.814668 -1.066606 -0.401061 0.834327 1.013566 0.671439 0.445462 -1.043827 -0.328184 0.200994 -0.700140 -1.967438 -0.615005 0.446164 1.191766 -0.111560 -1.006692 0.498874 -0.421568 1.446242 0.745562 0.310887 0.269317 0.235464 -1.125807 0.411980 1.689729 -0.305732 0.746297 -0.538246 -0.963781 0.731213 -0.063725 0.578834 0.090147 -0.097143 0.077916 -0.804651 0.232144 0.998254 0.333051 0.185988 -0.214565 0.470325 -0.922446 -1.849222 -2.220584 -0.143577 0.843483 0.598951 2.405851 -1.142922 -1.207208 -0.372712 1.287869 -0.432663 -0.593696 0.510094 -1.078031 0.729405 -1.971891 -1.900719 2.517663 2.014865 0.813256 -0.036427 1.483313 0.071852 -1.164840 -0.717037 -0.618138 0.434531 0.655485 -1.433332 -0.116453 0.122556 -1.445698 -0.566953 0.015737 0.352753 0.361259 0.126650 0.733110 -0.394894 -0.686252 -0.620570 0.811807 -0.559236 -0.181069 -0.010096 0.242226 0.098242 0.844919 -0.811004 -0.442230 0.141472 -0.944334 0.077773 0.254424 0.702138 0.225035 1.872434 1.890817 -0.164326 1.665045 -0.034710 -0.828805 2.324528 -0.763166 0.090780 -0.081283 0.518718 0.312130 0.342690 0.797383 -0.619037 -0.531829 -1.157180 -0.110842 0.035709 0.639221 -1.477844 -1.393855 -1.568504 -0.238377 -0.075778 0.987807 0.139633 2.444999 -0.642483 0.257348 -3.037963 0.042255 0.962412 -0.047518 0.835220 0.428765 -0.987623 -1.777101 -0.057638 -0.986146 -0.786787 -0.364010 -1.156124 -0.682779 -1.059590 1.297691 -0.835956 0.207161 1.525943 -0.078729 1.042148 -0.283361 -0.029462 -0.427372 -0.142359 0.482295 0.128602 -0.865253 1.010566 0.124700 3.189281 -0.143868 0.670322 -0.672641 0.950863 -0.484537 -1.384185 -0.493497 1.178712 1.340732 0.411832 -0.197972 0.041170 -0.723814 0.882332 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.770253 0.251554 2.251650 2.539245 -2.025703 -2.539033 -0.597663 -2.348724 1.556786 0.565703 2.051567 0.486525 1.535136 -1.126752 -0.154977 -0.771485 1.560280 0.301945 -0.390551 -1.020715 -1.106270 2.784003 0.843543 -2.086918 0.544289 -1.047122 2.154319 1.119176 0.820113 2.095423 0.400227 0.197818 -0.620600 0.953090 -0.938821 -0.058711 -0.919836 1.002050 -1.113995 -0.724954 1.333021 -0.868980 2.321928 0.161079 1.171803 0.282161 1.294655 -0.090823 -1.934358 -0.978745 -0.898259 0.587528 -1.152742 1.437732 -0.730309 -0.094273 1.235858 -0.264353 0.120734 -2.233636 0.484343 -0.583685 -1.313697 -0.339232 -1.757246 0.063477 -0.740757 -1.657461 0.216663 -1.257470 0.838384 0.063016 -0.283587 -1.383900 -2.442310 0.137721 0.692671 0.467352 1.241246 1.570513 -0.422314 -0.957838 -1.684949 -1.289134 1.212672 -0.204628 0.579009 1.098028 -1.251839 -1.008378 0.601310 0.487556 0.530238 0.943436 -1.148206 0.730294 -0.118895 -0.653349 -0.622073 -1.760422 0.464598 -1.062956 0.584386 1.005240 -1.243800 0.406251 -0.206595 0.414674 -0.523520 -1.808779 0.313426 -1.289935 -0.361685 1.872479 -0.604325 -1.296427 -0.778122 -0.031457 0.494925 1.352070 0.178556 0.374410 1.684188 1.018511 1.116017 -1.856931 -0.035994 0.704573 0.864399 0.774876 0.596983 -0.476537 -1.029490 0.495696 -1.171542 -2.955508 -0.875977 1.248001 1.917583 -0.009650 -1.683812 1.316672 -1.174350 1.213435 1.571113 0.984709 0.855514 0.437458 -1.511196 0.640125 2.296261 -0.700106 0.951379 -0.571988 -1.998875 2.627268 -0.054085 0.738252 -0.299404 -0.514498 -0.005307 -1.009012 0.703345 2.061371 -0.086999 0.229049 0.353037 0.481769 -0.794640 -2.443203 -3.072475 -0.011788 2.278672 2.178534 3.410357 -1.948645 -0.206057 0.005822 0.964118 -0.365997 -1.095778 0.454543 -0.858865 1.130699 -4.790351 -2.744839 3.378371 1.734476 0.853893 0.210289 1.099659 0.244842 -0.104538 -1.238511 -1.596526 0.960526 0.962513 -0.549259 0.028872 0.386847 -2.287310 -0.540749 0.588014 0.372593 1.028529 -1.965564 0.266319 -1.618809 -1.096693 -1.479158 1.092769 -1.521258 -0.314862 0.001175 -0.255708 0.236789 0.812520 0.277466 -0.632591 -0.766358 -0.892027 -0.490566 -0.395559 1.316885 0.256941 2.369715 3.113680 -1.189963 0.418138 0.156296 -1.435690 4.432962 -1.802331 0.127575 0.010647 2.037791 1.001401 0.747771 1.988564 -0.833809 -0.175992 -2.054660 -0.055185 1.118900 0.914446 -3.551010 -0.928560 -3.134620 0.050407 -0.442677 2.568589 -0.396483 3.542025 -1.300929 0.346579 -3.529536 0.144120 1.370479 0.015078 1.641232 0.726300 -1.610262 -1.673892 -0.618993 -1.662070 1.186051 -0.296822 -0.763416 -1.248693 -0.071775 0.173569 -1.326729 0.692846 1.762340 -1.325142 1.510620 -0.437859 -0.043905 -0.667023 -0.377188 0.674123 0.669498 -1.144133 2.053682 0.191811 3.635592 0.253476 1.379114 -1.074271 1.347705 -0.926812 -2.195149 -1.206380 2.085766 1.885552 0.528894 0.752222 0.594856 -0.160831 1.594849 -PE-benchmarks/quicksort-for-linked-list.cpp__main = -0.023937 1.211338 5.570090 3.969523 -3.703850 -5.882228 -1.245381 -7.232067 4.167575 1.399620 4.396010 0.838594 3.528956 -2.220540 -0.401123 0.191106 3.543086 0.925190 -0.635084 -2.481765 -1.554685 6.681620 0.302289 -2.941942 1.259397 -3.859546 3.145345 2.834091 3.471779 3.786910 1.205045 0.078579 -1.332317 1.969082 -2.087730 -0.127160 -0.947663 1.456325 -4.393719 -1.105244 1.123599 -1.077660 4.923707 0.211440 3.217027 -0.235845 3.031010 0.361312 -2.721938 -1.603079 -2.203791 3.413825 -1.246766 3.080958 -1.066007 -0.747886 1.228244 -0.625676 0.453850 -2.280346 0.517995 -0.433463 -2.649193 -0.573715 -3.576842 0.111830 -1.727465 -3.397489 0.226305 -2.445106 1.874018 -0.089534 -0.624419 -2.882215 -7.035793 0.342377 1.410070 1.286629 2.733245 2.949464 0.131443 -1.980949 -3.435554 -2.988632 3.197460 2.073537 0.804194 2.248025 -3.875886 -2.589799 0.385241 0.356874 1.630752 1.985301 -3.697912 1.382434 -1.356699 -1.576188 -1.773995 -4.654752 1.084324 -1.984129 1.419844 -0.071379 -0.773783 1.302094 0.463279 0.910833 -0.740308 -3.206715 0.865232 -1.927183 -0.584040 5.773428 -0.968571 -3.005158 -2.234322 -0.175041 -0.792180 2.886064 0.449180 0.737227 3.732072 2.477091 2.710439 -3.943176 -0.713860 2.302970 1.643595 2.138492 1.548763 -1.718077 -2.054660 1.090901 -2.404912 -7.009636 -1.857025 2.391121 4.146660 -0.943718 -1.854141 1.265124 -2.352059 3.263940 3.080072 0.866274 1.855377 0.671219 -3.307258 1.704361 5.726942 -1.458366 2.268583 -2.340871 -3.065643 4.084302 -0.414033 1.911584 -0.908789 -1.248194 -0.328266 -1.710597 1.443025 4.351073 -0.268105 0.234401 0.082900 1.215882 -2.690202 -5.191919 -7.187792 -0.493593 4.129751 3.381067 6.942427 -3.691544 -1.846253 -0.588849 2.604647 -0.731760 -2.095391 2.328943 -3.341757 2.612539 -8.417107 -5.757033 7.605835 5.702913 2.400825 -0.430225 3.033531 0.964520 -2.369233 -3.360309 -2.429463 1.740766 2.030056 -4.302424 -0.803109 0.848230 -4.986333 -1.046107 0.786059 0.953860 1.837127 -1.456147 2.849190 -3.115970 -2.678457 -3.488626 3.300718 -2.624169 -0.298739 0.088532 -0.108204 -0.073429 2.546348 -0.918096 -1.339236 0.005205 -2.134760 -0.148828 -0.513581 2.487678 0.239456 5.008796 6.392230 -1.336428 3.712097 0.145321 -3.392988 8.569806 -3.361753 0.762286 0.023051 2.562444 0.681072 1.989926 3.294240 -1.951344 -1.158365 -4.413400 -0.672905 1.533693 2.209531 -4.672094 -3.162904 -6.062559 -0.247268 -1.049321 5.074251 -0.422014 7.555212 -3.270108 1.378371 -8.270598 0.587682 2.425290 0.000319 3.770670 1.583746 -3.783186 -3.181583 -0.732297 -3.997868 -0.464342 -0.475323 -2.938251 -2.895701 -1.648436 2.043579 -3.251709 0.993669 4.009230 -2.228633 3.980780 -2.141396 -0.037762 -1.956796 -0.103856 2.703723 0.816778 -2.697639 3.167376 0.307449 9.072939 0.347096 3.144760 -2.089263 2.205516 -1.515195 -5.386926 -2.698470 4.791230 4.199675 1.434108 0.398892 0.359535 -0.376078 3.263014 -PE-benchmarks/quicksort-for-linked-list.cpp___GLOBAL__sub_I_quicksort_for_linked_list.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/mergeSort_LinkedList.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -1.896597 0.132688 6.427716 3.690006 -3.086003 -4.648236 -1.848977 -6.875504 4.232827 2.398592 5.977754 0.181026 3.625654 -2.166154 -0.239381 -1.237529 3.041356 -0.949452 -0.873821 -2.377588 -0.729473 6.102403 1.158587 -3.604713 1.195699 -5.111460 3.578950 2.463594 1.561477 4.023625 0.913027 0.588797 -1.081929 2.311794 -2.509492 0.973277 0.394126 1.860565 -2.044555 -1.799815 2.598313 0.576962 4.244739 -0.143426 4.493693 0.899331 1.960734 -0.485435 -3.742379 -2.547047 -0.455806 2.339815 -2.067314 2.631642 -0.556497 0.586068 1.220762 -2.650415 -0.147295 -4.979616 1.584044 0.432470 -2.529744 -0.343955 -2.839493 0.507931 0.292877 -2.677805 1.000427 -4.044953 1.848399 -0.465341 -0.812757 -2.362198 -4.569474 0.959863 1.861162 0.163918 2.362084 1.863752 -1.271362 -1.897266 -2.899110 -3.045145 2.971351 2.295077 1.049756 2.444026 -2.682158 -1.374078 0.965564 0.124958 0.904125 3.278817 -3.407509 0.216804 0.880687 -2.196157 -2.004829 -2.426549 1.309350 -2.861449 1.652244 2.968428 -2.642879 1.370217 -0.070692 1.450988 -1.564027 -3.046945 0.818824 -2.753189 1.038402 4.616617 -2.064633 -2.914636 -2.731912 -0.585819 0.933007 3.348700 -0.391075 0.746284 5.081753 2.494585 2.646656 -4.638295 -0.761862 2.488684 2.816751 1.823587 1.133881 -3.447382 -1.652578 0.868964 -3.303074 -6.779845 -2.650951 0.855086 4.475484 -1.055082 -4.382952 3.399914 -2.035618 3.959907 3.900800 1.467160 1.041282 1.259477 -4.104247 1.239705 5.742382 -1.577528 2.439813 -2.232354 -4.154612 3.919795 -0.447917 2.179259 0.542062 -0.793448 -0.342842 -2.868967 1.960501 4.699475 0.177466 1.913435 -0.910975 1.485086 -1.233968 -5.241384 -8.193732 -1.220422 3.524269 3.660095 8.479032 -4.430886 -2.306623 -1.163909 4.239004 -0.969762 -2.540890 1.520407 -2.675631 2.465874 -8.362740 -6.334767 7.805817 6.582973 3.426494 0.337962 4.416497 -0.115267 -1.348756 -1.686850 -2.335139 2.599130 2.610340 -2.152322 0.675382 0.662936 -4.839463 -2.235335 -0.317056 1.002931 1.060197 -2.559197 1.513193 -1.922069 -2.530484 -2.716905 2.282530 -2.802643 -1.001270 -0.804040 0.260454 0.133870 2.255146 -1.583101 -1.630931 -0.270921 -2.560320 -0.271645 0.777033 2.665649 1.070646 4.974918 6.396285 -2.394054 2.982324 -0.530479 -2.200880 8.073477 -3.228882 -0.024841 0.213425 3.048110 1.849034 1.635203 3.351687 -1.931322 -0.303623 -4.507208 0.423507 1.417866 2.263098 -6.109774 -3.310747 -6.394426 -0.362794 -0.875068 5.667411 -0.110263 8.768832 -1.906692 1.307519 -9.113271 0.159870 3.098387 -0.168476 2.524422 1.727868 -3.816622 -6.153221 -0.482422 -3.979742 -0.854621 -0.469637 -2.647439 -3.303007 -2.447593 3.245025 -3.011074 1.289461 4.592331 -0.814779 3.216050 -0.508278 -0.182881 -1.798317 -0.708648 1.245954 1.019516 -2.662875 3.474855 0.414828 9.086107 -0.898751 3.867491 -2.352540 3.971679 -2.125759 -4.881751 -2.488282 4.677243 4.635254 1.448398 0.338054 0.121062 -1.402585 3.942180 -PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -1.639816 -0.237492 2.931109 3.548785 -3.131864 -4.221907 -0.887433 -3.352301 2.488342 0.674596 3.919739 0.263425 2.438068 -1.995448 -0.025905 -0.878115 1.862362 0.709066 -0.763981 -1.420757 -1.895803 4.213369 0.940746 -3.148544 0.733494 -1.192293 2.454615 2.189702 0.392537 2.757362 0.573432 0.274436 -0.823643 1.279749 -1.375731 0.531254 -1.025279 1.101544 -1.231961 -1.493970 1.647388 -1.571749 3.187115 -0.121254 2.689972 0.733607 2.563342 0.021582 -3.335108 -1.229471 -1.267165 1.544642 -1.345419 1.640965 -0.472313 0.243138 1.934592 -1.143383 -0.014538 -4.491020 0.700852 -0.925627 -2.117819 -0.377492 -2.394232 0.119797 -0.563621 -2.601523 0.662848 -2.386904 0.981496 -0.288070 -0.629265 -1.760090 -2.606896 0.198489 1.072106 0.594228 1.432921 1.957938 -0.996689 -1.215801 -2.298212 -1.388195 1.322483 -0.834185 1.015061 1.412425 -2.243612 -1.025837 0.980680 0.234096 0.590918 1.236415 -1.777854 0.978836 1.188433 -1.044353 -1.505202 -2.205902 0.732263 -1.179579 0.929479 2.255541 -1.801084 0.656701 -0.794135 0.635858 -1.262282 -2.599252 0.660017 -2.276801 0.220167 2.173425 -1.421104 -1.618165 -0.875882 -0.264578 0.528117 2.461609 0.140941 0.398078 2.319815 1.434382 1.234265 -2.394310 -0.315582 1.002126 2.287226 1.193340 0.923870 -1.135061 -1.184055 0.551704 -2.198340 -4.081688 -1.080682 1.895708 2.540185 0.174614 -3.411654 2.579672 -1.352978 2.680484 2.324509 1.991701 0.696746 0.418943 -2.789362 0.631946 3.298533 -0.874188 1.793634 -0.513394 -3.598176 3.728074 0.163325 0.765806 0.361890 -0.916592 -0.092200 -1.248659 0.662867 2.366628 0.749181 -0.139931 0.734748 0.764353 -1.653863 -3.838489 -5.008964 0.080989 2.886528 3.487637 6.377842 -3.129571 -1.266749 -0.342119 1.780177 -1.012345 -1.820724 0.439327 -1.144752 1.441153 -7.367651 -4.606633 5.981162 2.772191 2.031211 0.317816 2.845791 -0.172749 -0.292139 -1.683595 -2.198680 1.169726 1.390894 -1.245894 0.790393 0.401909 -3.678103 -0.745930 0.053827 0.755177 1.309110 -2.204840 0.653854 -2.617460 -1.362645 -1.668042 0.817689 -1.615231 -0.588778 0.066008 -0.168619 0.421537 1.004973 -0.010790 -1.134102 -1.538875 -2.144627 -0.459614 -0.181768 1.910178 1.061186 5.066831 5.152309 -1.412309 1.766946 0.022943 -1.646900 6.450897 -2.465340 0.343697 0.007547 3.097413 1.955005 0.626546 3.024802 -1.059956 -0.532162 -2.470622 0.316433 1.185585 1.234354 -5.918202 -2.045579 -4.981836 -0.090112 -0.420134 3.492131 -0.641194 5.764252 -1.158308 0.379868 -6.464101 0.086848 2.431492 -0.165285 1.973765 0.973402 -2.603812 -3.065735 -0.470072 -2.137911 0.766695 -0.275740 -1.297499 -1.578599 -0.724611 0.539170 -2.225660 0.651671 3.214845 -1.681043 1.866303 0.186599 -0.050570 -0.297459 -0.792055 1.291302 0.686049 -1.545877 3.087789 0.437495 6.360405 0.464855 1.827728 -1.312757 3.080598 -1.308208 -3.116930 -1.516222 2.426762 3.197031 0.636065 0.795330 1.301215 -0.560626 2.107334 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -3.396060 0.184932 8.229207 7.041862 -5.333908 -6.984289 -2.578127 -8.198949 5.403565 2.526017 7.826578 0.816448 4.739338 -3.451914 -0.012610 -2.285815 4.862734 -0.818841 -1.721550 -3.398013 -1.709924 8.347719 2.768582 -6.683931 1.684686 -5.220241 5.074714 3.620598 1.567261 5.407503 1.377799 0.943919 -1.612439 3.222627 -3.788998 0.977340 -0.542314 2.684659 -2.978541 -3.083061 4.312602 0.110582 6.452387 -0.185220 5.404652 0.946850 3.858040 -0.659345 -6.436444 -3.611413 -1.597811 3.624400 -3.358275 4.047226 -0.733184 0.970231 3.112124 -3.407479 -0.302898 -7.932895 1.949356 0.127120 -3.823646 -0.943165 -4.094254 0.717586 0.421757 -3.934182 1.660388 -4.811602 2.809938 -0.616215 -1.074199 -3.676693 -5.692297 1.098994 2.335167 0.871189 3.534654 3.726734 -1.484208 -2.951956 -4.012202 -3.985560 4.069339 0.703089 1.796553 3.669145 -3.459638 -1.893260 1.704704 0.274881 0.972105 3.690555 -4.555342 0.816096 1.850979 -2.966379 -2.937878 -2.903297 1.639957 -3.817067 1.879475 4.715185 -3.992342 1.660177 -1.192682 1.578580 -2.633352 -4.839813 1.079116 -3.899130 0.078798 5.758537 -3.281458 -3.754354 -2.787910 -0.289745 1.421985 4.747172 -0.180638 1.574198 6.326756 3.672867 3.357401 -6.166285 -0.340405 2.401808 4.307916 2.581223 1.884299 -3.684447 -2.842750 1.488434 -4.269804 -9.152214 -3.550227 2.725834 6.761059 0.533949 -7.093850 4.704087 -2.771817 5.344773 4.718326 2.690700 1.624138 1.517936 -5.501445 1.896492 7.486522 -2.447772 3.697672 -1.866454 -5.883713 6.476977 -0.769993 2.711100 0.779114 -1.456051 -0.209878 -3.826165 2.164519 6.526947 0.705858 1.959962 -0.701332 1.986151 -1.653738 -8.001805 -11.206899 -0.948249 5.214650 5.469259 11.567633 -6.142989 -2.726907 -1.262458 5.058708 -2.353586 -3.941931 1.477372 -3.433417 3.534599 -12.443832 -8.651632 11.332298 7.837431 3.678067 1.010747 5.860470 0.079596 -1.406593 -2.497713 -3.898744 3.627935 3.960162 -1.431450 1.235847 0.972632 -6.984391 -3.072138 0.312075 1.400143 1.362155 -4.866899 1.248329 -3.121492 -3.775110 -3.256490 2.535094 -4.300248 -1.335525 -0.726141 -0.130981 0.735026 2.985499 -1.049181 -2.549710 -1.514948 -3.782578 -1.443167 -0.003116 4.644351 2.042918 7.246237 9.426224 -3.426875 4.009503 -0.237847 -3.959977 12.220199 -4.997745 -0.034499 -0.230174 5.474697 3.235147 1.966228 5.318880 -2.610775 -0.364010 -6.437388 0.664982 2.613575 3.285355 -10.618583 -3.935443 -9.351137 -0.497337 -0.814418 7.626027 -1.176871 11.818557 -3.437909 0.961446 -12.879997 0.283592 4.671436 -0.127873 3.427397 2.482167 -5.162403 -8.829132 -1.150447 -5.364052 1.044463 -0.713432 -3.117232 -4.288491 -2.701266 3.986653 -4.637104 2.134538 6.588477 -2.011476 4.479964 -0.126558 -0.364874 -1.938787 -1.443504 1.224843 1.944935 -3.792871 6.150597 0.527177 12.637243 -0.633506 5.105066 -3.742381 5.122322 -2.913915 -6.556639 -3.487810 6.478737 6.786787 1.443762 1.606535 1.139904 -2.059818 5.674856 -PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.353081 0.094366 1.589475 1.061232 -0.981606 -1.374069 -0.452416 -1.881164 1.194884 0.327295 1.554899 -0.097402 0.887098 -0.743398 -0.087613 -0.157990 0.633752 0.053836 -0.217193 -0.531835 -0.267741 1.662130 0.103520 -1.063303 0.270807 -1.155505 0.589616 0.745667 0.518695 0.854957 0.228592 -0.045060 -0.352208 0.537601 -0.645022 0.218689 0.269310 0.320061 -0.912418 -0.539917 0.252665 0.033252 0.960564 -0.302471 1.263038 0.141416 0.788410 0.074329 -1.033507 -0.397778 -0.301621 1.170101 -0.346845 0.670678 0.251494 0.067304 0.222395 -0.735577 -0.143090 -1.270984 0.233135 0.030786 -0.530599 -0.059216 -0.801683 0.128027 0.129075 -0.807543 0.421059 -0.795443 0.479457 -0.059911 0.063152 -0.484758 -1.076045 0.318455 0.414061 0.342532 0.524048 0.518199 0.168067 -0.390599 -0.598496 -0.597090 0.555115 0.441130 0.302882 0.432205 -0.746307 -0.247749 0.327125 -0.241708 0.191259 0.595438 -0.958989 0.192757 -0.013192 -0.387684 -0.610549 -0.906889 0.197990 -0.575277 0.467850 0.661368 -0.465190 0.449094 0.123708 0.471276 -0.326386 -0.845220 0.327732 -0.566573 0.306773 1.332009 -0.620949 -0.653706 -0.405492 -0.128202 -0.263876 0.952873 -0.093745 0.335084 0.917146 0.737732 0.674165 -1.007464 -0.303038 0.662416 0.943834 0.622303 0.475153 -0.979447 -0.336677 0.174616 -0.759052 -1.771125 -0.507063 0.376171 1.129419 -0.062625 -1.122701 0.621454 -0.456745 1.328410 0.697049 0.451894 0.214567 0.159101 -1.101677 0.355714 1.498310 -0.338094 0.739493 -0.403729 -1.024292 0.732997 0.011062 0.516816 0.110623 -0.173701 0.105722 -0.721255 0.213622 0.967636 0.378482 0.186665 -0.117763 0.383466 -0.811897 -1.737176 -2.068074 -0.114702 0.792053 0.632655 2.335687 -1.098108 -1.103822 -0.377741 1.235818 -0.482086 -0.584660 0.391704 -0.864815 0.663386 -1.961509 -1.804260 2.344510 1.807586 0.730340 -0.023377 1.386145 -0.025077 -0.896953 -0.644099 -0.585053 0.403867 0.578588 -1.078942 -0.034547 0.119954 -1.341663 -0.468218 0.019900 0.346884 0.362760 -0.064441 0.509412 -0.382597 -0.659439 -0.601240 0.606784 -0.553804 -0.166886 0.020757 0.188953 0.123799 0.713052 -0.684055 -0.532311 0.037641 -0.899655 0.015081 0.193984 0.732656 0.302590 1.796879 1.729589 -0.191251 1.430917 0.018854 -0.753332 2.314080 -0.764088 0.113140 -0.048867 0.633668 0.353878 0.303392 0.807337 -0.544850 -0.429312 -1.105300 -0.081319 0.053762 0.587173 -1.646149 -1.240831 -1.506904 -0.179261 -0.076828 0.974283 0.036760 2.336106 -0.491368 0.195581 -2.809564 0.014849 0.931988 -0.087987 0.734481 0.458564 -0.970112 -1.815663 -0.037818 -0.913062 -0.568708 -0.304461 -0.986665 -0.622737 -0.842817 1.080621 -0.743178 0.224304 1.481702 -0.110120 0.901436 -0.128813 -0.052960 -0.307420 -0.245841 0.434526 0.131993 -0.786967 1.008387 0.153587 2.918358 -0.088727 0.674919 -0.635563 0.878993 -0.395033 -1.221310 -0.514970 1.092150 1.263122 0.409240 -0.092721 0.136813 -0.662105 0.851596 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.437576 0.303060 1.557264 1.386619 -1.408461 -1.852381 -0.383762 -1.955717 1.139571 0.482699 1.460722 0.414570 1.260212 -0.740706 -0.094230 -0.380700 1.229821 0.164306 0.086254 -0.691370 -0.785129 2.210758 0.428288 -0.779020 0.390328 -0.850204 1.553299 0.527318 0.924833 1.662188 0.389817 0.019933 -0.655247 0.519339 -0.229810 0.031285 -0.641918 0.727913 -0.960804 -0.247256 0.601978 -1.106059 1.685994 0.263695 0.769656 -0.023319 0.717219 0.046868 -1.087369 -0.745045 -0.757452 0.276732 -0.825235 0.993159 -0.440837 -0.494877 0.756785 0.328062 0.158114 -1.101188 0.107073 -0.915660 -0.845234 -0.093041 -1.311835 0.089185 -1.254734 -1.023588 -0.127132 -0.843989 0.626366 0.190632 0.053364 -0.611134 -2.308758 0.060430 0.358049 0.333156 0.913637 1.234959 -0.342007 -0.575012 -1.381987 -1.127986 0.959024 0.195265 0.254065 0.522075 -1.321043 -0.643931 0.200189 0.408764 0.521003 0.606554 -0.970843 0.639047 -0.453992 -0.428950 -0.202929 -1.971754 0.281394 -0.765923 0.348606 0.284488 -0.662035 -0.047047 -0.345183 0.229320 -0.305610 -1.338165 0.531232 -0.787454 -0.579944 1.540744 -0.381527 -0.792841 -0.812206 -0.014439 0.410574 0.853377 0.326862 0.297295 0.899299 0.714257 0.927636 -1.176301 -0.124495 0.741878 0.499069 0.345441 0.320817 -0.130072 -0.759083 0.525995 -0.810596 -2.109713 -0.746620 1.124069 1.281954 -0.099230 -0.551905 0.464131 -0.950065 0.656607 1.291235 0.583035 0.709906 0.340402 -0.985913 0.532912 1.592300 -0.515521 0.669369 -0.383906 -1.184064 1.974650 -0.229506 0.561967 -0.463245 -0.123113 -0.159570 -0.616545 0.346168 1.437638 -0.103669 0.186696 0.169903 0.339846 -0.677065 -1.581594 -2.157794 0.013472 2.037652 1.550622 1.891851 -1.283072 0.092220 0.253347 0.615316 0.171734 -0.938360 0.500324 -0.568369 0.743589 -3.561320 -1.823616 2.376592 1.300372 0.553982 -0.020976 0.319864 0.589155 -0.511731 -1.166767 -1.316740 0.716077 0.144910 -1.061179 -0.371007 0.376069 -1.621828 -0.229956 0.423712 0.229167 1.075346 -1.165311 0.557669 -1.038766 -0.588140 -1.087463 1.178649 -0.915709 -0.479570 -0.010168 -0.252290 0.227327 0.594776 0.316403 -0.139130 -0.233163 -0.665057 -0.346651 -0.234432 0.712525 -0.063476 1.831826 2.131598 -0.695626 -0.160484 0.016039 -1.138069 2.968419 -1.302144 0.127050 -0.076885 1.152933 0.593743 0.630738 1.432470 -0.579331 -0.600652 -1.416888 -0.247565 0.705691 0.723243 -1.996515 -1.028529 -2.257070 0.281287 -0.320725 1.950342 -0.133231 2.463458 -1.049666 0.372800 -2.173983 0.191147 0.864923 -0.001722 1.434174 0.332983 -1.020697 -0.344563 -0.549519 -1.359994 0.799759 -0.148592 -0.543193 -0.787155 -0.088529 0.108575 -0.875253 0.354475 0.790436 -1.033088 1.392705 -0.202404 -0.113486 -0.889433 0.131762 0.764113 0.343765 -0.776602 1.509893 0.185966 2.416028 0.144976 0.692083 -0.538820 0.775666 -0.697273 -1.665307 -0.777558 1.522090 1.418722 0.491897 0.300561 0.337468 0.124562 0.907573 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.255972 1.689429 5.279426 3.183268 -3.797781 -5.821051 -1.173632 -7.202012 3.566621 1.379370 4.168674 0.664828 3.398599 -1.524400 -0.309442 0.415629 3.615005 0.978251 -0.210293 -2.498759 -2.113606 6.046235 -0.037312 -1.775575 1.321357 -3.357086 3.236479 2.530974 3.401134 3.555364 1.325658 -0.029689 -1.626433 1.797630 -1.422550 -0.199189 -0.958816 1.499070 -4.230984 -0.367687 0.768354 -1.805741 4.849494 0.464132 2.691266 0.062618 2.554200 0.639870 -2.514900 -1.525113 -2.100337 2.869410 -1.197786 2.896542 -1.006822 -1.242128 1.129767 -0.062329 0.666948 -1.241672 0.175236 -1.248203 -2.470397 -0.313071 -3.546629 0.036750 -2.642402 -3.360885 -0.048380 -2.084151 1.710005 -0.132173 -0.684975 -2.137886 -7.115383 0.215948 1.454347 1.273013 2.671003 2.668234 0.217038 -1.647599 -3.703974 -3.189166 3.029598 2.200716 0.913706 1.737782 -4.215561 -2.445012 0.329685 0.519588 1.837911 1.978874 -3.458028 1.479243 -1.983533 -1.646418 -2.031756 -5.664602 1.037869 -1.804446 1.504315 -0.691811 -0.875779 0.729071 0.020619 0.759406 -0.490791 -3.226974 0.847032 -1.925540 -0.660395 5.676246 -0.720571 -2.886630 -2.423373 -0.416110 -0.527486 2.479723 0.882768 0.414489 3.434914 2.351863 2.635115 -3.602508 -0.955196 1.920844 1.080963 1.861300 1.571164 -1.354810 -2.127681 1.235580 -2.530716 -6.645382 -1.724639 2.288631 3.779720 -1.219924 -0.883210 0.733124 -2.627863 2.542472 3.033855 1.053741 1.868551 0.472457 -2.910850 1.575569 5.066768 -1.491259 2.231812 -2.156155 -2.687200 3.929710 -0.319142 1.712971 -0.890668 -1.157331 -0.735433 -1.372239 1.087160 4.144430 -0.258960 0.101560 0.357988 1.054643 -2.799095 -4.476910 -6.603029 -0.115274 4.546406 3.169885 5.754218 -3.574282 -1.318295 -0.126602 2.437973 -0.206678 -2.265126 2.369566 -2.831231 2.397010 -7.837765 -5.208632 6.749328 5.137838 2.082994 -0.754266 2.142308 1.146800 -2.866523 -3.705916 -2.676149 1.770413 1.080894 -4.708045 -1.354948 1.015570 -4.683803 -0.294928 0.695083 1.078349 2.371189 -1.327204 2.973924 -2.978760 -2.395381 -3.506169 3.437330 -2.204167 -0.466854 0.264516 -0.334085 0.012203 2.328030 -0.567221 -1.179131 0.037325 -2.122165 -0.090845 -0.427148 2.215326 -0.137130 5.310635 5.668659 -1.231686 2.779646 0.009030 -3.273932 7.792096 -3.206618 1.002202 -0.001348 2.428059 0.264833 2.000525 3.547659 -1.787779 -1.875545 -4.137768 -1.090091 1.349699 2.068659 -3.694444 -3.054211 -6.097852 0.126087 -1.068437 5.275038 -0.349655 6.896325 -2.880844 1.571572 -7.000003 0.664621 1.864201 -0.182290 3.895312 1.307484 -3.594989 -1.677421 -0.792360 -4.198642 -0.574838 -0.125512 -2.353258 -2.754265 -1.144048 1.328544 -2.689015 0.622484 3.095083 -2.364463 3.853406 -1.703473 -0.188143 -2.037183 0.197922 3.622306 0.452535 -2.509264 3.147477 0.550120 8.547567 0.721650 2.740605 -1.544524 1.303625 -0.980893 -5.022652 -2.695349 4.582306 3.986080 1.632790 0.139388 0.416254 0.198507 2.848870 -PE-benchmarks/mergeSort_LinkedList.cpp___GLOBAL__sub_I_mergeSort_LinkedList.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/sudoku.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.951171 2.734150 9.697434 5.964497 -4.812247 -5.378523 -3.164868 -6.493856 3.520075 1.757802 5.575747 -0.703982 2.115745 1.692265 -0.482516 -2.943122 2.694265 -0.565625 -1.298173 -2.784566 -3.061127 5.689185 3.191281 -6.974300 1.294808 -7.233163 5.352809 2.883382 1.216799 4.428772 0.562492 0.932912 -1.067463 4.063917 -4.621994 -1.351509 0.194838 1.956086 -2.007850 -1.044146 4.358939 3.501582 4.404527 0.764578 3.486767 4.486110 1.809377 -0.254585 -5.189439 -1.884225 -1.174432 4.102899 -2.312223 3.672455 0.626210 3.699705 1.621248 -6.017748 -0.336429 -6.299758 1.937948 2.153183 -2.886928 -0.145909 -4.774093 0.471479 -0.219192 -3.487031 2.395810 -2.855287 2.925029 -1.410501 -0.655455 -4.282069 -3.642989 2.310953 0.741267 1.903163 2.951600 0.901114 -2.194268 0.373781 -3.459219 -4.310520 0.839173 1.066331 0.918587 1.195344 0.630891 -3.316944 1.404586 -0.950751 -1.097990 5.689816 -3.367192 2.797597 -0.879981 -2.135539 -3.985050 -2.533896 0.265411 -4.217120 2.514981 4.756056 -4.063378 0.627875 0.951465 1.639083 0.420284 -4.707348 0.658559 -2.273997 1.339380 5.108401 -2.260521 -3.020564 -0.346176 -1.504773 0.278341 5.683789 -0.403280 0.718029 5.871224 3.793443 1.874348 -4.124253 0.199190 1.226770 2.140069 2.537463 3.857521 -6.073452 -2.540709 0.305697 -1.612570 -7.375166 -0.097982 1.553564 4.934018 -0.124936 -6.881599 3.604140 -2.819301 4.055765 2.821908 4.254679 1.525210 -0.878110 -3.632098 1.607355 8.815866 -2.540482 3.182429 -2.771208 -6.413420 5.998711 -1.051283 4.010094 0.789763 0.173367 0.602266 -4.449482 1.459472 6.499184 0.680481 1.451463 3.858429 0.058885 -1.009330 -7.147336 -8.175506 -0.171528 2.784844 1.696630 10.596552 -5.333243 -2.481265 -2.062260 6.888183 -1.648337 -1.906311 0.688349 -1.306422 2.236113 -8.967711 -7.338747 7.430707 7.298767 0.682599 -0.983763 5.822716 -0.127585 -0.621379 -3.996665 -4.251706 3.446494 1.991570 2.865919 1.169933 0.167373 -5.396871 -0.766569 0.412290 1.728699 4.335654 -4.660535 -2.667373 -1.493218 -6.028390 -4.989692 1.701162 -4.584549 -1.301348 0.528942 0.479303 -1.227042 2.096381 -0.812359 -4.384686 0.365913 -2.759783 -0.932104 1.720583 3.592217 0.710813 6.765720 5.427585 -1.164216 3.305063 1.760423 -2.231300 14.106801 -4.138659 -0.379259 -0.011878 5.004198 -0.103042 2.061564 2.815443 -1.720267 -2.578379 -5.628966 2.855387 -0.904948 1.689991 -9.922908 -3.570514 -7.046595 -1.633663 0.228994 6.398261 0.173669 10.958301 -0.376111 0.854801 -11.025968 0.431906 5.120445 -0.752743 2.759176 3.455982 -4.919094 -9.032747 -0.467020 -3.308958 1.936450 -0.956632 -4.863034 -4.064129 -1.462774 1.939344 -2.164864 2.652241 8.003917 -1.120682 1.953518 0.209383 -1.318542 -1.292348 -3.241483 2.570088 0.834209 -3.796014 6.000898 -0.561103 11.122367 -1.424960 5.313161 -3.211797 1.607314 -0.955603 -3.732225 -2.852775 5.943947 3.506829 2.151521 0.994374 0.629695 -2.797390 3.612700 -PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -1.508639 1.122556 5.330520 4.378600 -3.721928 -3.818507 -1.578340 -3.346078 1.953075 0.717339 3.480516 -0.435240 1.353710 0.197539 -0.082875 -1.934223 1.924803 0.281681 -1.252974 -1.789494 -2.074046 2.840219 1.985838 -5.030704 0.993817 -3.147895 2.898053 2.322643 0.165265 2.665524 0.397853 0.387186 -1.159415 2.129403 -2.756232 -0.722966 0.065673 0.867282 -1.504073 -1.041596 2.458451 1.234232 3.022181 -0.176511 2.140631 2.146361 1.652169 0.019858 -4.183063 -1.220762 -0.813952 2.410006 -1.311512 2.367289 0.581711 2.075570 1.185911 -3.379028 -0.233292 -4.895644 1.347486 0.739335 -1.728528 -0.354007 -2.714547 0.069169 0.194425 -2.629848 1.974232 -2.143704 1.391980 -1.028763 -0.600708 -2.556236 -1.628669 0.919927 0.974317 1.245940 1.590326 0.971849 -0.713041 -0.362746 -1.978937 -1.839023 0.175728 -0.418257 1.011429 1.100860 -0.222677 -1.602430 1.730146 -0.438035 -0.361212 2.479334 -1.973500 1.252296 -0.343284 -1.376329 -2.733960 -1.604724 0.428124 -1.909770 1.550349 3.062639 -2.928307 0.894493 0.257397 1.209436 -0.089426 -3.018937 0.205277 -1.637858 0.880030 2.793663 -1.632374 -2.104932 -0.269475 -0.727269 0.197450 3.057677 -0.611767 0.488058 3.054901 2.140509 1.356042 -2.742691 0.213273 0.289610 1.543660 1.782703 2.116145 -2.732813 -1.353726 0.329089 -1.704537 -4.492069 -0.372276 0.776220 3.358596 0.922131 -4.684670 2.059034 -1.889652 2.904800 1.258272 2.825286 0.774242 -0.235767 -2.457817 0.597733 4.519648 -1.573212 2.111182 -0.938660 -3.822727 3.040380 0.304609 2.067245 0.651714 -0.540611 0.806480 -2.324034 0.464517 3.608335 0.832914 0.329069 1.811007 0.366858 -1.184559 -4.942540 -5.053096 0.231788 1.824288 1.518048 6.355407 -3.496601 -1.790851 -1.363145 3.855622 -1.685429 -1.431300 0.234294 -0.949057 1.509378 -5.794826 -4.605313 4.852773 4.202533 0.684600 -0.144699 3.708985 -0.678367 -0.374574 -1.832532 -2.528666 1.558784 1.481329 1.649906 0.710478 0.029368 -3.460793 -0.371522 0.630459 1.124674 2.070681 -3.071342 -1.417865 -0.965826 -3.295062 -2.557702 0.792377 -2.948365 -0.283875 0.482457 0.173883 0.100920 1.236940 -0.565348 -2.786041 -0.560417 -1.803443 -0.629278 0.423113 2.641096 0.696515 4.568468 3.645909 -0.842977 2.353392 0.718336 -1.994412 8.786813 -2.672593 0.145563 -0.091695 3.315436 0.542086 0.859413 2.386485 -1.198151 -0.925740 -3.170525 0.912493 -0.074210 1.348895 -6.893629 -2.235871 -4.707380 -0.777521 -0.108643 3.388342 -0.410561 6.331533 -0.485975 0.359677 -7.045261 -0.007567 3.205412 -0.425279 1.597667 1.822625 -3.059528 -6.274991 -0.110499 -2.297606 1.749647 -0.449585 -2.401970 -2.130452 -0.593836 1.160532 -1.070418 1.495201 4.740594 -1.104822 1.348396 0.406837 -0.553049 0.155668 -2.158118 1.139526 0.781494 -2.316757 4.071837 0.271155 7.092838 0.113125 2.734468 -1.875206 1.280991 -0.430417 -2.295100 -1.938888 3.179090 2.520964 1.398812 0.645015 0.847232 -1.893046 2.340972 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.520305 2.179329 8.507919 5.636554 -3.434620 -4.459059 -2.325524 -4.915752 2.950460 0.904863 4.240906 0.134211 1.598561 1.143211 -0.188364 -1.997344 2.606860 -0.109395 -0.713697 -2.173108 -1.314670 6.073851 3.701794 -7.124536 0.774169 -6.427216 4.597578 2.577164 2.242896 4.787830 0.052547 0.385503 0.074840 3.563662 -4.420906 -1.976517 -0.521185 1.721229 -2.868206 -1.307070 3.350545 3.294769 3.903420 0.140358 2.769453 2.766026 3.022527 -0.524879 -4.272692 -0.955963 -2.531336 4.633750 -2.616159 3.559236 -0.484960 3.049987 1.503247 -4.368214 -0.770007 -6.777548 1.145596 2.835870 -2.583936 -0.722757 -4.639693 0.630482 -0.471856 -3.532318 1.820260 -0.947533 2.891640 0.423931 0.401121 -4.338778 -4.093262 2.640949 0.373319 3.054151 2.363197 0.478244 -1.808723 0.521382 -2.456605 -3.519414 1.091657 0.501201 0.848120 0.779046 0.991547 -2.677990 0.400495 -0.283151 -2.123974 4.217768 -2.360566 3.747016 -0.836758 -1.114187 -2.178111 -1.554219 -0.831118 -4.171987 1.636926 4.417805 -2.117044 1.039498 0.027584 1.937541 0.066656 -4.381938 0.867057 -1.224660 -0.611632 4.218270 -2.309753 -1.594424 0.543847 0.204854 -0.066264 5.336176 -1.360861 1.812266 4.234666 3.968459 1.242420 -3.611877 1.099452 0.928098 2.480269 2.827796 3.903996 -3.968851 -2.918369 -0.661846 -0.433189 -6.379191 0.691383 3.247944 4.376152 0.405900 -6.499756 2.546662 -2.212247 5.078625 3.225001 3.340053 1.881268 -0.578823 -3.187822 2.554514 8.393661 -2.806082 3.088404 -2.911343 -5.239395 6.247974 -1.457024 4.127513 -0.174800 0.460248 1.500894 -4.537204 1.046320 6.265185 1.642439 1.513119 3.472781 -0.455293 0.362747 -7.227424 -6.415761 -0.513895 2.067092 1.216150 10.162298 -3.764114 -2.647789 -1.714103 4.321349 -1.713164 -1.416189 0.129032 -1.888963 2.062055 -10.261930 -7.226406 7.526714 6.358984 0.002666 -0.332403 4.995270 1.556132 0.324385 -3.232747 -2.818461 3.209992 1.526126 1.962689 0.485855 0.670530 -4.641718 -1.038621 1.312354 1.056059 3.279147 -3.995401 -2.733906 -1.173204 -6.451876 -3.867858 1.703408 -5.413678 -1.779355 0.578173 0.282082 -0.043529 1.713137 -0.356173 -3.160943 1.178862 -2.844837 -1.376839 0.455161 4.164517 1.418092 4.479428 6.285968 0.076642 3.456901 2.886694 -3.023770 12.537012 -3.571630 -0.838784 0.005645 3.821458 -0.267445 2.269181 2.560440 -1.426430 -2.148666 -5.693722 3.679157 -0.089859 1.845775 -8.875558 -3.096530 -5.070536 -1.469884 1.429250 5.148959 -0.493471 9.997183 -1.194622 0.122244 -10.502081 0.208050 4.317419 0.285673 2.770335 3.587614 -4.031536 -7.884378 -0.923616 -2.266205 2.980705 -1.371953 -5.147454 -3.475323 -1.280279 1.640582 -3.155052 3.102696 6.867066 -1.252825 2.913705 0.139574 -1.280848 -1.598336 -2.648480 2.035068 1.746820 -3.389732 5.141260 -1.196887 9.940285 -1.998785 4.154354 -4.114336 1.733662 -0.808019 -2.880535 -2.152475 6.189735 3.340059 1.472814 1.582918 0.345139 -2.375779 3.422629 -PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -0.738287 1.341788 3.948167 3.113176 -2.793306 -2.920782 -1.158912 -2.655166 1.032131 0.407200 2.454623 -0.385116 0.821191 0.700001 0.028097 -1.098350 1.332424 0.398581 -0.723414 -1.342280 -1.988300 1.807699 1.480030 -3.234609 0.748031 -1.666429 2.339762 1.695908 0.298618 1.746045 0.219147 0.155432 -0.749529 1.726359 -1.963149 -0.727645 -0.373076 0.954723 -1.079882 -0.251709 1.712351 0.413507 2.219657 0.036260 1.199950 2.003689 1.382340 0.154108 -2.942301 -0.735840 -0.761104 1.855292 -1.211780 1.809188 0.014203 1.119381 0.938895 -2.150507 -0.110831 -2.874300 0.739692 0.218578 -1.393160 -0.240291 -2.169136 -0.022240 -0.188725 -2.287232 1.280461 -0.901676 1.198723 -0.623328 -0.628981 -1.598999 -1.430710 0.648930 0.796422 1.123605 1.254894 0.450217 -0.215507 -0.033811 -1.620239 -1.618525 0.327087 -0.471795 1.052680 0.522503 -0.267606 -1.215392 1.174645 -0.074290 -0.203345 2.038319 -1.246946 1.363903 -0.708168 -0.981440 -2.365954 -1.783074 0.217660 -1.537407 1.325937 1.702048 -2.040099 0.426115 -0.078639 0.848847 0.030279 -2.528406 -0.174534 -1.282388 0.474628 2.020427 -1.019586 -1.435912 0.127777 -0.627646 0.156366 2.025732 0.193369 0.191064 2.403230 1.659403 0.929249 -1.977149 -0.144864 -0.292502 0.850333 1.525068 1.771231 -1.834146 -1.284441 0.200364 -1.231323 -3.542827 0.090036 0.830321 2.274978 0.327524 -2.934503 1.435588 -1.625650 1.658180 1.017902 2.375831 0.767613 -0.355498 -1.496590 0.522411 3.299670 -1.279410 1.688979 -0.635736 -2.674343 2.537302 0.091266 1.370627 0.571947 -0.444665 0.430730 -1.716512 0.062242 2.804694 0.763517 0.266836 1.842278 0.086575 -1.053721 -3.379048 -3.330117 0.292468 1.759132 0.933067 4.258665 -2.508804 -1.111900 -0.584820 2.593130 -1.171962 -1.100989 0.068549 -0.473633 1.160116 -4.094680 -3.273498 3.132124 2.510122 0.263017 -0.217371 2.257908 -0.251137 -0.592323 -1.824480 -1.976230 1.280310 0.716529 0.823719 0.050580 0.102271 -2.559286 0.316377 0.450627 0.921209 1.590825 -2.190230 -1.040162 -0.743623 -2.604973 -1.962596 0.462225 -2.202438 -0.265683 0.519854 -0.036814 -0.002345 0.748222 -0.239435 -2.023253 -0.537931 -1.559971 -0.422682 0.282601 1.942839 0.430955 3.670012 2.422370 -0.656641 1.506595 0.689749 -1.476304 6.131585 -1.969838 0.233198 0.010311 2.846384 -0.055300 0.816214 2.116416 -0.869015 -1.175722 -2.490971 0.404636 0.129369 0.873383 -4.337741 -1.152890 -3.383933 -0.540435 0.140926 2.811428 -0.425860 4.376042 -0.172058 0.552313 -4.679924 0.085312 1.677499 -0.457301 1.471065 1.402078 -2.304111 -3.678979 -0.316066 -1.659685 1.140327 -0.225434 -1.358751 -1.615529 -0.039924 0.068653 -0.707068 0.838352 2.985051 -1.051202 0.923429 0.242399 -0.473292 0.148498 -1.470619 1.948528 0.486988 -1.830005 2.918933 0.238848 5.531357 0.377916 2.136847 -1.381270 0.018148 0.139219 -1.312749 -1.509665 2.602849 1.849671 1.118335 0.554941 0.804432 -1.014981 1.661182 -PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -0.738287 1.341788 3.948168 3.113177 -2.793307 -2.920784 -1.158912 -2.655166 1.032130 0.407200 2.454623 -0.385116 0.821191 0.700001 0.028097 -1.098350 1.332424 0.398583 -0.723414 -1.342281 -1.988302 1.807699 1.480030 -3.234609 0.748031 -1.666428 2.339763 1.695909 0.298617 1.746045 0.219147 0.155433 -0.749529 1.726359 -1.963149 -0.727645 -0.373078 0.954723 -1.079882 -0.251709 1.712351 0.413504 2.219658 0.036260 1.199950 2.003690 1.382341 0.154108 -2.942303 -0.735840 -0.761105 1.855292 -1.211779 1.809188 0.014203 1.119382 0.938896 -2.150507 -0.110831 -2.874300 0.739692 0.218576 -1.393162 -0.240290 -2.169137 -0.022240 -0.188727 -2.287233 1.280461 -0.901676 1.198723 -0.623328 -0.628981 -1.598999 -1.430711 0.648930 0.796422 1.123605 1.254894 0.450218 -0.215507 -0.033811 -1.620241 -1.618525 0.327087 -0.471796 1.052680 0.522503 -0.267608 -1.215393 1.174645 -0.074290 -0.203345 2.038319 -1.246946 1.363904 -0.708168 -0.981440 -2.365955 -1.783076 0.217660 -1.537407 1.325937 1.702048 -2.040100 0.426116 -0.078639 0.848847 0.030279 -2.528407 -0.174534 -1.282389 0.474628 2.020427 -1.019586 -1.435912 0.127777 -0.627646 0.156366 2.025732 0.193369 0.191065 2.403230 1.659402 0.929249 -1.977149 -0.144864 -0.292502 0.850333 1.525068 1.771231 -1.834146 -1.284442 0.200364 -1.231323 -3.542829 0.090036 0.830322 2.274978 0.327525 -2.934503 1.435588 -1.625650 1.658180 1.017902 2.375832 0.767613 -0.355498 -1.496590 0.522411 3.299669 -1.279410 1.688979 -0.635737 -2.674345 2.537303 0.091267 1.370627 0.571947 -0.444665 0.430730 -1.716512 0.062242 2.804694 0.763517 0.266835 1.842279 0.086575 -1.053722 -3.379048 -3.330117 0.292469 1.759133 0.933068 4.258666 -2.508805 -1.111900 -0.584820 2.593131 -1.171963 -1.100989 0.068549 -0.473633 1.160115 -4.094683 -3.273500 3.132124 2.510120 0.263017 -0.217371 2.257908 -0.251137 -0.592323 -1.824482 -1.976231 1.280311 0.716529 0.823719 0.050580 0.102271 -2.559287 0.316379 0.450626 0.921209 1.590826 -2.190232 -1.040162 -0.743626 -2.604973 -1.962598 0.462225 -2.202438 -0.265683 0.519854 -0.036814 -0.002345 0.748222 -0.239433 -2.023253 -0.537932 -1.559971 -0.422682 0.282601 1.942839 0.430955 3.670014 2.422372 -0.656641 1.506595 0.689749 -1.476305 6.131588 -1.969840 0.233198 0.010310 2.846385 -0.055300 0.816214 2.116417 -0.869014 -1.175723 -2.490971 0.404636 0.129369 0.873383 -4.337742 -1.152890 -3.383936 -0.540435 0.140926 2.811430 -0.425860 4.376042 -0.172058 0.552313 -4.679924 0.085312 1.677499 -0.457301 1.471066 1.402078 -2.304112 -3.678978 -0.316065 -1.659685 1.140329 -0.225434 -1.358752 -1.615529 -0.039923 0.068651 -0.707068 0.838351 2.985051 -1.051203 0.923429 0.242400 -0.473293 0.148498 -1.470619 1.948530 0.486988 -1.830005 2.918935 0.238848 5.531358 0.377918 2.136847 -1.381269 0.018147 0.139219 -1.312749 -1.509666 2.602849 1.849671 1.118335 0.554941 0.804433 -1.014981 1.661182 -PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -0.917434 1.882180 5.904757 4.454646 -3.800716 -4.334817 -1.719226 -3.429159 1.416402 0.329840 3.459367 -1.002325 0.840762 1.226700 -0.182731 -2.108285 1.591343 0.367545 -1.132084 -1.835055 -3.339536 2.179125 2.013227 -4.618156 1.024706 -3.309811 3.654790 2.413093 0.380138 2.725147 0.241569 0.137578 -0.854474 2.445634 -2.800926 -1.211933 -0.258600 0.787646 -1.334608 -0.418608 2.633198 0.909963 3.435660 0.128025 1.360880 2.927764 1.547459 0.070793 -4.279447 -0.896620 -1.299281 2.745646 -1.640356 2.129017 0.425221 2.161608 1.550376 -3.759316 -0.213571 -3.938896 1.010647 0.550534 -1.996019 -0.264049 -3.315031 -0.004663 -0.773236 -2.940420 2.347150 -1.676713 1.556189 -0.784581 -0.691011 -2.235410 -1.623598 1.350525 1.026754 1.619871 1.648812 0.298693 -0.250923 0.492101 -2.368736 -1.981260 0.189819 -0.927675 1.464818 0.570161 -0.011008 -2.046271 1.714838 -0.177541 -0.500180 2.752869 -1.523442 1.864280 -1.420431 -1.515150 -3.596683 -2.753189 0.088652 -2.220032 1.774722 3.070497 -3.462312 0.732448 0.100358 1.063982 0.357527 -3.842258 -0.330254 -1.993453 1.041491 2.997084 -1.917538 -2.233707 -0.000485 -0.847916 0.149098 3.023889 -0.273576 0.325896 3.169034 2.262082 1.202003 -2.719593 0.121309 -0.507753 1.121945 2.027402 2.709278 -2.745508 -1.662046 -0.122083 -1.369911 -5.451119 0.407723 0.493540 3.151314 1.192508 -4.717478 2.128957 -2.280169 2.505627 1.207874 3.414555 1.110917 -0.628902 -2.108877 0.860637 4.565718 -1.984688 2.536432 -1.437774 -4.238175 3.534287 0.182536 2.014982 0.596056 -0.426117 1.266870 -2.625000 0.185925 4.023956 0.828061 0.340079 3.014093 -0.021504 -0.818604 -5.014024 -4.577141 1.028771 2.237050 0.814321 6.110455 -3.823975 -1.544351 -1.047387 4.250773 -1.845569 -1.310307 -0.032677 -0.579382 1.447635 -6.159296 -5.088547 4.207278 3.693252 -0.144959 -0.216810 3.127982 -0.265259 -0.560359 -2.021333 -3.183050 1.825317 1.208497 1.507191 0.308428 -0.244437 -3.325954 0.505242 0.797533 1.286793 2.741830 -3.843779 -2.074071 -1.365477 -4.026136 -3.120445 1.062072 -3.675071 -0.305545 0.799339 -0.145867 -0.099477 1.274996 -0.222602 -3.091047 -0.522279 -2.008382 -0.763022 0.544285 2.989417 0.568204 5.485108 3.317442 -0.666554 2.147380 1.279895 -1.893937 9.245582 -3.018577 0.132126 0.015573 4.063116 -0.158959 1.406037 2.869090 -1.205142 -1.828431 -3.448870 0.992108 -0.390042 1.044888 -6.104579 -1.719363 -5.234989 -1.195295 0.332753 3.901764 -0.267434 6.344069 0.112184 0.273404 -6.251684 -0.218012 2.951652 -0.487153 2.256152 2.094521 -3.334677 -5.275346 -0.421700 -2.211338 2.426195 -0.381535 -2.407692 -2.345718 -0.291236 0.479929 -0.717917 1.685937 4.282489 -1.091563 0.898699 0.811880 -0.790197 0.208786 -2.371652 2.459591 0.856007 -2.428242 4.693917 0.158652 7.342500 0.295653 2.896819 -2.270445 0.030255 0.335436 -1.554769 -2.079964 3.568761 2.422197 1.545947 0.507867 1.014529 -1.795446 2.389556 -PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -0.520353 1.040219 4.117718 2.693501 -2.566703 -2.974586 -1.121023 -3.146421 1.447917 0.588518 2.353482 -0.627305 0.730889 0.551736 -0.074422 -0.767130 1.035059 0.162408 -0.627978 -1.109010 -1.668607 1.903347 1.058193 -2.772350 0.572148 -2.690106 1.838496 1.505975 0.699747 1.429734 0.322126 -0.030394 -0.781295 1.419552 -1.955660 -0.357674 0.364666 0.473000 -1.474183 -0.592813 1.045356 0.589459 1.941764 -0.365421 1.711834 1.113465 1.317533 0.079021 -2.662604 -0.633864 -0.796488 2.657102 -0.758209 1.536264 0.829838 1.134195 0.272470 -2.508384 -0.324574 -2.482665 0.660350 0.390952 -1.336839 -0.110059 -1.996268 0.146119 -0.154841 -1.726016 1.477333 -1.168621 1.143855 -0.617841 -0.076062 -1.308930 -1.772205 0.802616 0.534629 0.906891 0.994231 0.470007 0.099550 0.057455 -1.373897 -1.368432 0.367767 0.448570 0.536136 0.321776 -0.572997 -0.896502 0.875686 -0.618880 -0.277113 1.862940 -1.841023 1.055124 -0.822497 -0.892017 -2.317361 -2.018506 0.185208 -1.518278 1.220098 1.558747 -1.519374 0.674463 0.498415 0.919554 0.120549 -2.480242 0.080468 -1.133112 0.822592 2.348968 -1.343515 -1.257101 -0.101938 -0.515920 -0.460126 1.856497 -0.219394 0.508224 2.145175 1.569188 1.192570 -1.860908 -0.202343 0.505350 1.096993 1.446506 1.431643 -2.319233 -0.775307 0.200980 -0.899907 -3.771932 -0.205350 0.560874 2.230993 0.646024 -2.654859 0.598718 -1.101946 2.170694 0.660375 1.815256 0.503177 -0.112657 -1.406437 0.414220 3.441152 -1.148300 1.638692 -0.888859 -2.198428 1.808097 -0.101572 1.649448 0.534934 0.039959 0.712345 -1.876256 -0.038519 2.559284 0.723703 0.338218 1.124009 0.313891 -1.225613 -3.635319 -3.455707 0.272790 1.429651 0.184771 4.184589 -2.497140 -1.845308 -0.878885 3.162610 -1.129724 -0.915209 0.438230 -1.081923 1.129678 -3.552479 -3.481637 3.060104 3.278378 0.438497 -0.354018 2.767149 -0.127273 -1.430998 -1.520414 -1.829052 1.064112 0.839978 0.091238 -0.001304 -0.154826 -2.640951 -0.033608 0.283939 0.790974 1.502520 -1.220959 -0.377911 -0.371509 -2.498389 -1.738516 1.013456 -2.080375 -0.279920 0.204055 0.439809 -0.019123 1.098774 -0.960921 -1.809974 0.296504 -1.459213 -0.128978 0.694426 1.549378 0.283214 3.886200 2.453442 -0.127884 2.439035 0.392068 -1.389759 5.977727 -1.711043 0.013035 -0.138248 1.788174 -0.389462 0.709799 1.663473 -0.959929 -1.377418 -2.189062 0.320171 -0.566084 1.013268 -3.435521 -1.982199 -3.271975 -0.816984 0.177253 2.218547 0.059539 4.199518 -0.338109 0.518029 -5.039739 0.042410 1.970860 -0.410322 1.364427 1.223344 -2.163291 -3.950646 -0.015466 -1.473342 0.362250 -0.376114 -2.199948 -1.430336 -1.109088 1.142127 -0.614532 0.802649 3.045963 -0.398873 1.142499 0.149870 -0.405497 -0.088790 -1.099843 1.516402 0.343052 -1.844391 2.958593 0.119649 5.865120 -0.140077 1.765170 -1.319958 0.350203 -0.137956 -1.323937 -1.123208 2.336230 1.806275 1.168735 -0.243314 0.373331 -1.694954 1.442885 -PE-benchmarks/sudoku.cpp__main = -0.332105 1.459919 4.841516 1.854684 -2.489646 -2.828195 -1.588237 -4.654345 1.680749 1.076399 3.251226 -0.869295 1.205635 0.678576 -0.030603 -0.244877 1.634384 -0.416878 -0.048637 -1.528307 -1.516492 2.417028 0.602285 -1.743366 0.746981 -3.262131 1.851734 1.431558 1.096073 1.439531 0.769188 -0.018021 -0.911863 1.678592 -1.659565 -0.051770 0.944555 0.996896 -1.983120 0.101044 0.779677 0.881090 2.087341 -0.272907 2.192931 1.528928 0.981393 0.327049 -2.600211 -0.792963 -0.551204 2.953911 -1.053547 1.478573 0.807046 0.590104 -0.041747 -2.491936 -0.461584 -1.695378 0.352729 0.317047 -1.282642 0.292360 -1.965600 0.374841 -0.483183 -1.695149 1.238931 -0.863218 1.366994 -0.487748 -0.136973 -0.534434 -2.314756 1.137870 0.946583 0.992469 1.358848 -0.021123 0.418410 0.154911 -1.497864 -2.144828 1.109071 1.633824 0.841088 0.099592 -0.842455 -0.714418 0.552448 -0.566298 0.143875 2.428584 -2.097132 0.888317 -1.303051 -1.384760 -2.547861 -2.665030 0.246702 -1.927807 1.619043 1.374584 -1.653799 0.484317 0.015569 1.207042 -0.141992 -2.393770 0.151396 -1.191076 0.914448 3.447328 -1.358009 -1.551257 -0.866066 -0.745262 -0.370506 1.969207 0.272128 0.546062 2.714258 2.080312 1.355569 -2.246411 -0.823761 0.627542 1.174980 1.570653 1.804686 -2.831498 -1.255091 0.227894 -1.407113 -4.089354 -0.710661 0.126982 2.315856 -0.396231 -2.089661 0.497972 -1.539984 2.360969 1.259297 1.766319 0.602902 -0.190187 -1.789886 0.849949 3.540117 -1.309855 1.948268 -1.085662 -2.047871 1.364541 -0.293010 1.766772 0.727220 -0.112567 0.007962 -2.115345 -0.056372 2.860794 0.823914 0.805035 0.635436 0.498781 -1.271058 -3.281498 -4.133039 0.265657 1.776704 0.000000 4.037711 -2.589369 -2.291042 -0.667164 3.718450 -0.555070 -1.345773 0.871015 -1.298529 1.375798 -3.049434 -3.589859 3.558008 4.068533 0.975482 -0.746198 2.750248 0.167762 -2.805241 -2.093223 -1.797220 1.686482 0.476197 -1.333657 -0.618927 0.399261 -2.616868 -0.118523 -0.055344 1.183733 1.542729 -0.567749 0.232857 0.135901 -2.492001 -1.564432 1.581504 -1.680299 -0.683197 0.194189 0.279148 -0.006929 1.485042 -1.568912 -1.725785 0.629417 -1.998340 -0.037219 1.089230 1.901187 0.163633 4.122865 2.651355 -0.156519 2.703091 0.209311 -1.562212 5.129949 -1.587312 0.271898 -0.135470 1.328607 -0.736258 0.742388 1.900182 -1.099629 -2.308096 -2.725473 0.002204 -0.526480 1.339158 -2.439021 -2.435726 -3.389358 -0.472627 0.296544 2.968744 0.345344 4.878229 -0.283639 0.810200 -4.986911 0.181112 1.782478 -0.545708 1.808232 1.319086 -2.381702 -3.923516 -0.191965 -2.421654 -0.964870 -0.249599 -2.242330 -2.007314 -1.527195 2.084531 -0.709395 0.554028 3.087063 -0.138039 1.586427 0.399438 -0.723621 -0.657715 -0.744934 2.312821 0.034787 -2.184450 2.894401 0.226305 7.006839 -0.268981 1.941216 -1.340190 -0.072264 0.168325 -1.566337 -1.350100 2.994728 2.442470 1.531462 -0.552024 0.070247 -1.465702 1.674751 -PE-benchmarks/sudoku.cpp___GLOBAL__sub_I_sudoku.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/optimized-naive-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.566730 2.463216 9.477254 7.750756 -4.896749 -6.017402 -2.199381 -5.274230 3.238692 0.744257 3.743967 -1.353896 0.561777 1.947482 -1.049175 -3.181819 1.447197 1.219237 -1.218393 -1.854606 -4.045372 4.474561 3.338854 -7.546878 0.460685 -6.098310 4.734651 3.248106 2.506117 3.791224 -0.106749 -0.239784 -0.275531 3.416705 -4.998931 -2.576673 -0.624952 0.592746 -3.341595 -1.525655 2.263750 1.456422 4.723872 -0.455251 2.483737 2.463805 3.480576 -0.485943 -5.534189 -0.103082 -2.798997 5.492404 -1.463467 3.248596 1.883319 3.118411 1.236390 -6.024504 -0.871625 -5.310607 1.373655 2.176169 -2.826726 -0.295654 -5.694681 0.303763 -1.391762 -4.369130 3.502923 -1.836674 2.504429 -0.100449 1.032181 -4.591349 -4.264222 3.078434 0.431695 2.218714 1.610617 1.591463 0.157833 1.375223 -3.171029 -2.528107 -0.466030 -0.477822 0.290419 0.372638 0.965122 -4.079695 2.029818 -1.346893 -2.156105 4.248890 -2.637000 4.652171 -2.881578 -1.265649 -4.485752 -5.008687 -1.004281 -3.760080 2.536813 3.931473 -3.102391 2.418255 2.720087 2.030766 1.785040 -6.033381 0.174020 -1.806724 1.671355 4.750405 -2.710305 -2.741254 0.539873 -0.351969 -1.597854 4.276780 -1.598868 1.554490 4.038113 3.089741 1.870553 -3.551921 1.103820 0.853526 1.182366 3.023488 4.064526 -4.638563 -1.709328 -0.974174 0.525955 -8.663165 0.857049 2.107832 4.029436 1.383155 -6.535292 1.144560 -2.072961 5.098456 1.514770 4.458142 1.714482 -0.827901 -2.104949 1.293187 8.010689 -2.601951 3.073277 -3.512546 -6.236519 5.325273 -0.523761 4.400628 -0.753860 1.068101 3.375608 -4.862227 0.711214 5.792482 0.882514 -0.809799 5.026962 -0.527772 -1.440835 -8.363970 -5.861712 1.177042 2.093264 0.946379 10.207559 -5.094955 -3.568813 -2.137855 5.262924 -1.884797 -0.454148 0.610895 -1.978440 1.777684 -10.500692 -8.549877 5.542041 5.670409 -0.242205 -0.945757 5.161702 -0.327259 -0.582516 -4.663674 -4.266782 2.266318 1.581698 1.922796 0.041109 -0.844581 -5.436517 0.894204 1.503719 1.202904 5.665298 -5.639909 -3.248243 -2.868173 -6.919874 -5.728761 2.330529 -5.933413 -0.914384 0.741450 1.136635 -0.352923 2.156450 -0.290497 -4.217481 0.362148 -1.958298 -0.915515 1.113019 3.500984 -0.405538 7.321324 5.646898 0.733557 4.493236 2.793607 -2.733378 16.050833 -4.958151 -0.748523 -0.125850 4.526088 -1.850217 2.472216 2.911624 -1.720303 -2.300911 -4.073289 2.547379 -2.158872 1.486151 -9.965273 -3.844062 -6.397241 -2.432365 0.698178 4.153399 0.911813 9.400289 -0.651319 0.628793 -10.453002 -0.250706 5.068815 0.130026 4.998892 3.569264 -5.764951 -7.065410 -0.092407 -2.015538 4.939844 -1.489146 -6.254786 -2.906890 -0.606856 0.375675 -0.743427 2.952014 7.316751 -2.081427 2.107666 0.011885 -1.165094 -0.187269 -3.452016 3.184296 1.668977 -3.420542 6.625940 -1.034240 11.220129 -0.123052 3.529933 -4.181503 0.037260 -0.183690 -2.067244 -2.192191 5.306239 2.290881 2.164043 -0.260538 0.442742 -3.816535 2.560456 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 1.620885 5.020571 10.392014 2.649602 -6.937321 -7.084494 -2.372890 -12.452317 4.598419 3.819839 5.470253 -1.146982 3.078809 -0.193238 -1.955682 2.886115 4.077033 0.431034 -1.628031 -4.633985 -8.546564 3.470582 -0.527314 -0.707757 4.679950 -7.642739 6.118202 0.172632 2.866704 2.402943 3.924839 0.664946 -1.904558 4.790267 0.926226 2.396350 0.926065 2.504843 -4.198055 2.204760 2.101502 -2.196269 4.792854 3.616538 5.144665 4.588568 1.915260 0.649139 -5.367896 -0.636480 -2.064894 5.471418 -2.944262 4.046770 -0.804749 1.048173 -0.338852 -5.184290 1.260422 0.028779 -1.521579 -3.441067 -3.913541 0.427562 -5.484999 -0.182873 -3.172905 -5.314985 -1.100425 -0.306551 3.493794 0.082622 -2.067751 -0.248941 -6.422915 1.195370 3.276969 1.446534 5.709977 0.474432 0.370259 -1.618652 -5.928678 -6.682283 6.612060 2.430617 2.479212 0.750360 -1.774562 -3.923682 -1.181959 -1.658523 3.191667 6.616328 -6.940883 0.284977 -3.487066 -4.232513 -6.536638 -9.840786 0.944348 -3.987335 3.698218 -0.014839 -5.058137 2.791155 1.157602 2.302210 1.497107 -3.082994 0.320225 -3.344618 2.279764 8.289236 -0.163019 -5.909414 -2.038934 -2.279861 -0.460979 3.272043 2.345216 -1.090141 10.856486 3.394662 5.100227 -3.541163 -1.491739 0.832440 -0.568364 2.537780 4.455569 -6.557975 -3.811397 2.122186 -2.237590 -10.451452 -1.286200 -0.351264 4.513688 -2.967214 -2.815341 0.880976 -2.370059 0.856102 2.618618 1.600921 2.638849 -0.867307 -3.050603 0.783633 8.738997 -3.100418 2.722377 -4.585562 -2.515451 3.959470 -0.580566 1.769667 -0.258543 -1.844423 -0.576958 -3.905551 0.044345 7.031931 -0.750964 -2.360982 2.151644 2.207404 -5.529774 -6.186193 -8.177708 0.109167 5.123809 0.624581 8.368175 -6.672615 -0.961817 -2.996531 7.488422 0.199948 -1.048663 2.680798 -3.498690 2.736365 -4.597037 -7.805819 9.180359 7.665204 2.594402 -3.172206 3.323679 0.191715 -7.927334 -6.972662 -5.154532 1.135856 2.640386 -5.679171 -4.896524 1.506131 -7.159320 0.546636 -0.305259 2.387527 6.145849 -0.826959 2.611987 -1.185825 -3.329188 -5.909724 3.737693 -2.386486 -1.555441 0.871228 1.697595 0.218698 3.973823 -1.580127 -3.876794 -0.839827 -3.113240 -0.307960 3.337838 5.657326 -0.546966 10.516265 6.737268 -2.124915 3.485042 -0.108945 -3.520611 8.472766 -2.421701 1.349871 0.891527 3.008077 -1.906859 2.350502 6.391746 -2.870415 -5.289829 -4.999909 -0.927416 -1.602250 0.431070 -2.409408 -2.553245 -8.771957 -1.003622 -1.985257 6.563885 0.881363 9.490214 0.152800 2.117427 -8.667149 0.527404 4.283673 -1.559540 5.091741 3.559455 -6.506636 -3.007581 -1.845459 -6.465276 -3.933298 0.078082 0.511412 -4.895405 -0.474962 2.905363 -1.368734 1.273920 5.727411 0.106093 3.599060 -1.869358 0.867317 -2.823246 0.188704 9.530147 -0.092574 -3.937700 4.884864 1.462646 13.969060 1.936810 3.707804 -1.998703 -3.776165 1.164154 -4.113508 -4.994828 5.763499 4.454248 4.219117 0.096561 -0.190342 -0.321128 6.595673 -PE-benchmarks/optimized-naive-algorithm.cpp___GLOBAL__sub_I_optimized_naive_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -2.366044 3.006083 13.194732 9.014539 -5.634982 -5.943929 -3.091433 -5.519096 3.461250 1.316324 6.832666 -1.010199 1.792867 3.263515 -0.226584 -4.764985 2.880962 -0.646852 -1.700975 -2.949225 -2.446373 5.636979 5.460917 -11.119620 0.955875 -8.888980 6.890933 3.928170 1.678296 6.276737 -0.065179 0.546090 -0.446626 5.035945 -6.713347 -3.517114 -0.264077 2.084068 -2.337398 -1.789075 5.351825 4.915937 5.257912 0.214399 3.081892 5.170844 3.951271 -0.988924 -6.837938 -1.591847 -3.053203 5.811195 -3.685595 4.400149 0.161018 5.525955 1.699583 -7.832334 -1.337728 -10.668729 3.020701 4.395458 -3.484311 -0.856258 -6.443165 0.668278 0.042577 -4.870503 4.245999 -2.570914 3.866474 -0.536480 0.739344 -6.207955 -3.998675 3.709183 0.078335 3.197577 2.641850 -0.207390 -2.713564 1.389013 -3.266642 -3.972572 -0.329724 -0.506727 1.191281 0.403715 2.608850 -3.410503 1.954242 -0.237898 -3.876768 6.571009 -3.417464 5.422212 -2.169925 -1.814333 -4.641284 -1.688941 -1.083737 -6.214055 2.883140 7.590869 -5.388192 2.265649 0.437129 2.422412 0.578128 -6.872736 0.030675 -2.330703 0.632022 4.814116 -4.149924 -3.286113 1.263114 -0.363799 0.890537 6.610696 -2.420080 2.182650 6.500576 4.524638 1.867786 -5.589853 1.985790 0.526652 2.998111 4.357124 5.652423 -6.207626 -3.318660 -1.391427 -0.884716 -10.288181 2.406509 2.284734 5.959472 1.302715 -11.471009 4.287396 -4.077878 7.041617 4.157563 6.991144 2.575059 -0.665317 -3.926927 1.896796 11.615494 -4.068811 4.881945 -3.626216 -7.675237 8.074169 -0.997912 6.157835 0.126884 1.351066 3.507822 -7.108128 -0.087963 8.838313 2.554081 2.380349 6.782531 -0.942222 0.982408 -10.945681 -8.483036 -1.131778 2.736447 1.368309 13.621254 -6.484225 -3.346222 -2.643332 6.822505 -3.246446 -2.146572 -0.725169 -0.818366 2.329251 -13.924167 -10.394568 8.470515 8.431093 -0.838850 -0.155622 7.573482 -0.332293 1.201512 -4.093815 -4.845956 4.361657 1.825374 5.313207 1.806263 -0.240886 -6.809693 -0.572191 1.681818 1.697055 5.517052 -7.481481 -5.964452 -0.124748 -9.306924 -6.062193 1.616007 -8.161997 -2.793108 0.674139 0.729061 -0.245597 1.440309 -0.907796 -5.636622 1.222036 -3.880309 -2.440494 1.623007 5.582313 1.353249 7.774063 6.495592 0.023703 3.656820 3.547752 -3.656765 19.283136 -5.572451 -1.721290 0.124692 6.910864 -0.908071 3.201355 3.240934 -2.175077 -3.029714 -7.244312 4.955275 -1.656136 2.331378 -12.823408 -3.788306 -6.657895 -2.423859 1.955884 7.438825 -0.339541 14.135272 0.053187 0.918602 -14.084111 -0.419521 6.708565 -0.187246 3.982675 5.521309 -6.384002 -11.789770 -0.808690 -2.336031 6.068631 -1.303058 -6.882182 -5.012199 -1.341011 1.138174 -2.444012 4.160469 9.618786 -2.035488 2.983939 1.379488 -1.974782 0.108247 -4.554587 2.802644 3.463261 -5.089647 8.766602 -1.717287 14.313663 -2.100192 6.423984 -5.622511 1.155999 -0.552028 -2.273531 -3.387601 8.374776 4.177253 3.225045 1.570492 0.042605 -4.375415 4.743307 -PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -1.189092 1.914694 6.915002 5.548330 -4.102775 -4.602756 -1.861865 -3.234332 1.927349 0.579695 3.312056 -0.693853 0.930950 1.480422 -0.390267 -2.573675 1.719877 0.514103 -1.225102 -1.811387 -3.008108 3.146780 2.793171 -6.268303 0.845908 -4.405124 4.178337 2.574625 0.794350 3.445101 -0.006817 0.413666 -0.698621 2.842774 -3.714502 -1.871087 -0.481186 0.938186 -1.665101 -0.787650 2.970542 1.771312 3.625269 0.099144 1.703098 3.114331 1.863909 -0.166812 -4.634499 -0.892486 -1.466262 2.962502 -1.552373 2.738141 0.388213 2.946607 1.317538 -4.308761 -0.371914 -5.385193 1.592899 1.470328 -2.168439 -0.400639 -4.024349 0.077843 -0.525631 -3.381938 2.446710 -1.712894 1.837865 -0.681157 -0.110386 -3.579517 -2.423892 1.739906 0.606291 1.860595 1.710763 0.701882 -1.066605 0.549686 -2.528620 -2.267190 -0.397694 -0.597957 0.880208 0.726995 0.706322 -2.796206 1.711750 -0.382327 -1.315225 3.409720 -1.833924 2.754910 -1.426171 -1.133867 -3.228511 -2.507097 -0.278692 -2.735491 1.772931 3.609350 -3.190415 1.147383 0.849888 1.384511 0.630367 -4.066381 0.080081 -1.885507 0.710128 3.152250 -1.745346 -2.244204 0.450963 -0.677914 0.005331 3.767789 -1.073220 0.684871 3.506372 2.504305 1.172456 -2.928214 0.773308 0.136593 1.245703 2.200807 3.148418 -3.448941 -1.736672 -0.315410 -0.839307 -5.875400 0.778469 1.085200 3.355914 0.813846 -5.559117 2.294711 -2.328750 3.370890 1.471335 3.698971 1.291742 -0.727060 -2.240246 1.019524 6.131531 -2.075997 2.472493 -1.889165 -4.978631 4.715969 -0.034138 3.029602 0.056146 -0.042765 1.619727 -3.253743 0.548401 4.653498 0.818566 0.437115 3.768308 -0.355789 -0.600748 -5.905349 -4.980378 0.415086 2.019156 1.078310 8.013572 -4.118155 -1.850238 -1.655472 4.291822 -1.710679 -0.982296 -0.047706 -0.630453 1.457212 -8.015135 -6.060423 4.834906 4.463618 -0.215124 -0.334631 4.112753 -0.483211 0.426143 -2.810468 -3.267670 1.892341 1.375975 2.777463 0.692418 -0.134075 -4.121059 0.176920 1.040367 1.105851 3.688038 -4.340940 -2.910935 -1.603539 -4.956576 -3.968022 1.021786 -4.360058 -0.655269 0.815801 0.330567 -0.381939 1.212657 -0.211155 -3.523833 -0.190070 -1.782810 -0.908366 0.580936 3.020540 0.482758 5.354553 4.114453 -0.350039 2.316821 1.817156 -2.031698 11.834727 -3.515844 -0.296285 0.104295 4.086977 -0.385711 1.480478 2.500154 -1.221546 -1.389067 -3.827143 2.055061 -0.727412 1.050286 -8.126611 -2.206526 -5.200738 -1.356428 0.383805 4.174954 -0.157582 7.440540 -0.150576 0.336485 -7.880481 -0.082264 3.701785 -0.255371 2.568917 2.766352 -3.920326 -6.564976 -0.298171 -1.845765 3.508743 -0.811725 -3.625180 -2.536765 -0.117054 0.052033 -0.942057 2.180622 5.878117 -1.525608 1.378150 0.349151 -0.873715 0.029092 -2.884179 2.006096 1.199919 -2.611478 5.129593 -0.429938 8.139086 -0.277907 3.426774 -2.612550 0.518805 -0.084751 -1.932290 -2.124079 4.151425 2.074074 1.742029 0.944239 0.737204 -2.270884 2.546918 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -0.679602 2.237304 8.867455 6.721468 -3.275166 -4.720831 -2.095176 -5.624404 3.453976 1.079455 4.761743 -0.834419 1.872004 1.335806 -0.850872 -2.357638 2.322661 0.235874 -0.595711 -2.017793 -2.385883 6.059136 3.620314 -6.487528 0.476075 -6.093538 4.147776 2.490074 2.821477 4.753270 0.351358 0.214296 0.302090 3.317850 -4.654908 -1.951566 -1.187688 1.555748 -2.967706 -1.293991 2.515557 2.144269 4.683213 0.785418 2.372511 2.403631 3.181860 -0.675099 -3.961858 -0.616871 -2.558705 4.571742 -2.252505 2.848518 -0.100615 2.412947 1.755705 -4.085309 -0.468197 -5.895004 1.015561 2.325267 -2.784632 -0.366957 -4.882090 0.410352 -1.738015 -3.591409 1.927330 -1.483692 2.831324 0.544365 0.550740 -4.620086 -4.790590 2.731946 0.371290 1.740057 2.328532 1.163385 -1.115929 0.714790 -2.975857 -3.251572 1.696574 0.244708 0.603206 1.050217 0.768433 -3.449369 0.886241 -0.139976 -1.372974 4.112248 -2.251887 4.360349 -1.540535 -1.578953 -2.655452 -3.157076 -0.705406 -4.117677 1.916993 3.443044 -2.453458 1.776654 0.303349 1.459867 0.340130 -4.995767 0.519532 -1.530580 -0.047457 4.678124 -2.752092 -2.676416 -0.124866 0.005176 -0.288631 4.626460 -0.852014 1.446308 3.981057 2.777569 1.536935 -3.745613 1.421962 0.776118 1.567365 2.709942 3.549760 -3.289605 -2.581734 -0.429678 -0.122503 -7.900041 0.539689 2.649189 3.527958 0.322549 -5.883428 2.326331 -2.391271 4.413967 3.434411 3.587178 2.326524 -0.458928 -2.398442 1.719372 8.174143 -2.669227 3.344439 -2.991709 -6.034899 6.136960 -1.686611 4.220937 -1.190365 0.409371 2.045434 -4.221371 1.054276 6.247542 0.598955 0.242001 3.854164 -0.453374 -0.052788 -7.245438 -6.800635 0.088930 2.506633 1.661740 9.417681 -3.953371 -2.293277 -1.014380 3.622156 -1.049218 -1.248925 0.531453 -1.588416 1.830122 -11.416882 -7.752093 6.888486 5.552226 0.427230 -0.714900 4.171852 0.508033 0.310082 -3.896325 -3.507769 2.822305 1.493613 0.900658 0.025499 -0.147078 -4.858191 -0.074265 0.905782 0.940528 4.074127 -5.070301 -2.324439 -2.533266 -6.170617 -4.323596 2.445018 -5.586335 -1.753429 0.299886 0.206414 -0.474478 1.706575 -0.304195 -3.061051 0.477449 -2.770821 -1.637999 0.361953 3.769427 0.167681 5.962479 6.230529 -0.277202 2.960680 2.188588 -2.848432 13.523118 -4.532472 -0.806389 -0.092390 4.270820 -0.722339 2.383699 2.699739 -1.605458 -2.841393 -4.543819 2.799903 -0.114022 1.411046 -8.334323 -3.178176 -5.132980 -1.626319 0.521948 5.205713 0.268037 9.833878 -1.363124 0.862541 -9.653610 0.090012 4.200065 0.156974 4.397628 3.440095 -4.970674 -5.939317 -1.147864 -2.556327 4.122385 -0.990803 -5.240646 -3.235722 -1.044957 1.133845 -2.538817 2.915483 6.122467 -2.149021 2.560783 0.149189 -1.089969 -1.111551 -2.192787 2.845935 1.573663 -3.333515 5.192639 -1.251350 10.050195 -1.060955 4.134824 -4.010698 0.997874 -0.732515 -2.480586 -2.467751 6.069744 3.672377 1.700210 0.795210 0.127185 -2.071319 2.924569 -PE-benchmarks/finite-automata-algorithm.cpp__main = -0.099957 0.741648 2.477909 2.030636 -1.255360 -2.080497 -0.576385 -2.093681 1.155257 0.353993 1.549557 -0.049830 0.981573 -0.005408 -0.217868 -0.483671 1.036953 0.371629 -0.191063 -0.810819 -1.029287 2.123804 0.759591 -1.760872 0.322164 -1.522291 1.578983 0.992931 0.938594 1.678961 0.267280 0.138931 -0.150952 0.976860 -1.255048 -0.478564 -0.579944 0.644666 -1.119096 -0.315874 0.751169 0.090087 1.757931 0.373977 0.759615 0.778389 1.021439 0.010590 -1.183952 -0.391340 -0.885219 1.124060 -0.707678 1.047537 -0.512817 0.316254 0.807101 -0.752679 0.091882 -1.573443 0.318648 0.235409 -1.099303 -0.170275 -1.669238 0.066651 -0.766907 -1.431287 0.295262 -0.554460 0.860262 0.080101 -0.145159 -1.409866 -2.074037 0.449836 0.296336 0.553326 0.984293 0.626802 -0.312951 -0.183518 -1.321307 -1.163426 0.914110 0.113658 0.401660 0.686388 -0.416513 -1.255634 0.242824 0.150188 0.142421 1.109644 -0.676277 1.157835 -0.485718 -0.496912 -0.822794 -1.496487 0.123884 -1.043237 0.591784 0.642610 -0.604868 0.449259 0.058603 0.416458 -0.070776 -1.577388 0.226823 -0.773537 -0.186174 1.708930 -0.560835 -1.030093 -0.316956 -0.133462 0.004755 1.438274 0.053007 0.276773 1.317093 0.905109 0.587702 -1.328918 0.129730 0.348694 0.424887 0.860090 0.962436 -0.843034 -0.946281 0.123802 -0.535629 -2.615102 -0.096848 0.937275 1.270542 -0.200097 -1.489888 0.970291 -0.973939 1.038049 1.193408 1.015999 0.798664 -0.059990 -0.952972 0.593376 2.413315 -0.787500 1.012242 -0.876645 -1.773632 1.999481 -0.280076 0.973556 -0.373250 -0.311613 0.297372 -0.918396 0.498584 1.916103 0.067810 0.041481 1.053281 0.091984 -0.549087 -2.103499 -2.277076 0.078211 1.409195 0.945946 2.938356 -1.418246 -0.465341 -0.172243 1.040548 -0.352583 -0.525777 0.348768 -0.649288 0.761348 -3.780343 -2.372832 2.430897 1.544864 0.466104 -0.251062 1.015833 0.299760 -0.000113 -1.328141 -1.153065 0.784773 0.534225 -0.317609 -0.171651 0.069625 -1.764286 -0.032193 0.363467 0.394705 1.147340 -1.443516 -0.176429 -1.320872 -1.607149 -1.526248 0.845277 -1.560988 -0.282297 0.167574 -0.105128 -0.163032 0.562973 0.026248 -0.764793 -0.040047 -0.796997 -0.359188 -0.086880 1.117209 0.068593 2.111593 2.181793 -0.430090 0.786067 0.495200 -1.077757 4.124056 -1.404464 0.078651 0.028951 1.589507 0.072895 0.747513 1.240317 -0.590193 -0.737582 -1.653578 0.343354 0.504438 0.543361 -2.383366 -0.819410 -2.155005 -0.318752 -0.168188 2.128904 -0.145041 3.007570 -0.714177 0.422248 -2.845025 0.172177 1.110940 -0.084290 1.412928 0.933158 -1.559233 -1.426828 -0.420187 -1.181754 0.860559 -0.277404 -1.301339 -1.082920 -0.112774 -0.010614 -0.970353 0.710928 1.752734 -0.921189 0.924386 -0.376241 -0.179991 -0.473164 -0.469513 1.129209 0.376726 -1.104101 1.515858 -0.130770 3.247619 0.055939 1.389199 -1.069495 0.468577 -0.355291 -1.267245 -0.979367 1.959747 1.292447 0.491723 0.488857 0.289185 -0.170174 1.078125 -PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -3.657461 4.958431 22.014515 15.243713 -7.347731 -9.148974 -4.530713 -9.530752 5.108215 3.140721 10.906777 -2.294025 3.159828 5.203541 0.284640 -6.257764 3.815272 0.142427 -0.089858 -3.656966 -2.916648 9.564947 11.287380 -16.669842 -0.032073 -13.344768 10.207612 5.957336 4.868862 8.966599 0.872614 1.182614 0.620098 7.827110 -11.646278 -5.027335 -3.074770 4.451174 -4.258670 -1.626794 5.588943 9.208103 5.356595 0.667049 5.950758 7.830600 9.490486 -2.072972 -10.180031 -1.731769 -5.219374 12.296869 -6.095088 5.603399 1.767973 7.878127 1.038321 -11.552109 -2.724240 -17.741299 5.272054 7.845871 -7.402533 0.334548 -12.318900 1.756140 -3.527727 -6.526575 5.474436 0.548297 6.319729 0.023569 2.087695 -10.617604 -7.295325 7.025941 -1.680416 4.493862 4.358565 -1.086237 -5.051809 3.862882 -3.648676 -7.095190 0.489865 -0.568438 0.287927 -0.934615 5.307896 -5.621205 0.650335 -1.419222 -7.729004 10.944448 -6.332174 11.672420 -2.527853 -1.869615 -6.278182 -3.020807 -2.553331 -11.624467 4.241630 11.261347 -5.128408 2.667045 -2.255707 3.735159 1.044453 -11.955662 -0.674202 -2.385756 1.562690 7.944220 -8.194741 -2.425927 1.759816 0.883610 1.388160 10.997995 -2.216831 4.642007 10.114550 7.068538 1.249821 -7.361357 4.332327 1.894860 3.730702 7.357876 8.535169 -10.593215 -6.008800 -3.193428 2.234615 -15.201291 4.463485 6.704200 5.272721 2.188334 -16.660414 4.222656 -4.552256 11.417055 7.716096 11.139148 3.944978 -1.374736 -3.497605 3.267755 19.189075 -6.785466 6.727191 -3.336383 -13.465906 14.267789 -4.876407 10.695109 0.470201 3.762747 5.936820 -11.788885 -1.365590 13.961819 4.970917 3.016792 13.156892 -2.101099 3.689972 -16.431124 -11.723446 0.159881 2.519341 0.742862 21.134685 -8.190855 -4.814130 -2.861839 8.601162 -1.816461 -3.167388 -2.285558 -0.760586 2.469006 -23.060610 -16.316109 11.080503 11.492789 -1.561506 -2.986436 11.573780 2.298834 1.016417 -8.082806 -8.032013 7.605757 -0.930299 9.107834 2.658304 0.161522 -12.642378 0.307473 1.518206 2.157120 10.105144 -11.353611 -11.374339 -0.705525 -15.904744 -8.199538 1.841860 -11.481336 -5.631135 -1.268774 1.675546 0.394369 1.052554 -3.436294 -7.328215 2.833310 -7.375320 -5.171654 3.150824 8.707638 2.085885 15.189611 9.577835 2.384678 4.574940 5.601955 -5.476876 31.388423 -5.922817 -3.566355 -0.362123 9.236885 -2.791213 3.862979 3.122926 -2.945203 -8.658385 -10.469487 8.354149 -2.159531 3.412374 -18.530813 -6.129425 -8.755376 -4.384636 5.081010 11.685039 0.515628 22.493055 -0.237650 1.670960 -20.564783 0.157945 8.919183 -1.621386 8.924524 9.081907 -10.655889 -14.749126 -2.940182 -1.586486 11.117708 -2.005747 -11.616376 -7.792326 -0.985304 0.756938 -3.989165 6.184256 14.016923 -3.267533 4.607844 4.268215 -2.961621 0.258963 -5.564042 5.719010 5.667751 -10.026782 13.904132 -4.576822 24.159990 -4.628890 9.572524 -9.605480 -0.090384 -0.971175 -0.756369 -3.932646 13.443409 7.908528 5.398885 1.975415 0.603075 -6.972939 5.729740 -PE-benchmarks/subset-sum-problem.cpp__main = -0.537714 1.920375 6.828816 3.951296 -2.826547 -3.265518 -1.797494 -4.484420 1.829779 1.082570 3.758416 -1.019194 1.243225 1.414716 -0.075967 -1.082635 1.744390 -0.106000 0.249163 -1.576725 -1.624351 3.461898 2.511441 -3.942089 0.396028 -4.266337 2.992212 1.801777 1.924266 2.603159 0.610782 0.144598 -0.252588 2.427122 -3.078286 -1.149727 -0.326423 1.562823 -2.303219 0.175020 1.264378 2.036192 2.272864 -0.059936 2.065177 2.413827 2.413467 -0.087193 -3.340253 -0.603312 -1.490332 4.005522 -1.802256 1.858331 0.548125 1.517693 0.134063 -3.251416 -0.929374 -3.869370 0.890265 1.544176 -2.093552 0.355671 -3.649841 0.598193 -1.394945 -2.354259 1.659771 0.163150 2.032527 0.136493 0.479060 -2.244196 -2.989886 2.145690 0.296901 1.659529 1.556764 -0.290245 -0.409423 1.049720 -1.619994 -2.642461 0.824951 0.850724 0.654201 -0.367859 0.646009 -1.648272 0.351952 -0.392917 -1.292924 3.340884 -2.186198 2.970531 -1.797626 -1.079631 -2.576201 -2.524387 -0.584903 -3.320056 1.808997 2.634136 -1.806257 0.862724 -0.370783 1.470955 0.262960 -3.745974 -0.167125 -1.016587 0.543533 3.827008 -2.130214 -1.359053 -0.202357 -0.145328 -0.163345 3.078429 -0.136353 1.288156 3.394300 2.569804 0.931251 -2.593678 0.344298 0.528464 1.150662 2.293398 2.926437 -3.292233 -2.115103 -0.652470 -0.121230 -5.250435 0.452355 1.358724 2.055491 -0.139631 -3.904759 0.911134 -1.889373 3.528836 2.224744 2.974344 1.314778 -0.535320 -1.533777 1.375058 5.669383 -2.060976 2.359832 -1.395416 -3.765131 3.673567 -1.057385 3.073615 0.213799 0.599368 1.065791 -3.481788 -0.289777 4.234244 1.285341 0.824349 3.068263 -0.242171 0.080569 -4.830393 -4.298438 0.412362 1.528971 0.062811 6.150982 -2.857401 -2.128678 -0.712262 3.336789 -0.296887 -1.233828 0.058334 -0.882141 1.200255 -6.331662 -5.211782 4.095532 4.269559 0.149560 -1.020386 3.473349 0.740449 -1.534771 -3.074096 -2.572228 2.464717 -0.063343 0.520069 -0.300447 0.467959 -3.759373 0.186960 0.398792 1.135233 3.038899 -2.420040 -2.100104 -0.225107 -4.606996 -2.440883 1.517133 -3.229587 -1.474124 0.076138 0.342376 0.069093 1.096900 -1.468330 -2.211323 0.744750 -2.491598 -1.027753 1.041282 2.865870 0.220007 5.018792 3.536416 0.490044 2.275161 1.343479 -2.094014 8.755474 -2.057070 -0.463822 -0.181397 2.376352 -1.252115 1.130171 1.759635 -1.133468 -3.227398 -3.523004 1.616493 -0.587213 1.259810 -4.668146 -2.473517 -3.359552 -1.026145 1.238739 3.942884 0.456436 6.930849 -0.372597 0.760816 -6.489321 0.180589 2.490342 -0.456796 3.196732 2.516942 -3.365732 -4.522631 -0.864513 -1.784886 1.792039 -0.636038 -3.634582 -2.674935 -0.754357 1.137944 -1.056395 1.474480 4.405435 -0.926937 1.933095 1.003002 -1.081171 -0.463856 -1.402380 2.677751 1.112558 -3.096434 4.218693 -0.832453 8.618340 -0.831051 2.738041 -2.639610 -0.509465 0.181797 -1.012677 -1.498881 4.395296 2.785914 1.889232 0.161834 0.056166 -1.890458 1.928887 -PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -3.893455 6.125262 24.831826 17.424312 -9.762619 -11.329545 -5.469976 -10.989664 5.215080 2.940006 12.135769 -3.313816 2.383938 6.155779 0.091254 -6.798438 4.269047 1.436896 -0.869450 -4.719491 -5.529037 10.478939 12.754506 -19.196191 0.350153 -13.985602 12.341855 7.079087 4.867353 10.579420 1.301190 1.700937 0.288378 8.758843 -13.107865 -5.639604 -4.023681 4.906289 -5.310456 -1.422644 7.114852 8.540240 7.002521 0.201334 6.694033 9.476888 10.587531 -2.078540 -12.847716 -1.500751 -6.330341 14.358377 -6.282345 6.770971 2.072574 7.875388 2.081510 -13.228186 -2.618731 -19.545994 4.665720 6.698724 -9.414035 0.273073 -14.286700 1.942583 -4.671407 -8.470206 6.612342 -0.109357 6.539109 -1.124932 0.965028 -11.612338 -8.289345 7.861500 -0.441680 5.577431 5.055803 -0.593049 -3.707895 4.237589 -5.103513 -8.097188 0.444182 -2.110912 1.081696 -0.871327 5.412167 -6.446783 1.124466 -1.427898 -7.486308 12.296712 -6.463282 13.544853 -3.233235 -3.557034 -8.858866 -5.196228 -1.796944 -12.491261 5.126287 11.495050 -7.684322 3.195435 -1.962609 4.310140 2.125621 -14.840610 -1.041584 -3.465467 2.557393 10.180115 -8.721036 -3.427653 1.666954 0.487105 0.799456 12.387236 -2.144963 5.465935 10.744067 7.955599 1.625399 -8.737337 3.923168 1.164827 3.948859 7.749232 9.597784 -10.979391 -7.498033 -3.782920 2.399560 -17.412361 4.044361 7.808978 6.851047 2.974529 -17.141616 5.150119 -5.321195 12.557927 7.439162 12.162246 3.864158 -2.232595 -5.161904 3.274345 21.312274 -7.867892 7.789457 -4.159400 -16.491918 16.258959 -3.671920 11.473888 0.962909 3.520045 6.881095 -12.768996 -1.082961 15.907174 5.557336 2.093455 15.221339 -2.192475 3.413421 -18.648648 -13.650726 1.341315 3.508221 1.039411 23.098283 -9.397974 -5.119681 -3.267484 10.750691 -2.562067 -3.209180 -2.730542 -1.676885 3.025433 -26.054126 -18.806260 12.951708 12.743343 -1.917937 -2.942806 12.124394 2.801727 0.996662 -9.599840 -9.617077 8.748729 -0.327159 9.899281 2.387221 -0.284510 -13.727458 1.411229 2.344325 3.076925 11.063053 -13.830353 -11.707172 -2.274448 -17.914805 -10.093826 1.835039 -13.104582 -5.387795 -0.071384 1.937847 0.424014 1.634028 -2.917264 -8.084566 1.802021 -8.030495 -5.297307 3.039511 9.970230 1.815800 17.491780 10.523683 2.037455 6.332031 5.976777 -6.521424 36.295397 -7.949729 -3.318209 -0.298532 10.966283 -2.894774 4.429623 4.840881 -3.327579 -8.824329 -12.088198 8.493715 -2.449328 3.760162 -22.497421 -7.385702 -12.077292 -4.729634 5.345151 13.091648 0.224837 25.362709 -0.271985 1.145666 -23.302083 0.263611 10.245126 -2.035823 11.041193 9.753129 -12.665258 -16.841227 -3.043388 -3.031176 13.389997 -2.836434 -12.401780 -9.297772 0.537473 0.982507 -4.487127 7.569974 15.471160 -3.811305 4.415882 4.804822 -3.562132 0.253931 -7.224896 7.784457 5.701292 -11.078711 15.562260 -4.354546 27.547751 -3.753300 11.068338 -10.544894 -0.128736 -0.389717 -0.901026 -4.938621 14.958200 9.142100 5.771282 1.794336 1.708888 -7.562074 6.587383 -PE-benchmarks/partition-problem.cpp__main = -0.398521 2.161567 7.300306 4.074581 -3.106754 -3.432620 -1.917201 -4.844255 1.834711 1.044700 3.866306 -1.298325 0.979925 1.634495 -0.140882 -1.009868 1.675002 0.116091 0.166713 -1.671304 -1.943100 3.480382 2.569564 -4.112231 0.410092 -4.436340 3.129884 1.916751 2.056743 2.637827 0.686122 0.146064 -0.282375 2.508466 -3.267764 -1.237727 -0.327089 1.569241 -2.589169 0.227275 1.294911 1.947200 2.357741 -0.267308 2.204839 2.506964 2.566550 -0.097268 -3.620994 -0.426973 -1.651290 4.568052 -1.686622 1.977178 0.798450 1.384394 0.068042 -3.521922 -0.924958 -3.842522 0.686244 1.369267 -2.331360 0.380445 -3.858216 0.626860 -1.541395 -2.564609 1.882060 0.123617 2.005919 -0.064906 0.379975 -2.249458 -3.145735 2.351658 0.523302 1.818205 1.581849 -0.270358 0.096401 1.178475 -1.716631 -2.750944 0.811783 0.822865 0.720451 -0.503802 0.648982 -1.647238 0.371587 -0.488199 -1.258979 3.544920 -2.283365 3.258938 -2.116831 -1.361040 -3.024281 -2.954413 -0.491549 -3.456286 1.972428 2.470743 -2.139006 1.014264 -0.163322 1.589516 0.585672 -4.168352 -0.270679 -1.068641 0.843076 4.279685 -2.200086 -1.480238 -0.206152 -0.191911 -0.479581 3.136027 -0.136638 1.469266 3.402289 2.654754 1.060655 -2.764713 0.195567 0.485314 1.123961 2.358978 3.028682 -3.395892 -2.252632 -0.806918 0.044805 -5.576108 0.384660 1.442258 2.223828 -0.044690 -3.711156 0.775921 -1.897835 3.752955 2.029427 2.975399 1.231775 -0.658413 -1.710973 1.304174 5.918045 -2.194811 2.477935 -1.562436 -4.072299 3.652228 -0.827790 3.227381 0.291876 0.687489 1.294531 -3.681362 -0.332405 4.471306 1.381541 0.638548 3.276420 -0.265628 -0.025293 -5.141156 -4.496062 0.604120 1.512500 -0.173617 6.181958 -2.913512 -2.354840 -0.765376 3.763401 -0.398430 -1.143762 0.058406 -1.161125 1.280745 -6.325540 -5.527179 4.193899 4.553523 0.033081 -1.089219 3.560107 0.828435 -1.842103 -3.322584 -2.727809 2.593007 -0.006969 0.369421 -0.481070 0.357177 -3.806732 0.439747 0.522559 1.259437 3.103851 -2.485717 -1.959204 -0.277758 -4.879756 -2.665648 1.615282 -3.365117 -1.395410 0.249215 0.502739 0.074869 1.285102 -1.587183 -2.300723 0.747024 -2.586023 -0.946862 1.093869 2.949409 0.065976 5.324741 3.472917 0.599722 2.811165 1.357989 -2.223088 9.259221 -2.287941 -0.460256 -0.179971 2.351447 -1.486835 1.243356 1.895181 -1.208452 -3.349398 -3.708419 1.513596 -0.859689 1.291168 -4.897503 -2.785532 -3.675207 -1.124061 1.329050 3.886305 0.538522 7.238938 -0.339974 0.676029 -6.837131 0.176296 2.633257 -0.547338 3.586083 2.566332 -3.640689 -4.798802 -0.817571 -1.946644 1.860419 -0.791550 -3.846014 -2.873929 -0.667715 1.409894 -1.049545 1.661324 4.497559 -0.816217 1.887607 1.035397 -1.177658 -0.473403 -1.583842 3.081819 1.031948 -3.260159 4.327864 -0.799984 9.195486 -0.751093 2.860606 -2.768164 -0.657950 0.364785 -0.913314 -1.581648 4.560125 2.930173 2.009773 -0.145625 0.135010 -2.131422 1.985136 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -13.057378 3.067787 43.284367 23.769900 -13.410358 -23.012441 -11.394579 -24.262890 19.068409 10.484464 29.392735 2.126390 12.248547 3.533933 2.611169 -8.349873 9.169086 -7.949247 -4.240891 -8.089441 -2.676856 31.842206 25.791924 -29.258993 2.323192 -33.513130 11.767512 9.910479 11.420986 23.277501 -1.842804 2.226374 0.866884 14.503538 -21.625702 -1.194722 -2.724177 8.553254 -7.970793 -9.295917 14.010747 10.535624 17.242480 1.773570 21.451578 6.041805 17.333221 -7.618414 -21.358242 -10.752741 -11.975480 26.434275 -15.181627 14.429388 0.046619 16.523772 1.270519 -19.788930 -6.965322 -42.919091 8.525126 13.255712 -15.371348 -2.893273 -18.227405 6.386522 -2.096265 -10.659560 7.436394 -12.217198 17.164158 0.683607 4.941237 -15.842054 -23.175365 10.918763 -1.708420 5.822586 8.745827 4.980998 -16.478516 0.735729 -9.275649 -16.675696 9.184136 3.298741 -1.104540 4.064639 -0.980049 -5.773501 -0.098289 -1.361437 -11.981682 21.901658 -22.786511 17.947918 8.060940 -7.172719 -9.341164 -5.218626 -3.224047 -23.965391 5.286403 22.284278 -5.193696 4.754383 -7.234971 8.483590 -6.777389 -25.350555 6.415042 -3.674312 -9.134119 14.668953 -19.447546 -2.374427 3.877110 3.116692 2.728679 22.887647 -5.248073 12.709835 20.767690 15.110155 8.297376 -17.898847 8.529319 9.568198 19.950013 11.793613 11.981342 -18.956437 -11.393798 1.537834 -3.611685 -37.325882 -2.028767 22.283292 21.673774 7.222746 -35.117193 11.783904 -7.031481 27.137228 21.319083 15.553927 7.164581 0.419439 -17.090355 7.867864 45.004426 -15.331675 19.717592 -6.983453 -24.392968 34.673382 -18.068756 23.751737 1.335596 7.188331 9.115166 -24.220066 -1.156738 30.568144 11.202950 12.340210 9.506468 -0.459446 3.157611 -37.008107 -37.730255 -13.953693 10.605027 9.128686 45.671759 -18.455515 -13.647202 -8.017307 23.317105 -9.041203 -12.271238 -0.266145 -8.158039 8.242190 -56.724399 -35.515245 39.640098 40.981706 8.192551 3.998880 30.680038 8.594091 1.225313 -13.439870 -14.325554 16.141926 7.170110 7.079046 3.319208 -1.564099 -28.897501 -9.196642 -2.447722 1.733025 7.891949 -14.956910 -6.781652 3.028407 -26.680998 -10.485299 3.631910 -26.072792 -15.444903 -5.163675 4.828290 -1.198959 4.037893 -7.339961 -10.040604 9.247133 -19.097128 -6.392891 6.730091 15.178466 10.398867 29.621330 32.545071 -2.052849 14.865813 4.855048 -13.051236 56.845571 -20.782849 -8.764783 -2.504919 18.226389 0.613615 10.367522 7.218873 -6.930312 -9.559544 -22.160170 18.164477 -0.192117 10.724774 -35.349952 -25.415870 -23.458432 -5.799419 9.039640 27.735099 -1.756934 50.949987 -7.549511 6.969406 -58.247375 1.996012 20.395750 -0.753896 13.866183 15.867333 -18.989955 -43.507878 -5.151297 -7.187080 14.004600 -4.149154 -26.874959 -12.760076 -16.499242 13.889932 -20.113824 13.383219 25.068367 -4.218201 21.060440 7.231341 -6.764627 -10.578083 -3.809489 7.932825 11.633161 -15.871864 27.054311 -5.493149 51.987577 -15.063037 23.270808 -18.612415 14.168753 -9.458207 -10.906051 -7.145053 29.593594 24.917785 8.115134 2.427005 -1.960639 -14.755027 13.436870 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.748537 0.396063 5.284170 2.915495 -1.139031 -2.830573 -1.410716 -3.260701 2.510270 1.254992 3.941102 0.527537 1.924193 0.159974 0.650013 -0.619477 1.384515 -0.911751 -0.375885 -1.022862 0.683363 4.613834 3.336745 -3.599512 0.181639 -3.718590 0.950915 1.313688 1.706351 3.109800 -0.271546 0.131468 0.234924 1.830893 -2.861026 -0.003556 -0.451629 1.379433 -1.247137 -1.216465 1.398064 1.521600 1.997126 0.216926 2.784449 0.615373 2.583174 -0.908788 -2.215325 -1.516072 -1.665673 3.682361 -2.242721 1.961888 -0.536180 1.632218 0.220023 -1.791015 -0.874034 -5.694172 0.974220 1.949054 -1.980423 -0.577568 -2.024422 0.856542 0.010650 -1.367434 0.581670 -1.167541 2.453216 0.263084 0.573180 -1.938062 -3.287624 1.184302 -0.364119 0.935435 1.249721 0.515553 -2.110339 -0.150232 -0.817050 -2.250879 1.704452 0.386858 0.090886 0.780831 -0.460161 -0.323719 -0.406837 0.095998 -1.346175 2.533779 -2.689230 2.381126 1.393667 -0.769130 -0.776398 -0.041940 -0.330736 -3.103253 0.467112 2.460347 0.222822 0.405833 -1.660194 1.015996 -1.433305 -3.114280 1.059403 -0.155488 -1.980863 1.754819 -2.568605 0.088683 0.776865 0.626019 0.375093 3.017687 -0.209388 1.789399 2.207788 2.041256 1.044754 -2.469550 0.940221 1.119111 2.983156 1.751783 1.445018 -1.960685 -1.764675 0.252123 -0.774000 -4.710481 -0.245487 3.511051 2.885893 0.948725 -4.435026 1.656743 -1.018125 3.521916 3.036585 1.840152 1.052959 0.148318 -2.388342 1.185185 5.781127 -2.084445 2.807269 -0.449219 -2.571086 4.454354 -2.607570 2.953177 0.228818 0.717895 1.077898 -2.862614 -0.439437 3.974097 1.904031 2.037857 0.817709 0.026320 0.370629 -4.818668 -5.001811 -2.245408 1.774895 1.125567 5.366588 -1.840747 -1.891101 -0.644378 2.485543 -1.486490 -1.849535 -0.105215 -1.210307 1.277711 -7.258303 -4.245172 5.593739 5.234778 1.284012 0.634339 3.772256 1.662956 0.093874 -1.631350 -1.308780 2.164618 0.651969 0.238963 0.229457 -0.130914 -3.558065 -1.338753 -0.349349 0.182466 -0.147013 -1.254152 -0.456187 0.829333 -3.266237 -0.817065 0.164402 -3.255798 -1.967901 -0.711840 0.441663 -0.045808 0.363695 -1.172293 -0.872692 1.488275 -2.833530 -0.911076 0.565473 1.947521 1.810987 3.303823 4.138268 -0.276220 2.280884 0.621517 -2.027955 6.510961 -2.466063 -0.948828 -0.389409 2.512084 0.292276 1.429751 0.930691 -0.928250 -1.338426 -3.141613 2.055347 0.732818 1.694632 -3.778192 -3.322970 -2.286428 -0.505325 1.395980 3.590455 -0.786233 6.489262 -1.388212 1.255639 -7.572223 0.439895 2.267911 -0.197319 1.608586 2.006665 -2.149195 -5.571502 -0.877680 -0.942939 1.125532 -0.514541 -3.413744 -1.474305 -2.335447 1.895380 -3.249509 1.512723 2.720153 -0.554459 3.009132 0.765810 -0.821540 -1.447880 -0.135268 1.111383 1.592269 -2.312379 2.970795 -0.649917 6.763060 -2.099281 3.159827 -2.504489 1.981144 -1.350338 -1.489357 -0.924161 4.175875 3.651550 0.820903 0.516229 -0.069596 -1.522323 1.761094 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -3.086690 1.538123 11.057155 7.019278 -3.132146 -5.800859 -2.988081 -6.154301 4.854577 2.052593 7.482391 0.957118 3.428185 0.909385 0.803101 -2.105986 2.962331 -1.142710 -1.223040 -2.365409 0.233258 9.124025 6.804190 -8.407227 0.540078 -7.499656 2.883229 2.850827 3.480564 6.419110 -0.524369 0.445735 0.384011 4.072305 -6.157952 -1.088950 -1.645335 2.714331 -2.794767 -2.348294 3.749841 3.291481 4.623307 0.812468 4.643781 1.979092 5.061392 -1.766938 -4.903802 -2.690166 -3.567483 7.150018 -4.293393 4.248398 -1.081726 3.899235 1.009060 -4.123124 -1.440319 -10.989482 2.023998 4.042760 -3.995866 -1.252736 -4.769574 1.414350 -0.446609 -3.350426 1.622020 -2.447514 4.823393 0.257107 0.827044 -5.026506 -6.384747 2.596336 -0.686508 2.350858 2.746798 1.488497 -4.039363 0.010268 -2.164544 -4.561887 2.722650 -0.023673 0.287787 1.510046 -0.174663 -1.919942 -0.193297 0.332902 -2.815026 5.308916 -5.206474 5.364678 1.546068 -1.679310 -2.011121 -0.423586 -0.858818 -6.231088 1.242862 5.129297 -0.815684 1.054620 -2.430183 1.775196 -1.840835 -6.510630 1.600624 -0.422108 -3.632254 4.073182 -4.747269 -0.706504 1.762671 1.004697 0.469348 6.338281 -0.512583 3.269397 4.818886 4.101142 2.025148 -5.001534 2.278407 1.690821 5.073518 3.600597 3.706403 -3.849825 -3.819176 0.210286 -1.005355 -9.793568 0.254798 6.628352 5.883255 2.019558 -9.200029 3.509907 -2.533719 6.737616 5.625541 4.265835 2.569160 -0.268831 -4.580372 2.401599 11.860526 -4.225837 5.465146 -1.460978 -6.214577 9.626640 -4.626313 6.045995 -0.057779 1.268235 2.455673 -5.909267 -0.498468 8.397124 2.995361 3.295554 3.108209 -0.427327 0.870137 -9.975263 -9.874354 -3.743238 3.346990 2.574842 11.305527 -4.037980 -3.184836 -1.377904 5.032514 -3.030924 -3.324539 -0.238283 -2.049199 2.515339 -14.973316 -8.890830 10.921328 10.027511 1.450547 0.937946 7.386832 2.751565 0.882386 -3.958151 -3.417338 4.386486 1.720531 1.852999 0.755371 -0.251227 -6.992730 -2.000551 0.050138 0.547265 1.075250 -4.102213 -1.951330 0.738973 -7.307837 -2.923651 0.717852 -7.023772 -3.487487 -0.815644 0.628518 -0.519390 0.933866 -1.537700 -2.798129 2.162091 -5.117362 -2.093554 0.737880 4.353600 3.050080 6.602760 8.161303 -0.610748 4.263222 2.011304 -4.200889 14.976643 -5.614595 -1.849377 -0.707951 5.898639 0.172468 3.200587 2.055495 -1.837471 -2.740897 -6.489841 4.524033 0.967584 2.929794 -9.343785 -5.952427 -5.018824 -1.347244 2.486100 7.254235 -1.450549 13.454027 -2.689456 2.073085 -15.135439 0.777276 5.192748 -0.291171 3.859825 4.441325 -4.830140 -10.992075 -1.825502 -1.941889 3.970774 -1.031301 -7.014115 -3.440018 -3.655595 3.037599 -6.043818 3.578963 6.414074 -1.838294 5.495947 1.199437 -1.784512 -2.436902 -1.313729 2.433399 3.357575 -4.650856 6.539472 -1.534380 13.289867 -3.628095 6.635297 -5.276956 3.228851 -2.317657 -3.298202 -2.384091 8.557171 6.729766 1.848859 1.411246 0.076100 -3.068669 3.651329 -PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = 0.140559 0.742370 2.382846 1.290861 -1.548492 -1.400408 -0.320948 -2.398157 1.238948 0.428607 1.603251 0.497087 1.100622 -0.295129 -0.098318 0.014238 0.877562 0.137558 0.009557 -0.687577 -1.232323 1.995195 1.115785 -0.908208 0.658654 -1.519057 1.524400 0.145560 1.636681 1.508909 0.246347 0.051096 -0.318731 0.840302 -0.280460 -0.494971 -0.982195 0.728469 -1.275885 -0.087433 0.723314 -1.301362 1.465733 0.702364 0.758699 -0.065716 0.812850 -0.060983 -0.925321 -0.237416 -1.324266 1.340953 -1.037091 1.179168 -0.450233 -0.056713 0.260958 -0.047884 -0.035704 -1.245646 -0.103930 -0.809191 -0.650483 -0.010277 -1.568545 0.291087 -1.524879 -1.111441 -0.107613 -0.095446 1.123746 0.569328 0.440494 -0.566796 -2.510928 0.385875 0.405601 0.562385 1.144645 0.953143 -0.237459 -0.255525 -1.290041 -1.494773 1.493298 0.203850 0.059764 -0.079285 -0.476270 -1.015469 0.151181 0.176769 -0.054050 1.216165 -1.926877 1.471840 -0.918317 -0.411994 -0.348250 -2.460045 -0.233810 -1.388816 0.576313 0.389734 -0.613447 0.286613 0.056765 0.628667 0.130997 -1.777416 0.150952 -0.275327 -0.967470 1.813756 -0.383710 -0.807976 -0.094467 0.229335 -0.047801 0.866526 0.231219 0.756115 1.746661 1.118145 0.793949 -0.747004 0.497223 0.793711 0.343993 0.791515 0.768208 -0.685010 -0.994196 0.767051 0.003889 -2.669419 -0.274299 1.415297 1.336182 -0.163377 -1.023350 0.041545 -0.731722 0.775521 1.547232 0.686555 0.939347 0.004838 -0.631526 0.883780 2.672594 -0.932456 0.831530 -0.637390 -1.292341 2.392179 -0.997551 0.934088 -0.780542 0.230868 0.236525 -1.331726 -0.145274 1.986227 0.059212 -0.210388 0.733651 0.079006 -0.797777 -2.195073 -1.875105 -0.542069 1.585958 0.940268 2.331287 -1.119543 0.065708 0.009825 1.021033 0.309367 -0.633836 0.489928 -0.729449 0.687007 -3.495332 -2.174371 2.468487 1.687066 0.413704 -0.050809 0.677609 1.047532 -0.787684 -1.890040 -1.406686 0.650806 0.416672 -1.104333 -1.206482 0.205548 -2.059135 0.079254 0.499045 0.188713 1.761743 -0.858916 0.327389 -0.319104 -1.449489 -1.125830 1.367617 -1.559986 -0.999383 -0.008181 -0.069304 0.165046 0.601026 0.235535 -0.385048 -0.028578 -0.906560 -0.408597 -0.016078 1.229683 -0.347874 2.191848 2.276061 -0.265258 -0.363197 0.386279 -1.410547 3.151083 -1.437969 -0.278493 -0.104843 0.824036 -0.227451 0.880141 1.343377 -0.697073 -1.237494 -1.734167 0.228877 0.064097 0.454153 -1.663175 -1.081609 -1.812596 -0.234776 0.226732 1.888360 0.312978 3.024266 -0.912922 0.104269 -2.715457 0.137432 0.894167 -0.072824 2.012204 0.855380 -1.267686 -0.460160 -0.857887 -1.012310 1.084482 -0.360459 -0.914149 -0.967583 -0.202415 0.457186 -0.958990 0.756154 1.025564 -0.861773 1.830415 -0.294816 -0.358322 -1.294155 0.599659 1.326740 0.461815 -0.880278 1.740225 -0.075685 3.152649 -0.287089 0.817108 -1.162895 -0.129150 -0.301077 -0.861750 -0.702544 1.947529 1.501157 0.955364 0.366126 0.082996 -0.297800 0.990911 -PE-benchmarks/boruvkas-algorithm.cpp__main = -2.205348 2.465454 11.058770 8.477887 -6.803744 -10.196298 -2.953069 -8.790637 4.737634 1.986000 8.565436 0.634407 4.347328 0.541583 0.925108 -0.913693 4.861512 0.271553 -1.126924 -3.632127 -5.054139 9.906969 5.975444 -7.496947 1.722471 -5.772725 5.162770 4.335128 3.604473 6.597347 0.643455 0.553293 -0.677607 4.037134 -5.395186 -0.854478 -3.441430 3.169490 -4.258747 -1.390591 3.877866 -1.614062 7.646057 0.986409 4.435519 2.283964 7.099805 -0.639778 -7.379732 -2.871877 -5.471549 7.414324 -4.429061 5.019508 -1.952547 1.962457 2.894585 -3.292476 -1.018602 -9.284922 0.989741 0.259430 -5.957292 -1.059723 -6.843438 1.268472 -3.419578 -5.616671 1.635709 -1.793045 4.900577 0.040956 -0.600047 -4.612047 -9.221013 1.737706 0.940789 2.737595 3.543091 2.932128 -2.492010 -0.625920 -5.547999 -5.477590 4.485575 -0.872010 1.718335 1.513750 -3.257685 -3.040354 0.518921 0.798032 -0.944450 5.153585 -5.984813 5.817132 0.402594 -2.742463 -4.982669 -6.200783 -0.022273 -5.738548 2.258636 3.903936 -2.090979 1.098576 -2.692663 1.940669 -1.890784 -9.095988 0.677496 -2.612523 -3.383172 5.982157 -4.283551 -2.314794 0.289031 0.427733 0.383236 5.959219 0.962483 2.746927 6.682155 4.763985 2.658930 -5.429027 1.199185 0.842595 4.373695 3.907008 4.152551 -3.172951 -4.902969 1.350420 -2.634268 -11.979942 -1.121900 7.860091 7.013841 1.408525 -7.959716 3.547746 -3.517588 6.209749 6.099057 5.148624 3.012606 -0.267526 -4.801417 2.753077 11.834335 -4.675615 6.044246 -2.075726 -7.171627 11.338668 -3.359333 4.873928 0.387052 -0.066657 0.869622 -5.310218 -0.350698 8.885568 2.820623 1.062117 4.290202 0.393465 -1.835696 -10.332572 -11.165341 -1.366972 6.151624 4.453705 12.854014 -6.507649 -2.595207 -0.603012 4.839107 -2.666017 -4.533363 0.688429 -2.791396 3.126074 -18.072559 -10.595594 12.276037 8.783194 2.177823 0.630065 6.744365 2.921126 -1.386850 -6.014784 -5.980726 4.912863 2.055333 -0.909195 -0.761616 0.410790 -9.577147 -0.496647 0.189807 1.583591 3.528517 -5.342297 -0.261648 -3.263343 -7.800358 -4.084321 2.233633 -7.294538 -3.174608 -0.080253 -0.378832 0.120836 1.665306 -0.121872 -2.822114 -0.253952 -5.948987 -2.076737 0.059221 5.421015 2.235380 11.562350 11.266847 -1.702998 4.083889 1.238537 -5.573207 17.013436 -6.660364 -0.653855 -1.013320 7.411363 0.275393 3.099979 5.824663 -2.191812 -4.399032 -7.295842 2.835521 2.039273 3.172203 -10.418144 -5.242331 -10.472187 -1.169613 1.529222 10.668655 -1.612355 13.990520 -3.590402 2.293505 -15.734986 1.117527 4.274445 -0.484339 5.674167 3.889489 -6.353156 -7.924993 -2.082416 -4.396454 4.070009 -0.556047 -5.731455 -4.649649 -2.374365 0.694691 -6.005846 2.848288 6.537761 -3.880397 6.250315 1.191725 -1.871132 -2.436972 -0.770855 6.250344 2.787869 -4.951862 8.719663 -0.364879 17.211448 -0.673357 6.442950 -4.932124 1.992587 -1.502254 -4.757983 -3.508298 8.895859 8.078784 2.144521 2.047351 1.369555 -1.560172 4.530279 -PE-benchmarks/rabin-karp-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -3.874385 4.134716 21.287958 16.703999 -9.066047 -10.789576 -4.748946 -8.968635 6.899589 2.186896 9.747291 -0.896858 2.989633 4.321782 -0.858962 -7.381671 4.433162 0.811131 -2.798660 -4.267565 -4.353817 11.782832 11.404803 -18.452586 1.148986 -13.667339 10.161709 6.318629 4.337368 10.755877 -0.482909 0.705969 -0.282820 7.625364 -11.640989 -5.188485 -2.440806 2.933687 -5.795650 -4.355050 7.757227 6.877788 9.151035 0.264196 5.637123 5.939212 8.288518 -1.985567 -11.281051 -2.304896 -5.745967 11.099410 -5.070169 7.490751 1.234841 8.560923 2.673863 -11.590798 -1.903601 -17.037023 4.255606 7.242238 -6.624762 -0.925934 -12.426569 1.044998 -2.032455 -8.818258 5.933736 -4.196797 6.165020 -0.348149 1.555403 -11.400645 -8.158843 5.935009 0.021979 5.757748 4.139285 2.423714 -3.911896 1.911095 -5.467744 -6.226312 -0.105592 -2.124758 0.756941 1.835167 3.650397 -7.185114 3.262782 -1.113123 -6.250953 9.413480 -6.750120 10.938673 -2.623652 -2.693890 -6.158508 -4.451603 -1.936596 -9.888659 4.071928 11.231815 -6.300521 3.923793 1.579395 4.265082 1.248910 -12.317837 1.037786 -3.060837 -0.031875 8.619390 -6.782845 -4.021680 1.447070 0.216660 -0.220460 11.583292 -3.957967 3.945321 9.591289 7.243733 3.274871 -8.201806 3.968878 1.678188 4.685799 6.269788 8.326760 -9.280592 -5.586736 -2.307486 0.446731 -16.988241 3.282904 7.603948 9.325151 3.841731 -17.033940 5.340129 -5.023278 11.351136 6.015775 9.759521 4.158014 -1.323150 -5.851016 3.068292 20.042281 -6.528566 7.502886 -5.795632 -15.000755 14.801966 -2.807862 10.476060 -1.032904 1.990744 6.510869 -11.223428 1.581118 14.631676 3.189326 1.398615 10.987570 -1.417594 0.625918 -18.635715 -14.561722 -1.139190 3.240139 3.462527 23.814808 -9.570782 -6.101398 -4.252882 10.346374 -4.257475 -2.788600 -0.353206 -3.250418 3.677220 -25.530978 -18.200278 14.940342 13.335943 -0.742830 -0.369131 11.861332 1.547250 2.201707 -8.172157 -7.987208 6.650970 2.723512 7.904604 2.157879 -0.379977 -12.159005 -0.431025 3.149384 1.963397 9.729461 -12.871709 -8.682771 -3.284263 -16.435798 -10.073381 2.743582 -13.846450 -3.656998 0.690593 1.602151 -0.440725 2.864101 -0.942141 -8.341734 1.774644 -5.543402 -3.766472 1.486221 9.380814 2.309137 12.656181 13.339342 0.275619 6.983370 6.392189 -6.368525 33.768230 -9.677071 -2.689563 -0.435539 11.213895 -1.281697 5.276050 5.077304 -3.318337 -4.865008 -10.766365 8.264694 -1.913994 3.560423 -23.143953 -7.556602 -11.427221 -4.218137 2.343109 10.700030 -0.257503 23.261460 -2.128601 0.924261 -24.716572 -0.050114 10.940766 0.147774 9.071726 8.402074 -11.023972 -18.087588 -1.401350 -3.710550 12.505261 -2.549373 -12.402412 -7.282573 -1.811742 1.495101 -5.177751 7.698459 15.489090 -4.156396 5.750793 1.774213 -2.714374 -0.896928 -6.823694 4.187018 5.351277 -8.023608 13.878568 -2.859023 22.303820 -3.149374 9.575100 -9.851716 2.137112 -1.864258 -4.557974 -5.001565 13.356667 6.879963 4.133812 2.154057 0.871221 -7.001210 6.619536 -PE-benchmarks/rabin-karp-algorithm.cpp__main = -0.965868 1.248525 5.853585 3.022791 -2.492841 -3.594446 -1.518258 -4.315276 2.122209 1.168470 3.656459 -0.433795 1.613555 0.926117 0.023156 -1.028713 1.770641 -0.550968 -0.001813 -1.537039 -1.357822 3.808808 2.258288 -2.818978 0.561058 -4.226361 2.695619 1.452798 1.518641 3.090876 0.366876 0.004726 -0.647239 1.890527 -2.160307 -0.337753 0.055322 1.108688 -1.786648 -0.368189 1.353083 0.816851 2.784016 0.116742 2.256477 1.585774 1.867929 -0.064391 -2.811857 -1.233555 -1.370218 2.885600 -1.714215 1.875022 0.269277 1.106218 0.473291 -2.473593 -0.550632 -3.495542 0.556453 0.658176 -1.908722 0.192100 -3.182916 0.585302 -1.422077 -2.179708 1.058264 -1.311617 1.903302 0.067029 0.345025 -1.499930 -3.361210 1.398541 0.377955 1.291144 1.344225 0.300068 -0.958780 0.371914 -2.108502 -2.446914 1.029467 0.906652 0.541521 0.254956 -0.585909 -1.192169 0.385049 -0.226185 -0.703963 2.735820 -2.274852 2.199772 -0.799962 -1.213202 -2.110404 -2.875357 -0.093350 -2.684925 1.352854 2.224606 -1.480464 0.372646 -0.480880 1.172039 -0.306831 -3.486787 0.676902 -1.150636 0.025129 3.193675 -2.027350 -1.052651 -0.824855 -0.328016 0.299076 2.908892 -0.269594 0.971149 2.928882 2.309615 1.332912 -2.532355 0.009801 0.822207 1.638046 1.497026 2.036800 -2.701648 -1.759653 0.020672 -0.985618 -5.071943 -0.244263 1.935349 2.821821 0.238763 -3.412405 1.223754 -1.737237 2.942443 2.427046 2.242697 1.066693 -0.113426 -2.052108 1.155102 5.273244 -1.864490 2.466713 -1.684578 -3.298011 3.776415 -1.095059 2.581685 0.194338 0.475792 0.584069 -2.759442 0.231856 3.922810 1.129445 1.011718 1.882373 0.200097 -0.404154 -4.592767 -4.757202 -0.343035 2.217601 0.934109 5.652601 -2.970939 -1.669690 -0.681469 3.359225 -0.483896 -1.638226 0.470240 -1.226702 1.216432 -6.652164 -4.842196 4.695132 4.532384 0.811634 -0.197598 2.810433 1.134992 -1.253897 -2.371500 -2.310416 2.240063 0.001672 -0.482184 -0.367789 0.242238 -3.577206 -0.268756 0.130323 0.935435 2.484158 -2.280750 -0.731751 -0.572547 -3.724754 -2.416424 1.468286 -3.073460 -1.491702 0.049104 0.254811 0.117511 1.013423 -0.694579 -1.423472 0.957643 -2.177116 -0.599763 0.981824 2.288140 0.509438 4.462529 3.841441 -0.256733 1.737531 0.779757 -1.874675 7.574551 -2.402780 -0.238394 -0.207981 2.541834 -0.280699 1.429756 2.065476 -1.076092 -2.323545 -3.136706 1.313342 -0.153812 1.439060 -4.261537 -2.994563 -4.044409 -0.570832 0.555009 4.033627 0.103998 6.448590 -0.685944 0.942434 -6.469358 0.234589 2.302047 -0.188363 2.546456 1.782051 -2.855385 -3.814396 -0.530095 -2.222602 1.272418 -0.440624 -2.998563 -2.146046 -1.185062 1.134469 -1.516890 1.278733 3.206112 -0.768798 2.271216 0.905495 -0.839931 -1.229551 -0.798521 2.341860 0.862209 -2.294851 3.718667 -0.190424 6.983655 -0.761374 2.439308 -2.030131 0.620309 -0.431427 -1.836724 -1.396077 3.951111 2.768995 1.277317 0.015112 -0.024059 -1.172248 1.871611 -PE-benchmarks/rabin-karp-algorithm.cpp___GLOBAL__sub_I_rabin_karp_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/boolean-parenthesization-problem.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -6.235135 7.977971 59.243401 36.386427 -9.438335 -18.999387 -9.541776 -16.890753 10.287131 6.455171 26.212732 -2.113026 3.671321 17.521555 1.859694 -15.358303 -1.348143 3.176926 -0.735231 -4.692564 -3.667207 25.444064 42.222626 -41.999219 -1.942090 -38.957277 21.703759 9.806709 18.035157 29.435453 -3.868542 2.269701 4.043590 16.343864 -31.000569 -13.059671 -20.512860 7.684897 -5.213970 -0.282721 15.889603 25.128359 3.442842 4.881973 15.228403 16.985539 28.067307 -9.312082 -16.221290 -4.180016 -16.775974 33.691642 -16.816985 8.463867 -2.706101 29.533539 -6.934773 -22.928818 -8.059052 -57.585276 16.740069 27.585792 -22.087678 3.400896 -33.796693 6.606674 -19.677858 -12.036789 10.738463 0.342861 17.823950 -0.486741 3.533058 -33.367068 -18.947305 12.455254 -13.925222 9.686076 7.188880 -6.342798 -23.980986 14.161337 -5.334874 -13.457527 -3.419337 -7.416478 -7.621424 -8.018936 25.375686 -16.332970 -2.692971 1.002193 -23.139553 24.517054 -25.987435 35.622371 -9.494881 0.861938 -5.566007 3.500919 -7.571893 -30.740403 7.671278 28.024617 -6.975392 3.915140 -7.155711 6.732705 5.848392 -34.669421 -6.912925 4.263472 -0.667605 15.539749 -24.009423 2.118099 10.621225 5.152421 1.142637 29.180489 -5.213246 13.983179 21.285374 13.511800 -0.864944 -12.879701 17.172892 7.312172 6.702261 17.496104 18.003144 -20.281975 -14.852319 -11.688475 15.936066 -40.777266 19.434822 26.445368 7.034967 10.718848 -39.353920 6.481062 -7.687973 29.981911 23.758187 26.059976 10.897569 -6.919167 -4.541380 7.584049 60.261749 -17.071404 16.603813 -6.902010 -41.425495 48.921160 -24.552068 30.275812 -0.155351 15.521001 21.045494 -29.578829 -7.512453 34.758298 12.901310 11.675291 41.178044 -8.278388 22.386666 -39.679660 -20.026838 -7.523049 0.555035 1.433969 46.764536 -12.328511 -0.090073 -5.414165 19.445306 -2.156440 -4.867083 -11.481464 1.918887 1.427010 -64.752631 -36.940637 19.568035 35.247305 -8.077889 -4.773528 32.243961 17.484326 14.050197 -15.736956 -20.265962 17.989987 -5.613844 31.473046 8.997929 -3.810900 -31.847814 2.762253 4.604993 1.782929 21.062612 -29.584546 -39.828884 3.289891 -43.940779 -21.383677 2.500214 -35.071666 -14.114466 -8.083700 4.225658 -5.543378 -6.182272 -13.076632 -11.235144 12.727594 -21.196616 -7.501215 9.738513 13.792268 8.212206 37.704612 15.936232 7.528891 2.075195 16.531663 -9.749361 84.044038 -12.120077 -11.645716 -0.614258 24.187536 -11.646178 11.901393 -4.191906 -4.177366 -25.364182 -19.140311 28.454075 -5.052234 6.150107 -39.331663 -19.739007 -12.375020 -12.647717 15.434154 25.643750 3.982606 59.742251 -0.967794 7.007579 -51.934120 1.688979 26.073600 -5.487108 27.699824 21.302128 -19.952868 -37.317855 -8.884171 9.085518 44.019004 -5.984076 -36.326955 -15.694337 -1.978547 -1.297253 -12.773172 22.414966 25.584254 -6.687928 12.585275 12.933032 -8.115424 -0.302827 -10.326353 6.546028 20.220879 -25.759176 30.241389 -13.918979 52.766771 -19.329011 25.461740 -24.938647 0.914616 -7.312936 4.978986 -4.578662 30.220048 25.928956 12.343189 2.637171 0.283311 -15.406674 1.430468 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = -1.370661 2.168435 13.965768 7.122546 -2.333272 -5.262876 -2.642172 -6.943011 3.293621 2.227934 7.439846 -0.998004 1.860951 3.632678 0.501422 -2.389500 0.596518 -0.405956 0.687489 -1.584160 -1.056678 7.311319 8.608974 -7.313337 -0.289912 -9.876310 4.695883 1.989378 4.886438 6.734505 -0.322696 0.071027 0.574575 3.796358 -6.266854 -1.797067 -3.385544 2.184339 -2.042627 0.206419 2.521943 4.584440 1.792997 0.920468 4.574121 3.440548 6.332950 -1.710700 -3.766967 -1.435964 -3.760532 8.283798 -4.307770 2.094494 -0.124958 4.949410 -1.583330 -4.926942 -1.987803 -11.508679 2.718987 4.887985 -5.120122 1.145045 -7.649398 1.937029 -5.138341 -2.738502 2.048257 -0.132825 4.617490 0.473738 1.159179 -5.738280 -6.101610 3.217791 -2.384379 1.992611 1.942232 -1.561426 -4.616568 3.017210 -2.114620 -4.229532 0.963222 0.412159 -1.181913 -1.832902 3.717136 -2.833040 -0.961857 -0.075778 -4.259159 6.096672 -6.302800 7.519134 -2.175982 -0.656218 -2.203040 -1.828412 -1.496383 -7.379891 2.251514 5.569184 -1.263611 0.574664 -2.215663 1.809876 0.588702 -8.491966 -0.777124 0.539323 -0.048121 4.953345 -5.928085 0.313665 0.963438 0.856485 0.238054 6.482079 -0.386467 3.387834 5.483111 3.811869 0.674424 -3.664723 2.696327 2.118433 2.266953 3.938137 4.118292 -5.252727 -3.777649 -1.789246 2.446300 -10.420739 2.692250 6.276154 2.542018 1.545915 -8.023526 1.248601 -2.018690 7.258437 6.406773 5.324582 2.489209 -1.160693 -1.758762 2.292126 13.712465 -4.188284 4.607090 -2.218017 -8.540674 10.726095 -6.053603 6.960988 0.279106 3.595491 3.571887 -6.952850 -1.606305 8.316721 3.320349 3.083359 7.720285 -1.160838 3.930870 -9.365154 -6.283686 -1.657461 1.734747 0.182731 10.428112 -3.518992 -1.087291 -0.674398 5.224017 0.088721 -2.158645 -1.524866 -0.695312 0.915857 -14.970752 -9.153685 6.061729 9.526104 -0.374467 -1.181676 7.123070 4.687027 0.602438 -4.217770 -4.845830 4.891112 -1.808270 3.359981 0.528492 -0.542400 -7.803451 0.268687 0.221208 0.908339 4.869162 -5.371876 -6.673724 0.737430 -9.619379 -4.577547 1.849880 -7.494163 -3.967517 -1.954624 0.953889 -0.768555 -0.506972 -3.418082 -1.851595 3.549990 -5.716561 -1.442697 2.851877 3.310953 1.572630 9.990278 4.914186 1.406880 1.398715 2.816579 -2.725499 17.722809 -3.046514 -2.210273 -0.394637 4.880191 -2.721146 3.006353 0.330600 -1.381631 -7.116425 -4.926606 5.522506 -0.940032 2.170143 -7.221687 -6.095973 -4.284844 -2.450400 3.473374 7.103556 1.205337 14.234302 -0.713575 2.401643 -12.649300 0.613304 5.351476 -1.250532 6.751226 4.515063 -4.926446 -7.633342 -2.161436 0.169317 7.032576 -1.272013 -8.480670 -3.889582 -1.868820 1.185525 -3.324451 4.246470 5.162087 -1.009564 4.014146 3.248038 -2.064524 -1.510226 -1.248704 3.324216 3.731428 -6.081832 7.103192 -2.563560 14.066030 -4.461289 5.617889 -5.497675 0.335386 -1.569292 0.099064 -1.202779 7.838898 7.030645 2.856228 -0.315981 -0.475000 -3.121469 0.907909 -PE-benchmarks/boolean-parenthesization-problem.cpp___GLOBAL__sub_I_boolean_parenthesization_problem.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/z-algorithm-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.290135 4.952533 14.615002 6.589397 -7.817929 -8.294645 -3.691114 -13.991688 5.901894 4.452932 7.965994 -2.171317 3.156765 1.930615 -1.809371 1.009448 4.141028 -0.769261 -0.958509 -4.814972 -7.146386 7.507704 1.992147 -4.750625 2.986425 -11.652574 8.730475 1.604654 4.092248 5.228668 3.637790 0.300323 -0.983667 6.138896 -2.627590 1.879635 0.382273 3.595683 -4.504150 1.123848 3.328378 0.666209 5.902567 2.585310 6.682542 5.993733 4.523503 -0.189655 -7.173995 -1.133536 -4.197174 7.990253 -4.772031 5.021273 -0.688885 2.607430 0.288938 -7.760915 -0.454764 -4.397198 -0.627396 -0.168843 -5.335009 0.495459 -8.086762 0.856874 -3.290346 -5.791230 0.713796 -0.362713 5.333133 0.578891 -0.272936 -2.588040 -8.644248 3.419371 1.884988 2.377710 5.729956 -0.677147 -0.911484 -0.163631 -6.152654 -7.770188 5.789981 3.294710 1.973238 0.256345 0.255248 -4.544119 -1.369806 -1.562308 0.357281 9.174200 -6.923080 3.673966 -3.990861 -3.610422 -7.023440 -9.142928 -0.038420 -7.011349 4.629377 3.726268 -4.993605 2.804801 1.677169 2.950949 1.170828 -6.143358 0.434301 -3.741809 2.605020 9.194586 -2.368764 -5.760113 -1.396605 -1.892667 -0.044467 5.872171 1.344559 0.820344 11.864313 5.103323 6.086925 -5.811786 -0.785245 1.962691 1.258181 4.374635 5.836524 -8.543270 -4.577894 0.714598 -1.287495 -12.954459 -0.375780 1.942256 6.112186 -2.466930 -6.568860 2.071466 -3.402779 5.236386 4.890073 4.753483 3.382984 -0.553173 -4.208308 1.963503 13.835156 -3.868392 4.320097 -6.199042 -5.452461 7.317622 -1.893506 5.036319 0.351646 0.169372 0.459634 -7.426971 0.093444 9.858038 0.773621 -0.439659 5.263422 1.769291 -4.069857 -10.196601 -10.440483 -0.509282 5.874816 0.741553 13.619403 -8.428325 -2.846664 -2.555986 8.707785 0.180561 -1.855052 2.113911 -3.568475 3.404824 -11.858787 -11.702526 11.788971 10.458177 2.688632 -3.147012 6.491420 1.551114 -6.756842 -8.084200 -6.307295 3.945000 2.159342 -3.080901 -3.162198 1.260843 -9.298802 -0.589436 0.173985 2.801775 7.717333 -3.579066 -0.670496 -1.488540 -7.405287 -7.402835 4.750750 -6.060431 -3.587028 0.325297 2.145584 -0.285429 3.853281 -2.119632 -4.412884 1.071336 -4.412281 -1.013361 4.175164 6.440084 -0.387751 12.074856 9.627997 -1.423354 5.087106 1.472067 -4.078739 16.473967 -4.044105 -0.233252 0.644482 4.587129 -2.071649 2.951885 6.226021 -3.599226 -6.825639 -7.618002 2.143208 -1.910909 1.967294 -7.193555 -4.470638 -10.175890 -1.898633 -0.127717 9.424088 1.670556 14.881498 -0.163947 2.700210 -14.289627 0.651197 6.689665 -1.189295 6.389006 5.454781 -8.237716 -6.958921 -1.979178 -5.942434 -0.855133 -1.003399 -4.486300 -6.584484 -2.191850 2.676341 -2.459097 2.607234 9.424266 -0.821990 4.652475 -1.041038 -0.661264 -3.109394 -1.379752 8.956481 1.452142 -6.152395 8.082054 -0.297256 19.563209 -0.694733 5.725323 -4.441231 -1.536156 -0.083452 -4.493772 -4.741283 9.245500 5.405612 4.764065 0.544850 -0.516094 -2.522661 7.055388 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&) = 0.058985 0.281023 1.141199 0.691838 -0.750496 -1.251993 -0.229250 -1.824736 0.975054 0.413560 0.952836 0.223152 0.943689 -0.631596 -0.185967 0.047678 0.714933 0.170944 0.087147 -0.452332 -0.388267 1.597957 -0.132923 -0.223631 0.181243 -0.863553 0.930469 0.396316 0.959003 0.967775 0.326795 -0.035801 -0.388905 0.352571 -0.201661 0.088040 -0.248059 0.514701 -0.884815 -0.246958 0.127238 -0.658695 1.011041 0.120202 0.693846 -0.221032 0.484254 0.056473 -0.355241 -0.397358 -0.500664 0.445389 -0.430226 0.593734 -0.318735 -0.537236 0.249934 0.272393 0.184402 -0.300207 0.052948 -0.490261 -0.576516 -0.041401 -0.844206 0.082196 -0.726633 -0.707539 -0.201532 -0.533832 0.433317 0.164419 0.088159 -0.371501 -1.902542 0.023355 0.270420 0.133002 0.696817 0.772140 0.033671 -0.515458 -0.872287 -0.797079 0.948052 0.673860 0.114404 0.456300 -0.998058 -0.451655 -0.016028 0.181264 0.563881 0.456755 -0.758971 0.314923 -0.541393 -0.219853 -0.104150 -1.476010 0.278083 -0.525323 0.295048 -0.139204 -0.157585 0.137456 0.120886 0.145199 -0.172094 -0.796885 0.292999 -0.525744 -0.160230 1.330251 -0.161557 -0.617244 -0.620809 -0.067635 -0.003253 0.478371 0.273452 0.196784 0.717971 0.470980 0.729212 -0.928060 -0.296331 0.805452 0.255704 0.374257 0.115952 -0.344977 -0.422905 0.340946 -0.521892 -1.618801 -0.506676 0.573575 0.770659 -0.398724 -0.089697 0.193591 -0.543400 0.445089 0.870213 0.132436 0.454421 0.309174 -0.647673 0.364971 1.135034 -0.250194 0.412465 -0.450558 -0.557882 0.942761 -0.196520 0.388269 -0.361178 -0.136361 -0.137564 -0.386150 0.307693 0.963621 -0.229964 0.185004 -0.105579 0.331082 -0.746690 -1.080614 -1.446855 -0.091125 1.377751 0.812069 1.219230 -0.833019 -0.185886 0.234600 0.571828 0.127003 -0.470476 0.590478 -0.696689 0.652571 -1.932440 -1.275945 1.542380 1.035926 0.555205 -0.172426 0.290533 0.437636 -0.674932 -0.800049 -0.655529 0.357049 0.230228 -1.332729 -0.433796 0.211325 -1.105304 -0.228941 0.268964 0.166864 0.530293 -0.241091 0.817440 -0.693101 -0.268670 -0.833762 1.032200 -0.479187 -0.162643 -0.112579 0.006265 0.021557 0.549286 -0.146839 -0.016276 0.133339 -0.335133 0.042262 -0.047039 0.283488 -0.148151 1.230865 1.382025 -0.452403 0.297550 -0.061437 -0.671992 1.727756 -0.701120 0.156013 0.061147 0.515200 0.172295 0.499228 0.839703 -0.513288 -0.425895 -1.025513 -0.467602 0.424846 0.503947 -0.640126 -0.732713 -1.348814 0.079781 -0.312682 1.190247 0.018871 1.619270 -0.789499 0.392061 -1.448253 0.162933 0.514706 -0.104598 1.051949 0.252477 -0.690958 -0.179738 -0.348316 -0.889917 -0.220893 -0.164201 -0.570928 -0.554835 -0.360193 0.297211 -0.659305 0.139527 0.480389 -0.463652 0.947763 -0.604430 0.071204 -0.702753 0.307201 0.583338 0.093692 -0.623519 0.734742 0.108718 1.853101 0.015638 0.519750 -0.372199 0.565951 -0.506439 -1.233740 -0.516281 1.125713 0.903328 0.389563 -0.040708 0.089802 0.050914 0.655991 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*) = 0.026352 1.102829 2.840022 2.092861 -2.702970 -2.700683 -0.749002 -3.668359 1.697859 1.184743 2.032799 0.032806 1.229793 -0.598881 -0.592200 0.206205 1.664500 0.343357 -0.537758 -1.755295 -2.180019 2.124412 0.207737 -0.974249 1.020025 -2.324595 2.588502 0.403908 1.041318 1.284491 1.117691 0.231153 -0.935385 1.434564 -0.277275 0.392834 -0.315164 1.054452 -1.371557 0.218687 1.236097 -0.580726 1.957428 1.227442 1.616334 1.191781 0.864813 0.153190 -2.263207 -0.924848 -0.785663 1.006159 -1.175698 1.805661 -0.719717 -0.040166 0.843489 -0.777590 0.665625 -1.045150 -0.070355 -1.184448 -1.054071 -0.008328 -1.879892 0.189657 -1.233588 -1.900344 -0.308735 -0.357687 1.475140 0.061439 -0.444642 -0.338052 -2.475318 0.260214 0.676605 0.716005 2.159768 0.675967 -0.312051 -1.047993 -2.161377 -2.178265 1.827664 0.330463 0.769326 0.952102 -0.848532 -1.517034 0.182043 -0.267105 1.131513 1.712472 -1.935723 0.150066 -0.656863 -0.924566 -1.300407 -2.860078 0.253175 -1.203347 0.904849 0.537428 -1.707920 0.596822 -0.126734 0.412536 -0.118037 -1.145606 0.603345 -1.314324 0.391801 2.659024 -0.241697 -2.124457 -0.678410 -0.437561 0.149009 1.467347 0.960698 -0.075407 3.061127 1.229261 1.432419 -1.537807 -0.430949 0.500422 0.276496 0.974018 1.326874 -1.188889 -1.594799 0.693284 -0.934206 -3.000669 -0.549180 0.650653 2.300427 -0.444690 -0.975733 0.745030 -1.340078 0.773182 1.249882 0.916845 0.961101 -0.261855 -1.667994 0.604090 2.838241 -0.736287 0.911508 -0.953631 -1.122751 1.823018 -0.172956 0.561312 -0.026123 -0.890299 -0.380191 -1.123613 0.094302 2.379873 -0.372418 -0.519257 0.808733 1.223816 -1.786996 -2.370480 -3.190254 0.116703 2.328166 1.215209 3.018494 -2.337369 0.023821 -0.463519 1.912238 -0.002048 -0.861337 0.768258 -0.889190 0.924576 -3.136446 -2.716334 3.911661 2.832473 1.024330 -0.875159 0.988240 0.709469 -1.553099 -2.228944 -1.555087 0.441135 0.898247 -1.517938 -1.224750 0.882780 -2.287106 -0.849965 0.545805 0.783428 1.638448 -1.354351 0.737620 -1.015137 -0.891375 -1.915728 1.275186 -1.018881 -0.326894 0.412844 0.270191 0.172276 1.162697 -0.077348 -0.913684 -0.340384 -0.910248 -0.260279 0.381002 2.091796 0.353947 3.271422 2.771877 -1.011922 0.915250 0.211460 -1.608592 4.146361 -1.469512 0.532946 0.162694 1.519004 0.253983 0.607356 2.107661 -1.146121 -0.915476 -2.230832 -0.274700 0.285023 0.369712 -2.368485 -0.687312 -3.715273 0.079096 -0.865083 2.337270 -0.094073 3.708153 -0.879101 0.105596 -3.094274 0.203732 1.905428 -0.621714 1.773957 1.174932 -1.753793 -1.288473 -0.922471 -2.175990 0.168599 -0.159288 -0.288174 -1.431777 0.083564 0.440984 -1.038908 0.924933 1.972699 -0.311394 1.479125 -0.937542 0.146859 -1.110155 0.144125 2.002591 0.333784 -1.707630 2.035557 0.331344 4.417776 0.438736 1.117107 -0.886810 -0.269334 -0.422338 -2.152747 -1.644845 2.191512 1.751008 1.229225 0.592067 0.469915 -0.038632 2.366586 -PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -2.066899 3.718549 16.502678 14.632656 -8.415595 -10.438350 -3.584728 -6.704173 4.916841 1.193630 6.713332 -1.069051 1.425364 4.747699 -0.832798 -5.221652 2.791734 2.029291 -1.648135 -3.002275 -5.509016 8.811311 7.629151 -15.359217 0.409983 -11.794551 9.835932 6.500488 3.699774 8.527316 -0.387564 0.530781 -0.015710 6.234270 -9.160129 -5.492534 -2.803475 1.565908 -4.209174 -2.284582 5.421922 3.413801 7.543047 0.214767 3.994652 5.309273 8.095936 -1.195974 -8.723274 -0.715588 -7.257429 8.984169 -3.584818 5.842174 0.831040 7.349909 3.194172 -10.027148 -2.089709 -13.321352 3.360039 4.991126 -5.915745 -1.062927 -10.487510 1.086141 -2.311601 -7.930679 5.247957 -1.466617 5.254698 -0.127667 2.341450 -9.662570 -8.317229 4.920821 -1.544704 4.711943 2.821126 1.692872 -3.640947 2.686940 -5.479791 -4.711132 -1.592430 -1.858733 -0.359569 -0.200428 3.219077 -7.504909 1.538113 -1.293593 -5.945255 8.146906 -4.712562 10.456951 -3.566105 -0.891701 -6.316343 -5.219008 -2.213805 -7.740850 3.346400 8.207168 -4.191229 3.235202 2.723811 2.984921 1.832012 -10.338802 0.744879 -3.017388 0.080702 6.119416 -4.644424 -3.114123 2.697924 0.100853 -0.714762 9.017681 -3.705925 3.537617 7.111777 5.943845 1.758127 -5.798285 3.327039 1.674664 2.889406 5.496151 7.396849 -8.164256 -3.818983 -1.946033 1.536974 -13.844170 3.901454 6.762891 6.608361 2.076062 -12.889862 3.269395 -4.121783 9.845245 4.673166 10.063966 3.264763 -1.440725 -3.971596 3.109461 17.009657 -4.897907 5.721539 -5.613405 -11.154394 12.936180 -2.473635 8.737336 -1.236408 2.852602 5.204080 -8.898038 -0.180444 10.898582 3.017850 -0.158253 12.337275 -1.779717 -0.958828 -14.832190 -9.483631 -0.155478 4.248352 2.487299 19.604422 -8.744770 -4.555851 -3.780827 7.542685 -2.996887 -1.378833 -0.431099 -1.579593 2.472369 -22.957469 -14.950923 10.509316 9.505797 -1.697176 -1.042970 10.079704 0.844594 2.089959 -8.451029 -6.902539 4.759404 1.794276 7.276560 1.910744 -0.882561 -10.577974 1.086890 2.771956 1.612901 10.196780 -10.715459 -7.917443 -4.175929 -13.149673 -10.669601 2.828148 -11.281505 -3.817116 1.060515 1.806985 -0.934923 1.545407 1.182128 -6.609314 1.089979 -3.943521 -2.692755 2.032866 5.864512 0.697475 11.966284 10.257429 1.911087 5.506849 5.522357 -4.613284 31.536257 -8.305805 -2.362562 0.262234 8.885544 -2.541241 3.716053 3.978089 -2.353690 -4.386871 -8.156669 7.665129 -3.275366 2.990865 -19.176657 -5.943649 -9.655298 -3.988011 2.979103 9.093142 0.199379 17.551469 -0.747302 1.249350 -19.341616 -0.029284 8.840867 0.319784 7.254457 7.181734 -10.110100 -13.459138 -0.704552 -1.377276 11.331521 -2.605963 -11.226555 -5.742678 0.000858 -2.993735 -3.122060 5.391996 13.785810 -5.428286 4.222247 0.179565 -2.521573 -0.274793 -5.877294 4.465897 4.174632 -6.442848 12.394235 -3.347985 19.516696 -1.613706 7.269138 -6.936929 1.215380 -1.253744 -2.689477 -3.034758 10.232783 3.896924 3.773150 1.804152 1.346789 -5.848976 4.617070 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 1.792258 5.518434 11.419563 2.417331 -7.521557 -7.539942 -2.671237 -14.195809 5.131059 4.561574 6.314659 -1.310466 3.597806 -0.196611 -2.107721 3.724369 4.615799 0.033335 -1.576054 -5.226059 -9.166766 4.077211 -0.796655 -0.148507 5.185098 -8.753592 6.917367 -0.156059 3.183930 2.690432 4.673747 0.772967 -2.046185 5.334706 1.400494 3.287612 1.127510 3.105430 -4.430566 2.734660 2.314427 -2.354311 5.028593 4.224650 5.984426 5.294553 2.123845 0.708396 -5.695857 -0.842571 -2.344529 5.970988 -3.605975 4.401306 -1.319190 0.945977 -0.528342 -5.531572 1.343794 0.211461 -1.921789 -3.910069 -4.415198 0.585785 -5.963416 -0.072251 -3.552622 -5.599405 -1.658250 -0.011759 4.059535 0.218490 -2.328774 0.151721 -7.298920 1.263557 3.567627 1.478334 6.533844 0.020710 0.156395 -1.926423 -6.525003 -7.730699 7.863262 3.185123 2.815776 0.727102 -1.916537 -4.016567 -1.861884 -1.701606 3.694344 7.601390 -7.798099 0.089336 -3.708922 -4.701468 -7.044175 -10.667635 1.137521 -4.637589 4.116731 -0.055880 -5.436380 2.868464 0.949019 2.486246 1.374265 -3.104990 0.372281 -3.731634 2.466497 9.178072 -0.094711 -6.513186 -2.426230 -2.588001 -0.150301 3.591122 2.933902 -1.236971 12.421726 3.797379 5.943502 -3.993136 -1.869552 1.054274 -0.553201 2.808009 4.809969 -7.338916 -4.385110 2.459941 -2.600280 -11.309711 -1.532765 -0.384379 4.930238 -3.737231 -2.822055 1.066357 -2.636023 0.883688 3.293679 1.659989 2.972550 -0.812361 -3.471275 0.917696 9.903890 -3.353706 2.971740 -5.122861 -2.358639 4.357940 -0.854515 1.896805 -0.037442 -2.024169 -1.160153 -4.418500 -0.079209 7.845042 -0.772743 -2.286954 2.198936 2.666817 -6.055578 -6.552720 -9.093462 -0.228098 5.880119 0.583616 9.050544 -7.339288 -0.817387 -3.080157 8.177395 0.613020 -1.328844 2.981401 -3.816697 3.061793 -4.868656 -8.436349 10.429745 8.622758 3.180569 -3.612457 3.589622 0.567389 -9.162200 -7.656767 -5.562635 1.471593 2.755915 -6.679911 -5.537185 1.927216 -7.931777 0.249908 -0.571206 2.707302 6.556256 -0.414790 3.127536 -0.909898 -3.426270 -6.244538 4.221737 -2.411890 -2.089970 0.787998 1.899385 0.232197 4.313190 -1.945954 -3.915874 -0.697989 -3.604037 -0.327529 3.950267 6.245146 -0.543408 11.466971 7.533488 -2.556297 3.603815 -0.373254 -3.789683 8.557393 -2.238891 1.452925 1.045594 3.020285 -1.951145 2.446436 7.054625 -3.246199 -6.194775 -5.708852 -1.008250 -1.552658 0.527298 -1.855064 -2.678561 -9.527687 -0.896876 -2.150436 7.618023 1.033112 10.586456 0.250274 2.531711 -9.434474 0.707784 4.607843 -1.823405 5.369764 3.936559 -7.001189 -2.986283 -2.222813 -7.250655 -5.092293 0.175231 0.865109 -5.630924 -0.791961 3.365496 -1.711868 1.204964 6.148914 0.357980 4.108021 -2.079942 0.968083 -3.407671 0.603157 10.684584 -0.135941 -4.484070 5.176087 1.610043 15.637676 1.822473 4.146882 -2.050648 -4.090848 1.184202 -4.598814 -5.504647 6.551352 5.077195 4.739122 0.257638 -0.382109 -0.062353 7.494659 -PE-benchmarks/z-algorithm-linear-time.cpp__std::remove_reference, std::allocator >&>::type&& std::move, std::allocator >&>(std::__cxx11::basic_string, std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/z-algorithm-linear-time.cpp___GLOBAL__sub_I_z_algorithm_linear_time.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -0.543991 1.351318 4.032629 3.449413 -2.794266 -3.415935 -1.151045 -2.434952 0.798345 0.411453 2.100124 -0.855633 0.742323 0.682049 -0.310952 -1.329121 1.298202 0.542626 -0.558175 -1.331130 -3.292664 2.070999 1.418264 -3.116218 0.835082 -2.220505 3.106505 1.734297 -0.026690 2.296359 0.255732 0.320667 -0.673793 1.632509 -2.097807 -0.627260 -0.456721 0.794246 -0.710301 0.107994 1.795302 -0.224319 2.520715 0.073558 0.670010 2.455294 0.847063 0.293504 -3.082744 -0.725959 -0.598255 0.906522 -0.925702 1.397247 -0.072461 1.005228 1.519224 -2.273997 0.041315 -2.612768 0.587562 -0.289618 -1.498231 -0.003608 -2.486611 -0.133928 -0.753662 -2.526333 1.371274 -1.002070 0.792615 -0.490943 -0.813723 -1.864007 -1.353527 0.753828 1.245687 0.870462 1.141252 0.454767 -0.189573 0.206924 -2.317354 -1.597463 0.256306 -0.606766 1.318260 0.599256 -0.307042 -1.790590 1.375746 -0.019429 0.215514 1.996796 -0.537153 1.003699 -1.034114 -1.095359 -2.886831 -2.801092 0.265990 -1.171581 1.393792 1.968240 -2.674510 0.396231 0.328339 0.790478 0.303292 -2.608417 -0.293420 -2.141023 1.103001 2.105464 -0.658576 -1.764977 -0.546655 -0.952412 0.348047 2.322225 -0.076039 -0.282336 2.614921 1.395164 0.816550 -1.810005 -0.260903 -0.459566 0.341156 1.029080 1.725512 -1.937017 -1.143053 0.000360 -1.365312 -3.589913 -0.157117 0.099659 1.897725 -0.105939 -2.677052 1.941048 -1.639483 1.266441 0.840173 2.360884 0.658962 -0.395019 -1.332293 0.530749 3.626132 -1.144187 1.359713 -1.228333 -3.821233 3.125488 0.686010 1.102245 0.528356 -0.743665 0.210249 -1.412776 0.803614 2.935032 0.121281 -0.249675 2.142398 0.092076 -0.921708 -3.180640 -3.509939 1.138298 2.027395 1.308437 5.501466 -2.995239 -0.706385 -0.577149 2.640575 -0.841064 -0.784790 0.126048 -0.277448 0.970531 -5.331359 -3.993759 3.162766 1.727507 0.204006 -0.224672 1.727265 -0.556338 -0.229110 -1.761220 -2.362282 1.176936 0.834931 0.819069 -0.013523 0.167700 -2.334064 0.698397 0.328285 0.994487 2.428260 -3.113773 -1.389616 -2.333645 -2.917871 -2.584540 0.753360 -2.625046 0.047442 0.708777 -0.173003 -0.148231 0.941089 0.365756 -1.988366 -1.248508 -1.044600 -0.281919 0.293857 1.810179 0.012196 4.018015 3.184988 -1.011867 0.879664 0.674051 -0.968912 7.114049 -2.083163 0.366160 0.150583 3.255062 0.121135 0.807006 2.727386 -0.733101 -0.960584 -2.230238 0.495663 0.180501 0.345367 -5.474242 -0.729519 -4.450323 -0.635833 -0.336521 3.264864 -0.058830 4.475012 0.146346 0.286711 -4.607601 0.015991 1.619655 -0.310376 1.776874 1.172892 -2.629897 -3.208522 -0.236296 -1.986737 1.919782 -0.243724 -1.205218 -1.659507 0.638905 -0.767628 -0.144012 1.000131 3.418235 -1.148715 0.342164 0.355819 -0.362113 -0.008534 -1.626527 2.123567 0.198845 -1.281641 2.997626 0.379136 4.874250 0.848778 1.869374 -1.154402 0.106662 0.406835 -1.425711 -1.543673 2.117726 1.197183 0.907687 0.696601 1.032670 -0.588956 1.787569 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.334665 0.830414 1.681651 1.126233 -0.872289 -1.404804 -0.450166 -1.512879 0.569578 0.100533 0.770335 -0.353166 0.439944 0.290573 -0.209704 -0.003478 0.586583 0.382957 0.016320 -0.492426 -1.107209 1.450254 0.295017 -0.826259 0.276112 -1.168762 0.897453 0.614366 0.803692 0.880170 0.048144 -0.003656 -0.038693 0.618228 -0.875776 -0.447881 -0.288993 0.380529 -0.964655 0.188052 0.209563 -0.076562 1.012274 0.034153 0.174435 0.711956 0.574252 0.166653 -0.721739 -0.098689 -0.603967 0.925074 -0.223180 0.678979 -0.226440 0.004071 0.352629 -0.473408 -0.011718 -0.352920 -0.045118 0.047446 -0.575967 -0.011897 -1.155427 0.037464 -0.613036 -1.044851 0.350210 0.036815 0.530687 0.131850 -0.054063 -0.769968 -1.403517 0.456736 0.384777 0.573505 0.462340 0.216755 0.267640 0.195860 -0.960373 -0.842368 0.522877 0.322470 0.448358 0.115825 -0.311173 -0.908238 0.211380 0.017725 0.157587 0.768191 -0.378562 0.760222 -0.965447 -0.290071 -0.935059 -1.568056 -0.125657 -0.618913 0.520227 0.163314 -0.326478 0.315238 0.447364 0.388713 0.326338 -1.175726 -0.011534 -0.426411 -0.067915 1.390518 -0.099394 -0.648864 -0.115719 -0.199212 -0.447337 0.845275 0.112848 0.124231 0.953506 0.636952 0.408303 -0.678831 -0.109376 0.054434 0.060095 0.532425 0.868225 -0.733637 -0.650244 -0.011666 -0.260031 -1.736008 -0.055856 0.466484 0.754248 -0.427008 -0.585805 0.471527 -0.644546 0.658182 0.466847 0.490355 0.497619 -0.268515 -0.445337 0.502944 1.726278 -0.558836 0.617592 -0.810132 -1.177075 1.231597 0.044998 0.622919 -0.201900 -0.153244 0.095281 -0.645474 0.320012 1.244182 -0.006167 -0.161886 0.891250 -0.059223 -0.601833 -1.345324 -1.344193 0.271624 0.775151 0.160099 1.928668 -0.891713 -0.515958 -0.092011 0.859110 -0.230602 -0.184099 0.306749 -0.521038 0.450011 -2.042200 -1.630795 1.430431 1.032503 0.089338 -0.241507 0.689989 0.248135 -0.460923 -1.148112 -0.820719 0.503850 0.271546 -0.648904 -0.578765 0.116444 -1.028217 0.324658 0.201291 0.344152 0.944897 -0.498502 -0.095711 -0.944537 -1.363437 -1.084266 0.729614 -1.047507 0.035327 0.341025 -0.033157 -0.251217 0.576578 -0.109641 -0.608973 -0.037263 -0.488663 -0.022996 -0.004718 0.634905 -0.188980 1.485654 1.427352 -0.077191 0.807710 0.400088 -0.687089 2.653810 -0.843067 0.115316 -0.054992 0.909801 -0.458162 0.551708 0.866710 -0.310696 -0.827284 -1.085753 0.167999 0.037371 0.084310 -1.268824 -0.565584 -1.391560 -0.329492 -0.039619 1.353505 0.139658 1.803359 -0.385072 0.293504 -1.964322 0.165486 0.464554 -0.063403 1.087517 0.556729 -0.999395 -0.912247 -0.182404 -0.797853 0.154579 -0.274116 -1.133426 -0.695352 -0.068880 -0.115712 -0.350531 0.367241 1.298815 -0.399102 0.562457 -0.288363 -0.228419 -0.427921 -0.288490 1.219019 0.011255 -0.606094 0.875837 0.002080 2.331409 0.184547 0.767046 -0.626833 -0.264265 0.205340 -0.820753 -0.581957 1.180753 0.566100 0.367424 0.173028 0.153961 -0.118706 0.640148 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.245541 2.080112 12.563429 7.867997 -5.855916 -6.115441 -2.945690 -6.379022 3.993207 1.593406 7.066983 -0.581442 2.105574 2.133021 -0.181467 -3.434879 2.337058 -0.517645 -1.716662 -2.762802 -3.166204 6.487158 6.096482 -9.858011 1.413233 -9.076927 5.596976 3.113532 2.478747 6.291507 -0.281570 0.535131 -0.612525 4.500005 -5.819371 -2.425307 -0.676521 1.713073 -2.749352 -1.610138 4.694513 2.929216 5.056697 0.350929 4.429212 3.907144 3.712823 -0.967410 -6.833366 -1.637454 -2.850176 6.347434 -3.430244 4.333881 0.406602 5.220909 0.695472 -6.827826 -1.484779 -10.899578 2.402668 2.832098 -3.308353 -0.502733 -6.065335 0.925441 -0.905976 -4.460844 3.492591 -2.944807 3.860808 -0.302264 0.668892 -5.361981 -4.556825 3.232682 0.595093 2.723036 2.546137 0.454900 -2.935785 0.923105 -3.319581 -3.982047 0.440407 -0.071169 0.673674 0.346274 1.697712 -3.195499 2.047055 -0.543629 -3.058023 6.121558 -5.206322 4.874164 -1.356368 -1.906481 -4.099460 -3.035420 -0.943774 -5.630969 2.803843 6.665540 -4.459938 2.116904 0.513981 2.840963 0.494861 -6.956072 0.407535 -1.642919 0.067246 5.092647 -4.012428 -2.787951 1.064537 -0.237279 0.025845 6.298275 -2.091649 2.344077 6.481865 4.438844 2.049335 -4.635764 2.117349 1.318528 3.263656 3.808320 4.850990 -5.722377 -3.020218 -0.143651 -0.742236 -10.224869 0.913540 3.127061 5.784020 1.357543 -9.959707 3.330768 -3.179490 7.246960 4.422262 5.509353 2.207006 -0.856909 -4.079121 2.046415 12.064552 -3.880329 4.779965 -3.186000 -7.755100 8.436735 -2.197898 5.893059 0.016541 1.139711 2.939189 -6.539292 -0.027835 8.240200 2.405758 1.418977 5.150260 -0.491968 -0.174504 -10.584177 -8.693355 -1.642226 2.671940 1.785349 13.356606 -5.998620 -3.254016 -2.810729 7.025287 -2.475144 -2.308453 -0.195449 -1.601576 2.177711 -14.096957 -10.244089 9.229415 9.876612 0.799118 0.179674 8.085608 0.476651 0.528283 -4.365217 -4.764201 3.616751 2.212561 3.435590 0.517067 -0.405973 -7.403155 -0.845159 1.092040 1.461558 5.223115 -5.710166 -4.282944 -0.043268 -8.584262 -5.101823 1.922987 -7.803444 -2.940589 0.414193 0.920323 -0.249605 1.507925 -1.405538 -4.720067 0.801539 -4.322453 -1.498526 1.658900 5.076706 1.066181 8.679033 7.530463 -0.288398 3.369700 2.508917 -3.646127 18.047316 -5.501613 -1.425355 -0.097781 5.488776 -0.865950 2.591066 3.201978 -2.064841 -3.197386 -6.226879 4.594486 -1.551438 2.139922 -12.101268 -5.537559 -7.026017 -2.187126 1.678301 6.801533 0.276900 14.091339 -0.540032 0.896462 -15.155408 -0.126068 6.288050 -0.224356 4.388770 4.739937 -5.852308 -11.822832 -0.895295 -2.479494 5.475468 -1.479789 -7.108127 -4.208107 -2.211805 2.223648 -2.964095 3.876959 8.949082 -1.794519 4.267058 1.211594 -1.868251 -1.057898 -3.201389 2.964688 2.704512 -4.380945 8.089647 -1.014088 14.522757 -2.177745 5.664353 -4.902528 1.811175 -0.960079 -2.523497 -2.840400 7.539858 5.155960 3.174997 1.102668 0.057924 -4.150833 3.865887 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.251679 0.805497 3.830433 1.623734 -1.666682 -2.378306 -1.021012 -3.533587 1.646735 0.800016 2.615700 -0.311288 1.208227 0.311599 -0.039111 -0.154746 1.093795 -0.430049 0.068667 -1.016044 -1.010844 2.927917 1.080979 -1.468138 0.465069 -3.194778 1.572701 0.835789 1.487498 1.945791 0.254917 -0.056778 -0.374920 1.195058 -1.270736 -0.105676 0.076862 0.750593 -1.459285 -0.100763 0.672753 0.159928 1.784903 0.010326 1.714444 0.758843 1.247697 -0.001785 -1.597137 -0.722208 -1.068291 2.234391 -1.108767 1.242969 0.017175 0.442447 0.032184 -1.409003 -0.470857 -1.971375 0.160754 0.154356 -1.196244 0.104280 -1.906374 0.511148 -0.969983 -1.284099 0.643413 -0.725592 1.402398 0.213635 0.299782 -0.818488 -2.714220 0.913589 0.353880 0.754218 0.920532 0.164786 -0.389263 0.168323 -1.469095 -1.724288 1.157885 1.193084 0.336124 -0.024902 -0.639146 -0.680609 0.100110 -0.147546 -0.177518 1.851605 -1.907522 1.206811 -0.848120 -0.768518 -1.390213 -2.264855 -0.076578 -1.786041 0.984283 1.125764 -0.789314 0.408362 0.048587 0.834072 -0.137888 -2.353834 0.339096 -0.576367 -0.050418 2.512812 -1.193192 -0.848013 -0.493137 -0.189678 -0.230500 1.703389 -0.007912 0.795281 2.183178 1.584954 1.029225 -1.657498 -0.140308 0.881772 1.132915 1.106985 1.307314 -1.857398 -1.133045 0.253373 -0.637289 -3.626490 -0.474197 1.159299 1.924430 -0.265084 -1.889765 0.665220 -1.060129 2.167926 1.785479 1.056407 0.742270 -0.037553 -1.437913 0.988173 3.748240 -1.176958 1.631654 -1.339659 -1.799286 2.412595 -0.905736 1.649268 0.052506 0.389124 0.188351 -1.860269 0.044538 2.517550 0.636932 0.663879 0.870993 0.257906 -0.632583 -3.069638 -3.213559 -0.433951 1.639072 0.439097 3.614087 -1.939068 -1.221047 -0.381598 2.288249 -0.251042 -1.084280 0.563328 -1.141123 0.925410 -4.132571 -3.232228 3.337921 3.486052 0.826865 -0.114236 2.144019 0.871133 -1.309054 -1.657008 -1.513570 1.410357 0.360744 -1.235256 -0.656027 0.119682 -2.476641 -0.369896 0.004025 0.637973 1.462792 -0.706075 0.066426 -0.193151 -2.294916 -1.485826 1.458177 -1.970250 -1.007239 -0.001350 0.215619 -0.057327 0.881008 -0.802477 -0.747371 0.695173 -1.578410 -0.111981 0.740287 1.283109 0.090567 3.149643 2.760797 -0.179137 1.427592 0.278665 -1.319700 4.569855 -1.519838 -0.147662 -0.137651 1.178735 -0.450387 0.950515 1.341910 -0.798157 -1.756731 -2.145108 0.703605 -0.209332 0.939640 -2.095207 -2.239668 -2.632409 -0.465982 0.419553 2.697929 0.321071 4.339096 -0.670843 0.748905 -4.602387 0.194964 1.440281 -0.128263 1.763641 1.103789 -1.730252 -2.555854 -0.404918 -1.491101 0.036776 -0.451394 -2.324102 -1.473886 -1.312512 1.218397 -1.163429 0.683748 2.142521 -0.316145 1.859368 0.163170 -0.576001 -1.136745 -0.127468 1.715909 0.435783 -1.505584 2.264262 -0.085227 5.207221 -0.633334 1.579356 -1.276957 0.509561 -0.354495 -1.445559 -0.839381 2.643012 2.066344 0.951419 -0.140309 -0.217062 -0.799119 1.249764 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp___GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/graph-coloring.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.584091 0.403055 2.708960 1.320072 -0.856556 -2.514184 -0.592519 -2.854698 1.607741 0.840667 2.467350 0.421936 1.652024 -0.422796 0.460817 0.309509 1.226700 -0.124879 -0.053300 -0.785178 -0.103716 2.849474 1.008876 -1.057119 0.307973 -1.625239 0.754401 1.151260 1.275619 1.709536 0.268750 0.010370 -0.179747 0.886593 -1.175433 0.305319 -0.414934 0.881727 -1.131934 -0.579492 0.353161 -0.216469 1.647952 0.323493 1.694631 -0.017664 1.724263 -0.196936 -1.018848 -0.946840 -1.253913 2.118470 -1.154098 1.156311 -0.677719 -0.011065 0.429904 -0.264627 -0.051869 -2.262009 0.333297 0.274244 -1.499750 -0.351668 -1.239548 0.318491 -0.590269 -1.057340 -0.099472 -0.663453 1.291060 0.009776 -0.117187 -0.793303 -2.954384 0.172665 0.119931 0.356545 1.097540 0.652794 -0.812615 -0.565695 -1.040299 -1.521508 1.848644 0.607600 0.310110 0.795379 -1.595009 -0.296972 -0.470684 0.219811 0.116511 1.188614 -1.681546 1.095005 0.671819 -0.620091 -0.683536 -1.171754 0.321599 -1.459987 0.284971 0.453334 0.510624 0.054625 -1.219494 0.410637 -1.083570 -1.817977 0.648700 -0.596260 -1.146021 1.464977 -1.215132 -0.268071 -0.191847 0.199311 0.237334 1.476246 0.454703 0.687122 1.343985 1.125300 0.884755 -1.585439 -0.009682 0.836550 1.502262 1.069145 0.406945 -0.822156 -1.052588 0.534096 -1.091995 -3.081343 -0.543950 2.158111 1.709479 0.177656 -1.616633 0.791861 -0.758764 1.534305 1.955584 0.836312 0.673594 0.390486 -1.434785 0.650211 2.896861 -1.129833 1.613563 -0.250606 -1.072455 2.261368 -1.304172 1.201325 0.153420 -0.100435 0.126869 -1.020513 -0.185042 2.212943 0.913464 0.922831 0.085910 0.398860 -0.627707 -2.411146 -3.216643 -0.962915 1.918899 1.054309 2.767622 -1.286167 -0.946605 0.012898 1.256720 -0.780537 -1.343886 0.460350 -1.071279 1.027439 -4.173916 -2.357234 3.430045 2.649440 1.213444 0.076763 1.627544 1.189727 -0.730773 -1.166180 -0.869709 1.115769 0.309337 -1.418024 -0.252837 0.061349 -2.383523 -0.530013 -0.271665 0.186609 -0.226623 -0.300177 0.994030 -0.342582 -1.349075 -0.555394 0.526362 -1.441659 -0.881140 -0.488888 0.011704 0.055324 0.454705 -0.634447 -0.158126 0.760027 -1.743468 -0.344371 0.112340 0.978417 0.937869 2.677484 2.679919 -0.441599 1.430122 -0.053502 -1.371709 3.161157 -1.320951 -0.099496 -0.142575 1.444428 0.391958 0.940069 1.188306 -0.718801 -1.001953 -2.020580 0.205723 0.979499 1.191032 -1.156703 -1.696030 -2.187916 -0.107474 0.362993 2.672678 -0.655485 3.505963 -1.140719 1.007688 -3.862981 0.387472 0.796188 -0.330765 1.160437 0.791063 -1.381893 -1.872236 -0.580749 -1.174590 -0.348496 0.002772 -1.377724 -0.964577 -1.400549 0.823283 -2.136101 0.485631 0.939400 -0.594635 1.893134 -0.076577 -0.207564 -0.999083 0.534062 1.463624 0.585658 -1.439233 1.533293 -0.022735 4.297350 -0.689489 1.762876 -1.159577 1.152848 -0.816406 -1.383335 -0.801653 2.422688 2.467039 0.516027 0.178384 0.286940 -0.265570 1.251668 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -6.550734 4.128783 28.088799 11.496375 -10.633401 -16.302058 -8.407344 -24.234169 12.163786 8.352111 21.454459 -2.297589 8.875701 1.916325 1.345380 -2.795684 8.277286 -5.388587 -0.485345 -6.669170 -4.345026 18.463405 8.828404 -10.952011 2.284147 -20.173090 7.828529 7.543977 6.941285 10.893263 2.512725 0.218788 -2.884580 8.690379 -10.639738 2.286293 3.276328 6.082671 -7.537822 -4.070234 5.555844 2.893074 12.021114 -0.872958 15.438111 3.498082 9.730246 -2.405433 -14.339809 -6.882129 -5.681764 17.822522 -8.559655 8.015805 4.046617 4.513893 -0.019699 -12.674493 -3.507475 -18.049448 3.520441 3.359419 -9.554468 0.177217 -9.985303 3.654163 -2.982960 -6.597561 5.637178 -7.794252 9.364942 -1.429814 1.719543 -4.066408 -15.816526 6.829844 2.527605 2.536431 6.615777 2.820604 -3.606603 -0.095515 -7.617888 -12.186970 8.683825 8.000270 1.735230 1.658259 -7.075021 -0.890931 0.796380 -2.258329 -2.679827 14.224780 -14.943603 7.557253 0.890901 -7.376447 -10.889545 -11.550095 0.407527 -14.207802 6.076351 11.038136 -6.283568 2.165354 -4.958813 5.715270 -4.605585 -16.027552 3.387448 -5.283084 0.199504 14.459868 -12.316395 -4.601096 -3.275798 -0.916109 1.128116 11.864664 0.202019 6.166370 14.448590 10.376245 8.029068 -13.299987 -0.868071 6.602241 11.373765 7.680269 6.662820 -14.389679 -6.566038 2.136757 -6.764916 -24.967176 -5.224368 8.981390 13.964254 1.856079 -16.021266 4.219062 -5.807218 16.015985 12.192802 9.502166 3.174497 1.687685 -11.090607 4.136736 23.148037 -8.824487 12.787201 -4.319751 -12.488754 14.276136 -8.074458 12.598257 3.650079 3.194981 2.122640 -14.277027 -1.254173 18.255478 6.534807 7.550322 1.441029 2.401583 -3.742011 -21.312465 -26.779182 -3.954350 10.558774 4.052751 24.998270 -14.203371 -12.259197 -2.766270 18.908480 -3.954697 -10.089455 3.489349 -7.135654 7.195545 -27.734207 -22.443974 23.902970 25.807570 7.034296 -0.935431 17.846983 3.846122 -11.168040 -9.885207 -10.680762 11.237326 2.762049 -5.408072 -0.623337 0.736115 -17.919679 -4.004179 -2.736818 3.527507 5.153172 -5.252437 2.138973 1.967425 -13.748583 -5.653151 7.167026 -11.871780 -8.508373 -3.438693 2.683178 0.758826 6.291794 -8.198112 -6.747764 5.646109 -13.600790 -2.354985 6.225317 9.278634 4.452379 24.903823 19.758721 -1.854176 13.091015 -0.174960 -8.323303 30.960554 -11.635805 -2.604880 -1.606173 8.393250 -1.010621 5.668408 9.123100 -5.825760 -11.411706 -14.793178 4.074199 -1.456271 8.763099 -15.850169 -17.020711 -19.352221 -2.492809 3.800778 18.544612 0.532750 31.054711 -3.826964 5.655378 -33.603545 1.131085 10.993212 -2.396019 10.340373 7.548421 -13.336882 -23.988295 -2.393369 -10.216543 -1.399953 -0.915766 -14.426471 -9.784082 -13.065375 12.705324 -9.486601 4.669090 14.107212 -0.537103 12.528988 5.333303 -4.163441 -6.292309 -0.860632 10.403173 3.371092 -11.752612 18.132838 -0.554685 39.204949 -6.566383 12.408384 -9.402641 6.062620 -3.929254 -8.633000 -5.657595 18.200138 17.818063 7.258758 -3.310483 -0.452635 -9.607591 9.516670 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/graph-coloring.cpp__main = -4.051025 5.848378 27.174192 8.934548 -13.231186 -19.928922 -7.711763 -28.482763 12.452289 8.407019 20.206430 -2.457475 8.916094 0.042162 1.025886 3.911139 10.383195 -4.173191 -2.088367 -9.449349 -6.787850 18.451383 5.565987 -6.389996 5.600447 -19.375458 9.727696 5.458556 8.297760 12.189103 6.409545 -1.255570 -3.065541 9.493206 -5.115018 10.017255 2.575538 5.887164 -10.899258 0.629880 3.266827 -0.196013 13.295769 1.432393 17.767180 7.671953 11.088052 0.057063 -15.364227 -6.188573 -8.880035 19.960338 -10.439413 10.067461 -0.038584 3.004861 -0.813787 -11.236451 -2.810325 -12.425456 -1.546460 0.566463 -11.047733 0.030901 -13.310565 2.415525 -5.823239 -7.473259 1.383299 -6.115274 10.109656 -0.642709 -1.107551 -1.074749 -18.693176 4.898267 4.249984 4.905445 9.825906 -0.102830 -1.440469 -2.966547 -8.705512 -13.845102 12.401176 7.206367 4.332930 3.106418 -8.191678 -3.181080 -3.174033 -1.636733 1.245337 13.838756 -16.530693 5.297363 -1.798854 -7.900199 -12.471448 -16.709414 1.976640 -12.164955 7.038678 6.381034 -2.754475 1.767247 -3.940796 6.283136 -3.853875 -12.965325 3.323078 -4.684834 -1.099446 17.273540 -9.281437 -7.395366 -4.590838 -1.970023 0.016396 12.044252 3.333352 4.088215 16.557659 11.413006 15.470004 -13.095708 -2.466653 4.837665 10.138889 8.893093 8.293068 -12.507628 -8.043596 4.005994 -8.883257 -25.590849 -6.235068 9.404644 16.443465 0.868719 -13.155046 2.393155 -6.745244 14.795696 10.512234 7.284112 5.463933 0.588904 -12.203604 4.968143 25.800216 -8.384043 12.247245 -7.517526 -8.413898 13.127202 -6.178854 9.517869 3.727561 -0.656539 -0.451633 -12.447732 -0.944091 18.134321 7.520495 4.218316 1.085809 4.956402 -8.264267 -20.876697 -25.829864 -4.638067 12.766722 2.532958 23.201494 -14.735669 -9.597312 -4.402913 17.605782 -3.358936 -9.685865 4.645525 -10.103995 8.402617 -25.903851 -20.719179 29.049331 28.141468 10.436038 -2.088295 15.049432 7.600212 -17.389979 -11.246101 -10.856881 9.659610 2.666152 -13.220994 -5.079544 1.599290 -20.068744 -4.237505 -2.675054 5.407714 5.750161 -0.081482 4.649082 0.492819 -12.630935 -7.163098 7.324869 -11.354424 -7.867187 -0.952827 2.206360 1.102786 7.432917 -8.645861 -5.706903 5.936347 -14.669376 -1.417582 5.744223 12.289805 4.089854 24.842205 21.339938 -2.811196 15.570294 -0.559195 -11.307698 27.063771 -8.473552 0.633105 -1.703553 7.605912 0.516995 5.386619 11.216708 -7.212309 -13.204039 -16.051057 0.496988 1.051366 9.377795 -9.558767 -16.779143 -21.728084 -0.551592 1.678980 20.825338 0.874002 29.847564 -4.162199 7.176200 -33.296425 2.426517 11.413181 -1.849152 9.461923 7.968816 -13.853484 -18.897989 -2.121737 -13.711844 -7.047945 -1.037010 -10.105134 -10.600716 -12.276427 13.488390 -9.168501 2.614355 14.295722 -0.749702 15.067235 3.293339 -3.183166 -8.159984 -0.362014 15.957038 3.428763 -12.025784 15.283583 2.701303 42.225972 -3.448126 11.997330 -8.384685 3.133914 -1.832228 -11.184582 -8.414075 18.663300 18.778066 7.647765 0.156382 -0.756292 -5.564608 11.739276 -PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -0.819384 0.136482 2.966130 0.956317 -1.410560 -1.379655 -0.673133 -2.943557 1.178942 0.848222 2.458362 -0.219157 0.996582 -0.671336 0.005321 -0.392515 1.105896 -0.574175 -0.168833 -0.847014 0.245430 1.329374 0.599663 -0.962680 0.416494 -1.837325 0.558659 0.659282 0.727203 1.185549 0.144490 -0.307750 -0.736747 0.840099 -0.699063 0.352476 0.949146 0.658653 -1.162310 -0.400772 0.275120 0.104552 1.245835 -0.784739 2.059324 0.138139 0.831890 -0.154274 -1.977819 -0.875138 0.053545 1.499645 -1.108533 1.074454 0.694585 -0.036566 -0.447629 -0.860225 -0.349893 -2.126171 0.521131 -0.009683 -0.180518 -0.004730 -0.872754 0.200984 0.158092 -1.130071 0.719602 -1.461286 0.548104 0.120590 0.464010 0.444936 -1.179086 0.820804 1.047420 0.462153 0.545611 0.340159 0.365540 -0.569936 -0.436318 -0.973429 0.382906 1.030124 0.570684 0.382527 -1.137660 0.582816 0.959606 0.011587 -0.101404 1.138285 -1.647329 0.000818 -0.437349 -0.789391 -0.919967 -1.708626 -0.007979 -1.205383 0.855376 1.162357 -1.304938 0.667914 -0.691025 1.066688 -0.726218 -1.253172 0.337502 -0.621746 0.330381 1.728173 -1.431920 -0.857159 -0.799230 0.033303 0.246560 0.723349 -0.504937 0.644164 1.268555 1.324395 1.380298 -1.920832 -0.277834 0.635497 1.407086 1.028815 0.774514 -1.209470 -0.492477 0.203776 -1.625642 -2.669187 -0.915673 0.253640 1.851323 -0.027286 -1.602386 0.171816 -1.068390 2.423305 1.202909 0.859498 0.333137 0.428436 -1.430171 0.565035 1.707816 -0.831309 1.462996 -0.275418 -0.953355 0.536400 -0.100291 1.189738 0.146347 0.044707 0.343383 -1.606884 -0.129053 1.815653 1.079994 1.055586 -0.889690 0.385379 -0.527960 -2.474901 -2.894678 -0.611672 1.331559 0.555582 2.147004 -1.563191 -1.822438 -0.418066 1.933504 -0.459060 -1.408816 0.415184 -1.086650 0.985506 -2.397521 -2.424011 2.857579 3.617591 1.001127 0.250639 1.828076 0.059959 -1.970053 -0.635030 -0.679248 0.854758 0.118842 -2.125483 -0.658152 0.453553 -1.827121 -0.659027 -0.041783 0.479659 0.410844 0.090296 0.687596 1.027971 -0.873085 -0.384626 0.922360 -1.036201 -0.888745 -0.142294 0.388224 0.871386 0.919531 -1.469514 -0.896881 0.441864 -1.846640 -0.113163 0.360968 1.327608 0.585946 2.409279 2.092962 -0.325293 1.615206 -0.194238 -1.286933 2.540541 -1.289814 0.030560 -0.058259 0.658035 0.011799 0.600807 1.312489 -0.880682 -0.775887 -1.794329 -0.555522 -0.085023 1.404476 -1.537282 -2.376141 -1.794207 0.344600 0.236875 1.292706 0.078246 3.143209 -0.389542 0.562311 -3.607288 -0.185895 1.038501 -0.059935 1.227045 0.794386 -1.348753 -3.113909 -0.108259 -1.554654 -0.750744 -0.183175 -0.997279 -0.760221 -1.332240 2.183486 -0.438831 0.240222 1.135942 0.068082 2.064436 0.886856 -0.311583 -0.516683 -0.231751 0.954235 0.472040 -1.188531 1.670474 0.548303 4.561535 -0.221684 0.771560 -0.906225 0.553529 -0.044729 -1.110816 -0.913460 1.907481 2.398436 1.184930 -0.620068 -0.329299 -1.173075 1.405114 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/graph-coloring.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.063568 0.265041 0.769921 0.241068 -0.351293 -0.645405 -0.113357 -0.857622 0.429571 0.243443 0.540157 0.096186 0.565992 -0.236154 -0.068758 -0.127949 0.459695 0.144471 0.063357 -0.258250 -0.071413 0.623576 -0.067266 -0.142247 0.144407 -0.448289 0.493869 0.208624 0.432852 0.635819 0.142832 -0.005586 -0.321676 0.216402 -0.097663 -0.069869 0.071281 0.263218 -0.458318 -0.079584 -0.010122 -0.217429 0.507111 0.126199 0.349739 0.074388 -0.048142 0.062059 -0.229672 -0.264959 -0.063909 0.077326 -0.196460 0.376519 -0.082169 -0.240348 0.089293 0.183058 0.201746 -0.380955 0.174003 -0.236868 -0.141417 -0.014314 -0.439927 -0.010294 -0.396757 -0.439536 -0.123660 -0.430160 0.158235 0.019979 0.110395 -0.120256 -0.914417 0.044532 0.191143 0.104383 0.413265 0.340336 -0.060840 -0.285706 -0.402756 -0.474234 0.331091 0.372139 0.099349 0.338615 -0.558082 -0.265904 0.109974 0.096434 0.271023 0.278175 -0.302210 0.178151 -0.330258 -0.113684 0.023610 -0.864122 0.125184 -0.257553 0.126296 -0.032848 -0.102020 0.014123 -0.107751 0.196824 -0.064295 -0.308694 0.355961 -0.281317 -0.193290 0.656606 -0.104320 -0.347541 -0.344742 -0.075185 0.145598 0.341026 0.030134 0.062845 0.159328 0.243560 0.385411 -0.510375 -0.103253 0.411646 0.112782 0.176986 0.119644 -0.218320 -0.208981 0.218155 -0.485743 -0.831664 -0.221736 0.185545 0.446886 -0.214024 -0.141916 0.108993 -0.456285 0.179088 0.452819 0.219551 0.235217 0.107026 -0.388423 0.124987 0.476500 -0.228321 0.285436 -0.072048 -0.301093 0.325935 -0.003110 0.257163 -0.277171 -0.141368 0.031591 -0.154946 0.118752 0.583496 0.026112 0.217653 -0.105876 0.112645 -0.433853 -0.580009 -0.767259 -0.118784 0.785314 0.367633 0.556025 -0.418846 -0.135223 0.033875 0.478436 -0.002589 -0.287563 0.265006 -0.231363 0.328565 -1.033058 -0.646240 0.784146 0.683658 0.305242 -0.172890 0.053940 0.166203 -0.303988 -0.443406 -0.291514 0.099994 -0.115030 -0.670205 -0.328524 0.134370 -0.556616 -0.027519 0.181984 0.093696 0.333811 -0.109028 0.377706 -0.183439 -0.096426 -0.481476 0.433464 -0.231498 -0.111378 -0.007413 0.007762 0.089365 0.238145 -0.136003 -0.140910 0.239897 -0.236922 -0.024552 -0.046866 0.207947 -0.023178 0.698284 0.511236 -0.161503 -0.018140 0.000554 -0.440581 1.052838 -0.424964 0.139353 0.039899 0.309284 0.098121 0.288397 0.439311 -0.274352 -0.230834 -0.621055 -0.393518 0.200396 0.296407 -0.366499 -0.548621 -0.650505 0.193156 -0.224704 0.653703 -0.046965 0.921249 -0.288496 0.222136 -0.639184 0.075399 0.309583 -0.148506 0.511549 0.201830 -0.406440 -0.311412 -0.147526 -0.576476 -0.099416 -0.050275 -0.251170 -0.188988 -0.081292 0.149639 -0.226605 0.081819 0.222667 -0.213470 0.554069 -0.169556 0.007931 -0.385151 0.122413 0.325931 0.000000 -0.340144 0.389277 0.164606 0.897382 0.025088 0.275164 -0.161390 0.202567 -0.179614 -0.570297 -0.362947 0.640753 0.520702 0.352783 -0.030649 0.078136 0.012974 0.344791 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = -0.260628 0.333435 1.731486 0.416982 -0.693480 -1.566681 -0.361392 -2.154712 1.107542 0.594881 1.592895 0.015094 1.162509 -0.563572 0.066883 0.262515 0.999716 -0.054182 0.005735 -0.625012 -0.156563 1.600647 -0.024764 -0.219994 0.381962 -1.174297 0.565788 0.509415 0.783482 1.027856 0.386818 -0.027179 -0.412835 0.470452 -0.230745 0.419658 0.316204 0.415839 -0.980759 -0.238450 -0.107865 -0.388548 1.028892 0.101857 1.189717 0.007513 0.508063 0.056919 -0.692431 -0.557550 -0.371104 1.008559 -0.504996 0.666817 -0.015988 -0.295466 0.126242 -0.165914 0.133670 -0.917293 0.102007 -0.342163 -0.668444 -0.050098 -0.739219 0.125034 -0.483472 -0.669015 -0.120355 -0.779769 0.483191 -0.016878 0.007930 -0.046738 -1.772357 0.127496 0.444384 0.171886 0.734030 0.455535 -0.083829 -0.562200 -0.772390 -0.967390 1.153984 0.822338 0.327812 0.604646 -1.330160 -0.153374 -0.113089 0.011184 0.456496 0.648528 -1.104328 0.143254 0.052666 -0.531127 -0.444586 -1.475754 0.284207 -0.649887 0.260909 0.084181 -0.021211 0.179774 -0.570742 0.428426 -0.494654 -0.736724 0.622089 -0.556868 -0.348303 1.322398 -0.544364 -0.562412 -0.754824 -0.078178 0.131148 0.793556 0.141478 0.261172 0.822135 0.639736 0.871160 -1.028365 -0.304792 0.737765 0.756707 0.488446 0.290833 -0.674977 -0.516172 0.429992 -1.028491 -1.903608 -0.699379 0.616246 1.096338 -0.179508 -0.632466 0.230673 -0.571439 0.894724 1.042755 0.313008 0.290722 0.249095 -0.990679 0.306089 1.325833 -0.614142 0.870092 -0.316218 -0.507758 0.688229 -0.299832 0.488664 -0.078991 -0.252521 -0.109393 -0.449035 0.088829 1.198504 0.376553 0.446706 -0.519716 0.395880 -0.785072 -1.331916 -2.089026 -0.408896 1.357826 0.641152 1.586507 -0.947757 -0.780562 -0.169430 1.051753 -0.276139 -0.834761 0.549879 -0.884798 0.679948 -2.074266 -1.537023 2.208398 1.878724 1.014713 -0.139863 0.799409 0.425276 -1.164818 -0.713860 -0.551240 0.475916 0.073484 -1.704029 -0.483571 0.226155 -1.407989 -0.316784 -0.157788 0.265019 0.175277 0.123171 1.122291 -0.265989 -0.392830 -0.511234 0.717663 -0.472583 -0.427878 -0.179448 0.064437 0.254489 0.629840 -0.624017 -0.220210 0.467857 -0.978824 -0.081697 0.116724 0.660358 0.359559 1.800464 1.631412 -0.233949 0.874476 -0.228415 -0.909472 1.655612 -0.686464 0.203829 -0.072457 0.487340 0.242048 0.497659 0.978237 -0.519504 -0.668608 -1.203076 -0.452710 0.389282 0.712247 -0.503058 -1.375602 -1.530694 0.159412 -0.152301 1.526030 -0.163400 2.115550 -0.618449 0.553461 -2.145897 0.186724 0.636138 -0.234972 0.800311 0.382534 -0.972753 -1.047972 -0.182952 -1.195523 -0.870915 -0.001279 -0.627504 -0.593348 -0.868371 1.011250 -0.952821 0.079101 0.602128 -0.077916 1.292874 0.024991 -0.023860 -0.772046 0.356542 0.994276 0.048203 -0.736065 0.815064 0.331462 2.652853 -0.143851 0.702180 -0.481547 0.601094 -0.321560 -1.181110 -0.666571 1.293979 1.513637 0.543455 -0.174701 0.046749 -0.159922 0.927530 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = -1.833463 0.080165 4.861780 1.323895 -2.413272 -3.824522 -1.311291 -5.884188 3.436727 1.949832 5.106715 -0.053932 3.106360 -2.044827 0.115209 0.317262 2.608690 -1.145123 -0.013080 -1.687228 -0.493106 4.714631 0.525371 -0.883077 1.106233 -3.665685 2.116207 0.424757 1.482937 3.117444 1.203241 -0.093978 -1.283324 1.323578 0.371580 2.421452 1.199642 1.235357 -1.759471 -0.903164 0.346360 -1.678681 2.496904 0.149529 4.109964 -0.190074 1.317001 -0.272507 -2.779096 -1.763673 -0.785839 2.341559 -2.345083 1.566616 0.665169 -0.268635 0.287497 -1.245098 -0.152313 -3.682894 0.053521 -1.858368 -2.121588 0.135264 -1.957211 0.722750 -1.349483 -1.058628 -0.310638 -2.676505 1.371436 0.170703 0.341423 0.690659 -3.979918 0.415116 1.139554 0.122516 1.894355 1.212042 -0.819443 -1.661218 -2.149596 -2.670192 3.218256 1.804407 0.736261 1.157611 -3.165688 0.660403 -0.388365 -0.026580 0.903191 2.147793 -3.719315 -0.203822 1.057158 -1.695071 -0.990410 -3.881383 0.728007 -2.255537 0.721459 1.532346 -1.382808 0.370951 -1.994880 1.281012 -1.740299 -2.119727 1.833170 -1.687633 -0.521725 3.112374 -1.925121 -1.394147 -2.480173 -0.241808 1.239087 2.226445 0.292648 1.063968 2.921395 1.869035 2.859718 -2.833402 -0.901940 2.359400 2.771623 0.968139 0.623558 -2.140494 -1.346793 1.221184 -2.579388 -5.057858 -2.456989 1.527341 3.131922 0.181604 -2.509642 0.482516 -1.129696 2.942280 3.261065 1.142790 0.364621 0.980976 -3.091966 0.726891 3.816582 -1.600167 2.310493 -0.804477 -1.593369 2.467397 -1.219653 1.203930 0.084352 0.035322 -0.485492 -1.883600 -0.002078 3.191719 1.001057 1.487533 -2.045011 1.337005 -1.575365 -3.939229 -6.124379 -1.299548 4.175496 2.369513 4.788420 -3.093488 -1.990886 -0.542608 3.050520 -0.144840 -2.710033 1.136658 -2.335490 1.787875 -6.278331 -4.715194 6.742713 5.409771 3.081119 0.141062 2.536093 1.127337 -3.692263 -1.409502 -2.189362 1.766851 0.198192 -3.983947 -0.830807 0.704651 -4.106008 -1.616633 -0.756367 0.790621 0.811228 -0.405533 2.644456 0.081774 -0.527359 -0.985938 2.123869 -1.191539 -2.094362 -0.891761 0.288846 1.283992 1.761943 -1.561179 -0.334116 0.823473 -2.857456 -0.500033 0.973660 1.921140 1.178200 5.294063 5.298437 -0.954003 1.517744 -0.940557 -2.141091 4.256674 -1.697144 0.228772 -0.273843 1.084701 1.369160 1.010961 3.096586 -1.411541 -1.925063 -2.969911 -0.756436 0.681722 2.219156 -2.488872 -4.393742 -4.483588 0.584243 -0.014562 4.109834 -0.109732 6.428102 -1.360535 1.356584 -6.610671 0.302844 2.803154 -0.479168 2.102538 0.875103 -2.564576 -3.338887 -0.629064 -3.087324 -1.852784 -0.161733 -1.154395 -1.816090 -2.762116 3.724013 -2.572837 0.221830 1.632138 0.343659 3.804989 1.233325 -0.084078 -2.326913 0.922335 2.039768 0.384139 -1.897991 3.009713 1.071116 7.429333 -0.918396 1.383935 -1.292880 2.446197 -1.396572 -3.218407 -1.498720 3.246923 4.566539 1.532541 -0.705054 -0.070052 -1.002307 2.722099 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/graph-coloring.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.137287 0.402115 1.653936 0.705834 -1.091195 -1.487060 -0.398140 -2.022887 1.172423 0.480308 1.081101 0.117626 0.939750 -0.721470 -0.208741 0.428360 1.058691 0.194482 -0.109972 -0.756774 -0.427247 1.343372 0.169122 -0.555796 0.621181 -1.149262 1.030201 0.027100 0.741718 1.198311 0.539480 -0.069429 -0.460138 0.639556 0.469521 0.825635 0.293980 0.440473 -0.926998 0.059536 0.041888 -0.706437 0.925330 0.447800 1.193763 0.168700 0.395934 0.076206 -1.009485 -0.390386 -0.415576 0.700366 -0.881013 0.769993 -0.136005 0.085531 0.102769 -0.318303 0.183453 -0.821106 -0.142757 -0.709559 -0.839593 0.064073 -1.030483 0.137735 -0.693267 -0.623391 -0.555884 -0.464451 0.452774 0.221667 -0.054725 0.141375 -1.623889 -0.163494 0.334005 0.354292 1.034110 0.321188 -0.172091 -0.855768 -0.962780 -1.077195 1.200543 0.293291 0.311196 0.567830 -0.758317 -0.312183 -0.249567 0.130494 0.578501 0.738877 -1.165474 -0.064018 -0.179509 -0.432693 -0.231000 -1.725949 0.279063 -0.658967 0.220694 -0.080701 -0.426008 0.202004 -0.344040 0.565144 -0.312632 -0.444805 0.544260 -0.438662 -0.484864 1.256722 -0.128140 -0.766307 -0.707784 -0.208912 0.325691 0.809416 0.185625 0.256847 1.010252 0.696981 1.032280 -0.920759 -0.321392 0.549277 0.477969 0.404639 0.518882 -0.557586 -0.682589 0.490038 -0.684404 -1.789323 -0.595122 0.454436 1.013018 0.093096 -0.565078 -0.213684 -0.611210 0.543252 0.690764 0.439919 0.274858 0.102513 -0.910843 0.247097 1.385998 -0.595427 0.646756 -0.359598 -0.142732 0.742765 -0.317942 0.247066 -0.566293 -0.430704 -0.089980 -0.417654 -0.032208 1.197106 0.032414 -0.008609 -0.292857 0.433119 -0.933902 -1.311341 -1.667778 -0.334071 1.589228 0.533644 1.206461 -1.076971 -0.282196 -0.355898 0.821626 -0.008947 -0.468276 0.353073 -0.892934 0.716544 -1.809261 -1.483666 2.227115 1.390517 0.888388 -0.110981 0.270296 0.481914 -1.230186 -0.798903 -0.668118 0.262650 0.063202 -1.328757 -0.779133 0.314834 -1.501795 -0.357145 0.174517 0.384352 0.475480 -0.048413 0.862001 -0.039099 -0.157500 -0.800610 0.675340 -0.457614 -0.463478 0.000350 0.055297 0.371782 0.628094 -0.245218 -0.187201 0.270421 -0.639369 -0.209733 0.188391 0.813691 0.228037 1.619699 1.722185 -0.257484 0.357812 -0.060973 -1.012221 1.546905 -0.503844 0.423936 0.033660 0.331327 0.301789 0.347508 1.231031 -0.561862 -0.591482 -1.101753 -0.707781 0.358416 0.768997 -0.529357 -1.078547 -1.298842 0.162735 -0.164840 1.331474 -0.132991 1.759397 -0.527138 0.550246 -1.779150 0.188341 1.114897 -0.227477 0.804303 0.480400 -0.917824 -0.922455 -0.375512 -1.136670 -0.448160 -0.242009 0.069532 -0.620885 -0.210759 0.777802 -0.677411 0.108567 0.649101 -0.044581 1.311842 -0.134499 0.222255 -0.714685 0.222645 0.881274 0.100931 -0.718942 0.758707 0.578221 2.307591 0.137421 0.487507 -0.383670 0.178755 -0.301551 -1.113530 -0.782972 1.222631 1.355106 0.529365 0.183840 0.001103 -0.096921 1.050612 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/graph-coloring.cpp__std::allocator >::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.463800 0.313980 2.643212 1.367229 -1.312725 -2.373463 -0.603398 -3.583389 2.123469 1.115596 2.492040 0.529394 2.115575 -1.268924 -0.144262 -0.140217 1.735207 -0.070946 0.147198 -0.959726 -0.343800 3.547639 0.190350 -0.547788 0.378110 -2.067212 1.655164 0.767873 1.782212 2.203294 0.607047 0.053874 -0.687345 0.725743 -0.490506 0.360235 -0.379300 0.973438 -1.538790 -0.720340 0.502212 -1.134767 2.193680 0.293100 1.687595 -0.655400 1.010614 -0.205669 -1.016040 -1.119355 -0.971660 1.030678 -1.039107 1.182364 -0.449649 -0.847462 0.591306 0.355555 0.277826 -1.326897 0.267843 -0.768920 -1.173707 -0.145128 -1.488667 0.314722 -1.436444 -1.103562 -0.291417 -1.453103 0.923075 0.256252 0.227963 -0.725401 -3.725220 0.260854 0.535224 0.075243 1.340069 1.602336 -0.415263 -1.018891 -1.630090 -1.729991 1.999216 1.325084 0.113562 0.983940 -2.222641 -0.678415 -0.102475 0.415749 0.785609 1.070040 -1.862474 0.648284 -0.371629 -0.735787 -0.136262 -2.554497 0.449617 -1.374877 0.384519 0.268913 -0.422804 0.194556 -0.461240 0.299585 -0.719990 -1.671989 0.844218 -1.014654 -0.720872 2.466671 -0.828513 -1.089722 -1.412688 0.096025 0.385025 1.177535 0.309799 0.636369 1.508171 1.005912 1.461695 -1.976798 -0.262241 1.690616 0.971925 0.591705 0.169627 -0.686783 -0.934508 0.737813 -1.245135 -3.344315 -1.298656 1.456358 1.854481 -0.398707 -0.686766 0.546211 -1.021713 1.322201 2.171788 0.332921 0.817385 0.742739 -1.606770 0.791670 2.453604 -0.807676 1.135642 -0.817616 -1.348013 2.292634 -0.775654 0.999679 -0.629254 -0.064067 -0.226036 -1.005665 0.559067 2.241910 -0.210926 0.724442 -0.561555 0.618771 -0.906307 -2.363417 -3.570880 -0.533683 2.665611 1.919781 2.733261 -1.669932 -0.496266 0.351438 1.277199 0.157484 -1.396803 1.135966 -1.340849 1.232036 -4.637592 -2.803510 3.623289 2.653260 1.263912 -0.101768 0.907901 1.020289 -1.207496 -1.399480 -1.366257 1.114062 0.441534 -2.446063 -0.556649 0.462826 -2.332521 -0.702925 0.210833 0.198911 0.844414 -0.859209 1.651809 -1.090932 -0.710704 -1.347469 1.988787 -1.176830 -0.799554 -0.537659 -0.054546 0.209489 1.094310 -0.285539 -0.048675 0.367328 -1.058983 -0.253903 -0.073056 0.803674 0.119379 2.486251 3.150760 -0.918130 0.551975 -0.248203 -1.418626 3.551201 -1.698455 0.030814 -0.020838 1.022634 0.607369 1.126491 1.662829 -0.938642 -0.875089 -2.147078 -0.490768 0.816393 1.218873 -1.765093 -1.877108 -2.850597 0.258991 -0.414523 2.712519 -0.085221 3.810166 -1.648422 0.743021 -3.467886 0.274784 1.187534 -0.116262 2.061391 0.551408 -1.511733 -0.855065 -0.690299 -1.867507 -0.061050 -0.123308 -1.254718 -1.213216 -1.147531 1.175622 -1.712558 0.456425 0.939032 -0.831967 2.274911 -0.467589 -0.085478 -1.642887 0.720972 0.986770 0.435465 -1.170198 1.753097 0.153130 3.780097 -0.417489 1.230354 -0.928766 1.526241 -1.203439 -2.526445 -1.034514 2.410999 2.374932 0.784274 -0.125497 0.110939 -0.068993 1.495407 -PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.644981 0.359725 4.169721 1.843167 -1.667801 -3.330883 -0.985105 -5.799037 3.485574 2.000000 3.922000 0.675686 3.319475 -2.035505 -0.326289 -0.069501 2.529158 -0.237355 0.178301 -1.426254 -0.282389 5.516036 0.049929 -0.738679 0.596507 -3.624529 2.541738 1.061729 2.670249 3.275531 0.928475 0.224805 -0.851299 1.161894 -0.777494 0.844859 -0.279348 1.531935 -2.135514 -1.213236 0.828873 -1.353915 3.079382 0.474765 2.904514 -0.968932 1.319866 -0.496732 -1.332356 -1.699380 -1.148057 1.514363 -1.511907 1.726875 -0.761385 -1.150009 0.667359 0.233760 0.451454 -1.975663 0.590964 -0.874677 -1.857142 -0.192106 -2.117454 0.542061 -1.732976 -1.489818 -0.528932 -2.337679 1.364466 0.299241 0.186328 -1.181096 -5.637307 0.399025 0.903814 -0.226782 2.061003 2.203472 -0.740175 -1.705986 -2.433860 -2.727945 3.369599 2.548963 0.082271 1.660633 -3.229015 -1.031920 -0.307555 0.536088 1.268251 1.971639 -2.913824 0.666388 -0.296539 -1.173524 -0.112033 -3.561074 0.812167 -2.248770 0.606344 0.511026 -0.623971 0.542216 -0.246670 0.618652 -1.100601 -2.281512 1.225837 -1.586265 -0.729116 3.778337 -1.067792 -1.818279 -2.333104 0.018114 0.616592 1.820651 0.357399 0.910044 2.796220 1.477472 2.304119 -3.124279 -0.534231 2.917362 1.441906 0.892554 0.069602 -1.578440 -1.299541 1.098625 -1.947501 -5.079533 -2.172487 1.784865 2.769403 -1.099346 -1.099387 1.087129 -1.323981 2.027922 3.414759 0.246229 1.045312 1.283648 -2.539279 1.120888 3.907268 -1.163759 1.538451 -1.548281 -1.988225 3.188583 -1.166885 1.485800 -0.893818 -0.085143 -0.437676 -1.626753 1.153741 3.470878 -0.574238 1.283918 -1.208679 1.057894 -1.392809 -3.429229 -5.599095 -1.107096 3.854604 2.860965 4.485638 -2.555913 -0.949796 0.344273 2.167538 0.326041 -1.932394 1.862147 -2.260194 1.922901 -6.664867 -4.347595 5.495062 4.187417 2.328583 -0.228763 1.652759 1.373850 -1.802712 -1.926763 -1.856391 1.741852 1.012424 -3.724753 -0.717711 0.665025 -3.565750 -1.334488 0.062442 0.257157 1.008534 -1.042509 2.676175 -1.598802 -0.985589 -2.061653 3.053449 -1.675461 -1.143000 -1.098869 0.092107 0.130404 1.769559 -0.767260 -0.046288 0.675595 -1.447262 -0.192898 0.174432 1.018971 0.184092 3.546570 4.886971 -1.552313 1.004199 -0.549308 -1.851798 5.038929 -2.324517 -0.044026 0.110148 1.228195 0.915442 1.709113 2.409343 -1.440274 -1.101947 -3.303864 -0.699267 1.185548 1.827035 -2.383528 -2.728590 -4.183098 0.239085 -0.780111 4.223905 0.064028 5.883728 -2.399531 1.293130 -5.387125 0.422497 1.859771 -0.259802 2.939942 0.851095 -2.343426 -1.668988 -0.909506 -2.780891 -0.837108 -0.256120 -1.950685 -2.054467 -2.035934 2.067336 -2.652438 0.685093 1.627241 -0.837177 3.332372 -1.014329 -0.004902 -2.599182 1.182756 1.300571 0.556043 -1.792147 2.220354 0.233573 5.789437 -0.936614 2.104985 -1.438132 2.612176 -2.049775 -3.962227 -1.564568 3.617913 3.565572 1.214898 -0.271390 -0.005668 -0.218798 2.472424 -PE-benchmarks/graph-coloring.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.560239 0.158232 2.510528 1.003174 -1.139379 -1.852612 -0.675708 -2.754246 1.672612 0.736648 1.977166 -0.030312 1.215068 -0.987157 0.013147 0.471796 1.357084 -0.249148 -0.334982 -0.994860 0.087410 1.848500 0.499209 -1.146682 0.775345 -1.923306 0.712245 0.410788 0.698267 1.334512 0.561726 -0.061624 -0.408056 0.846965 -0.082433 1.170788 0.866650 0.413799 -1.234227 -0.301974 0.128193 0.014958 1.146277 0.071605 2.040164 0.155400 0.847784 -0.024095 -1.574466 -0.732774 -0.376014 1.656347 -1.037065 1.011324 0.121328 0.421065 0.002377 -1.123378 -0.172211 -1.785542 0.068736 -0.077743 -1.031574 -0.031041 -0.992731 0.324422 0.090865 -0.644106 -0.112737 -0.904687 0.743164 0.106133 -0.108061 0.067412 -1.603187 0.089454 0.542104 0.436462 1.055069 0.164259 -0.138014 -1.019907 -0.817051 -1.189758 1.536468 0.618151 0.491554 0.834122 -0.935530 -0.028554 -0.186848 -0.140936 0.396987 0.996512 -1.713647 -0.298244 0.478237 -0.786524 -0.629023 -1.256510 0.368393 -0.999871 0.342336 0.556749 -0.420070 0.578027 -0.549970 0.966753 -0.779616 -0.670680 0.676463 -0.473844 -0.376616 1.642850 -0.765762 -0.853202 -0.876121 -0.107143 0.192833 1.251223 -0.101936 0.607433 1.535913 1.118002 1.262522 -1.413109 -0.380543 0.716816 1.350657 0.753719 0.702677 -1.200550 -0.789605 0.511691 -1.162135 -2.479569 -1.070238 0.514221 1.779159 0.355581 -1.585216 0.156382 -0.583455 1.558912 0.938299 0.450371 0.164145 0.264582 -1.526479 0.414010 2.081067 -0.898387 1.162937 -0.502644 -0.313721 0.620973 -0.451307 0.538481 -0.117904 -0.477843 0.049216 -0.898431 -0.008844 1.623884 0.613356 0.447078 -0.870366 0.727941 -0.911332 -2.104391 -2.800928 -0.754218 1.351413 0.404648 2.230921 -1.422110 -1.239091 -0.914632 1.558431 -0.628655 -0.854078 0.397248 -1.497792 0.953298 -2.184509 -2.125725 3.341744 2.722506 1.520017 0.175349 1.384289 0.425422 -1.670978 -0.541733 -0.527207 0.618588 0.577786 -1.626882 -0.568688 0.268986 -2.013867 -0.977191 -0.149811 0.520753 -0.135557 0.209947 1.087439 0.349818 -0.650984 -0.500153 0.563309 -0.809387 -0.604316 -0.168547 0.209050 0.541334 0.942858 -0.992548 -0.399506 0.549966 -1.328502 -0.283570 0.421963 1.368834 0.784739 2.038331 2.419163 -0.221865 1.638904 -0.239940 -1.400552 1.982641 -0.667407 0.312388 -0.137556 0.373383 0.514384 0.358774 1.311169 -0.748558 -0.565660 -1.568529 -0.469322 0.418778 1.195286 -0.934241 -1.768692 -1.703883 -0.038027 0.038293 1.701846 -0.210469 2.707647 -0.722707 0.644897 -3.348868 0.147350 1.439555 -0.175977 0.590924 0.698650 -1.272782 -2.711005 -0.187107 -1.537199 -1.100234 -0.352213 -0.495599 -0.937301 -1.125933 2.014190 -1.180947 0.224545 1.370824 0.369147 1.775815 0.170191 0.099023 -0.764163 0.090993 0.764618 0.313070 -1.091326 1.024371 0.637105 3.771513 -0.217751 0.973225 -0.856220 0.703604 -0.481577 -1.390140 -0.911451 1.671273 2.184339 0.552080 0.125942 -0.174807 -0.704295 1.566556 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/graph-coloring.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/graph-coloring.cpp___GLOBAL__sub_I_graph_coloring.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -0.819384 0.136482 2.966130 0.956317 -1.410560 -1.379655 -0.673133 -2.943557 1.178942 0.848222 2.458362 -0.219157 0.996582 -0.671336 0.005321 -0.392515 1.105896 -0.574175 -0.168833 -0.847014 0.245430 1.329374 0.599663 -0.962680 0.416494 -1.837325 0.558659 0.659282 0.727203 1.185549 0.144490 -0.307750 -0.736747 0.840099 -0.699063 0.352476 0.949146 0.658653 -1.162310 -0.400772 0.275120 0.104552 1.245835 -0.784739 2.059324 0.138139 0.831890 -0.154274 -1.977819 -0.875138 0.053545 1.499645 -1.108533 1.074454 0.694585 -0.036566 -0.447629 -0.860225 -0.349893 -2.126171 0.521131 -0.009683 -0.180518 -0.004730 -0.872754 0.200984 0.158092 -1.130071 0.719602 -1.461286 0.548104 0.120590 0.464010 0.444936 -1.179086 0.820804 1.047420 0.462153 0.545611 0.340159 0.365540 -0.569936 -0.436318 -0.973429 0.382906 1.030124 0.570684 0.382527 -1.137660 0.582816 0.959606 0.011587 -0.101404 1.138285 -1.647329 0.000818 -0.437349 -0.789391 -0.919967 -1.708626 -0.007979 -1.205383 0.855376 1.162357 -1.304938 0.667914 -0.691025 1.066688 -0.726218 -1.253172 0.337502 -0.621746 0.330381 1.728173 -1.431920 -0.857159 -0.799230 0.033303 0.246560 0.723349 -0.504937 0.644164 1.268555 1.324395 1.380298 -1.920832 -0.277834 0.635497 1.407086 1.028815 0.774514 -1.209470 -0.492477 0.203776 -1.625642 -2.669187 -0.915673 0.253640 1.851323 -0.027286 -1.602386 0.171816 -1.068390 2.423305 1.202909 0.859498 0.333137 0.428436 -1.430171 0.565035 1.707816 -0.831309 1.462996 -0.275418 -0.953355 0.536400 -0.100291 1.189738 0.146347 0.044707 0.343383 -1.606884 -0.129053 1.815653 1.079994 1.055586 -0.889690 0.385379 -0.527960 -2.474901 -2.894678 -0.611672 1.331559 0.555582 2.147004 -1.563191 -1.822438 -0.418066 1.933504 -0.459060 -1.408816 0.415184 -1.086650 0.985506 -2.397521 -2.424011 2.857579 3.617591 1.001127 0.250639 1.828076 0.059959 -1.970053 -0.635030 -0.679248 0.854758 0.118842 -2.125483 -0.658152 0.453553 -1.827121 -0.659027 -0.041783 0.479659 0.410844 0.090296 0.687596 1.027971 -0.873085 -0.384626 0.922360 -1.036201 -0.888745 -0.142294 0.388224 0.871386 0.919531 -1.469514 -0.896881 0.441864 -1.846640 -0.113163 0.360968 1.327608 0.585946 2.409279 2.092962 -0.325293 1.615206 -0.194238 -1.286933 2.540541 -1.289814 0.030560 -0.058259 0.658035 0.011799 0.600807 1.312489 -0.880682 -0.775887 -1.794329 -0.555522 -0.085023 1.404476 -1.537282 -2.376141 -1.794207 0.344600 0.236875 1.292706 0.078246 3.143209 -0.389542 0.562311 -3.607288 -0.185895 1.038501 -0.059935 1.227045 0.794386 -1.348753 -3.113909 -0.108259 -1.554654 -0.750744 -0.183175 -0.997279 -0.760221 -1.332240 2.183486 -0.438831 0.240222 1.135942 0.068082 2.064436 0.886856 -0.311583 -0.516683 -0.231751 0.954235 0.472040 -1.188531 1.670474 0.548303 4.561535 -0.221684 0.771560 -0.906225 0.553529 -0.044729 -1.110816 -0.913460 1.907481 2.398436 1.184930 -0.620068 -0.329299 -1.173075 1.405114 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.063568 0.265041 0.769921 0.241068 -0.351293 -0.645405 -0.113357 -0.857622 0.429571 0.243443 0.540157 0.096186 0.565992 -0.236154 -0.068758 -0.127949 0.459695 0.144471 0.063357 -0.258250 -0.071413 0.623576 -0.067266 -0.142247 0.144407 -0.448289 0.493869 0.208624 0.432852 0.635819 0.142832 -0.005586 -0.321676 0.216402 -0.097663 -0.069869 0.071281 0.263218 -0.458318 -0.079584 -0.010122 -0.217429 0.507111 0.126199 0.349739 0.074388 -0.048142 0.062059 -0.229672 -0.264959 -0.063909 0.077326 -0.196460 0.376519 -0.082169 -0.240348 0.089293 0.183058 0.201746 -0.380955 0.174003 -0.236868 -0.141417 -0.014314 -0.439927 -0.010294 -0.396757 -0.439536 -0.123660 -0.430160 0.158235 0.019979 0.110395 -0.120256 -0.914417 0.044532 0.191143 0.104383 0.413265 0.340336 -0.060840 -0.285706 -0.402756 -0.474234 0.331091 0.372139 0.099349 0.338615 -0.558082 -0.265904 0.109974 0.096434 0.271023 0.278175 -0.302210 0.178151 -0.330258 -0.113684 0.023610 -0.864122 0.125184 -0.257553 0.126296 -0.032848 -0.102020 0.014123 -0.107751 0.196824 -0.064295 -0.308694 0.355961 -0.281317 -0.193290 0.656606 -0.104320 -0.347541 -0.344742 -0.075185 0.145598 0.341026 0.030134 0.062845 0.159328 0.243560 0.385411 -0.510375 -0.103253 0.411646 0.112782 0.176986 0.119644 -0.218320 -0.208981 0.218155 -0.485743 -0.831664 -0.221736 0.185545 0.446886 -0.214024 -0.141916 0.108993 -0.456285 0.179088 0.452819 0.219551 0.235217 0.107026 -0.388423 0.124987 0.476500 -0.228321 0.285436 -0.072048 -0.301093 0.325935 -0.003110 0.257163 -0.277171 -0.141368 0.031591 -0.154946 0.118752 0.583496 0.026112 0.217653 -0.105876 0.112645 -0.433853 -0.580009 -0.767259 -0.118784 0.785314 0.367633 0.556025 -0.418846 -0.135223 0.033875 0.478436 -0.002589 -0.287563 0.265006 -0.231363 0.328565 -1.033058 -0.646240 0.784146 0.683658 0.305242 -0.172890 0.053940 0.166203 -0.303988 -0.443406 -0.291514 0.099994 -0.115030 -0.670205 -0.328524 0.134370 -0.556616 -0.027519 0.181984 0.093696 0.333811 -0.109028 0.377706 -0.183439 -0.096426 -0.481476 0.433464 -0.231498 -0.111378 -0.007413 0.007762 0.089365 0.238145 -0.136003 -0.140910 0.239897 -0.236922 -0.024552 -0.046866 0.207947 -0.023178 0.698284 0.511236 -0.161503 -0.018140 0.000554 -0.440581 1.052838 -0.424964 0.139353 0.039899 0.309284 0.098121 0.288397 0.439311 -0.274352 -0.230834 -0.621055 -0.393518 0.200396 0.296407 -0.366499 -0.548621 -0.650505 0.193156 -0.224704 0.653703 -0.046965 0.921249 -0.288496 0.222136 -0.639184 0.075399 0.309583 -0.148506 0.511549 0.201830 -0.406440 -0.311412 -0.147526 -0.576476 -0.099416 -0.050275 -0.251170 -0.188988 -0.081292 0.149639 -0.226605 0.081819 0.222667 -0.213470 0.554069 -0.169556 0.007931 -0.385151 0.122413 0.325931 0.000000 -0.340144 0.389277 0.164606 0.897382 0.025088 0.275164 -0.161390 0.202567 -0.179614 -0.570297 -0.362947 0.640753 0.520702 0.352783 -0.030649 0.078136 0.012974 0.344791 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.337149 0.612328 2.382558 1.334005 -1.003208 -2.421425 -0.611131 -2.504159 1.333204 0.662822 1.979417 0.244423 1.412476 -0.294401 0.146188 0.083871 1.062845 -0.000185 0.017384 -0.788298 -0.806400 2.628828 0.801807 -1.005342 0.374548 -1.592739 1.375854 1.066525 1.099307 1.799270 0.188035 0.102857 -0.123874 1.007100 -1.003152 0.053446 -0.595999 0.908394 -0.855499 -0.150584 0.628314 -0.241811 1.762485 0.470842 1.175660 0.633243 1.191530 -0.020534 -0.993900 -0.786092 -0.995879 1.263381 -1.051070 1.097600 -0.918562 0.021228 0.725455 -0.322246 0.086080 -1.688176 0.233666 0.032743 -1.358969 -0.207349 -1.473356 0.146132 -0.794411 -1.274023 -0.088920 -0.512945 1.084377 0.136839 -0.310933 -0.923019 -2.639762 0.240566 0.356049 0.411132 1.111166 0.498219 -0.789587 -0.323822 -1.372131 -1.540938 1.527851 0.479958 0.516960 0.745649 -1.163310 -0.826700 -0.237390 0.335119 0.320015 1.274695 -1.012468 0.953408 0.179903 -0.561177 -0.837477 -1.496963 0.282157 -1.214240 0.443081 0.442671 0.021191 -0.023096 -0.701049 0.338569 -0.657070 -1.663955 0.422820 -0.900530 -0.679185 1.521358 -0.650553 -0.551507 -0.370471 -0.105406 0.314215 1.452981 0.427923 0.244631 1.543124 1.033346 0.710755 -1.417190 -0.116406 0.520320 0.908387 0.853658 0.608536 -0.861401 -1.056280 0.373610 -0.936635 -2.769279 -0.413425 1.510594 1.348540 -0.344506 -1.306229 1.197275 -0.934415 1.043235 1.749754 0.784761 0.748027 0.168882 -1.233269 0.755006 2.675479 -0.919948 1.218967 -0.663167 -1.466420 2.419587 -0.869669 0.992724 0.003951 -0.338843 -0.102610 -0.833122 0.332137 2.029682 0.353607 0.588435 0.640064 0.244692 -0.528823 -1.917169 -2.735482 -0.400787 1.923012 1.159356 2.888239 -1.413160 -0.423114 0.031291 1.114682 -0.383242 -0.931251 0.391718 -0.738938 0.904384 -4.021518 -2.268081 2.956639 1.975317 0.972242 0.003552 1.166355 0.902520 -0.221281 -1.270439 -1.030853 0.993712 0.356353 -1.016849 -0.291798 0.167007 -2.046753 -0.243710 -0.112350 0.274013 0.463704 -0.840255 0.417794 -1.051386 -1.372158 -1.070450 0.582953 -1.430211 -0.567833 -0.130290 -0.147202 -0.190894 0.498831 -0.136785 -0.297724 0.212864 -1.222392 -0.230513 0.063221 0.921720 0.507756 2.344422 2.497191 -0.681215 0.786731 0.174059 -0.986279 3.258061 -1.294354 0.065210 0.082700 1.654523 0.393169 0.911984 1.356872 -0.623948 -0.737589 -1.907197 0.356391 0.996429 0.725181 -1.553695 -1.085422 -2.398949 -0.173971 0.093931 2.704956 -0.423907 3.184606 -0.802706 0.802651 -3.151641 0.329720 0.673861 -0.208955 1.272933 0.772117 -1.399436 -1.298759 -0.615822 -1.249483 0.001379 -0.110128 -1.101642 -1.030673 -0.592431 0.085816 -1.612674 0.547634 1.195439 -0.760496 1.312118 -0.322152 -0.132252 -0.982269 0.135852 1.527481 0.341076 -1.124046 1.358006 -0.020377 3.518956 -0.340154 1.673705 -0.955093 0.895786 -0.512915 -1.462966 -0.887074 2.181275 1.718642 0.415371 0.475680 0.374774 0.105645 1.274697 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = 0.023371 0.542174 0.755778 1.086624 -0.918971 -1.412231 -0.185852 -0.760238 0.279301 -0.054544 0.526551 0.082808 0.496143 -0.125562 -0.046015 -0.108849 0.556463 0.529121 -0.076553 -0.406745 -1.109175 0.922606 0.305426 -0.770542 0.262166 0.027352 1.043402 0.653624 0.350937 0.815867 0.072873 0.049874 -0.121978 0.503744 -0.435331 -0.341525 -0.720985 0.488109 -0.462712 0.092706 0.416845 -0.584971 1.049471 0.264869 -0.015490 0.635836 0.614270 0.182291 -0.737029 -0.172904 -0.608954 0.214404 -0.458046 0.629858 -0.660006 -0.129535 0.780831 0.100183 0.203117 -0.604035 0.024216 -0.376173 -0.655656 -0.158216 -0.974579 -0.123451 -0.612512 -1.049602 0.001293 0.075866 0.366584 0.101543 -0.310578 -0.604866 -1.082003 -0.001018 0.349623 0.443454 0.594880 0.422628 -0.049816 -0.158884 -0.906713 -0.620726 0.509056 -0.462903 0.548030 0.401311 -0.436523 -0.743719 0.222065 0.326392 0.327852 0.370755 0.014669 0.618218 -0.349101 -0.146803 -0.581201 -1.155325 0.105071 -0.295982 0.283629 0.093955 -0.286229 0.004481 -0.183715 0.124053 -0.052014 -0.924051 -0.015573 -0.646843 -0.343545 0.659993 0.036568 -0.477366 0.024665 -0.126274 0.110965 0.588908 0.341575 -0.087238 0.561577 0.420247 0.223955 -0.550784 -0.041604 -0.218679 0.034813 0.427412 0.489386 -0.033773 -0.614329 0.140832 -0.435967 -1.189852 0.030634 0.698228 0.525436 -0.159694 -0.523444 0.698507 -0.660586 0.106964 0.507202 0.618203 0.485720 -0.113419 -0.380520 0.339653 0.882375 -0.380162 0.433180 -0.193033 -0.891223 1.276951 0.070830 0.182230 -0.154775 -0.491529 -0.029044 -0.161466 0.217726 0.837916 0.029728 -0.215215 0.846571 -0.001088 -0.535997 -0.815478 -0.842730 0.359415 1.121734 0.702698 1.302546 -0.765076 0.125109 0.184319 0.182180 -0.254717 -0.264972 0.038322 -0.115848 0.437397 -2.016673 -1.029536 1.131568 0.103160 0.104984 -0.047567 0.117056 0.230171 0.166161 -0.834973 -0.739661 0.260387 0.169253 -0.202969 -0.300628 0.146092 -0.919821 0.308500 0.329092 0.222844 0.612587 -0.834810 -0.173224 -1.121788 -0.661658 -0.774627 0.200663 -0.718618 0.077334 0.313249 -0.281808 -0.046693 0.201505 0.403926 -0.344371 -0.484527 -0.373509 -0.194542 -0.350250 0.585281 0.052068 1.277316 1.155371 -0.431458 0.027672 0.331034 -0.582608 1.925526 -0.716818 0.257422 0.076397 1.246323 0.203521 0.367955 1.042464 -0.267277 -0.292672 -0.913260 -0.073995 0.666141 0.116537 -1.235404 0.040995 -1.393684 -0.048477 -0.123148 1.266015 -0.334567 1.162964 -0.348509 0.183229 -1.017979 0.137725 0.225583 -0.106392 0.780868 0.368750 -0.707261 -0.178835 -0.378688 -0.629499 0.553112 -0.104099 -0.169395 -0.417318 0.486226 -0.803310 -0.469920 0.263206 0.635565 -0.776281 0.323052 -0.315939 -0.004088 -0.154191 -0.228078 0.948151 0.097184 -0.451443 0.781089 0.114902 1.472201 0.450811 0.617847 -0.409435 -0.003680 0.055743 -0.649285 -0.580205 0.886763 0.500994 0.156491 0.589863 0.548052 0.310269 0.601375 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.309758 1.926393 10.263621 3.283568 -3.527990 -6.353492 -2.840398 -11.745908 5.931278 3.866704 8.895789 0.310684 5.251429 -0.898544 0.416298 -0.446739 4.323209 -2.012758 0.447902 -2.911421 -0.465287 9.101216 1.951207 -1.874096 0.902876 -7.623252 3.514764 2.142241 4.276939 4.849341 1.624234 -0.103605 -1.797658 3.144185 -2.546644 1.387198 0.979702 3.001175 -3.617432 -1.909546 1.431160 -0.480419 5.307915 0.669481 6.316683 -0.152039 3.264219 -0.770344 -3.739570 -3.216210 -1.987888 5.837567 -3.661697 3.467824 0.917034 -0.631620 0.353105 -2.164480 -0.075482 -5.180477 0.872040 -0.355066 -3.460557 0.023153 -3.767025 1.374188 -2.614330 -2.318933 0.216665 -3.726408 3.748504 -0.225514 0.738417 -1.005683 -8.958406 1.918524 1.077727 0.314003 3.659542 2.488416 -1.690885 -1.519083 -3.745036 -5.896039 5.246405 4.733580 0.362594 1.569144 -4.998243 -0.326082 -0.405612 -0.350072 0.481448 5.355418 -6.392851 2.552656 0.100063 -2.962104 -2.783407 -6.196407 0.865017 -5.500767 2.002874 2.338243 -1.452353 -0.076995 -2.534781 1.385861 -2.241351 -5.625188 2.399299 -2.124473 -0.876767 6.568152 -4.153564 -2.120220 -2.787285 -0.321334 1.051079 4.271617 1.253039 2.176688 5.444184 3.994452 3.996462 -5.709049 -0.842808 4.008200 4.021898 2.560763 1.548624 -4.799744 -2.821147 2.148695 -3.458966 -10.115524 -3.059171 4.471271 5.945493 -0.457572 -4.251259 1.251835 -2.602417 5.156739 6.277181 2.513492 1.695575 1.423578 -4.648410 1.932455 8.432516 -3.133183 4.661742 -1.742428 -3.584900 5.991090 -3.873561 4.404051 0.344824 1.121314 -0.554218 -4.568681 0.019645 7.381864 1.678828 3.390175 -1.181255 1.486115 -2.145801 -7.841638 -11.298324 -2.231367 6.531158 3.123992 8.242311 -5.128585 -3.539177 0.353660 6.305056 -0.442315 -4.801011 2.758740 -3.491189 3.461034 -11.267274 -8.260274 10.271573 10.234176 3.570362 -0.864134 4.993416 2.728607 -5.156425 -4.560517 -4.076805 4.482728 0.184436 -5.444869 -1.285682 0.813144 -7.162896 -1.844536 -0.912245 1.183874 2.071976 -1.306993 3.486545 0.148487 -3.591326 -2.786926 4.248136 -3.240729 -3.660685 -1.890342 0.624051 0.514885 2.889979 -2.596521 -1.395973 2.686790 -5.098970 -0.904502 1.912078 2.847186 1.188378 9.351320 7.729169 -1.575743 3.690863 -0.696465 -3.682312 10.319652 -4.555412 -0.411590 -0.478654 2.908610 0.374027 3.210682 4.297212 -2.712918 -4.785271 -6.382580 -0.058006 0.473362 4.111999 -4.505401 -7.184128 -7.808373 0.103163 0.518745 7.946337 -0.100527 12.336119 -2.905933 2.936855 -12.065305 0.862988 3.863521 -1.175557 4.842728 2.364937 -4.950007 -5.646800 -1.552831 -5.136912 -2.367265 0.025747 -4.662479 -3.759049 -5.282757 5.212504 -4.759633 1.260620 3.407744 -0.606802 6.132544 0.759805 -1.177598 -4.214498 1.415701 4.587011 0.805289 -4.563530 6.022500 0.225443 14.147734 -2.981376 4.609006 -3.181768 3.243032 -2.559622 -5.269717 -2.667472 7.806421 7.787980 2.819905 -1.604800 -0.230990 -2.092384 4.072176 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.225686 0.056028 0.614004 0.323050 -0.095479 -0.614869 -0.168503 -0.544820 0.361002 0.154177 0.570199 0.006998 0.461049 -0.216585 0.068273 -0.045466 0.321864 -0.053770 0.021384 -0.175815 0.024222 0.684095 0.251507 -0.345101 0.093108 -0.469440 0.219374 0.229720 0.183587 0.578520 0.025948 0.059358 -0.016444 0.198891 -0.324468 0.085337 0.061862 0.204673 -0.229802 -0.135625 0.052177 0.100161 0.363389 0.062614 0.373641 0.212019 0.179520 0.000000 -0.260507 -0.293989 -0.162087 0.304265 -0.261612 0.261223 -0.198965 0.015592 0.234013 -0.095291 -0.037312 -0.745297 0.129217 0.101484 -0.263664 -0.052904 -0.325238 0.112842 -0.038540 -0.285251 -0.009387 -0.215588 0.287331 0.095757 0.062936 -0.145806 -0.544390 0.102609 0.076092 0.118193 0.255068 0.078384 -0.214965 -0.136218 -0.246388 -0.352187 0.421422 0.100004 0.178086 0.335265 -0.264080 -0.133320 -0.046673 0.019984 0.083221 0.220776 -0.128186 0.149777 0.250226 -0.096183 -0.050949 -0.263217 0.059387 -0.282658 0.015207 0.289264 0.133068 0.041490 -0.274548 0.219458 -0.299382 -0.361425 0.324116 -0.205290 -0.324450 0.353654 -0.291851 -0.069464 -0.108726 0.019308 0.120656 0.488022 -0.016997 0.194683 0.178195 0.280550 0.133537 -0.363551 -0.001869 0.201411 0.437064 0.172552 0.162740 -0.302639 -0.270257 0.123314 -0.386495 -0.668252 -0.244930 0.372697 0.439576 0.001856 -0.581029 0.472000 -0.227245 0.344400 0.425806 0.161404 0.135356 0.043348 -0.418460 0.219047 0.620565 -0.299449 0.396293 -0.053189 -0.348643 0.449780 -0.176104 0.223486 -0.016383 -0.138544 0.069558 -0.197838 0.117581 0.485315 0.277376 0.285820 -0.041310 0.121621 -0.165847 -0.586328 -0.736583 -0.195103 0.456894 0.168849 0.784747 -0.313728 -0.256737 -0.102828 0.415541 -0.263783 -0.248694 0.010535 -0.238406 0.216356 -1.067222 -0.607907 0.928891 0.614161 0.393738 0.079558 0.327746 0.273591 -0.004783 -0.159258 -0.133553 0.195873 0.085103 -0.337126 -0.124568 0.005717 -0.520496 -0.242644 -0.039827 0.081219 -0.067880 -0.077318 0.113145 -0.183568 -0.308034 -0.134119 0.040231 -0.385916 -0.141331 -0.028537 -0.009146 0.033046 0.108714 -0.164609 -0.019445 0.209375 -0.379232 -0.109126 0.006152 0.308160 0.270470 0.574946 0.663476 -0.129134 0.245456 0.013168 -0.361090 0.829076 -0.304905 0.012145 -0.063841 0.412414 0.243061 0.143790 0.297001 -0.155546 -0.139639 -0.540179 0.030634 0.354736 0.219640 -0.398447 -0.446324 -0.540530 0.001388 0.009852 0.690038 -0.140696 0.841007 -0.256162 0.138168 -0.866497 0.096808 0.251353 -0.075785 0.168889 0.223357 -0.290209 -0.733370 -0.126628 -0.386895 -0.117777 -0.143945 -0.401469 -0.153878 -0.259046 0.236705 -0.444290 0.142506 0.379386 -0.021650 0.396658 0.051494 -0.045081 -0.327278 0.061384 0.140820 0.081300 -0.295058 0.318651 0.052583 0.885681 -0.134940 0.388385 -0.305007 0.366108 -0.207175 -0.352574 -0.184613 0.558233 0.544644 0.034913 0.210464 0.089528 -0.034085 0.351385 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -6.587014 5.205514 31.611707 11.408490 -13.297662 -18.711962 -9.769525 -27.471171 13.126564 9.590897 22.307567 -4.589768 7.738299 2.717537 0.086993 -1.339802 8.212408 -6.530756 -1.903535 -8.343709 -7.053962 19.140514 8.024359 -10.849439 3.456740 -24.702787 11.978201 5.839403 7.035673 13.103656 4.760657 -0.727758 -2.174099 10.856349 -9.088652 8.261023 4.472120 6.656880 -7.898925 -1.804566 6.257787 4.314596 12.961962 -0.192141 18.652358 8.833848 9.633822 -2.394425 -18.057806 -6.650475 -6.907163 19.960427 -11.049920 9.349791 3.290297 6.804317 -1.132070 -16.281943 -4.252814 -18.229630 1.315551 3.935645 -11.219115 0.641781 -14.029333 3.397236 -4.149635 -6.411661 4.917157 -8.245498 10.474903 -1.122039 0.958517 -2.943012 -16.143798 8.275540 3.540965 3.816971 8.659073 -1.335529 -3.424276 -0.477181 -8.236101 -13.917604 9.536766 8.491764 3.185810 2.233624 -4.109592 -2.424068 -0.964210 -2.596689 -2.120373 17.166692 -15.564027 6.223252 -1.583507 -7.886997 -13.484208 -14.505872 0.623225 -15.381180 7.870951 13.513806 -6.928014 2.422511 -2.334501 7.007604 -3.000837 -15.767506 3.115534 -6.129408 2.482893 16.553958 -12.050446 -7.156820 -3.865408 -2.343083 1.148398 13.705530 0.559450 5.395816 17.530511 11.506396 14.540875 -14.822894 -1.265252 6.240179 11.126719 8.963398 8.699083 -16.680343 -7.103268 1.688496 -7.179831 -27.437986 -5.604104 7.265887 16.113048 1.826316 -18.452584 4.613803 -6.497209 17.909045 11.413589 9.910318 4.372159 0.926307 -12.689429 4.449985 27.383686 -8.688691 12.840327 -7.767743 -12.974805 14.572533 -7.103717 13.147819 4.706693 2.291350 2.048343 -16.585047 -0.199134 20.146828 7.004483 7.084015 2.586926 3.745084 -5.095625 -23.300835 -27.312214 -3.458989 11.584430 1.737987 28.110074 -16.959910 -12.124377 -4.465571 21.969599 -3.331437 -9.382709 3.456840 -8.395820 8.212959 -29.425493 -24.699954 27.550381 30.521461 9.207382 -2.011378 19.296968 5.415980 -13.886096 -10.160918 -12.651230 11.848941 3.356033 -5.920586 -1.839353 0.711982 -20.082092 -5.153615 -2.617420 5.035077 7.566591 -4.457706 -0.835815 1.567711 -15.036780 -8.013341 7.763271 -13.834288 -8.943164 -2.587305 3.627299 0.186204 7.706345 -10.208347 -7.947954 6.747657 -14.328841 -1.750847 8.018803 11.768163 3.938850 26.835489 21.749190 -2.722450 15.355655 0.776646 -8.842661 33.945785 -10.118097 -1.941433 -1.320127 8.453327 -0.232007 5.673598 10.469440 -7.311725 -13.107944 -16.683837 4.453418 -1.784730 9.070312 -15.176316 -18.557905 -22.785425 -2.228259 3.047979 20.924627 2.640117 34.418294 -2.078086 6.364309 -36.511787 1.374817 15.134745 -2.216838 10.136829 9.340004 -14.855141 -25.984744 -2.018509 -11.824332 -3.754500 -1.981686 -14.891556 -11.444069 -14.073199 14.150754 -8.268558 5.333791 17.506911 1.198512 12.959440 5.274273 -4.338208 -7.481322 -2.972175 12.642285 4.054665 -12.959482 19.150309 0.777200 44.222537 -7.193237 13.408665 -10.594510 6.078851 -3.181007 -9.845884 -7.274507 19.867327 18.190851 8.585486 -1.778140 -1.054264 -10.243547 11.572513 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = -0.213902 0.186961 0.927885 0.167515 -0.243783 -0.763843 -0.248683 -1.180849 0.505181 0.322694 0.940098 -0.064011 0.663706 -0.233948 0.118182 0.133706 0.521856 -0.145557 0.199082 -0.250279 -0.015038 0.946964 0.110059 0.063567 0.090989 -0.611926 0.184795 0.202244 0.469741 0.570437 0.129026 -0.065901 -0.157332 0.197525 -0.180736 0.220566 0.207773 0.324386 -0.470138 -0.115586 -0.178820 -0.292660 0.486736 -0.052899 0.586013 -0.053993 0.313561 -0.004993 -0.372771 -0.371700 -0.271440 0.605495 -0.400521 0.291709 0.010489 -0.368654 0.090910 0.092028 -0.051368 -0.577472 -0.003466 -0.222165 -0.277828 0.014092 -0.360473 0.216140 -0.349138 -0.306662 -0.029320 -0.199873 0.373000 0.177022 0.246045 0.225097 -0.980595 0.211576 0.206898 0.108202 0.317721 0.152499 0.032045 -0.175758 -0.339139 -0.585895 0.715124 0.453450 0.217646 0.192475 -0.713149 0.133421 -0.074209 0.025761 0.164812 0.329482 -0.461116 0.213312 -0.005579 -0.219049 -0.199187 -0.917002 0.017458 -0.497505 0.102717 0.186422 0.111611 -0.009733 -0.516328 0.270989 -0.403970 -0.642347 0.391328 -0.241519 -0.406040 0.660909 -0.500706 -0.069818 -0.281541 0.059775 0.105021 0.378316 0.136340 0.360752 0.249435 0.420337 0.374240 -0.554136 -0.161105 0.372449 0.565744 0.238324 0.154515 -0.368790 -0.357604 0.244214 -0.571513 -1.042679 -0.453219 0.570841 0.613555 -0.032756 -0.383663 0.167562 -0.305376 0.547857 0.661492 0.183249 0.139127 0.150732 -0.513910 0.294107 0.660745 -0.436616 0.625619 -0.018986 -0.205837 0.451328 -0.335102 0.326326 -0.000671 0.015684 -0.026595 -0.372971 -0.109428 0.685554 0.419842 0.417893 -0.301510 0.194697 -0.369693 -0.836628 -1.070416 -0.208331 0.831877 0.127536 0.653127 -0.442183 -0.510185 0.143330 0.629521 -0.171708 -0.563693 0.219455 -0.421817 0.371116 -1.202494 -0.873639 1.178749 0.978265 0.483907 0.015710 0.361105 0.505903 -0.724066 -0.376917 -0.296163 0.384113 -0.145954 -1.110334 -0.488626 0.120020 -0.737112 -0.174109 -0.102922 0.138936 -0.004216 0.200489 0.536250 0.044220 -0.278417 -0.061296 0.425177 -0.345776 -0.369247 -0.151882 0.023042 0.225140 0.287089 -0.373755 0.048975 0.401850 -0.675841 -0.093088 0.091458 0.337314 0.245547 1.098891 0.891417 -0.093207 0.377466 -0.125935 -0.539067 0.777083 -0.405163 0.033964 -0.126784 0.268501 0.055321 0.281713 0.562049 -0.268536 -0.633201 -0.733740 -0.281184 0.240848 0.433644 -0.065221 -0.858437 -0.752159 0.125329 0.113193 0.877080 -0.084501 1.131229 -0.382678 0.289871 -1.120821 0.109811 0.209387 -0.162750 0.507262 0.194275 -0.379016 -0.604533 -0.207884 -0.613330 -0.500097 -0.077111 -0.505710 -0.211891 -0.598546 0.554317 -0.526546 0.013458 0.124998 0.068030 0.792848 0.254708 -0.137160 -0.572384 0.385436 0.543817 0.027402 -0.432986 0.581979 0.169856 1.546210 -0.200463 0.291213 -0.338427 0.249785 -0.153519 -0.461431 -0.210725 0.813382 0.954832 0.247943 -0.126737 0.046501 -0.108425 0.426715 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = -0.007092 0.155141 0.755034 0.164259 -0.129552 -0.766339 -0.168927 -1.204728 0.535795 0.318025 0.811847 -0.059343 0.649391 -0.292582 0.059832 0.215525 0.429547 -0.002068 0.107570 -0.230924 -0.067792 0.896563 -0.123612 0.071881 0.115096 -0.564979 0.247677 0.314126 0.442473 0.461665 0.155754 0.006843 -0.073973 0.166622 -0.247265 0.201387 0.102729 0.287170 -0.436132 -0.162285 -0.112760 -0.203347 0.455391 0.020118 0.528580 -0.043806 0.316991 -0.001545 -0.146782 -0.286680 -0.248092 0.523526 -0.226014 0.259872 -0.199932 -0.347861 0.126063 0.059871 0.048958 -0.305338 0.071629 -0.089519 -0.381395 -0.036750 -0.333224 0.134458 -0.193453 -0.317540 -0.063880 -0.218594 0.302741 0.048478 -0.007501 -0.022552 -1.019822 0.064655 0.213385 -0.014251 0.334697 0.154362 0.057006 -0.255214 -0.399852 -0.500113 0.823914 0.536357 0.196108 0.321003 -0.695021 -0.067838 -0.129190 0.032436 0.308919 0.317182 -0.377651 0.112055 0.026344 -0.201224 -0.182886 -0.724053 0.173642 -0.384002 0.112674 0.023515 0.185769 0.113108 -0.156213 0.227620 -0.309631 -0.502265 0.236828 -0.294392 -0.182514 0.671636 -0.268075 -0.228831 -0.333583 -0.020044 0.010289 0.334796 0.169568 0.193642 0.420265 0.307575 0.339475 -0.536907 -0.233904 0.433745 0.373436 0.269030 0.019464 -0.413365 -0.270124 0.210673 -0.541843 -0.978727 -0.419507 0.371545 0.515954 -0.267304 -0.257719 0.319361 -0.223144 0.360451 0.593298 0.043818 0.128079 0.206737 -0.454600 0.215464 0.635881 -0.307561 0.428069 -0.192877 -0.201496 0.292203 -0.174802 0.180006 0.014968 -0.105322 -0.065643 -0.229608 0.101870 0.595107 0.175156 0.310237 -0.265092 0.249976 -0.458157 -0.611517 -0.984252 -0.191996 0.699081 0.197038 0.742698 -0.416113 -0.428329 0.085181 0.526050 -0.184509 -0.373445 0.299745 -0.498513 0.371336 -0.964124 -0.751579 0.989388 0.736473 0.566759 -0.070969 0.349780 0.356767 -0.527522 -0.292167 -0.209463 0.299797 0.125367 -1.023698 -0.318543 0.046110 -0.680281 -0.183167 -0.115928 0.108358 -0.120398 0.203959 0.621965 -0.264171 -0.229994 -0.172536 0.417950 -0.274787 -0.121442 -0.190242 0.009169 0.032931 0.297592 -0.374550 0.058334 0.303437 -0.464497 0.025164 0.075641 0.195383 0.161708 0.911922 0.829980 -0.193717 0.471501 -0.162502 -0.400155 0.645082 -0.277209 0.055486 -0.041150 0.244169 0.085252 0.276138 0.482224 -0.258038 -0.408351 -0.686918 -0.292384 0.328270 0.341693 0.089904 -0.499277 -0.758168 -0.009212 -0.073800 0.901315 -0.052276 0.962043 -0.389300 0.325992 -0.935025 0.121754 0.124112 -0.178736 0.392095 0.134603 -0.385331 -0.433008 -0.122347 -0.556162 -0.701566 -0.063470 -0.436641 -0.322762 -0.555711 0.384559 -0.536912 0.012780 0.196791 0.051896 0.550566 -0.145446 -0.020435 -0.446818 0.351351 0.483315 -0.016490 -0.425277 0.284033 0.128922 1.364213 -0.137774 0.419590 -0.308168 0.341801 -0.252868 -0.551192 -0.247617 0.679547 0.770863 0.176855 -0.063750 0.067111 -0.015122 0.453725 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = -0.586307 0.154214 1.577108 0.233294 -0.636283 -1.242899 -0.406124 -1.970318 0.917873 0.636352 1.643757 0.020764 1.084705 -0.556513 0.236829 0.201089 1.015519 -0.381356 0.157698 -0.550861 0.127702 1.301264 0.216499 0.027402 0.308751 -0.981244 0.288421 0.281121 0.558414 0.871154 0.387937 -0.123589 -0.500486 0.342578 -0.005754 0.663783 0.568557 0.432273 -0.746564 -0.232608 -0.190492 -0.500301 0.850775 -0.071163 1.261661 -0.205533 0.481383 0.003279 -0.903227 -0.725169 -0.280136 0.976747 -0.722872 0.534308 0.266881 -0.411851 0.053310 -0.072421 -0.065315 -1.090820 0.013386 -0.497889 -0.460444 0.037814 -0.466899 0.292352 -0.429765 -0.381172 -0.083469 -0.665874 0.513875 0.110223 0.267975 0.531292 -1.377834 0.194191 0.390330 0.133835 0.603780 0.333438 -0.054164 -0.529028 -0.513464 -0.919320 1.065301 0.674982 0.314348 0.377581 -1.302163 0.400962 -0.077527 -0.018902 0.294698 0.524469 -1.102985 0.017979 0.246350 -0.547620 -0.386931 -1.348370 0.186133 -0.731328 0.177179 0.334390 -0.110509 -0.045699 -1.082346 0.445593 -0.779121 -0.777733 0.696369 -0.440461 -0.519340 1.037144 -0.906750 -0.226935 -0.697325 0.048811 0.366205 0.595305 0.152911 0.511336 0.524603 0.702626 0.815065 -0.973325 -0.303554 0.607275 1.045185 0.350033 0.191908 -0.553447 -0.499557 0.519740 -1.098128 -1.660600 -0.889481 0.748752 1.162326 0.241348 -0.692768 0.008309 -0.509214 0.969882 0.991872 0.368163 0.142584 0.343878 -0.969243 0.309651 0.956877 -0.675985 1.014802 0.097003 -0.166581 0.527992 -0.510405 0.476005 0.092525 -0.056990 -0.118304 -0.571273 -0.280599 1.080136 0.728008 0.665233 -0.828385 0.459673 -0.584543 -1.354202 -1.975448 -0.421258 1.347970 0.378528 0.973100 -0.858490 -0.816599 -0.012911 1.112482 -0.285895 -1.082239 0.382057 -0.739153 0.628930 -1.738136 -1.331405 2.089838 1.852699 0.920104 0.072941 0.656717 0.608656 -1.451271 -0.474916 -0.490256 0.588511 -0.218446 -1.727070 -0.610272 0.272107 -1.277202 -0.435495 -0.219665 0.271050 -0.053059 0.271713 1.062874 0.378556 -0.211630 -0.014249 0.598102 -0.375225 -0.715192 -0.287342 0.068302 0.572628 0.524286 -0.647021 -0.011387 0.577735 -1.192256 -0.228597 0.229559 0.708288 0.516245 1.800432 1.419846 -0.185728 0.675596 -0.377929 -0.957133 1.078121 -0.629094 0.129555 -0.208680 0.313498 0.324736 0.354499 0.994445 -0.499998 -0.863924 -1.091369 -0.579205 0.322109 0.902118 -0.270366 -1.555123 -1.334049 0.324167 0.117689 1.303675 -0.210891 1.857706 -0.557131 0.468655 -1.930904 0.124154 0.538488 -0.237762 0.634156 0.261737 -0.688948 -1.157774 -0.264047 -1.178183 -0.801370 0.017623 -0.405575 -0.380721 -1.004728 1.293184 -0.820584 -0.034097 0.193059 0.121436 1.417850 0.604251 -0.139980 -0.801489 0.537966 0.778703 0.108421 -0.703422 1.035137 0.434543 2.536941 -0.252614 0.415455 -0.423623 0.506018 -0.296405 -0.835947 -0.456486 1.219713 1.742631 0.490342 -0.278847 0.014836 -0.307215 0.813034 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.225686 0.056028 0.614004 0.323050 -0.095479 -0.614869 -0.168503 -0.544820 0.361002 0.154177 0.570199 0.006998 0.461049 -0.216585 0.068273 -0.045466 0.321864 -0.053770 0.021384 -0.175815 0.024222 0.684095 0.251507 -0.345101 0.093108 -0.469440 0.219374 0.229720 0.183587 0.578520 0.025948 0.059358 -0.016444 0.198891 -0.324468 0.085337 0.061862 0.204673 -0.229802 -0.135625 0.052177 0.100161 0.363389 0.062614 0.373641 0.212019 0.179520 0.000000 -0.260507 -0.293989 -0.162087 0.304265 -0.261612 0.261223 -0.198965 0.015592 0.234013 -0.095291 -0.037312 -0.745297 0.129217 0.101484 -0.263664 -0.052904 -0.325238 0.112842 -0.038540 -0.285251 -0.009387 -0.215588 0.287331 0.095757 0.062936 -0.145806 -0.544390 0.102609 0.076092 0.118193 0.255068 0.078384 -0.214965 -0.136218 -0.246388 -0.352187 0.421422 0.100004 0.178086 0.335265 -0.264080 -0.133320 -0.046673 0.019984 0.083221 0.220776 -0.128186 0.149777 0.250226 -0.096183 -0.050949 -0.263217 0.059387 -0.282658 0.015207 0.289264 0.133068 0.041490 -0.274548 0.219458 -0.299382 -0.361425 0.324116 -0.205290 -0.324450 0.353654 -0.291851 -0.069464 -0.108726 0.019308 0.120656 0.488022 -0.016997 0.194683 0.178195 0.280550 0.133537 -0.363551 -0.001869 0.201411 0.437064 0.172552 0.162740 -0.302639 -0.270257 0.123314 -0.386495 -0.668252 -0.244930 0.372697 0.439576 0.001856 -0.581029 0.472000 -0.227245 0.344400 0.425806 0.161404 0.135356 0.043348 -0.418460 0.219047 0.620565 -0.299449 0.396293 -0.053189 -0.348643 0.449780 -0.176104 0.223486 -0.016383 -0.138544 0.069558 -0.197838 0.117581 0.485315 0.277376 0.285820 -0.041310 0.121621 -0.165847 -0.586328 -0.736583 -0.195103 0.456894 0.168849 0.784747 -0.313728 -0.256737 -0.102828 0.415541 -0.263783 -0.248694 0.010535 -0.238406 0.216356 -1.067222 -0.607907 0.928891 0.614161 0.393738 0.079558 0.327746 0.273591 -0.004783 -0.159258 -0.133553 0.195873 0.085103 -0.337126 -0.124568 0.005717 -0.520496 -0.242644 -0.039827 0.081219 -0.067880 -0.077318 0.113145 -0.183568 -0.308034 -0.134119 0.040231 -0.385916 -0.141331 -0.028537 -0.009146 0.033046 0.108714 -0.164609 -0.019445 0.209375 -0.379232 -0.109126 0.006152 0.308160 0.270470 0.574946 0.663476 -0.129134 0.245456 0.013168 -0.361090 0.829076 -0.304905 0.012145 -0.063841 0.412414 0.243061 0.143790 0.297001 -0.155546 -0.139639 -0.540179 0.030634 0.354736 0.219640 -0.398447 -0.446324 -0.540530 0.001388 0.009852 0.690038 -0.140696 0.841007 -0.256162 0.138168 -0.866497 0.096808 0.251353 -0.075785 0.168889 0.223357 -0.290209 -0.733370 -0.126628 -0.386895 -0.117777 -0.143945 -0.401469 -0.153878 -0.259046 0.236705 -0.444290 0.142506 0.379386 -0.021650 0.396658 0.051494 -0.045081 -0.327278 0.061384 0.140820 0.081300 -0.295058 0.318651 0.052583 0.885681 -0.134940 0.388385 -0.305007 0.366108 -0.207175 -0.352574 -0.184613 0.558233 0.544644 0.034913 0.210464 0.089528 -0.034085 0.351385 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = -0.024243 0.392989 1.253451 0.166058 -0.471517 -1.037317 -0.265062 -1.629608 0.719636 0.479184 1.006975 -0.006353 0.816532 -0.300003 -0.029168 0.244870 0.688139 0.000813 0.060464 -0.472575 -0.298181 0.963748 -0.099377 0.021041 0.336233 -0.883637 0.564721 0.271628 0.573109 0.713538 0.312468 0.034308 -0.289495 0.400630 -0.052419 0.285726 0.235827 0.385527 -0.605237 0.003748 -0.037269 -0.310799 0.695371 0.245687 0.766207 0.176012 0.174366 0.072659 -0.404931 -0.375151 -0.180973 0.534467 -0.389432 0.456209 -0.156428 -0.237179 0.060594 -0.105542 0.175335 -0.379836 0.052337 -0.308654 -0.463712 0.020732 -0.575392 0.079160 -0.430483 -0.526925 -0.209808 -0.417318 0.351237 0.030468 -0.063931 0.036723 -1.295639 0.052187 0.367220 0.073082 0.626837 0.198884 -0.083517 -0.384455 -0.645207 -0.822315 0.923157 0.661590 0.270647 0.408351 -0.823564 -0.231400 -0.112652 0.042274 0.438039 0.606345 -0.693625 0.072047 -0.151574 -0.394329 -0.357429 -1.222080 0.238680 -0.505021 0.245381 -0.051862 -0.106551 0.091116 -0.286498 0.322896 -0.249588 -0.485521 0.346503 -0.452604 -0.164620 0.992284 -0.243255 -0.473288 -0.556984 -0.173993 0.170989 0.516155 0.175938 0.090980 0.742777 0.456572 0.570828 -0.724963 -0.272487 0.458686 0.316761 0.309671 0.232689 -0.606033 -0.411309 0.347842 -0.718684 -1.366004 -0.456762 0.269121 0.681511 -0.341282 -0.306710 0.209457 -0.465227 0.350521 0.734917 0.203358 0.231879 0.146296 -0.614820 0.210870 0.918452 -0.440443 0.559240 -0.301336 -0.298865 0.459032 -0.221603 0.305016 -0.123181 -0.243754 -0.136954 -0.302595 0.097329 0.906310 0.116601 0.261688 -0.236392 0.270946 -0.613617 -0.805990 -1.332505 -0.238844 1.040395 0.331696 0.962970 -0.705452 -0.357488 -0.065003 0.826494 -0.067895 -0.462102 0.404362 -0.535379 0.494374 -1.212933 -1.023138 1.353632 1.134718 0.668034 -0.194622 0.340380 0.313961 -0.824343 -0.591937 -0.391929 0.301757 0.024971 -1.199403 -0.531037 0.173778 -0.963740 -0.107109 -0.088218 0.224869 0.257874 0.097236 0.744984 -0.178421 -0.261767 -0.511466 0.546095 -0.307524 -0.273037 -0.108249 0.044410 0.101579 0.420825 -0.355512 -0.150933 0.317208 -0.570505 -0.011520 0.177254 0.426246 0.116644 1.270014 0.997888 -0.264408 0.358212 -0.164802 -0.554773 1.010219 -0.432163 0.199678 0.036210 0.351489 0.068874 0.387092 0.761274 -0.376380 -0.548092 -0.883287 -0.431894 0.266429 0.436567 -0.084232 -0.755380 -1.064746 0.096743 -0.176989 1.168786 -0.065284 1.371786 -0.320248 0.454898 -1.194768 0.146443 0.354336 -0.239638 0.607323 0.301609 -0.678111 -0.526920 -0.207187 -0.903595 -0.717224 -0.005175 -0.262721 -0.471723 -0.409860 0.500018 -0.520827 0.041285 0.358674 -0.025670 0.798017 -0.111527 0.028165 -0.597100 0.312839 0.858223 -0.053716 -0.521218 0.484675 0.274821 1.733663 -0.036213 0.550427 -0.268811 0.196169 -0.147815 -0.756144 -0.522181 0.957703 0.955908 0.420070 -0.073895 0.021917 0.020731 0.696018 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -2.037060 3.698708 15.444763 5.246606 -8.491183 -13.692193 -5.316164 -17.174162 7.409964 4.984547 11.119978 -2.506980 4.604852 0.750910 0.055590 3.431788 6.075445 -2.959345 -1.243297 -6.392532 -5.835175 12.734766 2.660762 -2.911564 3.546897 -13.233873 8.484123 2.566128 4.626061 9.130611 4.924305 -0.977169 -1.091699 6.186995 -2.044728 9.157267 0.890213 3.495020 -6.103485 2.703085 2.414067 0.524477 8.734911 1.697475 10.745804 8.248855 6.215596 0.824307 -9.637432 -3.819818 -6.349549 11.026239 -6.923111 6.249123 -2.029203 2.394930 0.577752 -7.527164 -2.044197 -5.463672 -2.874964 0.376144 -7.884576 0.598017 -10.197738 1.384360 -5.098426 -3.913715 -0.133182 -3.050196 6.624640 -0.008906 -1.900808 -0.777697 -11.838880 2.953269 2.191938 3.731504 6.581816 -2.408125 -1.640253 -1.270597 -6.535092 -8.955720 7.662539 4.148578 3.363823 2.168775 -3.503505 -3.961809 -3.770996 -0.655959 1.853255 8.808583 -8.023845 2.448373 -1.796146 -4.428209 -8.252745 -10.879759 1.712397 -6.595616 4.631604 3.825796 -0.684584 -0.198319 -0.595694 3.375835 -1.493279 -7.158932 2.082378 -3.246381 0.156481 11.145669 -4.010246 -5.206888 -3.735503 -2.398561 0.048225 8.556957 3.152255 1.260463 10.737169 7.030916 11.446430 -7.588754 -2.383595 2.185717 5.343244 4.935538 5.821192 -7.476285 -5.435958 2.057413 -5.081278 -14.617832 -4.145396 5.129045 10.160209 -0.172396 -7.153185 2.870006 -4.476540 8.234299 5.648586 3.790760 3.972599 -0.535254 -7.927375 3.799580 17.344307 -4.195300 6.395585 -7.136580 -5.472658 9.282923 -2.882506 4.828335 2.967998 -1.404577 -1.919554 -6.873895 1.335441 10.444297 3.611785 1.799385 2.545029 3.774201 -5.099196 -11.441007 -14.630790 -1.529853 8.238784 1.084654 15.048769 -9.731044 -3.716634 -3.038258 10.309351 -0.659006 -4.926074 2.638315 -6.139824 4.795475 -16.991996 -12.126071 18.603644 16.770038 7.438498 -1.611617 8.006461 6.214030 -9.798982 -6.636612 -7.318226 6.378412 1.606917 -7.474328 -2.891498 1.022374 -11.955735 -3.252714 -1.749578 4.164942 4.702324 -0.600205 0.876838 -2.764420 -8.159285 -5.966942 4.401430 -7.482536 -4.066986 0.589164 0.724646 -0.880910 4.660705 -4.279236 -2.513456 3.508368 -7.708042 -0.206426 3.937864 7.605844 1.662751 13.793074 13.577265 -2.467066 9.327656 0.227845 -6.208880 17.091522 -3.841376 1.292925 -1.020911 4.997913 1.643875 2.735374 6.858129 -4.345533 -7.994394 -9.770978 1.450217 1.927038 4.895216 -5.574699 -9.204247 -15.261414 -0.294078 0.138213 14.675215 1.546999 17.899882 -2.041730 4.518411 -19.433877 2.135068 7.800021 -0.443720 4.775816 4.730955 -8.152207 -9.405972 -1.014352 -9.120525 -4.540971 -1.368755 -6.163866 -7.187974 -6.410211 6.493340 -4.990854 1.493638 10.306636 -0.482091 7.741133 1.129103 -2.030153 -5.935469 -1.527305 10.140146 1.761134 -6.896646 8.464647 1.887922 24.517921 -1.799851 7.653937 -4.627579 2.455950 -1.080463 -8.309099 -5.377160 11.161091 9.614396 3.484905 2.330778 -0.423928 -1.443924 7.097977 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = -0.260628 0.333435 1.731486 0.416982 -0.693480 -1.566681 -0.361392 -2.154712 1.107542 0.594881 1.592895 0.015094 1.162509 -0.563572 0.066883 0.262515 0.999716 -0.054182 0.005735 -0.625012 -0.156563 1.600647 -0.024764 -0.219994 0.381962 -1.174297 0.565788 0.509415 0.783482 1.027856 0.386818 -0.027179 -0.412835 0.470452 -0.230745 0.419658 0.316204 0.415839 -0.980759 -0.238450 -0.107865 -0.388548 1.028892 0.101857 1.189717 0.007513 0.508063 0.056919 -0.692431 -0.557550 -0.371104 1.008559 -0.504996 0.666817 -0.015988 -0.295466 0.126242 -0.165914 0.133670 -0.917293 0.102007 -0.342163 -0.668444 -0.050098 -0.739219 0.125034 -0.483472 -0.669015 -0.120355 -0.779769 0.483191 -0.016878 0.007930 -0.046738 -1.772357 0.127496 0.444384 0.171886 0.734030 0.455535 -0.083829 -0.562200 -0.772390 -0.967390 1.153984 0.822338 0.327812 0.604646 -1.330160 -0.153374 -0.113089 0.011184 0.456496 0.648528 -1.104328 0.143254 0.052666 -0.531127 -0.444586 -1.475754 0.284207 -0.649887 0.260909 0.084181 -0.021211 0.179774 -0.570742 0.428426 -0.494654 -0.736724 0.622089 -0.556868 -0.348303 1.322398 -0.544364 -0.562412 -0.754824 -0.078178 0.131148 0.793556 0.141478 0.261172 0.822135 0.639736 0.871160 -1.028365 -0.304792 0.737765 0.756707 0.488446 0.290833 -0.674977 -0.516172 0.429992 -1.028491 -1.903608 -0.699379 0.616246 1.096338 -0.179508 -0.632466 0.230673 -0.571439 0.894724 1.042755 0.313008 0.290722 0.249095 -0.990679 0.306089 1.325833 -0.614142 0.870092 -0.316218 -0.507758 0.688229 -0.299832 0.488664 -0.078991 -0.252521 -0.109393 -0.449035 0.088829 1.198504 0.376553 0.446706 -0.519716 0.395880 -0.785072 -1.331916 -2.089026 -0.408896 1.357826 0.641152 1.586507 -0.947757 -0.780562 -0.169430 1.051753 -0.276139 -0.834761 0.549879 -0.884798 0.679948 -2.074266 -1.537023 2.208398 1.878724 1.014713 -0.139863 0.799409 0.425276 -1.164818 -0.713860 -0.551240 0.475916 0.073484 -1.704029 -0.483571 0.226155 -1.407989 -0.316784 -0.157788 0.265019 0.175277 0.123171 1.122291 -0.265989 -0.392830 -0.511234 0.717663 -0.472583 -0.427878 -0.179448 0.064437 0.254489 0.629840 -0.624017 -0.220210 0.467857 -0.978824 -0.081697 0.116724 0.660358 0.359559 1.800464 1.631412 -0.233949 0.874476 -0.228415 -0.909472 1.655612 -0.686464 0.203829 -0.072457 0.487340 0.242048 0.497659 0.978237 -0.519504 -0.668608 -1.203076 -0.452710 0.389282 0.712247 -0.503058 -1.375602 -1.530694 0.159412 -0.152301 1.526030 -0.163400 2.115550 -0.618449 0.553461 -2.145897 0.186724 0.636138 -0.234972 0.800311 0.382534 -0.972753 -1.047972 -0.182952 -1.195523 -0.870915 -0.001279 -0.627504 -0.593348 -0.868371 1.011250 -0.952821 0.079101 0.602128 -0.077916 1.292874 0.024991 -0.023860 -0.772046 0.356542 0.994276 0.048203 -0.736065 0.815064 0.331462 2.652853 -0.143851 0.702180 -0.481547 0.601094 -0.321560 -1.181110 -0.666571 1.293979 1.513637 0.543455 -0.174701 0.046749 -0.159922 0.927530 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -1.833463 0.080165 4.861780 1.323895 -2.413272 -3.824522 -1.311291 -5.884188 3.436727 1.949832 5.106715 -0.053932 3.106360 -2.044827 0.115209 0.317262 2.608690 -1.145123 -0.013080 -1.687228 -0.493106 4.714631 0.525371 -0.883077 1.106233 -3.665685 2.116207 0.424757 1.482937 3.117444 1.203241 -0.093978 -1.283324 1.323578 0.371580 2.421452 1.199642 1.235357 -1.759471 -0.903164 0.346360 -1.678681 2.496904 0.149529 4.109964 -0.190074 1.317001 -0.272507 -2.779096 -1.763673 -0.785839 2.341559 -2.345083 1.566616 0.665169 -0.268635 0.287497 -1.245098 -0.152313 -3.682894 0.053521 -1.858368 -2.121588 0.135264 -1.957211 0.722750 -1.349483 -1.058628 -0.310638 -2.676505 1.371436 0.170703 0.341423 0.690659 -3.979918 0.415116 1.139554 0.122516 1.894355 1.212042 -0.819443 -1.661218 -2.149596 -2.670192 3.218256 1.804407 0.736261 1.157611 -3.165688 0.660403 -0.388365 -0.026580 0.903191 2.147793 -3.719315 -0.203822 1.057158 -1.695071 -0.990410 -3.881383 0.728007 -2.255537 0.721459 1.532346 -1.382808 0.370951 -1.994880 1.281012 -1.740299 -2.119727 1.833170 -1.687633 -0.521725 3.112374 -1.925121 -1.394147 -2.480173 -0.241808 1.239087 2.226445 0.292648 1.063968 2.921395 1.869035 2.859718 -2.833402 -0.901940 2.359400 2.771623 0.968139 0.623558 -2.140494 -1.346793 1.221184 -2.579388 -5.057858 -2.456989 1.527341 3.131922 0.181604 -2.509642 0.482516 -1.129696 2.942280 3.261065 1.142790 0.364621 0.980976 -3.091966 0.726891 3.816582 -1.600167 2.310493 -0.804477 -1.593369 2.467397 -1.219653 1.203930 0.084352 0.035322 -0.485492 -1.883600 -0.002078 3.191719 1.001057 1.487533 -2.045011 1.337005 -1.575365 -3.939229 -6.124379 -1.299548 4.175496 2.369513 4.788420 -3.093488 -1.990886 -0.542608 3.050520 -0.144840 -2.710033 1.136658 -2.335490 1.787875 -6.278331 -4.715194 6.742713 5.409771 3.081119 0.141062 2.536093 1.127337 -3.692263 -1.409502 -2.189362 1.766851 0.198192 -3.983947 -0.830807 0.704651 -4.106008 -1.616633 -0.756367 0.790621 0.811228 -0.405533 2.644456 0.081774 -0.527359 -0.985938 2.123869 -1.191539 -2.094362 -0.891761 0.288846 1.283992 1.761943 -1.561179 -0.334116 0.823473 -2.857456 -0.500033 0.973660 1.921140 1.178200 5.294063 5.298437 -0.954003 1.517744 -0.940557 -2.141091 4.256674 -1.697144 0.228772 -0.273843 1.084701 1.369160 1.010961 3.096586 -1.411541 -1.925063 -2.969911 -0.756436 0.681722 2.219156 -2.488872 -4.393742 -4.483588 0.584243 -0.014562 4.109834 -0.109732 6.428102 -1.360535 1.356584 -6.610671 0.302844 2.803154 -0.479168 2.102538 0.875103 -2.564576 -3.338887 -0.629064 -3.087324 -1.852784 -0.161733 -1.154395 -1.816090 -2.762116 3.724013 -2.572837 0.221830 1.632138 0.343659 3.804989 1.233325 -0.084078 -2.326913 0.922335 2.039768 0.384139 -1.897991 3.009713 1.071116 7.429333 -0.918396 1.383935 -1.292880 2.446197 -1.396572 -3.218407 -1.498720 3.246923 4.566539 1.532541 -0.705054 -0.070052 -1.002307 2.722099 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, AdjListNode*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.137287 0.402115 1.653936 0.705834 -1.091195 -1.487060 -0.398140 -2.022887 1.172423 0.480308 1.081101 0.117626 0.939750 -0.721470 -0.208741 0.428360 1.058691 0.194482 -0.109972 -0.756774 -0.427247 1.343372 0.169122 -0.555796 0.621181 -1.149262 1.030201 0.027100 0.741718 1.198311 0.539480 -0.069429 -0.460138 0.639556 0.469521 0.825635 0.293980 0.440473 -0.926998 0.059536 0.041888 -0.706437 0.925330 0.447800 1.193763 0.168700 0.395934 0.076206 -1.009485 -0.390386 -0.415576 0.700366 -0.881013 0.769993 -0.136005 0.085531 0.102769 -0.318303 0.183453 -0.821106 -0.142757 -0.709559 -0.839593 0.064073 -1.030483 0.137735 -0.693267 -0.623391 -0.555884 -0.464451 0.452774 0.221667 -0.054725 0.141375 -1.623889 -0.163494 0.334005 0.354292 1.034110 0.321188 -0.172091 -0.855768 -0.962780 -1.077195 1.200543 0.293291 0.311196 0.567830 -0.758317 -0.312183 -0.249567 0.130494 0.578501 0.738877 -1.165474 -0.064018 -0.179509 -0.432693 -0.231000 -1.725949 0.279063 -0.658967 0.220694 -0.080701 -0.426008 0.202004 -0.344040 0.565144 -0.312632 -0.444805 0.544260 -0.438662 -0.484864 1.256722 -0.128140 -0.766307 -0.707784 -0.208912 0.325691 0.809416 0.185625 0.256847 1.010252 0.696981 1.032280 -0.920759 -0.321392 0.549277 0.477969 0.404639 0.518882 -0.557586 -0.682589 0.490038 -0.684404 -1.789323 -0.595122 0.454436 1.013018 0.093096 -0.565078 -0.213684 -0.611210 0.543252 0.690764 0.439919 0.274858 0.102513 -0.910843 0.247097 1.385998 -0.595427 0.646756 -0.359598 -0.142732 0.742765 -0.317942 0.247066 -0.566293 -0.430704 -0.089980 -0.417654 -0.032208 1.197106 0.032414 -0.008609 -0.292857 0.433119 -0.933902 -1.311341 -1.667778 -0.334071 1.589228 0.533644 1.206461 -1.076971 -0.282196 -0.355898 0.821626 -0.008947 -0.468276 0.353073 -0.892934 0.716544 -1.809261 -1.483666 2.227115 1.390517 0.888388 -0.110981 0.270296 0.481914 -1.230186 -0.798903 -0.668118 0.262650 0.063202 -1.328757 -0.779133 0.314834 -1.501795 -0.357145 0.174517 0.384352 0.475480 -0.048413 0.862001 -0.039099 -0.157500 -0.800610 0.675340 -0.457614 -0.463478 0.000350 0.055297 0.371782 0.628094 -0.245218 -0.187201 0.270421 -0.639369 -0.209733 0.188391 0.813691 0.228037 1.619699 1.722185 -0.257484 0.357812 -0.060973 -1.012221 1.546905 -0.503844 0.423936 0.033660 0.331327 0.301789 0.347508 1.231031 -0.561862 -0.591482 -1.101753 -0.707781 0.358416 0.768997 -0.529357 -1.078547 -1.298842 0.162735 -0.164840 1.331474 -0.132991 1.759397 -0.527138 0.550246 -1.779150 0.188341 1.114897 -0.227477 0.804303 0.480400 -0.917824 -0.922455 -0.375512 -1.136670 -0.448160 -0.242009 0.069532 -0.620885 -0.210759 0.777802 -0.677411 0.108567 0.649101 -0.044581 1.311842 -0.134499 0.222255 -0.714685 0.222645 0.881274 0.100931 -0.718942 0.758707 0.578221 2.307591 0.137421 0.487507 -0.383670 0.178755 -0.301551 -1.113530 -0.782972 1.222631 1.355106 0.529365 0.183840 0.001103 -0.096921 1.050612 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::destroy(AdjListNode*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = -1.498457 0.827263 5.711391 0.150139 -2.357603 -3.407694 -1.535441 -7.246860 3.386339 2.708007 5.272566 0.129718 3.491458 -1.558920 0.099633 0.654885 3.102605 -1.670249 0.662052 -2.005702 -0.486284 4.379814 0.381826 0.773601 1.265608 -4.483046 2.192707 0.044970 2.207669 3.091957 1.486750 -0.105241 -1.715712 1.578205 0.922181 2.433684 1.822190 1.725143 -1.885240 -0.144975 0.073010 -1.970298 2.738240 0.588616 4.341304 -0.334116 0.581362 -0.160977 -2.641968 -2.245189 -0.395630 2.169595 -2.661501 1.597038 0.741320 -1.050654 -0.338250 -0.750162 0.053786 -2.415279 -0.136319 -2.265750 -1.602112 0.520175 -1.868814 0.934807 -2.181367 -1.077753 -0.794619 -2.418552 1.621054 0.520852 0.691306 1.791553 -4.904943 0.665203 1.492647 -0.079764 2.382800 0.929272 -0.846938 -1.583881 -2.328271 -3.714719 3.733977 3.122902 0.683970 0.814828 -3.678518 0.806854 -0.491845 0.074018 1.217851 2.864860 -4.192151 -0.243485 -0.002883 -2.137973 -1.304083 -5.291120 0.704288 -2.872809 1.016934 0.905235 -1.605369 -0.213102 -2.617451 1.290479 -1.807185 -2.256764 1.822766 -1.775604 -0.650308 3.911968 -2.230126 -1.345476 -3.031045 -0.446374 1.691293 1.832963 0.568408 1.142246 3.325804 2.261416 2.932390 -3.272492 -1.143808 2.377764 2.398500 0.754257 0.693127 -2.617476 -1.636530 1.741356 -2.979096 -5.668062 -2.836493 1.346642 3.258547 -0.392039 -1.476484 -0.157823 -1.677897 2.434698 3.780633 0.943888 0.544245 1.119446 -2.998111 0.979692 3.745779 -1.945763 2.746552 -0.814205 -0.921792 2.391532 -2.024736 1.708332 -0.129658 0.150349 -0.937367 -2.207712 -0.401862 3.889563 0.909130 1.911444 -2.331961 1.367397 -1.556604 -3.859425 -6.411639 -1.402056 4.825481 1.677885 3.398107 -3.262595 -1.625285 0.041650 3.938925 0.596583 -3.068216 1.650764 -2.102476 2.039289 -5.363743 -4.623104 6.328133 6.028280 2.892171 -0.169403 1.697876 1.745175 -4.900137 -2.059248 -2.099447 2.075537 -0.632781 -5.311657 -2.196779 1.108020 -4.137043 -1.211944 -0.858299 0.938279 1.342150 0.195222 3.295872 1.253895 -0.519438 -1.211607 2.857063 -1.040179 -2.740896 -1.109404 0.396101 1.422007 1.896813 -1.590217 -0.143751 1.515367 -3.078284 -0.421170 1.510696 1.929956 0.716528 5.629559 4.612618 -1.169714 0.702695 -1.311374 -2.197282 3.277451 -1.981254 0.373019 -0.107497 0.625467 0.646787 1.476406 3.413565 -1.651587 -2.937363 -3.391819 -1.563905 0.333220 2.570721 -0.769544 -4.731045 -4.508837 0.983463 0.060714 4.540661 0.069928 6.444693 -1.219581 1.803419 -5.780223 0.347642 2.077106 -0.732906 2.769211 0.989025 -2.550324 -2.490775 -1.133907 -3.931583 -2.523809 0.157290 -0.730405 -1.910035 -2.688708 3.961523 -2.114327 0.003111 0.711246 0.485465 4.416202 1.520127 -0.265559 -3.208783 1.843739 3.038585 0.089651 -2.013446 3.239019 1.295216 7.558298 -1.076177 1.503666 -0.937904 1.381972 -0.938447 -3.026765 -1.684784 4.097804 5.007987 2.035526 -1.257295 -0.490244 -0.673560 2.900696 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = -2.942250 -0.292164 5.465383 0.610384 -1.861781 -3.929224 -1.691695 -6.659484 3.296627 2.489156 6.498060 0.115288 3.680364 -1.954364 1.310490 0.650210 3.408516 -2.631675 0.621800 -1.830073 1.061087 5.026139 1.633832 0.199527 0.804390 -3.920067 0.149490 0.958194 1.555291 2.809279 1.172613 -0.376807 -1.419664 1.088949 -0.355688 2.867529 2.196794 1.356802 -2.039839 -1.095143 -0.363045 -1.242468 2.918883 -0.748694 5.032698 -1.215538 2.285894 -0.296465 -3.500489 -3.001273 -1.021574 4.055666 -2.807844 1.494595 1.386057 -1.123636 0.128600 -0.922521 -1.003231 -4.630936 -0.082849 -1.237662 -1.611507 0.177133 -1.008831 1.459798 -0.914378 -0.609360 0.239787 -2.507019 2.106171 0.499095 1.149051 2.230588 -4.121082 1.117547 1.220026 0.224426 1.558900 0.928211 -0.726497 -1.407891 -1.278701 -3.018703 3.667727 2.417290 0.925102 0.907088 -4.524576 2.370778 -0.474106 -0.305801 0.320865 1.838373 -4.335243 -0.138420 2.286528 -2.277861 -1.714885 -3.444374 0.460259 -2.878727 0.522619 2.158007 -0.331832 -0.368165 -4.763630 1.319187 -3.585905 -3.018902 2.357167 -1.421790 -1.770401 3.155763 -4.268439 0.027994 -2.462358 0.547224 1.447392 2.145989 0.304440 2.274508 2.120462 2.697118 2.505623 -3.366483 -0.833927 1.977962 4.797314 1.039262 0.528238 -2.103891 -1.713620 1.714788 -3.728617 -5.581245 -3.593129 3.128227 4.298746 1.519623 -3.141320 0.345353 -1.223419 4.433611 3.942056 1.034618 0.192543 1.399297 -3.701469 1.396239 3.676272 -2.437960 4.022478 0.369392 -0.793113 2.443978 -2.675284 2.023743 1.281818 0.376907 -0.667572 -2.490908 -1.185578 3.637174 3.191320 2.917929 -3.421493 1.705748 -0.849394 -4.913539 -7.598368 -1.793588 4.018463 1.358201 3.845817 -2.939007 -3.320003 -0.127617 3.987617 -1.077816 -4.440063 1.125967 -2.576708 1.966116 -6.411481 -4.740426 7.859053 7.349437 3.440570 1.024223 3.337356 2.384109 -5.097280 -0.983343 -1.515660 2.764644 -0.533703 -5.712987 -1.408769 0.902469 -4.403182 -2.225207 -1.613371 0.858999 -0.842192 0.861154 3.549791 1.976150 -1.117252 1.009932 1.737236 -1.500340 -3.252069 -1.415307 0.300825 2.179245 1.707979 -2.454353 0.325503 1.973296 -4.861895 -0.978022 1.187284 2.672220 2.451079 6.108656 5.438918 -0.659228 2.989893 -1.682967 -3.003361 3.010562 -2.275649 -0.081232 -1.008482 0.930405 1.475090 1.039309 3.092483 -1.546910 -2.986502 -3.480967 -0.816784 0.994303 3.344866 -1.340164 -6.029252 -4.723136 0.980914 1.186257 4.497234 -0.772318 6.862080 -1.952211 1.434513 -7.872746 0.324476 1.690473 -0.410707 1.785024 0.784188 -2.206030 -4.793370 -0.865235 -3.903964 -2.651795 0.226380 -1.865185 -1.360230 -4.556650 5.657385 -3.429781 -0.074307 0.706687 0.767531 5.178045 3.349236 -0.887704 -2.977312 1.978069 2.269326 0.721724 -2.233970 4.062474 1.117182 9.133610 -1.673028 1.542712 -1.633567 2.603289 -1.193172 -2.665008 -1.040370 4.210929 6.617979 1.228963 -1.198706 -0.272525 -1.479061 2.792005 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.636674 0.460827 2.391177 2.197014 -1.945923 -2.388707 -0.651999 -2.416319 1.559562 0.564572 2.022611 0.202868 1.350116 -1.026539 -0.255563 -0.738856 1.386182 0.438959 -0.640089 -1.054593 -1.094221 2.098852 0.379433 -2.049719 0.656631 -1.158318 1.870847 1.169897 0.445418 1.662731 0.532391 0.257853 -0.710147 1.040257 -0.856957 0.221186 -0.216989 0.717333 -1.046332 -0.679179 1.174988 -0.241219 1.963467 0.187050 1.447648 0.703427 0.925676 0.033553 -1.942031 -0.785050 -0.421205 0.852381 -0.754144 1.319499 -0.178892 0.397436 0.997719 -0.984518 0.255846 -2.103331 0.612332 -0.258218 -1.122430 -0.245432 -1.573596 -0.070210 -0.141613 -1.532377 0.311941 -1.549577 0.587820 -0.365359 -0.439739 -1.179817 -1.728649 0.136738 0.724397 0.415450 1.273053 1.245882 -0.354349 -0.991857 -1.418512 -1.159187 0.864493 -0.041994 0.559770 1.206964 -1.084828 -1.059873 0.644711 0.034571 0.526813 1.085214 -1.242526 0.342598 0.002154 -0.723601 -0.958025 -1.549704 0.581390 -0.824052 0.637269 0.968818 -1.321978 0.500830 0.042398 0.526453 -0.388743 -1.153500 0.338210 -1.319049 0.248325 1.822778 -0.543584 -1.485917 -0.790236 -0.380231 0.318959 1.508199 -0.045505 0.101952 1.665048 0.963301 1.152457 -1.691954 -0.190380 0.644640 0.797106 0.786478 0.700022 -1.123973 -0.715620 0.458664 -1.359876 -2.687488 -0.697321 0.557024 1.802054 -0.045183 -1.899582 1.236465 -1.042029 1.163994 1.001997 1.097937 0.554872 0.236968 -1.538521 0.337883 2.055808 -0.562682 0.899649 -0.545628 -1.877465 1.667993 0.265101 0.618521 -0.118584 -0.725198 0.038091 -0.829724 0.727853 1.809747 0.045088 0.052924 0.243931 0.504188 -1.132958 -2.252006 -3.057076 0.118116 1.743853 1.712831 3.490137 -1.966907 -0.691685 -0.544815 1.576160 -0.637706 -0.882514 0.486498 -0.884409 1.063178 -3.548821 -2.558438 3.256785 1.914159 0.984472 -0.119117 1.397075 -0.296566 -0.438864 -1.144812 -1.333715 0.609578 1.018991 -0.515048 0.172822 0.294903 -2.205971 -0.382709 0.332176 0.499059 1.011086 -1.387296 0.372451 -1.352217 -0.879559 -1.511893 0.739307 -1.012431 -0.148107 0.098606 -0.010253 0.095483 0.922510 -0.193314 -1.093946 -0.604412 -0.971042 -0.309264 -0.078880 1.304628 0.394249 2.618327 2.604583 -0.898075 1.070874 0.147368 -1.184406 4.146852 -1.476843 0.288606 0.090323 1.745054 0.921474 0.557468 1.710604 -0.829035 -0.150125 -1.871795 -0.290547 0.593961 0.813593 -3.312082 -1.022413 -2.907991 -0.076494 -0.609399 2.119010 -0.273927 3.372345 -0.758199 0.257868 -3.493027 0.090625 1.692196 -0.198877 1.154059 0.805092 -1.750240 -2.181227 -0.246691 -1.631533 0.288266 -0.253939 -0.563013 -1.179047 -0.179756 0.574633 -0.971219 0.589719 2.208345 -0.848050 1.148253 -0.390097 0.083256 -0.350011 -0.718238 0.754120 0.344839 -1.126023 1.725102 0.343580 3.746206 0.374746 1.387156 -0.891032 1.271004 -0.630614 -2.042613 -1.266894 1.739568 1.782172 0.659588 0.554900 0.601963 -0.523563 1.610512 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.198128 0.547659 2.071949 0.885581 -1.370135 -1.674195 -0.569803 -2.330521 1.255191 0.481308 1.173669 -0.124489 0.802380 -0.628640 -0.292291 0.534937 1.142848 0.121156 -0.200103 -0.881571 -0.590795 1.573600 0.212077 -0.751065 0.707581 -1.475075 1.280363 -0.012214 0.864329 1.433776 0.660375 -0.196218 -0.416939 0.844165 0.484443 1.231522 0.431932 0.482000 -1.159134 0.228267 0.069998 -0.523328 1.035386 0.308265 1.468409 0.645282 0.524750 0.117070 -1.419588 -0.304217 -0.648405 1.153985 -1.107815 0.946911 -0.011543 0.234093 0.032512 -0.711850 -0.043499 -0.828449 -0.422958 -0.561728 -0.938801 0.100501 -1.424588 0.130365 -0.764698 -0.631058 -0.452447 -0.412090 0.589891 0.280374 -0.006940 0.166880 -1.640878 0.111439 0.470418 0.647209 1.171402 0.056882 0.064612 -0.760250 -0.962084 -1.235961 1.194526 0.238372 0.473853 0.505258 -0.507517 -0.419664 -0.330255 0.060547 0.459594 0.990939 -1.226161 0.021218 -0.536944 -0.467946 -0.545117 -2.056225 0.225168 -0.770414 0.409825 0.148891 -0.450182 0.209303 -0.079618 0.732603 -0.141623 -0.565930 0.513976 -0.415103 -0.411567 1.509303 -0.159388 -0.890276 -0.690494 -0.314118 0.151857 1.053468 0.254395 0.325123 1.159724 0.935365 1.634714 -1.060309 -0.405306 0.459802 0.564535 0.593827 0.835502 -0.804731 -0.753949 0.472266 -0.707469 -2.051081 -0.620456 0.511158 1.278526 0.230614 -0.779511 -0.281396 -0.703201 0.878207 0.519641 0.517909 0.398475 -0.030705 -1.011222 0.402666 1.890112 -0.658541 0.715553 -0.681930 -0.254709 0.846965 -0.263832 0.373142 -0.481709 -0.429022 -0.052799 -0.759279 0.017785 1.404730 0.220484 -0.078075 -0.092895 0.469110 -1.035068 -1.706672 -1.782612 -0.267829 1.574218 0.268061 1.586514 -1.265899 -0.482437 -0.507873 1.117384 -0.053505 -0.403797 0.328196 -1.079992 0.848401 -2.019289 -1.762326 2.704077 1.810852 0.956528 -0.184266 0.483572 0.633663 -1.617728 -0.918492 -0.919327 0.422865 0.077760 -1.452348 -0.916825 0.283502 -1.737231 -0.393236 0.211118 0.554395 0.715403 0.123677 0.532659 -0.027561 -0.486085 -0.993894 0.811550 -0.727232 -0.510310 0.154370 0.116356 0.342506 0.821122 -0.453530 -0.385469 0.371225 -0.814763 -0.224938 0.300663 1.086155 0.166028 1.768916 1.980551 -0.176604 0.807341 0.122679 -1.192409 2.039674 -0.436895 0.478118 0.006467 0.350011 0.280273 0.371714 1.323683 -0.671390 -0.919633 -1.349289 -0.703196 0.268751 0.883056 -0.716903 -1.418800 -1.518186 0.104226 -0.029073 1.484993 0.056262 2.137017 -0.432632 0.620515 -2.317543 0.231558 1.484303 -0.156256 0.864007 0.677494 -1.137091 -1.348482 -0.322964 -1.268551 -0.590455 -0.390629 -0.164578 -0.782574 -0.427977 1.064740 -0.567217 0.143483 1.126271 0.060522 1.449670 -0.013326 0.144372 -0.827825 -0.064989 1.072405 0.165513 -0.867914 0.942855 0.711895 3.040136 0.098567 0.571839 -0.588600 0.058111 -0.132510 -1.207085 -0.839079 1.421709 1.460004 0.618790 0.319845 -0.040265 -0.299517 1.193698 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = -0.463800 0.313980 2.643212 1.367229 -1.312725 -2.373463 -0.603398 -3.583389 2.123469 1.115596 2.492040 0.529394 2.115575 -1.268924 -0.144262 -0.140217 1.735207 -0.070946 0.147198 -0.959726 -0.343800 3.547639 0.190350 -0.547788 0.378110 -2.067212 1.655164 0.767873 1.782212 2.203294 0.607047 0.053874 -0.687345 0.725743 -0.490506 0.360235 -0.379300 0.973438 -1.538790 -0.720340 0.502212 -1.134767 2.193680 0.293100 1.687595 -0.655400 1.010614 -0.205669 -1.016040 -1.119355 -0.971660 1.030678 -1.039107 1.182364 -0.449649 -0.847462 0.591306 0.355555 0.277826 -1.326897 0.267843 -0.768920 -1.173707 -0.145128 -1.488667 0.314722 -1.436444 -1.103562 -0.291417 -1.453103 0.923075 0.256252 0.227963 -0.725401 -3.725220 0.260854 0.535224 0.075243 1.340069 1.602336 -0.415263 -1.018891 -1.630090 -1.729991 1.999216 1.325084 0.113562 0.983940 -2.222641 -0.678415 -0.102475 0.415749 0.785609 1.070040 -1.862474 0.648284 -0.371629 -0.735787 -0.136262 -2.554497 0.449617 -1.374877 0.384519 0.268913 -0.422804 0.194556 -0.461240 0.299585 -0.719990 -1.671989 0.844218 -1.014654 -0.720872 2.466671 -0.828513 -1.089722 -1.412688 0.096025 0.385025 1.177535 0.309799 0.636369 1.508171 1.005912 1.461695 -1.976798 -0.262241 1.690616 0.971925 0.591705 0.169627 -0.686783 -0.934508 0.737813 -1.245135 -3.344315 -1.298656 1.456358 1.854481 -0.398707 -0.686766 0.546211 -1.021713 1.322201 2.171788 0.332921 0.817385 0.742739 -1.606770 0.791670 2.453604 -0.807676 1.135642 -0.817616 -1.348013 2.292634 -0.775654 0.999679 -0.629254 -0.064067 -0.226036 -1.005665 0.559067 2.241910 -0.210926 0.724442 -0.561555 0.618771 -0.906307 -2.363417 -3.570880 -0.533683 2.665611 1.919781 2.733261 -1.669932 -0.496266 0.351438 1.277199 0.157484 -1.396803 1.135966 -1.340849 1.232036 -4.637592 -2.803510 3.623289 2.653260 1.263912 -0.101768 0.907901 1.020289 -1.207496 -1.399480 -1.366257 1.114062 0.441534 -2.446063 -0.556649 0.462826 -2.332521 -0.702925 0.210833 0.198911 0.844414 -0.859209 1.651809 -1.090932 -0.710704 -1.347469 1.988787 -1.176830 -0.799554 -0.537659 -0.054546 0.209489 1.094310 -0.285539 -0.048675 0.367328 -1.058983 -0.253903 -0.073056 0.803674 0.119379 2.486251 3.150760 -0.918130 0.551975 -0.248203 -1.418626 3.551201 -1.698455 0.030814 -0.020838 1.022634 0.607369 1.126491 1.662829 -0.938642 -0.875089 -2.147078 -0.490768 0.816393 1.218873 -1.765093 -1.877108 -2.850597 0.258991 -0.414523 2.712519 -0.085221 3.810166 -1.648422 0.743021 -3.467886 0.274784 1.187534 -0.116262 2.061391 0.551408 -1.511733 -0.855065 -0.690299 -1.867507 -0.061050 -0.123308 -1.254718 -1.213216 -1.147531 1.175622 -1.712558 0.456425 0.939032 -0.831967 2.274911 -0.467589 -0.085478 -1.642887 0.720972 0.986770 0.435465 -1.170198 1.753097 0.153130 3.780097 -0.417489 1.230354 -0.928766 1.526241 -1.203439 -2.526445 -1.034514 2.410999 2.374932 0.784274 -0.125497 0.110939 -0.068993 1.495407 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = -0.644981 0.359725 4.169721 1.843167 -1.667801 -3.330883 -0.985105 -5.799037 3.485574 2.000000 3.922000 0.675686 3.319475 -2.035505 -0.326289 -0.069501 2.529158 -0.237355 0.178301 -1.426254 -0.282389 5.516036 0.049929 -0.738679 0.596507 -3.624529 2.541738 1.061729 2.670249 3.275531 0.928475 0.224805 -0.851299 1.161894 -0.777494 0.844859 -0.279348 1.531935 -2.135514 -1.213236 0.828873 -1.353915 3.079382 0.474765 2.904514 -0.968932 1.319866 -0.496732 -1.332356 -1.699380 -1.148057 1.514363 -1.511907 1.726875 -0.761385 -1.150009 0.667359 0.233760 0.451454 -1.975663 0.590964 -0.874677 -1.857142 -0.192106 -2.117454 0.542061 -1.732976 -1.489818 -0.528932 -2.337679 1.364466 0.299241 0.186328 -1.181096 -5.637307 0.399025 0.903814 -0.226782 2.061003 2.203472 -0.740175 -1.705986 -2.433860 -2.727945 3.369599 2.548963 0.082271 1.660633 -3.229015 -1.031920 -0.307555 0.536088 1.268251 1.971639 -2.913824 0.666388 -0.296539 -1.173524 -0.112033 -3.561074 0.812167 -2.248770 0.606344 0.511026 -0.623971 0.542216 -0.246670 0.618652 -1.100601 -2.281512 1.225837 -1.586265 -0.729116 3.778337 -1.067792 -1.818279 -2.333104 0.018114 0.616592 1.820651 0.357399 0.910044 2.796220 1.477472 2.304119 -3.124279 -0.534231 2.917362 1.441906 0.892554 0.069602 -1.578440 -1.299541 1.098625 -1.947501 -5.079533 -2.172487 1.784865 2.769403 -1.099346 -1.099387 1.087129 -1.323981 2.027922 3.414759 0.246229 1.045312 1.283648 -2.539279 1.120888 3.907268 -1.163759 1.538451 -1.548281 -1.988225 3.188583 -1.166885 1.485800 -0.893818 -0.085143 -0.437676 -1.626753 1.153741 3.470878 -0.574238 1.283918 -1.208679 1.057894 -1.392809 -3.429229 -5.599095 -1.107096 3.854604 2.860965 4.485638 -2.555913 -0.949796 0.344273 2.167538 0.326041 -1.932394 1.862147 -2.260194 1.922901 -6.664867 -4.347595 5.495062 4.187417 2.328583 -0.228763 1.652759 1.373850 -1.802712 -1.926763 -1.856391 1.741852 1.012424 -3.724753 -0.717711 0.665025 -3.565750 -1.334488 0.062442 0.257157 1.008534 -1.042509 2.676175 -1.598802 -0.985589 -2.061653 3.053449 -1.675461 -1.143000 -1.098869 0.092107 0.130404 1.769559 -0.767260 -0.046288 0.675595 -1.447262 -0.192898 0.174432 1.018971 0.184092 3.546570 4.886971 -1.552313 1.004199 -0.549308 -1.851798 5.038929 -2.324517 -0.044026 0.110148 1.228195 0.915442 1.709113 2.409343 -1.440274 -1.101947 -3.303864 -0.699267 1.185548 1.827035 -2.383528 -2.728590 -4.183098 0.239085 -0.780111 4.223905 0.064028 5.883728 -2.399531 1.293130 -5.387125 0.422497 1.859771 -0.259802 2.939942 0.851095 -2.343426 -1.668988 -0.909506 -2.780891 -0.837108 -0.256120 -1.950685 -2.054467 -2.035934 2.067336 -2.652438 0.685093 1.627241 -0.837177 3.332372 -1.014329 -0.004902 -2.599182 1.182756 1.300571 0.556043 -1.792147 2.220354 0.233573 5.789437 -0.936614 2.104985 -1.438132 2.612176 -2.049775 -3.962227 -1.564568 3.617913 3.565572 1.214898 -0.271390 -0.005668 -0.218798 2.472424 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, AdjListNode*, AdjListNode const&) = -0.347535 0.208124 1.447001 0.965723 -0.941968 -1.405059 -0.332118 -1.861421 1.145149 0.587744 1.282680 0.392242 1.236553 -0.796479 -0.187936 -0.361236 0.981627 0.104628 0.061162 -0.571477 -0.348542 1.899354 0.132229 -0.558810 0.220233 -1.019952 1.342076 0.397331 0.897641 1.487116 0.345536 0.082624 -0.555814 0.474879 -0.218319 0.086065 -0.300884 0.661808 -0.766459 -0.398200 0.456474 -0.736390 1.290127 0.256541 0.877723 -0.138237 0.327201 -0.052120 -0.660222 -0.667057 -0.416239 0.110937 -0.687097 0.751116 -0.369336 -0.453643 0.459269 0.305902 0.263053 -0.974977 0.284736 -0.634585 -0.628181 -0.064057 -1.013658 0.129546 -0.906275 -0.819503 -0.250915 -0.928565 0.478715 0.154303 0.155729 -0.503413 -2.067376 0.057465 0.310713 0.081314 0.890422 1.004799 -0.358687 -0.688777 -1.037685 -1.000428 0.939282 0.557018 0.085997 0.685840 -1.098184 -0.541326 0.125463 0.310428 0.544993 0.621092 -0.827522 0.384756 -0.362126 -0.293108 0.084626 -1.583487 0.324272 -0.706747 0.261658 0.239664 -0.483598 0.050954 -0.143522 0.186010 -0.342991 -0.926509 0.536697 -0.724976 -0.335744 1.369074 -0.303417 -0.733678 -0.793614 -0.058741 0.416451 0.743875 0.169290 0.273234 0.768966 0.575752 0.811807 -1.185340 -0.166943 0.986116 0.401293 0.314112 0.128048 -0.373411 -0.544283 0.451116 -0.773935 -1.831291 -0.647773 0.690201 1.018135 -0.325518 -0.442414 0.469261 -0.762063 0.528752 1.212428 0.376540 0.512538 0.385143 -0.940230 0.429517 1.315304 -0.373098 0.531208 -0.365791 -0.919492 1.422760 -0.268144 0.509987 -0.490383 -0.156935 -0.117493 -0.494717 0.421152 1.268934 -0.238809 0.404616 -0.155797 0.346675 -0.636259 -1.356447 -1.853239 -0.205051 1.799468 1.295094 1.608849 -1.069442 -0.021902 0.246712 0.738026 0.202106 -0.705792 0.571945 -0.570306 0.743538 -2.840568 -1.610527 1.973330 1.264442 0.669643 -0.104507 0.281833 0.482180 -0.392316 -0.851522 -0.871663 0.501732 0.174426 -1.084039 -0.317171 0.292950 -1.332202 -0.376502 0.356547 0.162428 0.756708 -0.783663 0.680005 -0.750994 -0.256932 -1.041209 1.104365 -0.677269 -0.371975 -0.188952 -0.051902 0.135019 0.521000 0.039185 -0.080513 0.066189 -0.380757 -0.119789 -0.093795 0.431019 -0.039288 1.400606 1.690509 -0.691263 -0.160565 -0.040946 -0.782997 2.406383 -1.012773 0.137538 0.102274 0.814146 0.493288 0.586382 1.067986 -0.578930 -0.313983 -1.278918 -0.433066 0.580831 0.678182 -1.413756 -0.951804 -1.717858 0.270320 -0.397036 1.557412 -0.085748 2.179658 -0.872587 0.374712 -1.741318 0.149514 0.829553 -0.124705 1.229107 0.367524 -0.854290 -0.470587 -0.462112 -1.093049 0.294086 -0.170049 -0.537823 -0.636938 -0.233286 0.292752 -0.777247 0.282740 0.614218 -0.655192 1.181136 -0.413974 0.029385 -0.890329 0.251195 0.384586 0.228217 -0.688356 1.101719 0.151638 1.924423 -0.072282 0.667524 -0.449390 0.923049 -0.747970 -1.481512 -0.664298 1.386501 1.171069 0.506941 0.107085 0.192408 0.070632 0.832779 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.560239 0.158232 2.510528 1.003174 -1.139379 -1.852612 -0.675708 -2.754246 1.672612 0.736648 1.977166 -0.030312 1.215068 -0.987157 0.013147 0.471796 1.357084 -0.249148 -0.334982 -0.994860 0.087410 1.848500 0.499209 -1.146682 0.775345 -1.923306 0.712245 0.410788 0.698267 1.334512 0.561726 -0.061624 -0.408056 0.846965 -0.082433 1.170788 0.866650 0.413799 -1.234227 -0.301974 0.128193 0.014958 1.146277 0.071605 2.040164 0.155400 0.847784 -0.024095 -1.574466 -0.732774 -0.376014 1.656347 -1.037065 1.011324 0.121328 0.421065 0.002377 -1.123378 -0.172211 -1.785542 0.068736 -0.077743 -1.031574 -0.031041 -0.992731 0.324422 0.090865 -0.644106 -0.112737 -0.904687 0.743164 0.106133 -0.108061 0.067412 -1.603187 0.089454 0.542104 0.436462 1.055069 0.164259 -0.138014 -1.019907 -0.817051 -1.189758 1.536468 0.618151 0.491554 0.834122 -0.935530 -0.028554 -0.186848 -0.140936 0.396987 0.996512 -1.713647 -0.298244 0.478237 -0.786524 -0.629023 -1.256510 0.368393 -0.999871 0.342336 0.556749 -0.420070 0.578027 -0.549970 0.966753 -0.779616 -0.670680 0.676463 -0.473844 -0.376616 1.642850 -0.765762 -0.853202 -0.876121 -0.107143 0.192833 1.251223 -0.101936 0.607433 1.535913 1.118002 1.262522 -1.413109 -0.380543 0.716816 1.350657 0.753719 0.702677 -1.200550 -0.789605 0.511691 -1.162135 -2.479569 -1.070238 0.514221 1.779159 0.355581 -1.585216 0.156382 -0.583455 1.558912 0.938299 0.450371 0.164145 0.264582 -1.526479 0.414010 2.081067 -0.898387 1.162937 -0.502644 -0.313721 0.620973 -0.451307 0.538481 -0.117904 -0.477843 0.049216 -0.898431 -0.008844 1.623884 0.613356 0.447078 -0.870366 0.727941 -0.911332 -2.104391 -2.800928 -0.754218 1.351413 0.404648 2.230921 -1.422110 -1.239091 -0.914632 1.558431 -0.628655 -0.854078 0.397248 -1.497792 0.953298 -2.184509 -2.125725 3.341744 2.722506 1.520017 0.175349 1.384289 0.425422 -1.670978 -0.541733 -0.527207 0.618588 0.577786 -1.626882 -0.568688 0.268986 -2.013867 -0.977191 -0.149811 0.520753 -0.135557 0.209947 1.087439 0.349818 -0.650984 -0.500153 0.563309 -0.809387 -0.604316 -0.168547 0.209050 0.541334 0.942858 -0.992548 -0.399506 0.549966 -1.328502 -0.283570 0.421963 1.368834 0.784739 2.038331 2.419163 -0.221865 1.638904 -0.239940 -1.400552 1.982641 -0.667407 0.312388 -0.137556 0.373383 0.514384 0.358774 1.311169 -0.748558 -0.565660 -1.568529 -0.469322 0.418778 1.195286 -0.934241 -1.768692 -1.703883 -0.038027 0.038293 1.701846 -0.210469 2.707647 -0.722707 0.644897 -3.348868 0.147350 1.439555 -0.175977 0.590924 0.698650 -1.272782 -2.711005 -0.187107 -1.537199 -1.100234 -0.352213 -0.495599 -0.937301 -1.125933 2.014190 -1.180947 0.224545 1.370824 0.369147 1.775815 0.170191 0.099023 -0.764163 0.090993 0.764618 0.313070 -1.091326 1.024371 0.637105 3.771513 -0.217751 0.973225 -0.856220 0.703604 -0.481577 -1.390140 -0.911451 1.671273 2.184339 0.552080 0.125942 -0.174807 -0.704295 1.566556 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::construct(AdjListNode*, AdjListNode const&) = -0.726521 0.080180 1.499614 0.698560 -1.129178 -1.025171 -0.386591 -1.825708 1.099291 0.727905 1.400953 0.457828 1.241546 -0.799575 -0.198541 -0.710628 1.019193 -0.261445 0.312578 -0.522875 -0.134398 1.757262 0.236941 -0.231867 0.175109 -1.100736 1.484561 -0.070525 0.851707 1.647925 0.397199 -0.058138 -0.953647 0.363033 0.312394 0.246780 -0.012135 0.701774 -0.597760 -0.312563 0.429328 -1.080199 1.179491 0.156898 0.997244 -0.354891 -0.110072 -0.080231 -0.835602 -0.841300 -0.160901 -0.346856 -0.931445 0.693120 0.126755 -0.633550 0.221490 0.515169 0.166768 -1.100636 0.228704 -1.196337 -0.284503 0.137748 -0.931315 0.234271 -1.315108 -0.546277 -0.288474 -1.216032 0.420226 0.285043 0.623015 0.083857 -1.922070 0.166351 0.251036 0.032672 0.819839 1.114287 -0.459458 -0.636587 -0.961045 -1.060341 0.572875 0.671140 -0.108699 0.324771 -1.156239 -0.076333 0.282642 0.320195 0.427247 0.624680 -1.015441 0.298713 -0.636778 -0.289306 0.391692 -1.976699 0.210972 -0.811420 0.278545 0.450788 -0.948204 -0.262455 -0.441194 0.207199 -0.341364 -0.928914 0.813577 -0.638183 -0.331757 1.334270 -0.505237 -0.594270 -1.045589 -0.041632 0.785748 0.564259 0.116082 0.426067 0.462911 0.611406 1.019435 -1.179272 -0.202000 1.208295 0.474120 0.050744 0.034440 -0.260143 -0.439317 0.572325 -0.794187 -1.661462 -0.829471 0.592192 1.049601 -0.121566 -0.232555 -0.016454 -0.889711 0.552519 1.318947 0.503978 0.463113 0.497855 -0.962067 0.398689 1.032253 -0.322337 0.505307 -0.094637 -0.784489 1.420648 -0.367311 0.613890 -0.599073 0.264558 -0.152619 -0.689012 0.148718 1.201726 -0.165515 0.658370 -0.476393 0.359478 -0.480611 -1.402311 -1.796898 -0.211612 2.132586 1.375448 1.050072 -1.110722 0.153750 0.428802 0.899487 0.671213 -0.989091 0.555548 -0.315421 0.682210 -2.856702 -1.545973 1.855108 1.489353 0.514285 -0.073618 -0.037287 0.584075 -0.806956 -0.845595 -1.113287 0.585527 -0.393689 -1.175888 -0.489461 0.443075 -1.210439 -0.431938 0.461610 0.163621 1.196262 -0.892772 0.615092 -0.069370 0.108375 -0.951279 1.414011 -0.498149 -0.807719 -0.250096 -0.013013 0.490276 0.495597 0.116376 0.061628 0.216896 -0.406393 -0.200656 0.096557 0.336089 -0.219467 1.427730 1.435196 -0.647766 -0.907247 -0.155703 -0.802404 2.309018 -1.084696 0.079154 0.044580 0.524693 0.551633 0.536657 1.108861 -0.613386 -0.578400 -1.150852 -0.621744 0.252814 0.871981 -1.553639 -1.492596 -1.639860 0.654475 -0.306303 1.311631 0.119010 2.242251 -0.759192 0.311035 -1.495033 0.052597 1.041980 -0.091298 1.402579 0.225739 -0.660576 -0.258560 -0.548791 -1.193907 0.672156 -0.161397 -0.339123 -0.462794 -0.214478 0.596725 -0.393377 0.184992 0.216700 -0.607502 1.482356 0.137662 -0.101625 -1.128522 0.378735 0.139197 0.243613 -0.623937 1.503139 0.274747 1.656321 -0.200908 0.186514 -0.230731 0.905836 -0.824701 -1.398894 -0.522531 1.334138 1.271295 0.756532 -0.238313 0.046206 -0.076985 0.617254 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.409952 -0.069641 8.474069 0.854056 -3.528254 -4.722853 -2.388962 -10.357156 5.068555 3.965125 9.559729 0.486004 5.704415 -2.780648 1.263034 -0.115004 5.393068 -3.800970 2.110314 -2.414472 1.864510 8.307555 2.067480 1.395466 0.638542 -5.877552 1.656115 0.152624 3.855366 5.023175 1.700280 -0.993749 -3.020882 1.273219 1.007390 3.591619 2.747517 2.679423 -3.272876 -1.541436 -0.783200 -4.330868 4.459164 -1.079290 6.877036 -3.389422 2.454044 -0.867325 -5.098065 -4.441232 -1.680250 4.272493 -4.837149 2.186738 2.797880 -3.389355 -0.266088 0.788843 -1.105547 -5.995115 -0.353076 -3.999865 -1.546370 0.725706 -2.054729 2.437468 -4.083602 -0.567103 -0.231899 -4.079419 2.786461 1.641587 3.491771 4.282302 -7.905708 2.053774 1.687079 0.166270 2.382947 2.649159 -0.757924 -2.006341 -2.398005 -5.087517 4.903760 4.434101 0.591828 0.296127 -7.361478 3.980188 -0.176431 0.457938 0.275170 2.940297 -6.970489 0.760177 0.650509 -2.936362 -0.976773 -8.052302 0.013977 -5.061232 0.809885 2.838001 -1.864122 -1.234278 -7.047813 1.700715 -4.440076 -5.225491 3.859750 -2.049990 -3.141367 5.279870 -6.145200 -0.102632 -4.533228 1.121076 2.985641 2.202922 0.422030 4.013575 2.136592 3.791169 4.592580 -5.372356 -1.142155 4.219905 6.099480 0.928897 0.361795 -1.912571 -2.467079 2.605810 -4.825831 -8.498252 -5.454202 5.021553 6.121047 2.039493 -2.704000 -1.622822 -2.600894 6.376523 6.822158 1.950768 0.627589 2.685803 -5.076326 2.098223 4.807197 -3.432907 5.549290 0.791076 -1.019202 4.513039 -4.279553 3.619139 0.163333 2.101646 -0.975227 -4.405637 -2.373920 5.836008 3.626451 4.491101 -5.153116 2.025246 -1.033196 -7.618157 -10.851615 -2.496208 8.046892 3.031316 3.849325 -4.438692 -3.818163 1.730181 5.241096 0.623787 -7.097799 2.198148 -3.150367 3.099691 -11.081730 -7.622568 10.728990 10.562033 3.870136 1.200132 3.022201 4.264512 -8.518322 -2.593182 -3.428196 4.535132 -2.799341 -9.456773 -3.319979 2.022306 -6.328277 -2.717854 -1.174184 0.979685 1.000610 0.283457 5.588439 3.676181 -0.716950 0.575795 4.958535 -2.100699 -6.043846 -2.424029 0.309775 4.002058 2.743771 -2.731731 1.021448 3.319157 -6.535062 -1.680923 1.438096 2.956756 2.011634 9.103906 8.069619 -0.890295 1.225268 -2.301715 -4.645400 5.415891 -4.201597 -0.356429 -1.431687 0.440305 1.564124 2.294908 5.141605 -2.548937 -5.581447 -5.408343 -2.338214 0.523881 5.432592 -2.395664 -9.961286 -6.726684 2.633741 1.893933 6.315900 -0.275465 10.742270 -3.383705 2.140437 -10.505712 0.289136 3.084120 -0.585405 4.968357 0.868037 -2.999372 -4.370062 -2.011094 -5.743590 -1.781390 0.279350 -2.817575 -1.861563 -6.076382 7.825169 -4.155682 -0.138284 -0.716388 0.489027 9.007699 5.397119 -1.677004 -5.525626 3.852078 3.262507 1.181757 -3.163142 7.174797 1.701542 12.637200 -2.903089 0.767740 -2.056173 3.474263 -2.096879 -4.409502 -1.333786 6.889116 9.776669 2.970525 -3.090058 -0.792602 -2.217012 3.524124 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.405048 0.210521 1.434332 1.170063 -0.762590 -1.817033 -0.360347 -1.779161 1.035441 0.464121 1.556587 0.196648 1.236835 -0.717860 0.128041 0.084859 1.051118 0.099018 -0.055374 -0.566965 -0.504387 2.055855 0.468280 -0.721422 0.242827 -0.708337 0.771083 0.768950 0.714084 1.204685 0.255890 0.119168 -0.088498 0.502799 -0.706887 0.234077 -0.474170 0.683009 -0.764871 -0.498152 0.339845 -0.645416 1.357545 0.150678 0.874242 -0.020520 1.118975 -0.111731 -0.917861 -0.680066 -0.833661 0.964045 -0.738221 0.730940 -0.597688 -0.349749 0.798467 0.074705 0.064501 -1.363607 0.132964 -0.231264 -0.997644 -0.247058 -0.916804 0.192926 -0.481602 -0.916892 -0.073328 -0.461162 0.680828 0.171246 -0.101018 -0.530383 -1.908752 0.125368 0.396211 0.177567 0.766652 0.794091 -0.257908 -0.577589 -0.956920 -0.977898 1.440163 0.118744 0.472742 0.797028 -1.230179 -0.365447 -0.081025 0.281283 0.391655 0.548244 -0.764569 0.534509 0.435534 -0.449279 -0.473700 -1.170774 0.237470 -0.798465 0.148717 0.428453 0.023948 0.165055 -0.759504 0.232147 -0.748354 -1.253913 0.385124 -0.787473 -0.759526 1.063256 -0.692237 -0.423692 -0.388188 0.138972 0.253820 0.877766 0.292160 0.419319 0.897627 0.622383 0.596184 -1.114237 -0.033722 0.459211 0.898495 0.512374 0.245438 -0.336638 -0.771711 0.404565 -0.911475 -2.032355 -0.703284 1.333177 1.153441 0.040615 -1.042097 0.905380 -0.526457 0.847417 1.249146 0.432988 0.462513 0.315303 -0.959848 0.468761 1.485749 -0.706028 0.972689 -0.204647 -0.965274 1.599890 -0.482739 0.494161 -0.030700 -0.364736 -0.075400 -0.537657 0.238584 1.377550 0.338222 0.332692 -0.047534 0.332061 -0.556595 -1.527405 -2.143709 -0.235020 1.494177 1.044075 2.019236 -1.014683 -0.461960 0.199688 0.612086 -0.524491 -0.876867 0.311556 -0.743303 0.732683 -3.074096 -1.760824 2.432715 1.214399 0.835163 0.178872 0.794561 0.626676 -0.363990 -0.739379 -0.738800 0.692584 0.456110 -1.151087 -0.267679 0.180998 -1.582882 -0.346227 -0.043909 0.163671 -0.004119 -0.556525 0.736701 -0.985480 -0.711790 -0.433113 0.519989 -0.925358 -0.377091 -0.230837 -0.130899 0.150747 0.468825 -0.109258 -0.087376 -0.063041 -0.992844 -0.340763 -0.240374 0.785805 0.527886 1.871534 2.210540 -0.623361 0.687341 -0.092107 -0.959103 2.129903 -1.021301 0.015181 -0.133801 1.212476 0.553835 0.543526 1.247408 -0.478284 -0.493789 -1.384315 -0.100278 0.956252 0.602273 -1.233860 -0.796265 -1.877474 -0.009623 -0.054005 1.924310 -0.447476 2.208795 -0.962978 0.411411 -2.361826 0.245199 0.484528 -0.146762 0.930456 0.443846 -0.955445 -0.962214 -0.478047 -1.030628 -0.055418 -0.073377 -0.711719 -0.643518 -0.618991 0.323709 -1.372559 0.312585 0.698085 -0.521175 1.166598 -0.040284 -0.052439 -0.714103 0.332581 0.854587 0.312423 -0.739410 1.099918 0.118865 2.658937 -0.084380 0.979467 -0.777050 0.882554 -0.525559 -1.237782 -0.632691 1.481442 1.596685 0.162198 0.398392 0.401169 0.041528 1.060075 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.241380 1.158143 5.918681 3.181847 0.371121 -1.302865 -0.914399 -3.909253 2.247510 0.958986 4.776219 -1.889258 1.987873 0.518409 -0.404048 -1.184488 2.369517 -1.456364 1.142836 -0.552003 2.876089 4.441327 1.569459 -2.347875 0.366010 -4.625562 1.544908 1.393945 1.797830 2.300524 0.776112 2.013291 1.296722 1.044652 -1.883029 -0.097049 -0.130716 1.640440 -1.246176 -1.446104 0.476329 0.527995 0.937861 0.825443 2.556065 0.670148 3.128553 -1.609475 -1.401840 -0.859482 -4.336309 4.124078 -2.145195 -0.447952 -1.561129 -1.069439 1.547824 -1.750530 -1.067850 -5.202976 0.297836 1.561884 -1.652892 0.087993 -2.310082 2.739140 -0.091615 0.387185 0.158700 -0.250724 2.318157 1.673100 1.823658 0.092139 -3.697554 2.739363 -0.270798 0.544154 1.157576 -0.513179 -0.536015 1.550408 -0.829160 -2.332111 3.651089 1.679157 1.174834 0.466079 0.083593 0.034308 -2.116876 -0.318227 -2.260474 2.575020 -2.445291 2.678925 1.111188 -1.266182 -0.952453 0.503301 -0.351858 -3.564346 -0.054023 3.606422 -0.807186 1.411090 -2.615227 0.484225 -1.329531 -3.428992 0.877407 -2.006870 -1.178959 2.691566 -3.853662 0.103932 -1.513865 1.559347 1.064224 2.922087 -2.099793 3.419710 0.845235 1.850207 0.377257 -1.743111 0.887302 2.325821 2.437935 1.173670 1.070157 -1.986024 -2.099862 -1.667570 0.014651 -3.690779 -1.519568 2.874582 2.956521 0.875220 -5.300228 2.523440 -0.651841 4.231890 3.777148 1.002314 0.638997 1.995639 -2.365596 1.548117 5.326763 -2.311798 2.697685 -1.023617 -0.897904 3.178760 -2.184084 2.604283 0.405553 1.516624 1.093831 -3.161384 -1.394334 3.236423 2.550534 1.474904 1.631324 0.322798 2.361415 -5.176923 -5.199570 -2.253532 1.738493 -0.349065 4.394858 -1.946020 -1.516382 -0.168021 2.424062 -0.654298 -1.630092 -0.505925 -1.534452 0.825010 -6.305950 -5.146036 4.213994 3.755850 0.178995 1.407557 2.590279 2.244102 -0.688309 -1.084826 -0.615477 3.548050 -1.059976 -0.725808 -0.224294 -0.361985 -2.535857 -3.042005 -0.582861 0.344750 -0.186304 -0.735743 1.201288 0.021942 -2.564708 -0.710974 -0.232414 -3.073783 -3.823831 -0.828100 -0.076597 1.138100 0.615218 -1.940707 0.787194 2.630021 -2.785405 -2.139176 0.443516 1.211764 0.738354 2.214275 4.813043 0.652507 1.464599 0.581999 -2.222119 5.421773 -0.291162 -0.791554 -0.863132 0.013995 1.056219 1.614435 0.695241 -1.058506 -2.450277 -4.158493 2.376362 0.091649 1.968064 -2.679407 -2.576664 -2.260654 -0.568409 3.098090 3.017320 -0.155164 6.773425 -1.119402 -0.839786 -6.119876 0.080917 3.060066 -0.461008 1.834804 1.868653 -2.437036 -3.310357 -0.720228 -1.435103 0.898868 -1.396416 -4.247843 -2.845319 -2.337445 3.399023 -3.212404 1.489985 2.027254 1.692929 1.961439 2.231145 -0.962280 -1.558832 0.054282 0.882549 2.112188 -2.309761 3.120081 -1.943232 5.347372 -3.263054 1.768946 -3.100218 2.304073 -1.024216 -1.081505 0.003548 5.504276 3.291889 0.134513 -0.086916 -1.497998 -1.143247 2.885222 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.164375 0.324627 0.600767 0.168004 -0.092430 -0.273243 -0.104435 -0.528583 0.138569 -0.000851 0.227614 -0.206050 0.132944 0.093616 -0.071975 0.010287 0.174562 0.200061 0.049141 -0.108613 -0.083730 0.254784 -0.093795 -0.228619 0.100628 -0.405151 0.163700 0.199195 0.318404 0.242263 -0.064761 -0.025771 -0.053365 0.181670 -0.268321 -0.267866 0.233320 0.080962 -0.422381 0.067048 -0.111193 0.281606 0.122569 -0.067426 0.104695 0.329815 -0.056223 0.091129 -0.104371 0.065547 -0.037339 0.358356 0.021519 0.244477 0.045463 -0.058589 -0.047680 -0.152259 -0.015894 -0.078319 0.057977 0.176319 0.023838 -0.002513 -0.306674 0.007780 -0.043282 -0.301957 0.153881 0.071625 0.151984 0.026174 0.083644 -0.137949 -0.331191 0.234864 0.176656 0.268616 0.162560 -0.142976 0.272130 0.088720 -0.145491 -0.244146 0.103157 0.243960 0.169815 0.059102 -0.002346 -0.241771 0.133528 -0.087685 -0.006455 0.249619 0.013189 0.200075 -0.476577 -0.003763 -0.179829 -0.506126 -0.060090 -0.141155 0.152172 0.028934 0.036154 0.184905 0.288589 0.305649 0.166950 -0.236738 0.114423 -0.008333 -0.029157 0.450836 0.036768 -0.198369 0.005526 -0.091662 -0.262491 0.291117 -0.003971 0.095681 0.097317 0.269793 0.127895 -0.198230 -0.132284 0.077685 -0.009585 0.275758 0.321847 -0.399382 -0.149979 0.000994 -0.195694 -0.479826 0.050388 -0.014767 0.263416 -0.224892 -0.153830 0.086842 -0.267474 0.236376 0.029926 0.090922 0.102872 -0.140812 -0.127129 0.210227 0.423795 -0.208589 0.167378 -0.225084 -0.150185 -0.073333 0.109042 0.176040 -0.131129 -0.064098 0.180760 -0.225784 0.042319 0.350310 0.154941 0.055389 0.191167 -0.008319 -0.288525 -0.429851 -0.267033 0.000750 0.119294 -0.253854 0.446828 -0.127424 -0.405507 -0.139138 0.430983 -0.177996 0.077760 0.090770 -0.215246 0.151847 -0.233041 -0.403440 0.368581 0.442994 0.074010 -0.218124 0.199015 0.073607 -0.209258 -0.283427 -0.086352 0.050103 -0.010551 -0.411674 -0.355558 -0.023667 -0.238697 0.080871 0.118853 0.122995 0.175379 0.235619 -0.043515 -0.021068 -0.387520 -0.322412 0.243226 -0.251711 0.118294 0.147164 0.040140 -0.049241 0.194076 -0.317419 -0.250014 0.264331 -0.171479 0.038372 0.039155 0.188350 -0.038467 0.334150 0.149398 0.182954 0.415039 0.211630 -0.305728 0.692039 -0.097707 0.108785 0.042015 0.062053 -0.267538 0.178429 0.117548 -0.103664 -0.320126 -0.446348 -0.174184 -0.063447 0.099297 -0.030766 -0.332676 -0.159953 -0.109163 0.046936 0.254671 0.070068 0.489410 -0.034066 0.126049 -0.437247 0.032313 0.169736 -0.121856 0.240198 0.231481 -0.281310 -0.577496 0.017381 -0.231387 -0.343590 -0.160272 -0.452295 -0.160302 -0.150236 0.130648 0.010666 0.105725 0.396843 0.122614 0.185408 -0.174284 -0.047014 -0.145720 -0.077747 0.287856 -0.060810 -0.301264 0.060031 0.100062 0.813119 0.003213 0.198448 -0.269179 -0.249646 0.134210 -0.105169 -0.116682 0.346835 0.198761 0.218346 -0.015788 0.021491 -0.160461 0.196602 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.789695 -1.284874 28.293151 6.284593 -9.103509 -13.164206 -8.637931 -28.896857 15.452242 12.394273 31.473573 0.188338 16.766684 -7.901766 3.938417 -4.101708 15.976830 -15.062823 5.482616 -7.294844 5.740141 25.780467 11.121574 -1.031118 1.696970 -21.458329 6.637074 0.727567 8.564281 17.133370 4.953327 -1.162951 -6.826579 5.972734 -0.192080 10.799280 8.612585 8.445827 -6.175910 -6.486820 2.227320 -6.382553 13.645519 -2.099474 21.984503 -5.550724 8.165239 -4.346200 -17.869849 -13.997758 -5.961964 14.784265 -17.201011 5.866894 8.767093 -5.792526 2.751756 -3.947922 -5.401590 -25.348712 -0.440536 -7.727910 -5.622792 2.091881 -6.918591 8.446164 -9.717968 -0.590293 1.475170 -12.040447 10.723934 5.464258 10.747220 10.744866 -18.539207 9.817240 4.254097 0.721332 8.093872 5.615717 -5.922718 -3.252762 -6.405587 -16.060703 14.989637 9.247982 2.557587 1.338056 -16.344611 11.383669 -1.329948 -0.336299 -2.860754 11.315667 -19.060210 3.194742 7.517759 -10.039383 -4.531980 -17.524360 -0.798229 -17.425413 2.101534 16.794905 -8.169988 -3.705399 -23.953781 4.521811 -15.197880 -16.963442 12.361045 -7.710156 -8.690794 13.596208 -22.491589 0.950457 -12.208332 3.901489 11.164516 11.020924 0.411111 13.244163 8.289442 12.907667 11.914302 -16.034011 -1.171846 11.029581 21.189379 3.076079 3.017182 -9.273942 -8.760709 6.647921 -13.265612 -25.745920 -15.507382 16.074069 19.219328 9.648564 -16.705205 1.507146 -6.866911 21.222637 21.691474 7.566528 2.243731 7.341260 -16.169123 8.000044 18.100791 -12.037564 18.050360 1.656603 -7.407558 17.728501 -15.583595 12.539630 3.007622 7.045561 -1.085420 -16.545759 -6.394751 19.553525 13.300618 15.010160 -11.794104 5.909515 2.791001 -25.776185 -34.716766 -7.088819 21.305990 8.530142 17.880657 -14.182674 -11.285427 3.147967 18.341581 -0.265103 -20.980508 3.420083 -7.709518 8.289291 -37.815899 -25.190793 35.934691 32.414369 10.820705 4.651316 12.086417 13.091384 -20.139826 -5.682415 -11.562678 16.126798 -6.619796 -21.014612 -5.842171 4.564095 -19.087632 -11.064718 -4.881152 2.961180 3.276274 -4.386124 10.084843 10.553465 -5.741126 2.238184 11.727089 -9.714132 -20.281521 -7.721760 1.014158 11.772614 7.389953 -7.479320 1.771725 9.129840 -21.229879 -8.419871 6.083960 12.422742 8.917779 27.150254 25.577451 -3.166648 4.189382 -4.806357 -13.116062 20.561029 -12.763765 -3.234150 -4.103166 5.011503 7.704629 6.786248 14.502240 -7.320255 -16.793495 -17.457783 -0.480942 1.889267 15.805921 -14.316390 -29.751608 -21.758328 5.354575 8.497022 20.120756 -1.510363 36.822464 -7.990563 3.969850 -34.864415 0.247344 12.705473 -1.390632 12.974344 5.103276 -10.593538 -19.004443 -7.291702 -16.472488 -0.728545 0.303574 -10.199003 -6.884253 -19.576707 25.846241 -14.352477 2.926188 2.077032 3.032290 24.299920 20.133330 -5.476988 -16.525042 8.465489 6.737961 5.771417 -10.572600 24.751819 2.727580 38.497501 -11.847607 4.865752 -9.818387 12.746067 -7.168599 -10.882025 -2.981765 21.930450 30.074188 7.009544 -6.291578 -1.778474 -8.445359 13.002818 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.081431 0.970725 3.042871 1.182234 -1.656547 -2.238039 -0.718126 -3.843688 1.794894 1.650861 2.340125 -0.186484 1.509094 -0.432073 -0.549594 0.384066 1.381727 -0.012491 -0.143751 -1.456918 -1.591593 2.391919 0.047240 -0.126512 0.875406 -3.036778 2.407380 0.155309 1.250247 1.602089 0.859969 0.296828 -0.503172 1.338390 -0.237305 0.667187 -0.032214 1.158555 -0.859728 0.328052 0.950921 -0.324309 1.579820 1.371514 1.804431 1.196076 0.348105 -0.199776 -1.586502 -1.011116 -0.489267 0.675519 -1.189351 1.529336 -1.063868 -0.199248 0.471927 -0.540301 0.694464 -1.099633 0.120723 -0.833471 -0.993036 0.060887 -1.662583 0.317818 -1.274644 -1.542628 -0.560189 -0.457511 1.459136 0.282691 -0.312361 -0.108442 -2.795045 0.469907 0.708408 0.186646 1.970561 0.099123 -0.751191 -0.847669 -2.030840 -2.390645 2.284280 1.198995 0.635851 0.956220 -0.944786 -1.370969 -0.234638 -0.086346 1.049976 2.100722 -1.710077 0.128093 -0.379829 -0.877863 -0.819809 -2.753046 0.145558 -1.568906 0.722231 0.594397 -1.180468 0.597162 -0.153196 0.642298 -0.227422 -1.016731 0.827183 -1.233771 0.266461 2.399791 -0.228766 -1.874997 -0.924998 -0.392821 0.503267 1.425788 0.751988 -0.064531 3.143788 1.008901 1.452627 -1.575008 -0.414564 0.954021 0.266411 0.796028 0.914023 -1.485318 -1.458793 0.575257 -1.060815 -3.023787 -0.725194 0.470770 1.967445 -1.175189 -0.800928 1.125899 -1.176099 0.736741 1.912846 0.549828 0.845377 0.008731 -1.690221 0.614558 2.998175 -0.899594 0.874842 -1.262699 -1.097365 1.735157 -0.488480 0.740364 -0.124631 -0.584578 -0.301310 -1.265955 0.328610 2.575118 -0.415977 0.115739 0.413853 1.123307 -1.378378 -1.966378 -3.223315 -0.484931 2.275310 1.078973 3.027524 -2.048175 -0.041483 -0.363686 2.016960 0.318292 -0.772734 0.794165 -0.836412 0.788508 -3.406103 -2.783971 3.722162 3.093245 1.524362 -0.882093 0.921775 1.036658 -1.201748 -1.906939 -1.210535 0.606122 0.660827 -1.983999 -1.399634 0.790594 -2.139109 -0.935940 0.035719 0.482472 1.231770 -0.968146 0.924949 -0.804404 -0.828777 -1.716135 1.334559 -1.133365 -0.609212 -0.100740 0.374504 -0.007793 1.019407 -0.432145 -0.477848 0.305365 -0.922945 -0.070889 0.690791 1.624525 0.410755 2.923593 2.765206 -1.055343 0.450737 0.000810 -1.172836 3.423239 -1.287804 0.199813 0.326501 1.079561 0.162287 0.877115 1.784851 -1.031992 -0.912805 -2.276835 -0.060401 0.380198 0.252137 -1.266202 -0.813121 -3.308381 0.111147 -0.824797 2.774390 0.178240 3.860806 -0.635860 0.485401 -2.814219 0.199180 1.517910 -0.698454 1.755266 1.119842 -1.654695 -1.189461 -0.908244 -2.002619 -0.531438 -0.119741 -0.543839 -1.430574 -0.362190 0.483098 -1.173795 0.944993 1.457171 0.216350 1.560873 -0.857225 0.116930 -1.668212 0.704968 2.033220 0.253022 -1.556232 1.372985 0.262129 4.017716 -0.248858 1.331601 -0.926395 0.072957 -0.616454 -1.980093 -1.448227 2.290714 1.806748 1.317348 0.332513 0.167121 0.114734 2.371573 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = -1.049391 0.898494 5.190114 1.797225 -2.478312 -3.725239 -1.243058 -6.100974 3.006696 2.497026 4.801963 -0.137232 2.754145 -1.144183 0.060225 1.047995 3.056252 -0.859304 -0.091710 -2.333972 -1.300265 4.262226 1.098723 -0.331789 1.334411 -4.360130 2.000905 0.356553 1.930468 2.397823 1.376902 0.187413 -0.876247 1.698294 -0.224116 1.835489 0.688507 1.468848 -1.944004 -0.183679 0.765894 -0.936566 2.616260 1.326841 3.646303 0.512662 1.900352 -0.458348 -3.305273 -1.976786 -1.541322 3.039974 -2.417801 2.165907 -0.454590 -0.467520 0.749899 -0.996914 0.148627 -3.093895 -0.339143 -1.276528 -1.731356 -0.004310 -1.999406 1.031534 -1.785779 -1.680610 -0.486781 -0.731236 2.532096 0.687031 0.222411 0.864627 -4.149786 1.040009 1.024737 0.574222 2.721355 0.383026 -0.928384 -1.347353 -2.458353 -3.505791 4.069076 1.232123 1.068900 1.165134 -2.502336 -0.332007 -0.719008 -0.278311 0.842698 2.570189 -3.743501 0.310960 0.847432 -1.854595 -1.611834 -3.957553 -0.033124 -2.713755 0.598932 1.504800 -1.232764 0.710174 -2.664452 1.140517 -1.753462 -2.188462 1.813195 -1.484606 -1.222236 3.286636 -2.203027 -1.742492 -1.417093 0.206207 0.825908 2.294433 1.003665 1.201629 3.919478 2.081943 2.329233 -2.521708 -0.370232 1.202708 2.341625 1.285220 1.487577 -1.869764 -2.500879 1.261333 -2.163366 -5.169657 -1.907239 2.442202 3.811076 0.324476 -2.289190 0.794113 -1.442158 2.660902 3.243932 1.011925 0.976315 0.265751 -2.985114 1.213525 4.540048 -2.222376 2.711198 -0.993320 -1.024617 2.819950 -1.861477 1.430182 0.227097 -0.451530 -0.264090 -2.390034 -0.809332 4.090596 1.202280 0.692936 -0.628597 1.821888 -1.471806 -4.223328 -6.118820 -1.265986 3.456356 1.305814 4.351781 -2.930260 -1.317606 -0.603982 3.101090 -0.529666 -2.473475 0.978212 -1.895253 1.317263 -6.038928 -4.675887 7.338091 5.843590 2.555381 -0.474718 2.199157 2.249365 -3.351163 -2.383088 -1.795787 1.631764 0.520763 -4.246198 -2.228946 1.154724 -3.985633 -1.849814 -0.569787 0.798439 0.661959 -0.602376 2.311042 0.210110 -1.533478 -0.915075 1.859489 -1.893007 -2.121707 -0.561894 0.457845 1.144590 1.621436 -1.273539 -0.374221 1.056599 -3.166492 -1.016210 0.957236 3.312021 1.794289 5.431492 5.236554 -0.837264 2.028463 -0.479703 -2.874683 4.410489 -2.161414 0.072991 -0.285600 1.338221 0.534852 1.210564 3.023170 -1.499444 -2.488461 -3.502144 -0.179751 0.597215 1.479821 -1.691754 -3.192102 -4.941971 0.358831 0.085323 4.300306 -0.442405 6.422397 -1.608551 0.769542 -6.064699 0.329349 2.429980 -0.843520 2.392691 1.643713 -2.572756 -3.060391 -1.432026 -3.309552 -1.023779 0.129802 -1.164648 -1.901224 -2.292213 2.905388 -2.914632 1.139930 1.569874 0.688590 3.914132 0.953665 -0.185478 -2.740287 1.718709 3.167716 0.922378 -2.487816 3.146495 0.702272 7.827717 -0.787594 1.719490 -1.903567 0.394679 -0.857993 -2.580548 -1.787133 3.809825 4.818840 1.658368 0.165339 0.079336 -0.579089 3.737631 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.774946 1.823501 18.074314 6.853590 -8.027176 -12.999941 -4.738200 -20.142493 10.599694 7.129173 17.520802 0.034208 10.067791 -5.048646 1.331037 2.669679 11.052100 -4.224113 0.281290 -7.009753 -2.888543 16.778551 5.509480 -3.223120 3.811494 -13.297645 5.505927 2.406061 6.672718 9.548694 3.752678 0.207894 -2.640464 5.358169 -1.115993 6.805293 2.511000 4.900351 -6.945274 -2.458414 2.411844 -4.235121 9.974941 1.850852 12.847976 -0.222858 8.532586 -1.674806 -11.707913 -6.675740 -6.498593 12.408454 -9.434493 6.284483 0.417672 -1.447507 3.275325 -4.137487 -1.757847 -12.532060 -1.679699 -3.696250 -7.151463 -0.130117 -6.899785 3.844844 -5.476870 -4.474929 -0.336783 -3.623738 7.911746 2.741058 1.640235 2.435711 -14.035708 3.998060 3.793266 2.206815 7.932758 2.650829 -2.688880 -3.894829 -7.458121 -10.931723 13.634207 2.990515 3.685579 3.197557 -9.477660 1.460498 -2.375848 -0.012724 1.119757 7.825650 -12.720801 2.098714 4.054354 -6.638273 -6.096346 -12.692178 0.219699 -9.580572 1.692721 6.537674 -3.762016 1.282266 -10.875205 3.762139 -7.581762 -9.674362 5.428166 -5.198971 -6.023505 10.241244 -9.683096 -3.445144 -5.362986 1.206912 3.143590 8.150621 2.497479 5.938994 11.092557 8.040711 7.907239 -9.426542 -1.201415 3.950181 10.643440 4.290946 4.646227 -6.295173 -7.890725 4.392543 -7.775636 -18.816133 -7.591519 10.562816 12.611152 3.824310 -9.934160 2.386763 -4.293444 11.188816 11.561434 4.003776 2.757356 1.950403 -9.928969 4.973171 15.339201 -8.206601 10.690180 -2.855414 -4.735168 11.813039 -7.838954 5.631651 0.812119 -0.312408 -0.813755 -8.858346 -2.786993 13.710388 5.827452 3.758836 -3.158118 4.703951 -2.671013 -16.028644 -21.819590 -4.047010 12.274766 5.138833 15.865932 -9.857580 -6.175763 -1.012249 9.805746 -2.901087 -9.619136 2.781513 -7.258844 5.496394 -23.336826 -16.969438 25.784193 18.620517 8.080193 0.864712 8.543235 7.379814 -11.716402 -6.421544 -7.075109 7.716337 1.339447 -14.123866 -5.602096 2.848552 -14.701567 -5.555996 -2.608234 2.749934 1.430296 -1.967450 7.356594 0.849073 -6.315862 -1.707236 6.653023 -7.333625 -8.566063 -2.665491 0.504131 4.623077 5.577294 -4.196747 -0.937577 3.072956 -12.380846 -4.562834 2.660466 10.590391 6.208322 18.789888 19.615579 -2.424077 7.688302 -1.807170 -9.851403 14.799724 -7.628200 -0.223464 -1.590855 5.286920 2.861518 4.436965 11.045874 -4.625399 -9.560542 -11.881583 -0.443289 2.771564 7.222581 -7.463858 -13.646428 -16.114940 0.587088 3.090304 15.373700 -2.230757 22.490311 -6.091100 3.393920 -23.595539 1.184143 8.090435 -1.560865 8.039996 5.012731 -9.116441 -11.863375 -4.624989 -10.701631 -2.990244 0.264345 -5.144130 -6.546415 -10.013812 11.924749 -11.136254 2.912382 5.114440 1.194154 14.335484 6.361294 -1.103812 -8.980964 4.939689 9.502993 3.589224 -7.677499 12.334649 2.615907 28.112166 -3.422203 6.255322 -7.225069 3.953308 -2.978479 -8.475609 -4.758870 13.431273 18.270245 3.921238 0.299699 0.218913 -3.172346 11.661665 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.528557 1.604125 6.051634 4.257618 -5.062277 -4.886550 -1.467400 -6.674188 3.925699 2.038920 4.101174 0.082067 2.473498 -2.187057 -1.214170 0.319013 3.299127 1.085551 -1.708855 -3.020407 -3.512165 3.724577 0.578678 -3.516430 2.533659 -4.160333 4.565319 0.623072 1.477324 2.666263 1.982027 0.641559 -1.400339 2.881432 0.105726 1.858867 0.244701 1.626823 -2.516465 -0.516906 2.358788 -1.419971 3.444911 2.055513 3.983423 1.700600 1.863969 -0.234631 -4.993590 -1.169427 -1.202333 2.572809 -2.317276 3.268629 -0.506461 1.283548 1.176929 -2.877391 1.020594 -3.417095 0.259437 -1.724221 -2.691512 -0.281603 -3.616197 0.155624 -1.094597 -3.059949 -0.520388 -1.588110 1.961696 -0.138960 -1.081252 -1.043596 -3.868831 0.151347 1.711906 1.014912 3.933659 1.547883 -0.566550 -2.705249 -3.527170 -3.678479 3.729359 -0.072506 1.366427 2.165230 -1.264821 -2.421653 0.355339 -0.479061 1.636728 3.434820 -4.428179 -0.191492 -0.240352 -2.070127 -2.204906 -4.871129 0.726668 -2.537124 1.402102 1.607936 -3.716475 2.034577 0.235968 1.750960 -0.210289 -1.524757 1.000257 -2.306409 0.460842 4.429934 -0.363927 -4.179820 -1.431534 -0.878549 0.559294 3.013304 0.611219 0.244559 5.940453 2.240761 3.336617 -3.028734 -0.412274 1.263255 1.051059 1.799882 2.332335 -3.057231 -2.448197 1.350016 -1.909046 -6.266366 -1.349216 0.784199 4.179025 -0.113376 -3.500880 1.057370 -1.812903 2.002408 1.901127 1.838247 1.122256 -0.058642 -3.264642 0.519848 5.301272 -1.739144 1.706720 -1.719933 -2.193470 2.909168 -0.097259 0.807273 -0.876529 -1.732273 0.159274 -2.346730 0.335840 4.605159 -0.620209 -1.462130 0.427321 1.836894 -3.504569 -4.968772 -6.453418 -0.522371 3.975953 2.386366 6.802613 -4.570424 -0.982460 -2.013702 3.772912 -0.731540 -1.183577 1.150207 -2.414249 2.108859 -5.871260 -5.918249 7.900690 5.062436 2.356444 -1.126056 2.663484 0.074546 -3.119653 -3.416422 -3.042876 0.625738 2.508097 -2.106198 -1.658162 1.222369 -5.236710 -1.491414 0.733657 1.268074 2.737472 -2.151900 1.489196 -1.453517 -1.509800 -3.371415 1.995556 -1.829120 -0.815675 0.257112 0.635447 0.733644 2.555329 -0.650156 -2.460608 -0.998255 -1.997500 -0.941934 0.753138 4.050809 0.973227 6.530063 6.247435 -1.552238 2.202092 0.306656 -3.089695 7.686179 -2.407473 0.821614 0.348921 2.260913 0.935654 1.122373 4.388445 -2.017487 -1.313591 -4.050207 -0.831165 0.145900 1.273075 -5.129495 -1.812579 -6.196173 -0.294795 -1.358431 4.165882 -0.230824 7.189719 -1.296916 0.511157 -7.143119 0.148645 4.662974 -1.011012 2.877523 2.340340 -4.098775 -4.594574 -1.210144 -3.713711 -0.327833 -0.565587 0.172327 -2.977193 -0.315851 2.160497 -2.012118 1.651744 4.553275 -0.067723 3.138237 -1.251589 0.700157 -1.435158 -0.347279 3.134053 0.735141 -2.880828 3.491315 1.220446 8.949168 0.628238 2.325529 -2.036661 0.168763 -0.996128 -3.875198 -3.235724 3.767216 4.099250 2.334340 1.116697 0.713482 -1.258245 4.900380 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = -1.195304 -0.113724 1.743518 -0.010097 -0.689619 -0.997551 -0.552445 -2.140581 0.956429 0.915168 2.187472 0.076023 1.332956 -0.631564 0.369869 -0.142500 1.105604 -1.001142 0.607590 -0.451443 0.394043 1.672579 0.555363 0.518763 0.093039 -1.171773 0.372834 -0.145173 0.632868 1.247862 0.345419 -0.264654 -0.759615 0.205532 0.345475 0.927324 0.735752 0.665782 -0.466006 -0.280493 -0.232041 -1.075234 0.857746 -0.295120 1.530688 -0.604719 0.317148 -0.166648 -1.140288 -1.102918 -0.225936 0.660678 -1.238978 0.401326 0.641643 -0.857170 -0.057795 0.344726 -0.323301 -1.605081 -0.064904 -1.123642 -0.242334 0.232097 -0.392741 0.614809 -0.991530 -0.108995 -0.089409 -0.884370 0.657857 0.468081 0.949168 1.277406 -1.533243 0.477284 0.345907 -0.008999 0.470635 0.454071 -0.266252 -0.402036 -0.464080 -1.121920 1.034243 0.868605 0.173452 -0.013544 -1.591830 1.144410 -0.009211 0.100326 0.094723 0.584798 -1.295641 0.129103 0.245473 -0.561030 -0.076642 -1.867387 -0.024526 -1.119510 0.148323 0.835274 -0.417628 -0.444269 -1.807993 0.444611 -1.153301 -1.236582 1.040821 -0.456481 -0.786702 0.965220 -1.491178 0.187704 -0.930980 0.240195 0.893353 0.459396 0.175793 0.947438 0.230542 0.851204 0.962718 -1.142583 -0.312397 0.930831 1.491706 0.102298 0.013326 -0.439609 -0.549751 0.657184 -1.242214 -1.753734 -1.273376 1.132578 1.297061 0.464336 -0.678037 -0.193409 -0.600762 1.278658 1.576351 0.509383 0.095656 0.590975 -1.149887 0.490478 0.858201 -0.794507 1.290294 0.431934 -0.202684 1.007567 -0.970398 0.730080 0.134942 0.538931 -0.200574 -0.976520 -0.630603 1.205483 1.044516 1.248055 -1.258687 0.494289 -0.253707 -1.662775 -2.218950 -0.541911 1.982488 0.591495 0.637955 -0.957405 -0.778451 0.504013 1.299304 0.177183 -1.677250 0.335577 -0.507644 0.637276 -2.514350 -1.604937 2.326889 2.248451 0.923990 0.322147 0.494181 1.096667 -1.868272 -0.432313 -0.798773 0.978967 -0.866831 -2.149760 -0.874451 0.431258 -1.339021 -0.624451 -0.291171 0.231388 0.192577 0.123109 1.069234 1.036959 0.027276 0.316308 1.006200 -0.434835 -1.439966 -0.561258 0.081428 1.029249 0.438941 -0.607911 0.403117 0.811389 -1.512339 -0.358822 0.437385 0.618331 0.534036 2.150421 1.618225 -0.283023 -0.122863 -0.582827 -0.990097 1.033135 -0.872546 -0.082962 -0.329551 0.199544 0.458744 0.399790 1.195198 -0.545002 -1.351633 -1.148304 -0.631288 0.215265 1.211171 -0.406752 -2.340469 -1.474540 0.749778 0.449763 1.431335 -0.079347 2.290330 -0.619944 0.476337 -2.065285 0.052890 0.609596 -0.204140 1.018646 0.129937 -0.474405 -1.011852 -0.524449 -1.281691 -0.424813 0.007798 -0.508589 -0.205933 -1.315454 1.655215 -0.780265 -0.125191 -0.412811 0.196224 1.979748 1.475817 -0.407570 -1.332583 0.972725 0.614901 0.222635 -0.694586 1.718406 0.479357 2.676369 -0.638589 0.012311 -0.380826 0.795856 -0.501864 -0.760681 -0.174685 1.457244 2.216941 0.662172 -0.663984 -0.092571 -0.413435 0.647947 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = -0.304501 0.201149 1.808481 0.317777 -0.422138 -1.496654 -0.468478 -2.594108 1.245386 0.872811 1.920153 -0.036766 1.394864 -0.612382 0.101166 0.242691 0.967656 -0.363272 0.213179 -0.578833 -0.069385 2.005223 -0.039663 0.113690 0.254379 -1.523215 0.690471 0.545397 0.862649 1.129409 0.363937 0.045271 -0.273914 0.451179 -0.419441 0.574663 0.295025 0.652303 -0.729960 -0.339309 0.043802 -0.353678 1.083243 0.058978 1.348236 -0.088086 0.548629 -0.091981 -0.536425 -0.799161 -0.350808 0.923574 -0.651548 0.563395 -0.260084 -0.548600 0.202589 -0.094066 0.039964 -0.865367 0.187712 -0.239522 -0.779078 0.000524 -0.686494 0.312454 -0.439734 -0.568379 -0.108943 -0.807955 0.651213 0.084227 0.007232 0.003658 -2.063931 0.229423 0.481355 -0.120710 0.725355 0.380137 -0.202736 -0.529983 -0.883141 -1.165661 1.581280 1.249768 0.317343 0.613665 -1.445576 -0.039957 -0.215146 0.087400 0.539653 0.880621 -1.038365 0.114588 0.202989 -0.593910 -0.437104 -1.426650 0.375623 -0.945085 0.309598 0.309413 -0.002507 0.117088 -0.518483 0.405501 -0.726341 -1.027452 0.523936 -0.723735 -0.203335 1.432542 -0.725901 -0.502651 -0.945277 -0.087293 0.296097 0.766323 0.250468 0.373678 1.148964 0.701321 0.829524 -1.273673 -0.455263 0.979893 0.897285 0.455210 0.045995 -0.945100 -0.556201 0.464536 -1.160829 -2.115225 -1.009634 0.671402 1.168567 -0.503003 -0.642508 0.676436 -0.522993 0.923374 1.456031 0.160549 0.270232 0.506057 -1.094410 0.449997 1.495094 -0.633173 0.929315 -0.492936 -0.625317 0.910808 -0.530525 0.570364 0.117896 -0.095155 -0.276031 -0.667882 0.279623 1.376833 0.282068 0.819680 -0.662668 0.530864 -0.632755 -1.330420 -2.372005 -0.488649 1.516476 0.697495 1.745623 -1.057638 -0.774414 0.119761 1.245736 -0.154815 -0.964104 0.643703 -0.944539 0.767365 -2.291204 -1.706279 2.251502 1.911888 1.232214 -0.043449 0.872886 0.655339 -1.094041 -0.581853 -0.563506 0.816866 0.230629 -1.919852 -0.456755 0.198936 -1.465998 -0.531268 -0.352089 0.235227 -0.037948 0.090196 1.222139 -0.374162 -0.466714 -0.428765 0.934976 -0.605142 -0.526042 -0.482801 0.058424 0.122199 0.645915 -0.703949 0.073969 0.547176 -1.014477 0.006047 0.319877 0.474217 0.341374 1.857322 1.842224 -0.563809 0.771388 -0.428921 -0.720344 1.467979 -0.732662 0.029386 -0.040362 0.534344 0.324625 0.606848 1.045760 -0.570723 -0.755874 -1.408115 -0.370823 0.581275 0.786980 -0.241457 -1.269633 -1.768233 0.065940 -0.132420 1.968272 -0.040502 2.339816 -0.723351 0.687176 -2.216974 0.207076 0.423932 -0.272900 0.866271 0.307668 -0.899251 -1.011114 -0.294417 -1.280481 -1.185673 -0.039343 -0.835770 -0.783008 -1.189904 1.044682 -1.118763 0.090565 0.479412 0.060414 1.270168 -0.034610 -0.082759 -1.048585 0.639850 0.911342 0.053368 -0.831376 0.818906 0.236837 2.821184 -0.444622 0.946211 -0.582060 0.957306 -0.604987 -1.301394 -0.555143 1.513019 1.693533 0.441642 -0.221049 0.001469 -0.103965 1.031861 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = -1.439196 -0.267954 2.840469 1.333314 -0.919547 -2.643314 -0.807117 -3.259095 1.926173 1.128784 3.416440 0.134819 2.075514 -1.331258 0.665260 0.222764 1.829858 -0.882108 -0.143142 -1.000721 0.373474 3.131279 1.065219 -1.058298 0.488816 -1.863329 0.302651 1.216629 0.707529 1.692573 0.474065 0.074892 -0.282468 0.723635 -1.160087 1.171152 0.474973 0.806955 -1.156935 -1.059617 0.320953 -0.184605 1.903726 -0.319285 2.483884 -0.346001 1.840394 -0.283196 -1.925777 -1.566990 -0.870495 2.355600 -1.308713 1.076084 -0.102821 -0.225166 0.737757 -0.739256 -0.445620 -3.083167 0.338731 0.141145 -1.385289 -0.309659 -0.813242 0.597225 0.199672 -0.821147 0.328381 -1.369550 1.213631 0.080843 0.006992 -0.079622 -2.323150 0.439641 0.713987 0.151715 0.933904 0.775603 -0.488488 -0.982662 -0.893203 -1.437950 2.294927 0.734941 0.738771 1.197477 -2.209248 0.499376 -0.165224 -0.016083 0.245834 0.932180 -1.921987 0.140808 1.776374 -1.152519 -0.991120 -0.974095 0.457901 -1.471270 0.220571 1.401618 0.075670 0.326142 -1.988458 0.754327 -1.918476 -1.783165 0.968976 -1.028994 -0.999394 1.629830 -2.066068 -0.331199 -0.992693 0.368212 0.538975 1.538913 0.060181 1.083465 1.535017 1.322301 1.153136 -1.999089 -0.199205 0.916191 2.587790 0.873393 0.285833 -1.107527 -1.030998 0.745876 -2.026648 -3.297535 -1.811399 1.900131 2.485871 0.692230 -2.465233 1.292934 -0.594877 2.415750 2.104700 0.560492 0.300102 0.791403 -2.089902 0.728884 2.453336 -1.332554 2.057789 -0.075304 -1.099380 1.725184 -1.072076 0.997051 0.721422 -0.317538 -0.089770 -1.260739 0.005305 2.174778 1.497292 1.322677 -1.353970 0.927653 -0.518092 -2.819518 -4.336083 -0.990968 1.819682 1.180192 3.325481 -1.681588 -1.794010 -0.343649 1.816071 -1.294575 -2.029847 0.446731 -1.611469 1.163606 -4.284825 -2.845433 4.595172 3.514096 2.039110 0.697697 2.276361 0.944093 -1.501729 -0.401748 -0.736986 1.438647 0.763151 -2.244387 -0.130276 0.251977 -2.634277 -1.367859 -0.733414 0.355347 -0.957497 -0.139245 1.589368 -0.173885 -1.134329 0.299027 0.496374 -1.344872 -1.098337 -0.717274 0.032703 0.735531 0.906890 -1.172328 -0.075642 0.540796 -2.446141 -0.619002 0.175851 1.643106 1.554913 3.080625 3.557589 -0.706518 2.209711 -0.684088 -1.724383 2.570280 -1.430803 -0.157917 -0.505789 1.316891 1.192287 0.614175 1.709791 -0.834958 -0.823569 -2.195003 0.007611 1.257853 1.556171 -1.649195 -2.377168 -2.907538 0.046400 0.333914 2.903715 -0.710806 3.948801 -1.405082 0.706232 -4.835402 0.249933 0.935655 -0.154688 0.746935 0.625015 -1.478288 -3.274802 -0.401007 -1.975288 -1.087152 -0.031426 -1.328925 -1.029898 -2.269792 2.437366 -2.408456 0.344676 1.216758 0.039193 2.369423 0.975535 -0.295305 -1.186842 0.620777 0.919770 0.641289 -1.343035 1.893106 0.374980 5.120822 -0.739360 1.582014 -1.362753 1.938315 -0.971300 -1.794385 -0.815469 2.367556 3.447253 0.281610 0.140256 0.197466 -0.723866 1.891528 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = -3.850301 -0.385756 6.266454 0.282411 -2.807210 -3.483113 -1.903627 -7.653256 3.821218 3.130656 7.232773 0.332231 4.176518 -2.541444 1.130730 0.199421 4.097483 -3.169547 1.088132 -1.996264 1.522719 5.176759 1.651056 0.902157 0.957878 -4.288414 0.860538 -0.281375 1.878334 3.409573 1.664412 -0.810469 -2.559114 1.035964 1.422459 3.850202 3.053190 1.719413 -2.087489 -1.165273 -0.559506 -2.835006 2.928737 -0.780869 5.888655 -2.199982 1.533406 -0.558310 -4.428069 -3.463931 -0.633125 3.401963 -3.835260 1.668086 2.694334 -1.750831 -0.444755 -0.299806 -0.915815 -5.073886 -0.307133 -3.136626 -1.209707 0.603600 -1.082588 1.730406 -2.165573 -0.075119 -0.299558 -3.330191 1.979245 0.852610 2.244612 3.903886 -4.577735 1.175877 1.335324 0.047359 1.976415 1.583969 -0.704426 -2.066045 -1.431044 -3.670837 3.727763 2.797184 0.572803 0.422626 -5.264485 3.577952 -0.254373 -0.132375 0.406162 2.146867 -5.545483 -0.507448 1.544833 -2.482989 -0.915777 -5.322897 0.326849 -3.528988 0.516431 2.463003 -1.698512 -0.905715 -5.724756 1.597040 -3.738905 -3.073428 3.209696 -1.433810 -2.121396 3.484237 -4.732718 -0.112796 -3.383954 0.595910 2.548591 1.747091 0.360712 2.826074 1.813952 2.895632 3.766592 -3.848529 -1.070858 2.917508 5.076499 0.604561 0.250578 -1.891720 -1.680869 2.324010 -4.089271 -6.013373 -4.389935 3.147719 4.787989 2.249517 -2.681295 -1.368917 -1.622597 4.619586 4.414646 1.526025 0.055967 1.939790 -4.038879 1.154587 3.178186 -2.619751 4.159185 1.129197 -0.118401 2.370776 -3.050480 2.215548 0.573760 1.182467 -0.730098 -3.130126 -2.057540 4.076173 3.206191 3.401900 -4.766144 1.963398 -1.128622 -5.595799 -8.211501 -2.027091 5.676925 1.826268 2.599817 -3.441670 -3.127069 0.401826 4.562626 -0.065506 -5.368210 1.368980 -2.548535 2.301576 -6.867164 -5.246535 8.475554 8.207122 3.445094 0.958557 2.515607 2.778111 -7.068441 -1.298767 -2.401622 3.009546 -1.834138 -6.823092 -2.290569 1.474791 -4.828597 -2.454012 -1.206234 0.911216 0.102927 0.774134 4.254336 3.760800 0.105905 1.076259 2.939605 -1.019050 -4.491952 -1.855192 0.474669 3.402965 2.103965 -2.473806 0.553389 2.437022 -5.185993 -1.379866 1.576533 2.724023 2.159020 7.029771 5.690262 -0.691666 1.380190 -2.108781 -3.564134 2.983665 -2.582308 -0.065059 -1.130837 0.122423 1.709030 1.158279 3.963937 -1.964770 -3.952392 -3.698535 -2.124799 0.312915 4.267516 -1.532910 -7.657085 -4.908321 2.026784 1.274289 4.296150 -0.418464 7.609639 -2.041829 1.574566 -7.862224 0.148271 2.769454 -0.614906 2.658921 0.577097 -2.145235 -4.496352 -1.302168 -4.526765 -2.242813 0.274210 -0.991373 -1.179467 -4.802448 6.919400 -2.923571 -0.329522 -0.393758 1.058714 6.620398 4.544175 -0.937968 -3.797830 2.694110 2.072522 0.787728 -2.414241 5.263098 1.857571 9.575691 -1.961802 0.422410 -1.334034 2.538420 -1.583816 -2.975006 -1.117920 4.551538 7.684712 2.219910 -2.158034 -0.523748 -2.055624 2.924682 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = -4.654241 -0.809216 6.247191 -0.243091 -2.460936 -3.851444 -1.968079 -8.093742 3.960750 3.591053 8.240573 0.653444 5.009121 -2.792199 1.638667 0.120618 4.436174 -4.009483 1.863218 -1.850036 1.956214 6.410200 2.057260 2.100133 0.521114 -4.380080 0.634007 -0.354404 2.282768 4.144376 1.664393 -0.920778 -2.732493 0.688464 1.471799 4.194630 2.816531 2.089692 -1.904532 -1.347104 -0.881343 -3.810203 3.363646 -0.938694 6.257680 -2.968262 1.823034 -0.704066 -4.275722 -4.230932 -1.115148 3.365917 -4.392513 1.455510 2.641871 -2.860481 -0.182536 0.885460 -1.165053 -5.689510 -0.487150 -3.827659 -1.225506 0.696379 -0.964146 2.168565 -3.252239 0.194993 -0.522247 -3.578765 2.380795 1.314646 3.022366 4.670085 -5.709066 1.466174 1.166299 -0.242266 1.874009 2.014589 -1.264085 -1.879306 -1.512006 -4.074624 4.268511 3.240835 0.410949 0.251181 -6.551807 4.416265 -0.627383 0.151304 0.353778 1.956340 -5.732890 -0.046580 2.135864 -2.524729 -0.540819 -6.019531 0.223083 -3.939785 0.246250 2.751588 -1.028391 -1.754303 -7.364596 1.242086 -4.755015 -3.965846 3.925091 -1.637715 -3.119064 3.422993 -5.801612 0.791083 -3.754735 1.058849 3.199459 1.745702 0.713598 3.399602 1.116410 3.054222 3.820783 -4.100325 -1.026472 3.464801 5.991325 0.286898 -0.289264 -1.400083 -1.878302 2.692914 -4.611105 -6.360281 -5.081701 4.586789 5.018642 2.501756 -2.436499 -1.198568 -1.723841 5.014525 5.690892 1.456794 0.210642 2.399144 -4.383083 1.615424 3.268413 -2.893086 4.837367 1.627614 -0.283603 3.563850 -4.077368 2.625044 0.851768 1.786048 -1.082150 -3.312216 -2.387826 4.312098 3.904818 4.363750 -5.354326 2.093423 -0.677993 -5.916372 -8.979456 -2.288394 6.796608 2.434970 2.381945 -3.419699 -3.018017 1.415274 4.541060 0.332015 -6.504759 1.502141 -2.352803 2.348965 -8.879112 -5.563364 9.285220 8.804606 3.775067 1.323830 2.322792 4.016972 -7.368304 -1.319520 -2.693931 3.681874 -2.735162 -8.122385 -2.540562 1.606210 -5.135360 -2.726052 -1.627726 0.715155 -0.054461 0.796547 4.883521 3.861421 0.289073 1.756382 3.401117 -1.225332 -5.499185 -2.381268 0.312219 3.794428 1.859065 -2.342117 1.538713 2.965575 -5.951333 -1.576421 1.562157 2.488925 2.476034 7.752013 6.345672 -0.952148 0.645483 -2.561923 -3.720260 2.893346 -3.078222 -0.376292 -1.406411 0.329863 2.179244 1.384432 4.187777 -1.991408 -4.699829 -3.948213 -2.049211 0.863291 4.729811 -1.260123 -8.796266 -5.584491 2.635764 1.701398 5.150023 -0.599886 8.348073 -2.597750 1.748241 -8.238322 0.296137 2.290676 -0.562851 3.172804 0.289380 -1.881139 -3.636504 -1.758879 -4.837906 -1.995840 0.513237 -1.508814 -0.869615 -5.642490 7.171057 -3.671266 -0.500834 -1.512206 0.767687 7.568528 5.607698 -1.348181 -4.864158 3.766854 2.223961 0.948719 -2.408219 6.112458 1.711890 9.922483 -2.584293 0.240633 -1.312515 3.437368 -2.066370 -3.166933 -0.698720 5.112877 8.655721 2.116430 -2.490785 -0.441009 -1.647562 2.669450 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp___GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.195416 0.753185 2.020705 1.449664 -1.104338 -1.237762 -0.500138 -0.872568 0.316732 0.020855 0.600748 -0.068248 0.078504 0.335743 -0.165902 -0.643914 0.517086 0.554114 -0.318497 -0.526318 -0.955024 0.819200 0.612580 -1.986879 0.343529 -0.897029 1.499615 0.812836 0.244832 1.114099 -0.076528 0.054352 -0.154473 0.811666 -0.966603 -0.646140 -0.182256 0.414804 -0.740786 -0.229592 0.864918 0.466992 0.985529 -0.105840 0.411959 0.969353 0.508407 0.021832 -1.375078 -0.025550 -0.388138 0.880292 -0.413534 0.930680 -0.058481 0.752531 0.528005 -0.964092 0.029441 -1.628101 0.314277 0.361544 -0.669933 -0.175293 -1.244859 -0.092130 -0.087631 -1.364311 0.465633 -0.354451 0.352988 0.004690 -0.189407 -1.065311 -0.647008 0.682536 0.489227 0.896414 0.545282 0.283482 -0.021436 0.043622 -0.713182 -0.661159 -0.073108 -0.214050 0.488278 0.291121 0.310833 -0.931090 0.435187 -0.081045 -0.277939 0.945171 -0.101436 1.149414 -0.555451 -0.263254 -0.704546 -0.848231 -0.140571 -0.751065 0.534369 0.929933 -0.923389 0.300840 0.303785 0.733186 0.413674 -1.046334 0.067593 -0.517869 0.301200 1.140228 -0.192727 -0.588745 0.136605 -0.145942 -0.117823 1.235130 -0.410176 0.379098 0.790150 0.865854 0.295004 -0.915709 0.110389 -0.080306 0.224633 0.658182 0.990988 -0.745591 -0.733715 -0.351097 -0.144295 -1.300536 0.204207 0.534561 0.948171 -0.122014 -1.302091 0.573094 -0.606883 0.948638 0.295290 0.986970 0.397919 -0.278888 -0.800869 0.397822 1.589098 -0.518728 0.432892 -0.526448 -1.672070 1.114608 0.309658 0.733236 -0.011254 -0.248065 0.531340 -0.882071 0.534724 1.534459 0.277079 -0.008243 1.026065 -0.150388 -0.234657 -1.573191 -1.191623 0.456474 0.426600 0.376299 2.573628 -0.981443 -0.636365 -0.522615 1.162356 -0.485029 -0.067572 -0.183983 -0.399768 0.503595 -2.245430 -1.751467 1.367152 1.021958 -0.133853 -0.260058 0.872448 -0.045192 0.166806 -0.815707 -0.766797 0.445564 0.409248 0.649691 -0.062049 0.295643 -0.877657 0.264977 0.589280 0.341642 0.950192 -1.118995 -0.875459 -0.812842 -1.402711 -1.186631 0.274765 -1.135204 -0.031795 0.554352 0.134596 0.112574 0.482081 0.112962 -1.062651 -0.181902 -0.466442 -0.086484 -0.081732 1.098502 0.224042 1.227027 1.382255 -0.063303 0.827038 0.786038 -0.713338 3.446173 -0.957776 0.036151 0.061163 1.096177 -0.110996 0.416095 0.995244 -0.320816 -0.219074 -1.416309 0.449092 0.030315 0.204180 -2.611628 -0.545495 -1.593237 -0.191456 0.147527 1.031962 -0.101287 2.168213 -0.028960 -0.217809 -2.092549 -0.054153 0.896190 0.001918 0.801698 0.749774 -1.160001 -1.995600 -0.094404 -0.728977 0.851566 -0.481348 -0.773008 -0.818506 0.427811 -0.208063 -0.275854 1.015973 1.664520 -0.386656 0.336597 -0.108674 -0.184730 -0.112114 -0.995261 0.705273 0.121926 -0.690362 1.056996 0.030899 2.258781 0.141578 0.913131 -0.849202 0.157763 0.132291 -0.489567 -0.701318 1.313140 0.527288 0.420310 0.382343 0.450931 -0.558983 0.828142 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.334305 0.948351 3.098928 1.868336 -1.043600 -1.171409 -0.839687 -1.603509 0.818653 0.026580 1.174778 -0.293249 0.353543 0.699538 -0.342684 -0.347334 0.684093 0.446097 -0.057673 -0.630369 -0.710765 2.089938 1.499639 -2.369906 0.234982 -2.306110 1.330883 0.827029 1.386059 1.887901 -0.260732 -0.021407 0.451540 1.080943 -1.785330 -1.203704 -0.645540 0.574054 -1.659328 0.091542 0.767256 0.864097 1.322498 -0.283642 0.532334 0.959287 0.768125 -0.184104 -1.391854 0.214495 -1.077286 1.885893 -0.602544 1.166795 -0.405959 0.998406 0.181683 -1.041592 -0.485195 -2.023501 0.170187 1.208878 -0.556516 0.118590 -1.870635 0.274490 -0.527153 -1.602609 0.744211 0.195013 0.927317 0.685412 0.416225 -1.515010 -1.602958 1.368440 0.434707 1.282458 0.480687 -0.077215 0.164237 0.487848 -0.749596 -1.073617 0.348725 0.431806 0.308992 0.024825 0.711670 -1.555460 0.464270 0.121581 -0.753775 1.369018 -0.498290 1.920144 -1.296008 -0.142262 -0.620639 -1.169095 -0.798959 -1.407386 0.692607 1.082734 -0.529583 0.930728 0.705482 1.183719 0.578537 -1.635585 -0.048451 -0.045817 -0.509425 2.065252 -0.361093 -0.799613 0.226310 0.267994 -0.722058 1.560033 -0.761514 1.044543 1.281882 1.271828 0.275746 -1.086000 0.542327 0.180123 0.341757 1.103110 1.773656 -0.836517 -1.279827 -0.576374 0.316720 -2.373096 0.160430 0.744315 1.054887 -0.490491 -1.547665 0.513233 -0.893181 2.086654 0.837619 1.050172 0.842397 -0.573119 -0.835494 1.269244 3.024109 -1.116424 0.936600 -1.166003 -2.264890 2.001248 -0.151661 1.580185 -0.718599 -0.155379 0.712895 -1.668935 0.546308 2.239971 0.314934 0.212075 1.410027 -0.505076 0.091696 -2.361577 -1.593822 -0.143935 0.053535 0.185246 3.609021 -0.882500 -1.218866 -0.671361 1.245535 -0.172677 -0.019782 -0.019768 -0.904784 0.519202 -3.840684 -2.791865 2.272508 2.093896 0.290214 -0.082936 1.577874 0.598990 0.338586 -1.584046 -0.756908 0.988859 0.625265 -0.086291 -0.660016 0.410423 -1.299995 0.151580 0.629474 0.357112 1.264332 -1.009553 -0.901318 -0.786425 -2.647330 -1.258338 0.790425 -2.350365 -0.408888 0.541458 0.147476 -0.210301 0.662781 -0.384090 -1.059638 0.200233 -0.714988 -0.185088 -0.142633 1.630683 0.004485 0.961762 2.421591 0.426347 1.320394 1.217190 -1.255754 4.463675 -1.515022 -0.307644 -0.022381 0.784411 -0.936002 0.737124 0.820387 -0.474025 -0.570795 -1.933621 1.220302 0.017845 0.186189 -2.707091 -1.082471 -1.134494 -0.646776 0.648082 1.614987 0.459107 3.312685 -0.539546 -0.190357 -3.382806 0.044043 1.005088 0.216664 1.714705 1.329107 -1.609713 -2.709011 -0.352427 -0.791413 1.409932 -0.793963 -2.348841 -1.282975 0.010013 0.397763 -0.683122 1.377867 2.499690 -0.642790 1.145984 -0.194900 -0.643673 -0.728420 -0.848006 0.831768 0.544024 -0.873757 1.262125 -0.378836 3.430838 -0.327054 1.327150 -1.741483 -0.183207 0.270261 -0.690778 -0.747861 2.281734 0.904568 0.735213 0.544647 -0.124053 -0.736659 0.883877 -PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -0.070632 1.126039 3.184097 2.700393 -2.101406 -2.093545 -0.838825 -1.683343 0.716348 0.048038 1.307274 -0.722278 0.310903 0.710867 -0.338200 -0.860013 0.937560 0.776720 -0.519972 -0.913224 -1.718963 1.494550 1.105417 -2.821127 0.564803 -1.755375 1.786063 1.396496 0.600639 1.679094 -0.090826 0.035965 -0.257313 1.259660 -1.819306 -1.083515 -0.314177 0.276235 -1.378231 -0.017923 1.014374 0.325014 1.798548 -0.342345 0.520484 1.478549 0.846719 0.114388 -2.329257 -0.143781 -0.788319 1.533895 -0.447618 1.395902 0.152800 0.860056 0.657821 -1.794275 -0.170256 -1.929214 0.493812 0.398364 -0.688740 -0.110294 -1.926124 -0.084535 -0.397936 -2.074947 1.396722 -0.499281 0.624025 -0.084708 -0.132578 -1.621694 -1.083703 0.981809 0.894523 1.150389 0.661857 0.258568 0.492430 0.357371 -1.201525 -0.972321 -0.162184 -0.251579 0.789161 0.340794 0.056681 -1.602994 1.207535 -0.088325 -0.315413 1.348342 -0.563647 1.287059 -1.376905 -0.552159 -1.740912 -1.916291 -0.294076 -0.997126 1.017033 1.191133 -1.519480 0.897011 0.806935 1.017570 0.632981 -1.972679 -0.194506 -0.850963 0.403499 1.961177 -0.542587 -1.359866 0.031021 -0.279651 -0.506047 1.591357 -0.497611 0.291454 1.581715 1.193321 0.646359 -1.357309 0.104905 -0.230660 0.255339 1.101125 1.732836 -1.304662 -0.911074 -0.233739 -0.559975 -2.698760 0.071567 0.226256 1.562756 0.183332 -1.935052 0.861860 -1.225393 1.616272 0.344680 1.548892 0.645302 -0.501676 -0.977137 0.655514 2.701044 -1.107584 1.151831 -1.163041 -2.542792 1.792219 0.619438 1.123337 -0.179375 -0.426171 0.793445 -1.413207 0.494799 2.191782 0.283614 -0.300458 1.726659 -0.202624 -0.869540 -2.856967 -2.241310 0.568339 0.739865 0.339065 3.744445 -1.784404 -1.223096 -0.807384 1.972940 -0.733607 -0.280183 0.127556 -0.631474 0.748235 -3.577257 -3.011935 2.304069 1.829545 0.052330 -0.172375 1.673013 -0.262944 -0.272043 -1.469242 -1.359592 0.733535 0.761073 0.326023 -0.362272 0.070823 -1.706596 0.539191 0.666906 0.634064 1.714034 -1.817424 -0.998394 -1.189137 -2.641592 -1.888984 0.850379 -2.391546 0.139443 0.729221 0.065375 -0.036520 0.914470 -0.151776 -1.779793 -0.430235 -0.796330 -0.219557 -0.078888 1.662257 -0.022163 2.274481 2.234274 -0.062595 1.486929 0.895091 -1.223962 5.548887 -1.765705 0.140123 0.018218 1.739053 -0.538665 0.647403 1.520218 -0.588221 -0.733991 -1.845947 0.422853 -0.233235 0.304358 -3.795386 -0.881117 -2.377647 -0.690920 0.022142 1.734925 0.133926 3.269916 -0.200543 0.022453 -3.766851 -0.082230 1.229243 0.001575 1.618790 1.210328 -2.012366 -3.110719 -0.036816 -1.230389 1.575290 -0.516711 -1.744961 -1.185930 0.257511 0.076342 -0.106348 0.861476 2.940470 -0.847712 0.751092 0.108611 -0.444593 0.006727 -1.409835 1.336148 0.318425 -1.027594 2.116959 0.110907 3.990056 0.599237 1.310482 -1.259245 -0.386877 0.489264 -1.035362 -1.157216 1.844573 0.894925 0.901667 0.410619 0.471900 -0.949729 1.240041 -PE-benchmarks/ugly-numbers.cpp__main = 0.437621 0.790086 1.513096 0.971050 -0.732831 -1.138343 -0.387304 -1.371571 0.553387 0.028225 0.611001 -0.329574 0.352329 0.299499 -0.215969 0.097809 0.513997 0.432333 0.026200 -0.408271 -0.794083 1.335314 0.224573 -0.757295 0.221066 -1.076181 0.628441 0.546763 0.936430 0.749074 -0.020499 -0.063214 0.045732 0.542498 -0.818691 -0.540495 -0.259280 0.276366 -1.104524 0.164726 0.046389 0.029074 0.866189 -0.051691 0.143127 0.510458 0.577030 0.131054 -0.566780 0.022186 -0.644380 1.058517 -0.124044 0.677321 -0.178124 -0.031977 0.174585 -0.374148 -0.053184 -0.201078 -0.067685 0.183574 -0.412745 -0.032584 -1.041886 0.047533 -0.545066 -0.954027 0.355622 0.143345 0.496282 0.213575 0.083337 -0.717902 -1.355624 0.504100 0.316481 0.629298 0.365180 0.176627 0.414094 0.227483 -0.736522 -0.718250 0.443131 0.401959 0.342043 0.059498 -0.243025 -0.869120 0.176184 0.003017 0.052692 0.638954 -0.387842 0.818494 -1.044113 -0.181888 -0.709579 -1.400198 -0.239669 -0.585147 0.446653 -0.000558 -0.092006 0.417713 0.547562 0.433783 0.396018 -1.050185 0.004423 -0.165494 -0.206125 1.366993 -0.074310 -0.568757 0.000000 -0.064073 -0.625693 0.693157 0.031390 0.239761 0.748230 0.596369 0.376448 -0.587911 -0.039106 0.101443 0.038790 0.548818 0.869668 -0.607850 -0.603314 -0.059127 -0.096585 -1.560320 -0.009414 0.491528 0.685410 -0.373750 -0.427177 0.246585 -0.559911 0.729058 0.366307 0.324099 0.494395 -0.289870 -0.370865 0.528195 1.539331 -0.551543 0.575995 -0.800046 -0.915321 0.958522 0.031448 0.627225 -0.344395 -0.087177 0.210797 -0.646409 0.255080 1.095427 0.024630 -0.174598 0.806330 -0.118940 -0.595962 -1.279783 -1.088860 0.158999 0.516256 -0.039958 1.570331 -0.647207 -0.624818 -0.133943 0.725260 -0.207379 -0.082765 0.312475 -0.596336 0.406841 -1.680675 -1.434424 1.253825 1.053869 0.056977 -0.234932 0.679055 0.308399 -0.482018 -1.094112 -0.619501 0.415691 0.255390 -0.761191 -0.655473 0.097966 -0.901771 0.297809 0.268287 0.272130 0.802013 -0.229155 -0.009480 -0.713548 -1.308700 -0.944575 0.756335 -0.997723 0.054871 0.343945 0.015826 -0.229377 0.575186 -0.218047 -0.567368 0.129533 -0.439718 -0.007397 -0.078777 0.602470 -0.199711 1.139690 1.235777 0.116625 0.936823 0.443589 -0.738093 2.333100 -0.777587 0.070583 -0.081613 0.598974 -0.600261 0.522478 0.625119 -0.282148 -0.789861 -1.008673 0.148191 -0.051238 0.075874 -0.918623 -0.596620 -0.973431 -0.341811 0.033374 1.044410 0.181285 1.559112 -0.455628 0.242970 -1.794353 0.145919 0.381691 -0.002117 1.061243 0.563065 -0.876145 -0.884702 -0.141596 -0.645684 0.074289 -0.327271 -1.244466 -0.601592 -0.150420 0.055872 -0.341886 0.336542 1.198610 -0.335908 0.646320 -0.340828 -0.245724 -0.425826 -0.240035 1.070292 0.032385 -0.555744 0.696907 -0.051418 2.161175 0.134685 0.652627 -0.647644 -0.371088 0.226270 -0.742045 -0.504063 1.126446 0.505968 0.369202 0.108066 0.039598 -0.191892 0.529418 -PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -3.239770 4.760605 23.516703 15.783004 -6.893880 -9.187531 -4.506461 -9.019970 5.632557 3.069373 11.391873 -1.279180 2.888997 6.440681 0.294658 -6.642019 2.757392 0.766906 -0.921765 -3.431249 -1.909598 10.807078 12.936836 -17.920212 -0.023660 -14.628904 9.920793 5.999056 6.313300 10.581825 -0.274468 1.134366 0.732008 7.988612 -12.534812 -5.631822 -4.845215 4.130976 -4.162175 -2.006710 6.876724 9.475690 4.879130 1.395691 6.210060 7.617354 10.371616 -2.975214 -8.959857 -2.017637 -6.693283 13.199360 -6.649631 5.917490 0.239103 9.845893 0.118489 -11.352706 -2.745519 -19.819881 6.097923 9.360864 -8.040868 -0.081655 -12.498942 2.136938 -3.988602 -6.702393 5.410592 -1.053017 7.336921 -0.398409 1.985884 -12.374904 -8.487181 6.440835 -3.376770 4.635366 4.219913 -0.617351 -6.803524 4.121343 -3.462616 -6.961008 0.118710 -1.261682 -1.020019 -1.410371 6.480510 -6.475826 0.372644 -0.545620 -8.433645 11.236320 -8.480863 13.331516 -3.537989 -1.309463 -4.674919 -1.047106 -2.853838 -12.406088 4.054008 11.448871 -4.606023 2.909210 -1.308272 3.509729 1.706604 -12.751288 -0.816134 -0.651751 -0.071079 7.834461 -8.627285 -1.971006 3.407842 1.334496 0.719343 11.828700 -2.340789 5.455072 9.894928 6.839807 1.259419 -7.565809 5.326655 2.670992 3.872609 7.798916 8.755825 -10.011640 -6.335833 -3.371283 3.105949 -16.733467 5.907797 8.692302 6.074050 2.964512 -17.319306 4.312748 -4.705298 12.092446 8.693982 11.639112 4.697031 -1.841454 -3.895355 3.116923 22.233830 -7.248491 7.317082 -4.004723 -14.475853 16.276329 -6.409339 11.963128 -0.113963 5.005960 7.109318 -12.506735 -2.018745 15.087804 4.558075 3.821306 14.692634 -2.709899 3.964023 -17.594953 -11.799267 -2.232838 2.136428 1.340210 20.921807 -7.540642 -3.784687 -3.043758 9.296460 -2.570882 -3.076492 -2.701278 -0.687309 2.294567 -24.690366 -16.483741 11.097503 13.522920 -2.179322 -2.277296 12.991292 3.331772 2.617891 -8.367931 -8.309491 7.913942 -0.298160 10.736774 3.270200 -0.661830 -12.973373 0.537279 1.959532 1.683162 9.243786 -11.825641 -11.975588 0.605176 -17.156218 -9.665248 2.120511 -13.060177 -6.144316 -1.621847 1.889537 -1.027876 0.045703 -3.327334 -7.224357 3.899356 -7.608981 -4.517300 3.442426 7.755099 2.641790 14.425375 9.160172 2.512547 4.189960 6.323063 -5.769862 34.041699 -7.252919 -4.332061 -0.363966 10.377733 -3.839372 4.911538 1.228770 -2.841528 -8.627180 -10.557938 9.814629 -2.661379 3.549218 -18.353167 -6.803698 -7.994386 -4.676347 5.216179 11.733935 0.635126 24.163076 -0.722384 2.451134 -22.717048 0.341751 10.363378 -1.699631 9.498330 9.710179 -10.433505 -16.555196 -2.958093 -0.025206 13.274170 -2.267321 -13.959518 -7.749271 -1.493949 0.404660 -5.030603 7.394475 13.543731 -3.780009 5.603482 3.593550 -3.401001 0.034011 -5.233576 4.886200 6.998361 -10.453223 13.758577 -5.095414 23.966393 -5.579454 10.905020 -10.084390 0.461839 -2.217639 -0.985591 -3.821393 14.364636 8.875164 5.581588 1.746051 0.402831 -7.441248 4.491785 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = -0.323760 1.687525 6.299455 3.207270 -1.675644 -2.917900 -1.384115 -4.525906 2.004342 1.120877 3.650334 -0.839587 1.237564 1.577494 0.043167 -0.643469 1.100953 -0.284204 0.433286 -1.096822 -0.792376 3.819573 2.591940 -2.838596 0.016406 -4.346740 2.071339 1.290678 2.528027 2.490197 0.195752 -0.160581 0.181083 2.027467 -2.767076 -0.862637 -0.591393 1.276154 -1.925232 -0.179867 0.629138 1.605089 1.776683 0.192345 2.086278 1.528560 2.828009 -0.459036 -2.043877 -0.512514 -1.822058 4.162669 -1.834653 1.548690 0.379583 1.139093 -0.174033 -2.460759 -0.780412 -3.539524 0.613645 1.579372 -2.091412 0.270011 -3.291348 0.803141 -1.738065 -1.761275 1.073543 0.033154 2.262024 0.444948 0.789929 -1.989937 -3.574864 1.965446 -0.346410 1.128242 1.170119 -0.333061 -0.786687 1.104948 -1.453342 -2.508751 1.278142 1.159126 0.098788 -0.526139 0.410326 -1.213449 -0.201421 -0.369682 -1.462679 3.106669 -2.399957 3.272722 -1.364307 -0.784651 -1.875879 -2.340084 -0.750908 -3.398215 1.408578 1.947986 -0.581140 0.651510 -0.479692 1.094989 0.251396 -3.821347 0.137820 -0.177743 -0.000103 3.085421 -2.397507 -0.540813 0.097247 0.208384 -0.306618 2.746128 0.064206 1.549449 2.815926 2.149726 0.860543 -2.218871 0.605050 0.868627 1.191470 2.041365 2.323235 -2.841931 -1.903001 -0.369634 0.369069 -5.135675 0.517775 2.602257 1.949569 0.030242 -3.418992 0.623469 -1.244653 3.365570 2.761031 2.339920 1.281210 -0.355064 -1.151096 1.211572 5.694892 -2.059568 2.384185 -1.555614 -3.037109 3.816309 -2.045772 3.132731 -0.004951 1.373130 1.126447 -3.314580 -0.493572 4.068263 1.413484 0.989263 2.839443 -0.341976 0.186051 -4.664156 -3.810626 -0.409218 1.408114 -0.118776 4.912332 -2.125568 -1.750164 -0.239522 2.656976 -0.227433 -1.243928 0.098651 -1.078807 0.939624 -6.243411 -4.654701 3.612853 4.384306 0.263192 -0.800992 3.072746 1.517439 -1.183253 -2.771716 -2.228156 2.442702 -0.536904 -0.221646 -0.575381 -0.018033 -3.622730 0.199142 0.019254 0.722402 2.449489 -1.763314 -1.450299 -0.033077 -4.311258 -2.270511 1.529664 -3.030312 -1.878257 -0.445777 0.495056 -0.052185 0.668847 -1.310154 -1.314989 1.549200 -2.579689 -0.849866 1.195705 1.980176 0.285096 4.731486 3.086571 0.675826 1.942172 1.118713 -1.845519 7.633160 -1.938026 -0.779024 -0.313191 2.050413 -1.485181 1.564428 1.067653 -0.965319 -3.453439 -2.928549 1.802497 -0.622399 1.244037 -2.999721 -2.833156 -2.706959 -1.047215 1.357013 3.606993 0.506434 6.370677 -0.614233 1.245102 -6.215445 0.294763 2.053576 -0.444922 3.026718 2.230147 -2.877337 -3.267140 -0.864088 -1.106461 1.240502 -0.578881 -3.973089 -2.071877 -1.331663 0.967427 -1.525288 1.341334 2.824375 -0.551873 2.178925 0.922199 -1.023486 -0.969808 -0.491703 2.807186 1.087681 -2.810958 3.371407 -0.937451 7.598654 -1.454326 2.532943 -2.555008 -0.241199 -0.281991 -0.761198 -1.007028 4.252854 2.978483 1.416851 -0.333114 -0.332043 -1.571844 1.299044 -PE-benchmarks/aho-corasick-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -5.429056 7.461541 33.221879 16.238762 -13.904143 -19.859198 -8.977092 -21.364775 9.856913 6.165083 19.621722 -2.479743 4.867955 10.091938 1.483865 -3.509199 6.147964 -3.493967 -3.249323 -8.259578 -8.583415 17.232765 14.928819 -19.665381 3.048221 -23.680342 12.820858 6.855969 6.266395 13.887762 1.482926 0.003726 -2.185177 11.534631 -14.297067 0.232879 -0.141894 6.058743 -6.793031 -1.305741 9.077849 8.566180 10.881490 1.613217 14.774942 11.458446 12.429891 -1.493157 -16.491548 -5.392373 -7.689695 20.528168 -10.752198 10.845792 0.438181 12.280120 -1.842403 -17.257757 -4.326852 -24.493554 4.188062 7.211641 -12.726569 -0.746052 -15.699915 3.570246 -3.144353 -9.632181 6.471474 -4.882450 13.083422 -2.678206 -0.202132 -9.598387 -14.934879 6.057083 -1.657024 6.732261 7.342297 -2.828021 -8.429672 2.207878 -8.367335 -12.606460 3.763086 3.173038 1.123177 -0.396278 1.657334 -3.998423 0.560830 -2.752345 -6.813448 17.939440 -15.543116 13.009415 -1.935888 -5.527870 -14.149136 -9.032989 -0.796556 -15.918688 7.765649 13.431668 -6.480137 2.604710 -2.017039 5.892226 -1.813530 -19.506700 0.924552 -3.131746 0.005170 12.692990 -11.653812 -4.562300 4.093938 -1.967084 -0.013274 16.742663 0.293970 5.850617 17.177406 12.160227 7.400365 -12.795712 1.466248 2.437817 10.360698 11.818750 12.030412 -15.388922 -9.117885 0.288723 -2.858835 -26.709380 3.418521 11.590142 15.786802 2.834841 -22.122143 4.754901 -7.716217 17.607818 11.018810 16.112574 5.164439 -2.647698 -11.108519 4.382973 35.023231 -9.875581 14.286055 -6.582979 -16.113785 22.117408 -9.261057 16.332268 4.632427 4.076372 4.259546 -16.357172 -4.304439 21.959878 9.387104 7.189404 12.254467 0.797296 -1.797060 -26.244838 -24.335292 -6.699809 10.143585 1.915692 30.966805 -15.643440 -9.758984 -5.449703 19.031235 -5.925509 -8.058977 0.245217 -4.492775 6.658967 -33.736227 -24.801934 24.869752 28.796835 3.838037 -1.839495 21.463104 5.400611 -6.015073 -11.861546 -12.776784 11.125013 2.437561 6.060495 0.469750 -1.422977 -20.743634 -2.820174 -0.684843 5.096117 9.200586 -8.822144 -7.562837 3.200015 -20.451283 -11.692475 2.828129 -17.356022 -8.159970 0.100273 3.380759 -1.331421 1.523085 -6.978347 -9.584385 7.066897 -13.440032 -2.001206 7.672128 10.945147 6.048573 26.686228 18.203941 -0.674766 13.629275 4.401373 -9.205004 42.930043 -10.981041 -2.173032 -0.402926 14.266324 -4.334077 6.005920 8.390225 -5.644438 -12.527808 -15.492965 9.973918 -3.117328 8.003078 -20.699302 -16.074672 -18.841579 -4.230768 5.746541 20.445098 -0.533891 34.285531 -1.150906 7.384865 -39.571769 1.829395 14.483552 -3.120392 8.345912 11.531621 -14.696194 -27.842612 -2.079675 -5.891217 4.898318 -2.092635 -16.912178 -11.237948 -9.374461 4.946044 -8.726176 6.741915 19.284321 -2.314177 11.592380 3.645920 -5.094584 -3.286746 -5.947156 13.899615 6.461379 -15.176466 20.191206 -1.597413 43.752942 -7.377206 16.632982 -10.411359 2.626072 -2.350614 -5.168850 -6.913102 20.925453 15.996063 8.565317 0.505282 -0.529542 -9.205347 8.040460 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = -0.077212 0.286213 1.011473 0.140021 -0.461030 -0.985966 -0.204734 -1.379976 0.580058 0.316277 0.882685 0.047180 0.718905 -0.247991 0.083544 0.160103 0.689896 -0.016138 0.158032 -0.401951 -0.031579 0.911886 -0.055690 0.074924 0.236509 -0.678823 0.304717 0.298669 0.588029 0.664401 0.263803 -0.095377 -0.426389 0.201869 -0.069769 0.138921 0.249790 0.230975 -0.776008 0.019321 -0.229851 -0.301818 0.676106 0.031280 0.625239 -0.027187 0.210876 0.185616 -0.344553 -0.394000 -0.237181 0.551696 -0.247080 0.447134 0.028209 -0.387753 0.012990 0.130577 0.065784 -0.314452 0.004821 -0.324089 -0.262053 0.035159 -0.478978 0.095690 -0.524943 -0.425068 -0.087637 -0.420235 0.324313 0.029037 0.119601 0.111893 -1.248091 0.059861 0.211602 0.222273 0.430483 0.285255 0.050003 -0.272962 -0.501085 -0.612733 0.567295 0.618958 0.166633 0.250730 -0.941448 -0.094027 -0.028763 0.005406 0.337938 0.273435 -0.627545 0.152206 -0.282171 -0.277478 -0.219288 -1.161278 0.167844 -0.319744 0.184971 -0.160342 0.087132 -0.034256 -0.364889 0.275864 -0.255578 -0.496223 0.473065 -0.223304 -0.319605 0.974317 -0.335657 -0.295536 -0.526676 -0.051443 0.017447 0.425411 0.146829 0.199954 0.248121 0.462179 0.506382 -0.593698 -0.262575 0.447447 0.405129 0.264530 0.213740 -0.295684 -0.338325 0.333224 -0.682062 -1.123844 -0.459337 0.420009 0.727870 -0.116617 -0.110599 -0.067194 -0.510918 0.475817 0.575436 0.171193 0.246651 0.119166 -0.567084 0.268127 0.719154 -0.366174 0.557648 -0.127822 -0.150156 0.326945 -0.151130 0.317789 -0.117559 -0.114531 -0.101198 -0.209255 -0.041611 0.676753 0.312746 0.299235 -0.296926 0.264183 -0.576263 -0.789279 -1.173947 -0.172767 0.922950 0.249696 0.606461 -0.525763 -0.413526 -0.034081 0.667656 -0.068096 -0.570624 0.394229 -0.505892 0.395578 -1.153704 -0.783459 1.222515 1.193955 0.524029 -0.147662 0.259639 0.413064 -0.885363 -0.544102 -0.336946 0.278176 -0.202083 -1.287213 -0.509091 0.177464 -0.795257 -0.120474 0.018188 0.213602 0.236417 0.216009 0.752914 -0.039746 -0.243189 -0.342191 0.571265 -0.249797 -0.262067 0.000174 -0.015676 0.197098 0.363078 -0.357280 -0.034925 0.452200 -0.600721 -0.021423 0.056876 0.365664 0.088394 1.073490 0.767881 -0.034791 0.439017 -0.145786 -0.712949 1.007919 -0.450794 0.213750 -0.107811 0.198725 0.049001 0.297458 0.559394 -0.328914 -0.585760 -0.744945 -0.452379 0.214344 0.524056 -0.089797 -0.970024 -0.922987 0.216313 -0.101130 0.913254 -0.063722 1.152646 -0.456747 0.356767 -1.086813 0.140642 0.264552 -0.134703 0.545042 0.161959 -0.488474 -0.425766 -0.117889 -0.883521 -0.498332 -0.020020 -0.427245 -0.289649 -0.450159 0.574354 -0.415789 -0.034933 0.232569 -0.150126 0.893309 0.024276 -0.096917 -0.545174 0.288715 0.657350 -0.014236 -0.492507 0.543412 0.245509 1.560754 0.015851 0.305799 -0.189961 0.164517 -0.150462 -0.713613 -0.382107 0.829342 0.926272 0.364671 -0.158704 -0.009342 -0.008289 0.402196 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = -0.213902 0.186961 0.927885 0.167515 -0.243783 -0.763843 -0.248683 -1.180849 0.505181 0.322694 0.940098 -0.064011 0.663706 -0.233948 0.118182 0.133706 0.521856 -0.145557 0.199082 -0.250279 -0.015038 0.946964 0.110059 0.063567 0.090989 -0.611926 0.184795 0.202244 0.469741 0.570437 0.129026 -0.065901 -0.157332 0.197525 -0.180736 0.220566 0.207773 0.324386 -0.470138 -0.115586 -0.178820 -0.292660 0.486736 -0.052899 0.586013 -0.053993 0.313561 -0.004993 -0.372771 -0.371700 -0.271440 0.605495 -0.400521 0.291709 0.010489 -0.368654 0.090910 0.092028 -0.051368 -0.577472 -0.003466 -0.222165 -0.277828 0.014092 -0.360473 0.216140 -0.349138 -0.306662 -0.029320 -0.199873 0.373000 0.177022 0.246045 0.225097 -0.980595 0.211576 0.206898 0.108202 0.317721 0.152499 0.032045 -0.175758 -0.339139 -0.585895 0.715124 0.453450 0.217646 0.192475 -0.713149 0.133421 -0.074209 0.025761 0.164812 0.329482 -0.461116 0.213312 -0.005579 -0.219049 -0.199187 -0.917002 0.017458 -0.497505 0.102717 0.186422 0.111611 -0.009733 -0.516328 0.270989 -0.403970 -0.642347 0.391328 -0.241519 -0.406040 0.660909 -0.500706 -0.069818 -0.281541 0.059775 0.105021 0.378316 0.136340 0.360752 0.249435 0.420337 0.374240 -0.554136 -0.161105 0.372449 0.565744 0.238324 0.154515 -0.368790 -0.357604 0.244214 -0.571513 -1.042679 -0.453219 0.570841 0.613555 -0.032756 -0.383663 0.167562 -0.305376 0.547857 0.661492 0.183249 0.139127 0.150732 -0.513910 0.294107 0.660745 -0.436616 0.625619 -0.018986 -0.205837 0.451328 -0.335102 0.326326 -0.000671 0.015684 -0.026595 -0.372971 -0.109428 0.685554 0.419842 0.417893 -0.301510 0.194697 -0.369693 -0.836628 -1.070416 -0.208331 0.831877 0.127536 0.653127 -0.442183 -0.510185 0.143330 0.629521 -0.171708 -0.563693 0.219455 -0.421817 0.371116 -1.202494 -0.873639 1.178749 0.978265 0.483907 0.015710 0.361105 0.505903 -0.724066 -0.376917 -0.296163 0.384113 -0.145954 -1.110334 -0.488626 0.120020 -0.737112 -0.174109 -0.102922 0.138936 -0.004216 0.200489 0.536250 0.044220 -0.278417 -0.061296 0.425177 -0.345776 -0.369247 -0.151882 0.023042 0.225140 0.287089 -0.373755 0.048975 0.401850 -0.675841 -0.093088 0.091458 0.337314 0.245547 1.098891 0.891417 -0.093207 0.377466 -0.125935 -0.539067 0.777083 -0.405163 0.033964 -0.126784 0.268501 0.055321 0.281713 0.562049 -0.268536 -0.633201 -0.733740 -0.281184 0.240848 0.433644 -0.065221 -0.858437 -0.752159 0.125329 0.113193 0.877080 -0.084501 1.131229 -0.382678 0.289871 -1.120821 0.109811 0.209387 -0.162750 0.507262 0.194275 -0.379016 -0.604533 -0.207884 -0.613330 -0.500097 -0.077111 -0.505710 -0.211891 -0.598546 0.554317 -0.526546 0.013458 0.124998 0.068030 0.792848 0.254708 -0.137160 -0.572384 0.385436 0.543817 0.027402 -0.432986 0.581979 0.169856 1.546210 -0.200463 0.291213 -0.338427 0.249785 -0.153519 -0.461431 -0.210725 0.813382 0.954832 0.247943 -0.126737 0.046501 -0.108425 0.426715 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = -0.019996 0.152568 0.729682 0.174644 -0.136001 -0.762645 -0.162941 -1.144000 0.507298 0.297238 0.784180 -0.055378 0.630434 -0.283910 0.063159 0.196510 0.420689 0.005654 0.098890 -0.228121 -0.074441 0.853001 -0.103466 0.043870 0.117054 -0.527844 0.249442 0.312452 0.409243 0.462112 0.149529 0.009117 -0.078439 0.165964 -0.245278 0.190012 0.097704 0.280542 -0.417368 -0.153518 -0.103859 -0.193246 0.447107 0.024733 0.506701 -0.013923 0.303706 0.008193 -0.158869 -0.284036 -0.238884 0.495297 -0.226674 0.259250 -0.203077 -0.325371 0.139853 0.055406 0.048240 -0.331465 0.075376 -0.088916 -0.372105 -0.038024 -0.332457 0.126420 -0.183227 -0.323795 -0.061683 -0.213383 0.295267 0.045571 -0.011272 -0.023708 -0.971938 0.056037 0.206462 -0.000893 0.330133 0.145855 0.044570 -0.249902 -0.390593 -0.482378 0.786027 0.487303 0.203918 0.323455 -0.665273 -0.071243 -0.115590 0.033436 0.300598 0.300455 -0.345957 0.111118 0.038654 -0.191147 -0.180063 -0.697091 0.171856 -0.362771 0.107768 0.034507 0.177408 0.102848 -0.170777 0.226269 -0.307605 -0.488244 0.238810 -0.293906 -0.188004 0.638912 -0.263326 -0.219103 -0.313369 -0.023340 0.022978 0.339415 0.163242 0.183887 0.391804 0.302073 0.320641 -0.519360 -0.223276 0.402039 0.369601 0.263553 0.029493 -0.394768 -0.268607 0.206770 -0.539627 -0.945641 -0.399812 0.364926 0.505651 -0.244633 -0.275780 0.329051 -0.229952 0.342338 0.568954 0.062949 0.127535 0.191505 -0.445954 0.207583 0.612609 -0.303416 0.423114 -0.168752 -0.204641 0.289257 -0.159772 0.170050 0.018017 -0.119738 -0.057486 -0.213581 0.096024 0.576394 0.188242 0.300457 -0.242017 0.242197 -0.449459 -0.598926 -0.948294 -0.180358 0.687857 0.193321 0.727961 -0.409841 -0.407589 0.074278 0.512778 -0.195646 -0.363043 0.272762 -0.469957 0.359120 -0.953426 -0.726715 0.968097 0.704047 0.549927 -0.063509 0.332692 0.342748 -0.489840 -0.280588 -0.204168 0.281819 0.114281 -0.968787 -0.307395 0.042673 -0.664522 -0.175723 -0.104482 0.111379 -0.116506 0.183197 0.581932 -0.262008 -0.224749 -0.168837 0.378628 -0.273609 -0.113459 -0.169649 0.003071 0.038172 0.276256 -0.353038 0.050469 0.287621 -0.456289 0.016641 0.065857 0.204189 0.168863 0.895315 0.800379 -0.190748 0.445115 -0.150644 -0.398893 0.648919 -0.272771 0.063287 -0.041437 0.265970 0.100177 0.259127 0.477284 -0.250228 -0.387266 -0.671204 -0.286336 0.336983 0.331459 0.061411 -0.481321 -0.745825 -0.002922 -0.073082 0.882366 -0.066625 0.932593 -0.370873 0.311550 -0.903514 0.119639 0.125405 -0.177224 0.367368 0.136738 -0.374709 -0.441103 -0.121419 -0.546350 -0.659058 -0.065423 -0.411829 -0.303992 -0.515146 0.352241 -0.517698 0.014638 0.199422 0.039878 0.527232 -0.131422 -0.018215 -0.422494 0.325501 0.466555 -0.014245 -0.416091 0.285579 0.132660 1.320912 -0.117646 0.410204 -0.298910 0.330322 -0.240054 -0.526365 -0.246384 0.660901 0.747984 0.167017 -0.038559 0.079199 -0.007974 0.441334 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = -0.606332 0.150330 1.601896 0.218889 -0.633559 -1.270007 -0.414185 -2.013274 0.929596 0.652379 1.693017 0.013602 1.107180 -0.566199 0.258457 0.228920 1.033149 -0.407076 0.166089 -0.557083 0.137468 1.324273 0.226690 0.054410 0.308915 -0.988692 0.258352 0.291171 0.562627 0.866187 0.394820 -0.130710 -0.497767 0.343663 -0.009162 0.697094 0.587648 0.442074 -0.752562 -0.240866 -0.211369 -0.517341 0.860048 -0.083649 1.296518 -0.222633 0.516084 -0.000605 -0.924496 -0.744518 -0.294981 1.028624 -0.743820 0.532377 0.278381 -0.429894 0.054192 -0.074005 -0.077243 -1.117307 0.001970 -0.504247 -0.475259 0.037496 -0.456769 0.305148 -0.424970 -0.377816 -0.082476 -0.663515 0.529499 0.116288 0.274464 0.570773 -1.395124 0.202250 0.401423 0.130319 0.605940 0.327173 -0.049299 -0.534635 -0.509837 -0.936053 1.107764 0.687729 0.330851 0.379326 -1.345278 0.442799 -0.092042 -0.022744 0.294438 0.529772 -1.130254 0.013776 0.286804 -0.566270 -0.414326 -1.363354 0.186306 -0.750807 0.175135 0.345542 -0.090498 -0.053318 -1.147590 0.450345 -0.821455 -0.801799 0.707127 -0.451396 -0.540790 1.038568 -0.952029 -0.205739 -0.702962 0.059146 0.374958 0.597986 0.164389 0.530171 0.531986 0.716214 0.826272 -0.989556 -0.311857 0.605474 1.092806 0.359126 0.187513 -0.561491 -0.510617 0.531823 -1.128629 -1.693983 -0.916618 0.786649 1.183915 0.263939 -0.714105 0.008541 -0.504069 1.002908 1.018692 0.372420 0.135983 0.356487 -0.986916 0.314144 0.965262 -0.698854 1.054990 0.115908 -0.153917 0.531332 -0.541440 0.485615 0.121701 -0.055631 -0.126724 -0.584960 -0.306326 1.097524 0.771838 0.688591 -0.863003 0.472025 -0.587906 -1.379882 -2.023330 -0.434415 1.367536 0.369817 0.980687 -0.869190 -0.853952 -0.002793 1.133450 -0.310115 -1.121300 0.383216 -0.758241 0.640632 -1.759280 -1.354199 2.139249 1.894068 0.948059 0.087632 0.684805 0.632826 -1.503016 -0.470923 -0.488809 0.609470 -0.228114 -1.787087 -0.625757 0.275733 -1.305087 -0.445826 -0.249522 0.274810 -0.092438 0.304563 1.102611 0.401911 -0.214874 0.026922 0.591559 -0.377582 -0.742941 -0.305175 0.071473 0.594413 0.531187 -0.674605 0.000664 0.595520 -1.246169 -0.237309 0.238335 0.726328 0.549963 1.857184 1.455955 -0.185784 0.716163 -0.400105 -0.973720 1.049629 -0.634104 0.125538 -0.221727 0.318563 0.332120 0.357906 1.017965 -0.507272 -0.896729 -1.108247 -0.588367 0.336007 0.923155 -0.236672 -1.593839 -1.358038 0.328215 0.140745 1.332020 -0.226500 1.886060 -0.565869 0.482284 -1.979971 0.128143 0.526035 -0.245658 0.633171 0.261448 -0.696388 -1.184059 -0.271829 -1.197121 -0.850388 0.028950 -0.412035 -0.379513 -1.055758 1.336990 -0.857159 -0.043977 0.171778 0.141062 1.451049 0.647031 -0.146294 -0.817453 0.568892 0.813079 0.109579 -0.715452 1.056812 0.444665 2.610345 -0.267499 0.422233 -0.435300 0.517486 -0.292253 -0.833666 -0.454597 1.243147 1.799300 0.489725 -0.293464 0.016878 -0.316991 0.831318 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = -0.024243 0.392989 1.253451 0.166058 -0.471517 -1.037317 -0.265062 -1.629608 0.719636 0.479184 1.006975 -0.006353 0.816532 -0.300003 -0.029168 0.244870 0.688139 0.000813 0.060464 -0.472575 -0.298181 0.963748 -0.099377 0.021041 0.336233 -0.883637 0.564721 0.271628 0.573109 0.713538 0.312468 0.034308 -0.289495 0.400630 -0.052419 0.285726 0.235827 0.385527 -0.605237 0.003748 -0.037269 -0.310799 0.695371 0.245687 0.766207 0.176012 0.174366 0.072659 -0.404931 -0.375151 -0.180973 0.534467 -0.389432 0.456209 -0.156428 -0.237179 0.060594 -0.105542 0.175335 -0.379836 0.052337 -0.308654 -0.463712 0.020732 -0.575392 0.079160 -0.430483 -0.526925 -0.209808 -0.417318 0.351237 0.030468 -0.063931 0.036723 -1.295639 0.052187 0.367220 0.073082 0.626837 0.198884 -0.083517 -0.384455 -0.645207 -0.822315 0.923157 0.661590 0.270647 0.408351 -0.823564 -0.231400 -0.112652 0.042274 0.438039 0.606345 -0.693625 0.072047 -0.151574 -0.394329 -0.357429 -1.222080 0.238680 -0.505021 0.245381 -0.051862 -0.106551 0.091116 -0.286498 0.322896 -0.249588 -0.485521 0.346503 -0.452604 -0.164620 0.992284 -0.243255 -0.473288 -0.556984 -0.173993 0.170989 0.516155 0.175938 0.090980 0.742777 0.456572 0.570828 -0.724963 -0.272487 0.458686 0.316761 0.309671 0.232689 -0.606033 -0.411309 0.347842 -0.718684 -1.366004 -0.456762 0.269121 0.681511 -0.341282 -0.306710 0.209457 -0.465227 0.350521 0.734917 0.203358 0.231879 0.146296 -0.614820 0.210870 0.918452 -0.440443 0.559240 -0.301336 -0.298865 0.459032 -0.221603 0.305016 -0.123181 -0.243754 -0.136954 -0.302595 0.097329 0.906310 0.116601 0.261688 -0.236392 0.270946 -0.613617 -0.805990 -1.332505 -0.238844 1.040395 0.331696 0.962970 -0.705452 -0.357488 -0.065003 0.826494 -0.067895 -0.462102 0.404362 -0.535379 0.494374 -1.212933 -1.023138 1.353632 1.134718 0.668034 -0.194622 0.340380 0.313961 -0.824343 -0.591937 -0.391929 0.301757 0.024971 -1.199403 -0.531037 0.173778 -0.963740 -0.107109 -0.088218 0.224869 0.257874 0.097236 0.744984 -0.178421 -0.261767 -0.511466 0.546095 -0.307524 -0.273037 -0.108249 0.044410 0.101579 0.420825 -0.355512 -0.150933 0.317208 -0.570505 -0.011520 0.177254 0.426246 0.116644 1.270014 0.997888 -0.264408 0.358212 -0.164802 -0.554773 1.010219 -0.432163 0.199678 0.036210 0.351489 0.068874 0.387092 0.761274 -0.376380 -0.548092 -0.883287 -0.431894 0.266429 0.436567 -0.084232 -0.755380 -1.064746 0.096743 -0.176989 1.168786 -0.065284 1.371786 -0.320248 0.454898 -1.194768 0.146443 0.354336 -0.239638 0.607323 0.301609 -0.678111 -0.526920 -0.207187 -0.903595 -0.717224 -0.005175 -0.262721 -0.471723 -0.409860 0.500018 -0.520827 0.041285 0.358674 -0.025670 0.798017 -0.111527 0.028165 -0.597100 0.312839 0.858223 -0.053716 -0.521218 0.484675 0.274821 1.733663 -0.036213 0.550427 -0.268811 0.196169 -0.147815 -0.756144 -0.522181 0.957703 0.955908 0.420070 -0.073895 0.021917 0.020731 0.696018 -PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -0.753485 1.086609 4.455149 2.887883 -1.663506 -2.411984 -0.938132 -2.268585 1.089145 0.498099 2.507000 0.188685 0.836810 1.552294 0.494781 -0.636392 0.882280 0.014602 -0.266146 -0.857015 -0.533525 2.463099 2.569594 -3.484101 0.142452 -2.407232 1.568845 1.315156 0.915755 2.083147 -0.032708 0.043100 -0.148229 1.532544 -2.400483 -0.740473 -0.625521 1.082322 -0.914253 -0.422344 1.149640 1.115822 1.386429 0.306967 1.438945 1.370798 2.432762 -0.226151 -1.775232 -0.566283 -1.592871 2.901444 -1.545173 1.561778 -0.410511 1.703521 0.135239 -1.654232 -0.521378 -4.299143 0.759801 1.372475 -1.637893 -0.365452 -2.048045 0.436287 -0.293353 -1.607737 0.652259 -0.005573 1.943600 -0.181789 0.253136 -1.929943 -2.266695 0.703606 -0.705847 1.150315 0.969048 -0.031412 -1.536293 0.308142 -0.951508 -1.595183 0.467256 -0.272102 0.053327 -0.206547 0.588981 -0.487634 -0.110451 -0.019333 -1.417808 2.257239 -1.818728 2.773109 -0.138324 -0.307812 -1.339738 -0.457489 -0.271486 -2.338100 0.770214 1.765355 -0.321423 0.200602 -0.866696 0.690551 -0.516873 -2.737648 0.246591 -0.106552 -0.907751 1.164471 -1.537361 -0.172068 1.330403 0.063188 0.208153 2.386339 -0.044189 1.018083 1.726146 1.667055 0.454617 -1.599238 0.669169 0.210926 1.517699 1.850342 1.624230 -1.673934 -1.406202 -0.074053 -0.261858 -3.346204 1.279283 2.673721 1.866994 0.402775 -3.524243 0.745498 -1.189042 2.394289 1.742503 2.639060 0.879393 -0.287562 -1.205248 0.655494 4.981775 -1.436582 2.057367 -0.316278 -2.016196 3.520672 -1.579428 2.482524 0.319320 0.759788 0.855504 -2.090570 -1.058632 3.125007 1.742159 0.968014 2.408772 -0.262274 -0.098610 -3.889729 -2.875753 -1.145817 1.494795 0.418963 4.279191 -1.679381 -1.227115 -0.359665 1.733456 -1.117178 -1.214035 -0.290616 -0.288811 0.842996 -5.240514 -3.171795 3.171605 2.964069 -0.009380 -0.158056 2.732971 0.825768 0.099128 -1.952657 -1.405762 1.503728 -0.097792 1.355649 0.169960 -0.109388 -2.834334 0.000878 0.242509 0.498828 1.029420 -1.216144 -1.564789 0.814511 -3.090203 -1.406970 -0.042963 -2.559617 -1.321003 -0.003753 0.267048 -0.106597 -0.258381 -0.535407 -1.172268 1.032822 -1.970763 -0.666127 0.595483 1.411448 0.972362 3.370189 2.342248 0.225567 1.455022 0.987727 -1.477861 6.382759 -1.593594 -0.460564 -0.122128 2.338933 -0.673130 0.978737 0.928144 -0.651927 -1.866311 -2.364222 1.552943 -0.054796 1.167510 -3.359840 -1.881361 -1.632717 -0.494028 1.167132 2.752221 -0.651116 4.639426 -0.332406 1.133332 -5.396228 0.298547 1.890213 -0.439976 1.236864 1.711609 -1.814728 -3.661739 -0.512809 -0.271827 1.423137 -0.293202 -2.335745 -1.326891 -0.784377 -0.274108 -1.671905 1.184627 2.506357 -0.964846 1.632001 0.283329 -0.703479 -0.138056 -0.674853 1.588030 1.118452 -2.230188 2.680915 -0.581071 5.823745 -0.968665 2.406748 -1.684814 0.322151 -0.374148 -0.221700 -0.818858 3.203558 2.188589 1.111934 0.514394 0.270214 -1.030916 0.880979 -PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -1.687108 3.770407 18.005372 9.678487 -7.255215 -9.972944 -4.449505 -12.155914 6.396172 2.874528 9.804996 -1.078762 2.695440 3.987743 0.100840 -2.050980 3.111300 -1.075866 -1.516523 -3.840739 -3.430659 10.917468 6.945142 -11.099317 1.130311 -13.614527 6.336036 4.434009 5.807454 7.292669 0.594860 -0.119686 -0.724023 5.761300 -8.140180 -1.621975 -0.433953 2.925478 -5.697259 -1.766354 4.208403 4.574417 6.147421 -0.111251 7.189037 3.648427 7.348728 -1.202977 -7.617070 -2.130252 -5.025593 12.021477 -4.796931 5.728092 1.058552 5.296170 -0.880563 -8.870943 -2.287826 -11.483041 2.066855 4.664278 -6.121226 -0.660791 -8.368039 1.864190 -1.336253 -5.271775 4.517045 -2.564811 6.664843 -0.591800 1.212236 -6.201396 -9.805267 4.193851 -0.796528 3.897660 3.676473 0.147951 -2.599183 1.293265 -4.165275 -6.201256 2.194714 2.618057 -0.022062 -0.456757 0.490780 -3.280759 0.669283 -1.693172 -4.007082 8.754174 -8.493033 7.744105 -3.020403 -2.635680 -6.198225 -5.190214 -0.906927 -8.719103 3.999445 6.422970 -3.174932 2.553714 1.112471 3.131224 0.150736 -10.556620 0.555657 -1.164746 -0.369789 8.604447 -5.909391 -2.788947 1.686203 -0.159354 -1.924830 8.326338 -0.771991 4.063554 8.494222 6.473608 3.883571 -7.235139 1.042302 2.714036 5.164863 6.416738 6.386338 -8.098032 -4.334677 -0.360536 -0.247747 -15.264508 1.577814 6.159204 8.366515 1.288732 -10.968205 1.655734 -3.778297 10.405633 5.662594 6.902078 3.134675 -0.754362 -5.386404 2.976269 18.748000 -5.245405 7.001098 -4.552543 -8.507381 11.010907 -4.434497 8.992296 0.905120 3.042125 3.339503 -9.363989 -1.595102 11.788506 3.721308 3.310891 6.356299 0.123901 -1.478294 -15.072861 -12.926163 -3.093106 4.707728 0.566339 17.108311 -8.103538 -6.260365 -2.629118 9.547898 -3.331482 -3.415842 1.098903 -4.079246 3.807516 -17.779930 -14.227587 13.447999 15.103931 1.308709 -0.709946 11.252399 2.577066 -3.523554 -6.969393 -6.635096 5.821056 2.367149 1.356764 -0.106122 -0.888386 -10.746723 -1.624353 0.742937 2.068727 5.313818 -4.393751 -3.065766 0.876033 -11.737797 -6.845748 3.901653 -9.894302 -3.987058 -0.321023 2.020512 -0.635315 2.322588 -3.627203 -5.266606 3.863573 -6.298165 -1.344885 3.379299 5.218160 1.989891 12.545068 10.535160 0.752021 8.655789 3.084859 -5.461203 23.869991 -6.571858 -1.913883 -0.544677 6.319453 -2.922163 4.022291 3.825172 -3.297454 -6.497631 -8.708126 5.166139 -2.585628 4.268289 -11.545577 -8.681400 -8.945855 -3.119742 3.129129 9.415092 0.512631 18.735697 -2.053159 3.451203 -21.853166 0.683370 8.124277 -0.647706 6.163651 6.143158 -7.865326 -14.794375 -1.191875 -3.052135 3.071874 -1.802985 -11.317526 -6.066052 -5.753108 4.193996 -4.760090 4.080766 11.010853 -1.644243 6.655214 0.281728 -2.735550 -1.956448 -2.863036 6.118937 3.581829 -7.780788 10.519190 -1.779275 22.893350 -4.059280 8.321130 -6.569844 1.538663 -1.689512 -3.566191 -3.445137 11.605456 7.883239 4.503240 -0.551508 -0.826681 -6.033531 4.772007 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 1.219686 8.112914 19.795288 5.454965 -13.432393 -14.792867 -4.874019 -24.764488 7.881345 6.301228 13.302387 -2.327357 6.104400 -0.935098 -1.505890 5.720966 8.512863 -0.354404 -2.867485 -8.679178 -13.778185 7.434045 0.423986 -1.886239 7.847641 -12.363321 8.493968 2.670604 4.872863 3.865250 6.589116 0.367178 -3.767658 8.388318 -0.247001 5.066022 2.136116 5.090163 -8.586978 2.957063 3.258205 -4.104244 9.636906 3.560661 11.251309 7.131724 7.549906 1.395244 -11.857838 -2.331575 -4.741404 13.941613 -6.727758 7.493516 -0.313557 1.038287 -0.522485 -9.291674 0.768276 -2.651555 -2.570841 -5.808713 -7.703679 0.341958 -9.233203 0.156005 -4.013312 -9.829552 0.011187 -0.790165 6.595773 -0.491405 -3.827087 1.295170 -11.500854 2.424538 6.750622 3.624882 9.240198 0.780411 2.120806 -3.128441 -9.634985 -11.572391 11.818587 4.245607 5.822466 1.074269 -6.138700 -3.247693 -0.840011 -2.408576 4.684277 11.269901 -13.873652 0.792854 -4.465910 -8.403241 -13.973515 -17.375693 1.933832 -7.791113 7.142273 1.202958 -8.688406 4.408845 -1.943795 4.427951 -0.696822 -8.122713 -0.369667 -6.234870 3.028285 14.825279 -3.734302 -9.185518 -3.397695 -3.375573 -0.904025 5.859684 4.401598 -0.449774 18.601217 8.197104 9.341452 -8.268457 -3.630845 0.263935 2.850109 6.490142 8.195148 -11.268240 -7.254081 3.944574 -6.964031 -20.279450 -3.292106 2.191347 10.099717 -3.339028 -7.045351 1.520088 -4.962819 5.978027 5.602684 4.444787 4.242453 -0.856129 -6.648275 2.578029 16.092848 -6.552768 8.104261 -6.226331 -4.371545 7.376705 -1.866914 4.069303 2.085285 -3.226342 -1.662980 -7.925414 -1.660851 13.305072 2.662055 -1.981846 2.263849 3.969577 -9.538547 -13.319356 -17.796879 -0.198482 10.183295 1.089228 15.642836 -12.654967 -5.479312 -4.163875 13.774190 -2.173826 -5.504088 4.465357 -7.591889 6.116022 -9.890228 -15.146726 19.368809 16.917541 5.265012 -3.750699 9.210649 1.259665 -17.318309 -11.502524 -9.248989 4.176437 4.257460 -13.503856 -8.101235 2.840585 -14.761732 0.440514 -1.873547 5.002914 7.990294 0.678290 6.183645 -0.206857 -7.243734 -7.382397 6.018022 -4.910607 -4.044520 1.197053 2.361857 1.892223 7.136256 -5.216018 -7.210674 -1.372942 -10.168635 -0.971639 5.264389 11.026734 1.528800 22.451979 14.560855 -3.660717 10.723757 -1.077122 -7.841080 14.583991 -5.088401 2.508657 0.492438 6.676719 -3.053154 4.107258 12.888816 -5.482283 -11.391832 -10.723383 -2.439051 -1.675943 3.838589 -4.197046 -7.355724 -17.104780 -1.422177 -1.196270 13.188991 0.052871 18.631348 -0.614818 4.698850 -20.273057 1.026242 6.441283 -2.758261 8.550985 6.145020 -11.817065 -9.051707 -2.957294 -12.297299 -9.544038 0.750609 -0.342081 -8.974634 -4.546425 8.197910 -4.139931 1.204879 9.758595 -0.072512 8.785899 -0.069179 0.331655 -3.882462 0.223201 18.623451 0.369017 -8.445753 10.666247 3.399834 31.896953 3.163610 7.509534 -4.371325 -5.606280 2.855461 -7.243999 -8.619016 11.923642 12.569517 7.386374 -0.559252 0.053976 -1.905120 12.245672 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = -1.498457 0.827263 5.711391 0.150139 -2.357603 -3.407694 -1.535441 -7.246860 3.386339 2.708007 5.272566 0.129718 3.491458 -1.558920 0.099633 0.654885 3.102605 -1.670249 0.662052 -2.005702 -0.486284 4.379814 0.381826 0.773601 1.265608 -4.483046 2.192707 0.044970 2.207669 3.091957 1.486750 -0.105241 -1.715712 1.578205 0.922181 2.433684 1.822190 1.725143 -1.885240 -0.144975 0.073010 -1.970298 2.738240 0.588616 4.341304 -0.334116 0.581362 -0.160977 -2.641968 -2.245189 -0.395630 2.169595 -2.661501 1.597038 0.741320 -1.050654 -0.338250 -0.750162 0.053786 -2.415279 -0.136319 -2.265750 -1.602112 0.520175 -1.868814 0.934807 -2.181367 -1.077753 -0.794619 -2.418552 1.621054 0.520852 0.691306 1.791553 -4.904943 0.665203 1.492647 -0.079764 2.382800 0.929272 -0.846938 -1.583881 -2.328271 -3.714719 3.733977 3.122902 0.683970 0.814828 -3.678518 0.806854 -0.491845 0.074018 1.217851 2.864860 -4.192151 -0.243485 -0.002883 -2.137973 -1.304083 -5.291120 0.704288 -2.872809 1.016934 0.905235 -1.605369 -0.213102 -2.617451 1.290479 -1.807185 -2.256764 1.822766 -1.775604 -0.650308 3.911968 -2.230126 -1.345476 -3.031045 -0.446374 1.691293 1.832963 0.568408 1.142246 3.325804 2.261416 2.932390 -3.272492 -1.143808 2.377764 2.398500 0.754257 0.693127 -2.617476 -1.636530 1.741356 -2.979096 -5.668062 -2.836493 1.346642 3.258547 -0.392039 -1.476484 -0.157823 -1.677897 2.434698 3.780633 0.943888 0.544245 1.119446 -2.998111 0.979692 3.745779 -1.945763 2.746552 -0.814205 -0.921792 2.391532 -2.024736 1.708332 -0.129658 0.150349 -0.937367 -2.207712 -0.401862 3.889563 0.909130 1.911444 -2.331961 1.367397 -1.556604 -3.859425 -6.411639 -1.402056 4.825481 1.677885 3.398107 -3.262595 -1.625285 0.041650 3.938925 0.596583 -3.068216 1.650764 -2.102476 2.039289 -5.363743 -4.623104 6.328133 6.028280 2.892171 -0.169403 1.697876 1.745175 -4.900137 -2.059248 -2.099447 2.075537 -0.632781 -5.311657 -2.196779 1.108020 -4.137043 -1.211944 -0.858299 0.938279 1.342150 0.195222 3.295872 1.253895 -0.519438 -1.211607 2.857063 -1.040179 -2.740896 -1.109404 0.396101 1.422007 1.896813 -1.590217 -0.143751 1.515367 -3.078284 -0.421170 1.510696 1.929956 0.716528 5.629559 4.612618 -1.169714 0.702695 -1.311374 -2.197282 3.277451 -1.981254 0.373019 -0.107497 0.625467 0.646787 1.476406 3.413565 -1.651587 -2.937363 -3.391819 -1.563905 0.333220 2.570721 -0.769544 -4.731045 -4.508837 0.983463 0.060714 4.540661 0.069928 6.444693 -1.219581 1.803419 -5.780223 0.347642 2.077106 -0.732906 2.769211 0.989025 -2.550324 -2.490775 -1.133907 -3.931583 -2.523809 0.157290 -0.730405 -1.910035 -2.688708 3.961523 -2.114327 0.003111 0.711246 0.485465 4.416202 1.520127 -0.265559 -3.208783 1.843739 3.038585 0.089651 -2.013446 3.239019 1.295216 7.558298 -1.076177 1.503666 -0.937904 1.381972 -0.938447 -3.026765 -1.684784 4.097804 5.007987 2.035526 -1.257295 -0.490244 -0.673560 2.900696 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = -0.880438 0.061795 1.520519 0.489325 -0.982732 -1.430369 -0.445730 -1.971807 0.946642 0.696100 1.789306 0.266341 1.300057 -0.723365 0.201090 -0.185369 1.140997 -0.462627 0.313696 -0.596124 -0.116863 1.642060 0.411972 0.006979 0.199491 -0.844920 0.836486 0.204802 0.610641 1.331425 0.425617 -0.111890 -0.766249 0.349222 0.140894 0.604256 0.218722 0.672500 -0.602353 -0.276428 0.087248 -1.066766 1.166088 -0.007343 1.236235 -0.283157 0.438347 0.006299 -1.078780 -0.956411 -0.382242 0.438434 -1.060747 0.580709 0.148482 -0.678084 0.323448 0.336049 -0.034310 -1.378267 0.032222 -1.053511 -0.507321 0.092314 -0.702305 0.365498 -0.992203 -0.536299 -0.197383 -0.857761 0.590859 0.267747 0.474033 0.568140 -1.716382 0.168773 0.351277 0.115241 0.737411 0.708601 -0.322552 -0.592845 -0.787320 -1.065143 0.987928 0.493011 0.257669 0.362515 -1.475734 0.419519 0.066469 0.202354 0.382755 0.512030 -1.051922 0.209038 0.107660 -0.484705 -0.187261 -1.801245 0.221577 -0.818435 0.213528 0.519052 -0.458782 -0.341193 -1.340913 0.259022 -0.925959 -1.125731 0.804991 -0.695062 -0.625866 1.085443 -1.012084 -0.197410 -0.846088 0.059486 0.756410 0.622706 0.295583 0.577625 0.423181 0.779568 0.850213 -1.156754 -0.301692 0.757711 1.066993 0.233943 0.116178 -0.301161 -0.618670 0.636982 -1.170367 -1.775123 -0.971087 1.038059 1.215583 0.274741 -0.616869 0.126975 -0.748889 0.868895 1.359232 0.593440 0.287873 0.444063 -1.086416 0.449913 0.966110 -0.621158 1.049821 0.232492 -0.487862 1.238071 -0.643551 0.536881 -0.011088 0.046456 -0.262893 -0.616861 -0.258883 1.185584 0.608561 0.797552 -0.687873 0.479311 -0.519229 -1.518726 -2.059853 -0.269172 2.047762 0.960534 1.021668 -1.096442 -0.368638 0.406810 1.018692 0.079202 -1.345383 0.385001 -0.480385 0.712861 -2.680728 -1.541101 2.247108 1.695414 0.821565 0.159667 0.339257 0.830282 -1.262417 -0.635285 -0.864396 0.731922 -0.464135 -1.660297 -0.612228 0.388164 -1.408759 -0.458572 -0.002109 0.290405 0.414758 -0.330404 0.917836 0.156585 -0.049110 -0.252252 0.880331 -0.494523 -0.947877 -0.295708 -0.048617 0.702470 0.409312 -0.215899 0.175459 0.356772 -1.106422 -0.290206 0.146310 0.651358 0.384003 2.029886 1.645868 -0.517961 -0.118476 -0.364458 -0.967631 1.627512 -0.931796 0.156006 -0.149685 0.679570 0.594447 0.404250 1.301079 -0.574306 -0.901861 -1.204026 -0.644706 0.528809 1.024383 -0.906720 -1.670267 -1.782907 0.588075 0.079312 1.568409 -0.260833 2.163613 -0.709376 0.422637 -1.873061 0.126446 0.660025 -0.210597 1.025907 0.226932 -0.664177 -0.687942 -0.530870 -1.299306 -0.068226 -0.001737 -0.307764 -0.359494 -0.699989 0.911827 -0.816314 -0.012249 -0.003451 -0.308652 1.584225 0.723381 -0.183073 -1.023435 0.605873 0.670241 0.205823 -0.719666 1.566772 0.415946 2.428641 -0.190691 0.307668 -0.343035 0.800049 -0.518572 -1.052024 -0.454162 1.423324 1.815846 0.537175 -0.203098 0.171488 -0.078681 0.749313 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = -2.942250 -0.292164 5.465383 0.610384 -1.861781 -3.929224 -1.691695 -6.659484 3.296627 2.489156 6.498060 0.115288 3.680364 -1.954364 1.310490 0.650210 3.408516 -2.631675 0.621800 -1.830073 1.061087 5.026139 1.633832 0.199527 0.804390 -3.920067 0.149490 0.958194 1.555291 2.809279 1.172613 -0.376807 -1.419664 1.088949 -0.355688 2.867529 2.196794 1.356802 -2.039839 -1.095143 -0.363045 -1.242468 2.918883 -0.748694 5.032698 -1.215538 2.285894 -0.296465 -3.500489 -3.001273 -1.021574 4.055666 -2.807844 1.494595 1.386057 -1.123636 0.128600 -0.922521 -1.003231 -4.630936 -0.082849 -1.237662 -1.611507 0.177133 -1.008831 1.459798 -0.914378 -0.609360 0.239787 -2.507019 2.106171 0.499095 1.149051 2.230588 -4.121082 1.117547 1.220026 0.224426 1.558900 0.928211 -0.726497 -1.407891 -1.278701 -3.018703 3.667727 2.417290 0.925102 0.907088 -4.524576 2.370778 -0.474106 -0.305801 0.320865 1.838373 -4.335243 -0.138420 2.286528 -2.277861 -1.714885 -3.444374 0.460259 -2.878727 0.522619 2.158007 -0.331832 -0.368165 -4.763630 1.319187 -3.585905 -3.018902 2.357167 -1.421790 -1.770401 3.155763 -4.268439 0.027994 -2.462358 0.547224 1.447392 2.145989 0.304440 2.274508 2.120462 2.697118 2.505623 -3.366483 -0.833927 1.977962 4.797314 1.039262 0.528238 -2.103891 -1.713620 1.714788 -3.728617 -5.581245 -3.593129 3.128227 4.298746 1.519623 -3.141320 0.345353 -1.223419 4.433611 3.942056 1.034618 0.192543 1.399297 -3.701469 1.396239 3.676272 -2.437960 4.022478 0.369392 -0.793113 2.443978 -2.675284 2.023743 1.281818 0.376907 -0.667572 -2.490908 -1.185578 3.637174 3.191320 2.917929 -3.421493 1.705748 -0.849394 -4.913539 -7.598368 -1.793588 4.018463 1.358201 3.845817 -2.939007 -3.320003 -0.127617 3.987617 -1.077816 -4.440063 1.125967 -2.576708 1.966116 -6.411481 -4.740426 7.859053 7.349437 3.440570 1.024223 3.337356 2.384109 -5.097280 -0.983343 -1.515660 2.764644 -0.533703 -5.712987 -1.408769 0.902469 -4.403182 -2.225207 -1.613371 0.858999 -0.842192 0.861154 3.549791 1.976150 -1.117252 1.009932 1.737236 -1.500340 -3.252069 -1.415307 0.300825 2.179245 1.707979 -2.454353 0.325503 1.973296 -4.861895 -0.978022 1.187284 2.672220 2.451079 6.108656 5.438918 -0.659228 2.989893 -1.682967 -3.003361 3.010562 -2.275649 -0.081232 -1.008482 0.930405 1.475090 1.039309 3.092483 -1.546910 -2.986502 -3.480967 -0.816784 0.994303 3.344866 -1.340164 -6.029252 -4.723136 0.980914 1.186257 4.497234 -0.772318 6.862080 -1.952211 1.434513 -7.872746 0.324476 1.690473 -0.410707 1.785024 0.784188 -2.206030 -4.793370 -0.865235 -3.903964 -2.651795 0.226380 -1.865185 -1.360230 -4.556650 5.657385 -3.429781 -0.074307 0.706687 0.767531 5.178045 3.349236 -0.887704 -2.977312 1.978069 2.269326 0.721724 -2.233970 4.062474 1.117182 9.133610 -1.673028 1.542712 -1.633567 2.603289 -1.193172 -2.665008 -1.040370 4.210929 6.617979 1.228963 -1.198706 -0.272525 -1.479061 2.792005 -PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.305533 -0.395682 1.944123 1.663856 -0.937670 -2.642734 -0.616111 -2.450904 1.726680 0.862540 2.711124 0.489608 1.986411 -1.443020 0.482574 0.001745 1.655754 -0.501919 -0.112408 -0.860054 -0.132495 3.240194 1.132912 -1.186771 0.392881 -1.292862 0.907254 1.021625 0.598567 2.013470 0.460762 0.267757 -0.204187 0.583252 -0.915584 0.967338 -0.420319 0.843461 -0.776397 -0.962800 0.713387 -0.688290 1.973208 0.158724 1.846708 -0.255336 1.719661 -0.246360 -1.522709 -1.435134 -1.139052 1.389030 -1.307230 0.966569 -0.775774 -0.231267 1.271233 -0.197648 -0.233272 -2.797001 0.268895 -0.247770 -1.589072 -0.339532 -1.050928 0.515527 -0.380733 -0.836069 -0.073432 -1.122866 1.133449 0.191682 -0.159744 -0.575850 -2.466675 0.057568 0.349554 0.078280 1.017754 1.115997 -0.961164 -0.977164 -1.245568 -1.298294 2.169990 0.058868 0.529296 1.258136 -1.888216 -0.064527 -0.336648 0.288693 0.440379 0.643162 -1.371644 0.364685 1.758522 -0.813125 -0.448808 -0.878417 0.552463 -1.166077 0.009253 1.160898 0.091483 0.063707 -1.655926 0.341652 -1.732268 -1.706840 0.894223 -1.100354 -1.229644 1.273760 -1.488240 -0.318391 -0.865813 0.327789 0.759889 1.528496 0.291259 0.849254 1.301765 1.045705 0.808268 -1.623806 -0.025040 0.863823 2.044500 0.554777 0.099765 -0.523875 -1.084503 0.740036 -1.545813 -2.740559 -1.521428 2.117233 2.011253 0.584489 -2.035875 1.567907 -0.559163 1.588409 2.053923 0.513095 0.474046 0.693009 -1.800189 0.773126 2.314385 -1.025583 1.553161 -0.141585 -1.343471 2.482513 -1.028679 0.651114 0.335780 -0.409534 -0.236420 -0.793719 0.339546 1.848001 0.839628 0.889247 -0.652599 0.810327 -0.380697 -2.271500 -3.604082 -0.679183 2.101012 1.773809 3.153160 -1.525388 -0.681267 -0.032372 0.982327 -0.824267 -1.649784 0.299265 -1.169310 0.963061 -4.843592 -2.461940 4.132468 2.219109 1.685374 0.673601 1.473977 1.106924 -0.410083 -0.471172 -0.965736 1.242618 0.810178 -1.412327 0.155336 0.189394 -2.399853 -1.244217 -0.407446 0.223632 -0.497364 -0.940695 1.133525 -1.094327 -0.890744 -0.113319 0.474500 -1.356989 -0.899523 -0.572772 -0.240281 0.416743 0.546695 -0.202293 0.266096 0.003566 -1.699590 -0.663593 -0.128750 1.267741 1.224641 2.524034 3.498835 -1.017838 1.044105 -0.462569 -1.428887 2.778556 -1.399202 -0.111938 -0.367306 1.646855 1.515665 0.517648 1.656079 -0.644481 -0.425279 -1.884149 0.251808 1.637470 1.226888 -2.118101 -1.538463 -2.938500 0.061070 0.074986 2.952908 -0.771461 3.403183 -1.533650 0.517388 -3.890702 0.345292 0.924357 -0.044410 0.802355 0.465679 -1.208846 -1.970684 -0.616721 -1.627057 0.031672 -0.118178 -0.947776 -0.957040 -1.368709 1.203527 -2.335732 0.449662 1.069394 -0.588865 1.891001 0.463766 -0.136929 -1.169378 0.541732 0.538277 0.683706 -1.070332 1.753401 0.157899 3.754110 -0.461260 1.459503 -1.115395 2.088955 -1.282546 -1.886970 -0.710536 2.029272 2.760209 -0.077182 0.722076 0.473842 -0.047612 1.579449 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.636674 0.460827 2.391177 2.197014 -1.945923 -2.388707 -0.651999 -2.416319 1.559562 0.564572 2.022611 0.202868 1.350116 -1.026539 -0.255563 -0.738856 1.386182 0.438959 -0.640089 -1.054593 -1.094221 2.098852 0.379433 -2.049719 0.656631 -1.158318 1.870847 1.169897 0.445418 1.662731 0.532391 0.257853 -0.710147 1.040257 -0.856957 0.221186 -0.216989 0.717333 -1.046332 -0.679179 1.174988 -0.241219 1.963467 0.187050 1.447648 0.703427 0.925676 0.033553 -1.942031 -0.785050 -0.421205 0.852381 -0.754144 1.319499 -0.178892 0.397436 0.997719 -0.984518 0.255846 -2.103331 0.612332 -0.258218 -1.122430 -0.245432 -1.573596 -0.070210 -0.141613 -1.532377 0.311941 -1.549577 0.587820 -0.365359 -0.439739 -1.179817 -1.728649 0.136738 0.724397 0.415450 1.273053 1.245882 -0.354349 -0.991857 -1.418512 -1.159187 0.864493 -0.041994 0.559770 1.206964 -1.084828 -1.059873 0.644711 0.034571 0.526813 1.085214 -1.242526 0.342598 0.002154 -0.723601 -0.958025 -1.549704 0.581390 -0.824052 0.637269 0.968818 -1.321978 0.500830 0.042398 0.526453 -0.388743 -1.153500 0.338210 -1.319049 0.248325 1.822778 -0.543584 -1.485917 -0.790236 -0.380231 0.318959 1.508199 -0.045505 0.101952 1.665048 0.963301 1.152457 -1.691954 -0.190380 0.644640 0.797106 0.786478 0.700022 -1.123973 -0.715620 0.458664 -1.359876 -2.687488 -0.697321 0.557024 1.802054 -0.045183 -1.899582 1.236465 -1.042029 1.163994 1.001997 1.097937 0.554872 0.236968 -1.538521 0.337883 2.055808 -0.562682 0.899649 -0.545628 -1.877465 1.667993 0.265101 0.618521 -0.118584 -0.725198 0.038091 -0.829724 0.727853 1.809747 0.045088 0.052924 0.243931 0.504188 -1.132958 -2.252006 -3.057076 0.118116 1.743853 1.712831 3.490137 -1.966907 -0.691685 -0.544815 1.576160 -0.637706 -0.882514 0.486498 -0.884409 1.063178 -3.548821 -2.558438 3.256785 1.914159 0.984472 -0.119117 1.397075 -0.296566 -0.438864 -1.144812 -1.333715 0.609578 1.018991 -0.515048 0.172822 0.294903 -2.205971 -0.382709 0.332176 0.499059 1.011086 -1.387296 0.372451 -1.352217 -0.879559 -1.511893 0.739307 -1.012431 -0.148107 0.098606 -0.010253 0.095483 0.922510 -0.193314 -1.093946 -0.604412 -0.971042 -0.309264 -0.078880 1.304628 0.394249 2.618327 2.604583 -0.898075 1.070874 0.147368 -1.184406 4.146852 -1.476843 0.288606 0.090323 1.745054 0.921474 0.557468 1.710604 -0.829035 -0.150125 -1.871795 -0.290547 0.593961 0.813593 -3.312082 -1.022413 -2.907991 -0.076494 -0.609399 2.119010 -0.273927 3.372345 -0.758199 0.257868 -3.493027 0.090625 1.692196 -0.198877 1.154059 0.805092 -1.750240 -2.181227 -0.246691 -1.631533 0.288266 -0.253939 -0.563013 -1.179047 -0.179756 0.574633 -0.971219 0.589719 2.208345 -0.848050 1.148253 -0.390097 0.083256 -0.350011 -0.718238 0.754120 0.344839 -1.126023 1.725102 0.343580 3.746206 0.374746 1.387156 -0.891032 1.271004 -0.630614 -2.042613 -1.266894 1.739568 1.782172 0.659588 0.554900 0.601963 -0.523563 1.610512 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.216329 1.274329 3.449988 1.087297 -1.891923 -2.818282 -0.808293 -4.238031 2.068406 1.180730 2.222566 0.117710 1.852885 -0.789137 -0.529502 0.600813 1.732559 0.277666 -0.183244 -1.476979 -1.825119 2.602133 -0.050505 -0.696748 1.198224 -2.568330 2.498246 0.533744 1.508343 2.073259 0.896095 0.320591 -0.618187 1.546485 0.139788 0.727743 0.060429 1.144857 -1.394391 0.306147 0.703746 -0.947505 2.075703 1.216077 1.874517 1.021625 0.447202 0.170832 -1.395512 -0.699189 -0.562890 1.018241 -1.284075 1.397988 -0.833587 0.067266 0.393278 -0.913968 0.610694 -0.766165 -0.004530 -0.988257 -1.648116 0.066245 -2.076086 0.032445 -1.307833 -1.672502 -0.739075 -0.896456 0.942656 0.148233 -0.662138 -0.522177 -3.358212 -0.033920 1.074615 0.299844 2.045836 0.567362 -0.561897 -1.057798 -2.243715 -2.403955 2.473384 1.216061 0.768199 1.083799 -1.360542 -1.403438 -0.301220 0.258224 1.247607 2.110647 -1.944359 0.180462 -0.691969 -1.148086 -1.201701 -3.366745 0.686064 -1.434728 0.883164 -0.116816 -1.129557 0.433868 -0.007438 0.772097 -0.137873 -1.191767 0.385357 -1.460107 0.004240 2.759974 0.046651 -1.799328 -1.430195 -0.788690 0.540687 1.579725 0.509676 -0.144765 3.039583 1.265606 1.530797 -1.872922 -0.600110 0.891909 0.208168 0.829247 1.011938 -1.825286 -1.303070 0.816868 -1.291564 -3.760600 -0.840667 0.326140 1.590787 -1.146394 -0.926099 0.733113 -1.257633 0.508429 1.827637 0.665941 0.776208 0.131235 -1.512260 0.586048 3.041440 -1.028526 1.083899 -1.456671 -1.299064 2.007300 -0.552606 0.706311 -0.662372 -0.896494 -0.485117 -0.884343 0.658136 2.617829 -0.596769 -0.050688 0.273592 0.569930 -1.525786 -2.043840 -3.354459 -0.350764 2.840471 1.300560 3.262190 -2.269301 -0.195425 -0.420766 1.954097 0.243550 -0.649082 0.988345 -1.278141 1.348283 -3.420208 -2.986860 3.591681 2.432124 1.483625 -0.582849 0.782885 0.485816 -1.655403 -1.950809 -1.461088 0.721007 0.641191 -2.086048 -1.242172 0.521726 -2.729756 -0.117901 0.011813 0.697376 1.566813 -0.712427 1.275614 -1.086453 -0.960879 -2.236644 1.501149 -1.047771 -0.580226 -0.016387 0.050848 -0.076264 1.209459 -0.225069 -0.786600 -0.008872 -0.935294 -0.067579 0.524036 1.337580 -0.074070 3.196459 3.040003 -1.056221 0.421701 -0.069507 -1.162326 3.291481 -1.198239 0.634727 0.431083 1.288149 0.176075 1.084641 2.336981 -0.985734 -1.104142 -2.312187 -0.678991 0.606540 0.808483 -1.184169 -1.193424 -3.102573 -0.087560 -0.631460 3.226580 -0.046481 3.766584 -0.610106 1.133004 -3.209445 0.360917 1.416147 -0.491074 1.898026 1.073063 -2.153003 -1.078143 -0.749221 -2.273042 -1.076410 -0.145776 -0.168499 -1.721216 -0.163807 0.628635 -1.207416 0.423087 1.669079 -0.402795 1.707553 -0.882339 0.326386 -1.425451 0.281760 2.480975 -0.094554 -1.271354 1.305101 0.630041 4.304130 0.180946 1.739401 -0.711933 0.245015 -0.280570 -2.208793 -1.685814 2.547931 1.952471 1.089237 0.318061 0.095573 0.236725 2.206416 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.198128 0.547659 2.071949 0.885581 -1.370135 -1.674195 -0.569803 -2.330521 1.255191 0.481308 1.173669 -0.124489 0.802380 -0.628640 -0.292291 0.534937 1.142848 0.121156 -0.200103 -0.881571 -0.590795 1.573600 0.212077 -0.751065 0.707581 -1.475075 1.280363 -0.012214 0.864329 1.433776 0.660375 -0.196218 -0.416939 0.844165 0.484443 1.231522 0.431932 0.482000 -1.159134 0.228267 0.069998 -0.523328 1.035386 0.308265 1.468409 0.645282 0.524750 0.117070 -1.419588 -0.304217 -0.648405 1.153985 -1.107815 0.946911 -0.011543 0.234093 0.032512 -0.711850 -0.043499 -0.828449 -0.422958 -0.561728 -0.938801 0.100501 -1.424588 0.130365 -0.764698 -0.631058 -0.452447 -0.412090 0.589891 0.280374 -0.006940 0.166880 -1.640878 0.111439 0.470418 0.647209 1.171402 0.056882 0.064612 -0.760250 -0.962084 -1.235961 1.194526 0.238372 0.473853 0.505258 -0.507517 -0.419664 -0.330255 0.060547 0.459594 0.990939 -1.226161 0.021218 -0.536944 -0.467946 -0.545117 -2.056225 0.225168 -0.770414 0.409825 0.148891 -0.450182 0.209303 -0.079618 0.732603 -0.141623 -0.565930 0.513976 -0.415103 -0.411567 1.509303 -0.159388 -0.890276 -0.690494 -0.314118 0.151857 1.053468 0.254395 0.325123 1.159724 0.935365 1.634714 -1.060309 -0.405306 0.459802 0.564535 0.593827 0.835502 -0.804731 -0.753949 0.472266 -0.707469 -2.051081 -0.620456 0.511158 1.278526 0.230614 -0.779511 -0.281396 -0.703201 0.878207 0.519641 0.517909 0.398475 -0.030705 -1.011222 0.402666 1.890112 -0.658541 0.715553 -0.681930 -0.254709 0.846965 -0.263832 0.373142 -0.481709 -0.429022 -0.052799 -0.759279 0.017785 1.404730 0.220484 -0.078075 -0.092895 0.469110 -1.035068 -1.706672 -1.782612 -0.267829 1.574218 0.268061 1.586514 -1.265899 -0.482437 -0.507873 1.117384 -0.053505 -0.403797 0.328196 -1.079992 0.848401 -2.019289 -1.762326 2.704077 1.810852 0.956528 -0.184266 0.483572 0.633663 -1.617728 -0.918492 -0.919327 0.422865 0.077760 -1.452348 -0.916825 0.283502 -1.737231 -0.393236 0.211118 0.554395 0.715403 0.123677 0.532659 -0.027561 -0.486085 -0.993894 0.811550 -0.727232 -0.510310 0.154370 0.116356 0.342506 0.821122 -0.453530 -0.385469 0.371225 -0.814763 -0.224938 0.300663 1.086155 0.166028 1.768916 1.980551 -0.176604 0.807341 0.122679 -1.192409 2.039674 -0.436895 0.478118 0.006467 0.350011 0.280273 0.371714 1.323683 -0.671390 -0.919633 -1.349289 -0.703196 0.268751 0.883056 -0.716903 -1.418800 -1.518186 0.104226 -0.029073 1.484993 0.056262 2.137017 -0.432632 0.620515 -2.317543 0.231558 1.484303 -0.156256 0.864007 0.677494 -1.137091 -1.348482 -0.322964 -1.268551 -0.590455 -0.390629 -0.164578 -0.782574 -0.427977 1.064740 -0.567217 0.143483 1.126271 0.060522 1.449670 -0.013326 0.144372 -0.827825 -0.064989 1.072405 0.165513 -0.867914 0.942855 0.711895 3.040136 0.098567 0.571839 -0.588600 0.058111 -0.132510 -1.207085 -0.839079 1.421709 1.460004 0.618790 0.319845 -0.040265 -0.299517 1.193698 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.200995 0.406745 1.382678 1.003857 -0.841970 -0.600392 -0.318141 -0.914559 0.251937 -0.045386 0.642018 -0.300628 0.041275 0.012432 -0.180050 -0.383741 0.516969 0.197694 -0.168213 -0.430903 -0.482418 0.447274 0.287890 -1.293990 0.303667 -0.777842 0.839615 0.593501 0.329410 0.664138 -0.161175 0.021849 -0.373014 0.627772 -0.546974 -0.548033 0.450133 0.222930 -0.662226 0.034577 0.536523 0.772794 0.529798 -0.311718 0.526671 0.988220 0.093285 0.180174 -1.054975 0.071343 -0.074523 0.710691 -0.336610 0.671654 0.348601 0.278063 0.195221 -0.952002 -0.318006 -0.731621 0.089705 0.304180 -0.038048 -0.019411 -0.789179 -0.017444 0.108396 -0.737795 0.659001 0.004840 0.416778 -0.056653 -0.022898 -0.454802 -0.074137 0.624235 0.581978 0.805133 0.504826 -0.272908 0.417176 0.214317 -0.418622 -0.464867 -0.196024 -0.189348 0.489145 0.057508 0.381654 -0.398564 0.666960 -0.226669 -0.340169 0.700805 -0.057370 0.265815 -0.769729 -0.196772 -0.840054 -0.779733 -0.010947 -0.222296 0.516467 0.727687 -0.806677 0.334354 0.457948 0.532540 0.184111 -0.628503 -0.010168 -0.358533 0.361806 0.719436 -0.085106 -0.474460 -0.043750 -0.323862 -0.329344 0.854167 0.051080 0.166979 0.614564 0.894190 0.328638 -0.594111 -0.377629 -0.220600 0.161380 0.754397 0.905842 -0.874644 -0.381721 0.023390 -0.461248 -1.003860 0.195016 -0.039086 0.806479 0.065905 -0.735979 0.323790 -0.712755 0.828367 -0.029233 0.517775 0.195303 -0.362542 -0.394859 0.617835 1.124913 -0.378369 0.327357 -0.538883 -0.699229 0.330896 0.163343 0.419772 0.081341 -0.226884 0.310036 -0.794121 0.058132 0.818021 0.403478 -0.001767 0.762593 0.081903 -0.138452 -1.213082 -0.767926 0.264679 0.210449 -0.073569 1.571696 -0.628194 -0.733195 -0.482187 0.937050 -0.398794 0.118012 -0.050975 -0.273391 0.360185 -0.860900 -1.035915 1.199075 0.957772 0.005051 -0.288490 0.720653 -0.145250 -0.129051 -0.404011 -0.508396 0.308287 0.236936 -0.076303 -0.247643 -0.039858 -0.637705 -0.046732 0.326783 0.417545 0.649450 -0.213503 -0.753317 -0.035844 -0.977198 -0.849571 0.398015 -0.742416 0.162346 0.458330 0.026435 0.080158 0.366428 -0.405670 -0.812670 -0.099052 -0.432956 -0.117408 0.164925 0.799245 0.082302 0.653335 0.511888 0.194924 0.939713 0.634462 -0.631781 1.972162 -0.270921 0.317425 0.322619 0.501466 -0.185273 0.249284 0.502196 -0.248666 -0.390162 -0.970465 -0.092810 -0.104189 0.425146 -1.303084 -0.738167 -0.817003 -0.372260 0.411750 0.412857 -0.026909 1.358174 0.147148 0.098356 -1.361492 -0.066489 0.783131 -0.121027 0.398606 0.618290 -0.852109 -1.710146 -0.059763 -0.493627 0.060596 -0.264604 -0.586168 -0.573388 -0.138642 0.307268 0.087985 0.449862 1.250459 0.047715 0.260430 -0.085501 0.012761 -0.005501 -0.725465 0.310794 0.165308 -0.759976 0.623178 0.288158 2.045883 0.152279 0.502098 -0.710275 -0.377081 0.340338 -0.171704 -0.169823 0.656331 0.517680 0.411296 0.215652 0.225628 -0.574957 0.686707 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = -0.029679 0.356597 1.024599 0.460656 -0.669756 -1.012933 -0.202929 -1.437755 0.665110 0.346830 0.811782 0.156072 0.805037 -0.405913 -0.124902 -0.075496 0.661655 0.199554 0.111016 -0.406458 -0.331949 1.069989 -0.135044 -0.125093 0.155198 -0.583563 0.821787 0.301885 0.705059 0.848075 0.261421 -0.034095 -0.449349 0.319084 -0.077329 -0.015482 -0.068143 0.446386 -0.683930 -0.125511 0.046523 -0.600663 0.815739 0.126533 0.529204 -0.043553 0.170749 0.086758 -0.381606 -0.348318 -0.268209 0.195021 -0.399497 0.494642 -0.166662 -0.490172 0.175424 0.317041 0.242116 -0.349758 0.115826 -0.539531 -0.341514 -0.001134 -0.690858 0.058583 -0.707226 -0.658637 -0.189115 -0.460382 0.290587 0.101043 0.139859 -0.124309 -1.466906 0.039715 0.289392 0.138898 0.621208 0.550779 0.036294 -0.437954 -0.682746 -0.706129 0.638835 0.513705 0.150338 0.392721 -0.847261 -0.318301 0.116094 0.175409 0.462795 0.400482 -0.518976 0.282134 -0.565296 -0.173915 -0.086772 -1.427298 0.199235 -0.420308 0.251112 -0.088221 -0.235813 0.023793 -0.101137 0.170039 -0.153591 -0.636666 0.331247 -0.467585 -0.186792 1.035902 -0.150628 -0.509344 -0.496970 -0.100678 0.151061 0.392932 0.209340 0.147129 0.407540 0.419861 0.570945 -0.792640 -0.249612 0.592630 0.153884 0.301966 0.162962 -0.280770 -0.374780 0.315548 -0.605388 -1.282370 -0.346996 0.385735 0.636225 -0.327280 -0.074803 0.105437 -0.598257 0.286221 0.712379 0.291151 0.335177 0.184770 -0.558177 0.274972 0.728068 -0.276539 0.419396 -0.187374 -0.416549 0.663229 -0.097200 0.306366 -0.332999 -0.168786 -0.092079 -0.262256 0.129870 0.828024 -0.064107 0.234704 -0.095919 0.219380 -0.678005 -0.896457 -1.103587 -0.048254 1.296771 0.616288 0.803587 -0.697769 -0.154169 0.252156 0.591082 0.108924 -0.466464 0.458570 -0.415409 0.551133 -1.551586 -1.031347 1.160833 0.846922 0.410389 -0.210733 0.078176 0.350801 -0.612866 -0.699684 -0.535091 0.247688 -0.080272 -1.113621 -0.507488 0.221987 -0.872409 -0.047699 0.277810 0.187446 0.534652 -0.202806 0.610854 -0.388346 -0.127825 -0.721737 0.806244 -0.340611 -0.179699 -0.044053 -0.010939 0.138330 0.384445 -0.118986 -0.100857 0.183548 -0.311900 0.022430 -0.050167 0.270457 -0.092358 1.145233 0.934161 -0.343004 0.013764 -0.018754 -0.582617 1.461045 -0.599503 0.235111 0.087699 0.463767 0.086441 0.417137 0.782963 -0.426478 -0.441016 -0.894837 -0.603168 0.302257 0.470398 -0.508111 -0.696405 -1.087839 0.229236 -0.257287 0.979749 -0.057919 1.324859 -0.509696 0.327999 -0.974652 0.110888 0.418584 -0.196251 0.906211 0.254075 -0.577681 -0.181507 -0.294230 -0.795008 -0.157626 -0.088262 -0.336703 -0.362317 -0.143945 0.151024 -0.385600 0.058607 0.254275 -0.368766 0.807255 -0.312846 0.020730 -0.568530 0.252774 0.576277 0.015563 -0.519924 0.699621 0.209869 1.487464 0.085660 0.353885 -0.241044 0.294471 -0.274281 -0.883702 -0.481847 0.965918 0.781064 0.463873 -0.081391 0.141833 0.078195 0.508501 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator(std::allocator const&) = -0.050334 0.313241 0.720153 0.416280 -0.540971 -0.799693 -0.125186 -0.861974 0.382657 0.194344 0.523876 0.111233 0.566748 -0.242024 -0.099903 -0.170452 0.479734 0.231742 0.044675 -0.306312 -0.349619 0.639212 -0.042711 -0.231023 0.154037 -0.292647 0.719109 0.254732 0.388357 0.692036 0.169324 0.009937 -0.355863 0.263088 -0.088375 -0.100810 -0.107965 0.350608 -0.420350 -0.044511 0.112783 -0.411507 0.619276 0.164121 0.274811 0.188827 0.032911 0.103827 -0.340391 -0.261403 -0.142114 -0.035444 -0.293135 0.405397 -0.208153 -0.273425 0.237294 0.223220 0.227633 -0.384920 0.146425 -0.401813 -0.248517 -0.014912 -0.571355 -0.022938 -0.509185 -0.590256 -0.140873 -0.363061 0.181129 0.036422 0.034204 -0.166550 -0.955596 -0.011164 0.226773 0.143849 0.480195 0.391945 -0.052681 -0.311015 -0.549471 -0.505475 0.353122 0.194504 0.184337 0.350588 -0.533761 -0.339703 0.170036 0.168172 0.349410 0.291985 -0.216068 0.235942 -0.404246 -0.104440 -0.073977 -1.021046 0.165683 -0.246099 0.189667 -0.015437 -0.252090 -0.015296 -0.096749 0.149053 -0.061205 -0.442923 0.255411 -0.411375 -0.144236 0.668816 -0.049455 -0.410876 -0.316415 -0.129066 0.205229 0.347287 0.138050 0.014305 0.246331 0.271827 0.369603 -0.555084 -0.146857 0.314629 0.043845 0.209722 0.167151 -0.163624 -0.288054 0.226032 -0.499666 -0.888850 -0.176107 0.231591 0.441274 -0.240730 -0.154268 0.217990 -0.530782 0.081479 0.474443 0.339352 0.282004 0.079952 -0.385664 0.146220 0.480581 -0.211193 0.283668 -0.072281 -0.413130 0.522008 0.049627 0.195848 -0.257485 -0.220748 -0.030377 -0.134491 0.137639 0.607286 -0.033771 0.133103 0.083815 0.119184 -0.506805 -0.607321 -0.720657 0.023378 0.975915 0.502792 0.634319 -0.541271 0.007388 0.144112 0.419268 0.028231 -0.292577 0.232485 -0.167764 0.372221 -1.213910 -0.715530 0.787282 0.471937 0.256013 -0.166318 -0.030968 0.162366 -0.233265 -0.522936 -0.426720 0.118457 -0.092611 -0.578079 -0.337634 0.152953 -0.624049 0.045725 0.262747 0.153091 0.466345 -0.312084 0.274151 -0.388000 -0.102924 -0.603644 0.445175 -0.279771 -0.070035 0.057605 -0.050307 0.086711 0.203794 0.021986 -0.152267 0.042903 -0.192534 -0.022879 -0.089210 0.239435 -0.067126 0.849377 0.600842 -0.295485 -0.164722 0.040073 -0.435884 1.224133 -0.470736 0.207188 0.080367 0.526851 0.140651 0.278798 0.623412 -0.295443 -0.241718 -0.663904 -0.436671 0.305544 0.276938 -0.551857 -0.394358 -0.846861 0.194431 -0.255029 0.776660 -0.096283 0.938837 -0.287237 0.218236 -0.594282 0.085249 0.315370 -0.169712 0.601611 0.215988 -0.442675 -0.159902 -0.221988 -0.604962 0.060991 -0.064052 -0.143288 -0.235841 0.117460 -0.124400 -0.203918 0.077170 0.238834 -0.362003 0.479426 -0.224936 0.032839 -0.327759 0.061739 0.428542 0.004518 -0.370476 0.517219 0.187385 0.962548 0.174806 0.295543 -0.153638 0.172835 -0.157462 -0.603984 -0.413229 0.681818 0.486948 0.337407 0.081103 0.190062 0.122251 0.371588 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.067710 0.331739 1.020711 0.374040 -0.548466 -0.785814 -0.178584 -1.166105 0.569853 0.440136 0.747608 0.051243 0.629949 -0.248965 -0.132505 -0.055814 0.572185 0.116630 0.002855 -0.431239 -0.275023 0.735794 -0.018730 -0.141049 0.261049 -0.766348 0.712947 0.127446 0.467726 0.686589 0.255281 0.042793 -0.358006 0.351458 -0.068060 0.052024 0.083119 0.354639 -0.468280 -0.009584 0.136156 -0.213181 0.577803 0.328715 0.541714 0.231836 -0.012806 0.011006 -0.471071 -0.365057 -0.096272 0.134640 -0.330188 0.534037 -0.187884 -0.195868 0.128916 0.064520 0.269753 -0.515782 0.156198 -0.345077 -0.203803 -0.003050 -0.550408 0.050307 -0.486441 -0.558243 -0.184956 -0.381358 0.348111 0.055977 0.066221 -0.045311 -1.026925 0.097943 0.232110 0.122909 0.621527 0.267272 -0.164620 -0.371337 -0.583534 -0.704311 0.557882 0.391919 0.165172 0.399075 -0.533704 -0.380055 0.073041 0.029171 0.351683 0.496715 -0.512188 0.124195 -0.278630 -0.214006 -0.067614 -1.049338 0.091064 -0.415949 0.182309 0.093943 -0.299565 0.119509 -0.158790 0.263154 -0.088614 -0.336369 0.442915 -0.368608 -0.129267 0.819705 -0.131762 -0.556205 -0.367330 -0.092488 0.205462 0.461101 0.130600 0.055600 0.564584 0.326395 0.503745 -0.587698 -0.112404 0.433128 0.133302 0.242195 0.244563 -0.349696 -0.389507 0.265998 -0.527051 -1.026421 -0.267527 0.205625 0.670773 -0.267980 -0.247207 0.201632 -0.525939 0.239712 0.590429 0.270290 0.294428 0.060473 -0.558154 0.159069 0.759725 -0.315148 0.346595 -0.171203 -0.332717 0.441159 -0.056786 0.282342 -0.231867 -0.199518 0.012965 -0.307790 0.067276 0.812813 -0.005519 0.153929 -0.042862 0.287453 -0.556680 -0.746324 -1.038565 -0.179141 0.914590 0.417077 0.803541 -0.611729 -0.094560 -0.067389 0.670519 0.030660 -0.344685 0.289392 -0.269060 0.334113 -1.235840 -0.874693 1.166877 1.011099 0.446681 -0.278545 0.155630 0.281739 -0.432501 -0.618918 -0.386247 0.116475 -0.010356 -0.776354 -0.496119 0.242892 -0.721855 -0.199582 0.171657 0.144173 0.432606 -0.234865 0.417005 -0.164894 -0.149976 -0.581838 0.492442 -0.318324 -0.191247 -0.003533 0.082117 0.127013 0.315138 -0.167923 -0.187872 0.235875 -0.326619 -0.061691 0.067518 0.459273 0.085968 0.970716 0.759788 -0.251749 0.024308 0.000105 -0.558943 1.298847 -0.513387 0.138834 0.060240 0.367598 0.107811 0.310306 0.591222 -0.364079 -0.303292 -0.789283 -0.329155 0.174030 0.255892 -0.491300 -0.543116 -0.967735 0.203556 -0.305839 0.834880 -0.026017 1.249314 -0.307965 0.190703 -0.863396 0.072389 0.510394 -0.238202 0.622627 0.330447 -0.529432 -0.458600 -0.255551 -0.739281 -0.089976 -0.050927 -0.213188 -0.318612 -0.083399 0.212825 -0.317212 0.221423 0.366324 -0.092531 0.677429 -0.212003 0.024312 -0.524611 0.213916 0.515879 0.061480 -0.505142 0.526196 0.183683 1.250953 0.002917 0.342288 -0.254337 0.101507 -0.227691 -0.685183 -0.496420 0.793118 0.684038 0.496363 0.033539 0.090220 0.001677 0.629540 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = -1.049391 0.898494 5.190114 1.797225 -2.478312 -3.725239 -1.243058 -6.100974 3.006696 2.497026 4.801963 -0.137232 2.754145 -1.144183 0.060225 1.047995 3.056252 -0.859304 -0.091710 -2.333972 -1.300265 4.262226 1.098723 -0.331789 1.334411 -4.360130 2.000905 0.356553 1.930468 2.397823 1.376902 0.187413 -0.876247 1.698294 -0.224116 1.835489 0.688507 1.468848 -1.944004 -0.183679 0.765894 -0.936566 2.616260 1.326841 3.646303 0.512662 1.900352 -0.458348 -3.305273 -1.976786 -1.541322 3.039974 -2.417801 2.165907 -0.454590 -0.467520 0.749899 -0.996914 0.148627 -3.093895 -0.339143 -1.276528 -1.731356 -0.004310 -1.999406 1.031534 -1.785779 -1.680610 -0.486781 -0.731236 2.532096 0.687031 0.222411 0.864627 -4.149786 1.040009 1.024737 0.574222 2.721355 0.383026 -0.928384 -1.347353 -2.458353 -3.505791 4.069076 1.232123 1.068900 1.165134 -2.502336 -0.332007 -0.719008 -0.278311 0.842698 2.570189 -3.743501 0.310960 0.847432 -1.854595 -1.611834 -3.957553 -0.033124 -2.713755 0.598932 1.504800 -1.232764 0.710174 -2.664452 1.140517 -1.753462 -2.188462 1.813195 -1.484606 -1.222236 3.286636 -2.203027 -1.742492 -1.417093 0.206207 0.825908 2.294433 1.003665 1.201629 3.919478 2.081943 2.329233 -2.521708 -0.370232 1.202708 2.341625 1.285220 1.487577 -1.869764 -2.500879 1.261333 -2.163366 -5.169657 -1.907239 2.442202 3.811076 0.324476 -2.289190 0.794113 -1.442158 2.660902 3.243932 1.011925 0.976315 0.265751 -2.985114 1.213525 4.540048 -2.222376 2.711198 -0.993320 -1.024617 2.819950 -1.861477 1.430182 0.227097 -0.451530 -0.264090 -2.390034 -0.809332 4.090596 1.202280 0.692936 -0.628597 1.821888 -1.471806 -4.223328 -6.118820 -1.265986 3.456356 1.305814 4.351781 -2.930260 -1.317606 -0.603982 3.101090 -0.529666 -2.473475 0.978212 -1.895253 1.317263 -6.038928 -4.675887 7.338091 5.843590 2.555381 -0.474718 2.199157 2.249365 -3.351163 -2.383088 -1.795787 1.631764 0.520763 -4.246198 -2.228946 1.154724 -3.985633 -1.849814 -0.569787 0.798439 0.661959 -0.602376 2.311042 0.210110 -1.533478 -0.915075 1.859489 -1.893007 -2.121707 -0.561894 0.457845 1.144590 1.621436 -1.273539 -0.374221 1.056599 -3.166492 -1.016210 0.957236 3.312021 1.794289 5.431492 5.236554 -0.837264 2.028463 -0.479703 -2.874683 4.410489 -2.161414 0.072991 -0.285600 1.338221 0.534852 1.210564 3.023170 -1.499444 -2.488461 -3.502144 -0.179751 0.597215 1.479821 -1.691754 -3.192102 -4.941971 0.358831 0.085323 4.300306 -0.442405 6.422397 -1.608551 0.769542 -6.064699 0.329349 2.429980 -0.843520 2.392691 1.643713 -2.572756 -3.060391 -1.432026 -3.309552 -1.023779 0.129802 -1.164648 -1.901224 -2.292213 2.905388 -2.914632 1.139930 1.569874 0.688590 3.914132 0.953665 -0.185478 -2.740287 1.718709 3.167716 0.922378 -2.487816 3.146495 0.702272 7.827717 -0.787594 1.719490 -1.903567 0.394679 -0.857993 -2.580548 -1.787133 3.809825 4.818840 1.658368 0.165339 0.079336 -0.579089 3.737631 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.149080 0.412732 1.221089 0.278404 -0.659883 -0.902078 -0.190250 -1.396728 0.668958 0.429498 0.871735 0.195825 0.852009 -0.336108 -0.098930 -0.192177 0.775236 0.129420 0.149930 -0.421798 -0.085387 0.964632 -0.096946 -0.048988 0.206072 -0.692965 0.717444 0.222604 0.747823 0.923486 0.264051 -0.072459 -0.605277 0.309497 0.017998 -0.069667 0.140225 0.394159 -0.757193 -0.087147 -0.053412 -0.519121 0.817957 0.146982 0.579885 -0.082230 -0.068690 0.079741 -0.433561 -0.427428 -0.101703 0.138943 -0.345422 0.567356 0.069824 -0.466343 0.025583 0.362733 0.298095 -0.457186 0.181030 -0.546245 -0.136799 0.023996 -0.629321 0.002341 -0.789947 -0.600208 -0.199391 -0.700744 0.217980 0.051107 0.275557 -0.014855 -1.459844 0.111907 0.306826 0.157898 0.616206 0.615876 -0.051234 -0.429926 -0.601010 -0.762994 0.433639 0.651215 0.076540 0.374441 -0.990700 -0.265714 0.190451 0.158134 0.371927 0.424748 -0.663926 0.277231 -0.636259 -0.235083 0.015122 -1.514274 0.136035 -0.434097 0.214374 -0.109723 -0.276681 -0.059449 -0.310552 0.237335 -0.095305 -0.491895 0.555651 -0.388792 -0.314195 1.057587 -0.235568 -0.503574 -0.615020 -0.075632 0.252791 0.406243 0.064093 0.139091 0.218533 0.391319 0.686323 -0.795246 -0.155725 0.658827 0.171444 0.217931 0.176949 -0.229677 -0.310523 0.373958 -0.712350 -1.278865 -0.384452 0.333491 0.702151 -0.236546 -0.032758 -0.130949 -0.715543 0.348137 0.728792 0.340877 0.358533 0.190642 -0.581493 0.190060 0.657394 -0.347653 0.466112 -0.066968 -0.378704 0.538733 -0.094929 0.459192 -0.450616 -0.092644 -0.018632 -0.294370 0.050708 0.901763 0.034099 0.332668 -0.269278 0.154415 -0.606967 -0.912008 -1.228740 -0.168763 1.272891 0.616404 0.647549 -0.649678 -0.193676 0.143947 0.712234 0.151057 -0.579687 0.485623 -0.337221 0.505394 -1.563609 -0.989772 1.191620 1.180069 0.380245 -0.267965 0.036037 0.289985 -0.732664 -0.761987 -0.525947 0.215296 -0.334235 -1.178912 -0.572002 0.294853 -0.842739 0.005487 0.279233 0.140341 0.650967 -0.163033 0.692685 -0.087682 -0.073871 -0.703251 0.822057 -0.277757 -0.327378 -0.042883 0.024051 0.250630 0.411999 -0.182708 -0.208105 0.374708 -0.415514 -0.062986 -0.054316 0.316871 -0.093310 1.111126 0.768799 -0.203152 -0.101092 -0.046185 -0.698940 1.525795 -0.711568 0.204538 0.039474 0.334184 0.070474 0.472709 0.709080 -0.432838 -0.487083 -0.890227 -0.657241 0.150089 0.528112 -0.553439 -1.021380 -0.992034 0.402172 -0.284537 0.901294 -0.033969 1.432113 -0.460170 0.339818 -0.986922 0.090573 0.480286 -0.189593 0.921952 0.267178 -0.620239 -0.281556 -0.252886 -0.919853 -0.057998 0.008714 -0.323413 -0.271304 -0.169761 0.373623 -0.296314 0.076065 0.181481 -0.368064 1.015476 -0.085453 -0.038843 -0.653074 0.262347 0.576947 0.015242 -0.480469 0.739905 0.270292 1.396899 0.020535 0.280963 -0.174961 0.229289 -0.223293 -0.893061 -0.542277 0.992294 0.875404 0.635798 -0.227337 0.051554 -0.018121 0.480219 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -5.775468 1.765144 17.921266 6.795935 -7.961182 -12.873768 -4.710481 -19.963400 10.513781 7.087764 17.417930 0.025903 9.960791 -5.006805 1.350056 2.691004 10.971271 -4.258451 0.261678 -6.964267 -2.860839 16.639490 5.525148 -3.192069 3.788198 -13.200047 5.400436 2.367262 6.576422 9.422089 3.731559 0.210839 -2.589692 5.312960 -1.088911 6.826124 2.503730 4.844294 -6.851426 -2.446161 2.415484 -4.192046 9.879936 1.831149 12.787508 -0.242772 8.535979 -1.686195 -11.669793 -6.634078 -6.475040 12.385111 -9.392497 6.212145 0.441524 -1.393972 3.256486 -4.173209 -1.790498 -12.466901 -1.708174 -3.651724 -7.120054 -0.128921 -6.802690 3.839337 -5.393977 -4.385471 -0.317911 -3.563481 7.872193 2.724585 1.611121 2.463632 -13.847621 3.980319 3.757432 2.180695 7.853855 2.593755 -2.691287 -3.849786 -7.374990 -10.835535 13.559206 2.914868 3.663494 3.140991 -9.385099 1.518922 -2.394742 -0.030830 1.067645 7.765666 -12.672905 2.051355 4.139825 -6.625379 -6.100940 -12.509411 0.203770 -9.520801 1.663824 6.539778 -3.746577 1.271798 -10.880480 3.717905 -7.577240 -9.595485 5.366223 -5.149233 -5.986788 10.102249 -9.670376 -3.377323 -5.307789 1.220933 3.130535 8.081861 2.486054 5.917078 11.055062 7.985306 7.836931 -9.328280 -1.176898 3.866645 10.625789 4.249895 4.614608 -6.239241 -7.842917 4.357190 -7.694645 -18.646481 -7.553079 10.522577 12.526417 3.880380 -9.905374 2.356889 -4.207652 11.150754 11.472448 3.965072 2.710350 1.934731 -9.855574 4.934124 15.231146 -8.160910 10.635973 -2.827121 -4.671549 11.740099 -7.836836 5.582561 0.871358 -0.292699 -0.824161 -8.818282 -2.813241 13.593206 5.827225 3.718548 -3.153984 4.684153 -2.579042 -15.905040 -21.679467 -4.030974 12.117781 5.081852 15.747117 -9.776237 -6.142178 -1.027783 9.709991 -2.903888 -9.573733 2.729305 -7.206760 5.428887 -23.129969 -16.830001 25.632375 18.496686 8.025782 0.900131 8.530678 7.333486 -11.655946 -6.327206 -7.012593 7.691307 1.355428 -13.985942 -5.524264 2.826146 -14.591774 -5.551891 -2.649870 2.729260 1.358197 -1.951070 7.296925 0.893935 -6.281812 -1.605521 6.554249 -7.276211 -8.550276 -2.666850 0.502974 4.613579 5.526107 -4.167723 -0.914302 3.024268 -12.340207 -4.563785 2.666571 10.553726 6.221111 18.648984 19.504726 -2.395194 7.686531 -1.818842 -9.767417 14.580794 -7.548455 -0.249124 -1.599790 5.227561 2.857534 4.376910 10.958542 -4.572008 -9.500860 -11.750915 -0.370846 2.736001 7.169161 -7.396803 -13.545687 -15.990532 0.560853 3.126221 15.242116 -2.231397 22.306142 -6.030903 3.351322 -23.465393 1.169045 8.028507 -1.531284 7.925839 4.969552 -9.039505 -11.799753 -4.592451 -10.598053 -2.963690 0.290101 -5.073264 -6.504065 -9.995072 11.904133 -11.093615 2.893839 5.060447 1.228372 14.231843 6.407765 -1.101321 -8.898460 4.914190 9.436119 3.591725 -7.605170 12.257384 2.589341 27.920508 -3.422217 6.201699 -7.182198 3.922264 -2.943750 -8.366877 -4.694785 13.299328 18.175158 3.854849 0.303396 0.202509 -3.173155 11.595337 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.242186 0.731434 1.056906 0.688735 -1.059363 -2.032307 -0.214144 -1.825317 0.429288 0.094741 1.064374 -0.037462 0.835691 -0.185470 0.216150 0.643838 1.013081 0.536148 -0.004170 -0.691984 -1.054680 1.038416 -0.112289 -0.073217 0.353154 0.076877 0.477085 0.931163 0.643565 0.488210 0.405021 -0.106281 -0.350127 0.399982 -0.371337 0.016606 -0.334648 0.475930 -1.140102 0.122746 -0.248222 -1.000199 1.235509 0.063454 0.441822 0.246689 1.127359 0.412896 -0.805554 -0.296342 -0.860012 1.159958 -0.405780 0.633880 -0.450028 -0.685942 0.543378 0.273055 0.205129 -0.141877 -0.229871 -0.626661 -0.845869 -0.129723 -0.860715 0.007625 -0.732736 -1.174704 -0.077001 0.160384 0.486057 -0.028323 -0.377799 -0.012955 -1.715540 -0.128732 0.533845 0.509695 0.698180 0.374158 0.508934 -0.422324 -0.958425 -0.791169 1.132288 0.073860 0.754642 0.460337 -1.406164 -0.310495 0.022127 0.184321 0.675255 0.235826 -0.547784 0.479512 -0.343182 -0.433579 -1.122810 -1.867717 0.298767 -0.273153 0.384268 -0.486292 0.179512 0.041792 -0.754019 0.168742 -0.461309 -1.121686 0.033020 -0.666662 -0.487665 1.161978 -0.351960 -0.463999 -0.243598 -0.109361 -0.174241 0.450927 0.671615 0.085948 0.592086 0.646599 0.453828 -0.813154 -0.442469 -0.183206 0.388073 0.697472 0.514137 -0.075957 -0.777675 0.404364 -1.013757 -1.719679 -0.308320 1.016293 0.898549 -0.082181 -0.205431 0.205630 -0.718103 0.426372 0.612656 0.554475 0.405069 -0.045591 -0.587669 0.351373 0.794422 -0.605065 0.976594 -0.041164 -0.288455 0.738873 -0.048309 0.118083 0.173517 -0.698777 -0.308019 -0.028249 -0.229602 0.930473 0.554785 -0.133674 0.259182 0.301062 -1.150581 -1.071988 -1.376305 0.272983 1.440271 0.392710 0.966002 -0.888756 -0.528591 0.307561 0.477331 -0.569736 -0.778791 0.411614 -0.671168 0.684813 -1.637412 -1.149741 1.596564 0.741486 0.539013 -0.166043 0.340215 0.508875 -1.170136 -0.988089 -0.587266 0.368069 -0.025338 -1.740842 -0.802738 0.233851 -1.311013 0.359128 0.046133 0.468630 0.108021 0.145059 0.990251 -0.854903 -0.570722 -0.441846 0.415042 -0.442838 -0.005145 0.224311 -0.230866 0.232864 0.393474 -0.191817 -0.217054 -0.073303 -0.996423 -0.050249 -0.283494 0.757781 0.300027 2.156493 1.364211 -0.258138 1.023840 -0.080828 -1.033155 1.347281 -0.624220 0.558199 -0.110643 1.012713 -0.074171 0.375941 1.368837 -0.428701 -0.946176 -1.097420 -0.803067 0.732924 0.540599 -0.078497 -0.518495 -1.720048 0.080817 -0.053441 1.566936 -0.550884 1.242778 -0.633564 0.520540 -1.410854 0.275328 -0.097000 -0.330105 0.832924 0.297095 -0.854879 -0.120040 -0.300591 -1.136354 -0.730619 0.138567 -0.231076 -0.478885 -0.196358 -0.157986 -0.803597 -0.162315 0.242866 -0.580530 0.863568 -0.120969 -0.039176 -0.226936 0.298634 1.788676 -0.059978 -0.742747 0.874089 0.415770 2.734715 0.664808 0.615995 -0.361786 -0.261121 0.284305 -0.787890 -0.711894 1.181268 1.281746 0.288491 0.165094 0.491293 0.359115 0.712243 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = 0.199072 0.529349 0.399478 0.865226 -1.012311 -1.416994 -0.095183 -0.838248 0.091575 -0.142899 0.387620 0.051971 0.415348 -0.151772 -0.003432 0.167574 0.555350 0.629207 -0.089574 -0.450606 -1.183396 0.502296 -0.022048 -0.393229 0.201799 0.503889 0.805935 0.616730 0.252364 0.411530 0.246997 -0.022133 -0.278822 0.322083 -0.208937 -0.186308 -0.627786 0.438507 -0.568063 0.106137 0.141652 -0.949472 0.889342 0.130667 -0.029255 0.409695 0.731771 0.330892 -0.655865 -0.089214 -0.628110 0.286952 -0.391614 0.441183 -0.549333 -0.420357 0.648128 0.299175 0.221297 -0.131883 -0.131671 -0.682671 -0.638458 -0.106406 -0.795393 -0.072900 -0.622215 -1.039582 -0.088531 0.249071 0.270365 0.028086 -0.337336 -0.214441 -0.972546 -0.219341 0.347431 0.415520 0.549681 0.379630 0.334347 -0.323000 -0.808412 -0.432533 0.554774 -0.476153 0.586034 0.338619 -0.605554 -0.433016 0.217881 0.270322 0.542156 0.087549 0.000564 0.433064 -0.456212 -0.118783 -0.712210 -1.334341 0.236379 -0.056914 0.325636 -0.247945 -0.231859 0.002263 -0.266209 -0.002426 -0.159229 -0.849264 -0.192048 -0.628707 -0.185492 0.623984 0.022515 -0.429826 0.027312 -0.169070 0.000351 0.260566 0.558756 -0.074500 0.380730 0.374861 0.186923 -0.513491 -0.284249 -0.317933 -0.030318 0.468254 0.402101 0.138811 -0.569497 0.213468 -0.529543 -1.000881 0.036825 0.617184 0.433067 -0.088335 -0.154782 0.347075 -0.583502 -0.061186 0.274363 0.594591 0.351491 -0.118447 -0.267938 0.213115 0.371877 -0.252199 0.455210 0.033192 -0.416174 0.781745 0.188131 -0.098209 0.019796 -0.608304 -0.201801 0.079928 -0.060489 0.522435 0.123007 -0.327012 0.635500 0.140040 -0.850948 -0.658240 -0.493466 0.493145 1.189248 0.509591 0.666483 -0.710539 0.073935 0.396440 0.071043 -0.279365 -0.324002 0.117905 -0.183508 0.473646 -1.266461 -0.740242 0.785503 -0.199134 0.098426 -0.106358 -0.088063 0.209014 -0.332920 -0.727087 -0.592590 0.115389 0.050109 -0.613353 -0.464447 0.150130 -0.816247 0.391013 0.347697 0.365379 0.398006 -0.414440 0.207988 -0.963351 -0.290718 -0.592475 0.220036 -0.357312 0.189678 0.329975 -0.247543 0.112503 0.116062 0.292787 -0.200428 -0.498503 -0.330670 -0.027742 -0.338972 0.473333 0.026686 1.409928 0.849501 -0.413324 0.162455 0.137865 -0.576431 1.255452 -0.447497 0.481219 0.057424 1.072620 0.056807 0.171902 1.110331 -0.286896 -0.432187 -0.690760 -0.598520 0.641526 0.211295 -0.565314 0.140702 -1.268565 0.054648 -0.150991 0.991668 -0.430815 0.635865 -0.350392 0.214507 -0.555035 0.158570 0.017643 -0.234482 0.665347 0.227690 -0.525175 0.238477 -0.331438 -0.611736 0.104392 -0.011780 0.126452 -0.295533 0.480341 -0.818644 -0.317002 -0.062139 0.215448 -0.703917 0.248214 -0.316860 0.075400 0.072314 -0.048208 1.079461 -0.013384 -0.465874 0.728588 0.273084 1.486825 0.759914 0.339721 -0.190647 -0.242904 0.201879 -0.476824 -0.516012 0.697858 0.504920 0.135339 0.404478 0.563331 0.427341 0.416747 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.081431 0.970725 3.042871 1.182234 -1.656547 -2.238039 -0.718126 -3.843688 1.794894 1.650861 2.340125 -0.186484 1.509094 -0.432073 -0.549594 0.384066 1.381727 -0.012491 -0.143751 -1.456918 -1.591593 2.391919 0.047240 -0.126512 0.875406 -3.036778 2.407380 0.155309 1.250247 1.602089 0.859969 0.296828 -0.503172 1.338390 -0.237305 0.667187 -0.032214 1.158555 -0.859728 0.328052 0.950921 -0.324309 1.579820 1.371514 1.804431 1.196076 0.348105 -0.199776 -1.586502 -1.011116 -0.489267 0.675519 -1.189351 1.529336 -1.063868 -0.199248 0.471927 -0.540301 0.694464 -1.099633 0.120723 -0.833471 -0.993036 0.060887 -1.662583 0.317818 -1.274644 -1.542628 -0.560189 -0.457511 1.459136 0.282691 -0.312361 -0.108442 -2.795045 0.469907 0.708408 0.186646 1.970561 0.099123 -0.751191 -0.847669 -2.030840 -2.390645 2.284280 1.198995 0.635851 0.956220 -0.944786 -1.370969 -0.234638 -0.086346 1.049976 2.100722 -1.710077 0.128093 -0.379829 -0.877863 -0.819809 -2.753046 0.145558 -1.568906 0.722231 0.594397 -1.180468 0.597162 -0.153196 0.642298 -0.227422 -1.016731 0.827183 -1.233771 0.266461 2.399791 -0.228766 -1.874997 -0.924998 -0.392821 0.503267 1.425788 0.751988 -0.064531 3.143788 1.008901 1.452627 -1.575008 -0.414564 0.954021 0.266411 0.796028 0.914023 -1.485318 -1.458793 0.575257 -1.060815 -3.023787 -0.725194 0.470770 1.967445 -1.175189 -0.800928 1.125899 -1.176099 0.736741 1.912846 0.549828 0.845377 0.008731 -1.690221 0.614558 2.998175 -0.899594 0.874842 -1.262699 -1.097365 1.735157 -0.488480 0.740364 -0.124631 -0.584578 -0.301310 -1.265955 0.328610 2.575118 -0.415977 0.115739 0.413853 1.123307 -1.378378 -1.966378 -3.223315 -0.484931 2.275310 1.078973 3.027524 -2.048175 -0.041483 -0.363686 2.016960 0.318292 -0.772734 0.794165 -0.836412 0.788508 -3.406103 -2.783971 3.722162 3.093245 1.524362 -0.882093 0.921775 1.036658 -1.201748 -1.906939 -1.210535 0.606122 0.660827 -1.983999 -1.399634 0.790594 -2.139109 -0.935940 0.035719 0.482472 1.231770 -0.968146 0.924949 -0.804404 -0.828777 -1.716135 1.334559 -1.133365 -0.609212 -0.100740 0.374504 -0.007793 1.019407 -0.432145 -0.477848 0.305365 -0.922945 -0.070889 0.690791 1.624525 0.410755 2.923593 2.765206 -1.055343 0.450737 0.000810 -1.172836 3.423239 -1.287804 0.199813 0.326501 1.079561 0.162287 0.877115 1.784851 -1.031992 -0.912805 -2.276835 -0.060401 0.380198 0.252137 -1.266202 -0.813121 -3.308381 0.111147 -0.824797 2.774390 0.178240 3.860806 -0.635860 0.485401 -2.814219 0.199180 1.517910 -0.698454 1.755266 1.119842 -1.654695 -1.189461 -0.908244 -2.002619 -0.531438 -0.119741 -0.543839 -1.430574 -0.362190 0.483098 -1.173795 0.944993 1.457171 0.216350 1.560873 -0.857225 0.116930 -1.668212 0.704968 2.033220 0.253022 -1.556232 1.372985 0.262129 4.017716 -0.248858 1.331601 -0.926395 0.072957 -0.616454 -1.980093 -1.448227 2.290714 1.806748 1.317348 0.332513 0.167121 0.114734 2.371573 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.512802 1.581665 5.964147 4.196141 -5.010050 -4.834265 -1.446323 -6.600945 3.892900 2.030687 4.050275 0.087743 2.448045 -2.172775 -1.202643 0.343884 3.261353 1.075771 -1.705716 -2.993304 -3.484619 3.666584 0.561494 -3.450343 2.517724 -4.105090 4.501609 0.591905 1.444401 2.606003 1.984709 0.640368 -1.375795 2.844208 0.133036 1.881747 0.231810 1.603648 -2.475328 -0.512483 2.328401 -1.438744 3.398418 2.063405 3.945921 1.659378 1.855775 -0.241146 -4.937368 -1.160153 -1.190386 2.542149 -2.287098 3.225496 -0.512967 1.280559 1.159468 -2.844564 1.029606 -3.363744 0.250346 -1.724456 -2.678955 -0.280147 -3.561136 0.153035 -1.079453 -3.012839 -0.543242 -1.573778 1.933273 -0.143805 -1.087416 -1.015905 -3.824885 0.121577 1.682489 0.977773 3.895097 1.542256 -0.576065 -2.703807 -3.490032 -3.638009 3.719981 -0.074767 1.343858 2.151215 -1.263440 -2.393685 0.325397 -0.475961 1.641815 3.392107 -4.413338 -0.213127 -0.198251 -2.059139 -2.174126 -4.805383 0.723999 -2.511510 1.375756 1.570061 -3.675020 2.021152 0.219068 1.723237 -0.211938 -1.477791 0.988046 -2.278360 0.454879 4.373294 -0.354940 -4.148009 -1.417723 -0.864611 0.564715 2.961203 0.606618 0.230674 5.902246 2.190382 3.308292 -2.981868 -0.394342 1.252746 1.035712 1.762074 2.290244 -3.011313 -2.420658 1.341730 -1.877323 -6.188252 -1.346527 0.771078 4.126758 -0.108804 -3.458901 1.032681 -1.767558 1.956974 1.877559 1.808402 1.103429 -0.049906 -3.229538 0.482351 5.225728 -1.715160 1.682285 -1.690432 -2.144597 2.864045 -0.096701 0.778290 -0.867929 -1.721715 0.146132 -2.302181 0.325439 4.545114 -0.633489 -1.471864 0.395328 1.828442 -3.486692 -4.889169 -6.387268 -0.530056 3.929347 2.367339 6.704424 -4.523684 -0.951182 -1.999421 3.717724 -0.719939 -1.176115 1.142966 -2.393122 2.078926 -5.775420 -5.841237 7.811546 4.997786 2.344645 -1.112918 2.628986 0.066967 -3.108634 -3.381341 -3.003841 0.603206 2.497377 -2.082667 -1.638252 1.218508 -5.184396 -1.482308 0.711262 1.248115 2.692870 -2.127148 1.513383 -1.438736 -1.461585 -3.314889 1.957337 -1.781522 -0.813989 0.240444 0.635562 0.727950 2.529648 -0.634701 -2.425972 -0.997911 -1.971965 -0.934536 0.747609 4.008990 0.970878 6.474650 6.192240 -1.548119 2.169437 0.277282 -3.048616 7.552327 -2.375616 0.806399 0.333012 2.223141 0.934484 1.099275 4.346894 -1.995581 -1.289511 -3.982224 -0.821178 0.139188 1.242991 -5.045772 -1.761845 -6.130050 -0.284260 -1.370509 4.118308 -0.229290 7.088378 -1.287123 0.500831 -7.051734 0.149089 4.612996 -1.003830 2.833942 2.306001 -4.047736 -4.511161 -1.196693 -3.673644 -0.338678 -0.547405 0.210684 -2.942756 -0.306841 2.143763 -2.001398 1.625907 4.487763 -0.058061 3.104188 -1.240078 0.700306 -1.414243 -0.321709 3.114185 0.724345 -2.835482 3.441890 1.206657 8.826442 0.626292 2.292426 -1.996375 0.167111 -0.996123 -3.841195 -3.216913 3.710417 4.056696 2.307032 1.104511 0.699600 -1.234831 4.855823 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.405048 0.210521 1.434332 1.170063 -0.762590 -1.817033 -0.360347 -1.779161 1.035441 0.464121 1.556587 0.196648 1.236835 -0.717860 0.128041 0.084859 1.051118 0.099018 -0.055374 -0.566965 -0.504387 2.055855 0.468280 -0.721422 0.242827 -0.708337 0.771083 0.768950 0.714084 1.204685 0.255890 0.119168 -0.088498 0.502799 -0.706887 0.234077 -0.474170 0.683009 -0.764871 -0.498152 0.339845 -0.645416 1.357545 0.150678 0.874242 -0.020520 1.118975 -0.111731 -0.917861 -0.680066 -0.833661 0.964045 -0.738221 0.730940 -0.597688 -0.349749 0.798467 0.074705 0.064501 -1.363607 0.132964 -0.231264 -0.997644 -0.247058 -0.916804 0.192926 -0.481602 -0.916892 -0.073328 -0.461162 0.680828 0.171246 -0.101018 -0.530383 -1.908752 0.125368 0.396211 0.177567 0.766652 0.794091 -0.257908 -0.577589 -0.956920 -0.977898 1.440163 0.118744 0.472742 0.797028 -1.230179 -0.365447 -0.081025 0.281283 0.391655 0.548244 -0.764569 0.534509 0.435534 -0.449279 -0.473700 -1.170774 0.237470 -0.798465 0.148717 0.428453 0.023948 0.165055 -0.759504 0.232147 -0.748354 -1.253913 0.385124 -0.787473 -0.759526 1.063256 -0.692237 -0.423692 -0.388188 0.138972 0.253820 0.877766 0.292160 0.419319 0.897627 0.622383 0.596184 -1.114237 -0.033722 0.459211 0.898495 0.512374 0.245438 -0.336638 -0.771711 0.404565 -0.911475 -2.032355 -0.703284 1.333177 1.153441 0.040615 -1.042097 0.905380 -0.526457 0.847417 1.249146 0.432988 0.462513 0.315303 -0.959848 0.468761 1.485749 -0.706028 0.972689 -0.204647 -0.965274 1.599890 -0.482739 0.494161 -0.030700 -0.364736 -0.075400 -0.537657 0.238584 1.377550 0.338222 0.332692 -0.047534 0.332061 -0.556595 -1.527405 -2.143709 -0.235020 1.494177 1.044075 2.019236 -1.014683 -0.461960 0.199688 0.612086 -0.524491 -0.876867 0.311556 -0.743303 0.732683 -3.074096 -1.760824 2.432715 1.214399 0.835163 0.178872 0.794561 0.626676 -0.363990 -0.739379 -0.738800 0.692584 0.456110 -1.151087 -0.267679 0.180998 -1.582882 -0.346227 -0.043909 0.163671 -0.004119 -0.556525 0.736701 -0.985480 -0.711790 -0.433113 0.519989 -0.925358 -0.377091 -0.230837 -0.130899 0.150747 0.468825 -0.109258 -0.087376 -0.063041 -0.992844 -0.340763 -0.240374 0.785805 0.527886 1.871534 2.210540 -0.623361 0.687341 -0.092107 -0.959103 2.129903 -1.021301 0.015181 -0.133801 1.212476 0.553835 0.543526 1.247408 -0.478284 -0.493789 -1.384315 -0.100278 0.956252 0.602273 -1.233860 -0.796265 -1.877474 -0.009623 -0.054005 1.924310 -0.447476 2.208795 -0.962978 0.411411 -2.361826 0.245199 0.484528 -0.146762 0.930456 0.443846 -0.955445 -0.962214 -0.478047 -1.030628 -0.055418 -0.073377 -0.711719 -0.643518 -0.618991 0.323709 -1.372559 0.312585 0.698085 -0.521175 1.166598 -0.040284 -0.052439 -0.714103 0.332581 0.854587 0.312423 -0.739410 1.099918 0.118865 2.658937 -0.084380 0.979467 -0.777050 0.882554 -0.525559 -1.237782 -0.632691 1.481442 1.596685 0.162198 0.398392 0.401169 0.041528 1.060075 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.174494 0.284695 1.318371 0.439847 -0.492244 -0.832670 -0.332578 -1.603927 0.735679 0.391094 1.087627 -0.055402 0.745231 -0.314334 -0.032110 -0.017648 0.675443 -0.056838 0.198835 -0.352065 -0.097106 1.292614 0.054105 -0.188535 0.144263 -0.979104 0.546549 0.268423 0.771178 0.822615 0.124350 -0.068798 -0.301525 0.335893 -0.233981 0.040786 0.238578 0.390110 -0.742829 -0.155332 -0.012828 -0.228252 0.681167 -0.101355 0.728653 -0.040982 0.271767 -0.015866 -0.510299 -0.337197 -0.306212 0.677114 -0.447832 0.489478 0.106571 -0.414304 0.053460 -0.005387 -0.061655 -0.554828 0.041942 -0.246918 -0.264814 0.022783 -0.614381 0.221799 -0.515704 -0.447164 0.077365 -0.306984 0.454153 0.190205 0.317584 -0.001398 -1.302105 0.367818 0.318868 0.234397 0.481117 0.280663 0.153625 -0.184055 -0.522897 -0.755025 0.703831 0.637953 0.170697 0.177096 -0.701296 -0.078660 0.076982 0.010206 0.142873 0.543085 -0.630881 0.321634 -0.460008 -0.243025 -0.211971 -1.294581 0.013748 -0.625743 0.245323 0.255768 -0.156975 0.119202 -0.124626 0.369332 -0.227800 -0.806897 0.400177 -0.278780 -0.273189 1.056621 -0.400994 -0.325834 -0.428302 0.000959 -0.027225 0.529474 0.131167 0.428948 0.475803 0.623647 0.571660 -0.763683 -0.250833 0.592443 0.464853 0.380007 0.301435 -0.580720 -0.418961 0.260233 -0.569589 -1.370709 -0.458607 0.516091 0.820038 -0.180466 -0.341542 0.099301 -0.483755 0.742125 0.743153 0.195471 0.237034 0.144248 -0.627216 0.483378 1.023400 -0.454745 0.580502 -0.310802 -0.405088 0.621758 -0.297615 0.467973 -0.188059 0.088553 0.034464 -0.613254 0.010623 0.941737 0.247316 0.401966 -0.181832 0.219922 -0.450189 -1.161032 -1.326152 -0.171652 0.995395 0.266434 1.036649 -0.611960 -0.608661 0.100707 0.829759 -0.032208 -0.516858 0.392143 -0.574609 0.506954 -1.542038 -1.214433 1.457182 1.281476 0.455676 -0.134570 0.467689 0.510736 -0.824166 -0.599009 -0.515490 0.488953 -0.045081 -1.253319 -0.572633 0.156450 -0.905515 -0.215317 0.086040 0.189371 0.365966 0.069354 0.472042 -0.027147 -0.469500 -0.464524 0.862551 -0.521339 -0.339911 -0.110839 0.044141 0.191850 0.490634 -0.433244 -0.113628 0.406137 -0.612316 -0.067421 0.124159 0.407686 0.068918 1.156389 1.100177 -0.080948 0.478341 0.035851 -0.680822 1.430905 -0.547033 0.074338 -0.012732 0.225720 -0.059618 0.443449 0.654842 -0.371381 -0.731657 -1.004666 -0.341172 0.100213 0.570259 -0.457881 -1.076688 -0.963578 0.061885 0.104778 0.962632 0.055980 1.580019 -0.491573 0.323096 -1.467665 0.080742 0.501800 -0.146690 0.846024 0.314107 -0.604710 -0.801610 -0.234103 -0.745095 -0.397244 -0.180894 -0.746520 -0.439953 -0.651128 0.685526 -0.480510 0.148654 0.445839 0.002583 0.972321 0.018756 -0.138101 -0.714514 0.278965 0.526265 0.080532 -0.617187 0.747109 0.179289 1.979845 -0.236565 0.374751 -0.499447 0.237240 -0.228215 -0.723439 -0.277412 1.024253 1.041001 0.444741 -0.194741 0.020291 -0.254997 0.578603 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.164375 0.324627 0.600767 0.168004 -0.092430 -0.273243 -0.104435 -0.528583 0.138569 -0.000851 0.227614 -0.206050 0.132944 0.093616 -0.071975 0.010287 0.174562 0.200061 0.049141 -0.108613 -0.083730 0.254784 -0.093795 -0.228619 0.100628 -0.405151 0.163700 0.199195 0.318404 0.242263 -0.064761 -0.025771 -0.053365 0.181670 -0.268321 -0.267866 0.233320 0.080962 -0.422381 0.067048 -0.111193 0.281606 0.122569 -0.067426 0.104695 0.329815 -0.056223 0.091129 -0.104371 0.065547 -0.037339 0.358356 0.021519 0.244477 0.045463 -0.058589 -0.047680 -0.152259 -0.015894 -0.078319 0.057977 0.176319 0.023838 -0.002513 -0.306674 0.007780 -0.043282 -0.301957 0.153881 0.071625 0.151984 0.026174 0.083644 -0.137949 -0.331191 0.234864 0.176656 0.268616 0.162560 -0.142976 0.272130 0.088720 -0.145491 -0.244146 0.103157 0.243960 0.169815 0.059102 -0.002346 -0.241771 0.133528 -0.087685 -0.006455 0.249619 0.013189 0.200075 -0.476577 -0.003763 -0.179829 -0.506126 -0.060090 -0.141155 0.152172 0.028934 0.036154 0.184905 0.288589 0.305649 0.166950 -0.236738 0.114423 -0.008333 -0.029157 0.450836 0.036768 -0.198369 0.005526 -0.091662 -0.262491 0.291117 -0.003971 0.095681 0.097317 0.269793 0.127895 -0.198230 -0.132284 0.077685 -0.009585 0.275758 0.321847 -0.399382 -0.149979 0.000994 -0.195694 -0.479826 0.050388 -0.014767 0.263416 -0.224892 -0.153830 0.086842 -0.267474 0.236376 0.029926 0.090922 0.102872 -0.140812 -0.127129 0.210227 0.423795 -0.208589 0.167378 -0.225084 -0.150185 -0.073333 0.109042 0.176040 -0.131129 -0.064098 0.180760 -0.225784 0.042319 0.350310 0.154941 0.055389 0.191167 -0.008319 -0.288525 -0.429851 -0.267033 0.000750 0.119294 -0.253854 0.446828 -0.127424 -0.405507 -0.139138 0.430983 -0.177996 0.077760 0.090770 -0.215246 0.151847 -0.233041 -0.403440 0.368581 0.442994 0.074010 -0.218124 0.199015 0.073607 -0.209258 -0.283427 -0.086352 0.050103 -0.010551 -0.411674 -0.355558 -0.023667 -0.238697 0.080871 0.118853 0.122995 0.175379 0.235619 -0.043515 -0.021068 -0.387520 -0.322412 0.243226 -0.251711 0.118294 0.147164 0.040140 -0.049241 0.194076 -0.317419 -0.250014 0.264331 -0.171479 0.038372 0.039155 0.188350 -0.038467 0.334150 0.149398 0.182954 0.415039 0.211630 -0.305728 0.692039 -0.097707 0.108785 0.042015 0.062053 -0.267538 0.178429 0.117548 -0.103664 -0.320126 -0.446348 -0.174184 -0.063447 0.099297 -0.030766 -0.332676 -0.159953 -0.109163 0.046936 0.254671 0.070068 0.489410 -0.034066 0.126049 -0.437247 0.032313 0.169736 -0.121856 0.240198 0.231481 -0.281310 -0.577496 0.017381 -0.231387 -0.343590 -0.160272 -0.452295 -0.160302 -0.150236 0.130648 0.010666 0.105725 0.396843 0.122614 0.185408 -0.174284 -0.047014 -0.145720 -0.077747 0.287856 -0.060810 -0.301264 0.060031 0.100062 0.813119 0.003213 0.198448 -0.269179 -0.249646 0.134210 -0.105169 -0.116682 0.346835 0.198761 0.218346 -0.015788 0.021491 -0.160461 0.196602 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = -4.507910 -0.702928 6.403979 0.643484 -2.877381 -3.856820 -2.022484 -7.744826 3.879701 3.314031 8.023512 0.571211 4.631957 -2.663051 1.446571 -0.438451 4.304363 -3.650527 1.292662 -2.003001 1.641075 6.008336 2.111211 0.788541 0.627284 -4.272580 0.987916 0.221905 1.897068 3.858366 1.503958 -0.715791 -2.690461 0.980538 0.690031 3.501704 2.642928 2.019459 -1.931871 -1.595946 -0.164486 -2.944587 3.534609 -1.093230 6.002555 -2.438408 1.891147 -0.648000 -4.662951 -4.067718 -0.789569 3.296918 -4.042603 1.723568 2.586361 -2.187753 0.059041 0.051741 -1.106530 -5.917048 -0.017706 -3.122835 -1.234002 0.504197 -1.092856 1.900376 -2.325169 -0.282097 0.107512 -3.829209 2.244944 0.867449 2.467800 3.660898 -5.005967 1.461318 1.395707 -0.074019 1.854529 2.104261 -1.067811 -1.904426 -1.545949 -3.772178 3.684259 2.877381 0.607651 0.542392 -5.883580 3.786772 0.070950 0.036405 0.242541 2.102654 -5.485921 -0.110917 1.987740 -2.600752 -1.014807 -5.228642 0.363077 -3.771796 0.571702 3.136410 -1.750651 -1.236744 -6.435405 1.320241 -4.321074 -3.886977 3.332641 -1.855787 -2.256113 3.554698 -5.490043 0.185559 -3.545020 0.818783 2.881071 1.930619 0.390639 3.077743 1.705453 3.087866 3.573259 -4.302034 -0.953970 3.087675 5.688687 0.616781 0.041092 -1.744854 -1.795062 2.398159 -4.526525 -6.390140 -4.731300 3.852176 5.185948 2.334538 -3.098304 -0.595095 -1.857841 5.129817 5.228312 1.726653 0.224287 2.228465 -4.401437 1.481932 3.382262 -2.698156 4.598177 1.337581 -0.935204 3.380977 -3.370519 2.623302 1.045972 1.398855 -0.891819 -3.387222 -1.905247 4.364981 3.544003 4.048788 -4.808929 2.001767 -0.680802 -6.038329 -9.007065 -2.000001 6.135113 2.603172 3.305375 -3.698710 -3.180492 0.942329 4.691361 -0.133215 -6.114025 1.411210 -2.325417 2.411577 -8.483840 -5.694703 8.990579 8.652875 3.529091 1.305523 2.917406 3.040939 -6.609797 -1.273357 -2.663646 3.570633 -1.864716 -6.814359 -1.866978 1.522896 -5.046647 -2.679674 -1.327902 0.850060 0.086971 0.048500 4.171858 3.337356 -0.216728 1.236010 3.098962 -1.430242 -4.803107 -2.064358 0.301161 3.473404 1.980060 -2.302707 0.733232 2.278846 -5.603434 -1.491176 1.389054 2.770915 2.372821 7.437087 6.188436 -1.124963 1.223359 -2.247311 -3.611453 3.849854 -3.252576 -0.324637 -1.250460 0.869577 2.153885 1.328114 4.147037 -2.024707 -3.933670 -4.065955 -1.711473 0.770584 4.486552 -2.591898 -8.045049 -5.771022 2.201087 1.415682 4.961161 -0.632492 8.480661 -2.435800 1.493011 -8.613586 0.149657 2.512317 -0.495945 2.975345 0.531828 -2.211289 -4.644972 -1.481274 -4.781070 -1.573139 0.414787 -1.615838 -1.230460 -5.159451 6.865329 -3.406522 -0.198577 -0.417753 0.534083 6.889093 4.997227 -1.275639 -4.071220 2.793115 1.890545 1.024265 -2.520692 6.055298 1.574770 10.042917 -2.256934 0.731596 -1.532246 3.443841 -1.932476 -3.316592 -1.013344 5.031577 8.169427 2.099546 -2.166931 -0.300364 -1.994434 2.925200 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -4.417524 -0.037450 8.574525 0.914222 -3.577443 -4.781265 -2.411672 -10.444226 5.104881 3.973687 9.614597 0.474491 5.734855 -2.791285 1.250069 -0.136395 5.433689 -3.784769 2.110486 -2.442472 1.837473 8.372162 2.078609 1.330587 0.656073 -5.942778 1.719657 0.187011 3.898390 5.087812 1.696297 -0.993764 -3.044577 1.312688 0.973723 3.562409 2.766139 2.704054 -3.325609 -1.543454 -0.761552 -4.307014 4.506321 -1.087386 6.914512 -3.342914 2.459243 -0.858606 -5.150021 -4.448455 -1.693094 4.311802 -4.863773 2.234277 2.803417 -3.390934 -0.252096 0.757542 -1.112651 -6.045746 -0.342384 -3.995010 -1.557670 0.724304 -2.115743 2.440507 -4.101344 -0.620389 -0.208161 -4.090925 2.817629 1.647932 3.501464 4.252732 -7.962308 2.087945 1.718907 0.207713 2.423973 2.651251 -0.740861 -2.005949 -2.437614 -5.134035 4.918832 4.447634 0.617277 0.312047 -7.366006 3.945738 -0.146483 0.453144 0.272547 2.987388 -6.984344 0.787688 0.595502 -2.945926 -1.008025 -8.132056 0.014330 -5.090714 0.838187 2.871212 -1.897676 -1.216132 -7.023034 1.736404 -4.433223 -5.276898 3.876619 -2.075504 -3.139465 5.348789 -6.152036 -0.138581 -4.546467 1.106062 2.972355 2.259835 0.426064 4.029952 2.173775 3.845186 4.623392 -5.422399 -1.162357 4.235286 6.113152 0.971700 0.409513 -1.967466 -2.497564 2.613948 -4.861692 -8.587529 -5.456435 5.034396 6.177399 2.025398 -2.746244 -1.597249 -2.651236 6.424785 6.847157 1.980107 0.648968 2.674334 -5.113357 2.139186 4.890693 -3.462208 5.577802 0.756883 -1.068488 4.552582 -4.277056 3.651806 0.148838 2.090339 -0.957335 -4.452864 -2.362291 5.903521 3.642701 4.503064 -5.119577 2.032709 -1.061507 -7.705250 -10.922302 -2.490610 8.096586 3.040777 3.952814 -4.485504 -3.859796 1.714192 5.306027 0.608256 -7.103094 2.209427 -3.177917 3.132816 -11.180004 -7.707430 10.823285 10.636741 3.884855 1.180578 3.058894 4.276196 -8.536678 -2.636369 -3.466618 4.557202 -2.790938 -9.496161 -3.352129 2.025540 -6.385038 -2.723352 -1.149649 1.001223 1.047032 0.269838 5.568538 3.660844 -0.772848 0.513169 5.003299 -2.152426 -6.042100 -2.405142 0.311054 4.005140 2.774284 -2.756637 0.983312 3.330179 -6.563993 -1.685846 1.443871 2.999716 2.011787 9.167458 8.126695 -0.888655 1.267007 -2.268951 -4.693655 5.561647 -4.235195 -0.339401 -1.416677 0.476547 1.556074 2.323149 5.183840 -2.573000 -5.615211 -5.486417 -2.354426 0.528888 5.463246 -2.470194 -10.019422 -6.792669 2.621817 1.904595 6.370359 -0.273981 10.852322 -3.396038 2.155018 -10.603695 0.290516 3.134623 -0.596493 5.018357 0.906689 -3.054846 -4.462893 -2.023372 -5.788963 -1.784773 0.256874 -2.869334 -1.897825 -6.090293 7.844671 -4.166679 -0.111817 -0.645006 0.483888 9.047080 5.379320 -1.679136 -5.552325 3.829202 3.291403 1.188798 -3.214460 7.221639 1.717029 12.776084 -2.902233 0.804764 -2.101544 3.468946 -2.094238 -4.446339 -1.355906 6.954538 9.823032 3.003276 -3.080229 -0.779665 -2.242244 3.571051 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/aho-corasick-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = -1.541533 0.166063 2.679545 0.484635 -0.556049 -1.032063 -0.670684 -2.663378 1.237814 1.011523 2.861640 -0.312219 1.547429 -0.409990 0.256948 -0.369549 1.454692 -1.230209 0.832987 -0.486829 0.935567 2.257535 0.753408 0.182912 0.134131 -1.897387 0.594083 0.039044 0.911039 1.476097 0.495567 0.126630 -0.494752 0.351574 0.085941 0.830686 0.705181 0.905813 -0.632594 -0.495928 -0.184361 -0.955375 0.884393 -0.099637 1.838250 -0.473592 0.806713 -0.455320 -1.278956 -1.143520 -1.023912 1.368929 -1.533942 0.215246 0.423128 -1.056375 0.202167 0.032777 -0.481583 -2.329651 -0.061232 -0.834350 -0.441034 0.274316 -0.736466 1.097769 -1.007454 0.080118 -0.078970 -0.813668 1.005533 0.747072 1.300338 1.348008 -2.035822 0.988497 0.235633 0.084359 0.637798 0.317372 -0.303655 -0.015037 -0.527681 -1.476145 1.579287 1.133906 0.348108 -0.026008 -1.442112 1.145185 -0.430576 -0.000348 -0.381615 1.010739 -1.678809 0.626631 0.361642 -0.753774 -0.243217 -1.673720 -0.127702 -1.694197 0.106426 1.422623 -0.576550 -0.230739 -2.245118 0.440415 -1.272473 -1.741373 1.145076 -0.777132 -0.947627 1.355311 -2.121950 0.248878 -1.145950 0.521349 1.045705 0.902461 -0.219568 1.528090 0.250983 1.106059 0.951967 -1.295098 -0.115711 1.293470 1.782618 0.251977 0.195530 -0.747539 -0.868231 0.291951 -1.080266 -2.187749 -1.436892 1.570318 1.691980 0.658467 -1.518600 0.137924 -0.655946 1.915065 2.106498 0.668278 0.178606 0.917539 -1.430548 0.711126 1.661575 -1.148296 1.673833 0.289078 -0.243179 1.442831 -1.339040 1.158537 0.196793 0.864747 -0.003497 -1.481999 -0.953215 1.653390 1.456331 1.405114 -0.855414 0.484817 0.249398 -2.445881 -2.933098 -0.878959 2.149090 0.389151 1.178082 -1.194294 -0.962353 0.500360 1.656301 0.111909 -1.872780 0.216638 -0.682149 0.707147 -3.294921 -2.349017 2.788617 2.711446 0.759221 0.523993 0.836327 1.450877 -1.981774 -0.631019 -0.866841 1.570020 -1.156877 -2.124098 -0.889998 0.346636 -1.617860 -1.096664 -0.374888 0.273239 0.213053 0.032289 1.230666 1.091079 -0.368073 0.207883 0.896817 -0.871388 -2.124256 -0.671114 0.062736 1.207009 0.517360 -0.906420 0.530003 1.289865 -1.911698 -0.768280 0.507439 0.741602 0.575728 2.386838 2.248020 -0.065393 0.058417 -0.428903 -1.296204 1.826188 -0.802230 -0.224740 -0.489960 0.073141 0.571715 0.663946 1.195360 -0.685942 -1.822908 -1.782999 -0.178185 0.085819 1.482753 -0.780482 -2.674623 -1.690694 0.633102 1.054193 1.751659 -0.072706 3.285701 -0.719603 0.225938 -2.883085 0.054274 1.140506 -0.299433 1.286635 0.435533 -0.839072 -1.376305 -0.624580 -1.416401 -0.209126 -0.221084 -1.211545 -0.672732 -1.648416 2.208319 -1.240066 0.128701 -0.125982 0.552664 2.169095 1.895038 -0.582998 -1.529850 0.942846 0.751031 0.564318 -1.035894 2.207078 0.067863 3.335138 -1.234441 0.214279 -0.869625 1.060794 -0.593943 -0.816942 -0.109589 2.329777 2.613565 0.663295 -0.725073 -0.385479 -0.613151 1.073778 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -5.899012 0.154487 9.732552 2.225315 -2.822023 -3.511425 -2.692765 -8.711049 4.372010 3.536746 10.039955 -0.643604 4.891496 -1.442455 1.082484 -1.994152 5.177470 -4.969095 2.158608 -2.131994 2.691982 7.455892 3.474268 -0.720467 0.541078 -7.072208 2.287127 0.267219 2.521385 5.317937 1.594029 -0.052100 -2.092122 1.818111 -0.028392 2.693904 3.089734 2.696920 -2.011129 -1.881927 0.466589 -1.894745 3.895005 -0.750009 6.582482 -1.291804 2.589524 -1.438521 -5.722382 -4.115865 -2.633234 4.825410 -5.501255 1.428584 2.749363 -2.078057 0.823642 -1.502777 -1.995015 -8.629936 -0.117101 -2.229083 -1.268866 0.807187 -2.385473 3.167806 -2.907740 0.056627 0.751257 -3.495273 3.412349 2.104455 4.226730 3.956268 -5.608923 3.749778 1.111990 0.663022 2.239256 1.135342 -1.491915 -0.135774 -1.720765 -4.946315 4.159418 3.092178 1.075267 -0.196658 -4.378497 3.934333 -0.526324 -0.200490 -1.847316 3.746352 -5.868116 1.682824 1.556628 -3.075634 -1.562035 -5.217153 -0.645891 -5.813152 0.712748 5.967643 -3.183168 -0.927799 -7.868209 1.581867 -4.443470 -5.661458 3.915396 -2.561952 -2.732789 4.378952 -7.600146 0.447588 -3.809616 1.517335 3.745206 3.510206 -0.904328 4.814796 1.752714 4.238235 3.509641 -4.868396 -0.111824 3.520067 6.605090 1.030950 1.393590 -2.947652 -2.850324 1.255798 -3.858590 -7.833473 -4.544958 4.849701 6.257983 3.183652 -6.122284 0.356349 -2.536387 7.340459 6.882392 2.969855 0.700763 2.604326 -5.099653 2.548038 5.854181 -4.011535 5.977585 0.611059 -1.797743 5.228170 -4.576026 4.378164 0.897343 2.840677 0.142631 -5.690663 -2.897250 6.124370 5.040089 4.874831 -2.910009 1.531228 1.526116 -8.780967 -10.648890 -2.518209 6.642039 1.808520 5.232843 -4.577578 -3.729577 0.918233 6.042584 -0.069583 -6.677297 0.658720 -2.070979 2.434242 -11.741631 -8.251015 10.557842 10.255534 2.457477 1.786107 3.747164 4.044897 -6.542390 -1.934740 -3.465026 5.484866 -3.173686 -6.044394 -2.064857 1.379913 -5.655288 -3.658784 -1.216844 1.089452 1.509088 -1.348048 2.791385 4.209518 -2.098404 0.587270 3.290711 -3.428356 -7.276348 -2.038309 0.273567 4.230383 2.121683 -2.634909 0.557449 3.641865 -6.894364 -3.061250 1.964274 3.836390 2.427770 8.230534 7.694485 -0.242753 0.919891 -1.089284 -4.434982 7.135981 -3.674925 -1.056798 -1.500081 1.024460 2.141473 2.230762 4.318893 -2.348926 -5.830404 -5.917359 0.229436 -0.204132 5.206659 -4.804421 -9.594704 -6.269781 1.890283 3.552237 5.903325 -0.351190 11.951867 -2.015830 0.685910 -10.961237 -0.156905 4.476783 -0.428077 4.122672 1.879525 -3.384555 -6.283482 -2.066499 -5.118809 0.461710 -0.291826 -3.817904 -2.411066 -5.866162 8.300802 -4.009561 0.933708 0.787553 1.346593 7.558355 7.160267 -2.154498 -4.848220 2.173705 2.155857 2.190067 -3.449906 8.420976 0.400331 12.115999 -4.075090 1.077970 -3.275803 3.601879 -1.763678 -2.772813 -0.735957 7.619494 9.145147 2.452698 -2.244540 -1.182840 -2.956935 4.081256 -PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -2.249420 1.174413 5.973988 3.222001 0.337443 -1.326881 -0.927125 -3.945835 2.257588 0.957170 4.801899 -1.901283 1.989524 0.518906 -0.411250 -1.199838 2.390196 -1.448456 1.136107 -0.569239 2.856792 4.459218 1.580974 -2.399634 0.378157 -4.656675 1.578493 1.417685 1.811006 2.327090 0.769665 2.014165 1.281801 1.069763 -1.904908 -0.118970 -0.112711 1.649357 -1.272665 -1.444721 0.497790 0.558907 0.959053 0.812974 2.577132 0.709676 3.132284 -1.602268 -1.444039 -0.856629 -4.339290 4.152506 -2.158659 -0.421086 -1.547185 -1.058317 1.555633 -1.788610 -1.080571 -5.232241 0.301424 1.574051 -1.654414 0.087216 -2.341649 2.738442 -0.087279 0.357673 0.185060 -0.250530 2.334828 1.670834 1.822742 0.073947 -3.700519 2.764332 -0.247519 0.576359 1.177769 -0.524095 -0.519328 1.558981 -0.845905 -2.350706 3.643248 1.671583 1.194400 0.468379 0.098859 0.018365 -2.090197 -0.327294 -2.274081 2.603052 -2.447586 2.689557 1.080399 -1.274053 -0.986056 0.472112 -0.352296 -3.573238 -0.033364 3.635530 -0.839453 1.424464 -2.596909 0.505527 -1.322166 -3.454132 0.877000 -2.021211 -1.164486 2.720344 -3.857066 0.084954 -1.515615 1.546393 1.051051 2.956254 -2.097749 3.426389 0.869817 1.885975 0.390403 -1.766876 0.872197 2.316997 2.444390 1.203846 1.106391 -2.021010 -2.115130 -1.666634 -0.003799 -3.730933 -1.511768 2.873019 2.988780 0.877857 -5.329667 2.536391 -0.680352 4.265024 3.775979 1.023025 0.646809 1.981137 -2.381391 1.572831 5.371759 -2.326933 2.710779 -1.045172 -0.925873 3.191996 -2.177550 2.621074 0.408807 1.507549 1.106232 -3.193149 -1.392009 3.269144 2.566674 1.474833 1.661828 0.326074 2.355877 -5.225446 -5.230287 -2.242945 1.746911 -0.352008 4.457726 -1.971148 -1.545710 -0.187309 2.461544 -0.670249 -1.625371 -0.507964 -1.545388 0.839417 -6.340386 -5.187472 4.261957 3.794161 0.179197 1.396017 2.619105 2.238292 -0.693471 -1.100986 -0.635813 3.560381 -1.050499 -0.728860 -0.234199 -0.363579 -2.561365 -3.043875 -0.569789 0.361452 -0.160326 -0.744283 1.171155 0.020508 -2.603796 -0.744956 -0.216493 -3.103480 -3.817337 -0.809767 -0.075540 1.141307 0.629875 -1.956934 0.754687 2.626059 -2.802723 -2.143872 0.450113 1.243734 0.741646 2.240409 4.833518 0.660304 1.502188 0.607377 -2.247390 5.500660 -0.301999 -0.778857 -0.850227 0.034054 1.048808 1.624406 0.715329 -1.068453 -2.465884 -4.197312 2.372649 0.087481 1.985070 -2.731530 -2.606190 -2.293334 -0.583300 3.114560 3.033834 -0.156240 6.827752 -1.113516 -0.835852 -6.174336 0.078258 3.091391 -0.465849 1.850748 1.893384 -2.471120 -3.378763 -0.722619 -1.454848 0.901292 -1.407000 -4.271290 -2.868254 -2.342991 3.411314 -3.208885 1.507979 2.077273 1.694838 1.971856 2.227725 -0.961770 -1.559052 0.025263 0.894980 2.118800 -2.340160 3.145008 -1.931705 5.429207 -3.256963 1.789030 -3.128629 2.288990 -1.010603 -1.088373 -0.003245 5.530529 3.312596 0.150965 -0.078290 -1.488973 -1.166245 2.912691 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -17.805539 -1.245980 28.420261 6.344870 -9.175580 -13.278125 -8.662385 -29.048297 15.531101 12.435024 31.568507 0.208317 16.863709 -7.950898 3.922275 -4.129995 16.051966 -15.041327 5.495605 -7.338535 5.711417 25.906302 11.118016 -1.064584 1.717074 -21.535961 6.742903 0.759927 8.640375 17.251221 4.977048 -1.163485 -6.879051 6.013453 -0.206448 10.791109 8.608391 8.498973 -6.246563 -6.503884 2.241160 -6.435791 13.739195 -2.079364 22.045022 -5.541383 8.167836 -4.339218 -17.916500 -14.043522 -5.983722 14.790311 -17.250115 5.930420 8.745182 -5.836926 2.777533 -3.915252 -5.372756 -25.419311 -0.415264 -7.781674 -5.656717 2.090575 -7.003779 8.450770 -9.795665 -0.667399 1.454532 -12.106356 10.757998 5.477730 10.769276 10.720704 -18.701986 9.826180 4.285109 0.738846 8.167847 5.679863 -5.935407 -3.301473 -6.483778 -16.144797 15.053249 9.301083 2.573912 1.390814 -16.430878 11.338209 -1.311064 -0.314805 -2.813568 11.366894 -19.110078 3.230349 7.458098 -10.055125 -4.526441 -17.679113 -0.777669 -17.477449 2.126520 16.802128 -8.201226 -3.704374 -23.964266 4.550114 -15.212812 -17.033437 12.413671 -7.764965 -8.719390 13.710647 -22.508612 0.890914 -12.264671 3.889620 11.193301 11.080061 0.423670 13.261097 8.328984 12.955796 11.979637 -16.125920 -1.191822 11.103372 21.210380 3.107139 3.037546 -9.311918 -8.802627 6.683568 -13.338328 -25.893247 -15.546733 16.114863 19.295893 9.611540 -16.733461 1.535254 -6.942708 21.255043 21.777598 7.606243 2.285632 7.362396 -16.238666 8.032158 18.192942 -12.072622 18.096415 1.637695 -7.470350 17.812603 -15.591823 12.581353 2.960174 7.027350 -1.084514 -16.580466 -6.370958 19.655770 13.294906 15.045989 -11.801329 5.931289 2.719897 -25.884810 -34.847813 -7.100681 21.456799 8.606254 17.988873 -14.263874 -11.298303 3.166917 18.417850 -0.254443 -21.030244 3.464214 -7.748757 8.350414 -38.017887 -25.314530 36.076207 32.518084 10.869276 4.628731 12.094583 13.129500 -20.185606 -5.760543 -11.626420 16.152752 -6.631142 -21.120823 -5.895520 4.587757 -19.188532 -11.076040 -4.843796 2.978695 3.344734 -4.424770 10.135940 10.509714 -5.759809 2.148668 11.812773 -9.763288 -20.304174 -7.724840 1.012526 11.787334 7.431476 -7.489441 1.755448 9.155796 -21.263727 -8.423869 6.077361 12.457127 8.909384 27.274880 25.684543 -3.207048 4.172986 -4.801464 -13.185698 20.756150 -12.840029 -3.212114 -4.092431 5.073921 7.727052 6.836017 14.588203 -7.369331 -16.833809 -17.568270 -0.540936 1.928240 15.858200 -14.401833 -29.837546 -21.883012 5.383587 8.463938 20.238571 -1.515758 36.989211 -8.045681 4.003938 -34.981365 0.258793 12.766353 -1.412401 13.075662 5.137830 -10.661602 -19.049227 -7.326588 -16.565454 -0.726642 0.286406 -10.243065 -6.922953 -19.585647 25.861321 -14.394562 2.943471 2.119285 2.989027 24.392895 20.099434 -5.475513 -16.595977 8.485600 6.786779 5.776425 -10.632988 24.834252 2.750752 38.656845 -11.845413 4.911534 -9.851088 12.791050 -7.208619 -10.985091 -3.039234 22.045150 30.161657 7.065047 -6.290561 -1.760179 -8.440912 13.064405 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = -0.097386 0.250296 1.171000 0.149843 -0.300980 -1.022200 -0.291538 -1.709813 0.759083 0.561687 1.160791 -0.036041 0.934452 -0.331485 -0.010127 0.106457 0.599436 -0.144280 0.196193 -0.387354 -0.197501 1.243387 -0.133243 0.156438 0.176119 -0.993209 0.669610 0.324458 0.583557 0.841318 0.248236 0.046429 -0.243293 0.323275 -0.205763 0.292922 0.155934 0.485093 -0.435347 -0.103473 0.037708 -0.292067 0.715384 0.151940 0.777030 0.129708 0.158887 0.008879 -0.248422 -0.499746 -0.164017 0.349870 -0.422635 0.374309 -0.279153 -0.405110 0.155923 0.034448 0.128076 -0.433912 0.144021 -0.273986 -0.495476 0.046199 -0.556684 0.160534 -0.447806 -0.472101 -0.166571 -0.526437 0.398349 0.060369 -0.017062 -0.007413 -1.436235 0.103421 0.319791 -0.077162 0.546423 0.214248 -0.177535 -0.329992 -0.696484 -0.828510 0.990465 0.862259 0.227553 0.418312 -0.904190 -0.171476 -0.117342 0.106869 0.464545 0.632482 -0.526081 0.103122 -0.073314 -0.330993 -0.243713 -1.143852 0.284612 -0.576616 0.246899 0.101189 -0.058491 0.007160 -0.223994 0.257164 -0.362449 -0.650875 0.355457 -0.547008 -0.061288 0.985488 -0.316634 -0.404718 -0.661193 -0.171854 0.261898 0.516749 0.218488 0.124986 0.735564 0.434248 0.528575 -0.830690 -0.363635 0.656496 0.396492 0.273637 0.048791 -0.644074 -0.373281 0.312023 -0.780879 -1.371581 -0.577010 0.311608 0.666012 -0.526469 -0.281449 0.502518 -0.459115 0.383553 0.963341 0.161427 0.225992 0.284228 -0.671592 0.283569 0.947497 -0.374179 0.531889 -0.365437 -0.459780 0.615038 -0.260270 0.340940 -0.012372 -0.118318 -0.220306 -0.357108 0.258874 0.903417 0.061572 0.519550 -0.278397 0.319721 -0.507908 -0.764655 -1.410743 -0.241669 1.156187 0.484633 1.087610 -0.730552 -0.330392 0.141959 0.840645 0.027434 -0.541200 0.431903 -0.509194 0.502874 -1.503712 -1.083302 1.323316 1.095514 0.773643 -0.138533 0.363956 0.421491 -0.619843 -0.473181 -0.419187 0.466946 0.040814 -1.242465 -0.385665 0.138594 -0.923663 -0.234325 -0.149936 0.185805 0.172847 -0.008023 0.733570 -0.367987 -0.242096 -0.487399 0.659887 -0.367288 -0.281542 -0.245611 0.016154 0.007327 0.376605 -0.366293 0.046276 0.357418 -0.523921 0.073600 0.226172 0.221059 0.087282 1.233025 1.071124 -0.432599 0.225008 -0.236497 -0.407522 1.058303 -0.465166 0.100582 0.054008 0.428468 0.182947 0.420696 0.728996 -0.383816 -0.505484 -0.945918 -0.346116 0.411519 0.448670 -0.103438 -0.736273 -1.200107 0.087726 -0.197773 1.369760 0.012016 1.491157 -0.388722 0.490176 -1.186812 0.156320 0.262646 -0.240271 0.630468 0.211091 -0.588703 -0.435118 -0.228693 -0.877591 -0.757915 -0.045758 -0.474389 -0.508920 -0.557882 0.408568 -0.595905 0.043425 0.277138 -0.028360 0.726281 -0.161205 -0.014693 -0.718159 0.399746 0.677772 -0.051166 -0.546413 0.492013 0.185288 1.686872 -0.199486 0.622057 -0.294302 0.547550 -0.367681 -0.867892 -0.411194 1.005536 0.953552 0.342616 -0.107210 0.038463 0.078210 0.634006 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = -3.930153 -0.400710 6.365624 0.223880 -2.796484 -3.592085 -1.935861 -7.825850 3.867458 3.194719 7.430336 0.302980 4.266336 -2.579648 1.217794 0.311966 4.168120 -3.272561 1.122035 -2.021227 1.561125 5.267998 1.691465 1.011732 0.958504 -4.317160 0.739211 -0.240917 1.895105 3.388512 1.692127 -0.839397 -2.548219 1.040215 1.409117 3.983939 3.129957 1.758826 -2.111642 -1.197851 -0.644113 -2.904253 2.965700 -0.831260 6.028131 -2.268474 1.673083 -0.573573 -4.513579 -3.541225 -0.692886 3.610786 -3.919312 1.660039 2.740784 -1.823918 -0.441417 -0.305831 -0.963648 -5.179071 -0.353542 -3.162763 -1.269095 0.602449 -1.041671 1.781669 -2.146547 -0.061891 -0.295533 -3.319713 2.041822 0.876941 2.270530 4.063505 -4.646774 1.208199 1.380226 0.033424 1.984894 1.558266 -0.683879 -2.088266 -1.416359 -3.737963 3.898340 2.848193 0.639641 0.429074 -5.437962 3.746573 -0.312583 -0.147811 0.405278 2.167976 -5.654727 -0.524265 1.706698 -2.557961 -1.026827 -5.384008 0.327396 -3.606964 0.508466 2.507082 -1.618025 -0.936542 -5.987419 1.616019 -3.908837 -3.170292 3.252345 -1.477806 -2.207376 3.489669 -4.914577 -0.027387 -3.406181 0.637278 2.583482 1.757116 0.407393 2.901479 1.843337 2.950112 3.811486 -3.913424 -1.104609 2.909325 5.267417 0.641280 0.233097 -1.923708 -1.725332 2.372515 -4.211927 -6.147256 -4.498554 3.299937 4.874255 2.340263 -2.766246 -1.368665 -1.601958 4.751842 4.521889 1.543416 0.029304 1.990168 -4.109276 1.172371 3.210845 -2.711694 4.320856 1.205632 -0.066795 2.383372 -3.174927 2.253826 0.691439 1.187742 -0.764171 -3.184836 -2.161700 4.145656 3.382750 3.495328 -4.904931 2.012855 -1.142637 -5.698502 -8.403001 -2.079328 5.755557 1.790425 2.628988 -3.484508 -3.277366 0.443056 4.646683 -0.163001 -5.525216 1.373557 -2.624975 2.348557 -6.950526 -5.337602 8.673041 8.372513 3.556960 1.017349 2.628003 2.875140 -7.277431 -1.282985 -2.395751 3.093575 -1.873665 -7.065016 -2.353569 1.489449 -4.940352 -2.494506 -1.326321 0.926561 -0.055406 0.906957 4.414246 3.854927 0.093067 1.242132 2.913065 -1.027994 -4.603285 -1.926569 0.487360 3.490753 2.131574 -2.584765 0.601696 2.508324 -5.402951 -1.414692 1.611771 2.796458 2.294389 7.258584 5.834573 -0.691600 1.543422 -2.197971 -3.630688 2.867824 -2.602040 -0.080842 -1.183291 0.142750 1.737905 1.171860 4.058859 -1.993923 -4.085053 -3.766036 -2.162399 0.368514 4.351818 -1.395967 -7.812242 -5.004476 2.043131 1.367206 4.409687 -0.481342 7.722475 -2.076395 1.629484 -8.058311 0.164302 2.718501 -0.646957 2.654973 0.575765 -2.174968 -4.600893 -1.333449 -4.602758 -2.440667 0.320094 -1.016690 -1.174295 -5.007222 7.094750 -3.070018 -0.369773 -0.480235 1.137718 6.753429 4.716466 -0.963368 -3.861451 2.818613 2.212049 0.791946 -2.462502 5.350115 1.898592 9.870976 -2.020937 0.449150 -1.380617 2.583102 -1.566014 -2.964982 -1.110289 4.645409 7.912241 2.217581 -2.217184 -0.515310 -2.094671 2.997847 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = -4.552852 -0.786873 6.123341 -0.175602 -2.475401 -3.718598 -1.927739 -7.882828 3.898897 3.510691 7.996904 0.686234 4.896327 -2.741061 1.533293 -0.012433 4.348630 -3.881539 1.822932 -1.819286 1.904110 6.291185 2.004523 1.972815 0.520153 -4.337607 0.779110 -0.403370 2.261318 4.163254 1.630897 -0.887397 -2.746000 0.682579 1.490299 4.030551 2.723094 2.041722 -1.875343 -1.303540 -0.782431 -3.730437 3.316628 -0.878501 6.083620 -2.883226 1.653904 -0.683263 -4.171550 -4.133683 -1.042815 3.113109 -4.289062 1.463555 2.586635 -2.774836 -0.187875 0.894927 -1.106022 -5.553250 -0.433791 -3.799393 -1.152070 0.698555 -1.012800 2.104976 -3.276977 0.177221 -0.526961 -3.585349 2.303082 1.284688 2.989722 4.481154 -5.622000 1.426292 1.113480 -0.224028 1.862406 2.042693 -1.282975 -1.850241 -1.529254 -3.991913 4.059804 3.177212 0.332564 0.239804 -6.341308 4.213449 -0.555546 0.170155 0.355842 1.929318 -5.597387 -0.025575 1.933850 -2.433326 -0.411186 -5.950496 0.221472 -3.842689 0.257513 2.693192 -1.126237 -1.717951 -7.046804 1.218163 -4.546318 -3.848515 3.869384 -1.584319 -3.012727 3.414552 -5.578939 0.688217 -3.724945 1.007307 3.155089 1.728802 0.660052 3.305746 1.078775 2.986916 3.765093 -4.019012 -0.987653 3.468913 5.755389 0.243167 -0.266802 -1.358914 -1.824129 2.633368 -4.461870 -6.195112 -4.946369 4.400436 4.910252 2.390707 -2.327828 -1.203119 -1.749266 4.850136 5.556603 1.437319 0.242360 2.335804 -4.293245 1.592013 3.222084 -2.781062 4.641008 1.537148 -0.342180 3.543342 -3.923745 2.576187 0.710783 1.778450 -1.041999 -3.243578 -2.265446 4.224827 3.691856 4.246952 -5.182807 2.031909 -0.663990 -5.787889 -8.739904 -2.220632 6.700611 2.473539 2.338139 -3.366395 -2.835672 1.368476 4.437140 0.450023 -6.313259 1.496050 -2.257800 2.291334 -8.767338 -5.448846 9.037379 8.597331 3.635522 1.250506 2.182567 3.897872 -7.119639 -1.340432 -2.700756 3.578031 -2.691104 -7.831593 -2.468429 1.588857 -4.997009 -2.670239 -1.481746 0.697892 0.138350 0.639430 4.689643 3.748189 0.306000 1.556463 3.431983 -1.211124 -5.362141 -2.292338 0.296384 3.688739 1.824587 -2.207297 1.478975 2.877464 -5.688285 -1.532733 1.518932 2.400118 2.309944 7.477276 6.164499 -0.950429 0.447487 -2.453457 -3.638353 3.026449 -3.051627 -0.354786 -1.342493 0.304881 2.139010 1.367171 4.074382 -1.955323 -4.542997 -3.863786 -2.008164 0.793851 4.625395 -1.417771 -8.604144 -5.465528 2.616300 1.589595 5.009104 -0.524040 8.203398 -2.552134 1.682087 -7.992065 0.276552 2.347228 -0.525697 3.177693 0.289951 -1.843822 -3.502093 -1.720727 -4.744423 -1.759670 0.459480 -1.473902 -0.873959 -5.390589 6.952659 -3.489117 -0.455077 -1.412572 0.672062 7.403696 5.399643 -1.317339 -4.783155 3.616198 2.062211 0.940865 -2.348776 6.005650 1.663932 9.563806 -2.507832 0.204885 -1.253490 3.374075 -2.081180 -3.173822 -0.707793 4.996361 8.376650 2.120222 -2.421094 -0.449875 -1.598390 2.578191 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/aho-corasick-algorithm.cpp___GLOBAL__sub_I_aho_corasick_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/shortest-common-supersequence.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -2.651642 4.410962 20.034227 13.697236 -7.182791 -8.475052 -3.675785 -7.840588 4.371605 2.507808 9.611223 -1.146437 2.490565 5.609927 0.466525 -5.332208 2.813539 0.947456 -0.512116 -3.124438 -2.595475 8.661497 10.418944 -15.339316 0.204373 -12.054461 9.990598 5.512563 5.036360 8.628738 0.233955 1.185956 0.085204 6.852513 -10.386097 -5.064776 -4.501266 3.648854 -3.846556 -1.053263 5.826722 7.847597 4.214710 0.912782 5.117897 6.969396 9.284941 -1.911970 -8.307631 -1.674293 -5.862115 11.398176 -5.447467 5.189366 0.008075 7.947473 0.267699 -9.734935 -2.277467 -16.476825 5.438351 7.636123 -7.409580 0.152782 -11.389562 1.663322 -3.913078 -6.267244 4.872242 0.147854 6.022132 -0.656592 1.403378 -10.617838 -7.715093 5.038095 -2.822100 4.372111 3.822312 -0.674425 -5.479604 3.640566 -3.507549 -6.024096 -0.072164 -1.141655 -0.619263 -1.683983 5.463334 -5.714330 0.261022 -0.484142 -7.155402 9.535002 -7.439492 11.489474 -3.653051 -0.846532 -4.383155 -1.424068 -2.251604 -10.361511 3.683757 9.620812 -4.118605 2.307078 -1.301436 2.991331 1.531250 -11.169130 -1.208611 -1.742098 0.398853 7.027496 -6.968859 -1.842215 2.759607 0.932675 0.821429 9.909496 -1.750680 4.407681 8.960406 6.092758 0.833715 -6.304869 4.047555 2.308293 2.902681 6.957541 7.728545 -8.898804 -5.581385 -3.111816 2.470307 -14.573096 5.508676 6.572156 4.833053 2.217424 -14.348015 3.491184 -4.354657 10.119267 7.155038 10.523877 3.932574 -1.597927 -2.996057 2.727664 18.602465 -6.102476 5.999376 -3.211731 -12.167289 14.249914 -4.763647 9.659876 0.368223 3.985370 5.613338 -10.400039 -2.052349 12.463900 4.064350 3.591654 13.298548 -2.217211 3.605607 -14.698683 -9.626187 -1.313397 2.340274 1.074603 18.499480 -7.056219 -2.977601 -2.654201 7.843951 -2.064565 -2.749837 -2.302042 -0.341263 1.956801 -20.932336 -14.353963 8.952160 10.897886 -2.312776 -2.390231 11.234150 2.725719 1.385686 -7.525044 -7.599707 6.698498 -0.639739 9.207390 3.113050 -0.002571 -11.971023 0.578008 1.877935 1.760791 8.940833 -10.141224 -10.561988 -0.073662 -14.755602 -8.610705 1.845490 -10.725054 -5.122680 -1.103092 1.493113 -0.681755 0.133262 -3.026035 -6.369805 3.277403 -6.660575 -3.926692 2.896722 6.799342 2.140302 13.432316 7.410105 2.446751 3.429593 5.548668 -5.037500 29.599717 -5.518793 -3.400644 -0.184389 8.863071 -3.294445 3.763862 1.584711 -2.445484 -7.752048 -9.411877 7.996915 -2.154756 2.950203 -15.442470 -5.041298 -7.367757 -4.085173 4.466446 10.685020 0.451870 20.355534 -0.536089 1.881737 -18.529770 0.357234 8.401199 -1.686876 8.249227 8.304899 -9.129924 -13.110589 -2.471643 -0.031378 11.115808 -1.878659 -11.288990 -7.033388 -0.670482 -0.057189 -3.844377 5.871678 12.082226 -3.729889 4.568586 3.115135 -2.780174 0.670652 -4.461541 4.450604 5.984103 -9.269368 12.542740 -4.376463 21.727253 -4.651078 9.157809 -8.284023 -0.430818 -1.404432 -0.968182 -3.409615 11.956175 7.490819 5.094114 1.882099 0.520516 -6.175068 4.094911 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/shortest-common-supersequence.cpp__main = -0.506433 1.512528 6.384515 2.407964 -1.565954 -3.099837 -1.530861 -6.167044 2.505324 1.615452 4.487495 -1.109669 1.667407 1.275762 0.235168 0.008034 1.363575 -1.190587 1.010200 -1.223515 -0.488642 4.322201 2.154504 -1.455672 -0.053511 -4.905947 1.828198 0.958652 2.788518 2.231887 0.586995 -0.452393 -0.023714 1.902457 -2.144672 0.050500 0.234724 1.332166 -2.173124 -0.119391 -0.167948 1.246005 1.927989 -0.049912 3.009014 0.949265 2.956812 -0.273167 -1.970258 -0.730642 -1.625947 4.668151 -2.108524 1.360165 0.941331 0.187286 -0.464282 -2.420926 -1.011474 -2.858684 0.100228 0.975392 -2.195286 0.624379 -3.140263 1.147081 -2.072775 -1.338581 0.862254 0.050408 2.515731 0.724957 1.066626 -0.785790 -4.277881 2.054167 -0.171586 0.795613 1.197983 -0.649112 -0.420457 1.025906 -1.647734 -2.898215 2.130483 2.363775 0.117488 -0.719864 -0.448465 -0.342160 -0.567470 -0.745756 -1.112749 3.230580 -2.804288 2.802061 -0.997507 -1.144773 -2.142031 -3.268137 -0.551995 -3.576147 1.617183 1.601036 -0.212931 0.407616 -1.016662 1.191703 -0.332516 -4.045723 0.511477 -0.343125 0.392074 3.577305 -2.905623 -0.320084 -0.781137 0.148010 -0.216850 2.505784 0.480145 1.788282 3.049424 2.526049 1.179890 -2.432241 -0.064794 1.313373 1.688002 2.005319 2.054394 -3.263571 -1.923022 0.050676 -0.019137 -5.502982 -0.420128 2.620558 2.223528 -0.198738 -2.870284 0.166703 -1.051191 3.742059 3.303859 1.919539 1.048676 0.022916 -1.370751 1.442778 5.432342 -2.067492 2.701447 -1.678814 -2.246208 3.357134 -2.566554 3.049429 0.408681 1.642464 0.489873 -3.395770 -0.652570 3.926306 1.865474 1.476939 1.672038 0.198582 0.006773 -4.661794 -4.435780 -0.452009 2.037720 -0.403984 4.494872 -2.348754 -2.320907 0.025301 2.941012 0.270543 -1.832364 0.616687 -1.699171 1.128055 -5.980325 -4.817769 4.094005 5.220810 1.145370 -0.883119 3.023943 2.029813 -2.725567 -2.711673 -2.195463 2.849214 -1.047525 -2.183269 -1.106704 0.091520 -3.953589 -0.299058 -0.565012 0.951006 2.369885 -0.868602 -0.266812 0.289820 -3.886114 -1.767013 2.099890 -2.488629 -2.444859 -0.799408 0.589106 0.407064 1.010968 -1.856201 -0.619697 2.197772 -3.164077 -0.693406 1.775147 1.929559 0.225265 5.511585 3.365655 0.715461 2.426066 0.468341 -1.930037 6.356494 -1.613403 -0.601067 -0.457785 1.247056 -1.410121 1.486319 1.459834 -1.161772 -4.228960 -2.900202 1.320261 -0.580587 1.838098 -1.630343 -3.809961 -3.179815 -0.856707 1.507277 3.936445 0.750667 6.431763 -0.809864 1.640644 -6.306501 0.358694 1.704539 -0.465460 3.076527 1.891681 -2.889489 -2.575612 -0.862154 -1.852830 -0.479423 -0.517723 -3.918844 -2.127641 -2.323263 2.200983 -1.656343 0.763042 2.164008 -0.037143 2.702864 1.336964 -1.076872 -1.572189 0.249159 3.345325 0.680237 -3.007410 3.453200 -0.702721 8.627852 -1.875477 2.176407 -2.401906 -0.051524 -0.412451 -0.953541 -0.803766 4.441378 3.733051 1.347783 -1.054162 -0.815779 -1.516911 1.369178 -PE-benchmarks/shortest-common-supersequence.cpp___GLOBAL__sub_I_shortest_common_supersequence.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/boyer-moore-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.339956 1.566203 4.229460 3.864815 -3.238557 -3.177923 -1.073269 -2.221723 0.957163 0.094812 1.796556 -0.360326 0.298849 1.366210 -0.141629 -1.407953 0.977193 1.103382 -0.981648 -1.210507 -2.404960 1.466734 1.640986 -4.131464 0.655009 -1.777389 2.506263 1.971369 0.526910 1.764630 0.102047 0.104482 -0.885741 1.710615 -2.353046 -1.447093 -0.753115 0.516770 -1.463575 -0.347804 1.748201 0.530699 2.149799 0.077907 0.919402 1.923664 1.660712 0.169870 -2.935963 -0.268309 -1.299619 2.276562 -0.769500 1.975708 0.334314 1.674460 0.667309 -2.506359 -0.082113 -2.839996 0.982829 0.510305 -1.506685 -0.325253 -2.635069 -0.127017 -0.581322 -2.494683 1.584078 -0.813776 1.184629 -0.937807 -0.443239 -2.435699 -1.653918 0.579867 0.206481 1.423216 1.151233 0.700609 -0.098659 0.276672 -1.638233 -1.278911 -0.542660 -0.857857 0.471139 0.222051 0.234360 -1.907854 1.293341 -0.327165 -0.620336 1.989114 -1.488384 2.147707 -1.548730 -0.595700 -2.221941 -1.938257 0.064528 -1.447324 1.363164 1.384509 -1.954546 0.673978 0.971199 0.867547 0.806101 -2.804778 -0.268334 -0.793685 0.560004 2.095816 -0.802930 -1.546175 0.771087 -0.620998 -0.485866 2.167066 0.006243 0.280732 2.018784 1.611932 0.830889 -1.682270 0.133555 -0.104063 0.336505 1.726539 2.002629 -1.888568 -1.073534 0.003630 -0.456036 -3.552884 0.888818 1.093289 2.157464 0.723796 -2.813796 0.682015 -1.591468 1.583595 0.391992 2.808853 0.858105 -0.675337 -1.171175 0.351624 3.816699 -1.193686 1.499849 -0.784412 -2.909575 2.579762 0.221005 1.590910 0.137660 -0.079415 1.117938 -1.781836 -0.172265 2.795441 0.577968 -0.302515 2.935732 -0.181043 -1.506882 -3.801499 -2.750356 0.397479 1.383948 0.647194 4.289756 -2.499759 -1.108632 -0.913468 2.706478 -1.205333 -0.598793 0.097228 -0.394805 1.014484 -4.227556 -3.294505 2.483713 2.364722 -0.435441 -0.646895 2.372029 -0.355335 -0.335393 -2.271319 -2.282143 0.930665 0.724032 1.782367 0.248711 -0.267083 -2.696216 0.698787 1.007054 0.855500 2.364670 -2.517503 -1.545645 -0.859288 -3.102440 -2.743622 0.673152 -2.585197 -0.000371 0.736663 0.175048 -0.322149 0.604985 -0.072060 -2.433448 -0.315309 -1.086756 -0.288085 0.284601 1.667823 0.031117 3.822097 2.027899 -0.048958 1.694154 1.164392 -1.569540 7.867496 -2.160397 0.169843 0.013844 2.757534 -0.714963 0.805058 1.459112 -0.810903 -1.299294 -2.255589 0.530908 -0.631191 0.836678 -4.954673 -1.154002 -3.192355 -0.854243 0.137712 2.295812 -0.228274 4.277618 -0.157558 0.474286 -4.811922 0.068932 2.153189 -0.481457 1.740096 1.582179 -2.478926 -3.885312 -0.055410 -1.044833 2.291912 -0.412632 -1.955094 -1.557213 0.308128 -0.508379 -0.293816 1.001656 3.526785 -1.499821 0.769058 -0.284205 -0.530890 0.599238 -1.922187 1.779636 0.625221 -2.038774 3.286697 -0.054609 5.599256 0.627486 2.083440 -1.392122 -0.492712 0.062981 -1.039759 -1.431725 2.439522 1.318359 1.378637 0.388235 0.905331 -1.447164 1.098114 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.763868 3.421936 16.120986 9.486078 -5.292167 -7.828083 -3.550052 -11.206236 5.556421 2.629811 7.606418 -2.298899 1.967851 3.578254 -1.519610 -3.101453 2.945419 -0.668686 -1.048807 -3.635990 -4.621410 9.354170 5.619721 -9.116215 1.324119 -14.084765 7.677668 3.361042 4.108551 7.028189 0.748825 0.115256 -0.292051 5.400268 -6.571179 -1.711824 0.115964 1.728096 -4.103349 -0.606185 3.895049 4.097036 6.156187 1.012668 4.920415 4.524122 5.038456 -0.765397 -6.674533 -1.427833 -4.153310 8.442119 -3.433910 4.316743 0.692997 4.629908 1.407247 -8.428617 -1.173424 -8.715666 1.103200 3.953631 -4.139972 0.055062 -7.765470 1.149762 -2.048655 -5.296292 3.629187 -1.574068 5.350029 0.502381 0.990360 -5.772535 -7.789951 4.572731 0.320194 3.024247 3.460533 -0.423589 -2.577537 1.638814 -5.326809 -5.501437 2.668122 2.041414 0.622279 0.107758 2.890101 -4.665125 0.990312 -1.615920 -2.583257 8.024414 -5.679781 6.118418 -2.962554 -2.598525 -5.947116 -6.569871 -1.093680 -7.123974 3.724036 6.955473 -5.138867 2.914413 1.779336 2.740444 0.996468 -8.246837 0.789804 -2.454835 2.510645 7.949998 -4.213316 -4.355973 -0.154661 -0.925570 -0.506409 7.457491 -1.897638 1.809567 8.670399 5.228808 3.025656 -5.505643 1.042566 1.765173 2.424786 4.751502 5.820154 -7.869081 -3.732033 -1.372235 -0.466250 -13.177187 1.620328 2.703456 6.385655 0.392747 -9.825381 2.576452 -3.409918 8.232761 4.924258 6.176019 2.697274 -1.007728 -4.236908 2.991015 15.719581 -4.137068 5.094061 -6.378843 -8.562131 9.317700 -2.681627 7.064233 -0.100502 1.618081 3.285829 -7.513863 0.519007 10.019526 1.221991 0.507483 7.517966 0.549092 -0.022170 -12.892399 -11.141505 -0.592455 3.898664 0.879835 16.420528 -7.580919 -4.112193 -2.874971 8.299492 -1.690464 -1.772950 1.166582 -3.201012 2.428767 -16.035707 -13.178123 11.318474 11.470131 1.035727 -1.465370 7.726983 1.718090 -1.880218 -6.148375 -5.531764 4.070503 2.329119 0.692497 -0.932909 -0.302844 -7.587480 -1.238130 0.661097 2.065754 7.630696 -7.028929 -4.369333 -1.540546 -10.400518 -7.511343 4.297174 -9.135356 -2.971391 0.622951 1.548425 -0.624815 2.974327 -1.490923 -4.655649 2.410533 -4.081662 -1.419782 2.877462 5.713760 0.566589 10.623170 9.735977 0.032495 6.098422 3.554560 -3.690715 22.467056 -5.702370 -1.216132 0.263822 6.086334 -2.357054 3.844976 4.281469 -2.745958 -5.020891 -7.110505 5.198508 -2.076710 2.066059 -12.036173 -6.026419 -9.292484 -3.320450 1.096894 8.097618 1.407027 16.530982 -1.114232 1.856305 -16.706326 -0.061038 7.864191 -0.299660 6.570982 5.459839 -7.877753 -10.990285 -1.191103 -3.711079 4.667817 -1.946707 -8.827484 -5.553998 -2.746058 1.774149 -2.323181 5.192135 10.449804 -0.975698 3.954016 0.304936 -1.531862 -2.242223 -2.930258 5.024659 2.539433 -6.109431 8.836749 -1.582759 18.103614 -2.331153 6.198609 -5.960553 0.950216 -0.773797 -3.372953 -3.270793 9.323736 5.072010 3.811065 0.178676 -0.424599 -3.932079 5.166433 -PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 1.581458 5.212315 11.720760 2.996667 -7.016404 -7.446630 -2.643024 -13.638719 5.061964 4.196950 6.242744 -1.335982 3.360024 0.132917 -2.049769 2.902188 4.376678 0.053450 -1.594114 -4.990262 -8.661771 4.446504 -0.071140 -1.021625 4.852637 -9.240030 6.706805 0.195219 3.187191 3.050336 4.095954 0.735954 -1.907862 5.186980 0.611776 2.569320 1.074248 2.731913 -4.350406 2.388654 2.427762 -1.668146 5.079317 3.910122 5.632001 5.000631 2.226836 0.593248 -5.595964 -0.901430 -2.335756 6.061361 -3.338351 4.260399 -1.042813 1.350473 -0.304681 -5.665112 1.200062 -0.652233 -1.575670 -3.085574 -4.176191 0.497705 -5.899157 -0.013673 -3.304284 -5.500418 -1.075172 -0.254030 4.062914 0.203187 -2.076115 -0.485178 -7.128060 1.494229 3.254668 1.607641 6.079960 0.071421 -0.176815 -1.565934 -6.359834 -7.276949 7.238890 2.934464 2.545584 0.697384 -1.389566 -4.040768 -1.389861 -1.712328 3.106237 7.371433 -7.549440 0.578227 -3.503261 -4.499089 -6.828910 -10.153023 0.926469 -4.660114 3.935662 0.589961 -5.465433 2.890387 0.969452 2.444145 1.339393 -3.525685 0.443382 -3.474240 2.447622 8.929155 -0.463621 -6.232358 -2.177841 -2.394581 -0.242690 3.908186 2.285462 -1.039126 11.782943 3.822476 5.331248 -3.931908 -1.503990 1.014770 -0.319880 2.883383 4.806695 -7.204079 -4.215938 2.042574 -2.436031 -11.354257 -1.133544 -0.232140 4.984932 -3.165296 -3.473359 1.167355 -2.637451 1.482963 3.300516 1.944496 2.835408 -0.903273 -3.476995 1.123198 10.280775 -3.407441 3.126533 -5.158821 -2.980573 4.757956 -1.012139 2.302387 -0.127872 -1.734427 -0.594914 -4.435878 0.005903 7.877340 -0.683069 -2.097526 2.649845 2.422777 -5.246041 -7.091879 -9.233667 -0.244733 5.484889 0.611272 9.610769 -7.169807 -1.070493 -3.143954 8.095736 0.238815 -1.312424 2.791935 -3.743204 2.866582 -5.704040 -8.731468 10.335646 8.825148 2.849988 -3.276129 3.836735 0.600784 -8.186875 -7.269602 -5.407529 1.496693 2.789870 -5.925231 -5.091327 1.614478 -7.589512 0.120169 -0.473783 2.560097 6.538929 -1.104763 2.387769 -0.920299 -4.025317 -6.266240 4.131022 -3.026875 -1.966843 0.847528 1.779953 0.164320 4.137399 -1.820213 -3.964427 -0.430150 -3.537913 -0.408813 3.690727 6.099881 -0.352540 11.176634 7.555084 -2.265127 3.806079 0.043245 -3.712078 9.756011 -2.570545 1.256349 0.969462 3.320126 -2.008227 2.625054 6.665715 -3.075546 -5.833825 -5.607353 -0.397190 -1.585818 0.547051 -2.823588 -2.989717 -9.351006 -1.181239 -1.905514 7.352729 0.980406 10.916353 0.060218 2.362930 -9.917814 0.565337 4.842748 -1.645477 5.406159 3.937570 -6.929197 -3.792556 -2.065198 -6.804384 -3.987703 -0.013430 -0.003128 -5.424827 -0.902802 3.185058 -1.684684 1.721945 6.354022 0.327239 3.968330 -1.810748 0.793963 -3.234237 0.293055 9.898220 0.081517 -4.475478 5.327026 1.352943 15.345757 1.495190 4.241539 -2.354512 -3.593573 1.046133 -4.374650 -5.210549 6.566999 5.010474 4.548522 0.184403 -0.363810 -0.344237 7.116868 -PE-benchmarks/boyer-moore-algorithm.cpp___GLOBAL__sub_I_boyer_moore_algorithm.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.560464 1.218509 4.086030 2.733924 -2.538084 -2.807461 -1.142233 -2.577639 1.123175 0.432983 2.113226 -0.701221 0.511970 0.904673 -0.075542 -0.952918 0.969511 0.277582 -0.678339 -1.084051 -1.801152 1.546412 1.279909 -3.005105 0.545064 -2.485285 1.820386 1.478848 0.489097 1.414455 0.160005 0.035543 -0.672398 1.509711 -2.065022 -0.653583 0.306337 0.434885 -1.287605 -0.431993 1.138196 0.805802 1.857401 -0.285424 1.385256 1.508573 1.117845 0.079115 -2.771666 -0.528719 -0.680191 2.459598 -0.731709 1.518450 0.824132 1.390120 0.342825 -2.594852 -0.285900 -2.653720 0.715078 0.545534 -1.180580 -0.118301 -2.006131 0.094021 -0.130573 -1.823590 1.546386 -0.974015 1.065667 -0.623794 -0.079179 -1.383183 -1.336081 0.917088 0.537181 1.035584 0.925399 0.261455 -0.004934 0.259488 -1.263188 -1.320206 -0.006398 0.090898 0.618255 0.284256 -0.187966 -1.038951 1.025267 -0.577571 -0.492747 1.895544 -1.499008 1.222920 -0.861202 -0.831669 -2.398617 -1.861909 -0.008383 -1.467868 1.187838 1.700453 -1.615692 0.621961 0.369714 0.919742 0.252358 -2.417986 0.035143 -1.077811 0.694389 2.058254 -1.271265 -1.172803 0.194008 -0.531232 -0.385081 1.926886 -0.337770 0.435912 1.957900 1.533467 0.933185 -1.699028 0.012106 0.119128 0.936737 1.402233 1.682786 -2.250282 -0.846636 0.074536 -0.809314 -3.504261 0.105576 0.496072 2.073696 0.705777 -2.827105 0.719095 -1.182553 2.057025 0.496997 2.031186 0.491626 -0.386147 -1.284864 0.403687 3.301554 -1.238123 1.665686 -0.776977 -2.346442 1.900756 -0.031043 1.685808 0.489898 -0.044772 0.809782 -1.823000 -0.084816 2.549390 0.810215 0.256378 1.500937 0.056033 -1.010827 -3.535021 -3.115833 0.362819 1.219526 0.040598 4.109482 -2.377417 -1.734760 -0.922619 3.083155 -1.206139 -0.790352 0.213078 -0.739737 0.990641 -3.513102 -3.379019 2.775167 3.036685 0.156669 -0.348465 2.663963 -0.242404 -1.011772 -1.562912 -1.770867 0.999205 0.664647 0.660944 -0.005871 -0.149338 -2.441307 0.223792 0.333040 0.800705 1.649554 -1.452350 -0.882436 -0.330497 -2.661287 -1.788106 0.685027 -2.169058 -0.254345 0.388480 0.393013 -0.051508 0.917312 -0.763477 -2.038100 0.184716 -1.394259 -0.221175 0.591950 1.650127 0.338506 3.721753 2.177896 -0.029217 2.190244 0.624845 -1.296290 6.113332 -1.753384 0.035585 -0.106653 1.978320 -0.531080 0.685203 1.598555 -0.822110 -1.321739 -2.103806 0.511046 -0.650535 0.816435 -3.708303 -1.808375 -3.037374 -0.794042 0.270541 2.107194 -0.043722 4.039172 -0.072339 0.401095 -4.780573 0.018605 1.920830 -0.422311 1.296194 1.370958 -2.159756 -4.069337 -0.008983 -1.300030 0.781419 -0.351368 -2.140275 -1.301089 -0.708802 0.761624 -0.424344 0.881655 3.113199 -0.451640 0.927243 0.388566 -0.489558 0.067295 -1.351589 1.573248 0.330679 -1.699364 2.958344 0.094055 5.495751 -0.054409 1.772107 -1.307644 0.024561 0.176054 -1.011242 -1.143983 2.272657 1.554408 1.160221 -0.062818 0.455000 -1.625887 1.347167 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -0.749827 0.974913 4.635606 3.208733 -2.730461 -2.429367 -1.337333 -2.703241 1.176272 0.493460 2.813793 -0.531273 0.542387 0.897403 -0.060583 -1.229902 1.089831 -0.147895 -0.762635 -1.422572 -1.273848 2.088058 2.149532 -3.932621 0.756496 -2.455191 2.215739 1.580925 0.601384 2.137416 -0.330382 -0.105428 -0.361474 1.954092 -2.344320 -0.908314 -0.140636 1.080011 -1.332202 0.056412 1.860208 1.249691 2.136415 -0.695750 1.581931 2.254825 1.554212 -0.092612 -3.338952 -0.735501 -0.413254 1.879747 -1.608134 2.050644 -0.273639 1.541810 0.011309 -2.540333 -0.858860 -3.740082 0.931722 1.090746 -1.172076 -0.218126 -2.425055 0.202782 0.380246 -2.537072 1.693967 -1.020348 1.405508 -0.050858 -0.374593 -1.779970 -1.243634 1.223367 1.089423 1.501345 0.748377 -0.302160 -0.082508 0.139387 -1.288519 -1.397425 -0.179146 -0.036948 1.135789 0.163602 0.636570 -0.907686 1.589801 0.207496 -0.806357 2.389202 -1.293864 1.476704 -1.261818 -0.927657 -2.285292 -1.331997 -0.216841 -1.982182 1.764312 2.302375 -2.393028 1.265970 0.624390 1.641219 0.222676 -2.827022 -0.614551 -0.677376 0.762704 2.362253 -1.084052 -1.539904 0.223350 -0.303691 -0.122402 1.993929 -0.513425 0.627558 3.007774 1.995633 1.105717 -2.517171 -0.006866 -0.367132 1.167199 1.940227 2.377705 -1.934626 -1.458049 -0.393532 -1.127949 -3.974484 0.072406 0.412350 2.662150 -0.409960 -3.575251 1.648784 -1.865305 2.960062 1.474776 2.193051 0.922953 -0.388102 -1.919226 0.886015 4.078929 -1.348086 1.769866 -1.347231 -2.847644 2.680396 0.299973 1.902092 0.475679 -0.084295 0.774986 -2.683411 0.191176 3.079480 1.087390 0.853460 1.655404 -0.018111 -0.337209 -3.900177 -3.312433 -0.448380 1.128058 0.804247 4.919861 -2.591684 -1.739355 -1.079393 2.462130 -0.942296 -0.974190 -0.149431 -0.799683 1.176379 -4.719878 -3.880478 3.389149 3.895639 0.634966 0.372243 3.062797 -0.476631 -0.283769 -1.554647 -1.615858 1.686307 0.990685 0.881129 -0.204206 0.243028 -2.595829 -0.202665 0.544360 1.031851 1.467997 -2.051174 -1.815932 0.103610 -3.259121 -1.994306 0.522703 -2.869558 -0.432735 0.640480 0.157972 0.193529 0.746083 -0.950426 -2.055090 -0.376276 -1.750071 -0.170844 0.511045 2.328537 0.442814 2.802580 2.833505 -0.572286 1.965840 0.895038 -1.676980 6.430415 -2.089709 0.036173 0.105931 2.519225 -0.508827 0.900262 1.851997 -0.926891 -0.729019 -2.644749 1.042108 0.005995 1.044048 -4.572844 -1.696624 -2.780430 -0.469859 0.521904 2.766676 0.006845 5.001191 -0.119329 0.838298 -5.726918 -0.157750 1.780662 0.087195 1.756622 1.813562 -2.380440 -5.259961 -0.127221 -1.564668 1.228849 -0.723459 -2.091379 -1.934642 -0.069502 0.516668 -0.518703 1.016049 3.463976 -0.805281 1.553007 0.293269 -0.772635 0.180193 -1.916749 1.675053 1.089853 -1.915077 2.672995 0.168472 6.362588 0.072119 2.346776 -1.874174 0.070888 0.274907 -1.216568 -1.537392 3.086527 2.005303 1.341852 0.487477 -0.092680 -1.390186 1.692607 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.253450 1.529307 5.248883 2.588690 -2.841264 -3.329555 -1.801306 -4.760319 1.740265 1.018480 3.654956 -0.856116 1.349128 0.858672 -0.016023 -0.296985 1.932735 -0.288730 0.038462 -1.774988 -2.070216 3.173476 1.274165 -2.325695 0.855045 -3.290473 2.370621 1.626539 1.385647 2.192377 0.709242 0.036495 -0.691758 1.921219 -2.007282 -0.307439 0.149878 1.313493 -2.256730 0.475674 1.186275 0.647466 2.704396 -0.117491 2.022214 1.934648 1.440886 0.300838 -3.044220 -0.840359 -1.085058 3.043946 -1.527557 1.681582 0.024711 0.703546 0.262739 -2.424713 -0.732124 -2.174147 0.269656 0.366456 -1.783424 0.264666 -2.572750 0.491364 -1.107518 -2.212047 1.333507 -0.543923 1.723994 -0.149151 -0.320363 -1.012287 -2.904128 1.270055 1.015301 1.341535 1.472133 -0.088092 0.255708 0.389229 -1.928039 -2.373589 1.364132 1.162805 1.101409 0.010250 -0.675626 -1.182389 0.541863 -0.062036 0.123063 2.591810 -1.996524 1.532907 -1.603011 -1.514901 -2.696511 -2.960549 0.097953 -2.273732 1.817077 1.575399 -1.899215 0.682950 -0.110994 1.385770 -0.205240 -3.126338 -0.124497 -1.264013 0.424485 3.880351 -1.399537 -1.770040 -0.813935 -0.593784 -0.303456 2.278150 0.431360 0.735815 3.121804 2.354532 1.267570 -2.544541 -0.650564 0.268581 1.187781 1.834852 2.309206 -2.424935 -1.883299 -0.016321 -1.338109 -4.777053 -0.628826 0.488112 2.455195 -0.558988 -2.399925 0.936036 -1.990074 2.663306 1.794198 2.107259 1.050142 -0.368149 -2.049582 1.276371 4.317788 -1.639684 2.273231 -1.405315 -2.785168 2.548147 -0.375232 1.990715 0.524435 -0.257160 0.127854 -2.439650 -0.011121 3.362822 0.793254 0.754376 1.318487 0.370858 -0.926874 -3.629062 -4.428873 0.349659 2.184162 0.496456 4.787733 -2.823256 -2.052798 -0.538219 3.389773 -0.371054 -1.447941 0.694087 -1.231370 1.431888 -4.848111 -4.273696 4.172717 4.085795 1.024568 -0.546610 2.810596 0.501343 -2.331369 -2.502217 -2.200851 2.146862 0.639574 -1.160773 -0.755460 0.502237 -2.928793 0.008549 0.123712 1.308158 1.802338 -1.432409 -0.258557 -0.351634 -3.223165 -1.829791 1.770205 -2.526525 -0.828263 0.386477 -0.067065 -0.084769 1.377488 -1.253863 -1.680619 0.203960 -2.180637 -0.227814 0.862247 2.403541 0.157207 4.284112 3.564880 -0.354145 2.494799 0.499247 -1.962972 6.149690 -2.093780 0.263667 -0.139493 1.949174 -0.797775 0.877524 2.348224 -1.091499 -2.506064 -3.079242 0.485333 -0.018193 1.396784 -3.135512 -2.302621 -3.817450 -0.494942 0.504929 3.853632 0.281689 5.607491 -0.562821 0.955276 -5.528265 0.224085 1.856672 -0.334637 2.513532 1.598949 -2.727450 -3.967832 -0.521031 -2.670956 0.141980 -0.356397 -2.564876 -2.475344 -1.101211 1.573193 -0.992537 0.842358 3.452790 -0.817412 1.903233 0.464083 -0.973274 -0.698489 -0.925589 2.745844 0.471375 -2.421561 3.339498 0.059221 7.717684 -0.055224 2.363097 -1.749861 -0.213402 0.212797 -1.703027 -1.584953 3.625229 2.782800 1.555526 -0.076453 0.142339 -1.126109 1.790378 -PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -1.190366 3.275559 13.536149 10.679884 -7.126303 -7.131085 -4.309834 -7.456683 4.245942 1.248230 7.679339 -0.654855 2.119332 2.769868 -0.576836 -3.717674 3.742422 0.663616 -1.541801 -3.981275 -4.450380 8.369901 6.672004 -11.957302 1.735814 -7.721174 7.362418 4.438074 3.489659 7.622659 0.171571 0.557338 -0.301151 5.740809 -7.330533 -3.670366 -2.954406 3.281699 -4.929678 0.091402 6.111910 3.899121 6.971533 0.544341 3.333802 5.677963 4.522435 -0.636878 -8.040700 -1.296161 -3.887422 6.719071 -4.614590 5.186910 -1.955143 5.133348 1.450254 -6.743744 -2.098979 -9.759343 2.287388 4.001633 -4.812514 -0.588101 -7.806863 0.841896 -2.177317 -6.401688 3.999182 -1.445536 4.751756 -0.017521 -0.800338 -7.275219 -6.122863 3.518982 1.027700 4.464237 3.633443 0.535257 -1.463994 1.396402 -4.067936 -4.779550 1.038134 -1.156133 1.778127 0.461125 2.549090 -5.420263 2.171661 1.120610 -2.102314 6.605625 -4.008194 6.678296 -4.227377 -2.503331 -4.433799 -3.178418 -0.851190 -6.472936 4.059786 6.103879 -5.726334 3.001402 1.541205 3.446069 0.807384 -8.374158 -1.185062 -1.679333 -0.502841 8.143728 -2.956144 -4.721007 1.044179 -0.255252 -0.721376 7.091510 -0.368164 2.450391 7.461979 5.602408 2.136084 -6.372635 1.352753 -0.065576 2.340200 5.351608 6.946765 -4.472087 -5.237216 -1.637428 -0.635048 -11.809191 1.416859 2.490371 6.032275 -0.100180 -9.366467 3.925862 -5.316410 7.145105 4.552578 6.716822 3.927435 -1.715102 -5.061144 3.450851 13.173127 -4.224798 5.019001 -3.831286 -9.733457 9.977899 -1.088468 6.073935 -0.698992 -0.172861 3.201767 -7.317896 0.504526 9.522969 1.087123 1.430057 6.947860 -0.698388 0.202049 -10.672263 -9.610309 -0.256395 3.779403 2.952341 14.331035 -6.358495 -3.346851 -2.169595 6.359370 -1.583658 -1.956823 -0.033399 -1.663189 3.157706 -16.708295 -11.381827 10.269709 9.079113 0.349548 -0.482390 7.515683 0.756080 0.491641 -6.230254 -5.855649 5.237280 3.294421 4.083717 0.420960 0.444378 -6.977810 -0.225768 2.556781 2.343027 5.222131 -8.186494 -5.549832 -1.473616 -10.261289 -6.351901 3.121642 -9.409100 -1.686480 1.505576 -0.502054 -1.179316 2.123948 -1.128597 -5.509477 -0.662700 -3.928619 -1.749513 0.631688 6.808837 0.673868 7.382926 9.255591 -0.903700 4.581982 4.023521 -5.164035 20.948411 -6.855698 -0.574521 0.122164 7.239177 -1.661820 2.854666 4.147152 -2.361778 -3.617701 -7.949714 4.515296 0.261269 2.867454 -13.670190 -3.847725 -7.506001 -2.037228 1.848495 8.744493 0.118464 15.472781 -1.741951 1.451307 -15.064356 0.089570 6.854417 0.181921 7.028159 5.700922 -7.115119 -12.484590 -1.819175 -3.927272 7.842494 -1.884401 -7.600582 -6.466491 -0.221543 1.316716 -3.073411 4.582693 10.878771 -4.277934 4.186979 -0.208260 -2.657461 -0.274371 -4.942848 3.869350 3.780457 -6.195276 8.872119 -1.614351 16.954262 -0.696807 7.390101 -6.316002 0.157657 -0.570459 -3.550578 -4.261120 9.754460 5.592738 3.660971 2.188360 0.584351 -3.431791 4.111898 -PE-benchmarks/rat-in-a-maze.cpp__main = -0.021242 0.621303 1.901674 0.276960 -0.840438 -1.375895 -0.645333 -2.350275 0.694669 0.555879 1.595367 -0.412530 0.789792 0.266467 0.082849 0.233834 0.799146 -0.340518 0.358557 -0.661715 -0.679791 1.336827 0.107273 0.096127 0.328579 -1.420309 0.772399 0.412766 0.679718 0.857625 0.354519 -0.096765 -0.411603 0.547659 -0.333244 0.241730 0.383009 0.544555 -0.840097 0.385690 -0.007998 -0.167551 0.939248 -0.031988 0.924216 0.615725 0.347691 0.247756 -0.799107 -0.490274 -0.325156 1.013119 -0.612701 0.512934 0.030320 -0.285051 -0.043444 -0.501618 -0.221981 -0.347529 -0.105366 -0.333064 -0.609625 0.259341 -0.879632 0.305064 -0.755261 -0.678023 0.217899 -0.232841 0.687133 0.067370 0.009959 0.269453 -1.513804 0.402516 0.422523 0.352232 0.536456 -0.197873 0.135279 0.115415 -0.887043 -1.105683 0.876071 1.021636 0.459494 -0.100006 -0.808708 -0.098371 -0.023607 -0.037121 0.334963 0.967425 -0.799405 0.358009 -0.643860 -0.598224 -0.986456 -1.771382 0.131500 -0.841310 0.658980 0.240531 -0.408747 -0.022447 -0.308946 0.524891 -0.250227 -1.197317 0.212637 -0.482313 0.103215 1.590282 -0.577164 -0.491542 -0.683031 -0.319987 0.015309 0.712426 0.383718 0.272935 1.084623 0.912952 0.604882 -0.949508 -0.591577 0.334581 0.536629 0.534339 0.665042 -1.000892 -0.700545 0.226627 -0.833176 -1.847205 -0.565384 0.266002 0.955232 -0.503280 -0.418111 0.236148 -0.776770 0.845109 0.948813 0.549940 0.314657 -0.012950 -0.813275 0.539467 1.463475 -0.640909 0.952193 -0.555855 -0.630602 0.752455 -0.282254 0.621136 0.274707 0.018989 -0.286971 -0.769763 -0.083724 1.185174 0.445527 0.537197 0.100601 0.310702 -0.596949 -1.180055 -1.741312 0.029789 1.250924 0.037448 1.321233 -1.058600 -0.760257 0.031866 1.410032 0.083513 -0.790763 0.442045 -0.585367 0.551217 -1.594977 -1.481831 1.608173 1.734520 0.687989 -0.252305 0.747264 0.563171 -1.467992 -0.920843 -0.784060 0.869470 -0.203474 -1.484319 -0.732354 0.240058 -1.150800 -0.012425 -0.208275 0.551286 0.614712 0.058600 0.500894 0.014028 -0.885152 -0.565395 0.899768 -0.643857 -0.493470 0.036433 -0.028135 0.079153 0.534316 -0.629749 -0.209650 0.463456 -0.992278 0.084881 0.542090 0.639223 0.002514 1.928668 1.243199 -0.155303 0.730320 -0.136379 -0.724924 1.596129 -0.598750 0.219690 -0.100190 0.467140 -0.319000 0.394146 1.008764 -0.436221 -1.343354 -1.175383 -0.212183 0.059479 0.632647 -0.184123 -1.224504 -1.579351 0.021628 0.150737 1.731715 0.195575 1.993402 -0.228658 0.614854 -1.799167 0.174302 0.373396 -0.247674 0.925016 0.371370 -0.854179 -0.899715 -0.213087 -1.279392 -0.836518 -0.086210 -0.871438 -0.830667 -0.699502 0.728499 -0.376555 -0.004480 0.700196 -0.018158 0.942929 0.316193 -0.365727 -0.699182 0.177941 1.414701 -0.084780 -0.885267 1.082226 0.241429 2.948309 -0.078486 0.699085 -0.412221 -0.087982 0.069456 -0.744747 -0.499697 1.393020 1.263324 0.596688 -0.301698 -0.069721 -0.136408 0.612060 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -2.216786 2.469705 10.897753 8.918059 -4.901559 -6.114742 -2.519056 -5.103209 3.958954 1.099187 6.068057 0.023644 2.926240 0.939834 -0.310743 -3.502797 4.060595 -0.134319 -1.286450 -2.850060 -1.913892 7.824516 4.988590 -9.913643 0.877426 -7.289035 5.871407 3.702842 2.557576 6.499474 0.270415 0.842285 0.067717 4.307005 -6.023959 -2.961872 -1.581313 2.334902 -3.211580 -2.115791 4.477536 3.051758 5.883629 0.589911 2.463220 3.487167 4.757991 -0.855488 -5.871744 -1.862839 -3.949343 5.215562 -3.317760 4.348609 -1.056188 3.526114 3.182907 -5.166799 -0.833416 -9.328471 2.000339 3.380281 -3.428012 -1.156492 -5.971413 0.643066 -0.582348 -4.804264 2.754060 -1.865464 3.622679 0.502722 0.926420 -6.258707 -5.545858 3.192554 0.308591 3.017998 2.919265 1.739720 -2.552771 0.327851 -3.602520 -4.136296 1.434702 -0.855111 1.342655 1.588957 0.830839 -3.832162 1.047770 0.371334 -2.697311 4.949051 -3.053079 5.070805 -0.902602 -1.625404 -3.231721 -1.983173 -1.086554 -5.345666 1.746595 6.023533 -3.460125 1.986960 -0.792300 1.603805 -0.382116 -5.980932 0.888090 -2.482561 -1.747658 4.866218 -3.543337 -2.881449 0.530158 0.460087 0.792130 6.247136 -1.874936 2.320515 5.512041 3.910732 1.738286 -5.064838 2.272023 0.736902 3.199906 3.360161 4.919015 -4.178682 -3.747002 -0.701278 -0.978197 -9.448184 1.011789 4.192827 5.631160 1.179205 -9.638156 4.518717 -3.556488 6.358522 4.546228 5.183370 2.931748 -0.332097 -3.772638 2.431272 10.618690 -3.850336 4.551009 -3.315902 -7.183248 8.926236 -1.370427 5.158454 -0.921940 0.322778 2.345364 -5.673634 0.876012 8.159636 1.855718 1.360362 5.562481 -0.743024 0.741757 -9.940963 -8.764930 -1.107637 3.215309 2.893996 13.090029 -5.457517 -2.404487 -1.780947 4.267359 -2.974162 -2.345451 -0.259775 -1.472940 2.343687 -15.037848 -9.761171 9.988104 6.953017 -0.262029 0.395717 6.187292 0.567425 1.425032 -4.458175 -4.206488 3.954049 2.172410 2.870046 1.213696 0.520970 -6.722537 -1.045704 1.586914 1.151866 4.613173 -6.970547 -3.685372 -2.401341 -8.209145 -5.220817 1.822671 -7.398489 -2.691206 0.659448 0.162990 -0.081817 1.800925 0.317571 -4.269258 0.215077 -3.692429 -3.031247 -0.115832 5.550117 1.518520 6.480910 8.263864 -0.506120 3.280218 3.141377 -4.227193 17.344229 -5.786193 -1.546491 -0.300969 6.758061 0.369274 3.083001 3.589647 -1.929256 -2.275028 -7.007560 4.533053 0.280247 1.862775 -12.626125 -3.243309 -6.536556 -1.824450 1.296291 7.529491 -1.031140 13.094331 -1.975329 0.432681 -13.572786 0.151272 5.474965 0.424969 4.310726 4.902763 -5.955478 -9.175159 -1.463679 -2.899069 6.011445 -1.223228 -6.262586 -4.379454 -1.036163 0.995340 -4.062051 3.727377 8.835951 -2.959787 3.918593 0.819708 -1.511329 -1.160310 -3.204899 2.424318 3.260321 -3.961675 7.601805 -1.758572 12.518878 -1.495408 5.730395 -5.337362 2.025934 -1.019338 -3.891389 -3.320747 8.034562 4.428119 1.890042 2.778937 0.433694 -2.666014 5.137291 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.450505 0.911709 3.267889 1.822723 -1.509613 -2.334287 -0.844275 -2.591734 1.255882 0.590844 2.233253 -0.150867 1.259522 0.254622 0.023703 -0.454824 1.456293 -0.213425 0.017373 -1.052134 -0.852606 2.541336 0.984527 -1.689770 0.443678 -2.307349 1.714155 1.016180 0.983859 1.991933 0.325255 0.121256 -0.338225 1.158021 -1.268800 -0.364624 -0.133276 0.818730 -1.198248 -0.104061 0.812361 0.275065 1.915852 0.228743 1.067330 1.103233 1.147797 0.082344 -1.572664 -0.804109 -1.020578 1.493543 -1.037085 1.244496 -0.354275 0.354764 0.733571 -1.099408 -0.181435 -1.972541 0.277518 0.248488 -1.120182 -0.068766 -1.805312 0.290412 -0.793365 -1.451991 0.488019 -0.624957 1.154532 0.149409 0.112923 -1.031977 -2.341250 0.750020 0.337583 0.808413 0.991287 0.319301 -0.569045 0.029296 -1.477809 -1.616936 0.954089 0.530338 0.597077 0.380595 -0.660834 -0.893827 0.118419 0.119930 -0.149167 1.527580 -1.100064 1.179818 -0.492370 -0.722107 -1.242689 -1.757958 -0.031212 -1.486098 0.705660 1.123239 -0.798731 0.234144 -0.527430 0.574245 -0.312721 -1.912207 0.460205 -0.871071 -0.434273 2.003582 -1.010124 -0.877342 -0.506214 -0.154192 0.282387 1.733945 -0.047820 0.533108 1.742326 1.336175 0.757289 -1.608137 0.022077 0.380857 0.970049 0.915272 1.341931 -1.335890 -1.239117 0.150060 -0.907014 -3.077680 -0.262860 1.165492 1.790137 -0.161234 -2.015412 1.125824 -1.289739 1.648478 1.637176 1.306082 0.835634 -0.056383 -1.315296 0.843981 3.026030 -1.181095 1.530636 -1.038613 -1.776008 2.398324 -0.463696 1.338831 -0.055734 -0.036535 0.104080 -1.412865 0.210193 2.372018 0.645305 0.598756 1.138140 0.100726 -0.330356 -2.628978 -2.937846 -0.234837 1.673172 0.792082 3.388424 -1.795551 -0.752051 -0.297906 1.630296 -0.492843 -1.070941 0.288301 -0.676163 0.812006 -4.221899 -2.814934 3.152262 2.487612 0.505464 -0.070370 1.505836 0.584155 -0.608081 -1.518593 -1.346424 1.308701 0.178429 -0.646185 -0.303073 0.296715 -2.161291 -0.202816 0.134398 0.589022 1.352450 -1.332529 -0.178636 -0.702470 -2.078749 -1.492736 0.925723 -1.798255 -0.863238 0.191904 -0.061615 0.039928 0.658385 -0.184901 -0.847269 0.344217 -1.383028 -0.543159 0.251665 1.463562 0.312914 2.593103 2.485336 -0.294716 0.935493 0.444778 -1.363303 4.401545 -1.563593 -0.062128 -0.130828 1.743508 0.024194 0.913119 1.463738 -0.657082 -1.276260 -2.157736 0.667032 0.297453 0.779845 -2.521134 -1.464699 -2.523344 -0.233753 0.218711 2.835437 -0.177884 3.844330 -0.635066 0.563538 -3.758491 0.216555 1.199668 -0.076345 1.414421 1.138638 -1.728007 -2.034437 -0.450553 -1.567044 0.565760 -0.236811 -1.656637 -1.361474 -0.546475 0.488064 -1.150373 0.657475 2.033825 -0.715813 1.473988 0.324596 -0.479801 -0.827451 -0.400303 1.547680 0.532270 -1.287113 2.115859 -0.107452 4.218190 -0.235485 1.602559 -1.192569 0.429767 -0.197827 -1.452766 -1.048491 2.505658 1.741197 0.684781 0.459307 0.070430 -0.329956 1.439277 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp___GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.274046 0.874659 2.959245 2.241357 -2.239649 -1.719977 -0.905606 -1.842402 0.560410 0.144939 1.675301 -0.667407 0.199533 0.537502 -0.257208 -0.971609 0.858608 0.139142 -0.573763 -1.102920 -1.448076 0.961573 0.969677 -2.644139 0.736219 -1.401454 1.872205 1.211685 0.156617 1.262896 -0.165497 -0.076876 -0.417602 1.361392 -1.426396 -0.804189 0.086517 0.651206 -1.034615 0.322077 1.306839 0.732138 1.655510 -0.650422 0.750109 1.962872 0.675286 0.215045 -2.571674 -0.367932 0.064028 0.786762 -0.833151 1.449804 -0.087728 0.854968 0.214638 -1.848727 -0.460687 -1.924961 0.575960 0.409128 -0.555099 -0.058644 -1.758039 -0.070453 0.326781 -2.043172 1.406135 -0.714913 0.637653 -0.092279 -0.502817 -1.131291 -0.433922 0.875839 1.259997 1.151196 0.498188 -0.253794 0.543011 0.091236 -1.122145 -0.849015 -0.389877 -0.062789 1.163206 0.160761 0.453343 -0.916021 1.586535 0.122180 -0.217230 1.518343 -0.439667 0.623217 -1.453797 -0.743705 -1.955234 -1.457507 -0.079788 -0.985250 1.451209 1.509121 -2.231926 1.036469 0.916708 1.271597 0.512829 -1.759275 -0.649338 -0.785414 1.122949 1.923602 -0.324150 -1.562854 -0.207057 -0.477048 -0.203958 1.187984 -0.432397 0.075445 2.198710 1.352619 0.802547 -1.716908 -0.287287 -0.574577 0.364214 1.267907 1.829778 -1.378907 -0.931674 -0.328479 -1.033094 -2.574304 -0.096893 -0.545110 1.822071 -0.645816 -2.188594 1.280586 -1.509716 1.804446 0.585561 1.444661 0.596249 -0.375916 -1.248161 0.606522 2.224652 -0.766043 0.945849 -1.163531 -2.073899 1.303945 1.022926 0.933933 0.313939 -0.447737 0.359129 -1.640118 0.492583 1.882670 0.463929 0.204798 1.181793 0.034752 -0.536542 -2.382945 -2.056967 0.316109 0.718507 0.515587 3.377189 -1.999820 -1.188263 -0.872090 1.765174 -0.589330 -0.472254 -0.017982 -0.541697 0.823518 -2.622646 -2.619780 2.009284 2.296744 0.366037 0.153464 1.824464 -0.850663 -0.377226 -1.085471 -1.209294 0.978889 0.828968 0.437551 -0.327423 0.330487 -1.558989 0.121516 0.572090 0.911711 1.440221 -1.576620 -1.377543 -0.442039 -2.162171 -1.665735 0.526195 -1.778823 0.178292 0.818725 -0.036016 0.194782 0.804364 -0.549346 -1.725447 -0.788085 -0.951822 -0.010436 0.214391 1.779431 -0.026872 1.908730 1.780547 -0.505966 1.330623 0.654620 -1.130792 4.358540 -1.387680 0.334390 0.158521 1.748223 -0.367588 0.510733 1.649278 -0.653392 -0.337848 -1.811680 0.341417 -0.053831 0.493641 -3.401357 -0.762781 -2.281485 -0.307954 -0.009392 1.807755 0.185287 3.085712 0.128167 0.345405 -3.429339 -0.234191 1.084555 0.123778 1.252792 1.142710 -1.751916 -3.468556 0.081202 -1.478361 0.663772 -0.553636 -1.075529 -1.422708 0.476999 0.153212 0.253309 0.589421 2.663952 -0.568513 0.699817 0.062826 -0.472516 0.352839 -1.702791 1.295580 0.468410 -1.137537 1.724701 0.390740 4.214693 0.643747 1.371347 -1.130599 -0.350634 0.603569 -0.999764 -1.275622 1.820171 1.010598 0.975717 0.417588 0.049624 -0.852202 1.336275 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = 0.137452 0.485698 1.370353 0.912379 -0.490717 -0.628099 -0.110440 -0.586612 0.131020 0.062560 0.569271 -0.013869 0.179706 0.733732 0.094291 -0.261221 0.149573 0.216332 0.099396 -0.184484 -0.159008 0.522965 0.538870 -1.139816 0.008051 -0.657794 0.936321 0.460669 0.410947 0.791724 -0.113009 -0.040246 0.009827 0.482294 -0.712066 -0.719911 -0.366500 0.448782 -0.284873 0.085657 0.326552 0.341664 0.323444 0.084461 0.076517 0.671488 0.724658 -0.010588 -0.279985 0.079023 -0.624530 0.479139 -0.492859 0.565626 -0.608186 0.326877 -0.070244 -0.329937 -0.161431 -1.092517 0.373813 0.488185 -0.524140 -0.144168 -0.917208 0.076426 -0.224066 -0.775543 0.234568 0.367819 0.572522 0.116651 0.124764 -0.826198 -0.981839 0.190163 -0.238430 0.467783 0.205452 -0.394626 -0.335494 0.261077 -0.446996 -0.433226 -0.011797 0.039013 0.091368 -0.272708 0.467625 -0.320329 -0.005883 0.228909 -0.532981 0.777174 -0.103579 1.119050 -0.714552 0.175820 -0.231427 -0.311061 -0.167945 -0.783370 0.390657 0.416430 -0.144067 0.300291 0.268811 0.419980 0.179077 -0.950365 -0.147722 -0.000172 -0.147964 0.343866 -0.078556 -0.211189 0.492325 0.007619 0.127525 0.549374 -0.096338 0.274641 0.669300 0.514361 0.067976 -0.560499 0.133333 0.060017 0.017357 0.766352 0.602688 -0.470872 -0.485214 -0.299906 0.048412 -1.074140 0.774611 0.560825 0.395632 -0.466131 -0.945746 0.359555 -0.622073 0.621342 0.742976 0.962837 0.434593 -0.016002 -0.185254 0.232742 1.513828 -0.432714 0.432849 -0.435668 -0.464617 0.979364 -0.046645 0.668920 -0.138520 0.334174 0.479526 -0.774448 -0.326955 0.990528 0.484016 0.348236 1.281480 -0.213817 -0.046058 -1.102481 -0.300466 -0.415876 0.555627 0.068643 1.276592 -0.521639 -0.168037 -0.023449 0.169896 -0.138542 -0.085930 -0.185567 0.058289 0.221052 -1.724896 -0.972347 0.453002 0.448429 -0.172205 -0.188324 0.543301 0.206760 0.341465 -0.699270 -0.405608 0.448227 -0.215171 0.516285 -0.095324 -0.025637 -0.847509 0.186814 0.359653 0.152803 0.673750 -0.566657 -0.826385 0.163586 -1.158994 -0.786553 0.153114 -1.009302 -0.387754 0.094407 0.044000 -0.024897 -0.254983 -0.079190 -0.295322 0.425383 -0.352449 -0.129298 0.183224 0.315116 -0.048709 0.729748 0.481914 0.183605 -0.027300 0.559158 -0.480190 2.084476 -0.323178 -0.181260 0.167249 0.708718 -0.463626 0.426431 0.284362 -0.204591 -0.529590 -0.882232 0.488272 -0.008819 0.313102 -0.756472 -0.051526 -0.270037 -0.191293 0.364250 1.043523 -0.102478 1.350073 0.052094 0.504729 -1.164224 0.015642 0.327214 -0.104365 0.543600 0.635456 -0.569950 -0.668601 -0.144330 0.048353 0.598228 -0.213122 -0.723454 -0.607141 0.203895 -0.841409 -0.174745 0.276533 0.721245 -0.503752 0.374772 -0.311785 -0.207786 0.181144 -0.283969 0.696797 0.507125 -0.801011 0.684133 -0.289849 1.737445 -0.162144 0.722181 -0.608412 -0.238379 -0.049053 0.105668 -0.290800 1.101267 0.262386 0.511232 0.291287 -0.068583 -0.131076 0.283955 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -3.339533 3.529966 16.848760 10.376340 -5.629805 -9.031967 -4.771705 -9.613468 5.913350 2.371893 10.460411 0.126998 3.663119 3.684132 0.736412 -3.639753 3.249142 -1.360689 -1.677007 -3.770648 -2.787835 11.641188 9.227773 -11.874407 0.977389 -11.683731 6.413752 4.439485 4.419152 9.229820 -0.503185 0.438288 0.110146 6.474338 -8.634456 -2.247680 -2.415424 3.538032 -3.335480 -1.810804 6.272017 4.850507 6.797686 1.735437 5.664480 5.353703 6.443746 -1.738697 -7.131540 -3.152665 -5.415868 9.936878 -6.360243 5.598689 -1.335248 6.477575 1.716190 -7.770261 -1.995203 -13.837984 2.599938 5.250638 -6.158984 -1.088937 -7.978181 1.865645 -2.047487 -5.352235 3.142176 -2.951052 6.982252 -0.261558 0.344311 -7.093671 -8.551664 3.815216 -1.184143 3.848165 4.171400 0.430776 -5.542393 1.578022 -4.147231 -6.661066 2.900481 -0.346257 0.806560 0.778420 1.255501 -3.847923 0.038776 0.229406 -3.870315 8.637683 -6.692099 8.124350 -0.214736 -2.541857 -4.908709 -2.303606 -0.976138 -8.860145 2.957588 7.652622 -3.203109 0.867228 -1.973743 2.219999 -1.205881 -10.302375 0.963094 -1.183490 -2.664849 6.602782 -6.316732 -1.846981 2.636680 0.018779 0.583395 9.519817 -0.079182 3.623513 7.900762 6.384884 2.441106 -6.903917 2.388696 1.367322 5.722995 5.539805 6.403300 -6.861604 -5.570615 -0.304855 -0.864654 -14.432398 1.976293 7.650127 7.885676 2.514074 -13.078979 5.173429 -4.427334 8.474758 7.261535 7.732725 3.741609 -1.382466 -6.086163 3.553733 17.644340 -5.860473 7.685248 -3.378849 -9.928651 13.918093 -5.919935 8.336112 0.631409 2.031489 3.419701 -8.569186 -0.955546 12.135485 3.640746 4.090650 7.595813 -0.807068 0.915121 -14.139105 -13.076948 -3.397584 5.302568 2.506481 16.171665 -6.976691 -3.640755 -1.855397 8.823014 -3.678637 -4.067049 -0.344222 -2.052941 3.428019 -20.515172 -13.040252 13.846839 13.083523 0.720357 0.383100 9.909023 3.796923 0.769244 -6.159408 -6.270705 6.580168 1.931336 3.972509 1.157817 -0.983966 -9.491557 -1.283635 0.501675 1.801246 3.909449 -7.433698 -4.824818 0.445609 -11.541051 -6.301134 1.784439 -10.678667 -4.439632 -0.205216 0.547973 -1.605442 1.316598 -1.387246 -4.820523 2.756928 -6.533382 -2.343207 2.384223 6.060009 3.205085 10.935992 10.201168 -0.843070 5.257158 3.631111 -4.925895 23.238605 -7.768094 -1.960353 -0.437753 9.452828 -0.954729 4.686473 3.377397 -2.653525 -5.435808 -9.257216 6.671773 -0.023846 3.809464 -13.383466 -7.434263 -8.649525 -2.762987 3.709355 10.981891 -1.259284 19.340148 -2.004439 2.946683 -20.297446 0.821534 7.929488 -0.894008 6.100966 6.538802 -7.319646 -14.590386 -2.474351 -2.716908 6.514003 -1.524802 -9.873833 -5.758153 -3.880313 2.460936 -6.710906 5.158294 9.753518 -2.697656 5.884769 1.635490 -2.839833 -2.623380 -3.139620 4.998905 4.221366 -7.150838 10.475898 -2.201557 19.258905 -4.316928 9.659109 -7.145051 2.835783 -2.196994 -3.777457 -3.602341 12.101801 8.264503 3.121406 1.629820 0.547976 -4.159434 4.674987 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -2.253303 2.936230 13.353768 8.671303 -5.934144 -8.234910 -3.713792 -7.308985 4.020076 1.408046 7.653188 -1.095387 2.010368 3.167452 0.091291 -3.713225 2.494099 -0.302305 -1.894930 -3.187499 -4.365493 7.012436 6.078184 -9.784442 1.205025 -9.318063 6.005195 4.094728 2.411188 6.632118 -0.100748 0.283958 -0.771458 4.859945 -6.693719 -2.096955 -0.765327 1.622037 -2.918267 -1.389418 4.913029 3.484463 5.979483 0.610396 4.080611 4.689111 4.035467 -0.830675 -7.143002 -2.102284 -3.543069 7.418235 -3.851974 4.162254 0.510204 5.577651 1.527999 -7.616567 -1.385545 -10.026254 2.331688 3.321281 -4.644087 -0.607269 -6.703878 1.034632 -1.720278 -4.706936 3.922858 -3.297201 4.442481 -1.019701 -0.042806 -5.355551 -5.447549 3.077830 -0.095986 3.107463 2.924877 0.254285 -2.915733 1.448377 -3.842926 -4.277791 0.855145 -0.563735 1.039706 0.605444 0.728939 -3.647576 1.511570 -0.543322 -2.625208 6.236301 -4.792039 5.360996 -1.508451 -2.364182 -5.514867 -3.599474 -0.466805 -5.900198 2.846682 6.487467 -4.385548 1.403622 -0.039553 2.139792 0.068652 -8.185754 0.300593 -2.110845 0.140736 5.799750 -4.853413 -2.707925 1.190682 -0.704540 -0.056163 7.137200 -1.123751 2.232263 6.023073 4.843087 2.094211 -5.367369 1.502584 0.652268 3.660574 4.245826 5.308454 -5.995077 -3.559729 -0.471007 -1.195052 -11.645305 1.395985 3.439130 6.353383 2.622627 -10.389981 3.595988 -3.712653 6.669958 3.859155 6.509549 2.397659 -1.268146 -4.611660 2.221246 12.431599 -4.358577 5.695682 -3.107070 -8.308554 9.123897 -2.488550 6.007072 0.743330 1.023802 3.236812 -6.380712 -0.387560 8.911614 2.425438 2.155748 6.035737 -0.367786 -0.141273 -11.179966 -9.889318 -0.563482 3.903841 1.239763 13.102698 -6.724595 -3.525069 -2.429933 8.385664 -3.288040 -2.664296 -0.038521 -1.733773 2.557553 -15.079709 -10.911606 9.697371 9.954842 0.146069 -0.114508 7.896749 1.369655 -0.168788 -4.229985 -5.676653 4.377969 2.000867 3.509781 1.070827 -1.062495 -7.328821 -0.256588 0.910610 1.921640 4.547831 -6.558908 -4.178293 -0.759552 -9.062460 -5.862151 2.030596 -8.344017 -2.238157 0.505345 0.537772 -0.911203 1.753126 -1.222108 -4.982712 1.452153 -4.394910 -1.445260 2.025476 5.120536 1.868406 10.020019 7.498633 -0.338245 4.834724 2.728342 -3.778588 19.699005 -6.159674 -0.959021 -0.270074 7.178417 -1.036137 3.161672 3.535662 -2.183415 -3.986575 -6.770385 4.298212 -1.234752 2.761714 -11.468488 -5.703446 -8.726693 -2.561566 2.037381 8.027968 -0.381054 14.368468 -0.727039 1.486049 -15.146326 0.050302 6.834070 -0.753131 4.671968 4.848444 -6.297150 -12.062310 -1.004633 -2.808617 5.429838 -1.207721 -7.578035 -4.562213 -2.397563 1.864579 -3.209482 4.048167 8.622140 -1.828669 3.515976 1.597084 -2.079609 -0.860100 -3.699749 3.823396 2.757423 -5.395961 9.215826 -1.030143 15.369737 -2.043633 6.755105 -5.178001 1.554541 -0.879675 -2.842362 -3.150554 8.319662 5.688496 2.899511 0.604827 0.770279 -4.139037 3.748229 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -0.796021 2.828986 13.333549 6.233072 -5.039347 -8.523344 -3.764288 -11.661866 5.542386 2.291730 8.808247 -1.519273 3.134630 1.988929 0.230406 -0.575978 3.026163 -1.431646 -0.385924 -3.178101 -3.338652 9.661887 4.009368 -5.552512 1.161423 -10.985711 4.145181 3.553092 4.911662 5.637096 0.658792 -0.562904 -0.709245 4.031659 -5.516771 -0.229406 0.344136 1.802622 -5.031212 -0.928619 2.261301 1.929027 5.860415 -0.330147 5.523863 2.086944 5.228112 -0.441613 -5.451589 -2.231363 -4.397765 9.812117 -3.512471 3.792366 0.946853 2.567628 0.101431 -6.156568 -1.976300 -6.271893 0.541921 2.232611 -4.777197 -0.047106 -6.121132 1.755540 -2.605416 -3.688783 3.177323 -2.473900 5.051973 0.010010 0.738769 -3.164279 -8.701644 3.260697 0.251624 2.740662 2.680719 0.359153 -0.919801 1.285666 -4.165717 -5.138913 3.791789 3.335561 0.885863 -0.336573 -2.143065 -2.109175 -0.203429 -0.983283 -1.321008 5.983788 -6.734422 4.522625 -2.395168 -2.795295 -5.652244 -6.150243 -0.348147 -6.294984 3.038102 4.040680 -2.090564 1.476969 0.157070 2.278454 -0.536763 -8.523792 0.664664 -1.449935 -0.060490 8.213885 -5.123728 -2.294752 -0.609116 -0.366419 -1.718668 5.972170 0.062955 3.020925 6.756371 5.253613 3.397806 -5.581771 -0.222682 2.420061 4.483615 4.230600 4.473354 -6.410053 -3.584757 0.180269 -1.409252 -12.851095 -0.806257 4.306273 6.693464 1.153735 -7.308458 1.659174 -2.932493 7.691572 4.827624 3.932595 2.353686 -0.289650 -4.719531 3.038807 12.927124 -4.238161 6.019941 -4.285369 -6.045558 7.802625 -3.568559 5.958449 0.933006 1.905413 1.774217 -6.634354 -0.629735 8.623574 2.474409 2.520139 3.334601 0.729542 -1.468589 -11.006134 -11.351520 -1.090419 4.509334 0.173453 11.833096 -6.340130 -5.197790 -1.556975 8.456405 -2.248284 -3.508352 1.764360 -4.261684 3.083454 -13.344677 -11.028056 11.053195 12.030405 1.772371 -0.334674 8.185224 3.177618 -4.860801 -4.833487 -5.242351 5.102240 1.784356 -3.168942 -1.064984 -0.541805 -7.898208 -1.039653 -0.294484 1.994195 3.443864 -2.415411 0.055296 -0.214625 -8.497599 -4.561833 4.515993 -7.150384 -2.837120 -0.312941 0.875874 -0.718094 3.237565 -3.200468 -2.999364 3.113305 -5.533077 -0.549511 2.772191 4.313335 1.223841 10.809019 8.928569 0.216812 7.404704 1.215350 -4.394481 15.973666 -5.325519 -0.948561 -0.891064 4.389182 -2.058728 3.506464 3.618547 -2.597978 -6.212698 -6.981002 3.010746 -1.367540 3.439136 -6.370938 -7.624202 -8.743666 -2.550109 2.292520 8.441234 0.753435 14.295305 -2.362090 2.566603 -16.184451 0.531392 5.401336 -0.532319 5.542861 3.787916 -5.892477 -9.889053 -1.046948 -4.053974 0.284534 -1.281123 -8.816088 -4.949840 -5.652212 4.928392 -4.317781 2.768249 7.193261 -0.484360 5.540592 0.973895 -2.150650 -2.969699 -0.955192 5.550553 1.945810 -5.667288 8.132594 -0.821903 18.043358 -2.760329 5.942197 -4.966972 1.537558 -1.176848 -4.260270 -2.518814 8.823305 7.186355 2.811908 -1.313037 -0.553704 -3.951775 3.865894 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp___GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -1.717953 2.893138 11.463576 7.703289 -5.158680 -5.440475 -2.961521 -5.676118 2.758352 1.425977 6.085295 -1.057613 1.776886 3.193178 0.125137 -2.638652 2.998964 -0.431713 -0.667034 -2.773286 -2.630408 5.862294 5.058595 -9.016051 0.871621 -7.009824 5.623207 3.526707 1.784169 5.421539 0.140054 0.514090 -0.302016 4.473733 -5.897868 -2.699508 -0.712993 2.665756 -2.646139 -0.416025 3.918249 3.423225 4.549342 -0.076532 2.795928 4.840586 4.209409 -0.337495 -6.183999 -1.295846 -3.017288 5.537367 -3.462727 4.013580 -0.608087 3.770707 1.245357 -6.179213 -1.610733 -8.667529 1.961402 3.367358 -3.365516 -0.423106 -5.647770 0.820732 -0.358228 -4.882773 3.329511 -0.462224 3.745219 -0.004628 0.420809 -4.938126 -4.372943 3.098403 0.506437 3.091188 2.322945 -0.661807 -1.929885 1.476648 -3.103119 -4.120665 0.449912 0.079775 1.505776 -0.100772 1.987844 -2.713428 1.265659 -0.019413 -2.938859 5.963075 -2.883866 5.111323 -2.075493 -1.628541 -4.567943 -2.292851 -1.010558 -5.456243 2.949112 5.747232 -3.787675 1.777995 -0.194668 2.510110 -0.057527 -6.391940 -0.208547 -2.096982 0.012063 4.630858 -3.122218 -2.447809 1.108793 -0.416603 0.547978 5.654334 -1.139560 1.943984 6.203959 4.446188 1.391420 -4.783135 0.981983 -0.034968 2.621537 4.037396 5.254847 -5.215884 -3.615944 -1.233031 -1.043035 -8.800449 1.741952 2.728802 4.745795 -0.171400 -8.658389 3.446990 -3.711884 6.253385 4.002117 6.048270 2.263360 -0.801889 -3.349136 2.161029 10.732988 -3.709406 4.543001 -3.043272 -6.519220 7.584281 -1.101425 5.247372 0.594719 0.715607 2.145066 -6.021823 -0.352658 7.692676 2.663745 1.786155 6.044016 -0.717143 0.320880 -9.153042 -7.535899 -0.902691 2.912376 1.189934 12.277168 -5.440300 -3.297850 -1.787436 5.140982 -1.982390 -2.120532 -0.458046 -0.851085 2.174006 -12.437034 -9.099413 7.867515 6.891722 -0.086533 -0.297276 6.675674 0.284258 -0.149779 -4.823168 -3.905998 4.176951 1.062416 3.286242 0.530871 0.602318 -6.280360 -0.087305 0.929924 1.813306 4.570803 -5.529442 -4.461956 -0.186738 -8.593906 -4.619626 1.380713 -7.165743 -2.713805 0.810281 0.504137 -0.125807 1.106171 -0.931893 -4.295626 0.643047 -3.903900 -1.762295 1.408080 4.917720 1.051929 6.939735 6.710193 -0.030334 3.510261 2.960665 -3.391588 16.049532 -4.517175 -1.035176 0.106336 5.706619 -1.353358 2.368305 3.485723 -1.758001 -3.444793 -6.357989 4.118316 -0.621652 2.127329 -10.648554 -3.202638 -5.682244 -1.822144 2.063726 7.185059 -0.430840 12.285896 -0.229013 1.469190 -12.826155 0.123539 4.593422 -0.183455 4.100262 4.678739 -5.693154 -9.764147 -0.959556 -2.586779 4.459763 -1.114808 -5.906973 -4.575538 -0.808811 0.358438 -2.292025 2.910000 8.621481 -2.426601 3.124363 1.104618 -1.900399 -0.138459 -3.440103 3.906982 2.713570 -4.605551 7.386397 -1.379927 14.035019 -1.194684 5.568009 -4.662999 0.180378 0.147708 -1.967452 -2.838722 7.653823 3.852938 2.778265 1.694303 0.215152 -2.965469 3.967478 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -0.516836 2.079746 6.415290 4.887510 -3.391675 -3.612762 -1.359976 -3.230349 1.460246 0.364164 2.805495 -0.937602 1.059724 1.501201 -0.199302 -1.525391 2.423533 0.357210 -0.331921 -1.747260 -1.994628 3.185348 1.771313 -5.315331 0.716188 -4.058618 3.797593 2.517353 0.975401 3.019460 0.476683 0.333316 -0.408346 2.431151 -3.215495 -2.141717 -0.003688 1.032359 -2.254577 -0.265449 1.798052 1.689892 3.148671 -0.233652 0.815446 2.812443 2.450659 0.397461 -3.589153 -0.426996 -2.113799 3.016640 -1.146657 2.455960 -0.009741 1.527434 1.583753 -3.658667 -0.512538 -3.849118 0.913560 1.589893 -1.537640 -0.284008 -3.512018 0.137166 -0.305277 -3.184820 2.267116 0.034362 1.622829 0.035889 0.421458 -3.156340 -2.682107 1.887171 0.659313 2.111002 1.425382 -0.066648 -0.178901 0.817393 -2.305249 -2.207315 0.033933 0.111961 1.198510 0.178296 0.769363 -2.282344 0.962659 -0.325227 -1.430570 2.865054 -1.073521 2.604321 -2.054362 -0.858747 -3.056079 -2.339368 -0.614125 -2.456819 1.599567 3.065676 -2.271377 1.287610 0.427623 1.350760 0.399637 -3.255394 0.119067 -1.814275 0.305253 3.177213 -1.321312 -2.090087 -0.001073 -0.330188 -0.024284 3.277019 -1.166195 0.824536 3.349354 2.536475 0.786837 -2.513876 0.441246 -0.101098 0.990374 2.139095 3.315038 -3.153644 -1.906210 -0.799755 -0.803356 -4.901342 1.034894 1.041502 2.888302 -0.195946 -4.770106 1.925460 -2.328182 3.524863 1.606294 3.308063 1.299508 -0.439847 -1.631651 1.380528 5.658943 -2.049348 2.344274 -2.472088 -3.547145 3.625267 0.584603 2.460696 -0.109189 -0.057951 1.170477 -2.911881 0.304260 4.158008 1.331875 0.069953 3.948062 -0.347423 -0.391823 -5.399489 -4.218150 0.466882 1.615952 0.431756 7.596656 -3.445338 -2.004202 -1.375189 2.636867 -1.411296 -0.955513 0.101923 -0.799325 1.237413 -6.821469 -5.393517 4.596651 3.072124 -0.573918 -0.485691 3.342192 -0.311883 -0.560396 -3.069207 -2.275198 1.963856 0.673987 1.132178 0.161592 0.663524 -3.648967 0.244879 1.007211 1.204026 3.734603 -3.399285 -2.344184 -1.458494 -5.253745 -3.352070 1.396655 -4.062522 -1.101249 1.075707 0.133407 0.189624 1.298267 -0.019972 -2.867434 0.109867 -1.879726 -1.359953 0.292204 3.200158 0.138299 4.100844 3.996873 0.443339 2.414249 2.064575 -2.282640 9.890174 -2.513022 -0.289183 0.008316 3.098988 -0.671533 1.424820 2.494127 -1.052249 -1.997604 -3.895083 1.965523 -0.663866 0.959641 -6.846979 -1.235641 -3.915457 -1.265378 0.634657 4.036449 -0.201499 6.729288 -0.275116 0.171440 -7.062170 -0.052301 2.597896 0.170936 2.412785 2.639950 -3.648447 -4.759319 -0.186437 -2.072016 2.524443 -0.725858 -3.322869 -2.709919 -0.004084 -0.010873 -0.818383 1.553208 5.868316 -1.608059 1.538551 0.293492 -0.919395 0.078950 -2.307871 2.377257 1.288947 -2.286238 4.407881 -0.723670 7.877670 0.152379 2.586535 -2.646064 -0.375295 0.574193 -1.692692 -1.926820 4.007315 1.504689 1.452374 1.363466 0.315318 -1.532093 2.915792 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.112824 0.889438 2.209455 1.707239 -1.195083 -1.740319 -0.540834 -1.691633 0.770422 0.140907 1.125525 -0.261069 0.681652 0.318205 -0.139182 -0.217259 1.001086 0.359531 -0.015610 -0.699201 -1.009631 1.857631 0.535464 -1.541820 0.327782 -1.463387 1.350364 0.893652 0.841983 1.314416 0.152361 0.107831 -0.069873 0.842960 -1.148495 -0.691752 -0.372088 0.521322 -1.173699 0.037532 0.497210 0.180472 1.397058 0.083573 0.294652 0.924188 0.977393 0.184140 -1.065637 -0.217466 -0.957531 1.161853 -0.432877 0.994518 -0.414137 0.177965 0.655294 -0.776938 -0.089938 -0.994095 0.130823 0.299509 -0.789664 -0.112199 -1.508284 0.106465 -0.591897 -1.316695 0.509066 0.062979 0.754988 0.168332 0.028325 -1.190214 -1.760411 0.577502 0.298821 0.802491 0.654590 0.247544 0.024253 0.175376 -1.174946 -1.047521 0.569440 0.226486 0.501006 0.224664 -0.194456 -1.113171 0.187940 0.056594 -0.090256 0.984855 -0.470689 1.088318 -0.906393 -0.323943 -0.996009 -1.474148 -0.159235 -0.904508 0.565214 0.591347 -0.439081 0.445258 0.303474 0.491145 0.169376 -1.448201 0.114583 -0.571655 -0.284472 1.602579 -0.285370 -0.822751 -0.113829 -0.111202 -0.266355 1.226171 -0.059948 0.327314 1.248669 0.944354 0.396602 -0.966608 0.044348 0.112557 0.297208 0.759480 1.186041 -0.944059 -0.929756 -0.086651 -0.360690 -2.129998 0.074152 0.780360 1.139003 -0.383577 -1.271365 0.798242 -0.908193 1.095965 0.808462 0.858166 0.666725 -0.233140 -0.703365 0.713550 2.260350 -0.793366 0.888103 -1.031141 -1.378037 1.699317 0.049611 0.838365 -0.271811 -0.155790 0.213929 -0.916834 0.330132 1.622031 0.240922 -0.058613 1.326233 -0.062197 -0.491624 -1.900701 -1.747965 0.157941 0.981764 0.370131 2.698784 -1.200613 -0.601913 -0.260526 0.868845 -0.382573 -0.372096 0.253990 -0.574142 0.563378 -2.948398 -2.081502 2.027514 1.260015 0.070129 -0.212022 1.026227 0.307419 -0.279813 -1.399293 -0.975534 0.772679 0.344260 -0.355579 -0.367926 0.232274 -1.497430 0.133472 0.357175 0.438445 1.260555 -0.978758 -0.372272 -1.044510 -1.858431 -1.353549 0.800690 -1.472140 -0.226289 0.409268 -0.088221 -0.151514 0.588434 0.012339 -0.783510 0.018709 -0.697943 -0.334180 -0.063215 1.047407 -0.049179 1.695701 1.879577 -0.030296 0.914785 0.651261 -1.032094 3.605031 -1.079213 0.033442 -0.070006 1.221891 -0.305814 0.661483 1.067268 -0.401528 -0.914324 -1.565252 0.510816 0.136917 0.311216 -2.063046 -0.599594 -1.714833 -0.402870 0.067828 1.890651 -0.036355 2.527763 -0.550579 0.272695 -2.642124 0.173199 0.786339 0.022569 1.219569 0.874648 -1.318409 -1.320169 -0.231030 -0.987017 0.577034 -0.358218 -1.426932 -1.034921 -0.049376 -0.132350 -0.627339 0.535864 1.924034 -0.703135 0.829613 -0.255874 -0.333464 -0.405597 -0.510818 1.224257 0.322675 -0.879966 1.376870 -0.174494 3.054787 0.135318 1.081997 -0.964947 -0.102544 0.069084 -1.060819 -0.778271 1.672407 0.806724 0.432062 0.548934 0.168777 -0.181245 1.008012 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp___GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -1.894604 3.613125 13.794598 9.099976 -6.813915 -7.527843 -3.118009 -7.122325 2.659515 1.986031 6.982053 -2.606286 1.786005 2.836101 -0.170758 -3.790903 2.546889 1.021358 -0.678749 -3.091198 -5.203520 5.078904 5.967664 -9.097030 1.354203 -8.307110 7.424457 4.341333 2.339165 5.527433 0.709996 0.677228 -1.409445 4.849567 -6.471762 -2.085055 -1.779524 2.100503 -2.731433 0.300524 3.955951 3.524584 4.067510 -0.386774 3.665076 6.027676 4.592644 -0.339432 -8.196298 -1.943884 -2.110041 6.795591 -3.178612 3.441162 1.863701 4.390418 0.603947 -7.781557 -0.971271 -9.205606 3.229588 2.392957 -4.821432 0.986461 -7.958629 0.579681 -3.217947 -5.089005 4.671496 -1.603706 2.988028 -1.355487 -0.790410 -5.632130 -3.511391 3.436148 1.039042 2.646653 2.881621 -0.313620 -1.498496 2.319787 -3.741469 -4.522872 -0.118834 -0.412337 1.483854 -0.616821 1.540921 -4.134819 2.451076 -0.952861 -2.459839 6.470996 -4.816827 4.913576 -3.431700 -2.272441 -6.420755 -4.878221 -0.500221 -5.840110 3.814638 6.668543 -5.785654 1.310624 -0.126182 2.377444 1.462285 -8.197865 -1.660729 -3.200736 3.639704 6.658846 -4.607642 -2.844906 -0.896720 -0.931971 0.341753 6.591686 -0.522472 1.438334 7.651662 4.363985 1.682578 -4.879819 0.811357 0.532867 1.467887 4.215218 5.338729 -7.070686 -3.520736 -1.446162 -0.731329 -10.354974 1.237328 1.527904 4.029364 1.895624 -8.772650 2.816208 -3.433570 5.956548 3.188461 6.393611 1.920607 -1.280758 -2.547499 1.628834 11.307914 -4.251932 4.016110 -2.614840 -9.905707 8.447940 -0.833516 5.288704 1.885787 0.977623 2.688441 -6.323040 -0.031175 8.479357 1.621097 1.216750 7.711843 -0.479281 0.677984 -10.060528 -8.416270 2.355725 2.394176 0.677731 13.206473 -6.622039 -2.506793 -2.010260 8.233957 -1.238755 -2.245033 -0.858850 -0.872601 1.846487 -12.477947 -10.607829 6.631894 7.693770 -0.535994 -1.772231 7.188624 0.736880 -1.796396 -4.568371 -6.503797 4.438489 0.086951 4.277770 1.058268 0.301701 -7.867826 1.521554 0.703203 2.310588 6.927185 -7.391379 -6.245355 -1.916021 -9.821661 -6.162116 2.166434 -6.913877 -1.328625 -0.166510 0.667956 0.114211 1.842884 -2.391512 -5.456349 -0.061830 -4.224380 -1.679921 2.241496 5.393043 0.831552 11.563896 5.732005 0.172750 3.179918 2.528015 -3.205518 20.062805 -3.799227 -0.690707 -0.155757 6.768731 -1.721769 2.388557 3.842215 -2.096239 -5.382177 -6.329440 2.938631 -1.359588 1.575680 -12.019177 -3.755536 -9.064261 -2.960898 1.455566 7.705338 1.096414 13.685725 0.380067 0.886397 -12.767941 -0.023162 5.386285 -1.678892 6.198001 4.570018 -6.954277 -9.520697 -1.270340 -2.821539 6.039155 -0.900398 -6.228279 -5.000845 0.092747 1.081608 -0.562932 3.538000 8.751112 -1.474779 1.973064 3.402247 -1.516585 0.436328 -3.936262 4.609728 2.441726 -5.907420 9.277443 -0.773236 15.211580 -0.837216 5.611723 -4.804463 -0.949887 0.587564 -2.051100 -3.287849 7.040127 5.018974 3.793825 0.315994 1.533284 -4.258123 3.738641 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.106436 1.120750 3.455159 2.238657 -1.686811 -2.240474 -0.799562 -2.343758 0.896841 0.455639 1.809138 -0.628642 0.716825 0.581641 -0.113951 -0.594669 0.867146 0.455003 -0.054632 -0.854697 -1.449435 1.876221 1.167967 -2.014872 0.403354 -2.159654 1.848657 1.155300 1.027733 1.544315 0.201546 0.121917 -0.288366 1.197522 -1.635786 -0.604908 -0.535406 0.640830 -1.169007 0.140743 0.745859 0.566438 1.314421 -0.022342 0.844284 1.407333 1.252980 0.036463 -1.790976 -0.439566 -0.805115 1.853347 -0.723780 1.039967 0.112688 0.668704 0.272204 -1.531707 -0.165747 -1.830302 0.587527 0.448772 -1.282065 0.170815 -2.155212 0.173401 -1.036054 -1.505714 0.964908 -0.238484 0.900691 -0.153847 -0.167715 -1.452045 -1.683054 0.831658 0.351666 0.798079 0.841549 0.091463 -0.107981 0.464077 -1.247524 -1.351779 0.457238 0.225743 0.489983 -0.010453 -0.025036 -1.269675 0.464249 -0.135744 -0.290183 1.583775 -1.173618 1.377086 -1.181787 -0.547214 -1.563217 -1.838591 -0.117143 -1.462904 0.961241 1.195071 -1.054598 0.434714 0.220848 0.678157 0.396975 -2.210233 -0.262935 -0.756475 0.514709 2.124358 -0.907063 -0.883090 -0.283922 -0.231182 -0.218100 1.670085 0.053824 0.414628 1.921793 1.188708 0.556803 -1.318603 0.049826 0.274535 0.329866 1.122288 1.418179 -1.695610 -1.069830 -0.226259 -0.317973 -2.949654 0.136254 0.669946 1.203618 0.040540 -1.862333 0.762888 -1.000605 1.464919 0.963464 1.361510 0.665434 -0.339449 -0.756929 0.633749 3.037695 -1.121669 1.101724 -0.927378 -2.345791 2.203603 -0.180050 1.288452 0.179024 0.106726 0.534859 -1.497961 0.154091 2.252886 0.315996 0.200645 1.850688 -0.062317 -0.298118 -2.600990 -2.315048 0.512528 0.968738 0.215898 3.390044 -1.665076 -0.754449 -0.365018 1.953446 -0.325876 -0.560165 0.070848 -0.560474 0.629840 -3.449598 -2.832289 2.072398 2.045097 0.059516 -0.510709 1.678850 0.440742 -0.673870 -1.508383 -1.637575 1.128156 0.137698 0.180382 -0.200242 0.123868 -2.124814 0.397885 0.255885 0.613495 1.714418 -1.479895 -1.034059 -0.873213 -2.512951 -1.715854 0.903730 -1.798167 -0.225166 0.091110 0.080857 -0.113405 0.660848 -0.596552 -1.222252 0.102024 -1.090433 -0.315233 0.388674 1.318195 0.062738 3.003908 1.867885 0.009266 1.060009 0.648823 -1.083176 5.078460 -1.115716 -0.045110 -0.084981 1.671403 -0.571901 0.772153 1.165697 -0.585302 -1.548330 -1.862014 0.525206 -0.125164 0.421918 -2.629399 -1.049667 -2.433677 -0.706095 0.231215 2.290411 0.271330 3.546675 -0.296382 0.398492 -3.390910 0.133320 1.219497 -0.390212 1.803865 1.140288 -1.803312 -2.128633 -0.367479 -1.000836 0.997857 -0.346175 -1.846175 -1.349755 -0.116309 0.194007 -0.416228 0.814664 2.228812 -0.485308 0.800026 0.367899 -0.401514 -0.241999 -0.734002 1.543377 0.473990 -1.530466 2.139105 -0.142357 4.221325 -0.091345 1.491328 -1.271166 -0.288176 0.107986 -0.926214 -0.934526 2.043594 1.388067 0.914043 0.154235 0.355577 -0.787019 1.040862 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp___GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -4.376045 5.595373 28.458598 15.895425 -7.806051 -13.208814 -5.423286 -14.913127 6.622723 3.911812 16.441288 -1.638308 5.340462 8.891902 1.695107 -6.169060 6.842448 -3.657713 0.250839 -5.114555 -3.034012 15.204437 10.300304 -18.289584 0.319480 -21.684126 14.025497 7.057906 4.053102 13.443127 1.858005 1.744097 -0.006466 8.454910 -12.840989 -5.798476 0.003699 4.833615 -3.502936 -3.014745 8.207303 9.713260 8.286027 2.301674 7.545263 9.140446 13.053402 -1.550772 -8.350299 -3.400137 -10.966102 14.710181 -8.014964 6.682949 -1.666274 9.276207 4.527954 -14.242772 -3.527916 -21.694874 4.683694 9.626593 -9.942388 -0.964853 -12.787885 3.533667 -2.431127 -6.746908 5.834895 -0.131292 9.715872 -0.421851 3.562079 -11.425519 -14.545567 6.793170 -4.307315 5.021445 4.867517 -3.134894 -9.691258 4.276745 -7.870290 -9.418166 3.897446 2.859989 0.471548 -1.949537 4.449032 -3.569851 -2.823680 -0.908146 -9.523324 13.863611 -8.591904 13.816570 -1.296552 -2.510175 -8.514054 -3.303294 -1.926592 -14.568494 4.197227 15.899625 -5.424381 1.901679 -4.168007 3.131383 -2.625876 -15.118301 1.757541 -4.602508 -1.493156 8.038965 -10.483705 -2.956255 2.335282 -0.217897 4.474351 14.443632 -4.307534 6.058721 12.951092 9.528931 1.547575 -9.437751 4.109698 3.225024 8.320308 8.133865 9.710561 -14.247617 -7.511455 -2.861397 -0.980203 -21.207079 5.937373 10.548719 10.347885 1.126623 -23.106781 8.007321 -6.739423 15.814327 13.385248 15.833172 4.564802 -0.018888 -6.474500 4.529086 27.500095 -8.638940 11.817622 -8.181335 -12.426322 19.167661 -6.791207 13.227991 1.701411 5.984856 4.614046 -14.122215 -3.083982 18.089821 9.324684 6.631016 16.782595 -1.361965 4.353303 -21.588706 -17.684121 -4.667987 7.825813 1.654023 28.849765 -12.339199 -6.515522 -3.032307 11.130297 -5.357662 -6.943018 -1.002819 -1.402240 3.333053 -31.733124 -21.276321 18.728488 15.355441 -1.521017 -1.506168 15.851528 3.904862 -0.262441 -9.088214 -9.388913 11.019915 -0.323233 7.445938 4.231237 -0.568493 -16.558115 -1.969249 0.451556 3.302925 12.137716 -12.425761 -11.094951 0.171042 -20.206640 -11.147723 3.885450 -16.023101 -11.580095 -0.814635 1.427472 -0.591606 0.574600 -1.281518 -6.454267 7.174865 -11.107318 -6.344487 5.812704 8.560725 4.230581 20.225075 14.944677 2.471602 6.251866 6.433760 -6.440302 37.202829 -7.724855 -5.335188 -0.394441 12.501816 -2.290792 6.014464 5.631985 -3.348106 -11.967672 -14.814575 13.466568 -3.295118 5.974359 -19.711379 -8.752985 -13.032481 -4.997103 6.369268 19.979475 -1.271285 30.436329 -0.406289 3.716370 -29.420197 0.630665 11.841490 -1.159768 6.257052 10.696606 -12.063284 -17.180227 -2.047389 -3.165323 9.430356 -1.684790 -15.488598 -11.409645 -6.160715 -0.460817 -8.208675 7.310104 17.727711 -3.610384 7.897608 5.098973 -4.681204 -1.407884 -4.467235 8.453225 7.133524 -11.258641 18.624031 -6.095340 33.247840 -7.759425 12.595944 -10.416218 3.513367 -2.996130 -2.881994 -4.165899 17.918507 11.334829 5.125035 3.398263 -0.838979 -6.050401 8.826936 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -0.621487 1.433185 6.779310 2.918144 -1.863989 -3.514119 -1.423652 -5.114137 2.059204 1.254056 4.338862 -0.556497 1.745121 1.659831 0.355726 -0.625890 1.836263 -1.095419 0.492510 -1.373104 -0.782431 4.311251 1.714975 -2.871164 0.194287 -5.562786 3.031326 1.521517 1.715366 3.104420 0.685354 0.130319 -0.271982 1.856917 -2.511097 -0.704798 0.404756 1.280582 -1.509938 -0.391668 1.192382 1.535765 2.164364 0.325184 2.317360 1.645602 2.963003 -0.118756 -1.704434 -0.993467 -2.539813 3.842644 -1.910222 1.561192 -0.245263 1.171649 0.611551 -2.822183 -0.863546 -3.895344 0.610458 1.501905 -2.358693 0.040775 -3.008490 1.011226 -1.136636 -1.549493 1.086840 -0.136739 2.446074 0.145814 0.924753 -1.797868 -4.468755 1.570047 -0.649703 1.102357 1.280518 -0.659860 -1.608673 0.827274 -2.164570 -2.652658 1.767643 1.883432 0.227607 -0.560158 -0.073774 -0.541488 -0.895411 -0.287261 -1.464651 3.277748 -2.538905 2.822210 -0.836084 -0.829789 -2.167404 -2.175102 -0.253830 -3.455284 1.215972 2.855732 -0.894864 0.350170 -0.859676 0.873832 -0.746966 -3.759817 0.587538 -1.075812 -0.230208 2.927528 -2.451875 -0.791049 -0.229951 -0.185425 0.634248 3.113441 -0.466062 1.502764 3.289686 2.481823 0.909925 -2.496701 0.189617 1.298257 2.081401 1.919677 2.106629 -3.530588 -1.848461 -0.300502 -0.656571 -5.551862 0.552185 2.435936 2.673606 -0.305465 -4.309638 1.387026 -1.643450 3.764016 3.416645 3.007405 1.088319 0.191924 -1.787383 1.355245 6.482900 -2.016466 2.918440 -2.206412 -2.429572 4.098532 -1.770435 3.000740 0.441319 1.413554 0.540660 -3.275748 -0.675645 4.254059 2.037947 1.736185 2.969159 0.110158 0.252522 -5.038625 -4.739170 -1.062284 2.501176 0.209403 6.282015 -3.036307 -1.925365 -0.403391 3.074435 -0.805357 -1.941358 0.410867 -1.072933 1.101125 -7.029709 -5.146599 4.875571 4.442571 0.344640 -0.492783 3.580539 1.480345 -1.614055 -2.410864 -2.254833 2.751541 -0.235570 -0.526344 0.075156 0.051136 -4.091245 -0.585636 -0.164559 0.959984 2.661058 -1.751912 -1.177528 0.112514 -4.360328 -2.495303 1.799753 -3.369937 -2.688542 -0.316830 0.379217 -0.072536 0.657834 -0.912256 -1.015171 2.087493 -2.858942 -0.998233 1.633078 1.812124 0.696713 5.274448 3.884921 0.466542 1.996116 0.968508 -1.745042 7.839860 -1.743749 -0.927875 -0.179144 2.296906 -0.791395 1.553118 1.656722 -1.029786 -3.467879 -3.672538 2.297790 -0.681005 1.694021 -3.149143 -2.828848 -3.522785 -0.992098 1.356951 4.999499 0.059536 7.235719 -0.520934 1.295693 -7.062976 0.300604 2.426450 -0.358161 1.964550 2.174749 -2.796185 -3.483522 -0.555005 -1.492182 0.545634 -0.445444 -3.838358 -2.770842 -2.188592 0.789364 -2.052325 1.252219 3.626466 -0.488147 2.468988 0.942667 -1.087204 -1.114619 -0.278143 2.686241 1.242345 -2.807387 4.159461 -1.059427 8.651994 -1.778414 2.769968 -2.254234 0.779285 -0.725477 -1.310972 -0.988531 4.483367 3.180603 1.355117 0.133606 -0.453235 -1.239601 2.110253 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp___GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/lexicographic-rank-of-a-string.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.112473 0.850619 2.339233 1.544020 -1.016759 -0.933573 -0.446713 -1.402113 0.491983 -0.029845 0.886404 -0.421366 0.261640 -0.006061 -0.191509 -0.478686 0.644161 0.146574 0.076202 -0.554871 -0.102567 1.030922 0.562523 -1.903750 0.265075 -1.752774 1.320407 0.812292 0.778782 0.845661 0.043528 -0.002509 -0.057757 1.111339 -1.028584 -0.946551 0.228331 0.347030 -1.005850 0.165645 0.311876 1.459657 0.553261 -0.383181 0.432269 1.196473 0.789740 0.173015 -1.149830 -0.048391 -0.290713 1.295757 -0.421674 0.915460 0.375483 0.380907 0.053488 -1.294927 -0.236617 -1.253829 0.419010 0.773938 -0.230607 0.061446 -1.461174 0.064821 0.070028 -0.953597 0.923737 0.415746 0.550071 0.189497 0.269248 -0.994113 -0.557519 1.027716 0.394653 1.109361 0.520000 -0.417553 0.384214 0.321364 -0.401009 -0.850705 -0.170079 0.337832 0.531175 -0.099183 0.693863 -0.850686 0.489066 -0.318947 -0.652669 1.114504 -0.362800 0.624602 -1.167907 -0.104158 -0.861864 -0.769468 -0.432787 -1.063597 0.685048 1.162725 -0.638848 0.552633 0.454069 0.648021 0.376576 -0.941158 -0.105824 -0.297839 0.542308 1.503753 -0.321192 -0.560844 -0.188389 0.019623 -0.262800 1.236904 -0.468699 0.461978 1.327242 1.235247 0.210013 -0.883997 0.000552 0.027729 0.202163 1.017068 1.420096 -1.703908 -0.722709 -0.460214 -0.054143 -1.527391 0.362066 -0.039334 0.904917 -0.203870 -1.610150 0.536784 -0.772107 1.542453 0.413592 0.651048 0.376304 -0.296272 -0.437106 0.996444 2.005471 -0.712627 0.502324 -0.836940 -1.075524 0.882804 0.198064 0.861854 -0.008672 0.056127 0.422978 -1.212958 0.107929 1.482254 0.513265 0.294214 1.417719 -0.196743 0.103060 -1.971727 -1.150253 0.359827 0.105280 -0.418850 2.503382 -0.929180 -0.941594 -0.595458 1.138515 -0.328315 -0.099230 -0.086500 -0.514783 0.468790 -1.360267 -1.794746 1.469471 1.569650 -0.250865 -0.298482 1.236045 0.221094 -0.542318 -0.919470 -0.576632 0.667369 -0.019332 0.100806 -0.241522 0.439164 -1.200337 -0.132855 0.541705 0.447475 1.433910 -0.550419 -1.311646 -0.008934 -1.946315 -1.216694 0.470492 -1.003253 -0.096745 0.339932 0.149359 0.280382 0.695519 -0.658296 -1.132702 0.262524 -0.649414 -0.462310 0.136010 1.354915 0.132070 1.082920 0.814675 0.572584 1.207729 1.022351 -0.917158 3.216390 -0.213171 0.039337 0.172657 0.680423 -0.465848 0.580357 0.453903 -0.452472 -0.774792 -1.688731 0.565402 -0.340516 0.385513 -2.114418 -0.543869 -0.942236 -0.631197 0.520341 0.835971 0.171105 2.342060 -0.026530 -0.105528 -2.285674 -0.090826 0.843624 -0.049161 0.976705 1.088706 -1.229654 -2.017137 -0.188615 -0.565630 0.166796 -0.594878 -1.262102 -0.977487 0.075086 0.638977 -0.000369 0.605329 2.177017 0.090848 0.447648 0.025404 -0.278045 -0.097738 -0.972268 0.514894 0.385351 -1.122944 1.148412 -0.213819 2.735181 -0.349756 0.733691 -1.190344 -0.581369 0.421247 -0.493171 -0.500047 1.503877 0.493329 0.684735 0.354767 0.019162 -0.864618 1.236794 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -0.834367 1.204601 4.840843 3.872094 -2.395031 -2.919780 -1.176333 -2.213174 1.373720 0.379137 2.562141 -0.196117 0.765084 1.206495 0.019955 -1.622027 0.930897 0.491465 -0.891079 -1.139328 -1.442367 2.402482 2.488312 -4.326034 0.488243 -2.651100 2.438546 1.747654 0.831561 2.769425 -0.137839 0.114550 -0.384423 1.886672 -2.683905 -1.190743 -0.913763 0.734668 -1.040038 -0.656498 2.061848 0.934637 2.186889 0.351691 1.246328 1.798167 1.739269 -0.353876 -2.668477 -0.672008 -1.560360 2.490227 -1.521896 1.882629 -0.214331 1.971300 0.766049 -2.501342 -0.278703 -4.169059 1.130016 1.124922 -1.690527 -0.464034 -2.580033 0.133087 -0.628917 -2.230677 1.443620 -1.170639 1.601327 -0.467796 -0.177170 -2.566280 -1.927095 0.880478 -0.012928 1.263470 1.250977 0.417878 -1.001096 0.375038 -1.376660 -1.538733 0.095362 -0.886261 0.436836 0.436930 0.366758 -1.630100 0.839632 0.086513 -0.973123 2.272692 -1.579270 2.414876 -0.735189 -0.662768 -1.664031 -1.120692 -0.115881 -2.153932 1.071549 2.275085 -1.713576 0.603302 0.082798 0.844481 0.188030 -3.118684 0.000273 -0.706533 -0.197051 1.837177 -1.597440 -1.159984 0.848134 -0.197864 0.111898 2.657832 -0.172636 0.701344 2.117121 1.665265 0.848299 -2.083178 0.604874 0.131981 1.085396 1.780723 1.903726 -1.778957 -1.357474 -0.142985 -0.463457 -4.165059 0.857647 1.627803 2.335198 1.153365 -3.931862 1.403240 -1.599983 2.065336 1.440838 2.807985 1.103965 -0.417261 -1.601409 0.613084 4.692720 -1.687408 2.055354 -0.901604 -3.338782 3.614172 -0.670733 2.070296 0.018724 0.208122 1.559360 -2.307993 -0.200179 3.510886 0.840202 0.581079 2.739724 -0.267349 -0.481928 -4.424073 -3.454162 -0.401720 1.600636 0.882324 4.838059 -2.357382 -0.997339 -0.746597 2.776973 -1.340499 -0.895734 -0.215339 -0.357785 1.069253 -5.920049 -3.892996 3.472574 3.010395 -0.131547 -0.116786 2.584686 0.399111 0.428779 -1.761651 -2.118547 1.410337 0.766016 1.841868 0.443893 -0.477731 -2.767134 0.196355 0.759277 0.592217 1.636455 -2.987470 -1.865571 -0.405108 -3.474351 -2.419223 0.589648 -3.500983 -0.641920 0.265597 0.122029 -0.293787 0.396209 -0.135459 -2.043395 0.276752 -1.513269 -0.641395 0.348797 1.899924 0.644800 3.464255 2.660004 -0.303234 1.364636 1.227409 -1.610420 7.986976 -2.505800 -0.319590 0.016978 3.184583 -0.255064 1.247584 1.380222 -0.876659 -1.276986 -2.667461 1.240496 -0.123123 1.016743 -4.936571 -1.553217 -2.874488 -0.924420 0.587489 2.849499 -0.417689 5.350474 -0.321822 0.632487 -5.607143 0.030257 2.549461 -0.369817 1.884007 1.890874 -2.454100 -4.445999 -0.499174 -0.871186 2.887033 -0.437311 -2.449881 -1.629500 -0.365631 0.059034 -1.207399 1.600496 3.240630 -1.286571 1.246795 0.253754 -0.637864 0.027563 -1.546109 1.442585 1.205874 -2.143998 3.427531 -0.341569 5.499112 -0.299026 2.619333 -1.995065 0.379837 -0.426499 -0.998011 -1.383303 3.166996 1.982985 1.248044 0.546851 0.645986 -1.442087 1.398133 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -0.823461 1.870780 6.612924 5.606996 -2.611479 -3.768472 -1.411892 -3.354383 2.312190 0.697095 2.920325 -0.865827 1.562306 0.554754 -0.635997 -2.008659 2.093970 0.548013 -0.249889 -1.471207 -1.917411 5.011821 2.896014 -5.606278 0.343366 -4.637089 3.945776 2.094138 2.013891 4.080875 0.043346 0.488599 0.356109 2.621019 -3.726021 -1.957573 -1.193144 1.262562 -2.029951 -0.822981 1.894518 1.526868 3.372389 0.350081 1.171982 2.388981 2.681446 -0.376580 -3.261098 -0.529999 -2.038888 3.061167 -1.492180 2.412913 -0.172101 1.303660 1.978700 -3.069975 -0.216721 -4.682867 1.001432 1.633324 -2.099390 -0.239027 -4.146976 0.315515 -1.286983 -3.090095 1.617485 -0.499924 1.867423 0.646213 0.638026 -4.026959 -3.644944 2.439160 0.497644 1.552822 1.645793 0.868350 -0.949826 0.718855 -2.520845 -2.681903 0.789097 -0.194768 0.742481 0.912745 0.773497 -3.108207 0.661647 -0.196536 -1.368550 3.227250 -0.950505 3.478183 -1.227935 -0.805201 -2.303371 -2.691625 -0.893781 -3.135920 1.229659 3.074214 -1.773550 1.225821 0.462368 1.045422 0.514376 -3.747319 0.511892 -1.639292 -0.180769 3.261663 -1.605274 -1.698329 -0.230148 0.104905 0.038882 3.893083 -0.973471 1.361952 3.329785 2.215723 0.760378 -2.708851 1.181881 0.498863 0.927513 1.716075 3.013922 -3.003924 -2.266905 -0.675002 0.109947 -5.386991 0.432007 2.376862 2.617807 0.111313 -4.823276 2.563096 -1.756020 3.406781 2.399674 2.573731 1.591918 -0.497211 -1.571752 1.661505 6.564372 -2.237257 2.008823 -2.473202 -5.014275 5.504543 -0.512009 3.022144 -0.871879 0.195581 1.459887 -3.086679 1.306703 4.960373 0.602961 -0.037787 4.175482 -0.617809 0.279380 -5.843534 -4.783918 0.414496 1.747081 1.206751 8.323401 -3.097923 -1.314444 -0.927418 2.270759 -0.760439 -0.660943 -0.055987 -1.008887 1.161904 -9.231818 -6.199884 5.320655 3.273174 -0.142447 -0.376912 2.948712 0.534099 0.878866 -3.123784 -2.639758 2.149974 0.768411 1.184804 0.073507 0.407417 -3.938336 0.105749 0.846110 0.678415 3.921477 -4.437452 -2.523934 -2.928423 -5.387033 -3.847907 1.431810 -4.286309 -1.227974 0.400084 0.336616 -0.171474 1.344094 0.499913 -2.445060 -0.244457 -1.535446 -1.561971 -0.009995 2.975578 0.158437 4.062091 4.980911 -0.053656 1.661580 2.100988 -2.074000 11.258199 -3.186691 -0.672867 -0.046449 3.764525 -0.283644 1.926174 2.252040 -1.000673 -1.691735 -3.891908 2.493382 0.016558 0.582884 -8.040506 -1.715752 -4.259251 -1.432729 0.552460 4.286417 0.069893 7.580075 -1.042113 0.204878 -7.634337 0.169873 2.689294 0.202661 3.435482 2.809719 -4.088759 -4.233722 -0.835213 -1.796072 3.767806 -1.132208 -4.001220 -2.508585 0.352295 -0.123965 -1.609562 2.429266 5.542341 -1.682814 1.744831 0.338077 -0.744767 -1.048936 -1.963580 2.123045 1.280829 -2.099006 4.069424 -1.036878 6.897002 -0.552723 3.080066 -3.119402 0.511830 -0.230957 -2.060798 -1.809818 4.522644 1.810645 0.944185 1.434595 0.433186 -1.284831 2.947747 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.023259 0.699692 2.300834 0.868246 -0.803600 -1.536538 -0.595850 -2.423935 0.994201 0.551545 1.542421 -0.415409 0.907437 0.116351 -0.074142 0.044848 0.861092 -0.209804 0.347139 -0.620637 -0.606775 1.983405 0.339039 -0.448599 0.212767 -1.918993 1.045024 0.517535 1.054387 1.230853 0.264742 -0.060777 -0.192375 0.691590 -0.690642 -0.024465 0.138447 0.550836 -1.000735 0.090133 0.032194 -0.040000 1.125491 0.000840 0.886706 0.510655 0.737458 0.108278 -0.768662 -0.420644 -0.631879 1.266024 -0.601720 0.684034 0.024482 -0.289060 0.201590 -0.610668 -0.157235 -0.675265 -0.039383 -0.079051 -0.725979 0.170380 -1.235761 0.316764 -0.850229 -0.837711 0.263815 -0.211339 0.793141 0.291220 0.270743 -0.329277 -1.967203 0.677791 0.319555 0.401904 0.599090 0.061837 0.015658 0.158179 -1.047154 -1.240245 0.948527 1.007356 0.338276 0.043539 -0.659712 -0.470552 -0.094754 -0.101620 0.090555 1.129839 -0.794660 0.761671 -0.697084 -0.475651 -0.922342 -1.885008 -0.067837 -1.097500 0.579869 0.421283 -0.275507 0.151655 -0.071711 0.460178 -0.105690 -1.405892 0.338513 -0.517403 -0.003098 1.711401 -0.648121 -0.506810 -0.646265 -0.147926 -0.082651 1.020333 0.146406 0.480191 1.243892 0.948435 0.623115 -1.062717 -0.299453 0.555727 0.538454 0.571177 0.793735 -1.198874 -0.791486 0.111783 -0.490966 -2.176898 -0.444688 0.725242 1.055061 -0.440541 -0.784029 0.433521 -0.689986 1.138816 1.145648 0.505611 0.458399 0.022091 -0.757336 0.696526 2.101961 -0.758183 0.932449 -0.915312 -1.019819 1.358717 -0.411138 0.899907 -0.041724 0.185143 -0.049912 -0.988536 0.189322 1.574668 0.354863 0.389807 0.568723 0.173685 -0.449398 -1.754205 -1.984960 -0.002708 1.214142 0.144500 2.103781 -1.144888 -0.752397 -0.013866 1.244035 0.054792 -0.659560 0.441512 -0.758077 0.576909 -2.505330 -2.001899 2.009365 1.798017 0.528551 -0.244721 0.889091 0.684001 -1.096999 -1.137743 -0.889288 0.928205 -0.104068 -1.385390 -0.665041 0.235161 -1.456141 -0.067717 -0.079042 0.426793 1.030932 -0.353956 0.281676 -0.502388 -1.369008 -0.999695 1.063861 -1.014455 -0.598942 -0.017098 0.105261 0.035224 0.667944 -0.415522 -0.299264 0.488104 -0.909632 -0.118894 0.413642 0.728255 -0.054750 1.963924 1.706418 -0.061041 0.816722 0.148457 -0.808919 2.638829 -0.833328 0.012511 -0.097978 0.693584 -0.313757 0.675566 0.985043 -0.483276 -1.303766 -1.414487 0.155267 0.017105 0.534792 -0.995302 -1.262153 -1.710740 -0.222481 0.180985 1.844056 0.239512 2.529310 -0.478878 0.528659 -2.462513 0.185527 0.562345 -0.114561 1.257464 0.610668 -1.168606 -0.928965 -0.292941 -1.157605 -0.341039 -0.282607 -1.354371 -0.913179 -0.643545 0.615254 -0.614653 0.299261 1.153874 -0.145250 1.073960 0.155178 -0.317145 -0.905250 0.093930 1.367112 0.073953 -0.892992 1.237144 -0.013935 3.080441 -0.260881 0.858710 -0.744718 0.103778 -0.083694 -0.972502 -0.533629 1.689836 1.172443 0.500901 -0.128914 -0.103568 -0.228778 0.889571 -PE-benchmarks/lexicographic-rank-of-a-string.cpp___GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/Nearly_sorted_Algo.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -2.017599 3.111331 14.348456 4.724453 -7.191953 -10.209655 -4.168971 -15.723321 6.898826 5.600824 11.218347 -1.767697 5.286090 -0.283328 -0.200102 2.188710 5.767895 -2.351698 -0.655875 -5.336208 -5.461873 9.883620 2.383090 -1.808809 3.337926 -11.142006 7.269107 1.491210 3.962701 6.921652 4.008786 -0.047185 -1.768215 5.154145 -1.029889 6.152298 1.185522 3.635318 -4.053178 0.818107 2.665803 -2.303027 6.992174 2.326707 9.259112 3.942106 4.653516 -0.604505 -8.590835 -3.740247 -4.355266 8.405919 -6.282896 4.686207 -0.621943 0.942149 0.794682 -5.839229 -0.548084 -5.845702 -1.106959 -2.132303 -6.292020 0.533069 -6.967608 1.570072 -4.531591 -3.872053 -0.117715 -3.064417 5.245445 0.185835 -0.995612 0.595548 -10.004964 2.275255 2.784087 1.301027 6.057656 -0.292882 -1.611469 -1.821100 -5.931154 -8.403870 8.385507 3.759043 2.646170 1.635119 -4.535557 -1.951347 -2.045358 -0.340116 1.898627 8.188811 -8.843826 1.731639 -0.533260 -4.904881 -6.304921 -10.379549 1.222463 -7.053475 3.540590 3.804456 -3.894012 0.808583 -2.934455 2.923744 -2.154428 -6.789451 1.735411 -4.138332 0.247382 8.972382 -4.667042 -4.794210 -3.819038 -1.547892 1.887428 6.062690 2.564981 1.539961 10.760859 5.297576 7.940404 -6.978573 -1.863976 2.723502 4.383872 3.636058 3.783810 -6.692310 -4.774667 2.358990 -4.731465 -13.885799 -3.982532 3.853146 8.042056 0.194673 -6.035912 1.799112 -3.547278 5.902769 6.705354 3.926757 2.533653 0.757163 -6.558365 2.095386 13.101273 -4.756901 6.218990 -4.409332 -5.076964 7.807421 -3.519448 4.035660 1.707390 -0.536372 -0.829730 -6.527788 -0.477422 10.229472 2.000511 1.752057 0.746036 3.239163 -4.101622 -10.284546 -14.183773 -1.813707 8.412618 2.516527 12.298363 -8.792367 -3.272711 -1.435400 9.662451 -0.273215 -5.157212 2.522839 -4.544943 4.195942 -14.500817 -12.012492 15.438622 13.080930 5.795870 -1.436466 6.257520 4.217253 -9.398788 -5.967151 -6.552730 5.197006 1.490782 -7.344440 -3.440908 1.368060 -10.385352 -2.174360 -1.701980 2.792979 3.882083 -2.428901 3.125760 -0.751811 -5.556961 -4.541987 5.022446 -5.990739 -4.684129 -1.236223 1.046576 0.895852 4.191633 -3.269564 -2.372447 2.058948 -6.970262 -1.030730 3.753112 6.489493 1.933108 13.992777 12.263487 -2.816584 5.211426 -1.042339 -4.978670 13.421948 -4.751368 0.302793 -0.356442 4.402240 0.765820 2.978028 7.497130 -3.836988 -7.365721 -8.317482 -0.239188 0.605196 4.075332 -5.008715 -7.273419 -12.893403 -0.289817 0.144456 11.993849 0.693778 16.139321 -1.638714 3.585905 -15.971008 1.030446 6.377457 -1.622972 6.055619 3.881257 -7.553969 -7.670290 -2.248621 -7.800351 -2.565938 0.014522 -3.266617 -6.176281 -5.520228 6.211848 -4.849456 1.792487 6.279457 0.371680 7.406964 2.150042 -1.042394 -5.161135 1.201978 8.980253 1.430419 -5.984371 8.593363 1.769972 20.787178 -1.603597 5.779892 -3.941190 1.325501 -1.282472 -6.186223 -4.745330 9.591281 9.917172 4.400908 -0.188940 0.069860 -2.067667 7.437295 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&, std::vector >&&) = -2.451083 0.677432 8.907639 2.086401 -3.918349 -8.248694 -2.831821 -13.583212 6.193058 5.145598 10.595320 -0.247563 6.534647 -2.875549 0.817334 2.464118 5.496420 -3.061244 0.837896 -3.868221 -2.436346 10.403147 1.180831 1.546198 1.787858 -7.791109 4.006777 1.583017 3.556146 5.169317 2.851710 0.234877 -1.350860 2.652382 -0.633529 5.237445 0.678945 3.626157 -2.775121 -0.720770 1.220886 -3.548005 5.918765 1.227721 7.742471 -0.036996 4.435961 -0.713221 -5.061803 -4.643472 -3.038455 5.418871 -4.986997 2.963329 -1.555583 -2.481578 1.694778 -1.154063 -0.296093 -4.614837 -0.732179 -3.081268 -4.898717 0.291501 -3.655522 2.237728 -3.514354 -2.498452 -1.082858 -2.709403 4.435662 0.953639 -0.396009 1.909116 -9.864848 1.201634 2.319097 -0.436528 4.263438 1.308690 -1.864806 -2.672065 -5.270701 -6.776378 9.187038 4.597456 2.094763 2.202759 -7.184351 0.676152 -2.080706 0.290117 2.679025 4.982240 -6.773554 0.146357 2.683652 -3.953343 -3.740665 -7.896533 1.506091 -5.406822 1.672066 2.456631 -1.265459 -0.007153 -5.052812 1.403173 -4.724290 -5.748741 2.433150 -4.027735 -1.290289 6.706617 -4.627263 -2.354207 -4.583732 -0.206932 2.404575 3.819657 2.681418 2.066595 7.890413 4.008849 4.799700 -5.980862 -2.198125 3.520358 5.357912 2.038927 0.857488 -4.032781 -4.078736 2.776800 -5.427166 -10.593840 -5.595483 4.980999 6.731860 -0.936669 -3.466170 2.996256 -2.230001 5.027683 7.855144 1.244983 1.419860 2.156257 -5.998820 2.519132 8.424524 -3.589561 5.370636 -2.390542 -2.703551 6.597993 -4.063247 2.506180 2.024956 -0.391817 -2.558407 -4.050047 0.002257 7.274450 1.961764 3.127501 -2.771689 3.611509 -2.716958 -6.982024 -12.783266 -2.118549 8.328552 3.956322 8.757249 -6.284403 -2.726832 0.810946 5.898797 -0.142695 -6.059468 2.717020 -4.386087 3.445336 -12.594227 -8.989683 13.405348 10.208341 6.414126 0.203871 4.582827 4.707826 -7.096400 -3.470140 -3.967747 4.936618 1.122641 -9.674214 -2.793611 1.761550 -8.162396 -3.439700 -2.640259 1.638200 0.196650 -0.624958 6.015906 -1.422824 -2.352658 -1.147890 4.298837 -3.188933 -4.245700 -2.417872 0.243975 1.471262 3.105009 -2.504935 0.989863 1.521302 -6.302361 -0.759690 2.302027 4.045184 2.761710 11.124135 11.116746 -3.466678 3.640265 -2.628372 -3.907482 6.416692 -3.756952 0.053424 -0.621800 3.084929 2.204604 2.465583 6.620356 -2.881548 -5.012678 -6.712098 -0.684632 2.900303 3.841179 -1.755767 -6.167148 -10.941256 0.628863 0.074764 10.701207 -0.514021 12.285131 -3.514727 3.034854 -12.076927 1.113022 2.651377 -1.285330 4.441705 1.615856 -4.566995 -3.822810 -2.411693 -6.882404 -4.753344 0.415534 -2.556216 -4.364596 -5.956051 5.452875 -6.349981 0.602825 1.928057 0.542303 7.056847 1.828565 -0.666317 -5.764413 3.917177 6.308424 0.925432 -4.308064 5.842814 1.328870 15.626191 -2.059247 4.219690 -2.843486 3.931489 -2.710204 -6.321192 -2.827877 7.662181 9.699224 2.050338 -0.483353 0.214175 -0.028857 6.154643 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = -2.407352 0.607784 6.050352 0.669233 -2.643213 -2.988891 -1.574950 -7.025539 3.635332 2.799242 5.595109 0.275849 3.630765 -1.942507 0.000952 0.156338 3.488686 -1.916235 0.773169 -1.929326 0.030788 4.554973 0.963563 0.275218 1.428024 -4.485489 2.444139 -0.567274 2.115570 3.475252 1.669254 0.139819 -1.878600 1.540217 1.583041 2.777913 1.865965 1.886521 -1.753217 -0.487669 0.253584 -2.671063 2.579964 0.830942 4.733159 -0.782525 0.627796 -0.550305 -3.235482 -2.364645 -0.834628 2.108941 -3.293552 1.531253 0.999242 -1.112871 -0.193765 -0.675382 -0.135875 -3.661614 -0.219079 -2.891879 -1.513042 0.548563 -1.969168 1.361639 -2.461302 -0.608322 -1.065422 -2.542309 1.769248 0.948612 1.428182 2.337397 -4.844839 0.845330 1.290934 -0.059749 2.571574 1.345669 -1.134530 -1.677223 -2.198727 -3.877767 3.915889 2.554331 0.535728 0.689793 -3.445852 1.300810 -0.671684 0.052337 0.752311 2.905144 -4.802147 -0.052703 0.340945 -2.182817 -0.677786 -5.286624 0.507841 -3.301244 0.714414 1.654982 -2.205846 -0.196561 -3.336555 1.417520 -2.035677 -2.415644 2.331383 -1.806318 -1.345053 3.709566 -2.742715 -1.132371 -3.086882 -0.027971 2.304292 1.971387 0.179931 1.883657 2.883747 2.390714 3.154761 -3.157226 -0.695478 2.787183 2.800234 0.476280 0.635143 -2.397150 -1.788418 1.809723 -2.727246 -5.598080 -3.199170 1.909817 3.618933 0.487739 -2.192453 -0.547962 -1.585175 2.737526 4.041675 1.161304 0.484997 1.478508 -3.236928 0.991533 3.896182 -2.165106 2.877603 -0.249785 -0.659072 2.868030 -2.464599 1.839621 -0.528963 0.645566 -0.587814 -2.640004 -1.033233 4.038490 1.243260 1.872696 -2.597447 1.421327 -1.208465 -4.574900 -6.715095 -1.802269 5.356111 1.887656 3.215610 -3.362234 -1.380451 0.038126 3.960923 0.849888 -3.360329 1.352306 -1.985121 2.045688 -6.175121 -5.033445 6.868994 6.132376 2.628459 0.197815 1.483756 2.067437 -5.139168 -2.110773 -2.423054 2.257426 -1.078715 -4.898668 -2.380268 1.166784 -4.378397 -1.780536 -0.618638 0.819863 1.624846 -0.163089 3.260834 2.052750 -0.144642 -0.971111 2.826504 -1.185763 -3.690273 -1.267315 0.412289 2.136151 1.855677 -1.383441 0.106181 1.627617 -3.290093 -1.080688 1.482030 2.129445 0.793305 5.702483 5.203334 -1.038502 -0.194454 -1.268186 -2.646501 3.706186 -2.022659 0.195569 -0.340459 0.258641 1.163177 1.405725 3.608178 -1.725549 -3.196867 -3.557194 -1.498605 0.091377 3.002106 -1.720112 -5.343126 -4.383164 1.361374 0.554582 4.201487 0.009995 6.968944 -1.396483 1.371951 -6.191330 0.243222 3.033559 -0.703990 3.008814 1.076037 -2.529850 -2.809296 -1.404547 -3.917998 -1.413808 -0.113735 -0.516311 -1.872245 -2.655793 4.627632 -2.228609 0.194282 0.586696 0.665234 5.032358 2.342346 -0.350197 -3.498048 1.980717 2.442398 0.525227 -2.063297 4.037647 1.247447 7.466421 -1.490016 0.952440 -1.122197 1.636367 -1.322487 -2.890797 -1.491996 4.403637 5.514345 2.156305 -1.241071 -0.627421 -1.037903 3.103043 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = -0.012959 0.156312 0.712636 0.261358 -0.184353 -0.796802 -0.149176 -1.135055 0.515639 0.267990 0.773704 -0.031766 0.634973 -0.321003 0.064732 0.196077 0.451708 0.069930 0.078006 -0.228994 -0.098526 0.885129 -0.095508 -0.015038 0.117669 -0.448567 0.246607 0.339201 0.436952 0.454863 0.152309 0.001396 -0.079427 0.157547 -0.262362 0.157452 0.035200 0.281956 -0.474245 -0.192750 -0.104182 -0.262708 0.481591 0.009164 0.480016 -0.075664 0.380727 0.001104 -0.194617 -0.266154 -0.301091 0.539533 -0.224671 0.286023 -0.207492 -0.356999 0.174128 0.102884 0.055443 -0.345005 0.068879 -0.113298 -0.388020 -0.067026 -0.352262 0.120213 -0.204440 -0.355026 -0.051661 -0.186499 0.295851 0.051057 -0.003254 -0.064819 -1.012126 0.047139 0.209637 0.024284 0.338176 0.221176 0.097371 -0.279246 -0.397738 -0.467018 0.802341 0.418592 0.207289 0.335696 -0.698025 -0.085968 -0.095881 0.048021 0.300086 0.258215 -0.366420 0.155635 0.012602 -0.180429 -0.171569 -0.729731 0.160720 -0.360485 0.096542 0.019986 0.183949 0.131859 -0.166801 0.222215 -0.303793 -0.528096 0.228123 -0.286332 -0.245204 0.649986 -0.263325 -0.233827 -0.277193 0.013675 -0.012040 0.325359 0.174420 0.214243 0.364429 0.301797 0.333630 -0.524290 -0.197204 0.396070 0.370142 0.283799 0.032727 -0.334359 -0.283573 0.212994 -0.526482 -0.972816 -0.395012 0.439429 0.532424 -0.196119 -0.281331 0.297205 -0.228441 0.360044 0.552513 0.072621 0.144534 0.196794 -0.440838 0.211557 0.603593 -0.311649 0.428843 -0.140932 -0.206861 0.319108 -0.144906 0.159014 -0.015669 -0.127044 -0.028557 -0.214462 0.074987 0.586906 0.190410 0.251576 -0.231156 0.239010 -0.487798 -0.650549 -0.955529 -0.161082 0.707753 0.226408 0.734678 -0.407062 -0.418717 0.098642 0.460947 -0.229829 -0.373886 0.279976 -0.495009 0.378230 -1.018981 -0.753689 1.001499 0.667045 0.518380 -0.058506 0.330735 0.350529 -0.500360 -0.313274 -0.232185 0.274626 0.141301 -0.982463 -0.319728 0.047350 -0.695287 -0.160000 -0.057905 0.102095 -0.116997 0.160880 0.597940 -0.303286 -0.236793 -0.166870 0.403341 -0.293764 -0.096143 -0.163518 -0.009983 0.061266 0.293151 -0.330141 0.037411 0.249337 -0.464836 -0.011427 0.004045 0.229103 0.172295 0.926273 0.857748 -0.182276 0.477903 -0.130182 -0.455784 0.718387 -0.306524 0.063091 -0.059241 0.287932 0.098881 0.267636 0.510143 -0.257205 -0.395969 -0.689675 -0.315149 0.351365 0.345012 -0.004646 -0.467030 -0.762054 -0.003017 -0.071575 0.867690 -0.092786 0.937624 -0.433268 0.292375 -0.943186 0.119260 0.139511 -0.170676 0.413368 0.138943 -0.386740 -0.430692 -0.132766 -0.537468 -0.593262 -0.070578 -0.419179 -0.301289 -0.506168 0.333355 -0.546714 0.024415 0.205878 -0.009072 0.563162 -0.152998 -0.019257 -0.401262 0.328663 0.467767 0.012127 -0.428238 0.324219 0.132421 1.371999 -0.084912 0.392913 -0.329777 0.316269 -0.248359 -0.546519 -0.257790 0.669202 0.779146 0.168094 -0.021892 0.112840 -0.020365 0.450162 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = -1.357053 0.148182 3.917448 0.075582 -1.135865 -3.428179 -1.190766 -5.975925 2.548651 2.061598 4.963426 -0.117320 3.087292 -1.226943 0.885504 1.132550 2.533460 -1.693812 0.820950 -1.379395 0.078705 4.428363 0.438300 1.250616 0.542318 -3.040137 0.498827 0.951214 1.699462 2.051802 1.012468 -0.223659 -0.824526 0.716355 -0.326984 2.120027 1.062819 1.320199 -1.616781 -0.527459 -0.449673 -1.562458 2.434149 -0.273382 3.469067 -0.874570 1.926653 -0.139448 -1.833364 -2.146663 -1.136836 2.958018 -1.905371 0.984255 0.217702 -1.616104 0.272753 -0.096747 -0.451121 -2.043614 -0.275260 -1.213571 -1.726369 0.191462 -1.002662 1.066573 -1.355054 -0.675240 -0.161105 -1.490596 1.665677 0.354383 0.362356 1.476796 -4.341914 0.632659 1.023870 -0.172022 1.274961 0.655801 -0.349687 -0.954602 -1.674504 -2.640597 3.695872 2.622745 0.811818 0.655801 -4.048758 1.333793 -0.795978 0.059390 0.878304 1.631372 -3.056308 0.103033 1.237908 -1.756038 -1.567240 -3.459157 0.617553 -2.231143 0.560983 0.784581 0.195078 -0.351780 -3.050820 0.744571 -2.499020 -2.669141 1.387126 -1.382557 -1.096437 2.848828 -2.701726 -0.233779 -2.218282 0.161266 0.901315 1.378673 0.882426 1.340428 2.195427 1.853080 1.908215 -2.627720 -1.102575 1.714137 3.002362 0.826929 0.086253 -1.613989 -1.429252 1.324435 -2.861401 -4.592038 -2.793345 2.450984 2.914079 0.016509 -1.326015 0.596845 -0.947735 2.731148 3.445113 0.447583 0.330727 1.200034 -2.552639 1.121444 2.956246 -1.758775 2.846040 -0.386809 -0.654637 2.120374 -1.982787 1.328912 1.008718 0.216360 -1.039087 -1.628920 -0.477064 2.862498 1.769480 2.082201 -2.208841 1.351625 -1.027016 -3.113584 -5.733433 -1.121206 3.528767 1.231046 2.922271 -2.285733 -2.145905 0.554680 2.726818 -0.401827 -3.235519 1.306888 -2.133572 1.572506 -4.984205 -3.606556 5.550201 4.913116 2.814756 0.384983 2.136408 2.126856 -3.944035 -1.131340 -1.347366 2.346414 -0.302977 -5.262389 -1.322755 0.657078 -3.412281 -1.260752 -1.450650 0.654270 -0.576485 0.831021 3.352447 0.330455 -0.903522 0.364563 1.905915 -1.060314 -2.145522 -1.256064 0.034366 1.072951 1.358003 -1.728557 0.660041 1.430675 -3.415667 -0.338144 0.934704 1.416931 1.360907 4.944423 4.347155 -0.881506 2.119667 -1.494053 -1.951571 1.880089 -1.587846 0.009739 -0.609364 0.795222 0.757401 1.107223 2.624370 -1.158226 -2.683426 -2.790366 -0.809888 1.127266 2.267084 0.209358 -3.864800 -4.104673 0.528565 0.555994 4.356545 -0.369532 5.057230 -1.661710 1.575108 -5.383704 0.479357 0.534434 -0.496400 1.737254 0.339376 -1.736666 -1.985677 -0.752499 -3.105605 -2.919924 0.344548 -1.555796 -1.454082 -3.492713 3.362257 -2.815944 -0.256533 0.084663 0.392121 3.615216 1.685269 -0.588008 -2.539648 2.049353 2.678757 0.208437 -1.757787 2.558850 0.754165 7.056085 -1.137080 1.516885 -1.099321 1.859807 -0.976327 -2.427243 -0.861929 3.328990 4.811749 0.852879 -1.002326 -0.123630 -0.353247 2.092887 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -1.582054 0.138307 4.494964 0.694172 -1.498737 -4.045075 -1.343163 -6.674038 3.065249 2.271154 5.577153 0.061212 3.578892 -1.604257 0.907764 1.086075 3.019423 -1.710503 0.761479 -1.618607 -0.018832 5.394564 0.645497 0.804142 0.594883 -3.430336 0.878733 1.242266 2.019392 2.536717 1.160666 -0.137853 -0.855406 0.921813 -0.611019 2.187213 0.829311 1.559895 -1.945893 -0.862489 -0.187640 -1.772264 3.023177 -0.233902 3.853795 -1.076625 2.480179 -0.245483 -2.215857 -2.407808 -1.545809 3.368246 -2.200836 1.278474 0.039021 -1.714114 0.621520 -0.133047 -0.447699 -2.605180 -0.206677 -1.254666 -2.128382 0.067099 -1.352896 1.179355 -1.515157 -0.949244 -0.154585 -1.691603 1.938358 0.426033 0.383150 1.117280 -5.142718 0.712315 1.111288 -0.127100 1.590931 1.097053 -0.499706 -1.228470 -2.041329 -3.004640 4.245178 2.680382 0.872108 0.954899 -4.476008 1.175055 -0.859981 0.151509 0.937894 1.846500 -3.484528 0.322318 1.437612 -1.935195 -1.677113 -3.768308 0.692277 -2.600482 0.589191 1.054933 0.117106 -0.233624 -3.276233 0.747033 -2.816940 -3.135444 1.519050 -1.681416 -1.378412 3.300454 -2.986549 -0.444855 -2.408936 0.285411 1.000495 1.735126 0.917125 1.587166 2.642573 2.130946 2.146033 -3.098690 -1.037123 2.008235 3.376649 1.016099 0.169945 -1.756859 -1.728076 1.456504 -3.088331 -5.366767 -3.065147 3.015577 3.414570 0.094140 -1.787670 0.898354 -1.089918 3.196778 3.972416 0.582416 0.506920 1.386070 -2.954741 1.361425 3.631760 -1.989347 3.177934 -0.565372 -1.043011 2.874311 -2.226395 1.556619 0.942217 0.160014 -1.087068 -1.904416 -0.350150 3.424082 1.800112 2.185707 -2.229379 1.489441 -1.116828 -3.806088 -6.654851 -1.238181 4.066449 1.769776 3.852887 -2.705836 -2.304218 0.624590 2.866861 -0.546037 -3.601696 1.493957 -2.475621 1.873698 -6.307661 -4.366668 6.589644 5.400673 3.066074 0.480049 2.534297 2.356070 -4.052393 -1.423052 -1.663837 2.687578 -0.008543 -5.577805 -1.256535 0.768660 -4.060098 -1.526733 -1.417229 0.687562 -0.477968 0.450500 3.611681 -0.071021 -1.224635 0.142005 2.237722 -1.450787 -2.370807 -1.403330 -0.005170 1.146187 1.595746 -1.691570 0.617995 1.352145 -3.727197 -0.543875 0.818067 1.747995 1.545551 5.534779 5.339276 -1.119203 2.418971 -1.485658 -2.315297 2.844357 -2.014865 -0.057943 -0.650681 1.186614 1.013059 1.336366 3.067994 -1.352551 -2.802871 -3.342141 -0.704213 1.410323 2.559037 -0.562985 -4.144897 -4.832108 0.485404 0.560179 5.047563 -0.535598 6.027480 -2.144080 1.646837 -6.458625 0.545126 0.855860 -0.465087 2.150787 0.536989 -2.138418 -2.337794 -0.937969 -3.449155 -2.743078 0.308985 -1.888814 -1.798949 -3.792452 3.607311 -3.423367 -0.081737 0.501218 0.124703 4.124683 1.628446 -0.615127 -2.822664 2.145296 2.814274 0.434104 -2.034942 3.095160 0.683906 8.078121 -1.265244 1.890423 -1.456417 2.339469 -1.298439 -3.019915 -1.090845 3.926228 5.419460 0.895159 -0.829423 -0.019225 -0.405027 2.572533 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = 0.064682 0.291785 0.815649 0.328348 -0.225665 -0.821424 -0.184347 -1.108266 0.481294 0.211939 0.715858 -0.075078 0.574853 -0.188389 0.031582 0.213651 0.452981 0.126717 0.083522 -0.242878 -0.201128 0.938164 -0.018671 -0.093579 0.107225 -0.502057 0.236604 0.352157 0.531452 0.465330 0.099048 -0.010710 -0.014794 0.226347 -0.354152 0.024301 -0.024159 0.294801 -0.560051 -0.116154 -0.119306 -0.210369 0.517368 0.013853 0.381326 0.025490 0.421071 0.012724 -0.233138 -0.203634 -0.364188 0.642786 -0.219269 0.326609 -0.209599 -0.311187 0.171280 0.072057 0.044884 -0.315142 0.018866 -0.043732 -0.370238 -0.067251 -0.438558 0.113716 -0.265565 -0.445607 -0.017648 -0.058027 0.330711 0.110030 0.039507 -0.131807 -1.045465 0.144531 0.219855 0.134991 0.334116 0.187808 0.138904 -0.175553 -0.411918 -0.516570 0.747490 0.384745 0.242506 0.284049 -0.603911 -0.188135 -0.076975 0.054355 0.230294 0.310615 -0.336761 0.295401 -0.136378 -0.167178 -0.263634 -0.822694 0.047982 -0.403065 0.124993 -0.000333 0.201424 0.151828 -0.146588 0.228350 -0.211054 -0.601317 0.195439 -0.245064 -0.322635 0.706325 -0.245495 -0.223910 -0.165732 0.026082 -0.109566 0.369695 0.159644 0.228059 0.372230 0.336789 0.299493 -0.504471 -0.131720 0.289396 0.320948 0.318472 0.191955 -0.341987 -0.357672 0.158616 -0.432795 -1.035703 -0.288028 0.507743 0.512187 -0.211978 -0.300897 0.280329 -0.269076 0.410616 0.525103 0.111365 0.200993 0.081747 -0.398761 0.269937 0.715230 -0.372500 0.483113 -0.200734 -0.288043 0.443544 -0.174256 0.253004 -0.076602 -0.127434 0.005215 -0.269515 0.062718 0.663395 0.199886 0.184079 -0.045356 0.135537 -0.460510 -0.726934 -0.924231 -0.120431 0.658043 0.141292 0.800897 -0.394040 -0.450113 0.102492 0.453287 -0.246889 -0.327603 0.259248 -0.473905 0.369399 -1.100577 -0.835022 1.018110 0.704947 0.404006 -0.074189 0.366267 0.373920 -0.474488 -0.456765 -0.256784 0.289839 0.106268 -0.952530 -0.414480 0.067843 -0.700931 -0.049822 -0.025072 0.116832 -0.001511 0.142976 0.484286 -0.335729 -0.405673 -0.245400 0.401468 -0.388588 -0.098297 -0.076150 -0.005039 0.017497 0.309666 -0.299975 -0.057994 0.243555 -0.485728 -0.029959 -0.036148 0.293642 0.146214 0.949232 0.890756 -0.109886 0.540914 -0.013748 -0.486748 0.893284 -0.378236 0.060556 -0.066022 0.349899 -0.051595 0.319645 0.511015 -0.239698 -0.482360 -0.724137 -0.222012 0.290716 0.271104 -0.081712 -0.487846 -0.718196 -0.041775 -0.008628 0.868232 -0.087662 0.993191 -0.421845 0.282431 -1.035807 0.133553 0.133771 -0.150542 0.518957 0.230247 -0.443860 -0.468035 -0.161129 -0.508925 -0.493535 -0.093424 -0.549698 -0.299818 -0.435383 0.253144 -0.542311 0.072004 0.302943 -0.048308 0.580843 -0.134252 -0.064581 -0.417476 0.264588 0.612007 0.009474 -0.416939 0.364419 0.090316 1.455513 -0.068513 0.425986 -0.382079 0.153421 -0.110845 -0.519724 -0.282854 0.753472 0.726853 0.182897 0.008175 0.103096 -0.019279 0.447619 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = -0.480129 0.329307 1.814331 0.308005 -0.715721 -1.322828 -0.421520 -2.209833 1.062070 0.720766 1.668093 0.040553 1.198572 -0.560953 0.073156 0.194168 1.089236 -0.284492 0.178096 -0.621148 -0.084677 1.463319 0.153783 -0.016812 0.426689 -1.216794 0.649647 0.218638 0.724235 1.072201 0.457472 0.026863 -0.490682 0.476379 0.086583 0.612828 0.451694 0.560082 -0.777700 -0.155091 -0.070771 -0.632889 0.932776 0.219189 1.295786 -0.051437 0.367977 -0.018099 -0.840336 -0.687416 -0.361159 0.851902 -0.795129 0.579984 0.036621 -0.411729 0.098012 -0.102227 0.054340 -1.041586 0.019423 -0.613958 -0.575485 0.057082 -0.698407 0.305301 -0.636084 -0.490683 -0.263373 -0.674949 0.569585 0.182277 0.231407 0.406491 -1.705801 0.180278 0.434325 0.105010 0.812446 0.382849 -0.192691 -0.540581 -0.747241 -1.143354 1.286791 0.782865 0.325766 0.454397 -1.231836 0.116102 -0.177252 0.031410 0.390684 0.765040 -1.202283 0.108782 0.076201 -0.592723 -0.354213 -1.624712 0.239150 -0.854098 0.230985 0.271458 -0.257052 0.021559 -0.903744 0.468973 -0.630081 -0.814355 0.690550 -0.592765 -0.492971 1.248245 -0.742626 -0.413318 -0.814728 -0.040653 0.452974 0.720890 0.144113 0.462027 0.788882 0.733030 0.858360 -1.021927 -0.279683 0.740299 0.834231 0.342764 0.256476 -0.716793 -0.600563 0.534349 -1.027257 -1.866330 -0.867720 0.688253 1.146950 -0.017470 -0.687022 0.113415 -0.592406 0.803210 1.166649 0.363742 0.240907 0.356475 -0.998056 0.343080 1.245562 -0.706088 0.962717 -0.115383 -0.292696 0.771810 -0.559851 0.517328 -0.109693 -0.096519 -0.135916 -0.608650 -0.167736 1.266524 0.483981 0.541485 -0.619779 0.439743 -0.645817 -1.403550 -2.070345 -0.473177 1.593739 0.505479 1.205874 -0.996658 -0.595848 -0.022741 1.187560 -0.084514 -0.953343 0.451691 -0.732206 0.686404 -1.988044 -1.535473 2.165718 1.818002 0.922502 -0.032329 0.541357 0.633116 -1.379946 -0.707062 -0.609400 0.589127 -0.186887 -1.700797 -0.744290 0.281981 -1.415273 -0.411552 -0.159282 0.285783 0.260235 0.113002 1.087584 0.187552 -0.250493 -0.372627 0.735694 -0.459613 -0.779982 -0.267169 0.065202 0.474779 0.561325 -0.527752 -0.041050 0.549643 -1.060193 -0.230641 0.269551 0.689385 0.335731 1.874661 1.596905 -0.293992 0.382640 -0.316403 -0.940115 1.370682 -0.659015 0.173736 -0.107553 0.357265 0.306689 0.471971 1.108723 -0.543347 -0.908468 -1.246975 -0.559866 0.320250 0.855461 -0.362571 -1.469591 -1.476347 0.303709 0.034344 1.517528 -0.147982 2.098114 -0.548333 0.511449 -1.950140 0.158815 0.694501 -0.285696 0.852400 0.375596 -0.854771 -0.971505 -0.360318 -1.274584 -0.723719 -0.040991 -0.381642 -0.562971 -0.806527 1.129821 -0.837918 0.052913 0.330347 0.068443 1.429835 0.378208 -0.075438 -0.952193 0.556904 0.954258 0.087813 -0.744326 1.042365 0.390866 2.545635 -0.265154 0.539067 -0.436179 0.474765 -0.336099 -0.973499 -0.571956 1.421433 1.677942 0.576280 -0.205250 -0.023908 -0.174652 0.967955 -PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -0.188250 0.700739 2.678107 2.012465 -1.569275 -1.976499 -0.684922 -2.320511 1.271242 0.358131 1.526002 -0.152019 0.758092 -0.074738 -0.169579 -0.375987 0.819573 0.252802 -0.350457 -0.750484 -0.859693 1.980696 0.694398 -1.900984 0.379499 -1.784806 1.279942 1.050447 0.947276 1.290629 0.209849 -0.036140 -0.405690 0.999194 -1.317573 -0.306644 -0.152219 0.495030 -1.284148 -0.448159 0.684567 0.216223 1.455562 -0.110142 1.091172 0.531861 1.106657 0.050874 -1.446387 -0.432503 -0.830934 1.747646 -0.604043 1.190382 0.118456 0.413526 0.387870 -1.214614 -0.124817 -1.517251 0.325633 0.252691 -0.906577 -0.167040 -1.449271 0.062640 -0.231321 -1.320541 0.710633 -0.696331 0.884558 -0.115612 0.008254 -1.174178 -1.754922 0.498038 0.363632 0.700000 0.864396 0.677933 0.096577 -0.141232 -1.011067 -1.075667 0.632966 0.343045 0.364859 0.431751 -0.521098 -0.896526 0.416601 -0.205977 0.022039 1.157890 -1.239151 0.861118 -0.673223 -0.483689 -1.104509 -1.390378 0.114206 -1.057124 0.732237 0.715721 -0.717002 0.491735 0.423046 0.539971 0.051326 -1.601781 0.156265 -0.661219 0.165113 1.853169 -0.705458 -0.915177 -0.129612 -0.204737 -0.406658 1.327677 0.028042 0.380227 1.467694 1.060476 0.909755 -1.348350 -0.143687 0.539557 0.715785 0.996758 0.929257 -1.295859 -0.675867 0.174770 -0.490653 -2.671536 -0.218208 0.765107 1.510650 0.216040 -1.532686 0.539753 -0.804621 1.370835 0.712482 0.946148 0.604792 0.007255 -1.003245 0.506272 2.599897 -0.735774 1.026128 -0.770475 -1.575316 1.562064 -0.211805 1.071032 -0.016243 -0.092619 0.430537 -1.209831 0.231646 1.855032 0.226870 0.134741 0.785305 0.220592 -0.947245 -2.530026 -2.482145 -0.005062 1.136514 0.490452 2.941364 -1.518217 -1.029362 -0.427978 1.738239 -0.645247 -0.547193 0.418972 -0.934095 0.896665 -2.831116 -2.390688 2.511072 2.107823 0.381623 -0.180181 1.624946 0.183076 -0.813419 -1.259326 -1.144756 0.688445 0.732376 -0.438850 -0.157938 -0.000990 -1.817120 -0.158462 0.370707 0.422242 0.929202 -0.865738 0.025053 -0.617281 -1.681064 -1.348538 0.912953 -1.526682 -0.148490 0.163069 0.204889 -0.111876 0.871295 -0.467833 -1.015927 0.125385 -0.904590 -0.135240 0.180349 1.057104 0.108069 2.214606 2.027053 -0.232702 1.575323 0.389115 -1.109284 4.124171 -1.314384 0.012136 -0.050728 1.326662 -0.093965 0.664600 1.074563 -0.728831 -0.782307 -1.692729 0.170117 0.010971 0.643844 -2.413937 -1.209948 -2.045545 -0.532027 0.017770 1.558841 -0.002392 3.039730 -0.665397 0.368153 -3.575293 0.113544 1.260851 -0.141139 1.262345 0.864167 -1.491292 -2.354672 -0.242951 -1.070800 0.372574 -0.388413 -1.537475 -1.000391 -0.672059 0.752568 -0.798363 0.595397 2.089179 -0.547840 1.031920 -0.383992 -0.163324 -0.381120 -0.572280 0.955126 0.316313 -1.235768 1.743882 -0.026676 3.816629 -0.046010 1.272400 -1.034069 0.410935 -0.304064 -1.326026 -0.837723 1.822513 1.261547 0.669234 0.084126 0.263866 -0.878955 1.131287 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.480421 1.289354 5.260885 1.740781 -2.476244 -4.129824 -1.604590 -6.091923 2.647807 1.755092 4.173034 -0.546610 2.241491 -0.107519 0.019396 0.839352 2.302195 -0.822211 0.160219 -1.928659 -1.816850 4.535840 0.927858 -0.646343 1.034938 -4.309371 2.331363 0.950713 2.039272 2.792805 1.147986 -0.078946 -0.656259 1.781911 -0.891038 1.508736 0.309043 1.352716 -2.124235 0.347969 0.615004 -0.704854 2.914881 0.512469 3.081043 1.221869 1.890928 0.096201 -2.650271 -1.468540 -1.716853 3.265350 -2.025354 1.794034 -0.331997 -0.109393 0.398253 -1.678468 -0.355911 -1.870173 -0.443701 -0.648828 -2.221710 0.236669 -2.681746 0.718991 -1.874742 -1.718283 0.111048 -0.983446 2.093600 0.317350 -0.115312 -0.090070 -4.470573 0.962015 0.936106 0.811100 1.974049 0.165911 -0.438002 -0.376235 -2.450958 -3.145398 3.019536 1.904987 0.978362 0.510376 -2.118002 -0.839992 -0.645052 -0.085692 0.740702 2.737875 -3.012176 0.980141 -0.547784 -1.663237 -2.351369 -4.150258 0.335770 -2.499665 1.315601 0.952896 -0.840394 0.195815 -0.992550 1.024745 -0.875296 -2.962386 0.794095 -1.363829 -0.324436 3.877454 -1.718091 -1.463252 -1.526099 -0.480383 0.193481 2.390547 0.898150 0.793150 3.589039 2.240166 2.373565 -2.624564 -0.825517 1.116576 1.805454 1.373712 1.628995 -2.431945 -1.966707 0.839669 -1.768444 -5.365005 -1.573092 1.854562 3.029808 -0.344306 -1.920170 0.849533 -1.536136 2.506799 2.717596 1.176167 1.076295 0.139759 -2.457872 1.326440 5.071997 -1.818869 2.532021 -1.848454 -2.025742 3.297837 -1.430396 1.757432 0.436680 -0.131505 -0.533691 -2.243746 0.077571 3.735851 0.836877 0.858511 0.393603 1.003270 -1.483657 -3.937642 -5.434179 -0.550900 3.249984 0.914492 4.712634 -3.076091 -1.507051 -0.334610 3.371106 -0.121601 -2.029431 1.137651 -1.953932 1.589655 -5.828096 -4.551529 5.851254 5.069394 2.060995 -0.353340 2.428396 1.831019 -3.297169 -2.478646 -2.271139 2.137803 0.383991 -3.415778 -1.472515 0.549412 -3.834175 -0.713377 -0.588077 1.095276 1.501437 -0.574716 1.435955 -0.683136 -2.499275 -1.811325 2.143716 -2.314977 -1.587140 -0.201255 0.192775 0.137506 1.612069 -1.174109 -0.645033 0.935461 -2.645676 -0.227269 1.140542 2.183796 0.556107 5.065913 4.686407 -0.814769 2.291127 -0.253469 -2.072184 5.266874 -2.004800 0.227431 -0.261912 1.707481 -0.022227 1.288340 2.687192 -1.324837 -2.859423 -3.249738 0.102607 0.455132 1.556049 -1.814502 -3.133830 -4.732425 -0.195509 0.219738 4.687681 0.196720 6.064611 -1.146433 1.433194 -6.274657 0.538895 1.859503 -0.402854 2.499101 1.361077 -2.708071 -2.709696 -0.827147 -3.086881 -1.204302 -0.215865 -2.132538 -2.252071 -2.105308 2.197693 -2.075500 0.552024 2.439441 -0.199014 2.988762 0.554843 -0.576783 -2.223253 0.503974 3.439847 0.362172 -2.196422 3.084647 0.448263 7.858913 -0.554819 2.264979 -1.499823 0.615729 -0.429670 -2.696903 -1.604580 3.887971 3.660351 1.311362 -0.097177 -0.090013 -0.472250 2.462241 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base() = -0.031557 0.261391 0.788075 0.207840 -0.280656 -0.827791 -0.133904 -0.998481 0.439554 0.232680 0.670280 0.023161 0.597806 -0.226664 0.047639 0.108569 0.500517 0.108815 0.049662 -0.291299 -0.082332 0.692415 -0.052429 -0.079743 0.167050 -0.439118 0.279433 0.344294 0.415657 0.526691 0.159757 -0.011579 -0.214739 0.212470 -0.213306 0.042444 0.107749 0.240429 -0.528840 -0.075459 -0.121077 -0.169561 0.529205 0.077509 0.436315 0.082598 0.199622 0.095098 -0.250389 -0.280620 -0.189618 0.417869 -0.188197 0.356725 -0.137984 -0.253912 0.127528 0.092300 0.129582 -0.383402 0.100075 -0.121014 -0.273309 -0.044374 -0.394016 0.032353 -0.268216 -0.444699 -0.084120 -0.293659 0.239712 0.003225 0.005539 -0.063344 -0.947187 0.033680 0.215825 0.131866 0.388669 0.215945 0.012081 -0.269980 -0.389076 -0.480325 0.545292 0.380456 0.210734 0.367815 -0.677631 -0.183199 -0.007165 0.045773 0.287717 0.251664 -0.343888 0.156693 -0.100519 -0.184888 -0.185278 -0.788041 0.152798 -0.262096 0.116695 -0.066509 0.124112 0.047713 -0.269893 0.219781 -0.224948 -0.388580 0.318754 -0.283177 -0.264595 0.660819 -0.223970 -0.264258 -0.298569 -0.045761 0.042846 0.383273 0.102597 0.106506 0.234183 0.305856 0.336633 -0.508596 -0.155594 0.302469 0.289890 0.266103 0.147341 -0.271418 -0.276786 0.227270 -0.576903 -0.923911 -0.284875 0.337504 0.520684 -0.153384 -0.244901 0.190728 -0.383491 0.302859 0.469045 0.178875 0.197268 0.095003 -0.435363 0.168487 0.557765 -0.315800 0.440703 -0.075127 -0.221015 0.277466 -0.081539 0.226573 -0.090226 -0.222470 -0.014473 -0.131576 0.053105 0.591597 0.222398 0.225967 -0.151149 0.173257 -0.479650 -0.619981 -0.902529 -0.146043 0.711419 0.230219 0.647315 -0.416029 -0.334059 -0.009510 0.504283 -0.207987 -0.362187 0.255752 -0.373190 0.348096 -0.985814 -0.671755 0.955038 0.773947 0.444178 -0.114833 0.237232 0.255763 -0.448898 -0.395116 -0.205229 0.164956 -0.031114 -0.877837 -0.347464 0.095959 -0.651563 -0.061506 0.016480 0.134210 0.053955 0.106803 0.527638 -0.216624 -0.216713 -0.293951 0.306708 -0.258684 -0.099904 -0.025755 -0.007445 0.086651 0.251553 -0.272447 -0.093916 0.286869 -0.444795 -0.024466 -0.030440 0.298241 0.148979 0.871085 0.653734 -0.117058 0.368756 -0.067030 -0.504910 0.864889 -0.364674 0.156660 -0.028056 0.338737 0.087919 0.263867 0.477482 -0.263227 -0.328802 -0.660895 -0.355747 0.307079 0.332913 -0.120264 -0.564411 -0.728880 0.101965 -0.125780 0.790456 -0.140954 0.921179 -0.332711 0.281167 -0.843293 0.117875 0.176376 -0.168553 0.394867 0.199195 -0.434603 -0.448196 -0.117861 -0.620987 -0.422124 -0.020025 -0.324866 -0.222838 -0.293368 0.268758 -0.419180 0.031729 0.236443 -0.118663 0.578229 -0.102486 -0.010708 -0.360072 0.197134 0.518829 -0.012214 -0.394897 0.345648 0.177667 1.220278 0.021798 0.378079 -0.230773 0.192733 -0.117578 -0.531676 -0.350253 0.682765 0.691362 0.250473 -0.001616 0.098562 0.021485 0.411119 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.146490 0.399447 1.111589 0.346211 -0.687989 -0.840134 -0.169787 -1.237189 0.604336 0.376392 0.753417 0.211607 0.788916 -0.333981 -0.144230 -0.282985 0.705845 0.178613 0.131126 -0.391357 -0.159074 0.874169 -0.085342 -0.128824 0.185857 -0.589475 0.820482 0.186529 0.679909 0.929882 0.241548 -0.056052 -0.603931 0.308141 0.039272 -0.121567 0.061802 0.406856 -0.666906 -0.084491 0.026337 -0.543058 0.782758 0.167925 0.483298 -0.022832 -0.127476 0.079152 -0.426557 -0.389740 -0.075773 -0.028601 -0.356659 0.549050 0.024377 -0.431983 0.072862 0.381630 0.313978 -0.463721 0.200396 -0.583645 -0.119422 0.024675 -0.652136 -0.018381 -0.792070 -0.620757 -0.206307 -0.675007 0.185424 0.062622 0.270376 -0.063948 -1.353207 0.084834 0.285853 0.156538 0.611546 0.628199 -0.071216 -0.423728 -0.605757 -0.711771 0.342030 0.526409 0.070475 0.368601 -0.854958 -0.312328 0.240879 0.186060 0.371403 0.401602 -0.546674 0.286204 -0.683100 -0.174499 0.070912 -1.468545 0.134832 -0.393175 0.216950 -0.072468 -0.366045 -0.066035 -0.219042 0.209683 -0.038052 -0.471338 0.507648 -0.409019 -0.260606 0.978392 -0.156400 -0.517902 -0.560216 -0.098349 0.288987 0.382547 0.063352 0.101656 0.188480 0.352048 0.641313 -0.758205 -0.138519 0.621862 0.083677 0.193128 0.171745 -0.187931 -0.291680 0.345084 -0.644308 -1.179619 -0.312957 0.272474 0.627200 -0.249687 -0.031873 -0.081745 -0.717824 0.243097 0.672578 0.376042 0.363060 0.170572 -0.529407 0.169555 0.587694 -0.289359 0.380525 -0.049877 -0.422525 0.570965 -0.033219 0.411454 -0.483520 -0.102737 -0.001487 -0.268385 0.084852 0.844400 -0.045153 0.284548 -0.167139 0.128137 -0.590013 -0.856668 -1.071135 -0.105582 1.275676 0.655607 0.616954 -0.644001 -0.072748 0.176004 0.642339 0.194364 -0.498578 0.430964 -0.246423 0.483888 -1.539971 -0.939616 1.059930 0.984280 0.299878 -0.265375 -0.056535 0.237302 -0.576926 -0.740720 -0.549980 0.165628 -0.320352 -0.982561 -0.529383 0.282582 -0.778067 0.030322 0.356078 0.135686 0.725695 -0.287281 0.543838 -0.149724 -0.029441 -0.762288 0.791186 -0.275845 -0.276197 -0.006498 0.011228 0.229607 0.361039 -0.078951 -0.215287 0.276161 -0.295549 -0.057535 -0.078180 0.278202 -0.148219 1.024258 0.695395 -0.250710 -0.270050 0.004360 -0.633329 1.565198 -0.693530 0.211090 0.076642 0.393017 0.098395 0.440294 0.703882 -0.417834 -0.403566 -0.843443 -0.648418 0.160589 0.469925 -0.668089 -0.884512 -0.953834 0.400213 -0.315068 0.832224 -0.026395 1.339406 -0.414596 0.290200 -0.833661 0.074453 0.504394 -0.185278 0.914725 0.264627 -0.577022 -0.207266 -0.271616 -0.843965 0.103828 -0.024842 -0.249156 -0.245757 -0.012605 0.203823 -0.207968 0.093669 0.186744 -0.417865 0.900412 -0.142536 -0.011819 -0.591607 0.191004 0.481246 0.019979 -0.447981 0.736434 0.256493 1.210857 0.071823 0.242263 -0.149475 0.220909 -0.231284 -0.849612 -0.527093 0.926964 0.739998 0.614666 -0.161736 0.090958 0.013472 0.439482 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = 0.175506 0.453271 0.349613 0.681678 -0.794967 -1.155788 -0.073755 -0.692322 0.069548 -0.113630 0.317735 0.020662 0.354086 -0.114127 -0.008978 0.122770 0.443985 0.530432 -0.062363 -0.359537 -0.949759 0.385182 -0.045453 -0.315103 0.171362 0.392772 0.669902 0.504093 0.203049 0.355578 0.193710 -0.015394 -0.231869 0.264368 -0.181395 -0.168369 -0.475646 0.364011 -0.461443 0.093576 0.093863 -0.740097 0.703775 0.115902 -0.029410 0.379801 0.540722 0.277590 -0.508190 -0.072217 -0.479117 0.207457 -0.305320 0.365879 -0.457530 -0.345997 0.520527 0.247870 0.196024 -0.121800 -0.080375 -0.540595 -0.503605 -0.083767 -0.656634 -0.066828 -0.494462 -0.861617 -0.076169 0.189442 0.215131 0.018017 -0.268769 -0.172644 -0.793335 -0.176361 0.290008 0.336686 0.455006 0.283919 0.275285 -0.262135 -0.658799 -0.362040 0.452335 -0.359709 0.489902 0.295689 -0.485233 -0.370360 0.187113 0.215822 0.455774 0.085078 0.038251 0.351148 -0.394903 -0.083147 -0.558975 -1.105334 0.198198 -0.045777 0.266895 -0.200840 -0.174567 0.007958 -0.189982 0.031454 -0.111349 -0.679195 -0.130174 -0.516317 -0.145525 0.516407 0.034875 -0.363711 0.019500 -0.155317 0.006598 0.228219 0.444404 -0.071431 0.289531 0.300303 0.154007 -0.422551 -0.242738 -0.240856 -0.038634 0.386155 0.327275 0.077249 -0.455660 0.174607 -0.461729 -0.823093 0.034426 0.464338 0.350570 -0.112552 -0.139093 0.312818 -0.496104 -0.074354 0.221843 0.492466 0.287105 -0.098563 -0.220067 0.163601 0.297169 -0.212716 0.366574 0.031014 -0.341091 0.587333 0.184989 -0.081323 0.001083 -0.505919 -0.141575 0.069702 -0.034691 0.434682 0.109320 -0.243471 0.515675 0.113657 -0.725431 -0.531988 -0.390895 0.391633 0.978493 0.384892 0.546434 -0.576153 0.046478 0.309270 0.099436 -0.241458 -0.243647 0.091158 -0.143774 0.387827 -1.012639 -0.602865 0.623911 -0.157804 0.097808 -0.110549 -0.087417 0.161856 -0.258278 -0.590920 -0.470397 0.073569 0.024034 -0.513747 -0.403864 0.112445 -0.661158 0.326902 0.291278 0.299203 0.322460 -0.310405 0.162818 -0.779771 -0.232285 -0.500041 0.172674 -0.290353 0.174887 0.274249 -0.195963 0.082748 0.092252 0.209853 -0.172792 -0.366639 -0.264328 -0.011899 -0.267229 0.375104 0.014804 1.158178 0.657391 -0.330598 0.114067 0.116749 -0.474531 1.042116 -0.355032 0.398472 0.052231 0.877829 0.042713 0.145103 0.898715 -0.238921 -0.355716 -0.587194 -0.519544 0.528810 0.165149 -0.425623 0.109564 -1.021626 0.049160 -0.145698 0.824921 -0.340691 0.524895 -0.265536 0.186645 -0.422534 0.131301 0.016479 -0.214741 0.530649 0.193264 -0.428721 0.156021 -0.261669 -0.512222 0.036753 -0.024503 0.089628 -0.232936 0.397287 -0.679531 -0.235068 -0.049438 0.182999 -0.547964 0.188964 -0.279642 0.065784 0.051474 -0.038799 0.878387 -0.030939 -0.393957 0.565300 0.237542 1.209775 0.617282 0.286605 -0.158096 -0.205856 0.163598 -0.379916 -0.429565 0.575475 0.402747 0.128694 0.331307 0.462979 0.346139 0.341858 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.042060 0.344728 0.839529 0.806161 -0.677208 -1.285460 -0.167754 -1.109592 0.576409 0.177112 0.652978 0.176176 0.719251 -0.382591 -0.104216 -0.042051 0.619177 0.388072 -0.105033 -0.452524 -0.602734 1.058308 0.030577 -0.571512 0.221741 -0.374401 0.895348 0.570763 0.485126 0.859311 0.214550 0.109038 -0.231627 0.401038 -0.393148 -0.118064 -0.401187 0.424679 -0.590427 -0.129731 0.295248 -0.378850 0.938548 0.260124 0.354196 0.307463 0.421261 0.135338 -0.428275 -0.301423 -0.410023 0.217744 -0.326205 0.550659 -0.574127 -0.186319 0.513047 0.099454 0.257262 -0.509411 0.165689 -0.239088 -0.606131 -0.126270 -0.802711 -0.038550 -0.446657 -0.857984 -0.146654 -0.332456 0.326361 0.001471 -0.244466 -0.585600 -1.309909 -0.097218 0.269372 0.215437 0.646842 0.502857 -0.123282 -0.429921 -0.800826 -0.603442 0.671601 0.091065 0.309306 0.618758 -0.629424 -0.668092 0.086205 0.218816 0.488274 0.354496 -0.254983 0.328595 -0.215054 -0.172378 -0.283448 -0.980669 0.299578 -0.272640 0.232642 -0.045647 -0.132742 0.121656 -0.002108 0.112415 -0.167685 -0.628959 0.145098 -0.588549 -0.186147 0.874336 -0.011837 -0.571589 -0.306113 -0.149268 0.093743 0.587657 0.229397 -0.025475 0.591733 0.376792 0.348335 -0.720611 -0.154774 0.272758 0.118308 0.384815 0.265807 -0.226778 -0.469511 0.231459 -0.564264 -1.231736 -0.193699 0.456398 0.603010 -0.315418 -0.378197 0.593833 -0.566769 0.170458 0.603567 0.345733 0.398881 0.060991 -0.539794 0.268273 0.895479 -0.271177 0.384694 -0.297356 -0.674967 0.901822 0.025016 0.194252 -0.205874 -0.481748 -0.095362 -0.098662 0.355455 0.800496 -0.111181 0.014246 0.307552 0.192519 -0.621320 -0.792646 -1.047304 0.044004 1.081498 0.739692 1.245735 -0.731765 -0.002127 0.071066 0.374345 -0.168104 -0.277111 0.286191 -0.376646 0.499361 -1.746935 -0.990124 1.220390 0.501418 0.433203 -0.124711 0.207657 0.203088 -0.014968 -0.635671 -0.483394 0.197162 0.290075 -0.570782 -0.203733 0.119641 -0.917503 -0.034764 0.249189 0.208397 0.375540 -0.499696 0.339902 -0.939757 -0.372831 -0.804629 0.405777 -0.513742 0.082293 0.097975 -0.117873 -0.084287 0.264390 0.091083 -0.199375 -0.146223 -0.237610 -0.020496 -0.201612 0.400572 0.043553 1.038623 1.080272 -0.473967 0.199087 0.092509 -0.540289 1.674364 -0.596322 0.268707 0.111090 0.882836 0.266185 0.342781 0.797398 -0.349563 -0.111352 -0.882177 -0.287505 0.624696 0.283550 -0.849185 -0.208782 -1.251368 0.009163 -0.331293 1.184042 -0.247213 1.232930 -0.504650 0.280587 -1.057517 0.168010 0.347748 -0.149342 0.661793 0.330339 -0.666456 -0.304471 -0.266477 -0.724231 0.055079 -0.101105 -0.288537 -0.459863 0.125052 -0.283429 -0.561582 0.177011 0.598267 -0.568129 0.473938 -0.543363 0.101659 -0.305841 -0.028501 0.593683 0.075751 -0.498038 0.547236 0.119435 1.390658 0.275700 0.663736 -0.324698 0.375803 -0.254320 -0.901025 -0.573437 0.903100 0.605564 0.196863 0.369203 0.309804 0.257743 0.606411 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = -1.834645 0.906467 5.316503 1.075682 -1.755633 -2.915474 -1.301083 -5.877391 2.767093 1.918270 4.884620 -0.504366 2.749922 -0.953212 0.162121 0.635640 2.947328 -1.420857 0.596203 -1.579061 0.281608 3.804778 0.901667 -0.278938 1.256276 -3.622865 1.381937 0.411473 1.598527 2.274332 1.319740 0.556425 -0.752235 1.346559 0.345414 2.033474 1.352232 1.580312 -1.734402 -0.415286 -0.069969 -1.601619 2.002396 0.657751 3.873634 -0.005880 1.676917 -0.449076 -2.691100 -1.648449 -1.730156 3.196450 -2.512047 0.993025 0.088551 -0.930689 0.286643 -1.182778 -0.431134 -3.403874 -0.335003 -1.343999 -1.692003 0.281011 -1.722957 1.481794 -1.097553 -0.604546 -0.604448 -1.243720 1.835503 0.820402 0.815985 1.766315 -3.974962 0.992744 1.062631 0.306385 1.958712 0.365320 -0.490277 -0.765347 -1.687462 -3.108868 3.839272 1.988979 1.130884 0.727021 -2.539861 0.945198 -1.058287 -0.219873 0.183618 2.487887 -3.743687 0.433856 0.953490 -1.956880 -1.565858 -3.354057 0.420349 -2.761197 0.592033 1.514911 -1.104288 0.331319 -3.072367 1.226884 -1.906776 -2.441667 1.518005 -1.758399 -1.209315 3.060200 -2.683477 -0.659297 -2.122285 0.189265 1.348021 2.023754 -0.105627 1.871053 2.345556 2.176875 2.049092 -2.399875 -0.537905 1.753964 2.648178 0.910812 0.892824 -2.169737 -1.829476 0.892621 -2.173944 -4.689052 -2.542783 2.103981 3.234200 0.497588 -2.770854 0.340063 -1.125701 2.907279 3.251351 1.005709 0.339324 1.232905 -2.742717 0.982534 3.868224 -2.118763 2.878112 -0.322464 -0.303121 2.209625 -2.069834 1.640175 0.303936 0.214074 -0.371995 -2.202258 -1.192685 3.316351 1.928299 1.282794 -1.366536 1.152862 -0.778337 -4.126229 -5.833445 -1.662102 3.749620 0.710801 3.316181 -2.734776 -1.855536 -0.282594 3.265632 -0.230087 -2.632267 0.766067 -1.995923 1.643484 -4.906011 -4.413496 5.765828 5.014325 2.177590 0.507507 2.053528 1.777479 -4.021109 -1.731800 -1.426139 2.244895 -0.700793 -3.863045 -1.860787 0.613841 -3.705264 -1.715089 -0.952422 0.851164 0.310958 0.506493 2.878764 1.208664 -0.933319 -0.399455 1.195003 -1.415332 -3.048315 -0.790416 0.217040 1.600030 1.398446 -1.715947 0.127956 1.577767 -3.325915 -1.038564 1.066943 1.944248 1.060420 4.808131 4.794116 -0.440124 1.407641 -0.864568 -2.437345 3.107897 -1.185506 0.273336 -0.531428 0.310176 0.850552 1.106164 2.825662 -1.350742 -2.806714 -3.339513 -0.566411 0.382294 2.447954 -1.067606 -4.004421 -3.649175 0.566565 1.217785 3.713413 -0.377107 5.852267 -1.109085 0.957926 -5.930642 0.340946 2.244914 -0.700543 1.947740 1.142550 -2.391636 -3.093722 -0.897720 -3.159798 -1.849994 -0.286642 -1.231992 -1.937631 -2.505625 3.811969 -2.501391 0.224389 1.042408 0.974038 3.667381 1.993872 -0.417945 -2.343629 1.290230 2.708182 0.575022 -2.005641 3.077119 0.605020 7.148660 -1.365017 1.331186 -1.439293 1.236683 -0.620319 -1.996934 -1.098775 4.184508 4.642003 1.242861 -0.680895 -0.605251 -0.839334 2.877587 -PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = 0.032927 0.279881 0.710585 0.596872 -0.461948 -0.996480 -0.125619 -0.883029 0.472492 0.152581 0.528833 0.120186 0.599254 -0.309199 -0.082703 -0.054071 0.484088 0.315611 -0.072712 -0.339436 -0.387597 0.823742 -0.000874 -0.457994 0.183249 -0.353543 0.682132 0.449332 0.392142 0.713028 0.153523 0.089593 -0.182765 0.311245 -0.337676 -0.109644 -0.240922 0.326466 -0.480921 -0.118113 0.188878 -0.212640 0.702318 0.210051 0.296557 0.268990 0.254888 0.103838 -0.291811 -0.245859 -0.274446 0.166126 -0.225386 0.447620 -0.444843 -0.138566 0.376898 0.076952 0.216501 -0.456504 0.179866 -0.127951 -0.440582 -0.103541 -0.624778 -0.035427 -0.308900 -0.669236 -0.116556 -0.306001 0.251754 -0.005920 -0.163727 -0.468693 -1.037236 -0.063235 0.209681 0.164064 0.512603 0.372614 -0.104919 -0.344863 -0.602708 -0.481797 0.530006 0.130481 0.239169 0.527538 -0.494180 -0.541968 0.070006 0.153682 0.384480 0.288528 -0.176505 0.250926 -0.169134 -0.117627 -0.160223 -0.753795 0.236530 -0.220278 0.165145 -0.024454 -0.051393 0.116255 0.027503 0.145285 -0.118839 -0.457139 0.182080 -0.443062 -0.168762 0.701121 -0.007018 -0.457674 -0.248649 -0.119758 0.071880 0.497751 0.136895 -0.012311 0.416413 0.289550 0.283514 -0.572618 -0.116334 0.269572 0.105234 0.305677 0.199442 -0.232029 -0.347682 0.185432 -0.484303 -0.981196 -0.163047 0.319373 0.489921 -0.279833 -0.336599 0.495017 -0.460267 0.136214 0.475745 0.260308 0.310969 0.055579 -0.441786 0.199931 0.713606 -0.230988 0.303059 -0.224576 -0.523705 0.625069 0.046312 0.168474 -0.195844 -0.380384 -0.021939 -0.079742 0.300883 0.647666 -0.059896 0.060706 0.195835 0.153793 -0.517084 -0.636567 -0.840454 -0.016361 0.833350 0.533604 0.996250 -0.552367 -0.051299 0.008037 0.359789 -0.168062 -0.195726 0.224127 -0.310946 0.392922 -1.358827 -0.781440 0.972925 0.456565 0.380807 -0.122627 0.170559 0.155156 0.006405 -0.482169 -0.340484 0.125186 0.215309 -0.478584 -0.182815 0.076543 -0.718852 -0.048255 0.199611 0.150363 0.261986 -0.331800 0.279093 -0.700919 -0.292080 -0.634412 0.308815 -0.408397 0.081366 0.069328 -0.074778 -0.073419 0.215133 0.005627 -0.167745 -0.024515 -0.193278 -0.012828 -0.149807 0.306838 0.044884 0.800336 0.813035 -0.341204 0.168901 0.075430 -0.449587 1.347343 -0.461830 0.202810 0.082435 0.667775 0.215039 0.280007 0.585132 -0.281986 -0.077386 -0.730413 -0.253826 0.491890 0.227629 -0.624813 -0.212915 -0.940464 0.013639 -0.286196 0.936308 -0.179853 0.999591 -0.391635 0.231615 -0.834784 0.133900 0.294394 -0.139730 0.492127 0.273520 -0.524583 -0.348985 -0.187380 -0.586465 -0.027656 -0.104032 -0.278027 -0.343461 0.061683 -0.173460 -0.435023 0.152549 0.495752 -0.394324 0.386889 -0.449163 0.081637 -0.267197 -0.013103 0.423485 0.045140 -0.411128 0.380650 0.106103 1.091704 0.179977 0.538697 -0.273916 0.315145 -0.224614 -0.707451 -0.457426 0.722777 0.487657 0.178676 0.284303 0.231649 0.171595 0.484698 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.141258 0.307773 0.245847 0.290721 -0.349742 -0.607703 -0.034844 -0.400660 0.016953 -0.041853 0.166396 -0.054360 0.224273 -0.016770 -0.040248 0.014727 0.194953 0.320323 0.001966 -0.173067 -0.508511 0.136393 -0.110579 -0.135056 0.107752 0.143780 0.445518 0.260192 0.091658 0.251842 0.084433 0.008355 -0.135945 0.156270 -0.114083 -0.132950 -0.172772 0.228218 -0.203823 0.089337 0.025121 -0.310070 0.319528 0.104830 -0.041511 0.361572 0.109176 0.168969 -0.188508 -0.036339 -0.148456 -0.016624 -0.134445 0.201949 -0.292676 -0.188102 0.261174 0.132980 0.154821 -0.069941 0.030737 -0.263045 -0.232206 -0.023514 -0.385967 -0.058746 -0.246289 -0.503449 -0.060354 0.059604 0.096956 -0.004755 -0.146133 -0.092661 -0.422277 -0.090468 0.178283 0.156242 0.266706 0.069090 0.132523 -0.125826 -0.378336 -0.231377 0.237647 -0.099855 0.294485 0.200802 -0.211417 -0.263323 0.127637 0.114104 0.294112 0.113061 0.142283 0.174847 -0.293515 -0.009823 -0.250592 -0.650562 0.130782 -0.027198 0.164660 -0.099771 -0.097055 0.009469 0.004719 0.093640 0.009490 -0.328131 -0.023618 -0.310551 -0.012180 0.298247 0.090185 -0.247030 -0.015355 -0.157389 0.043188 0.159914 0.219040 -0.095956 0.142063 0.139423 0.083389 -0.241054 -0.175501 -0.079414 -0.094151 0.207708 0.170096 -0.073397 -0.219003 0.088111 -0.317613 -0.452673 0.038404 0.103885 0.155506 -0.216869 -0.087246 0.276131 -0.326782 -0.140600 0.127574 0.288756 0.157455 -0.058704 -0.113294 0.057123 0.147624 -0.116128 0.160120 -0.004454 -0.213636 0.205046 0.190797 -0.050765 -0.034105 -0.294807 -0.039384 0.047436 0.048816 0.256208 0.038097 -0.067695 0.300987 0.055890 -0.460130 -0.239468 -0.160450 0.198335 0.562771 0.144953 0.311211 -0.318318 0.030970 0.143657 0.167382 -0.123907 -0.058975 0.037049 -0.036952 0.208191 -0.483572 -0.319911 0.252653 -0.105622 0.094983 -0.132479 -0.108545 0.049054 -0.075010 -0.315112 -0.235042 -0.006517 -0.029586 -0.278173 -0.271673 0.035763 -0.329961 0.207512 0.173260 0.169259 0.206550 -0.131366 0.042498 -0.431167 -0.104370 -0.350096 0.086562 -0.148869 0.151537 0.160332 -0.091268 -0.003555 0.035595 0.059714 -0.115745 -0.115593 -0.093392 0.040169 -0.097163 0.148397 -0.040983 0.633089 0.244331 -0.193346 -0.045648 0.072890 -0.223176 0.604820 -0.157581 0.231008 0.064239 0.493372 0.011279 0.094051 0.472512 -0.139706 -0.190516 -0.371285 -0.349382 0.296169 0.048821 -0.139420 0.082722 -0.531075 0.033544 -0.154836 0.506778 -0.133829 0.296590 -0.060076 0.139089 -0.106325 0.074764 0.009819 -0.180507 0.260256 0.121186 -0.231991 0.030219 -0.123663 -0.308095 -0.102497 -0.051232 0.031910 -0.122180 0.262050 -0.444037 -0.037921 -0.022873 0.117128 -0.230326 0.027484 -0.226784 0.053462 0.004933 -0.030726 0.474564 -0.081607 -0.240649 0.218279 0.161879 0.604257 0.327778 0.190205 -0.074266 -0.127741 0.084175 -0.185890 -0.256251 0.321177 0.153427 0.120015 0.183991 0.254934 0.203105 0.186794 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.540570 0.334195 1.935908 1.361343 -1.342823 -1.657498 -0.523129 -1.876573 1.045948 0.465506 1.524938 0.178107 1.021773 -0.590372 -0.092477 -0.504059 1.031671 0.012119 -0.184134 -0.768294 -0.527820 1.630523 0.487196 -1.256285 0.380908 -1.108241 1.353247 0.737244 0.605201 1.413287 0.250173 0.028658 -0.571759 0.780560 -0.591197 -0.029289 -0.054234 0.639455 -0.854913 -0.313104 0.670027 -0.228015 1.457101 -0.015045 1.041351 0.408520 0.544853 0.057661 -1.353520 -0.690839 -0.309337 0.535934 -0.816855 0.980744 -0.172747 -0.009085 0.479546 -0.407229 0.042089 -1.552342 0.367128 -0.293723 -0.639020 -0.101912 -1.144457 0.078571 -0.385640 -1.139937 0.224832 -0.931930 0.580691 0.049386 -0.016792 -0.571614 -1.519015 0.266396 0.578612 0.430685 0.873546 0.682251 -0.181121 -0.568736 -0.961487 -0.977260 0.627046 0.264289 0.449953 0.677467 -0.779873 -0.510484 0.500383 0.167407 0.313327 0.816700 -0.822835 0.353268 -0.318638 -0.478071 -0.571509 -1.378498 0.260753 -0.768664 0.532201 0.705812 -0.871072 0.235297 -0.233354 0.456263 -0.367138 -1.113794 0.341669 -0.820394 -0.038775 1.451418 -0.526811 -0.849942 -0.593716 -0.143357 0.308436 0.990198 -0.002389 0.264650 1.086754 0.890894 0.810152 -1.376928 -0.187527 0.499915 0.679164 0.638026 0.602899 -0.695227 -0.668886 0.313623 -0.982875 -2.092160 -0.548405 0.493646 1.364905 -0.107914 -1.181994 0.720033 -0.953591 1.026630 1.025957 0.741280 0.491571 0.193114 -1.149590 0.503138 1.578044 -0.543112 0.818700 -0.376281 -1.183759 1.364104 -0.066170 0.657367 -0.119782 -0.360049 0.018500 -0.772102 0.328997 1.462951 0.195821 0.430052 0.062438 0.333574 -0.612586 -1.795935 -2.133019 -0.096555 1.541292 1.057510 2.185874 -1.376884 -0.495809 -0.152029 1.156834 -0.255111 -0.788557 0.361888 -0.616005 0.835260 -2.801230 -1.910108 2.287612 1.754061 0.682705 0.058141 0.874565 0.158885 -0.490451 -0.837586 -0.891552 0.607496 0.363832 -0.701047 -0.239368 0.304931 -1.503224 -0.373689 0.345409 0.388247 0.732894 -0.922345 0.193199 -0.530982 -0.755117 -1.035015 0.735030 -0.963574 -0.294423 0.081390 -0.030908 0.262404 0.620098 -0.202183 -0.570399 -0.116270 -0.756963 -0.177273 -0.021186 0.979435 0.220154 1.716075 1.789769 -0.619388 0.511586 0.125740 -0.970607 2.926841 -1.134893 0.232970 0.086012 1.176104 0.450641 0.522875 1.268443 -0.653776 -0.269960 -1.500999 -0.232313 0.507787 0.752191 -2.063702 -1.073336 -1.973710 0.119392 -0.189145 1.597558 -0.203309 2.536555 -0.616165 0.315345 -2.458461 0.044910 0.968909 -0.085002 1.094679 0.622053 -1.138804 -1.632925 -0.343480 -1.272565 0.308779 -0.238414 -0.627305 -0.770821 -0.200409 0.524038 -0.682639 0.376112 1.228180 -0.584986 1.127004 -0.123631 -0.076520 -0.535749 -0.295887 0.596733 0.313100 -0.870670 1.414426 0.254219 2.764287 0.072268 0.912530 -0.686017 0.716022 -0.371840 -1.333696 -0.846742 1.575888 1.328133 0.583677 0.238604 0.237747 -0.286794 1.096273 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.102585 0.243553 0.735547 0.248806 -0.366634 -0.571629 -0.109017 -0.779668 0.406046 0.241831 0.502947 0.111518 0.546997 -0.240565 -0.094799 -0.215274 0.431736 0.133359 0.075584 -0.236221 -0.069819 0.580072 -0.052540 -0.158209 0.130543 -0.425508 0.560580 0.148220 0.399720 0.666391 0.132750 -0.003491 -0.352033 0.207577 -0.048290 -0.083324 0.064139 0.274772 -0.394195 -0.082164 0.033060 -0.243680 0.479353 0.133207 0.320235 0.081347 -0.129842 0.047723 -0.235026 -0.267791 -0.018155 -0.053221 -0.220204 0.365491 -0.062015 -0.233998 0.089662 0.208837 0.206641 -0.412000 0.193744 -0.290201 -0.099247 0.000864 -0.441589 -0.011503 -0.427279 -0.420178 -0.131513 -0.462242 0.135069 0.033993 0.151746 -0.105855 -0.856609 0.046588 0.176500 0.088026 0.407147 0.361605 -0.093634 -0.282494 -0.396578 -0.460443 0.259004 0.336376 0.071546 0.315480 -0.498497 -0.255355 0.148247 0.112473 0.256646 0.277922 -0.264920 0.174742 -0.368778 -0.085359 0.094906 -0.865243 0.114661 -0.256724 0.123662 0.015292 -0.186627 -0.011038 -0.082482 0.190987 -0.034635 -0.292400 0.367678 -0.284266 -0.169984 0.616056 -0.083633 -0.348534 -0.348182 -0.082659 0.204093 0.321611 0.012710 0.059354 0.121928 0.222859 0.386311 -0.498751 -0.089631 0.432020 0.077246 0.137541 0.100925 -0.198618 -0.186091 0.214981 -0.458943 -0.774090 -0.209375 0.141191 0.416888 -0.212082 -0.133218 0.102537 -0.468023 0.133179 0.447328 0.243497 0.233019 0.114834 -0.371586 0.109601 0.426376 -0.198912 0.238048 -0.045470 -0.321831 0.343132 0.016959 0.251243 -0.312655 -0.104181 0.044563 -0.166141 0.124905 0.561660 -0.014176 0.228833 -0.095855 0.099070 -0.403784 -0.559280 -0.701650 -0.103868 0.812806 0.403636 0.509105 -0.418087 -0.063238 0.059203 0.467491 0.060775 -0.271794 0.240751 -0.165765 0.313054 -1.040832 -0.625137 0.717329 0.622429 0.260871 -0.171348 -0.013096 0.145566 -0.248052 -0.428956 -0.322231 0.086054 -0.151873 -0.575666 -0.314832 0.140500 -0.515954 -0.028526 0.225894 0.083064 0.406548 -0.186716 0.301013 -0.153850 -0.043448 -0.507285 0.450443 -0.219944 -0.127744 -0.006605 0.008184 0.105299 0.214616 -0.084050 -0.135461 0.214457 -0.177483 -0.032041 -0.040829 0.176742 -0.064349 0.648117 0.458630 -0.184565 -0.173954 0.013990 -0.407685 1.077315 -0.429412 0.127242 0.055017 0.308688 0.123147 0.276424 0.432998 -0.270620 -0.203325 -0.595263 -0.399006 0.175834 0.285171 -0.446317 -0.535178 -0.622079 0.226384 -0.239331 0.606674 -0.020355 0.900933 -0.258690 0.193984 -0.552349 0.058013 0.348965 -0.144325 0.524690 0.191652 -0.373580 -0.274300 -0.162120 -0.549041 0.013850 -0.066232 -0.207882 -0.165536 -0.012397 0.104493 -0.156211 0.091182 0.197822 -0.227865 0.529736 -0.152885 0.009432 -0.386766 0.101371 0.241883 0.006462 -0.318227 0.415875 0.165183 0.775578 0.021737 0.224652 -0.136156 0.215233 -0.204735 -0.551677 -0.346199 0.609452 0.468032 0.369948 -0.030578 0.080604 0.008771 0.313505 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::~allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >&>::type&& std::move >&>(std::vector >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(std::vector >&&) = -0.409084 0.174126 1.091550 0.552996 -0.712502 -0.950588 -0.244650 -1.227777 0.713708 0.437582 0.960618 0.270413 0.894433 -0.510912 -0.090897 -0.379329 0.732166 -0.012139 0.111565 -0.408797 -0.173694 1.147661 0.158892 -0.318992 0.168613 -0.669739 0.956648 0.185894 0.536441 1.124867 0.247498 0.016952 -0.544718 0.331543 -0.019531 0.082613 -0.040507 0.488547 -0.467694 -0.214080 0.260317 -0.566733 0.871867 0.176275 0.647673 -0.008432 0.027129 0.000342 -0.577596 -0.554027 -0.154454 -0.075212 -0.572225 0.534899 -0.107102 -0.337656 0.277581 0.270190 0.190981 -0.873834 0.224903 -0.597682 -0.306094 0.011499 -0.689603 0.091805 -0.721714 -0.570616 -0.196515 -0.755664 0.307334 0.122094 0.242621 -0.107703 -1.325046 0.069632 0.237711 0.088006 0.634610 0.663984 -0.315285 -0.473456 -0.679753 -0.742016 0.501846 0.356841 0.090167 0.442706 -0.806152 -0.227080 0.179079 0.218717 0.348695 0.438803 -0.552093 0.243570 -0.276658 -0.210992 0.100464 -1.249016 0.197130 -0.497128 0.180967 0.255670 -0.449476 -0.104310 -0.371015 0.185275 -0.287152 -0.622899 0.533222 -0.529025 -0.298028 0.885166 -0.321498 -0.443659 -0.594372 -0.064024 0.480110 0.526730 0.083943 0.202516 0.347028 0.425174 0.604436 -0.839264 -0.119347 0.662235 0.343904 0.163767 0.113712 -0.237002 -0.370528 0.372827 -0.684777 -1.240675 -0.471198 0.446433 0.739206 -0.123868 -0.353657 0.243023 -0.655127 0.351011 0.868012 0.412132 0.342511 0.257787 -0.688891 0.256572 0.774772 -0.311837 0.451274 -0.052042 -0.603507 0.926439 -0.185589 0.398956 -0.344625 -0.081841 -0.059150 -0.358409 0.161216 0.897786 0.000703 0.407338 -0.192734 0.227620 -0.437366 -0.979046 -1.281186 -0.153603 1.402574 0.873990 0.942114 -0.775229 0.001931 0.187809 0.648378 0.170561 -0.612204 0.327446 -0.253380 0.505142 -1.999534 -1.095036 1.371441 0.986606 0.450758 -0.070942 0.079450 0.344553 -0.375528 -0.591009 -0.639118 0.324776 -0.157363 -0.778772 -0.327398 0.252163 -0.914168 -0.224147 0.270859 0.142150 0.618964 -0.547844 0.425833 -0.263774 -0.063600 -0.674835 0.714517 -0.420176 -0.394681 -0.099931 -0.028812 0.250026 0.306155 0.020497 -0.075098 0.144253 -0.364688 -0.136219 -0.025308 0.346970 0.007197 1.096658 1.025751 -0.450815 -0.355335 -0.053285 -0.603980 1.684788 -0.743812 0.132607 0.052892 0.592031 0.395747 0.382723 0.805246 -0.422317 -0.305908 -0.902218 -0.433194 0.369278 0.539455 -1.012605 -0.878982 -1.193497 0.360439 -0.249600 1.063624 -0.087800 1.554857 -0.494284 0.259201 -1.110962 0.083648 0.620174 -0.138350 0.844666 0.261276 -0.566934 -0.401672 -0.351564 -0.856211 0.281913 -0.089473 -0.258313 -0.323742 -0.095441 0.249440 -0.413241 0.157198 0.289069 -0.432829 0.913966 -0.021450 -0.016558 -0.662306 0.186487 0.278336 0.134453 -0.481040 0.908739 0.210943 1.304254 -0.037741 0.351177 -0.239319 0.584029 -0.456208 -0.933271 -0.472558 0.992364 0.893855 0.459979 0.015700 0.145365 0.023600 0.540692 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::vector >::insert(__gnu_cxx::__normal_iterator > >, int*, int*) = -0.999208 0.924544 5.432882 2.754701 -2.520492 -5.490419 -1.518272 -7.698040 3.860444 2.292868 5.814474 0.289714 4.201423 -1.833816 0.176760 0.697175 3.538932 -0.553654 0.460946 -2.042007 -1.662559 7.433753 0.799540 -0.660448 0.774342 -3.841036 2.886552 2.048981 3.060758 3.767731 1.184614 0.362992 -0.519962 1.671636 -1.572898 1.279725 -1.087183 2.405626 -2.564720 -1.097576 0.999181 -2.529745 4.478806 0.512963 3.501906 -0.476732 3.341890 -0.459078 -2.578101 -2.309378 -2.645935 3.239631 -2.531379 2.031058 -1.577125 -1.820612 1.786679 0.106901 0.107701 -2.836803 0.013483 -1.355363 -3.248822 -0.271352 -2.973563 1.025513 -2.419789 -2.409285 -0.405954 -1.703130 2.362638 0.640127 -0.212040 -0.913552 -7.285940 0.763167 1.440500 0.106926 2.498137 2.240678 -0.735110 -1.478191 -3.569413 -3.869253 5.209688 2.384908 1.189991 1.759151 -4.552886 -0.827128 -0.732560 0.827905 1.431052 2.674066 -3.503162 1.514850 0.510038 -1.975450 -1.984229 -4.954766 0.857626 -3.181157 0.971440 0.980084 -0.503259 0.322293 -2.090471 0.551326 -2.217013 -4.337369 0.990479 -2.656613 -1.488591 4.526853 -2.268875 -1.616893 -2.439654 0.142138 0.849455 2.495075 1.186858 1.363900 4.009943 2.302148 2.431958 -3.928467 -0.797909 2.307039 2.582018 1.485503 0.637120 -1.787493 -2.510775 1.303615 -2.825547 -7.041433 -2.841043 3.776128 3.756137 -0.923537 -2.133454 2.228673 -1.716799 3.025896 4.840097 0.938821 1.403213 1.384651 -3.257358 1.787918 5.392549 -2.163758 3.099784 -1.696594 -2.827943 5.311727 -2.090369 1.955116 0.109791 -0.378944 -1.104551 -2.244785 0.763477 4.725128 0.486162 1.450617 -0.533188 1.266728 -1.556313 -4.731756 -7.668792 -0.886869 5.316064 3.375189 6.257694 -3.671742 -1.508863 1.070112 2.588096 -0.323177 -3.242341 1.855862 -2.746878 2.469966 -9.513208 -6.074742 7.690752 4.955873 2.919189 0.265984 2.648749 2.393443 -2.721149 -2.836146 -2.741225 3.095170 1.023266 -5.113133 -1.236831 0.861696 -5.135252 -1.217131 -0.700000 0.708458 0.749823 -1.373971 3.351608 -2.721523 -2.210359 -1.816662 3.013797 -2.663917 -1.951369 -1.179374 -0.298759 0.345450 1.973115 -0.756231 0.130743 0.265460 -3.203905 -0.612472 0.124724 1.941525 0.936913 6.261947 7.333304 -2.130161 2.078024 -0.793017 -2.602444 6.171550 -3.104793 0.023365 -0.255358 2.786717 1.093119 2.150165 4.118899 -1.684624 -2.566895 -4.543237 -0.280514 2.230202 2.247743 -2.849653 -3.234145 -6.503845 0.036365 -0.010670 6.686782 -0.604520 7.786382 -2.968954 1.789953 -7.788398 0.785405 1.465481 -0.459677 3.745609 1.177982 -3.276822 -1.854397 -1.515318 -3.810489 -1.319456 -0.025013 -2.607576 -2.851311 -2.761304 1.902728 -4.232258 0.681415 1.821259 -1.234760 4.157141 -0.035158 -0.401495 -3.120041 1.663713 3.621017 0.734668 -2.463235 3.661952 0.250812 9.208260 -0.877753 3.114147 -2.159520 2.796820 -1.719764 -4.537063 -1.925351 5.241873 5.339226 0.984895 0.104844 0.492826 0.235401 3.442042 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(__gnu_cxx::__normal_iterator::__value, std::vector > >::__type> const&) = -0.057708 0.197582 0.776710 0.722330 -0.496191 -1.089190 -0.164853 -1.109815 0.606055 0.237625 0.768666 0.118817 0.739223 -0.447513 -0.042788 -0.030138 0.571858 0.261158 -0.039176 -0.339431 -0.414288 1.120157 0.035895 -0.442280 0.171167 -0.380524 0.721621 0.467299 0.450116 0.770506 0.181379 0.094162 -0.144722 0.290373 -0.368152 0.013452 -0.321898 0.416226 -0.489005 -0.254972 0.235405 -0.412379 0.790670 0.160018 0.412063 0.092053 0.461754 0.008921 -0.384222 -0.323177 -0.410344 0.294674 -0.341573 0.461182 -0.476304 -0.271918 0.469548 0.133128 0.163148 -0.582163 0.164825 -0.222703 -0.573834 -0.132254 -0.649035 0.048807 -0.357610 -0.646764 -0.097211 -0.315334 0.333484 0.042441 -0.135161 -0.450445 -1.227245 -0.036093 0.240724 0.088627 0.528321 0.496131 -0.077058 -0.408997 -0.681040 -0.557103 0.799598 0.146149 0.255562 0.534186 -0.664033 -0.433340 0.027083 0.191970 0.401708 0.324715 -0.306881 0.293955 -0.050162 -0.171314 -0.160885 -0.851487 0.247983 -0.372967 0.152140 0.105116 -0.070857 0.153210 -0.046997 0.163549 -0.252497 -0.672437 0.183596 -0.505482 -0.252957 0.758133 -0.138171 -0.455638 -0.297675 -0.042119 0.112632 0.496462 0.207338 0.124388 0.542393 0.331482 0.367303 -0.677635 -0.130735 0.388600 0.260754 0.324427 0.111900 -0.249530 -0.406470 0.235558 -0.544019 -1.171029 -0.339304 0.533287 0.618829 -0.241951 -0.435297 0.575039 -0.404814 0.262610 0.660728 0.247287 0.306960 0.183528 -0.530128 0.249529 0.815437 -0.295464 0.384013 -0.227160 -0.581962 0.804839 -0.050044 0.171513 -0.153964 -0.290859 -0.038561 -0.208056 0.287408 0.761429 -0.030771 0.124498 0.076750 0.228170 -0.541707 -0.797405 -1.084334 -0.050201 0.995546 0.666081 1.159141 -0.634701 -0.130520 0.130103 0.372180 -0.192051 -0.345281 0.264711 -0.428005 0.467144 -1.682333 -0.982380 1.216948 0.503561 0.479889 -0.053191 0.271961 0.278470 -0.116377 -0.486994 -0.467785 0.284446 0.312826 -0.654090 -0.189531 0.082676 -0.883716 -0.144139 0.148946 0.128869 0.175428 -0.379684 0.405498 -0.770574 -0.320928 -0.538691 0.451647 -0.489375 -0.013542 -0.070246 -0.095507 -0.013605 0.283910 -0.020349 -0.072853 -0.065283 -0.322892 -0.072877 -0.150351 0.329980 0.104124 1.021307 1.142495 -0.436990 0.219014 -0.004664 -0.522050 1.410134 -0.538478 0.116987 0.024421 0.709648 0.295385 0.326831 0.740323 -0.317568 -0.201264 -0.850445 -0.255948 0.573236 0.320589 -0.699969 -0.273856 -1.134087 -0.004538 -0.239911 1.135057 -0.179715 1.211622 -0.550549 0.261920 -1.097093 0.141989 0.327840 -0.145067 0.606603 0.240388 -0.558190 -0.381753 -0.247896 -0.632959 -0.071714 -0.118135 -0.357971 -0.434369 -0.148826 -0.057554 -0.619411 0.165271 0.466282 -0.377745 0.534878 -0.386981 0.047754 -0.371590 0.132764 0.439831 0.108298 -0.483757 0.526462 0.104374 1.405285 0.088446 0.571211 -0.390211 0.479912 -0.375748 -0.818778 -0.437007 0.824568 0.736476 0.165688 0.262909 0.274336 0.120902 0.586225 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::make_heap<__gnu_cxx::__normal_iterator > >, std::greater >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::greater) = -0.867751 0.648171 4.050739 -0.317090 -1.434527 -2.509826 -1.325220 -5.685037 2.142447 2.172846 4.132130 -0.458793 2.479777 -0.265181 0.048397 0.184396 1.795502 -1.827175 1.123543 -1.332567 -0.801249 3.683897 -0.017798 1.493199 0.475732 -3.970571 2.274609 0.237648 1.506639 2.445697 0.964934 -0.049731 -1.162745 1.019703 0.205580 1.553947 1.091010 1.525232 -0.732889 0.355123 0.346439 -1.188004 2.124368 0.166243 2.822305 0.495284 0.178036 0.031652 -1.328233 -1.849762 -0.175284 0.881341 -1.805849 0.808572 0.165247 -1.240283 -0.068570 -0.548361 -0.172367 -0.947303 -0.126491 -1.662323 -1.296895 0.755589 -1.536651 0.845402 -2.001386 -0.793804 -0.234509 -1.793710 1.317353 0.308416 0.342954 1.256897 -3.899769 0.824978 1.009668 -0.366260 1.308158 0.129127 -0.805383 -0.298728 -2.245064 -2.876260 2.484080 3.272814 0.520077 0.018178 -2.667934 0.515710 -0.402882 0.166986 0.977518 2.546937 -2.228908 0.043032 -0.449095 -1.563745 -1.476934 -4.073867 0.650023 -2.213836 1.167790 0.831826 -1.407532 -0.654052 -1.380115 0.601917 -1.148346 -2.308388 0.979069 -1.721775 0.598535 3.131712 -1.577568 -0.885966 -2.724113 -0.759462 1.371992 1.285863 0.716193 0.491069 2.835859 1.631558 1.839682 -2.531518 -1.456639 1.866844 1.470901 0.363313 0.322819 -2.312100 -1.157418 0.929509 -2.186540 -4.029696 -2.148604 0.597297 2.037299 -1.463852 -0.439407 0.851799 -1.445254 1.647130 3.297872 0.678985 0.450971 0.892375 -2.096732 0.958852 3.010467 -1.133664 1.830361 -1.401622 -1.401715 2.309224 -1.286039 1.479209 0.610963 0.598793 -1.351824 -1.782789 0.313264 2.739021 0.368117 2.010829 -0.947544 0.975076 -0.657739 -2.212408 -4.595334 -0.549819 3.663436 1.328963 2.787078 -2.640679 -0.824020 0.633156 3.104819 1.152718 -2.329445 1.289724 -1.146875 1.253984 -4.252205 -3.373325 3.851861 4.151101 2.101011 -0.214761 1.196330 1.414052 -3.098756 -1.501960 -1.844527 2.253786 -0.746756 -3.846246 -1.196044 0.743525 -2.636129 -0.732149 -1.017861 0.849544 1.497190 -0.312465 1.989211 0.054061 -0.759716 -1.272330 2.474235 -0.885202 -1.995786 -0.825173 0.162303 0.400035 1.180513 -1.026470 0.367210 1.096954 -1.978562 0.199654 1.642601 0.649239 -0.077037 4.080727 3.016227 -1.286076 0.027224 -1.135900 -0.777287 2.538187 -1.435334 0.077028 0.077036 0.739991 0.292495 1.171934 2.400832 -1.098190 -2.418063 -2.466957 -0.483559 0.277267 1.542207 -0.339150 -3.138303 -4.005824 0.537259 -0.015970 4.219884 0.624921 4.867960 -0.508799 1.536834 -3.748264 0.323439 0.814606 -0.491333 2.111574 0.403766 -1.728225 -0.745900 -0.744803 -2.982230 -2.118858 0.112291 -1.212534 -1.806901 -1.968156 2.032028 -1.186159 -0.105242 0.425577 0.225423 2.429202 1.049690 -0.504877 -2.574328 1.249545 2.546296 -0.225826 -1.457685 2.349670 0.559314 5.342757 -0.993553 1.421417 -0.414754 1.400077 -0.756635 -2.363520 -0.922395 3.052788 3.026234 1.287894 -1.144192 -0.492013 0.021192 1.707887 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::_Vector_base >&&) = -0.314722 0.173339 1.243398 0.503144 -0.568681 -1.362733 -0.303246 -1.704433 0.861939 0.481032 1.313016 0.146292 1.041267 -0.551720 0.127574 0.138891 0.876071 -0.085202 0.086818 -0.500395 -0.144389 1.471654 0.148731 -0.175844 0.218198 -0.793987 0.524970 0.489463 0.638204 0.947151 0.303360 0.004165 -0.325330 0.339622 -0.287297 0.320052 0.034301 0.455120 -0.718462 -0.259954 0.021793 -0.476506 0.982899 0.074942 0.907571 -0.104861 0.583050 0.034255 -0.596326 -0.604523 -0.452110 0.721536 -0.544603 0.533480 -0.214825 -0.412718 0.321841 0.101016 0.060722 -0.846829 0.084412 -0.335733 -0.605094 -0.063640 -0.621528 0.192051 -0.494008 -0.583347 -0.126589 -0.537067 0.499737 0.091808 0.046652 -0.052448 -1.588218 0.073323 0.303543 0.121884 0.622970 0.490522 -0.150863 -0.485870 -0.686546 -0.815862 1.044178 0.520189 0.274816 0.536262 -1.158953 -0.096363 -0.093796 0.115199 0.404515 0.430575 -0.768078 0.219948 0.153026 -0.387458 -0.303983 -1.167039 0.260586 -0.571856 0.166016 0.147158 0.047467 0.012922 -0.648445 0.238011 -0.616631 -0.817496 0.481393 -0.528759 -0.463654 1.028456 -0.578983 -0.328414 -0.569739 0.021359 0.220484 0.633874 0.223152 0.328890 0.579219 0.576575 0.580312 -0.910801 -0.227766 0.564979 0.725113 0.370826 0.151961 -0.388957 -0.519436 0.410055 -0.877751 -1.564847 -0.660181 0.801174 0.954005 -0.049797 -0.531302 0.373658 -0.504040 0.687645 0.982507 0.268599 0.290128 0.280365 -0.836153 0.377898 1.057830 -0.509563 0.787316 -0.140958 -0.458667 0.871057 -0.394094 0.394153 -0.016674 -0.219654 -0.155472 -0.360098 0.067866 1.002765 0.347416 0.446089 -0.359153 0.372094 -0.559859 -1.142971 -1.717646 -0.267930 1.289861 0.648610 1.228924 -0.795157 -0.468886 0.100433 0.739324 -0.227222 -0.797082 0.407328 -0.651833 0.595131 -2.020905 -1.253627 1.849960 1.326185 0.789834 0.023097 0.525857 0.565368 -0.754908 -0.551595 -0.480283 0.501093 0.071184 -1.359632 -0.383340 0.190546 -1.183864 -0.335838 -0.073501 0.205411 0.053068 -0.074288 0.866438 -0.360160 -0.343814 -0.341812 0.588573 -0.505177 -0.392037 -0.193195 -0.038839 0.225090 0.415713 -0.316477 0.020117 0.295252 -0.809431 -0.125870 0.006567 0.529347 0.342989 1.480548 1.444914 -0.363541 0.539345 -0.208114 -0.778178 1.393977 -0.675699 0.144221 -0.084987 0.597541 0.348467 0.401785 0.888430 -0.435121 -0.532530 -1.056573 -0.363685 0.569964 0.660170 -0.509699 -0.998023 -1.404112 0.159854 -0.069332 1.402523 -0.249521 1.700094 -0.683317 0.416334 -1.691321 0.179601 0.387123 -0.169132 0.705319 0.271636 -0.686815 -0.703057 -0.294569 -0.994381 -0.447003 -0.027063 -0.514140 -0.456131 -0.647323 0.616405 -0.896785 0.077188 0.360800 -0.241691 1.077017 0.040177 -0.055995 -0.697253 0.398656 0.692410 0.125339 -0.628669 0.828282 0.215867 2.107622 -0.108909 0.613717 -0.427772 0.632209 -0.394552 -0.982877 -0.476993 1.164886 1.328443 0.290350 0.016623 0.147784 0.008244 0.734298 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::_Vector_base >::_Vector_impl&&) = -0.852803 0.179724 2.388958 1.064490 -1.334248 -1.686850 -0.533656 -2.922631 1.829888 1.128926 2.190801 0.647179 1.958261 -1.252508 -0.214282 -0.676460 1.585221 -0.209636 0.282758 -0.783898 0.005362 2.876908 0.245446 -0.440029 0.263537 -1.762619 1.754118 0.261588 1.478355 2.240312 0.539719 -0.003702 -1.046806 0.593710 0.005358 0.311394 -0.057212 0.962281 -1.144138 -0.694838 0.485890 -1.252746 1.806767 0.236719 1.580368 -0.710343 0.241153 -0.243794 -1.065379 -1.160456 -0.429070 0.167749 -1.132385 1.069202 0.009639 -0.872741 0.340889 0.634938 0.329667 -1.598546 0.419218 -1.173978 -0.604975 0.000358 -1.261488 0.302468 -1.546450 -0.861427 -0.387358 -1.694944 0.657241 0.308284 0.691165 -0.251437 -3.106434 0.285484 0.455136 -0.015327 1.239680 1.645250 -0.567688 -1.043276 -1.306934 -1.579649 1.290628 1.186943 -0.110317 0.801038 -1.932284 -0.307014 0.212467 0.420405 0.614602 0.954680 -1.655387 0.500654 -0.582273 -0.524179 0.411240 -2.560630 0.322154 -1.263041 0.299652 0.494862 -0.848195 -0.079338 -0.632302 0.323343 -0.617898 -1.317642 1.122760 -0.909958 -0.680404 2.037931 -0.791231 -0.917214 -1.411932 0.080596 0.828668 0.937676 0.099263 0.655788 0.879887 0.859570 1.465432 -1.821890 -0.171546 1.802721 0.823802 0.279909 0.022038 -0.507050 -0.677841 0.790059 -1.221792 -2.719032 -1.225284 1.087879 1.627116 -0.243170 -0.513893 0.152838 -1.111589 1.060259 1.994859 0.513343 0.671353 0.765933 -1.473004 0.592433 1.772730 -0.631510 0.893595 -0.300433 -1.141779 1.969747 -0.655513 0.981898 -0.839344 0.182481 -0.124955 -0.976738 0.342187 1.959798 -0.191295 0.921273 -0.831523 0.511478 -0.751001 -2.158001 -3.009936 -0.546618 2.778419 1.922485 1.962762 -1.503686 -0.206542 0.468515 1.290882 0.539318 -1.398176 0.965450 -0.831073 1.093837 -4.223795 -2.431623 3.034079 2.438404 0.984296 -0.123485 0.394541 0.847650 -1.124608 -1.235620 -1.338649 0.871137 -0.157667 -2.008519 -0.628360 0.570795 -1.939699 -0.673400 0.456457 0.127039 1.192741 -0.976631 1.295094 -0.365321 -0.123428 -1.262660 1.941237 -0.849169 -1.015471 -0.526737 0.038034 0.534216 0.879513 -0.134242 -0.031770 0.452170 -0.786526 -0.298602 -0.013355 0.590869 -0.045194 2.104974 2.438406 -0.860659 -0.466916 -0.238178 -1.251516 3.324283 -1.617615 0.031845 0.044960 0.746238 0.700918 0.949144 1.507972 -0.900858 -0.730396 -1.858914 -0.787747 0.508207 1.250237 -1.987417 -2.097549 -2.344207 0.701519 -0.442963 2.072002 0.012057 3.448091 -1.327706 0.553793 -2.692517 0.139926 1.365629 -0.159153 1.993076 0.456942 -1.184077 -0.752026 -0.708169 -1.695405 0.457722 -0.144143 -0.825830 -0.794484 -0.749575 1.124497 -1.092584 0.367462 0.524114 -0.769098 2.253044 -0.068881 -0.097156 -1.635901 0.675295 0.398635 0.387739 -0.965112 1.877638 0.291977 2.857269 -0.455799 0.667393 -0.605085 1.448531 -1.202161 -2.179670 -0.870780 2.103072 2.083189 1.015867 -0.319630 0.071272 -0.190434 1.165130 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >::_Vector_impl&>::type&& std::move >::_Vector_impl&>(std::_Vector_base >::_Vector_impl&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator(std::allocator const&) = -0.363853 0.187600 0.983057 0.553081 -0.703230 -0.844167 -0.212687 -1.066837 0.629375 0.383830 0.815302 0.264370 0.807572 -0.464191 -0.135601 -0.442358 0.651471 0.045646 0.101679 -0.367925 -0.217569 1.007185 0.127795 -0.341538 0.152834 -0.575289 1.004305 0.141393 0.483709 1.082194 0.220147 0.023545 -0.539952 0.315902 0.011106 0.009963 -0.080684 0.473999 -0.398954 -0.184835 0.292144 -0.557035 0.802634 0.192769 0.529553 0.044423 -0.066431 0.005916 -0.528063 -0.490733 -0.102941 -0.223446 -0.531773 0.507265 -0.120096 -0.309608 0.274451 0.290187 0.217116 -0.798425 0.239348 -0.607856 -0.250970 0.017865 -0.682685 0.057076 -0.717227 -0.568748 -0.197792 -0.719724 0.252270 0.115816 0.236613 -0.140838 -1.205038 0.051682 0.219662 0.084450 0.606885 0.648627 -0.302344 -0.443216 -0.658411 -0.680768 0.385461 0.285912 0.072470 0.411640 -0.678006 -0.274310 0.224949 0.231544 0.339347 0.413600 -0.441127 0.246507 -0.366559 -0.153926 0.150961 -1.206274 0.182694 -0.441265 0.183215 0.241170 -0.508853 -0.103919 -0.254110 0.167084 -0.188702 -0.561838 0.483992 -0.512011 -0.234259 0.811767 -0.220797 -0.459347 -0.543371 -0.090146 0.480283 0.475698 0.070745 0.148647 0.296167 0.367131 0.560374 -0.774169 -0.103820 0.621357 0.220578 0.132999 0.108854 -0.198895 -0.328600 0.335749 -0.607281 -1.113438 -0.385431 0.344616 0.642679 -0.162458 -0.295954 0.236341 -0.650618 0.236159 0.779200 0.421560 0.339199 0.226554 -0.606941 0.217230 0.674241 -0.252039 0.350853 -0.045433 -0.605395 0.876584 -0.104328 0.355010 -0.386438 -0.079027 -0.035518 -0.320712 0.184736 0.822636 -0.079622 0.349652 -0.105942 0.184897 -0.423245 -0.880634 -1.094250 -0.098336 1.345761 0.856902 0.849052 -0.730697 0.097223 0.201132 0.581858 0.218366 -0.512876 0.290292 -0.165192 0.464575 -1.865021 -1.001161 1.176847 0.808587 0.355222 -0.098797 -0.020569 0.272475 -0.258502 -0.576008 -0.633726 0.259115 -0.168675 -0.616293 -0.306501 0.239728 -0.812093 -0.165090 0.333827 0.129933 0.689284 -0.606978 0.304491 -0.286300 -0.020025 -0.722827 0.688783 -0.386059 -0.330810 -0.060042 -0.033077 0.218346 0.264478 0.090520 -0.098143 0.084903 -0.241308 -0.117391 -0.042536 0.288170 -0.068287 0.974343 0.884812 -0.451124 -0.493064 -0.006771 -0.532293 1.657632 -0.703233 0.137509 0.084964 0.586939 0.368664 0.357082 0.757953 -0.395183 -0.242615 -0.830707 -0.435868 0.330525 0.465353 -1.035262 -0.749123 -1.095723 0.357873 -0.284529 0.954550 -0.057341 1.415576 -0.426460 0.218625 -0.910896 0.065785 0.611584 -0.136534 0.823498 0.248821 -0.517201 -0.302943 -0.341381 -0.774254 0.384276 -0.104886 -0.192469 -0.289195 0.045464 0.102793 -0.291846 0.162056 0.273640 -0.454392 0.792632 -0.080751 0.002379 -0.593400 0.123364 0.211333 0.117119 -0.434041 0.850907 0.199508 1.087258 0.009613 0.296832 -0.195791 0.517211 -0.428362 -0.866085 -0.454688 0.899688 0.734359 0.457853 0.039095 0.158153 0.045609 0.476530 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data(std::_Vector_base >::_Vector_impl_data&&) = -0.873344 0.008309 1.669214 1.871599 -1.442890 -2.918007 -0.535016 -2.376118 1.365468 0.548422 2.284781 0.447743 1.729779 -1.199747 0.368831 0.139698 1.625069 0.000168 -0.165609 -0.961584 -0.926990 2.815818 0.892547 -1.158604 0.412954 -0.599922 1.199152 1.169478 0.619989 1.740788 0.526586 0.182525 -0.328019 0.649535 -0.798033 0.638455 -0.814829 0.912924 -0.953826 -0.662417 0.684256 -1.222042 2.116698 0.189248 1.375308 -0.012095 1.890979 0.017411 -1.632575 -1.136457 -1.338907 1.277146 -1.272890 1.001541 -0.930109 -0.443702 1.401588 0.039123 -0.060578 -2.145996 0.055333 -0.677710 -1.654443 -0.328684 -1.300855 0.353806 -0.730264 -1.286846 -0.107106 -0.648191 1.040151 0.172821 -0.361811 -0.580385 -2.493409 -0.108381 0.478954 0.334639 1.114002 1.141778 -0.510159 -0.947156 -1.477299 -1.242878 1.994380 -0.330578 0.759041 1.122739 -1.830512 -0.301898 -0.128303 0.408430 0.662780 0.517521 -1.106683 0.563173 1.061929 -0.719240 -0.858990 -1.508422 0.561444 -0.914710 0.224082 0.704304 -0.126932 0.033219 -1.470125 0.178099 -1.440871 -1.872545 0.479417 -1.239770 -1.046036 1.352661 -1.131205 -0.498649 -0.629454 0.165710 0.561588 1.283448 0.616207 0.604237 1.284878 1.042997 0.725875 -1.550931 -0.186933 0.396666 1.535410 0.714538 0.341946 -0.226126 -1.209784 0.693779 -1.442342 -2.702189 -1.124414 2.073313 1.795290 0.457698 -1.596112 1.347222 -0.763176 1.196301 1.729723 0.763376 0.588071 0.445428 -1.522256 0.742788 1.996823 -0.916952 1.471275 -0.100269 -1.285896 2.496278 -0.714580 0.425037 0.299414 -0.688108 -0.367546 -0.552722 0.188955 1.713361 0.681010 0.399248 -0.055129 0.700947 -0.777335 -2.142892 -3.051293 -0.155424 2.348623 1.740538 2.802743 -1.626601 -0.421469 0.273007 0.693234 -0.763566 -1.493533 0.313961 -1.005862 1.031929 -4.515398 -2.338694 3.648061 1.514424 1.289657 0.484874 1.076770 0.984229 -0.550786 -0.840716 -1.149495 1.055738 0.678485 -1.428190 -0.133341 0.264061 -2.347986 -0.689092 -0.092929 0.408528 -0.095312 -1.050000 0.996759 -1.478978 -0.869627 -0.449255 0.519463 -1.255958 -0.592486 -0.222278 -0.357792 0.401365 0.490496 0.111757 0.087700 -0.421613 -1.497682 -0.535509 -0.336509 1.283080 0.944394 2.806894 3.262002 -1.059440 0.917844 -0.265332 -1.433925 2.875299 -1.366394 0.222072 -0.244202 1.942774 1.181900 0.492105 1.995080 -0.662264 -0.596198 -1.816773 -0.135612 1.640410 1.071197 -2.042613 -1.040324 -3.077409 0.070726 0.001968 2.841371 -0.882851 2.959545 -1.420397 0.506267 -3.342933 0.359501 0.699283 -0.137572 1.070941 0.482885 -1.254057 -1.223720 -0.702739 -1.595941 0.201111 -0.063253 -0.592639 -0.935882 -0.712354 0.374982 -2.007617 0.293407 0.928690 -0.967180 1.603560 0.179821 -0.060594 -0.813201 0.370564 1.125596 0.545293 -1.078813 1.859813 0.265593 3.798625 0.163966 1.301370 -0.953065 1.423572 -0.825978 -1.752427 -0.856311 1.969549 2.415755 -0.008022 0.807084 0.720287 0.258363 1.456038 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.029968 0.220457 0.352667 0.405957 -0.349976 -0.674543 -0.070201 -0.476784 0.167479 0.028209 0.290513 0.015881 0.338700 -0.145457 -0.045995 -0.060761 0.259529 0.258181 -0.022334 -0.200359 -0.418540 0.368885 -0.014984 -0.278580 0.115447 -0.027712 0.524942 0.280036 0.130074 0.427070 0.091154 0.050105 -0.132771 0.190339 -0.179399 -0.083268 -0.192889 0.257387 -0.210313 -0.013983 0.127669 -0.249807 0.409264 0.132689 0.086282 0.319380 0.139174 0.115144 -0.229305 -0.130766 -0.169652 -0.013076 -0.196121 0.256175 -0.340136 -0.131397 0.319074 0.089838 0.138687 -0.294365 0.095953 -0.205186 -0.296412 -0.047508 -0.434381 -0.026211 -0.225253 -0.497622 -0.071306 -0.085498 0.152754 0.010736 -0.128994 -0.210056 -0.542483 -0.077743 0.156275 0.128238 0.321619 0.163830 -0.010964 -0.192887 -0.421439 -0.285599 0.315907 -0.071138 0.251655 0.302821 -0.243147 -0.310823 0.101161 0.125089 0.287754 0.160333 0.059608 0.173833 -0.154509 -0.032205 -0.160036 -0.571051 0.162148 -0.101476 0.137129 0.020088 -0.105382 0.031814 -0.004152 0.107297 -0.070515 -0.359710 0.061327 -0.346806 -0.066692 0.358896 0.028277 -0.275486 -0.085638 -0.127588 0.104354 0.281451 0.166523 -0.040857 0.219093 0.179381 0.125857 -0.332004 -0.131647 0.052215 0.019645 0.204113 0.146039 -0.126711 -0.245473 0.114057 -0.348759 -0.567107 -0.052838 0.177327 0.259634 -0.193308 -0.235396 0.398378 -0.332314 -0.040548 0.255183 0.271528 0.185071 0.000453 -0.232687 0.106166 0.328011 -0.139718 0.188664 -0.056214 -0.333511 0.376526 0.116541 0.012794 -0.068511 -0.285487 -0.023615 -0.013853 0.143314 0.357033 0.010865 0.011437 0.239327 0.097603 -0.406593 -0.361315 -0.370670 0.104722 0.626710 0.295525 0.550618 -0.383043 0.032972 0.090287 0.217384 -0.127403 -0.104834 0.054775 -0.098614 0.245430 -0.803149 -0.456216 0.493472 0.053470 0.196978 -0.080227 -0.008021 0.090613 0.029852 -0.296579 -0.266079 0.052227 0.071330 -0.238819 -0.178139 0.033862 -0.434151 0.055705 0.167555 0.145022 0.194863 -0.250177 0.055773 -0.490423 -0.144054 -0.395101 0.125134 -0.244849 0.098000 0.102500 -0.085460 -0.017046 0.065647 0.065491 -0.093476 -0.100865 -0.110793 0.000953 -0.095281 0.188826 0.013065 0.625753 0.440174 -0.264704 -0.040603 0.064126 -0.263346 0.821013 -0.244678 0.182658 0.062254 0.548393 0.146762 0.124848 0.478332 -0.170796 -0.104553 -0.460101 -0.253768 0.373044 0.108030 -0.368153 -0.008164 -0.641237 0.025503 -0.177863 0.627095 -0.142568 0.521886 -0.161884 0.138796 -0.344779 0.083436 0.135503 -0.147254 0.287039 0.156588 -0.286254 -0.142849 -0.149238 -0.359472 -0.007419 -0.090046 -0.061281 -0.181345 0.183258 -0.330004 -0.174089 0.052072 0.244006 -0.259700 0.124830 -0.252477 0.058793 -0.091190 -0.033070 0.337279 -0.012323 -0.276668 0.281907 0.124813 0.678627 0.229879 0.289870 -0.145585 0.099485 -0.075924 -0.334476 -0.279545 0.418309 0.255809 0.100566 0.244134 0.242422 0.172411 0.273253 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::difference_type __gnu_cxx::operator- > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.453609 0.576020 2.006244 1.347289 -0.226954 -0.798749 -0.308625 -1.841392 1.074671 0.443779 1.495795 -0.427022 0.942653 -0.102666 -0.411279 -0.398799 0.922496 0.039542 0.275195 -0.273221 0.538517 1.931836 0.117186 -0.928391 0.224562 -1.433395 1.016009 0.613296 0.907937 0.995245 0.289167 0.750757 0.242073 0.454417 -0.708621 -0.207067 -0.310195 0.802204 -0.740051 -0.595884 0.293454 -0.248628 0.670075 0.420123 0.911742 0.176026 0.846191 -0.485596 -0.409411 -0.243626 -1.347895 1.009592 -0.575192 0.209466 -0.883652 -0.621497 0.589612 -0.202109 -0.026264 -1.483806 0.259143 0.225950 -0.650338 -0.086583 -1.031200 0.737841 -0.136041 -0.352896 -0.188908 -0.323049 0.738480 0.448867 0.416109 -0.420059 -2.018545 0.673761 0.148443 0.107492 0.698144 0.392887 -0.067499 0.097314 -0.712334 -1.006234 1.449935 0.871406 0.367651 0.580744 -0.332570 -0.525294 -0.489888 0.022018 -0.246973 1.029343 -0.844028 0.951391 -0.070604 -0.342380 -0.165486 -0.481882 0.129291 -1.105290 0.141643 0.754196 -0.312942 0.654350 -0.105809 0.273333 -0.196804 -1.174677 0.335421 -0.925117 -0.321441 1.334835 -0.680774 -0.486522 -0.609122 0.292282 0.192546 0.974795 -0.546641 0.892596 0.518923 0.585591 0.432449 -0.855820 0.100772 1.168744 0.417182 0.477290 0.220255 -0.704588 -0.673009 -0.332418 -0.213005 -1.578572 -0.663865 0.876276 1.090299 -0.406841 -1.324199 0.946985 -0.432374 1.113000 1.320691 0.263240 0.370891 0.755595 -0.912913 0.472327 1.944189 -0.582936 0.643881 -0.518282 -0.508280 1.194965 -0.432423 0.850874 -0.243808 0.200481 0.236961 -0.910056 -0.004831 1.260844 0.282227 0.270579 0.435745 0.199122 0.018896 -1.733853 -1.981493 -0.742971 1.163634 0.449313 1.893027 -0.884479 -0.441656 0.049215 0.843540 -0.034690 -0.366967 0.249423 -0.715663 0.586506 -2.513656 -1.966205 1.571288 1.184223 0.331630 0.192925 0.780533 0.516196 -0.107170 -0.856452 -0.368800 0.976732 0.005339 -0.527630 -0.284307 -0.050968 -1.098497 -0.915261 0.087826 0.094128 0.196345 -0.278702 0.803523 -0.646123 -0.646329 -0.813200 0.322772 -1.015183 -0.898067 -0.213081 0.002000 0.102374 0.418436 -0.552573 0.123422 0.621312 -0.568609 -0.399573 -0.047870 0.143598 -0.120207 0.854090 2.012980 -0.188571 0.395169 0.191427 -0.796736 2.482495 -0.367735 -0.047577 -0.079567 0.138946 0.347711 0.660625 0.574910 -0.517808 -0.522200 -1.646738 0.341049 0.268052 0.661353 -1.255363 -0.743482 -1.144679 -0.093909 0.480918 1.254894 -0.003472 2.465871 -0.683665 -0.053016 -2.198052 0.143024 1.134940 -0.249827 0.979588 0.612690 -1.028566 -1.011575 -0.243740 -0.742544 0.088456 -0.573911 -1.441346 -1.085906 -0.522447 0.642668 -1.085307 0.509771 0.977651 0.148957 0.755289 -0.249710 -0.130323 -0.667794 0.019356 0.413009 0.487913 -0.863045 0.872237 -0.513825 2.076822 -0.816087 0.797339 -0.935587 0.984770 -0.609299 -1.009984 -0.279631 1.991487 0.980991 0.250752 0.044735 -0.310957 -0.196550 1.080091 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::cbegin() const = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_insert_dispatch(__gnu_cxx::__normal_iterator > >, int*, int*, std::__false_type) = -4.802868 -0.191946 9.536350 2.026727 -3.856486 -5.112581 -2.987995 -11.445735 6.305255 5.245193 10.194267 0.539676 6.429540 -3.085797 0.129902 -1.150242 5.306976 -4.588560 1.690205 -2.929670 0.360369 10.265168 2.250990 0.308582 1.068173 -8.686651 5.163482 -0.184984 3.410561 6.928390 2.338673 0.268095 -2.535126 2.372543 0.633213 4.449154 1.663843 3.717611 -1.672080 -1.586279 2.044122 -3.315192 5.302606 0.561884 7.684004 -1.111434 1.752101 -1.453584 -5.069346 -5.022181 -1.602762 2.382069 -5.659970 2.473630 0.659538 -2.092475 0.870695 -0.853427 -0.778277 -6.781009 0.194500 -3.631276 -2.919020 0.880278 -3.481383 2.505041 -4.045297 -0.928362 -0.905731 -5.209416 3.458356 1.584524 2.333016 2.188542 -8.745032 2.201343 1.650918 -0.794111 3.589537 2.669383 -3.199582 -2.147527 -4.183959 -6.401891 6.071908 5.046762 0.447084 1.205715 -5.800847 1.810021 -0.990084 0.628022 0.871860 5.152170 -6.794426 0.466550 1.392585 -3.348165 -0.962395 -7.167855 0.860415 -5.990743 1.366975 4.485783 -3.672853 -0.991527 -5.019320 1.313175 -4.015322 -5.188720 3.621752 -3.700348 -1.317224 6.071870 -5.190482 -1.646577 -5.615957 0.104942 4.322418 3.678398 0.450173 2.992324 5.528874 3.804357 5.197241 -6.155515 -1.182195 5.383754 5.325230 0.562882 0.309541 -3.839909 -2.876216 2.449048 -4.506810 -9.320915 -5.779570 3.892701 6.189805 -0.133305 -3.976673 1.719845 -2.685926 5.522721 8.256568 1.849541 1.293393 3.078499 -5.834958 2.333570 7.616044 -3.000900 4.518198 -1.621556 -3.407218 7.366661 -4.287435 3.902311 0.271963 1.904170 -1.806144 -5.179321 0.104588 7.026354 1.423205 4.670991 -3.602351 2.477181 -0.269049 -7.522281 -12.171905 -2.716887 8.778482 5.046586 7.698482 -6.054159 -1.683577 1.150858 6.117729 1.978913 -6.273194 2.319054 -2.857794 3.203560 -13.779411 -9.017226 11.955987 10.454139 4.705246 0.921946 3.503712 3.828070 -5.958335 -2.919691 -4.620350 5.346164 -0.956506 -6.928477 -1.695701 1.985338 -7.060934 -3.974630 -1.456404 1.032116 2.762088 -2.548326 4.161833 1.087609 -1.189084 -1.821122 5.288728 -3.088748 -6.179168 -2.771534 0.467890 2.432461 2.834482 -1.648902 0.942710 2.120936 -5.100183 -1.528340 2.509707 2.810976 1.273024 8.552523 9.724105 -3.174823 -0.610431 -2.173480 -3.271052 8.051767 -4.346066 -0.845504 -0.492317 1.904928 3.003152 2.627661 5.548663 -2.842424 -4.324325 -6.216043 -0.193973 1.201761 4.598400 -5.339644 -8.350867 -8.930255 1.930342 0.612576 8.695967 0.530585 13.100312 -2.948250 2.193409 -11.449773 0.470871 4.577553 -0.442623 5.103514 1.496476 -3.975779 -4.214363 -2.444051 -6.250996 -0.846065 -0.176367 -2.816580 -3.697287 -5.192856 6.675420 -4.537385 0.894861 1.707749 0.068988 7.713581 3.658006 -1.122307 -6.399085 2.870877 2.584056 1.500299 -3.349651 7.310864 0.838594 12.119981 -3.585733 2.699284 -2.299542 5.600868 -3.693960 -6.252495 -2.002143 7.686473 8.697737 2.748812 -1.517929 -0.934607 -1.311881 4.949522 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -0.595850 0.118354 1.634780 0.637216 -0.499208 -1.808618 -0.489436 -2.076266 1.073324 0.719660 1.908538 0.043806 1.341431 -0.599951 0.250432 0.186068 0.951465 -0.429264 0.126797 -0.589024 -0.356325 2.033967 0.487094 -0.270298 0.279121 -1.224939 0.758690 0.694196 0.532722 1.294624 0.272059 0.127162 -0.091487 0.566788 -0.582450 0.622921 -0.042266 0.720402 -0.406720 -0.287244 0.311609 -0.345002 1.254042 0.197584 1.229856 0.287547 0.838504 -0.075413 -0.838671 -0.905662 -0.557269 0.895111 -0.893284 0.594213 -0.564095 -0.248952 0.665309 -0.231334 -0.051365 -1.459910 0.128449 -0.170762 -1.025510 -0.079274 -0.786267 0.283275 -0.360150 -0.697325 -0.106236 -0.628235 0.775411 0.159641 -0.174558 -0.119905 -1.779672 0.185684 0.435790 0.006125 0.750235 0.314881 -0.596893 -0.424696 -0.963124 -1.162559 1.572605 0.554015 0.542668 0.721490 -1.267519 -0.095477 -0.273063 0.189636 0.413704 0.837841 -0.764335 0.229769 0.824928 -0.611418 -0.644556 -1.052184 0.349854 -0.911362 0.213502 0.621060 0.045369 -0.079662 -1.068786 0.303362 -0.999773 -1.176384 0.514106 -0.919360 -0.492795 1.011245 -0.879846 -0.257792 -0.678439 -0.046061 0.550269 1.012957 0.308758 0.308693 1.150438 0.731495 0.586820 -1.161118 -0.265315 0.511374 1.147571 0.439802 0.165565 -0.749959 -0.736071 0.441107 -1.161942 -2.040411 -0.907304 1.075748 1.140865 -0.146047 -1.139431 1.165443 -0.528121 0.896050 1.518221 0.401209 0.332816 0.388787 -1.121492 0.513432 1.637288 -0.751163 1.093902 -0.311675 -0.933481 1.510185 -0.709927 0.562075 0.335599 -0.302833 -0.299673 -0.597800 0.276820 1.399058 0.524294 0.748059 -0.259305 0.456578 -0.344927 -1.337632 -2.392155 -0.380755 1.545784 0.883453 2.104022 -1.133116 -0.530992 0.078843 1.025947 -0.405533 -1.021336 0.271397 -0.691040 0.686171 -2.906429 -1.722718 2.532726 1.612015 1.201642 0.238782 0.935964 0.734189 -0.513811 -0.503935 -0.636449 0.874641 0.285531 -1.318410 -0.214674 0.160701 -1.571640 -0.534057 -0.461912 0.232761 -0.160650 -0.360318 0.777266 -0.690817 -0.674021 -0.260855 0.363507 -0.855578 -0.611248 -0.357147 -0.093971 0.116270 0.419864 -0.331796 0.088672 0.205936 -1.208689 -0.228137 0.187177 0.731156 0.669065 1.987435 2.111861 -0.713081 0.639182 -0.317777 -0.704203 1.645195 -0.843801 -0.000714 -0.077704 1.129409 0.699879 0.513221 1.212361 -0.479047 -0.576671 -1.399783 0.071340 0.991491 0.664134 -0.781581 -1.034451 -2.029084 -0.005081 0.049182 2.236547 -0.354454 2.366937 -0.639135 0.587807 -2.390117 0.250201 0.363434 -0.201105 0.649309 0.384475 -0.924906 -1.142816 -0.449703 -1.212692 -0.634557 -0.013464 -0.655131 -0.705215 -0.911709 0.623937 -1.385752 0.226975 0.598037 -0.169024 1.097193 0.260503 -0.080190 -0.934490 0.442496 0.981861 0.174000 -0.754122 1.007210 0.174284 2.732377 -0.366230 1.132288 -0.662993 1.097523 -0.531239 -1.147864 -0.551993 1.532122 1.705952 0.139066 0.273444 0.255523 0.075919 1.128586 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.129172 0.087638 0.445059 0.202718 -0.145381 -0.618231 -0.107580 -0.585185 0.244117 0.126261 0.517794 -0.031458 0.416919 -0.192225 0.093577 0.053474 0.296336 0.018391 0.040214 -0.169028 -0.097521 0.450235 0.058677 -0.120386 0.105605 -0.205197 0.203926 0.242617 0.111167 0.386882 0.087549 0.019532 -0.087714 0.126381 -0.186007 0.126585 0.063815 0.200179 -0.206300 -0.080208 -0.034105 -0.113489 0.313265 0.035607 0.309486 0.168704 0.190536 0.061708 -0.225551 -0.238861 -0.148806 0.252554 -0.220388 0.198595 -0.183499 -0.140220 0.212236 0.011934 0.012077 -0.475305 0.076775 -0.084424 -0.265037 -0.034892 -0.259148 0.075990 -0.079985 -0.289936 -0.032442 -0.137206 0.214244 0.029945 -0.024729 0.014763 -0.494824 -0.003575 0.127576 0.073178 0.237366 0.051386 -0.046209 -0.172211 -0.262237 -0.293788 0.446607 0.090611 0.230040 0.274708 -0.378336 -0.032080 -0.023300 0.030551 0.193417 0.144609 -0.093028 0.075779 0.158542 -0.104036 -0.141810 -0.403440 0.133269 -0.184475 0.054475 0.132852 0.099060 0.009607 -0.279564 0.185329 -0.284731 -0.343634 0.217718 -0.248112 -0.200643 0.308666 -0.227421 -0.093899 -0.135807 -0.032647 0.118858 0.312447 0.108039 0.114697 0.151066 0.228545 0.145885 -0.325409 -0.129606 0.133904 0.329078 0.182453 0.076383 -0.221364 -0.221528 0.154977 -0.453392 -0.583368 -0.237735 0.287839 0.369757 -0.038879 -0.372188 0.352741 -0.220520 0.190894 0.341921 0.176334 0.088165 0.076726 -0.331379 0.131094 0.362798 -0.238048 0.344786 0.029580 -0.181238 0.230743 -0.062501 0.072553 0.068443 -0.176650 -0.005830 -0.091078 0.023402 0.360591 0.275583 0.214923 -0.082925 0.168866 -0.310707 -0.431799 -0.583940 -0.083032 0.517945 0.129660 0.514532 -0.309166 -0.226491 0.005896 0.356450 -0.243509 -0.266383 0.044103 -0.216568 0.223549 -0.741463 -0.458369 0.700143 0.390035 0.374772 0.017165 0.185050 0.223079 -0.196861 -0.136394 -0.140845 0.145621 0.020241 -0.481837 -0.186948 0.010433 -0.466751 -0.122511 -0.040946 0.116390 -0.106910 0.034633 0.239183 -0.181695 -0.149969 -0.072118 0.058025 -0.223058 -0.069939 -0.029431 -0.038061 0.084324 0.089894 -0.171169 0.020010 0.145269 -0.362729 -0.047592 0.010875 0.231765 0.212721 0.675930 0.506424 -0.148362 0.209962 -0.071762 -0.325446 0.526749 -0.190782 0.092982 -0.049574 0.361858 0.197709 0.097594 0.382938 -0.158515 -0.214016 -0.463823 -0.196102 0.349987 0.228098 -0.109999 -0.306911 -0.560930 0.038751 -0.031444 0.637817 -0.151696 0.601353 -0.193832 0.171648 -0.576970 0.086800 0.106820 -0.141969 0.135096 0.117257 -0.232839 -0.439761 -0.101804 -0.397537 -0.308111 -0.068844 -0.185720 -0.133672 -0.211693 0.118589 -0.329481 0.013929 0.162319 -0.017169 0.303087 0.025099 -0.010087 -0.210162 0.131366 0.282287 0.005980 -0.295763 0.268828 0.140571 0.864241 0.011247 0.277324 -0.198110 0.224400 -0.130217 -0.267563 -0.179537 0.436457 0.517246 0.063684 0.123793 0.145819 0.031394 0.294304 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.120370 0.162706 0.553223 0.706665 -0.494493 -0.947308 -0.123802 -0.668489 0.387381 0.116304 0.537252 0.127871 0.555673 -0.339793 -0.040027 -0.151925 0.449721 0.258541 -0.079209 -0.294110 -0.456317 0.778111 0.141864 -0.539753 0.162425 -0.160306 0.721893 0.396835 0.209371 0.709574 0.131582 0.111167 -0.152370 0.270065 -0.307479 -0.043790 -0.346084 0.357528 -0.288357 -0.164622 0.311854 -0.326322 0.675483 0.190979 0.242593 0.279084 0.319604 0.054441 -0.408273 -0.281385 -0.302538 0.046274 -0.326424 0.401569 -0.472456 -0.108810 0.510418 0.080143 0.148983 -0.640925 0.169945 -0.216496 -0.481653 -0.113394 -0.594437 -0.002503 -0.285373 -0.618228 -0.084431 -0.268092 0.256821 0.020540 -0.167329 -0.427025 -0.839348 -0.082562 0.182913 0.128999 0.455790 0.395034 -0.174490 -0.328294 -0.596007 -0.419147 0.508741 -0.127963 0.269164 0.483636 -0.408484 -0.429433 0.099895 0.194234 0.325899 0.236603 -0.088987 0.251623 0.014656 -0.107092 -0.140879 -0.621650 0.224872 -0.228650 0.128157 0.169230 -0.165665 0.067434 -0.092866 0.119057 -0.200234 -0.532551 0.146326 -0.482899 -0.205105 0.500530 -0.073895 -0.374949 -0.181196 -0.082272 0.203608 0.469507 0.163308 0.027686 0.390434 0.259893 0.225037 -0.521019 -0.070266 0.175689 0.179664 0.245881 0.149176 -0.136180 -0.358124 0.183946 -0.462714 -0.866932 -0.193939 0.409299 0.476466 -0.137728 -0.473551 0.607286 -0.405755 0.104142 0.484758 0.332987 0.277742 0.085057 -0.423622 0.178668 0.619593 -0.224956 0.292470 -0.109915 -0.581160 0.758563 0.037376 0.098978 -0.113062 -0.334475 -0.022134 -0.106456 0.261773 0.587066 -0.010430 0.057607 0.231173 0.158779 -0.411547 -0.614774 -0.771589 0.035554 0.851307 0.621071 0.987355 -0.561795 0.052410 0.074949 0.257223 -0.183820 -0.242476 0.090883 -0.200163 0.348043 -1.473871 -0.752426 0.949542 0.240161 0.334341 -0.009391 0.135537 0.156984 0.142672 -0.378084 -0.418976 0.176470 0.231942 -0.235796 -0.082161 0.060340 -0.700212 -0.083073 0.189218 0.135752 0.225179 -0.519018 0.113221 -0.721326 -0.255412 -0.503849 0.204310 -0.435078 0.027736 0.044469 -0.124394 -0.009529 0.130261 0.138197 -0.105487 -0.187242 -0.209756 -0.099711 -0.167635 0.323319 0.102897 0.814383 0.867789 -0.422192 -0.015880 0.057203 -0.413915 1.294746 -0.461971 0.142863 0.042928 0.781121 0.356040 0.205182 0.652777 -0.239852 -0.049111 -0.669021 -0.166734 0.564745 0.210629 -0.818446 -0.104471 -0.983743 0.023932 -0.228355 0.947938 -0.220277 0.937104 -0.369147 0.162416 -0.785714 0.114886 0.301531 -0.118141 0.421058 0.224208 -0.448702 -0.330351 -0.228403 -0.513268 0.198790 -0.111012 -0.161303 -0.314757 0.125844 -0.280417 -0.434204 0.164584 0.437530 -0.422399 0.315719 -0.286385 0.061243 -0.205289 -0.037267 0.308326 0.105372 -0.372460 0.483241 0.103711 0.984611 0.189934 0.479366 -0.283107 0.386018 -0.276427 -0.616044 -0.389861 0.636148 0.500437 0.092530 0.382695 0.310371 0.174850 0.462032 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_insert(__gnu_cxx::__normal_iterator > >, int*, int*, std::forward_iterator_tag) = -21.967091 -1.069237 43.781976 14.276937 -17.850639 -23.107674 -12.764178 -49.444947 29.526266 21.662989 45.071138 3.228911 28.444369 -15.940187 0.713740 -5.572305 25.240875 -17.576887 5.634217 -12.718056 4.433736 47.612134 11.699623 -4.784191 4.840716 -37.219353 20.538065 0.834839 16.974617 30.571756 9.818899 1.079212 -10.015344 10.631210 0.096169 17.693936 6.332826 15.586304 -11.425749 -10.470296 8.435809 -13.909763 24.203127 1.155804 34.089130 -8.360782 11.910740 -7.740609 -24.684554 -21.140686 -10.323326 15.851621 -24.473177 12.824902 3.895714 -8.788260 4.701118 -3.719905 -3.868672 -34.369624 1.455442 -13.312954 -12.724989 1.773072 -15.908191 11.211388 -15.831288 -4.663146 -2.491089 -22.188976 15.737782 7.589394 12.174835 6.603910 -39.575584 10.871589 7.037845 -1.415974 16.078069 14.845640 -11.614416 -10.835080 -16.607185 -27.198378 27.302717 19.241478 1.781875 6.937946 -25.588815 7.211853 -3.734344 2.321523 1.590374 20.972115 -32.066845 4.444385 6.444918 -14.131238 -2.762517 -29.799868 2.147575 -27.304614 4.584146 21.114325 -14.400200 -1.203250 -21.997983 6.986478 -17.786378 -23.802320 16.922679 -14.616665 -10.111751 27.396230 -24.326847 -7.613914 -22.025251 3.616790 16.298719 17.248756 -0.174420 16.482713 22.174152 17.379419 23.778397 -27.539826 -2.211656 24.295607 25.518224 4.210138 2.437447 -15.449963 -13.241835 10.270818 -18.665895 -42.927079 -25.263350 21.168642 30.111557 3.618929 -21.488139 5.989296 -11.123732 28.503934 35.161637 8.151156 6.258827 13.884529 -26.498215 10.911288 35.264387 -14.661729 21.093668 -5.809535 -14.803314 32.600792 -18.874104 18.248241 -1.144764 8.396840 -4.189882 -24.333243 -0.883765 32.536033 8.154111 18.943335 -16.455835 10.493914 -1.901295 -38.295732 -55.753228 -13.313563 36.956338 21.922902 36.510115 -25.760661 -10.962505 3.643037 25.766430 4.801945 -27.720442 10.058256 -15.213995 15.111735 -64.289161 -42.367812 56.838200 48.053017 19.572664 4.995896 18.224773 17.217335 -26.338693 -13.728498 -19.941751 23.065161 -1.948546 -30.308506 -7.618762 8.565037 -32.972522 -18.877338 -4.159532 3.512725 10.333870 -10.930798 18.650965 5.175319 -7.534340 -6.997334 23.261871 -15.995633 -27.043261 -12.118424 2.365955 12.268090 14.105700 -8.431513 2.375254 9.874225 -24.087155 -9.214778 7.817346 15.146881 7.445145 37.570550 46.648228 -11.482984 2.578896 -7.533638 -18.605469 40.857988 -20.922315 -4.717930 -3.641567 8.014775 13.301316 12.266353 24.022541 -13.054510 -18.573071 -29.483134 -0.570757 5.005352 21.591679 -28.365030 -38.312279 -37.937217 7.763451 4.044872 36.017929 0.908987 60.135594 -16.551211 7.829777 -56.433571 1.760509 23.013173 -1.189112 23.814538 8.179378 -18.791129 -24.505269 -10.605883 -26.542998 -0.583502 -2.057851 -15.595178 -16.038381 -24.794081 32.691209 -22.759926 5.819059 10.661423 -0.128970 37.157296 15.693461 -5.353117 -27.400387 11.954240 9.122218 9.005844 -15.856911 33.815319 2.931135 57.467156 -16.558425 11.732341 -13.692620 24.945215 -17.040715 -28.255867 -9.230862 35.400864 40.904990 12.258497 -5.702568 -3.585492 -9.165827 23.519421 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.104808 0.225037 0.200017 0.131034 -0.142934 -0.372170 -0.009471 -0.254544 0.003465 -0.025823 0.108082 -0.073265 0.170301 -0.001192 -0.025616 -0.011642 0.109893 0.234107 0.019273 -0.086330 -0.248850 0.033842 -0.115665 -0.080723 0.080050 0.059422 0.261804 0.166181 0.055105 0.187722 0.033847 0.004823 -0.091010 0.091221 -0.098767 -0.114550 -0.019226 0.140525 -0.141583 0.055892 -0.049503 -0.111971 0.147075 0.071609 -0.029875 0.290120 -0.032422 0.117683 -0.065164 -0.021225 -0.032138 -0.031027 -0.046436 0.139966 -0.182119 -0.122918 0.137723 0.093954 0.120203 -0.091549 0.073511 -0.114368 -0.099044 -0.015850 -0.240358 -0.048610 -0.111203 -0.327721 -0.039082 0.010553 0.049430 -0.012189 -0.063067 -0.047254 -0.255704 -0.047419 0.117741 0.100183 0.170979 -0.003212 0.098097 -0.079543 -0.209959 -0.150561 0.145017 -0.010377 0.201505 0.166898 -0.124270 -0.182395 0.094806 0.052321 0.196627 0.077665 0.151312 0.105400 -0.210979 0.023760 -0.099269 -0.418312 0.083653 -0.012364 0.090674 -0.059523 -0.002690 0.025046 0.038699 0.133094 0.032290 -0.168988 0.055448 -0.179144 -0.025624 0.193676 0.071955 -0.165363 -0.003936 -0.114057 0.025336 0.131179 0.101347 -0.062225 0.015931 0.076629 0.055257 -0.149732 -0.118207 -0.009626 -0.063581 0.139856 0.102797 -0.107438 -0.114149 0.058024 -0.258286 -0.289731 0.027230 0.005802 0.103080 -0.185203 -0.092029 0.210047 -0.233907 -0.113857 0.064282 0.186091 0.093946 -0.038912 -0.076454 0.015058 0.073042 -0.094267 0.100668 0.024480 -0.115843 0.004096 0.175565 -0.030665 -0.055058 -0.198765 0.039103 0.039023 0.042705 0.171421 0.068260 0.007153 0.156201 0.034508 -0.348880 -0.153230 -0.083183 0.087097 0.346229 0.010797 0.186285 -0.172998 -0.035894 0.047758 0.184613 -0.127739 -0.002581 0.010918 -0.024572 0.130371 -0.251172 -0.190736 0.139136 -0.033812 0.095952 -0.123125 -0.085481 0.020380 -0.034353 -0.182416 -0.103819 -0.051892 -0.054190 -0.214930 -0.222116 -0.000609 -0.195889 0.134567 0.122021 0.100675 0.095822 0.001698 0.027308 -0.229033 -0.056987 -0.222739 0.030588 -0.089475 0.130514 0.107070 -0.041224 -0.006518 0.020822 -0.038948 -0.089885 0.028955 -0.065301 0.035631 -0.052001 0.080415 -0.020840 0.402928 0.081062 -0.082421 -0.031099 0.053403 -0.168829 0.402110 -0.077635 0.150231 0.036654 0.293457 0.000434 0.064707 0.263870 -0.094996 -0.126304 -0.276495 -0.282617 0.190661 0.026709 -0.006550 0.016152 -0.280806 0.032697 -0.129818 0.324679 -0.070321 0.191987 -0.010969 0.103059 -0.025031 0.049491 0.012988 -0.155518 0.126554 0.089986 -0.139357 -0.091345 -0.052363 -0.213679 -0.166164 -0.062670 -0.020844 -0.045148 0.148126 -0.262191 0.010735 -0.011336 0.085652 -0.080106 0.011217 -0.167988 0.036936 -0.011047 -0.010573 0.275167 -0.083604 -0.178208 0.075436 0.130917 0.378623 0.189383 0.127256 -0.060444 -0.094712 0.048756 -0.089193 -0.170226 0.208327 0.096228 0.108760 0.111794 0.161924 0.102531 0.117190 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::distance(int*, int*) = 0.020051 0.519315 1.367555 0.482630 -0.388370 -1.125394 -0.358232 -1.733439 0.709009 0.487395 1.116148 -0.221102 0.845323 -0.043542 -0.202576 0.007557 0.559935 -0.035028 0.202316 -0.431082 -0.525866 1.378233 -0.069063 -0.126775 0.199210 -1.143917 1.072068 0.448764 0.602014 0.933542 0.222107 0.263884 -0.039858 0.511117 -0.420308 0.068183 -0.152869 0.668390 -0.353151 0.021695 0.294370 -0.227823 0.797265 0.350851 0.618602 0.616750 0.259386 -0.013837 -0.274839 -0.380021 -0.406991 0.298444 -0.498374 0.341859 -0.687654 -0.318639 0.384738 -0.164781 0.142717 -0.464660 0.128178 -0.151466 -0.675762 0.067233 -0.870830 0.228011 -0.462451 -0.682391 -0.188022 -0.317954 0.511440 0.152598 -0.147312 -0.270849 -1.550425 0.224582 0.343892 0.009488 0.640656 0.066275 -0.250935 -0.094243 -0.936879 -0.975806 1.071304 0.801078 0.403666 0.436718 -0.531101 -0.539571 -0.176028 0.164657 0.401638 0.925238 -0.330059 0.361082 -0.231205 -0.336665 -0.503484 -1.122020 0.272185 -0.686544 0.379222 0.218547 -0.273769 0.107285 0.001858 0.195977 -0.175962 -0.862684 0.119807 -0.803986 0.118575 1.100729 -0.184205 -0.530730 -0.595063 -0.275992 0.267924 0.703343 0.175194 0.059678 1.010562 0.483550 0.384451 -0.847578 -0.341372 0.529227 0.157913 0.355706 0.268994 -0.789158 -0.555042 0.085906 -0.589778 -1.469695 -0.403369 0.281085 0.597312 -0.814597 -0.487029 0.928190 -0.559170 0.322777 1.059900 0.297903 0.338777 0.213952 -0.648844 0.370341 1.328567 -0.394476 0.509366 -0.648526 -0.748522 1.025667 -0.227115 0.442487 0.006169 -0.198465 -0.269741 -0.449690 0.398775 1.044850 -0.092456 0.355196 0.357948 0.204215 -0.377501 -0.830985 -1.382706 -0.150263 1.213952 0.511007 1.509898 -0.908491 -0.123173 0.175187 0.838717 0.111073 -0.331480 0.331206 -0.400508 0.505811 -1.793463 -1.334268 1.226720 0.849433 0.610770 -0.128285 0.398947 0.363412 -0.222819 -0.699044 -0.511646 0.612532 0.103575 -0.819301 -0.354422 0.096542 -0.950993 -0.183199 -0.109902 0.268767 0.432582 -0.325928 0.443913 -0.809454 -0.513506 -0.867033 0.515076 -0.610654 -0.281225 -0.088141 -0.036128 -0.206783 0.314079 -0.206040 -0.035662 0.174959 -0.381964 0.080291 0.227320 0.195365 -0.085548 1.213880 1.263319 -0.561657 0.094895 -0.029011 -0.282579 1.545719 -0.450754 0.148231 0.158657 0.695006 0.116641 0.499888 0.822349 -0.383022 -0.491312 -1.117791 -0.031502 0.467637 0.272393 -0.449278 -0.395331 -1.374339 -0.078391 -0.118716 1.604504 0.037242 1.702250 -0.259682 0.437153 -1.269668 0.195146 0.349919 -0.267028 0.758681 0.391652 -0.776472 -0.352047 -0.294812 -0.846244 -0.516062 -0.173091 -0.641726 -0.764306 -0.203932 -0.060863 -0.604448 0.178489 0.596766 -0.114616 0.421502 -0.356149 -0.006367 -0.648477 0.129919 0.916702 -0.027927 -0.594056 0.531341 -0.006934 1.729846 -0.173843 0.865961 -0.392421 0.492775 -0.247705 -0.900088 -0.472021 1.276537 0.676679 0.269081 0.117885 0.029407 0.254641 0.759382 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::difference_type __gnu_cxx::operator- > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.453609 0.576020 2.006244 1.347289 -0.226954 -0.798749 -0.308625 -1.841392 1.074671 0.443779 1.495795 -0.427022 0.942653 -0.102666 -0.411279 -0.398799 0.922496 0.039542 0.275195 -0.273221 0.538517 1.931836 0.117186 -0.928391 0.224562 -1.433395 1.016009 0.613296 0.907937 0.995245 0.289167 0.750757 0.242073 0.454417 -0.708621 -0.207067 -0.310195 0.802204 -0.740051 -0.595884 0.293454 -0.248628 0.670075 0.420123 0.911742 0.176026 0.846191 -0.485596 -0.409411 -0.243626 -1.347895 1.009592 -0.575192 0.209466 -0.883652 -0.621497 0.589612 -0.202109 -0.026264 -1.483806 0.259143 0.225950 -0.650338 -0.086583 -1.031200 0.737841 -0.136041 -0.352896 -0.188908 -0.323049 0.738480 0.448867 0.416109 -0.420059 -2.018545 0.673761 0.148443 0.107492 0.698144 0.392887 -0.067499 0.097314 -0.712334 -1.006234 1.449935 0.871406 0.367651 0.580744 -0.332570 -0.525294 -0.489888 0.022018 -0.246973 1.029343 -0.844028 0.951391 -0.070604 -0.342380 -0.165486 -0.481882 0.129291 -1.105290 0.141643 0.754196 -0.312942 0.654350 -0.105809 0.273333 -0.196804 -1.174677 0.335421 -0.925117 -0.321441 1.334835 -0.680774 -0.486522 -0.609122 0.292282 0.192546 0.974795 -0.546641 0.892596 0.518923 0.585591 0.432449 -0.855820 0.100772 1.168744 0.417182 0.477290 0.220255 -0.704588 -0.673009 -0.332418 -0.213005 -1.578572 -0.663865 0.876276 1.090299 -0.406841 -1.324199 0.946985 -0.432374 1.113000 1.320691 0.263240 0.370891 0.755595 -0.912913 0.472327 1.944189 -0.582936 0.643881 -0.518282 -0.508280 1.194965 -0.432423 0.850874 -0.243808 0.200481 0.236961 -0.910056 -0.004831 1.260844 0.282227 0.270579 0.435745 0.199122 0.018896 -1.733853 -1.981493 -0.742971 1.163634 0.449313 1.893027 -0.884479 -0.441656 0.049215 0.843540 -0.034690 -0.366967 0.249423 -0.715663 0.586506 -2.513656 -1.966205 1.571288 1.184223 0.331630 0.192925 0.780533 0.516196 -0.107170 -0.856452 -0.368800 0.976732 0.005339 -0.527630 -0.284307 -0.050968 -1.098497 -0.915261 0.087826 0.094128 0.196345 -0.278702 0.803523 -0.646123 -0.646329 -0.813200 0.322772 -1.015183 -0.898067 -0.213081 0.002000 0.102374 0.418436 -0.552573 0.123422 0.621312 -0.568609 -0.399573 -0.047870 0.143598 -0.120207 0.854090 2.012980 -0.188571 0.395169 0.191427 -0.796736 2.482495 -0.367735 -0.047577 -0.079567 0.138946 0.347711 0.660625 0.574910 -0.517808 -0.522200 -1.646738 0.341049 0.268052 0.661353 -1.255363 -0.743482 -1.144679 -0.093909 0.480918 1.254894 -0.003472 2.465871 -0.683665 -0.053016 -2.198052 0.143024 1.134940 -0.249827 0.979588 0.612690 -1.028566 -1.011575 -0.243740 -0.742544 0.088456 -0.573911 -1.441346 -1.085906 -0.522447 0.642668 -1.085307 0.509771 0.977651 0.148957 0.755289 -0.249710 -0.130323 -0.667794 0.019356 0.413009 0.487913 -0.863045 0.872237 -0.513825 2.076822 -0.816087 0.797339 -0.935587 0.984770 -0.609299 -1.009984 -0.279631 1.991487 0.980991 0.250752 0.044735 -0.310957 -0.196550 1.080091 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_a >(int*, int*, int*, std::allocator&) = -0.733009 0.061698 2.715966 1.622629 -1.329876 -3.118501 -0.788047 -4.217414 2.353578 1.301087 3.246550 0.419456 2.501372 -1.545412 0.169648 0.304893 1.957995 -0.353993 0.136930 -1.121277 -0.638392 4.240499 0.429243 -0.554397 0.422967 -2.096065 1.616739 1.127660 1.557998 2.276282 0.722943 0.190475 -0.418127 0.790413 -0.818261 0.968430 -0.528871 1.223737 -1.384802 -0.895626 0.642763 -1.335069 2.479283 0.223810 2.184964 -0.559459 1.826983 -0.239683 -1.338079 -1.444647 -1.352607 1.616194 -1.409018 1.159133 -0.903542 -0.946210 1.050236 0.104678 0.024160 -1.847503 0.165357 -0.757273 -1.878277 -0.214948 -1.538178 0.580877 -1.147958 -1.199808 -0.264845 -1.255155 1.300031 0.273160 -0.155186 -0.637613 -4.010626 0.154941 0.658844 -0.065454 1.423973 1.438641 -0.563154 -1.170588 -1.920010 -1.950128 2.950348 1.230491 0.484812 1.224876 -2.615127 -0.385345 -0.422000 0.419841 0.973243 1.212133 -1.966240 0.540505 0.672118 -0.997283 -0.681442 -2.401007 0.711087 -1.611907 0.410381 0.629018 -0.146345 0.211518 -1.003897 0.331361 -1.482840 -2.228202 0.725029 -1.409199 -0.819820 2.455221 -1.254572 -0.923561 -1.475263 0.110895 0.533793 1.448102 0.661641 0.819936 2.144555 1.278280 1.379071 -2.245723 -0.508144 1.581308 1.671397 0.790122 0.082708 -0.976572 -1.266287 0.880687 -1.696223 -3.810416 -1.782603 2.056542 2.216385 -0.357339 -1.286548 1.345538 -0.837841 1.658951 2.662922 0.358156 0.701648 0.921829 -1.991844 1.002386 2.920712 -1.039832 1.590877 -0.861724 -1.501606 2.807273 -1.111983 0.859339 0.051022 -0.282502 -0.580351 -1.090717 0.594230 2.448888 0.206987 0.943081 -0.713904 0.969314 -0.997159 -2.628658 -4.315790 -0.605162 3.006825 2.111818 3.553855 -2.026744 -0.804447 0.452542 1.399765 -0.250815 -1.811967 1.066975 -1.698832 1.421759 -5.359752 -3.241790 4.507900 2.752031 1.934172 0.232660 1.482365 1.368152 -1.356361 -1.206341 -1.431342 1.576891 0.882033 -2.815084 -0.401624 0.394211 -2.909260 -1.079484 -0.313375 0.355135 0.131353 -0.786993 1.964699 -1.542220 -0.965310 -0.909078 1.727294 -1.407037 -0.925732 -0.783264 -0.164146 0.224538 1.077304 -0.437525 0.285082 0.157384 -1.633070 -0.291851 0.069644 1.042530 0.663397 3.283613 4.130804 -1.324310 1.177153 -0.581622 -1.489995 3.365395 -1.655783 0.020815 -0.145023 1.503386 1.023013 1.026629 2.179052 -0.978762 -1.047556 -2.464419 -0.287833 1.485023 1.435139 -1.698256 -1.809146 -3.667527 0.037695 -0.210524 3.661876 -0.388328 4.251305 -1.890548 0.961239 -4.342645 0.425839 0.981137 -0.204737 1.836433 0.518699 -1.650728 -1.267993 -0.790467 -2.123185 -0.762028 -0.120564 -1.342428 -1.526108 -1.700100 1.300443 -2.465609 0.358874 1.073265 -0.698142 2.356120 -0.259705 -0.098147 -1.741748 0.987900 1.358207 0.489479 -1.423380 1.955908 0.200151 4.930778 -0.502417 1.704818 -1.185798 2.070859 -1.429357 -2.708322 -1.010947 2.708087 3.074585 0.405026 0.192181 0.336383 0.085933 1.896541 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::move_backward(int*, int*, int*) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.129172 0.087638 0.445059 0.202718 -0.145381 -0.618231 -0.107580 -0.585185 0.244117 0.126261 0.517794 -0.031458 0.416919 -0.192225 0.093577 0.053474 0.296336 0.018391 0.040214 -0.169028 -0.097521 0.450235 0.058677 -0.120386 0.105605 -0.205197 0.203926 0.242617 0.111167 0.386882 0.087549 0.019532 -0.087714 0.126381 -0.186007 0.126585 0.063815 0.200179 -0.206300 -0.080208 -0.034105 -0.113489 0.313265 0.035607 0.309486 0.168704 0.190536 0.061708 -0.225551 -0.238861 -0.148806 0.252554 -0.220388 0.198595 -0.183499 -0.140220 0.212236 0.011934 0.012077 -0.475305 0.076775 -0.084424 -0.265037 -0.034892 -0.259148 0.075990 -0.079985 -0.289936 -0.032442 -0.137206 0.214244 0.029945 -0.024729 0.014763 -0.494824 -0.003575 0.127576 0.073178 0.237366 0.051386 -0.046209 -0.172211 -0.262237 -0.293788 0.446607 0.090611 0.230040 0.274708 -0.378336 -0.032080 -0.023300 0.030551 0.193417 0.144609 -0.093028 0.075779 0.158542 -0.104036 -0.141810 -0.403440 0.133269 -0.184475 0.054475 0.132852 0.099060 0.009607 -0.279564 0.185329 -0.284731 -0.343634 0.217718 -0.248112 -0.200643 0.308666 -0.227421 -0.093899 -0.135807 -0.032647 0.118858 0.312447 0.108039 0.114697 0.151066 0.228545 0.145885 -0.325409 -0.129606 0.133904 0.329078 0.182453 0.076383 -0.221364 -0.221528 0.154977 -0.453392 -0.583368 -0.237735 0.287839 0.369757 -0.038879 -0.372188 0.352741 -0.220520 0.190894 0.341921 0.176334 0.088165 0.076726 -0.331379 0.131094 0.362798 -0.238048 0.344786 0.029580 -0.181238 0.230743 -0.062501 0.072553 0.068443 -0.176650 -0.005830 -0.091078 0.023402 0.360591 0.275583 0.214923 -0.082925 0.168866 -0.310707 -0.431799 -0.583940 -0.083032 0.517945 0.129660 0.514532 -0.309166 -0.226491 0.005896 0.356450 -0.243509 -0.266383 0.044103 -0.216568 0.223549 -0.741463 -0.458369 0.700143 0.390035 0.374772 0.017165 0.185050 0.223079 -0.196861 -0.136394 -0.140845 0.145621 0.020241 -0.481837 -0.186948 0.010433 -0.466751 -0.122511 -0.040946 0.116390 -0.106910 0.034633 0.239183 -0.181695 -0.149969 -0.072118 0.058025 -0.223058 -0.069939 -0.029431 -0.038061 0.084324 0.089894 -0.171169 0.020010 0.145269 -0.362729 -0.047592 0.010875 0.231765 0.212721 0.675930 0.506424 -0.148362 0.209962 -0.071762 -0.325446 0.526749 -0.190782 0.092982 -0.049574 0.361858 0.197709 0.097594 0.382938 -0.158515 -0.214016 -0.463823 -0.196102 0.349987 0.228098 -0.109999 -0.306911 -0.560930 0.038751 -0.031444 0.637817 -0.151696 0.601353 -0.193832 0.171648 -0.576970 0.086800 0.106820 -0.141969 0.135096 0.117257 -0.232839 -0.439761 -0.101804 -0.397537 -0.308111 -0.068844 -0.185720 -0.133672 -0.211693 0.118589 -0.329481 0.013929 0.162319 -0.017169 0.303087 0.025099 -0.010087 -0.210162 0.131366 0.282287 0.005980 -0.295763 0.268828 0.140571 0.864241 0.011247 0.277324 -0.198110 0.224400 -0.130217 -0.267563 -0.179537 0.436457 0.517246 0.063684 0.123793 0.145819 0.031394 0.294304 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::copy > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = -0.765974 0.091298 2.797633 0.809806 -1.202459 -2.497955 -0.820342 -4.432133 2.244559 1.496468 3.272091 0.267197 2.396644 -1.293696 0.139880 0.262520 1.828182 -0.772389 0.514103 -1.004934 -0.288753 3.871868 0.155489 0.315840 0.357755 -2.410657 1.456189 0.593292 1.652837 2.107058 0.764972 -0.021890 -0.740864 0.615268 -0.220575 1.140115 0.082167 1.157710 -1.294936 -0.614216 0.268562 -1.456648 2.095160 0.069548 2.288639 -0.778100 1.183063 -0.209924 -1.132021 -1.462426 -0.935567 1.335411 -1.402252 0.955082 -0.269859 -1.239381 0.444842 0.264023 -0.053406 -1.333313 0.027468 -1.160323 -1.375461 0.081815 -1.274945 0.674901 -1.478074 -0.767490 -0.304506 -1.397736 1.172087 0.356160 0.304511 0.175875 -3.861776 0.328139 0.630116 -0.190523 1.232847 1.211125 -0.420035 -0.954501 -1.709696 -2.006566 2.621560 1.886573 0.252264 0.685152 -2.691900 0.152380 -0.396256 0.299872 0.896134 1.294631 -2.163727 0.333247 0.130533 -1.003313 -0.478471 -2.877774 0.568495 -1.679492 0.488032 0.510862 -0.367454 -0.060505 -1.058193 0.405503 -1.302239 -2.037181 0.928130 -1.155816 -0.578834 2.534793 -1.330208 -0.763184 -1.794694 0.033734 0.654148 1.092428 0.622627 0.876914 1.865704 1.256613 1.583717 -2.126956 -0.719922 1.858559 1.562234 0.538661 -0.040869 -1.089036 -1.029637 0.937306 -1.667404 -3.543313 -1.917562 1.625852 2.063366 -0.485325 -0.680072 0.615605 -0.870322 1.619351 2.648620 0.253201 0.557034 0.996139 -1.858818 0.922643 2.528143 -0.945569 1.494024 -0.769555 -1.050895 2.250494 -1.177147 0.959165 0.000536 0.224264 -0.674477 -1.240907 0.286344 2.260787 0.249104 1.238530 -1.166163 0.960262 -0.922673 -2.396761 -4.076449 -0.659473 3.056936 1.727228 2.646780 -1.886117 -0.855214 0.596497 1.706453 0.300720 -1.952139 1.204991 -1.548156 1.300237 -4.546507 -2.961158 3.999991 3.105354 1.816097 0.070358 1.164142 1.447441 -2.143800 -1.187199 -1.441791 1.606236 0.199323 -3.337889 -0.774689 0.512360 -2.575131 -1.001308 -0.384381 0.364810 0.459999 -0.315390 2.147932 -0.618302 -0.575695 -0.753084 2.134244 -1.005601 -1.275700 -0.879120 -0.024366 0.452365 1.127374 -0.692378 0.448611 0.631433 -1.627517 -0.151448 0.457764 0.736216 0.342083 3.181567 3.490977 -1.064091 0.710202 -0.779051 -1.342300 2.661711 -1.464171 -0.016506 -0.172532 0.778629 0.695409 1.013020 1.978321 -0.977893 -1.509053 -2.222936 -0.592724 0.882837 1.540555 -0.952428 -2.380669 -3.257002 0.344812 -0.112870 3.246812 0.019299 4.038284 -1.596281 1.031100 -3.801874 0.334021 0.935807 -0.239932 1.922884 0.309540 -1.383330 -0.881002 -0.727101 -2.181640 -1.124424 -0.058812 -1.256125 -1.346019 -1.920062 1.794773 -1.905826 0.115986 0.511120 -0.316803 2.550045 0.178988 -0.240189 -2.016519 1.267202 1.357372 0.291305 -1.325537 1.965117 0.333533 4.623812 -0.725786 1.172149 -0.854848 1.756430 -1.304275 -2.471623 -0.794083 2.544834 3.015456 0.737351 -0.478380 -0.015547 -0.088055 1.563235 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::advance(int*&, unsigned long) = -0.278502 0.646627 2.287098 1.243140 -1.003631 -1.908494 -0.644807 -2.227747 1.224912 0.633596 1.666752 -0.004308 1.201496 -0.308829 -0.176816 -0.303677 1.003810 -0.040248 -0.113040 -0.804843 -0.820266 2.175431 0.457844 -1.114809 0.437764 -1.768306 1.527108 0.874333 0.796571 1.602588 0.206553 0.224716 -0.197080 1.004313 -0.970551 -0.080627 -0.196126 0.789634 -0.752928 -0.143738 0.800910 0.217851 1.594989 0.361504 0.980796 0.957545 0.480478 0.018081 -1.029125 -0.725126 -0.368295 0.686667 -0.711605 1.018339 -0.597368 0.192932 0.691667 -0.688352 0.165930 -1.335247 0.368564 0.146833 -0.924149 -0.088323 -1.349629 0.029786 -0.396268 -1.225562 0.111484 -0.861925 0.746564 0.014830 -0.317766 -0.981484 -1.931393 0.406029 0.597013 0.323050 1.014255 0.486725 -0.563997 -0.318100 -1.293448 -1.386142 1.074549 0.665517 0.554809 0.841520 -0.741175 -1.047925 0.165146 0.176576 0.396847 1.304224 -0.704167 0.497895 -0.126536 -0.612507 -0.838774 -1.344562 0.281239 -0.984109 0.558083 0.665289 -0.581401 0.179938 -0.072845 0.416884 -0.236955 -1.174192 0.346345 -1.020443 -0.036241 1.653209 -0.374965 -0.941500 -0.672399 -0.336707 0.271564 1.372252 0.084914 0.003237 1.627520 0.858181 0.722381 -1.379539 -0.162642 0.513363 0.559689 0.612572 0.710899 -1.160434 -0.816193 0.267871 -0.946682 -2.404490 -0.528337 0.527798 1.255863 -0.635971 -1.284628 1.363497 -0.950595 0.865462 1.320563 0.627000 0.637410 0.076851 -1.139654 0.585944 2.219946 -0.693753 0.857950 -0.892450 -1.637049 1.809937 -0.263312 0.869294 -0.081996 -0.457592 -0.154128 -0.816407 0.797380 1.807508 -0.061610 0.457171 0.490760 0.210580 -0.474477 -1.617623 -2.509177 -0.147117 1.450399 1.036127 2.900320 -1.449484 -0.406962 -0.245476 1.363608 -0.275838 -0.606751 0.421565 -0.638213 0.796386 -3.162494 -2.128457 2.522586 1.861695 0.851116 -0.099568 1.084937 0.236788 -0.096161 -1.092338 -0.943458 0.811076 0.579911 -0.642473 -0.155735 0.240830 -1.630509 -0.269648 0.004791 0.352889 0.798300 -1.003726 0.162006 -1.160680 -1.207451 -1.318946 0.659114 -1.170328 -0.245396 0.047180 -0.054112 -0.283791 0.699646 -0.164912 -0.659210 -0.044222 -0.784052 -0.152988 0.114416 0.915953 0.188809 1.827861 2.072685 -0.762005 0.643921 0.180833 -0.737532 3.169093 -1.214472 0.097483 0.133876 1.475366 0.385006 0.764046 1.235437 -0.593029 -0.376458 -1.735170 0.291096 0.665523 0.417626 -1.937019 -0.868424 -2.245861 -0.191493 -0.296937 2.306435 -0.096319 2.938302 -0.533502 0.508014 -2.731210 0.219952 0.841082 -0.140091 1.079780 0.774590 -1.389564 -1.562962 -0.390783 -1.379430 -0.068476 -0.200497 -1.016546 -1.053418 -0.312176 0.283903 -1.024155 0.578621 1.615620 -0.517004 0.894191 -0.387764 -0.080606 -0.843185 -0.288999 1.058618 0.138318 -0.864135 1.112709 0.052202 2.874991 -0.178622 1.510749 -0.803283 0.818707 -0.365055 -1.585806 -0.975561 1.828243 1.201535 0.447295 0.459133 0.227554 -0.049974 1.326716 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.137011 0.199562 1.037529 1.214313 -0.883076 -1.613224 -0.282967 -1.546275 0.917131 0.335553 1.046557 0.284951 1.024991 -0.703847 -0.129280 -0.126551 0.803616 0.313093 -0.108310 -0.550789 -0.761401 1.737615 0.169290 -0.787414 0.220654 -0.595246 1.278001 0.651911 0.617342 1.216706 0.290101 0.181516 -0.227471 0.485321 -0.492285 0.054160 -0.651330 0.632905 -0.607988 -0.355176 0.584829 -0.651797 1.258401 0.286004 0.612587 0.164766 0.724361 0.018892 -0.625286 -0.495135 -0.641735 0.260638 -0.608407 0.657313 -0.789270 -0.286466 0.772648 0.118365 0.208833 -0.851344 0.201536 -0.401720 -0.930244 -0.167384 -1.030121 0.091939 -0.593322 -0.961921 -0.175026 -0.481170 0.517641 0.094417 -0.260482 -0.774488 -1.775634 -0.100283 0.299001 0.132618 0.818211 0.781887 -0.273712 -0.609490 -1.091361 -0.805240 1.090116 0.090684 0.317825 0.767114 -0.818234 -0.719151 0.035093 0.324335 0.599506 0.499956 -0.451246 0.404966 -0.040586 -0.247205 -0.253242 -1.157179 0.405476 -0.524139 0.266903 0.213581 -0.293090 0.170954 0.002542 0.092530 -0.391030 -1.001320 0.155093 -0.813950 -0.238206 1.106410 -0.145618 -0.692778 -0.466634 -0.105611 0.234198 0.761614 0.337294 0.134861 0.958344 0.524932 0.487817 -1.015201 -0.191884 0.536941 0.338157 0.441643 0.197322 -0.322884 -0.637765 0.318741 -0.656039 -1.659478 -0.452615 0.765125 0.860803 -0.343950 -0.622998 0.916521 -0.588199 0.352357 0.998540 0.375893 0.477257 0.241996 -0.802677 0.437960 1.302370 -0.327605 0.488330 -0.449787 -0.985041 1.489978 -0.146063 0.239116 -0.204882 -0.446982 -0.183008 -0.293331 0.518555 1.079104 -0.231345 0.118553 0.273682 0.345420 -0.658199 -1.144122 -1.546563 0.007256 1.521490 1.187932 1.819534 -1.029900 0.045634 0.222757 0.432872 -0.109650 -0.471969 0.376730 -0.562198 0.683685 -2.633036 -1.458627 1.795547 0.625936 0.648939 -0.004851 0.378263 0.401122 0.022816 -0.708933 -0.763647 0.460053 0.560806 -0.682205 -0.108419 0.144606 -1.286440 -0.291363 0.263398 0.224461 0.428530 -0.854151 0.430405 -1.282275 -0.463153 -0.945151 0.683644 -0.760500 -0.038547 -0.063842 -0.166125 -0.081620 0.369587 0.189807 -0.068986 -0.312128 -0.309586 -0.077640 -0.198842 0.476495 0.095003 1.364512 1.758952 -0.794823 0.156399 0.036656 -0.632440 2.185828 -0.814123 0.200947 0.117991 1.147200 0.526387 0.438730 1.106972 -0.462622 -0.134083 -1.171055 -0.206977 0.877920 0.449900 -1.341979 -0.271407 -1.777077 -0.035251 -0.355579 1.659836 -0.266838 1.789794 -0.809155 0.329234 -1.612941 0.201089 0.566285 -0.125953 0.931842 0.365002 -0.815945 -0.400213 -0.427072 -0.877263 0.210427 -0.196407 -0.436647 -0.707295 -0.035586 -0.229031 -0.905448 0.275963 0.778028 -0.711266 0.690778 -0.642083 0.108208 -0.527374 0.071256 0.528376 0.217451 -0.659539 0.873777 0.073466 1.887431 0.169590 0.866209 -0.518371 0.831566 -0.612528 -1.290146 -0.631240 1.202093 0.936702 0.154736 0.494745 0.397493 0.278641 0.850459 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = -0.698102 2.152073 8.165576 3.689832 -2.649309 -3.175921 -1.935421 -7.072581 3.580852 1.592906 5.248680 -1.072424 2.506351 0.016746 -0.984620 -1.097089 2.894231 -0.713870 0.587745 -1.806732 -0.240201 6.327983 1.211784 -3.069175 0.632865 -6.390345 3.523994 1.601459 3.780426 3.785501 0.310151 0.242403 -0.107590 2.637949 -2.223136 -0.921178 0.443171 2.117080 -3.127751 -0.738592 1.142192 0.239483 3.426706 -0.135155 2.931823 0.745388 2.122607 -0.896284 -3.248412 -1.135948 -2.197548 3.792087 -2.416206 2.195414 0.038167 -0.428313 0.431670 -2.106792 -0.511211 -3.650358 0.456649 0.603233 -1.471004 0.020291 -3.709226 1.245386 -1.483235 -2.273976 1.146333 -1.434707 2.207775 1.326817 1.557530 -1.190224 -5.704323 2.901046 1.537341 1.472835 1.962908 0.731853 0.368408 0.184024 -2.493578 -3.766544 2.719262 3.085726 1.176481 0.506966 -1.213941 -1.311776 0.479527 0.354347 -0.879249 4.079572 -3.310252 2.413793 -2.663828 -1.589990 -1.982456 -4.637550 -0.789492 -4.327942 1.660395 2.709607 -2.504538 1.584559 -0.109175 1.666011 -0.019120 -4.240016 0.585081 -1.848230 -0.312026 5.292432 -2.309233 -2.195290 -1.880593 0.257403 0.138312 2.964290 -1.206734 2.211551 3.821491 2.944911 2.440059 -4.072426 -0.036726 2.147751 1.716609 2.113774 2.588190 -3.337550 -2.307504 -0.485071 -1.129306 -7.183710 -1.316013 1.692870 3.899804 -0.935210 -3.755562 1.167235 -2.456375 4.953342 4.053535 1.790741 1.431524 0.799886 -2.929975 2.184304 6.515585 -2.508953 3.027197 -2.812444 -3.137110 4.138104 -1.412168 3.597267 -1.074778 0.910451 0.766904 -4.342422 0.220361 5.582137 0.590072 1.503059 1.213389 -0.041368 -0.159902 -6.433618 -6.833540 -1.086411 3.572561 1.129801 6.825691 -3.705034 -2.882455 0.010263 3.889477 -0.124915 -1.987064 1.265580 -2.353993 2.291661 -8.233826 -7.320288 6.458993 6.581267 0.870204 0.124024 3.484867 1.385514 -2.716253 -3.350501 -2.430810 3.282808 0.246117 -3.104398 -1.825419 0.893061 -4.193589 -1.135000 0.593007 0.879664 2.814393 -1.787945 0.705749 -0.296638 -4.004421 -3.236507 3.417298 -3.870820 -2.508379 -0.267110 0.333776 0.595885 2.561880 -1.748580 -1.757168 1.530468 -2.804673 -0.969377 0.519103 2.532872 -0.105838 4.685041 6.176227 -0.181786 2.465475 1.166207 -2.769184 8.829033 -3.155555 -0.419735 0.026835 1.499423 -0.854600 2.797610 2.894729 -1.831492 -2.979489 -5.351946 0.856865 -0.596777 2.119565 -4.644916 -4.103740 -4.240003 -0.565967 1.327107 4.568992 0.695295 9.140765 -1.586307 0.898715 -8.721728 0.005143 3.340328 -0.117527 4.590307 2.610675 -3.917846 -4.972423 -1.081264 -2.994690 0.300937 -1.158473 -4.652898 -3.340904 -2.273186 3.127752 -2.324258 1.773976 3.922754 0.052857 3.985373 0.451328 -1.120964 -2.610304 -0.365872 2.854909 1.204455 -2.758892 4.158411 -0.426164 9.527466 -2.026853 2.651104 -3.282435 1.039438 -0.345467 -3.360333 -1.785852 6.293506 3.997384 2.260083 -0.777382 -0.942521 -2.042106 3.728626 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.524943 0.305455 1.865725 1.177731 -1.292670 -1.407962 -0.585119 -2.057628 0.924579 0.316099 1.455045 0.014796 0.717973 -0.621769 -0.102614 -0.404339 0.795747 -0.123259 -0.061755 -0.660788 -0.405984 1.356288 0.298123 -1.110404 0.359407 -1.262315 1.233911 0.646289 0.561002 1.107343 0.242933 -0.107509 -0.575147 0.832041 -0.387182 -0.016385 0.324589 0.478266 -0.816414 -0.205825 0.495909 0.008047 1.154730 -0.234749 1.129457 0.339945 0.470552 0.095118 -1.344472 -0.496559 -0.258802 0.861895 -0.787346 0.889685 0.278705 -0.060771 0.229182 -0.664217 -0.140433 -1.291538 0.211545 -0.342499 -0.416460 -0.045834 -1.000092 0.144035 -0.221139 -0.844095 0.478910 -0.590409 0.598646 0.031312 0.119457 -0.177156 -1.130822 0.436500 0.582677 0.617544 0.749662 0.345802 0.219407 -0.391859 -0.709331 -0.897981 0.465484 0.375422 0.446543 0.348348 -0.545159 -0.257752 0.512794 -0.082664 0.179998 0.866880 -0.815438 0.115869 -0.526761 -0.419584 -0.633725 -1.396585 0.160553 -0.832086 0.610369 0.831746 -0.863795 0.213305 -0.026457 0.532349 -0.323156 -1.076190 0.307260 -0.633512 0.233176 1.445367 -0.533465 -0.688071 -0.549402 -0.156532 0.125144 0.904586 0.008372 0.396510 1.018782 1.144971 0.770275 -1.226747 -0.433974 0.455960 0.673406 0.735755 0.630348 -1.079970 -0.535274 0.228864 -0.826467 -1.882358 -0.527937 0.235510 1.330169 0.058477 -1.055194 0.347714 -0.819942 1.216191 0.752828 0.595401 0.275212 0.157879 -1.065165 0.772337 1.482124 -0.510277 0.759267 -0.351036 -0.811458 0.877353 -0.134314 0.584282 0.056170 -0.165053 0.105854 -0.887397 0.054960 1.327778 0.345549 0.480951 0.031445 0.351820 -0.661104 -1.821390 -1.905592 0.113628 1.380725 0.519650 1.911505 -1.279085 -0.865157 -0.181452 1.440465 -0.232921 -0.726225 0.379954 -0.697471 0.850995 -1.926180 -1.747045 2.102401 1.865769 0.541837 -0.008900 0.962729 0.363816 -1.025333 -0.712902 -0.812877 0.605415 0.283997 -0.875500 -0.375943 0.275141 -1.294331 -0.481390 0.380150 0.415733 0.743231 -0.480246 0.049744 0.024147 -0.745802 -0.832864 0.830445 -0.822627 -0.288791 0.089781 0.041943 0.382986 0.755202 -0.487230 -0.600664 0.073429 -0.799314 -0.100950 0.176185 0.959892 0.244898 1.634873 1.481225 -0.286151 0.903163 0.273242 -0.914662 2.523039 -0.753890 0.296841 0.180034 0.711389 0.233278 0.476920 1.080950 -0.651344 -0.540196 -1.515844 -0.274472 0.139315 0.942039 -1.729302 -1.200828 -1.746677 -0.072636 0.150375 1.069709 -0.063985 2.352853 -0.400328 0.205758 -2.343843 -0.041392 1.033679 -0.120595 0.974217 0.535953 -1.002964 -1.858042 -0.287582 -1.123124 -0.150153 -0.375941 -0.655924 -0.773600 -0.505222 0.990834 -0.414191 0.355048 1.261297 -0.180479 0.958266 -0.110956 -0.166133 -0.520382 -0.358607 0.460154 0.193752 -1.014810 1.413789 0.290306 2.905116 -0.148510 0.602638 -0.743411 0.411297 -0.257935 -1.001190 -0.522868 1.426636 1.259459 0.687338 -0.055862 0.246842 -0.640021 1.086307 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_if_noexcept_a >(int*, int*, int*, std::allocator&) = -0.768880 0.054215 2.662371 1.632438 -1.340166 -3.110667 -0.780265 -4.087475 2.286077 1.262935 3.195619 0.420725 2.461499 -1.518064 0.178267 0.260130 1.932781 -0.354043 0.124111 -1.116480 -0.661886 4.140115 0.476614 -0.603303 0.427855 -2.025212 1.632828 1.118647 1.470599 2.283215 0.709887 0.198961 -0.428049 0.792301 -0.809032 0.955878 -0.533014 1.216085 -1.320868 -0.866340 0.670703 -1.308898 2.458004 0.239026 2.142381 -0.471514 1.785009 -0.216875 -1.365479 -1.447293 -1.321085 1.537003 -1.420505 1.151150 -0.916481 -0.891795 1.083353 0.084176 0.019298 -1.909819 0.173893 -0.760883 -1.862387 -0.210248 -1.536759 0.566569 -1.124963 -1.211008 -0.262295 -1.247856 1.286532 0.266821 -0.169711 -0.627294 -3.894905 0.136246 0.645661 -0.043721 1.413820 1.402385 -0.606393 -1.152150 -1.906575 -1.918364 2.869687 1.128474 0.508222 1.226851 -2.542998 -0.386242 -0.394929 0.423029 0.958061 1.188495 -1.886760 0.529409 0.711437 -0.979881 -0.684010 -2.340350 0.712454 -1.569129 0.404821 0.665804 -0.176068 0.178098 -1.044530 0.328561 -1.484896 -2.199330 0.728064 -1.419710 -0.816948 2.376732 -1.247312 -0.898627 -1.439725 0.092456 0.579831 1.462612 0.652127 0.790716 2.095700 1.267855 1.333881 -2.209108 -0.494002 1.507500 1.665750 0.773071 0.103437 -0.949220 -1.264421 0.872427 -1.699882 -3.735292 -1.743803 2.029895 2.189186 -0.318584 -1.332114 1.386836 -0.855580 1.611241 2.620093 0.406158 0.696899 0.888831 -1.976016 0.984552 2.871737 -1.030678 1.581745 -0.812533 -1.515855 2.807127 -1.082302 0.836397 0.072681 -0.313743 -0.573945 -1.057587 0.586131 2.408041 0.237179 0.934011 -0.659429 0.955132 -0.969425 -2.590263 -4.237833 -0.578158 2.990076 2.104239 3.526670 -2.022057 -0.749602 0.430474 1.382514 -0.267026 -1.792122 1.000945 -1.625179 1.391873 -5.335963 -3.186500 4.457356 2.678613 1.906264 0.251750 1.442995 1.337445 -1.268025 -1.173205 -1.422765 1.545393 0.851543 -2.685986 -0.373174 0.385989 -2.873102 -1.065578 -0.300724 0.366902 0.142308 -0.839910 1.866917 -1.536599 -0.951077 -0.900647 1.632946 -1.403280 -0.915054 -0.740088 -0.178568 0.232862 1.023085 -0.388098 0.273784 0.120732 -1.616800 -0.306532 0.063751 1.058318 0.680161 3.254158 4.061540 -1.330133 1.100055 -0.562707 -1.472731 3.361423 -1.640466 0.038191 -0.141681 1.560460 1.063490 0.985782 2.174020 -0.960313 -1.003335 -2.428936 -0.267316 1.509533 1.409522 -1.754754 -1.766449 -3.651816 0.052155 -0.208411 3.637856 -0.416513 4.189992 -1.833663 0.935054 -4.264754 0.421889 0.979572 -0.205138 1.772681 0.521621 -1.625437 -1.283556 -0.790668 -2.106974 -0.678375 -0.123383 -1.279085 -1.488900 -1.607784 1.221732 -2.418164 0.359990 1.075055 -0.716990 2.292963 -0.217352 -0.093594 -1.692400 0.930454 1.327110 0.489002 -1.402438 1.959872 0.210914 4.831164 -0.461678 1.690383 -1.158989 2.052086 -1.400672 -2.648799 -1.006251 2.667585 3.021694 0.380760 0.249961 0.362125 0.109604 1.870462 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::__distance(int*, int*, std::random_access_iterator_tag) = -0.323523 0.755775 1.409713 0.954353 -0.275952 -0.487390 -0.223094 -1.050558 0.299870 0.152116 0.931927 -0.659598 0.390419 0.484117 -0.395224 -0.418480 0.529374 0.041002 0.333549 -0.182476 0.021222 0.797937 0.070144 -0.590433 0.203220 -0.733374 1.035745 0.423743 0.296696 0.531238 0.223290 0.711987 0.206220 0.399345 -0.389459 -0.297416 -0.306593 0.747280 -0.177815 -0.063544 0.291605 -0.319306 0.300308 0.469132 0.365203 0.835902 0.470042 -0.246179 -0.396941 -0.026403 -1.052710 0.415908 -0.538294 -0.076722 -0.869234 -0.482340 0.583666 -0.276019 -0.027336 -1.009877 0.077328 -0.036100 -0.448792 0.086098 -0.884058 0.605164 -0.138621 -0.360792 -0.176565 0.101569 0.522082 0.379083 0.212266 0.027552 -1.058723 0.552535 0.159370 0.173648 0.478960 -0.160435 -0.014331 0.454460 -0.620312 -0.760560 0.853973 0.398095 0.592382 0.202957 0.197244 -0.366510 -0.327045 0.039395 -0.276529 0.933468 -0.195647 0.817338 -0.239990 -0.252019 -0.527521 -0.403481 0.088720 -0.737869 0.267842 0.660768 -0.623871 0.337280 -0.240717 0.134867 0.022858 -0.959467 -0.011047 -0.978356 0.083142 0.748374 -0.433982 -0.288787 -0.353353 0.010663 0.380787 0.665653 -0.379745 0.492502 0.307857 0.408612 0.070889 -0.433381 -0.040264 0.424470 -0.005212 0.329623 0.349442 -0.515458 -0.585427 -0.470076 -0.097029 -0.839698 -0.240247 0.393866 0.557148 -0.448322 -1.039792 0.918683 -0.479276 0.503293 0.860581 0.539605 0.243195 0.448018 -0.478911 0.247683 1.230261 -0.405937 0.452981 -0.275891 -0.326529 0.855581 -0.140382 0.553941 0.077593 0.083211 0.049773 -0.615499 -0.223389 0.761213 0.352900 0.053113 0.949242 0.019039 0.150249 -1.038034 -0.984937 -0.297361 0.942683 0.072907 1.114563 -0.764574 -0.008607 0.171772 0.637454 0.106858 -0.136658 -0.122038 -0.081897 0.300138 -1.453306 -1.298521 0.519471 0.291645 -0.075004 0.152456 0.274460 0.224961 0.080776 -0.709420 -0.309495 0.769703 -0.425442 0.111344 -0.319053 -0.068838 -0.572076 -0.422584 0.051717 0.248190 0.397385 -0.349588 0.205274 -0.505214 -0.429016 -0.706662 -0.209721 -0.691233 -0.762856 0.110475 -0.090326 0.098834 0.029043 -0.234883 0.071357 0.288318 -0.354606 -0.288910 0.073802 0.005662 -0.276843 0.698024 1.103024 -0.173899 -0.215526 0.242287 -0.366439 1.686466 0.003155 0.148089 0.018065 0.284231 0.174777 0.368337 0.568982 -0.317462 -0.545197 -1.147459 0.302884 0.146513 0.302701 -0.854333 -0.160284 -0.853129 -0.027457 0.551352 0.909318 -0.023222 1.528612 0.020949 -0.136089 -1.025713 0.093629 0.720276 -0.333742 0.586087 0.485205 -0.733684 -0.369299 -0.204427 -0.507017 0.211085 -0.436870 -0.767707 -0.833389 0.203423 -0.171755 -0.402733 0.280932 0.574085 0.162347 0.027964 0.062025 -0.117225 -0.196591 -0.260742 0.701413 0.250070 -0.601932 0.705232 -0.391137 1.245198 -0.387160 0.488148 -0.511704 0.311967 -0.024153 -0.305165 -0.156546 1.489678 0.321741 0.159101 0.128332 -0.199982 0.101978 0.699818 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a, int*, int>(std::move_iterator, std::move_iterator, int*, std::allocator&) = -1.069115 0.140540 2.588583 0.266148 -1.497201 -2.203432 -0.891423 -3.993830 1.701969 1.461968 3.096063 0.170619 2.092673 -0.843416 0.157056 -0.050728 1.648305 -1.222973 0.782803 -1.037406 -0.555078 3.015634 0.306344 0.804354 0.370398 -2.227999 1.759344 0.113288 1.130272 2.130787 0.818590 -0.140607 -1.205872 0.594747 0.457552 1.305147 0.422564 1.190686 -0.735006 -0.015235 0.318216 -1.668589 1.876679 0.110656 2.160284 -0.197427 0.461193 0.062457 -1.350429 -1.595772 -0.449905 0.463065 -1.692204 0.754445 0.077534 -1.168290 0.276281 0.224255 -0.156902 -1.235322 -0.152449 -1.835688 -1.028902 0.447178 -1.227239 0.684529 -1.873027 -0.642465 -0.376799 -1.466368 1.059969 0.405452 0.471337 1.026770 -3.127013 0.302073 0.591616 -0.113623 1.124928 0.775778 -0.688518 -0.644559 -1.720090 -2.011458 1.867663 1.724478 0.319615 0.178464 -2.366955 0.586762 -0.181025 0.302441 0.858629 1.347368 -1.859253 0.085848 -0.131773 -1.008620 -0.617118 -3.217513 0.545147 -1.493005 0.676288 0.652693 -1.034184 -0.673668 -1.538127 0.330721 -1.245622 -1.890691 0.995428 -1.241430 -0.198990 2.213709 -1.370597 -0.525120 -1.972739 -0.291929 1.225230 0.926221 0.720615 0.631312 1.596588 1.297156 1.492769 -1.915164 -0.954395 1.477164 1.413808 0.231326 0.097193 -1.004445 -0.970183 0.983818 -1.751844 -2.990648 -1.801329 1.130119 1.791965 -0.403246 -0.400134 0.354168 -1.166541 1.222816 2.518900 0.648439 0.466493 0.804893 -1.719808 0.816530 2.001225 -0.802337 1.444925 -0.458771 -0.917355 2.163449 -1.111575 0.895278 0.243809 0.369992 -0.976053 -1.162012 -0.026120 1.922075 0.422804 1.404235 -0.984891 0.907526 -0.685934 -1.974828 -3.486768 -0.353495 3.343340 1.580002 1.824791 -2.013762 -0.324419 0.720479 1.889140 0.844350 -2.090808 0.909623 -0.857980 1.067442 -3.994256 -2.500580 3.366187 2.899220 1.551725 0.084262 0.581421 1.368604 -2.337420 -1.103383 -1.619853 1.575191 -0.651488 -2.962218 -0.922680 0.648724 -2.201463 -0.776554 -0.389726 0.597379 1.079979 -0.531444 1.628359 0.022773 -0.172051 -0.750822 1.933595 -0.675691 -1.605314 -0.603886 -0.071870 0.711392 0.787343 -0.384448 0.536696 0.564064 -1.556744 -0.088431 0.832116 0.652485 0.125642 3.210353 2.663715 -1.106217 -0.382137 -0.861655 -1.052881 2.181615 -1.285639 0.191862 -0.104017 0.804545 0.733547 0.736830 2.079531 -0.904850 -1.725011 -1.833933 -0.709995 0.634367 1.502213 -0.871093 -2.557452 -3.230642 0.746508 -0.010034 3.039970 0.138290 3.614974 -0.918451 0.994332 -2.891972 0.259949 0.871485 -0.277729 1.726886 0.163213 -1.093464 -0.364442 -0.795978 -2.307123 -0.764155 0.038084 -0.591377 -1.085331 -1.309289 1.470979 -1.115917 -0.141772 0.027869 -0.313613 2.292671 0.908083 -0.329603 -1.958150 1.082099 1.467536 0.100502 -1.145197 2.266648 0.562142 3.929603 -0.486659 0.697513 -0.303586 1.352853 -0.933179 -2.001383 -0.666869 2.288354 2.663745 0.866429 -0.613215 -0.088383 0.122013 1.170144 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::make_move_iterator(int*) = -0.087326 0.178073 1.171277 0.186688 -0.170719 -1.080054 -0.298486 -1.755161 0.835216 0.574257 1.232095 -0.055837 0.968912 -0.384458 0.039052 0.213930 0.597282 -0.171565 0.153263 -0.377671 -0.120933 1.384756 -0.102394 0.098058 0.180746 -1.074030 0.539835 0.411704 0.582626 0.812770 0.232546 0.084550 -0.106851 0.315857 -0.349410 0.357674 0.142071 0.455226 -0.451207 -0.181228 0.036370 -0.152842 0.714534 0.139805 0.844856 0.095733 0.314158 -0.030725 -0.200851 -0.511335 -0.239465 0.548002 -0.381825 0.365137 -0.367033 -0.346696 0.200126 -0.064779 0.078423 -0.497822 0.154021 -0.078593 -0.598539 -0.003994 -0.516082 0.189579 -0.282591 -0.428383 -0.133778 -0.495194 0.451564 0.043501 -0.099859 -0.116052 -1.464498 0.102219 0.301093 -0.108861 0.520231 0.176097 -0.201492 -0.336036 -0.673200 -0.808654 1.154000 0.885271 0.241349 0.492652 -0.920693 -0.189544 -0.220469 0.073508 0.448569 0.627835 -0.553655 0.083770 0.157806 -0.360042 -0.277523 -0.925429 0.309430 -0.600589 0.202483 0.136462 0.116300 0.089794 -0.206769 0.274982 -0.449836 -0.662020 0.339298 -0.526860 -0.106395 0.975561 -0.363564 -0.375273 -0.634809 -0.126751 0.180929 0.584654 0.204526 0.164624 0.828837 0.440777 0.487291 -0.828820 -0.342328 0.669007 0.514654 0.312791 0.019794 -0.710078 -0.388375 0.294011 -0.781131 -1.417779 -0.636035 0.396618 0.713573 -0.515210 -0.410836 0.645521 -0.354775 0.481361 0.994461 0.065039 0.204122 0.311170 -0.715880 0.314191 1.078519 -0.408619 0.570485 -0.438487 -0.472767 0.624500 -0.316843 0.334374 0.066140 -0.147663 -0.208547 -0.363717 0.320944 0.920195 0.104337 0.534455 -0.323913 0.358963 -0.472566 -0.784819 -1.534881 -0.322116 1.019386 0.452703 1.274399 -0.699138 -0.445052 0.058374 0.827893 -0.109933 -0.528231 0.429650 -0.632824 0.501724 -1.546958 -1.117879 1.463957 1.156471 0.891231 -0.082997 0.540655 0.455244 -0.553177 -0.390514 -0.338198 0.513353 0.223114 -1.257837 -0.290475 0.082622 -0.975245 -0.341123 -0.260132 0.159871 -0.050204 0.068525 0.798346 -0.461070 -0.349139 -0.386319 0.582344 -0.428895 -0.244647 -0.304707 0.016976 -0.061236 0.397565 -0.449075 0.084487 0.381165 -0.590803 0.063984 0.225799 0.248621 0.199625 1.204719 1.222296 -0.427528 0.488980 -0.267287 -0.414781 0.998677 -0.434305 0.044995 0.016524 0.427484 0.229932 0.417967 0.671017 -0.364108 -0.452775 -0.973110 -0.212242 0.497263 0.445144 -0.045479 -0.694846 -1.212585 -0.026107 -0.168352 1.456739 -0.018724 1.533889 -0.464442 0.506008 -1.382862 0.181013 0.228917 -0.218012 0.526555 0.215537 -0.607549 -0.602912 -0.191208 -0.853023 -0.911520 -0.059948 -0.595133 -0.565944 -0.734507 0.518653 -0.777739 0.076134 0.382071 0.042655 0.716481 -0.211234 -0.011391 -0.719828 0.425845 0.647354 -0.020038 -0.566344 0.392929 0.132441 1.803295 -0.282249 0.748828 -0.386484 0.671399 -0.437266 -0.901781 -0.389411 1.013980 1.028719 0.235270 -0.043285 0.029025 0.053071 0.701118 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy, int*>(std::move_iterator, std::move_iterator, int*) = -1.080429 0.125947 2.581434 0.225199 -1.447035 -2.155403 -0.886619 -3.961013 1.685763 1.467498 3.106585 0.147303 2.082955 -0.810808 0.178694 -0.056975 1.650700 -1.240835 0.794131 -1.020018 -0.504175 2.993083 0.307810 0.828236 0.384721 -2.237734 1.707930 0.095190 1.101909 2.114419 0.808228 -0.136054 -1.196428 0.564463 0.458996 1.306692 0.456701 1.161024 -0.722628 -0.006297 0.301778 -1.625570 1.843485 0.106399 2.147103 -0.196818 0.429107 0.052236 -1.332270 -1.598963 -0.424119 0.461808 -1.653398 0.748248 0.101830 -1.155476 0.258727 0.210645 -0.171053 -1.232305 -0.141613 -1.803496 -1.004255 0.448343 -1.192579 0.686113 -1.853872 -0.592094 -0.354362 -1.480321 1.048064 0.383156 0.467101 1.032931 -3.086139 0.311140 0.580687 -0.127977 1.084580 0.753096 -0.695592 -0.615133 -1.700020 -1.995753 1.848986 1.742587 0.306274 0.153354 -2.370084 0.601945 -0.186696 0.289761 0.830408 1.340330 -1.859821 0.077705 -0.104925 -1.020686 -0.596694 -3.171450 0.534980 -1.491105 0.658241 0.665838 -1.015902 -0.670335 -1.532337 0.360166 -1.228010 -1.868091 1.019544 -1.198387 -0.217888 2.192427 -1.374195 -0.515525 -1.986410 -0.282114 1.222897 0.922902 0.696650 0.637473 1.573857 1.280045 1.486026 -1.878136 -0.938994 1.479945 1.419290 0.204653 0.083280 -1.006411 -0.952037 0.982891 -1.758598 -2.949199 -1.825428 1.113570 1.801751 -0.399572 -0.403818 0.346401 -1.151271 1.227642 2.506837 0.628755 0.451444 0.808380 -1.711359 0.800673 1.984244 -0.814390 1.433516 -0.458573 -0.902315 2.113659 -1.089767 0.890323 0.249299 0.405562 -0.959956 -1.166039 -0.027284 1.906247 0.445913 1.415796 -1.014814 0.902658 -0.657864 -1.938357 -3.489512 -0.377329 3.277739 1.549590 1.798930 -1.976533 -0.342156 0.682415 1.892237 0.837244 -2.095709 0.900291 -0.852168 1.031104 -3.953752 -2.462480 3.340377 2.917676 1.555701 0.080756 0.588503 1.359023 -2.335760 -1.077206 -1.611335 1.588984 -0.662490 -2.941877 -0.908263 0.638866 -2.174182 -0.778066 -0.419225 0.582630 1.057547 -0.511438 1.625114 0.060038 -0.187210 -0.706091 1.921801 -0.665819 -1.612162 -0.614788 -0.080889 0.710602 0.784368 -0.404232 0.539959 0.592971 -1.572904 -0.106348 0.841990 0.643905 0.128633 3.171481 2.631431 -1.067959 -0.380817 -0.878991 -1.063067 2.136303 -1.272173 0.163310 -0.135447 0.753768 0.729949 0.729546 2.040050 -0.878864 -1.741406 -1.812605 -0.678087 0.606339 1.496859 -0.844446 -2.571357 -3.196944 0.747722 -0.009180 3.041651 0.162073 3.594392 -0.908795 0.993022 -2.877338 0.257979 0.858032 -0.269570 1.681132 0.138716 -1.076682 -0.387581 -0.760257 -2.309915 -0.778285 0.047017 -0.606545 -1.087455 -1.342732 1.511334 -1.098295 -0.140758 0.025719 -0.280932 2.293392 0.952929 -0.357045 -1.957880 1.086091 1.446684 0.099857 -1.132291 2.229358 0.563538 3.891311 -0.511568 0.687563 -0.300845 1.339373 -0.941262 -1.981268 -0.651499 2.248615 2.673327 0.864889 -0.625165 -0.107779 0.102744 1.149167 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy, int*>(std::move_iterator, std::move_iterator, int*) = -1.076530 0.047638 2.586915 0.066664 -1.240143 -1.928255 -0.868744 -3.949164 1.757126 1.519113 3.071804 0.151664 2.067735 -0.859806 0.161423 -0.037618 1.566527 -1.326857 0.814450 -0.937911 -0.218437 2.993896 0.252560 0.915056 0.327229 -2.402792 1.525948 0.009038 1.179051 2.048108 0.770858 -0.154543 -1.141957 0.518980 0.466960 1.340658 0.610698 1.095919 -0.724024 -0.089015 0.201094 -1.456976 1.690344 0.054907 2.221271 -0.375267 0.333831 -0.022268 -1.173101 -1.573746 -0.342136 0.524659 -1.580331 0.686420 0.222892 -1.144046 0.092951 0.199061 -0.192011 -1.201623 -0.109896 -1.653554 -0.884252 0.451734 -1.054886 0.711307 -1.731368 -0.423482 -0.358315 -1.532135 1.017091 0.408106 0.591129 1.071597 -3.044534 0.372536 0.531575 -0.202158 1.025318 0.727300 -0.687132 -0.612534 -1.527575 -1.946048 1.837227 1.934310 0.182871 0.140568 -2.329252 0.685303 -0.247982 0.224974 0.758626 1.328563 -1.927609 0.011876 -0.073757 -0.981032 -0.429727 -2.998281 0.487343 -1.517952 0.593512 0.663504 -0.890692 -0.621513 -1.456535 0.375692 -1.219763 -1.725855 1.085800 -1.077060 -0.214205 2.166622 -1.400137 -0.450088 -1.990809 -0.221507 1.157616 0.876920 0.588431 0.701514 1.493272 1.233312 1.504531 -1.846867 -0.900461 1.638197 1.456918 0.169979 -0.004520 -1.074208 -0.845243 0.954704 -1.672306 -2.872288 -1.848500 1.038246 1.751389 -0.403100 -0.360171 0.232362 -1.036177 1.303263 2.485882 0.476585 0.395438 0.862053 -1.692003 0.785774 1.961556 -0.781206 1.382574 -0.471876 -0.784597 1.924650 -1.166134 0.944879 0.194502 0.512802 -0.888075 -1.204917 -0.025154 1.860935 0.424691 1.504593 -1.213711 0.896301 -0.581032 -1.914661 -3.467973 -0.514347 3.105248 1.427422 1.702600 -1.845799 -0.458759 0.631670 1.927461 0.857477 -2.038984 0.945285 -0.917819 1.008984 -3.737855 -2.403927 3.281766 3.058700 1.580280 0.077984 0.648343 1.365973 -2.375021 -0.976607 -1.466131 1.546619 -0.648805 -3.017157 -0.892340 0.613808 -2.076749 -0.882070 -0.459369 0.503258 0.935660 -0.316973 1.708056 0.261154 -0.123232 -0.610785 1.960827 -0.607760 -1.640893 -0.711347 0.007571 0.699559 0.823894 -0.552697 0.579730 0.774830 -1.533960 -0.075097 0.892228 0.553779 0.133646 2.961085 2.537066 -0.971109 -0.287000 -0.900773 -0.999623 1.943349 -1.204360 0.080186 -0.134135 0.509684 0.680825 0.742803 1.832918 -0.873851 -1.684460 -1.756227 -0.654481 0.484857 1.501701 -0.655278 -2.680546 -2.941430 0.730665 0.019002 2.835749 0.240102 3.551083 -0.916520 0.975718 -2.872493 0.232748 0.880749 -0.247951 1.634506 0.127396 -1.006991 -0.496136 -0.715404 -2.204493 -0.923965 0.024229 -0.717393 -1.025633 -1.536489 1.768101 -1.107288 -0.128478 -0.012492 -0.114611 2.335648 0.928287 -0.348028 -2.027967 1.163893 1.253502 0.098852 -1.091232 2.093169 0.512121 3.756339 -0.695051 0.635852 -0.313999 1.417167 -1.004760 -1.945167 -0.567608 2.197671 2.643012 0.876895 -0.758377 -0.225940 -0.023053 1.114515 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy, int*>(std::move_iterator, std::move_iterator, int*) = -0.596010 0.213609 2.845470 0.226284 -1.141730 -2.082806 -0.835797 -4.701706 2.172631 1.619679 3.196539 0.137781 2.287629 -1.066748 0.043369 0.315479 1.693626 -0.964380 0.770820 -0.942664 -0.184534 3.616313 -0.185248 0.993969 0.300015 -2.652911 1.422271 0.256823 1.822504 1.920057 0.808449 -0.170885 -0.942295 0.526962 0.188554 1.188045 0.441357 1.125948 -1.295641 -0.361674 -0.000794 -1.570447 1.842916 -0.013255 2.298182 -0.909846 0.739704 -0.157434 -0.886290 -1.382422 -0.667041 1.143163 -1.338474 0.802547 0.104046 -1.493272 -0.016862 0.391407 -0.045506 -0.689753 -0.099376 -1.447243 -1.052555 0.298757 -1.143455 0.709351 -1.759036 -0.539687 -0.359300 -1.411674 1.064868 0.404373 0.556036 0.669865 -3.871650 0.431122 0.641691 -0.278638 1.134689 1.033212 -0.219687 -0.797254 -1.626649 -2.065769 2.428169 2.451674 0.090204 0.297217 -2.724002 0.403347 -0.388612 0.227943 0.922484 1.398402 -2.281851 0.208409 -0.453868 -0.990243 -0.409812 -3.333877 0.488975 -1.704718 0.608554 0.266698 -0.525540 -0.202819 -0.886868 0.409799 -1.065076 -1.901523 0.942443 -1.002282 -0.275703 2.700254 -1.239517 -0.744667 -2.019649 -0.081471 0.628383 0.791969 0.654908 0.837369 1.785142 1.232644 1.725734 -2.061037 -0.935187 2.055209 1.314188 0.411624 -0.101071 -1.207869 -0.867949 0.941340 -1.577321 -3.394136 -1.927653 1.229585 1.875503 -0.755753 -0.080433 0.076058 -0.900357 1.509634 2.605765 0.134850 0.479913 1.014485 -1.707133 0.880134 2.275679 -0.824675 1.359012 -0.842918 -0.729906 1.837275 -1.177757 1.005793 -0.070380 0.532629 -0.794662 -1.308305 0.133016 2.127637 0.120475 1.355482 -1.371984 0.935790 -0.956522 -2.172717 -3.824196 -0.626705 3.099148 1.438184 2.007300 -1.802631 -0.860337 0.752146 1.891981 0.758453 -1.948847 1.391205 -1.480630 1.249035 -3.840072 -2.768529 3.517136 3.260299 1.694544 -0.132557 0.903584 1.471603 -2.723746 -1.264865 -1.445480 1.597823 -0.222386 -3.780920 -1.084013 0.600242 -2.318352 -0.854860 -0.397480 0.395528 0.773599 0.050877 2.316862 -0.107362 -0.319063 -0.796995 2.520358 -0.698270 -1.415424 -0.917022 0.083785 0.511395 1.201163 -0.864022 0.530819 0.922508 -1.505884 0.049753 0.731854 0.452814 0.000119 3.090970 3.006166 -0.907508 0.433125 -0.879839 -1.162301 2.162770 -1.293843 0.013504 -0.116347 0.250801 0.327075 1.047325 1.844712 -0.992504 -1.838604 -2.055901 -0.860520 0.423045 1.556146 -0.301363 -2.644105 -2.968369 0.500328 -0.100152 2.946286 0.349794 3.830885 -1.377888 1.117361 -3.326266 0.278584 0.848054 -0.283000 2.077119 0.178485 -1.231435 -0.418559 -0.681556 -2.196689 -1.490912 -0.014859 -1.206486 -1.281409 -2.005322 2.008001 -1.469054 -0.075228 0.135441 -0.080906 2.599525 0.270678 -0.298394 -2.185558 1.454101 1.482565 0.095371 -1.261330 1.887070 0.403657 4.417122 -0.818103 0.834394 -0.598055 1.437957 -1.155351 -2.349031 -0.677324 2.442612 2.846178 0.994426 -0.981984 -0.271598 -0.141192 1.328115 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/Nearly_sorted_Algo.cpp__decltype (__miter_base(({parm#1}.base)())) std::__miter_base(std::move_iterator) = 0.216465 0.293014 0.657770 0.250233 -0.198809 -0.715217 -0.090135 -1.133465 0.465146 0.199866 0.573270 -0.055750 0.556709 -0.257667 -0.033416 0.214514 0.390762 0.279138 0.072882 -0.195715 -0.182751 0.766783 -0.295961 0.029159 0.105144 -0.354272 0.289580 0.339467 0.555155 0.348711 0.139526 -0.025010 -0.086865 0.144823 -0.245299 -0.022718 -0.020493 0.263308 -0.587051 -0.153745 -0.176818 -0.310630 0.430973 0.014793 0.310328 -0.101043 0.303363 0.029571 -0.058853 -0.111450 -0.291175 0.485530 -0.089740 0.295202 -0.211425 -0.443591 0.097394 0.215009 0.156247 -0.030234 0.070247 -0.133635 -0.308783 -0.075565 -0.386618 0.047880 -0.270594 -0.426721 -0.064816 -0.093618 0.214284 0.034494 -0.001610 -0.151104 -1.075831 0.033462 0.231765 0.049011 0.343355 0.260281 0.290373 -0.273759 -0.401761 -0.427892 0.731438 0.479959 0.177957 0.304920 -0.653179 -0.228427 -0.035884 0.060471 0.353618 0.233333 -0.301655 0.219648 -0.337998 -0.100852 -0.132120 -0.889538 0.134435 -0.297885 0.133206 -0.185035 0.184159 0.211164 0.123223 0.216586 -0.083172 -0.474263 0.138015 -0.235284 -0.165116 0.731234 -0.060123 -0.346810 -0.222815 -0.015834 -0.165204 0.212576 0.188647 0.145991 0.313966 0.234853 0.348342 -0.484533 -0.215947 0.415366 0.112892 0.315607 0.046116 -0.299856 -0.234046 0.170148 -0.423337 -0.936624 -0.260068 0.310017 0.423761 -0.354653 -0.050363 0.153410 -0.250641 0.224081 0.419245 0.033763 0.176574 0.155408 -0.311575 0.171537 0.497865 -0.243330 0.297460 -0.200484 -0.149435 0.158692 0.003056 0.119328 -0.164481 -0.139565 0.021866 -0.160688 0.100185 0.544974 0.026331 0.113959 -0.130453 0.176297 -0.629693 -0.574922 -0.744041 -0.078102 0.668276 0.154676 0.585586 -0.339632 -0.393632 0.153606 0.390760 -0.170127 -0.218557 0.360547 -0.497530 0.389217 -0.776617 -0.689496 0.743574 0.497001 0.381194 -0.199706 0.197681 0.269519 -0.524380 -0.427806 -0.223744 0.158577 0.137138 -1.035181 -0.426614 0.049623 -0.604830 0.002821 0.080569 0.087937 0.010738 0.229975 0.609658 -0.377890 -0.207798 -0.321697 0.530212 -0.232055 0.057639 -0.106195 0.005478 -0.005375 0.336241 -0.325823 -0.041008 0.241371 -0.295312 0.066956 -0.062342 0.130650 -0.004762 0.837940 0.693477 -0.122645 0.457666 -0.047491 -0.432998 0.743943 -0.272615 0.109023 -0.004565 0.199780 -0.092568 0.314321 0.467369 -0.262890 -0.407386 -0.668292 -0.463102 0.241893 0.264089 0.124453 -0.325446 -0.624816 -0.022133 -0.161427 0.714620 -0.021610 0.783684 -0.424209 0.288501 -0.712394 0.107946 0.100909 -0.199058 0.528773 0.140863 -0.384324 -0.220552 -0.105968 -0.466646 -0.627391 -0.086833 -0.423484 -0.290596 -0.376003 0.167373 -0.397011 0.010238 0.185355 -0.048420 0.481937 -0.394692 0.015821 -0.336567 0.309153 0.525974 -0.050106 -0.416416 0.205147 0.128860 1.261977 0.012853 0.326259 -0.299158 0.115636 -0.169033 -0.536726 -0.288895 0.614936 0.593967 0.250495 -0.087508 0.115753 -0.003091 0.387442 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::base() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int*&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::move_iterator(int*) = 0.110308 0.333594 0.631393 0.631438 -0.546755 -1.031016 -0.115884 -1.003191 0.409539 0.132611 0.576076 0.044342 0.587941 -0.283453 -0.064462 0.039469 0.490572 0.388322 -0.023163 -0.316893 -0.599640 0.827960 -0.094071 -0.303150 0.165171 -0.133816 0.698698 0.455323 0.409245 0.569945 0.176409 0.050012 -0.159724 0.265132 -0.288664 -0.089418 -0.356308 0.396641 -0.484955 -0.115311 0.147464 -0.521950 0.709746 0.147375 0.212490 0.176585 0.422041 0.087090 -0.341611 -0.188215 -0.394491 0.237953 -0.266440 0.410168 -0.455607 -0.341781 0.426897 0.202697 0.209622 -0.273834 0.087827 -0.323885 -0.508940 -0.106160 -0.632588 -0.011423 -0.418559 -0.703776 -0.092776 -0.127356 0.256063 0.020243 -0.180704 -0.355775 -1.099564 -0.068364 0.275957 0.136158 0.483432 0.407644 0.104976 -0.334344 -0.668894 -0.493845 0.683367 0.074815 0.316087 0.418197 -0.602849 -0.435593 0.085536 0.200573 0.432935 0.272454 -0.176917 0.318123 -0.284653 -0.131523 -0.281185 -0.992207 0.218130 -0.267351 0.205480 -0.064158 -0.106216 0.129911 0.017171 0.129551 -0.114103 -0.645144 0.045910 -0.487733 -0.159671 0.699934 -0.011371 -0.461501 -0.203288 -0.099186 0.036700 0.344825 0.288125 0.025098 0.469001 0.276394 0.313346 -0.573470 -0.186869 0.209904 0.059935 0.336358 0.158123 -0.164562 -0.384317 0.197476 -0.488315 -1.037361 -0.191568 0.427175 0.473534 -0.302820 -0.228745 0.439663 -0.424948 0.094176 0.492266 0.292065 0.296029 0.095862 -0.367932 0.187318 0.594152 -0.248351 0.321161 -0.183181 -0.472303 0.636493 0.076197 0.081819 -0.138785 -0.328494 -0.064934 -0.118170 0.197529 0.642990 -0.052266 -0.015384 0.222635 0.164554 -0.630897 -0.640256 -0.791443 0.105774 0.950455 0.523802 0.883152 -0.578265 -0.077836 0.216056 0.283138 -0.164423 -0.260281 0.246687 -0.330520 0.430270 -1.319776 -0.823493 0.890153 0.240618 0.321073 -0.136239 0.110807 0.203150 -0.199658 -0.547788 -0.461638 0.196983 0.202319 -0.656062 -0.303137 0.091405 -0.757771 0.078388 0.199998 0.167165 0.255216 -0.299509 0.353508 -0.770440 -0.274081 -0.555035 0.421161 -0.380640 0.085729 0.028557 -0.114404 -0.017440 0.243468 0.024740 -0.123692 -0.139239 -0.252833 -0.015577 -0.176024 0.275816 -0.002064 1.031180 0.900503 -0.379383 0.162108 0.034037 -0.463714 1.217555 -0.447882 0.197206 0.050509 0.690086 0.122053 0.296487 0.762386 -0.284614 -0.286297 -0.746961 -0.386189 0.490047 0.226111 -0.481668 -0.101121 -1.029085 0.002566 -0.242578 0.996310 -0.170381 0.928592 -0.423533 0.257432 -0.766505 0.132054 0.181598 -0.187492 0.611056 0.206986 -0.507769 -0.107470 -0.229911 -0.567815 -0.123375 -0.074940 -0.217976 -0.376130 0.030813 -0.293754 -0.426177 0.081812 0.330861 -0.397978 0.382413 -0.414282 0.055883 -0.230911 0.101741 0.626240 0.021039 -0.439424 0.459071 0.147484 1.289155 0.257078 0.456347 -0.294216 0.178855 -0.169789 -0.657311 -0.432999 0.709020 0.563257 0.197099 0.217790 0.313235 0.191011 0.480912 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__copy_move_a > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = -1.082182 0.201008 3.993593 0.839255 -1.458666 -2.976459 -1.136355 -6.150056 3.049004 2.133391 4.506612 0.176396 3.168964 -1.529598 0.093856 0.295919 2.428830 -1.268485 0.894770 -1.272545 -0.051015 5.187799 0.095568 0.716626 0.450623 -3.589735 1.907606 0.601654 2.342656 2.738015 1.055743 0.028034 -0.997302 0.782040 -0.129725 1.557611 0.345303 1.582426 -1.716488 -0.768980 0.233141 -1.926250 2.599102 0.086479 3.192452 -1.130124 1.410887 -0.388335 -1.391226 -1.923343 -1.265590 1.832758 -1.887224 1.113558 -0.193289 -1.825019 0.351071 0.316251 -0.142853 -1.672555 -0.013870 -1.576672 -1.659056 0.239416 -1.640199 1.075307 -2.034765 -0.754170 -0.438196 -1.908745 1.584415 0.577504 0.667624 0.546584 -5.241272 0.658188 0.809928 -0.334995 1.580520 1.481223 -0.508176 -1.063254 -2.193282 -2.783407 3.511569 2.972011 0.244721 0.686463 -3.539987 0.395700 -0.655266 0.314097 1.022400 1.924676 -3.091300 0.477698 -0.025929 -1.394107 -0.584047 -3.897724 0.676368 -2.420640 0.681791 0.742592 -0.618831 -0.077586 -1.410564 0.563204 -1.638794 -2.717436 1.303466 -1.515832 -0.644591 3.519784 -1.896060 -0.958104 -2.594491 0.078796 0.914771 1.386361 0.662186 1.326720 2.432247 1.697283 2.195727 -2.811329 -0.997307 2.743923 2.046922 0.637236 -0.099927 -1.602709 -1.317842 1.138051 -2.101787 -4.677899 -2.672296 2.039261 2.749828 -0.767514 -0.799923 0.601371 -1.136323 2.315921 3.662208 0.252644 0.684996 1.477486 -2.481290 1.236908 3.453666 -1.264953 1.981544 -1.103372 -1.202995 2.856103 -1.694397 1.460765 -0.015595 0.617829 -0.909826 -1.859279 0.224488 3.028851 0.365143 1.787661 -1.662531 1.261134 -1.037417 -3.237862 -5.517665 -1.049141 4.062396 2.100624 3.316171 -2.489012 -1.218598 0.835028 2.467613 0.678684 -2.642911 1.677815 -2.071624 1.693004 -5.840047 -4.013527 5.160378 4.413354 2.342631 0.077548 1.554486 1.993424 -3.161120 -1.636088 -1.885406 2.312963 -0.030937 -4.619902 -1.163481 0.700352 -3.314617 -1.457132 -0.597542 0.469657 0.729580 -0.203034 3.033947 -0.444733 -0.689810 -0.988579 2.987133 -1.270902 -2.017702 -1.264086 0.051880 0.678294 1.557703 -1.135368 0.709072 1.155533 -2.195921 -0.193848 0.806292 0.792145 0.269680 4.110935 4.567507 -1.269166 0.831419 -1.092754 -1.727548 3.399094 -1.820464 -0.093955 -0.249917 0.591982 0.777705 1.421503 2.487423 -1.327859 -2.243338 -2.992601 -0.736121 0.846691 2.136715 -1.031961 -3.455965 -4.153538 0.531319 0.038783 4.175276 0.246653 5.525773 -2.022978 1.346814 -5.066038 0.407826 1.357728 -0.339363 2.661953 0.393813 -1.832367 -1.095352 -0.929905 -2.922538 -1.650048 -0.122848 -1.863523 -1.880297 -2.751410 2.744228 -2.424502 0.128751 0.554770 -0.144190 3.489105 0.422804 -0.410859 -2.856076 1.785089 1.817280 0.380658 -1.776985 2.641133 0.343512 6.138034 -1.269518 1.417213 -1.108561 2.322931 -1.729243 -3.238519 -0.927469 3.538538 4.013043 1.115565 -0.973622 -0.309024 -0.245746 2.049691 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__niter_wrap<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, int*) = -0.811398 0.809335 2.979679 1.115826 -0.901576 -1.753322 -0.666443 -3.554370 1.458572 0.980707 2.850519 -0.574431 1.632923 -0.129760 -0.135462 -0.025636 1.618404 -0.545042 0.708503 -0.708337 0.085145 2.807467 0.189448 -0.073116 0.387263 -1.957122 1.323311 0.692542 1.267240 1.392353 0.668628 0.551229 -0.229390 0.625354 -0.373471 0.453293 -0.035580 1.267306 -1.052044 -0.352533 0.100133 -1.243997 1.364176 0.313654 1.708595 0.083515 1.312472 -0.361848 -1.117957 -0.820043 -1.653064 1.608456 -1.279038 0.387791 -0.641827 -1.330422 0.617322 -0.068675 -0.178140 -1.621969 -0.108224 -0.744563 -1.073129 0.153631 -1.351392 1.032186 -0.984195 -0.579055 -0.265768 -0.528384 1.161367 0.594051 0.548876 0.548220 -3.110837 0.841405 0.525316 0.128551 1.003551 0.448990 -0.007626 0.022642 -1.335911 -1.828919 2.293624 1.513356 0.725905 0.334084 -1.558255 0.139059 -0.620124 0.111841 0.056997 1.516937 -1.662095 0.999397 -0.113531 -0.916798 -0.948071 -2.077865 0.258942 -1.689875 0.477944 0.826962 -0.644684 0.230207 -1.278168 0.369777 -0.815419 -2.103513 0.571091 -1.415433 -0.455770 2.089640 -1.447136 -0.464484 -1.306977 0.195227 0.624732 1.080159 -0.026569 1.150272 1.106468 1.132014 1.006500 -1.499023 -0.416516 1.335496 1.079034 0.611153 0.325680 -0.964096 -1.132280 0.085979 -1.032843 -2.746100 -1.393837 1.520394 1.759478 -0.391959 -1.274086 0.774328 -0.857369 1.661154 2.250396 0.620546 0.457786 1.008704 -1.455300 0.734266 2.437301 -1.046078 1.477710 -0.479734 -0.556733 1.841704 -0.955574 1.151447 0.203770 0.377784 -0.315739 -1.358396 -0.454650 1.940250 0.854590 0.759290 0.014934 0.532230 -0.296175 -2.408064 -3.309320 -0.717634 2.471480 0.734403 2.139524 -1.643144 -0.790506 0.529421 1.568196 0.175458 -1.460915 0.563965 -1.023791 0.969317 -3.631675 -2.819298 2.761368 2.293503 0.865893 0.252397 1.008805 1.154168 -1.685836 -1.363051 -1.023782 1.726847 -0.579784 -2.167487 -0.934491 0.270835 -1.959771 -0.903267 -0.324239 0.430427 0.443621 -0.101331 1.679917 -0.357732 -0.736334 -0.684497 0.949995 -1.106044 -1.695184 -0.423368 -0.068889 0.591703 0.712619 -0.824421 0.368557 0.839033 -1.611365 -0.470739 0.338114 0.500049 0.048983 2.600094 2.953028 -0.458382 0.525498 -0.308058 -1.266489 2.660803 -0.770919 0.088652 -0.251381 0.393366 0.381986 0.912065 1.615319 -0.823147 -1.708870 -2.263359 -0.098525 0.416028 1.278282 -0.956004 -1.841328 -2.461861 0.254748 0.754517 2.473742 -0.049875 3.626635 -0.876799 0.435086 -3.234815 0.258339 1.069952 -0.439194 1.622282 0.567795 -1.431825 -0.844602 -0.558255 -1.724596 -0.644120 -0.328255 -1.469616 -1.438002 -1.200786 1.270410 -1.503382 0.217548 0.544945 0.154848 1.712590 0.620489 -0.382373 -1.330386 0.645609 1.684779 0.409823 -1.294239 1.869021 -0.148561 4.049135 -0.868614 0.904409 -0.960874 1.031331 -0.531349 -1.456338 -0.486933 2.844942 2.263412 0.615599 -0.433199 -0.306413 -0.118058 1.481233 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.022691 0.152123 0.555646 0.301595 -0.157164 -0.625360 -0.089776 -0.794376 0.406436 0.165579 0.505147 0.009253 0.497744 -0.280634 -0.009715 0.048399 0.337792 0.172591 0.023408 -0.170143 -0.077608 0.664422 -0.090853 -0.167035 0.101275 -0.333135 0.300395 0.281012 0.353493 0.442132 0.096376 0.024148 -0.082105 0.143683 -0.247277 0.007709 -0.013549 0.221331 -0.396873 -0.174405 -0.038655 -0.144616 0.382402 0.051646 0.306024 0.010687 0.202519 0.013026 -0.117961 -0.177988 -0.201677 0.298179 -0.135686 0.275489 -0.220412 -0.234026 0.168803 0.108622 0.103060 -0.327193 0.131445 -0.050256 -0.271544 -0.076920 -0.343340 0.047665 -0.152750 -0.351911 -0.054913 -0.191563 0.202429 0.031201 0.003367 -0.194042 -0.799783 0.014601 0.149110 0.051058 0.306416 0.228366 0.056494 -0.252828 -0.327214 -0.344485 0.545079 0.271898 0.145846 0.343486 -0.459123 -0.214725 -0.013853 0.054462 0.255000 0.187994 -0.196412 0.158388 -0.086918 -0.072726 -0.024510 -0.558651 0.134789 -0.242010 0.068223 0.009099 0.123444 0.144510 0.019115 0.200038 -0.146427 -0.363074 0.209480 -0.226559 -0.193966 0.526644 -0.103298 -0.259520 -0.184136 -0.008537 -0.018355 0.303260 0.085468 0.132815 0.224414 0.210759 0.253032 -0.414094 -0.115589 0.346278 0.197651 0.230985 0.046001 -0.256450 -0.205898 0.151223 -0.390933 -0.748100 -0.238240 0.277803 0.401570 -0.201868 -0.248866 0.287020 -0.233772 0.207025 0.381987 0.081310 0.154700 0.129221 -0.336261 0.152491 0.480176 -0.214485 0.263390 -0.118684 -0.229393 0.243592 -0.015426 0.119157 -0.130755 -0.151075 0.055764 -0.133558 0.139721 0.468250 0.070112 0.160494 -0.099790 0.160559 -0.433669 -0.522181 -0.673982 -0.117577 0.563928 0.218085 0.631320 -0.313041 -0.263359 0.034491 0.350463 -0.186276 -0.191202 0.206458 -0.355669 0.302937 -0.854965 -0.591047 0.743803 0.452151 0.366920 -0.090137 0.195020 0.214717 -0.219019 -0.273544 -0.180357 0.125761 0.142511 -0.637829 -0.236495 0.021695 -0.527377 -0.112488 0.074272 0.065918 -0.009464 0.039572 0.373062 -0.324615 -0.181452 -0.266992 0.313364 -0.262981 0.015927 -0.074079 -0.007747 0.005112 0.219555 -0.211550 -0.030153 0.183466 -0.248374 -0.004467 -0.056929 0.168608 0.081394 0.636532 0.619084 -0.151223 0.282098 -0.021534 -0.375597 0.772830 -0.267836 0.071378 -0.009761 0.281861 0.100412 0.219308 0.367411 -0.213187 -0.200257 -0.572972 -0.275735 0.298420 0.234378 -0.151966 -0.301533 -0.562713 0.000271 -0.143130 0.643360 -0.069842 0.738662 -0.348101 0.197227 -0.673560 0.089887 0.185812 -0.140247 0.343992 0.149730 -0.317005 -0.385774 -0.101099 -0.403401 -0.333465 -0.111390 -0.342407 -0.219756 -0.258131 0.143214 -0.372089 0.071624 0.258443 -0.072085 0.392689 -0.267753 0.020592 -0.286432 0.173349 0.259158 0.014842 -0.343992 0.218278 0.096012 0.954479 -0.021915 0.325709 -0.270571 0.258237 -0.231056 -0.463847 -0.244501 0.523550 0.507811 0.154126 0.060243 0.119525 -0.006691 0.349731 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.404293 0.252370 1.531763 1.374879 -0.824646 -1.403794 -0.355110 -1.601988 1.040049 0.429118 1.281232 0.147027 1.053541 -0.624906 -0.202329 -0.392641 0.885787 0.142678 -0.040044 -0.535947 -0.324079 1.891930 0.406918 -1.077870 0.239426 -1.027010 1.313377 0.610374 0.717025 1.364401 0.253260 0.306439 -0.187802 0.575445 -0.621679 -0.026399 -0.511110 0.700348 -0.652171 -0.433715 0.627950 -0.341797 1.152230 0.257110 0.805571 0.256715 0.698242 -0.141114 -0.777550 -0.563367 -0.665975 0.417184 -0.699383 0.662797 -0.660512 -0.212033 0.671371 -0.098041 0.102331 -1.367774 0.330599 -0.172264 -0.820696 -0.113449 -1.136681 0.249202 -0.481200 -0.850825 -0.087237 -0.639208 0.596671 0.197685 -0.008448 -0.781307 -1.753381 0.205695 0.284152 0.186069 0.813735 0.729735 -0.360348 -0.445475 -0.968036 -0.921601 1.012248 0.262984 0.299860 0.728963 -0.609431 -0.688895 0.037502 0.237103 0.278293 0.726017 -0.650447 0.547582 -0.044971 -0.302920 -0.184856 -0.956428 0.277450 -0.784633 0.271625 0.580361 -0.470876 0.283760 -0.086331 0.215504 -0.331719 -1.077320 0.277898 -0.816268 -0.229631 1.250423 -0.398866 -0.651622 -0.569912 0.017999 0.315216 0.962379 0.007852 0.380194 0.938086 0.617953 0.541198 -1.093074 -0.031838 0.738872 0.475533 0.454187 0.314541 -0.527697 -0.684090 0.157617 -0.568400 -1.754163 -0.540185 0.769398 1.028864 -0.261578 -1.026229 0.972967 -0.630002 0.719629 1.149153 0.417799 0.488238 0.336988 -0.926224 0.486096 1.635635 -0.456764 0.565980 -0.460910 -1.104071 1.598186 -0.240517 0.542784 -0.240394 -0.224816 -0.009727 -0.615403 0.446674 1.280937 -0.065068 0.292428 0.306474 0.282260 -0.336541 -1.494522 -1.828979 -0.222433 1.395607 1.086983 2.066747 -1.069110 -0.088796 0.060929 0.684603 -0.064691 -0.513044 0.274380 -0.580913 0.661397 -2.873674 -1.748223 1.950654 1.087577 0.582113 0.086712 0.609105 0.408369 0.046391 -0.747288 -0.749947 0.649321 0.389201 -0.476197 -0.089927 0.163036 -1.343253 -0.519602 0.260657 0.202436 0.527173 -0.905172 0.305227 -0.990918 -0.639881 -0.994219 0.607984 -0.914617 -0.319564 -0.109646 -0.078031 0.038602 0.418052 -0.032705 -0.140009 -0.075282 -0.438364 -0.239091 -0.126278 0.561304 0.098684 1.258724 1.854012 -0.643836 0.159324 0.117353 -0.753909 2.632818 -0.831254 0.075699 0.053709 1.002258 0.550106 0.521389 0.960855 -0.513454 -0.183087 -1.374059 0.033474 0.693963 0.533367 -1.743347 -0.606489 -1.681435 -0.018284 -0.142621 1.596406 -0.158544 2.255090 -0.782899 0.206386 -2.037360 0.157685 0.866589 -0.118224 1.032368 0.531332 -0.956317 -0.908086 -0.418432 -0.907414 0.426354 -0.334151 -0.769252 -0.813413 -0.119894 0.177784 -0.923180 0.433807 1.010418 -0.502623 0.842715 -0.365511 0.013132 -0.627098 -0.064440 0.352842 0.376005 -0.759789 1.033668 -0.064124 2.027320 -0.158879 0.911765 -0.703387 0.944529 -0.646397 -1.302711 -0.605308 1.500887 1.050783 0.259287 0.408342 0.185705 0.014401 0.977709 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.272524 0.846056 3.567031 2.603807 -1.468616 -1.473912 -0.723672 -2.293962 1.432232 0.669724 2.360185 -0.377982 1.267891 -0.239001 -0.526645 -1.305080 1.526054 -0.160725 0.172728 -0.818425 0.252738 2.730221 1.357233 -2.366568 0.436940 -2.225636 2.145171 0.806358 1.173699 2.069306 0.310221 0.799014 -0.215414 1.162299 -1.135480 -0.451884 -0.605835 1.290468 -1.038842 -0.505172 1.074509 0.019878 1.381427 0.262460 1.401080 0.969833 1.177106 -0.527817 -1.905892 -0.835815 -1.234942 1.073635 -1.379847 0.891557 -0.564450 -0.192710 0.762177 -0.794308 -0.192920 -3.175917 0.601767 0.071693 -0.895337 0.091490 -2.113514 0.811787 -0.617450 -1.108906 0.205665 -0.950229 1.061648 0.610516 0.606057 -0.909583 -2.193422 1.231557 0.478869 0.654791 1.116015 0.743757 -0.489340 0.101759 -1.148898 -1.657398 0.982078 0.489907 0.645403 0.598930 -0.094998 -0.853698 0.206379 0.142702 -0.628142 1.723963 -1.419661 1.403767 -0.457656 -0.672065 -0.635969 -1.122213 -0.067360 -1.814530 0.612578 1.815956 -1.605606 0.628837 -0.613189 0.517159 -0.129709 -2.019760 0.356591 -1.329457 -0.105291 2.164541 -1.296389 -0.786892 -0.978970 0.314580 0.690805 1.784705 -0.778116 1.169782 1.330593 1.211774 0.812910 -1.672432 0.357961 1.096523 0.815172 0.756366 1.086553 -1.117881 -1.290310 -0.384264 -0.424534 -2.661804 -0.781934 1.152582 1.840886 -0.035869 -2.514246 1.382090 -1.166999 1.995737 1.902257 1.036985 0.767713 0.577168 -1.469709 0.808218 3.122392 -1.045219 1.092949 -0.580928 -1.909693 2.777436 -0.491931 1.607757 -0.233441 0.275184 0.321878 -1.815180 0.103333 2.333527 0.505573 0.590381 1.114956 0.078338 0.509599 -3.116601 -3.106176 -0.587855 1.697986 1.152245 3.376060 -1.772400 -0.304344 -0.163687 1.532864 0.145983 -0.897509 -0.071433 -0.620497 0.825758 -4.565615 -3.296599 2.836172 2.475036 0.205748 0.401400 1.356681 0.509867 -0.073134 -1.446409 -1.242455 1.580411 -0.274000 0.153337 -0.240983 0.391821 -2.025971 -1.005654 0.441933 0.418772 1.403664 -1.639104 -0.191488 -0.625739 -1.532181 -1.649690 0.470650 -1.703395 -1.334847 -0.016176 0.031991 0.547701 0.624161 -0.461128 -0.543893 0.201386 -1.065016 -0.866984 -0.027813 1.166260 -0.004221 1.766411 2.757827 -0.445299 0.070550 0.517467 -1.428046 5.065053 -1.166444 -0.067811 -0.112153 1.219622 0.609988 0.924154 1.237444 -0.845474 -0.708271 -2.462383 0.715274 0.332142 0.901844 -3.789431 -1.569351 -2.271071 0.061131 0.639066 2.016232 0.013104 4.341340 -0.788723 -0.153588 -3.874375 0.080130 1.942908 -0.187967 1.927868 1.272804 -1.846806 -2.263831 -0.646837 -1.376468 1.571871 -0.783514 -1.767937 -1.523426 0.107327 0.938134 -1.078256 0.960156 1.972001 -0.297857 1.420807 0.588278 -0.327723 -0.854589 -0.719904 0.579446 0.983709 -1.362635 2.232732 -0.464011 3.407595 -0.806160 1.267121 -1.426189 1.071720 -0.503730 -1.620630 -0.828416 3.042076 1.658881 0.708718 0.343852 -0.263477 -0.585245 1.685636 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__advance(int*&, long, std::random_access_iterator_tag) = -1.032162 1.026330 4.121062 2.799099 -2.392197 -2.545741 -1.250557 -3.212960 1.827389 0.669751 2.782536 -0.273662 1.264051 -0.467983 -0.171444 -1.020538 1.723420 -0.203836 -0.778751 -1.377757 -0.987138 2.619669 1.119070 -3.061398 0.825607 -2.442940 1.787631 1.536525 0.707787 1.602294 0.326517 0.122309 -0.568576 1.757567 -1.938024 -0.328179 0.431494 0.947693 -1.621194 -0.760754 1.464505 1.094096 2.354215 -0.303121 1.757056 1.362445 1.151209 -0.019198 -2.932520 -1.021333 -0.324154 2.221854 -1.043835 1.909621 0.539495 0.898605 0.897187 -2.223610 -0.169322 -2.869202 0.669780 0.687832 -0.901900 -0.273075 -1.791173 -0.014580 0.592581 -1.833833 1.241099 -1.526943 1.078194 -0.347848 -0.211875 -1.417076 -1.472195 1.137880 1.218770 1.023704 1.376037 0.993487 0.084324 -0.517597 -1.257134 -1.757139 0.816048 0.356558 1.065138 1.072751 -0.625811 -1.025357 1.150734 -0.323853 -0.080877 1.931990 -1.676985 0.582776 -0.284086 -1.222236 -2.021156 -1.428297 0.126802 -1.606210 1.114675 2.036434 -1.835241 0.719894 -0.138433 0.985777 -0.200212 -1.862233 0.344405 -1.331394 0.347413 2.625782 -1.246407 -1.635281 -0.511306 -0.319640 -0.122099 2.107072 -0.301912 0.423482 2.449573 1.657358 1.418122 -2.244083 -0.016678 0.323140 1.480552 1.293273 1.655704 -2.170193 -1.082029 0.327798 -1.465510 -3.741103 -0.847296 0.557235 2.723906 0.257947 -3.210548 1.529325 -1.369673 2.392196 1.072435 1.442026 0.746737 -0.032556 -1.879874 0.700319 3.148954 -1.176509 1.606920 -0.794474 -2.491668 1.924914 0.036511 1.552617 0.319438 -0.538155 0.281527 -1.962638 0.668813 2.817448 0.637182 0.528602 0.387594 0.330446 -0.813749 -3.528005 -4.304178 0.025078 1.303841 0.944351 4.681137 -2.429582 -1.841006 -0.976370 2.842771 -1.407259 -1.218310 0.451442 -1.230228 1.393674 -3.727111 -3.510113 4.219721 3.706871 0.772311 0.042560 2.769233 -0.483630 -1.149255 -1.599265 -1.599582 1.304485 1.304035 -0.243987 0.035815 0.427539 -2.546083 -0.573070 0.304501 0.760517 1.128000 -1.484028 -0.304414 -0.648058 -2.273793 -1.492295 0.752679 -1.784732 -0.310291 0.342556 0.160064 0.137791 1.617886 -0.870828 -2.112758 -0.348381 -1.834220 -0.677779 0.122699 2.315738 0.621681 3.175677 3.044710 -0.664726 2.493431 0.490614 -1.711862 5.512381 -2.087051 0.023186 -0.213851 2.226324 0.446213 0.917582 1.956457 -1.084328 -0.744222 -2.804348 0.413841 0.127574 0.929361 -4.459190 -1.906013 -3.278763 -0.452688 -0.063303 2.446491 -0.172636 4.844114 -0.719318 0.182776 -5.482884 0.040582 2.049692 -0.117977 1.396639 1.446591 -2.344945 -4.627653 -0.256678 -2.157681 0.107134 -0.412645 -1.789574 -1.567434 -1.012967 1.929243 -1.237554 1.043136 3.472129 -0.394411 1.528773 0.207485 -0.411102 -0.525851 -1.305360 1.153416 0.437016 -1.574102 2.575115 0.236694 5.703314 -0.237659 2.037579 -1.697466 0.824078 -0.133079 -2.146522 -1.602265 2.690069 2.260546 0.955900 0.426915 0.392738 -1.538300 2.311194 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.148326 0.184969 1.030380 1.173365 -0.832910 -1.565196 -0.278162 -1.513459 0.900924 0.341083 1.057079 0.261634 1.015272 -0.671239 -0.107642 -0.132799 0.806011 0.295232 -0.096982 -0.533402 -0.710499 1.715064 0.170757 -0.763533 0.234977 -0.604981 1.226587 0.633813 0.588979 1.200338 0.279739 0.186069 -0.218028 0.455037 -0.490841 0.055705 -0.617193 0.603243 -0.595610 -0.346238 0.568391 -0.608779 1.225207 0.281747 0.599407 0.165375 0.692275 0.008671 -0.607127 -0.498326 -0.615948 0.259381 -0.569601 0.651116 -0.764974 -0.273652 0.755094 0.104755 0.194681 -0.848328 0.212372 -0.369528 -0.905597 -0.166218 -0.995461 0.093523 -0.574166 -0.911550 -0.152589 -0.495122 0.505735 0.072121 -0.264718 -0.768327 -1.734760 -0.091216 0.288072 0.118265 0.777863 0.759205 -0.280786 -0.580064 -1.071292 -0.789535 1.071439 0.108793 0.304483 0.742004 -0.821363 -0.703967 0.029422 0.311655 0.571285 0.492918 -0.451813 0.396823 -0.013737 -0.259271 -0.232818 -1.111115 0.395309 -0.522239 0.248856 0.226726 -0.274809 0.174287 0.008331 0.121975 -0.373418 -0.978720 0.179209 -0.770907 -0.257104 1.085129 -0.149216 -0.683183 -0.480306 -0.095796 0.231865 0.758295 0.313330 0.141022 0.935613 0.507821 0.481074 -0.978173 -0.176483 0.539722 0.343639 0.414970 0.183410 -0.324850 -0.619619 0.317814 -0.662793 -1.618029 -0.476715 0.748576 0.870589 -0.340276 -0.626681 0.908754 -0.572930 0.357183 0.986478 0.356209 0.462208 0.245483 -0.794228 0.422103 1.285389 -0.339657 0.476922 -0.449589 -0.970001 1.440188 -0.124255 0.234162 -0.199392 -0.411413 -0.166911 -0.297357 0.517391 1.063275 -0.208236 0.130114 0.243758 0.340552 -0.630129 -1.107651 -1.549307 -0.016578 1.455889 1.157521 1.793673 -0.992671 0.027896 0.184693 0.435969 -0.116756 -0.476870 0.367399 -0.556387 0.647347 -2.592532 -1.420528 1.769737 0.644392 0.652915 -0.008357 0.385345 0.391541 0.024476 -0.682756 -0.755129 0.473846 0.549803 -0.661864 -0.094002 0.134748 -1.259158 -0.292876 0.233899 0.209712 0.406098 -0.834145 0.427160 -1.245010 -0.478312 -0.900420 0.671849 -0.750628 -0.045395 -0.074743 -0.175144 -0.082409 0.366612 0.170024 -0.065723 -0.283221 -0.325747 -0.095557 -0.188968 0.467916 0.097994 1.325640 1.726668 -0.756566 0.157719 0.019320 -0.642627 2.140516 -0.800657 0.172396 0.086561 1.096423 0.522789 0.431446 1.067491 -0.436635 -0.150478 -1.149727 -0.175069 0.849892 0.444546 -1.315332 -0.285312 -1.743379 -0.034037 -0.354725 1.661517 -0.243054 1.769212 -0.799500 0.327923 -1.598307 0.199119 0.552832 -0.117793 0.886088 0.340505 -0.799164 -0.423351 -0.391351 -0.880054 0.196297 -0.187474 -0.451815 -0.709418 -0.069029 -0.188675 -0.887826 0.276977 0.775878 -0.678586 0.691498 -0.597236 0.080765 -0.527105 0.075249 0.507525 0.216806 -0.646633 0.836487 0.074863 1.849139 0.144682 0.856259 -0.515630 0.818086 -0.620611 -1.270030 -0.615870 1.162354 0.946284 0.153196 0.482796 0.378097 0.259372 0.829482 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.144347 0.106730 1.035819 1.014990 -0.626156 -1.338109 -0.260265 -1.501550 0.972263 0.392635 1.022176 0.266043 1.000022 -0.720237 -0.124990 -0.113513 0.721840 0.209363 -0.076712 -0.451320 -0.424938 1.715863 0.115484 -0.676848 0.177494 -0.769930 1.044789 0.547699 0.666146 1.134070 0.242374 0.167599 -0.163586 0.409594 -0.482889 0.089543 -0.463363 0.538170 -0.597038 -0.428940 0.467807 -0.440272 1.072147 0.230308 0.673455 -0.013010 0.597002 -0.065805 -0.447981 -0.473053 -0.534002 0.322105 -0.496525 0.589341 -0.644006 -0.262215 0.589396 0.093224 0.173797 -0.817579 0.244105 -0.219652 -0.785624 -0.162848 -0.857882 0.118658 -0.451749 -0.743072 -0.156562 -0.546915 0.474735 0.097063 -0.140746 -0.729817 -1.693209 -0.029866 0.238973 0.044130 0.718662 0.733508 -0.272306 -0.577496 -0.898941 -0.739825 1.059613 0.300399 0.181091 0.729255 -0.780470 -0.620782 -0.031789 0.246925 0.499556 0.481146 -0.519533 0.331064 0.017262 -0.219575 -0.065852 -0.938042 0.347689 -0.549041 0.184166 0.224330 -0.149707 0.223133 0.084282 0.137457 -0.365060 -0.836505 0.245386 -0.649636 -0.253377 1.059365 -0.175022 -0.617856 -0.484669 -0.035227 0.166567 0.712311 0.205139 0.204990 0.855059 0.461069 0.499575 -0.946919 -0.137936 0.697934 0.381108 0.380319 0.095656 -0.392576 -0.512850 0.289610 -0.576443 -1.541132 -0.499685 0.673226 0.820189 -0.343864 -0.582979 0.794740 -0.457904 0.432694 0.965476 0.204097 0.406268 0.299115 -0.774831 0.407200 1.262702 -0.306424 0.425902 -0.462934 -0.852381 1.251290 -0.200525 0.288690 -0.254283 -0.304245 -0.095028 -0.336193 0.519590 1.017975 -0.229603 0.218785 0.045044 0.334158 -0.553360 -1.083950 -1.527675 -0.153494 1.283472 1.035472 1.697394 -0.861985 -0.088565 0.133990 0.471103 -0.096476 -0.420062 0.412403 -0.621988 0.625251 -2.376729 -1.361996 1.711055 0.785240 0.677394 -0.011175 0.445089 0.398423 -0.014649 -0.582259 -0.610004 0.431427 0.563535 -0.737007 -0.078069 0.109706 -1.161732 -0.396791 0.193891 0.130354 0.284380 -0.639859 0.510006 -1.044088 -0.414342 -0.805304 0.710918 -0.692599 -0.074030 -0.171224 -0.086715 -0.093502 0.406132 0.021701 -0.026023 -0.101509 -0.286669 -0.064293 -0.138815 0.377786 0.102907 1.115225 1.632304 -0.659782 0.251417 -0.002375 -0.579178 1.947785 -0.732898 0.089325 0.087931 0.852462 0.473652 0.444722 0.860422 -0.431636 -0.093459 -1.093363 -0.151495 0.728440 0.449334 -1.126362 -0.394344 -1.487928 -0.051101 -0.326627 1.455614 -0.165038 1.725885 -0.807240 0.310594 -1.593376 0.173888 0.575586 -0.096170 0.839563 0.329217 -0.729515 -0.531764 -0.346530 -0.774617 0.050824 -0.210280 -0.562606 -0.647625 -0.262563 0.067847 -0.896758 0.289291 0.737736 -0.512427 0.733681 -0.622046 0.089823 -0.597124 0.152952 0.314362 0.215807 -0.605572 0.700328 0.023434 1.714091 -0.038672 0.804561 -0.528772 0.895827 -0.684092 -1.233991 -0.532046 1.111417 0.915844 0.165220 0.349668 0.260001 0.133649 0.794831 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.163379 0.305750 1.837633 1.244439 -0.753869 -1.913784 -0.391949 -3.061742 1.769863 0.791460 1.748159 0.281851 1.664009 -1.124966 -0.239031 0.213377 1.159727 0.378286 0.020643 -0.641226 -0.444470 2.976383 -0.303957 -0.486882 0.222362 -1.521117 1.297822 0.838368 1.573227 1.458593 0.422647 0.143129 -0.167742 0.539523 -0.731862 0.155442 -0.539803 0.802315 -1.338556 -0.750608 0.323656 -0.802515 1.576711 0.199214 1.177045 -0.586377 1.057144 -0.211425 -0.358948 -0.581221 -0.930399 1.031348 -0.543632 0.871845 -0.786748 -0.830766 0.528485 0.329854 0.317918 -0.568569 0.280784 -0.290031 -1.152324 -0.250127 -1.199129 0.240611 -0.797885 -0.995562 -0.235573 -0.745335 0.726328 0.166016 -0.082212 -1.019331 -3.184394 0.094584 0.463175 -0.074734 1.064409 1.205333 0.059645 -0.911717 -1.329696 -1.257955 2.053315 1.213318 0.133312 0.983758 -1.623256 -0.859391 -0.213645 0.304506 0.844193 0.833553 -1.217502 0.554001 -0.402360 -0.400630 -0.097283 -1.867921 0.464167 -1.042182 0.316254 -0.045867 0.064100 0.567510 0.461642 0.270998 -0.421079 -1.356414 0.321774 -0.809601 -0.356407 2.059960 -0.242258 -1.057141 -0.898314 0.050136 -0.155028 0.841772 0.375454 0.465900 1.464512 0.696920 1.021242 -1.555533 -0.344935 1.479905 0.493436 0.682949 -0.001826 -0.776731 -0.707290 0.458088 -0.824389 -2.681305 -0.929661 1.053235 1.299366 -0.842671 -0.409292 0.764612 -0.544017 0.873742 1.586970 -0.047742 0.591106 0.625592 -1.137319 0.659226 2.013173 -0.506812 0.655540 -0.965150 -1.003357 1.549201 -0.401253 0.534979 -0.527353 -0.222060 -0.141394 -0.671795 0.739725 1.691502 -0.494074 0.360778 -0.320823 0.550658 -1.093919 -1.744333 -2.586873 -0.378896 1.906266 1.350494 2.435378 -1.194907 -0.585200 0.362438 0.832214 -0.057605 -0.683417 1.058359 -1.392227 1.088512 -3.281840 -2.245858 2.619049 1.573491 1.128445 -0.234498 0.836048 0.757576 -0.752349 -1.082620 -0.875251 0.764797 0.923407 -2.084570 -0.443042 0.200078 -1.840930 -0.547341 0.199364 0.113468 0.305760 -0.354573 1.449692 -1.454295 -0.660646 -1.183058 1.670671 -0.940143 -0.112460 -0.515604 -0.007427 -0.188949 0.960806 -0.408069 0.014374 0.203776 -0.523841 0.057636 -0.148629 0.380171 -0.016484 1.827682 2.636112 -0.811146 0.928955 -0.130879 -0.951111 2.666608 -1.076224 0.041407 0.099441 0.737534 0.262860 0.921968 1.237085 -0.737361 -0.537952 -1.797386 -0.500823 0.803424 0.784063 -0.939865 -0.841682 -2.115272 -0.164577 -0.493399 2.173861 -0.007428 2.754776 -1.476273 0.653986 -2.637125 0.273828 0.741833 -0.197679 1.624890 0.433556 -1.184880 -0.602843 -0.452679 -1.206974 -0.714677 -0.275560 -1.239219 -1.130744 -1.015857 0.607553 -1.499971 0.348917 0.952689 -0.514384 1.439099 -1.208473 0.093370 -1.158904 0.656877 0.772001 0.229514 -1.018287 0.869718 0.008125 3.138214 -0.295298 1.187414 -0.912404 1.229504 -1.069705 -2.069268 -0.786623 1.822374 1.624586 0.461962 0.018830 0.192053 0.017838 1.264002 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = -0.007441 0.343054 1.165922 0.405772 -0.452911 -0.724534 -0.255195 -1.437632 0.767260 0.402768 0.812348 0.019768 0.737066 -0.354685 -0.182910 0.000377 0.587610 0.124288 0.136232 -0.304575 -0.158306 1.204339 -0.063483 -0.137513 0.160825 -0.880968 0.666560 0.079145 0.791616 0.820186 0.187366 -0.041790 -0.227485 0.322069 -0.059198 0.100956 0.056686 0.409942 -0.658559 -0.148296 -0.013437 -0.426060 0.607741 0.114057 0.565488 -0.102987 0.135603 -0.089453 -0.335685 -0.254523 -0.266225 0.377444 -0.401672 0.462642 -0.064574 -0.354157 0.023231 0.161119 0.145301 -0.386783 0.068633 -0.342445 -0.303377 0.009210 -0.645927 0.132980 -0.606067 -0.442502 -0.177145 -0.353073 0.313939 0.213977 0.275861 -0.106582 -1.382855 0.206563 0.244536 0.096041 0.531093 0.427387 0.055316 -0.345737 -0.562492 -0.743945 0.754228 0.612301 0.069701 0.277365 -0.624926 -0.270265 -0.018924 0.124262 0.286614 0.531752 -0.612098 0.304866 -0.545219 -0.162337 0.047351 -1.303084 0.019149 -0.612631 0.172723 0.047616 -0.171504 0.169058 0.066477 0.317497 -0.039952 -0.589069 0.376260 -0.258888 -0.310988 1.000163 -0.148187 -0.466306 -0.413301 -0.009925 0.059840 0.406736 0.081195 0.295802 0.485265 0.381110 0.648244 -0.699797 -0.127451 0.689705 0.193320 0.243366 0.193895 -0.437235 -0.359237 0.241406 -0.396185 -1.279807 -0.392593 0.384789 0.611696 -0.320608 -0.193469 0.027593 -0.415492 0.422102 0.691102 0.152806 0.282011 0.179816 -0.512811 0.276268 0.895002 -0.367936 0.381733 -0.318680 -0.366547 0.612863 -0.197239 0.387051 -0.468394 0.042679 0.055876 -0.478490 0.131181 0.904447 -0.089382 0.242863 -0.182870 0.146332 -0.548178 -0.954427 -1.112128 -0.215904 1.040577 0.383184 0.851870 -0.566315 -0.310648 0.137467 0.627962 0.116605 -0.346104 0.415438 -0.519961 0.487841 -1.464952 -1.125411 1.219626 0.972383 0.402327 -0.189883 0.204402 0.406449 -0.670037 -0.670546 -0.510810 0.313205 -0.009470 -1.086591 -0.584861 0.189666 -0.844251 -0.121237 0.193563 0.096887 0.466475 -0.049063 0.536731 -0.172180 -0.245514 -0.604360 0.857506 -0.418517 -0.280469 -0.150278 0.076291 0.106168 0.477310 -0.257840 -0.106220 0.334439 -0.334259 -0.052245 0.043081 0.262092 -0.085579 0.992133 1.056375 -0.190425 0.108647 0.023547 -0.567656 1.348322 -0.540498 0.043874 0.017236 0.197277 -0.050691 0.460936 0.640005 -0.372157 -0.558402 -0.879683 -0.412480 0.099020 0.399061 -0.391718 -0.790145 -0.784069 0.121309 -0.145293 0.890958 0.116707 1.385761 -0.496142 0.323957 -1.149654 0.097899 0.549506 -0.153571 0.903138 0.300635 -0.556168 -0.440836 -0.265876 -0.641357 -0.257703 -0.189706 -0.532534 -0.388523 -0.368177 0.434354 -0.413990 0.148465 0.350904 -0.080851 0.891687 -0.218651 -0.030012 -0.700255 0.311837 0.476463 0.049242 -0.473825 0.566039 0.159771 1.502173 -0.171521 0.326979 -0.381632 0.232207 -0.308737 -0.808405 -0.396228 0.941917 0.806076 0.471820 -0.135131 -0.009670 -0.126701 0.546608 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = -1.668911 0.246482 2.380620 0.588154 -0.528478 -0.536985 -0.552925 -2.055403 0.937048 0.859286 2.440727 -0.426179 1.210997 -0.122848 0.034336 -0.699833 1.282859 -1.094655 0.826116 -0.315802 1.092039 1.692717 0.676680 -0.027151 0.170872 -1.484198 0.728717 -0.078682 0.552062 1.228494 0.455761 0.424129 -0.480465 0.275616 0.231367 0.615676 0.610080 0.956309 -0.329143 -0.457784 -0.038389 -1.007002 0.563577 0.075835 1.621568 -0.207456 0.476184 -0.519703 -1.221007 -0.926117 -1.000787 0.841272 -1.405125 0.031338 0.224451 -1.038189 0.256382 0.045084 -0.429981 -2.425464 0.010865 -0.877762 -0.196433 0.294149 -0.649281 1.137560 -0.717834 0.206972 -0.209804 -0.777793 0.849139 0.722241 1.312613 1.404527 -1.608014 0.959520 0.181735 0.043246 0.560214 0.281497 -0.344857 0.166306 -0.416995 -1.294409 1.200841 0.959780 0.362843 -0.033410 -0.959333 1.067166 -0.367015 -0.037566 -0.561255 1.037951 -1.408658 0.671051 0.335417 -0.637035 -0.113008 -1.203663 -0.080644 -1.477435 0.091691 1.471947 -0.882413 -0.176446 -2.018206 0.394775 -0.997248 -1.467769 1.073142 -0.935849 -0.737664 1.013151 -1.846015 0.243393 -1.053500 0.454782 1.187111 0.783641 -0.509051 1.433203 -0.119234 0.904729 0.786396 -0.989230 -0.037164 1.254282 1.395389 0.093615 0.091560 -0.557472 -0.700807 0.076343 -0.850601 -1.532825 -1.335630 1.262329 1.480249 0.530347 -1.492312 0.179501 -0.645633 1.625141 1.833438 0.745201 0.097523 1.016777 -1.264692 0.477092 1.386548 -0.903768 1.325475 0.490113 -0.044912 1.215083 -1.077338 1.115667 0.167099 0.865241 0.026863 -1.345325 -1.021267 1.299467 1.360377 1.146058 -0.607814 0.382105 0.385601 -2.129468 -2.475209 -0.930856 2.010399 0.379705 0.872329 -1.096202 -0.638645 0.429379 1.472063 0.323530 -1.555233 0.029746 -0.325737 0.556042 -2.808822 -2.029926 2.061614 2.154348 0.461981 0.572956 0.581260 1.052441 -1.479989 -0.633172 -0.695824 1.420544 -1.351636 -1.286616 -0.759866 0.266439 -1.217199 -1.157806 -0.243329 0.225908 0.309782 -0.062449 1.046170 1.114747 -0.020766 0.130579 0.414533 -0.710783 -2.169481 -0.484009 0.054630 1.185078 0.282430 -0.745099 0.536487 1.133865 -1.535728 -0.758876 0.435262 0.382398 0.271572 1.758308 1.900603 -0.071532 -0.471835 -0.337306 -1.079795 1.758819 -0.522031 -0.124892 -0.410637 -0.169624 0.689481 0.476568 1.007951 -0.608057 -1.440459 -1.579077 -0.075580 -0.043445 1.353945 -1.107602 -2.320701 -1.341913 0.759276 1.097541 1.230132 -0.047196 2.864959 -0.418387 -0.028411 -2.343428 0.018534 1.290861 -0.331814 1.017853 0.373033 -0.724674 -1.221299 -0.488088 -1.219428 0.195674 -0.337354 -0.979409 -0.625552 -1.085739 1.769796 -0.866656 0.140386 -0.108920 0.543982 1.704045 1.756993 -0.516628 -1.211128 0.588627 0.461516 0.536713 -0.872171 2.000140 -0.061272 2.519179 -1.187755 0.000390 -0.637062 1.049724 -0.537011 -0.578572 0.024626 2.165199 2.028329 0.616980 -0.651411 -0.466822 -0.540440 0.899800 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.174911 0.730425 2.037907 1.265053 -1.259483 -1.691429 -0.515485 -2.264642 1.320149 0.439507 1.083210 -0.064028 0.913020 -0.548418 -0.434229 0.381763 1.082659 0.512345 -0.259045 -0.823898 -0.915811 1.833411 0.186114 -1.053987 0.662058 -1.414562 1.413092 0.226612 1.003268 1.332345 0.462600 0.030271 -0.153442 0.890399 -0.015209 0.533504 -0.109853 0.611184 -1.131524 0.031260 0.339685 -0.537721 1.171923 0.510408 0.990105 0.527055 0.645028 -0.030506 -1.129682 -0.215074 -0.649761 0.937025 -0.831678 0.989384 -0.447709 0.238822 0.304028 -0.559964 0.229979 -0.732834 -0.112273 -0.378870 -1.081397 -0.043301 -1.454616 0.067908 -0.679767 -0.981439 -0.398574 -0.304042 0.560550 0.242150 -0.235779 -0.533010 -1.939829 0.048104 0.479865 0.470308 1.135822 0.413179 -0.017040 -0.751262 -1.247088 -1.272147 1.398391 0.271797 0.452426 0.666454 -0.489432 -0.916120 -0.174285 0.215567 0.555387 1.085336 -1.086577 0.304475 -0.580243 -0.452317 -0.496855 -1.906643 0.168639 -0.901151 0.393120 0.030858 -0.564291 0.527851 0.312614 0.647953 0.075850 -0.766785 0.251370 -0.540976 -0.398149 1.608993 0.114856 -1.135590 -0.533627 -0.266357 0.028345 1.013790 0.184487 0.206719 1.536423 0.729908 1.154590 -1.088675 -0.201419 0.489624 0.213787 0.594621 0.810497 -0.807982 -0.864113 0.325604 -0.487071 -2.242761 -0.448269 0.504695 1.096814 -0.271471 -0.813189 0.199469 -0.671986 0.631090 0.727841 0.491107 0.489829 -0.028175 -0.884353 0.346023 1.958143 -0.693591 0.605298 -0.860157 -0.700182 1.210791 -0.145471 0.412279 -0.729739 -0.495533 0.015254 -0.698207 0.346031 1.594599 -0.299305 -0.259665 0.271323 0.265399 -1.025858 -1.589369 -1.854417 -0.212752 1.495040 0.616427 2.011869 -1.254818 -0.336841 -0.364702 0.859140 -0.114681 -0.215018 0.410984 -1.033675 0.826840 -2.334072 -1.980986 2.423784 1.342647 0.762912 -0.227395 0.551498 0.358942 -0.929269 -1.183338 -0.936303 0.423948 0.515987 -1.069265 -0.783337 0.292762 -1.718160 -0.167471 0.302961 0.400786 0.780984 -0.398295 0.542357 -0.702167 -0.733117 -1.284225 0.873130 -0.868992 -0.223185 0.094391 0.046770 0.021717 0.834547 -0.176199 -0.540919 -0.000515 -0.528967 -0.216210 0.060220 0.940580 0.031381 1.739672 2.199471 -0.384552 0.638126 0.224186 -1.046865 2.442428 -0.747602 0.315215 0.072800 0.698586 0.057970 0.583202 1.390551 -0.593620 -0.655460 -1.427928 -0.413373 0.358795 0.519033 -1.094968 -0.753810 -1.549457 -0.150300 -0.277278 1.716184 0.011231 2.221090 -0.637044 0.582065 -2.302396 0.239728 1.260479 -0.194922 1.157373 0.738511 -1.260791 -1.145375 -0.402181 -1.119693 -0.291081 -0.384965 -0.383660 -0.971746 -0.094255 0.438122 -0.783675 0.365000 1.296344 -0.202552 1.194135 -0.559298 0.182003 -0.710405 -0.059525 1.164812 0.147221 -0.818974 0.776976 0.426220 2.811545 0.165133 0.899041 -0.719013 0.069112 -0.241932 -1.407373 -0.999101 1.513451 1.226307 0.562056 0.431318 0.069440 -0.136936 1.300833 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.065974 0.238964 0.736902 0.286566 -0.263956 -0.439171 -0.153477 -0.753020 0.408256 0.218794 0.482284 0.029217 0.480317 -0.180576 -0.122024 -0.194938 0.335292 0.090681 0.123369 -0.159923 -0.079273 0.708070 0.011339 -0.170945 0.057484 -0.523612 0.502101 0.073186 0.460153 0.627215 0.050644 -0.006822 -0.192237 0.208468 -0.128863 -0.105911 0.024263 0.293099 -0.355808 -0.099132 0.031563 -0.189988 0.387294 0.074577 0.262109 0.055595 -0.067194 -0.030570 -0.188633 -0.201373 -0.084129 0.045948 -0.244712 0.309395 -0.060199 -0.227113 0.070931 0.170026 0.114169 -0.397296 0.141870 -0.197074 -0.092722 0.008239 -0.439249 0.065831 -0.401362 -0.353982 -0.074269 -0.289700 0.190416 0.145281 0.253010 -0.119377 -0.819998 0.169796 0.140488 0.088073 0.325960 0.289765 -0.038912 -0.162533 -0.343455 -0.459930 0.313238 0.344931 0.052227 0.207504 -0.328984 -0.225725 0.102344 0.098635 0.152083 0.322732 -0.216804 0.265797 -0.403860 -0.034499 0.113265 -0.812785 -0.010434 -0.364663 0.110573 0.121962 -0.142445 0.046773 0.028616 0.206311 0.001260 -0.397882 0.308732 -0.200795 -0.208095 0.593028 -0.102431 -0.266600 -0.222162 -0.022473 0.108168 0.309426 0.000107 0.170149 0.157383 0.234190 0.327881 -0.449884 -0.040805 0.433895 0.099512 0.133613 0.140986 -0.272104 -0.214655 0.136523 -0.289798 -0.764064 -0.185347 0.211676 0.364246 -0.241058 -0.188008 0.148382 -0.361758 0.213217 0.459252 0.179187 0.214325 0.084367 -0.321784 0.189025 0.519235 -0.223447 0.239235 -0.125952 -0.359543 0.436728 -0.072267 0.294483 -0.326640 0.025504 0.090930 -0.291438 0.125640 0.575520 -0.029158 0.236258 -0.023773 0.040517 -0.311999 -0.613843 -0.631721 -0.108357 0.705955 0.274331 0.560711 -0.350723 -0.135697 0.121674 0.443158 0.074973 -0.206281 0.203797 -0.186989 0.287751 -1.052523 -0.701032 0.691037 0.578694 0.189320 -0.126751 0.062068 0.232695 -0.213992 -0.430749 -0.325823 0.160561 -0.098097 -0.539080 -0.357955 0.111582 -0.474170 -0.045415 0.201462 0.053552 0.390325 -0.153470 0.173642 -0.134532 -0.166378 -0.451176 0.498210 -0.308704 -0.156527 -0.039514 0.034287 0.055072 0.230369 -0.105998 -0.099130 0.228958 -0.165302 -0.035984 -0.010730 0.143615 -0.080439 0.591336 0.542869 -0.140523 -0.126850 0.079478 -0.345146 1.058163 -0.412822 0.026243 0.029702 0.255656 0.005339 0.296858 0.370523 -0.230887 -0.294634 -0.592858 -0.247399 0.099252 0.214323 -0.423800 -0.513014 -0.491505 0.130661 -0.121287 0.563812 0.059921 0.912715 -0.272522 0.160120 -0.631905 0.052804 0.346698 -0.113511 0.584332 0.219941 -0.325121 -0.336734 -0.188257 -0.404193 0.017766 -0.152259 -0.397770 -0.173461 -0.105488 0.126894 -0.181981 0.134487 0.242839 -0.120775 0.506861 -0.125384 -0.045610 -0.448507 0.129440 0.203078 0.022233 -0.296589 0.410747 0.078575 0.806823 -0.103998 0.209616 -0.233151 0.182269 -0.197570 -0.476398 -0.245052 0.622714 0.423488 0.316567 -0.039564 0.041228 -0.056982 0.288726 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::max_size() const = 0.101860 0.254605 0.569234 0.319875 -0.147243 -0.532371 -0.106000 -0.628036 0.320360 0.097645 0.342260 -0.032035 0.380040 -0.121982 -0.082198 -0.017348 0.253192 0.216611 0.025681 -0.149985 -0.161850 0.593924 -0.037858 -0.252654 0.081968 -0.385726 0.355200 0.233585 0.365166 0.457471 0.024416 0.036431 -0.025900 0.198625 -0.296184 -0.143898 -0.056288 0.214020 -0.366767 -0.069950 0.002423 -0.012378 0.338896 0.090976 0.154498 0.189980 0.088307 0.028174 -0.082512 -0.097562 -0.160143 0.205696 -0.100092 0.277337 -0.241020 -0.122388 0.148723 0.051579 0.108732 -0.269160 0.124135 0.035946 -0.201388 -0.054092 -0.405686 0.019312 -0.177248 -0.399518 -0.035603 -0.103456 0.189280 0.070032 0.028903 -0.284266 -0.701159 0.084742 0.126623 0.122992 0.280492 0.146388 0.028650 -0.127197 -0.320493 -0.343979 0.376810 0.228154 0.142392 0.283818 -0.230911 -0.353590 0.026655 0.059773 0.184454 0.242630 -0.064213 0.242798 -0.249625 -0.017073 -0.034619 -0.542940 0.042738 -0.232266 0.095107 0.011463 0.077688 0.144772 0.151374 0.195533 0.010159 -0.333409 0.166000 -0.180054 -0.168156 0.509868 0.000913 -0.262742 -0.084097 -0.045799 -0.065465 0.334824 0.034988 0.080358 0.211016 0.195789 0.175761 -0.344123 -0.053481 0.247863 0.060010 0.213033 0.173566 -0.280813 -0.221767 0.069893 -0.251533 -0.672162 -0.085482 0.191126 0.296741 -0.279694 -0.238167 0.313875 -0.268780 0.146946 0.303419 0.110161 0.192569 0.004450 -0.253545 0.174125 0.525356 -0.204100 0.210330 -0.197182 -0.321689 0.310109 0.016999 0.175317 -0.207792 -0.144621 0.090458 -0.148623 0.190996 0.466993 -0.005831 0.098332 0.122653 0.044247 -0.355272 -0.476050 -0.501497 -0.065528 0.456669 0.134695 0.642437 -0.271155 -0.185699 0.006863 0.327797 -0.129620 -0.053349 0.150043 -0.246817 0.245142 -0.808701 -0.568746 0.595717 0.378538 0.223006 -0.123285 0.150306 0.166309 -0.045183 -0.348536 -0.176699 0.088170 0.103872 -0.424808 -0.260975 0.021308 -0.428138 -0.011653 0.130746 0.070510 0.157084 -0.042888 0.143982 -0.353723 -0.284365 -0.395357 0.271712 -0.315533 0.056246 0.029511 0.000985 -0.084895 0.184105 -0.131898 -0.119511 0.156184 -0.138178 0.011049 -0.061895 0.158873 -0.004826 0.497397 0.500729 -0.104915 0.181156 0.108342 -0.302877 0.895750 -0.279858 0.068463 0.026900 0.319776 -0.019977 0.233205 0.288619 -0.170757 -0.178518 -0.533409 -0.152119 0.213996 0.104644 -0.246911 -0.225971 -0.438169 -0.035911 -0.132411 0.569308 -0.018802 0.689706 -0.248781 0.160055 -0.577163 0.087171 0.194251 -0.114838 0.374666 0.220523 -0.317436 -0.374422 -0.105774 -0.319663 -0.169680 -0.153417 -0.404889 -0.199077 -0.078761 -0.025015 -0.253163 0.126008 0.358805 -0.099265 0.282409 -0.301738 0.001318 -0.266285 0.045501 0.274170 -0.007669 -0.286736 0.176556 0.040877 0.779845 -0.003797 0.334617 -0.261294 0.114560 -0.117721 -0.394201 -0.245010 0.514085 0.301575 0.156225 0.115243 0.092673 0.019927 0.291716 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::__make_move_if_noexcept_iterator >(int*) = -0.172406 0.140123 0.984777 0.168120 -0.173530 -0.988088 -0.270727 -1.374969 0.637006 0.469557 1.063642 -0.054428 0.820012 -0.291190 0.065802 0.118379 0.504267 -0.197216 0.122799 -0.346628 -0.157128 1.083742 0.016188 0.016266 0.178679 -0.873480 0.522920 0.358771 0.347937 0.766424 0.193202 0.096980 -0.117705 0.299441 -0.297995 0.335083 0.138654 0.408011 -0.267474 -0.097118 0.094453 -0.081070 0.620576 0.161038 0.718643 0.277277 0.208651 0.017801 -0.251093 -0.496423 -0.151448 0.354308 -0.391272 0.312374 -0.361130 -0.201878 0.249767 -0.122784 0.050134 -0.595876 0.151076 -0.080428 -0.530638 0.014899 -0.464784 0.155339 -0.211349 -0.405065 -0.119048 -0.450776 0.399194 0.026630 -0.129371 -0.060155 -1.111203 0.060624 0.253523 -0.065179 0.456947 0.067780 -0.297735 -0.264339 -0.597744 -0.694743 0.914120 0.626373 0.275856 0.451297 -0.714393 -0.153483 -0.162877 0.070996 0.380374 0.547237 -0.363293 0.039361 0.263173 -0.316042 -0.285448 -0.722122 0.293440 -0.477403 0.179361 0.214938 0.044022 -0.002055 -0.312839 0.244063 -0.444782 -0.556739 0.321702 -0.517515 -0.084649 0.736707 -0.345040 -0.281017 -0.531839 -0.160321 0.280226 0.576607 0.174610 0.090950 0.689360 0.394782 0.357321 -0.695863 -0.296478 0.460754 0.488859 0.248477 0.059788 -0.614273 -0.360362 0.259095 -0.742972 -1.161640 -0.525875 0.314972 0.609090 -0.393213 -0.481580 0.691687 -0.360634 0.361093 0.852602 0.158579 0.171916 0.223544 -0.641154 0.257779 0.909760 -0.366122 0.526066 -0.309487 -0.466838 0.590556 -0.256473 0.269721 0.135702 -0.195753 -0.201816 -0.275367 0.275721 0.771293 0.174125 0.495442 -0.200879 0.309977 -0.357688 -0.640921 -1.286316 -0.250567 0.909843 0.403119 1.130664 -0.647314 -0.302581 0.005811 0.745625 -0.129353 -0.469400 0.259425 -0.432919 0.398999 -1.385940 -0.922968 1.269099 0.947791 0.786525 -0.025604 0.436605 0.367237 -0.346974 -0.282045 -0.294186 0.431632 0.136182 -0.908257 -0.201770 0.062529 -0.833505 -0.298742 -0.246932 0.177835 -0.035902 -0.041229 0.546972 -0.398995 -0.296819 -0.320963 0.334173 -0.386759 -0.228557 -0.202795 -0.013597 -0.036794 0.252916 -0.320383 0.066346 0.282074 -0.536338 0.029111 0.219025 0.267463 0.234493 1.068022 0.998565 -0.415197 0.300241 -0.226860 -0.336897 0.882900 -0.366868 0.073681 0.019395 0.512653 0.305043 0.299582 0.615099 -0.296817 -0.338520 -0.823110 -0.134089 0.513274 0.365459 -0.141757 -0.573237 -1.107227 0.006354 -0.137877 1.321639 -0.076258 1.306632 -0.300926 0.424110 -1.138346 0.161554 0.198794 -0.200516 0.341783 0.201646 -0.511606 -0.593974 -0.178421 -0.768443 -0.694056 -0.049516 -0.415550 -0.454340 -0.512289 0.341931 -0.634702 0.066349 0.348482 0.013990 0.538103 -0.073543 -0.006942 -0.576234 0.284371 0.551945 -0.021155 -0.478560 0.378554 0.145518 1.479401 -0.191906 0.673245 -0.296097 0.595994 -0.342614 -0.710175 -0.345962 0.860743 0.861437 0.160936 0.071729 0.069874 0.101736 0.600570 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.120370 0.162706 0.553223 0.706665 -0.494493 -0.947308 -0.123802 -0.668489 0.387381 0.116304 0.537252 0.127871 0.555673 -0.339793 -0.040027 -0.151925 0.449721 0.258541 -0.079209 -0.294110 -0.456317 0.778111 0.141864 -0.539753 0.162425 -0.160306 0.721893 0.396835 0.209371 0.709574 0.131582 0.111167 -0.152370 0.270065 -0.307479 -0.043790 -0.346084 0.357528 -0.288357 -0.164622 0.311854 -0.326322 0.675483 0.190979 0.242593 0.279084 0.319604 0.054441 -0.408273 -0.281385 -0.302538 0.046274 -0.326424 0.401569 -0.472456 -0.108810 0.510418 0.080143 0.148983 -0.640925 0.169945 -0.216496 -0.481653 -0.113394 -0.594437 -0.002503 -0.285373 -0.618228 -0.084431 -0.268092 0.256821 0.020540 -0.167329 -0.427025 -0.839348 -0.082562 0.182913 0.128999 0.455790 0.395034 -0.174490 -0.328294 -0.596007 -0.419147 0.508741 -0.127963 0.269164 0.483636 -0.408484 -0.429433 0.099895 0.194234 0.325899 0.236603 -0.088987 0.251623 0.014656 -0.107092 -0.140879 -0.621650 0.224872 -0.228650 0.128157 0.169230 -0.165665 0.067434 -0.092866 0.119057 -0.200234 -0.532551 0.146326 -0.482899 -0.205105 0.500530 -0.073895 -0.374949 -0.181196 -0.082272 0.203608 0.469507 0.163308 0.027686 0.390434 0.259893 0.225037 -0.521019 -0.070266 0.175689 0.179664 0.245881 0.149176 -0.136180 -0.358124 0.183946 -0.462714 -0.866932 -0.193939 0.409299 0.476466 -0.137728 -0.473551 0.607286 -0.405755 0.104142 0.484758 0.332987 0.277742 0.085057 -0.423622 0.178668 0.619593 -0.224956 0.292470 -0.109915 -0.581160 0.758563 0.037376 0.098978 -0.113062 -0.334475 -0.022134 -0.106456 0.261773 0.587066 -0.010430 0.057607 0.231173 0.158779 -0.411547 -0.614774 -0.771589 0.035554 0.851307 0.621071 0.987355 -0.561795 0.052410 0.074949 0.257223 -0.183820 -0.242476 0.090883 -0.200163 0.348043 -1.473871 -0.752426 0.949542 0.240161 0.334341 -0.009391 0.135537 0.156984 0.142672 -0.378084 -0.418976 0.176470 0.231942 -0.235796 -0.082161 0.060340 -0.700212 -0.083073 0.189218 0.135752 0.225179 -0.519018 0.113221 -0.721326 -0.255412 -0.503849 0.204310 -0.435078 0.027736 0.044469 -0.124394 -0.009529 0.130261 0.138197 -0.105487 -0.187242 -0.209756 -0.099711 -0.167635 0.323319 0.102897 0.814383 0.867789 -0.422192 -0.015880 0.057203 -0.413915 1.294746 -0.461971 0.142863 0.042928 0.781121 0.356040 0.205182 0.652777 -0.239852 -0.049111 -0.669021 -0.166734 0.564745 0.210629 -0.818446 -0.104471 -0.983743 0.023932 -0.228355 0.947938 -0.220277 0.937104 -0.369147 0.162416 -0.785714 0.114886 0.301531 -0.118141 0.421058 0.224208 -0.448702 -0.330351 -0.228403 -0.513268 0.198790 -0.111012 -0.161303 -0.314757 0.125844 -0.280417 -0.434204 0.164584 0.437530 -0.422399 0.315719 -0.286385 0.061243 -0.205289 -0.037267 0.308326 0.105372 -0.372460 0.483241 0.103711 0.984611 0.189934 0.479366 -0.283107 0.386018 -0.276427 -0.616044 -0.389861 0.636148 0.500437 0.092530 0.382695 0.310371 0.174850 0.462032 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference&>::type&& std::move&>(std::greater&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = -0.087771 0.124454 0.709432 0.056319 -0.090574 -0.718296 -0.209453 -1.128636 0.440806 0.362721 0.840081 -0.130049 0.624901 -0.197934 0.052841 0.129662 0.327831 -0.153487 0.161321 -0.222137 -0.181667 0.780405 -0.081337 0.157285 0.111902 -0.616026 0.413394 0.233581 0.245512 0.521038 0.144867 0.052474 -0.072650 0.193481 -0.184857 0.297809 0.142015 0.354734 -0.146911 -0.055100 0.012180 -0.156734 0.391031 0.083249 0.525673 0.222164 0.139061 0.012122 -0.146010 -0.351708 -0.106630 0.249574 -0.324602 0.179039 -0.278638 -0.267099 0.175052 -0.044618 0.021236 -0.364605 0.089700 -0.148041 -0.406104 0.040733 -0.337178 0.155326 -0.178182 -0.290317 -0.086689 -0.250641 0.309029 0.050355 -0.072733 0.084473 -0.830318 0.053489 0.217288 -0.093507 0.320467 -0.027790 -0.122576 -0.174943 -0.460801 -0.536543 0.783670 0.523712 0.252826 0.279041 -0.541905 -0.022422 -0.129467 0.053228 0.330435 0.432862 -0.205564 0.019883 0.135694 -0.215054 -0.233214 -0.662137 0.223361 -0.394632 0.160989 0.177385 0.026355 -0.003311 -0.196157 0.219832 -0.340215 -0.495860 0.204874 -0.411958 -0.004682 0.546771 -0.256994 -0.193587 -0.391751 -0.145316 0.217224 0.366515 0.203509 0.092151 0.528440 0.296786 0.269477 -0.523314 -0.311612 0.366474 0.354329 0.196506 0.001816 -0.526647 -0.267325 0.195798 -0.590472 -0.879451 -0.424601 0.204975 0.424893 -0.381198 -0.321498 0.548399 -0.249359 0.219617 0.660995 0.121439 0.089647 0.197413 -0.453758 0.192694 0.609337 -0.275306 0.394344 -0.216222 -0.294683 0.356910 -0.169109 0.141825 0.150403 -0.101838 -0.166784 -0.233060 0.167532 0.556696 0.154391 0.413472 -0.175364 0.261427 -0.350035 -0.459054 -0.897999 -0.148644 0.759447 0.212688 0.766542 -0.492961 -0.268251 0.108472 0.608763 -0.080363 -0.355405 0.192684 -0.329183 0.316938 -0.928586 -0.700093 0.865310 0.607697 0.612543 -0.041256 0.278766 0.322228 -0.375298 -0.190641 -0.244677 0.349522 0.064043 -0.812290 -0.248449 0.029105 -0.615756 -0.195267 -0.205879 0.154281 -0.061460 0.066280 0.430491 -0.274249 -0.177401 -0.190164 0.305653 -0.257124 -0.163384 -0.189635 -0.008504 -0.010827 0.188785 -0.298489 0.113998 0.237982 -0.416434 0.065310 0.223411 0.136225 0.145302 0.916732 0.726454 -0.334199 0.179536 -0.208219 -0.215026 0.525706 -0.204169 0.056636 0.014518 0.359294 0.180638 0.217107 0.522445 -0.229316 -0.378564 -0.640801 -0.204931 0.381932 0.273433 0.093888 -0.392893 -0.835199 -0.001902 -0.084211 1.031677 -0.011462 0.931953 -0.187884 0.351160 -0.749715 0.118460 0.090220 -0.212027 0.273328 0.111530 -0.333886 -0.380446 -0.146626 -0.564492 -0.708949 -0.065590 -0.304460 -0.342502 -0.436801 0.219274 -0.425722 -0.006943 0.158405 0.110057 0.360131 -0.046826 -0.012878 -0.450026 0.300411 0.476060 -0.069595 -0.392961 0.275739 0.147414 1.191407 -0.149691 0.456391 -0.224190 0.398742 -0.249847 -0.464002 -0.213910 0.634333 0.663015 0.135928 -0.002334 0.075654 0.078690 0.434453 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__make_heap<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter >&) = -1.298394 2.521819 10.422146 4.706583 -4.620134 -6.367254 -2.773534 -10.231689 4.732506 3.010194 7.667139 -1.343042 4.108375 0.018177 -0.690763 -0.943615 4.295173 -1.141698 0.822328 -2.957861 -2.708081 8.899210 1.503031 -2.959654 0.978329 -8.475084 6.194778 2.744500 3.796342 5.629931 1.490423 0.811639 -0.847468 3.289837 -2.925021 -0.023412 -0.027225 2.982598 -3.351049 -0.592284 2.299311 -0.879857 5.760083 0.074814 4.425703 1.951258 3.393043 -0.516737 -4.424021 -2.346908 -3.047419 4.409753 -2.989016 3.011413 -0.400800 -1.032477 1.631748 -3.116508 -0.344975 -4.546574 0.357726 -0.819934 -3.666831 0.394787 -5.425332 1.496303 -3.045388 -3.751404 1.353813 -2.301855 2.995689 0.636293 0.758345 -1.861999 -8.574078 3.123648 2.129967 1.008658 3.042374 1.453095 -0.514276 -0.035221 -5.021154 -5.614181 4.383392 4.063020 1.475528 0.806772 -3.216289 -2.079505 -0.086157 0.198091 0.081229 5.683337 -4.143751 3.159608 -2.041411 -2.966552 -4.222360 -7.289306 0.311528 -5.352240 2.412628 3.206806 -3.589203 1.144396 -0.691344 1.520069 -0.751278 -6.424764 1.055026 -3.939108 0.531796 7.423071 -2.948528 -3.164150 -3.503402 -0.526972 0.955526 4.292008 -0.379372 2.091815 6.391165 3.788087 3.110589 -5.632944 -0.900476 2.951110 2.563849 2.096860 2.803014 -5.058583 -3.383076 0.214812 -2.494588 -9.838289 -2.556251 2.789522 5.152214 -2.107622 -4.184531 3.200415 -3.151094 5.548983 5.812348 2.411298 1.723389 1.056847 -4.325899 2.545594 9.067889 -3.179682 3.988677 -4.241411 -5.556828 7.033542 -1.381131 4.288304 -0.045185 0.844407 -0.529162 -4.950202 1.274342 7.317498 0.685824 2.018693 2.068092 0.776654 -0.981241 -7.704348 -10.030789 -0.617854 5.914172 2.866335 10.311326 -6.010019 -2.673222 0.079261 5.602001 0.230048 -3.341631 1.929811 -3.042537 2.853532 -12.494038 -9.775363 9.342366 7.896981 2.152607 -0.195268 4.473708 1.876404 -3.513782 -4.883065 -4.428597 4.821256 0.647825 -4.262438 -1.364647 1.193743 -6.702150 -1.112687 -0.264540 1.618739 4.631732 -3.437627 1.347923 -2.905276 -5.338054 -4.915081 4.567287 -4.675907 -3.330423 -0.458841 0.444828 0.309615 3.110517 -1.321834 -1.600450 0.918973 -3.742402 -1.102933 1.494670 3.205581 -0.202110 8.359975 8.562683 -1.571217 2.815127 0.259864 -2.992547 12.419795 -4.630420 -0.548569 0.095685 3.264528 -0.051122 3.147314 5.137198 -2.340208 -4.041763 -6.854691 1.380664 0.003149 2.506514 -6.786810 -5.001409 -8.799399 -0.672691 0.599990 8.607920 0.689346 12.296099 -1.990163 1.590354 -11.405645 0.440777 3.556479 -0.343133 5.981766 2.858981 -5.836997 -4.598428 -1.387665 -5.163455 -0.206819 -1.012392 -5.166372 -4.970117 -2.527762 2.845903 -3.358136 1.948497 5.362061 -1.025150 4.521715 0.837088 -1.332471 -3.736947 -0.083025 5.076723 0.992404 -3.632659 6.253817 -0.487341 13.403446 -1.748924 4.413056 -3.346727 2.307923 -1.006293 -5.082153 -2.774095 7.748067 5.443627 2.460961 -0.391226 -0.388188 -1.340865 5.162012 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__adjust_heap<__gnu_cxx::__normal_iterator > >, long, int, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, long, long, int, __gnu_cxx::__ops::_Iter_comp_iter >) = -2.127515 3.523041 17.078243 9.481228 -7.178251 -13.217215 -4.270769 -16.268590 8.296452 4.640734 12.977936 -1.545390 7.612030 -1.005986 -0.289298 -0.653416 7.436242 -1.159847 1.126039 -4.813942 -5.388590 16.624497 3.788906 -6.257038 1.476501 -13.989019 10.424402 6.340476 6.605652 10.255459 2.183096 1.438158 0.151477 5.659535 -6.236085 -0.153521 -1.693001 4.857744 -5.672617 -1.588650 3.904378 -1.067577 10.712464 0.405370 7.068208 3.119021 8.631619 -1.036519 -7.284615 -4.068324 -7.071587 8.876207 -5.237967 5.386941 -2.190744 -0.952510 4.319729 -5.324532 -0.648717 -9.145201 0.649173 0.422477 -7.933518 0.003747 -10.151384 2.273279 -5.128943 -7.074701 2.482749 -2.411628 5.596409 1.504381 0.739242 -4.873807 -15.670411 5.071798 3.023062 1.988934 5.312500 2.645789 -1.976818 -0.301313 -8.911580 -9.266255 8.747113 4.951921 2.726368 2.235415 -5.852558 -4.767685 -1.175391 0.584461 -0.388188 8.882154 -6.353224 6.544820 -1.163917 -4.581823 -7.199844 -11.397659 0.253449 -9.297962 3.116660 6.112555 -3.387841 2.064108 -2.303043 2.375187 -2.511266 -11.765745 1.941795 -6.828964 -1.146494 11.747153 -5.366404 -4.613181 -4.975603 0.112662 1.454594 8.361465 -0.639410 3.830718 11.268891 6.475363 4.287349 -9.418294 -0.372395 4.255661 5.546729 4.118524 4.946650 -8.326085 -6.298501 0.171913 -4.048479 -17.578830 -3.708419 7.391266 8.621824 -2.776881 -8.996421 7.038971 -4.649430 10.127643 10.543205 4.026560 3.289740 1.655618 -7.177316 5.090305 16.697313 -6.179655 7.268502 -7.412146 -10.536841 13.909103 -3.189528 6.978478 0.038164 0.827858 -0.444714 -8.049360 2.662668 12.873702 1.937550 3.240034 4.942020 1.212308 -1.247083 -13.498997 -17.248183 -0.990258 9.608538 5.570094 20.343016 -10.208263 -4.803058 -0.051773 7.724459 -1.357436 -5.562210 2.566558 -5.667856 4.728333 -24.830239 -17.366245 17.842262 12.239788 4.127506 0.368254 8.444458 4.325122 -3.847117 -8.081345 -7.534179 8.194500 2.187089 -6.841550 -1.259275 1.827405 -12.943265 -1.953171 -0.883336 2.210124 7.050562 -6.591082 1.068722 -7.740691 -10.858200 -7.957218 6.805648 -9.253994 -5.421222 -1.241579 0.287241 0.342661 4.954695 -1.430755 -2.389333 1.121375 -7.145660 -2.888110 1.626948 6.523735 1.432290 15.228676 16.838720 -2.349512 6.124463 1.107141 -5.497798 22.313185 -8.273629 -1.669018 -0.107407 7.352632 0.848764 5.545512 9.123403 -3.641199 -6.598222 -12.178582 4.079752 1.838724 3.967317 -12.053907 -7.369579 -16.028569 -2.253329 1.480865 16.509776 0.051074 21.164056 -4.309139 2.782529 -20.596392 0.982839 5.517807 -0.049728 10.047219 5.298601 -10.467492 -7.903063 -2.818417 -8.002954 0.323941 -1.725552 -9.446822 -8.293081 -4.625606 3.271332 -7.844162 3.899800 9.864514 -2.460514 7.735851 1.295708 -2.139227 -6.242406 0.369052 8.798374 2.506522 -6.309266 10.675438 -1.503322 23.683012 -3.221111 8.562685 -6.983900 4.657860 -2.184154 -8.348643 -4.689752 13.232288 9.860988 2.942446 1.310188 0.440294 -1.820246 9.695460 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter >::operator()<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >) = 0.073233 0.409027 1.481251 0.934612 -0.742047 -1.749106 -0.366703 -2.234912 1.045680 0.422665 1.425726 0.035073 1.131526 -0.565860 0.026686 0.397387 0.954238 0.246296 0.064040 -0.571254 -0.573947 2.032750 0.053095 -0.352836 0.196888 -0.871182 0.681270 0.751907 1.064838 0.973044 0.269131 -0.010400 -0.093123 0.466053 -0.630647 0.128575 -0.342765 0.619476 -1.111505 -0.312316 0.011991 -0.711182 1.239803 -0.002103 0.832765 -0.162849 1.118508 0.003417 -0.634708 -0.436803 -0.880362 1.197158 -0.572253 0.668569 -0.527483 -0.631285 0.439075 0.172709 0.055310 -0.622444 -0.014808 -0.279992 -0.912555 -0.163356 -0.950568 0.243850 -0.627790 -0.955066 -0.050291 -0.168166 0.677497 0.238406 -0.030636 -0.398736 -2.194698 0.167357 0.439396 0.253041 0.711891 0.591288 0.235965 -0.493116 -0.950722 -0.965881 1.503244 0.588303 0.429509 0.570526 -1.247164 -0.385862 -0.119467 0.208243 0.516920 0.553002 -0.822118 0.563308 -0.237593 -0.369705 -0.567205 -1.625605 0.188704 -0.776483 0.307294 -0.004328 0.167553 0.334627 -0.247936 0.290914 -0.512245 -1.303020 0.190925 -0.589485 -0.519872 1.445101 -0.471290 -0.529577 -0.406818 0.081557 -0.173311 0.661976 0.391209 0.457492 0.962246 0.710989 0.638130 -1.118854 -0.284491 0.572330 0.633484 0.662536 0.337874 -0.479404 -0.761170 0.320563 -0.771544 -2.115675 -0.606010 1.109195 1.063299 -0.339562 -0.529701 0.526477 -0.517331 0.877120 1.122147 0.224952 0.437620 0.243510 -0.857858 0.590998 1.487474 -0.626106 0.905925 -0.486270 -0.659338 1.219850 -0.389161 0.443811 -0.120631 -0.289816 -0.120368 -0.534933 0.164425 1.297242 0.208806 0.245185 -0.045899 0.348926 -0.858556 -1.507795 -1.898132 -0.161003 1.459951 0.664966 1.718976 -0.938531 -0.697371 0.302660 0.664657 -0.342145 -0.720840 0.572156 -0.991077 0.802832 -2.491679 -1.751193 2.129838 1.287183 0.793921 -0.026023 0.745236 0.726586 -0.880254 -0.901075 -0.637147 0.646830 0.407496 -1.777783 -0.643853 0.188079 -1.492944 -0.199833 0.033335 0.257922 0.092767 -0.044345 0.981212 -0.875443 -0.750968 -0.599823 0.922937 -0.822561 -0.209709 -0.173049 -0.057434 0.077378 0.612078 -0.380915 -0.040647 0.157156 -0.853458 -0.038458 -0.136308 0.613775 0.253674 1.848584 2.033792 -0.426564 1.018162 -0.053922 -0.938985 1.896533 -0.829691 0.160219 -0.059879 0.797549 0.027841 0.607033 1.160761 -0.517663 -0.772891 -1.378201 -0.391123 0.680689 0.623791 -0.524051 -0.824175 -1.663519 -0.086241 -0.035328 1.734891 -0.233614 2.013401 -0.987235 0.531535 -2.186806 0.237258 0.328267 -0.184859 1.173092 0.420379 -0.922469 -0.692663 -0.392068 -0.997857 -0.628814 -0.163222 -0.927480 -0.718026 -0.733594 0.391222 -1.159817 0.140820 0.614957 -0.363210 1.192225 -0.383605 -0.065995 -0.746261 0.466262 1.133459 0.162556 -0.820296 0.904640 0.135268 2.921703 -0.010577 0.845988 -0.736577 0.490620 -0.341276 -1.214917 -0.587070 1.508988 1.459526 0.300796 0.080515 0.227598 0.047892 0.930404 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter >&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter >&>(__gnu_cxx::__ops::_Iter_comp_iter >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.239916 0.079928 0.886293 0.474405 -0.360830 -1.174705 -0.246511 -1.349734 0.656060 0.337317 1.091933 0.033518 0.837040 -0.474604 0.153529 0.191156 0.635290 -0.054062 0.060286 -0.362155 -0.195211 1.202821 0.129250 -0.183332 0.163709 -0.542605 0.390446 0.459196 0.397053 0.711379 0.218384 0.036131 -0.126518 0.248601 -0.338847 0.331852 -0.023213 0.392412 -0.481922 -0.250278 0.028340 -0.362226 0.731904 0.033587 0.712573 0.002074 0.607359 0.021681 -0.456137 -0.472551 -0.440196 0.658078 -0.463998 0.375175 -0.324130 -0.330634 0.381307 0.024941 -0.016350 -0.757570 0.061012 -0.199253 -0.613623 -0.080777 -0.490096 0.202109 -0.248232 -0.473639 -0.065454 -0.283218 0.458600 0.089086 -0.051670 -0.056665 -1.192922 0.023575 0.237101 0.071200 0.464796 0.279703 -0.083816 -0.375773 -0.559700 -0.609642 1.013415 0.301151 0.321886 0.469121 -0.859824 -0.041211 -0.135487 0.082300 0.354948 0.317979 -0.469214 0.163132 0.319532 -0.283334 -0.305457 -0.795419 0.248171 -0.461566 0.115967 0.215848 0.146097 0.062742 -0.492491 0.227478 -0.593499 -0.752139 0.313903 -0.465523 -0.366218 0.730028 -0.484212 -0.210401 -0.358065 0.018626 0.151653 0.538458 0.248642 0.297493 0.522008 0.470125 0.368788 -0.703292 -0.230350 0.384585 0.670867 0.346250 0.090219 -0.380794 -0.452546 0.304473 -0.731871 -1.245900 -0.557321 0.705072 0.761874 -0.054001 -0.587689 0.545772 -0.314908 0.532388 0.787269 0.203637 0.186040 0.236230 -0.676174 0.328497 0.865068 -0.426487 0.657441 -0.110247 -0.376087 0.690116 -0.300680 0.204565 0.123508 -0.226619 -0.119937 -0.275053 0.076686 0.760110 0.360090 0.365597 -0.242008 0.354532 -0.493349 -0.907227 -1.337305 -0.189379 1.005202 0.440674 1.101616 -0.637394 -0.435829 0.098631 0.574565 -0.330460 -0.601425 0.240236 -0.567350 0.479989 -1.609096 -1.014785 1.508096 0.877851 0.723094 0.082917 0.490737 0.503369 -0.515003 -0.325635 -0.352753 0.432313 0.198386 -1.054356 -0.270624 0.071452 -0.980122 -0.327127 -0.129267 0.184181 -0.173514 -0.011415 0.638839 -0.424314 -0.330764 -0.152984 0.348525 -0.457889 -0.233292 -0.179417 -0.061954 0.139399 0.287829 -0.288420 0.099754 0.184260 -0.691435 -0.091658 0.020647 0.426125 0.371355 1.269094 1.258609 -0.347286 0.547662 -0.187725 -0.594864 1.008365 -0.446329 0.100883 -0.094239 0.583482 0.346455 0.261975 0.754745 -0.324706 -0.430363 -0.877064 -0.249345 0.607564 0.498961 -0.308641 -0.629803 -1.175656 0.018753 -0.013910 1.241982 -0.243400 1.300051 -0.553292 0.337889 -1.376704 0.164389 0.238730 -0.172278 0.439789 0.197486 -0.503706 -0.666602 -0.234314 -0.740871 -0.526368 -0.085258 -0.440476 -0.392083 -0.586890 0.407860 -0.810217 0.049482 0.322599 -0.103936 0.731637 -0.001846 -0.032478 -0.501007 0.342378 0.548231 0.095033 -0.548274 0.604880 0.168789 1.799906 -0.083770 0.560007 -0.421705 0.568822 -0.357359 -0.710547 -0.325754 0.901510 1.092441 0.100071 0.135850 0.200205 0.032339 0.622230 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__push_heap<__gnu_cxx::__normal_iterator > >, long, int, __gnu_cxx::__ops::_Iter_comp_val > >(__gnu_cxx::__normal_iterator > >, long, long, int, __gnu_cxx::__ops::_Iter_comp_val >&) = -0.972034 1.697056 7.750381 5.116300 -4.017012 -7.444751 -2.156184 -8.429545 4.204688 2.018927 6.214960 -0.421610 3.620403 -1.414968 -0.167796 0.037111 3.594982 0.151762 0.296201 -2.423123 -3.347979 8.294688 1.561021 -3.177308 0.932534 -5.994167 5.147279 3.509404 3.126783 4.956480 1.183097 0.523134 -0.169264 2.949972 -3.137798 0.279820 -1.165856 2.526374 -2.887626 -0.902205 1.972859 -1.413306 5.737001 0.286577 3.724067 1.403437 4.502583 -0.281382 -3.805796 -1.960845 -3.644879 4.621678 -2.583152 2.926802 -1.301014 -0.586793 2.550920 -2.033781 -0.118271 -4.491401 0.109625 -0.881514 -4.370083 -0.359036 -4.815083 0.857673 -2.287191 -3.888938 0.744544 -1.065651 2.769969 0.412018 -0.311082 -2.475200 -8.056731 1.867278 1.831547 1.103047 2.950324 2.034244 -0.498304 -0.898535 -4.639734 -4.523048 4.735466 2.092861 1.635303 1.755503 -3.572096 -2.430617 -0.651290 0.371486 0.785862 4.092362 -3.042359 2.875674 -0.177360 -2.342184 -3.969346 -6.106531 0.635412 -4.015415 1.594026 2.403260 -1.445983 0.871923 -0.906216 1.126335 -1.552778 -5.776477 0.903599 -3.773080 -0.547989 5.745436 -2.067447 -2.371922 -2.080365 -0.251295 0.396983 4.159331 0.400543 1.744460 5.275613 3.312519 2.327231 -4.559699 -0.660543 1.968493 2.718681 2.206585 1.985146 -3.961365 -3.132943 0.631764 -2.470483 -8.843387 -2.158049 3.994758 4.393018 -1.403464 -3.928256 3.519630 -2.282924 4.705831 4.718895 1.838407 1.538841 0.751985 -3.955714 2.591004 8.125728 -2.549568 3.358191 -3.116350 -5.093350 6.919083 -1.487914 3.024163 0.134086 -0.447593 -0.505204 -3.306297 1.429934 6.203482 0.967656 1.130280 2.201569 0.920875 -1.845351 -6.634807 -8.823671 -0.038431 5.628123 3.216509 10.166078 -5.168979 -2.418095 0.037057 3.951451 -0.965723 -2.712842 1.578713 -3.026711 2.799896 -12.191822 -8.431439 9.194976 5.888272 2.510229 0.050086 4.137509 2.092258 -2.077642 -4.278310 -3.829797 3.543603 1.703241 -3.779159 -0.879998 0.836509 -6.454650 -0.973688 -0.269667 1.105072 2.999943 -2.629973 1.316020 -4.454427 -4.622089 -3.821806 2.954193 -4.044434 -2.092159 -0.244750 -0.015082 -0.033751 2.665493 -0.680511 -1.037506 -0.010298 -3.486571 -0.929759 0.467584 3.049387 0.941713 8.177621 8.689081 -1.618945 3.784682 0.433883 -2.752617 11.141949 -4.122245 -0.133553 0.206496 3.919240 0.824062 2.593902 4.929483 -1.956518 -2.656248 -6.014629 1.306369 1.460297 2.170033 -6.183306 -3.650932 -8.683235 -0.954721 0.524350 8.057734 -0.379849 10.094704 -2.395683 1.402639 -10.348514 0.629126 2.668032 -0.337888 4.849734 2.269883 -5.130942 -4.131899 -1.449147 -4.072125 -0.501458 -1.023765 -3.952233 -4.139773 -2.167328 1.242451 -4.166079 1.981178 4.992167 -1.741552 3.639475 -0.574866 -0.698067 -3.076410 0.141071 4.585787 0.773142 -3.187171 5.118660 -0.222613 12.311980 -1.142614 4.273078 -3.235828 2.708941 -1.296502 -4.437392 -2.342164 6.228839 5.065130 1.283770 0.740597 1.002333 -0.739305 4.681000 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.322927 -0.037466 1.189279 1.182517 -0.513187 -0.994190 -0.309269 -0.739465 0.742901 0.264084 0.845238 0.180881 0.665854 -0.420732 -0.169262 -0.459535 0.464428 0.027877 -0.138822 -0.368456 -0.191317 1.496255 0.752349 -1.302306 0.122235 -0.998607 0.963159 0.429607 0.485097 1.405589 -0.127323 0.167515 0.044843 0.514517 -0.751258 -0.155278 -0.442146 0.479275 -0.365420 -0.273341 0.657952 0.121939 0.910291 0.064375 0.553179 0.396242 0.440601 -0.170499 -0.689460 -0.445596 -0.317385 0.062739 -0.603042 0.619755 -0.713381 0.277156 0.402375 -0.235631 -0.122710 -1.556168 0.384815 0.257169 -0.580146 -0.159096 -0.932127 0.153229 -0.158018 -0.855115 0.090882 -0.558485 0.499027 0.345281 0.044653 -0.921267 -1.099200 0.236946 0.205920 0.258153 0.410544 0.344985 -0.541051 -0.267600 -0.655809 -0.527725 0.427004 -0.001717 0.207669 0.581920 -0.034506 -0.645801 0.213685 0.323781 0.026487 0.544996 -0.191803 0.481191 0.028741 -0.095045 0.041094 -0.391984 0.023339 -0.613348 0.220932 0.682268 -0.351307 0.421626 0.164111 0.380548 -0.236035 -0.819166 0.184699 -0.418404 -0.277186 0.752686 -0.245233 -0.439631 -0.201481 0.061277 0.242491 0.840598 -0.278048 0.302835 0.792251 0.479251 0.289865 -0.908534 0.169082 0.368275 0.457967 0.385620 0.438891 -0.335814 -0.550392 -0.039215 -0.341919 -1.386392 -0.239325 0.488860 0.732465 -0.297996 -1.091082 1.043462 -0.538991 0.774624 0.939345 0.333994 0.448615 0.098306 -0.779012 0.480023 1.501897 -0.394380 0.463665 -0.571470 -1.184749 1.496360 -0.143069 0.577678 -0.323652 -0.210305 0.238009 -0.620467 0.567922 1.055098 -0.042047 0.358708 0.351864 0.069318 0.011339 -1.215642 -1.206007 -0.366515 0.793297 0.912145 1.986577 -0.770831 -0.095679 -0.194662 0.375696 -0.099745 -0.197618 -0.012370 -0.352719 0.404398 -2.730516 -1.472341 1.597149 1.020878 0.545646 0.304762 0.664732 0.212638 0.723397 -0.373847 -0.416038 0.410829 0.530307 0.049022 0.002816 0.082992 -0.970394 -0.462542 0.247547 0.095512 0.370562 -0.976915 -0.304888 -0.722892 -0.793518 -0.833103 0.314708 -1.120549 -0.167254 0.017567 -0.005247 -0.050118 0.146543 0.051107 -0.160175 -0.135738 -0.228897 -0.091484 -0.118230 0.571157 0.191153 0.531922 1.537568 -0.532063 0.052230 0.258862 -0.520917 2.309058 -0.847808 -0.071246 0.138181 0.974321 0.381311 0.372512 0.576449 -0.303491 0.300787 -0.935087 0.436149 0.662237 0.259107 -1.695778 -0.469064 -1.039188 -0.076411 -0.107278 1.228881 -0.111044 1.787549 -0.536333 0.227913 -1.809579 0.053297 0.641628 0.144004 0.745464 0.567689 -0.710997 -1.318828 -0.306954 -0.519032 0.795957 -0.400582 -0.787274 -0.537893 0.105862 -0.093692 -0.649605 0.498851 1.042506 -0.515339 0.691959 -0.311783 -0.015569 -0.445801 -0.292312 -0.012527 0.469394 -0.454665 0.664845 -0.093696 1.397685 -0.104668 0.856819 -0.659648 0.836638 -0.485012 -0.896167 -0.451696 1.141909 0.646459 0.133268 0.561715 0.014112 -0.003328 0.686426 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::__ops::_Iter_comp_val >::operator()<__gnu_cxx::__normal_iterator > >, int>(__gnu_cxx::__normal_iterator > >, int&) = -0.095669 0.274295 1.350904 0.987199 -0.688608 -1.596547 -0.358892 -1.832801 0.970676 0.387929 1.288618 0.103643 1.044579 -0.566124 0.000117 0.165274 0.851260 0.155568 0.009467 -0.530459 -0.497806 1.892736 0.237090 -0.572537 0.187153 -0.871481 0.783055 0.662306 0.843831 1.091666 0.211362 0.061626 -0.086418 0.476046 -0.622744 0.117872 -0.363907 0.585803 -0.858155 -0.315526 0.213001 -0.507511 1.168275 0.073196 0.778833 0.010571 0.921090 -0.020172 -0.647186 -0.484057 -0.734486 0.871127 -0.601043 0.640413 -0.572681 -0.382419 0.511564 0.055895 0.030922 -0.883618 0.079358 -0.188083 -0.855064 -0.153635 -0.926335 0.220486 -0.514095 -0.884529 -0.054586 -0.294674 0.637402 0.227489 -0.043558 -0.502693 -1.882298 0.141389 0.347771 0.229788 0.678805 0.554525 -0.044708 -0.458308 -0.895904 -0.875134 1.256080 0.385901 0.372613 0.611832 -0.963901 -0.443813 -0.074750 0.218625 0.425821 0.539745 -0.653466 0.494946 -0.041531 -0.315307 -0.412801 -1.265320 0.197403 -0.706747 0.255028 0.197984 0.040483 0.267565 -0.239281 0.261334 -0.503581 -1.146900 0.238436 -0.596383 -0.473235 1.225122 -0.434150 -0.483008 -0.378637 0.049574 0.001302 0.751361 0.268559 0.389333 0.898623 0.651965 0.528063 -1.036484 -0.179261 0.519332 0.626612 0.550162 0.328839 -0.453816 -0.706982 0.278196 -0.694935 -1.876582 -0.542260 0.978543 0.982742 -0.265799 -0.698831 0.705624 -0.511930 0.780120 1.072032 0.272071 0.425652 0.208946 -0.852737 0.552937 1.462144 -0.552786 0.793147 -0.451803 -0.791099 1.318660 -0.363366 0.437412 -0.125705 -0.298649 -0.086863 -0.498345 0.274891 1.205361 0.151269 0.279450 0.047823 0.309922 -0.634523 -1.389306 -1.753043 -0.183127 1.340623 0.763391 1.776059 -0.912503 -0.477057 0.180023 0.611307 -0.291287 -0.620829 0.410492 -0.792392 0.696878 -2.545197 -1.625077 2.031044 1.163242 0.746349 0.057152 0.689182 0.617099 -0.455304 -0.743880 -0.603654 0.588777 0.428261 -1.254120 -0.413794 0.154522 -1.363821 -0.300055 0.059743 0.225924 0.152355 -0.319066 0.660425 -0.872126 -0.704354 -0.631430 0.714347 -0.848556 -0.215961 -0.128831 -0.068508 0.034804 0.476360 -0.213625 -0.047007 0.062121 -0.701406 -0.085214 -0.118974 0.600736 0.273016 1.552782 1.893747 -0.493487 0.717286 -0.001232 -0.809379 1.963129 -0.815580 0.117252 -0.022567 0.891717 0.223432 0.514537 1.029210 -0.459071 -0.496331 -1.258262 -0.174773 0.721247 0.541189 -0.857172 -0.717672 -1.574785 -0.071761 -0.068683 1.644658 -0.240641 1.941067 -0.864112 0.429346 -2.045177 0.210899 0.432768 -0.122045 0.989027 0.432583 -0.846153 -0.801156 -0.385748 -0.902151 -0.262983 -0.202306 -0.820588 -0.658594 -0.520679 0.269826 -1.065860 0.225286 0.715590 -0.407627 1.020495 -0.330533 -0.040746 -0.684729 0.280090 0.808194 0.216014 -0.721220 0.873488 0.082372 2.463395 -0.040695 0.854374 -0.680258 0.643297 -0.420358 -1.148387 -0.547616 1.384915 1.260078 0.210651 0.250839 0.224638 0.070546 0.874105 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = -0.041132 0.244508 1.050692 0.450229 -0.409953 -1.095054 -0.221578 -1.636455 0.769819 0.436042 1.098065 0.024147 0.918061 -0.457978 0.014098 0.151295 0.682585 0.105059 0.112708 -0.353674 -0.254823 1.338386 -0.123986 -0.036625 0.168282 -0.656144 0.563998 0.427086 0.673777 0.730043 0.240604 0.016769 -0.186650 0.257063 -0.294463 0.175540 -0.080073 0.462185 -0.639158 -0.271289 0.002529 -0.526819 0.789211 0.068167 0.647588 -0.146727 0.488852 -0.041084 -0.339810 -0.398092 -0.413390 0.577617 -0.368436 0.444351 -0.291819 -0.528299 0.272554 0.206642 0.137548 -0.437354 0.109333 -0.307725 -0.552172 -0.079336 -0.575759 0.139928 -0.464586 -0.540823 -0.105160 -0.371256 0.389130 0.072635 -0.001225 -0.166037 -1.537934 0.074714 0.323357 -0.004824 0.527428 0.473431 0.066891 -0.418701 -0.676543 -0.727552 1.079641 0.599924 0.236187 0.443965 -1.015788 -0.199101 -0.069461 0.146684 0.437044 0.444496 -0.592383 0.266607 -0.128291 -0.285681 -0.212599 -1.183397 0.226271 -0.561201 0.179949 0.037520 0.030245 0.150489 -0.182547 0.246987 -0.342104 -0.786011 0.285306 -0.476475 -0.287453 0.979379 -0.314962 -0.432027 -0.485341 -0.003925 0.079106 0.425502 0.256760 0.253478 0.620677 0.400794 0.553294 -0.803322 -0.251107 0.617482 0.402262 0.347870 0.031116 -0.408137 -0.406267 0.316036 -0.698004 -1.427104 -0.559997 0.602040 0.742443 -0.334384 -0.296790 0.375468 -0.387875 0.456401 0.865652 0.150151 0.264152 0.312615 -0.614370 0.281278 0.877493 -0.404360 0.536635 -0.259485 -0.424995 0.658976 -0.198818 0.274658 -0.115984 -0.123767 -0.090737 -0.357605 0.168383 0.905021 0.083198 0.316214 -0.261612 0.301499 -0.636680 -0.918385 -1.401053 -0.180355 1.131014 0.549782 1.078417 -0.660393 -0.417768 0.227486 0.604034 -0.143740 -0.557826 0.450438 -0.625674 0.550690 -1.647741 -1.140870 1.396900 0.909179 0.647997 -0.111892 0.384240 0.443679 -0.660729 -0.555012 -0.485513 0.438873 0.182680 -1.293465 -0.416249 0.132612 -1.004258 -0.171904 -0.009497 0.125788 0.082465 -0.027624 0.809656 -0.516517 -0.300404 -0.401063 0.726029 -0.427976 -0.192164 -0.248011 -0.030811 0.080713 0.441836 -0.313229 0.011050 0.218624 -0.564201 -0.036172 -0.014438 0.293298 0.116494 1.305747 1.272424 -0.364685 0.424426 -0.171295 -0.606083 1.203470 -0.551022 0.065133 -0.036773 0.457944 0.151004 0.442792 0.806809 -0.383993 -0.542571 -0.980240 -0.428054 0.449655 0.474286 -0.262104 -0.634069 -1.190420 0.049145 -0.170733 1.272056 -0.078004 1.436274 -0.627495 0.409750 -1.316441 0.152452 0.268125 -0.210251 0.756597 0.195173 -0.604578 -0.396686 -0.243695 -0.789804 -0.574297 -0.059286 -0.521869 -0.491410 -0.583205 0.361403 -0.721278 0.075517 0.281475 -0.163171 0.830738 -0.242452 -0.025498 -0.608984 0.434707 0.670069 0.047551 -0.574113 0.570418 0.167958 1.856900 -0.100126 0.546297 -0.427928 0.475552 -0.393814 -0.897366 -0.419589 0.982130 1.062184 0.315173 -0.056922 0.158931 0.006544 0.651826 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.275558 -0.038666 0.566851 0.301224 -0.096101 -0.647885 -0.146010 -0.649950 0.424516 0.216915 0.662258 0.047345 0.545685 -0.344990 0.094356 -0.038753 0.357475 -0.081991 0.016716 -0.182807 0.074809 0.710743 0.174794 -0.276113 0.108785 -0.434337 0.250567 0.245754 0.149082 0.582565 0.085039 0.067883 -0.073116 0.151688 -0.261441 0.197001 0.079964 0.215152 -0.201091 -0.213312 0.068138 0.004312 0.382108 0.058936 0.472682 0.098285 0.198982 -0.015262 -0.248892 -0.352654 -0.149508 0.262690 -0.277019 0.248937 -0.212380 -0.058998 0.252643 -0.050498 -0.018659 -0.755110 0.163234 0.019759 -0.313518 -0.061680 -0.281310 0.120535 -0.021981 -0.239703 -0.039892 -0.323188 0.273429 0.047638 0.016479 -0.109232 -0.603058 0.023064 0.087697 0.026152 0.280668 0.146384 -0.226683 -0.242430 -0.273856 -0.342425 0.525732 0.148954 0.158707 0.389187 -0.402907 -0.063063 -0.066006 0.027813 0.162496 0.193497 -0.195459 0.056942 0.352842 -0.126347 -0.001263 -0.254442 0.160206 -0.273310 0.003391 0.288759 0.115384 0.038900 -0.292368 0.212472 -0.383165 -0.348104 0.341204 -0.261170 -0.273302 0.358159 -0.314001 -0.105115 -0.219459 0.015234 0.189051 0.453386 0.018746 0.192972 0.215167 0.265157 0.191701 -0.415456 -0.065072 0.309006 0.482264 0.163394 0.031283 -0.295532 -0.230824 0.181258 -0.481995 -0.687557 -0.355698 0.359383 0.487547 0.001087 -0.555515 0.484260 -0.204237 0.324197 0.484864 0.131270 0.104950 0.154348 -0.470326 0.182083 0.565009 -0.265115 0.371956 -0.023694 -0.299801 0.390130 -0.160724 0.154968 0.027389 -0.141990 0.029906 -0.168938 0.131540 0.464177 0.257961 0.332134 -0.197582 0.216879 -0.220274 -0.562543 -0.827344 -0.224616 0.546294 0.277092 0.774799 -0.354340 -0.246557 -0.080780 0.424649 -0.252366 -0.315144 0.059618 -0.291936 0.251424 -1.074870 -0.595311 0.972555 0.607004 0.503293 0.085047 0.316881 0.271439 -0.070182 -0.081391 -0.146795 0.209850 0.134552 -0.429643 -0.064759 -0.000147 -0.565157 -0.325694 -0.065333 0.072178 -0.153877 -0.070946 0.258089 -0.200738 -0.187994 -0.089036 0.090506 -0.325233 -0.144127 -0.114234 -0.019169 0.070902 0.123710 -0.192515 0.055859 0.201020 -0.386202 -0.097208 0.026006 0.267662 0.288397 0.621233 0.709902 -0.207189 0.227376 -0.090837 -0.364488 0.734479 -0.276979 0.015280 -0.061385 0.380348 0.359745 0.127578 0.343624 -0.186174 -0.101238 -0.550936 -0.065644 0.419663 0.298582 -0.348414 -0.439690 -0.638725 0.029369 -0.049026 0.744921 -0.149362 0.852739 -0.306918 0.164946 -0.854054 0.092096 0.257339 -0.096725 0.134538 0.151981 -0.277030 -0.682463 -0.116178 -0.440944 -0.217197 -0.117077 -0.312600 -0.187160 -0.342952 0.307964 -0.488007 0.104977 0.305345 -0.013288 0.422482 0.015671 -0.009401 -0.332778 0.138200 0.074504 0.089317 -0.326717 0.315225 0.090218 0.913040 -0.142122 0.383493 -0.282588 0.508061 -0.331466 -0.423651 -0.186377 0.530298 0.636998 0.036790 0.177033 0.108363 -0.030925 0.384372 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::pop_heap<__gnu_cxx::__normal_iterator > >, std::greater >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::greater) = -1.184103 0.854291 5.541254 -0.123354 -2.052872 -3.209074 -1.739942 -7.880036 3.089234 2.836668 5.648407 -0.518841 3.362455 -0.612109 0.021379 0.250856 2.628093 -2.292450 1.410369 -1.786474 -0.629091 5.121988 -0.078933 1.777974 0.696616 -5.091678 2.643599 0.363362 2.380798 3.024439 1.274316 -0.156027 -1.626502 1.281551 0.264425 1.968525 1.448421 2.023616 -1.560835 0.181374 0.266223 -1.786554 2.850219 -0.019007 3.928597 0.016893 0.574311 -0.085652 -1.977256 -2.392045 -0.463479 1.658407 -2.420581 1.182029 0.400992 -1.909239 -0.317584 -0.478734 -0.324578 -1.298322 -0.159454 -2.156329 -1.523296 0.888094 -1.985202 1.240982 -2.541155 -1.007183 -0.238377 -2.438316 1.815254 0.541251 0.699220 1.715649 -5.420215 1.176918 1.407348 -0.323039 1.726852 0.540011 -0.582223 -0.581161 -2.753609 -3.719424 3.405777 4.450451 0.657580 0.034524 -3.767362 0.853725 -0.363754 0.186509 1.190552 3.180084 -3.511487 0.136809 -0.925860 -2.056207 -1.775893 -5.461544 0.736452 -3.013807 1.570180 1.047961 -1.836813 -0.530081 -1.731550 0.929291 -1.514122 -3.170017 1.264734 -2.017400 0.554018 4.477383 -2.264207 -1.272005 -3.572814 -0.697217 1.454914 1.534923 0.837273 1.008789 3.583555 2.291019 2.723532 -3.480730 -1.844485 2.725696 2.077609 0.706077 0.459582 -2.814887 -1.534990 1.234896 -2.892405 -5.560657 -3.044297 1.018347 3.079048 -1.700834 -0.645650 0.594943 -1.899804 2.639669 4.338274 0.788374 0.668761 1.375764 -2.886596 1.354406 3.985127 -1.530160 2.508541 -1.671006 -1.504971 2.835142 -1.749450 2.022224 0.629239 0.903449 -1.604218 -2.571786 0.122808 3.679366 0.604992 2.585368 -1.708747 1.372161 -1.064036 -3.421050 -6.369058 -0.929516 4.830107 1.764932 3.545196 -3.443632 -1.529587 0.869011 4.064722 1.421036 -3.263712 1.934750 -1.906480 1.862960 -5.587921 -4.671246 5.336551 5.971823 2.743175 -0.199990 1.837635 1.895027 -4.663053 -2.102987 -2.405190 3.030923 -0.913454 -5.570899 -1.837429 1.061066 -3.594885 -1.179823 -1.123635 1.085931 1.756806 -0.050347 3.076899 0.454502 -0.935902 -1.510933 3.563504 -1.196207 -2.675877 -1.166636 0.221051 0.814593 1.819542 -1.721061 0.406408 1.563711 -2.802442 0.226843 1.938239 0.965683 -0.102962 5.341900 4.346463 -1.519052 0.532909 -1.471055 -1.501866 3.484044 -1.943656 0.157255 -0.066508 0.621056 0.224272 1.643076 3.171177 -1.598290 -3.348050 -3.422834 -0.946194 0.229755 2.369205 -0.538497 -4.526316 -5.097603 0.817972 0.128809 5.177108 0.836216 6.641268 -1.117352 1.971635 -5.499573 0.369234 1.326658 -0.594101 3.067412 0.546196 -2.301445 -1.389835 -0.942271 -3.999788 -2.840114 0.071196 -1.891602 -2.413000 -2.968520 3.303888 -1.703966 -0.196535 0.563099 0.350778 3.751308 1.309377 -0.729936 -3.376397 1.729722 3.217376 -0.081671 -2.101254 3.267558 0.773667 7.607304 -1.366012 1.662051 -0.777595 1.811942 -1.081523 -3.371574 -1.236479 4.280454 4.408233 1.886652 -1.794175 -0.803269 -0.307909 2.287727 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = -1.706942 -0.248256 2.212509 0.211421 -1.004197 -1.397711 -0.648135 -2.625567 1.402428 1.242499 2.788414 0.379825 1.869814 -1.079546 0.424750 -0.411140 1.568697 -1.207220 0.611961 -0.649328 0.573574 2.270932 0.761364 0.375332 0.188306 -1.469349 0.716981 -0.099666 0.767455 1.815136 0.540231 -0.223825 -1.105491 0.307459 0.441996 1.171290 0.774038 0.857975 -0.569262 -0.561759 -0.022224 -1.367247 1.320713 -0.169544 2.028906 -0.850662 0.343433 -0.254406 -1.509193 -1.548188 -0.256915 0.604228 -1.564832 0.647959 0.735006 -0.956768 0.139701 0.471016 -0.225611 -2.292442 0.088479 -1.443009 -0.382251 0.206771 -0.549307 0.655374 -1.270646 -0.171794 -0.237360 -1.530785 0.773179 0.440911 1.079259 1.292847 -2.089296 0.454897 0.405145 -0.096801 0.798843 0.981646 -0.668341 -0.763047 -0.705477 -1.465095 1.287170 0.975521 0.107033 0.294729 -2.182957 1.212357 0.016431 0.188500 0.206674 0.727679 -1.782147 0.100536 0.559439 -0.766183 0.097625 -2.188142 0.142270 -1.356436 0.100321 1.092430 -0.648992 -0.628702 -2.365028 0.435330 -1.509609 -1.392823 1.473078 -0.751904 -1.057577 1.224590 -1.849346 0.067632 -1.353021 0.294777 1.343480 0.736437 0.161504 1.071339 0.320622 0.999226 1.324612 -1.547454 -0.264773 1.352094 1.883796 0.049439 -0.122888 -0.436902 -0.646821 0.955778 -1.661524 -2.263387 -1.681811 1.480809 1.743935 0.714073 -0.954534 -0.135579 -0.833770 1.511193 2.078717 0.688613 0.214013 0.861657 -1.569735 0.522190 1.146651 -0.940650 1.534013 0.600916 -0.461167 1.507807 -1.218901 0.948281 0.036288 0.544834 -0.270496 -1.124153 -0.588829 1.617566 1.109784 1.541864 -1.656887 0.674270 -0.281080 -2.110519 -3.094845 -0.742310 2.653155 1.243588 1.062748 -1.320443 -0.717073 0.536025 1.588141 0.230751 -2.173511 0.486383 -0.601973 0.855842 -3.610132 -2.047910 3.193302 2.870340 1.226465 0.392939 0.584267 1.248846 -2.041440 -0.565647 -1.105933 1.174499 -0.944915 -2.419542 -0.784146 0.579113 -1.811106 -0.920147 -0.272522 0.209589 0.342086 -0.249304 1.431210 1.045479 0.176902 0.212764 1.250892 -0.538566 -1.815697 -0.758524 0.064085 1.263421 0.581104 -0.544809 0.425179 0.874885 -1.803998 -0.581892 0.410625 0.822029 0.704703 2.631817 2.179949 -0.552976 -0.359450 -0.759050 -1.298477 1.697161 -1.291716 -0.115003 -0.374191 0.448424 0.961695 0.545664 1.546297 -0.748705 -1.364172 -1.511377 -0.763156 0.442331 1.585597 -1.092056 -2.923539 -2.113962 1.024910 0.329156 1.909656 -0.216608 3.111741 -0.927156 0.541215 -2.716526 0.084663 1.001624 -0.224021 1.270406 0.174481 -0.721175 -1.245984 -0.700998 -1.741119 -0.131466 0.097002 -0.470153 -0.304028 -1.533884 2.076627 -1.153976 -0.022415 -0.374940 -0.033711 2.552207 1.704159 -0.403146 -1.702522 1.134450 0.510944 0.372612 -0.860556 2.249545 0.578226 3.136171 -0.798626 0.156507 -0.449153 1.389496 -0.910075 -1.290472 -0.381912 1.862309 2.838992 0.835855 -0.674912 -0.016478 -0.476833 0.956775 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.166999 0.138328 0.547776 0.351226 -0.273383 -0.810855 -0.114519 -0.704794 0.297374 0.156229 0.650453 -0.002404 0.521943 -0.254134 0.110768 0.061095 0.409355 0.078422 0.012569 -0.220794 -0.225783 0.589740 0.105907 -0.188508 0.131249 -0.127589 0.283316 0.342474 0.157882 0.449386 0.116837 0.025554 -0.097149 0.175753 -0.247265 0.125126 -0.057753 0.293561 -0.260145 -0.140883 0.014546 -0.282766 0.472070 0.055965 0.337624 0.150688 0.354366 0.037810 -0.370472 -0.289939 -0.255537 0.336668 -0.300103 0.276118 -0.248291 -0.202807 0.335519 0.068681 0.053811 -0.597433 0.079352 -0.161621 -0.375521 -0.082034 -0.344027 0.055723 -0.145307 -0.424444 -0.043571 -0.160409 0.250740 0.032259 -0.065254 -0.035239 -0.658659 -0.006676 0.204359 0.083980 0.316931 0.188274 -0.041217 -0.246537 -0.367455 -0.382409 0.587958 0.009661 0.313226 0.356377 -0.543033 -0.057130 0.004491 0.095680 0.233582 0.183049 -0.161715 0.156543 0.200725 -0.162611 -0.239667 -0.553745 0.150427 -0.253210 0.069761 0.157822 0.057115 0.015990 -0.428881 0.175916 -0.350148 -0.486359 0.208240 -0.373742 -0.292226 0.352222 -0.297670 -0.141033 -0.138803 -0.008086 0.173004 0.343379 0.165444 0.122251 0.233534 0.245153 0.218039 -0.433401 -0.108289 0.107045 0.383417 0.234690 0.083931 -0.168092 -0.296039 0.200553 -0.552839 -0.785947 -0.280206 0.462760 0.456605 0.004895 -0.459444 0.422953 -0.277928 0.232059 0.453048 0.269141 0.147211 0.117978 -0.379582 0.122409 0.425821 -0.314501 0.442557 0.074483 -0.289524 0.411041 -0.086914 0.109810 0.074072 -0.238010 -0.012220 -0.133520 0.012604 0.502412 0.307551 0.192620 -0.056332 0.174007 -0.372937 -0.561631 -0.773328 -0.061458 0.685725 0.285705 0.675388 -0.416757 -0.237151 0.083507 0.350638 -0.324384 -0.373220 0.055504 -0.244685 0.300298 -1.055350 -0.622334 0.897455 0.406639 0.404104 0.036529 0.228271 0.236259 -0.227252 -0.238241 -0.249860 0.201502 0.053319 -0.565005 -0.213403 0.045843 -0.629429 -0.075143 -0.033331 0.117528 -0.104231 -0.075329 0.317570 -0.323336 -0.194387 -0.090991 0.075167 -0.297734 -0.103880 -0.053299 -0.065075 0.127882 0.126514 -0.128702 -0.025611 0.050290 -0.482260 -0.115955 -0.069103 0.324210 0.268696 0.922229 0.727978 -0.237823 0.238395 -0.084760 -0.422894 0.716292 -0.323352 0.089010 -0.063247 0.551743 0.257045 0.161535 0.573957 -0.205379 -0.265435 -0.586016 -0.242050 0.465276 0.259677 -0.265556 -0.314858 -0.771821 0.053648 -0.043519 0.820159 -0.237986 0.779813 -0.276070 0.206527 -0.765406 0.105894 0.111314 -0.168738 0.250996 0.154076 -0.344847 -0.441508 -0.173427 -0.485292 -0.246874 -0.021921 -0.166483 -0.177805 -0.214006 0.054398 -0.466898 0.042700 0.164775 -0.127721 0.401814 0.050538 -0.002045 -0.222903 0.164613 0.441894 0.043333 -0.348265 0.406864 0.168448 1.122137 0.060788 0.358754 -0.267467 0.264693 -0.134568 -0.364113 -0.267806 0.564982 0.679285 0.092542 0.168849 0.238512 0.048951 0.411946 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__pop_heap<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter >&) = -0.875422 1.631395 7.781213 3.482057 -3.295479 -5.950610 -2.006488 -9.200133 4.659311 2.671848 6.500045 -0.109184 4.476910 -1.342324 -0.331389 0.047875 3.987244 -0.673839 0.911011 -2.371349 -1.772422 8.762351 0.954721 -1.385520 0.787235 -6.427286 4.389937 2.164676 4.226901 5.026711 1.296115 0.359736 -0.788934 2.286476 -1.923603 0.538561 -0.611416 2.595824 -3.498864 -0.864621 1.151487 -1.911493 5.124593 0.381091 3.942305 0.005596 3.241040 -0.461795 -2.891335 -2.314510 -2.998190 3.753899 -2.683503 2.600637 -0.967642 -1.762107 1.378358 -0.724564 -0.009367 -3.231322 0.122645 -1.135655 -3.235384 0.093286 -4.330242 1.272690 -3.382063 -2.929254 0.120626 -1.985322 2.730589 0.984096 0.774517 -1.407817 -8.832196 1.868382 1.468816 0.632614 2.857157 2.241689 -0.672351 -0.933390 -4.257502 -4.778533 4.898981 3.658108 0.884818 1.267681 -4.252139 -1.672012 -0.627325 0.564546 0.877452 3.837090 -4.095344 2.510194 -1.311533 -2.102418 -2.204831 -6.659956 0.407064 -4.247790 1.460420 1.577176 -1.288237 0.644274 -1.132903 1.033813 -1.402737 -5.241701 1.473683 -2.791282 -1.120468 6.351313 -2.408808 -2.290985 -3.096022 0.066873 0.619736 3.344400 0.427697 1.927194 4.734433 3.050617 2.943328 -4.696356 -0.729059 3.259320 2.490969 1.727874 1.605287 -3.166622 -2.872687 0.923923 -2.448738 -8.548997 -2.718211 3.634963 4.380673 -1.638239 -2.555574 2.038911 -2.430265 4.261609 5.477383 1.244843 1.781226 1.269369 -3.706712 2.452944 7.336746 -2.600563 3.371389 -3.015794 -3.877507 6.213045 -2.057543 3.151707 -0.668627 0.465931 -0.718905 -3.470769 1.052557 5.979087 0.329744 1.815318 0.443877 1.031276 -1.500621 -6.266394 -8.699871 -0.955321 5.865216 3.206626 7.944286 -4.537882 -2.039965 0.736341 3.781929 0.325513 -3.227820 2.246183 -3.160628 2.707021 -11.378512 -7.860272 8.703641 6.698997 2.572270 -0.141004 3.198461 2.697165 -3.330400 -4.086186 -3.552477 3.723908 0.568573 -5.567526 -1.703962 1.133858 -5.978969 -1.260008 -0.199639 0.950429 2.930653 -1.949073 2.697249 -2.756012 -3.583811 -3.527433 4.478317 -3.599897 -2.660110 -0.957257 0.071686 0.339678 2.676557 -1.060227 -0.414956 1.124380 -3.260156 -0.776559 0.646993 2.338079 0.194547 7.021515 8.059448 -1.547398 2.232187 -0.139030 -3.062514 9.367808 -3.909471 -0.270874 -0.132537 2.548795 0.346712 2.839712 4.325758 -2.057430 -3.509586 -5.702186 0.289751 1.103471 2.526089 -4.273178 -4.602304 -7.282366 -0.136868 0.184206 7.458710 0.231649 9.993832 -3.023926 1.809623 -9.418289 0.680924 2.622653 -0.266665 5.304905 1.942386 -4.342375 -2.678413 -1.583437 -4.419165 -0.771232 -0.652576 -4.268580 -3.639377 -2.871089 2.543698 -3.898812 1.253569 3.305674 -1.234908 4.953866 -0.028332 -0.844385 -3.982956 1.308613 4.030057 0.898555 -3.052775 4.793326 -0.170218 10.985805 -1.516974 3.429610 -2.747740 2.581173 -1.715735 -5.139658 -2.239808 6.554973 5.440501 1.839631 -0.316263 -0.105831 -0.452686 4.042527 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.198850 0.207546 0.878867 0.609547 -0.582659 -0.940375 -0.179760 -0.997770 0.596091 0.289224 0.709302 0.213350 0.737741 -0.425301 -0.110876 -0.270861 0.587152 0.161986 0.007194 -0.361868 -0.275591 0.985211 0.092139 -0.442823 0.170350 -0.515864 0.867046 0.301316 0.449451 0.950179 0.188851 0.069094 -0.360407 0.323794 -0.182880 -0.034935 -0.166838 0.408983 -0.441885 -0.182470 0.271275 -0.366759 0.779397 0.209768 0.451393 0.144049 0.103228 0.038730 -0.422176 -0.396624 -0.195052 -0.027595 -0.397082 0.493710 -0.296707 -0.207076 0.343045 0.170627 0.211968 -0.694791 0.229172 -0.350546 -0.365038 -0.050036 -0.668255 0.020585 -0.506752 -0.617243 -0.160460 -0.556393 0.268751 0.059595 0.041585 -0.339984 -1.157198 -0.001959 0.208069 0.115856 0.576218 0.539043 -0.246678 -0.414158 -0.643490 -0.597549 0.481211 0.216811 0.142970 0.500195 -0.595612 -0.422389 0.139535 0.195908 0.360006 0.365246 -0.333618 0.248412 -0.226145 -0.142491 0.022536 -0.956181 0.219022 -0.353055 0.165920 0.144316 -0.282621 0.012871 -0.115965 0.160282 -0.177772 -0.518962 0.358519 -0.488413 -0.217864 0.774639 -0.132480 -0.467047 -0.417095 -0.096012 0.294431 0.523186 0.088065 0.084698 0.379399 0.340328 0.434685 -0.700679 -0.096921 0.484953 0.197045 0.218260 0.146931 -0.231456 -0.346082 0.268375 -0.555136 -1.081647 -0.301611 0.354027 0.597539 -0.214077 -0.360722 0.402353 -0.557102 0.216202 0.665755 0.335766 0.333369 0.158813 -0.560182 0.223294 0.748040 -0.248590 0.335519 -0.150533 -0.600513 0.802271 -0.051285 0.280809 -0.301463 -0.226909 -0.023998 -0.218614 0.271159 0.765399 -0.077929 0.228919 0.026448 0.181859 -0.454103 -0.795155 -1.030418 -0.085433 1.108737 0.740425 0.994473 -0.660949 0.023563 0.088574 0.485824 0.024103 -0.368059 0.262527 -0.256567 0.439920 -1.707797 -0.932192 1.147132 0.680303 0.398613 -0.095036 0.105152 0.226284 -0.094590 -0.523529 -0.496416 0.209774 0.053591 -0.535632 -0.216597 0.157565 -0.796729 -0.152214 0.265007 0.132877 0.472129 -0.505032 0.295775 -0.511387 -0.167958 -0.692121 0.510371 -0.426022 -0.140783 -0.012707 -0.052185 0.068416 0.248821 0.049807 -0.126263 0.034613 -0.222513 -0.076875 -0.095607 0.309633 0.004513 0.885139 0.907676 -0.417571 -0.160568 0.031700 -0.502991 1.567345 -0.608660 0.155655 0.083104 0.643863 0.332497 0.327783 0.673289 -0.347911 -0.134212 -0.807205 -0.316163 0.434270 0.364254 -0.898657 -0.508285 -1.051142 0.183344 -0.292271 0.981524 -0.121219 1.275172 -0.439590 0.225032 -0.944376 0.102445 0.490694 -0.128156 0.665847 0.271791 -0.537171 -0.377884 -0.272053 -0.695772 0.206834 -0.116103 -0.263205 -0.334078 0.029936 -0.001123 -0.404285 0.179786 0.422759 -0.433170 0.618965 -0.272665 0.043608 -0.459136 0.054427 0.276223 0.101914 -0.433390 0.634867 0.141686 1.111792 0.065425 0.447663 -0.256250 0.484346 -0.374518 -0.831344 -0.463045 0.840372 0.641722 0.312430 0.179742 0.191148 0.099394 0.506552 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.081322 0.133141 0.459487 0.521193 -0.350209 -0.741383 -0.105557 -0.552908 0.318005 0.098270 0.414630 0.086121 0.453128 -0.274144 -0.051743 -0.136248 0.324104 0.196038 -0.046633 -0.227650 -0.328568 0.601377 0.080610 -0.422104 0.123141 -0.199204 0.604367 0.299880 0.168490 0.602298 0.097875 0.091855 -0.129597 0.224408 -0.244715 -0.033586 -0.213006 0.286556 -0.216803 -0.117304 0.230217 -0.189544 0.499000 0.160548 0.214074 0.277189 0.169172 0.061320 -0.270103 -0.225194 -0.190849 -0.009528 -0.257796 0.310401 -0.387595 -0.074693 0.376975 0.046697 0.122552 -0.518788 0.161168 -0.147328 -0.360618 -0.071502 -0.482794 0.006325 -0.204217 -0.491794 -0.082257 -0.230599 0.208552 0.026226 -0.111856 -0.327451 -0.662689 -0.065018 0.134266 0.100234 0.376531 0.258571 -0.154452 -0.259949 -0.464542 -0.339820 0.394166 -0.042422 0.208824 0.404840 -0.274876 -0.358323 0.074684 0.136075 0.281396 0.207606 -0.023066 0.172819 -0.015504 -0.054586 -0.069481 -0.491540 0.193514 -0.175754 0.109598 0.139947 -0.113709 0.054159 -0.013023 0.120954 -0.150520 -0.391289 0.146271 -0.383060 -0.121204 0.419545 -0.033630 -0.303941 -0.155921 -0.097788 0.165519 0.402988 0.114006 0.014242 0.296123 0.219340 0.168326 -0.422954 -0.087793 0.183845 0.133440 0.200518 0.121982 -0.180025 -0.271942 0.140004 -0.379906 -0.681542 -0.144080 0.250769 0.363762 -0.169746 -0.383546 0.520625 -0.337846 0.059503 0.382793 0.254300 0.212688 0.059610 -0.352079 0.155210 0.508399 -0.163307 0.217207 -0.107975 -0.453385 0.548007 0.042285 0.076352 -0.102918 -0.276168 -0.007847 -0.075143 0.237812 0.457859 -0.016368 0.090570 0.177667 0.139317 -0.353056 -0.483163 -0.580890 0.011108 0.690649 0.446097 0.790025 -0.447768 0.034973 0.036917 0.267386 -0.130899 -0.150693 0.072500 -0.160277 0.282670 -1.122726 -0.592521 0.734291 0.212561 0.298974 -0.027975 0.092503 0.132172 0.134714 -0.278046 -0.297116 0.110971 0.172245 -0.199464 -0.084605 0.031960 -0.538341 -0.096101 0.161849 0.120786 0.183176 -0.368988 0.069049 -0.549680 -0.183737 -0.440105 0.163706 -0.340829 0.044462 0.044668 -0.079652 -0.030537 0.095698 0.071269 -0.071208 -0.086137 -0.128193 -0.038264 -0.093398 0.229256 0.067112 0.618418 0.636017 -0.336062 -0.035557 0.055361 -0.303515 1.037206 -0.331774 0.134309 0.060268 0.603413 0.282245 0.155646 0.484153 -0.201886 -0.018589 -0.548917 -0.158153 0.449919 0.167240 -0.596886 -0.099050 -0.751399 0.017463 -0.200891 0.747412 -0.151307 0.747182 -0.263692 0.138503 -0.583233 0.092108 0.261187 -0.114001 0.313821 0.191990 -0.340518 -0.315917 -0.174813 -0.410848 0.087659 -0.128859 -0.154473 -0.240509 0.104466 -0.215971 -0.310256 0.127018 0.370885 -0.289074 0.222177 -0.278169 0.064124 -0.187313 -0.035414 0.199995 0.056960 -0.312686 0.345535 0.087748 0.752996 0.131979 0.389534 -0.216905 0.326711 -0.236024 -0.483062 -0.302838 0.515440 0.358191 0.081117 0.304277 0.229910 0.141717 0.359713 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = -4.872840 -0.682304 7.566692 1.872470 -3.357793 -4.399483 -2.290096 -8.923652 5.055175 3.963246 8.908119 0.964956 5.602547 -3.303423 0.909686 -1.287057 4.915874 -3.612054 1.279611 -2.264887 1.458908 8.099144 2.332033 -0.102714 0.713702 -5.583884 2.629849 0.371281 2.691553 5.326100 1.682983 -0.235174 -2.758557 1.414813 0.277781 3.309384 1.807885 2.688830 -2.124615 -2.226753 0.934138 -3.284626 4.556877 -0.563764 6.518409 -2.569026 2.005701 -1.161606 -4.878352 -4.519944 -1.244166 2.835699 -4.523160 2.225000 1.837011 -2.321692 0.662940 0.178713 -0.820517 -6.838677 0.463980 -3.279521 -1.813657 0.378920 -2.038557 2.068105 -2.998586 -0.716046 -0.155477 -4.815417 2.622963 1.057516 2.565109 2.406477 -6.803300 1.720742 1.467276 -0.371866 2.564185 3.262334 -1.871217 -2.284099 -2.534299 -4.622717 4.481738 3.421825 0.323707 1.165166 -6.201304 2.771397 0.020504 0.412754 0.429013 2.961718 -6.106031 0.449158 1.755512 -2.783437 -0.474146 -5.788595 0.575098 -4.614104 0.689518 3.759718 -2.539436 -0.950973 -5.776508 1.242372 -4.220164 -4.596014 3.612984 -2.567582 -2.314446 4.616772 -5.444105 -0.642240 -4.271988 0.861004 3.363766 2.651714 0.201486 3.272800 2.733924 3.276869 4.165848 -5.206284 -0.701594 4.358862 5.602730 0.605115 -0.083106 -2.137490 -2.149161 2.478885 -4.544104 -7.700303 -5.230050 4.281477 5.803641 1.643918 -3.619341 0.375505 -2.241457 5.416001 6.492823 1.772494 0.778077 2.776060 -5.083348 1.832259 4.935600 -2.807801 4.507090 0.494922 -2.280474 5.290908 -3.634081 3.234085 0.328738 1.616812 -0.898359 -4.059056 -0.958062 5.533739 2.549266 4.287302 -4.523331 2.099565 -0.544009 -7.004858 -10.565432 -2.348653 7.299796 4.229845 5.279137 -4.527361 -2.611885 1.141253 5.019668 0.492503 -6.294797 1.893163 -2.613841 2.864786 -11.445982 -7.212509 10.356055 9.304937 3.804241 1.261103 3.194051 3.220487 -5.801117 -1.990599 -3.556569 4.209449 -1.235161 -6.597085 -1.507296 1.670707 -5.926199 -3.265608 -0.967533 0.669699 1.087161 -1.461191 4.289181 2.097649 -0.549612 -0.080636 4.157186 -2.267708 -5.176883 -2.449753 0.271321 3.136578 2.396996 -1.866432 0.689610 2.003651 -5.273211 -1.697827 1.281207 2.742689 1.955632 7.690522 7.869801 -2.021214 0.434625 -2.091433 -3.796968 6.440015 -4.176371 -0.644204 -1.008695 1.499439 2.744343 2.005215 4.670790 -2.398691 -3.672342 -5.084935 -1.213646 1.124608 4.695896 -4.733012 -8.257349 -7.072031 2.184306 0.939617 6.243595 -0.380452 10.597289 -3.215277 1.549143 -10.070537 0.225233 3.550386 -0.392700 4.161377 0.891626 -2.988548 -4.745877 -1.896049 -5.296353 -0.426568 0.129487 -2.364419 -2.118687 -5.124036 6.795473 -4.134592 0.470219 0.527916 -0.157000 7.477318 4.187658 -1.214669 -4.932827 2.744331 1.518012 1.465620 -2.877747 6.799397 1.150236 10.698422 -2.776034 1.541628 -2.058399 4.791837 -3.067843 -4.858665 -1.468862 6.172720 8.579718 2.380692 -1.869902 -0.315955 -1.895165 3.695935 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::push_heap<__gnu_cxx::__normal_iterator > >, std::greater >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::greater) = -0.237472 1.475639 5.932976 1.771242 -1.973787 -4.557187 -1.522554 -7.940012 3.466647 2.321715 5.310971 -0.503410 3.600487 -0.746621 -0.104678 0.777129 3.038769 -0.859871 1.083635 -1.808243 -1.379875 6.592620 -0.141137 0.077464 0.603741 -5.220865 3.230408 1.739410 3.110569 3.343663 1.241158 0.308706 -0.394844 1.709632 -1.393346 0.788513 0.049569 2.163180 -2.409926 -0.407404 0.459572 -1.368131 3.655675 0.377366 3.152168 0.274661 2.497249 -0.190017 -1.599729 -1.714795 -2.258934 3.106531 -1.935122 1.653812 -1.057624 -1.770174 1.003345 -0.628077 0.014512 -1.560320 -0.074270 -0.890665 -2.679882 0.167196 -2.960182 1.066121 -2.246915 -2.033708 -0.142757 -0.996768 2.159710 0.663486 0.261132 -0.586758 -7.020210 1.333479 1.263285 0.126088 2.149981 0.946428 -0.347660 -0.609810 -3.426140 -3.919861 4.570226 3.830648 0.971267 0.854358 -3.546915 -0.875904 -1.071075 0.342272 1.001577 3.294848 -2.925094 1.515137 -0.770328 -1.770664 -2.243782 -5.181267 0.557862 -3.312053 1.262360 0.933829 -0.565982 0.412033 -0.929966 0.790368 -1.351825 -3.847144 0.917988 -2.478043 -0.362744 4.827450 -1.701012 -1.713406 -2.652385 -0.278052 0.577838 2.382724 0.667372 1.239554 4.186074 2.363592 2.161317 -3.560614 -1.156094 2.537666 1.822838 1.425829 0.959064 -3.085212 -2.183015 0.739837 -2.290075 -6.519798 -2.207990 2.412541 3.131698 -2.178522 -1.622058 1.894380 -1.730023 3.074396 4.503295 0.799226 1.144339 1.199907 -2.748125 1.849564 5.545162 -1.928724 2.624130 -2.661326 -2.304383 4.089746 -1.576417 2.174929 0.057871 0.273168 -1.131706 -2.506411 0.781082 4.503149 0.454681 1.644018 0.207623 1.003503 -1.360251 -4.248660 -6.715788 -0.755631 4.609432 1.940029 6.034991 -3.524306 -1.834804 0.755469 3.084308 0.265153 -2.540527 1.971669 -2.545975 2.118167 -7.690007 -5.806801 6.330553 4.891873 2.424274 -0.406625 2.521305 2.095312 -3.213481 -3.020511 -2.393571 3.078458 0.351910 -5.152947 -1.484913 0.888284 -4.522367 -0.941691 -0.777173 0.867752 1.814057 -0.576977 2.725261 -2.092843 -2.620816 -2.366608 3.385599 -2.310755 -2.123427 -0.937865 0.052345 0.066781 2.063719 -1.252110 0.027682 1.237866 -2.717658 -0.299544 0.974837 1.450531 0.142047 5.732390 6.019766 -1.243266 2.072765 -0.478815 -1.932432 5.776574 -2.289284 -0.114454 0.027761 1.616127 0.038411 2.187450 3.429968 -1.561230 -3.146811 -4.475703 0.085874 0.901294 1.913546 -1.650093 -3.103385 -5.635892 -0.258998 0.183634 6.339143 0.249308 7.404998 -1.946453 1.783476 -6.809906 0.632261 1.303013 -0.497195 3.552946 1.300722 -3.238917 -1.421442 -1.063469 -3.545479 -2.475180 -0.282556 -3.097630 -3.162877 -2.768126 1.870060 -3.087479 0.554652 2.266305 -0.429774 3.434622 -0.261530 -0.574047 -3.125072 1.485859 3.870528 0.267623 -2.423694 3.132382 -0.077884 8.943590 -1.337481 2.811160 -1.937807 1.889666 -1.143443 -3.785767 -1.610041 5.021326 4.144709 1.335964 -0.444857 -0.212179 -0.004619 3.272340 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -6.554079 0.316231 14.496968 6.690756 -5.869225 -8.620913 -3.829691 -16.256320 10.032266 6.296570 14.639705 1.574095 9.969942 -5.506545 -0.106492 -2.538400 8.726813 -3.864775 1.940535 -3.895080 1.457740 17.440688 3.887015 -3.038846 1.208830 -11.115975 6.952780 1.931597 7.190324 10.694040 2.522529 0.815141 -2.911069 3.425506 -1.672514 3.222276 -0.125857 5.513533 -5.189289 -4.403431 2.811135 -5.600438 9.128402 0.392880 10.016992 -3.861944 5.144955 -2.790019 -7.447830 -6.531569 -4.943765 5.621964 -7.442841 4.510688 -0.028090 -4.112433 2.602667 0.573952 -0.697457 -11.633678 1.114808 -4.051878 -4.528834 -0.096184 -6.053679 3.673289 -5.937181 -2.831685 -0.718137 -7.169279 5.212811 2.731928 4.105688 0.033490 -15.472578 3.648245 2.344441 -0.017666 5.401170 6.827787 -3.137601 -3.469794 -6.040523 -8.844414 9.306184 6.032476 0.605143 3.112986 -9.433057 0.830406 -0.697288 1.530354 0.530156 6.323625 -10.223103 3.471583 1.015471 -4.181119 -0.407760 -10.338294 0.626617 -8.987304 1.287576 6.003913 -3.994792 0.265749 -6.625004 1.875157 -5.468910 -9.346657 5.240065 -5.156113 -4.608135 9.895557 -7.746891 -2.687859 -6.787413 1.941960 4.397207 5.879282 -0.333572 5.940442 6.098409 5.636043 6.967410 -9.481372 -0.130497 8.513400 7.746925 1.937620 0.721982 -3.809401 -4.758454 2.913892 -5.760249 -15.191592 -7.917490 8.633233 9.965065 0.820807 -6.805120 2.505467 -4.191104 9.551236 12.175196 2.672603 2.778356 4.843605 -8.660762 4.149349 12.090546 -5.032625 7.103416 -1.807497 -5.994361 12.350697 -6.171673 6.556360 -1.638251 2.469590 -0.665744 -7.655174 0.105385 11.284438 2.075368 5.687615 -4.202806 2.718819 -0.861494 -13.541538 -18.827381 -4.202824 12.957517 8.522544 12.886442 -8.224187 -3.624507 2.213218 7.368412 1.183699 -8.924974 3.762893 -5.353604 5.486479 -24.018156 -14.994811 18.608436 14.906074 5.564319 1.808236 5.849372 5.878705 -6.866414 -5.661302 -6.689107 7.713380 -0.314936 -10.124355 -2.578756 2.555685 -11.142158 -5.589863 -0.271776 0.688853 3.414335 -4.458466 6.848693 -0.656824 -3.199284 -3.413829 8.145180 -6.289251 -8.199814 -3.789949 0.205147 3.561004 4.708642 -2.209941 0.694257 2.832874 -7.513319 -3.118356 0.770477 4.356070 1.952391 12.230791 16.554590 -3.802058 1.084392 -1.631399 -6.884304 16.376682 -8.081892 -1.379411 -1.104271 3.575243 4.024416 5.012572 8.047708 -4.374960 -5.648864 -10.659477 -0.317438 2.555130 7.209623 -10.920648 -12.200033 -12.780030 2.291625 1.427987 12.090765 -0.353612 20.551744 -7.042411 2.376155 -19.299372 0.753618 7.300275 -0.376323 9.589224 2.900006 -6.797355 -7.411008 -3.809932 -8.457311 1.617436 -1.015622 -6.815527 -5.489313 -7.415402 9.145352 -8.632037 2.509153 3.631289 -1.725600 12.493848 3.492853 -1.792646 -8.883944 3.804947 3.120758 3.329037 -5.485770 11.319169 0.174089 19.071273 -5.146439 4.489216 -5.273563 8.737825 -5.959927 -10.258186 -3.212283 12.867209 13.482235 3.854170 -1.728113 -0.586047 -2.522909 7.570341 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/Nearly_sorted_Algo.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.346990 0.059010 1.309984 1.201323 -0.824623 -1.738097 -0.421935 -1.916106 1.183376 0.600682 1.441869 0.291498 1.283441 -0.832646 -0.138638 -0.208643 0.858898 -0.008145 -0.041764 -0.620826 -0.722053 2.180602 0.279756 -0.757610 0.228588 -1.105894 1.548636 0.626094 0.620842 1.551270 0.330935 0.276909 -0.210633 0.585423 -0.537637 0.317314 -0.587397 0.789007 -0.409572 -0.420300 0.811661 -0.557101 1.389373 0.373744 0.947444 0.268386 0.666198 -0.075457 -0.657969 -0.745995 -0.573325 0.154991 -0.828046 0.660928 -0.926881 -0.220985 0.848729 -0.056930 0.150711 -1.156303 0.287186 -0.383761 -1.116922 -0.108189 -1.115026 0.208143 -0.593873 -0.911679 -0.231734 -0.762177 0.664036 0.133507 -0.295558 -0.790693 -1.999479 -0.050753 0.316523 -0.043920 0.923008 0.744324 -0.635813 -0.652442 -1.273854 -1.036751 1.371079 0.367432 0.305235 0.875134 -0.883603 -0.701404 -0.083784 0.351704 0.661990 0.787511 -0.563390 0.298599 0.266816 -0.368913 -0.237656 -1.122866 0.524269 -0.754410 0.309559 0.504321 -0.417689 0.107081 -0.066315 0.112599 -0.599877 -1.123513 0.253589 -1.018895 -0.115305 1.233051 -0.291678 -0.726825 -0.744203 -0.187418 0.501848 0.979912 0.338508 0.154844 1.340039 0.626900 0.570737 -1.242246 -0.277569 0.791231 0.553193 0.400275 0.114120 -0.629164 -0.703457 0.374441 -0.810763 -1.922103 -0.703988 0.753664 0.992801 -0.520766 -0.851949 1.308468 -0.609544 0.466601 1.402930 0.360754 0.480271 0.387170 -1.049952 0.535096 1.679909 -0.373060 0.571156 -0.655219 -1.244069 1.841932 -0.354032 0.356311 -0.087149 -0.386351 -0.329911 -0.463639 0.736808 1.299392 -0.304675 0.417950 0.154477 0.470271 -0.509753 -1.246870 -1.993540 -0.149801 1.764708 1.437912 2.294089 -1.265308 0.093547 0.211943 0.696165 0.024893 -0.610339 0.415895 -0.620994 0.752239 -3.149253 -1.746630 2.186401 0.943525 0.967062 0.081009 0.562722 0.514154 0.117008 -0.632944 -0.865571 0.701845 0.677181 -0.713652 0.037419 0.147488 -1.482159 -0.572794 0.071380 0.243053 0.431263 -1.051724 0.468929 -1.374391 -0.503047 -1.030849 0.781728 -0.895028 -0.227072 -0.243291 -0.146156 -0.158065 0.399109 0.154789 0.062906 -0.264723 -0.380553 -0.053457 0.024226 0.464832 0.163050 1.502607 2.106751 -1.068802 0.022689 -0.099199 -0.518075 2.353406 -0.894026 0.111383 0.171629 1.275898 0.770647 0.502275 1.210481 -0.525982 -0.098985 -1.349661 -0.005176 1.033244 0.536210 -1.516142 -0.426082 -2.126844 -0.061316 -0.385750 2.114275 -0.195557 2.270821 -0.827164 0.445213 -1.973598 0.229873 0.698977 -0.128452 0.952231 0.394761 -0.912550 -0.598728 -0.503547 -1.050187 0.091391 -0.232033 -0.550268 -0.906924 -0.245970 -0.049998 -1.114415 0.345109 0.909736 -0.628922 0.771266 -0.599274 0.111277 -0.803426 0.147598 0.453687 0.247560 -0.737922 0.977731 0.035657 2.099138 -0.082441 1.123250 -0.578460 1.290703 -0.886548 -1.539958 -0.648936 1.424720 1.132582 0.127654 0.529627 0.331428 0.308544 1.039815 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.286328 0.071109 1.371667 1.217515 -0.818363 -1.744841 -0.419252 -2.068069 1.278805 0.631413 1.482554 0.306983 1.328798 -0.885888 -0.152169 -0.146986 0.902612 0.029372 -0.040016 -0.622832 -0.669335 2.315714 0.214326 -0.725783 0.220919 -1.171120 1.499204 0.648453 0.761770 1.529247 0.345179 0.258598 -0.197556 0.574928 -0.560292 0.305020 -0.596330 0.781927 -0.539881 -0.480305 0.757574 -0.596096 1.421265 0.343080 0.988517 0.107569 0.745914 -0.107798 -0.620872 -0.723756 -0.636915 0.292145 -0.790261 0.685451 -0.896095 -0.298864 0.800120 -0.007813 0.163747 -1.069146 0.276704 -0.366101 -1.125154 -0.131119 -1.114774 0.218530 -0.621980 -0.901571 -0.229531 -0.763036 0.673863 0.141248 -0.262325 -0.832808 -2.165656 -0.027560 0.327473 -0.054315 0.935078 0.828915 -0.547035 -0.690511 -1.273112 -1.059112 1.464588 0.482014 0.260726 0.880560 -0.987649 -0.714594 -0.111466 0.344855 0.672637 0.786821 -0.684677 0.332141 0.191709 -0.379446 -0.212372 -1.198339 0.510154 -0.798861 0.303610 0.430966 -0.353966 0.173572 0.004073 0.116199 -0.582645 -1.153290 0.254129 -0.978203 -0.153267 1.344522 -0.293965 -0.765072 -0.768297 -0.138431 0.403508 0.952249 0.338752 0.209460 1.368470 0.635533 0.635349 -1.282664 -0.273306 0.893638 0.554765 0.432057 0.090508 -0.632988 -0.701379 0.383750 -0.786301 -2.019535 -0.742500 0.813512 1.036827 -0.543211 -0.782804 1.211557 -0.580194 0.544568 1.431706 0.286390 0.493667 0.427540 -1.062532 0.558165 1.735779 -0.384390 0.577962 -0.707481 -1.209171 1.826277 -0.383773 0.387730 -0.148462 -0.347459 -0.310690 -0.500386 0.736438 1.348982 -0.345193 0.402161 0.076390 0.481204 -0.562270 -1.318527 -2.087995 -0.188264 1.765347 1.445186 2.315734 -1.249109 0.003661 0.233681 0.690898 0.026148 -0.627693 0.512939 -0.737343 0.795549 -3.178324 -1.815913 2.257537 1.041113 0.981535 0.051542 0.616454 0.551904 -0.004221 -0.689976 -0.867926 0.722473 0.729167 -0.892128 -0.005867 0.158794 -1.529490 -0.586020 0.083520 0.215890 0.410900 -0.968540 0.612473 -1.381348 -0.526526 -1.040780 0.916411 -0.902137 -0.225193 -0.293012 -0.125351 -0.161226 0.483044 0.087473 0.063706 -0.213228 -0.396487 -0.044693 -0.003455 0.452778 0.140366 1.520516 2.201390 -1.032581 0.162033 -0.106679 -0.572048 2.385313 -0.925213 0.088153 0.158122 1.182237 0.703478 0.560659 1.201154 -0.551451 -0.147907 -1.395214 -0.045866 0.989807 0.575152 -1.459557 -0.487619 -2.118083 -0.080756 -0.389420 2.102520 -0.167526 2.339057 -0.934986 0.464669 -2.090149 0.232944 0.711585 -0.119039 1.051382 0.394979 -0.947586 -0.586682 -0.497517 -1.057315 0.009538 -0.232202 -0.649964 -0.943321 -0.369401 0.067764 -1.185272 0.350966 0.916851 -0.621188 0.876953 -0.677529 0.106210 -0.855961 0.220549 0.476324 0.260772 -0.765095 0.970222 0.015980 2.230708 -0.127073 1.126845 -0.626621 1.300777 -0.924508 -1.624737 -0.658430 1.473097 1.204004 0.163568 0.451899 0.300249 0.259776 1.069191 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = -0.250308 0.367581 2.319562 1.796351 -1.076900 -2.095451 -0.519145 -3.052122 1.862895 0.819914 2.042894 0.255139 1.745262 -1.104365 -0.310952 -0.182663 1.368973 0.261618 -0.000907 -0.779868 -0.424036 3.246981 0.177873 -1.108158 0.298643 -1.763786 1.723418 0.927612 1.524782 1.848091 0.444307 0.332666 -0.214535 0.760107 -0.897754 0.075942 -0.712062 1.003052 -1.302692 -0.785479 0.679908 -0.718663 1.780904 0.280297 1.346874 -0.228479 1.219630 -0.288040 -0.837140 -0.761376 -1.100517 1.016476 -0.866953 0.987122 -0.896916 -0.658054 0.765679 0.072401 0.219619 -1.375175 0.389774 -0.273861 -1.283284 -0.214827 -1.558823 0.379977 -0.837515 -1.158556 -0.176555 -0.917818 0.894166 0.277389 -0.001034 -1.173359 -3.209091 0.292080 0.481199 0.093540 1.213996 1.272721 -0.221391 -0.818963 -1.478300 -1.452786 1.968411 0.973639 0.269560 1.056568 -1.390403 -0.981017 -0.122567 0.339042 0.612164 1.085316 -1.330402 0.773697 -0.287731 -0.503078 -0.223448 -1.777721 0.435045 -1.277701 0.400115 0.459220 -0.377061 0.575455 0.184073 0.297062 -0.482467 -1.645057 0.363958 -1.071382 -0.358886 2.198595 -0.511531 -1.090339 -0.991683 0.096025 0.127480 1.207177 0.174225 0.631663 1.615219 0.895241 1.030617 -1.745365 -0.189204 1.465738 0.669561 0.738643 0.252168 -0.863038 -0.942405 0.341241 -0.827493 -2.910091 -0.982726 1.233786 1.562948 -0.653860 -1.028009 1.109515 -0.757504 1.176191 1.836547 0.255987 0.709699 0.655214 -1.371005 0.775661 2.492370 -0.654491 0.821424 -0.951877 -1.419546 2.178269 -0.487199 0.798915 -0.479490 -0.204220 -0.095327 -0.952171 0.727709 1.989885 -0.340056 0.433722 0.039569 0.517237 -0.778491 -2.217581 -2.971512 -0.427618 2.110465 1.606804 3.004306 -1.507374 -0.439067 0.261983 1.003699 -0.022176 -0.820737 0.842052 -1.284955 1.129167 -4.110135 -2.699672 3.024493 1.849114 1.050214 -0.037671 1.025410 0.767071 -0.476507 -1.224540 -1.092459 1.024328 0.814515 -1.569690 -0.309281 0.263337 -2.096347 -0.758559 0.287923 0.207154 0.609528 -0.899478 1.099180 -1.525769 -0.915277 -1.430154 1.476305 -1.256750 -0.402831 -0.421326 -0.041934 -0.051017 0.914185 -0.299292 -0.095429 0.076215 -0.667130 -0.180075 -0.162656 0.651299 0.043990 1.977509 3.002686 -0.921638 0.711802 0.013057 -1.128292 3.571188 -1.259530 0.034588 0.079137 1.094537 0.528340 0.962179 1.413830 -0.823080 -0.495485 -2.093762 -0.178790 0.901127 0.884999 -1.933608 -1.019059 -2.480632 -0.122071 -0.311467 2.424221 -0.081372 3.400127 -1.475860 0.506405 -3.205257 0.263934 1.131753 -0.171941 1.796814 0.670339 -1.446210 -1.046581 -0.582933 -1.370167 -0.037237 -0.414166 -1.379679 -1.327536 -0.745736 0.623193 -1.599946 0.553758 1.337125 -0.644260 1.535390 -0.904064 0.031158 -1.175757 0.331713 0.713284 0.469224 -1.168671 1.343419 -0.103420 3.414495 -0.382273 1.368141 -1.098472 1.440471 -1.108269 -2.211159 -0.890046 2.255068 1.775596 0.481192 0.246301 0.174351 -0.044233 1.497004 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.236074 0.928791 3.612861 2.763495 -1.675425 -1.709445 -0.749046 -2.440078 1.445719 0.653695 2.418499 -0.359077 1.321863 -0.254578 -0.541277 -1.278711 1.611114 -0.074509 0.155421 -0.905163 -0.006923 2.832773 1.362320 -2.420901 0.464642 -2.141279 2.328885 0.900369 1.210252 2.133426 0.360807 0.802546 -0.260349 1.227348 -1.150796 -0.470283 -0.759381 1.378160 -1.101082 -0.471726 1.149133 -0.178222 1.553880 0.295682 1.389444 1.041285 1.318704 -0.476532 -2.029237 -0.850928 -1.351259 1.088037 -1.467856 0.953540 -0.675008 -0.257893 0.885627 -0.755282 -0.158301 -3.154309 0.558993 -0.076984 -1.028499 0.083827 -2.259123 0.801650 -0.752536 -1.284634 0.184393 -0.901178 1.109174 0.617950 0.522992 -0.954990 -2.359995 1.188508 0.539411 0.710850 1.211743 0.816059 -0.454914 0.055475 -1.317275 -1.738214 1.074708 0.400430 0.738384 0.632834 -0.182145 -0.934626 0.239210 0.204485 -0.530658 1.759359 -1.428690 1.473213 -0.540192 -0.705648 -0.787291 -1.354463 -0.020231 -1.829364 0.686565 1.775708 -1.699971 0.613260 -0.647168 0.477705 -0.152509 -2.178903 0.277525 -1.460864 -0.091846 2.269112 -1.278159 -0.868559 -0.990390 0.271248 0.708657 1.813440 -0.660423 1.136051 1.456725 1.274567 0.841042 -1.763755 0.300667 1.026734 0.784602 0.824218 1.153852 -1.083840 -1.395164 -0.354177 -0.483860 -2.824746 -0.770760 1.250665 1.893312 -0.067536 -2.509464 1.448174 -1.259875 1.968994 1.965548 1.139649 0.831221 0.557376 -1.506549 0.850283 3.196974 -1.067081 1.152401 -0.609862 -2.007487 2.978386 -0.476699 1.587658 -0.212487 0.179142 0.243391 -1.806768 0.109444 2.418314 0.475411 0.515533 1.259743 0.099719 0.398348 -3.202839 -3.183444 -0.476616 1.914529 1.286400 3.500986 -1.917721 -0.237479 -0.067788 1.515633 0.149815 -0.953903 -0.045302 -0.632877 0.903578 -4.798015 -3.425773 2.949688 2.403227 0.204779 0.392046 1.333616 0.538541 -0.113791 -1.579105 -1.373678 1.625786 -0.249396 0.090094 -0.290540 0.428193 -2.160043 -0.932710 0.493172 0.487356 1.514393 -1.772169 -0.176298 -0.827873 -1.579564 -1.777047 0.526624 -1.762788 -1.313823 0.037085 -0.018053 0.550664 0.638935 -0.362466 -0.569754 0.056839 -1.093107 -0.862445 -0.072975 1.234242 -0.024365 1.996572 2.921097 -0.556224 0.056001 0.536954 -1.482393 5.267763 -1.246390 0.012966 -0.084568 1.419538 0.620833 0.953498 1.446086 -0.890184 -0.772483 -2.557173 0.648509 0.437650 0.923956 -3.922301 -1.502781 -2.521339 0.061978 0.614049 2.198331 -0.050404 4.445943 -0.837830 -0.117558 -3.955669 0.105402 1.939740 -0.212955 2.061570 1.304004 -1.939441 -2.142267 -0.718137 -1.470885 1.635537 -0.772076 -1.715184 -1.600458 0.221251 0.756288 -1.126912 0.948619 2.003477 -0.448076 1.437074 0.529482 -0.311198 -0.838609 -0.740057 0.778843 0.985707 -1.425076 2.375575 -0.433049 3.633230 -0.667765 1.330070 -1.440010 1.038692 -0.468310 -1.717328 -0.914441 3.154926 1.716080 0.719974 0.416049 -0.170468 -0.484671 1.755240 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = -0.087771 0.124454 0.709432 0.056319 -0.090574 -0.718296 -0.209453 -1.128636 0.440806 0.362721 0.840081 -0.130049 0.624901 -0.197934 0.052841 0.129662 0.327831 -0.153487 0.161321 -0.222137 -0.181667 0.780405 -0.081337 0.157285 0.111902 -0.616026 0.413394 0.233581 0.245512 0.521038 0.144867 0.052474 -0.072650 0.193481 -0.184857 0.297809 0.142015 0.354734 -0.146911 -0.055100 0.012180 -0.156734 0.391031 0.083249 0.525673 0.222164 0.139061 0.012122 -0.146010 -0.351708 -0.106630 0.249574 -0.324602 0.179039 -0.278638 -0.267099 0.175052 -0.044618 0.021236 -0.364605 0.089700 -0.148041 -0.406104 0.040733 -0.337178 0.155326 -0.178182 -0.290317 -0.086689 -0.250641 0.309029 0.050355 -0.072733 0.084473 -0.830318 0.053489 0.217288 -0.093507 0.320467 -0.027790 -0.122576 -0.174943 -0.460801 -0.536543 0.783670 0.523712 0.252826 0.279041 -0.541905 -0.022422 -0.129467 0.053228 0.330435 0.432862 -0.205564 0.019883 0.135694 -0.215054 -0.233214 -0.662137 0.223361 -0.394632 0.160989 0.177385 0.026355 -0.003311 -0.196157 0.219832 -0.340215 -0.495860 0.204874 -0.411958 -0.004682 0.546771 -0.256994 -0.193587 -0.391751 -0.145316 0.217224 0.366515 0.203509 0.092151 0.528440 0.296786 0.269477 -0.523314 -0.311612 0.366474 0.354329 0.196506 0.001816 -0.526647 -0.267325 0.195798 -0.590472 -0.879451 -0.424601 0.204975 0.424893 -0.381198 -0.321498 0.548399 -0.249359 0.219617 0.660995 0.121439 0.089647 0.197413 -0.453758 0.192694 0.609337 -0.275306 0.394344 -0.216222 -0.294683 0.356910 -0.169109 0.141825 0.150403 -0.101838 -0.166784 -0.233060 0.167532 0.556696 0.154391 0.413472 -0.175364 0.261427 -0.350035 -0.459054 -0.897999 -0.148644 0.759447 0.212688 0.766542 -0.492961 -0.268251 0.108472 0.608763 -0.080363 -0.355405 0.192684 -0.329183 0.316938 -0.928586 -0.700093 0.865310 0.607697 0.612543 -0.041256 0.278766 0.322228 -0.375298 -0.190641 -0.244677 0.349522 0.064043 -0.812290 -0.248449 0.029105 -0.615756 -0.195267 -0.205879 0.154281 -0.061460 0.066280 0.430491 -0.274249 -0.177401 -0.190164 0.305653 -0.257124 -0.163384 -0.189635 -0.008504 -0.010827 0.188785 -0.298489 0.113998 0.237982 -0.416434 0.065310 0.223411 0.136225 0.145302 0.916732 0.726454 -0.334199 0.179536 -0.208219 -0.215026 0.525706 -0.204169 0.056636 0.014518 0.359294 0.180638 0.217107 0.522445 -0.229316 -0.378564 -0.640801 -0.204931 0.381932 0.273433 0.093888 -0.392893 -0.835199 -0.001902 -0.084211 1.031677 -0.011462 0.931953 -0.187884 0.351160 -0.749715 0.118460 0.090220 -0.212027 0.273328 0.111530 -0.333886 -0.380446 -0.146626 -0.564492 -0.708949 -0.065590 -0.304460 -0.342502 -0.436801 0.219274 -0.425722 -0.006943 0.158405 0.110057 0.360131 -0.046826 -0.012878 -0.450026 0.300411 0.476060 -0.069595 -0.392961 0.275739 0.147414 1.191407 -0.149691 0.456391 -0.224190 0.398742 -0.249847 -0.464002 -0.213910 0.634333 0.663015 0.135928 -0.002334 0.075654 0.078690 0.434453 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -0.556666 0.223382 1.830684 0.713584 -0.512931 -1.772815 -0.421242 -2.144504 1.029781 0.726316 1.957943 -0.020915 1.414374 -0.466986 0.294061 0.189326 1.161553 -0.530791 0.286776 -0.612189 -0.215970 2.045504 0.316153 -0.362288 0.221751 -1.434071 0.980753 0.764356 0.513346 1.292868 0.428472 0.165656 -0.061535 0.581135 -0.617305 0.442518 0.124739 0.756591 -0.465766 -0.326921 0.230006 -0.177052 1.251976 0.173774 1.128584 0.348788 1.051466 -0.002758 -0.762894 -0.834009 -0.777232 0.989144 -0.877548 0.587174 -0.583277 -0.340655 0.793427 -0.355666 -0.080925 -1.460165 0.131244 -0.037553 -1.025854 -0.077913 -0.863208 0.327080 -0.294619 -0.698466 -0.046424 -0.321234 0.805554 0.240728 0.029416 -0.190787 -1.929623 0.303608 0.332916 0.066740 0.757405 0.138406 -0.592917 -0.339731 -1.033546 -1.229115 1.613619 0.718766 0.565842 0.587582 -1.144646 -0.026870 -0.440211 0.141386 0.198124 0.921868 -0.660343 0.352354 0.724270 -0.553544 -0.714741 -1.023189 0.264809 -1.043684 0.204590 0.808695 0.067297 -0.022455 -1.159614 0.295407 -1.044254 -1.161074 0.558995 -1.046726 -0.497198 1.013508 -0.919802 -0.291400 -0.725926 0.003543 0.680285 1.066398 0.139090 0.406165 1.261432 0.817922 0.504017 -1.188299 -0.226155 0.553262 1.155892 0.513437 0.285872 -0.958184 -0.793153 0.321289 -1.139054 -2.037479 -0.720447 1.099437 1.155165 -0.290405 -1.368701 1.211777 -0.592273 1.093407 1.660827 0.581340 0.352115 0.490844 -1.029687 0.566097 1.755746 -0.812708 1.149268 -0.499390 -0.740812 1.448666 -0.597405 0.619352 0.322645 -0.174397 -0.328890 -0.717004 0.171288 1.486220 0.728059 0.790304 0.024337 0.428300 -0.220835 -1.478981 -2.349961 -0.379642 1.554048 0.735343 2.361160 -1.227544 -0.607671 0.084560 0.882794 -0.452319 -1.067328 0.257819 -0.664392 0.664156 -2.993045 -1.844861 2.553951 1.422708 1.038729 0.142473 0.971239 0.699918 -0.622382 -0.596245 -0.604251 0.998922 0.122211 -1.324926 -0.144428 0.275045 -1.697733 -0.569433 -0.419991 0.281640 0.123533 -0.404864 0.640645 -0.666581 -0.911588 -0.319182 0.455406 -0.904321 -0.859390 -0.346759 -0.078553 0.245736 0.414027 -0.290011 0.078895 0.389107 -1.281911 -0.451608 0.236178 0.847293 0.624334 2.053830 2.151300 -0.496890 0.634877 -0.196362 -0.775286 1.769209 -0.698044 -0.115434 -0.082802 1.066025 0.641840 0.540501 1.275556 -0.492319 -0.802145 -1.598053 0.243587 0.853760 0.712679 -0.835343 -0.862603 -1.981867 -0.059966 0.158524 2.442403 -0.381298 2.512555 -0.580227 0.536479 -2.426660 0.227721 0.356556 -0.160355 0.576769 0.512667 -1.013081 -0.940892 -0.419232 -1.225413 -0.694141 -0.001351 -0.752325 -0.881362 -0.952129 0.524285 -1.385742 0.187293 0.826859 -0.176910 1.110080 0.335501 -0.125886 -0.859708 0.456834 1.059574 0.265218 -0.831951 1.179358 0.001722 3.006469 -0.447481 1.093023 -0.769431 1.005424 -0.468861 -1.065976 -0.555227 1.678334 1.614703 0.169058 0.401880 0.150822 0.076118 1.341098 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = -0.041322 0.411990 1.749476 0.770944 -0.734417 -1.638870 -0.396922 -2.567889 1.214635 0.697004 1.727453 0.034097 1.349165 -0.603149 -0.012754 0.249947 1.072570 0.098887 0.185678 -0.572784 -0.467258 2.232654 -0.049790 -0.090947 0.227008 -1.135405 0.860735 0.627165 1.181747 1.133566 0.322081 -0.004262 -0.225964 0.452719 -0.490739 0.214788 -0.237507 0.738854 -1.047475 -0.370062 0.063904 -0.872401 1.305196 0.045414 0.987053 -0.304860 0.897057 -0.129999 -0.641608 -0.587387 -0.725100 1.001014 -0.629310 0.707950 -0.410021 -0.793627 0.349507 0.284476 0.138546 -0.635335 0.085870 -0.463698 -0.860451 -0.112439 -0.946077 0.249029 -0.828242 -0.868979 -0.101690 -0.508331 0.642407 0.207523 0.058678 -0.299665 -2.457701 0.245113 0.531523 0.043832 0.758012 0.757437 0.122314 -0.549700 -1.068879 -1.169901 1.622594 0.955373 0.337326 0.543257 -1.530936 -0.306615 -0.085664 0.277106 0.551405 0.771382 -1.047129 0.537767 -0.335635 -0.492183 -0.434648 -1.919375 0.214423 -0.985587 0.334814 0.078667 -0.063050 0.277939 -0.287412 0.348238 -0.471789 -1.346965 0.329314 -0.685234 -0.466801 1.585656 -0.534342 -0.653331 -0.724805 0.058144 0.061970 0.614809 0.361166 0.453894 1.105663 0.659244 0.887218 -1.284161 -0.311307 0.890034 0.608977 0.549814 0.162774 -0.571469 -0.698712 0.418395 -0.932006 -2.314841 -0.833516 1.031574 1.150630 -0.515967 -0.419100 0.471790 -0.597948 0.885744 1.419754 0.227917 0.458801 0.446644 -0.933716 0.507260 1.513571 -0.670924 0.883770 -0.532729 -0.760321 1.277260 -0.417034 0.572971 -0.215027 -0.081936 -0.157079 -0.713290 0.231336 1.504641 0.078732 0.446205 -0.306476 0.371820 -0.821910 -1.522951 -2.229426 -0.283841 1.694866 0.904177 1.753310 -1.046207 -0.662011 0.404742 0.852704 -0.112256 -0.903186 0.718816 -0.976707 0.842565 -2.752606 -1.917987 2.215005 1.546847 0.895385 -0.111189 0.700267 0.709636 -1.063288 -0.980096 -0.825693 0.802895 0.283135 -1.997928 -0.684585 0.271897 -1.580194 -0.207747 -0.028138 0.184154 0.272081 -0.154708 1.190238 -0.768540 -0.631000 -0.666212 1.236377 -0.781464 -0.412705 -0.381878 -0.030435 0.134330 0.723551 -0.434762 -0.028409 0.256956 -0.909352 -0.072965 -0.031033 0.510568 0.133099 1.994065 2.130150 -0.542542 0.697279 -0.211154 -0.933095 1.975606 -0.976311 0.030298 -0.056022 0.690784 0.072301 0.761681 1.271472 -0.578750 -0.910749 -1.495893 -0.482826 0.579537 0.704834 -0.559057 -1.053978 -1.830877 0.053013 -0.152592 1.959123 -0.068806 2.350288 -1.001431 0.643143 -2.254937 0.215670 0.404868 -0.225497 1.370579 0.359517 -1.007944 -0.574068 -0.420886 -1.179199 -0.678366 -0.069057 -0.922943 -0.824863 -0.899260 0.577620 -1.139871 0.162696 0.468803 -0.327827 1.407968 -0.273832 -0.108960 -0.986068 0.645273 1.165642 0.152210 -0.841595 0.994985 0.185851 2.998785 -0.193984 0.853115 -0.712665 0.649487 -0.513316 -1.417045 -0.647912 1.618249 1.659765 0.522964 -0.153796 0.149976 -0.022001 1.014980 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.223254 -0.157485 1.386511 0.892009 -0.310472 -1.043185 -0.283952 -1.620345 1.147747 0.582688 1.315941 0.156070 1.039283 -0.756510 -0.100701 -0.150561 0.632640 -0.048500 -0.026071 -0.359317 0.166611 1.900629 0.278437 -0.763505 0.136461 -1.279464 0.762390 0.489845 0.822632 1.293989 0.037416 0.105032 -0.014938 0.357960 -0.661177 0.158467 -0.182293 0.501332 -0.640624 -0.544346 0.358647 -0.112024 0.916685 -0.067080 0.980384 -0.244432 0.594482 -0.290449 -0.451793 -0.539584 -0.370218 0.458177 -0.514326 0.596939 -0.589747 -0.197207 0.175961 -0.031764 -0.073955 -1.251228 0.421329 0.166066 -0.669851 -0.183139 -0.755927 0.249395 -0.155217 -0.647848 0.034560 -0.777675 0.520013 0.266716 0.079163 -0.728543 -1.711637 0.196262 0.307692 -0.041213 0.457486 0.520621 -0.258114 -0.534899 -0.671026 -0.648747 1.054992 0.711363 0.090048 0.657162 -0.715548 -0.379343 0.021214 0.262414 0.251374 0.582327 -0.676422 0.305925 0.051668 -0.230136 0.163473 -0.683733 0.198972 -0.793978 0.198548 0.470668 -0.094473 0.581850 0.263300 0.480810 -0.409815 -0.881197 0.287500 -0.410576 -0.225513 1.113728 -0.375328 -0.564997 -0.581829 0.146913 0.120600 0.670629 -0.180329 0.471575 0.969994 0.487683 0.624915 -1.146772 -0.070046 0.955324 0.629063 0.460117 0.049053 -0.528758 -0.433974 0.127659 -0.610901 -1.758045 -0.678991 0.537704 0.959316 -0.501475 -0.815115 0.813069 -0.390500 0.976758 1.222179 0.013542 0.352880 0.485591 -0.941959 0.454187 1.523064 -0.418980 0.508381 -0.665230 -0.865740 1.090994 -0.227109 0.537615 -0.301799 -0.042573 0.185526 -0.711348 0.546483 1.174544 -0.066080 0.583209 -0.364053 0.341794 -0.305319 -1.323334 -1.731398 -0.616330 0.985753 0.939443 1.943057 -0.789837 -0.511166 -0.079931 0.591579 -0.092383 -0.438354 0.394770 -0.846575 0.600494 -2.607919 -1.640762 1.866400 1.445941 0.961724 0.184326 0.837653 0.381386 0.001749 -0.317870 -0.378628 0.551806 0.668440 -0.959540 -0.134407 0.081360 -1.191259 -0.675962 0.068415 0.018635 -0.005924 -0.429960 0.553733 -0.594884 -0.589345 -0.636937 0.821285 -0.947245 -0.222733 -0.385058 0.076445 0.030398 0.441370 -0.429776 0.064395 0.221741 -0.424382 0.022468 0.000820 0.391338 0.195522 0.819626 1.823524 -0.539578 0.496583 -0.091036 -0.649729 1.922769 -0.775435 -0.148897 0.080558 0.507605 0.351781 0.523083 0.633498 -0.446614 0.051571 -1.136559 0.028017 0.629233 0.560919 -0.989055 -0.770029 -1.181451 -0.068694 -0.203796 1.413344 0.025445 2.030015 -0.853644 0.447368 -2.086325 0.063835 0.582543 0.038202 0.886777 0.385386 -0.755951 -1.262218 -0.227127 -0.724178 -0.113187 -0.331339 -0.957365 -0.710138 -0.653998 0.568214 -0.925324 0.358262 0.786951 -0.228155 1.070825 -0.503551 0.009118 -0.709990 0.230884 0.054058 0.419663 -0.644436 0.536777 -0.008362 1.997809 -0.363060 0.866969 -0.742333 1.121298 -0.814722 -1.203255 -0.440159 1.251088 1.150211 0.292685 0.118069 -0.100211 -0.174955 0.846648 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = -0.799165 -0.028198 1.455768 -0.035243 -0.417713 -1.130156 -0.464830 -1.962335 0.869268 0.822349 1.845033 0.002556 1.215775 -0.496463 0.274890 0.019263 0.871190 -0.771134 0.402525 -0.464727 0.107392 1.469471 0.287696 0.406417 0.177397 -1.173573 0.523672 0.128596 0.410895 1.098179 0.344281 -0.044948 -0.488825 0.282608 0.063008 0.822573 0.532051 0.594121 -0.257170 -0.167627 -0.018207 -0.569231 0.808230 0.001216 1.304653 -0.065986 0.226585 -0.055394 -0.723673 -0.951474 -0.134435 0.480532 -0.905107 0.341916 0.101024 -0.525086 0.151813 0.026088 -0.137237 -1.185158 0.055206 -0.655961 -0.489255 0.167014 -0.421444 0.417136 -0.602870 -0.222778 -0.157764 -0.807570 0.581533 0.196014 0.319324 0.717403 -1.388044 0.231186 0.326300 -0.126713 0.532534 0.200513 -0.455330 -0.368429 -0.628196 -1.028185 1.127707 0.873519 0.270408 0.281486 -1.296608 0.563624 -0.166869 0.075657 0.323214 0.675425 -0.889640 -0.036141 0.486998 -0.547514 -0.272220 -1.307298 0.253271 -0.844247 0.185062 0.597576 -0.211770 -0.336336 -1.251656 0.333305 -0.959577 -0.911628 0.750692 -0.628335 -0.367711 0.878175 -1.018540 -0.040831 -0.907470 -0.042695 0.758606 0.611779 0.240157 0.466724 0.611204 0.671178 0.694092 -1.000885 -0.404911 0.746999 1.118250 0.148112 -0.023216 -0.658948 -0.481058 0.538227 -1.177156 -1.546754 -1.044811 0.709496 1.023709 -0.005207 -0.649508 0.409332 -0.511617 0.811299 1.378771 0.361854 0.109246 0.470771 -1.012928 0.374852 0.965420 -0.611245 0.988837 0.044785 -0.374687 0.863210 -0.700454 0.501152 0.290390 0.134957 -0.342686 -0.618619 -0.133066 1.048215 0.660407 1.014417 -0.829225 0.499624 -0.286907 -1.119751 -1.984825 -0.437387 1.594737 0.583314 1.005245 -0.927495 -0.516827 0.240337 1.182836 0.041137 -1.205950 0.315494 -0.476510 0.543807 -2.056774 -1.305066 1.969865 1.736809 1.048891 0.165933 0.516707 0.778085 -1.175304 -0.302901 -0.579400 0.806657 -0.383922 -1.620562 -0.473238 0.253385 -1.182654 -0.556147 -0.426510 0.249556 0.020144 0.025729 0.920710 0.301644 -0.090628 0.029492 0.634078 -0.381106 -0.928337 -0.452074 0.018027 0.490136 0.339122 -0.495364 0.304684 0.582460 -1.136096 -0.157321 0.455031 0.454355 0.464835 1.782408 1.391707 -0.474632 0.055751 -0.538556 -0.620955 0.875591 -0.609651 0.012221 -0.149904 0.434130 0.538335 0.343051 0.999227 -0.448742 -0.879542 -1.047679 -0.367411 0.472895 0.855778 -0.212300 -1.537416 -1.525501 0.402334 0.131169 1.636395 -0.100948 1.950856 -0.417192 0.532363 -1.686547 0.139548 0.395068 -0.247805 0.590758 0.137035 -0.532522 -0.822136 -0.367885 -1.185084 -0.755264 0.037308 -0.393658 -0.402467 -1.025873 1.092070 -0.804622 -0.063301 -0.055658 0.156558 1.271407 0.799271 -0.198782 -1.049412 0.694180 0.663112 0.061204 -0.628972 1.089462 0.356026 2.198530 -0.474262 0.457008 -0.296106 0.868580 -0.496902 -0.818750 -0.288963 1.226002 1.680050 0.391542 -0.291778 -0.005135 -0.092277 0.710128 -PE-benchmarks/Nearly_sorted_Algo.cpp___GLOBAL__sub_I_Nearly_sorted_Algo.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -5.541625 6.029266 27.476444 20.700113 -15.035444 -19.831465 -6.687799 -14.613079 7.852738 3.409843 15.314645 -1.744175 4.245680 6.836610 0.745206 -7.112003 6.857710 1.333358 -3.489011 -6.304412 -10.431708 13.576433 11.863565 -21.501817 2.108964 -15.971248 12.954846 10.226591 3.603148 11.744732 0.729241 1.333880 -2.327960 9.567998 -14.066234 -4.755478 -2.343898 3.810176 -6.456600 -3.954882 9.251096 4.158686 12.975040 0.051096 9.356467 8.558419 13.108701 -1.223017 -17.093598 -3.943998 -9.570966 16.219241 -6.601162 9.699252 1.899323 10.411084 4.925374 -15.705393 -2.832545 -22.563729 5.473674 5.494097 -10.427895 -1.618287 -14.831229 1.815503 -2.237599 -11.479804 8.230910 -4.591089 8.516295 -2.707846 0.982064 -11.564539 -12.623975 5.932080 -0.445828 6.285327 5.565698 2.623940 -5.803270 2.199668 -8.782151 -8.813103 0.897335 -1.704558 1.590697 0.988619 0.125913 -7.426617 3.191158 -2.118986 -6.961841 12.958759 -10.967549 13.112780 -1.418224 -4.027549 -12.656872 -9.376097 -1.186895 -11.872407 5.711732 13.271690 -8.134288 3.373140 -1.680263 4.700256 -1.165806 -17.332511 1.216061 -5.787478 -0.007976 10.203005 -9.989881 -5.172697 3.042757 -1.124720 0.475530 13.812514 -3.235740 4.831474 12.771270 9.774453 4.098098 -10.509830 3.466253 2.016403 8.395453 8.703173 10.578899 -12.952641 -6.764232 -0.548332 -3.097551 -23.253040 3.016185 11.168357 12.905234 4.632499 -21.378569 6.218110 -7.074127 15.565361 8.210186 15.692817 4.185455 -1.611116 -8.119145 3.331812 24.847598 -8.570962 11.892123 -5.440290 -16.642046 19.212053 -4.417316 12.606664 2.007967 2.491023 5.566936 -13.105171 -1.472074 17.546829 7.395866 1.850108 14.407394 -0.863430 -3.032767 -23.085450 -20.328440 -0.591469 7.922187 4.197511 29.190413 -15.267349 -9.435472 -5.384474 14.973538 -6.810407 -6.734744 -0.094274 -3.149244 5.061365 -32.613793 -22.596889 20.138276 18.153099 -0.119647 -1.052747 18.295878 0.600788 -1.942314 -11.834210 -11.862110 8.628053 3.183918 7.778426 3.176958 -0.748691 -18.930674 0.793139 0.929982 3.746137 12.137717 -13.544120 -8.487187 -4.069057 -18.864094 -12.709705 3.146901 -15.790767 -6.685565 0.946211 2.153265 -0.497760 3.094780 -2.012130 -10.829794 1.169557 -10.996871 -4.122467 3.602251 10.311574 4.400867 25.616111 17.712982 0.419009 11.380028 5.328736 -8.280395 43.979598 -13.076416 -2.615844 -0.874520 14.948924 -2.099755 4.996497 8.491039 -4.253064 -8.832444 -13.814793 9.012892 -3.132392 5.846841 -26.829812 -11.289157 -19.759423 -4.832296 3.923908 17.975826 -1.636742 29.210885 -1.756349 2.989912 -33.057843 0.589734 13.068922 -1.404650 9.504501 10.067813 -15.019538 -23.455477 -1.068552 -5.404755 11.367378 -2.060045 -15.107981 -9.350720 -4.054874 -0.314134 -6.731442 7.025050 19.940988 -6.457940 8.609483 4.299878 -3.988195 -0.118639 -7.180538 9.735729 5.564379 -10.986170 21.098771 -2.681603 37.029686 -1.974598 12.900505 -9.763314 2.756411 -1.689039 -5.800642 -6.273189 16.353131 12.207856 6.224348 2.242387 3.015622 -9.022518 8.442046 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -1.093429 1.462762 6.310983 3.724881 -3.147767 -4.561952 -1.561601 -4.225318 1.928372 1.057193 3.846944 -0.531484 1.359776 1.408572 0.244745 -1.129377 1.749376 -0.044242 -0.386060 -1.543884 -2.091345 3.239988 2.150969 -3.693962 0.585407 -3.991596 2.740379 2.123158 1.098209 2.716438 0.367559 0.156212 -0.789249 2.040406 -2.700682 -0.628522 0.053944 0.947824 -1.686079 -0.536229 1.514965 0.714968 2.896633 0.010744 2.458361 1.869758 2.528753 -0.044438 -3.491548 -1.118066 -1.881317 3.615094 -1.518514 2.095940 0.495361 1.720114 0.764331 -3.172366 -0.592246 -4.423859 1.007104 0.810570 -2.221084 -0.124753 -3.199540 0.515063 -0.840913 -2.439716 1.557660 -1.190062 1.964065 -0.516015 0.281538 -1.816701 -3.359313 1.287928 0.100325 1.300120 1.348191 0.328874 -1.127001 0.414013 -2.114629 -2.314554 0.672177 0.553294 0.478031 0.175541 -0.670712 -1.320797 0.491367 -0.506149 -1.085709 2.974606 -2.626318 2.541613 -0.523569 -1.086084 -2.856501 -2.857597 -0.080285 -2.660311 1.381036 2.494761 -1.550871 0.512520 -0.641422 1.188716 -0.448182 -3.787181 0.575839 -1.328547 0.048724 2.794553 -2.283887 -1.154893 0.037426 -0.427541 0.174895 3.002272 -0.455410 1.036573 2.879456 2.332734 1.183318 -2.509795 0.248645 0.757269 1.980713 1.880015 2.237991 -3.101240 -1.553749 0.133029 -1.218222 -5.419560 0.175614 2.254397 3.006359 0.571160 -4.162131 1.183838 -1.768615 3.404528 2.147641 3.190803 0.902385 -0.231270 -2.022539 0.864985 5.456408 -1.972866 2.820017 -1.298368 -3.266835 3.815042 -1.068647 2.749012 0.546294 0.528757 0.845677 -2.806988 -0.371245 3.934593 1.779110 0.807300 2.537975 0.080742 -0.997726 -4.969222 -4.883557 -0.266817 2.256553 0.722056 6.063865 -3.452680 -2.271978 -1.071441 3.756075 -1.234395 -1.802127 0.308447 -0.975538 1.248448 -6.879710 -4.981908 4.718645 4.661716 0.512449 -0.383513 3.835275 0.492228 -1.373352 -2.671766 -2.541465 2.032206 0.276900 0.300696 0.123646 -0.026307 -4.255716 0.081568 -0.064222 0.993641 2.564730 -2.213669 -1.039785 -0.568953 -3.878333 -2.690636 1.084289 -3.176445 -1.635305 0.127133 0.472814 0.005411 0.866601 -0.882862 -2.053726 0.798185 -2.712842 -0.663875 1.100843 2.176829 0.885643 5.994865 3.858999 0.074732 2.564871 0.787418 -1.961487 8.982528 -2.722242 -0.341690 -0.223313 2.913983 -0.533195 1.187923 2.060077 -1.073468 -2.442209 -3.240415 1.433559 -0.604020 1.542931 -4.771823 -3.089656 -4.587585 -0.803259 0.774644 4.364324 -0.201196 6.598864 -0.421178 1.013546 -7.189779 0.229946 2.619403 -0.461988 2.172519 2.046507 -3.272367 -4.878330 -0.247879 -1.811056 1.300010 -0.385024 -3.317596 -2.114864 -1.337578 0.513120 -1.489350 1.216241 3.953979 -1.078777 2.277514 1.040585 -0.911357 -0.550933 -1.075391 2.656314 0.914652 -2.556739 4.474205 -0.293117 8.588060 -0.505574 2.778801 -1.942048 0.567441 -0.331981 -1.536168 -1.435601 3.847253 3.093381 1.552354 0.095028 0.436871 -1.764781 1.910012 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp___GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/maximum-length-chain-of-pairs.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -3.278223 2.963892 15.396802 11.041313 -7.940140 -8.554948 -3.709620 -7.381361 4.998062 1.891262 8.630143 -0.558193 2.655551 2.336454 0.051671 -4.427074 3.366671 0.373413 -2.680159 -3.574342 -4.320734 7.847738 8.292181 -12.942906 1.814401 -9.394664 6.390400 4.624693 2.916944 7.512274 -0.342365 0.659304 -1.073311 5.644239 -7.780862 -2.909516 -1.715118 1.971309 -3.840232 -2.309780 5.801071 2.897104 6.616007 0.218384 5.277954 4.330675 5.533520 -1.365143 -9.562127 -2.415558 -3.965031 8.694251 -4.220063 5.791799 1.183051 6.340012 1.385066 -8.392469 -1.576097 -13.852936 3.275299 3.194750 -4.546366 -0.883179 -7.720434 0.968734 -1.362260 -6.058142 4.652712 -3.958407 4.751388 -0.893191 0.540534 -6.931554 -5.484580 3.692134 0.784396 3.569421 3.413083 1.890545 -2.937270 0.796568 -3.909755 -4.927812 0.476723 -1.533817 0.891698 1.035718 0.885132 -4.342281 2.953984 -0.814837 -3.764847 7.120196 -6.932112 6.544512 -1.174204 -2.578101 -5.701916 -4.152553 -1.092093 -6.913551 3.231359 7.639580 -5.314603 2.500333 -0.142178 3.287507 0.355683 -9.187291 0.328335 -2.114152 -0.506390 6.233827 -5.599840 -3.220196 1.628026 0.049853 -0.115569 7.887654 -2.012156 3.112350 7.530958 5.448437 2.785613 -5.928620 2.771139 1.141111 4.252415 4.889746 5.999170 -6.559945 -3.918723 0.148094 -1.151001 -12.854447 0.874998 5.050197 7.634516 3.494939 -12.218797 3.582184 -3.807885 8.340777 4.651470 7.281399 2.756468 -1.198718 -5.036080 2.245329 14.416684 -5.259532 6.240025 -2.731715 -10.224994 10.882961 -2.792648 7.070865 0.233363 1.067700 4.067546 -7.928934 -0.323308 10.466110 3.099544 1.304223 6.410568 -0.614815 -0.928682 -13.807919 -11.480679 -1.389501 3.369774 2.596777 16.168235 -7.432682 -4.182141 -3.482783 8.999379 -3.721103 -3.206125 -0.367800 -2.090057 2.916997 -17.791630 -12.689466 11.831928 11.636510 0.516848 0.255133 9.802371 0.783942 0.011933 -5.574211 -6.360003 4.397283 2.797557 4.667181 0.791614 -0.587051 -9.656341 -0.269473 1.436147 1.699283 5.909923 -7.806746 -4.742384 -0.615680 -10.633503 -6.268059 1.875439 -9.734762 -3.041395 0.335133 1.134263 -0.016112 2.071774 -1.504570 -6.398215 0.460402 -5.570104 -2.259746 1.369263 6.773567 2.057187 11.488163 9.500128 -0.322187 4.992680 3.011089 -5.248711 23.622798 -7.596159 -1.644827 -0.568533 7.827235 -0.754864 3.225291 4.254193 -2.654951 -3.750487 -7.812673 4.650807 -1.380733 2.862016 -15.987108 -6.721824 -9.392866 -2.759755 2.051033 8.220927 -0.306487 17.079854 -1.418255 0.971272 -19.110276 0.000641 7.684837 -0.588005 5.842643 5.915408 -7.838058 -14.889338 -1.260403 -3.125112 7.814950 -1.570735 -8.124027 -4.825380 -2.072110 2.647240 -3.935115 4.731796 10.766964 -2.799997 5.391093 2.191364 -2.210793 -0.992222 -4.153890 3.927797 3.544886 -5.767214 10.828883 -1.006912 18.203748 -1.708431 7.248196 -6.297660 1.621893 -0.955060 -3.432113 -3.833540 9.289362 7.020515 3.907643 1.335707 1.065510 -5.648418 4.842134 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.458215 0.982254 4.397108 2.258398 -2.083527 -2.866207 -1.173798 -3.734054 1.847706 0.859588 2.928332 -0.306638 1.318223 0.352285 0.007516 -0.353185 1.299718 -0.251837 -0.124033 -1.178352 -1.241750 3.200033 1.520119 -2.085117 0.545302 -3.258326 1.731386 1.138022 1.575138 2.189944 0.242758 -0.031943 -0.467077 1.423904 -1.663034 -0.202518 -0.130857 0.802241 -1.677461 -0.240692 0.894065 0.153506 2.096765 -0.016182 1.884192 0.843550 1.611836 -0.081331 -2.142889 -0.877828 -1.291262 2.703754 -1.266731 1.534553 0.172465 0.666268 0.170102 -1.721931 -0.489120 -2.562047 0.335281 0.226886 -1.443846 0.028190 -2.237394 0.519807 -1.061240 -1.603558 0.875438 -0.928312 1.580514 0.095450 0.274110 -1.132403 -2.899771 1.005479 0.391740 0.923495 1.093921 0.451915 -0.389560 0.143016 -1.587129 -1.913441 1.165148 0.900554 0.379729 0.112987 -0.801662 -0.909965 0.281496 -0.201788 -0.318882 2.051332 -2.252680 1.540880 -0.811687 -0.902842 -1.710704 -2.488281 -0.106242 -2.042557 1.069786 1.320572 -0.960247 0.485048 -0.082645 0.923381 -0.165723 -2.800078 0.323256 -0.670613 -0.165146 2.741048 -1.510674 -0.934462 -0.380439 -0.132252 -0.258783 2.021265 0.007986 0.948936 2.392997 1.786872 1.176480 -1.916069 -0.009550 0.846289 1.330667 1.323270 1.536950 -2.024911 -1.312746 0.311722 -0.719042 -4.152406 -0.481905 1.543926 2.294529 0.162395 -2.341583 0.715503 -1.185808 2.386690 1.831321 1.410816 0.852163 -0.105915 -1.629305 1.027956 4.218666 -1.452798 1.923666 -1.248802 -2.293265 2.901840 -1.024686 1.884829 0.095870 0.374722 0.414022 -2.138197 -0.014557 2.962732 0.775689 0.640928 1.123054 0.233337 -0.783419 -3.714386 -3.771024 -0.383406 1.778639 0.601382 4.176413 -2.225880 -1.406671 -0.516009 2.683068 -0.500234 -1.263814 0.528857 -1.238820 1.073267 -4.871506 -3.721303 3.858424 3.838031 0.770411 -0.099145 2.487371 0.932591 -1.412324 -1.898806 -1.832731 1.566463 0.477743 -0.988938 -0.601117 0.083467 -2.927278 -0.254759 0.072847 0.685518 1.600153 -1.125391 -0.025462 -0.307633 -2.704764 -1.719074 1.448667 -2.356514 -1.027400 -0.017162 0.258407 -0.010629 0.993778 -0.822283 -1.083001 0.626946 -1.827940 -0.264225 0.682360 1.622481 0.288768 3.711469 3.154730 -0.185895 1.752188 0.379099 -1.640217 5.684951 -1.938748 -0.191556 -0.231802 1.646427 -0.428169 1.077360 1.552353 -0.916179 -1.867351 -2.462267 0.714869 -0.175191 1.084058 -2.872375 -2.476521 -3.105779 -0.580507 0.494099 2.981808 0.204393 4.936799 -0.846487 0.763867 -5.393361 0.220306 1.719639 -0.200993 2.054416 1.338883 -2.127402 -3.169156 -0.477940 -1.620224 0.504672 -0.469583 -2.527282 -1.597341 -1.284572 1.303115 -1.357633 0.854716 2.506097 -0.517240 2.084175 0.359124 -0.644509 -1.123609 -0.317968 1.908530 0.603858 -1.782838 2.812109 -0.083792 5.943420 -0.539471 1.896125 -1.555984 0.471704 -0.353491 -1.627282 -1.038009 2.992913 2.439255 1.097949 -0.093701 -0.015545 -1.098636 1.445013 -PE-benchmarks/maximum-length-chain-of-pairs.cpp___GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.478697 1.736624 6.692347 4.916428 -3.467074 -3.782324 -1.901602 -4.293789 2.061976 1.126967 4.321811 -0.536200 1.500030 1.275271 0.100154 -1.774593 2.021034 -0.183244 -0.610849 -1.872325 -1.919044 3.546270 3.014689 -5.283617 0.632038 -3.392070 3.467334 2.201300 0.880340 3.065963 0.415385 0.288945 -0.485487 2.848662 -3.422159 -1.106124 -0.483612 1.852470 -1.548514 -0.744030 2.477789 1.610518 3.201112 0.269348 2.360762 2.783472 2.494472 -0.258687 -4.172254 -0.999958 -1.370678 3.340290 -2.437432 2.554919 -0.088116 1.940393 1.182027 -3.580309 -0.612016 -5.444016 1.220398 1.339569 -2.357372 -0.273665 -3.382227 0.375855 -0.277161 -3.042872 1.703495 -0.918944 2.315988 -0.346252 -0.225893 -2.678929 -2.679850 1.588124 0.673085 1.436109 1.950165 0.229390 -1.030389 0.224990 -2.079098 -2.776056 0.971505 -0.215134 1.125217 0.685057 0.417765 -1.552005 1.092416 -0.131085 -1.080275 3.665796 -1.863076 2.809315 -0.403776 -1.439102 -2.927549 -1.806679 -0.050878 -3.263487 1.945263 3.280993 -2.570369 0.860372 -0.636134 1.466693 -0.399844 -3.993157 0.068136 -1.689403 0.315756 2.899471 -2.163512 -1.778763 0.308562 -0.457933 0.645873 3.431977 0.019007 0.972176 3.751137 2.692510 1.175806 -3.252073 0.362776 -0.001056 1.701098 2.506334 2.756806 -3.061293 -2.206799 -0.010578 -1.203410 -5.571307 0.253338 1.828401 3.179655 0.267290 -5.227409 2.242178 -2.232552 3.330619 2.567974 3.818623 1.343887 -0.278731 -2.275967 0.995780 5.749523 -2.177932 2.834962 -1.076193 -4.088074 4.323235 -0.862808 2.927314 0.596324 -0.039810 0.986945 -3.402306 -0.058285 4.743482 1.566880 0.997817 2.782574 -0.025750 -0.524513 -5.463736 -5.244945 -0.204972 2.516542 1.351414 7.040814 -3.544565 -2.014634 -0.734711 3.493970 -1.295793 -1.665996 -0.047296 -0.683671 1.708010 -7.590568 -5.476022 5.131885 4.175734 0.729546 -0.416869 3.740575 0.002754 -0.364152 -2.896346 -2.715977 2.534472 0.766352 1.639555 0.307171 0.165864 -4.060458 -0.110644 0.483612 1.196313 2.398801 -3.606784 -2.007123 -0.556051 -4.408342 -2.572721 0.727069 -3.774256 -1.469885 0.202183 0.169105 0.121611 0.850043 -0.576090 -2.655871 -0.048615 -2.652204 -1.144337 0.772665 3.144218 0.767488 5.185921 4.239589 -0.684223 2.144294 1.259447 -2.225734 9.478113 -2.978412 -0.285110 0.013057 3.928744 -0.148278 1.280884 2.794628 -1.344155 -2.104214 -3.904026 1.630162 0.251518 1.695966 -6.631676 -2.170077 -4.348489 -0.840366 0.813181 4.544966 -0.512764 7.483874 -0.351384 1.058913 -7.592314 0.155400 2.889120 -0.506536 2.470789 2.630414 -3.693277 -5.789943 -0.801910 -2.252713 2.187553 -0.444108 -2.854094 -2.678569 -0.584216 0.557492 -1.638311 1.609077 4.690852 -1.587589 1.809858 0.669627 -0.947528 -0.057427 -1.990575 2.585186 1.195855 -3.122949 4.589831 -0.395255 8.900654 -0.552468 3.501734 -2.751007 0.545058 -0.300894 -1.451771 -2.025235 4.728946 3.125370 1.658218 0.835209 0.618728 -1.787329 2.524646 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -2.621522 2.715491 12.574409 9.094455 -6.080282 -6.812761 -3.775241 -7.813254 4.382077 2.040651 7.977653 -0.936479 2.711521 1.897579 -0.079998 -3.522634 3.811009 -0.626971 -1.266439 -3.447817 -3.046063 7.132677 5.454852 -10.007766 1.226846 -7.474333 6.051037 4.092958 2.062924 5.927336 0.817345 0.656355 -0.674061 5.078821 -6.427527 -2.056897 -0.630368 2.832116 -3.492843 -1.534358 4.720071 3.805528 6.093722 0.427706 4.527296 4.536494 4.314737 -0.703254 -7.588181 -1.825128 -2.814048 6.646033 -4.043435 4.448629 0.232334 4.140521 1.975645 -7.062439 -1.449150 -9.778156 2.316717 3.259836 -4.247762 -0.437528 -6.238959 0.910396 -0.715663 -4.927989 3.458364 -2.238916 4.170951 -0.609451 -0.089818 -5.328972 -5.045397 3.329518 0.936103 2.763271 3.501248 0.768290 -1.773952 0.571988 -3.565994 -4.789450 1.649480 -0.119432 1.488395 1.276833 1.076366 -3.426033 1.746674 -0.412203 -2.109378 6.394190 -3.973070 4.999024 -1.039309 -2.733391 -4.643951 -2.834567 -0.285019 -6.008202 3.265977 6.364421 -4.703617 2.025686 -0.426542 2.796168 -0.493835 -7.062271 0.380166 -2.571611 0.324514 6.220571 -4.128444 -3.603283 0.178077 -0.497480 0.485372 6.640812 -0.558064 2.258007 6.577305 4.987268 2.164561 -5.852461 1.006166 0.708165 3.330401 4.350220 5.227820 -5.758003 -3.933613 -0.372973 -1.656416 -10.369107 0.158237 2.958595 6.002059 0.836568 -9.642069 3.791756 -3.881685 6.713754 4.408203 6.364610 2.513347 -0.652858 -4.576891 2.259223 10.888325 -3.919182 5.064891 -2.523091 -7.882744 7.624160 -1.694022 5.495856 0.493895 0.141144 2.279217 -6.456472 0.319791 8.564202 2.310780 1.802596 4.770599 0.004501 -0.450511 -10.065392 -10.000371 -0.415330 3.736397 2.316923 13.175686 -6.363619 -4.071085 -2.053935 6.877303 -2.333481 -2.781588 0.215830 -1.754717 2.993843 -14.102127 -10.250661 9.878084 8.706255 1.259036 -0.710210 7.309408 0.176654 -0.742538 -5.071592 -5.062587 4.723651 2.222687 2.975204 0.979138 0.228951 -7.209740 -0.983981 1.097597 2.057898 4.471791 -6.693505 -3.645363 -1.115350 -8.288972 -4.832421 2.072204 -7.148318 -2.565111 0.343644 0.287132 -0.174638 2.135738 -1.433883 -4.957293 0.374268 -4.592875 -2.185843 1.394373 5.985867 1.361279 8.736164 8.216844 -0.787388 4.704790 2.533058 -4.252901 18.028599 -5.757784 -0.800341 -0.211254 6.355665 -0.322329 2.324132 4.071483 -2.389669 -3.673200 -7.135276 3.519062 -0.119830 3.164003 -12.393728 -4.568498 -7.910503 -1.769615 1.485488 8.015620 -0.343534 14.172952 -1.140826 1.310171 -14.277619 0.154641 6.216376 -0.487481 4.832275 4.902475 -6.766019 -11.704874 -1.262331 -4.110737 4.652293 -1.155538 -6.291642 -5.186810 -1.805514 2.613551 -3.222371 3.477249 9.469675 -2.616362 3.664907 1.118221 -2.021238 -0.535704 -3.815189 3.453790 2.518204 -5.600907 8.557393 -1.136796 16.116213 -1.465598 6.378585 -5.413783 1.409267 -1.026537 -3.105930 -3.580601 8.535491 5.881516 2.977583 1.331978 0.617916 -3.891354 4.521077 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -0.806276 1.900587 7.196169 5.198570 -4.640532 -4.894379 -2.193915 -5.981319 2.805222 1.221110 4.645638 -0.661974 1.902081 0.482679 -0.310192 -1.430671 2.791808 0.326165 -0.696527 -2.385526 -2.910584 4.502280 1.940007 -4.966470 1.141718 -4.086826 3.867667 2.714092 1.710359 3.241699 0.978702 0.237550 -1.219610 2.729984 -3.210207 -0.938109 -0.332826 1.627461 -3.121227 -0.578498 2.368627 0.688768 4.161050 -0.104822 2.736751 2.128138 2.522899 0.140345 -4.698867 -1.124533 -1.768832 3.929966 -1.870419 2.847263 0.321941 1.279272 1.073240 -3.523120 -0.536028 -3.979528 0.981549 0.441780 -2.549078 -0.110631 -3.867263 0.338082 -1.115513 -3.382070 2.050108 -1.560795 2.144012 -0.603356 -0.404449 -2.755098 -3.989060 1.508769 1.250708 1.731810 2.302999 1.241793 0.227503 -0.150415 -2.853049 -2.961245 1.399973 0.679848 1.154103 0.775502 -0.946425 -2.261564 1.374196 -0.249230 -0.026058 3.374152 -2.946681 2.302778 -1.918352 -1.851858 -3.328544 -3.765926 0.321071 -2.978151 2.298442 2.540975 -3.140421 1.300863 0.536636 1.659214 0.027756 -4.295396 -0.004250 -1.961449 0.742924 5.019515 -1.843904 -2.931060 -0.847772 -0.689490 -0.360166 3.383066 0.199146 0.980509 4.204922 2.993524 1.996838 -3.687926 -0.379308 0.796336 1.479454 2.546197 2.887608 -3.242972 -2.230554 0.203297 -1.619846 -6.592400 -0.685330 1.212939 3.822867 0.023575 -4.060940 1.476059 -2.591910 3.597682 2.133760 3.221924 1.509994 -0.211328 -2.794318 1.346395 6.025326 -2.030866 2.754173 -1.781317 -4.409636 3.869929 -0.123947 2.671580 0.230883 -0.412455 0.717287 -3.332083 0.426452 4.841967 0.648169 0.352410 2.218907 0.507031 -1.837919 -5.839035 -6.380697 0.586580 2.979855 1.640339 7.459100 -4.257390 -2.537945 -0.981738 4.434417 -1.041136 -1.824161 0.998805 -1.757982 2.170324 -7.561987 -6.171126 6.024830 5.123898 0.992173 -0.781613 4.000843 -0.025310 -2.233943 -3.484491 -3.451481 2.515281 1.597841 -0.275085 -0.172222 0.481190 -4.542457 -0.186384 0.903592 1.514889 3.058948 -3.243839 -0.624479 -1.419175 -4.398789 -3.279796 2.451299 -3.725042 -0.792911 0.472011 0.068498 -0.037996 2.051092 -1.079064 -2.937282 -0.305214 -2.500130 -0.698664 0.611040 3.348199 0.138340 6.011570 5.273739 -0.749690 3.308411 0.981631 -2.898845 10.543533 -3.419849 0.182033 -0.135353 3.332981 -0.409241 1.321419 3.253508 -1.693738 -2.514211 -4.361835 0.588030 -0.077849 1.957645 -6.798897 -2.762186 -5.802690 -0.887336 0.115690 4.851609 0.095720 8.101311 -1.238400 0.859475 -8.370561 0.184243 3.376821 -0.399531 3.477002 2.345384 -4.123850 -5.969610 -0.612206 -3.380775 1.659887 -0.618074 -3.385074 -3.312202 -1.108441 1.742902 -1.498649 1.515694 5.570565 -1.780774 2.496934 -0.066621 -0.967875 -0.488962 -1.904746 2.823787 0.946992 -3.358646 5.142130 -0.044421 10.355767 0.266735 3.317349 -2.647046 0.438184 -0.422166 -2.965794 -2.450319 4.811742 3.623306 2.111264 0.304178 0.643207 -2.057327 2.827833 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.158659 0.424509 3.160669 1.882458 -1.393699 -2.182041 -0.838168 -3.497072 2.046147 0.689967 2.101839 -0.091154 1.168693 -0.583669 -0.154214 0.102463 0.990296 -0.197214 -0.206522 -0.824960 -0.258139 3.065296 0.593274 -1.587940 0.300967 -2.799657 0.896648 1.011150 1.643661 1.420116 0.383567 -0.166286 -0.374221 0.948278 -1.401767 0.213865 0.195924 0.504376 -1.877371 -0.766685 0.330667 0.291534 1.550769 -0.371154 1.888289 -0.260974 1.578267 -0.039566 -1.235278 -0.644358 -1.137065 2.686849 -0.697803 1.206741 0.328095 0.124058 0.028277 -1.288333 -0.406886 -1.445041 0.135768 0.417893 -1.092376 -0.119997 -1.415766 0.380588 -0.184811 -1.038386 0.658007 -0.905911 1.229929 0.116747 0.367831 -1.014244 -2.657748 0.645115 0.249922 0.628757 0.921045 0.862161 0.242330 -0.327253 -0.975269 -1.288897 1.357050 1.269580 0.116159 0.443061 -1.034017 -0.574410 -0.026777 -0.429130 0.122147 1.220005 -2.061340 0.719019 -0.530658 -0.597082 -0.972040 -1.536929 0.166652 -1.394582 0.726188 0.600902 -0.207788 0.684835 0.506769 0.596227 -0.307389 -1.795862 0.402085 -0.476555 0.069928 2.565966 -1.138512 -0.821720 -0.501140 -0.002920 -0.801662 1.435475 0.040369 0.860588 1.771351 1.335042 1.288528 -1.682555 -0.349481 1.302152 1.338058 1.130484 0.787763 -1.680467 -0.708708 0.304620 -0.466537 -3.338648 -0.772931 1.140806 1.909549 0.228577 -1.477524 0.238554 -0.555899 2.105592 1.107458 0.411606 0.610539 0.313512 -1.362145 0.803338 3.319924 -0.788210 1.303085 -1.128039 -1.313965 1.577891 -0.770154 1.365875 0.001925 0.209331 0.339232 -1.557491 0.233139 2.076078 0.304522 0.475073 0.034919 0.568136 -1.087005 -3.104921 -3.331105 -0.443526 1.245343 0.370153 3.296982 -1.604129 -1.655749 -0.476722 2.094334 -0.605276 -0.812959 0.849289 -1.758884 1.145373 -3.088678 -2.867875 3.445415 3.245689 0.915241 -0.075611 2.229584 0.685780 -1.714398 -1.261016 -1.028620 0.957721 1.014755 -1.699207 -0.319833 -0.000447 -2.227314 -0.815841 0.135599 0.415951 0.544457 -0.110384 0.935866 -0.325941 -1.763788 -1.160032 1.532248 -1.596345 -0.432783 -0.182533 0.451653 -0.086318 1.276672 -1.105246 -0.628964 0.734502 -1.232371 0.009976 0.454762 1.038815 0.205564 2.410093 2.755697 -0.126946 2.549514 0.100701 -1.365503 4.031817 -1.332183 -0.137281 -0.204765 0.782789 -0.140215 0.787705 0.920071 -0.949959 -1.082522 -1.937651 0.167448 -0.048964 1.040945 -1.855912 -2.069204 -2.145056 -0.665733 0.173062 1.676924 0.209535 3.677845 -1.271009 0.566301 -4.693939 0.203767 1.474828 -0.031813 1.488738 0.852122 -1.547013 -2.775170 -0.271099 -1.298084 -0.518749 -0.561842 -2.299343 -1.193055 -1.813585 2.018694 -1.407111 0.545531 2.226111 -0.182250 1.757556 -0.551696 -0.174583 -0.968550 -0.054563 0.834065 0.403315 -1.500315 1.817066 -0.149589 4.844175 -0.568073 1.367232 -1.273913 0.985114 -0.762050 -1.866906 -0.695579 2.251613 1.890751 0.635204 -0.333561 -0.151474 -1.199135 1.321744 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -0.363260 1.172956 4.385072 1.478912 -2.256130 -2.979690 -1.424912 -4.914620 1.829981 1.225452 3.435583 -0.641228 1.631664 0.334877 0.032055 0.007331 1.789766 -0.655877 0.385355 -1.465615 -1.440324 3.158372 0.587349 -0.805282 0.654228 -3.212939 1.909127 1.090761 1.470282 1.945728 0.773189 -0.122548 -0.932479 1.359353 -1.055001 0.332539 0.574656 1.109171 -1.861250 0.248359 0.516868 -0.216568 2.303660 -0.125103 2.172234 0.989191 1.150194 0.289352 -2.180781 -1.058731 -0.879278 2.385816 -1.345439 1.343552 0.357480 -0.216688 0.091745 -1.511552 -0.451092 -1.352126 0.015923 -0.516004 -1.411394 0.374795 -2.037087 0.579030 -1.377942 -1.527603 0.725968 -0.894133 1.478735 -0.003516 0.087091 -0.120684 -3.209310 0.956299 0.833958 0.743951 1.270683 0.176393 0.153947 0.055009 -1.903413 -2.299092 1.621771 1.856725 0.730793 -0.015871 -1.570311 -0.450488 0.202648 -0.186979 0.419777 2.184240 -2.118276 0.918204 -1.218235 -1.323115 -2.096180 -3.437463 0.261132 -1.961994 1.417647 0.928067 -1.323456 0.182081 -0.402892 0.988684 -0.444280 -2.665690 0.402745 -1.109393 0.383232 3.415290 -1.400439 -1.277253 -1.340676 -0.561314 0.001212 1.717161 0.560572 0.691610 2.579813 1.979736 1.460866 -2.242573 -0.940309 0.912085 1.235590 1.227245 1.438885 -2.219755 -1.404643 0.471236 -1.489739 -4.149328 -1.135367 0.805375 2.300748 -0.591851 -1.409764 0.479108 -1.552469 2.160160 1.976164 1.366313 0.728935 0.091471 -1.830675 1.072956 3.517100 -1.319995 1.983228 -1.260906 -1.807268 2.042447 -0.673420 1.574441 0.454158 0.150650 -0.358105 -1.942217 -0.025622 2.805200 0.719063 0.912770 0.403146 0.622702 -1.207215 -3.111369 -4.148853 0.062035 2.503366 0.546825 3.528842 -2.524308 -1.662622 -0.116862 3.046274 0.030025 -1.693767 0.995428 -1.341137 1.301218 -4.021877 -3.556117 3.800766 3.889556 1.247252 -0.472890 2.043849 0.871167 -2.819781 -2.055146 -1.937741 1.889752 0.040876 -2.387883 -1.010583 0.479027 -2.745461 -0.236863 -0.192731 1.063085 1.635136 -0.618206 0.825436 -0.172529 -2.129132 -1.518276 2.032590 -1.671942 -1.099620 -0.017066 0.079022 0.181925 1.318380 -1.145371 -0.849954 0.683881 -2.006910 -0.038944 1.019433 1.557711 0.016201 4.130173 3.080631 -0.425212 1.786733 -0.110352 -1.606597 4.557341 -1.662582 0.253952 -0.185634 1.228018 -0.476754 0.920911 2.114676 -1.047994 -2.497855 -2.593440 -0.134757 -0.084642 1.441755 -1.840347 -2.628101 -3.628101 -0.145135 0.267928 3.467232 0.369137 4.796425 -0.703753 1.078416 -4.690730 0.273221 1.360197 -0.378719 2.149241 0.986673 -2.133283 -2.503295 -0.453614 -2.577806 -0.879282 -0.217524 -2.028557 -1.911213 -1.523041 1.757956 -0.979794 0.289466 2.137410 -0.348647 2.097552 0.531570 -0.716763 -1.304857 -0.021362 2.553358 0.105756 -1.955200 2.812576 0.295673 6.532137 -0.232885 1.653986 -1.128402 0.218045 -0.161071 -1.901250 -1.181699 3.077911 2.722820 1.321159 -0.573052 -0.091096 -0.760375 1.545643 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp___GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -2.629364 3.148144 11.656781 11.787156 -8.703015 -10.122145 -3.378545 -5.956721 3.979849 0.820378 6.694585 -0.264662 2.740212 0.644387 -0.629416 -4.445878 4.590618 1.581645 -2.704734 -3.992619 -6.850193 7.812230 5.857421 -11.857032 2.032771 -5.660458 7.680195 5.680880 1.697312 7.055830 0.171686 0.930311 -1.222720 5.142861 -6.686105 -2.914408 -3.217828 2.542567 -3.816981 -1.622508 6.050472 0.546337 8.559444 0.333001 2.861155 5.082976 5.330763 -0.310768 -9.893687 -2.368472 -3.970443 5.026160 -3.485572 5.619832 -0.666445 4.090666 4.604186 -6.153947 -0.457360 -10.095687 2.245817 1.430644 -4.856844 -1.198363 -7.847009 0.010088 -1.699089 -7.589529 3.851641 -3.429487 3.445996 -0.773456 -1.142300 -6.982867 -5.545401 2.646140 2.133906 3.687098 3.605648 3.740347 -1.512368 -0.214196 -5.728712 -4.424474 0.672032 -3.316857 2.615721 2.551321 -0.391361 -5.889882 3.562993 0.423649 -1.210344 5.244012 -3.512542 5.295442 -1.566531 -2.736530 -5.923577 -5.432119 -0.214040 -4.584071 3.041607 6.034197 -6.072512 2.127961 0.037452 2.139955 0.250963 -8.219682 -0.037028 -4.200969 -0.358314 6.221938 -3.235475 -4.513285 0.266541 -0.701224 0.262822 6.901936 -0.872342 1.255846 6.674311 4.508302 2.520627 -5.916066 1.423800 -0.671499 2.773352 3.787837 5.798020 -4.042923 -4.222903 -0.048690 -2.505021 -11.534402 -0.005895 4.279297 6.998169 2.007768 -9.913204 5.217207 -4.636280 5.846657 3.446817 6.818411 3.031830 -1.258810 -4.874928 2.254615 10.843821 -4.069613 4.943314 -2.942238 -10.459414 10.704498 0.027125 4.644349 -0.133744 -1.499995 2.216077 -5.353893 1.687139 8.802206 1.126291 -0.308223 6.700466 -0.363870 -1.621614 -10.992429 -10.554298 0.985460 4.978372 5.200315 15.428332 -7.944466 -2.484163 -2.270367 6.187530 -3.582963 -2.761798 -0.027393 -1.632760 3.111487 -17.708698 -11.632905 11.258475 7.478405 0.290878 0.431232 6.771016 -0.582294 0.989794 -6.056475 -6.709621 3.808645 3.462224 3.649766 0.903299 0.428394 -8.343624 0.266511 2.064865 2.069572 6.131742 -9.639078 -3.996808 -5.668198 -8.675295 -7.187237 1.662249 -8.171478 -0.869522 1.777402 -0.325746 -0.232970 2.531553 1.371991 -6.099979 -2.990326 -3.832247 -2.265098 -0.657119 6.617342 1.430330 10.260924 10.280031 -2.124656 4.078504 3.047572 -4.894878 22.196323 -8.047958 -0.048804 -0.239041 9.791809 0.794093 2.925458 6.073604 -2.292782 -1.691973 -7.303253 3.070348 0.945060 1.924392 -17.295956 -3.465683 -11.533315 -1.817546 0.131144 8.975454 -1.308512 14.296504 -2.025589 0.471101 -15.538132 0.185565 6.245308 0.010437 6.074702 4.792638 -7.852440 -11.292274 -1.324069 -4.644952 8.106204 -1.196803 -5.389003 -4.747715 1.167039 -0.510809 -3.299383 3.949301 10.393056 -4.861770 3.589464 0.787129 -1.471702 -0.332689 -5.017268 4.136614 2.747990 -4.351468 9.780431 -0.201369 15.312905 1.291450 6.487202 -5.136550 1.513497 -0.289123 -5.366607 -4.667128 8.006738 5.220674 2.406367 3.007089 2.426595 -2.811814 5.390095 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -1.372726 2.756359 14.463119 7.884705 -6.862209 -10.427392 -4.471229 -13.692836 7.042638 3.615086 9.747736 -1.687306 4.349224 0.448990 -0.930537 -1.337657 3.992843 -1.890363 -0.379954 -3.933483 -5.952145 12.325050 3.841834 -6.257695 1.655654 -12.926560 7.335654 4.036640 4.871768 7.160565 1.090289 0.203780 -1.065873 4.970807 -5.922354 0.627844 -0.285459 3.171627 -4.687846 -1.075559 4.009474 0.762976 8.039612 -0.434582 6.719360 3.137566 5.150637 -0.465684 -7.482427 -3.311577 -3.764412 8.081282 -3.890502 4.738350 0.324516 2.326483 1.814324 -7.188388 -1.738957 -6.832397 0.759071 1.236087 -5.831833 0.309968 -7.691817 1.526881 -2.694619 -5.552138 3.338094 -4.019603 5.037422 0.270511 0.044348 -4.277561 -10.155778 3.653659 2.039616 2.030609 3.500642 2.121401 -1.595906 0.664728 -6.763548 -6.700731 4.713744 4.513946 1.599383 0.803785 -2.615020 -3.847281 0.718658 -0.810132 -0.033382 7.700963 -6.892563 3.883298 -2.112021 -3.684433 -7.054625 -8.362275 0.338539 -6.782668 4.094220 5.256882 -4.410741 1.795382 1.500111 2.472098 -0.480345 -9.467487 0.491577 -4.433757 1.989268 9.877506 -4.504253 -4.006449 -2.940226 -1.452165 -0.835465 6.684685 -0.154081 2.004528 10.168513 5.490968 4.589703 -7.107513 -1.016373 3.338161 4.329575 3.700622 4.445821 -8.008962 -3.806249 0.509006 -2.485909 -14.747301 -2.981664 3.740266 7.287778 -0.871571 -7.579962 4.061998 -3.431849 8.075279 6.128471 3.995160 2.667035 0.443596 -5.587699 3.282120 14.542937 -3.976676 5.592869 -6.312204 -9.264092 10.482149 -2.785736 6.500267 1.139545 1.084671 0.283099 -7.401863 2.263974 9.789528 0.442785 2.087692 3.684309 1.295623 -1.870483 -11.502882 -14.093927 -0.247447 6.341518 3.411460 16.588254 -8.975669 -4.698192 -1.665451 9.487390 -1.037781 -3.674033 2.442531 -4.676818 3.826707 -16.793289 -13.623755 13.272628 12.632582 3.292755 -0.155493 9.295826 1.892216 -4.377151 -6.351042 -6.904553 5.864265 3.461083 -3.128640 -0.644333 0.353118 -9.745654 -1.596125 -0.734536 2.297693 5.839738 -5.221352 0.019923 -4.238376 -8.946172 -6.802198 5.600266 -7.844321 -2.738136 -0.357850 1.097635 -1.217127 4.456730 -2.059907 -3.539411 0.669679 -5.084819 -0.212111 3.025573 4.574670 0.255269 12.458572 12.397355 -2.247347 6.774876 0.684350 -3.744634 19.334110 -6.930441 -0.959316 -0.323270 6.313198 -0.658587 3.752450 6.101682 -3.166384 -4.996687 -7.986909 3.605705 -0.355275 2.813382 -11.020988 -7.454347 -12.778919 -2.850931 0.625955 11.045501 1.596199 16.818711 -2.681513 2.711208 -18.744851 0.747742 6.043725 -0.088795 7.112531 3.882700 -7.864654 -10.438626 -1.381031 -6.083649 0.591695 -1.610652 -9.003673 -6.337146 -4.856939 4.239757 -4.478649 3.284497 9.870186 -1.545250 5.518015 0.188495 -1.584231 -4.123954 -1.660992 6.035377 1.485428 -5.365710 9.259277 -0.621723 19.928227 -2.224582 6.991431 -4.915931 3.659559 -1.834565 -7.331045 -3.477079 9.576063 6.908767 2.807485 -0.474965 -0.222716 -3.576828 5.819097 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.228229 0.893359 3.756670 1.310223 -1.708923 -2.915519 -1.143998 -4.182894 1.762953 1.085116 2.819607 -0.525624 1.435802 0.152337 -0.081646 0.050644 1.285721 -0.603542 0.228278 -1.156386 -1.456379 3.089712 0.554813 -0.683203 0.547277 -3.289381 1.781915 0.980058 1.362171 1.859295 0.490049 -0.059703 -0.581197 1.164423 -1.089247 0.427074 0.316370 0.892651 -1.394655 0.092615 0.539373 -0.158025 2.083621 -0.050186 1.899920 0.875663 1.074030 0.158360 -1.700795 -1.014463 -0.833170 2.003935 -1.037886 1.173493 0.072573 0.037732 0.274491 -1.437194 -0.347944 -1.246812 0.024261 -0.186637 -1.437515 0.252775 -1.910344 0.446649 -1.077231 -1.410880 0.580552 -1.031893 1.312816 0.061079 -0.015133 -0.408364 -3.022798 0.789767 0.659431 0.501309 1.004404 0.290391 -0.251338 0.085953 -1.896293 -1.973469 1.527899 1.707785 0.579316 0.149567 -1.331745 -0.687111 0.030817 -0.182999 0.386562 1.958495 -1.823316 0.772346 -0.731938 -1.074523 -1.899675 -2.887566 0.271005 -1.658530 1.127458 0.857922 -0.901265 0.181664 -0.040584 0.730574 -0.317575 -2.384855 0.362255 -1.168258 0.441355 2.833565 -1.168472 -1.011734 -1.190534 -0.534926 -0.067906 1.608476 0.278082 0.436720 2.488156 1.533141 1.308374 -1.897199 -0.700246 0.937861 1.136178 0.930978 1.078108 -2.072410 -1.070537 0.380947 -1.178494 -3.870278 -1.040112 0.870697 1.960632 -0.564644 -1.401036 0.825511 -1.137167 1.879116 1.795335 0.954998 0.659275 0.159290 -1.551738 0.887808 3.467477 -1.096401 1.620220 -1.508669 -1.894686 2.258011 -0.696029 1.496416 0.405664 0.171896 -0.289079 -1.660844 0.382147 2.469331 0.379677 0.775708 0.536937 0.533193 -0.869246 -2.714917 -3.736669 -0.088757 2.129097 0.694526 3.667264 -2.329459 -1.263113 -0.255343 2.641178 -0.083961 -1.266603 0.836807 -1.289263 1.053369 -3.955480 -3.301125 3.455148 3.490921 1.198688 -0.220137 2.015287 0.774379 -1.909065 -1.708282 -1.703335 1.553408 0.349336 -1.934344 -0.684538 0.227196 -2.552200 -0.306995 -0.369950 0.771245 1.415505 -0.690439 0.676567 -0.808903 -1.972926 -1.612418 1.630187 -1.649058 -0.828100 -0.080730 0.187859 -0.135746 1.153738 -0.793819 -0.623897 0.553660 -1.585746 0.101473 0.941398 1.103701 0.035084 3.602468 2.959605 -0.549374 1.627303 -0.138771 -1.135002 4.250177 -1.576145 0.054898 -0.117869 1.373261 -0.235903 0.966689 1.793658 -0.879536 -1.775817 -2.166667 0.308551 0.048253 0.957188 -1.742837 -2.256863 -3.462198 -0.404411 0.084849 3.207985 0.395736 4.225455 -0.655525 1.001204 -4.410505 0.290676 1.193587 -0.219853 1.804061 0.817864 -1.936207 -2.151927 -0.354848 -2.068345 -0.793206 -0.269682 -2.049753 -1.611094 -1.397390 1.247034 -1.077583 0.454977 1.976476 -0.243162 1.680455 0.200872 -0.444211 -1.331684 0.008318 2.139426 0.100552 -1.494564 2.238248 0.159307 5.401947 -0.413713 1.663235 -0.986422 0.689935 -0.326916 -1.937976 -0.964699 2.583228 2.117040 0.881127 -0.373133 -0.118781 -0.574011 1.446206 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp___GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -0.220620 0.501655 3.316184 2.579200 -2.364891 -1.718424 -1.015283 -1.897129 0.583061 -0.103398 1.721790 -0.774235 -0.239990 0.564422 -0.265541 -0.874656 0.597421 -0.046779 -0.524158 -1.122910 -1.036223 1.186550 1.522966 -3.345783 0.756335 -2.044429 1.761084 1.321214 0.472782 1.681942 -0.565950 -0.387996 -0.200099 1.534854 -1.608543 -1.018993 0.225251 0.382220 -1.439716 0.675626 1.192273 1.195964 1.652355 -1.303994 1.066795 1.940900 1.099435 0.203897 -2.953244 -0.175687 -0.138978 1.266818 -1.058479 1.650196 -0.109381 1.111233 -0.438478 -2.250394 -1.166095 -2.503668 0.506849 0.832473 -0.445088 -0.081279 -2.070607 0.145012 0.480143 -2.208779 1.948642 -0.383564 0.882192 0.376526 -0.232911 -1.207566 -0.369011 1.258945 1.329172 1.808684 0.065929 -0.944186 0.916101 0.397739 -0.867336 -0.526137 -0.936839 -0.024731 1.176631 -0.293891 1.065044 -0.801226 1.802798 0.154991 -0.717997 1.527849 -0.468151 0.733173 -1.994614 -0.559027 -1.921568 -1.391346 -0.453219 -1.187529 1.731116 1.784459 -2.173255 1.625469 1.535908 1.852407 0.573485 -2.162199 -0.885125 -0.187036 1.227224 2.217944 -0.394806 -1.424676 -0.061015 -0.158016 -0.673671 1.290491 -0.935139 0.573719 2.359830 1.930516 0.778597 -1.904888 -0.347721 -0.732444 0.621047 1.724468 2.361113 -1.473772 -1.063045 -0.811018 -0.747726 -2.834390 -0.004165 -0.644429 2.121747 -0.647339 -2.444173 0.999883 -1.635025 2.967437 0.643172 1.241318 0.616374 -0.502230 -1.542155 1.310071 3.038357 -0.896379 1.094319 -1.743444 -2.026372 1.429175 1.040815 1.207109 0.243104 -0.193931 0.832184 -2.199422 0.304317 1.998367 0.882224 0.389492 1.382720 -0.006795 -0.239342 -3.048132 -1.884210 0.082470 0.343472 0.133196 3.861555 -2.023858 -1.842039 -1.350659 1.712196 -0.440870 -0.312162 -0.165020 -0.942161 0.836678 -3.139683 -3.085197 2.355793 3.267157 0.517738 0.590063 2.401466 -0.500240 -0.421297 -0.866150 -0.931774 1.138550 0.969825 0.250841 -0.640087 0.311003 -1.618436 -0.288436 0.812398 1.000998 1.477632 -1.358929 -1.994974 0.217752 -2.893774 -1.729248 0.699810 -2.547487 0.122740 1.058152 0.060049 0.475582 0.826541 -1.010157 -1.637534 -0.541392 -1.080001 0.227458 0.326813 2.142487 0.090478 1.306304 2.173383 -0.029280 2.108035 1.061350 -1.469803 4.894456 -1.306549 0.391598 0.325662 1.266268 -0.796912 0.509449 1.357926 -0.666782 -0.175964 -1.918639 0.821113 -0.230124 0.889296 -3.625526 -1.286764 -1.948289 -0.515784 0.601107 1.420443 0.408023 3.395445 0.097163 0.427781 -4.346642 -0.443646 1.204492 0.593775 1.517848 1.359571 -1.820343 -4.657056 0.224395 -1.302262 0.980466 -1.084629 -1.731779 -1.614012 0.401290 0.581297 0.468933 0.728172 3.185946 -0.476707 1.151412 0.011523 -0.721390 0.401571 -2.111883 1.047621 0.916308 -1.361365 1.769127 0.332217 4.989461 0.522343 1.244525 -1.544125 -0.558206 0.746292 -0.743892 -1.003747 2.092328 1.091794 1.109803 0.328966 -0.408491 -1.235900 1.305685 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -20.648504 13.775379 118.401515 69.987039 -13.855522 -48.431545 -31.681231 -59.569874 53.033994 15.190744 74.918450 0.303955 31.310822 11.511336 -3.308196 -36.066724 23.959872 -22.959511 -7.526614 -22.594153 2.122963 99.897394 60.509397 -80.920125 2.811299 -114.558390 47.906107 24.134101 43.108307 83.671345 -5.515252 5.069824 16.300118 42.249589 -58.570490 -19.387055 -15.440098 16.542884 -21.839410 -20.970786 48.516504 48.513699 52.527770 17.016687 32.294951 24.542890 38.452611 -22.530799 -32.026211 -22.209043 -47.451294 63.034183 -44.438173 29.166012 -16.358356 46.569431 20.442520 -54.960301 -16.320478 -93.198368 16.445191 52.195051 -38.152555 -9.153813 -56.199245 18.040996 -21.551252 -22.506805 24.037785 -29.581871 48.075190 14.852932 15.412854 -57.987854 -63.840816 40.477774 -13.483954 23.860456 26.266544 1.631761 -43.340407 16.874584 -27.329092 -42.753560 28.950201 3.787122 -0.197271 8.601035 18.162911 -36.479446 -10.520273 8.298315 -32.459214 54.285384 -38.855374 53.551832 -3.671693 -17.295289 -10.417669 -2.781232 -15.631235 -69.315882 9.251534 67.170159 -22.900283 15.326055 -8.157638 10.819243 -7.960717 -66.278457 12.999847 -3.657321 -27.434700 52.723379 -51.682718 -17.137239 3.351138 12.180434 6.837767 71.102648 -17.808966 35.076775 52.514495 40.828801 14.582834 -50.205887 28.258264 21.885463 42.151310 30.330014 44.089700 -44.711663 -39.451374 -13.992415 7.094547 -105.962676 11.276292 45.938862 54.094636 21.035232 -100.208675 48.848251 -27.539897 67.979113 64.503920 35.512908 32.432086 -3.419655 -46.381955 38.355631 127.532761 -44.625898 52.672611 -48.503351 -75.864929 102.799474 -46.870534 59.189481 -15.738529 22.231671 36.435590 -66.960957 8.750862 89.034537 11.394140 35.683692 51.208674 -8.915633 35.774107 -101.364280 -93.081310 -28.620845 25.962945 19.109808 119.212512 -42.581810 -18.736189 -15.206668 54.235315 -22.096176 -22.297795 -2.850587 -19.076983 19.051193 -164.362962 -99.388651 106.886844 96.421795 0.341072 11.723800 61.195861 38.392439 24.806918 -26.106063 -40.066579 51.800342 25.029709 20.437103 15.039266 -9.477330 -55.173072 -26.594985 7.567708 4.266533 29.634113 -69.306694 -37.727996 -7.190590 -86.585679 -49.220298 30.566444 -89.718908 -37.348896 -7.095856 -0.526637 -13.801207 15.770264 -4.772916 -24.775115 29.806539 -37.212892 -26.888685 11.981669 47.406582 21.712237 47.921294 81.323136 -2.614283 29.634481 33.912305 -33.336197 159.541822 -59.167496 -26.873552 -2.512723 57.121358 1.137716 45.018494 9.242676 -17.050954 -31.341207 -69.120441 65.744558 -1.361943 22.236393 -90.283009 -49.374763 -50.941635 -27.371772 27.512533 77.793741 0.361213 146.475308 -21.762479 7.523801 -135.731125 -0.641297 65.263348 7.600298 49.253610 49.337466 -49.110783 -94.192522 -22.076118 -16.392315 63.836597 -16.773546 -85.507514 -46.936898 -40.015590 39.839213 -57.299849 50.091301 69.560148 -10.065632 43.822195 12.548769 -21.725676 -34.983674 -18.199405 9.807647 42.169786 -41.266443 69.160733 -28.591139 104.820464 -47.142204 66.171133 -65.260764 35.617429 -26.785847 -33.856781 -21.473716 89.560502 55.550001 13.744477 14.481045 -10.542012 -28.516330 42.537440 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = -4.318851 2.925507 24.801772 13.818450 -3.073110 -10.721148 -6.764822 -13.759797 11.211576 3.528580 16.323416 -0.172438 7.032197 2.246362 -0.408399 -6.775846 5.448563 -5.130667 -1.100235 -4.953503 0.299242 21.184069 12.141492 -15.626851 0.774921 -24.017750 9.777915 5.001379 9.095683 17.364281 -0.811654 0.912670 2.973979 8.629238 -11.725915 -3.290833 -2.610253 3.602748 -4.912824 -3.970498 9.430784 9.419699 11.101864 3.327370 7.362052 5.025389 8.036816 -4.317738 -6.769162 -4.995863 -9.774868 13.412682 -9.362253 6.074317 -3.233386 8.855495 4.047685 -11.139542 -3.521882 -18.871051 3.071153 10.051571 -8.087092 -1.615640 -11.645857 3.999879 -4.863101 -4.667578 4.803694 -6.129548 10.181580 3.108575 3.178542 -11.023136 -13.999149 8.287808 -2.497346 4.887177 5.535813 0.127878 -8.689229 3.367499 -6.057346 -9.336436 6.725409 1.697093 0.231223 1.656975 2.670285 -6.988703 -2.402037 1.571747 -6.178250 11.353726 -8.468906 10.731029 -0.700090 -3.913786 -2.638959 -1.775477 -2.958654 -14.418185 2.131000 13.521777 -4.452620 2.887159 -2.221182 2.495727 -2.149305 -14.067823 3.011738 -0.957415 -5.667040 11.579853 -10.957487 -3.481094 -0.022194 2.314489 1.458212 14.701176 -3.219860 7.375816 11.127320 8.853934 3.335378 -10.636357 5.122547 4.791450 9.182797 6.293375 9.060638 -9.611051 -8.379995 -2.459200 0.643637 -22.396821 1.495196 9.680161 11.635384 3.969195 -20.240566 9.924809 -5.878538 14.294866 13.766437 7.187691 6.571581 -0.548571 -9.988951 8.162042 26.489242 -9.408243 11.330194 -10.040804 -15.263560 21.038907 -9.837623 12.140057 -2.803021 4.562713 6.876072 -13.801960 1.617344 18.492115 2.843133 7.731238 9.840593 -1.365631 6.753819 -21.041565 -20.028904 -5.925688 6.173860 3.805824 24.542712 -9.156728 -4.351283 -2.990625 11.785702 -4.366193 -5.276323 -0.202012 -4.426079 4.157288 -33.990046 -20.781243 22.797927 20.733549 0.874725 2.349311 12.746611 8.442790 3.661684 -5.610687 -8.408118 11.070083 4.742067 2.454546 2.423800 -1.748687 -11.903848 -5.631224 1.078197 1.218392 5.979643 -13.405931 -6.744961 -1.280540 -17.740534 -9.874064 6.740047 -18.236644 -8.013326 -1.560095 -0.151266 -2.571720 3.500337 -1.504568 -4.667143 6.550585 -8.354171 -5.312257 2.874507 9.828253 4.557175 10.970086 17.273360 -0.609782 6.531539 6.405696 -7.225755 32.395066 -12.096904 -5.225834 -0.712889 11.500181 0.220462 9.227444 2.504989 -3.674041 -7.312610 -14.580859 12.961080 -0.071885 5.065689 -17.653893 -11.047071 -11.347022 -5.365078 5.701553 16.907925 0.150102 30.597865 -4.700670 2.015977 -28.487617 0.058729 13.141406 1.377366 10.267680 9.922987 -10.218018 -19.321681 -4.533820 -4.277042 11.673838 -3.404436 -17.709266 -9.869710 -8.919844 8.861422 -11.992032 9.829353 14.053857 -1.780279 9.675265 2.970798 -4.624923 -7.789180 -3.123649 2.892627 8.339600 -8.812527 14.468207 -5.471833 23.002024 -9.663809 13.608394 -13.254812 7.350043 -5.503244 -7.379216 -4.464159 18.826466 12.309461 2.958134 2.617291 -2.260229 -5.667127 8.910188 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -0.610048 0.899212 6.047945 2.502749 -0.917401 -3.016585 -1.691959 -4.883471 2.976975 1.177410 4.315287 -0.263323 2.083468 0.330723 -0.064975 -0.747248 1.557485 -1.390010 0.222295 -1.340894 -0.115780 5.507177 2.083213 -2.338617 0.285375 -6.029511 2.181810 1.110212 2.723882 3.888651 0.151423 -0.035966 0.324107 1.891782 -2.288082 -0.203270 -0.118035 1.034408 -1.791916 -0.582819 1.437078 1.477052 2.727531 0.530324 2.280718 0.822590 1.959686 -0.672149 -1.388206 -1.312612 -2.301566 3.583145 -2.179680 1.439466 -0.558686 1.087506 0.515497 -2.201537 -0.862339 -3.330579 0.287950 1.586901 -1.987634 -0.089382 -2.780084 1.104469 -1.623031 -1.133627 0.880599 -1.336390 2.539216 0.851899 0.848045 -1.717391 -4.359471 1.868975 -0.287709 1.075503 1.414178 -0.007305 -1.408267 0.645425 -1.801982 -2.636312 2.333236 1.650852 0.179542 0.161144 -0.429523 -1.225259 -0.811082 0.208718 -0.795636 2.775770 -2.514306 2.205102 -0.716792 -1.110511 -0.992385 -1.869538 -0.460242 -3.425222 0.802727 2.380162 -0.700512 0.547266 -0.470311 0.746700 -0.651652 -3.549722 0.838377 -0.346794 -1.064985 3.635706 -2.546631 -0.896017 -0.701447 0.321052 0.031020 3.164950 -0.248527 1.766183 2.924932 2.346824 1.267486 -2.736423 0.392187 1.611542 2.253899 1.551579 1.976644 -2.603275 -2.022169 -0.220063 -0.331803 -5.789810 -0.336251 2.262224 2.931106 0.263049 -3.736395 1.770524 -1.471273 3.460124 3.492883 1.278309 1.489674 0.085987 -2.490273 2.081836 6.280729 -2.170326 2.820954 -2.578306 -2.997020 4.472782 -2.379719 2.783153 -0.459567 1.129126 0.993065 -3.211697 0.264620 4.334518 0.741636 1.956230 1.580758 0.109425 0.732626 -4.929196 -5.208127 -1.313824 2.170785 0.639763 5.420605 -2.399813 -1.492518 -0.395054 3.205516 -0.607063 -1.608019 0.571028 -1.677700 1.265972 -7.481094 -5.047583 5.689458 5.518193 0.823789 0.278312 2.959555 2.387931 -0.829230 -1.715359 -2.058674 2.761574 0.777490 -1.524622 -0.286332 -0.184903 -3.160391 -1.318031 -0.039231 0.543077 1.429444 -1.947946 -0.307530 -0.177803 -3.867107 -2.240571 2.370673 -3.812645 -1.975188 -0.465922 0.063470 -0.468559 1.242982 -0.956866 -0.657746 1.962637 -2.308313 -0.791787 1.045439 2.065630 0.762032 3.423451 4.350658 -0.149735 2.052050 0.962895 -1.902133 6.878307 -2.618159 -0.906004 -0.242834 2.096579 -0.289144 2.195714 1.031323 -1.094973 -2.536867 -3.625795 2.196693 -0.036359 1.512287 -2.737646 -3.287665 -3.185694 -1.065693 1.223408 4.385190 0.343813 7.268026 -1.379810 0.955615 -6.876460 0.186216 2.686433 0.149265 2.766676 2.020025 -2.427132 -3.911813 -1.052291 -1.714525 0.994331 -0.789374 -4.282492 -2.462855 -2.740418 2.653812 -2.808997 1.756069 2.891695 -0.122126 2.824519 0.517032 -1.075947 -2.390878 -0.009425 1.574121 1.483560 -2.318164 3.328297 -0.934726 6.602831 -2.159291 2.972458 -2.821953 1.546621 -1.226900 -2.210416 -1.048183 4.664959 3.375530 0.921737 -0.022589 -0.737485 -1.162946 2.126904 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp___GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -2.028603 2.138656 10.695123 8.539460 -5.528910 -6.959534 -2.529454 -4.713525 2.846601 0.870306 5.626106 -0.328570 1.379388 3.076879 0.086604 -3.263978 1.841592 1.246980 -1.870936 -2.302602 -3.907271 5.257253 5.675247 -9.446811 0.964225 -5.675763 4.661204 3.906081 1.155124 5.414451 -0.202078 0.431349 -1.025556 3.646633 -5.749870 -2.002808 -1.920633 1.332994 -2.023615 -1.369571 4.134942 1.719175 4.578846 0.460041 3.451285 3.706217 4.701434 -0.572121 -6.034725 -1.347482 -3.095874 5.671740 -2.557017 3.751911 0.298935 5.032090 1.430849 -5.520755 -0.799336 -10.244301 2.341029 2.267055 -3.781035 -0.729398 -5.497554 0.397904 -1.220579 -4.538182 2.957176 -2.488372 3.352424 -1.392968 -0.337976 -5.711467 -3.674746 1.726683 -0.524375 2.468606 2.174282 1.340118 -2.889831 0.743365 -3.182027 -2.917978 -0.329668 -2.064855 0.211647 0.325812 0.956025 -3.136874 1.786052 -0.411260 -2.500039 4.894667 -4.278127 5.645275 -0.792471 -1.358892 -4.090089 -2.529075 -0.214063 -4.318469 2.231727 4.831494 -3.496780 1.167406 -0.199889 1.746708 -0.029198 -6.563936 0.206969 -1.283933 0.060777 3.554812 -3.451847 -2.167046 1.951628 -0.637048 -0.028738 5.914631 -0.927678 1.406831 4.314457 3.410840 1.482895 -3.784263 1.511680 0.442638 2.983371 3.555345 3.916019 -4.085739 -2.480696 -0.179977 -0.986832 -8.664571 2.071523 4.256892 4.673710 1.977543 -8.050423 2.360315 -2.885184 5.479206 3.082606 6.397621 1.787938 -1.088128 -3.342932 1.054928 10.797549 -2.963730 4.282214 -1.603681 -7.641696 8.221308 -2.035356 4.840587 0.424684 0.895448 2.592771 -4.545282 -0.652698 6.903208 2.314221 0.461041 5.842193 -0.499339 -1.197246 -9.239394 -7.906351 -0.543700 2.895841 2.284311 11.393524 -5.265887 -2.828991 -2.026405 5.660550 -2.705232 -2.284871 -0.365201 -0.652282 1.844976 -13.095142 -8.496331 7.653964 6.887472 -0.032731 -0.407339 6.885215 0.169586 0.527986 -4.174802 -4.711404 2.789238 1.491574 4.556066 1.388903 -0.743999 -6.467452 0.741139 0.657558 1.328363 3.936065 -5.481356 -4.001860 -0.899239 -7.154721 -5.067211 0.757854 -6.525020 -1.870807 0.624634 0.528602 -0.704816 0.438218 -0.399934 -4.286893 0.171898 -3.941658 -1.080520 1.088037 3.557075 1.718409 8.993402 5.916184 -0.289628 3.633545 2.254032 -2.974869 18.284607 -5.272076 -0.622915 -0.125921 6.318069 -0.788281 1.945959 2.730668 -1.516558 -3.123012 -4.775643 3.313554 -0.918126 2.012996 -11.544846 -4.451889 -6.751074 -1.700120 1.134065 5.832057 -0.617980 11.652698 -0.441115 1.436110 -13.142692 0.168913 5.439349 -0.705906 3.725179 3.654165 -5.380093 -9.811595 -0.495707 -1.388091 6.062433 -0.885641 -5.384631 -3.228697 -0.838789 -0.563462 -2.718956 3.064705 7.462575 -2.841325 2.857170 1.155242 -1.416658 0.296456 -3.212976 3.226738 2.147069 -4.400720 7.259804 -0.730353 12.745040 -0.561055 5.319626 -3.513646 1.359348 -0.937115 -1.914916 -2.509324 6.046154 4.698243 2.688357 0.957537 1.520576 -3.197053 2.132439 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -0.648179 2.187792 9.817329 7.275199 -3.580175 -5.391712 -2.236169 -6.759682 4.096298 1.311732 5.498954 -0.731651 2.196169 1.316176 -0.807748 -2.175574 2.414635 0.259059 -0.621818 -2.141768 -2.426142 7.083698 3.919361 -6.811046 0.513745 -6.797547 4.198285 2.781141 3.374809 5.147080 0.475515 0.089861 0.182195 3.410542 -5.010427 -1.709302 -1.414420 1.680592 -3.444308 -1.556964 2.543846 1.929603 4.993121 0.728156 3.083104 2.008858 4.066419 -0.762589 -4.054996 -0.760228 -3.124373 5.578056 -2.444012 3.104466 -0.069886 2.496275 1.604266 -4.244766 -0.633475 -6.496433 1.014158 2.392394 -3.277446 -0.412704 -5.235110 0.550264 -1.977771 -3.732457 1.980532 -1.766227 3.285665 0.494245 0.601164 -5.006731 -5.739235 2.715039 0.139650 1.789581 2.486909 1.536442 -1.239743 0.614550 -3.248484 -3.506100 2.202843 0.533893 0.353771 0.923317 0.373503 -3.419831 0.674993 -0.220440 -1.399822 4.433104 -3.238744 4.858581 -1.589279 -1.691566 -2.787059 -3.494012 -0.572605 -4.580757 2.083095 3.428178 -2.311539 1.907642 0.370608 1.550251 0.168560 -5.649770 0.576951 -1.386112 -0.070486 5.284222 -3.176603 -2.767083 -0.135645 0.066780 -0.578292 4.979405 -0.692395 1.732379 4.420833 3.037104 1.955600 -4.112981 1.336959 1.326938 2.076898 3.079748 3.511816 -3.558497 -2.684404 -0.302308 -0.124619 -8.927070 0.468573 3.428518 3.979192 0.420532 -6.105581 2.083962 -2.399346 5.088228 3.955841 3.795369 2.505214 -0.257026 -2.722500 1.812385 9.457769 -2.784746 3.714015 -3.216595 -6.409669 6.781756 -2.240649 4.667556 -1.151681 0.779832 2.163842 -4.654337 0.867836 6.799821 0.760969 0.299469 3.900738 -0.239152 -0.435940 -8.140392 -7.839058 -0.216647 2.860629 1.942469 10.242935 -4.297867 -2.735975 -1.029947 4.020864 -1.137746 -1.610489 0.803571 -2.104734 2.087725 -12.498893 -8.477207 7.853593 6.490755 0.728107 -0.777084 4.936996 0.846273 -0.306575 -4.273315 -3.884344 3.117679 1.732883 0.388971 0.036310 -0.262640 -5.591072 -0.212372 0.781887 0.965663 4.035090 -4.901770 -1.901416 -2.436818 -6.585807 -4.550541 2.927344 -5.992216 -2.042026 0.070487 0.345287 -0.564211 1.870315 -0.653592 -2.985374 0.779968 -3.314118 -1.544400 0.590904 3.770976 0.271914 6.904533 7.002315 -0.269908 3.715634 2.072146 -3.197843 14.762084 -4.887615 -0.943948 -0.201981 4.413938 -0.838123 2.599538 2.772368 -1.841487 -3.407349 -4.886408 2.897825 -0.171532 1.791256 -8.600786 -3.941717 -5.652535 -1.798285 0.622206 5.649795 0.390778 10.969462 -1.800678 1.246586 -11.194102 0.185294 4.608705 0.119226 4.867251 3.503137 -5.321386 -6.453792 -1.211379 -2.658340 4.066331 -1.075771 -5.905824 -3.563783 -1.771700 1.559269 -3.158364 3.037923 6.445204 -2.319838 3.208820 -0.034265 -1.140986 -1.338649 -1.932705 3.165611 1.770317 -3.882214 5.615586 -1.347910 11.597652 -1.282600 4.524910 -4.283536 1.428855 -1.201367 -2.895917 -2.518723 6.633007 4.489401 1.934705 0.501945 0.096848 -2.399156 2.962131 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -0.267163 0.783460 3.335167 0.831202 -1.202847 -2.233575 -0.924991 -3.746720 1.451885 0.984530 2.657211 -0.433320 1.346545 0.320880 0.052009 0.084946 1.209914 -0.700291 0.463161 -0.999447 -0.768409 2.517250 0.560837 -0.215293 0.381963 -2.706929 1.277845 0.642420 1.241603 1.704261 0.559380 -0.171754 -0.570489 0.921205 -0.674962 0.431839 0.451074 0.764645 -1.217534 0.180057 0.131031 -0.148119 1.689007 0.135503 1.727034 0.642054 0.871213 0.178259 -1.172640 -0.845228 -0.695478 1.718578 -1.075237 0.848815 0.159038 -0.183817 0.074009 -0.937855 -0.282008 -1.160910 -0.096840 -0.318079 -1.075827 0.322995 -1.505575 0.465829 -1.272552 -0.971862 0.243349 -0.801611 1.202766 0.193620 0.202537 0.006236 -2.636852 0.702072 0.377133 0.387885 0.910592 0.017367 -0.298015 0.101888 -1.450928 -1.746517 1.409157 1.542018 0.391781 -0.001408 -1.223026 -0.229373 -0.154288 -0.114284 0.269206 1.620277 -1.527933 0.813782 -0.590771 -0.953347 -1.328519 -2.537627 0.196646 -1.508376 0.907360 0.551892 -0.595079 -0.044749 -0.694273 0.611743 -0.508108 -1.928510 0.566087 -0.722639 0.145649 2.354366 -1.272266 -0.711124 -1.131641 -0.356275 0.202736 1.375136 0.365251 0.495370 1.709327 1.349208 1.049859 -1.595117 -0.581227 0.788709 1.056461 0.806632 0.904627 -1.527692 -0.998756 0.410539 -1.069826 -3.192483 -0.785691 0.895981 1.591800 -0.438732 -1.023996 0.363552 -1.084805 1.577148 1.856770 0.936425 0.612717 0.160333 -1.299835 0.777577 2.812940 -1.005765 1.590151 -1.039566 -1.282304 1.720877 -0.930888 1.309206 0.219683 0.289662 -0.266043 -1.347957 -0.016439 2.127773 0.660732 0.823374 0.239438 0.460523 -0.632968 -2.267259 -3.145693 -0.184484 1.972382 0.429048 2.517422 -1.746632 -1.048926 -0.017418 2.060999 0.161655 -1.332550 0.709641 -0.969890 0.843292 -3.428239 -2.611255 2.923763 3.030743 1.088089 -0.318714 1.313309 0.920062 -1.896100 -1.402846 -1.307141 1.396068 -0.283281 -2.073733 -0.801961 0.229756 -2.049905 -0.219121 -0.383235 0.688947 1.163026 -0.394511 0.738664 -0.142085 -1.501527 -1.115262 1.453984 -1.264250 -1.124184 -0.144092 0.065983 0.144201 0.778859 -0.770291 -0.274798 0.877230 -1.655500 -0.074545 0.864213 1.001401 0.076814 3.126032 2.221607 -0.272250 1.076862 -0.176396 -1.108750 3.223977 -1.228591 0.110319 -0.143851 0.900568 -0.246509 0.814135 1.432001 -0.755750 -1.987239 -1.773776 0.066957 0.072584 1.072449 -0.895634 -2.221543 -2.579852 -0.052223 0.211033 2.692927 0.281807 3.626440 -0.499581 0.988860 -3.382464 0.236497 0.915803 -0.234829 1.534839 0.685503 -1.541232 -1.352434 -0.412926 -1.876545 -0.690385 -0.101289 -1.544143 -1.260369 -1.263814 1.257389 -0.956903 0.232704 1.133138 -0.211743 1.649404 0.546319 -0.475083 -1.229399 0.279517 2.007113 0.069278 -1.393217 1.856966 0.151188 4.544309 -0.420412 1.237739 -0.794634 0.412100 -0.264892 -1.301592 -0.784449 2.375649 2.170595 0.850352 -0.496970 -0.236863 -0.313730 1.010698 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp___GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/find-two-non-repeating-element.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -2.180840 1.985117 9.544100 7.662970 -5.076314 -6.359052 -2.277944 -3.932267 3.270973 1.162081 5.308370 -0.100195 2.599210 0.703500 -0.135578 -2.642070 2.958744 0.692452 -1.149406 -2.405546 -3.619295 6.643709 4.940474 -8.367153 1.003493 -5.298741 4.813705 3.563335 1.429801 5.983740 0.262380 1.094748 -0.461686 3.396162 -4.723449 -1.808006 -1.709050 2.068675 -2.202366 -1.295376 3.875667 1.942236 4.793832 0.305694 2.807804 3.654711 3.678563 -0.701099 -5.860724 -1.752797 -3.246798 4.033867 -2.752217 3.553900 -0.411734 3.464635 2.355847 -4.645600 -0.327098 -9.240959 1.342809 1.985057 -3.289977 -0.560018 -4.911272 0.507866 -0.406446 -4.500935 2.768714 -1.743973 2.965476 -0.572343 0.040065 -4.451983 -4.311323 2.147292 0.749443 2.153214 2.737475 1.457125 -2.255696 0.045733 -3.179291 -3.432016 0.988519 -1.696722 1.068991 1.251258 0.009687 -3.519288 1.910857 -0.446246 -2.939390 4.824215 -2.788258 4.962985 -0.539795 -1.857759 -3.401029 -2.840457 -0.698740 -4.072647 1.259275 5.033732 -2.859355 1.060669 -0.945303 1.450711 -0.308921 -5.405542 0.785316 -2.462550 -0.919748 3.836803 -2.796145 -2.382193 0.414645 -0.096446 0.540119 6.301036 -1.105098 1.587783 4.508241 3.350339 1.437494 -4.405603 1.361624 -0.023348 2.638428 2.819990 3.963903 -3.887938 -3.409718 -0.621022 -1.301814 -7.750136 0.337943 3.533503 4.656148 1.102451 -8.238174 3.384505 -2.768647 5.325095 3.546265 4.594345 1.885064 -0.502532 -3.398987 2.164449 9.770819 -3.433314 3.730175 -1.418746 -7.704682 7.831821 -1.769232 4.190578 -0.071732 0.093791 1.404438 -4.236917 0.415687 6.834115 1.528066 1.056147 4.264186 -0.005142 -0.472508 -9.032243 -7.869539 -0.461996 3.381713 2.525681 12.809187 -5.244730 -2.453166 -1.029407 4.207889 -2.778751 -2.134359 -0.811845 -1.306379 2.087659 -13.391406 -8.748086 9.705370 5.626516 -0.163820 0.604598 5.143035 0.041119 1.343781 -4.011339 -4.089003 2.967152 1.654858 2.659598 0.881819 0.281120 -5.917499 -0.062625 0.711706 1.186396 3.461181 -6.172096 -3.007280 -1.957696 -6.914759 -4.525168 1.021752 -6.247744 -2.483899 0.233913 0.284248 0.539798 1.188393 0.063521 -3.804218 -1.007909 -3.136524 -1.895878 0.293541 3.837832 1.321397 6.245148 8.899327 -0.798188 2.572177 1.982669 -3.222069 15.522488 -5.277196 -0.808002 -0.357059 6.226133 0.816593 1.993980 4.036233 -1.611705 -2.068523 -5.360498 2.996132 0.398091 1.853415 -12.084732 -3.537465 -6.838176 -1.492949 1.016395 6.021785 -1.076127 11.700800 -1.169365 1.028693 -12.945488 0.224406 5.156462 -0.066186 3.586892 3.537557 -5.245996 -8.522841 -1.155498 -2.310301 4.786946 -0.881455 -4.658431 -2.735178 -0.759281 -0.150771 -2.728793 2.914199 7.347538 -2.634016 2.475705 1.430310 -1.305413 -0.373940 -2.445443 2.644074 2.067549 -3.390838 6.476990 -0.676947 10.630066 -0.726285 4.752651 -3.585294 1.870716 -0.537584 -2.721475 -2.673397 6.239936 4.026906 1.996808 1.753822 1.527850 -2.416199 4.135805 -PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.840227 0.247064 4.634450 2.036445 -1.721724 -2.877431 -1.208438 -4.966839 3.225303 1.619063 3.631100 0.321778 2.483372 -1.163462 -0.218748 -0.282839 1.925165 -0.934496 0.394026 -1.180498 -0.109091 5.441225 1.110463 -1.386881 0.451003 -4.525879 1.951544 0.769167 2.517043 3.232567 0.651361 0.016934 -0.722757 1.112877 -1.100362 0.625118 0.083442 1.134878 -2.138165 -0.813191 0.759319 -0.141118 2.535404 -0.041630 2.820809 -0.506360 1.488949 -0.370010 -1.542165 -1.537493 -1.427981 2.286818 -1.447102 1.626538 0.100576 -0.207588 0.168548 -0.909094 -0.417149 -2.561783 0.147951 -0.107469 -1.491163 0.103632 -2.115282 0.773448 -1.365990 -1.039704 0.328841 -1.897920 1.752645 0.492512 0.879879 -1.025715 -4.688504 1.012532 0.283059 0.388286 1.423370 1.537480 -0.852999 -0.569028 -1.914849 -2.388542 2.196650 2.269848 -0.221650 0.489661 -2.035155 -0.754604 -0.254298 -0.137403 -0.038096 2.108072 -3.017234 1.234822 -0.580649 -1.062488 -0.398856 -2.824337 0.126718 -2.388795 0.650752 1.214058 -0.549671 0.354778 -0.084137 0.755521 -0.684358 -2.505354 1.318648 -0.810970 -0.600623 3.662768 -1.592011 -1.125096 -1.764560 0.154236 0.021029 2.301983 -0.098031 1.333284 2.492547 1.791722 1.994758 -2.580216 -0.261621 2.442676 1.918796 0.866192 0.769693 -2.009619 -1.289133 0.567024 -0.937781 -4.686509 -1.760894 1.905671 2.747740 -0.350841 -1.835081 0.543653 -1.096021 2.950808 2.897620 0.379754 1.042683 0.839254 -2.255877 1.456566 4.944065 -1.247951 1.678558 -1.641771 -2.339536 3.397282 -1.626765 2.170966 -0.558999 0.869091 -0.084176 -2.315124 0.645805 3.260783 0.081340 1.361748 -0.462731 0.843157 -0.646875 -4.072090 -5.261885 -1.063897 2.717666 1.682847 4.963956 -2.398081 -1.415623 -0.172351 2.467044 0.223622 -1.740847 1.194473 -2.096310 1.412517 -6.389464 -4.325863 5.619842 4.874041 1.493283 0.113701 2.343933 1.423410 -1.844511 -1.937211 -1.938875 1.931494 0.676404 -2.701135 -0.495218 0.466392 -3.235043 -1.426317 -0.057204 0.355915 1.464321 -1.023305 1.421589 -0.473110 -2.092617 -1.804859 2.750379 -2.187133 -1.718856 -0.722787 0.348933 0.208634 1.609803 -0.951671 -0.196111 1.033747 -1.708635 -0.350059 0.733982 1.130982 0.058194 3.021171 4.790183 -0.586143 1.556782 -0.173959 -1.883312 5.688951 -2.319309 -0.517238 -0.340594 0.951170 0.494894 1.386007 1.619851 -1.224946 -1.651911 -2.836037 0.621455 0.223269 1.674182 -3.149862 -3.549651 -3.528060 -0.190476 0.097464 3.373793 0.523227 6.099490 -1.993561 1.039852 -6.479247 0.333871 2.316926 0.214483 2.551784 0.952403 -2.104188 -2.730720 -0.721185 -2.261437 -0.014717 -0.621630 -2.991086 -1.757142 -2.408642 2.614701 -2.123318 0.906202 2.459068 -0.564080 3.132218 -0.065668 -0.518912 -2.376171 0.603770 0.946529 0.756763 -1.784770 2.678371 -0.234191 5.851524 -1.385577 1.787236 -1.514910 2.182961 -1.677580 -3.155796 -0.958739 3.465696 3.091760 1.063485 -0.454858 -0.468492 -1.036594 1.949701 -PE-benchmarks/find-two-non-repeating-element.cpp___GLOBAL__sub_I_find_two_non_repeating_element.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/permutations-of-a-given-string.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = 0.604333 2.797623 9.897725 5.282381 -4.406986 -5.424842 -2.387886 -9.063058 4.998385 2.500243 5.339419 -0.350888 2.321649 0.707064 -1.209966 -0.263316 2.382332 0.061773 -1.090233 -3.084046 -2.593152 7.049033 2.110000 -4.568382 1.541382 -9.037520 4.667957 1.944876 4.472170 4.149928 0.994292 0.067181 -0.809940 3.860692 -3.590244 -0.728211 -0.531221 1.875541 -4.068090 -0.263339 2.781244 2.155213 4.186792 1.598705 4.136648 2.271375 2.893870 -0.476154 -3.679168 -1.419399 -2.600190 5.641499 -2.261574 4.184554 -0.784597 2.056664 -0.067833 -4.127571 0.081861 -3.787042 0.724630 1.526420 -2.842548 -0.273995 -4.911720 0.602424 -1.800991 -3.783158 1.102934 -1.722673 4.015259 0.072563 -0.128961 -3.631955 -6.950494 2.070163 0.427469 2.079428 3.621942 0.865118 -1.158316 -0.251326 -3.776720 -4.762556 3.075327 2.854921 0.401578 0.896025 -0.540645 -3.932979 -0.043860 -0.782951 0.070183 5.379724 -5.499826 2.782555 -2.836648 -1.853607 -2.908004 -4.412542 -0.240647 -4.565771 2.484277 1.808309 -2.476330 2.098734 2.068706 1.613295 0.952002 -4.243274 0.749536 -1.093990 0.817019 7.003627 -1.611136 -3.858988 -0.508382 -0.623605 -1.458869 4.534216 0.526133 0.957140 7.153592 3.430491 3.302627 -4.212930 -0.103820 2.378504 1.373646 3.322364 3.637377 -4.680820 -3.034086 0.237220 -0.280669 -9.087605 0.068711 2.039649 5.093443 -1.003489 -4.167279 1.379461 -2.696931 4.353848 3.524723 2.193477 2.625713 -0.533270 -3.622819 1.965679 10.474569 -2.438291 2.902193 -4.190576 -4.388893 5.508581 -1.941545 4.317679 -0.609419 0.316946 1.211122 -4.786681 0.568466 7.026946 -0.506074 0.488194 3.167762 1.115653 -2.227968 -7.596142 -8.332960 -1.489990 3.104463 1.311914 9.339135 -4.723638 -2.198998 -1.972489 5.787289 -0.594383 -1.263295 1.849895 -3.003606 2.276218 -8.845287 -7.777137 8.713603 9.342251 1.529116 -1.634704 5.297030 1.744179 -2.401811 -5.115752 -3.433732 2.393259 2.548819 -1.935818 -1.413758 0.545205 -5.584467 -1.519367 0.874737 1.183299 3.643276 -2.682855 0.132265 -0.856718 -5.602453 -5.308390 3.662502 -4.897420 -1.241664 0.266830 1.228273 -1.220775 2.853116 -1.875080 -2.972534 1.659250 -2.523324 -0.138707 1.743687 3.776900 0.263355 6.212894 6.372570 -0.621308 4.719819 1.568700 -3.360353 12.793369 -4.146629 -0.427609 0.300332 3.066592 -1.507714 2.907126 2.278044 -2.479982 -2.825403 -5.649771 2.113568 -1.019348 1.342039 -5.757140 -3.738805 -6.181711 -1.725849 -0.192585 5.405474 0.889099 11.019923 -1.968590 1.487475 -11.195163 0.396355 5.032751 -0.629072 4.764288 3.578050 -4.868566 -6.536881 -1.348624 -3.342536 0.847290 -1.043366 -5.299944 -4.146793 -2.376719 2.819984 -3.073423 3.139899 6.520323 -0.659671 3.913113 -2.485756 -0.574055 -2.616892 -0.838732 4.063152 1.561372 -4.519648 4.592945 -0.867625 12.028951 -1.512959 4.725698 -3.609475 0.300577 -1.339474 -4.574591 -3.095902 6.698684 3.951385 3.057509 -0.056132 -0.532461 -2.328809 4.346283 -PE-benchmarks/permutations-of-a-given-string.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(char&, char&) = -0.093114 0.400420 1.790478 1.625985 -0.817618 -1.762830 -0.417794 -1.949782 1.397295 0.495146 1.349047 0.309607 1.318256 -0.749259 -0.262467 -0.236912 1.055938 0.424907 -0.126719 -0.593210 -0.584188 2.685113 0.405196 -1.251935 0.235210 -1.335244 1.342147 0.769976 1.223096 1.675384 0.154181 0.249903 0.002321 0.698018 -0.997456 -0.254836 -0.797966 0.747575 -1.053964 -0.580161 0.665090 -0.345351 1.570543 0.351219 0.712778 0.060117 0.887507 -0.222818 -0.676773 -0.541546 -0.859934 0.714463 -0.579022 0.979522 -0.858153 -0.189495 0.802018 0.062685 0.241633 -1.240184 0.346658 0.054454 -0.994849 -0.300992 -1.341866 0.121556 -0.693070 -1.143369 -0.098727 -0.641717 0.708217 0.241940 -0.040851 -1.384137 -2.491948 0.269344 0.337101 0.235443 0.945759 1.115381 -0.380249 -0.577148 -1.225114 -1.149775 1.358719 0.409322 0.218857 0.961331 -0.912097 -1.178794 0.001005 0.372341 0.407878 0.826004 -0.767400 0.849652 -0.223774 -0.299058 -0.102260 -1.331188 0.155340 -0.962597 0.220156 0.367681 -0.124108 0.457138 0.231556 0.268554 -0.219718 -1.273086 0.381735 -0.721175 -0.688318 1.588925 -0.228299 -0.876893 -0.444392 0.094390 0.004743 1.136798 0.083639 0.377276 1.190074 0.625228 0.690319 -1.272469 0.149667 0.887983 0.444964 0.542599 0.416678 -0.547292 -0.820420 0.269174 -0.541700 -2.328904 -0.525658 1.156567 1.159634 -0.487008 -0.965035 1.084116 -0.672084 0.821719 1.349877 0.286874 0.726203 0.237326 -0.991887 0.644670 2.108339 -0.622412 0.667562 -0.816415 -1.488432 2.069984 -0.353248 0.738577 -0.646276 -0.302424 0.097599 -0.704837 0.800348 1.707860 -0.362339 0.184953 0.368125 0.163714 -0.569808 -1.731369 -2.240865 -0.289392 1.496508 1.352442 2.676032 -1.075648 -0.250556 0.092642 0.611989 -0.216048 -0.472408 0.548806 -0.855066 0.807617 -3.718560 -2.152908 2.524745 1.338334 0.678650 -0.047666 0.810717 0.545922 0.207569 -1.135506 -0.911191 0.671759 0.807503 -0.838964 -0.214802 0.191116 -1.639270 -0.359763 0.331757 0.067218 0.621811 -1.022968 0.471135 -1.525960 -1.044823 -1.266092 1.034483 -1.261399 -0.151563 -0.153266 -0.086961 -0.263868 0.674019 0.068783 -0.322711 -0.092967 -0.459872 -0.252623 -0.362872 0.669661 0.097388 1.434727 2.460524 -0.697821 0.506238 0.271077 -0.940294 3.284818 -1.313404 -0.070986 0.042447 1.243242 0.358598 0.833285 1.072423 -0.533380 -0.241316 -1.638574 0.166512 0.816783 0.427195 -1.962375 -0.673775 -1.870787 -0.177074 -0.358922 2.028609 -0.156943 2.702792 -1.206615 0.380515 -2.628467 0.261718 0.881147 -0.027037 1.433005 0.681100 -1.198596 -1.009352 -0.504507 -0.978335 0.462842 -0.330185 -1.248369 -0.924637 -0.343580 0.083402 -1.344592 0.653369 1.353806 -0.794073 1.184726 -0.815164 -0.018864 -0.946991 0.079583 0.580391 0.383049 -0.775800 0.997786 -0.140022 2.488323 -0.201459 1.260724 -0.966604 1.017699 -0.786614 -1.762563 -0.813318 1.742182 1.226917 0.300150 0.540765 0.283924 0.045643 1.154984 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 1.062978 3.456230 7.763011 2.585484 -4.431895 -4.862892 -1.763586 -9.276586 3.714206 3.031422 4.532428 -0.959045 2.457411 0.189085 -1.401711 1.790528 3.008235 -0.144307 -0.687645 -3.362232 -5.176017 3.942720 0.189549 -0.835570 2.769915 -6.621866 4.754381 0.035172 2.636751 2.317798 2.566240 0.482155 -0.851027 3.565627 -0.124949 1.283863 0.355941 2.167697 -2.881521 1.333550 1.681534 -0.566130 3.508205 2.911017 3.716051 3.372441 1.802221 0.135857 -3.566039 -0.736339 -1.735399 3.806820 -2.481472 3.188988 -1.223430 0.516701 0.214465 -3.437431 0.852354 -0.811085 -0.929855 -1.708359 -2.784590 0.291425 -4.208199 0.311766 -2.487632 -3.694775 -0.845232 0.201066 3.237463 0.610305 -0.998959 -0.624471 -5.429953 1.363302 1.794936 1.038186 4.165943 -0.182164 -0.427971 -0.922398 -4.496827 -5.258702 5.085004 2.299505 1.629850 0.683284 -0.830021 -3.006753 -1.048636 -1.069079 1.804003 5.189437 -4.542181 0.834138 -2.081782 -2.740808 -4.004659 -6.555292 0.212439 -3.582891 2.528964 0.568138 -3.178646 2.020847 0.620318 1.625450 0.779699 -2.579597 0.685048 -2.170897 1.333914 5.959212 -0.422856 -4.190626 -1.428579 -1.262080 -0.070636 2.908942 1.696805 -0.318794 8.082305 2.655000 3.321644 -2.833052 -0.763412 0.884839 -0.116959 2.059312 3.366158 -4.622846 -3.271364 1.278076 -1.194054 -7.480671 -0.813220 0.625793 3.690389 -2.523928 -2.461873 1.358618 -1.935184 1.405296 3.034045 1.284331 2.162102 -0.566435 -2.483052 1.075973 7.241323 -2.361882 2.146855 -3.751199 -2.027263 3.623032 -1.009821 1.862367 -0.305176 -0.881359 -0.456728 -3.361742 0.209926 5.673447 -0.418502 -1.176266 2.105220 1.707340 -3.276041 -4.873073 -6.346887 -0.409351 3.783325 0.644927 6.731335 -4.681337 -0.622854 -1.743904 4.752720 0.475743 -0.951268 1.795093 -2.419069 1.786797 -5.126759 -6.120895 7.365830 6.141230 2.148274 -2.340089 2.519798 0.997151 -4.546714 -5.168507 -3.443377 1.437095 1.654878 -3.979006 -3.461861 1.261520 -5.189949 -0.492413 -0.162191 1.603439 4.394340 -1.320100 1.438972 -1.146515 -3.112764 -4.284605 2.924086 -2.366512 -1.643563 0.422791 1.148163 0.038974 2.644490 -0.993470 -2.257152 0.087275 -2.401182 -0.542418 2.349597 4.247522 -0.172890 7.199025 5.520250 -1.433692 2.326187 0.281729 -2.726709 7.012039 -2.078249 0.509811 0.553491 2.224227 -1.242825 1.931988 4.270000 -2.118156 -3.882890 -4.200364 0.393945 -0.750915 0.349259 -2.261340 -1.801474 -6.386026 -0.774069 -1.191064 5.441099 0.712835 7.855052 -0.412749 1.503953 -6.843845 0.450223 3.258898 -1.066322 3.833432 2.911203 -4.607900 -2.155521 -1.662083 -4.559680 -2.208061 -0.185565 -0.764461 -3.777732 -0.616266 1.768790 -1.695687 1.481546 4.319827 0.194434 2.891871 -1.539165 0.299298 -2.590265 0.422855 6.560622 0.266546 -3.307500 3.452683 0.411802 10.321055 0.389394 2.981764 -2.081883 -2.154243 0.198420 -3.214233 -3.448050 4.971635 3.419332 2.848760 0.442970 -0.434717 -0.101580 5.039551 -PE-benchmarks/permutations-of-a-given-string.cpp__std::remove_reference::type&& std::move(char&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/permutations-of-a-given-string.cpp___GLOBAL__sub_I_permutations_of_a_given_string.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.521959 0.328360 2.397937 1.196192 -0.511062 -1.438513 -0.496489 -1.635937 1.187957 0.572242 1.656199 0.234255 0.920914 -0.027577 0.147197 -0.196689 0.569771 -0.078784 -0.105019 -0.485657 0.183655 2.152736 1.189832 -1.504992 0.040028 -1.712914 0.987416 0.652178 0.942215 1.769095 0.089457 0.246448 0.060933 0.815870 -1.196080 -0.129370 -0.406040 0.731581 -0.604452 -0.443879 0.656078 0.508690 0.990673 0.330731 1.193506 0.433959 1.012068 -0.346862 -0.616028 -0.540054 -0.880913 1.436423 -0.818685 0.928201 -0.605786 0.311384 0.262464 -0.494140 -0.045782 -2.361499 0.367868 0.516145 -1.216856 -0.259826 -1.166332 0.308369 -0.375349 -0.745416 -0.035635 -0.596208 0.959996 -0.084873 0.070559 -1.089439 -2.122689 0.412647 -0.109385 0.309949 0.820470 0.302725 -0.868639 -0.210131 -0.672293 -1.175275 0.981515 0.245879 -0.026921 0.549934 -0.324875 -0.412330 -0.486686 0.200674 -0.249588 1.263772 -0.913739 1.272384 0.410736 -0.433262 -0.244167 -0.343242 0.232955 -1.358494 0.154054 0.557726 0.056202 0.185260 -0.496038 0.332876 -0.395821 -1.436874 0.581166 -0.332822 -0.752629 1.107502 -0.753858 -0.198170 0.091101 0.157878 0.248086 1.406135 -0.035009 0.758467 0.826950 0.742747 0.473649 -1.254638 0.262177 0.761465 0.985351 0.674018 0.392388 -0.793482 -0.889994 0.045180 -0.222178 -2.174032 -0.076595 1.554688 1.145709 -0.015845 -1.418046 0.986012 -0.602440 1.252252 1.438231 0.642106 0.485309 0.120002 -1.205818 0.409311 2.714640 -0.841239 1.036690 -0.402796 -1.267971 2.043654 -0.841444 1.255988 -0.173161 0.215570 0.519336 -1.023225 0.026516 1.869459 0.571488 0.777827 0.715493 0.037727 0.099195 -1.960453 -2.187288 -0.969828 1.182079 0.650431 2.213994 -0.764881 -0.382058 -0.181671 1.020702 -0.455059 -0.574724 -0.009579 -0.612275 0.614538 -3.474062 -1.872868 2.417353 2.036745 0.600919 0.103796 1.147650 0.878885 0.420354 -0.928017 -0.580041 0.883043 0.229340 -0.040965 0.069218 -0.163062 -1.590132 -0.477544 0.046186 0.075056 0.082029 -0.726405 0.074740 -0.115555 -1.270311 -0.854826 0.125034 -1.331489 -0.804349 -0.189277 0.255851 -0.210833 0.123664 -0.330121 -0.090992 0.712856 -0.937751 -0.364380 0.169816 0.598055 0.465170 1.393075 1.554212 -0.247382 0.764014 0.227323 -0.846007 3.189220 -1.140276 -0.346861 0.072920 1.104590 0.308634 0.779027 0.414630 -0.494007 -0.290448 -1.633456 0.695757 0.483830 0.719860 -1.558718 -1.354752 -1.245504 -0.149212 0.384303 1.820367 -0.383803 2.974050 -0.649770 0.566157 -2.909834 0.275841 1.019447 -0.240612 1.018656 0.880763 -1.124292 -1.834534 -0.466245 -0.557729 0.524194 -0.389512 -1.353346 -0.863920 -0.525074 0.465164 -1.549055 0.819772 1.009916 -0.387536 1.100892 -0.232666 -0.225986 -0.790384 0.009779 0.674152 0.589453 -1.111945 0.994323 -0.369075 2.748081 -0.870143 1.636088 -1.011602 1.087238 -0.753766 -0.713791 -0.548677 1.986790 1.449117 0.389274 0.257037 0.073359 -0.338081 0.914823 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = -0.100802 0.487579 1.752027 0.565130 -0.459162 -1.308514 -0.409714 -2.074200 0.966017 0.676731 1.415036 -0.165640 1.065556 -0.208301 -0.200595 -0.067384 0.734632 -0.116855 0.137595 -0.574626 -0.335051 1.626570 -0.008932 -0.299203 0.296335 -1.524955 1.208385 0.588400 0.710003 1.155203 0.293775 0.317171 -0.146522 0.625570 -0.538958 0.137756 -0.058081 0.701611 -0.481374 -0.053413 0.397230 0.013180 0.953222 0.366915 0.930216 0.658642 0.271865 -0.033942 -0.392159 -0.571300 -0.291976 0.386716 -0.526067 0.487941 -0.665814 -0.225200 0.330798 -0.341841 0.181876 -0.728525 0.310659 -0.009283 -0.770110 0.073869 -0.989359 0.213493 -0.399431 -0.750541 -0.163413 -0.681621 0.550995 0.048108 -0.247445 -0.458855 -1.758839 0.244657 0.422329 -0.022683 0.775850 0.146321 -0.412475 -0.233978 -1.019337 -1.120213 1.149013 1.053038 0.386324 0.622093 -0.700726 -0.659426 -0.145165 0.135640 0.440864 1.092193 -0.599631 0.270280 -0.125186 -0.477146 -0.527960 -1.089396 0.397028 -0.796274 0.443591 0.308280 -0.356640 0.172208 -0.007722 0.271570 -0.233586 -0.845500 0.200105 -0.899157 0.259099 1.380791 -0.284804 -0.693028 -0.885621 -0.305849 0.345344 0.914595 0.081119 0.043104 1.294175 0.581142 0.538326 -1.093603 -0.363638 0.742356 0.279620 0.432684 0.284132 -1.005249 -0.585233 0.133211 -0.785400 -1.761612 -0.565314 0.197408 0.820098 -0.876835 -0.673411 1.056860 -0.662393 0.523889 1.254068 0.284091 0.384613 0.304628 -0.865256 0.389235 1.637281 -0.455756 0.562218 -0.776739 -0.946998 1.115718 -0.232391 0.577641 0.038924 -0.256155 -0.292900 -0.546913 0.563203 1.277850 -0.115245 0.522413 0.216765 0.301488 -0.340410 -1.022353 -1.848600 -0.296643 1.249292 0.710261 1.922326 -1.083022 -0.200476 -0.026987 1.084853 0.106531 -0.444735 0.425765 -0.564154 0.591546 -2.089680 -1.563192 1.587703 1.352699 0.852937 -0.151425 0.637836 0.311424 -0.261883 -0.703855 -0.538186 0.710699 0.202014 -0.891963 -0.219912 0.151208 -1.183947 -0.357269 -0.164600 0.295917 0.457118 -0.418279 0.568603 -0.838111 -0.617531 -1.036226 0.582979 -0.664449 -0.300697 -0.179228 0.005029 -0.200318 0.430671 -0.380738 -0.132995 0.255888 -0.479114 0.070184 0.292727 0.332920 -0.011644 1.305395 1.427452 -0.639119 0.263980 -0.106750 -0.395165 1.915954 -0.543580 0.149467 0.182061 0.753256 0.261129 0.586312 0.842392 -0.487087 -0.379653 -1.319302 -0.008159 0.539076 0.402587 -0.713947 -0.607319 -1.642178 -0.080454 -0.232915 1.852369 0.055938 2.150751 -0.348035 0.518024 -1.691957 0.201679 0.496134 -0.275167 0.815654 0.478345 -0.994665 -0.696833 -0.268007 -1.084100 -0.605040 -0.153699 -0.737042 -0.941940 -0.320124 0.255783 -0.737169 0.250656 0.838819 -0.112300 0.596775 -0.389874 0.026456 -0.737332 0.071975 0.874318 0.043556 -0.736474 0.576366 0.012051 2.026740 -0.272209 1.112545 -0.473553 0.741951 -0.392777 -1.204123 -0.637258 1.483708 0.906691 0.371044 0.103460 -0.041261 0.167866 0.970048 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -5.404229 9.946752 41.470997 25.586877 -12.763361 -17.818643 -9.405199 -20.991791 12.670026 5.227383 22.600039 -3.531747 8.529080 7.250254 -1.127452 -9.844950 11.602944 -3.751453 -0.238246 -9.196623 -5.039216 27.722176 16.822790 -29.302562 1.352353 -32.623130 22.658537 11.146160 11.330570 23.106484 1.696261 3.316700 3.113622 15.512181 -20.200746 -10.043945 -4.176690 8.917022 -9.469791 -3.494802 14.307612 14.873809 16.760843 1.815307 8.913964 14.733665 16.565010 -3.714384 -16.264008 -4.732341 -14.651553 20.464692 -12.255274 12.061699 -3.854690 10.682449 7.925913 -20.061104 -4.273942 -29.127115 5.141836 13.318601 -13.893839 -1.364320 -22.433485 4.430477 -5.672117 -13.872699 9.553667 -1.887246 13.162380 3.139861 4.062281 -19.622475 -20.683867 14.801335 0.181211 10.070938 9.247991 -1.476788 -8.479222 6.000387 -12.228572 -16.525185 6.853139 2.378858 3.875721 0.245266 6.882840 -11.791707 -1.383278 1.155019 -11.600560 21.212279 -9.196263 19.868554 -5.996808 -6.475505 -12.170176 -7.362279 -4.712665 -22.699686 6.881108 21.409226 -12.103164 6.285005 -2.535883 5.618802 0.377538 -22.721015 1.211132 -7.650256 -2.032119 19.421624 -12.866362 -7.896945 -0.497648 1.839405 3.285213 22.150155 -6.632619 10.061785 21.774655 14.665051 3.922908 -17.456340 6.442054 3.743520 9.759723 11.577676 17.699027 -18.698916 -14.766040 -6.407832 0.986994 -32.345477 5.128659 12.988804 16.104938 -0.282455 -30.808209 16.044981 -11.233589 23.566826 18.818844 16.019493 9.214690 -1.445084 -12.280235 10.491757 40.150616 -14.357581 15.206853 -16.091084 -25.044888 31.353201 -6.375733 19.584224 -1.736919 5.582485 7.792525 -22.703340 2.404078 29.643477 6.832601 7.751318 23.422291 -3.676139 8.852926 -32.599160 -28.019564 -3.420561 8.772521 4.466666 44.120299 -17.067979 -7.566902 -4.855687 15.990882 -5.716936 -6.644712 -2.113360 -5.240975 6.500919 -49.899575 -34.704587 31.090256 24.679466 -2.281273 -0.131030 20.243168 6.680005 3.528323 -15.167536 -14.142686 17.779066 3.761833 8.537752 3.426674 2.087314 -21.793235 -3.005476 3.641178 4.573495 18.057893 -22.813836 -15.394003 -5.866108 -31.726179 -18.954895 8.139967 -25.460694 -12.434046 0.915622 1.457982 -0.874618 5.723441 -1.187988 -11.441784 5.178004 -12.840943 -10.333126 3.759802 18.178824 3.557444 21.467342 25.183428 1.044362 10.452207 11.568395 -11.742057 56.764882 -16.308122 -7.434035 0.229397 18.980848 -2.268500 12.073092 9.509851 -6.051159 -12.309500 -25.661110 19.503194 -1.979349 5.814518 -36.195835 -11.014459 -20.630219 -8.073535 8.394536 28.156212 -0.253063 47.180470 -3.569537 1.538151 -43.429457 0.260698 17.295825 0.936961 17.352729 17.791519 -20.783063 -27.079674 -5.988688 -8.494583 17.519758 -5.429586 -24.142354 -18.629107 -4.089252 5.014696 -13.477663 13.908751 28.338038 -5.393854 11.297484 5.105336 -6.733487 -6.428667 -9.480962 11.420527 11.197421 -15.141035 24.590322 -8.975090 43.635851 -10.114740 20.573649 -19.783743 4.946630 -2.081450 -9.254992 -9.407236 29.828549 14.286853 6.971967 6.939895 -1.423015 -8.870925 17.767506 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -3.137679 2.143077 12.196053 9.075132 -5.156911 -7.100434 -2.944950 -6.234318 4.968970 2.180552 7.087083 0.631068 3.439620 0.970627 0.073433 -3.354059 3.422599 0.073511 -1.841002 -2.831032 -1.608467 8.687986 6.414338 -10.458319 0.965204 -7.778734 5.396406 4.102119 2.951149 7.287345 -0.213560 0.800106 -0.425476 4.819300 -6.818554 -2.033750 -1.862550 2.623770 -2.906015 -2.594434 4.793895 2.873706 5.870365 0.820836 4.563302 3.131735 4.744446 -1.427733 -6.453096 -2.627905 -3.419862 6.188101 -3.859183 5.088756 -0.831869 4.369411 2.047009 -5.447839 -0.674973 -11.982509 2.932368 3.478677 -4.163625 -1.338387 -5.935655 0.574814 -0.444436 -5.111669 2.444674 -3.444051 4.165847 -0.412245 0.336411 -6.626433 -6.479479 2.612533 0.247586 2.451937 3.435100 2.348544 -3.893833 -0.241297 -3.343153 -4.780312 1.640824 -0.429238 0.660711 2.346858 -0.305116 -3.725699 1.159433 0.187359 -2.525142 6.027315 -4.829976 5.406760 0.553182 -1.827260 -3.145061 -1.839626 -0.416222 -5.915089 1.934717 5.628285 -2.727086 1.544076 -1.099706 2.000404 -0.942725 -6.671363 1.372987 -2.347492 -1.862046 4.678511 -4.102305 -2.345702 1.097707 0.185523 0.890555 6.974480 -1.259613 2.193432 5.895003 4.103181 2.529097 -5.745017 2.230442 1.760595 4.044492 3.836745 4.071377 -4.763954 -3.444331 0.150874 -1.599915 -10.557974 0.522676 5.298550 6.099926 1.778851 -10.084941 4.187774 -3.390638 6.501001 5.110562 5.584425 2.737904 -0.127637 -4.641686 1.904579 12.409121 -4.131797 5.066203 -2.306514 -8.117603 10.044845 -2.895450 6.538812 -0.330221 0.370067 2.730564 -5.943840 0.638621 9.157901 2.041774 2.219814 4.603194 -0.460899 -0.313403 -10.874958 -10.614659 -2.469144 4.088325 3.725448 13.960895 -5.733048 -3.009770 -2.100912 6.022899 -3.019546 -2.811475 0.037593 -1.758011 2.937510 -16.539540 -10.360567 11.084242 9.197239 1.234958 0.315577 7.594892 1.030480 1.862611 -4.737600 -4.317796 3.847553 2.343227 3.399086 1.425985 -0.107477 -7.838310 -1.158965 0.892320 0.791918 3.331901 -6.482979 -3.119880 -1.411431 -8.055573 -5.174063 1.199808 -7.960587 -2.738893 -0.247469 0.833819 -0.564138 1.533470 -0.635192 -4.411286 0.850176 -4.290476 -2.098582 0.514909 4.821688 2.306861 7.687160 8.835669 -1.217193 3.926680 2.422703 -4.053516 19.018178 -6.544845 -1.485634 -0.023285 7.228102 0.601648 3.237753 3.400860 -2.296330 -1.802004 -7.142695 4.121402 0.723306 2.649883 -13.126055 -5.039655 -7.135574 -1.722435 1.257846 7.780828 -1.349290 14.500513 -2.106709 1.714827 -15.995770 0.501742 6.280616 -0.331541 4.543896 4.920850 -6.437008 -11.612852 -1.524762 -2.718283 5.784593 -1.032766 -6.648834 -3.989897 -1.983613 1.532433 -4.974926 4.251490 8.696159 -3.141961 4.758759 0.433128 -1.261422 -1.623960 -2.844330 2.682793 3.101532 -4.733844 7.776924 -1.337197 14.036770 -2.229945 7.029592 -5.122983 3.336580 -2.054120 -4.248848 -3.419239 8.624276 5.672478 2.579614 1.906983 0.976434 -3.435014 4.727565 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -0.901388 2.547312 10.031276 5.554335 -3.269540 -4.998896 -2.353973 -6.679263 3.451381 1.531517 5.942175 -0.941812 2.672719 1.485008 -0.182785 -1.486071 3.336198 -1.155621 0.503230 -2.458160 -1.453984 7.566467 3.271507 -5.726187 0.463182 -8.283990 5.422271 2.618486 3.314303 5.586982 0.815214 0.590373 0.404951 3.529116 -4.336609 -1.865395 -0.633441 2.297759 -2.989991 -0.476247 2.687560 2.704449 4.401121 0.344962 2.544854 3.158357 4.200772 -0.449873 -3.611587 -1.359369 -3.817653 5.244409 -2.970509 2.934594 -1.004780 1.526349 1.791692 -4.270823 -1.104935 -5.832846 0.696193 2.385739 -3.493302 -0.083618 -5.507239 1.300161 -2.014143 -3.344918 1.955604 -0.215972 3.440957 1.020578 1.121100 -3.959253 -6.339492 3.389912 0.175027 2.420313 2.360610 -0.322012 -1.617581 1.297300 -3.552137 -4.453739 2.562632 1.746760 1.068926 -0.128155 0.498813 -2.539486 -0.746147 0.194212 -2.100893 5.058946 -2.658824 4.492889 -1.873014 -1.694382 -3.201094 -3.254670 -0.924440 -5.436483 1.845247 4.369416 -2.367983 1.307979 -0.671797 1.412747 -0.234556 -5.737617 0.572201 -1.967973 -0.611859 5.589039 -3.043917 -1.989577 -0.879733 0.269596 0.551345 5.165384 -1.054446 2.489597 5.544014 3.874534 1.324662 -4.355114 0.807439 1.363582 2.526177 2.789425 4.194006 -4.701255 -3.743350 -1.101746 -0.306035 -8.310463 0.511352 3.371736 4.200910 -0.733958 -6.492411 3.459140 -2.868041 5.768103 4.959133 3.441968 2.280797 -0.134050 -3.139413 2.893407 9.863933 -3.450338 3.907828 -4.262439 -5.349483 7.395309 -1.680626 4.539155 -0.338383 1.354226 1.089359 -5.301625 0.524061 7.099750 1.736711 1.940208 5.039838 -0.410234 1.305904 -7.850106 -7.320597 -0.757145 3.034033 1.007172 10.450978 -4.422327 -2.120563 -0.833082 3.983186 -0.962612 -2.085565 0.162798 -1.894760 1.814166 -12.005250 -8.528019 8.120055 6.426947 0.085299 -0.225446 4.738958 2.189180 -0.710805 -4.096128 -3.546698 4.529935 0.594581 -0.152775 0.002414 0.763818 -5.704320 -0.866941 0.584269 1.382442 4.498908 -4.448286 -2.407140 -1.588872 -7.447716 -4.507218 2.855233 -5.799150 -3.199881 0.199922 0.257092 -0.104949 1.753603 -0.588915 -2.156419 1.647437 -3.446913 -2.177027 1.165289 4.201493 0.575455 5.964918 6.699647 0.230989 2.886775 2.299521 -3.170229 12.995138 -3.739237 -1.443837 -0.116022 4.074901 -0.737663 2.934780 2.835200 -1.623617 -3.880917 -6.415759 4.050951 -0.311411 1.762059 -7.421508 -3.243005 -5.645595 -1.737462 1.887817 7.535672 0.145228 11.469958 -1.356903 0.846356 -10.708425 0.303099 3.759401 0.198408 4.437491 3.947401 -4.971212 -5.560145 -1.454024 -2.871885 2.647269 -1.289745 -6.009384 -4.698057 -1.658325 1.599049 -3.422409 2.750144 6.543775 -1.230691 3.406766 1.032706 -1.669196 -2.232874 -1.476612 3.621094 2.303252 -3.823707 5.957604 -1.884969 11.641820 -2.259075 4.712974 -4.478320 1.100249 -0.555194 -2.923509 -2.261642 7.477186 3.944606 1.708621 1.348927 -0.571393 -1.668796 4.355422 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.333759 1.088681 5.443665 2.848620 -1.248908 -2.286305 -1.207881 -4.723333 2.610186 1.586243 4.055507 -0.995689 2.146280 -0.136600 -0.742407 -1.224225 1.899413 -0.753484 0.312660 -1.222205 0.349066 4.354213 0.994939 -2.500640 0.667354 -4.496511 3.082846 1.458177 1.619529 2.719343 0.595605 1.329222 0.095740 1.739161 -1.872093 -0.048382 -0.178623 1.787500 -1.133211 -0.773766 1.517854 0.782177 1.901466 0.577705 2.710959 1.609552 1.458438 -0.800053 -1.878938 -1.224848 -1.435080 1.857947 -1.641345 0.969012 -1.180328 -0.142270 0.864986 -2.010213 -0.244937 -3.686970 1.009047 0.783248 -1.749676 0.214880 -2.721223 1.237986 -0.193465 -1.279317 0.284603 -1.645035 1.652587 0.475942 0.146310 -1.416553 -3.641474 1.659051 0.809968 0.178395 1.606461 0.236766 -0.945286 0.195805 -1.963171 -2.624280 2.416435 2.317940 0.897158 1.093381 -0.441047 -1.354298 -0.297411 -0.099379 -0.473845 3.202166 -2.091421 1.374076 -0.006810 -1.320931 -1.432745 -1.261572 0.450673 -2.762274 1.119453 2.457382 -1.868341 1.133601 -0.053908 0.846705 -0.371578 -2.663527 0.319287 -2.257211 0.951607 3.410201 -1.653603 -1.478413 -2.024088 -0.093182 0.881569 2.725921 -0.987969 1.208720 3.155276 1.758966 1.172160 -2.643452 -0.162701 2.136567 1.159023 1.223275 1.117328 -2.870924 -1.572997 -0.538266 -0.989607 -4.212151 -1.481564 0.772257 2.577376 -1.292042 -3.478259 2.789289 -1.318355 2.806484 3.229225 1.053246 0.795637 1.155944 -2.368721 1.113463 5.028325 -1.359655 1.489489 -1.910765 -2.674154 3.317404 -0.819411 2.186911 0.304830 0.314793 -0.025250 -2.561275 0.827383 3.417849 0.352701 1.256883 1.123302 0.521629 0.497258 -3.895894 -5.141498 -1.200797 2.213721 1.462424 5.739970 -2.835168 -0.968578 -0.543312 2.911280 0.241294 -1.087858 0.489705 -1.444751 1.279634 -5.866807 -4.877321 4.102991 3.978358 1.371665 0.252148 2.612853 0.536012 -0.285072 -1.678517 -1.397890 2.565148 0.354931 -0.460362 0.073852 0.236609 -2.964269 -1.801665 -0.286494 0.670303 1.400575 -1.749682 0.490485 -1.376825 -2.295850 -2.491166 0.910677 -2.307039 -1.703029 -0.534393 0.202775 0.047920 1.131649 -1.316296 -0.565493 0.750985 -1.453757 -0.591379 0.818161 1.147901 -0.042204 2.659209 4.195235 -0.974887 1.026806 0.210096 -1.255109 6.305819 -1.186747 -0.163014 0.131923 1.341458 0.798808 1.436720 1.632637 -1.237611 -0.962012 -3.601904 1.316981 0.468455 1.299565 -4.015802 -1.919181 -3.697682 -0.489357 0.597755 3.782148 0.393294 6.511903 -0.791820 0.401959 -5.812100 0.188281 2.414743 -0.436428 2.184057 1.656882 -2.887563 -3.310004 -0.502683 -2.215505 0.041476 -0.953988 -2.889962 -2.842448 -0.964386 1.738374 -1.874104 1.203211 3.145916 0.287188 1.499963 0.050585 -0.323901 -1.419739 -0.719555 1.242798 0.946964 -2.094963 2.327014 -0.764456 5.476154 -1.667410 2.616745 -1.984232 2.220265 -1.089739 -2.648756 -1.169581 4.344208 2.335938 0.880781 0.131312 -0.710993 -0.729448 2.731599 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = 0.068358 0.142302 0.154187 -0.028654 0.063874 -0.136637 0.015903 -0.108427 -0.010022 -0.009793 0.049768 -0.092171 0.116329 0.014385 -0.010984 -0.038010 0.024832 0.147890 0.036580 0.000408 0.010810 -0.068710 -0.120752 -0.026390 0.052348 -0.024935 0.078090 0.072171 0.018552 0.123602 -0.016739 0.001291 -0.046075 0.026172 -0.083450 -0.096151 0.134319 0.052833 -0.079344 0.022446 -0.124127 0.086128 -0.025377 0.038387 -0.018240 0.218668 -0.174020 0.066397 0.058180 -0.006112 0.084180 -0.045429 0.041573 0.077983 -0.071561 -0.057734 0.014273 0.054927 0.085584 -0.113157 0.116285 0.034309 0.034117 -0.008187 -0.094748 -0.038473 0.023884 -0.151992 -0.017811 -0.038497 0.001904 -0.019623 0.019998 -0.001846 -0.089132 -0.004371 0.057198 0.044124 0.075251 -0.075514 0.063671 -0.033259 -0.041582 -0.069745 0.052387 0.079100 0.108525 0.132994 -0.037123 -0.101467 0.061975 -0.009463 0.099142 0.042268 0.160341 0.035954 -0.128443 0.057344 0.052054 -0.186062 0.036523 0.002470 0.016687 -0.019275 0.091674 0.040622 0.072678 0.172548 0.055090 -0.009845 0.134514 -0.047737 -0.039069 0.089106 0.053726 -0.083695 0.007484 -0.070725 0.007485 0.102445 -0.016346 -0.028494 -0.110201 0.013835 0.027126 -0.058410 -0.060913 0.060162 -0.033011 0.072004 0.035499 -0.141480 -0.009295 0.027937 -0.198960 -0.126788 0.016056 -0.092282 0.050654 -0.153536 -0.096811 0.143964 -0.141032 -0.087114 0.000991 0.083427 0.030438 -0.019120 -0.039613 -0.027008 -0.001539 -0.072405 0.041216 0.053414 -0.018049 -0.196854 0.160332 -0.010565 -0.076012 -0.102724 0.117590 0.030611 0.036595 0.086635 0.098422 0.082002 0.011414 0.013127 -0.237630 -0.066992 -0.005915 -0.024142 0.129686 -0.123358 0.061359 -0.027677 -0.102759 -0.048141 0.201844 -0.131572 0.053813 -0.015212 -0.012192 0.052550 -0.018772 -0.061562 0.025620 0.037997 0.096921 -0.113771 -0.062417 -0.008294 0.006304 -0.049720 0.027404 -0.097267 -0.078795 -0.151687 -0.172559 -0.036980 -0.061817 0.061623 0.070782 0.032092 -0.014907 0.134763 0.012119 -0.026899 -0.009603 -0.095381 -0.025386 -0.030082 0.109491 0.053809 0.008820 -0.009481 0.006048 -0.137610 -0.064025 0.173502 -0.037210 0.031092 -0.006839 0.012434 -0.000697 0.172768 -0.082208 0.028505 -0.016549 0.033916 -0.114482 0.199401 0.002310 0.069453 0.009069 0.093541 -0.010412 0.035362 0.055227 -0.050286 -0.062091 -0.181704 -0.215852 0.085152 0.004597 0.126320 -0.050417 -0.030537 0.031851 -0.104801 0.142579 -0.006812 0.087385 0.038137 0.067030 0.056263 0.024219 0.016156 -0.130530 -0.007148 0.058786 -0.046722 -0.212910 0.018937 -0.119262 -0.229830 -0.074108 -0.073597 0.031884 0.034202 -0.080344 0.059391 0.000201 0.054176 0.070113 -0.005050 -0.109192 0.020411 -0.027027 0.009579 0.075770 -0.085601 -0.115767 -0.067407 0.099954 0.152988 0.050988 0.064307 -0.046623 -0.061684 0.013337 0.007505 -0.084200 0.095477 0.039030 0.097505 0.039597 0.068915 0.001957 0.047586 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__introsort_loop(int*, int*, long, __gnu_cxx::__ops::_Iter_less_iter) = -2.044624 0.890954 6.581429 3.739791 -2.341236 -4.118272 -1.737591 -5.832102 3.445070 1.939044 5.459499 -1.200035 2.759640 -0.327904 -0.773636 -1.664273 2.266600 -0.918394 0.057372 -1.669375 -1.234866 5.816936 1.148062 -3.448178 0.976967 -5.445028 4.492104 2.167307 1.232917 3.961357 0.749093 1.526556 -0.214347 2.182563 -2.096759 0.328800 -0.132065 1.983141 -0.998140 -1.034072 2.441084 -0.095539 3.172634 0.657675 3.574769 2.172750 1.579346 -0.762364 -3.165755 -1.742630 -1.804307 1.975485 -2.100658 1.341133 -1.352457 0.283352 1.773312 -3.007939 -0.369100 -5.150614 1.125139 0.048249 -2.645437 0.160775 -3.456555 1.290555 -0.468752 -2.073934 0.698994 -2.690164 1.939002 0.207639 -0.197605 -1.781327 -4.605538 1.730282 1.270843 0.164101 1.975809 0.542108 -1.520364 0.123187 -3.146954 -3.112264 2.825733 2.309680 1.302131 1.492271 -1.334656 -1.756297 -0.026629 -0.057327 -0.178069 3.916493 -2.367595 1.432545 0.599106 -1.896421 -2.532352 -2.426093 0.875208 -3.053651 1.476953 3.432820 -2.922462 1.099009 -0.180050 1.092014 -0.775195 -3.741007 0.669691 -3.631893 1.321314 3.965121 -2.038489 -2.060157 -2.424941 -0.592609 1.403180 3.684747 -1.081286 1.050341 4.003111 2.200577 1.556346 -3.376015 -0.528067 2.445130 1.877842 1.295437 1.279021 -3.538062 -1.761085 -0.338943 -1.831195 -5.786051 -2.013520 0.824712 3.389035 -1.221326 -4.497534 4.059009 -1.825082 3.353941 3.978337 2.121200 0.810177 1.302913 -3.556256 1.223058 6.274647 -1.641621 2.114269 -2.398505 -4.351120 4.783466 -0.712555 2.428448 0.714426 -0.009886 -0.127037 -2.944022 1.221112 4.150635 0.411005 1.258369 1.337966 0.842166 -0.108554 -4.948607 -7.042205 -1.032862 3.604620 2.782679 8.310349 -4.407652 -1.228640 -0.856287 4.160159 -0.051774 -1.553985 0.731811 -1.650385 1.673553 -8.862796 -6.792033 6.134611 4.773813 2.116584 0.536462 3.451896 0.319805 -0.135603 -2.010368 -2.396283 2.998601 0.995304 -0.412369 0.515146 0.092411 -3.988684 -1.981238 -0.472054 0.977165 2.059936 -3.175407 0.516236 -2.661071 -2.725879 -3.389035 1.225301 -3.230485 -1.965262 -0.368165 0.163975 -0.083942 1.533680 -0.872786 -0.896503 0.147560 -1.842878 -0.522918 1.182373 1.542209 0.141238 4.536682 6.218471 -1.750809 1.366165 0.019376 -1.270416 8.769994 -2.268824 -0.078188 0.290486 2.643715 1.693858 1.499948 2.993466 -1.500332 -0.855365 -4.257919 1.707077 0.685880 1.624311 -6.309416 -2.505335 -6.168114 -0.595698 0.424337 5.390756 0.277380 8.610507 -0.738163 0.537030 -8.012471 0.156886 3.187603 -0.426383 2.622765 1.807877 -3.934748 -4.457235 -0.490815 -3.093151 0.586588 -1.012272 -3.321692 -3.415242 -1.268452 1.556833 -2.432671 1.564723 4.407745 -0.227643 1.737381 0.235923 -0.424642 -1.649123 -1.137835 1.833037 0.903707 -2.313923 3.728119 -0.547799 7.445173 -1.415481 3.328153 -2.084001 3.487644 -1.484543 -3.656782 -1.558514 4.916944 2.991330 1.020961 0.328393 -0.173597 -0.884063 3.425571 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::__lg(long) = 0.168936 0.571566 1.001791 0.696557 -0.052635 -0.355401 -0.066146 -0.852419 0.307218 0.042254 0.400469 -0.250773 0.176039 0.548263 -0.026509 -0.153554 0.202675 0.074905 0.275559 -0.087658 0.070270 0.533865 0.222089 -0.621666 -0.136408 -0.623810 0.470721 0.158584 0.506964 0.347005 0.066590 -0.124381 0.183847 0.381880 -0.529444 -0.596387 0.056932 0.225415 -0.471407 -0.135696 -0.243886 0.548910 0.284637 0.191541 0.061609 0.389398 0.527618 0.044151 0.054108 0.302119 -0.399538 0.670191 -0.231331 0.371524 0.007189 -0.054975 0.121950 -0.353320 -0.024555 -0.395059 0.030939 0.448019 -0.242405 -0.016969 -0.707607 0.088896 -0.265722 -0.368236 0.075438 0.491127 0.481001 0.253299 0.373293 -0.521082 -0.849731 0.421585 -0.235837 0.249208 0.227489 -0.318888 0.038432 0.287900 -0.326241 -0.467202 0.234021 0.316825 0.002373 -0.080023 0.391371 -0.326727 -0.111400 -0.210090 -0.414365 0.587621 0.181201 0.929454 -0.430458 0.070708 -0.182759 -0.525997 -0.240614 -0.605305 0.271415 0.141149 0.269274 0.232522 0.220901 0.302108 0.243228 -0.614645 0.247929 0.126363 -0.042785 0.386927 -0.173407 -0.151007 0.210103 0.055430 -0.102308 0.491732 -0.016464 0.297308 0.230586 0.421006 -0.011840 -0.261523 0.194548 0.090810 -0.085985 0.499342 0.522659 -0.575424 -0.346840 -0.066375 0.271000 -0.698841 0.399469 0.584079 0.290244 -0.338230 -0.686677 0.094571 -0.257382 0.471940 0.508463 0.539073 0.317458 -0.060304 0.078390 0.220248 0.860736 -0.340011 0.323151 -0.423968 -0.097761 0.317709 -0.201680 0.533533 -0.319043 0.345925 0.340542 -0.531949 -0.094566 0.690321 0.473760 0.002877 0.818481 -0.151450 -0.146227 -0.848683 -0.217237 -0.059980 0.299931 -0.334131 0.737430 -0.208276 -0.381028 0.032370 0.001831 -0.020380 0.038470 0.052440 -0.173209 0.143139 -1.070922 -0.681052 0.338562 0.271602 -0.047021 -0.462107 0.120864 0.212087 0.049719 -0.727788 -0.231949 0.343399 -0.421905 -0.055959 -0.308345 -0.104469 -0.567702 0.135007 0.227200 0.134201 0.788128 -0.278249 -0.431177 -0.154198 -0.902457 -0.559515 0.274650 -0.505856 -0.394343 0.053855 0.071378 0.070159 0.019500 -0.028480 -0.191160 0.608811 -0.313541 -0.332095 0.158809 0.323071 -0.240725 0.678131 0.285696 0.440927 0.248120 0.484251 -0.455806 1.391740 -0.163469 -0.119168 -0.032766 0.224429 -0.424807 0.351731 0.189410 -0.170425 -0.794993 -0.569983 0.337754 -0.156841 0.283418 -0.393998 -0.278368 -0.129719 -0.216027 0.225133 0.591567 0.060070 0.875112 -0.059296 0.311311 -0.682069 0.058480 0.273379 -0.061609 0.416197 0.506358 -0.555093 -0.036019 -0.079509 -0.194280 0.025484 -0.215877 -0.767498 -0.322194 -0.036109 -0.290068 -0.104581 0.163055 0.537603 -0.192285 0.205386 -0.218910 -0.187446 -0.042944 -0.165792 0.677427 0.063400 -0.607983 0.366059 -0.310622 1.266940 -0.291480 0.309193 -0.597766 -0.337277 -0.025568 0.158519 -0.172164 0.854157 0.175137 0.180055 0.078505 -0.192007 -0.133789 0.198359 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__final_insertion_sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.857055 1.048437 6.595923 2.892614 -2.157618 -3.787950 -1.853626 -6.838012 3.597873 2.420684 5.868407 -0.797768 3.187712 -0.848272 -0.489995 -1.173815 2.747549 -1.396726 -0.099210 -1.948595 -0.503001 5.312339 0.667575 -2.302487 1.073361 -5.310853 3.505770 2.061426 1.329517 3.130580 1.082093 1.257548 -0.587478 2.205697 -2.099629 0.975211 0.640429 2.156289 -1.262985 -1.270157 2.172874 0.530726 3.306728 0.524322 4.105089 1.631683 1.577660 -0.692488 -3.031361 -2.157783 -1.041746 2.455690 -2.012409 1.599245 -0.716558 0.060208 1.397207 -2.817854 -0.112327 -4.222401 1.168972 0.406845 -2.330208 0.077204 -2.654963 1.087615 0.287225 -1.765252 0.544615 -3.081941 1.941688 -0.225461 -0.417709 -1.083896 -4.343665 1.516986 1.564827 -0.143476 2.275352 0.985017 -1.201276 -0.712465 -2.718170 -3.452424 3.390799 2.980908 1.282528 1.861250 -2.065315 -1.097701 0.018047 -0.234749 0.365448 3.932910 -3.124429 0.626499 0.898865 -2.291128 -2.508700 -2.227699 1.146551 -3.151679 1.503943 2.976582 -2.623031 0.930072 -0.757021 1.042593 -1.352314 -3.018980 0.735841 -3.245584 1.280857 4.219368 -2.319622 -2.276575 -2.829056 -0.715376 1.322081 3.219971 -0.590590 0.883042 4.513045 2.286455 2.108399 -3.834645 -0.833269 2.433345 2.268213 1.419155 0.985473 -3.912994 -1.646846 0.326074 -2.724458 -5.936891 -2.539552 0.788343 3.804622 -1.379582 -4.200819 3.469132 -1.746069 3.378789 3.926139 1.497260 0.739418 1.481473 -3.538781 1.075140 5.518771 -1.632489 2.415436 -2.038492 -3.381503 3.506645 -0.970950 2.394511 0.988236 -0.235828 -0.637404 -2.883833 1.275683 4.346541 0.519489 1.876267 -0.088663 1.191355 -0.485765 -4.548014 -7.666718 -1.196298 3.400842 2.494569 7.404511 -4.193741 -1.988261 -0.749840 4.585826 -0.497547 -2.307053 1.200368 -2.042901 2.057895 -6.892424 -5.944032 6.316905 5.701229 2.644290 0.221414 3.835143 0.147224 -1.656515 -1.973054 -2.097571 3.027004 1.337700 -1.810797 0.297772 0.451710 -4.166026 -2.089218 -0.943380 0.994608 1.161531 -1.897743 1.746361 -1.642411 -2.187704 -2.488848 1.470560 -2.314697 -1.934821 -0.841591 0.274139 -0.004112 1.909469 -1.767733 -1.163738 0.459449 -2.612188 -0.459765 1.280723 1.798292 0.637404 4.845044 5.654088 -1.951702 2.232673 -0.522796 -1.504109 6.921278 -2.287837 -0.077556 0.145259 2.285181 1.500149 1.665608 2.906850 -1.728946 -1.213889 -4.477101 0.805941 0.768813 1.938267 -4.722727 -2.957999 -5.827228 -0.406765 0.010014 5.413690 0.131118 8.239070 -0.976412 0.936638 -7.824244 0.262888 2.867069 -0.652210 2.203913 1.661904 -3.692676 -4.856429 -0.495457 -3.664799 -1.471736 -0.486669 -2.697385 -3.416837 -2.330062 2.939675 -2.711144 1.173369 3.854618 0.162176 2.271381 0.208136 -0.333731 -1.950911 -0.513804 2.012447 0.624444 -2.520268 3.278064 -0.136779 8.192592 -1.594540 3.562376 -2.080158 3.321347 -1.488688 -3.894159 -1.876794 4.955999 3.967094 1.268974 -0.112128 -0.273744 -1.157480 3.792154 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__partial_sort(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.664211 0.340240 2.674714 1.742318 -1.228011 -2.385120 -0.737112 -3.021138 1.903924 1.013880 2.414729 0.203491 1.819016 -0.934206 -0.292713 -0.570088 1.395588 -0.144930 -0.191085 -1.018618 -0.641613 3.037712 0.392472 -1.423001 0.505168 -2.226357 2.107499 1.101012 0.876448 2.169970 0.512950 0.552744 -0.393393 1.052428 -1.014051 0.320497 -0.331020 1.017982 -0.789916 -0.638915 1.221863 -0.074101 2.017165 0.547275 1.719237 0.687924 0.764922 -0.156032 -1.195734 -1.103734 -0.609009 0.631606 -0.954238 1.063442 -0.908467 0.069073 1.017270 -0.770099 0.227853 -1.995580 0.644788 -0.040189 -1.381235 -0.119115 -1.611485 0.275641 -0.414059 -1.271252 -0.086552 -1.585597 0.916994 -0.067944 -0.396294 -1.229527 -2.697876 0.259915 0.566586 0.022920 1.368226 0.992112 -0.972527 -0.770461 -1.701743 -1.619160 1.644591 0.960888 0.430868 1.331993 -1.223341 -1.163553 0.002133 0.199426 0.631251 1.521761 -1.232144 0.407227 0.387002 -0.802248 -0.668527 -1.354445 0.726287 -1.207758 0.563005 0.969879 -0.887056 0.333238 -0.079289 0.340190 -0.674808 -1.372659 0.519529 -1.544771 0.161051 2.085976 -0.643485 -1.271333 -1.296493 -0.359987 0.639835 1.742169 -0.019621 0.194443 2.052363 1.011134 0.961858 -1.887375 -0.294088 1.262940 0.887709 0.642587 0.409187 -1.410932 -0.899233 0.395323 -1.306336 -2.936969 -1.043484 0.715102 1.719416 -0.752801 -1.671269 1.862034 -1.010817 1.147665 1.947346 0.658947 0.653456 0.554034 -1.733734 0.656361 2.779116 -0.639110 0.958008 -1.085005 -1.964136 2.326921 -0.398642 0.921339 -0.056846 -0.510800 -0.326598 -0.918201 1.085862 2.095815 -0.236080 0.654822 0.195636 0.600600 -0.580344 -2.071564 -3.496090 -0.414216 2.113342 1.899575 3.808374 -1.984868 -0.341345 -0.276661 1.644470 -0.125321 -0.925405 0.674523 -0.972083 1.062862 -4.320117 -2.777757 3.390100 2.258749 1.380953 0.007224 1.379851 0.296039 -0.033913 -1.074379 -1.139701 1.094202 0.935369 -0.841152 0.232207 0.231167 -2.202944 -0.905662 -0.062726 0.393982 0.799000 -1.401122 0.758674 -1.648372 -0.972609 -1.667735 0.935976 -1.276599 -0.520878 -0.268838 -0.040395 -0.255693 0.799551 -0.216535 -0.416427 -0.098136 -0.824484 -0.157037 0.212842 0.853154 0.276527 2.206985 2.969907 -1.242853 0.614709 -0.080510 -0.840101 3.942438 -1.390449 0.123479 0.216575 1.612522 1.044137 0.826466 1.511837 -0.831311 -0.120279 -2.134237 0.246690 0.990577 0.844095 -2.676393 -1.106323 -3.080859 -0.133164 -0.506730 2.910004 -0.147118 3.866018 -0.935163 0.539359 -3.537475 0.261603 1.399815 -0.196622 1.264172 0.796436 -1.720065 -1.732063 -0.443507 -1.760032 -0.048430 -0.299148 -1.122990 -1.507705 -0.560993 0.611454 -1.529909 0.667414 1.946732 -0.664850 1.194290 -0.638143 0.063323 -1.082473 -0.203314 0.736764 0.354272 -1.150823 1.456591 -0.034778 3.440689 -0.341017 1.851935 -0.918418 1.902079 -1.101017 -2.353923 -1.104480 2.287307 1.753385 0.440583 0.515793 0.221355 -0.017064 1.725958 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__unguarded_partition_pivot(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -2.292153 0.502219 5.969892 3.304539 -1.804898 -3.759450 -1.595542 -6.012227 3.899963 2.148196 5.581031 -0.248923 3.294245 -1.645699 -0.322955 -1.034288 2.795072 -1.088499 -0.123009 -1.624992 0.187083 6.120412 1.202689 -2.697730 0.723290 -4.827828 3.042284 1.982445 1.618769 3.536884 1.157549 1.429951 -0.202780 1.877136 -2.138994 1.083226 0.034021 1.979596 -1.424465 -1.936763 2.000566 0.137116 3.270345 0.664717 4.114108 0.610666 2.292072 -0.999328 -2.664372 -2.078645 -1.970317 3.056932 -1.949571 1.536307 -0.833255 -0.263786 1.958861 -2.088090 -0.069490 -4.981988 0.880009 0.265287 -2.650942 -0.222879 -2.535818 1.280404 -0.069679 -1.298559 0.120230 -2.814126 1.977660 -0.058863 0.084264 -1.383465 -4.903252 1.483604 0.977908 -0.142054 2.369867 1.776279 -1.417878 -0.976687 -2.434678 -3.263586 3.777288 1.992605 0.764988 2.189110 -2.323568 -0.926094 -0.786389 -0.169620 0.137071 3.265152 -3.167423 1.187696 1.967848 -2.080702 -1.617588 -1.567877 1.120392 -3.147357 0.628992 2.807134 -1.642553 0.807848 -1.488105 0.610633 -1.795569 -3.067723 1.449038 -3.023026 -0.130505 3.825835 -2.605221 -1.627321 -2.382505 0.045334 1.225771 3.435900 -0.698307 1.665439 3.255664 2.019324 1.844468 -3.491103 -0.163266 2.855328 2.891467 1.041947 0.489438 -3.067721 -1.776964 0.361409 -2.027191 -5.543721 -2.641577 2.368884 3.761708 -0.335900 -4.119749 3.361479 -1.206601 3.618227 3.897046 1.064485 0.691264 1.595382 -3.680838 1.166469 5.661895 -1.681607 2.451389 -1.501221 -3.233693 4.183109 -1.529101 2.400281 0.423515 -0.009901 -0.195603 -2.587296 1.075058 4.183806 0.775033 1.547113 -0.127552 1.141832 -0.109305 -4.817755 -7.722277 -1.451279 3.481324 2.695210 7.034892 -3.474107 -1.693148 -0.590227 3.715765 -0.777690 -2.297590 0.950365 -2.270230 1.953059 -8.005863 -5.792630 7.082123 5.255133 2.356807 0.603795 3.524487 1.012142 -0.948219 -1.898986 -1.883270 2.892103 1.396537 -1.737189 0.611012 0.218534 -4.236907 -2.503930 -0.747628 0.545931 0.546920 -1.928663 2.112778 -1.913112 -1.956411 -1.947258 1.142792 -2.363488 -2.331687 -0.958500 0.319551 0.088131 1.769411 -1.239439 -0.411930 0.598021 -2.657038 -1.101765 0.645866 1.699203 1.023808 4.477621 6.057098 -1.632149 2.376112 -0.417810 -1.827385 7.087305 -2.506949 -0.450074 -0.106071 2.074699 2.213258 1.633477 2.475413 -1.614166 -0.816081 -4.456987 1.174592 1.108883 2.068151 -5.147531 -3.331514 -5.478616 -0.323941 0.359632 4.945152 -0.339052 8.150701 -1.809431 0.392276 -8.030280 0.419298 3.197537 -0.482456 2.315949 1.609358 -3.439842 -4.454117 -0.776564 -3.127521 -0.435655 -0.792095 -2.970513 -3.013913 -2.419110 3.227413 -3.774274 1.575339 3.515813 -0.034098 2.641926 0.247486 -0.314519 -2.362469 -0.059096 1.223279 0.973721 -2.337410 3.260786 -0.602800 7.500665 -2.038836 3.380696 -2.337104 4.140011 -2.179691 -3.776870 -1.500944 4.877704 4.276827 0.667130 0.248343 0.060104 -1.133421 3.730830 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__heap_select(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.533018 1.019024 5.698844 4.293547 -2.909766 -3.931053 -1.535403 -5.180181 3.399615 1.537382 4.476606 -0.032829 2.757884 -1.294955 -0.710216 -1.747539 2.718289 -0.037503 -0.718309 -1.886403 -1.131856 5.242575 1.092695 -4.011565 0.984568 -4.075739 3.828913 2.246434 1.411969 3.524432 0.869216 1.133351 -0.676612 2.195996 -2.426468 -0.098159 -0.440982 1.733940 -1.814434 -1.543142 2.597877 0.431188 3.676249 0.577868 3.000074 1.420497 1.794350 -0.495544 -3.170960 -1.664613 -1.330313 2.030008 -1.559427 2.189182 -0.788732 0.570952 1.968586 -2.346349 0.214881 -4.455181 1.297736 0.395145 -2.189130 -0.350740 -3.083445 0.528360 -0.109462 -2.424479 0.690924 -2.882260 1.614186 -0.315307 -0.376685 -2.627875 -4.113802 1.176548 1.201003 0.512470 2.375272 2.050248 -1.155847 -1.053532 -2.760797 -2.821108 2.268935 1.179969 0.900190 2.167934 -1.527405 -2.184149 0.590844 -0.018084 0.300123 3.023955 -2.562921 1.233990 0.254439 -1.647675 -1.814252 -2.109534 0.886474 -2.504293 1.190314 2.611868 -2.558374 1.144525 0.116754 0.822971 -0.703492 -2.781054 0.741182 -2.793483 0.523855 3.989521 -1.525885 -2.600171 -1.877629 -0.439980 0.733958 3.364260 -0.691877 0.788476 3.676437 2.039653 1.816984 -3.451069 -0.065743 1.999840 1.692241 1.395880 1.363714 -2.896680 -1.658887 0.313343 -1.964196 -5.441184 -1.629934 1.270162 3.607763 -0.677133 -4.132189 3.176131 -1.858897 2.967572 2.938583 1.715414 1.124424 0.850412 -3.172919 1.106648 5.306267 -1.363814 1.900766 -1.868804 -3.969515 4.115465 -0.300704 2.142134 -0.120017 -0.623852 0.023950 -2.379565 1.635757 4.110494 -0.063064 0.747345 0.908151 0.765803 -0.842460 -4.754136 -6.704581 -0.515445 3.113966 3.048187 7.541483 -3.776074 -1.350303 -0.929335 3.431420 -0.789390 -1.654473 1.007680 -1.786475 1.955149 -7.686508 -5.650691 6.297298 4.463906 1.704582 0.065937 3.289966 -0.131078 -0.219308 -2.349570 -2.344407 2.183550 1.895509 -0.482372 0.638904 0.436000 -4.054759 -1.524417 0.258521 0.787696 1.959046 -3.005600 0.676189 -2.599015 -2.494977 -3.155014 1.541677 -2.649891 -1.096533 -0.158545 0.101883 -0.203433 1.837461 -0.582480 -1.732589 -0.453306 -1.789102 -0.802017 0.192919 2.135603 0.454993 4.187445 5.512273 -1.709214 1.986567 0.379766 -1.925926 8.618462 -2.879664 -0.019141 0.166804 2.928025 1.579708 1.552573 2.738855 -1.570537 -0.403559 -4.199941 0.873111 0.853511 1.539034 -6.694433 -2.238806 -5.472583 -0.495156 -0.486898 4.561897 -0.192400 7.670647 -1.560101 0.325192 -7.554206 0.235956 3.393672 -0.268477 2.533845 1.872408 -3.615110 -4.571156 -0.573169 -3.061846 0.809768 -0.763633 -2.593078 -2.969617 -0.973142 1.734323 -2.511871 1.654407 4.658882 -1.096976 2.139105 -0.645913 -0.196838 -1.402037 -1.272050 1.193260 0.918526 -2.249600 3.411456 -0.306932 7.130301 -0.689827 3.293181 -2.197453 3.073410 -1.564709 -4.060288 -2.110938 4.370886 3.212461 1.079595 0.827817 0.410480 -1.090186 3.458031 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__sort_heap(int*, int*, __gnu_cxx::__ops::_Iter_less_iter&) = -0.850790 0.970530 3.292441 2.832431 -1.533397 -1.963747 -0.671277 -2.667401 1.609628 0.516576 2.447510 -0.484728 1.272705 -0.228673 -0.636439 -1.102702 1.537291 0.352967 -0.143252 -0.839838 -0.288618 2.654529 0.523904 -2.413805 0.576409 -1.810005 2.078793 1.407953 0.869007 1.685779 0.468692 1.022592 -0.107307 1.086265 -1.304795 -0.432980 -0.588509 1.113138 -1.175331 -0.787364 1.143371 -0.274952 1.708268 0.464860 1.482311 0.933880 1.467329 -0.428920 -1.749513 -0.491157 -1.656407 1.427072 -0.884533 0.819572 -0.916878 -0.153746 1.218763 -1.078395 -0.003339 -2.670971 0.601126 0.184205 -1.146795 -0.170849 -1.979634 0.717119 -0.080426 -1.317544 0.228857 -0.949815 0.988812 0.210149 0.152791 -1.119093 -2.456384 0.924723 0.533055 0.532737 1.203561 0.935598 -0.128654 -0.060484 -1.442402 -1.434756 1.306375 0.487466 0.754915 0.994917 -0.513798 -1.199416 0.082100 -0.034027 -0.320480 1.661886 -1.393963 1.370477 -0.193532 -0.755151 -1.093417 -1.094078 0.314403 -1.436571 0.621826 1.467502 -1.461317 0.995186 -0.073370 0.482774 -0.208685 -1.866032 0.232494 -1.750173 0.139102 2.174059 -1.023762 -1.265374 -0.862606 0.057669 0.310642 1.822504 -0.840867 0.898498 1.336606 1.120291 0.755093 -1.589316 0.122010 1.116841 0.695311 0.911953 0.888861 -1.243154 -1.060886 -0.400587 -0.731379 -2.751061 -0.736028 1.059902 1.963747 -0.364236 -2.454634 1.691390 -1.073787 1.892317 1.644372 1.153931 0.646151 0.716244 -1.666121 0.621013 3.043144 -0.808322 1.123768 -0.821448 -1.757287 2.230412 -0.093689 1.292183 -0.152466 -0.156130 0.305110 -1.416686 0.256708 2.063049 0.447514 0.004395 1.185262 0.267943 -0.306335 -2.944897 -3.415543 -0.437355 1.778595 1.349505 3.915599 -2.031003 -0.779404 -0.399243 1.622518 -0.337161 -0.744854 0.282862 -0.880339 0.979476 -4.352922 -3.366861 2.978030 2.017538 0.337937 0.231107 1.667511 -0.000432 -0.152443 -1.597573 -1.102953 1.338775 0.426544 -0.123509 -0.007506 0.095993 -2.129766 -0.916816 0.290710 0.455355 1.098231 -1.351362 0.557348 -1.448416 -1.316646 -1.779068 0.345214 -1.608552 -1.068764 0.140053 -0.025231 0.157379 0.756645 -0.498506 -0.706446 -0.025577 -1.093356 -0.607439 -0.105386 0.895411 0.012149 2.200969 3.260825 -0.518402 0.978083 0.490217 -1.304218 5.086460 -1.188951 0.158836 0.001942 1.186182 0.732947 0.853827 1.415751 -0.865408 -0.502704 -2.483690 0.557108 0.289150 0.948015 -3.689716 -1.136835 -2.693221 -0.183683 0.375550 2.088905 -0.144024 4.211859 -0.754132 -0.176491 -4.108665 0.092367 2.007922 -0.263936 1.584398 1.149902 -2.099111 -2.206008 -0.255563 -1.462607 0.837729 -0.739765 -1.742542 -1.769869 -0.115959 0.580721 -1.311821 0.897644 2.454055 -0.468787 1.061357 -0.201075 -0.188041 -0.448883 -0.888330 0.961344 0.751754 -1.366492 1.981968 -0.508034 3.980013 -0.399070 1.478224 -1.354426 1.349031 -0.581700 -1.846872 -0.910314 2.873826 1.634470 0.575049 0.377732 -0.011015 -0.537000 1.819530 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__make_heap(int*, int*, __gnu_cxx::__ops::_Iter_less_iter&) = -1.917248 2.657336 9.333062 6.162678 -3.363460 -4.168652 -2.056308 -6.131427 3.269692 1.544636 5.786046 -2.013375 2.408389 1.080554 -1.189660 -2.282560 3.404691 -0.457807 0.210955 -2.064984 -1.153576 6.568582 2.317043 -5.777831 0.884462 -6.685452 5.603572 2.908445 2.115802 4.598762 0.973012 2.218501 0.510292 3.119297 -3.835901 -1.538129 -0.758842 2.688221 -2.184405 -1.111730 2.920360 1.001548 3.959278 0.687982 2.948785 3.320396 3.394401 -1.078651 -4.256599 -1.141299 -3.858668 3.989043 -2.397424 2.035483 -1.637967 0.100055 2.711170 -3.968972 -0.472002 -6.656344 0.864103 1.194135 -2.966979 -0.055061 -4.962571 1.756674 -0.568512 -3.033911 1.469246 -1.216052 2.594719 0.746119 0.767549 -2.898301 -5.609083 3.426475 1.390500 1.405142 2.500618 0.489980 -0.729391 1.085001 -3.500023 -4.164411 2.998189 1.603291 1.898537 1.222623 0.202970 -2.591578 -0.284649 -0.074949 -1.690611 5.155388 -2.387693 3.811321 -0.813294 -2.245439 -3.624738 -2.656145 -0.002068 -4.608872 1.675044 4.454859 -3.760937 2.040127 -0.552418 1.214456 -0.061590 -5.286703 0.471459 -4.034621 0.452488 5.231159 -2.736360 -2.542020 -1.853575 0.084221 1.070396 4.647542 -2.206915 2.394284 4.399411 2.946173 1.405433 -4.080896 0.566087 1.857323 1.812137 2.003834 2.991923 -4.164620 -3.109891 -1.466994 -0.804513 -7.002613 -1.169489 2.352928 4.285182 -1.052724 -6.375727 4.505209 -2.545312 5.210988 4.348870 2.907733 1.446631 1.060907 -3.538424 1.854889 8.541560 -2.851580 3.175076 -3.276071 -5.029231 6.219801 -0.570477 4.152526 0.034948 0.519551 0.797592 -4.502681 0.729442 6.079632 1.288622 0.777496 4.261105 -0.032015 0.966583 -7.338737 -7.886853 -0.913898 3.478986 1.687896 9.923313 -4.799721 -1.866972 -0.827311 4.257972 -0.808530 -1.578842 0.109490 -1.787324 1.935426 -10.809139 -8.598457 7.027846 5.155864 0.379158 0.637708 4.260390 0.607767 0.094064 -3.821337 -2.832510 4.169326 0.591166 0.554371 0.009286 0.333824 -4.915488 -1.620720 0.341755 1.236333 3.514366 -4.269993 -0.693974 -2.828136 -5.353814 -4.441224 1.193467 -5.047733 -3.225106 0.373893 0.321867 0.232979 1.840421 -0.733318 -1.851635 0.433864 -2.712202 -2.008043 0.543892 2.847380 -0.145809 5.031860 7.198170 -0.787420 2.245418 1.457520 -2.541469 12.488814 -3.137679 -0.658328 0.074483 3.188693 0.703778 2.417172 3.391486 -1.778585 -2.054763 -6.287394 3.085587 -0.047586 1.631118 -8.767446 -2.758533 -6.201745 -1.150154 1.657331 6.073673 -0.009366 10.753425 -0.958382 -0.199799 -10.089898 0.189136 4.283526 -0.315461 4.085031 3.359046 -5.304418 -5.779874 -0.909723 -3.333839 2.526203 -1.736979 -5.109776 -4.644809 -0.419552 1.440860 -2.998850 2.742951 6.242035 -0.535264 2.138358 0.823684 -1.094760 -1.642449 -2.060459 2.990172 1.758230 -3.113387 5.186836 -1.712629 9.888950 -1.899320 4.162616 -3.697602 2.310376 -0.498619 -3.180148 -2.099433 7.247334 3.236692 1.379944 0.978848 -0.422140 -1.483707 4.923557 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__bool __gnu_cxx::__ops::_Iter_less_iter::operator()(int*, int*) const = -0.322927 -0.037466 1.189279 1.182517 -0.513187 -0.994190 -0.309269 -0.739465 0.742901 0.264084 0.845238 0.180881 0.665854 -0.420732 -0.169262 -0.459535 0.464428 0.027877 -0.138822 -0.368456 -0.191317 1.496255 0.752349 -1.302306 0.122235 -0.998607 0.963159 0.429607 0.485097 1.405589 -0.127323 0.167515 0.044843 0.514517 -0.751258 -0.155278 -0.442146 0.479275 -0.365420 -0.273341 0.657952 0.121939 0.910291 0.064375 0.553179 0.396242 0.440601 -0.170499 -0.689460 -0.445596 -0.317385 0.062739 -0.603042 0.619755 -0.713381 0.277156 0.402375 -0.235631 -0.122710 -1.556168 0.384815 0.257169 -0.580146 -0.159096 -0.932127 0.153229 -0.158018 -0.855115 0.090882 -0.558485 0.499027 0.345281 0.044653 -0.921267 -1.099200 0.236946 0.205920 0.258153 0.410544 0.344985 -0.541051 -0.267600 -0.655809 -0.527725 0.427004 -0.001717 0.207669 0.581920 -0.034506 -0.645801 0.213685 0.323781 0.026487 0.544996 -0.191803 0.481191 0.028741 -0.095045 0.041094 -0.391984 0.023339 -0.613348 0.220932 0.682268 -0.351307 0.421626 0.164111 0.380548 -0.236035 -0.819166 0.184699 -0.418404 -0.277186 0.752686 -0.245233 -0.439631 -0.201481 0.061277 0.242491 0.840598 -0.278048 0.302835 0.792251 0.479251 0.289865 -0.908534 0.169082 0.368275 0.457967 0.385620 0.438891 -0.335814 -0.550392 -0.039215 -0.341919 -1.386392 -0.239325 0.488860 0.732465 -0.297996 -1.091082 1.043462 -0.538991 0.774624 0.939345 0.333994 0.448615 0.098306 -0.779012 0.480023 1.501897 -0.394380 0.463665 -0.571470 -1.184749 1.496360 -0.143069 0.577678 -0.323652 -0.210305 0.238009 -0.620467 0.567922 1.055098 -0.042047 0.358708 0.351864 0.069318 0.011339 -1.215642 -1.206007 -0.366515 0.793297 0.912145 1.986577 -0.770831 -0.095679 -0.194662 0.375696 -0.099745 -0.197618 -0.012370 -0.352719 0.404398 -2.730516 -1.472341 1.597149 1.020878 0.545646 0.304762 0.664732 0.212638 0.723397 -0.373847 -0.416038 0.410829 0.530307 0.049022 0.002816 0.082992 -0.970394 -0.462542 0.247547 0.095512 0.370562 -0.976915 -0.304888 -0.722892 -0.793518 -0.833103 0.314708 -1.120549 -0.167254 0.017567 -0.005247 -0.050118 0.146543 0.051107 -0.160175 -0.135738 -0.228897 -0.091484 -0.118230 0.571157 0.191153 0.531922 1.537568 -0.532063 0.052230 0.258862 -0.520917 2.309058 -0.847808 -0.071246 0.138181 0.974321 0.381311 0.372512 0.576449 -0.303491 0.300787 -0.935087 0.436149 0.662237 0.259107 -1.695778 -0.469064 -1.039188 -0.076411 -0.107278 1.228881 -0.111044 1.787549 -0.536333 0.227913 -1.809579 0.053297 0.641628 0.144004 0.745464 0.567689 -0.710997 -1.318828 -0.306954 -0.519032 0.795957 -0.400582 -0.787274 -0.537893 0.105862 -0.093692 -0.649605 0.498851 1.042506 -0.515339 0.691959 -0.311783 -0.015569 -0.445801 -0.292312 -0.012527 0.469394 -0.454665 0.664845 -0.093696 1.397685 -0.104668 0.856819 -0.659648 0.836638 -0.485012 -0.896167 -0.451696 1.141909 0.646459 0.133268 0.561715 0.014112 -0.003328 0.686426 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__pop_heap(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter&) = -0.924063 1.340965 5.544539 4.171666 -1.950273 -3.524589 -1.182710 -4.465044 2.923043 1.154845 3.736400 -0.340002 2.448374 -0.424547 -0.755820 -1.048600 2.500701 0.122573 0.128746 -1.367226 -0.796331 5.843292 1.471693 -3.482193 0.537477 -4.305170 3.606997 1.966801 2.366086 3.690354 0.571457 1.269559 0.399051 1.889290 -2.430554 -0.812829 -1.378730 1.838354 -1.988781 -1.048770 1.772086 -0.019482 3.202034 0.833624 2.000824 1.115449 2.594156 -0.758988 -2.135817 -1.030611 -2.872856 2.429986 -1.666775 1.625312 -1.813377 -0.213912 1.957453 -1.375890 -0.009455 -3.968883 0.601394 0.685259 -2.316016 -0.277507 -3.489248 1.020764 -1.172767 -2.159977 0.263569 -0.978499 1.909119 0.823152 0.434873 -2.593045 -5.254997 1.677314 0.616491 0.781339 1.994432 1.356858 -1.028224 -0.035425 -2.680937 -2.867508 2.822246 1.183159 0.818680 1.428862 -0.864030 -2.363929 -0.510486 0.361795 -0.454690 2.842409 -1.967390 2.587117 -0.342536 -1.103608 -1.302901 -2.235558 0.086039 -2.914022 0.723596 2.181793 -1.245767 1.213699 -0.216188 0.563984 -0.438279 -3.448359 0.665337 -2.333629 -0.817576 3.747623 -1.459301 -1.688676 -1.331189 0.355666 0.484343 3.154032 -0.937621 1.513163 2.917596 1.855341 1.137242 -2.811917 0.567230 1.889577 1.279459 1.311720 1.582496 -2.085048 -2.143241 -0.435420 -0.603549 -5.161833 -1.014275 2.529570 2.823519 -0.877965 -3.583709 2.857766 -1.570973 3.102318 3.450123 1.293547 1.402517 0.817369 -2.416720 1.620827 5.929724 -1.780449 1.954159 -2.264600 -3.443185 5.026110 -1.042468 2.498131 -0.730096 0.063680 0.321280 -2.501108 1.046804 4.128353 0.123173 0.505201 2.218191 0.162969 0.159578 -4.733314 -5.526477 -0.844301 2.954071 2.213028 6.876061 -2.978889 -0.849363 -0.169657 1.982286 -0.332001 -1.123561 0.637319 -1.663407 1.523529 -8.665847 -5.747709 5.585378 3.447841 0.828393 0.363739 2.542040 1.163422 0.430853 -2.712289 -1.991467 2.493996 0.891995 -0.716440 -0.112653 0.343857 -3.742486 -1.277150 0.382182 0.459622 2.082397 -2.738154 0.271413 -2.876937 -3.253004 -3.096589 1.555336 -3.418190 -1.777185 -0.156039 -0.034064 -0.162925 1.342938 -0.110336 -0.735874 0.247403 -1.559478 -1.166158 -0.169115 1.699834 0.094582 3.267750 5.812015 -0.909996 1.302709 0.928667 -1.957205 8.372996 -2.458263 -0.403397 0.036246 2.342735 0.773118 1.875916 2.284078 -1.218519 -1.121967 -4.175156 1.794710 0.910908 1.174147 -5.442372 -1.864446 -4.351059 -0.667686 0.544654 4.566596 -0.168694 7.204166 -1.813499 0.267065 -6.858827 0.384646 2.716305 -0.006566 3.200667 2.047608 -3.325024 -2.920797 -0.976259 -2.197157 1.719658 -1.069722 -3.569697 -2.836305 -0.602910 0.639285 -2.896778 1.783747 3.807194 -1.071779 2.235617 -0.464816 -0.460203 -1.818031 -0.537231 1.650684 1.293745 -2.008542 3.107820 -1.115706 6.282283 -1.255283 2.903683 -2.518586 2.223745 -1.188016 -3.170315 -1.497875 4.855694 2.577791 0.679692 0.999022 -0.048569 -0.361689 3.142318 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference::type&& std::move(int&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__adjust_heap(int*, long, long, int, __gnu_cxx::__ops::_Iter_less_iter) = -1.762551 2.803893 12.334964 9.016537 -5.494745 -8.155316 -2.548700 -7.418782 4.790986 1.692822 7.206073 -1.072988 3.741737 0.063110 -0.656988 -2.393186 4.605940 0.269978 -0.163705 -3.058164 -3.901164 10.329061 4.383213 -8.851909 0.855037 -9.167323 7.980992 4.773088 3.639955 7.794151 0.888037 1.427141 0.602211 4.454578 -5.741724 -2.622987 -1.810700 2.744753 -3.812484 -1.245518 3.779111 1.963544 6.958156 0.247533 3.174150 3.760262 5.981744 -0.674955 -6.242934 -1.810117 -4.977454 5.803734 -3.061153 4.191827 -1.354379 1.474869 4.085009 -5.153421 -0.401204 -9.192080 1.116287 2.081502 -4.701177 -0.381323 -7.785131 0.914572 -2.323730 -5.645252 2.869645 -0.962171 3.303798 0.979598 0.970047 -5.993142 -8.571995 4.186573 1.595652 2.705728 3.435243 1.475636 -1.814903 0.568507 -5.272720 -5.279096 3.123286 0.403612 1.901521 1.629485 -0.552817 -4.851084 0.245909 0.217870 -2.129896 5.778922 -2.848928 5.721673 -1.285620 -2.362359 -4.665807 -5.383058 -0.724347 -5.967773 1.884788 5.862127 -3.287170 2.126768 -0.980250 1.701978 -0.443398 -7.480376 1.147085 -4.524862 -0.908190 7.123854 -3.316173 -3.348961 -1.684931 0.447495 0.868613 6.978135 -2.496440 2.653571 6.607821 4.187660 1.771377 -5.851358 1.696671 1.526642 3.179464 3.005642 4.931875 -5.412533 -4.312380 -1.214421 -1.095427 -10.996596 -0.270299 4.746542 5.417841 -0.662947 -8.619286 5.652809 -3.563335 7.605652 5.831589 4.346631 2.558074 0.069407 -4.356009 3.259330 12.259881 -4.331649 4.577800 -4.957250 -8.965716 10.188005 -0.874529 5.526768 -0.855343 0.288607 1.471502 -5.723077 1.971265 8.962519 1.536722 0.784225 6.713222 -0.431064 0.771976 -10.402092 -10.491290 0.242129 4.475860 3.335428 15.818040 -6.607044 -2.959230 -1.331138 4.376395 -2.213340 -2.201393 0.265444 -2.753758 2.550740 -18.118452 -12.301621 12.058250 6.955135 0.579061 0.524564 6.106604 1.515707 0.836660 -5.531909 -4.823574 4.675460 1.577628 -0.088959 0.400051 1.055126 -8.300091 -0.437291 1.067456 1.393466 6.374056 -7.224595 -3.273584 -5.591263 -9.280721 -6.669887 3.068697 -7.761506 -3.380119 0.568886 0.355861 0.311503 2.900662 0.571161 -3.349993 -0.398426 -4.122078 -3.160291 0.090722 5.611515 1.044846 8.640337 10.849846 -0.492175 4.024299 2.791159 -3.943596 19.230577 -5.971275 -1.536788 0.122789 6.464962 0.799866 3.500083 5.295116 -2.157290 -2.845223 -8.275591 4.748153 0.560001 1.723096 -13.447794 -4.037905 -9.464395 -2.113957 1.348607 9.553147 -0.436100 14.993614 -2.189919 0.372738 -14.859594 0.229688 5.169445 0.562295 6.612621 4.901811 -7.569893 -7.776398 -1.741984 -4.194725 4.969854 -1.905048 -7.106374 -5.258545 -0.178462 0.373005 -4.643194 4.163176 9.452043 -2.695695 4.137442 1.119128 -1.511802 -2.478485 -2.288526 4.107101 2.586760 -3.997053 7.727470 -1.923452 14.656651 -1.505681 5.875771 -5.468600 2.577589 -0.544925 -4.586317 -3.459802 8.723042 4.999923 1.851940 2.458636 0.982624 -2.003148 6.820918 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_less_iter&>::type&& std::move<__gnu_cxx::__ops::_Iter_less_iter&>(__gnu_cxx::__ops::_Iter_less_iter&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::_Iter_less_val::_Iter_less_val(__gnu_cxx::__ops::_Iter_less_iter) = -0.044303 0.129274 0.401847 0.090674 -0.092333 -0.459997 -0.116848 -0.543717 0.186396 0.178787 0.412344 -0.088737 0.358438 -0.071496 -0.028136 -0.062137 0.144506 -0.018807 0.082198 -0.138135 -0.237868 0.346774 -0.046036 -0.018729 0.088953 -0.323473 0.465215 0.140051 0.044416 0.423732 0.066211 0.075393 -0.077645 0.162864 -0.121222 0.092376 0.039593 0.261084 0.025306 0.029674 0.114597 -0.046813 0.234952 0.138536 0.215272 0.389700 -0.088875 0.051985 -0.083965 -0.208908 0.030483 -0.119579 -0.210249 0.131256 -0.284949 -0.082006 0.188714 -0.042981 0.074134 -0.290292 0.129709 -0.112776 -0.239613 0.039161 -0.298339 0.040326 -0.118348 -0.284079 -0.079923 -0.189658 0.157534 0.012333 -0.100754 -0.033192 -0.411817 -0.009103 0.137870 -0.040866 0.240713 -0.058965 -0.169256 -0.095039 -0.354526 -0.330570 0.360339 0.213399 0.202387 0.228612 -0.175412 -0.156415 0.002284 0.072424 0.248405 0.305957 0.077206 0.018201 0.013982 -0.076205 -0.110064 -0.408881 0.174965 -0.186652 0.132151 0.155056 -0.104648 -0.033499 -0.016762 0.151030 -0.119829 -0.265160 0.118872 -0.337739 0.086499 0.284578 -0.034893 -0.188310 -0.221699 -0.189142 0.233956 0.284432 0.114873 -0.058919 0.316044 0.151064 0.113932 -0.313199 -0.199315 0.168363 0.088173 0.103515 0.039141 -0.348867 -0.163128 0.099274 -0.383627 -0.479274 -0.164905 -0.020736 0.192310 -0.338758 -0.247833 0.508465 -0.251055 -0.042775 0.370772 0.177787 0.089342 0.067770 -0.253637 0.082683 0.343935 -0.129907 0.162939 -0.135455 -0.303871 0.254235 0.025257 0.049874 0.053326 -0.147067 -0.087018 -0.088679 0.201915 0.331032 0.017245 0.236949 0.071461 0.128416 -0.236812 -0.205606 -0.409002 -0.021646 0.528921 0.182230 0.524108 -0.351936 0.002644 0.047620 0.391951 -0.016102 -0.110254 0.038447 -0.058075 0.174233 -0.605900 -0.395470 0.406403 0.193516 0.337364 -0.065236 0.044623 0.103799 0.017626 -0.123616 -0.184999 0.140267 0.017303 -0.248979 -0.122094 0.001711 -0.333885 -0.060801 -0.040635 0.121771 0.100844 -0.135808 0.056181 -0.292233 -0.085840 -0.279340 0.102943 -0.178965 -0.014292 -0.028643 -0.029942 -0.067026 0.038207 -0.069527 0.014283 0.064924 -0.124800 0.061651 0.133613 0.062038 0.022679 0.521259 0.323969 -0.290262 -0.144066 -0.060505 -0.068270 0.488878 -0.123843 0.084616 0.076430 0.385251 0.171169 0.109974 0.349199 -0.136784 -0.123777 -0.403523 -0.133532 0.300204 0.084230 -0.096774 -0.091054 -0.549247 0.013194 -0.150299 0.682439 -0.006514 0.538842 -0.001578 0.201007 -0.268688 0.072040 0.090466 -0.164923 0.133156 0.102485 -0.207201 -0.214994 -0.105483 -0.349968 -0.288470 -0.080706 -0.094124 -0.200958 -0.010504 -0.139535 -0.129080 0.028029 0.165821 -0.003887 0.055755 -0.119255 0.033186 -0.217298 0.053599 0.249838 -0.075193 -0.234795 0.144976 0.109886 0.538620 0.003431 0.318088 -0.093407 0.229183 -0.141378 -0.261547 -0.179764 0.366961 0.239269 0.091008 0.126947 0.109707 0.134993 0.252767 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__push_heap(int*, long, long, int, __gnu_cxx::__ops::_Iter_less_val&) = -0.712804 1.309809 4.996502 4.528398 -3.165613 -4.225950 -1.152782 -3.418378 2.098489 0.303745 2.904506 -0.188275 1.276735 -0.671632 -0.371874 -0.944147 1.958845 0.843467 -0.294346 -1.414766 -2.512839 4.541722 1.783355 -4.332648 0.582562 -3.204272 3.634000 2.329964 1.462498 3.434144 0.507444 0.369953 -0.178002 2.116352 -2.483178 -1.110024 -0.938373 1.213785 -1.920963 -0.470368 1.714045 0.166938 3.418991 0.076106 1.460610 1.582030 2.766187 0.042601 -3.204769 -0.612497 -2.281062 2.766291 -1.298764 2.156816 -0.492184 0.600541 2.128191 -1.781398 -0.030842 -4.173153 0.217531 -0.016067 -2.238468 -0.429016 -3.319751 0.103211 -0.934260 -2.875527 0.978862 -0.207453 1.356158 0.111836 -0.028644 -2.771870 -3.905269 1.340630 0.992116 1.558214 1.743511 1.260828 -0.220800 -0.299233 -2.459893 -2.159144 1.212137 -0.301954 1.062329 1.039068 -0.562632 -2.184586 0.255333 0.124504 -0.209659 2.197751 -1.214647 2.278415 -0.647126 -1.072104 -2.467344 -2.944589 0.025613 -1.997916 0.973894 2.077212 -1.586688 0.766318 -0.144822 0.730960 -0.253845 -3.222252 0.433830 -2.152942 -0.273165 3.196248 -0.885438 -1.608419 -0.333043 -0.101074 0.036243 3.153317 -0.630369 1.075454 2.406263 2.014515 0.961007 -2.389182 0.409996 0.424062 1.239320 1.461394 1.979964 -2.135139 -1.909504 -0.124320 -0.722115 -4.869304 -0.202630 2.284535 2.496463 -0.162395 -3.272093 2.207654 -1.721437 3.252915 1.933346 2.013078 1.060024 -0.188356 -2.260844 1.507004 5.352349 -1.389270 1.766609 -1.627122 -3.836279 4.524968 -0.103845 2.151452 -0.390379 -0.551280 0.490116 -1.943667 0.780008 3.771700 0.747146 -0.313425 3.050804 -0.011081 -0.666665 -4.767265 -4.812094 0.788411 2.686735 1.781172 7.022541 -2.998919 -1.391958 -0.598189 2.016808 -1.176059 -0.845159 0.375867 -1.302099 1.468710 -7.894303 -5.340529 5.681764 2.974833 0.302013 0.054713 2.589986 0.497054 0.113822 -2.818291 -2.307133 1.508689 0.979911 -0.216095 -0.142645 0.480659 -3.588436 0.037901 0.922247 0.711526 2.838865 -2.784138 -1.092823 -2.724049 -3.534670 -3.002781 1.085746 -2.968187 -1.054590 0.867066 0.016483 0.126504 1.517794 0.430842 -1.510342 -0.807119 -1.766692 -0.999934 -0.301252 2.410833 0.521905 4.194969 4.969733 -0.387396 2.414460 1.315178 -1.872776 9.034006 -2.649226 0.039689 0.298446 3.003172 0.611628 1.338758 2.663017 -1.080086 -0.761075 -3.547071 1.474219 0.404725 0.969622 -6.768330 -1.999012 -4.686251 -0.678534 0.491484 3.729828 -0.495889 6.427145 -1.109806 0.022888 -6.862954 0.144154 2.428286 0.036388 2.949519 1.871528 -3.265241 -3.736659 -0.769600 -1.938993 2.154562 -1.065878 -2.490020 -2.312843 0.425819 -0.135898 -2.008712 1.959081 4.491037 -1.662230 1.729514 -0.400597 -0.428381 -0.900758 -1.286515 1.898552 0.738897 -1.802715 3.461545 -0.346479 7.020733 -0.064196 2.339339 -2.114414 1.236426 -0.200856 -2.218785 -1.543638 3.461343 2.307779 0.814841 1.045299 1.176042 -0.847947 2.759130 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__bool __gnu_cxx::__ops::_Iter_less_val::operator()(int*, int&) const = -0.322927 -0.037466 1.189279 1.182517 -0.513187 -0.994190 -0.309269 -0.739465 0.742901 0.264084 0.845238 0.180881 0.665854 -0.420732 -0.169262 -0.459535 0.464428 0.027877 -0.138822 -0.368456 -0.191317 1.496255 0.752349 -1.302306 0.122235 -0.998607 0.963159 0.429607 0.485097 1.405589 -0.127323 0.167515 0.044843 0.514517 -0.751258 -0.155278 -0.442146 0.479275 -0.365420 -0.273341 0.657952 0.121939 0.910291 0.064375 0.553179 0.396242 0.440601 -0.170499 -0.689460 -0.445596 -0.317385 0.062739 -0.603042 0.619755 -0.713381 0.277156 0.402375 -0.235631 -0.122710 -1.556168 0.384815 0.257169 -0.580146 -0.159096 -0.932127 0.153229 -0.158018 -0.855115 0.090882 -0.558485 0.499027 0.345281 0.044653 -0.921267 -1.099200 0.236946 0.205920 0.258153 0.410544 0.344985 -0.541051 -0.267600 -0.655809 -0.527725 0.427004 -0.001717 0.207669 0.581920 -0.034506 -0.645801 0.213685 0.323781 0.026487 0.544996 -0.191803 0.481191 0.028741 -0.095045 0.041094 -0.391984 0.023339 -0.613348 0.220932 0.682268 -0.351307 0.421626 0.164111 0.380548 -0.236035 -0.819166 0.184699 -0.418404 -0.277186 0.752686 -0.245233 -0.439631 -0.201481 0.061277 0.242491 0.840598 -0.278048 0.302835 0.792251 0.479251 0.289865 -0.908534 0.169082 0.368275 0.457967 0.385620 0.438891 -0.335814 -0.550392 -0.039215 -0.341919 -1.386392 -0.239325 0.488860 0.732465 -0.297996 -1.091082 1.043462 -0.538991 0.774624 0.939345 0.333994 0.448615 0.098306 -0.779012 0.480023 1.501897 -0.394380 0.463665 -0.571470 -1.184749 1.496360 -0.143069 0.577678 -0.323652 -0.210305 0.238009 -0.620467 0.567922 1.055098 -0.042047 0.358708 0.351864 0.069318 0.011339 -1.215642 -1.206007 -0.366515 0.793297 0.912145 1.986577 -0.770831 -0.095679 -0.194662 0.375696 -0.099745 -0.197618 -0.012370 -0.352719 0.404398 -2.730516 -1.472341 1.597149 1.020878 0.545646 0.304762 0.664732 0.212638 0.723397 -0.373847 -0.416038 0.410829 0.530307 0.049022 0.002816 0.082992 -0.970394 -0.462542 0.247547 0.095512 0.370562 -0.976915 -0.304888 -0.722892 -0.793518 -0.833103 0.314708 -1.120549 -0.167254 0.017567 -0.005247 -0.050118 0.146543 0.051107 -0.160175 -0.135738 -0.228897 -0.091484 -0.118230 0.571157 0.191153 0.531922 1.537568 -0.532063 0.052230 0.258862 -0.520917 2.309058 -0.847808 -0.071246 0.138181 0.974321 0.381311 0.372512 0.576449 -0.303491 0.300787 -0.935087 0.436149 0.662237 0.259107 -1.695778 -0.469064 -1.039188 -0.076411 -0.107278 1.228881 -0.111044 1.787549 -0.536333 0.227913 -1.809579 0.053297 0.641628 0.144004 0.745464 0.567689 -0.710997 -1.318828 -0.306954 -0.519032 0.795957 -0.400582 -0.787274 -0.537893 0.105862 -0.093692 -0.649605 0.498851 1.042506 -0.515339 0.691959 -0.311783 -0.015569 -0.445801 -0.292312 -0.012527 0.469394 -0.454665 0.664845 -0.093696 1.397685 -0.104668 0.856819 -0.659648 0.836638 -0.485012 -0.896167 -0.451696 1.141909 0.646459 0.133268 0.561715 0.014112 -0.003328 0.686426 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__move_median_to_first(int*, int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -2.403550 1.493113 9.520731 6.721319 -4.728626 -6.529572 -2.725038 -9.110277 6.731786 2.719271 6.702224 1.299613 5.126802 -3.552037 -1.054346 -2.800514 5.095445 -0.005856 -2.107498 -3.592454 -0.704149 9.095050 1.336551 -7.221071 1.846352 -7.764719 5.551699 3.636702 3.052735 5.740400 1.720658 1.372756 -1.950634 3.909265 -4.315625 -0.330384 0.439896 2.135637 -4.397263 -3.421836 4.235487 2.816235 6.488636 1.040257 5.358402 1.269098 1.714975 -0.384907 -4.637433 -3.206458 -0.786155 3.878951 -1.767491 4.686923 0.097061 1.828756 2.689647 -4.071739 1.061557 -6.308425 2.622592 1.725055 -2.854183 -0.939014 -4.358341 0.044271 0.575746 -3.619991 1.141556 -5.939100 2.493175 -1.492203 -0.841847 -5.570557 -6.887504 1.399153 1.818403 1.015457 4.770146 4.676479 -1.924751 -3.181682 -3.912365 -4.787211 3.538624 2.770648 0.619533 4.831986 -3.069152 -4.467563 1.364250 -0.670067 1.340992 4.431449 -5.147057 0.725615 0.418898 -2.727529 -1.881262 -2.711331 1.811158 -3.564072 1.643307 3.567151 -3.196257 1.614944 1.059936 1.208912 -1.016583 -2.878433 2.318114 -3.516085 0.338451 7.587511 -1.918903 -4.995115 -3.225653 -0.916638 0.217698 6.025904 -0.792427 0.797284 6.056370 3.601547 3.677934 -5.995486 0.054616 4.149746 3.015695 2.383492 2.249867 -5.396607 -2.276929 1.715564 -3.529870 -9.176204 -2.895513 1.365917 6.681817 -0.400758 -6.344171 4.125387 -3.011536 4.580627 3.772439 1.854767 2.032380 0.902411 -5.456572 1.947928 8.564102 -1.983941 2.746659 -2.928652 -6.153066 5.486503 -0.716610 3.465490 -0.934520 -1.801910 0.005283 -3.239597 3.674701 7.009755 -1.142725 1.588795 -0.488385 1.624808 -2.320021 -7.901324 -11.882480 -1.143872 4.432637 4.926113 12.242387 -5.698052 -2.750267 -2.476284 6.507737 -2.148134 -2.627307 2.849029 -3.922928 3.776652 -10.875652 -8.349442 11.445619 9.241800 3.177928 -0.739654 5.868711 -0.446535 -1.087157 -3.782099 -3.480840 2.662181 4.409894 -1.131745 1.614774 0.931122 -6.541324 -3.159565 1.053039 1.142479 2.794333 -4.293154 1.720626 -3.638479 -3.919551 -5.434352 3.473034 -3.668564 -0.401077 -0.334149 0.381679 -0.912871 4.163943 -1.374382 -3.992921 -0.065441 -2.338792 -1.228911 -0.053138 4.162011 1.045062 5.809756 8.132551 -2.669421 4.880832 0.707432 -3.763890 14.357298 -5.184994 0.185459 0.137048 4.535639 2.695114 2.716627 3.639488 -2.900411 0.167683 -7.098689 0.684060 1.285815 2.858589 -11.200422 -4.503182 -8.521796 -0.917532 -2.103023 6.705394 -0.505455 12.654717 -3.706956 0.546323 -12.856421 0.588258 6.206725 -0.359492 3.615592 3.187456 -5.766810 -9.304490 -0.732124 -5.618280 0.319546 -0.961636 -4.571430 -4.424918 -2.938631 5.281157 -4.583300 2.934083 8.751129 -1.809563 4.156134 -2.578220 -0.018023 -2.885848 -2.084515 0.227081 1.086130 -3.834694 5.097935 -0.119387 11.209017 -1.524268 5.877494 -3.642155 5.243935 -3.359789 -8.122379 -4.189724 6.762831 5.366151 1.976305 1.391762 0.799757 -2.538789 5.927576 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__unguarded_partition(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.330309 0.657622 4.257061 4.224077 -3.637362 -5.011444 -1.300452 -4.461659 3.029798 1.066923 4.161847 0.157394 2.406330 -1.756133 -0.465829 -1.601541 2.043184 1.122565 -1.034065 -1.604515 -2.925091 4.091666 0.527734 -3.299824 0.900272 -1.973393 3.207767 2.788955 0.675794 2.642747 0.722275 0.546890 -1.067971 1.806085 -1.879832 0.435443 -0.609174 1.008408 -1.574448 -1.509645 2.074017 -0.980495 3.790512 0.146519 3.018882 1.173807 2.301122 -0.057641 -3.765704 -1.337220 -1.054633 2.082596 -0.863276 2.026482 0.411168 0.980648 2.319722 -2.299797 0.337661 -3.584053 1.274200 -0.573839 -2.232445 -0.306666 -3.039629 -0.037344 -0.460383 -2.938467 0.953532 -2.728812 0.962584 -0.859189 -0.491271 -1.965605 -3.168587 0.704764 1.098225 0.519586 1.947983 2.833153 -0.568288 -1.263570 -2.797153 -1.937063 1.074974 -0.274432 0.639967 1.873601 -2.690194 -2.182856 1.181070 -0.430868 0.504381 2.102977 -2.560855 1.268116 0.679410 -1.279156 -2.399889 -3.432639 0.815331 -1.521063 1.066425 2.219712 -2.259326 0.782249 -0.013917 0.785974 -0.900152 -2.529847 0.803724 -2.923752 0.907459 3.139091 -1.515344 -2.364292 -1.286254 -0.694458 0.240696 2.994673 -0.370831 0.208189 2.823518 1.659090 1.601411 -2.687094 -0.236505 1.496424 2.001402 1.175316 1.184295 -2.711538 -0.897928 0.643771 -2.435276 -5.042706 -1.161482 1.704459 2.981074 -0.178948 -3.321929 2.504983 -1.474333 2.722267 1.799042 2.477815 0.688511 0.306627 -2.850762 0.630870 3.785841 -0.820420 1.819098 -1.044569 -4.468778 3.518827 0.251375 1.344916 0.045707 -0.822490 0.066985 -1.628045 1.421987 2.944282 0.388903 -0.445171 1.095066 0.733474 -2.355659 -4.000852 -6.052687 0.912655 2.999841 3.526073 7.487331 -3.953429 -2.059322 -1.149336 3.319102 -1.144037 -1.782795 0.967720 -1.431972 1.656869 -7.290545 -5.310953 6.169356 3.392359 1.340711 -0.337249 3.434816 -0.766926 -1.235340 -2.655717 -2.859316 1.160746 1.876743 -1.233811 0.837475 0.399883 -4.519571 -0.117639 -0.095517 0.762419 2.552155 -2.573835 0.792836 -3.556754 -1.687437 -2.865707 1.266156 -1.474324 -0.640802 0.047085 0.197811 -0.179182 1.785889 -0.231856 -2.156859 -1.540729 -2.370568 -0.472838 0.217694 2.000324 1.035319 6.532152 5.385057 -1.245702 2.697783 0.311413 -1.534418 8.474655 -3.293947 0.191788 0.096411 3.400353 1.607266 0.965812 3.067843 -1.308311 -0.662791 -3.095954 0.167728 0.289093 1.205729 -6.780471 -2.505718 -6.191254 -0.410038 -0.890220 3.919421 -0.132595 6.419004 -1.032643 0.136732 -7.048637 0.074601 2.887029 -0.333223 2.522817 1.401987 -3.701495 -3.630268 -0.173285 -2.524382 0.516730 -0.459410 -1.754318 -1.968874 -0.594759 0.601086 -1.839407 1.164064 4.491698 -1.711548 1.980361 -0.140249 -0.067844 -0.720450 -1.377019 1.858502 0.352157 -1.801549 3.659163 0.223839 7.669830 0.692597 2.428824 -1.553099 2.523655 -1.216176 -3.628188 -1.877810 2.759585 3.485559 1.073931 0.519615 1.669409 -1.448751 2.616878 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.010499 0.283980 0.980127 0.831607 -0.538337 -1.173220 -0.195981 -1.151346 0.726469 0.252991 0.734520 0.191657 0.781136 -0.437023 -0.123245 -0.092131 0.633799 0.317383 -0.097263 -0.409175 -0.385826 1.295946 0.102395 -0.651016 0.198027 -0.631783 0.818605 0.528490 0.606286 0.949976 0.162443 0.131311 -0.144648 0.403742 -0.493093 -0.127429 -0.360757 0.409274 -0.633025 -0.243841 0.308045 -0.214937 0.921950 0.246724 0.432598 0.179961 0.410125 0.019109 -0.375770 -0.330755 -0.409833 0.315556 -0.299848 0.578530 -0.529250 -0.132260 0.460203 0.057831 0.221762 -0.647249 0.224838 -0.059059 -0.571980 -0.153680 -0.780143 0.001781 -0.387941 -0.758732 -0.117964 -0.426637 0.360039 0.042651 -0.137571 -0.704412 -1.403176 0.012585 0.230485 0.171915 0.619989 0.568615 -0.198582 -0.415926 -0.740662 -0.639601 0.725548 0.229427 0.206030 0.644926 -0.614835 -0.696335 0.037115 0.197469 0.384553 0.414990 -0.364694 0.373385 -0.149885 -0.175102 -0.131684 -0.851172 0.226887 -0.395178 0.169328 0.058920 -0.055281 0.199565 0.069504 0.162330 -0.157035 -0.621304 0.244265 -0.498469 -0.293065 0.927282 -0.070435 -0.559705 -0.323864 -0.060006 0.052343 0.659885 0.105215 0.081868 0.613011 0.371761 0.392154 -0.747837 -0.043430 0.445252 0.204300 0.356390 0.239887 -0.306238 -0.450455 0.210946 -0.493641 -1.305196 -0.265988 0.518637 0.663383 -0.315029 -0.479780 0.613805 -0.500462 0.327933 0.694116 0.240082 0.409468 0.110936 -0.591138 0.308571 1.071008 -0.317536 0.388357 -0.382452 -0.747502 0.972872 -0.072872 0.320869 -0.306717 -0.359397 -0.001506 -0.226053 0.432457 0.902907 -0.144253 0.098983 0.199398 0.165210 -0.504863 -0.899013 -1.216283 -0.110878 0.969343 0.752124 1.412386 -0.673753 -0.103585 -0.000211 0.419357 -0.170658 -0.271499 0.322616 -0.462740 0.491800 -1.929665 -1.105523 1.375969 0.726504 0.471339 -0.098414 0.350193 0.246100 0.051944 -0.627026 -0.458786 0.258609 0.374698 -0.570617 -0.158255 0.107961 -0.942203 -0.155998 0.217489 0.121364 0.335223 -0.493215 0.359632 -0.883861 -0.467618 -0.784402 0.489174 -0.606345 0.012793 0.002087 -0.069806 -0.122757 0.335992 0.011283 -0.201558 -0.025585 -0.256232 -0.070015 -0.196980 0.395620 0.067276 0.913369 1.218345 -0.421933 0.282283 0.109921 -0.566967 1.803957 -0.671136 0.131346 0.073964 0.774611 0.264941 0.415654 0.672612 -0.344844 -0.084769 -0.937902 -0.130502 0.562064 0.291573 -0.955681 -0.353065 -1.158846 -0.031250 -0.308120 1.184387 -0.174779 1.425350 -0.604966 0.267576 -1.301871 0.164104 0.449002 -0.095162 0.707634 0.369606 -0.693367 -0.521016 -0.253582 -0.687473 0.091661 -0.146713 -0.518162 -0.490015 -0.065872 -0.052930 -0.678037 0.278365 0.714538 -0.493231 0.602974 -0.542980 0.061972 -0.442415 0.010566 0.431399 0.138127 -0.491586 0.518336 0.035350 1.412373 0.065501 0.723178 -0.434861 0.522878 -0.381568 -0.990686 -0.545058 0.967992 0.676064 0.204453 0.333582 0.219818 0.132218 0.651823 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(int&, int&) = -0.093114 0.400420 1.790478 1.625985 -0.817618 -1.762830 -0.417794 -1.949782 1.397295 0.495146 1.349047 0.309607 1.318256 -0.749259 -0.262467 -0.236912 1.055938 0.424907 -0.126719 -0.593210 -0.584188 2.685113 0.405196 -1.251935 0.235210 -1.335244 1.342147 0.769976 1.223096 1.675384 0.154181 0.249903 0.002321 0.698018 -0.997456 -0.254836 -0.797966 0.747575 -1.053964 -0.580161 0.665090 -0.345351 1.570543 0.351219 0.712778 0.060117 0.887507 -0.222818 -0.676773 -0.541546 -0.859934 0.714463 -0.579022 0.979522 -0.858153 -0.189495 0.802018 0.062685 0.241633 -1.240184 0.346658 0.054454 -0.994849 -0.300992 -1.341866 0.121556 -0.693070 -1.143369 -0.098727 -0.641717 0.708217 0.241940 -0.040851 -1.384137 -2.491948 0.269344 0.337101 0.235443 0.945759 1.115381 -0.380249 -0.577148 -1.225114 -1.149775 1.358719 0.409322 0.218857 0.961331 -0.912097 -1.178794 0.001005 0.372341 0.407878 0.826004 -0.767400 0.849652 -0.223774 -0.299058 -0.102260 -1.331188 0.155340 -0.962597 0.220156 0.367681 -0.124108 0.457138 0.231556 0.268554 -0.219718 -1.273086 0.381735 -0.721175 -0.688318 1.588925 -0.228299 -0.876893 -0.444392 0.094390 0.004743 1.136798 0.083639 0.377276 1.190074 0.625228 0.690319 -1.272469 0.149667 0.887983 0.444964 0.542599 0.416678 -0.547292 -0.820420 0.269174 -0.541700 -2.328904 -0.525658 1.156567 1.159634 -0.487008 -0.965035 1.084116 -0.672084 0.821719 1.349877 0.286874 0.726203 0.237326 -0.991887 0.644670 2.108339 -0.622412 0.667562 -0.816415 -1.488432 2.069984 -0.353248 0.738577 -0.646276 -0.302424 0.097599 -0.704837 0.800348 1.707860 -0.362339 0.184953 0.368125 0.163714 -0.569808 -1.731369 -2.240865 -0.289392 1.496508 1.352442 2.676032 -1.075648 -0.250556 0.092642 0.611989 -0.216048 -0.472408 0.548806 -0.855066 0.807617 -3.718560 -2.152908 2.524745 1.338334 0.678650 -0.047666 0.810717 0.545922 0.207569 -1.135506 -0.911191 0.671759 0.807503 -0.838964 -0.214802 0.191116 -1.639270 -0.359763 0.331757 0.067218 0.621811 -1.022968 0.471135 -1.525960 -1.044823 -1.266092 1.034483 -1.261399 -0.151563 -0.153266 -0.086961 -0.263868 0.674019 0.068783 -0.322711 -0.092967 -0.459872 -0.252623 -0.362872 0.669661 0.097388 1.434727 2.460524 -0.697821 0.506238 0.271077 -0.940294 3.284818 -1.313404 -0.070986 0.042447 1.243242 0.358598 0.833285 1.072423 -0.533380 -0.241316 -1.638574 0.166512 0.816783 0.427195 -1.962375 -0.673775 -1.870787 -0.177074 -0.358922 2.028609 -0.156943 2.702792 -1.206615 0.380515 -2.628467 0.261718 0.881147 -0.027037 1.433005 0.681100 -1.198596 -1.009352 -0.504507 -0.978335 0.462842 -0.330185 -1.248369 -0.924637 -0.343580 0.083402 -1.344592 0.653369 1.353806 -0.794073 1.184726 -0.815164 -0.018864 -0.946991 0.079583 0.580391 0.383049 -0.775800 0.997786 -0.140022 2.488323 -0.201459 1.260724 -0.966604 1.017699 -0.786614 -1.762563 -0.813318 1.742182 1.226917 0.300150 0.540765 0.283924 0.045643 1.154984 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__insertion_sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.895879 0.665490 6.957642 3.850495 -2.960627 -5.197342 -2.158009 -7.658729 4.620742 2.767267 6.497646 -0.065036 3.995122 -2.097070 -0.407222 -1.424841 3.070442 -1.056831 -0.652701 -2.288876 -1.611611 6.785485 0.882156 -3.118097 1.125809 -5.679923 4.184046 2.437972 1.694780 4.032256 1.034324 0.833280 -0.935156 2.543653 -2.643996 1.186325 0.281147 2.161313 -1.698175 -1.903831 2.818689 0.396641 4.551064 0.273321 4.556645 1.180581 1.939676 -0.691931 -3.831022 -2.679176 -0.652701 2.567027 -2.059569 2.553432 -0.244255 0.594657 1.920847 -2.974913 0.108305 -4.746886 1.612851 0.335940 -2.921441 -0.213238 -3.198753 0.581940 0.050758 -2.519174 0.911727 -3.980154 1.995886 -0.602539 -0.679663 -2.267340 -5.159356 1.325397 1.829174 -0.215189 2.688055 2.399187 -1.430861 -1.688630 -3.309104 -3.740110 3.571851 2.708795 0.979193 2.510936 -3.002861 -1.871668 0.675048 -0.139253 0.956539 3.989858 -3.618897 0.616801 1.051605 -2.379781 -2.375051 -3.284885 1.270937 -3.377179 1.584477 3.257800 -2.749825 0.996980 -0.165445 1.263176 -1.565488 -3.461733 1.040576 -3.302286 1.126696 4.844354 -2.243183 -2.970475 -2.891844 -0.859783 1.118510 3.739261 -0.184385 0.664365 5.481821 2.491329 2.727787 -4.622671 -0.775049 2.843190 2.797063 1.560300 1.009402 -4.413241 -1.648880 1.056766 -3.342080 -7.396106 -2.850230 1.307658 4.412696 -1.337436 -4.571924 3.897658 -1.868865 3.643414 4.186602 1.646213 0.984625 1.287998 -4.098722 1.264878 6.090009 -1.702463 2.543561 -2.369785 -4.977805 4.586353 -0.895772 2.435382 0.577130 -0.509762 -0.567525 -3.125373 2.297763 5.121830 -0.095994 1.968695 -0.506925 1.397263 -1.374576 -5.248389 -8.967025 -0.810444 3.923948 3.925869 9.380049 -4.922881 -2.433415 -0.924302 5.048898 -0.920764 -2.683570 1.725297 -2.585379 2.540650 -9.048463 -7.023993 8.209815 6.487584 3.305631 -0.044641 4.553458 0.025404 -1.768516 -2.434832 -3.077547 2.919295 2.639302 -2.316409 0.654808 0.657104 -5.379904 -1.923805 -0.748148 0.908823 1.762453 -2.900688 1.657264 -2.891225 -2.610724 -3.141425 2.569285 -2.626862 -1.320099 -1.115674 0.350315 -0.318253 2.609261 -1.499276 -1.847931 -0.257366 -2.818667 -0.438676 1.119691 2.447296 1.052844 6.296966 7.013491 -2.560592 2.895932 -0.528025 -1.814023 8.952688 -3.708032 -0.344790 0.170654 3.547629 1.894787 1.940465 3.592820 -1.960559 -0.993330 -4.914885 0.585172 1.103721 2.010962 -6.550779 -3.407290 -7.278112 -0.610435 -0.942094 6.522832 0.168676 9.494451 -1.773264 1.242177 -9.448494 0.296710 3.244946 -0.488942 2.998967 1.802141 -4.337883 -5.838945 -0.662099 -4.083902 -1.194984 -0.428248 -2.937833 -3.498468 -2.837688 3.059214 -3.287589 1.531268 4.926063 -0.711955 3.054030 -0.353691 -0.255563 -2.437772 -0.479698 1.755046 0.608900 -2.722237 3.995245 0.222015 9.770302 -1.316946 4.200267 -2.482758 4.071495 -2.229286 -5.199212 -2.464613 4.908673 4.862843 1.494874 0.195537 0.486670 -1.614161 4.262466 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__unguarded_insertion_sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.517255 0.725747 2.962927 1.482868 -1.680978 -2.556993 -0.922246 -3.522764 1.667472 1.117862 2.837051 -0.266948 1.681481 -0.570673 -0.241249 -0.603077 1.274580 -0.159260 -0.242370 -1.135374 -1.538232 2.405079 -0.002048 -1.025495 0.632579 -2.030903 2.215548 1.260686 0.439538 1.642962 0.566171 0.373901 -0.660307 1.203710 -0.965427 0.463662 0.114604 1.067743 -0.560595 -0.370729 1.259058 -0.131764 2.043882 0.284901 1.771021 1.245508 0.614583 0.022255 -1.738030 -1.070240 -0.059978 0.736879 -0.837328 1.093374 -0.251324 0.170596 0.950991 -1.332193 0.275951 -1.651705 0.670698 -0.316005 -1.336663 0.046116 -1.589261 0.060633 -0.238522 -1.551225 0.361948 -1.736792 0.738245 -0.487167 -0.691351 -0.763984 -2.081406 0.381563 1.021850 -0.049356 1.281986 0.758291 -0.588840 -0.637170 -1.855893 -1.726368 1.383683 1.068374 0.765644 1.012681 -1.452487 -0.943911 0.514585 -0.013824 0.753546 1.900236 -1.256658 0.198461 0.067767 -1.105771 -1.624680 -2.094803 0.761477 -1.240026 0.994561 1.136716 -1.601520 0.245463 -0.046503 0.536010 -0.503565 -1.520280 0.180864 -1.866812 1.041816 2.150787 -0.715610 -1.553831 -1.366602 -0.836542 0.645994 1.581856 0.209722 -0.207100 2.576939 1.061518 1.125412 -1.997620 -0.717023 0.827844 0.794735 0.739686 0.578944 -2.037116 -0.746602 0.481663 -1.822225 -3.188574 -1.003290 0.137640 1.710274 -1.025854 -1.753465 1.912250 -1.147763 1.078008 1.712316 1.148521 0.442508 0.380664 -1.678737 0.370236 2.356577 -0.657741 1.100289 -1.032534 -2.295972 1.808618 0.062011 0.821674 0.476206 -0.541037 -0.511294 -1.096838 1.007543 2.135672 -0.055669 0.618730 0.250316 0.592680 -1.034238 -1.941121 -3.679837 0.161441 2.079757 1.720967 3.999216 -2.418927 -0.848792 -0.279811 2.378723 -0.298518 -1.151650 0.716074 -0.799278 1.101457 -3.531342 -2.934300 3.201617 2.320687 1.407496 -0.317368 1.671165 -0.295491 -0.843288 -1.279455 -1.517393 1.145220 0.877462 -1.117259 0.097729 0.330334 -2.354250 -0.241338 -0.371971 0.652948 1.181558 -1.301322 0.659719 -1.572182 -1.008790 -1.670085 0.995170 -0.892625 -0.389222 -0.204585 0.043039 -0.228374 1.010393 -0.507563 -1.007528 -0.456906 -1.260328 0.028802 0.613221 0.998248 0.272222 3.426131 2.692938 -1.294064 0.954637 -0.251343 -0.606091 3.807141 -1.481675 0.195534 0.254076 1.914957 0.729201 0.787011 2.003205 -0.867730 -0.682341 -2.120501 -0.145707 0.511522 0.694749 -2.621181 -1.110285 -3.621552 -0.206709 -0.651995 3.122460 0.068220 3.950405 -0.283901 0.690167 -3.576014 0.146959 1.249591 -0.465620 1.272052 0.734999 -1.998352 -1.912360 -0.262296 -2.025627 -0.896654 -0.034987 -0.746943 -1.602455 -0.638308 0.546498 -0.980137 0.453466 2.067032 -0.459501 0.899836 -0.197954 -0.026954 -0.756416 -0.411160 1.585896 -0.062606 -1.240035 1.704624 0.346390 4.406029 0.034519 1.859622 -0.761793 1.425043 -0.537136 -2.170494 -1.280416 2.042484 1.950294 0.813756 0.111878 0.496106 -0.354065 1.807095 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.058714 0.200567 1.492488 1.070499 -0.627555 -1.574157 -0.329178 -2.426417 1.454747 0.646055 1.435050 0.264672 1.366366 -0.949672 -0.190321 0.113963 0.951963 0.274805 -0.004582 -0.530779 -0.345896 2.451537 -0.167664 -0.488348 0.184775 -1.255035 1.097704 0.680938 1.233631 1.256697 0.339177 0.139440 -0.140069 0.453593 -0.610862 0.143397 -0.460607 0.657432 -1.042917 -0.633131 0.333366 -0.617992 1.308554 0.182354 0.980792 -0.444461 0.855313 -0.181160 -0.333268 -0.513155 -0.750209 0.787788 -0.479346 0.722118 -0.665936 -0.612006 0.477880 0.233632 0.244050 -0.590964 0.253496 -0.219134 -0.956579 -0.209618 -0.990875 0.201131 -0.627824 -0.809005 -0.193591 -0.657490 0.604818 0.138219 -0.072528 -0.870565 -2.555660 0.068625 0.356061 -0.058759 0.878203 0.999425 -0.043761 -0.754885 -1.089998 -1.020301 1.644045 0.921085 0.102330 0.835985 -1.281981 -0.714361 -0.168811 0.255953 0.669082 0.678855 -0.978133 0.441398 -0.236500 -0.326775 -0.049331 -1.436938 0.389930 -0.848530 0.242251 0.038047 0.020976 0.444689 0.338550 0.213199 -0.380330 -1.097934 0.289406 -0.679979 -0.307677 1.641772 -0.220212 -0.850381 -0.735187 0.043575 -0.068963 0.738999 0.280054 0.382206 1.197070 0.576100 0.815237 -1.274827 -0.249996 1.201262 0.445470 0.538890 0.002144 -0.625525 -0.585942 0.376261 -0.675004 -2.170237 -0.767134 0.875123 1.078301 -0.640017 -0.419680 0.693422 -0.450294 0.722984 1.314019 -0.015583 0.487981 0.510779 -0.961117 0.546064 1.678323 -0.411533 0.536996 -0.775405 -0.875665 1.345077 -0.345257 0.445409 -0.423019 -0.194118 -0.112281 -0.550001 0.632633 1.384725 -0.398191 0.313453 -0.246427 0.454605 -0.836097 -1.439211 -2.136477 -0.324413 1.560722 1.164265 2.058237 -0.995803 -0.429602 0.261864 0.673059 -0.051779 -0.564845 0.823177 -1.105550 0.877812 -2.786174 -1.842233 2.193788 1.290184 0.934316 -0.149369 0.696953 0.612657 -0.508151 -0.848942 -0.722323 0.630555 0.776116 -1.581020 -0.292685 0.158973 -1.513183 -0.500122 0.165299 0.089795 0.254228 -0.384226 1.115624 -1.204839 -0.543822 -0.971168 1.310999 -0.800528 -0.112078 -0.415170 -0.015081 -0.152773 0.755709 -0.285204 0.016284 0.133525 -0.420052 0.018765 -0.124560 0.337181 0.020189 1.456376 2.183319 -0.696523 0.704411 -0.098498 -0.772048 2.246116 -0.901726 0.023213 0.082311 0.660030 0.298429 0.732283 1.005117 -0.597294 -0.368721 -1.464209 -0.342094 0.698765 0.644126 -0.907310 -0.687877 -1.756794 -0.128904 -0.403454 1.795062 -0.029966 2.286482 -1.205663 0.510076 -2.192712 0.222476 0.652759 -0.140108 1.290516 0.366200 -0.966967 -0.557563 -0.381070 -0.985842 -0.469138 -0.237429 -0.996555 -0.921007 -0.794107 0.487620 -1.246876 0.315082 0.825400 -0.450163 1.166723 -0.958265 0.080369 -0.945575 0.492208 0.548601 0.219829 -0.822464 0.742510 -0.006468 2.507759 -0.252575 0.993711 -0.750017 1.083095 -0.915780 -1.704242 -0.642447 1.489824 1.324884 0.345187 0.079213 0.166508 0.019998 1.043540 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__unguarded_linear_insert(int*, __gnu_cxx::__ops::_Val_less_iter) = -0.815056 0.450817 3.341209 2.791552 -1.606418 -3.200237 -0.938061 -3.509320 2.559117 1.102955 3.020051 0.322145 2.266912 -1.395141 -0.274308 -0.722684 1.764630 0.148122 -0.367302 -1.052156 -1.066435 4.277613 0.723845 -2.132977 0.493692 -2.505580 2.237755 1.473087 1.381791 2.532950 0.402885 0.473015 -0.226654 1.249651 -1.622493 0.176192 -0.782696 1.102603 -1.340921 -1.201073 1.338228 -0.334206 2.756857 0.391586 1.908111 0.265117 1.610178 -0.434267 -1.931618 -1.207203 -1.177482 1.538967 -0.968388 1.536546 -0.547546 0.171468 1.584979 -0.848780 0.228935 -2.774341 0.771183 0.205939 -1.785608 -0.373099 -2.133584 0.248157 -0.592107 -1.648691 0.213982 -1.678817 1.116472 -0.031982 -0.095665 -1.849995 -3.521750 0.643991 0.653514 0.168316 1.526101 2.038824 -0.797478 -0.953616 -1.930123 -1.921064 2.003254 0.657226 0.353173 1.569956 -1.806813 -1.666252 0.163126 0.142231 0.435202 1.663729 -1.774280 1.157255 0.483375 -0.878802 -0.685076 -2.031991 0.403225 -1.700376 0.432728 1.379171 -0.733693 0.588329 -0.117351 0.529752 -0.747090 -2.131703 0.820901 -1.603523 -0.525349 2.486726 -1.019893 -1.424664 -1.014474 -0.038422 0.284511 2.189904 -0.087608 0.596613 2.210450 1.167331 1.272329 -2.170336 0.130584 1.537999 1.398321 0.783086 0.605434 -1.652570 -1.069399 0.564636 -1.369778 -4.057160 -1.230708 1.852068 2.241054 -0.385146 -2.388653 2.013546 -0.947773 1.823183 2.193614 0.888734 0.831493 0.516750 -2.036973 0.847324 3.454830 -1.013282 1.347147 -1.098656 -2.961551 3.301465 -0.632260 1.315908 -0.427639 -0.343611 0.056547 -1.423736 1.248344 2.773852 -0.125870 0.560221 0.244016 0.478025 -0.853018 -3.049467 -4.581078 -0.395369 2.309051 2.501029 5.254409 -2.372921 -1.039755 -0.312585 1.918609 -0.645768 -1.234086 0.854292 -1.389297 1.312541 -6.257080 -3.981556 4.768666 2.911515 1.309639 -0.021068 2.093048 0.451885 -0.311950 -1.837556 -1.728826 1.298597 1.426920 -1.221392 0.172411 0.302612 -3.147515 -0.830771 -0.000403 0.212921 1.172849 -1.843235 0.850816 -2.491972 -1.580985 -1.908844 1.392263 -1.722196 -0.618716 -0.441245 0.036077 -0.283175 1.313758 -0.205197 -0.875530 -0.292809 -1.396708 -0.546506 -0.094764 1.315293 0.611009 3.470148 4.383975 -1.127606 1.420920 0.149398 -1.363429 5.829939 -2.430080 -0.261045 -0.056583 2.251646 1.071709 1.174429 1.908067 -0.936661 -0.512649 -2.683813 0.435423 0.897191 0.906701 -4.119705 -1.700878 -3.874228 -0.326098 -0.497038 3.523162 -0.161037 5.037595 -1.561470 0.454034 -5.176255 0.304758 1.813242 -0.132478 2.112896 1.077942 -2.406000 -2.628143 -0.572783 -1.839837 0.450866 -0.400594 -1.919841 -1.582488 -1.188857 0.898634 -2.232532 1.074298 2.717735 -1.069735 1.930069 -0.518547 -0.126538 -1.462034 -0.123664 0.832601 0.520200 -1.336810 2.267847 -0.121619 5.007617 -0.581187 2.140709 -1.553968 2.155648 -1.350600 -2.947522 -1.293701 2.685992 2.564905 0.570275 0.581626 0.647976 -0.606623 2.125074 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_less_iter) = 0.030537 0.133854 0.249197 -0.184249 0.114708 -0.157624 -0.056118 -0.321477 0.022383 0.124755 0.229913 -0.177883 0.190039 0.072768 -0.007757 -0.013018 -0.005130 -0.042881 0.123804 -0.024106 -0.068178 0.011731 -0.146717 0.179128 0.053556 -0.236338 0.202077 0.026196 -0.030553 0.184384 0.008904 0.030111 -0.035883 0.063746 -0.040590 0.061094 0.213256 0.144223 0.094036 0.099549 -0.062575 0.091023 -0.027236 0.077456 0.099115 0.360439 -0.260472 0.054523 0.080177 -0.099367 0.167997 -0.137530 -0.060564 0.015047 -0.126932 -0.073526 0.007363 -0.038866 0.055650 -0.087476 0.107267 -0.021958 -0.042245 0.070818 -0.104316 0.017927 -0.004298 -0.114178 -0.047699 -0.093607 0.054211 -0.010592 -0.034827 0.129610 -0.125039 0.021221 0.099336 -0.068921 0.090073 -0.226008 -0.060195 0.018306 -0.143046 -0.195532 0.189449 0.274160 0.152237 0.092689 -0.056535 -0.027987 -0.004071 -0.000344 0.157278 0.223288 0.168909 -0.050232 -0.042487 -0.020240 -0.049297 -0.256142 0.096469 -0.097540 0.085695 0.075445 -0.001956 -0.040268 0.026088 0.176827 -0.017024 -0.074438 0.112994 -0.170078 0.127566 0.119358 0.008785 -0.078187 -0.139997 -0.175611 0.154939 0.134160 0.049697 -0.080287 0.112882 0.048312 0.043332 -0.130927 -0.185875 0.106521 0.004947 0.039258 -0.004100 -0.329594 -0.031805 0.043240 -0.293154 -0.201897 -0.084837 -0.192262 0.035756 -0.330653 -0.104466 0.320135 -0.152648 -0.116083 0.179871 0.092350 -0.001783 0.028405 -0.097404 -0.008426 0.088967 -0.084456 0.074944 -0.054760 -0.086203 -0.118195 0.084281 0.006416 0.066779 -0.060345 -0.024299 -0.035802 0.101306 0.145420 0.074640 0.232665 -0.011666 0.065321 -0.179099 0.002480 -0.121514 -0.039272 0.248440 -0.102498 0.159775 -0.141891 -0.066221 0.005091 0.359181 -0.016438 -0.008000 -0.005410 0.015967 0.059174 -0.053923 -0.129991 0.052068 0.106234 0.236337 -0.108135 -0.032837 0.033566 -0.046579 -0.009453 -0.022739 0.036148 -0.108217 -0.225090 -0.166071 -0.032759 -0.095624 0.018061 -0.086169 0.077424 0.001802 0.116068 0.027716 -0.030842 0.001227 -0.106978 0.008397 -0.023591 0.018223 -0.024073 0.014294 -0.056498 -0.006618 -0.173966 0.017874 0.194743 -0.079308 0.096329 0.176892 -0.046374 -0.011225 0.298434 -0.035144 -0.107978 -0.134562 -0.071227 0.026246 0.069976 0.043200 0.052188 0.050830 0.130315 0.024841 0.049833 0.134736 -0.060984 -0.145528 -0.219917 -0.162382 0.117821 0.002908 0.264829 -0.066737 -0.188816 0.020388 -0.102254 0.380023 0.065733 0.208943 0.149336 0.165271 0.051060 0.038095 -0.032049 -0.173187 -0.027329 0.035882 -0.060303 -0.163490 -0.008608 -0.204175 -0.447215 -0.053330 -0.053686 -0.064762 -0.045636 -0.071721 0.055744 -0.035379 0.007467 0.175706 -0.057858 -0.034767 0.011329 -0.137155 0.076096 0.187726 -0.146473 -0.136336 -0.061495 0.115989 0.238616 -0.037064 0.155474 -0.008266 0.034986 -0.016698 -0.016264 -0.070445 0.156979 0.079689 0.099202 -0.005393 0.029209 0.065113 0.096704 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.169370 0.302423 1.804899 1.210274 -0.732632 -1.869424 -0.383534 -3.016015 1.739719 0.779653 1.715791 0.272946 1.632010 -1.101882 -0.235151 0.218642 1.136504 0.371293 0.023627 -0.626336 -0.429485 2.922548 -0.309376 -0.462699 0.216280 -1.497842 1.262449 0.820403 1.553935 1.420571 0.414999 0.137264 -0.161953 0.525803 -0.716079 0.152882 -0.524205 0.784625 -1.320780 -0.737301 0.307134 -0.788684 1.541673 0.191029 1.156030 -0.588887 1.038631 -0.210003 -0.343093 -0.565373 -0.913640 1.023249 -0.526696 0.852466 -0.764843 -0.823826 0.507728 0.327421 0.312281 -0.539266 0.272375 -0.282567 -1.126659 -0.244857 -1.170570 0.237137 -0.783577 -0.970400 -0.230438 -0.727368 0.710954 0.162992 -0.077025 -0.995355 -3.131807 0.096208 0.455640 -0.076938 1.040787 1.182094 0.070144 -0.893084 -1.300165 -1.234350 2.020682 1.206717 0.126481 0.959391 -1.599639 -0.838665 -0.213494 0.296164 0.828036 0.818304 -1.202842 0.543328 -0.404223 -0.393890 -0.094977 -1.838642 0.452531 -1.025313 0.310290 -0.054554 0.070090 0.561190 0.460190 0.266516 -0.408848 -1.329480 0.313511 -0.787586 -0.348064 2.027260 -0.236675 -1.037371 -0.883349 0.051932 -0.162110 0.817555 0.368915 0.460050 1.437633 0.681896 1.006097 -1.525189 -0.340798 1.459123 0.480936 0.670832 -0.005716 -0.764566 -0.690249 0.448709 -0.805049 -2.632433 -0.914309 1.031680 1.272939 -0.832495 -0.388357 0.736750 -0.528153 0.860923 1.556222 -0.056158 0.577718 0.616730 -1.112028 0.646248 1.972727 -0.496903 0.641645 -0.951361 -0.974472 1.507493 -0.395567 0.526129 -0.519604 -0.210866 -0.138430 -0.661700 0.722685 1.658933 -0.487427 0.353803 -0.324163 0.539995 -1.076380 -1.709485 -2.538563 -0.374701 1.864026 1.316233 2.379717 -1.166321 -0.584083 0.358691 0.817093 -0.053850 -0.670075 1.046812 -1.373955 1.068662 -3.203418 -2.202302 2.563712 1.549788 1.106806 -0.234755 0.822538 0.745320 -0.754790 -1.064300 -0.855193 0.751467 0.905647 -2.064295 -0.441373 0.196692 -1.803408 -0.534603 0.192473 0.108720 0.295902 -0.331479 1.435951 -1.419664 -0.647308 -1.156487 1.650116 -0.917185 -0.110356 -0.511347 -0.004050 -0.186111 0.949077 -0.410449 0.015624 0.208398 -0.514827 0.060263 -0.143800 0.367049 -0.020465 1.791465 2.584014 -0.788955 0.923146 -0.131434 -0.932379 2.601815 -1.052306 0.037836 0.096395 0.707201 0.245735 0.908506 1.208550 -0.723587 -0.536295 -1.762122 -0.496440 0.778323 0.769943 -0.900446 -0.829977 -2.066184 -0.163357 -0.482581 2.126135 -0.000982 2.699303 -1.451266 0.644502 -2.586626 0.268161 0.722713 -0.194453 1.599018 0.422485 -1.161402 -0.584631 -0.441117 -1.181689 -0.719156 -0.268462 -1.222593 -1.110394 -1.010202 0.607947 -1.471670 0.339246 0.928048 -0.496662 1.416757 -1.189146 0.090223 -1.140657 0.653696 0.762523 0.222343 -0.998797 0.846233 0.006978 3.084382 -0.295392 1.161080 -0.895678 1.200297 -1.047879 -2.030124 -0.769038 1.786675 1.595826 0.457260 0.005247 0.182517 0.012580 1.238379 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = 0.007710 0.202994 0.374031 0.429004 -0.350023 -0.687911 -0.077272 -0.492009 0.197584 0.042221 0.315336 0.029929 0.361586 -0.171194 -0.047145 -0.075858 0.272444 0.245752 -0.027194 -0.205817 -0.400545 0.415384 0.004135 -0.307285 0.116985 -0.062010 0.540827 0.284005 0.137757 0.462116 0.092498 0.058455 -0.132136 0.197153 -0.192462 -0.073332 -0.196913 0.263221 -0.211611 -0.034647 0.148179 -0.237754 0.427211 0.138261 0.111840 0.310942 0.145173 0.104379 -0.237465 -0.149652 -0.173891 -0.012366 -0.208456 0.267020 -0.349627 -0.120056 0.330654 0.081210 0.135460 -0.339249 0.108996 -0.193614 -0.309253 -0.052306 -0.444063 -0.019704 -0.221046 -0.496456 -0.073496 -0.114518 0.163914 0.013834 -0.125567 -0.233535 -0.566524 -0.075198 0.151873 0.122637 0.332601 0.182778 -0.039662 -0.206300 -0.430059 -0.296443 0.331559 -0.065395 0.243089 0.323225 -0.249493 -0.320323 0.095865 0.127286 0.286482 0.169788 0.043073 0.173630 -0.126708 -0.036681 -0.141925 -0.555149 0.168421 -0.116331 0.131623 0.044060 -0.107047 0.036283 -0.005926 0.110029 -0.086516 -0.366026 0.078315 -0.354056 -0.077594 0.371026 0.015896 -0.281177 -0.099694 -0.121628 0.116587 0.305759 0.156019 -0.029837 0.234499 0.187373 0.134351 -0.350194 -0.122876 0.078541 0.042404 0.203394 0.141228 -0.137374 -0.250767 0.119247 -0.354989 -0.589994 -0.071087 0.192015 0.280460 -0.188595 -0.265026 0.422827 -0.333421 -0.020538 0.280705 0.268082 0.190595 0.012284 -0.256565 0.115975 0.364089 -0.144436 0.194372 -0.066567 -0.357486 0.410822 0.101690 0.025505 -0.075392 -0.283623 -0.020462 -0.026111 0.162214 0.377198 0.005418 0.027264 0.226995 0.105946 -0.395886 -0.385685 -0.412714 0.085999 0.639498 0.325639 0.598500 -0.395988 0.033372 0.079613 0.227385 -0.128102 -0.114006 0.058320 -0.110947 0.252878 -0.867064 -0.483477 0.541636 0.085288 0.217377 -0.069776 0.012084 0.098925 0.050825 -0.292872 -0.272286 0.063976 0.091513 -0.230948 -0.159432 0.033481 -0.454989 0.025344 0.166414 0.140175 0.192526 -0.273940 0.058429 -0.502275 -0.151990 -0.404101 0.132849 -0.264045 0.087292 0.090934 -0.084299 -0.019744 0.071657 0.066647 -0.089023 -0.097919 -0.114273 -0.006891 -0.094904 0.196912 0.023874 0.624286 0.479343 -0.278975 -0.039593 0.062373 -0.271380 0.864251 -0.262097 0.172988 0.061857 0.559397 0.173859 0.131008 0.479496 -0.177014 -0.087360 -0.477864 -0.234645 0.388419 0.119872 -0.413899 -0.026341 -0.663270 0.023895 -0.182469 0.651158 -0.144316 0.566946 -0.182245 0.138738 -0.392470 0.085171 0.160640 -0.140603 0.292395 0.163669 -0.297107 -0.177463 -0.154353 -0.369747 0.011597 -0.097808 -0.079920 -0.193178 0.167499 -0.307198 -0.201322 0.067062 0.269382 -0.265574 0.144300 -0.257615 0.059859 -0.110415 -0.033539 0.309823 0.001533 -0.283871 0.294633 0.117400 0.693500 0.210299 0.309803 -0.159849 0.144930 -0.107944 -0.364193 -0.284204 0.437735 0.276286 0.096677 0.256163 0.239920 0.166272 0.290545 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.179745 0.099790 0.982029 1.024941 -0.637107 -1.330814 -0.252451 -1.371834 0.904323 0.354208 0.971034 0.267148 0.959955 -0.692527 -0.116400 -0.157950 0.696692 0.209788 -0.089508 -0.446714 -0.449551 1.615063 0.162566 -0.725468 0.182446 -0.698259 1.061212 0.538923 0.578742 1.140648 0.229459 0.175963 -0.173663 0.411582 -0.473500 0.076773 -0.467932 0.530705 -0.533283 -0.399217 0.495658 -0.414928 1.051133 0.245541 0.630426 0.075298 0.555385 -0.042660 -0.475646 -0.475445 -0.502784 0.242949 -0.508097 0.581383 -0.657147 -0.208189 0.622723 0.072984 0.169097 -0.879108 0.252295 -0.223923 -0.769954 -0.158096 -0.856774 0.104213 -0.429253 -0.754853 -0.154045 -0.538995 0.461210 0.090698 -0.155591 -0.719268 -1.577636 -0.048739 0.226054 0.066133 0.708639 0.697180 -0.314976 -0.558992 -0.885907 -0.708146 0.978998 0.198003 0.204935 0.731012 -0.708517 -0.621786 -0.004529 0.250275 0.484706 0.457470 -0.439818 0.320194 0.055873 -0.202209 -0.069195 -0.878382 0.349106 -0.506072 0.178931 0.260604 -0.179705 0.189591 0.043569 0.134486 -0.366933 -0.808041 0.247896 -0.660452 -0.250287 0.981017 -0.167506 -0.593092 -0.448942 -0.053900 0.212466 0.726525 0.196170 0.175485 0.806361 0.450717 0.454339 -0.910305 -0.124117 0.623481 0.374998 0.363497 0.116677 -0.364945 -0.511234 0.281364 -0.580192 -1.466163 -0.460558 0.646658 0.792824 -0.305285 -0.628055 0.835858 -0.475922 0.384578 0.922442 0.252483 0.401634 0.265865 -0.758739 0.389343 1.213388 -0.297265 0.416868 -0.413670 -0.866559 1.251239 -0.170557 0.265480 -0.232447 -0.335823 -0.088924 -0.302840 0.511208 0.977077 -0.199420 0.209223 0.100179 0.319911 -0.526153 -1.045442 -1.449292 -0.125834 1.267212 1.027841 1.669842 -0.857556 -0.033513 0.112400 0.453636 -0.112665 -0.400250 0.346400 -0.548177 0.595494 -2.352662 -1.306684 1.660104 0.711083 0.649156 0.007718 0.405323 0.367675 0.073222 -0.549607 -0.601748 0.399887 0.532801 -0.608237 -0.050077 0.101606 -1.125670 -0.382166 0.206724 0.142418 0.295728 -0.692822 0.412230 -1.038924 -0.400134 -0.797137 0.616625 -0.688725 -0.063114 -0.127693 -0.101315 -0.085126 0.351864 0.071425 -0.037476 -0.138671 -0.270432 -0.078834 -0.144858 0.393663 0.119434 1.086530 1.562936 -0.665731 0.174256 0.016631 -0.561960 1.943769 -0.717558 0.107113 0.091367 0.910000 0.513730 0.403870 0.856039 -0.413231 -0.049719 -1.057899 -0.131498 0.753042 0.423598 -1.182553 -0.351143 -1.472665 -0.036613 -0.324521 1.431792 -0.193398 1.664186 -0.750185 0.284524 -1.514982 0.169991 0.573608 -0.096757 0.776153 0.332126 -0.704347 -0.546384 -0.346877 -0.758544 0.134376 -0.212938 -0.498797 -0.610474 -0.169631 -0.011811 -0.849034 0.290131 0.739221 -0.531662 0.670264 -0.579800 0.094412 -0.547417 0.095449 0.284343 0.215115 -0.584715 0.704546 0.034415 1.614961 0.002823 0.790009 -0.501779 0.876221 -0.654781 -1.174302 -0.527550 1.070966 0.862808 0.141052 0.407486 0.286081 0.157740 0.768698 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.426338 0.292064 1.675357 1.424502 -0.823713 -1.417952 -0.345790 -1.662249 1.058056 0.454876 1.359599 0.122847 1.115566 -0.587526 -0.174547 -0.389432 0.991677 0.070665 0.025356 -0.552288 -0.244450 1.967732 0.387874 -1.140190 0.212151 -1.164636 1.388638 0.649438 0.732190 1.400906 0.309794 0.325286 -0.156337 0.602895 -0.671804 -0.081696 -0.437844 0.735333 -0.683015 -0.473733 0.599529 -0.257563 1.176545 0.244784 0.807306 0.276104 0.818041 -0.133830 -0.780253 -0.562781 -0.773557 0.511639 -0.725383 0.674459 -0.666000 -0.238710 0.735173 -0.165320 0.077709 -1.454835 0.333735 -0.092028 -0.839429 -0.120325 -1.177432 0.281192 -0.445107 -0.858658 -0.060901 -0.532199 0.635845 0.249533 0.095969 -0.811408 -1.847536 0.285020 0.250993 0.213272 0.828928 0.668762 -0.387610 -0.413890 -0.994579 -0.982398 1.069270 0.336723 0.319078 0.696079 -0.580767 -0.646962 -0.044110 0.219342 0.171044 0.788064 -0.639371 0.616212 -0.031996 -0.297964 -0.224890 -0.939459 0.228652 -0.882347 0.259484 0.698601 -0.446000 0.307618 -0.188626 0.220219 -0.388959 -1.103855 0.323456 -0.882185 -0.276592 1.260414 -0.470068 -0.645087 -0.585590 0.058291 0.382702 1.020121 -0.073959 0.449849 0.999400 0.669906 0.521294 -1.135572 0.006089 0.765958 0.540117 0.491908 0.373738 -0.631289 -0.729206 0.113232 -0.574561 -1.813148 -0.488348 0.837227 1.065484 -0.293104 -1.182538 1.023393 -0.655979 0.857223 1.254873 0.497923 0.503710 0.386244 -0.922062 0.522513 1.743243 -0.517980 0.637365 -0.531744 -1.060913 1.632552 -0.246242 0.611302 -0.239849 -0.168008 -0.010462 -0.702116 0.401560 1.368755 0.052579 0.342755 0.403951 0.267626 -0.260486 -1.611263 -1.892799 -0.254852 1.414946 1.038476 2.239142 -1.123087 -0.155359 0.060377 0.657065 -0.112781 -0.563957 0.261393 -0.588321 0.667185 -3.010704 -1.859652 2.053800 1.088429 0.542309 0.073853 0.675572 0.421814 0.001836 -0.793797 -0.740208 0.728558 0.328941 -0.502490 -0.065140 0.213284 -1.436371 -0.558721 0.253743 0.215159 0.616051 -0.927437 0.262522 -0.970915 -0.768775 -0.998490 0.633501 -0.972706 -0.460808 -0.123883 -0.060570 0.100545 0.427290 -0.034924 -0.146925 0.018549 -0.522306 -0.353281 -0.106010 0.641268 0.122218 1.329036 1.941676 -0.562646 0.194993 0.164248 -0.803400 2.730617 -0.810948 0.006287 0.041547 1.006933 0.545064 0.552524 1.001694 -0.529034 -0.285190 -1.492578 0.135965 0.657646 0.565718 -1.803879 -0.596042 -1.687977 -0.043058 -0.071843 1.721199 -0.185990 2.398728 -0.778869 0.192426 -2.158977 0.154223 0.881659 -0.099953 1.021801 0.609353 -1.019104 -0.905875 -0.426296 -0.927422 0.404606 -0.331002 -0.852819 -0.887868 -0.184146 0.189320 -0.986108 0.440755 1.122171 -0.495362 0.896707 -0.293766 -0.014054 -0.635185 -0.043927 0.397871 0.429914 -0.802334 1.137603 -0.142284 2.215614 -0.233421 0.931428 -0.782597 0.949339 -0.630402 -1.286567 -0.612833 1.614577 1.073741 0.269921 0.464587 0.141146 -0.007419 1.100795 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = -1.382752 1.044526 4.285000 2.851921 -1.463952 -1.544703 -0.677071 -2.595271 1.522268 0.798515 2.752021 -0.498884 1.578014 -0.052100 -0.387734 -1.289036 2.055504 -0.520791 0.499731 -0.900129 0.650881 3.109232 1.262012 -2.678166 0.300563 -2.913768 2.521474 1.001677 1.249526 2.251828 0.592893 0.893251 -0.058088 1.299549 -1.386106 -0.728369 -0.239506 1.465392 -1.193064 -0.705263 0.932401 0.441050 1.503003 0.200831 1.409756 1.066778 1.776104 -0.491397 -1.919408 -0.832882 -1.772853 1.545909 -1.509843 0.949866 -0.591887 -0.326095 1.081187 -1.130699 -0.316027 -3.611223 0.617450 0.472869 -0.989001 0.057110 -2.317267 0.971737 -0.436983 -1.148070 0.337347 -0.415184 1.257516 0.869754 1.128141 -1.060089 -2.664196 1.628181 0.313071 0.790807 1.191980 0.438893 -0.625651 0.259684 -1.281613 -1.961384 1.267193 0.858602 0.741491 0.434513 0.048320 -0.644034 -0.201679 0.053897 -1.164386 2.034193 -1.364279 1.746915 -0.392783 -0.647281 -0.836136 -1.037369 -0.311351 -2.303104 0.551873 2.407156 -1.481226 0.748128 -1.124666 0.540738 -0.415907 -2.152435 0.584380 -1.659042 -0.340095 2.214497 -1.652397 -0.754218 -1.057360 0.516038 1.028236 2.073420 -1.187168 1.518056 1.637162 1.471542 0.713391 -1.884922 0.547601 1.231952 1.138090 0.944970 1.382537 -1.635840 -1.515888 -0.606188 -0.455339 -2.956727 -0.522750 1.491725 2.023983 -0.193498 -3.295793 1.634219 -1.296883 2.683708 2.430859 1.437604 0.845075 0.823449 -1.448900 0.990305 3.660433 -1.351298 1.449875 -0.935094 -1.693901 2.949266 -0.520556 1.950346 -0.230719 0.559222 0.318203 -2.248749 -0.122235 2.772620 1.093810 0.842012 1.602343 0.005168 0.889877 -3.700308 -3.425278 -0.749951 1.794683 0.909708 4.238037 -2.042287 -0.637159 -0.166446 1.395177 -0.094468 -1.152075 -0.136369 -0.657535 0.854697 -5.250764 -3.853742 3.351897 2.479299 0.006727 0.337105 1.689015 0.577092 -0.295909 -1.678959 -1.193759 1.976595 -0.575298 0.021870 -0.117046 0.643063 -2.491560 -1.201249 0.407364 0.482385 1.848057 -1.750425 -0.405015 -0.525725 -2.176652 -1.671045 0.598234 -1.993843 -2.041066 -0.087362 0.119296 0.857415 0.670347 -0.472228 -0.578475 0.670539 -1.484729 -1.437934 0.073529 1.566078 0.113450 2.117972 3.196146 -0.039353 0.248898 0.751945 -1.675498 5.554044 -1.064914 -0.414871 -0.172963 1.242999 0.584779 1.079828 1.441639 -0.923374 -1.218788 -3.054979 1.227732 0.150557 1.063598 -4.092089 -1.517111 -2.303781 -0.062740 0.992955 2.640196 -0.124126 5.059532 -0.768572 -0.223386 -4.482459 0.062822 2.018258 -0.096610 1.875034 1.662910 -2.160738 -2.252776 -0.686159 -1.476511 1.463130 -0.767765 -2.185775 -1.895699 -0.213933 0.995812 -1.392897 0.994896 2.530770 -0.261549 1.690769 0.946999 -0.463654 -0.895020 -0.617336 0.804594 1.253256 -1.575357 2.752407 -0.854815 4.349066 -1.178867 1.365434 -1.822240 1.095774 -0.423752 -1.539906 -0.866037 3.610528 1.773673 0.761888 0.625075 -0.486273 -0.694346 2.301066 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__bool __gnu_cxx::__ops::_Val_less_iter::operator()(int&, int*) const = -0.322927 -0.037466 1.189279 1.182517 -0.513187 -0.994190 -0.309269 -0.739465 0.742901 0.264084 0.845238 0.180881 0.665854 -0.420732 -0.169262 -0.459535 0.464428 0.027877 -0.138822 -0.368456 -0.191317 1.496255 0.752349 -1.302306 0.122235 -0.998607 0.963159 0.429607 0.485097 1.405589 -0.127323 0.167515 0.044843 0.514517 -0.751258 -0.155278 -0.442146 0.479275 -0.365420 -0.273341 0.657952 0.121939 0.910291 0.064375 0.553179 0.396242 0.440601 -0.170499 -0.689460 -0.445596 -0.317385 0.062739 -0.603042 0.619755 -0.713381 0.277156 0.402375 -0.235631 -0.122710 -1.556168 0.384815 0.257169 -0.580146 -0.159096 -0.932127 0.153229 -0.158018 -0.855115 0.090882 -0.558485 0.499027 0.345281 0.044653 -0.921267 -1.099200 0.236946 0.205920 0.258153 0.410544 0.344985 -0.541051 -0.267600 -0.655809 -0.527725 0.427004 -0.001717 0.207669 0.581920 -0.034506 -0.645801 0.213685 0.323781 0.026487 0.544996 -0.191803 0.481191 0.028741 -0.095045 0.041094 -0.391984 0.023339 -0.613348 0.220932 0.682268 -0.351307 0.421626 0.164111 0.380548 -0.236035 -0.819166 0.184699 -0.418404 -0.277186 0.752686 -0.245233 -0.439631 -0.201481 0.061277 0.242491 0.840598 -0.278048 0.302835 0.792251 0.479251 0.289865 -0.908534 0.169082 0.368275 0.457967 0.385620 0.438891 -0.335814 -0.550392 -0.039215 -0.341919 -1.386392 -0.239325 0.488860 0.732465 -0.297996 -1.091082 1.043462 -0.538991 0.774624 0.939345 0.333994 0.448615 0.098306 -0.779012 0.480023 1.501897 -0.394380 0.463665 -0.571470 -1.184749 1.496360 -0.143069 0.577678 -0.323652 -0.210305 0.238009 -0.620467 0.567922 1.055098 -0.042047 0.358708 0.351864 0.069318 0.011339 -1.215642 -1.206007 -0.366515 0.793297 0.912145 1.986577 -0.770831 -0.095679 -0.194662 0.375696 -0.099745 -0.197618 -0.012370 -0.352719 0.404398 -2.730516 -1.472341 1.597149 1.020878 0.545646 0.304762 0.664732 0.212638 0.723397 -0.373847 -0.416038 0.410829 0.530307 0.049022 0.002816 0.082992 -0.970394 -0.462542 0.247547 0.095512 0.370562 -0.976915 -0.304888 -0.722892 -0.793518 -0.833103 0.314708 -1.120549 -0.167254 0.017567 -0.005247 -0.050118 0.146543 0.051107 -0.160175 -0.135738 -0.228897 -0.091484 -0.118230 0.571157 0.191153 0.531922 1.537568 -0.532063 0.052230 0.258862 -0.520917 2.309058 -0.847808 -0.071246 0.138181 0.974321 0.381311 0.372512 0.576449 -0.303491 0.300787 -0.935087 0.436149 0.662237 0.259107 -1.695778 -0.469064 -1.039188 -0.076411 -0.107278 1.228881 -0.111044 1.787549 -0.536333 0.227913 -1.809579 0.053297 0.641628 0.144004 0.745464 0.567689 -0.710997 -1.318828 -0.306954 -0.519032 0.795957 -0.400582 -0.787274 -0.537893 0.105862 -0.093692 -0.649605 0.498851 1.042506 -0.515339 0.691959 -0.311783 -0.015569 -0.445801 -0.292312 -0.012527 0.469394 -0.454665 0.664845 -0.093696 1.397685 -0.104668 0.856819 -0.659648 0.836638 -0.485012 -0.896167 -0.451696 1.141909 0.646459 0.133268 0.561715 0.014112 -0.003328 0.686426 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -0.195445 0.954383 2.837008 2.136108 -1.584215 -1.816701 -0.721327 -1.806397 0.931937 0.220525 1.343892 -0.165123 0.486345 0.556914 -0.103389 -0.588419 0.653341 0.423275 -0.427136 -0.720106 -0.953221 1.582231 1.069035 -2.288800 0.317944 -1.597430 1.304078 1.030600 0.787515 1.297855 0.024323 0.006910 -0.335481 1.135155 -1.534076 -0.702246 -0.329897 0.512376 -1.078844 -0.287043 0.851815 0.512740 1.272989 0.045828 0.803777 0.976472 1.033480 0.012317 -1.492586 -0.285702 -0.818465 1.714021 -0.662148 1.234979 0.060549 0.826415 0.287801 -1.352322 -0.114537 -1.845185 0.469956 0.523899 -0.870662 -0.201283 -1.538911 0.038752 -0.264975 -1.435158 0.771781 -0.448400 0.940282 -0.234349 -0.018650 -1.382792 -1.437753 0.542794 0.157805 0.865893 0.811353 0.391351 -0.148992 0.121760 -0.876209 -1.058479 0.185251 -0.043757 0.318915 0.254434 0.002279 -1.012952 0.503890 -0.156222 -0.334718 1.342039 -1.052015 1.294724 -0.803792 -0.362783 -1.165245 -1.125772 -0.066413 -1.152410 0.761021 0.830544 -0.774353 0.410917 0.363393 0.549596 0.249610 -1.701571 0.042049 -0.435740 0.007801 1.512044 -0.661125 -0.773130 0.405828 -0.233458 -0.346257 1.449094 0.015074 0.362254 1.328703 1.077670 0.643157 -1.209538 0.102168 0.193440 0.528796 1.103360 1.209543 -1.274883 -0.785211 0.032291 -0.285014 -2.495025 0.342840 0.877568 1.373086 0.296619 -1.786006 0.538293 -0.923340 1.253830 0.616427 1.380850 0.639305 -0.303056 -0.856734 0.435055 2.730445 -0.860199 1.105045 -0.597320 -1.699110 1.791159 -0.279367 1.237966 -0.023814 -0.002840 0.642131 -1.274223 -0.031222 1.965062 0.404966 0.144728 1.402590 -0.084997 -0.760124 -2.561688 -2.081237 -0.088375 0.967454 0.298718 2.828325 -1.384444 -0.888890 -0.436334 1.709240 -0.723005 -0.437424 0.153708 -0.517947 0.762948 -2.861460 -2.270474 2.105122 1.937524 0.002941 -0.274716 1.615410 0.150568 -0.354363 -1.417589 -1.158361 0.690705 0.458942 0.413065 -0.105022 -0.092599 -1.708859 0.171402 0.463609 0.440156 1.091100 -1.105558 -0.613567 -0.312304 -1.968156 -1.478682 0.544526 -1.706177 -0.200194 0.299069 0.199871 -0.219885 0.525401 -0.320343 -1.271052 0.184660 -0.872138 -0.188459 0.192751 1.063526 0.155721 2.148716 1.598418 -0.063490 1.292494 0.684729 -1.042899 4.518059 -1.346434 -0.012523 -0.007273 1.583614 -0.409793 0.687566 0.893323 -0.600444 -0.889030 -1.638793 0.428499 -0.173933 0.547850 -2.627971 -1.070299 -1.682240 -0.538780 0.223264 1.501394 -0.132055 3.004644 -0.353345 0.418347 -3.419053 0.124234 1.296013 -0.253709 1.210085 1.081733 -1.486697 -2.530053 -0.242101 -0.724885 0.905582 -0.347084 -1.577011 -0.934675 -0.296546 0.209003 -0.628349 0.693587 2.119936 -0.678435 0.835131 -0.227299 -0.300286 -0.114915 -0.833316 1.112496 0.402592 -1.292978 1.827715 -0.124343 3.656920 -0.054093 1.422491 -1.058601 -0.006321 -0.070327 -0.860065 -0.843856 1.886607 1.053863 0.782600 0.201333 0.330734 -0.874137 0.884182 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.176509 0.674650 1.239273 0.662332 -0.868848 -1.114543 -0.274720 -1.330493 0.412425 0.138027 0.713942 -0.116461 0.478445 0.190460 -0.067876 -0.029632 0.605047 0.353131 0.068521 -0.441543 -0.693579 0.861846 0.049941 -0.381261 0.267886 -0.563143 0.736633 0.422873 0.630222 0.664556 0.176074 -0.085260 -0.386376 0.394527 -0.335583 -0.310021 -0.145003 0.340070 -0.835682 0.160394 0.051128 -0.373045 0.800673 0.078075 0.245551 0.391863 0.343186 0.212084 -0.570730 -0.163931 -0.411554 0.579011 -0.246389 0.617849 -0.071888 -0.231087 0.144286 -0.052172 0.107846 -0.201521 0.015511 -0.336587 -0.373173 0.007828 -0.851898 -0.004896 -0.710202 -0.808919 0.128451 -0.147771 0.375347 -0.024560 -0.003664 -0.298015 -1.250676 0.156890 0.257837 0.436673 0.463203 0.303653 0.231265 -0.034389 -0.747143 -0.689598 0.347575 0.308954 0.284265 0.061948 -0.584388 -0.497056 0.220745 0.069760 0.239586 0.513582 -0.481318 0.582132 -0.886634 -0.230375 -0.554617 -1.488747 0.038774 -0.433012 0.417844 -0.112772 -0.301762 0.077560 0.103975 0.306574 0.196722 -0.872369 0.136464 -0.275566 -0.140953 1.105257 -0.110318 -0.534293 -0.204840 -0.179021 -0.163238 0.480657 0.249323 0.092622 0.512355 0.507654 0.476316 -0.597943 -0.208189 0.169249 0.020009 0.431914 0.541825 -0.373168 -0.475650 0.189528 -0.436870 -1.320005 -0.081467 0.417257 0.688336 -0.247529 -0.198398 0.017287 -0.683367 0.354144 0.424747 0.524967 0.405766 -0.108133 -0.387616 0.263328 0.987874 -0.418749 0.510454 -0.317570 -0.565227 0.694770 0.078363 0.406879 -0.200933 -0.083755 0.033491 -0.399663 -0.020149 0.894826 0.123684 -0.015603 0.484614 0.045699 -0.724677 -0.987973 -0.990236 0.137725 0.948700 0.232594 0.910808 -0.695719 -0.296577 0.057112 0.693950 -0.068104 -0.374587 0.319642 -0.335158 0.414582 -1.366547 -1.024907 0.982834 0.852878 0.104190 -0.316668 0.278535 0.246800 -0.700736 -0.958951 -0.705853 0.336683 -0.126418 -0.759763 -0.571198 0.146293 -0.867454 0.314265 0.277162 0.301390 0.769539 -0.246912 0.223780 -0.365691 -0.686858 -0.800729 0.673662 -0.547702 -0.079266 0.229581 -0.062031 0.013556 0.371303 -0.117265 -0.409164 0.130044 -0.462398 -0.023198 -0.008344 0.431559 -0.183456 1.326415 0.785652 -0.047703 0.342347 0.169279 -0.723824 1.850182 -0.641731 0.216679 -0.055433 0.597459 -0.304451 0.408460 0.756695 -0.321620 -0.805120 -0.870786 -0.323261 0.031946 0.317523 -0.658755 -0.622336 -1.083769 0.024710 -0.104647 1.032225 0.020086 1.302591 -0.330838 0.349219 -1.183802 0.135019 0.352707 -0.180763 0.864635 0.331067 -0.695294 -0.383524 -0.160141 -0.773855 0.010177 -0.089610 -0.569964 -0.473331 -0.019555 -0.059075 -0.172471 0.100442 0.595538 -0.432484 0.648397 -0.167768 -0.172558 -0.304073 -0.064395 1.028979 -0.008012 -0.607508 0.792542 0.174362 1.849853 0.264467 0.444344 -0.309831 -0.297072 0.081874 -0.654332 -0.520576 0.946710 0.658036 0.506773 -0.034483 0.158280 -0.042296 0.384600 -PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -0.866474 1.870420 7.937726 5.811053 -3.835276 -5.458907 -1.767272 -4.017097 2.175706 0.898891 3.913926 -0.575138 1.481530 1.431279 -0.177970 -2.080020 2.019524 0.474451 -0.543313 -1.694265 -3.441552 4.468836 3.074356 -5.956243 0.631536 -5.483531 4.650840 2.782018 1.636227 4.251383 0.413796 0.460634 -0.308515 2.752174 -4.050632 -1.687552 -0.916762 1.321517 -1.968363 -0.737844 2.517373 1.311045 4.025735 0.492765 1.803551 2.698738 2.802288 -0.278211 -4.369581 -0.880237 -2.709517 3.987630 -1.851214 2.433539 -0.181844 2.867160 1.801223 -3.999720 -0.514907 -6.036156 1.329437 1.719265 -3.039527 -0.349743 -4.446819 0.293324 -1.503398 -3.285624 2.094628 -0.966600 2.177485 -0.246879 0.271166 -3.806528 -4.131188 1.990037 0.171322 1.719109 1.922332 0.779250 -1.807165 0.873245 -2.978010 -2.681759 0.847197 -0.294732 0.744022 0.528638 0.247776 -2.844984 0.572000 -0.129497 -1.399855 3.522698 -2.225889 3.487821 -1.245123 -1.111101 -3.279313 -2.976442 -0.370269 -3.285905 1.495176 4.029251 -2.283497 0.954577 -0.382814 1.246860 0.082354 -4.709297 0.375596 -2.534786 -0.154557 3.387097 -2.364499 -1.891835 0.266036 -0.305294 0.223182 4.253183 -1.209790 1.037622 3.463719 2.492636 1.081063 -2.946155 1.259054 0.544601 1.503978 2.266492 2.904598 -3.313413 -2.018358 -0.592159 -0.628528 -7.008660 0.820398 2.175621 2.935489 0.862769 -5.890312 2.180924 -2.276177 4.166007 2.486809 4.069505 1.578835 -0.337877 -2.106907 1.217812 7.491739 -2.473768 3.033293 -2.164604 -5.277636 5.816912 -0.897352 3.827690 -0.107963 0.233566 1.854009 -3.448490 0.179057 5.335118 1.212137 0.440250 4.245052 -0.348357 0.050490 -6.266330 -5.746703 0.647024 2.912702 1.387068 9.289933 -4.300152 -1.944627 -1.176691 3.939673 -1.739165 -1.326605 -0.010976 -0.789938 1.449227 -10.525845 -7.151735 5.817582 4.355968 -0.054673 -0.533696 4.449489 0.438009 0.190316 -3.461373 -3.592433 2.299478 0.996973 2.072538 0.501712 -0.097223 -4.900292 0.334109 0.807091 0.903641 3.842681 -4.448979 -2.888818 -2.191565 -5.747693 -3.670296 1.449059 -5.155107 -1.598039 0.354342 0.241455 -0.367889 1.096813 0.075502 -2.837044 0.283656 -2.488950 -1.364192 0.651808 3.036830 0.620751 6.600756 5.669050 -0.067122 2.450484 1.910954 -2.197977 12.703233 -3.572288 -0.722492 0.021593 4.286051 -0.468471 1.736878 2.930257 -1.246065 -2.436046 -4.166108 2.798336 -0.481914 1.253458 -8.019698 -2.538341 -5.740384 -1.486900 0.806545 5.351336 -0.215959 8.664209 -0.429866 0.551088 -8.796018 0.106203 3.979621 -0.259042 3.314712 2.851615 -4.178507 -5.796771 -0.746511 -1.858198 4.233083 -0.607006 -4.726689 -2.818496 -0.666636 -0.296010 -1.887277 2.730233 5.910258 -2.009178 2.067972 0.575980 -0.967109 -0.408103 -2.019588 2.622764 1.591000 -2.892893 5.770153 -0.953238 9.584098 -0.912973 3.532584 -3.047787 1.092775 -0.402295 -1.726518 -1.927724 4.848635 2.762487 1.710447 1.013366 0.932989 -1.990909 2.713850 -PE-benchmarks/cutting-a-rod.cpp__main = 0.082824 0.937009 2.974839 1.237823 -1.230487 -2.144198 -0.803802 -2.789344 1.125309 0.561355 1.830423 -0.398090 0.933220 0.434942 -0.069774 0.053718 0.973988 -0.163459 0.304949 -0.768282 -1.153524 2.410544 0.618406 -0.809430 0.299014 -2.468141 1.325503 0.738731 1.314987 1.518720 0.273760 -0.065934 -0.204483 0.911060 -1.034307 -0.180504 -0.016274 0.657697 -1.288355 0.202959 0.235528 0.004589 1.529777 0.069097 0.962478 0.751608 0.984824 0.131854 -1.139921 -0.474676 -1.018878 1.765153 -0.738998 0.887545 -0.081498 0.117904 0.250594 -0.909639 -0.281300 -1.022198 -0.071521 0.084676 -1.036906 0.134619 -1.632743 0.340678 -1.101728 -1.120306 0.429626 -0.175853 1.051569 0.269293 0.269352 -0.590067 -2.459701 0.805148 0.269174 0.677369 0.727552 0.122319 -0.173658 0.355190 -1.350925 -1.474742 1.032407 1.018860 0.398169 -0.074125 -0.696508 -0.739307 -0.129112 -0.054619 -0.008934 1.390452 -1.156348 1.101792 -0.963771 -0.574572 -1.301886 -2.230190 -0.144202 -1.335473 0.723114 0.637443 -0.358942 0.175957 -0.133270 0.546740 -0.046002 -1.908134 0.310752 -0.670852 -0.205430 2.087871 -0.817683 -0.617896 -0.457875 -0.194285 -0.251334 1.340455 0.083852 0.504507 1.497078 1.166974 0.730906 -1.205563 -0.160223 0.508075 0.672166 0.781042 1.117159 -1.357390 -0.980559 0.063966 -0.482234 -2.911668 -0.301847 0.974876 1.259153 -0.363288 -1.149569 0.454263 -0.925442 1.539329 1.297546 0.853922 0.665807 -0.114130 -0.925422 0.826062 2.864822 -0.976416 1.305236 -1.145961 -1.424627 1.973923 -0.621026 1.348290 -0.050218 0.221627 0.067636 -1.291570 0.071710 1.983192 0.437268 0.386270 0.965390 0.090147 -0.458496 -2.190995 -2.460471 0.069559 1.495707 0.202051 2.807416 -1.508207 -0.948007 -0.099859 1.636975 -0.147407 -0.778510 0.480421 -0.822206 0.685089 -3.416150 -2.605665 2.522775 2.334481 0.446126 -0.275009 1.409321 0.807250 -1.188363 -1.597163 -1.274950 1.125559 0.015051 -1.252232 -0.731913 0.189652 -1.875077 0.060282 -0.025969 0.511979 1.330091 -0.527672 0.057452 -0.605619 -1.931448 -1.247805 1.226726 -1.539565 -0.734274 0.118326 0.078238 -0.142575 0.751085 -0.430364 -0.537019 0.574120 -1.210959 -0.149641 0.480108 0.941577 -0.023401 2.646983 2.271634 -0.006946 1.190165 0.327633 -1.018442 3.654035 -1.201748 -0.050115 -0.133487 1.023458 -0.549524 0.815650 1.215855 -0.555400 -1.658810 -1.703015 0.527875 -0.105135 0.589867 -1.407638 -1.601697 -2.198554 -0.357604 0.320180 2.342246 0.233616 3.217339 -0.521535 0.630044 -3.292698 0.242835 0.943313 -0.110980 1.573936 0.835287 -1.423778 -1.431435 -0.377267 -1.270092 0.014733 -0.283792 -1.953165 -1.132377 -0.822836 0.533112 -0.848303 0.537763 1.635815 -0.380701 1.343689 0.153761 -0.470800 -0.966156 -0.036201 1.767306 0.201069 -1.126290 1.781662 -0.125294 4.095654 -0.365494 1.169108 -0.941535 0.103282 -0.020690 -1.131550 -0.669427 2.112048 1.426717 0.671072 -0.085283 -0.048308 -0.374947 0.964013 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -1.879929 4.099645 37.212745 23.064901 -6.931296 -16.986102 -3.760226 -17.604767 2.241548 1.012048 16.645430 -9.377759 1.223504 9.591298 -0.524185 -11.024238 4.088848 5.437338 -2.434990 -4.439024 -16.309533 12.769552 12.751832 -9.186241 2.665432 -26.369770 11.077975 9.582464 -0.506070 20.497186 1.045962 0.506808 -2.836312 5.061826 -14.909953 7.624137 -4.098493 -4.782466 -3.116530 -0.091928 5.527829 1.789837 11.106178 -0.986686 6.196363 6.932715 17.455673 0.971563 -14.596552 -1.875826 -12.594647 21.505174 -2.657267 -1.836573 1.575796 12.676835 6.949394 -15.358274 -0.596474 -25.241825 2.110936 11.758631 -7.758913 -0.137466 -10.700460 -0.280768 -11.125268 -11.424770 12.402288 -3.004336 2.526159 -2.496882 -2.447918 -3.762936 -6.424466 2.374306 3.610906 3.344635 3.012657 -1.876117 -7.992220 7.441225 -9.496655 -4.062482 8.403038 -12.229408 3.701879 0.936776 1.744911 1.702066 4.989755 -0.862427 -0.361797 6.070364 -13.050886 6.946686 -0.541856 -3.630036 -13.346915 -5.990124 0.754101 -3.692141 4.952439 21.777339 -15.596146 2.010679 -12.824270 2.900322 -8.609107 -18.600581 -1.678955 -8.808446 4.384108 6.716899 -19.505072 -5.599495 -0.828140 -2.776780 0.000864 14.731141 -9.199596 -0.185300 8.143765 4.930393 2.851290 -5.857672 7.762495 -1.769945 11.386553 4.181192 5.953182 -6.465946 -3.237455 -6.943317 -13.882095 -30.331754 6.593365 9.123669 6.857502 14.713938 -24.440225 4.053592 -4.972713 24.055771 10.475942 11.485498 1.592954 -1.431138 -4.256853 1.190454 27.181123 -10.363009 21.330835 -10.176038 -22.059365 19.344426 -6.553912 12.379928 2.487600 -1.666815 14.963320 -5.173576 0.893095 16.907071 11.529132 -4.657313 17.256869 0.455220 8.228958 -26.078336 -28.639864 7.026009 8.315001 -0.315519 29.161279 -12.812622 -13.675454 -2.602389 15.850026 -10.201518 -12.706829 0.442748 -1.364608 3.150667 -36.986593 -23.484472 27.045166 21.641377 -6.431211 -0.793617 18.953168 4.255339 -3.771593 -2.447890 -10.616458 3.730903 2.595930 -7.645045 0.346687 -6.538117 -14.153908 5.865727 -8.473170 3.553362 10.840865 -15.917580 -10.085256 -11.422552 -24.487919 -1.065231 8.808082 -29.631539 -9.792856 2.329424 -0.021730 0.383116 2.976629 -6.307587 -7.205208 -0.211792 -23.538772 -0.688466 1.382369 6.167544 10.138464 39.332428 30.007733 -1.895876 14.879709 8.839857 -3.747763 35.808816 -9.828023 1.236184 0.121738 19.320637 -0.798141 8.798700 11.213358 -2.467732 -20.024372 -6.586498 9.916635 -1.243734 2.095256 -20.530156 -21.683965 -24.357926 -8.952890 -0.311007 16.575947 -0.218398 37.608558 0.682457 0.908965 -34.941889 -0.314518 21.113887 -1.036898 15.566727 3.833932 -11.602593 -25.606910 0.115592 -5.748612 21.249245 -0.646147 -19.543892 -5.463661 -11.818806 8.752739 0.286061 18.163333 12.768305 -6.960438 11.308902 18.347283 -1.554399 1.584116 3.189158 11.023757 7.904091 -4.818864 20.579054 1.349463 45.034268 -1.954047 5.510388 -10.521977 7.926584 1.705421 2.972202 -4.744515 6.422824 24.016689 3.603061 1.013793 6.481208 -3.612272 5.019281 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -1.049856 5.006859 39.963799 22.399612 -7.253683 -18.839853 -4.847179 -22.449459 3.815030 1.784525 19.066365 -10.293930 2.265592 10.044311 -0.159275 -8.778499 5.178765 4.305562 -1.330766 -5.220344 -16.520951 16.233550 12.599782 -7.376620 2.803041 -29.686635 10.190606 9.869407 1.983600 20.857470 1.453535 -0.143977 -2.673555 5.478214 -15.351097 8.554397 -3.070475 -4.474030 -5.578585 0.692386 3.946565 1.526607 12.109213 -1.731641 7.939984 6.303475 19.238754 1.366120 -14.764636 -2.261670 -14.080354 25.397294 -3.191356 -1.466154 2.169179 11.388368 5.945045 -15.845875 -1.628091 -23.915902 0.706987 11.684480 -8.585791 0.385479 -11.525350 0.817938 -12.429297 -11.534378 12.701132 -2.062646 4.087916 -1.621068 -1.673412 -2.522738 -9.833456 3.517100 3.886253 4.125616 3.180119 -2.623397 -6.767246 8.180774 -10.347372 -5.768173 10.757812 -9.209252 4.029819 -0.127022 -0.108601 2.357849 3.762203 -1.448603 -0.129436 7.141585 -15.266897 7.583891 -1.693029 -4.502371 -15.129014 -9.052828 0.285390 -5.203880 5.698146 20.997999 -14.209333 2.161978 -13.237054 3.500974 -9.237553 -20.703603 -1.339125 -8.280522 3.760329 9.845001 -20.818016 -5.345354 -1.690065 -2.606403 -1.649469 15.377119 -8.382813 1.150676 9.718399 6.668219 3.750105 -6.787585 6.675882 -0.948302 12.910798 5.040162 7.111418 -8.125827 -4.454721 -6.663652 -14.238948 -33.316214 5.312889 10.755783 8.364393 14.033560 -23.951450 3.084913 -5.150300 26.526672 11.909627 10.732181 1.874567 -1.583867 -5.284385 2.844091 30.134224 -11.503715 23.250909 -11.829797 -21.635768 20.226962 -8.250122 13.581349 2.998526 -0.816412 14.141320 -6.560695 0.230344 18.392068 12.665283 -3.927458 16.669096 0.988794 7.375188 -28.156691 -31.470181 6.607693 9.307320 -1.785591 30.379459 -13.567383 -16.098443 -2.374464 17.614958 -10.037248 -14.056144 1.763686 -3.635253 3.898375 -38.263140 -25.685124 30.061867 25.565895 -5.265677 -0.910497 20.821737 6.515878 -7.953043 -4.010592 -11.107538 5.454837 2.246075 -12.659850 -1.768529 -6.199582 -15.857706 5.484009 -9.576770 4.298768 10.890075 -13.353406 -7.833364 -10.703270 -26.422459 -0.938679 10.950902 -30.434370 -10.942171 2.157775 0.232089 0.400705 4.364329 -8.210650 -6.604742 1.671605 -25.691014 -0.223626 2.467695 6.853280 10.246491 42.005002 32.505090 -1.009234 18.316765 8.428287 -5.040472 36.277647 -10.230364 1.330720 -0.564471 18.303889 -2.545663 9.620741 11.920477 -2.947999 -23.305065 -8.042512 10.037916 -1.852122 3.143112 -18.155312 -24.697604 -25.756670 -9.421353 0.919212 18.580894 0.478790 40.178333 -0.540800 2.059693 -38.787514 0.178469 20.893552 -0.981358 17.196895 4.155929 -12.453406 -26.417301 -0.069071 -7.310274 17.851713 -0.978692 -22.411145 -6.576317 -14.865252 11.633813 -1.167865 17.712593 13.341181 -5.951431 13.739541 18.958257 -2.451313 -0.470600 4.659301 13.924986 7.596415 -5.959445 21.584079 1.324897 50.526548 -2.895352 6.111555 -11.360102 7.295547 2.143026 1.786904 -4.707480 8.655027 26.381673 3.953674 -0.353323 5.432972 -3.989130 5.627304 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -2.726598 3.382414 14.294380 9.527495 -8.057600 -9.836135 -3.951730 -7.470982 3.143698 1.670998 7.515815 -1.776110 0.981226 4.546417 0.441664 -3.858168 2.399820 0.743641 -2.357623 -3.279857 -5.704001 4.126782 6.093457 -10.777717 1.509050 -8.006107 5.824768 5.181523 0.750482 4.722473 0.114237 0.246589 -2.015196 4.943149 -7.340242 -2.193400 0.259269 1.497630 -3.033286 -1.031082 4.601259 2.967166 5.559516 -0.777568 5.414438 5.281129 5.133396 -0.417031 -9.754076 -1.837312 -3.096154 8.638915 -2.893379 4.867163 2.616402 6.442845 0.869791 -9.191967 -2.040056 -11.218798 2.917374 3.038537 -4.540392 -0.507115 -6.931437 0.614943 -0.348662 -5.938442 5.265902 -2.624782 3.866387 -2.675807 -0.389321 -4.920079 -3.764970 2.981196 0.493676 3.694349 2.278086 0.205642 -1.835697 1.484099 -3.412500 -3.884494 -1.211102 -0.869354 1.042568 -0.030402 0.812349 -3.258439 2.952859 -1.767816 -3.237317 6.839444 -5.714068 5.978515 -1.715054 -2.534708 -7.581956 -4.783272 -0.216476 -5.599203 3.891958 6.621856 -5.328203 1.916355 0.431877 3.389317 0.390202 -8.578981 -0.095067 -2.586966 1.963277 5.246567 -4.948199 -2.923981 1.860476 -1.473147 -0.529270 6.588595 -1.533961 1.810608 6.463023 5.512241 2.452555 -5.273940 0.737095 0.201252 3.750378 5.139294 5.468829 -7.523558 -2.693139 -0.265604 -1.994746 -11.506417 1.484559 3.294439 6.433654 2.755679 -10.529494 1.736712 -3.670108 8.041583 2.395719 8.742825 1.397080 -1.442461 -4.211614 1.360900 12.104869 -4.143409 5.834417 -1.880577 -8.722467 7.468714 -1.207161 6.468286 2.139379 1.063926 3.380454 -6.885246 -1.333203 8.505150 3.842373 1.354689 6.728232 -0.273922 -2.304527 -11.703565 -9.901325 0.402968 3.341811 0.850304 13.812861 -7.723874 -5.873680 -3.465405 9.808469 -3.689791 -3.105670 -0.167919 -1.355812 2.597130 -13.341337 -11.129836 8.649747 10.665600 0.141931 -0.927313 9.998913 -0.305898 -2.237880 -5.686432 -5.898736 3.824583 1.590442 5.008729 1.122147 -0.944391 -8.590084 0.782955 0.386385 2.374375 5.380943 -5.815876 -4.778969 0.252783 -9.265251 -6.178594 0.896441 -7.812182 -2.089436 0.755490 1.452792 -0.319775 1.542305 -2.373773 -6.618951 0.492967 -5.383849 -0.733290 2.685984 5.125329 2.035865 12.964404 6.816248 0.572626 6.855956 2.183912 -3.818092 21.744270 -6.217745 -0.589431 -0.366116 7.217854 -2.176956 1.941241 4.208541 -2.227198 -4.532354 -6.233650 3.333403 -2.750294 3.358644 -12.899100 -6.565895 -9.717328 -2.666560 2.460434 7.653822 -0.347440 13.888180 0.576980 1.974670 -16.179908 -0.011169 6.765526 -1.436850 4.393012 4.736696 -7.583505 -14.610364 0.139702 -2.842521 4.928118 -1.122276 -7.135983 -4.449517 -2.094468 0.656892 -1.554883 3.261881 9.954298 -2.442028 3.399584 2.430660 -2.142140 0.993789 -4.683186 4.969432 2.024995 -6.268275 10.310503 -0.364636 19.679182 -0.577679 6.417755 -4.300201 0.322821 0.055975 -1.666668 -3.017034 7.373313 5.822210 4.176519 -0.306005 1.651087 -5.765680 3.331242 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.426147 1.289861 4.217753 2.743879 -2.551539 -2.849848 -1.180137 -2.800614 1.236719 0.432446 2.115404 -0.726324 0.510466 0.912532 -0.126708 -0.827551 0.962106 0.266002 -0.636566 -1.095421 -1.802924 1.762297 1.255903 -2.965752 0.522600 -2.705945 1.768129 1.474534 0.726038 1.410284 0.157097 -0.020142 -0.629081 1.545930 -2.117123 -0.676521 0.312212 0.439879 -1.486538 -0.404525 1.040693 0.834171 1.887392 -0.335441 1.427610 1.425182 1.224282 0.094247 -2.713312 -0.479040 -0.789631 2.696292 -0.718212 1.549127 0.859767 1.340719 0.245725 -2.611227 -0.335409 -2.494961 0.618073 0.600851 -1.190779 -0.099776 -2.077614 0.126720 -0.191534 -1.844097 1.556409 -0.887204 1.143269 -0.530320 0.014804 -1.407231 -1.552469 1.002837 0.523196 1.113842 0.932202 0.273318 0.106843 0.314415 -1.280454 -1.383370 0.071205 0.270509 0.588230 0.213140 -0.199957 -1.080834 0.957381 -0.617918 -0.498300 1.937845 -1.621923 1.296668 -1.049363 -0.819998 -2.441515 -2.007660 -0.076809 -1.537155 1.231458 1.594345 -1.510889 0.677806 0.498344 0.925366 0.315805 -2.494777 0.021744 -1.003222 0.678451 2.267026 -1.275578 -1.172300 0.204824 -0.504326 -0.580288 1.939513 -0.324550 0.504049 2.028282 1.599164 0.994501 -1.727448 -0.011303 0.192922 0.949477 1.460838 1.766822 -2.323032 -0.883862 0.047225 -0.688632 -3.663356 0.109477 0.570254 2.093657 0.648068 -2.740453 0.598508 -1.165772 2.190442 0.510765 1.932683 0.547043 -0.414414 -1.279554 0.499236 3.505181 -1.251195 1.704215 -0.924166 -2.330500 1.954611 -0.125362 1.793746 0.425627 0.019718 0.812635 -1.915929 -0.083867 2.614497 0.774842 0.227931 1.529601 0.044381 -1.056729 -3.663070 -3.187702 0.349985 1.200055 -0.067360 4.178894 -2.377217 -1.853013 -0.915221 3.122991 -1.168333 -0.756927 0.302794 -0.887948 1.033381 -3.528909 -3.496285 2.888470 3.229682 0.140149 -0.373356 2.764406 -0.144410 -1.193485 -1.695309 -1.775845 1.030134 0.694983 0.415521 -0.130173 -0.135110 -2.495565 0.212770 0.346416 0.811133 1.709980 -1.295514 -0.791255 -0.322099 -2.785345 -1.852390 0.845718 -2.226282 -0.268480 0.409620 0.446566 -0.103184 1.024820 -0.856406 -2.033016 0.286213 -1.419948 -0.171346 0.618791 1.655301 0.270311 3.748567 2.292778 0.054833 2.417354 0.670972 -1.346488 6.201872 -1.782079 0.020782 -0.120846 1.886043 -0.691376 0.751330 1.556864 -0.858613 -1.445725 -2.156141 0.549900 -0.735519 0.814178 -3.601905 -1.943376 -3.002877 -0.863857 0.327102 2.079575 0.038675 4.142849 -0.168992 0.433532 -4.991113 0.041256 1.941082 -0.381628 1.442603 1.417642 -2.199647 -4.081400 -0.032329 -1.306088 0.662228 -0.413201 -2.368091 -1.338581 -0.840861 0.900284 -0.485084 0.896009 3.202152 -0.423178 1.042009 0.285542 -0.506747 -0.041552 -1.307761 1.675341 0.322351 -1.739537 2.967480 0.035219 5.720105 -0.113315 1.784247 -1.369052 -0.032991 0.205717 -1.096187 -1.130747 2.388346 1.565008 1.176367 -0.144118 0.361265 -1.678349 1.358064 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.499004 1.018570 3.722922 1.638781 -1.948001 -2.797267 -1.040098 -2.938523 0.983165 0.696299 2.373223 -0.543385 0.762202 0.971822 0.192794 -0.453459 0.967117 -0.076742 -0.167256 -1.025661 -1.406750 1.450058 1.005138 -1.587207 0.517956 -2.305290 1.479738 1.209035 0.537914 1.371676 0.294838 -0.051141 -0.771062 1.158891 -1.372825 -0.137174 0.425316 0.557852 -1.063743 0.101510 0.657730 0.282813 1.587602 -0.118783 1.638935 1.304376 1.070582 0.168091 -2.155125 -0.719610 -0.699518 2.115462 -0.838462 1.199256 0.530950 0.861004 0.085585 -1.837909 -0.408164 -2.124092 0.455922 0.173853 -1.179227 0.089359 -1.758268 0.264261 -0.608040 -1.488141 0.966114 -0.752928 1.078609 -0.528184 -0.101866 -0.536868 -1.744636 0.655274 0.350243 0.834057 0.759893 -0.092761 -0.299297 0.249828 -1.226083 -1.410221 0.342930 0.631125 0.467953 -0.017271 -0.646271 -0.569343 0.477657 -0.374535 -0.254225 1.786191 -1.587617 1.191389 -0.652544 -0.844578 -2.005141 -2.171766 0.160002 -1.421837 1.087006 1.130917 -1.084758 0.205859 -0.254231 0.914017 -0.143465 -2.207154 0.244926 -0.798900 0.436157 1.907377 -1.257261 -0.795241 -0.230394 -0.539122 -0.006667 1.589258 0.002106 0.397936 1.747058 1.537395 0.880945 -1.530484 -0.349552 0.310479 1.020338 1.218713 1.282709 -1.975329 -0.847915 0.226025 -1.080262 -3.222101 -0.146868 0.781531 1.789807 0.160806 -1.990942 0.360454 -1.184818 1.872377 1.048784 1.904531 0.405284 -0.217921 -1.276521 0.503563 2.979864 -1.129748 1.668530 -0.622344 -1.786361 1.655324 -0.380314 1.490019 0.605631 0.167747 0.330392 -1.557521 -0.337288 2.212455 1.059595 0.629108 1.145721 0.219284 -0.956055 -2.755054 -2.898149 0.041326 1.529155 0.182294 3.112185 -2.079100 -1.498211 -0.615334 2.705394 -0.614363 -1.152931 0.314717 -0.625062 0.807454 -3.265089 -2.802341 2.530572 3.097525 0.568523 -0.374501 2.155904 0.334757 -1.481210 -1.575360 -1.502171 1.145471 -0.024792 -0.306871 -0.331242 -0.032306 -2.321086 0.168821 -0.145766 0.786582 1.323746 -0.809344 -0.283211 0.089329 -2.036742 -1.487698 0.689422 -1.642631 -0.698360 0.141938 0.258890 0.043724 0.570853 -0.856592 -1.239805 0.518317 -1.645552 -0.002763 0.873481 1.213833 0.391203 3.703634 1.843384 0.014621 1.643519 0.161142 -1.149694 4.732209 -1.433606 0.128875 -0.126439 1.554192 -0.539577 0.604447 1.415030 -0.691699 -1.682951 -1.816015 0.254090 -0.430751 1.066240 -2.118459 -2.079173 -2.849879 -0.367537 0.451744 2.529649 0.007008 3.639349 -0.003827 0.853897 -3.897516 0.138894 1.337947 -0.489464 1.260157 0.988663 -1.879977 -2.986275 -0.050702 -1.420119 0.074079 -0.172006 -1.676215 -1.233568 -0.844896 0.530461 -0.492829 0.450454 1.993299 -0.422518 1.256768 0.649305 -0.555793 -0.308136 -0.596121 1.926238 0.208465 -1.675077 2.448493 0.210724 5.352138 -0.084332 1.548500 -0.863276 0.022587 0.051192 -0.805101 -0.872690 2.142678 1.899728 1.154933 -0.339341 0.255980 -1.011782 0.948635 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -3.945240 2.558189 16.993200 11.576845 -4.984808 -7.083622 -4.559179 -7.241573 6.803174 2.220479 9.734475 0.079468 3.733347 1.312786 -0.790163 -5.746263 3.820374 -1.849358 -2.123914 -3.668728 -0.885823 12.760764 9.506553 -14.514747 0.934046 -13.470927 7.666339 4.099407 4.642358 11.169884 -1.127291 1.202365 1.309591 6.856009 -9.280943 -3.501003 -2.174458 3.542940 -3.416249 -2.737775 7.631263 6.864829 7.731670 1.003188 5.004592 5.442545 5.124251 -2.669950 -7.761317 -3.147951 -4.309351 7.506581 -5.795403 6.094740 -1.904150 6.636820 2.796760 -8.077671 -1.922577 -15.689406 3.142749 6.549609 -4.937573 -1.500082 -8.388008 1.514076 -0.555942 -5.705196 3.834254 -4.577471 5.854380 1.161486 1.328404 -9.117547 -7.483199 5.683281 0.398463 3.930570 3.926215 1.359765 -5.202194 1.108910 -3.989826 -6.255782 1.970045 -0.565878 1.132744 2.334316 3.001116 -5.253535 1.154552 1.039817 -4.402062 8.479967 -4.762956 7.387767 -0.471448 -2.777525 -3.184117 -0.666745 -1.773787 -9.013399 2.418593 9.488308 -5.231239 2.982669 -0.470566 2.827196 -0.287500 -8.974622 1.473479 -1.982487 -2.514560 7.318649 -5.607934 -3.393564 1.075008 0.954019 1.011853 9.838687 -3.234213 4.080030 8.055621 5.671543 2.661194 -7.922472 3.814077 1.834653 5.528695 4.523381 6.853260 -6.385940 -5.572723 -1.704151 -0.204071 -14.260753 0.974824 5.663123 8.111338 1.418280 -14.374977 7.750716 -4.750998 10.102752 7.657588 5.874060 4.197832 -0.882284 -6.925147 4.115908 17.434842 -5.736710 6.606835 -5.435462 -12.009847 14.337233 -3.866639 8.854939 -1.696135 1.468483 4.547598 -9.488548 2.127479 12.627487 2.009093 3.966361 7.013814 -1.470860 3.635026 -14.480457 -13.508159 -3.669856 3.591663 3.979617 18.699752 -6.831392 -3.287482 -3.189604 7.586366 -3.484566 -2.742959 -1.003003 -2.354257 3.232199 -22.847455 -14.460932 15.201025 13.718444 0.620310 1.839226 9.748676 2.064978 4.461123 -5.199272 -5.445790 6.392726 3.912091 5.177014 1.888247 -0.198847 -8.623582 -2.917279 1.669463 1.057402 4.871707 -10.121475 -6.313686 -1.465117 -11.997341 -7.393763 2.054148 -11.778253 -4.238108 0.421910 0.754230 -1.300866 2.409340 -0.742265 -5.390748 1.395546 -5.182121 -3.521692 0.767182 7.441548 2.615856 6.927049 11.529422 -1.414501 4.633487 4.575519 -5.059641 24.833644 -9.140802 -3.024899 0.092863 9.215897 0.690559 5.276598 3.028690 -2.728098 -1.645341 -10.072542 8.360307 0.409911 2.574134 -17.774551 -6.914925 -7.976684 -2.748486 2.728272 10.211567 -0.590743 20.631108 -2.539100 0.989682 -20.860130 0.013340 8.925185 0.918287 6.927315 7.463183 -8.130830 -16.595341 -2.558701 -3.314193 9.273646 -2.831277 -10.533878 -6.285944 -2.342512 3.847527 -6.769922 6.943776 12.076194 -2.656457 5.945825 1.153628 -2.572847 -3.422131 -4.817593 1.910210 5.216600 -5.591573 9.464407 -2.970312 16.542764 -4.763603 9.791188 -8.448778 4.800308 -2.451794 -5.247665 -4.290196 12.405351 6.999846 2.634756 3.089389 -0.592961 -4.575361 6.854211 -PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -3.790585 3.357516 20.085051 15.226527 -8.392136 -10.627531 -5.034458 -9.391300 6.938998 1.781555 10.152580 -1.206513 3.008524 2.535246 -0.833442 -5.690035 4.443674 -0.620375 -2.486465 -4.398676 -3.912727 12.898566 9.993381 -17.686166 1.410673 -15.219026 8.977415 6.338209 4.853690 11.794122 -0.779218 0.433931 0.259413 7.937481 -10.889762 -4.508768 -1.446081 2.333614 -5.419125 -2.773675 7.185107 5.942084 8.975185 -0.595280 6.095700 5.726389 7.525630 -1.852573 -10.872749 -2.609959 -6.367379 11.106517 -5.748345 7.303727 0.273614 7.346170 2.642148 -11.369536 -2.818946 -16.868015 3.384456 6.264150 -5.271328 -1.580010 -10.091742 1.402920 -0.825206 -7.785605 6.631848 -3.672535 6.367179 0.771707 1.901938 -10.055193 -7.941695 6.398482 0.835434 5.858378 3.964470 0.960460 -3.162261 2.014270 -4.665931 -6.243005 0.495476 -0.822462 1.609616 1.461443 2.564515 -6.101409 2.566806 -0.353107 -5.407628 9.218330 -6.184608 8.154727 -2.585262 -2.651411 -6.122439 -4.200711 -2.282840 -9.453731 3.882276 10.723590 -5.999631 4.033368 0.897052 3.935008 0.080302 -11.588711 0.936396 -2.811119 -0.891172 8.739478 -6.843218 -4.111213 1.485233 0.688371 -0.386855 11.129420 -3.810610 4.497353 9.415688 7.691222 3.384847 -8.676490 2.932339 1.481221 5.860388 6.480689 8.666517 -8.758899 -5.414496 -1.922504 -0.648746 -16.810177 1.641551 5.768208 9.613786 3.676359 -16.383261 5.780573 -5.433537 12.631409 6.507854 8.188985 4.071186 -1.132273 -7.000260 5.009285 20.516831 -6.823754 8.126896 -6.628325 -13.023895 14.909261 -3.166632 9.585676 -0.855501 1.548776 5.823932 -10.898527 0.828874 14.239989 3.443426 2.731894 9.461074 -1.241811 0.843351 -18.806433 -15.092009 -1.946033 4.216511 2.587700 22.668210 -9.270245 -6.361319 -4.407294 10.292112 -4.461816 -3.094878 -0.389999 -3.400746 4.122901 -25.727832 -17.638749 16.943078 14.935702 0.155374 1.122688 12.291602 2.051608 1.019144 -6.416267 -6.634780 6.433602 4.080306 4.678883 1.399745 -0.481794 -10.856168 -2.061872 2.545499 1.969258 7.336644 -10.673420 -7.360335 -2.026104 -15.445544 -9.022336 3.678203 -14.793924 -4.053097 1.112845 1.402952 -0.270823 3.519261 -1.482544 -7.573161 1.714752 -6.209608 -3.312624 1.373995 8.986008 2.782561 11.442728 13.751973 0.193862 8.290840 5.637821 -6.448217 32.142547 -9.627006 -2.323441 0.254007 9.973159 -0.939063 5.094430 4.885621 -3.452322 -3.900599 -11.240014 7.877053 -1.394702 4.017653 -21.374501 -7.974051 -11.318619 -4.418430 3.634878 10.362659 -0.436882 22.800910 -2.171394 1.082236 -25.749289 -0.324197 10.595364 0.931402 7.924240 8.326330 -10.279115 -19.961966 -1.830069 -3.835262 10.572408 -3.193279 -12.466908 -7.054633 -3.235041 3.756593 -5.550895 7.216010 15.987194 -3.499101 6.640050 1.657750 -2.914105 -2.101972 -6.385312 3.676668 5.349219 -7.243237 13.178642 -2.634994 22.814396 -3.310504 9.365286 -9.237170 2.941309 -1.387621 -5.215315 -4.413573 13.265139 7.340548 4.084234 2.375941 0.292223 -6.898537 7.740724 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -0.787441 1.240813 5.372644 3.537860 -2.608875 -3.779534 -1.476767 -3.742021 1.956918 0.713375 3.301393 -0.378336 1.437068 0.611097 -0.072488 -0.919838 1.817253 -0.198821 -0.251051 -1.576727 -1.722466 4.023390 2.200134 -3.552036 0.667625 -3.960105 2.716845 1.743756 1.528096 3.381367 0.174881 0.100994 -0.339427 2.043773 -2.410401 -0.752955 -0.432744 0.964591 -1.824002 -0.145363 1.597455 0.640323 2.980464 0.093544 1.792719 1.809714 2.005635 -0.039561 -2.904342 -1.062301 -1.783330 2.774746 -1.695629 2.055074 -0.345408 1.130492 0.942078 -2.392461 -0.593155 -3.658890 0.501162 0.677247 -1.800512 -0.179763 -3.013662 0.471168 -1.140186 -2.383404 1.302132 -0.950063 1.889732 0.221292 0.138860 -2.054346 -3.223993 1.392269 0.515361 1.558614 1.362811 0.304024 -0.775620 0.370519 -2.103307 -2.272223 0.940561 0.347497 0.820322 0.418052 -0.450663 -1.633872 0.465103 0.089000 -0.602815 2.522181 -1.791952 2.036382 -0.898398 -1.052158 -2.110027 -2.589067 -0.233076 -2.427543 1.256696 2.133737 -1.476416 0.637158 -0.246551 1.055743 -0.253095 -3.445148 0.424627 -1.116304 -0.401575 3.082343 -1.689296 -1.300445 -0.371361 -0.156468 0.070602 2.970594 -0.286363 0.982297 2.841401 2.299286 1.119279 -2.505329 0.145356 0.400985 1.549301 1.645731 2.347677 -2.249235 -1.879099 -0.041088 -0.961534 -4.961736 -0.192406 1.793692 2.853621 0.303305 -3.561223 1.652397 -1.893568 3.006690 2.244086 2.116653 1.240819 -0.312477 -2.141546 1.546923 5.443466 -1.931632 2.436921 -1.884919 -3.327301 4.234454 -0.824571 2.285796 -0.037700 0.080547 0.682847 -2.540404 0.303013 3.886924 0.961423 0.760412 2.290236 0.016274 -0.407067 -4.694254 -4.578824 -0.260105 2.229801 1.040856 5.845676 -2.866689 -1.440290 -0.791312 2.858174 -0.811438 -1.382941 0.279972 -1.117448 1.267129 -7.212258 -4.781732 5.028081 4.173482 0.625524 0.102599 2.828149 1.008535 -0.632249 -2.228826 -2.172820 2.035771 0.661112 -0.270787 -0.304275 0.161761 -3.341520 -0.339536 0.383525 0.889529 2.191240 -2.489284 -1.009909 -1.087928 -3.881077 -2.546769 1.412656 -3.580802 -1.162809 0.422092 0.033947 -0.044690 1.051503 -0.318099 -1.593438 0.391489 -2.030456 -0.690964 0.459283 2.401676 0.572878 4.017013 4.106905 -0.320423 1.960638 1.032842 -2.042416 8.103607 -2.615709 -0.133788 -0.059409 2.834046 -0.178370 1.405300 2.105160 -1.001724 -1.776170 -3.279824 1.476166 0.179144 1.266885 -4.847652 -2.415206 -4.083537 -0.787607 0.668875 3.985533 -0.152746 6.249919 -0.856990 0.757430 -6.676976 0.201860 2.322078 0.053642 2.401171 1.935968 -2.853283 -4.210937 -0.630973 -2.035540 1.796206 -0.660893 -3.021405 -2.155178 -0.812546 0.777497 -1.639402 1.439832 3.784185 -1.156546 2.162533 0.487413 -0.843468 -1.086949 -1.160223 2.160066 1.027322 -2.091180 3.580667 -0.276352 6.842133 -0.412403 2.582646 -2.102684 0.607709 -0.272780 -2.021126 -1.461756 3.869760 2.544971 1.107771 0.642677 0.183151 -1.001452 2.135268 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -6.118037 6.876793 34.700611 21.664144 -15.693265 -19.215875 -8.620199 -17.971673 8.493137 5.724803 20.122879 -3.079002 4.783672 9.951053 1.207237 -8.651724 5.484888 -0.814160 -2.784138 -7.561310 -9.904624 15.450518 17.409416 -24.053528 2.275455 -21.052605 15.566520 10.720150 5.896132 15.264207 -0.181868 0.813771 -1.962554 12.162215 -16.774093 -4.958884 -4.442411 6.705944 -5.529551 -1.517152 11.824686 7.843312 11.671071 -0.137155 11.557960 12.732061 14.471346 -2.897907 -19.032152 -5.515884 -8.810010 17.832948 -11.178928 10.123114 0.645586 13.477282 0.268144 -18.468154 -4.908217 -27.571145 7.597847 8.196988 -13.280020 -0.055476 -18.327718 3.255400 -5.128056 -12.552734 9.561763 -5.512760 11.231008 -2.406233 -0.283038 -13.390944 -13.043288 7.836498 -0.601431 6.807858 5.999716 -2.010100 -8.234645 4.451890 -9.106457 -11.268798 0.605773 -0.715890 1.826290 -1.868407 3.759442 -6.847567 3.661371 -0.517060 -8.948376 18.034848 -13.459193 15.775110 -4.679170 -5.204576 -14.178121 -8.829721 -1.639029 -17.250891 8.910623 17.070141 -11.699876 3.862100 -1.037985 6.631920 0.577921 -22.331390 -2.332952 -3.575476 3.081610 13.144653 -12.479792 -5.133251 2.756566 -1.093186 1.767722 16.113041 -1.877425 6.240419 18.692664 11.970892 5.012346 -14.095508 3.317839 2.095409 8.144731 11.838772 13.004402 -15.755771 -9.473776 -2.763137 -2.088539 -27.547555 4.450868 10.607448 13.669688 3.254633 -25.228480 7.720241 -9.025561 18.022111 12.382895 18.242522 5.732205 -2.174790 -9.599414 4.271486 32.108436 -10.865601 13.054293 -6.755563 -21.171582 23.653653 -6.429373 16.248603 4.149078 5.354189 7.227792 -18.635436 -2.923341 22.581360 7.692516 5.924402 18.227033 -1.367400 0.722282 -26.908997 -21.968098 -2.365367 8.050913 3.764303 32.150112 -16.822138 -7.954616 -4.764388 18.636381 -4.776358 -7.348923 -2.128881 -2.455479 5.477724 -36.608022 -26.132821 19.871501 24.576801 0.630571 -1.171845 20.909601 3.048987 -1.172247 -11.931145 -14.758274 13.111803 1.585760 11.787889 3.029111 -0.874271 -20.695595 0.833184 1.192028 4.984519 12.872073 -16.667333 -13.683779 0.542517 -23.605668 -14.042143 3.682381 -19.485231 -7.618143 -1.017504 2.426304 -0.703237 1.573890 -4.978293 -11.331816 2.898782 -12.310911 -3.465009 6.983920 11.871504 4.086706 26.999667 16.970584 -0.517447 8.934864 5.914354 -8.722745 48.880982 -12.919490 -3.710054 -0.401347 17.606109 -4.647063 7.048451 7.981871 -5.214659 -11.854166 -16.337543 11.258312 -3.084391 7.140660 -27.807461 -12.986460 -20.281644 -5.613237 6.457403 21.706233 0.406531 36.121242 -0.093951 6.107976 -36.832453 0.411977 14.620056 -2.723553 13.132279 12.467478 -16.337284 -28.069291 -2.863606 -5.082444 13.687890 -2.478348 -17.850894 -12.766620 -3.500378 1.099047 -6.290802 8.802280 19.865042 -5.355247 9.144555 6.218542 -5.487317 -0.201575 -8.548864 11.767720 8.665906 -15.319270 23.141400 -3.200913 41.653667 -4.280276 16.992116 -12.816816 1.818410 -1.904914 -4.249827 -7.233195 21.282489 14.683582 9.165354 0.796572 1.186384 -10.484710 8.089943 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -5.224870 7.947928 37.542501 21.306057 -16.419380 -21.544129 -9.749124 -23.111304 10.094346 6.462781 22.670148 -3.957516 5.926543 10.366604 1.564399 -6.354489 6.727769 -1.775839 -1.698462 -8.493883 -10.633932 19.111908 17.262393 -22.337913 2.490445 -24.195998 15.059723 11.220232 8.457302 15.751246 0.308380 0.150395 -1.886503 12.714225 -17.224788 -4.070714 -3.716656 7.175564 -8.098496 -0.645715 10.390273 7.187328 13.028201 -0.815542 13.274294 12.246286 16.532780 -2.399729 -19.448695 -5.922121 -10.531414 21.757731 -11.886277 10.636388 1.022420 12.053570 -0.481516 -18.878624 -5.868166 -26.202127 6.111632 7.823005 -14.367745 0.443814 -19.439142 4.307173 -6.703402 -12.994029 9.839479 -4.463289 12.883838 -1.520840 0.305367 -12.239249 -16.783207 8.897154 -0.188425 7.703054 6.356904 -2.626647 -6.940233 5.123727 -10.296214 -13.139810 3.143723 2.123179 2.348900 -2.886367 1.708112 -6.355934 2.498269 -0.978262 -8.533679 19.185288 -15.689750 16.550745 -5.995339 -6.147536 -16.263723 -12.358586 -2.015182 -18.796104 9.800500 16.214955 -10.489015 3.963040 -1.518975 7.176999 -0.085758 -24.753997 -2.139151 -3.309875 2.485403 16.466508 -13.736224 -5.040631 1.868913 -1.005131 0.156720 16.816255 -0.824831 7.486586 20.519996 13.840460 5.982457 -15.185488 2.112838 2.775640 9.607510 12.839779 14.272620 -17.348858 -10.880055 -2.424605 -2.567509 -30.853833 3.189741 12.433253 15.283285 2.511992 -24.724919 6.879679 -9.391361 20.441696 13.945653 17.688908 6.141389 -2.344619 -10.697349 6.019287 35.217427 -12.051585 15.070079 -8.468887 -20.942528 24.927377 -8.090707 17.403310 4.705319 6.029032 6.269706 -20.008861 -3.575392 24.236849 8.779213 6.505178 17.931037 -0.791238 -0.347725 -29.140626 -24.972513 -2.548779 9.475824 2.561278 33.629430 -17.862086 -10.252898 -4.365680 20.367995 -4.605427 -8.811898 -0.756869 -4.748518 6.379789 -38.355980 -28.578218 23.115918 28.359202 1.796093 -1.310196 22.731697 5.375575 -5.436931 -13.757558 -15.530348 14.929476 1.280491 6.645234 0.821613 -0.466661 -22.666990 0.610105 0.184019 5.843263 13.144322 -14.374575 -11.424427 0.860580 -25.652480 -14.150137 5.933913 -20.417371 -8.723831 -1.086260 2.557507 -0.677027 3.015019 -6.684136 -10.785101 4.496355 -14.544701 -3.005241 7.978548 12.695499 4.156461 30.138765 19.794894 0.167777 12.347527 5.554230 -10.125735 49.750315 -13.478611 -3.466256 -1.026763 16.970602 -6.350300 7.950215 9.109626 -5.784131 -15.263260 -18.002490 11.267624 -3.482904 8.239232 -25.701775 -15.858086 -22.203694 -6.091309 7.654075 24.081654 0.987648 38.905357 -1.395908 7.329549 -40.840280 0.938330 14.377537 -2.707122 15.029386 12.827840 -17.378593 -28.634629 -3.183831 -6.835693 10.415982 -2.785097 -20.590998 -14.037078 -6.333185 3.619630 -7.839036 8.344210 20.499912 -4.644907 11.602926 6.704546 -6.356417 -2.229056 -7.121698 15.083009 8.358086 -16.587719 24.420992 -3.160779 47.602237 -4.970299 17.716577 -13.694304 1.118434 -1.398600 -5.616676 -7.364466 23.721700 17.165991 9.550700 -0.432641 0.344823 -10.682588 8.853900 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -1.464643 -0.119803 3.216305 2.751606 -2.164498 -3.313595 -0.961807 -3.194929 2.396758 0.928772 3.408337 0.239307 2.176682 -1.631067 -0.118509 -0.990974 1.694768 -0.039593 -0.636947 -1.298036 -1.027586 3.775695 0.949146 -2.894544 0.689385 -2.245857 2.345476 1.591357 0.537386 2.667348 0.461700 0.370897 -0.667416 1.323982 -1.441742 0.370686 -0.249847 1.010151 -1.051821 -1.260803 1.639067 -0.196865 2.567300 0.008884 2.450737 0.783542 1.421744 -0.145773 -2.525956 -1.331074 -0.557785 1.198864 -1.217521 1.574316 -0.385876 0.514237 1.271709 -1.404817 -0.048539 -3.908055 0.883546 -0.178209 -1.672327 -0.302514 -2.011141 0.183278 -0.117142 -1.842573 0.610088 -2.362563 1.008567 -0.262287 -0.456978 -1.740450 -2.386191 0.411172 0.921610 0.404002 1.378964 1.359875 -1.085637 -1.068620 -1.882479 -1.515005 1.291501 0.187295 0.726701 1.463216 -1.543894 -0.997230 0.749720 0.101737 0.430574 1.530169 -1.598364 0.437172 0.905270 -1.028557 -1.093206 -1.517656 0.675304 -1.365704 0.813981 2.202535 -1.573252 0.648028 -0.311373 0.737731 -0.963918 -2.002654 0.735410 -1.851707 0.278475 2.227041 -1.178752 -1.538708 -1.114547 -0.291002 0.601670 2.354045 -0.187436 0.410045 2.389898 1.408396 1.232362 -2.365258 -0.229901 1.197134 1.859183 1.018179 0.811119 -1.606447 -1.014563 0.484018 -1.845424 -3.757116 -1.193557 0.967341 2.462743 -0.099145 -3.118962 2.376220 -1.238731 2.310559 2.166937 1.413374 0.642732 0.482376 -2.527692 0.720256 3.321164 -0.874374 1.436384 -0.833407 -3.073704 3.029067 -0.080517 1.040670 0.219016 -0.674564 -0.005650 -1.392521 0.975633 2.474102 0.349031 0.618223 0.123593 0.715503 -0.901473 -3.353377 -4.619219 -0.435269 2.314204 2.734201 5.661860 -2.710689 -1.110884 -0.652339 2.108502 -0.806012 -1.414255 0.507525 -1.180327 1.319440 -6.103554 -3.991635 5.110494 3.234269 1.889813 0.266438 2.541249 -0.094172 -0.003586 -1.127105 -1.703243 1.214056 1.413961 -0.689361 0.700599 0.333613 -3.027552 -1.204645 0.070132 0.586086 1.028907 -2.025681 0.384145 -1.839534 -1.422302 -1.712833 0.870453 -1.652982 -0.503832 -0.132188 -0.006956 0.173530 1.057209 -0.399924 -1.064869 -0.660398 -1.544083 -0.391725 0.101510 1.703426 0.816438 3.541364 4.179285 -1.297966 1.483059 0.020412 -1.402848 5.639286 -2.005124 0.113093 0.083820 2.447432 1.627813 0.740717 2.247996 -1.012144 -0.111914 -2.485564 0.484245 0.993954 1.183002 -4.899447 -1.875609 -4.140278 -0.183469 -0.441524 3.214489 -0.360269 5.330659 -1.048549 0.427515 -5.642712 0.091561 2.245379 -0.100476 1.424799 1.027056 -2.321440 -3.458394 -0.378222 -2.075793 0.373527 -0.373057 -1.444821 -1.620888 -0.973513 1.186491 -1.916751 0.837771 3.080214 -0.932105 1.646566 -0.127112 -0.077170 -0.699146 -0.748444 0.614609 0.644023 -1.474893 2.470367 0.255206 5.210598 -0.252457 2.005032 -1.344799 2.740776 -1.475522 -2.856506 -1.379366 2.463060 2.596140 0.655684 0.663461 0.600826 -0.717168 2.129156 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -3.690126 -1.057844 6.550629 4.921597 -3.068942 -4.971497 -2.154585 -5.743396 4.557158 2.044029 6.762350 0.551827 3.683190 -3.082330 0.379439 -1.733864 3.268080 -1.753834 -1.072101 -2.258516 0.395970 7.124057 3.220398 -5.510578 1.114614 -5.309218 2.725042 2.516122 0.963201 4.889437 0.556126 0.577265 -0.709316 2.395440 -3.046738 1.476526 0.535653 1.545470 -1.861956 -2.525981 2.892884 1.284642 4.362365 -0.660994 5.319610 0.557832 3.071800 -0.841415 -5.062496 -3.110139 -1.113513 3.517315 -2.853620 2.840777 -0.050054 1.532397 1.812767 -3.402145 -1.225685 -8.334889 1.570750 1.081712 -2.641838 -0.646187 -2.749119 1.064607 1.064432 -2.181521 1.609327 -4.105152 2.472406 0.027367 -0.022427 -2.329333 -3.584465 1.456622 1.348304 0.855444 2.027846 1.959028 -2.105929 -1.805361 -2.151822 -2.701307 2.663483 0.633159 1.040254 2.553642 -2.208240 -0.558425 0.863631 -0.169100 -0.263884 2.780333 -3.682950 0.379033 3.081973 -2.124375 -1.564300 -0.783873 0.777719 -3.261649 1.024253 4.965193 -2.140955 1.324591 -1.710483 1.773451 -2.904020 -3.555135 1.741022 -2.301608 -0.500033 3.761758 -3.590221 -1.733872 -2.023673 0.350185 1.219422 4.418725 -1.076732 2.036112 4.262309 3.197326 2.260649 -4.488438 0.073258 2.185654 4.924248 1.838764 1.497135 -3.327702 -1.983277 0.830123 -3.236409 -6.721014 -3.111681 2.529446 5.398975 1.194706 -6.765314 3.906105 -1.648313 5.740493 4.119980 1.706641 0.843262 1.204472 -4.952615 2.012566 6.687785 -2.185068 3.375494 -1.375561 -4.570004 5.148754 -1.470884 2.596338 0.897647 -0.482147 0.400878 -3.491276 1.352443 4.857770 1.827111 2.397412 -1.195016 1.554257 -0.238675 -6.770174 -9.152055 -1.713559 3.129212 3.723270 9.797012 -4.346011 -3.145473 -1.892780 4.291362 -2.001433 -3.239811 0.565802 -2.821215 2.328515 -10.575700 -7.012859 10.102354 7.754506 3.711228 1.599671 5.665787 0.768153 -0.670172 -0.947490 -2.217633 2.986212 2.841742 -1.192460 1.300423 0.505433 -5.380892 -3.574784 -0.486716 0.833604 0.178762 -2.934159 0.559102 -1.008086 -3.238080 -1.386890 1.205306 -3.768850 -1.917942 -0.836596 0.239013 0.921804 2.028208 -1.611131 -1.396898 -0.144316 -3.762681 -1.254714 0.551887 3.798822 2.645653 5.031091 7.841982 -1.865341 3.924262 -0.179744 -3.054512 9.135351 -3.618761 -0.501372 -0.362270 3.427337 3.065294 1.217080 3.084470 -1.782688 -0.066300 -4.711678 1.820009 1.840189 2.957723 -8.385983 -4.664919 -6.418794 -0.476331 0.369093 5.379856 -0.771339 9.853274 -2.428938 0.631574 -11.546281 0.088937 4.112398 0.360028 1.905059 2.018485 -3.689372 -8.924996 -0.661584 -3.687090 0.686931 -1.008627 -3.410804 -2.886020 -3.314881 4.745543 -4.135430 1.868602 5.545914 -0.644387 4.100807 1.144494 -0.632668 -2.004609 -1.077600 -0.219672 1.912741 -2.811327 4.623095 0.181457 9.900471 -1.711242 3.749307 -3.232165 5.200418 -2.826202 -4.558676 -1.847933 4.929086 5.861333 0.775469 1.106798 0.331977 -2.336353 4.202825 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.534434 0.170571 1.707885 1.379280 -1.137812 -1.541945 -0.498161 -1.622741 1.123452 0.305462 1.617929 -0.056041 0.940022 -0.661805 -0.088218 -0.421308 0.754166 0.145775 -0.305512 -0.603377 -0.499477 1.723010 0.390937 -1.455078 0.325179 -1.049099 0.868259 0.838556 0.356781 1.122296 0.169290 0.075516 -0.325505 0.670446 -0.808723 0.060204 0.035523 0.427157 -0.761480 -0.538808 0.555840 0.046242 1.166441 -0.149784 1.135837 0.477168 0.775148 0.031208 -1.302540 -0.487050 -0.308188 0.945376 -0.465491 0.797031 0.063286 0.266529 0.517572 -0.795584 -0.077259 -1.841203 0.359365 0.052359 -0.627866 -0.119406 -0.982716 0.075881 0.070084 -1.024723 0.443417 -0.996833 0.498699 -0.089768 -0.049829 -0.742049 -1.006101 0.345398 0.466171 0.399142 0.610520 0.598597 -0.227923 -0.379927 -0.757193 -0.694575 0.464584 0.078212 0.421136 0.581791 -0.638634 -0.477092 0.464670 -0.110603 0.121972 0.710169 -0.793604 0.361216 0.133952 -0.431319 -0.677573 -0.869018 0.171571 -0.635739 0.461294 0.920466 -0.685902 0.407525 -0.053716 0.478994 -0.332106 -0.969504 0.348173 -0.737912 0.154485 1.212603 -0.628361 -0.726893 -0.326119 -0.151022 -0.025413 1.163121 -0.142363 0.267282 0.989148 0.744796 0.595178 -1.069535 -0.124406 0.466945 0.928632 0.603759 0.617192 -0.916537 -0.480308 0.166950 -0.853161 -1.847160 -0.428984 0.496437 1.197498 -0.010278 -1.590851 0.986211 -0.619555 1.273955 0.810450 0.719196 0.307448 0.069198 -1.171312 0.355098 1.618184 -0.460664 0.814038 -0.357391 -1.416293 1.177283 0.061829 0.580218 0.072676 -0.304694 0.145020 -0.748816 0.327743 1.165542 0.385106 0.157533 0.191915 0.269291 -0.678305 -1.824406 -2.180408 -0.065218 0.913228 0.916710 2.700005 -1.231838 -0.901331 -0.400889 1.204578 -0.566601 -0.625476 0.229442 -0.643929 0.646762 -2.583031 -1.977537 2.508018 1.687715 0.789148 0.036168 1.378277 -0.109168 -0.302920 -0.741748 -0.752753 0.473458 0.597957 -0.583945 0.090141 0.148009 -1.451082 -0.372755 0.073943 0.352915 0.540446 -0.587288 0.165021 -0.656535 -0.834744 -0.764735 0.413117 -0.773842 -0.194517 0.104511 0.088047 0.099820 0.611145 -0.407006 -0.706480 -0.212508 -0.926069 -0.151516 0.061270 0.909604 0.391671 1.906228 1.906868 -0.351284 1.129490 0.144004 -0.797370 2.851880 -0.997850 0.095628 -0.032912 1.082827 0.521388 0.345882 0.997072 -0.510520 -0.315855 -1.230204 0.116963 0.231928 0.508504 -2.306346 -1.107521 -1.756877 -0.148144 -0.120774 1.279172 -0.106446 2.585920 -0.442628 0.151177 -2.936383 0.028997 1.152341 -0.089818 0.778497 0.591693 -1.122497 -1.974488 -0.117081 -0.971936 -0.035879 -0.278837 -0.921975 -0.675960 -0.515368 0.715888 -0.801464 0.379478 1.679013 -0.349079 0.847999 0.005441 -0.089125 -0.260225 -0.455313 0.481712 0.217972 -0.770060 1.197922 0.146892 2.882269 -0.000966 0.869739 -0.713914 1.052917 -0.372326 -1.266719 -0.660258 1.212872 1.281755 0.397509 0.208040 0.305266 -0.557465 0.966722 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.368307 0.262202 1.271473 1.462056 -1.171794 -1.736384 -0.307626 -1.530372 0.961562 0.360262 1.237762 0.353985 1.110324 -0.702845 -0.090201 -0.355173 1.010590 0.297689 -0.047080 -0.572246 -0.860109 1.961515 0.445923 -0.952489 0.322750 -0.554489 1.447518 0.627636 0.691263 1.459030 0.272473 0.118009 -0.366501 0.522294 -0.439130 -0.039795 -0.799684 0.717740 -0.689172 -0.339754 0.695098 -0.917491 1.512069 0.299757 0.564472 0.135583 0.793022 -0.031098 -0.979537 -0.612627 -0.749770 0.231547 -0.746121 0.875754 -0.668502 -0.326019 0.914180 0.234176 0.191438 -1.176292 0.184429 -0.631026 -0.911113 -0.193026 -1.199326 0.032774 -0.898634 -1.042814 -0.100719 -0.630119 0.560588 0.152090 -0.131891 -0.801982 -1.938357 0.013673 0.356892 0.250005 0.843469 1.087914 -0.362725 -0.551031 -1.249222 -0.956547 0.991932 -0.106509 0.349621 0.658325 -1.024954 -0.725796 0.180162 0.430660 0.468646 0.555260 -0.628757 0.629808 -0.151227 -0.338164 -0.241020 -1.480855 0.279450 -0.679348 0.266610 0.383945 -0.532914 0.058736 -0.269841 0.175391 -0.321885 -1.237223 0.330833 -0.846042 -0.532016 1.166757 -0.280651 -0.721077 -0.520858 -0.004834 0.393162 0.826369 0.305225 0.199174 0.904428 0.557596 0.690979 -1.053233 -0.025105 0.513008 0.426041 0.376088 0.262510 -0.118865 -0.713105 0.399588 -0.709054 -1.879541 -0.559570 1.071921 1.062785 -0.116543 -0.751670 0.809772 -0.771386 0.486873 1.148842 0.574676 0.635967 0.293950 -0.843610 0.438206 1.433968 -0.477920 0.576822 -0.330859 -1.235168 1.894157 -0.159836 0.424612 -0.351265 -0.282832 -0.078214 -0.503565 0.438400 1.313970 -0.133877 0.091312 0.348454 0.261023 -0.579150 -1.380407 -1.858557 0.048369 1.743487 1.462757 1.969303 -1.148344 0.127663 0.248322 0.422255 -0.067619 -0.705445 0.318399 -0.458599 0.680310 -3.325156 -1.676852 2.108941 0.814662 0.507204 0.044221 0.354043 0.437254 -0.032143 -0.960403 -1.129198 0.602475 0.383395 -0.622334 -0.176007 0.256569 -1.474721 -0.180236 0.364118 0.160497 0.761244 -1.219666 0.317731 -1.268989 -0.610103 -0.961392 0.804019 -0.937032 -0.269436 -0.027137 -0.258070 0.087619 0.455608 0.378262 -0.181021 -0.420250 -0.544962 -0.346363 -0.325576 0.666067 0.065828 1.635414 2.033210 -0.769687 -0.103505 0.088838 -0.916218 2.726031 -1.160498 0.073854 -0.014385 1.329852 0.643222 0.561309 1.337861 -0.487839 -0.327510 -1.316049 -0.101897 0.859303 0.505084 -1.947068 -0.537776 -2.055774 0.104459 -0.312698 1.852383 -0.254178 2.161349 -0.913971 0.297508 -1.943159 0.182041 0.711384 -0.040605 1.186669 0.366900 -0.951896 -0.420207 -0.528733 -1.064367 0.783288 -0.151108 -0.446819 -0.722391 0.037740 -0.224896 -0.932445 0.410763 0.818011 -0.963756 1.005325 -0.331833 -0.021946 -0.646737 0.030673 0.655717 0.340741 -0.680654 1.251560 0.109193 2.109391 0.166793 0.808818 -0.604318 0.797335 -0.636810 -1.426360 -0.725293 1.342852 1.181987 0.299423 0.518799 0.471894 0.173233 0.924924 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.349812 1.554098 4.662583 3.098322 -3.082917 -5.166883 -0.995078 -5.920599 3.214545 0.995999 3.476815 0.525487 2.912410 -1.355400 -0.355413 0.386567 2.981995 1.166492 -0.362481 -2.063091 -1.852546 5.562306 0.127893 -2.140836 1.090214 -3.025634 2.598939 2.426412 3.077870 3.135882 0.936803 0.053596 -1.011792 1.696912 -1.749757 -0.485406 -1.027903 1.230647 -3.800654 -0.514700 0.658903 -1.127775 4.176497 0.444889 2.210491 0.237427 2.452483 0.471315 -2.109051 -1.107147 -1.996015 2.897506 -0.821700 2.591333 -1.014798 -0.736913 1.128328 -0.267895 0.602322 -1.518226 0.231803 -0.496058 -2.203974 -0.436450 -3.210268 -0.058641 -1.982885 -3.102769 0.063453 -1.698988 1.516472 -0.064476 -0.592071 -2.453328 -6.124186 0.359240 1.204012 1.271821 2.290669 2.334457 0.069957 -1.301609 -3.108296 -2.692071 2.583030 1.655363 0.829036 1.706557 -3.378388 -2.537029 0.250775 0.379069 1.380488 1.729196 -2.825899 1.579582 -1.528590 -1.287747 -1.766253 -4.525925 0.692807 -1.577127 1.190978 -0.458466 -0.385420 0.887055 0.229764 0.695548 -0.289390 -2.782562 0.767378 -1.619872 -0.801316 4.831243 -0.568027 -2.462582 -1.652865 -0.251285 -0.809031 2.482784 0.550614 0.374796 2.910551 1.969265 2.088477 -3.002117 -0.515979 1.567896 1.009398 1.737957 1.578720 -1.281856 -1.871294 0.873685 -1.938678 -5.861951 -1.185186 2.203154 3.165363 -1.025593 -1.262281 1.010125 -2.150446 2.420568 2.529176 0.914556 1.701123 0.202029 -2.516086 1.410239 4.782845 -1.383862 1.980214 -1.977498 -2.739413 3.658497 -0.296607 1.654318 -0.940364 -1.148591 -0.329029 -1.218769 1.116159 3.696285 -0.198812 -0.146938 0.713275 0.678776 -2.384746 -4.123644 -5.777262 -0.179626 3.507828 2.685325 5.722752 -2.963543 -1.390740 -0.336562 2.027965 -0.575542 -1.640370 1.922509 -2.512230 2.036232 -7.209957 -4.797445 6.185049 4.470199 1.777965 -0.650542 2.254090 0.895192 -1.848429 -3.345232 -2.169541 1.369375 1.253137 -3.775427 -1.025847 0.767145 -4.130046 -0.209961 0.615660 0.811965 1.961283 -1.138240 2.322738 -2.993717 -2.478452 -3.138688 2.666514 -2.159006 -0.209553 0.345765 -0.208204 -0.256794 2.047692 -0.528808 -1.298938 0.005213 -1.864746 -0.154732 -0.583423 2.039538 0.047944 4.563921 5.217554 -0.870440 2.933311 0.336844 -2.844912 7.332097 -2.900702 0.742869 -0.002194 2.348091 0.188302 1.819333 2.865485 -1.481849 -1.438212 -3.659825 -0.504367 1.181832 1.506432 -3.673592 -2.555488 -5.084779 -0.190619 -0.865385 4.467204 -0.382883 6.229201 -2.534933 1.235893 -6.629524 0.610570 1.795348 -0.111543 3.361735 1.393037 -3.300806 -1.964489 -0.663469 -3.344584 -0.369267 -0.238292 -2.530393 -2.316100 -1.022247 1.022932 -2.650984 0.804537 3.269215 -2.067376 3.208804 -1.710665 -0.129757 -1.667864 -0.061702 3.101187 0.434194 -2.127625 2.553001 0.259274 7.515342 0.504379 2.632260 -1.619398 1.307811 -0.820465 -4.384776 -2.356565 4.029440 3.296942 1.269450 0.385561 0.454694 0.034257 2.563111 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -0.776109 1.494483 5.348223 3.595950 -2.588293 -4.100572 -1.565034 -3.409642 1.135057 0.921376 3.225078 -1.338875 1.213784 0.897712 -0.368314 -1.612690 1.270475 -0.195075 -0.213567 -1.572829 -3.931772 3.127207 2.094479 -3.030812 0.849630 -4.172001 4.188647 1.716679 0.244226 3.307326 0.264609 0.485598 -0.410011 2.083743 -2.495585 -0.259173 -0.632895 1.229958 -0.150330 0.441964 2.360222 0.347801 2.697250 0.349834 1.064418 3.397703 0.881535 0.058437 -3.218120 -1.270526 -0.582057 0.913439 -1.679347 1.204406 -0.393685 1.494018 1.674977 -2.955166 -0.135153 -3.480456 0.738272 -0.014651 -2.283850 0.388486 -3.359007 0.212863 -1.556258 -2.548815 1.486476 -1.309011 1.241278 -0.232248 -0.995529 -2.030504 -1.828148 1.258865 1.313779 0.654215 1.362166 -0.217279 -1.164364 0.709137 -3.007169 -2.341687 0.907503 -0.119666 1.571830 0.401866 0.060535 -2.008376 1.114439 0.151360 0.157017 2.955842 -0.672244 1.131732 -0.947171 -1.473330 -3.468032 -3.184715 0.264640 -2.084100 1.707266 3.143800 -3.313277 0.163358 0.008357 0.773011 0.169670 -3.594182 -0.557557 -2.725140 1.740174 2.704706 -1.302860 -1.779081 -1.245482 -1.151260 0.984122 3.129827 -0.125894 -0.221865 3.903807 1.734612 0.811544 -2.357779 -0.169855 -0.277093 0.589578 1.095193 2.029363 -2.905168 -1.653580 -0.230107 -1.445155 -4.729747 -0.341055 -0.028021 1.992592 -0.452097 -3.709571 3.103614 -1.846724 1.720489 1.954503 2.698241 0.839620 -0.384581 -1.669162 0.951213 5.047744 -1.604286 1.733585 -1.998778 -5.271980 4.681739 0.109492 1.712813 0.967309 -0.399926 0.005302 -2.142742 1.195625 3.927756 -0.029997 0.534524 2.826815 0.111992 0.214429 -3.730283 -4.450941 1.192376 2.526841 1.579706 6.995921 -3.756931 -0.319910 -0.395183 3.503330 -0.409192 -1.061604 -0.116359 -0.202998 0.961786 -7.176285 -5.248710 3.877336 2.672294 0.488184 -0.126447 2.248784 0.080798 0.167088 -1.643610 -3.131950 2.112658 0.691294 1.101223 0.127198 0.163805 -2.952906 0.525853 -0.154046 1.216754 3.053754 -4.144041 -2.273824 -2.977246 -3.814965 -3.283286 1.077499 -3.344799 -0.367065 0.312729 -0.261631 -0.357744 0.958058 0.229310 -1.844345 -1.106676 -1.370738 -0.362784 0.990039 2.084994 0.126825 5.135316 3.926537 -1.488703 0.317637 0.623083 -0.662452 8.278236 -2.183201 0.094516 0.241102 4.169151 0.235805 1.254393 3.125848 -0.841797 -1.625625 -2.830878 1.425622 0.391845 0.242200 -5.860370 -1.120581 -5.726927 -0.998440 -0.096708 4.878450 0.348658 6.049026 0.440278 0.531575 -5.443701 0.025013 2.016360 -0.476886 2.334999 1.498391 -3.191281 -3.513941 -0.668632 -2.288972 2.084583 -0.315322 -1.932420 -2.356239 0.444692 -0.689747 -0.407921 1.550078 3.678744 -0.697350 0.249592 1.059389 -0.514585 -0.633112 -1.567170 2.490830 0.391287 -1.669227 3.642268 0.204076 5.617958 -0.002344 2.642477 -1.604386 0.676274 0.272705 -1.674921 -1.667536 2.940321 1.696516 0.942190 0.716799 0.864896 -0.450744 2.244932 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.366216 0.670928 2.297548 1.260820 -0.866778 -1.833667 -0.614684 -2.702656 1.307967 0.468984 1.426805 -0.319937 0.915926 -0.164861 -0.285313 0.201695 0.749814 0.045547 0.156266 -0.625549 -0.982847 2.607843 0.265922 -0.680769 0.279281 -2.263551 1.157456 0.670213 1.437366 1.300408 0.219892 -0.042237 -0.027954 0.707740 -0.996638 -0.054332 -0.280508 0.543720 -1.313395 -0.018042 0.233670 -0.084368 1.294313 -0.020159 0.805974 0.302178 0.959463 0.049796 -0.611592 -0.362011 -0.884657 1.448620 -0.452339 0.757205 -0.291912 -0.174085 0.250584 -0.580988 -0.149146 -0.405568 -0.096278 0.089735 -0.984249 0.061184 -1.454926 0.257391 -0.866190 -0.961932 0.304671 -0.281887 0.858211 0.309910 0.044025 -0.910346 -2.396055 0.576159 0.366846 0.441029 0.660244 0.424707 0.160479 0.061984 -1.281499 -1.200791 1.258355 1.078936 0.310956 0.161370 -0.713713 -0.922511 -0.111657 -0.020627 0.347687 1.054398 -1.032789 0.718351 -0.983048 -0.454437 -0.914276 -1.912358 0.018143 -1.053792 0.631009 0.262820 -0.233682 0.439260 0.666718 0.403946 0.133985 -1.583431 0.057168 -0.542919 0.090348 2.160260 -0.380616 -0.790053 -0.636496 -0.140836 -0.572225 1.093982 0.175308 0.383282 1.603374 0.886048 0.791411 -1.121313 -0.279521 0.758559 0.415574 0.668501 0.748044 -1.167584 -0.773399 0.068898 -0.269927 -2.587040 -0.520307 0.694819 1.100694 -0.624908 -0.671928 0.569195 -0.582866 1.174555 1.055396 0.185359 0.629250 0.049354 -0.795943 0.797092 2.623370 -0.621997 0.762033 -1.341746 -1.435184 1.727712 -0.364889 0.915219 -0.201238 0.095575 -0.032064 -1.035534 0.558857 1.683181 -0.215794 0.148966 0.579985 0.238547 -0.585521 -1.877553 -2.253678 0.046085 1.152034 0.421126 2.684112 -1.238275 -0.726249 -0.045005 1.227204 -0.016117 -0.402346 0.661051 -1.134098 0.703812 -2.876191 -2.327221 2.302848 1.919690 0.544378 -0.209414 1.159411 0.683739 -0.928971 -1.234208 -1.070117 0.894576 0.590198 -1.466119 -0.595238 0.133917 -1.555799 -0.163193 0.054649 0.360341 0.971233 -0.414846 0.404576 -1.174758 -1.589363 -1.317875 1.418538 -1.291733 -0.161201 0.000867 0.065706 -0.340382 0.949427 -0.459569 -0.323254 0.258441 -0.671321 0.074906 0.266309 0.639749 -0.230807 1.906938 2.262142 -0.254440 1.260023 0.200694 -0.827142 3.121802 -0.969487 -0.033756 -0.078441 0.817901 -0.362991 0.810322 0.975920 -0.551941 -1.085267 -1.487496 0.307448 0.131156 0.357702 -1.201955 -1.101426 -1.978255 -0.519106 -0.038291 1.921160 0.410270 2.711711 -0.858793 0.507863 -2.960027 0.226474 0.768087 -0.004851 1.521767 0.581270 -1.249305 -1.075515 -0.326973 -1.100381 -0.299765 -0.422760 -1.754301 -1.110160 -0.804891 0.620567 -0.859428 0.501241 1.537523 -0.244182 1.049231 -0.549219 -0.203624 -0.980124 0.058426 1.211274 0.136723 -0.927277 1.096342 -0.127119 3.256782 -0.285853 1.065418 -0.906597 0.379292 -0.298173 -1.487925 -0.605762 1.692166 1.093469 0.398923 -0.061438 -0.093487 -0.260979 0.961126 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp___GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/vertex-cover-problem.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = 0.569226 1.443711 3.841727 1.127164 -2.161348 -1.414000 -0.368769 -3.795935 1.163757 0.450850 2.321195 -0.076902 0.862110 -0.077932 -0.052034 0.474163 1.031981 0.016876 -0.216938 -1.111121 -1.958278 1.021980 1.157138 -1.002232 1.365733 -1.809032 1.164940 0.282564 1.998167 0.659538 0.166648 -0.068107 -0.355840 1.316052 -0.351291 -0.638927 -0.286403 0.749775 -1.983624 0.125355 0.383164 -1.148109 1.455660 0.694339 1.485385 0.281066 1.230375 0.227608 -1.815320 0.123499 -1.298838 2.697818 -1.340487 1.449322 -0.005315 0.131711 -0.833568 -1.084134 -0.285081 -1.378320 -0.006694 -0.728831 -0.572753 -0.137913 -1.620452 0.382854 -1.075633 -1.827059 0.441640 0.312976 1.371557 0.548290 0.467979 0.141963 -2.124779 0.715995 1.228273 0.893202 1.341826 0.305861 0.859996 -0.155457 -0.898413 -1.813917 1.779395 0.488558 0.553488 -0.364940 -0.108342 -0.779730 0.690215 -0.433366 -0.336665 1.899397 -3.138422 1.687275 -1.652527 -0.955711 -1.523278 -3.556060 -0.623275 -1.971102 1.253006 0.685721 -0.980239 1.247715 0.135266 1.471813 0.194628 -2.356009 -0.581889 -0.027691 -0.512409 2.476278 -0.898513 -1.273211 0.381690 0.280245 -0.662792 0.880119 -0.092453 1.046256 2.909227 1.920311 0.947105 -1.029424 0.481953 0.247248 0.509379 1.719055 1.602848 -1.697089 -1.192672 0.727729 -0.086720 -3.662712 0.076793 1.015427 1.950712 -0.544678 -1.895941 -0.553016 -0.777773 1.750789 1.629924 0.979210 0.940222 -0.348061 -0.759550 1.110498 3.460384 -1.458360 1.604098 -0.970072 -1.226663 1.483659 -1.172669 1.429690 -0.506763 0.213244 0.747639 -2.230955 -0.932336 2.670347 0.993247 -0.517070 0.772372 0.081011 -1.482660 -3.195798 -2.440628 -0.908600 1.246684 -0.125252 2.631170 -1.282520 -1.162818 -0.530272 1.977519 -0.384671 -0.594149 0.534385 -1.027395 1.156430 -2.368357 -2.852622 3.014873 3.188362 0.343388 -0.229208 1.756706 0.985917 -2.618642 -2.507179 -1.444155 0.404354 0.754622 -2.026885 -2.205304 0.073703 -2.768319 0.404020 0.347674 0.563278 2.046625 0.017262 0.248267 1.063482 -2.361908 -0.978355 1.473444 -1.965401 -1.232611 0.315977 0.287199 0.786680 0.705009 -0.684472 -1.305707 0.071811 -1.997285 -0.278276 0.339736 2.270304 -0.004450 3.692658 2.518901 -0.003223 0.697265 0.480577 -2.007554 3.164666 -1.561507 -0.215216 0.140215 0.509738 -1.339910 0.983186 1.759952 -0.943923 -2.140324 -2.290065 -0.166075 -0.915233 0.867874 -0.905954 -1.582779 -1.885300 -0.436866 0.762250 1.758885 0.516287 3.654996 -0.449499 0.173016 -3.885941 -0.111110 0.909605 -0.365683 2.557854 1.599974 -1.959879 -2.012218 -0.755978 -1.179087 0.128376 -0.434636 -1.104505 -1.267127 -0.818406 1.547435 -0.484381 0.710584 1.543336 -0.231452 2.773660 0.209195 -0.596097 -1.142708 0.661356 2.880380 0.663171 -1.630504 2.079806 0.280770 5.984572 -0.102647 0.944342 -1.530687 -1.608852 0.746896 0.114095 -0.912888 2.400980 2.419060 1.829432 -0.207373 -0.161882 -1.142766 1.698067 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.085220 0.244511 0.733808 0.242170 -0.342944 -0.621367 -0.112153 -0.810669 0.405372 0.233709 0.528937 0.090008 0.550314 -0.234961 -0.064406 -0.146814 0.438080 0.130883 0.067679 -0.243907 -0.076349 0.593858 -0.051569 -0.146212 0.137003 -0.418529 0.499314 0.189935 0.393324 0.630756 0.135349 -0.003129 -0.316353 0.206648 -0.086247 -0.057988 0.069149 0.265532 -0.413907 -0.079982 0.003252 -0.222802 0.482818 0.121606 0.336693 0.088803 -0.059718 0.058161 -0.234503 -0.266056 -0.053976 0.041672 -0.210787 0.359322 -0.084325 -0.232829 0.102072 0.180601 0.188504 -0.405186 0.174101 -0.248951 -0.137281 -0.009806 -0.428906 -0.002992 -0.384830 -0.423952 -0.119652 -0.418499 0.155704 0.026838 0.115609 -0.100410 -0.861207 0.041066 0.182311 0.096747 0.398915 0.324081 -0.071186 -0.276438 -0.391981 -0.457263 0.316559 0.334713 0.103346 0.326188 -0.523947 -0.241608 0.114956 0.097916 0.261916 0.268404 -0.269138 0.169483 -0.305712 -0.102364 0.035357 -0.834513 0.123067 -0.252707 0.120672 0.000836 -0.118699 0.002976 -0.116022 0.196250 -0.073451 -0.309912 0.351253 -0.283189 -0.186446 0.614646 -0.108511 -0.327813 -0.329622 -0.075895 0.168500 0.333331 0.032217 0.066521 0.144033 0.236693 0.367408 -0.493722 -0.102810 0.396589 0.119209 0.164119 0.109994 -0.212988 -0.203652 0.213632 -0.478814 -0.794418 -0.220056 0.178917 0.432039 -0.199739 -0.160721 0.130049 -0.445093 0.162123 0.444436 0.229211 0.222964 0.107850 -0.379789 0.120289 0.448579 -0.220374 0.275813 -0.050977 -0.300369 0.325584 0.000746 0.239250 -0.261326 -0.131944 0.033465 -0.154580 0.111870 0.559815 0.035252 0.224084 -0.099937 0.113654 -0.417311 -0.563781 -0.730173 -0.109102 0.781842 0.361952 0.536805 -0.413248 -0.116650 0.043262 0.468651 -0.000253 -0.282750 0.236872 -0.205174 0.316332 -1.017964 -0.626704 0.756158 0.636996 0.296755 -0.157168 0.038008 0.165230 -0.277132 -0.414445 -0.293484 0.099240 -0.120789 -0.623934 -0.316007 0.126808 -0.537880 -0.034860 0.181134 0.093582 0.325843 -0.126473 0.337928 -0.172808 -0.080519 -0.458418 0.409447 -0.227779 -0.114839 -0.008245 0.003369 0.097259 0.216884 -0.120255 -0.125341 0.223538 -0.228337 -0.029601 -0.039395 0.199984 -0.018210 0.686931 0.493440 -0.171062 -0.060656 -0.000895 -0.421900 1.023652 -0.408740 0.132959 0.037955 0.318347 0.117433 0.268518 0.438249 -0.265164 -0.223257 -0.603159 -0.384534 0.206923 0.288651 -0.375640 -0.526174 -0.638342 0.194940 -0.214757 0.641008 -0.046958 0.891642 -0.269383 0.209065 -0.602665 0.070378 0.308362 -0.149250 0.487369 0.191788 -0.381077 -0.310512 -0.150982 -0.555731 -0.076650 -0.058842 -0.228911 -0.175651 -0.065405 0.127937 -0.208615 0.078796 0.207454 -0.202808 0.526119 -0.145456 0.006780 -0.372822 0.116628 0.294724 0.001938 -0.331523 0.393530 0.165928 0.856785 0.024684 0.256926 -0.155811 0.208859 -0.184933 -0.538799 -0.343211 0.616018 0.505042 0.337294 -0.016889 0.087486 0.013895 0.330724 -PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.584091 0.403055 2.708960 1.320072 -0.856556 -2.514184 -0.592519 -2.854698 1.607741 0.840667 2.467350 0.421936 1.652024 -0.422796 0.460817 0.309509 1.226700 -0.124879 -0.053300 -0.785178 -0.103716 2.849474 1.008876 -1.057119 0.307973 -1.625239 0.754401 1.151260 1.275619 1.709536 0.268750 0.010370 -0.179747 0.886593 -1.175433 0.305319 -0.414934 0.881727 -1.131934 -0.579492 0.353161 -0.216469 1.647952 0.323493 1.694631 -0.017664 1.724263 -0.196936 -1.018848 -0.946840 -1.253913 2.118470 -1.154098 1.156311 -0.677719 -0.011065 0.429904 -0.264627 -0.051869 -2.262009 0.333297 0.274244 -1.499750 -0.351668 -1.239548 0.318491 -0.590269 -1.057340 -0.099472 -0.663453 1.291060 0.009776 -0.117187 -0.793303 -2.954384 0.172665 0.119931 0.356545 1.097540 0.652794 -0.812615 -0.565695 -1.040299 -1.521508 1.848644 0.607600 0.310110 0.795379 -1.595009 -0.296972 -0.470684 0.219811 0.116511 1.188614 -1.681546 1.095005 0.671819 -0.620091 -0.683536 -1.171754 0.321599 -1.459987 0.284971 0.453334 0.510624 0.054625 -1.219494 0.410637 -1.083570 -1.817977 0.648700 -0.596260 -1.146021 1.464977 -1.215132 -0.268071 -0.191847 0.199311 0.237334 1.476246 0.454703 0.687122 1.343985 1.125300 0.884755 -1.585439 -0.009682 0.836550 1.502262 1.069145 0.406945 -0.822156 -1.052588 0.534096 -1.091995 -3.081343 -0.543950 2.158111 1.709479 0.177656 -1.616633 0.791861 -0.758764 1.534305 1.955584 0.836312 0.673594 0.390486 -1.434785 0.650211 2.896861 -1.129833 1.613563 -0.250606 -1.072455 2.261368 -1.304172 1.201325 0.153420 -0.100435 0.126869 -1.020513 -0.185042 2.212943 0.913464 0.922831 0.085910 0.398860 -0.627707 -2.411146 -3.216643 -0.962915 1.918899 1.054309 2.767622 -1.286167 -0.946605 0.012898 1.256720 -0.780537 -1.343886 0.460350 -1.071279 1.027439 -4.173916 -2.357234 3.430045 2.649440 1.213444 0.076763 1.627544 1.189727 -0.730773 -1.166180 -0.869709 1.115769 0.309337 -1.418024 -0.252837 0.061349 -2.383523 -0.530013 -0.271665 0.186609 -0.226623 -0.300177 0.994030 -0.342582 -1.349075 -0.555394 0.526362 -1.441659 -0.881140 -0.488888 0.011704 0.055324 0.454705 -0.634447 -0.158126 0.760027 -1.743468 -0.344371 0.112340 0.978417 0.937869 2.677484 2.679919 -0.441599 1.430122 -0.053502 -1.371709 3.161157 -1.320951 -0.099496 -0.142575 1.444428 0.391958 0.940069 1.188306 -0.718801 -1.001953 -2.020580 0.205723 0.979499 1.191032 -1.156703 -1.696030 -2.187916 -0.107474 0.362993 2.672678 -0.655485 3.505963 -1.140719 1.007688 -3.862981 0.387472 0.796188 -0.330765 1.160437 0.791063 -1.381893 -1.872236 -0.580749 -1.174590 -0.348496 0.002772 -1.377724 -0.964577 -1.400549 0.823283 -2.136101 0.485631 0.939400 -0.594635 1.893134 -0.076577 -0.207564 -0.999083 0.534062 1.463624 0.585658 -1.439233 1.533293 -0.022735 4.297350 -0.689489 1.762876 -1.159577 1.152848 -0.816406 -1.383335 -0.801653 2.422688 2.467039 0.516027 0.178384 0.286940 -0.265570 1.251668 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = -0.379709 0.199589 1.764579 0.925676 -0.828478 -1.924699 -0.425001 -2.488771 1.373233 0.733970 1.866702 0.269651 1.520544 -0.873786 0.088647 0.142604 1.251120 -0.051456 0.062131 -0.702441 -0.290863 2.378162 0.197033 -0.388775 0.307542 -1.219835 0.917429 0.730159 1.013454 1.408739 0.427942 0.076844 -0.365857 0.500945 -0.505982 0.403308 -0.199819 0.690565 -1.022553 -0.488487 0.235300 -0.714663 1.505360 0.165004 1.254600 -0.260002 0.939762 -0.063653 -0.800754 -0.837132 -0.732930 0.978934 -0.737709 0.803366 -0.456818 -0.566036 0.552734 0.141310 0.126943 -1.133520 0.166891 -0.414876 -0.983750 -0.149089 -0.962173 0.249743 -0.723264 -0.843598 -0.178494 -0.829216 0.715843 0.115791 -0.032452 -0.400939 -2.452088 0.098009 0.429438 0.079689 0.912269 0.899103 -0.272396 -0.735236 -1.106282 -1.184782 1.607419 0.767120 0.309829 0.818206 -1.641100 -0.342082 -0.155137 0.234194 0.593841 0.687111 -1.166043 0.379471 0.200362 -0.567683 -0.363855 -1.590250 0.397928 -0.889388 0.238917 0.227368 -0.014967 0.134120 -0.637293 0.280114 -0.776601 -1.219430 0.575659 -0.796899 -0.603394 1.549033 -0.705435 -0.616766 -0.862526 0.054512 0.271217 0.909884 0.311812 0.442231 1.066144 0.756429 0.876534 -1.350851 -0.257990 0.934303 0.921916 0.513930 0.141291 -0.543445 -0.737857 0.553294 -1.115353 -2.324540 -0.971675 1.174748 1.360388 -0.200753 -0.734728 0.655911 -0.654863 0.966788 1.492173 0.288849 0.479299 0.479161 -1.182258 0.543479 1.682162 -0.673910 0.987145 -0.412776 -0.851051 1.486315 -0.546532 0.580650 -0.123377 -0.267098 -0.227033 -0.581330 0.307982 1.516685 0.205780 0.540691 -0.428038 0.518122 -0.737046 -1.626427 -2.563327 -0.388363 1.807622 1.179108 2.028138 -1.171922 -0.550735 0.170113 0.920833 -0.238616 -1.058370 0.662091 -0.995727 0.866897 -3.148700 -1.908380 2.685805 1.793410 1.109683 0.024252 0.810752 0.747158 -0.860437 -0.844239 -0.796403 0.789176 0.368842 -1.783471 -0.383187 0.264797 -1.740458 -0.518271 -0.069751 0.215177 0.159541 -0.358794 1.227408 -0.827215 -0.572141 -0.644284 1.000323 -0.814915 -0.496390 -0.357837 -0.075191 0.178009 0.666914 -0.331927 0.014079 0.245456 -1.005602 -0.191264 -0.052072 0.690530 0.381781 1.988942 2.293317 -0.650246 0.737948 -0.273638 -1.050471 2.208160 -1.056762 0.097027 -0.088153 0.895147 0.533700 0.659477 1.271475 -0.619608 -0.632270 -1.539341 -0.353154 0.841361 0.871950 -0.997753 -1.228266 -2.105288 0.119229 -0.203395 2.105712 -0.279041 2.556416 -1.111767 0.586004 -2.545862 0.259526 0.617091 -0.171292 1.132228 0.383015 -1.055902 -0.874097 -0.436516 -1.364442 -0.451991 -0.051516 -0.816603 -0.813608 -0.913288 0.781394 -1.386502 0.223090 0.666500 -0.469307 1.503216 -0.188924 -0.050305 -1.019513 0.539344 0.893858 0.251703 -0.879129 1.140382 0.193471 2.957472 -0.207532 0.999316 -0.688133 1.069717 -0.736969 -1.616366 -0.716939 1.674236 1.835591 0.380961 0.086940 0.210110 0.024194 1.124773 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -3.860865 3.140295 16.733244 7.990558 -6.497726 -9.105162 -5.188206 -13.958689 6.861936 4.665470 12.293271 -2.029944 4.679054 1.838918 0.293321 -2.600770 4.829385 -2.732618 -0.333736 -4.132121 -3.251160 9.989835 5.744797 -7.812004 1.242069 -11.015905 5.205214 4.461206 3.572380 6.347550 1.646869 0.222789 -1.354318 5.885652 -6.881107 0.423656 1.886375 3.813269 -4.428243 -2.246509 3.545001 2.900453 7.412192 0.031284 8.600167 3.615047 5.154483 -1.240453 -9.084728 -3.246133 -2.632358 10.051397 -5.241155 4.844786 2.668484 3.090634 0.621901 -8.508026 -1.874365 -10.843984 2.124505 2.324358 -5.428507 0.326962 -6.470604 1.806332 -1.694203 -4.498336 3.554904 -4.029397 5.445612 -0.741905 0.735850 -3.098008 -8.096416 4.606921 1.888513 1.638817 4.349553 1.023819 -1.679084 0.380293 -4.473722 -7.331283 4.498385 3.894209 1.464219 1.466583 -2.537482 -1.558904 1.303610 -1.622235 -1.655812 8.886639 -7.149501 4.926888 0.299394 -4.588829 -6.941267 -6.830679 0.083890 -8.322255 4.238193 6.859673 -4.581409 1.598572 -2.511372 3.714786 -2.043770 -9.286181 1.821606 -3.281235 1.113213 8.535528 -6.991605 -3.460548 -1.785464 -0.894167 0.813460 7.480281 0.283132 3.173116 8.442491 6.250076 4.169120 -7.843969 -0.192544 2.733693 5.659808 4.813953 4.843606 -8.669679 -4.183490 1.023677 -3.474417 -14.086783 -2.661108 4.428164 7.713952 0.816101 -10.078845 3.001713 -3.788528 8.908046 6.771010 6.467535 2.160573 0.335170 -6.084786 2.314660 12.942275 -5.201028 7.335657 -2.492443 -8.255483 7.790505 -4.223293 7.492689 1.798373 1.160744 1.609301 -8.461441 -0.123663 10.901600 3.696753 3.352128 1.958644 1.046043 -2.266422 -12.357931 -15.061573 -0.974667 5.834636 2.096898 14.873095 -8.338382 -7.167348 -1.719375 10.863615 -1.919319 -5.132304 1.744714 -3.567722 4.218137 -16.292530 -13.139602 13.300296 13.886096 4.053538 -1.355237 9.698541 1.250697 -5.386642 -6.342091 -6.367147 6.533445 1.411041 -1.570328 -0.374601 0.330762 -9.986211 -1.654937 -1.072254 2.457469 4.227888 -4.744063 -0.276421 0.278426 -8.643795 -3.872844 3.766776 -7.212693 -4.688006 -1.439653 1.364723 0.467846 3.643298 -4.297458 -4.910519 2.456872 -7.597792 -1.891381 3.484638 6.371295 1.950403 14.390060 11.090951 -1.115551 7.243255 0.685348 -4.852558 19.214567 -6.961738 -1.133664 -0.720375 5.545795 -0.685121 3.006282 5.764180 -3.463871 -6.725635 -8.524475 2.550251 -0.679895 4.961463 -11.030157 -9.210244 -11.256462 -1.591084 1.928969 10.552526 0.421789 18.187504 -1.539470 3.037265 -18.797170 0.546909 6.797541 -1.435358 6.301475 5.077575 -8.555876 -14.124049 -1.566808 -6.559004 0.403226 -0.664208 -8.129454 -5.848077 -6.071335 6.666939 -4.621145 3.065149 9.272802 -0.914714 6.157881 3.079102 -2.507677 -2.828775 -1.952839 6.535923 1.556060 -7.155027 10.702549 -0.494165 22.722170 -3.030929 7.379001 -5.964555 2.608924 -1.700432 -4.253338 -3.834376 10.913454 9.752785 4.212973 -1.426507 0.048933 -5.602408 5.544684 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = 0.128374 0.301115 0.249882 0.314582 -0.360278 -0.633376 -0.030899 -0.400470 0.025493 -0.055092 0.177967 -0.041956 0.231563 -0.038837 -0.020070 0.033162 0.221257 0.332882 -0.007939 -0.177399 -0.482487 0.150955 -0.092261 -0.158850 0.110487 0.170539 0.397836 0.278818 0.104420 0.243674 0.087134 -0.001916 -0.137963 0.148937 -0.126309 -0.132490 -0.171366 0.215021 -0.248203 0.068453 -0.001714 -0.321346 0.332642 0.086373 -0.029720 0.320013 0.158626 0.170985 -0.212839 -0.038223 -0.181131 0.048468 -0.132731 0.215270 -0.273922 -0.197278 0.265324 0.145259 0.145476 -0.101633 0.022215 -0.256444 -0.233898 -0.038489 -0.379117 -0.054682 -0.238956 -0.505686 -0.051445 0.070183 0.104664 -0.002120 -0.131634 -0.089050 -0.434915 -0.090400 0.175163 0.179017 0.265654 0.092498 0.157160 -0.140407 -0.359572 -0.221054 0.247456 -0.126821 0.297637 0.209828 -0.244591 -0.245050 0.125575 0.106821 0.283009 0.080136 0.113625 0.187316 -0.272287 -0.011876 -0.252504 -0.647320 0.121834 -0.023502 0.149414 -0.106629 -0.059983 0.019350 -0.037528 0.099214 -0.015590 -0.339057 -0.006426 -0.291535 -0.065591 0.301253 0.059595 -0.231479 0.003876 -0.127810 0.019090 0.163526 0.215699 -0.065294 0.107131 0.151187 0.088174 -0.240672 -0.159717 -0.086703 -0.055265 0.221955 0.177623 -0.045876 -0.227986 0.096885 -0.326101 -0.467518 0.029629 0.158647 0.185577 -0.160986 -0.107717 0.244304 -0.321306 -0.100689 0.116803 0.288216 0.158333 -0.058796 -0.124325 0.064572 0.147751 -0.133750 0.189303 0.026658 -0.190926 0.198508 0.178706 -0.047551 -0.036345 -0.301150 -0.021123 0.049249 0.016907 0.259175 0.081947 -0.076388 0.276025 0.060891 -0.474397 -0.279483 -0.185753 0.188609 0.556984 0.135496 0.306335 -0.307383 -0.008437 0.134929 0.156221 -0.165646 -0.082936 0.037665 -0.064306 0.216190 -0.504995 -0.328113 0.300728 -0.075143 0.096570 -0.118933 -0.086126 0.067539 -0.108995 -0.318584 -0.226012 -0.010072 -0.028115 -0.314536 -0.282699 0.037076 -0.350979 0.198679 0.178440 0.166851 0.171368 -0.102336 0.072478 -0.412612 -0.115419 -0.315173 0.077950 -0.156435 0.145305 0.162796 -0.092804 0.023237 0.044632 0.043986 -0.117521 -0.102910 -0.131643 0.019787 -0.123744 0.178645 -0.008958 0.654678 0.273171 -0.165147 0.017290 0.074519 -0.270730 0.615446 -0.170101 0.232978 0.041846 0.488247 0.014527 0.091505 0.475485 -0.142971 -0.202774 -0.380061 -0.361593 0.303377 0.072855 -0.146241 0.047290 -0.527746 0.038185 -0.135111 0.491426 -0.160444 0.302957 -0.095825 0.130921 -0.157532 0.076761 0.014152 -0.175259 0.261252 0.124412 -0.235811 -0.008890 -0.122132 -0.313193 -0.098525 -0.049948 0.015980 -0.107744 0.231180 -0.401304 -0.071199 -0.024037 0.118101 -0.236059 0.070466 -0.205206 0.046552 0.009793 -0.019982 0.476240 -0.066049 -0.250124 0.238724 0.166458 0.655673 0.332016 0.180373 -0.092995 -0.131760 0.087037 -0.186100 -0.256672 0.330710 0.198401 0.115405 0.184965 0.262276 0.183734 0.192079 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = -1.016697 -0.158800 1.670688 -0.033094 -0.381393 -1.323597 -0.552297 -2.261590 1.068509 0.963050 2.228201 0.017491 1.427686 -0.650269 0.408002 0.111873 1.031343 -0.996969 0.438314 -0.526713 0.286211 1.809418 0.438149 0.429605 0.196525 -1.409584 0.396776 0.184126 0.449803 1.234312 0.390022 -0.046035 -0.479115 0.294911 -0.001680 1.066998 0.659181 0.630817 -0.312097 -0.281141 -0.054926 -0.557142 0.919922 -0.054653 1.623939 -0.194985 0.426735 -0.105187 -0.857792 -1.147451 -0.228940 0.780254 -1.052847 0.372530 0.140100 -0.553534 0.185745 -0.052392 -0.254066 -1.517464 0.042131 -0.619051 -0.617056 0.157617 -0.395347 0.541031 -0.552827 -0.150256 -0.142617 -0.921818 0.728396 0.234420 0.371361 0.839031 -1.567909 0.282161 0.333736 -0.156081 0.564877 0.210027 -0.562917 -0.433906 -0.635799 -1.146721 1.403998 0.988920 0.299109 0.351483 -1.541794 0.760091 -0.289592 0.036424 0.303323 0.722988 -1.120102 -0.080981 0.846554 -0.670152 -0.322590 -1.278771 0.285406 -0.998925 0.142518 0.767315 -0.082547 -0.359299 -1.585250 0.391938 -1.265963 -1.057294 0.908999 -0.663670 -0.537984 0.958986 -1.321256 0.062668 -1.021284 0.041919 0.833804 0.754671 0.244670 0.643049 0.702470 0.807573 0.770912 -1.138253 -0.422952 0.865628 1.503490 0.181705 -0.055658 -0.767538 -0.566278 0.627373 -1.364237 -1.788081 -1.297917 0.966137 1.261262 0.149730 -0.894999 0.502439 -0.477920 1.106409 1.617558 0.338810 0.080338 0.576941 -1.235015 0.472915 1.193644 -0.752822 1.229380 0.076303 -0.380610 1.003680 -0.931651 0.592379 0.431816 0.174679 -0.382071 -0.737597 -0.191658 1.197480 0.899707 1.223068 -1.091797 0.624235 -0.244664 -1.357135 -2.429211 -0.606237 1.715245 0.628873 1.242220 -1.021950 -0.735047 0.198010 1.352687 -0.081507 -1.462566 0.339627 -0.656617 0.615120 -2.419057 -1.516807 2.460228 2.146992 1.309960 0.298765 0.773084 0.975211 -1.383537 -0.235326 -0.583178 0.988463 -0.348578 -1.911255 -0.462173 0.259584 -1.408803 -0.789031 -0.609088 0.262524 -0.213334 0.131324 1.140826 0.415574 -0.165436 0.233002 0.639397 -0.476589 -1.129024 -0.587487 0.028958 0.593530 0.399274 -0.658531 0.419629 0.730134 -1.444310 -0.233089 0.531026 0.588627 0.698955 2.035461 1.743313 -0.497325 0.313742 -0.673935 -0.763967 0.888995 -0.683522 -0.046590 -0.247235 0.447982 0.697156 0.361272 1.085689 -0.496994 -0.995156 -1.197386 -0.298780 0.594072 1.046407 -0.211849 -1.864920 -1.737235 0.412972 0.250686 1.892378 -0.172557 2.286417 -0.565654 0.599332 -2.173798 0.171286 0.449576 -0.241166 0.565168 0.146734 -0.594513 -1.153937 -0.398139 -1.345791 -0.955281 0.043349 -0.545202 -0.460075 -1.404849 1.494042 -1.108727 -0.062600 -0.028618 0.264192 1.546501 1.029513 -0.254885 -1.231061 0.852189 0.684395 0.130920 -0.729771 1.247421 0.375011 2.649329 -0.655610 0.567371 -0.413995 1.131943 -0.635643 -0.935734 -0.273525 1.413234 2.083796 0.349301 -0.316646 -0.035785 -0.176819 0.854203 -PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.551150 -0.289452 1.173699 0.714743 -0.311921 -1.099674 -0.315044 -1.226131 0.822952 0.475566 1.385539 0.081140 0.890569 -0.607688 0.167751 -0.066646 0.609844 -0.343132 -0.000708 -0.370588 0.165918 1.483482 0.609508 -0.674654 0.152569 -0.947576 0.439505 0.456758 0.356467 1.137464 0.031878 0.062899 -0.031839 0.303217 -0.553576 0.417795 -0.006523 0.433011 -0.355247 -0.380955 0.281630 -0.096708 0.801304 -0.150954 1.018383 -0.011926 0.695705 -0.177134 -0.729826 -0.666732 -0.341940 0.539576 -0.688142 0.460418 -0.463704 -0.050576 0.265359 -0.198412 -0.285982 -1.593728 0.271469 0.092329 -0.665680 -0.123373 -0.561691 0.322085 0.000999 -0.527501 0.102085 -0.618365 0.566048 0.270646 0.050164 -0.251474 -1.121385 0.161295 0.268521 0.055846 0.309441 0.187991 -0.386739 -0.393762 -0.498803 -0.530750 0.897396 0.296288 0.287154 0.518880 -0.649262 0.062840 -0.010081 0.193614 0.108898 0.423421 -0.534386 0.161900 0.594869 -0.309581 -0.117211 -0.394995 0.175603 -0.671569 0.145686 0.692995 -0.052073 0.319833 -0.469002 0.465375 -0.759692 -0.882831 0.332842 -0.416288 -0.354028 0.679722 -0.710561 -0.181243 -0.441870 0.158955 0.341787 0.682703 -0.120153 0.503994 0.748152 0.557740 0.418576 -0.964652 -0.084774 0.488262 0.991748 0.400298 0.131001 -0.401483 -0.492735 0.159327 -0.774399 -1.464894 -0.704264 0.687271 0.961505 -0.047824 -1.096083 0.862361 -0.350939 1.035711 1.119261 0.210362 0.211484 0.376480 -0.952658 0.427542 1.270128 -0.516270 0.759610 -0.285875 -0.693365 1.030344 -0.356152 0.443582 0.125777 -0.108710 0.084700 -0.620595 0.212584 0.959546 0.476608 0.678456 -0.392768 0.375097 -0.101943 -1.223946 -1.606141 -0.557854 0.890039 0.710479 1.667726 -0.761215 -0.545103 -0.141216 0.590362 -0.308282 -0.663270 0.068577 -0.629814 0.459694 -2.390919 -1.386383 1.879597 1.390587 0.988239 0.430411 0.868574 0.452517 -0.084109 -0.050773 -0.278207 0.595098 0.401841 -0.774834 -0.085352 0.064267 -1.119432 -0.698987 -0.174974 0.127598 -0.297783 -0.337307 0.372699 -0.245878 -0.549547 -0.138349 0.281774 -0.870373 -0.419546 -0.289920 0.009891 0.262351 0.198967 -0.400907 0.170261 0.180812 -0.771636 -0.104255 0.092014 0.589709 0.540879 0.991497 1.654665 -0.464434 0.512776 -0.204569 -0.655710 1.396989 -0.634036 -0.091723 -0.056585 0.653658 0.537458 0.267937 0.691010 -0.343019 -0.045485 -0.934566 0.141972 0.747404 0.607299 -0.856730 -0.868887 -1.180572 0.021913 0.083022 1.381280 -0.203456 1.753014 -0.608410 0.390935 -1.997890 0.064877 0.402893 0.034986 0.462762 0.319105 -0.591523 -1.440999 -0.225440 -0.735021 -0.108428 -0.230536 -0.666055 -0.502200 -0.648131 0.619663 -0.912009 0.217375 0.563761 -0.111885 0.988041 0.166477 -0.075228 -0.543572 0.190209 0.156763 0.422544 -0.573365 0.689642 0.105748 1.972735 -0.278342 0.739501 -0.630799 1.014230 -0.577047 -0.786030 -0.305386 1.098495 1.289725 0.101681 0.230312 -0.028729 -0.135573 0.744212 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = -0.766921 -0.002413 1.431186 -0.057263 -0.423633 -1.133175 -0.457803 -1.955637 0.832472 0.802851 1.821383 -0.017541 1.190540 -0.464363 0.280678 0.050659 0.860316 -0.751997 0.406404 -0.463403 0.071528 1.419033 0.264394 0.441402 0.177895 -1.125831 0.502582 0.135139 0.402056 1.051861 0.345476 -0.055072 -0.485822 0.277126 0.072145 0.813591 0.530505 0.589556 -0.261834 -0.140034 -0.045025 -0.590205 0.794830 -0.006032 1.275145 -0.050850 0.237629 -0.037844 -0.719389 -0.928492 -0.140731 0.496159 -0.892466 0.330415 0.103769 -0.542082 0.145447 0.033954 -0.134596 -1.127328 0.033706 -0.670572 -0.486062 0.170818 -0.414312 0.409999 -0.607496 -0.233287 -0.154092 -0.761940 0.573416 0.191337 0.305064 0.745244 -1.366995 0.225043 0.335633 -0.115624 0.522139 0.174234 -0.414351 -0.353010 -0.624822 -1.018087 1.122338 0.861825 0.290793 0.259598 -1.297164 0.573811 -0.164275 0.073472 0.330348 0.663814 -0.870273 -0.033432 0.459074 -0.546409 -0.311866 -1.333043 0.249155 -0.825868 0.194943 0.563509 -0.202913 -0.340290 -1.256677 0.328901 -0.947300 -0.914353 0.723093 -0.625472 -0.356290 0.867918 -1.006458 -0.034241 -0.887495 -0.051039 0.738361 0.584970 0.262082 0.452634 0.601840 0.666588 0.681760 -0.981874 -0.420734 0.705100 1.095555 0.156690 -0.012508 -0.646487 -0.482453 0.533012 -1.175591 -1.529584 -1.023426 0.702278 1.002927 -0.010513 -0.617121 0.386772 -0.510882 0.790027 1.349680 0.368673 0.103769 0.453986 -0.986454 0.366489 0.927965 -0.610021 0.990906 0.055315 -0.346075 0.827404 -0.684010 0.482426 0.308484 0.123409 -0.352214 -0.601089 -0.158381 1.026973 0.673951 0.990408 -0.807664 0.492736 -0.307778 -1.094422 -1.941153 -0.409704 1.584113 0.545464 0.956485 -0.917612 -0.523016 0.255519 1.169801 0.032017 -1.199110 0.311706 -0.468380 0.538853 -1.984863 -1.277724 1.922063 1.696335 1.029530 0.154889 0.499188 0.772432 -1.208108 -0.311448 -0.573211 0.796464 -0.402587 -1.641402 -0.499009 0.253320 -1.166905 -0.516053 -0.430096 0.260612 0.014907 0.058847 0.924300 0.303478 -0.089239 0.042685 0.620367 -0.361460 -0.911900 -0.435448 0.013382 0.492284 0.332757 -0.498095 0.299607 0.573383 -1.141605 -0.146971 0.452635 0.451466 0.458154 1.801744 1.356776 -0.460009 0.072684 -0.537928 -0.615970 0.822761 -0.588444 0.029042 -0.150931 0.431690 0.504304 0.335504 1.008674 -0.442269 -0.907265 -1.031518 -0.391916 0.464076 0.842735 -0.150173 -1.510180 -1.512904 0.399128 0.139775 1.621020 -0.106263 1.898455 -0.396083 0.536679 -1.639699 0.140671 0.356979 -0.258073 0.584314 0.129776 -0.524760 -0.779415 -0.363109 -1.177990 -0.790871 0.048714 -0.371519 -0.393178 -1.009699 1.058968 -0.781922 -0.084506 -0.084008 0.160808 1.247443 0.804059 -0.199753 -1.022483 0.696337 0.715537 0.043364 -0.625252 1.076815 0.366828 2.204451 -0.442849 0.440692 -0.282358 0.809580 -0.452197 -0.784396 -0.286817 1.208425 1.663573 0.391463 -0.300947 0.003580 -0.078983 0.694897 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.393983 -0.040948 0.943074 0.275869 -0.216068 -0.707299 -0.232128 -1.232812 0.736884 0.467143 1.052781 0.104300 0.842317 -0.531091 0.063382 -0.089855 0.570362 -0.215524 0.155415 -0.241794 0.208471 1.165292 0.107296 -0.081613 0.098996 -0.782029 0.397937 0.158480 0.468218 0.812748 0.173958 0.008526 -0.245855 0.169383 -0.138950 0.318910 0.193901 0.349600 -0.384666 -0.339975 0.020953 -0.275293 0.547557 0.008696 0.769558 -0.237757 0.190190 -0.115527 -0.331996 -0.511656 -0.179328 0.345323 -0.440069 0.336300 -0.036377 -0.338729 0.138326 0.124446 -0.002253 -0.826962 0.178136 -0.237790 -0.307464 -0.017041 -0.359311 0.223463 -0.315040 -0.210032 -0.094037 -0.572517 0.351042 0.133680 0.260768 0.047992 -1.111662 0.136040 0.158092 -0.061782 0.399383 0.393415 -0.199187 -0.374236 -0.386875 -0.590741 0.768508 0.543537 0.054055 0.368097 -0.781508 0.080436 -0.068610 0.062189 0.220758 0.350715 -0.575741 0.100394 0.159896 -0.215179 0.130763 -0.749259 0.151421 -0.542551 0.040901 0.336007 -0.010664 0.021673 -0.378853 0.268923 -0.465549 -0.550786 0.526343 -0.310392 -0.352360 0.697888 -0.488859 -0.191389 -0.495963 0.076232 0.284397 0.450938 0.037518 0.381005 0.316115 0.377809 0.491188 -0.681699 -0.129554 0.720592 0.617737 0.159913 -0.059405 -0.398471 -0.267337 0.311863 -0.623862 -1.079146 -0.624726 0.501462 0.710716 -0.058440 -0.464371 0.288496 -0.292623 0.546362 0.823044 0.110323 0.146597 0.349313 -0.657634 0.264465 0.742174 -0.349246 0.491401 -0.061650 -0.322653 0.547087 -0.332739 0.327280 -0.115030 0.070183 0.002194 -0.403084 0.088804 0.735231 0.221873 0.546390 -0.527615 0.304820 -0.317751 -0.875363 -1.284068 -0.356149 0.954563 0.474509 0.856379 -0.513964 -0.378628 0.087749 0.658039 -0.055729 -0.587596 0.292343 -0.469493 0.415672 -1.520981 -0.947334 1.343955 1.069899 0.638804 0.041787 0.362655 0.463623 -0.516173 -0.252237 -0.345981 0.395116 0.018120 -0.979064 -0.257612 0.109808 -0.801495 -0.439181 -0.043629 0.052370 0.009941 -0.036339 0.604273 -0.028066 -0.114799 -0.163992 0.567395 -0.359362 -0.399447 -0.308881 0.036977 0.217125 0.321982 -0.330833 0.128246 0.395813 -0.532694 -0.115068 0.102279 0.254967 0.221587 0.932310 1.030711 -0.267675 0.154435 -0.203803 -0.519227 0.985605 -0.474782 -0.047291 -0.081261 0.236357 0.348750 0.302007 0.521269 -0.326549 -0.367435 -0.789603 -0.266600 0.326913 0.537343 -0.391996 -0.897949 -0.863858 0.173961 -0.056109 0.939402 -0.033596 1.344885 -0.519249 0.268945 -1.214919 0.084836 0.434573 -0.125335 0.512471 0.150058 -0.386789 -0.689583 -0.212054 -0.659733 -0.322722 -0.119088 -0.482475 -0.287137 -0.660342 0.699253 -0.606580 0.101678 0.204258 0.013995 0.869229 0.094882 -0.067181 -0.679140 0.404483 0.123252 0.122649 -0.455043 0.593501 0.139028 1.367375 -0.340497 0.345817 -0.353494 0.691850 -0.531529 -0.716180 -0.230422 0.816980 1.015161 0.265511 -0.100530 0.024219 -0.157986 0.506382 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.416007 -0.041093 0.778446 0.412155 -0.240649 -1.022135 -0.220872 -1.010896 0.551487 0.303701 1.051932 0.042448 0.757904 -0.444527 0.237697 0.109848 0.593682 -0.165323 0.037250 -0.299582 -0.008146 1.022195 0.295059 -0.250641 0.164555 -0.452070 0.204290 0.395974 0.198767 0.672091 0.165570 0.048984 -0.096092 0.189680 -0.331213 0.374418 0.060611 0.310026 -0.331123 -0.270289 0.033695 -0.209362 0.615012 0.015862 0.690956 0.027122 0.541792 -0.011954 -0.500620 -0.514338 -0.354411 0.609109 -0.446917 0.331080 -0.236806 -0.183164 0.388304 -0.047558 -0.084481 -0.989510 0.092258 -0.090936 -0.523858 -0.092584 -0.349089 0.199866 -0.096286 -0.332570 -0.020914 -0.329095 0.421372 0.065908 -0.020234 0.006631 -0.873097 0.035286 0.174206 0.062139 0.357778 0.217615 -0.213467 -0.320903 -0.402915 -0.500647 0.853196 0.132639 0.302749 0.449204 -0.759590 0.083995 -0.130172 0.048635 0.210868 0.231295 -0.409798 0.105534 0.590476 -0.282930 -0.231540 -0.468715 0.202587 -0.410114 0.018823 0.365175 0.180959 0.007617 -0.691936 0.247848 -0.660272 -0.629240 0.402154 -0.385112 -0.469736 0.480170 -0.586867 -0.064461 -0.291891 0.077756 0.245983 0.552660 0.141178 0.320375 0.350287 0.412103 0.288099 -0.579045 -0.115057 0.282321 0.791860 0.257069 0.061150 -0.302335 -0.393900 0.292626 -0.727494 -1.030529 -0.564669 0.716563 0.744024 0.155589 -0.747475 0.562238 -0.250226 0.558241 0.711824 0.220884 0.127987 0.224604 -0.653995 0.263129 0.746084 -0.446051 0.664283 0.046278 -0.341136 0.615048 -0.318538 0.203832 0.189736 -0.188286 -0.050622 -0.257280 0.014257 0.660367 0.514975 0.414852 -0.315467 0.322596 -0.306545 -0.827282 -1.269395 -0.258448 0.801760 0.381620 1.005984 -0.525835 -0.430802 -0.018876 0.529521 -0.421399 -0.622330 0.089594 -0.452625 0.365363 -1.524856 -0.858019 1.462342 0.872811 0.698324 0.182857 0.513046 0.453803 -0.365423 -0.155978 -0.266183 0.405320 0.142214 -0.793732 -0.145066 0.041818 -0.874297 -0.386556 -0.200848 0.133905 -0.309073 -0.033165 0.505737 -0.245221 -0.305192 0.062954 0.109721 -0.435034 -0.301194 -0.182988 -0.067579 0.203764 0.191553 -0.271622 0.107732 0.203555 -0.754920 -0.195111 0.015266 0.466874 0.498337 1.108674 1.132111 -0.269488 0.491750 -0.208291 -0.585987 0.842848 -0.412632 0.025396 -0.166240 0.556866 0.465266 0.171617 0.626778 -0.250017 -0.332628 -0.751399 -0.106008 0.600885 0.475605 -0.383340 -0.665711 -1.019214 0.052436 0.055695 1.115614 -0.291263 1.179264 -0.471872 0.260311 -1.324967 0.142370 0.234381 -0.129125 0.215068 0.166935 -0.412141 -0.839123 -0.187799 -0.668086 -0.376319 -0.056035 -0.372218 -0.277041 -0.596400 0.495668 -0.791289 0.072933 0.288951 -0.041994 0.695069 0.242008 -0.068238 -0.435087 0.287350 0.364243 0.142222 -0.462153 0.571416 0.163431 1.552889 -0.145553 0.501288 -0.400629 0.608835 -0.353438 -0.551059 -0.252423 0.763023 1.085930 0.026075 0.190190 0.187192 -0.033505 0.559674 -PE-benchmarks/vertex-cover-problem.cpp__main = -0.424482 2.135915 8.237822 2.668077 -2.859615 -6.524507 -2.131818 -9.146349 4.097880 2.397286 6.480291 -0.188424 3.686026 0.349020 0.702556 1.075826 3.501277 -0.503392 0.111210 -2.685001 -1.254452 6.709735 1.487015 -1.903861 1.175797 -5.778117 2.050987 3.077187 3.546028 3.678234 1.192349 -0.057637 -0.940491 2.613252 -3.004207 0.428751 0.381179 1.762001 -4.046897 -0.318236 0.416338 0.425241 4.562382 0.580822 4.515279 1.015106 3.484727 0.207954 -2.878885 -1.951544 -2.442194 6.059854 -2.031027 2.947025 -0.421872 0.050490 0.140137 -2.267908 -0.223228 -3.320250 0.492730 0.793590 -3.434599 -0.157807 -3.508440 0.781591 -1.963570 -2.846965 0.524426 -1.724094 3.092386 -0.502864 -0.610259 -1.682492 -7.539908 1.131985 0.927955 1.217654 2.734106 0.691805 -0.779499 -0.597240 -3.184589 -4.304785 4.073657 3.507955 0.906757 1.313324 -3.992739 -1.469464 -0.730728 -0.272370 0.602561 3.854640 -4.598905 2.426751 -0.289223 -2.382771 -3.455678 -4.814177 0.802533 -3.594264 1.822441 0.449243 0.324432 0.533179 -1.603895 1.537638 -1.543676 -4.517125 1.266699 -1.376320 -0.984590 5.734572 -2.689423 -1.855162 -1.692662 -0.410531 -0.460133 3.826166 1.073484 1.253482 4.440203 3.439770 2.446267 -4.142995 -0.897038 1.929795 2.811268 2.858310 2.186337 -3.562925 -2.708299 1.165045 -2.851999 -8.195240 -1.609784 3.472681 4.511247 -0.775760 -3.009801 1.065871 -2.427640 4.226835 4.245303 2.031760 1.596150 0.265520 -3.599759 1.839514 7.537330 -2.854241 4.115025 -2.096512 -2.801700 4.206231 -2.425404 3.299321 0.593104 -0.315943 -0.250866 -2.822760 -0.055376 5.705585 1.885169 1.762035 0.500566 1.042005 -2.293000 -5.844669 -8.531678 -1.432253 4.137089 1.425442 7.078409 -3.857705 -3.415454 -0.746826 4.697945 -1.167276 -3.153194 2.106198 -3.196928 2.536697 -8.626989 -6.255264 8.035808 8.063399 3.127921 -0.938006 4.498220 2.213563 -3.889985 -3.882374 -2.492636 3.174711 0.550752 -4.652748 -1.299068 0.403290 -5.818505 -0.662254 -0.930708 1.319241 1.072317 -0.207127 2.819305 -0.826829 -4.303855 -2.452006 2.545551 -3.288278 -1.883498 -0.583434 0.185586 -0.235183 2.048019 -2.471392 -1.403256 2.274528 -4.295819 -0.231606 1.183805 2.808399 1.233339 7.380558 6.152834 -0.412951 5.005974 -0.165999 -3.439226 8.468073 -3.226772 0.362896 -0.349309 2.478266 -0.631003 2.307548 3.056897 -1.870722 -3.770258 -5.031588 0.264387 0.896949 2.994468 -2.310803 -4.958207 -6.231108 -0.547720 0.530007 6.921312 -0.508777 9.108914 -2.189517 2.736594 -9.774697 0.938360 2.039444 -0.839146 3.402098 2.152430 -4.353258 -4.897941 -0.707471 -4.265334 -2.411931 0.102803 -4.226246 -3.329419 -3.668645 3.129200 -3.933407 0.850882 3.640427 -1.024599 4.483505 -0.145978 -0.989211 -2.446128 0.590862 5.221728 0.569060 -3.864234 3.925252 0.132807 12.295615 -1.122557 4.455524 -2.570781 1.243232 -0.902829 -3.760776 -2.485298 6.230158 5.838431 1.998628 -0.618044 -0.075092 -0.987893 3.056496 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = -0.014192 0.262348 0.786336 0.201204 -0.256966 -0.877529 -0.137040 -1.029481 0.438880 0.224558 0.696270 0.001651 0.601124 -0.221060 0.078032 0.177028 0.506861 0.106340 0.041757 -0.298986 -0.088863 0.706201 -0.051458 -0.067746 0.173510 -0.432140 0.218167 0.386010 0.409261 0.491056 0.162357 -0.011217 -0.179060 0.211541 -0.251262 0.067781 0.112759 0.231189 -0.548553 -0.073277 -0.150884 -0.148683 0.532669 0.065908 0.452774 0.090054 0.269746 0.105536 -0.249866 -0.278886 -0.225439 0.512762 -0.178780 0.350556 -0.160293 -0.252743 0.139937 0.064064 0.111445 -0.376588 0.080433 -0.079763 -0.311343 -0.055045 -0.381332 0.040865 -0.225768 -0.448473 -0.072259 -0.249916 0.260348 -0.003930 -0.030598 -0.057899 -0.951786 0.028158 0.221636 0.140587 0.380437 0.178420 0.034530 -0.263925 -0.384479 -0.477144 0.602847 0.378793 0.242534 0.378523 -0.703081 -0.169452 -0.040456 0.031216 0.292987 0.242146 -0.348105 0.151433 -0.037453 -0.201893 -0.244827 -0.757311 0.161204 -0.258078 0.113705 -0.080965 0.192040 0.061727 -0.303433 0.225044 -0.263765 -0.406092 0.302329 -0.282100 -0.281056 0.659409 -0.248848 -0.243538 -0.280009 -0.038996 0.007254 0.394994 0.122104 0.113672 0.256288 0.319690 0.317730 -0.503567 -0.168773 0.267038 0.331852 0.292681 0.156409 -0.285788 -0.294347 0.225921 -0.596774 -0.944238 -0.295556 0.375231 0.535836 -0.141040 -0.272404 0.218240 -0.360562 0.331803 0.466153 0.164588 0.187213 0.088018 -0.443566 0.179175 0.579968 -0.337261 0.478468 -0.080634 -0.199553 0.259918 -0.097752 0.214580 -0.038897 -0.250233 -0.025571 -0.120016 0.040069 0.589752 0.271826 0.221217 -0.155232 0.187841 -0.493177 -0.624482 -0.931052 -0.151276 0.680454 0.188536 0.675015 -0.411190 -0.387471 -0.025450 0.505443 -0.269014 -0.373143 0.251872 -0.412599 0.351374 -0.962946 -0.673322 0.993867 0.788514 0.480062 -0.100654 0.288336 0.275428 -0.477979 -0.380605 -0.176481 0.178142 0.000000 -0.926105 -0.348640 0.082267 -0.673489 -0.067841 -0.028280 0.144728 -0.026750 0.167047 0.564553 -0.235582 -0.253785 -0.245085 0.265713 -0.266519 -0.086999 -0.027396 -0.012260 0.078611 0.253822 -0.308651 -0.083797 0.295950 -0.495649 -0.022027 -0.029006 0.321483 0.195118 0.909899 0.688543 -0.103555 0.482055 -0.081915 -0.519126 0.811225 -0.344002 0.162377 -0.045118 0.348396 0.082205 0.255961 0.482733 -0.257771 -0.348733 -0.668791 -0.341275 0.338168 0.336393 -0.049588 -0.555408 -0.745143 0.070521 -0.101206 0.824789 -0.167557 0.911888 -0.343404 0.296249 -0.893610 0.130241 0.135773 -0.173478 0.357546 0.199331 -0.442100 -0.484409 -0.106723 -0.627677 -0.512623 -0.012635 -0.345895 -0.232953 -0.346376 0.292201 -0.471584 0.019343 0.246074 -0.093606 0.574613 -0.095058 -0.013360 -0.346127 0.212391 0.571671 -0.016738 -0.408193 0.323303 0.178412 1.301485 0.024745 0.410353 -0.250428 0.186359 -0.097775 -0.518798 -0.347265 0.689331 0.728371 0.217819 0.012073 0.105443 0.026609 0.428337 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = -0.109327 0.352511 1.154937 0.223119 -0.467638 -0.957930 -0.188734 -1.383398 0.657637 0.397530 0.903420 0.118685 0.826577 -0.325367 -0.005599 0.002581 0.720301 0.084597 0.112873 -0.397778 -0.012946 0.968209 -0.078794 -0.039389 0.206430 -0.706646 0.471143 0.324850 0.673822 0.791929 0.237064 -0.049115 -0.431762 0.286390 -0.130489 0.024730 0.189264 0.332261 -0.740482 -0.108663 -0.133924 -0.323312 0.740835 0.110250 0.625646 -0.045760 0.099814 0.083439 -0.359033 -0.410638 -0.165715 0.402124 -0.282366 0.506941 -0.013153 -0.391009 0.049578 0.220545 0.217926 -0.476487 0.151947 -0.307521 -0.230929 -0.014682 -0.531800 0.035278 -0.544572 -0.538794 -0.152735 -0.569647 0.270124 0.027450 0.162693 -0.029606 -1.361911 0.098811 0.285350 0.147778 0.547687 0.442934 -0.031606 -0.388928 -0.517760 -0.698873 0.587786 0.644561 0.144624 0.421254 -0.966345 -0.218282 0.058157 0.087961 0.349892 0.382965 -0.618185 0.218838 -0.341868 -0.257339 -0.101086 -1.227579 0.158381 -0.405759 0.167922 -0.102066 -0.015278 0.005092 -0.358122 0.261674 -0.217407 -0.471206 0.510921 -0.347927 -0.343046 0.971118 -0.300410 -0.400663 -0.527011 -0.046639 0.139158 0.453932 0.073301 0.161006 0.266250 0.398474 0.577322 -0.731652 -0.169405 0.563846 0.316340 0.274457 0.169081 -0.310839 -0.320655 0.337691 -0.726901 -1.247645 -0.407783 0.394041 0.703596 -0.201899 -0.169883 0.019134 -0.578989 0.426889 0.687926 0.243379 0.294742 0.173821 -0.589966 0.210050 0.717605 -0.387789 0.535957 -0.096077 -0.303668 0.425043 -0.148666 0.408849 -0.277285 -0.162412 -0.020430 -0.250445 0.052831 0.842631 0.177093 0.345718 -0.303892 0.195849 -0.579462 -0.866386 -1.255993 -0.229453 1.054427 0.437619 0.742247 -0.573658 -0.362045 0.039140 0.704299 -0.058922 -0.546325 0.433009 -0.447030 0.475058 -1.399856 -0.932405 1.254279 1.192381 0.507379 -0.199406 0.221156 0.327085 -0.703755 -0.619230 -0.362120 0.231108 -0.184954 -1.213360 -0.501468 0.212261 -0.843727 -0.075105 0.109226 0.141731 0.317887 0.045127 0.746079 -0.123284 -0.181573 -0.502671 0.621831 -0.297498 -0.263033 -0.070615 0.027226 0.185050 0.389981 -0.317155 -0.153051 0.429353 -0.526373 -0.047994 -0.026088 0.350643 0.072657 1.091540 0.820387 -0.148623 0.255855 -0.090034 -0.677543 1.270765 -0.589902 0.180505 -0.010058 0.320560 0.084215 0.417661 0.619894 -0.387127 -0.460061 -0.866283 -0.532110 0.245087 0.500030 -0.305514 -0.945001 -0.935956 0.264861 -0.203818 0.944128 -0.097030 1.339457 -0.461217 0.360813 -1.100270 0.121141 0.355565 -0.189845 0.704898 0.260305 -0.593137 -0.472362 -0.188982 -0.865232 -0.357093 0.004560 -0.411716 -0.280408 -0.361785 0.473939 -0.456389 0.059415 0.239625 -0.221042 0.929632 -0.082028 -0.035146 -0.594729 0.289583 0.608594 0.005968 -0.489644 0.575455 0.237323 1.507001 -0.034026 0.391438 -0.242742 0.271047 -0.201590 -0.803988 -0.484837 0.946887 0.922143 0.481948 -0.158355 0.046968 -0.027700 0.512760 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >::allocator() = -0.086784 0.230505 0.674323 0.256592 -0.334162 -0.564159 -0.099813 -0.715857 0.369170 0.210373 0.465562 0.092327 0.512776 -0.226446 -0.085271 -0.196820 0.394674 0.145525 0.061982 -0.219575 -0.089958 0.536660 -0.047797 -0.176690 0.126335 -0.377004 0.535396 0.160721 0.351804 0.627916 0.118738 0.006405 -0.310928 0.198039 -0.073058 -0.082411 0.045580 0.262915 -0.358111 -0.077956 0.038159 -0.213408 0.446824 0.130899 0.286446 0.117375 -0.108687 0.052541 -0.217047 -0.246289 -0.025796 -0.049846 -0.205125 0.343414 -0.097595 -0.208241 0.113843 0.184193 0.193014 -0.406528 0.189198 -0.253136 -0.115356 -0.007249 -0.425745 -0.012801 -0.374099 -0.414527 -0.119601 -0.412111 0.133603 0.028987 0.117269 -0.121142 -0.789023 0.031885 0.166230 0.087790 0.384467 0.319643 -0.087107 -0.264732 -0.381094 -0.424659 0.260492 0.283981 0.091357 0.316684 -0.446614 -0.258775 0.137205 0.106389 0.251925 0.256589 -0.207039 0.166496 -0.321709 -0.070856 0.077345 -0.788796 0.118554 -0.231265 0.115680 0.024811 -0.157726 0.000280 -0.062770 0.188506 -0.038405 -0.283780 0.334477 -0.279968 -0.157681 0.564245 -0.067685 -0.329208 -0.304996 -0.085734 0.187377 0.318552 0.020357 0.048037 0.120199 0.209033 0.341471 -0.463762 -0.089563 0.384418 0.074415 0.141870 0.099853 -0.197666 -0.183200 0.195945 -0.440339 -0.725908 -0.187282 0.133508 0.388848 -0.209063 -0.159051 0.151907 -0.437907 0.108221 0.411152 0.236687 0.218495 0.099744 -0.348824 0.104155 0.405999 -0.189331 0.224216 -0.043347 -0.315336 0.321058 0.034394 0.215948 -0.278439 -0.124707 0.048110 -0.142904 0.131529 0.522499 -0.003608 0.207952 -0.060971 0.097803 -0.395555 -0.521083 -0.643389 -0.087860 0.759372 0.368637 0.509393 -0.395950 -0.059477 0.048213 0.436499 0.024398 -0.236183 0.206355 -0.155384 0.294401 -0.981510 -0.586356 0.673765 0.543746 0.256982 -0.156965 -0.007904 0.133692 -0.192608 -0.390240 -0.295497 0.073082 -0.117215 -0.514837 -0.288076 0.116581 -0.489977 -0.027219 0.211508 0.084508 0.355617 -0.179019 0.258961 -0.185866 -0.055541 -0.476286 0.389201 -0.220377 -0.091058 0.004344 -0.000263 0.083748 0.189021 -0.076676 -0.126407 0.187451 -0.164442 -0.027418 -0.044048 0.171454 -0.046982 0.619216 0.437573 -0.184560 -0.150172 0.020586 -0.381537 1.021423 -0.390790 0.126411 0.052781 0.326935 0.129806 0.249454 0.414769 -0.250734 -0.177506 -0.569114 -0.369906 0.200035 0.254826 -0.418987 -0.460928 -0.596593 0.193585 -0.230012 0.594561 -0.032774 0.834234 -0.238131 0.182207 -0.512988 0.059977 0.318539 -0.144724 0.467909 0.184788 -0.350041 -0.281466 -0.150688 -0.510546 -0.002675 -0.075490 -0.196042 -0.158809 0.003536 0.057446 -0.155263 0.088707 0.207358 -0.211783 0.463159 -0.166140 0.016313 -0.343739 0.081892 0.229145 0.002521 -0.308035 0.374376 0.156423 0.736914 0.036411 0.232594 -0.139816 0.205864 -0.192881 -0.507286 -0.327203 0.568968 0.429749 0.326152 0.008906 0.097053 0.021677 0.301984 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.090591 0.278353 0.717939 0.357613 -0.462605 -0.702760 -0.110876 -0.797749 0.377822 0.207134 0.528354 0.105063 0.558775 -0.236879 -0.077261 -0.193484 0.475024 0.199039 0.055261 -0.268807 -0.222723 0.604670 -0.029948 -0.210271 0.153129 -0.306655 0.621854 0.215263 0.372860 0.669811 0.149102 0.004112 -0.348499 0.223688 -0.079578 -0.096737 -0.041851 0.312125 -0.409576 -0.070911 0.072419 -0.353026 0.558911 0.143993 0.278697 0.133476 -0.016025 0.071369 -0.317262 -0.267590 -0.100046 -0.026074 -0.253891 0.394851 -0.138245 -0.260349 0.191625 0.226596 0.213151 -0.425874 0.169294 -0.352720 -0.184621 -0.020090 -0.504156 -0.020917 -0.467249 -0.510810 -0.121674 -0.401360 0.157674 0.026257 0.081040 -0.139706 -0.894224 0.014508 0.207729 0.121627 0.432663 0.391865 -0.061547 -0.295239 -0.477466 -0.476344 0.315482 0.218873 0.146172 0.332053 -0.539142 -0.288323 0.167888 0.147497 0.293545 0.268395 -0.237778 0.222514 -0.360719 -0.104239 -0.003063 -0.941763 0.135148 -0.251514 0.146931 0.013084 -0.215940 -0.009908 -0.123098 0.180931 -0.054866 -0.390261 0.313056 -0.346894 -0.194586 0.621368 -0.081661 -0.375191 -0.317485 -0.090450 0.208469 0.331749 0.081158 0.045716 0.169913 0.240808 0.376421 -0.516579 -0.102938 0.346097 0.075150 0.173427 0.132846 -0.152201 -0.245578 0.226694 -0.496563 -0.833283 -0.203246 0.225168 0.447481 -0.194758 -0.169527 0.168288 -0.498889 0.111601 0.457325 0.308275 0.258952 0.099882 -0.374919 0.117286 0.437297 -0.224594 0.274536 -0.031173 -0.373191 0.439563 0.048373 0.213215 -0.275615 -0.163297 0.019471 -0.151524 0.114520 0.588602 0.007099 0.167018 -0.002671 0.106337 -0.459377 -0.589793 -0.723621 -0.033551 0.889733 0.460776 0.574170 -0.475571 -0.036110 0.102889 0.424696 0.010532 -0.302673 0.219924 -0.162464 0.336005 -1.157982 -0.670836 0.766151 0.525458 0.252314 -0.159596 -0.018558 0.151886 -0.239765 -0.477482 -0.391727 0.112267 -0.121208 -0.566189 -0.325004 0.145193 -0.583056 0.024345 0.240264 0.113698 0.417328 -0.263410 0.285644 -0.283948 -0.088421 -0.522938 0.428240 -0.259118 -0.100069 0.025926 -0.037438 0.112489 0.205466 -0.021527 -0.149919 0.108426 -0.217197 -0.055948 -0.088272 0.228319 -0.046957 0.780148 0.551306 -0.233455 -0.161825 0.022382 -0.452475 1.158006 -0.463298 0.157322 0.043520 0.440113 0.144042 0.274508 0.550976 -0.274353 -0.240909 -0.634046 -0.415779 0.256307 0.281915 -0.522618 -0.455351 -0.752973 0.212946 -0.241192 0.713719 -0.075205 0.917708 -0.284700 0.201811 -0.587859 0.073419 0.320645 -0.157927 0.554152 0.195489 -0.411655 -0.225098 -0.189012 -0.583958 0.060051 -0.054796 -0.166930 -0.199748 0.050819 -0.022548 -0.193145 0.086352 0.212334 -0.307064 0.513299 -0.154779 0.008485 -0.339722 0.083215 0.353366 0.015658 -0.346506 0.480751 0.185342 0.894478 0.113297 0.257841 -0.157892 0.180258 -0.176927 -0.567955 -0.383623 0.637473 0.508858 0.348050 0.041586 0.157400 0.061645 0.346573 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.006482 0.137721 0.306837 0.246269 -0.143168 -0.439010 -0.044827 -0.330668 0.153991 0.044238 0.232199 -0.003025 0.284728 -0.129879 -0.031363 -0.087129 0.174468 0.171964 -0.005027 -0.113621 -0.158879 0.266334 -0.020071 -0.224247 0.087744 -0.112069 0.341228 0.186026 0.093521 0.362950 0.040568 0.046573 -0.087836 0.125290 -0.164082 -0.064868 -0.039343 0.169695 -0.148073 -0.047429 0.053045 -0.051708 0.236812 0.099468 0.097917 0.247928 -0.002424 0.063858 -0.105961 -0.115653 -0.053335 -0.027478 -0.108112 0.194192 -0.229578 -0.066213 0.195624 0.050812 0.104068 -0.315973 0.138726 -0.056510 -0.163251 -0.039844 -0.288771 -0.016074 -0.090167 -0.321893 -0.050034 -0.134548 0.105228 0.003301 -0.045929 -0.164648 -0.375910 -0.034695 0.095732 0.072179 0.225891 0.091528 -0.045390 -0.146604 -0.253062 -0.204783 0.223277 0.018339 0.158674 0.268917 -0.155999 -0.229895 0.068329 0.063306 0.190269 0.124937 0.068637 0.104386 -0.071973 0.001379 -0.008714 -0.338801 0.115019 -0.086642 0.063142 0.060336 -0.011017 0.047391 0.029828 0.146751 -0.047715 -0.200567 0.140393 -0.215399 -0.080137 0.254326 0.010048 -0.193818 -0.074218 -0.084256 0.086502 0.252716 0.048830 -0.007126 0.092961 0.116587 0.097726 -0.240682 -0.074353 0.122004 0.050214 0.136261 0.078740 -0.160753 -0.140619 0.083970 -0.289433 -0.404165 -0.064012 0.079243 0.207208 -0.161641 -0.240179 0.332294 -0.239439 -0.013806 0.191892 0.168863 0.121563 0.020245 -0.195846 0.064101 0.253430 -0.117856 0.129212 -0.027281 -0.235717 0.175577 0.101308 0.032893 -0.089465 -0.189446 0.054872 -0.022266 0.137204 0.272247 0.041027 0.086286 0.094540 0.076222 -0.295343 -0.275078 -0.293402 -0.006517 0.410168 0.161370 0.425692 -0.237722 -0.033893 -0.005612 0.234615 -0.131235 -0.048440 0.028644 -0.086234 0.167610 -0.570749 -0.327041 0.379955 0.125279 0.197947 -0.070873 0.015043 0.061939 0.070509 -0.163883 -0.134856 0.006852 0.046725 -0.175576 -0.128582 -0.002510 -0.300079 -0.017239 0.116316 0.076439 0.084134 -0.117113 0.040584 -0.288289 -0.096670 -0.267743 0.069160 -0.185455 0.076977 0.049239 -0.035416 -0.020009 0.050873 -0.033171 -0.067616 0.043682 -0.082701 -0.003586 -0.050119 0.120845 0.033208 0.395593 0.276905 -0.153779 -0.026053 0.044639 -0.208999 0.618303 -0.164732 0.101881 0.034669 0.348477 0.135917 0.095504 0.269690 -0.126086 -0.040340 -0.365311 -0.187003 0.267536 0.085918 -0.235283 -0.074734 -0.390968 0.024657 -0.152846 0.444996 -0.079060 0.417283 -0.112777 0.102767 -0.263485 0.058164 0.138672 -0.122265 0.153337 0.125388 -0.193620 -0.264413 -0.077938 -0.265055 -0.071085 -0.101484 -0.114035 -0.104313 0.069334 -0.148158 -0.125433 0.063609 0.212531 -0.109480 0.108563 -0.193681 0.042267 -0.107170 -0.012917 0.137882 -0.014321 -0.214227 0.139064 0.093851 0.452992 0.091484 0.226921 -0.131764 0.132514 -0.111344 -0.237778 -0.193519 0.305459 0.198610 0.089311 0.171937 0.149413 0.071837 0.203650 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = -0.088824 0.418547 0.540526 0.627493 -0.885704 -1.007281 -0.104014 -0.746935 0.124637 0.060172 0.551744 0.056344 0.496631 -0.128657 -0.008084 -0.163039 0.586770 0.384012 0.056308 -0.346638 -0.834334 0.469701 0.035158 -0.212065 0.201989 0.304483 0.834954 0.312234 0.201735 0.565618 0.213984 -0.030683 -0.427429 0.224248 0.008516 -0.132208 -0.391295 0.450477 -0.365297 0.054704 0.173370 -0.948539 0.756787 0.132199 0.039110 0.273541 0.299505 0.166538 -0.668078 -0.237628 -0.333694 -0.074192 -0.423063 0.426520 -0.254014 -0.449997 0.488768 0.391218 0.219800 -0.349446 0.004206 -0.807423 -0.371719 -0.031470 -0.660576 -0.047935 -0.745338 -0.766780 -0.084207 -0.120164 0.174649 0.026175 -0.075976 -0.013249 -0.861645 -0.085361 0.327562 0.233862 0.455815 0.480795 0.131675 -0.278646 -0.718618 -0.496406 0.366265 -0.268761 0.402553 0.203956 -0.666148 -0.222571 0.310578 0.291217 0.385391 0.192750 -0.119530 0.383564 -0.476705 -0.160143 -0.364105 -1.365054 0.146803 -0.211877 0.252163 0.002507 -0.485063 -0.115774 -0.381022 0.105440 -0.085792 -0.747648 0.081221 -0.545522 -0.241983 0.530445 -0.092157 -0.398342 -0.195042 -0.122815 0.306057 0.198105 0.373410 -0.002171 0.220817 0.271156 0.348902 -0.505377 -0.176212 -0.043682 -0.002360 0.225394 0.228014 0.129247 -0.420299 0.276562 -0.593243 -0.891241 -0.152854 0.480742 0.468568 -0.062807 -0.139822 0.194360 -0.618590 -0.046976 0.432221 0.609782 0.310292 0.037949 -0.285696 0.092010 0.228160 -0.281316 0.374560 0.155683 -0.449146 0.715705 0.176502 0.038690 -0.123221 -0.265373 -0.108438 -0.109589 -0.082855 0.583238 0.111309 -0.070526 0.316821 0.093618 -0.624430 -0.608632 -0.607611 0.316685 1.216866 0.618749 0.468789 -0.650802 0.142990 0.397147 0.222296 -0.036351 -0.471001 0.107812 -0.004379 0.371351 -1.371081 -0.716049 0.706101 0.034681 0.070453 -0.122000 -0.210010 0.163695 -0.371777 -0.656182 -0.709743 0.204733 -0.225736 -0.525788 -0.450496 0.210287 -0.708818 0.331055 0.321249 0.236094 0.581444 -0.544813 0.172409 -0.551620 -0.111338 -0.496588 0.387317 -0.281871 -0.090742 0.156258 -0.209238 0.257636 0.126112 0.272653 -0.176589 -0.319352 -0.350536 -0.153859 -0.228267 0.360334 -0.063363 1.279477 0.695954 -0.378642 -0.364762 0.027400 -0.561329 1.232327 -0.548016 0.273548 -0.008765 0.830248 0.146916 0.224656 1.017395 -0.262851 -0.505000 -0.650345 -0.579866 0.411188 0.266141 -0.714785 -0.186957 -1.136581 0.272263 -0.186942 0.938096 -0.232155 0.801460 -0.266810 0.195644 -0.450974 0.089044 0.166156 -0.217433 0.698072 0.136151 -0.448872 0.195255 -0.310280 -0.663266 0.327026 0.037210 0.152599 -0.232162 0.371217 -0.537551 -0.130365 -0.012900 0.028557 -0.583985 0.439088 0.040183 -0.034786 -0.134891 0.052706 0.796432 0.017846 -0.383115 0.808554 0.311345 1.170790 0.494672 0.161016 -0.124215 -0.119611 0.030290 -0.471016 -0.453126 0.632659 0.603100 0.332953 0.178038 0.431994 0.247323 0.343933 -PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.470571 0.382336 2.893133 1.495000 -1.509791 -2.505921 -0.668959 -3.884113 2.260056 1.316292 2.691733 0.479110 2.173366 -1.278866 -0.215830 -0.073113 1.837250 -0.103393 0.083811 -1.129749 -0.554037 3.651251 0.234741 -0.542546 0.493356 -2.386383 1.890759 0.676970 1.810251 2.258598 0.722904 0.101309 -0.719684 0.865595 -0.453153 0.498645 -0.368649 1.071252 -1.532334 -0.646347 0.655785 -1.129628 2.259020 0.499583 1.880390 -0.479277 1.033907 -0.260627 -1.259826 -1.217510 -0.998605 1.072664 -1.180540 1.337420 -0.559107 -0.796178 0.630000 0.231306 0.347786 -1.459675 0.247390 -0.876806 -1.236620 -0.131523 -1.605498 0.369565 -1.525279 -1.219118 -0.358909 -1.411064 1.108127 0.293024 0.182308 -0.648019 -3.826696 0.316930 0.579707 0.088100 1.551857 1.522478 -0.524274 -1.104871 -1.808849 -1.962245 2.222173 1.342351 0.181934 1.046644 -2.183518 -0.796081 -0.141927 0.352561 0.867249 1.299017 -2.062348 0.590341 -0.324961 -0.833437 -0.226849 -2.739258 0.417312 -1.534825 0.444328 0.404392 -0.628870 0.294254 -0.503314 0.364206 -0.735392 -1.691280 0.926593 -1.110274 -0.643465 2.620911 -0.849705 -1.302398 -1.435974 0.070717 0.456272 1.296160 0.410620 0.618613 1.917874 1.080670 1.598003 -2.056268 -0.271456 1.711360 0.983655 0.653163 0.290661 -0.821995 -1.107983 0.783293 -1.284332 -3.534299 -1.341698 1.463639 2.069385 -0.458017 -0.793973 0.646140 -1.090685 1.372173 2.306174 0.387404 0.879242 0.698345 -1.771612 0.816835 2.735696 -0.887960 1.187007 -0.921338 -1.386468 2.408675 -0.823864 1.025188 -0.582311 -0.122767 -0.245903 -1.163317 0.517044 2.471437 -0.251000 0.661370 -0.493414 0.791260 -1.026374 -2.522223 -3.830821 -0.591915 2.796158 1.970063 2.982074 -1.867349 -0.442538 0.253381 1.472490 0.198372 -1.445207 1.155073 -1.369235 1.238371 -4.836784 -3.029697 3.997343 2.971213 1.405554 -0.209784 1.001974 1.129633 -1.329147 -1.571063 -1.466603 1.128372 0.544578 -2.536866 -0.719805 0.570179 -2.494458 -0.872254 0.200725 0.248708 0.951656 -0.991376 1.675499 -1.076999 -0.756460 -1.454716 2.043483 -1.263210 -0.879966 -0.535147 0.023783 0.241820 1.169846 -0.314398 -0.099068 0.359368 -1.140247 -0.288714 0.046318 1.050183 0.220743 2.752915 3.393138 -1.019588 0.577028 -0.247770 -1.523368 3.795704 -1.781382 0.027390 0.004869 1.087009 0.625009 1.147947 1.815442 -1.030978 -0.942556 -2.313510 -0.427014 0.790927 1.170473 -1.891745 -1.863092 -3.167582 0.271712 -0.502278 2.894300 -0.055887 4.136895 -1.653081 0.713173 -3.680442 0.271528 1.394793 -0.206420 2.168783 0.682280 -1.634767 -0.995317 -0.799577 -2.025929 -0.050242 -0.124478 -1.206100 -1.341744 -1.142280 1.228770 -1.791819 0.596597 1.083768 -0.708761 2.386321 -0.510670 -0.064847 -1.782637 0.804283 1.174306 0.495285 -1.330003 1.886419 0.174855 4.120373 -0.442185 1.298562 -1.018306 1.430489 -1.250231 -2.639797 -1.170138 2.560403 2.524525 0.930251 -0.056290 0.123244 -0.079669 1.781387 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.789922 0.709347 5.835309 2.633805 -2.830999 -4.285411 -1.432602 -7.749002 4.440530 3.128991 5.256054 0.404941 3.793635 -2.247411 -0.668901 0.368176 3.260739 -0.466910 -0.212131 -2.444963 -1.301542 6.306772 0.371100 -0.908552 1.312622 -5.546149 3.794112 0.664517 2.888936 3.746065 1.608142 0.451115 -1.067244 2.001640 -0.598562 1.771938 -0.046489 2.071273 -2.297180 -0.892452 1.613567 -1.292882 3.572484 1.504686 4.234635 -0.054061 1.592547 -0.780336 -2.832841 -2.309351 -1.339926 2.040104 -2.396832 2.658710 -1.270625 -0.790704 0.841923 -0.621759 0.748880 -2.959965 0.490758 -1.404095 -2.345475 -0.128647 -2.840960 0.880268 -2.113169 -2.153433 -0.875723 -2.265142 2.417334 0.496279 -0.069134 -0.757709 -6.349724 0.698769 1.215269 -0.088936 3.282937 1.793482 -1.303122 -2.306127 -3.433533 -4.070689 4.744053 2.721811 0.511216 2.104926 -3.162607 -1.590831 -0.552017 0.174196 1.727851 3.278363 -4.210732 0.297442 0.065046 -1.805233 -0.691408 -4.637386 0.709643 -3.211909 0.958764 1.304155 -1.720648 1.154090 -0.566217 1.114570 -1.328368 -2.470168 1.746971 -2.124174 -0.399151 4.800675 -1.322024 -3.009471 -2.579504 -0.119537 0.997891 2.621982 0.836185 0.932645 5.112136 2.043370 3.193517 -3.743981 -0.643040 3.120164 1.756041 1.327325 0.801320 -2.472266 -2.297861 1.407264 -2.339791 -6.423510 -2.573492 1.894808 4.147559 -1.308465 -1.936729 1.612700 -1.738272 2.559751 4.218621 0.584259 1.362787 1.099430 -3.625437 1.310944 5.661881 -1.723273 1.999637 -2.144484 -2.202238 3.838262 -1.486785 1.691228 -0.646919 -0.460619 -0.524677 -2.571419 0.922222 4.873664 -0.635536 1.047482 -1.039985 2.053340 -2.133571 -4.576896 -7.362639 -1.539896 4.684712 3.139833 6.095171 -3.772677 -0.917518 -0.336050 3.418579 0.398434 -2.317906 2.008363 -2.666584 2.104301 -7.966274 -5.819367 7.934115 6.251976 3.306037 -0.723008 2.387540 1.983285 -2.713393 -2.840592 -2.424171 1.917174 1.641164 -4.439133 -1.618269 1.239549 -4.705759 -2.367156 -0.039536 0.599243 1.477746 -1.632282 2.971199 -1.423084 -1.322643 -2.638026 3.382372 -2.236033 -1.652369 -1.117863 0.530984 0.396779 2.301360 -1.106868 -0.365713 0.731851 -2.095594 -0.418412 0.864313 2.502413 0.855329 5.208959 6.496381 -2.084491 1.453839 -0.598887 -2.608320 6.534157 -2.820578 -0.011380 0.207642 1.590456 1.090612 1.853284 3.378007 -2.020749 -1.531731 -4.376232 -0.442504 1.115000 1.788472 -3.147235 -2.960026 -6.026857 0.286839 -1.194095 5.391500 0.169452 7.948045 -2.524277 1.246118 -7.026611 0.425966 3.139964 -0.735863 3.530631 1.624017 -3.163808 -2.882550 -1.472105 -3.821312 -1.005386 -0.321220 -1.775417 -2.850137 -2.225424 2.722250 -3.247659 1.414190 2.588796 -0.120827 4.180002 -1.166435 0.115072 -3.406949 1.606433 2.354982 0.915557 -2.770212 3.049975 0.454401 8.135081 -1.099790 2.604671 -2.032623 2.241801 -2.353492 -4.730270 -2.386078 4.622951 4.690991 2.025006 0.097895 0.013201 -0.407900 4.168722 -PE-benchmarks/vertex-cover-problem.cpp__int const& std::forward(std::remove_reference::type&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.045262 0.399637 0.861824 0.737646 -0.321703 -0.936675 -0.189718 -0.513775 0.260247 -0.106318 0.550539 -0.091484 0.354522 0.032266 -0.058952 -0.277979 0.305605 0.226854 -0.063172 -0.269104 -0.577502 0.664912 0.303443 -0.599240 0.146521 -0.474457 0.676820 0.436723 0.354074 0.831052 -0.007574 -0.004851 0.057297 0.377012 -0.433389 -0.320018 -0.359973 0.202946 -0.316043 -0.006143 0.316319 -0.068528 0.725829 0.277863 -0.063661 0.515375 0.314047 0.021562 -0.365773 -0.129329 -0.576120 0.365421 -0.401693 0.301784 -0.418746 0.126977 0.568003 -0.151504 0.078706 -0.589246 0.049453 0.060973 -0.433767 -0.111532 -0.735963 0.007260 -0.539991 -0.606354 0.138368 -0.119206 0.347234 0.170685 -0.047463 -0.423109 -0.686060 0.205710 0.093938 0.369192 0.403384 0.077000 -0.083780 0.090431 -0.524497 -0.395348 0.401308 -0.360491 0.368624 0.260914 -0.093706 -0.588239 0.061179 0.238268 0.089747 0.261428 0.057670 0.541121 -0.342343 -0.125019 -0.277777 -0.679822 -0.046098 -0.377003 0.112428 0.337129 -0.234895 0.068278 -0.189900 0.102580 -0.007780 -0.751864 0.074447 -0.302698 -0.348926 0.557369 -0.307079 -0.329586 0.041096 0.000136 0.069630 0.605687 0.079736 0.110285 0.234365 0.319482 0.107791 -0.438890 0.118134 -0.112351 0.156536 0.332571 0.476772 -0.119847 -0.476734 -0.061783 -0.203764 -1.104273 0.173699 0.415653 0.442433 0.176944 -0.759413 0.619124 -0.508259 0.194029 0.451526 0.486336 0.420106 -0.141702 -0.360832 0.337582 0.778643 -0.460005 0.528853 -0.292803 -0.766894 0.859054 -0.097043 0.229722 -0.240596 -0.208071 0.349592 -0.288862 0.099593 0.763660 0.101365 0.055311 0.722079 -0.068180 -0.101009 -0.829144 -0.638474 0.164049 0.653276 0.207777 0.885927 -0.498803 0.020637 0.054641 0.427719 -0.375173 -0.157535 -0.076643 -0.090999 0.257077 -1.608955 -0.892398 0.901879 0.344918 -0.054778 0.023861 0.078888 0.384304 0.224218 -0.363362 -0.527219 0.260150 0.129010 -0.160271 -0.197084 -0.096788 -0.527878 0.131403 0.280015 0.145767 0.358873 -0.738696 -0.286439 -0.625528 -0.675072 -0.618457 0.253860 -0.823887 -0.025440 0.191996 -0.220882 -0.079522 0.151769 0.175004 -0.267087 0.031462 -0.338989 -0.244248 -0.163459 0.550518 0.147878 0.894323 0.717134 -0.147886 0.072693 0.382055 -0.472878 1.557180 -0.620869 0.048968 0.000861 0.950991 0.087938 0.438999 0.504790 -0.201849 -0.393928 -0.758025 0.102343 0.329663 0.090965 -0.651986 -0.149596 -0.855424 -0.176812 0.058357 0.932094 -0.161610 1.104686 -0.186161 0.031935 -0.737015 0.010822 0.409406 -0.069178 0.612485 0.407228 -0.500270 -0.425717 -0.316416 -0.383299 0.600419 -0.142288 -0.465617 -0.321415 0.068636 -0.200042 -0.415403 0.388854 0.412454 -0.301807 0.234285 -0.007120 -0.103403 -0.218306 -0.165179 0.519504 0.227310 -0.388872 0.672935 -0.021501 0.950114 0.095173 0.523721 -0.554635 0.011836 0.004219 -0.303196 -0.390728 0.804346 0.492054 0.113887 0.328410 0.257647 0.069245 0.436360 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.275210 0.087821 0.859704 0.242355 -0.351372 -0.727926 -0.225936 -1.204998 0.582326 0.369882 0.926865 0.050080 0.725285 -0.381740 0.051556 -0.046448 0.545774 -0.124473 0.195124 -0.261183 -0.008953 0.979935 0.035482 0.018625 0.111660 -0.608875 0.452911 0.144400 0.451827 0.711575 0.185008 -0.043034 -0.310193 0.167210 -0.036834 0.233617 0.155145 0.338717 -0.420458 -0.170079 -0.032850 -0.418241 0.542383 -0.004171 0.618660 -0.136153 0.168813 -0.011138 -0.356550 -0.418561 -0.199812 0.293201 -0.425965 0.322957 -0.010301 -0.411479 0.117490 0.181065 0.010367 -0.574954 0.080879 -0.402071 -0.269557 0.028883 -0.408510 0.196627 -0.463275 -0.282433 -0.080266 -0.401151 0.322380 0.136233 0.237649 0.152254 -1.059689 0.114050 0.182550 0.032230 0.382383 0.316519 -0.050039 -0.291519 -0.434767 -0.573352 0.649917 0.470504 0.112064 0.227403 -0.741236 0.070534 -0.007934 0.072655 0.255458 0.316490 -0.489938 0.145630 -0.102485 -0.191269 0.000469 -0.979435 0.123574 -0.465249 0.116262 0.201656 -0.089493 -0.033815 -0.336747 0.247871 -0.356057 -0.595883 0.426630 -0.293105 -0.285267 0.720896 -0.388419 -0.206243 -0.444619 0.015250 0.225362 0.358739 0.134516 0.319859 0.269820 0.402110 0.453815 -0.608187 -0.204876 0.562996 0.464172 0.177481 0.035975 -0.329482 -0.297334 0.294802 -0.585334 -1.003675 -0.514266 0.444041 0.639600 -0.098080 -0.282040 0.151291 -0.362368 0.435354 0.703769 0.181914 0.155457 0.249409 -0.561817 0.276236 0.618272 -0.320743 0.467035 -0.049052 -0.251887 0.495221 -0.240178 0.256417 -0.105613 0.051357 -0.052343 -0.342059 -0.006394 0.655493 0.220824 0.426986 -0.358615 0.265914 -0.409914 -0.798400 -1.071734 -0.186973 1.005611 0.375954 0.645186 -0.517581 -0.313431 0.166364 0.608194 0.018664 -0.559346 0.288002 -0.390416 0.397373 -1.320349 -0.857400 1.136190 0.897469 0.497491 -0.023714 0.213354 0.459868 -0.644029 -0.356102 -0.406916 0.362562 -0.117291 -1.010571 -0.390399 0.138237 -0.734551 -0.255766 0.026758 0.125574 0.175428 -0.015414 0.528029 -0.025547 -0.113870 -0.228212 0.599094 -0.301106 -0.348392 -0.183388 -0.007316 0.235696 0.297458 -0.256381 0.097456 0.324110 -0.491960 -0.068529 0.095987 0.245527 0.112595 1.001505 0.873608 -0.216783 0.077556 -0.150826 -0.514355 0.930561 -0.426956 0.057457 -0.065448 0.237384 0.199470 0.275676 0.591737 -0.307865 -0.502736 -0.733866 -0.371775 0.250353 0.502043 -0.288398 -0.814118 -0.863431 0.201526 -0.033844 0.877256 -0.018728 1.168243 -0.431123 0.265817 -0.987733 0.079253 0.347450 -0.145684 0.573160 0.124749 -0.358499 -0.444633 -0.213085 -0.661483 -0.301708 -0.106729 -0.378046 -0.266550 -0.477855 0.498509 -0.425205 0.023245 0.123196 -0.046794 0.788774 0.103643 -0.091498 -0.595479 0.359809 0.319102 0.054626 -0.445552 0.629650 0.187488 1.350407 -0.171962 0.233881 -0.267537 0.412687 -0.352660 -0.614307 -0.234565 0.763934 0.900426 0.304449 -0.127671 0.060084 -0.077218 0.411304 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = 0.024251 0.394654 0.862738 1.106666 -0.946896 -1.580019 -0.193053 -1.349245 0.610512 0.183864 0.865742 0.165683 0.845321 -0.469041 -0.074679 -0.007715 0.770633 0.507348 -0.097538 -0.511682 -0.977276 1.308961 0.053747 -0.606516 0.245141 -0.122448 1.107443 0.683271 0.518853 0.896975 0.276775 0.107761 -0.236130 0.418353 -0.421810 -0.083561 -0.695022 0.598391 -0.633240 -0.201710 0.405349 -0.852516 1.168807 0.242258 0.325471 0.239867 0.767572 0.102189 -0.666621 -0.338786 -0.663929 0.307954 -0.493785 0.620452 -0.715715 -0.406470 0.761455 0.248068 0.265412 -0.553909 0.096756 -0.530265 -0.844147 -0.176313 -0.962276 -0.007867 -0.647494 -1.042993 -0.129717 -0.219898 0.406447 0.035599 -0.325995 -0.604388 -1.568316 -0.130283 0.380538 0.213351 0.723763 0.706071 0.009082 -0.511885 -1.041242 -0.713574 0.968188 -0.106239 0.458626 0.620546 -0.863411 -0.644500 0.132205 0.343911 0.591254 0.380981 -0.313694 0.480798 -0.241824 -0.241914 -0.466815 -1.340007 0.332766 -0.394499 0.292737 0.014383 -0.283512 0.139173 -0.114918 0.089736 -0.256082 -1.005446 0.016736 -0.779350 -0.270382 0.951966 -0.078112 -0.653898 -0.295995 -0.114714 0.149432 0.545152 0.439674 0.038700 0.776423 0.425451 0.435053 -0.853875 -0.203720 0.215102 0.159070 0.461081 0.250672 -0.119214 -0.620731 0.298584 -0.669441 -1.509027 -0.297521 0.763174 0.731949 -0.287849 -0.435050 0.708884 -0.613160 0.182055 0.770856 0.487350 0.461051 0.141585 -0.579109 0.300408 0.937610 -0.355072 0.491783 -0.258216 -0.817633 1.231844 0.033048 0.128673 -0.148888 -0.500213 -0.162805 -0.185476 0.303965 0.954042 -0.102847 -0.078005 0.409621 0.242590 -0.781410 -0.972516 -1.239245 0.194582 1.427749 0.983936 1.423756 -0.922766 0.028020 0.327785 0.290352 -0.216726 -0.456642 0.306124 -0.429051 0.618919 -2.211041 -1.247160 1.433865 0.301084 0.434592 -0.085841 0.202664 0.294067 -0.150787 -0.793844 -0.769337 0.362851 0.370608 -0.728431 -0.284639 0.162420 -1.165289 0.060978 0.286963 0.248205 0.425199 -0.712825 0.419132 -1.238119 -0.434744 -0.811040 0.553988 -0.624558 0.052939 0.051206 -0.217330 -0.002903 0.315905 0.221853 -0.172933 -0.409637 -0.381620 -0.103988 -0.304881 0.487267 0.053489 1.502519 1.484554 -0.659758 0.161674 0.054405 -0.671826 1.897520 -0.745034 0.268020 0.065842 1.162761 0.320862 0.403527 1.192362 -0.401057 -0.323608 -1.052062 -0.398895 0.798363 0.342050 -1.054501 -0.093776 -1.656688 0.004811 -0.319122 1.515546 -0.326874 1.422704 -0.666359 0.323397 -1.253642 0.192593 0.318459 -0.195855 0.899332 0.306208 -0.771473 -0.111815 -0.391837 -0.826375 0.149018 -0.074276 -0.229245 -0.589632 0.136986 -0.497403 -0.715189 0.165208 0.537940 -0.741431 0.568784 -0.512088 0.077997 -0.302114 0.068547 0.867944 0.127300 -0.603267 0.824019 0.172817 1.850273 0.410537 0.702316 -0.432344 0.377729 -0.292312 -1.023517 -0.644284 1.043227 0.853627 0.204864 0.437948 0.500374 0.325431 0.736066 -PE-benchmarks/vertex-cover-problem.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.275327 0.224497 1.383972 1.053924 -0.881476 -1.457602 -0.316612 -1.758792 1.109420 0.521288 1.210343 0.366683 1.189923 -0.769079 -0.181975 -0.303396 0.937574 0.189260 -0.007236 -0.561099 -0.415652 1.890385 0.156114 -0.681515 0.220633 -0.954284 1.296764 0.492868 0.855863 1.433752 0.306938 0.124806 -0.427265 0.497531 -0.359924 0.032606 -0.396635 0.645421 -0.752888 -0.412409 0.489623 -0.628982 1.285618 0.279161 0.800871 -0.046955 0.431259 -0.053597 -0.629742 -0.610713 -0.476100 0.191140 -0.633014 0.748234 -0.499162 -0.367829 0.542398 0.235078 0.265544 -0.983053 0.294726 -0.476452 -0.702660 -0.115746 -1.023632 0.105381 -0.779195 -0.873364 -0.225107 -0.820691 0.489183 0.134035 0.043795 -0.655332 -2.009178 0.039221 0.307876 0.102045 0.878145 0.953348 -0.353679 -0.667769 -1.033081 -0.954738 0.983899 0.447176 0.140845 0.754234 -1.005445 -0.649794 0.096377 0.310643 0.535958 0.605001 -0.724428 0.417476 -0.260663 -0.275629 0.013918 -1.415218 0.327230 -0.670800 0.244459 0.235131 -0.382311 0.120909 -0.078058 0.175955 -0.336514 -0.923318 0.452731 -0.733518 -0.348387 1.306821 -0.252646 -0.734625 -0.679673 -0.054878 0.337278 0.787457 0.170661 0.237371 0.818412 0.552020 0.718316 -1.145769 -0.127715 0.877551 0.382805 0.361508 0.163983 -0.380460 -0.569801 0.399432 -0.730453 -1.810594 -0.573974 0.718906 0.980540 -0.342736 -0.535550 0.621521 -0.711644 0.506867 1.155667 0.360629 0.517074 0.334531 -0.908189 0.432996 1.361763 -0.382248 0.524844 -0.411414 -0.971177 1.445799 -0.239510 0.474299 -0.451673 -0.252416 -0.092767 -0.448259 0.483416 1.256075 -0.244705 0.327322 -0.029065 0.319606 -0.626497 -1.322455 -1.801380 -0.186858 1.669431 1.257477 1.736623 -1.035595 -0.037106 0.198401 0.662344 0.074629 -0.611100 0.522347 -0.585913 0.728043 -2.824867 -1.596576 1.958565 1.138238 0.667954 -0.085403 0.351312 0.445012 -0.212907 -0.825831 -0.809078 0.476170 0.315476 -0.949041 -0.248212 0.244431 -1.325981 -0.355956 0.332364 0.155766 0.645134 -0.798476 0.605780 -0.918128 -0.360950 -1.035593 0.969337 -0.734839 -0.262715 -0.157117 -0.069458 0.044087 0.493497 0.058476 -0.117508 -0.007434 -0.360028 -0.119784 -0.148776 0.458437 0.015694 1.350433 1.728307 -0.697455 -0.018194 0.010315 -0.754021 2.415790 -0.984777 0.134199 0.108872 0.911345 0.489207 0.574295 1.038684 -0.544980 -0.227254 -1.276144 -0.331925 0.662650 0.595583 -1.427423 -0.772683 -1.697040 0.164246 -0.395403 1.585899 -0.142151 2.116367 -0.871010 0.360223 -1.765664 0.167899 0.772878 -0.120505 1.150368 0.403906 -0.874164 -0.536281 -0.443205 -1.020234 0.277873 -0.183292 -0.573920 -0.657131 -0.194802 0.168230 -0.850964 0.320147 0.719342 -0.666290 1.058341 -0.512280 0.053321 -0.801237 0.185142 0.407592 0.235044 -0.678017 1.001481 0.106862 1.914538 -0.038199 0.771268 -0.505598 0.912596 -0.713256 -1.447326 -0.674587 1.362279 1.102269 0.413194 0.231948 0.240275 0.106727 0.862776 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.072260 0.123473 0.696623 0.218502 -0.166249 -0.718890 -0.150590 -1.057802 0.493795 0.274009 0.753224 -0.020957 0.617473 -0.318251 0.061030 0.130708 0.426238 0.018666 0.095214 -0.210229 -0.037290 0.825096 -0.066123 -0.009947 0.106346 -0.464226 0.252842 0.276779 0.395252 0.480130 0.141676 -0.002567 -0.111540 0.146557 -0.212886 0.169843 0.088502 0.272038 -0.415862 -0.185499 -0.096124 -0.233579 0.435654 0.007515 0.486605 -0.065128 0.286214 -0.003611 -0.194093 -0.284760 -0.236900 0.448564 -0.243366 0.267441 -0.157622 -0.330058 0.145086 0.100681 0.043408 -0.401128 0.085293 -0.131469 -0.328651 -0.044723 -0.325532 0.127663 -0.203927 -0.308738 -0.057468 -0.230478 0.279144 0.062438 0.050375 -0.011636 -0.929622 0.057271 0.186226 0.015108 0.322288 0.203171 0.047752 -0.267064 -0.357305 -0.450757 0.720554 0.411513 0.177349 0.313217 -0.645774 -0.042351 -0.077103 0.040261 0.270337 0.252458 -0.344882 0.126983 0.021074 -0.161876 -0.106003 -0.691796 0.147744 -0.353515 0.083567 0.069472 0.142253 0.094003 -0.193326 0.226984 -0.304673 -0.482470 0.272280 -0.268045 -0.236925 0.601876 -0.277408 -0.202142 -0.287337 0.010062 0.044831 0.322771 0.138703 0.220239 0.302683 0.294064 0.327301 -0.504528 -0.184872 0.412847 0.379181 0.243042 0.021330 -0.333540 -0.255483 0.213563 -0.518479 -0.903663 -0.393911 0.391627 0.513056 -0.167714 -0.290782 0.275474 -0.234279 0.346643 0.542843 0.085012 0.128054 0.197550 -0.440023 0.200609 0.559369 -0.294759 0.409317 -0.100522 -0.194813 0.295099 -0.151160 0.167644 -0.027415 -0.091674 -0.015865 -0.220044 0.061062 0.556113 0.201185 0.294250 -0.261826 0.232413 -0.439675 -0.630359 -0.909089 -0.176979 0.703065 0.217330 0.671280 -0.390649 -0.385531 0.086842 0.481246 -0.187639 -0.373451 0.249867 -0.439821 0.353427 -0.986102 -0.713273 0.958895 0.677559 0.501383 -0.046206 0.291936 0.342844 -0.473402 -0.272735 -0.221823 0.257809 0.081267 -0.916376 -0.307552 0.050303 -0.648201 -0.185709 -0.047039 0.095449 -0.086991 0.141913 0.542065 -0.210139 -0.185841 -0.152382 0.385230 -0.271655 -0.133182 -0.162936 0.001631 0.088358 0.265100 -0.319007 0.050075 0.277003 -0.441019 -0.018263 0.031278 0.211910 0.166444 0.865475 0.781544 -0.173435 0.371744 -0.130527 -0.430157 0.692759 -0.294588 0.054007 -0.055253 0.256616 0.126972 0.244111 0.470801 -0.250246 -0.371034 -0.654819 -0.309218 0.319225 0.349652 -0.032687 -0.510451 -0.706223 0.036180 -0.064232 0.806088 -0.074991 0.915426 -0.390382 0.269301 -0.879510 0.104060 0.172526 -0.164637 0.383737 0.131537 -0.346272 -0.453326 -0.132888 -0.521296 -0.531790 -0.080853 -0.389785 -0.259269 -0.481085 0.359422 -0.488044 0.024414 0.178160 0.013800 0.558187 -0.093151 -0.024635 -0.413941 0.315083 0.379416 0.013860 -0.404949 0.336459 0.137729 1.258411 -0.112507 0.343906 -0.298537 0.334193 -0.261021 -0.508049 -0.230911 0.638890 0.748345 0.178927 -0.035999 0.091943 -0.038891 0.414589 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = 0.142566 0.366387 0.317076 0.497316 -0.567133 -0.882277 -0.063344 -0.561811 0.069085 -0.057109 0.261104 -0.009002 0.308420 -0.080152 -0.035851 0.044433 0.319232 0.406670 -0.030106 -0.269595 -0.724153 0.300005 -0.068056 -0.241888 0.139729 0.220598 0.597435 0.376798 0.148656 0.342839 0.139065 0.009966 -0.182263 0.220799 -0.154689 -0.140953 -0.328935 0.308547 -0.311741 0.081234 0.093420 -0.507393 0.523042 0.125167 -0.015797 0.383027 0.306223 0.211506 -0.344343 -0.072222 -0.301688 0.063580 -0.233075 0.288099 -0.393972 -0.251121 0.400355 0.175657 0.176868 -0.124909 -0.007515 -0.393549 -0.379901 -0.050951 -0.534409 -0.058312 -0.369835 -0.680249 -0.074907 0.090213 0.163349 0.008412 -0.211272 -0.157937 -0.625529 -0.130904 0.231304 0.229475 0.372365 0.183748 0.162888 -0.200103 -0.536570 -0.312715 0.355738 -0.210555 0.382051 0.264136 -0.338084 -0.335478 0.153111 0.170801 0.379222 0.124986 0.088061 0.256560 -0.327022 -0.049935 -0.385716 -0.863667 0.175237 -0.053191 0.217895 -0.122904 -0.156012 0.008242 -0.073282 0.062492 -0.054391 -0.504516 -0.068503 -0.430193 -0.063049 0.417954 0.065444 -0.318837 -0.021600 -0.165182 0.049175 0.216568 0.322889 -0.088005 0.248669 0.221972 0.124799 -0.350184 -0.208241 -0.130165 -0.063076 0.289088 0.240111 -0.022497 -0.338134 0.132161 -0.391657 -0.653347 0.022554 0.271419 0.258828 -0.187940 -0.132565 0.334837 -0.415288 -0.107422 0.205616 0.387435 0.227364 -0.066757 -0.185044 0.116446 0.258410 -0.160329 0.254464 -0.012628 -0.312694 0.433754 0.179088 -0.054939 -0.022272 -0.395328 -0.096456 0.045404 0.041917 0.364127 0.046338 -0.135410 0.408480 0.090615 -0.574940 -0.390090 -0.305065 0.281125 0.786314 0.299765 0.479142 -0.465648 0.058828 0.220154 0.148990 -0.162512 -0.148502 0.067341 -0.089018 0.301458 -0.801310 -0.484548 0.462408 -0.115134 0.116001 -0.117837 -0.089086 0.104524 -0.128679 -0.447573 -0.363442 0.047052 0.016672 -0.369908 -0.313549 0.073068 -0.505889 0.241262 0.228538 0.230588 0.279759 -0.259163 0.090323 -0.626597 -0.170740 -0.451531 0.141639 -0.235024 0.155621 0.204491 -0.141686 0.023502 0.065416 0.143803 -0.138927 -0.244512 -0.163214 0.016483 -0.168530 0.254712 -0.018292 0.883371 0.475609 -0.290343 0.003749 0.092252 -0.333110 0.861394 -0.267466 0.304085 0.069035 0.699167 0.052469 0.127010 0.685291 -0.193899 -0.249794 -0.492614 -0.409235 0.424260 0.106809 -0.324857 0.095682 -0.800047 0.037423 -0.164734 0.697588 -0.225701 0.452619 -0.165293 0.166892 -0.286517 0.103768 0.036120 -0.193597 0.400311 0.162693 -0.339298 0.078061 -0.198547 -0.417885 -0.015843 -0.046272 0.050095 -0.196609 0.329345 -0.560344 -0.147089 -0.020585 0.174952 -0.392153 0.106202 -0.269141 0.064144 0.006549 -0.040604 0.648181 -0.050195 -0.319769 0.394292 0.190008 0.896182 0.450831 0.263255 -0.121080 -0.119344 0.090436 -0.312515 -0.347357 0.462986 0.276076 0.122770 0.269191 0.352783 0.278169 0.278975 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.555523 0.147463 2.478402 0.977898 -1.110498 -1.810806 -0.669342 -2.712583 1.651354 0.727671 1.950835 -0.038156 1.188512 -0.971723 0.017125 0.479133 1.334861 -0.256997 -0.336312 -0.980153 0.107041 1.811237 0.496751 -1.132246 0.767081 -1.908221 0.675239 0.396943 0.679921 1.300091 0.553328 -0.061758 -0.392493 0.833671 -0.078180 1.172216 0.877300 0.396884 -1.215610 -0.299212 0.117945 0.036439 1.112680 0.063821 2.025137 0.148345 0.839013 -0.028662 -1.555455 -0.719019 -0.364436 1.655845 -1.020352 0.990793 0.133998 0.432112 -0.012955 -1.131313 -0.180241 -1.765234 0.064184 -0.058020 -1.014846 -0.029567 -0.963834 0.325753 0.114989 -0.617087 -0.107051 -0.887413 0.732027 0.103203 -0.106803 0.078780 -1.555885 0.091037 0.532198 0.429221 1.032045 0.142694 -0.132225 -1.005668 -0.787848 -1.165793 1.517279 0.612596 0.482815 0.818607 -0.909609 -0.011871 -0.192699 -0.149589 0.380799 0.982734 -1.700415 -0.309104 0.492106 -0.780211 -0.623590 -1.211823 0.359240 -0.987485 0.333039 0.555224 -0.407114 0.579851 -0.545088 0.961647 -0.774541 -0.646726 0.666170 -0.452544 -0.370505 1.611068 -0.762586 -0.834328 -0.860083 -0.101959 0.182953 1.233320 -0.110127 0.607173 1.518540 1.103876 1.243866 -1.386945 -0.373696 0.702469 1.345216 0.743670 0.696043 -1.194566 -0.775297 0.500916 -1.141419 -2.435471 -1.059602 0.498553 1.756733 0.363821 -1.575765 0.143438 -0.560073 1.552473 0.913700 0.435651 0.149184 0.258586 -1.507052 0.404968 2.052040 -0.889674 1.150489 -0.496199 -0.290572 0.587266 -0.450566 0.528985 -0.108212 -0.468318 0.052448 -0.890407 -0.017453 1.594984 0.616651 0.442681 -0.876565 0.720501 -0.890593 -2.074591 -2.761966 -0.756750 1.304602 0.375127 2.193567 -1.393730 -1.242307 -0.920472 1.541996 -0.630892 -0.839154 0.386960 -1.488088 0.935437 -2.118647 -2.090058 3.298153 2.700270 1.506916 0.179538 1.382332 0.416236 -1.662307 -0.517410 -0.503302 0.610097 0.576814 -1.602879 -0.557946 0.261886 -1.981295 -0.975774 -0.161085 0.514301 -0.157952 0.230622 1.076106 0.373621 -0.643346 -0.472357 0.542305 -0.793093 -0.599753 -0.170907 0.213127 0.538236 0.931890 -0.997436 -0.394621 0.553289 -1.318101 -0.280848 0.426194 1.355873 0.787225 1.997953 2.382657 -0.205118 1.644593 -0.241592 -1.380047 1.922034 -0.643592 0.304517 -0.140932 0.345481 0.502236 0.345671 1.279963 -0.734239 -0.556763 -1.537154 -0.455841 0.400934 1.181843 -0.900257 -1.751956 -1.657237 -0.044362 0.048791 1.662176 -0.205906 2.660213 -0.706377 0.635329 -3.313301 0.143388 1.423575 -0.171621 0.562367 0.689991 -1.250995 -2.705069 -0.175051 -1.508299 -1.108882 -0.348681 -0.489400 -0.923312 -1.130322 2.019804 -1.166697 0.218810 1.355996 0.390026 1.752977 0.182181 0.096945 -0.748254 0.089601 0.745446 0.310159 -1.073694 0.997145 0.630550 3.723483 -0.225001 0.957324 -0.847480 0.689653 -0.470473 -1.357797 -0.892636 1.639026 2.160344 0.539742 0.118883 -0.184557 -0.710043 1.546716 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.158523 0.282780 1.211554 0.783342 -0.672952 -0.947868 -0.275211 -1.275076 0.763898 0.302458 0.836978 0.130419 0.726043 -0.435984 -0.163905 -0.258657 0.570892 0.130613 0.110095 -0.362724 -0.253189 1.342863 0.243090 -0.582913 0.150414 -0.864133 0.986259 0.296000 0.772174 1.057989 0.081174 -0.016395 -0.280114 0.454349 -0.243970 -0.084559 -0.191575 0.474149 -0.595728 -0.121110 0.249279 -0.302784 0.795881 0.096977 0.536210 0.106511 0.248764 -0.017264 -0.548459 -0.371149 -0.263702 0.206243 -0.531141 0.587080 -0.189330 -0.212503 0.232064 0.067379 0.106142 -0.751717 0.195674 -0.287267 -0.399459 0.006952 -0.876264 0.089188 -0.629790 -0.624951 -0.045875 -0.439698 0.369108 0.235361 0.181937 -0.380829 -1.352680 0.193930 0.258057 0.235614 0.582566 0.481870 -0.145093 -0.294297 -0.678545 -0.743688 0.527891 0.366900 0.150755 0.341002 -0.499853 -0.453536 0.177985 0.207849 0.216978 0.552672 -0.503794 0.391992 -0.498033 -0.128263 -0.013247 -1.201284 0.055256 -0.608653 0.253258 0.250053 -0.341011 0.074518 0.024759 0.283043 -0.071625 -0.755088 0.280852 -0.412772 -0.182827 1.024288 -0.168919 -0.465213 -0.444078 -0.035536 0.169697 0.611132 0.048379 0.243709 0.597774 0.507782 0.519838 -0.802617 -0.092505 0.564432 0.249545 0.335877 0.305635 -0.408079 -0.441029 0.173579 -0.374634 -1.340930 -0.313212 0.439785 0.673463 -0.240175 -0.429716 0.294880 -0.583958 0.518297 0.792036 0.319307 0.365957 0.143868 -0.591864 0.410555 1.107531 -0.332429 0.374218 -0.337996 -0.752832 1.029840 -0.195049 0.458580 -0.392893 -0.046845 0.040660 -0.501416 0.266182 0.975657 -0.120799 0.263085 0.147299 0.120804 -0.361826 -1.077899 -1.197203 -0.072827 1.133888 0.655225 1.246420 -0.728094 -0.137077 0.112429 0.563632 0.144146 -0.359367 0.273391 -0.400072 0.510917 -1.960180 -1.256467 1.338380 0.967736 0.359159 -0.065426 0.274768 0.396008 -0.277273 -0.674112 -0.615225 0.376468 0.025973 -0.664490 -0.369680 0.221918 -0.953130 -0.167087 0.311506 0.144423 0.657129 -0.525166 0.144459 -0.433173 -0.468389 -0.806470 0.742591 -0.606062 -0.217972 -0.036801 -0.034956 0.089315 0.419135 -0.061373 -0.170237 0.107546 -0.315879 -0.097002 -0.050068 0.400220 -0.056437 1.005132 1.158798 -0.297473 -0.025201 0.166617 -0.578815 1.901404 -0.681398 0.086594 0.073988 0.569411 0.163899 0.468584 0.708543 -0.400436 -0.321888 -1.006326 -0.201773 0.315803 0.409194 -1.054557 -0.695239 -1.079397 0.071007 -0.101228 1.042543 0.044532 1.610784 -0.517524 0.250619 -1.350326 0.073119 0.597729 -0.080279 0.990171 0.373844 -0.646965 -0.579542 -0.348854 -0.665946 0.260906 -0.261918 -0.557005 -0.453282 -0.063785 0.177620 -0.434704 0.280798 0.597081 -0.330658 0.813335 -0.238579 -0.029804 -0.616459 0.045633 0.365865 0.150713 -0.543527 0.750377 0.095196 1.503708 -0.128525 0.478175 -0.453214 0.405065 -0.333275 -0.912818 -0.448451 1.064529 0.745955 0.399021 0.088437 0.108188 -0.103785 0.608683 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.170354 0.665827 2.095558 1.300447 -1.077370 -1.298864 -0.343684 -1.863772 1.009897 0.263191 1.082154 -0.143926 0.711487 -0.356035 -0.281595 -0.116525 0.756031 0.450923 0.102519 -0.606126 -0.267559 1.757848 0.504156 -1.167446 0.298541 -1.329815 1.231995 0.589392 1.409206 1.151931 -0.054649 -0.112706 -0.217485 0.780600 -0.572178 -0.312780 -0.323759 0.618442 -1.181986 0.115968 0.139523 -0.005743 0.865902 -0.068958 0.648491 0.372718 0.688590 0.017763 -1.011884 -0.364202 -0.211524 0.751365 -0.587502 0.941008 -0.062632 -0.059089 -0.007370 -0.313156 0.082870 -0.807483 0.314554 0.042093 -0.653004 0.113847 -1.503643 0.035677 -0.734947 -0.986874 0.201321 -0.406437 0.401010 0.287488 0.013187 -0.747109 -1.717258 0.360829 0.539346 0.579835 0.659859 0.354416 0.163400 -0.246115 -0.896919 -1.024111 0.531699 0.609575 0.410318 0.290038 -0.450597 -0.809346 0.493037 0.303261 0.058855 0.950466 -0.938711 0.604249 -1.090038 -0.253154 -0.424330 -1.756291 -0.087402 -0.968041 0.569201 0.164877 -0.556251 0.374652 0.308351 0.644043 0.344488 -1.090558 -0.143924 -0.388704 0.132868 1.694978 -0.145406 -0.760132 -0.730679 -0.072455 -0.107306 0.867384 -0.065389 0.319400 1.305126 0.741981 0.718626 -1.170968 -0.128279 0.428295 0.150071 0.753110 0.815795 -0.707649 -0.703004 -0.032993 -0.273430 -2.039034 -0.271301 0.380608 0.913364 -0.330840 -0.628311 0.072177 -0.864096 1.055028 0.904920 0.487023 0.475983 -0.000355 -0.588488 0.473374 1.774383 -0.580213 0.481696 -0.706027 -1.194835 1.198163 -0.067970 0.771808 -0.496610 -0.086050 0.117813 -0.911549 0.346964 1.514005 -0.233488 0.106743 0.569938 -0.023743 -0.327630 -1.560197 -1.617324 -0.001209 0.977614 0.558093 1.901487 -0.987161 -0.450457 -0.068997 0.653253 0.151591 -0.286815 0.213684 -0.747660 0.645912 -2.238541 -1.899095 1.624451 1.576042 0.388738 -0.140755 0.669712 0.324677 -0.647152 -1.037530 -0.766669 0.612627 -0.016652 -0.801864 -0.624530 0.426408 -1.476145 0.062363 0.413421 0.334889 0.974770 -0.619283 -0.012182 -0.553778 -1.225153 -1.266796 0.941397 -0.830388 -0.051981 0.037503 -0.038491 0.132038 0.727680 -0.411119 -0.594477 0.096279 -0.571429 -0.146874 -0.123771 0.796396 -0.157047 1.446149 1.511009 -0.024899 0.491936 0.341336 -0.964303 2.759303 -0.809347 0.142127 -0.002196 0.698631 -0.226802 0.717591 0.913412 -0.530888 -0.564162 -1.458425 -0.259762 0.272164 0.432970 -1.367230 -0.844268 -1.299551 -0.185036 0.014791 1.423747 0.264774 2.259687 -0.652809 0.475216 -2.192148 0.101570 0.684605 -0.131380 1.523529 0.690852 -1.152740 -1.076176 -0.373949 -0.847395 0.233918 -0.382316 -0.947212 -0.853068 0.125323 0.307843 -0.417947 0.433224 1.095164 -0.228131 1.136356 -0.217197 -0.061966 -0.517534 -0.206265 0.929083 0.227458 -0.894519 0.719031 0.212905 2.504208 -0.103773 0.808012 -0.806979 -0.042778 0.013411 -1.220762 -0.776962 1.564705 1.042166 0.653016 0.032980 -0.038143 -0.450355 0.945111 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.006614 0.128403 0.301489 0.245460 -0.155692 -0.466021 -0.057816 -0.354946 0.152751 0.034514 0.247808 -0.011516 0.282184 -0.117893 -0.013161 -0.067408 0.192473 0.159429 0.003632 -0.129372 -0.164147 0.281847 -0.013976 -0.218566 0.100463 -0.126631 0.332252 0.188758 0.083771 0.368908 0.050660 0.044617 -0.099265 0.115134 -0.155949 -0.048997 -0.026121 0.149851 -0.171145 -0.021503 0.044517 -0.045997 0.245613 0.091070 0.109191 0.258839 0.012699 0.088094 -0.111951 -0.122147 -0.068894 -0.003650 -0.105288 0.195063 -0.228137 -0.066140 0.194549 0.033067 0.078469 -0.298679 0.120466 -0.065206 -0.175843 -0.029767 -0.295319 0.002875 -0.104915 -0.309655 -0.037209 -0.118221 0.122337 -0.001924 -0.057608 -0.151278 -0.381926 -0.043629 0.081768 0.092547 0.215991 0.064832 -0.037922 -0.132310 -0.266772 -0.200984 0.223156 0.021813 0.159873 0.246891 -0.161456 -0.224170 0.055476 0.049248 0.195048 0.110767 0.059695 0.097567 -0.069543 -0.007018 -0.026689 -0.347458 0.123407 -0.075338 0.069390 0.052715 0.001891 0.042262 0.036438 0.157189 -0.059295 -0.216611 0.145193 -0.191413 -0.083676 0.282048 0.006397 -0.190270 -0.089259 -0.088577 0.066342 0.268160 0.061993 0.007968 0.096591 0.147413 0.084470 -0.228202 -0.095416 0.113779 0.068923 0.138754 0.099069 -0.168611 -0.158286 0.089448 -0.297180 -0.396731 -0.081914 0.086167 0.235574 -0.154798 -0.235605 0.324632 -0.243205 0.004511 0.184151 0.161144 0.114871 0.005103 -0.214514 0.092336 0.275834 -0.121355 0.141477 -0.045979 -0.217948 0.174656 0.104100 0.014953 -0.068673 -0.185921 0.035207 -0.012642 0.127629 0.256219 0.065378 0.084229 0.097772 0.095625 -0.304838 -0.278606 -0.301973 0.000680 0.408563 0.140673 0.422673 -0.241476 -0.044495 -0.026578 0.242086 -0.126602 -0.063882 0.033405 -0.106073 0.159797 -0.565734 -0.318154 0.401128 0.148700 0.213037 -0.066749 0.024215 0.090881 0.035718 -0.160463 -0.139509 0.026715 0.043999 -0.196740 -0.132928 -0.006002 -0.306379 -0.034111 0.106493 0.099233 0.085602 -0.099718 0.043518 -0.281736 -0.120311 -0.261595 0.078706 -0.188650 0.076588 0.066624 -0.051473 -0.018154 0.049770 -0.038366 -0.047355 0.054091 -0.095620 0.002412 -0.034905 0.132756 0.036624 0.401861 0.284692 -0.135059 0.006384 0.038581 -0.231451 0.614610 -0.149289 0.119919 0.017316 0.328297 0.131438 0.077505 0.267977 -0.117739 -0.069601 -0.362140 -0.176109 0.265271 0.108257 -0.222076 -0.094881 -0.414416 0.021663 -0.139990 0.468079 -0.074965 0.412780 -0.125395 0.105309 -0.280945 0.064262 0.137945 -0.113285 0.136727 0.112865 -0.185717 -0.271381 -0.061431 -0.289188 -0.089768 -0.112406 -0.129817 -0.122118 0.055677 -0.124025 -0.121792 0.047471 0.231788 -0.105684 0.118166 -0.178517 0.022972 -0.110152 -0.016715 0.146150 -0.015479 -0.226709 0.147459 0.099176 0.485541 0.103334 0.222250 -0.126205 0.118958 -0.112853 -0.242905 -0.184840 0.301327 0.216135 0.074174 0.178938 0.140483 0.083320 0.188737 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.028740 0.120258 0.328201 0.269316 -0.143214 -0.452378 -0.051899 -0.345892 0.184097 0.058251 0.257022 0.011023 0.307614 -0.155617 -0.032513 -0.102226 0.187383 0.159536 -0.009887 -0.119080 -0.140885 0.312832 -0.000952 -0.252952 0.089283 -0.146367 0.357113 0.189994 0.101205 0.397996 0.041912 0.054923 -0.087201 0.132104 -0.177146 -0.054932 -0.043367 0.175528 -0.149372 -0.068093 0.073555 -0.039655 0.254759 0.105039 0.123476 0.239490 0.003575 0.053094 -0.114121 -0.134538 -0.057574 -0.026769 -0.120447 0.205037 -0.239070 -0.054873 0.207204 0.042184 0.100841 -0.360857 0.151769 -0.044938 -0.176092 -0.044643 -0.298454 -0.009567 -0.085960 -0.320728 -0.052224 -0.163569 0.116388 0.006399 -0.042501 -0.188127 -0.399951 -0.032150 0.091330 0.066578 0.236874 0.110476 -0.074088 -0.160016 -0.261682 -0.215627 0.238929 0.024082 0.150108 0.289321 -0.162345 -0.239395 0.063034 0.065503 0.188997 0.134391 0.052102 0.104184 -0.044172 -0.003097 0.009398 -0.322899 0.121292 -0.101498 0.057636 0.084308 -0.012683 0.051860 0.028053 0.149482 -0.063716 -0.206883 0.157381 -0.222650 -0.091039 0.266455 -0.002334 -0.199510 -0.088275 -0.078296 0.098735 0.277024 0.038327 0.003894 0.108367 0.124579 0.106220 -0.258872 -0.065582 0.148330 0.072973 0.135542 0.073929 -0.171415 -0.145913 0.089159 -0.295662 -0.427052 -0.082261 0.093932 0.228034 -0.156928 -0.269809 0.356744 -0.240545 0.006204 0.217414 0.165418 0.127087 0.032076 -0.219725 0.073910 0.289507 -0.122574 0.134920 -0.037633 -0.259692 0.209873 0.086457 0.045605 -0.096346 -0.187582 0.058025 -0.034524 0.156103 0.292412 0.035581 0.102112 0.082208 0.084565 -0.284636 -0.299447 -0.335446 -0.025239 0.422955 0.191484 0.473574 -0.250667 -0.033492 -0.016286 0.244616 -0.131934 -0.057612 0.032189 -0.098567 0.175058 -0.634664 -0.354302 0.428119 0.157097 0.218346 -0.060423 0.035148 0.070251 0.091481 -0.160176 -0.141063 0.018601 0.066908 -0.167705 -0.109875 -0.002891 -0.320917 -0.047600 0.115174 0.071591 0.081797 -0.140875 0.043239 -0.300141 -0.104607 -0.276744 0.076874 -0.204651 0.066269 0.037672 -0.034255 -0.022707 0.056883 -0.032015 -0.063162 0.046628 -0.086182 -0.011429 -0.049742 0.128931 0.044017 0.394126 0.316074 -0.168050 -0.025044 0.042886 -0.217033 0.661542 -0.182151 0.092211 0.034272 0.359481 0.163013 0.101663 0.270854 -0.132304 -0.023148 -0.383074 -0.167880 0.282910 0.097760 -0.281030 -0.092911 -0.413001 0.023049 -0.157451 0.469059 -0.080808 0.462343 -0.133139 0.102708 -0.311176 0.059898 0.163808 -0.115615 0.158693 0.132468 -0.204473 -0.299027 -0.083053 -0.275330 -0.052070 -0.109246 -0.132673 -0.116145 0.053575 -0.125351 -0.152666 0.078598 0.237906 -0.115355 0.128033 -0.198819 0.043334 -0.126395 -0.013386 0.110425 -0.000464 -0.221430 0.151789 0.086438 0.467866 0.071904 0.246853 -0.146028 0.177959 -0.143364 -0.267496 -0.198178 0.324885 0.219087 0.085421 0.183966 0.146910 0.065698 0.220941 -PE-benchmarks/vertex-cover-problem.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.365483 0.162043 1.184466 1.139566 -0.826719 -1.287887 -0.309061 -1.312560 0.920644 0.395623 1.039270 0.330034 1.008398 -0.662576 -0.168735 -0.421428 0.798928 0.161718 -0.029412 -0.470983 -0.469946 1.712418 0.356367 -0.845394 0.177113 -0.772395 1.257997 0.407162 0.642815 1.381106 0.204207 0.152773 -0.310900 0.476290 -0.395633 -0.020517 -0.490895 0.619840 -0.529907 -0.383610 0.595070 -0.543161 1.156945 0.270000 0.612983 0.101518 0.410219 -0.087615 -0.683205 -0.559581 -0.460207 0.054157 -0.661032 0.678709 -0.522379 -0.204479 0.637131 0.161048 0.179225 -1.141017 0.278652 -0.405674 -0.656901 -0.120698 -0.981182 0.113447 -0.679712 -0.815582 -0.159435 -0.676663 0.472568 0.183703 0.063347 -0.675740 -1.631080 0.075131 0.236852 0.136326 0.758452 0.857029 -0.434419 -0.531547 -0.938024 -0.831894 0.795956 0.121929 0.165539 0.666744 -0.692543 -0.618676 0.137210 0.321268 0.382071 0.544228 -0.499973 0.462310 -0.129464 -0.201911 0.038155 -1.135354 0.225760 -0.631684 0.192548 0.428126 -0.441768 0.087320 -0.113871 0.156924 -0.308982 -0.912959 0.393743 -0.680893 -0.394972 1.023006 -0.251384 -0.599007 -0.475880 -0.022320 0.389884 0.782170 0.122940 0.246753 0.710139 0.492748 0.551983 -0.981419 -0.005861 0.665470 0.381678 0.287721 0.214115 -0.295389 -0.566906 0.313903 -0.576778 -1.557978 -0.460474 0.735715 0.861624 -0.207659 -0.698234 0.744844 -0.637617 0.443093 1.035143 0.424425 0.485794 0.244791 -0.801859 0.416087 1.264548 -0.368082 0.473488 -0.322751 -1.042916 1.535842 -0.224143 0.435451 -0.405523 -0.212843 -0.028988 -0.456724 0.460038 1.137431 -0.194994 0.271899 0.157268 0.224133 -0.431805 -1.232351 -1.537601 -0.120648 1.482400 1.187361 1.688941 -0.941489 0.077730 0.187245 0.521076 0.033832 -0.515631 0.307557 -0.393456 0.604733 -2.778200 -1.476214 1.781281 0.858332 0.505840 0.021901 0.310112 0.398238 0.090092 -0.717139 -0.800360 0.457717 0.311560 -0.500895 -0.144667 0.200479 -1.179334 -0.329208 0.340698 0.130313 0.638392 -0.966835 0.243969 -0.905040 -0.411714 -0.923200 0.738875 -0.785999 -0.261419 -0.090922 -0.100795 0.035615 0.358083 0.212832 -0.123347 -0.151214 -0.302751 -0.200631 -0.178348 0.473181 0.055441 1.176864 1.624189 -0.678728 -0.195396 0.100603 -0.657523 2.356053 -0.944716 0.062458 0.077570 1.010684 0.531228 0.476220 0.962351 -0.443638 -0.144755 -1.136985 -0.116043 0.661908 0.458987 -1.621977 -0.596992 -1.535767 0.124102 -0.298137 1.454064 -0.163007 1.925799 -0.751309 0.238588 -1.616759 0.144521 0.758601 -0.070297 1.008885 0.407647 -0.759943 -0.587033 -0.454255 -0.829835 0.591095 -0.227612 -0.519609 -0.563759 -0.022058 -0.025887 -0.761964 0.372026 0.742320 -0.662993 0.868381 -0.353867 0.018059 -0.683063 0.048470 0.254228 0.277749 -0.572239 1.001948 0.050869 1.606895 -0.030494 0.705235 -0.511769 0.853571 -0.651130 -1.227964 -0.573975 1.213024 0.927294 0.287797 0.386000 0.285539 0.103492 0.767235 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.190719 0.110608 0.702420 0.243666 -0.289667 -0.495512 -0.141083 -0.889456 0.478234 0.309899 0.646335 0.079299 0.602388 -0.340275 -0.065445 -0.202812 0.402497 0.007103 0.138192 -0.178370 -0.007946 0.736411 -0.041431 -0.066541 0.078910 -0.478303 0.539064 0.073532 0.392090 0.658157 0.131137 -0.007236 -0.294270 0.150853 -0.020336 0.068991 0.080225 0.319216 -0.300397 -0.185470 0.045359 -0.340476 0.419159 0.059717 0.417796 -0.077409 -0.049620 -0.044304 -0.227396 -0.311990 -0.060400 -0.010699 -0.312282 0.293526 -0.041687 -0.328356 0.097564 0.228373 0.116827 -0.479584 0.173578 -0.346680 -0.146967 0.012445 -0.381401 0.093694 -0.405817 -0.289504 -0.112228 -0.440489 0.186945 0.099537 0.227818 0.001388 -0.873936 0.081849 0.158159 -0.017970 0.359021 0.364787 -0.076750 -0.291318 -0.374680 -0.466619 0.434531 0.388259 0.042445 0.257312 -0.525610 -0.075308 0.085966 0.108331 0.238561 0.291626 -0.315060 0.143802 -0.243701 -0.086937 0.163624 -0.834832 0.108208 -0.369551 0.095927 0.164709 -0.190552 0.002419 -0.095972 0.205563 -0.149236 -0.406500 0.365441 -0.282179 -0.172015 0.583045 -0.188536 -0.276893 -0.373001 -0.023846 0.245187 0.275588 0.049784 0.190930 0.178706 0.238349 0.409487 -0.525342 -0.124524 0.555543 0.210562 0.111249 -0.014637 -0.258465 -0.179960 0.228114 -0.447861 -0.797040 -0.350535 0.225056 0.449807 -0.192923 -0.189086 0.153780 -0.352980 0.213197 0.560124 0.178725 0.169485 0.225937 -0.410945 0.149319 0.439372 -0.203495 0.252923 -0.040388 -0.293801 0.385476 -0.082934 0.222191 -0.246147 0.035741 0.031028 -0.273319 0.099195 0.559440 0.008453 0.333100 -0.246573 0.167898 -0.365446 -0.613967 -0.775498 -0.148707 0.867175 0.410988 0.526989 -0.422763 -0.128849 0.161633 0.487226 0.091390 -0.346291 0.243551 -0.231932 0.332757 -1.107075 -0.699517 0.789188 0.613111 0.336667 -0.096025 0.045162 0.257883 -0.341716 -0.327579 -0.361885 0.200340 -0.095691 -0.675703 -0.303818 0.117685 -0.548141 -0.160038 0.155113 0.055819 0.288647 -0.150428 0.350379 -0.092322 -0.002165 -0.357570 0.547181 -0.233510 -0.216440 -0.147786 0.018893 0.150698 0.236553 -0.141285 0.008966 0.233029 -0.227775 -0.042607 0.032070 0.119955 -0.028380 0.708261 0.610307 -0.239631 -0.186400 -0.067956 -0.370426 0.934820 -0.392525 0.033284 0.016975 0.232553 0.177604 0.265629 0.462102 -0.274176 -0.286599 -0.613963 -0.378618 0.185293 0.343724 -0.378709 -0.573935 -0.643532 0.202242 -0.164250 0.653008 0.033896 0.958841 -0.322945 0.194914 -0.639790 0.045213 0.364131 -0.145011 0.539510 0.129244 -0.302847 -0.301820 -0.191832 -0.502001 -0.089165 -0.111697 -0.266555 -0.195821 -0.222614 0.250445 -0.235898 0.075066 0.116815 -0.102367 0.579474 -0.073621 -0.018742 -0.476800 0.239787 0.133175 0.036916 -0.342408 0.469885 0.148200 0.879095 -0.119807 0.181158 -0.197570 0.364620 -0.344566 -0.546591 -0.240606 0.607893 0.592166 0.328404 -0.090965 0.068355 -0.060182 0.329771 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.316071 0.052052 0.570948 0.163238 -0.266063 -0.538691 -0.148256 -0.674916 0.304490 0.234810 0.653172 0.029852 0.509464 -0.253783 0.072097 -0.125415 0.375049 -0.113011 0.132320 -0.181299 -0.023057 0.515537 0.112253 -0.038603 0.089915 -0.295166 0.349316 0.087756 0.152160 0.547731 0.121486 -0.020238 -0.266748 0.123976 -0.003203 0.185815 0.150189 0.270878 -0.166348 -0.100197 0.000267 -0.296183 0.353408 0.020937 0.415146 0.059687 0.032109 0.020211 -0.341952 -0.352185 -0.063268 0.066606 -0.368690 0.220973 -0.012945 -0.236146 0.153460 0.123295 0.011577 -0.620157 0.095321 -0.333407 -0.164635 0.029336 -0.280336 0.120756 -0.286754 -0.239443 -0.070941 -0.323842 0.210324 0.089533 0.173748 0.201106 -0.565860 0.053140 0.136709 0.037325 0.277201 0.174791 -0.124861 -0.212852 -0.284360 -0.388650 0.370823 0.166715 0.155066 0.202670 -0.473218 0.114993 0.054824 0.066852 0.171846 0.201183 -0.219153 0.072758 0.048053 -0.122565 -0.003332 -0.642966 0.102568 -0.287831 0.067075 0.251300 -0.124835 -0.104867 -0.429442 0.195602 -0.316362 -0.396332 0.359359 -0.278601 -0.229777 0.357309 -0.333559 -0.087421 -0.275381 -0.020293 0.315575 0.286396 0.084290 0.191523 0.082096 0.265474 0.279975 -0.416275 -0.131330 0.291765 0.380113 0.098156 0.034378 -0.199354 -0.210979 0.228870 -0.515985 -0.639441 -0.341944 0.297132 0.436976 0.020602 -0.335524 0.206970 -0.314290 0.233682 0.480784 0.259621 0.097301 0.155815 -0.401759 0.135111 0.321508 -0.249276 0.371873 0.128293 -0.203484 0.334332 -0.132885 0.158244 -0.016774 -0.026849 -0.016850 -0.205277 -0.051695 0.436905 0.277351 0.352606 -0.231097 0.181666 -0.271794 -0.541998 -0.691092 -0.113464 0.768792 0.269171 0.410377 -0.391651 -0.158930 0.110299 0.464545 -0.053548 -0.425803 0.075220 -0.139402 0.256026 -0.955510 -0.553524 0.779063 0.552599 0.353594 0.024700 0.081080 0.281292 -0.352908 -0.184992 -0.283320 0.208988 -0.186762 -0.566410 -0.263832 0.092722 -0.504341 -0.163185 0.021718 0.110900 0.102007 -0.081264 0.256643 0.037464 -0.010162 -0.103504 0.242238 -0.199705 -0.273429 -0.088642 -0.018112 0.235573 0.111660 -0.134131 0.054614 0.201303 -0.393642 -0.095850 0.066280 0.220468 0.154553 0.773305 0.522545 -0.193151 -0.113860 -0.115516 -0.365057 0.648575 -0.300158 0.066804 -0.050840 0.314183 0.257613 0.131889 0.472309 -0.211842 -0.314454 -0.504820 -0.300813 0.261290 0.343410 -0.279025 -0.570030 -0.628802 0.212463 -0.023340 0.636521 -0.091638 0.783940 -0.199693 0.167490 -0.592092 0.052483 0.246757 -0.145683 0.296423 0.099681 -0.222858 -0.398355 -0.176020 -0.488655 -0.123356 -0.062749 -0.132283 -0.099234 -0.218139 0.249643 -0.245630 0.006535 0.031826 -0.040014 0.498814 0.220194 -0.052207 -0.363240 0.204737 0.200245 0.032946 -0.304895 0.499374 0.194019 0.865315 -0.062904 0.144118 -0.151274 0.296685 -0.210306 -0.327071 -0.174441 0.515681 0.636885 0.205141 -0.008836 0.110703 -0.028649 0.281137 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.265554 0.305489 1.167746 0.936390 -0.851224 -1.288118 -0.269895 -1.231194 0.770315 0.316737 0.885260 0.298002 0.877668 -0.497061 -0.141351 -0.352769 0.739110 0.198989 0.001293 -0.474813 -0.508541 1.396584 0.278441 -0.707950 0.235553 -0.702086 1.195330 0.443502 0.622652 1.270331 0.187892 0.072125 -0.392837 0.505365 -0.285785 -0.112365 -0.367289 0.530857 -0.568533 -0.160586 0.455220 -0.461920 1.120391 0.287067 0.521407 0.259137 0.265375 0.052490 -0.649318 -0.477933 -0.372904 0.041838 -0.572280 0.697048 -0.430967 -0.175967 0.528266 0.142283 0.227227 -0.930612 0.225232 -0.420288 -0.530121 -0.081110 -0.958004 0.000817 -0.714351 -0.843748 -0.149794 -0.602111 0.406179 0.136584 0.016862 -0.551319 -1.510575 0.059802 0.273830 0.249106 0.749912 0.695945 -0.370047 -0.423087 -0.892064 -0.809627 0.577967 0.146459 0.216658 0.571966 -0.685806 -0.645171 0.172741 0.280843 0.379581 0.522467 -0.431776 0.428639 -0.310637 -0.197701 -0.084140 -1.228976 0.207923 -0.497873 0.238532 0.233805 -0.395492 -0.017069 -0.164880 0.174475 -0.195210 -0.772441 0.401518 -0.636729 -0.326446 1.003404 -0.150677 -0.578544 -0.454709 -0.100484 0.338082 0.741029 0.125676 0.089539 0.589174 0.500858 0.533874 -0.867472 -0.059775 0.498219 0.257942 0.308950 0.295068 -0.264010 -0.513622 0.295904 -0.588234 -1.441746 -0.317245 0.578670 0.768625 -0.222627 -0.523306 0.558447 -0.732015 0.352707 0.872647 0.463655 0.493382 0.144946 -0.711081 0.387787 1.146438 -0.345922 0.443598 -0.283810 -0.914774 1.314301 -0.147235 0.429628 -0.389225 -0.280223 -0.032600 -0.341621 0.370304 1.046381 -0.121078 0.207350 0.251714 0.167156 -0.471998 -1.079952 -1.372073 -0.031171 1.407919 1.003843 1.459393 -0.888907 0.080545 0.094141 0.549607 0.048440 -0.458597 0.296314 -0.302942 0.558541 -2.429005 -1.280492 1.577909 0.877094 0.418581 -0.065958 0.204435 0.337264 -0.016688 -0.775772 -0.734742 0.335633 0.114524 -0.540950 -0.242038 0.222081 -1.065683 -0.150445 0.350364 0.159973 0.732132 -0.823176 0.196385 -0.772758 -0.406150 -0.944516 0.630618 -0.687625 -0.210958 0.055216 -0.117621 0.042272 0.349974 0.193363 -0.213406 -0.079242 -0.322337 -0.154817 -0.161305 0.488432 0.007945 1.146109 1.315371 -0.527255 -0.166480 0.157332 -0.645935 2.213586 -0.869910 0.172530 0.117645 0.937644 0.421547 0.470761 0.905652 -0.430252 -0.174403 -1.068906 -0.180946 0.564924 0.420294 -1.410822 -0.610280 -1.446591 0.160731 -0.277914 1.309771 -0.165529 1.732498 -0.564826 0.252572 -1.384967 0.122925 0.640369 -0.077802 0.945483 0.391942 -0.755416 -0.479016 -0.401088 -0.863534 0.507605 -0.166379 -0.384417 -0.475304 0.116649 -0.098296 -0.578102 0.318507 0.679309 -0.671383 0.790023 -0.339932 0.021923 -0.600942 -0.034625 0.451982 0.177066 -0.536720 0.910726 0.109200 1.495085 0.071746 0.633466 -0.392925 0.582874 -0.417880 -1.085680 -0.604126 1.132682 0.781517 0.359092 0.323933 0.278687 0.132886 0.694920 -PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.117910 0.269213 0.803153 0.631896 -0.722015 -1.045162 -0.159160 -1.041567 0.531445 0.224439 0.658279 0.196102 0.663916 -0.385849 -0.099453 -0.183441 0.555561 0.196206 0.033243 -0.367681 -0.490780 0.931580 0.061455 -0.360889 0.206604 -0.377142 0.925145 0.346130 0.458667 0.860513 0.209962 0.003332 -0.389099 0.332344 -0.106337 -0.035696 -0.266251 0.422884 -0.465404 -0.069071 0.256198 -0.537039 0.839915 0.194623 0.375672 0.176376 0.219263 0.114164 -0.475263 -0.343893 -0.289464 0.012545 -0.417826 0.513281 -0.316741 -0.276162 0.383291 0.198377 0.200754 -0.507700 0.113789 -0.493064 -0.418213 -0.036828 -0.722423 -0.033290 -0.603099 -0.675479 -0.142165 -0.431851 0.278428 0.073253 -0.031441 -0.284190 -1.182555 -0.039591 0.247671 0.181009 0.575607 0.539130 -0.144724 -0.355975 -0.730076 -0.599126 0.479707 0.138879 0.218453 0.387890 -0.648023 -0.417090 0.146277 0.216343 0.404695 0.344454 -0.330804 0.271499 -0.346715 -0.157818 -0.135831 -1.117156 0.228808 -0.309671 0.232420 0.038124 -0.323917 -0.045605 -0.122041 0.127645 -0.126869 -0.598830 0.257341 -0.532518 -0.152753 0.794558 -0.079395 -0.471857 -0.400950 -0.129591 0.247003 0.447578 0.204773 0.006507 0.434332 0.353155 0.466410 -0.654110 -0.171171 0.358689 0.136026 0.251224 0.165850 -0.149589 -0.357699 0.269367 -0.517904 -1.102457 -0.265909 0.391698 0.560652 -0.206021 -0.236284 0.323603 -0.584540 0.160968 0.614986 0.367998 0.374043 0.149882 -0.485669 0.226062 0.725678 -0.217806 0.311185 -0.161124 -0.578742 0.842682 -0.018533 0.237392 -0.242320 -0.238119 -0.080798 -0.200596 0.215225 0.722493 -0.082380 0.109922 0.154999 0.185989 -0.518476 -0.745006 -0.974031 0.063288 1.170269 0.738033 0.933841 -0.709487 0.080393 0.146008 0.410885 0.055913 -0.373101 0.257198 -0.242590 0.446531 -1.646551 -0.891686 1.089772 0.555912 0.327518 -0.104743 0.048915 0.229641 -0.216757 -0.608070 -0.597627 0.212282 0.024295 -0.600087 -0.268552 0.177517 -0.814307 -0.035443 0.281846 0.161297 0.559879 -0.516878 0.283311 -0.595072 -0.190950 -0.694902 0.525087 -0.407352 -0.114082 0.058979 -0.101914 0.077450 0.274190 0.122191 -0.122123 -0.083088 -0.260033 -0.068056 -0.105787 0.324030 -0.062148 1.009454 0.912644 -0.418660 -0.142224 0.041319 -0.512632 1.515197 -0.595374 0.196778 0.084385 0.697550 0.303702 0.327555 0.780172 -0.357971 -0.222406 -0.784381 -0.337004 0.446105 0.336088 -0.849608 -0.418406 -1.166135 0.158386 -0.262465 0.991759 -0.114075 1.185853 -0.408249 0.239222 -0.889174 0.099063 0.399487 -0.108891 0.713919 0.216475 -0.544679 -0.148394 -0.301421 -0.722484 0.216206 -0.088315 -0.154979 -0.349727 0.109725 -0.140354 -0.356259 0.143378 0.370714 -0.521968 0.570949 -0.299739 0.051958 -0.397714 0.034796 0.479283 0.072780 -0.440807 0.680656 0.163873 1.200743 0.181246 0.397507 -0.218499 0.348777 -0.277593 -0.808565 -0.470392 0.806168 0.599882 0.308455 0.176473 0.243731 0.143714 0.495999 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.026378 0.290834 0.431766 0.602097 -0.543837 -0.920955 -0.086049 -0.609164 0.203965 0.025581 0.397343 0.045310 0.426737 -0.183960 -0.036412 -0.051992 0.390062 0.356290 -0.053231 -0.281086 -0.630200 0.514433 0.024548 -0.374824 0.159533 0.072589 0.667497 0.394790 0.170507 0.507680 0.135388 0.060245 -0.167090 0.243431 -0.230163 -0.109811 -0.357990 0.342405 -0.295247 -0.028478 0.202604 -0.448592 0.605598 0.164407 0.081338 0.348549 0.316390 0.133492 -0.387287 -0.167922 -0.304171 0.045330 -0.271069 0.349205 -0.440141 -0.194768 0.468250 0.143005 0.177298 -0.357454 0.078812 -0.323923 -0.433996 -0.085481 -0.569351 -0.045280 -0.343879 -0.667629 -0.075956 -0.076394 0.199038 0.003116 -0.208516 -0.292354 -0.730270 -0.108673 0.224734 0.177177 0.410673 0.294909 0.011696 -0.256246 -0.582970 -0.371309 0.433930 -0.185046 0.344589 0.365270 -0.390055 -0.389956 0.140606 0.195441 0.357179 0.186481 0.011362 0.269548 -0.177520 -0.087399 -0.289486 -0.775983 0.197289 -0.140106 0.180053 0.010945 -0.177987 0.035988 -0.090021 0.092653 -0.106500 -0.531587 0.022020 -0.469481 -0.134283 0.450422 0.007246 -0.359265 -0.096786 -0.129625 0.132047 0.325697 0.256675 -0.048732 0.325189 0.225415 0.179128 -0.430158 -0.138396 -0.004282 0.031221 0.266623 0.195159 -0.061900 -0.350467 0.158994 -0.438330 -0.764140 -0.078117 0.341771 0.359929 -0.174545 -0.288697 0.471559 -0.421186 -0.026340 0.341712 0.378989 0.258739 0.006952 -0.284417 0.127950 0.413813 -0.200951 0.271345 -0.052676 -0.455986 0.594155 0.133110 0.015342 -0.065369 -0.369081 -0.060524 -0.028439 0.146062 0.482391 0.016099 -0.058481 0.342381 0.112185 -0.504633 -0.484380 -0.529461 0.178332 0.823993 0.466558 0.720473 -0.516413 0.065975 0.164144 0.191085 -0.178565 -0.199145 0.075174 -0.126673 0.320543 -1.133372 -0.614410 0.678171 0.025654 0.207634 -0.076429 0.005352 0.112333 0.002885 -0.432912 -0.411984 0.114518 0.112712 -0.299774 -0.210037 0.071428 -0.603194 0.122673 0.208591 0.182266 0.266246 -0.403628 0.100405 -0.696360 -0.217577 -0.478609 0.169914 -0.330317 0.099168 0.128963 -0.143607 0.007910 0.096544 0.154712 -0.139306 -0.240195 -0.194921 -0.049993 -0.180808 0.289501 0.031043 0.878717 0.664129 -0.360330 -0.025629 0.072748 -0.377148 1.075317 -0.373158 0.222203 0.052010 0.760876 0.190643 0.174036 0.695634 -0.212030 -0.171117 -0.581639 -0.301320 0.494742 0.142516 -0.566706 0.024204 -0.907207 0.034105 -0.205805 0.842448 -0.224683 0.682842 -0.254691 0.171426 -0.509542 0.110198 0.144923 -0.165372 0.419936 0.187797 -0.403647 -0.086571 -0.213802 -0.472222 0.096173 -0.060138 -0.033085 -0.259880 0.250888 -0.465461 -0.277033 0.068883 0.287755 -0.422028 0.198914 -0.268637 0.058598 -0.082261 -0.039197 0.526414 0.019940 -0.342783 0.438624 0.157103 0.946546 0.344545 0.370890 -0.197988 0.096331 -0.069403 -0.455004 -0.381623 0.542788 0.387211 0.119348 0.325445 0.348208 0.237049 0.371527 -PE-benchmarks/vertex-cover-problem.cpp___GLOBAL__sub_I_vertex_cover_problem.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/largest-sum-contiguous-subarray.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = 0.304878 1.993604 7.189024 6.421054 -4.946545 -6.445461 -1.834885 -6.343671 3.734834 0.546494 3.975669 -0.204034 1.917958 -0.385276 -0.837512 -0.773889 2.830903 1.107212 -0.908534 -2.397113 -3.861656 6.942803 2.202448 -5.307103 1.203236 -4.842728 4.006982 3.154231 3.576789 3.970373 0.467096 -0.132008 -0.512724 2.680206 -3.413656 -1.141671 -1.999361 1.473722 -4.271381 -0.711560 2.228552 -0.886952 5.366515 -0.050560 2.091598 1.006569 4.293627 0.058316 -4.520936 -1.012941 -3.580212 4.726094 -1.680359 3.388859 -0.508379 0.946342 1.852515 -2.896438 -0.456347 -2.854629 0.064929 0.291678 -3.364052 -0.502445 -5.026489 0.161201 -2.109767 -3.947357 1.873805 -1.590524 2.394143 0.331289 -0.368668 -3.938224 -6.274560 1.416292 1.192468 2.322558 2.169149 2.702198 0.468983 -0.150177 -4.095949 -3.028256 2.147275 0.397123 1.205456 0.918715 -1.854426 -3.476427 1.061809 0.333008 0.140378 2.913437 -3.623739 2.942710 -2.594611 -1.665330 -3.556095 -5.379843 -0.072248 -2.964075 2.012273 1.475548 -2.360168 1.659205 1.459176 1.186658 0.695440 -5.257735 -0.338808 -1.827456 -0.195349 5.828880 -1.531996 -3.045746 -1.011278 -0.229847 -1.499156 3.478942 0.081573 1.089276 4.769286 2.770485 2.540156 -3.709914 0.007652 0.815254 1.451204 2.494813 3.113758 -2.172796 -2.500714 -0.005661 -0.560545 -8.184125 -0.809183 3.037371 4.240879 0.560195 -3.614024 1.233125 -2.434066 4.072836 2.405276 2.267907 2.244338 -0.196576 -2.596100 1.837380 7.617526 -2.149296 2.775547 -3.420628 -5.113458 5.956446 -0.559203 2.930022 -0.898707 -0.310435 0.943597 -3.419978 1.235291 5.347741 -0.480480 -1.044939 3.302414 0.232942 -1.916943 -6.703981 -7.048096 0.757939 3.210651 2.613779 8.708825 -4.579171 -1.989361 -0.836542 3.081466 -1.280766 -1.440991 1.273508 -2.868834 2.271022 -10.020782 -7.256050 7.429542 5.278444 0.616019 -0.014404 4.001861 0.779027 -1.822392 -4.259817 -4.044724 2.509130 2.515947 -1.576364 -0.621322 0.353596 -5.416207 0.013604 1.231550 1.172219 3.632999 -3.956902 0.048101 -3.826523 -5.451640 -4.410682 3.293769 -4.839544 -0.437962 0.826110 -0.143734 -0.554791 2.759837 0.004810 -2.602861 -0.852361 -2.304857 -0.771025 -0.353449 3.309935 -0.268246 6.208099 7.455033 -0.727817 4.110195 1.479266 -3.459699 12.036818 -4.520978 -0.076678 -0.427259 4.095903 -0.468507 2.410638 3.603888 -1.737682 -2.092221 -4.547800 1.288180 0.368430 1.372326 -7.475170 -2.753349 -6.831309 -1.686801 0.055314 5.431138 0.267112 8.657494 -2.728758 0.942709 -10.169513 0.400762 3.437101 0.458108 4.791666 2.322856 -4.541526 -4.551340 -0.951851 -3.215933 2.927809 -0.998554 -4.485676 -3.471666 -1.053912 0.989824 -2.683894 2.160352 5.807393 -2.533992 3.383281 -1.097692 -0.699370 -1.317103 -1.647520 3.696151 1.441873 -2.843717 4.988436 -0.303123 10.502506 0.656120 3.517797 -3.245987 0.783297 -0.558949 -4.615650 -2.607782 5.251433 3.518879 1.343867 0.716328 0.469375 -1.672714 3.293679 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.084909 0.901679 2.607483 1.499600 -1.632639 -2.492267 -0.766889 -2.954825 1.223533 0.475921 1.896731 -0.254756 1.077486 0.040336 -0.113983 0.090578 1.236133 0.072470 0.131052 -0.972849 -1.493662 2.576119 0.497123 -0.812642 0.485984 -1.814304 1.484958 0.915811 1.265770 1.534981 0.340823 -0.069560 -0.376894 0.889275 -0.818028 -0.043851 -0.398089 0.765842 -1.413332 0.186727 0.447393 -0.689848 1.910403 0.093688 0.923742 0.651409 1.211815 0.220180 -1.410243 -0.615688 -1.090455 1.453860 -0.819830 1.079239 -0.328633 -0.232642 0.578503 -0.617206 -0.135949 -0.681803 -0.173188 -0.460153 -1.214576 0.059366 -1.751320 0.238719 -1.236166 -1.387367 0.344142 -0.425208 0.987221 0.205412 -0.129646 -0.613718 -2.622171 0.475851 0.561917 0.697601 0.859038 0.555486 0.092443 -0.005633 -1.708359 -1.498529 1.229846 0.708533 0.643485 0.180027 -1.180112 -0.862757 0.137453 0.180360 0.407703 1.219394 -1.199117 0.914722 -0.939884 -0.742344 -1.422770 -2.651619 0.099385 -1.147366 0.813282 0.298672 -0.678247 0.189617 -0.056112 0.483999 -0.073079 -2.023384 0.115602 -0.809972 -0.168267 2.263255 -0.624327 -0.931351 -0.746389 -0.276339 -0.187536 1.189087 0.433379 0.344832 1.743559 1.153945 0.928225 -1.392796 -0.420979 0.344829 0.605562 0.777350 1.058217 -0.949725 -1.107432 0.265975 -0.769329 -2.991513 -0.624392 1.096945 1.532735 -0.340052 -0.862834 0.571960 -1.083456 1.227117 1.316993 0.793273 0.751582 -0.049128 -1.070721 0.800944 2.557306 -0.907239 1.236080 -1.131722 -1.521469 2.095069 -0.349526 0.932781 -0.058872 -0.112195 -0.198640 -1.091597 0.287169 1.940290 0.139328 0.071278 0.864321 0.251092 -0.871429 -2.108666 -2.654278 0.228650 1.810780 0.797465 2.677297 -1.709732 -0.653583 0.049274 1.368430 -0.127507 -0.924632 0.584017 -0.953943 0.841789 -3.515925 -2.521170 2.732077 2.061172 0.612335 -0.130722 1.095845 0.708139 -1.268135 -1.624752 -1.486677 1.151005 0.282779 -1.554409 -0.757472 0.287731 -2.003815 0.091167 0.083410 0.613422 1.278032 -0.875992 0.477664 -1.151540 -1.671506 -1.394670 1.330259 -1.421398 -0.452965 0.223660 -0.155950 -0.073641 0.883448 -0.159982 -0.526211 -0.000625 -1.150853 -0.126126 0.180211 1.053830 -0.084953 2.744984 2.562335 -0.418111 1.053337 0.168527 -1.224737 3.546382 -1.414041 0.189431 -0.167286 1.369898 -0.218095 0.847494 1.642605 -0.625427 -1.406285 -1.769473 0.081372 0.340410 0.640266 -1.644398 -1.308128 -2.736002 -0.257108 0.031793 2.595544 0.101926 3.113246 -0.837115 0.679525 -3.227610 0.281716 0.791136 -0.073905 1.710210 0.667368 -1.509233 -1.036658 -0.442943 -1.623940 0.055726 -0.226997 -1.396577 -1.265058 -0.522248 0.331112 -0.934802 0.383542 1.468812 -0.692808 1.393485 -0.033721 -0.366349 -0.914282 -0.069594 1.977194 0.189898 -1.098551 1.749889 0.153363 4.056262 0.204531 1.204819 -0.872180 0.123464 -0.075927 -1.636184 -0.917938 2.074080 1.613994 0.576721 0.090106 0.139449 -0.105811 1.127788 -PE-benchmarks/largest-sum-contiguous-subarray.cpp___GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -2.536685 1.780497 12.977814 8.255749 -3.110125 -6.089064 -2.995765 -6.947808 5.689609 2.341480 7.764460 0.206419 3.722159 1.301541 -0.061043 -3.029594 3.033726 -1.633248 -0.746569 -2.341422 -0.165682 10.506049 6.215160 -9.250941 0.224684 -10.803210 5.175874 3.203645 4.329970 7.997946 -0.168105 0.590686 0.916179 4.501664 -6.811043 -1.849414 -1.573528 2.558925 -2.822628 -2.788795 4.337062 3.863958 5.380828 1.030335 4.355231 2.276896 5.407229 -2.047506 -4.504858 -2.478494 -4.975749 7.297241 -4.371445 4.035316 -1.248098 4.222658 1.891411 -5.675034 -1.549791 -10.917779 2.185547 4.775549 -4.397038 -1.081818 -6.066423 1.536482 -1.239975 -3.643773 2.338907 -2.676292 5.009630 1.077459 1.917997 -6.370202 -7.765071 3.750677 -1.072460 2.274598 2.940752 1.287652 -4.404768 0.975255 -3.187126 -4.989200 2.989643 0.971164 -0.002995 1.152781 0.657578 -3.198863 -0.791035 0.309553 -3.514677 6.277962 -4.937564 6.126186 0.210369 -1.551270 -2.101374 -1.189994 -1.316414 -7.301885 1.399511 6.620066 -1.789420 1.711696 -1.141108 1.602982 -1.122924 -7.211506 1.623136 -1.533048 -2.611047 5.126357 -5.234399 -1.589407 0.832329 1.024886 0.814438 7.175490 -1.759210 3.472066 6.099643 4.161148 2.265013 -5.645320 2.611217 2.814234 4.740042 3.629964 4.164666 -5.310031 -3.747414 -0.753527 -0.023592 -11.357331 0.891770 5.996628 5.761344 1.648834 -10.481100 4.412185 -2.789408 7.538445 6.619853 4.788426 3.166033 0.313478 -4.427701 2.820375 13.888504 -4.539732 5.540816 -4.042108 -7.674369 10.768938 -4.427055 7.023752 -0.953109 2.222008 3.252364 -7.239300 0.437070 9.602978 2.102945 3.261455 5.185800 -0.674083 1.725273 -11.407627 -10.500054 -3.291686 3.539280 2.537274 14.028104 -5.255332 -2.986482 -1.584363 5.666237 -2.573465 -2.704864 -0.071351 -2.201450 2.486929 -17.615045 -11.047420 11.549257 9.753148 0.685583 0.679625 7.627431 2.791114 1.374781 -4.196286 -4.219619 4.986445 2.145190 2.050269 1.421858 -0.439595 -7.560299 -2.199763 0.532784 0.458608 3.429832 -6.257187 -3.059319 -0.839531 -9.044852 -4.944309 2.571690 -8.896188 -4.249563 -0.981398 0.935168 -0.875431 1.589902 -0.882769 -3.033998 2.798206 -4.511356 -2.694947 1.335863 4.605444 2.137423 6.931574 9.417405 -0.339997 3.829503 2.801427 -3.827667 18.149108 -6.236943 -2.890243 -0.361132 6.291262 0.053041 4.045667 2.159669 -2.185354 -3.306084 -7.452139 6.007989 0.010565 2.528338 -10.843659 -5.462232 -5.942634 -2.507002 2.452425 8.443334 -0.421859 15.520026 -2.455588 1.608153 -16.191320 0.400858 6.244042 0.291443 4.964316 5.247466 -5.935118 -10.380378 -2.029406 -1.938170 5.667145 -1.476265 -8.746978 -4.593653 -3.964376 2.888101 -6.004625 4.519206 8.223644 -1.989421 5.268956 0.954747 -1.760864 -2.988202 -1.659947 2.177843 3.953908 -4.782495 7.880190 -2.730594 13.851689 -4.229585 6.981074 -6.216026 3.877143 -2.754066 -3.880191 -2.513850 9.546426 5.817925 2.036033 1.536084 -0.525210 -3.540434 4.814068 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.567949 0.849549 3.908194 1.996090 -1.344146 -2.610449 -1.030329 -3.087420 1.711679 0.848210 2.722115 -0.081745 1.527022 0.331080 0.055033 -0.432622 1.407940 -0.474303 0.095743 -1.062839 -0.706841 3.429373 1.430203 -1.832607 0.365177 -3.155657 1.800138 1.019221 1.422864 2.556484 0.236731 0.124195 -0.152280 1.323310 -1.585450 -0.215887 -0.322195 0.956959 -1.219304 -0.227292 0.963641 0.412838 2.078718 0.390858 1.464371 1.018828 1.429941 -0.154114 -1.493293 -1.006633 -1.376281 1.972630 -1.361569 1.330787 -0.543364 0.571178 0.660634 -1.267587 -0.339308 -2.516916 0.319563 0.533829 -1.477419 -0.082080 -2.063363 0.489621 -1.063478 -1.410578 0.429263 -0.811014 1.556588 0.306245 0.262879 -1.281659 -3.025529 0.914119 0.085729 0.769359 1.098743 0.334134 -1.065779 0.169494 -1.608451 -1.943872 1.347075 0.791957 0.397053 0.367354 -0.713748 -0.976906 -0.227562 0.174210 -0.315584 1.912829 -1.521605 1.560864 -0.272092 -0.766670 -1.124215 -1.745534 -0.094382 -1.992310 0.683971 1.354532 -0.552179 0.193257 -0.625556 0.591410 -0.475675 -2.382985 0.625862 -0.774221 -0.735193 2.227885 -1.382171 -0.709541 -0.455537 -0.042948 0.311622 2.132595 -0.006406 0.796609 2.045310 1.505340 0.881834 -1.843707 0.154561 0.759572 1.337882 1.021620 1.360246 -1.591697 -1.419630 0.150779 -0.746156 -3.726734 -0.308303 1.730534 1.977002 -0.074052 -2.386739 1.313486 -1.263968 1.997176 2.210190 1.340535 1.005907 0.012197 -1.572878 1.048145 4.023395 -1.428936 1.847386 -1.313059 -2.171722 3.218361 -1.125750 1.822669 -0.111068 0.287259 0.266186 -1.823665 0.228043 2.889351 0.677792 0.947489 1.288372 0.089776 -0.117211 -3.148755 -3.551848 -0.645689 1.907282 0.921787 3.996843 -1.924838 -0.816130 -0.278053 1.943195 -0.434309 -1.212877 0.317941 -0.849539 0.895894 -5.354846 -3.358510 3.818512 3.180241 0.712719 0.025937 1.906120 1.103627 -0.477585 -1.655101 -1.531752 1.652516 0.259812 -0.721718 -0.251581 0.140551 -2.542558 -0.439532 -0.036369 0.497311 1.298039 -1.482108 -0.167570 -0.651081 -2.499120 -1.634028 1.126582 -2.336157 -1.219433 -0.067092 0.030277 -0.170183 0.651987 -0.291547 -0.677619 0.742320 -1.622572 -0.556703 0.480552 1.439399 0.461874 2.869404 3.068472 -0.355079 1.052471 0.468932 -1.415187 5.111866 -1.870041 -0.330469 -0.160279 1.931424 0.015472 1.185971 1.350231 -0.733274 -1.527247 -2.433591 1.135031 0.365612 0.925735 -2.621911 -1.958527 -2.714179 -0.404903 0.449733 3.348859 -0.104181 4.693220 -0.851897 0.816672 -4.664598 0.311644 1.473316 -0.062294 1.715860 1.324339 -1.897570 -2.410685 -0.642873 -1.510478 0.771916 -0.332032 -2.308618 -1.546233 -1.045357 0.756529 -1.694997 0.929763 2.175560 -0.711483 1.857477 0.349085 -0.579878 -1.281525 -0.191152 1.628851 0.747727 -1.524632 2.380641 -0.341245 4.782865 -0.749928 2.044225 -1.490163 0.866566 -0.578730 -1.653247 -1.002171 3.038761 2.139445 0.701123 0.392396 -0.063421 -0.442947 1.504065 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp___GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.567567 0.438297 1.136213 1.452479 -1.175050 -0.969700 -0.803318 -0.793304 0.469475 -0.016927 0.524359 -0.139099 0.378802 -0.841935 -0.354002 -1.009745 0.376289 -0.171864 -0.385407 -0.851869 -0.649055 0.495188 0.057540 -1.321479 0.171979 -0.891560 1.185413 0.713168 0.004898 0.939597 -0.164881 -0.230012 -0.626701 0.480901 -0.661037 -0.471433 -0.230557 0.165482 -0.380174 0.101161 0.618330 0.549479 1.034768 0.478149 -0.018723 0.829127 0.266365 0.312794 -1.317350 -0.055434 -0.010794 0.407551 0.003558 0.667533 0.372184 0.431662 0.550041 -0.774722 -0.378429 -1.138050 0.362693 -0.269472 -0.234390 -0.321375 -0.839175 -0.371747 -0.273388 -0.888530 -0.066328 -0.491898 0.025061 -0.153932 -0.278328 -1.022543 -0.284535 0.214233 -0.035235 0.501560 0.854717 0.540070 -0.095402 -0.504247 -0.902895 -0.990603 0.175670 -0.174198 0.423639 0.649714 0.264931 -1.188495 0.425355 -0.319855 0.000000 0.350552 -0.174010 0.365292 -0.219611 -0.147778 -0.677152 -0.272719 0.034617 -0.002838 0.167445 0.924372 -0.623448 -0.696878 0.052279 0.360138 -0.416471 0.043405 0.120194 -0.481075 0.098525 1.011988 -0.221899 -0.652627 -0.198810 -0.262241 0.066292 0.831452 -0.110688 0.044187 0.581148 1.164537 0.710287 -0.781877 0.129058 0.038265 0.397831 0.593422 0.655221 -1.088141 -0.343218 0.684230 -0.437190 -0.911017 0.047944 0.020741 0.971542 0.277722 -0.919632 0.618361 -1.032359 0.591565 -0.028880 0.501353 0.470640 -0.619541 -0.897967 0.733855 1.301639 -0.468431 0.601886 -0.601645 -0.846142 0.846600 0.158030 0.187900 0.022184 -0.898376 0.003113 -0.002591 0.502699 1.076609 0.315646 -0.142937 0.361804 0.571206 -0.621632 -1.278403 -1.565925 0.407289 0.600948 0.211466 2.109238 -0.945900 -0.966209 -1.039745 1.218165 -0.248632 -0.182510 0.158354 -0.415227 0.552796 -0.923912 -1.070856 1.861900 0.972208 0.064499 -0.287321 0.903928 -0.430777 0.335002 -1.021461 -0.189742 0.263074 0.298991 0.488018 -0.055559 0.203583 -1.233117 -0.245107 0.490306 0.363867 0.504130 -1.151044 -0.258699 -0.289503 -0.825139 -0.991826 0.330671 -0.911291 0.312419 0.542518 -0.492227 -0.270403 1.113986 0.058813 -0.712555 -0.358028 -0.486122 -0.269749 -0.450170 0.712853 0.502850 1.177942 1.242089 -0.027400 0.920946 0.595695 -0.656606 2.761493 -0.572364 0.093747 0.349993 0.838641 0.316892 0.436633 0.552229 -0.291307 0.385327 -0.964464 0.304123 0.363288 0.584199 -2.228646 -0.549388 -1.409798 0.008501 -0.217087 0.585181 -0.313350 1.400438 -0.028899 -0.039441 -1.549991 0.216731 0.518825 0.175759 -0.173391 0.361449 -0.721833 -1.730456 0.097629 -0.792800 0.448772 -0.605788 -0.059849 -0.247972 0.174819 0.499255 -0.312817 0.685658 1.463340 -0.451014 0.097248 0.011510 -0.168370 -0.310116 -0.475522 0.430608 0.236088 -0.884523 0.896425 -0.076728 1.940079 0.189296 0.668982 -0.757271 0.180622 -0.076907 -1.176121 -0.356062 1.234749 0.149050 0.691101 0.364882 0.692227 -0.575069 0.892051 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -1.387234 0.570896 4.477778 0.819679 0.374842 -1.617110 -0.913234 -3.263130 1.444529 1.431893 3.765025 -0.999894 2.245714 -0.073475 0.843555 0.175263 1.733525 -2.370203 1.404953 -0.834744 1.413377 3.700338 1.485858 -0.597591 -0.259125 -4.659636 0.983302 0.763498 1.324796 2.084868 0.417788 0.104733 0.729150 1.098239 -1.588868 0.515793 1.028099 1.085323 -0.542870 -0.188422 -0.360568 1.918449 0.843658 -0.167560 1.727596 1.041539 2.435384 -0.310800 -1.028017 -1.334917 -1.540296 3.146335 -1.767294 0.310194 0.128205 -0.188819 0.611019 -1.775754 -1.118404 -3.294619 0.186387 1.507115 -1.288527 0.391752 -1.599872 1.234306 -0.433645 -0.156328 0.495655 0.747405 1.642326 1.398231 1.440297 -0.043125 -2.404362 2.087695 -0.214709 0.392289 0.566387 -1.500363 -1.304963 0.847512 -0.823144 -2.425937 2.547488 1.936381 0.751191 -0.382726 -0.274283 0.708783 -1.529289 -0.280931 -1.579988 1.996160 -1.226139 1.235426 1.260094 -0.792620 -1.337781 -0.426620 -0.930288 -2.935606 0.080315 3.014324 0.675320 -0.206136 -3.146877 0.626397 -2.030129 -2.136228 0.902857 -0.971757 -0.887788 1.623805 -3.039453 0.783615 -1.158942 0.769193 1.302891 2.316228 -0.651739 1.871644 2.360752 1.956181 0.207243 -1.727503 0.416417 0.882418 2.784205 0.998058 1.430036 -3.044817 -1.731947 -0.345864 -0.775283 -3.191484 -0.538143 2.133326 1.575691 0.005882 -3.844387 2.112409 -0.562727 3.500685 3.347395 0.887850 0.456489 0.525426 -1.291002 1.673926 4.097535 -2.274639 2.570406 -1.504460 -1.138351 2.736518 -1.939246 1.913065 0.910617 1.080551 -0.167087 -2.498152 -0.402301 3.025584 2.594662 2.332710 0.940226 0.257550 1.947609 -3.399349 -3.778350 -1.031628 0.822882 -0.807885 4.472729 -1.449689 -1.868534 -0.239503 1.724044 -0.662125 -1.883986 -0.411982 -1.067468 0.419666 -4.666386 -3.677471 4.410162 3.355915 0.931750 0.397537 2.519952 2.061157 -1.495907 -0.678549 -0.481810 2.727324 -1.114948 -1.923465 -0.169945 0.732468 -2.986636 -1.340706 -1.321113 0.464887 0.517805 -0.301436 -0.473782 0.561920 -3.294022 0.113388 0.674417 -2.033550 -2.672846 -1.027295 0.135708 0.924039 0.725687 -1.423175 0.297304 2.140100 -3.068173 -1.684635 1.101923 2.107611 1.603566 3.198555 3.127786 0.782712 1.548878 0.260481 -1.259991 2.837091 -0.292197 -1.349758 -0.530926 1.024260 0.254941 1.198425 0.958261 -0.507117 -2.712230 -2.990369 2.213588 0.356110 0.985168 -0.883276 -2.037845 -1.926677 -0.612942 1.873590 4.010847 -0.144914 5.059765 -0.413940 0.479439 -4.824423 0.227183 0.387095 -0.048896 0.847657 1.600527 -1.634046 -2.257402 -0.776308 -1.271481 -1.149447 -0.327854 -2.702393 -1.584854 -2.485122 2.486353 -2.345044 0.581704 1.679577 1.288719 2.062201 2.915623 -0.841389 -1.882724 1.002445 1.601301 1.113913 -1.647271 2.444538 -0.994869 5.446805 -2.390537 1.681309 -2.340780 0.898091 -0.043362 -0.707629 -0.190106 3.552660 2.763963 0.241836 0.433531 -0.722614 -0.765078 2.515392 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.088758 0.389407 0.367174 0.477261 -0.103108 -0.243353 -0.054128 -0.475412 0.053345 0.156126 0.006335 -0.149672 0.443832 -0.194124 -0.083823 -0.274936 -0.037895 0.019813 0.179864 -0.317928 -0.144121 0.470190 -0.057365 -0.204325 -0.031356 -0.378944 0.266025 0.184162 0.324190 0.376310 -0.166191 -0.183549 -0.201024 0.157836 -0.323915 -0.183024 -0.301307 0.163690 -0.338120 0.138617 -0.007024 -0.147127 0.303228 0.326687 -0.133809 0.292889 0.131750 0.109195 -0.135398 0.196959 -0.171977 0.215232 0.008630 0.275632 0.097048 -0.173048 -0.012969 0.006693 -0.035882 -0.265231 0.078970 -0.044505 -0.103421 -0.067166 -0.389308 -0.096351 -0.275246 -0.317099 -0.148152 0.078967 -0.094818 0.268288 0.009409 -0.494600 -0.783246 0.067321 0.055391 0.125408 -0.040651 0.147898 0.041088 -0.081002 -0.471651 -0.521400 0.390747 0.091321 0.017237 0.093118 0.027379 -0.516675 0.277481 0.135655 0.128979 -0.010760 -0.154293 0.386333 -0.408879 -0.101915 -0.164217 -0.296513 -0.071306 -0.065856 0.076038 -0.017107 0.250793 0.004328 0.026210 0.232703 -0.189951 -0.265187 -0.013553 -0.032959 -0.220403 0.445163 -0.090406 -0.226183 -0.064326 -0.177919 0.008034 0.227952 -0.002548 0.103118 -0.093736 0.406739 0.225127 -0.310563 0.136133 0.097947 0.029949 0.260861 0.226549 -0.335464 -0.174202 0.137045 -0.042538 -0.577662 0.020422 0.310688 0.112368 -0.306870 -0.163085 0.224375 -0.284380 0.368389 0.162104 0.002149 0.319195 -0.160767 -0.230754 0.100364 0.672585 -0.441849 0.332102 -0.440305 -0.298924 0.341161 0.107411 0.205529 -0.304635 -0.259840 0.224077 -0.081527 0.149320 0.482263 0.114192 -0.136218 0.073081 0.179491 -0.213514 -0.390386 -0.597767 -0.075054 0.302308 0.044236 0.756505 -0.121405 -0.485797 -0.225715 0.259044 0.035794 0.104891 0.170225 -0.371255 0.161323 -0.399096 -0.488027 0.783027 0.295814 0.216695 -0.343480 0.084964 0.083277 -0.006656 -0.680582 -0.055114 0.124224 -0.012594 -0.273022 -0.210379 0.006842 -0.734392 0.082207 0.185954 -0.007061 -0.041910 -0.107421 0.088093 -0.355955 -0.343026 -0.395620 0.455036 -0.499364 0.202479 0.077971 -0.141934 -0.053783 0.377612 -0.204811 -0.117188 -0.082236 -0.207284 0.093972 -0.199702 0.036854 -0.056455 0.288100 0.487330 0.037151 0.462035 0.136915 -0.317571 0.956319 -0.264649 -0.283349 0.091963 0.125739 -0.029458 0.300665 0.285266 -0.075264 0.077089 -0.494948 0.031330 0.083300 0.031910 -0.372364 -0.084407 -0.482420 0.107004 -0.119808 0.315640 -0.066897 0.586758 -0.162589 0.164032 -0.636885 0.142589 0.070637 -0.081034 0.260935 0.160375 -0.200964 -0.218339 0.113971 -0.356757 0.048683 -0.207364 -0.241289 -0.181652 0.029212 0.141618 -0.053780 0.166814 0.163464 0.013806 0.092888 -0.142122 -0.042171 -0.290898 0.045272 0.330794 0.004935 -0.283778 0.144866 -0.079815 0.723244 0.023824 0.366734 -0.432353 0.047297 0.063572 -0.575331 -0.122206 0.627367 0.058647 0.166926 0.043537 0.323205 -0.103439 0.241599 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = -5.731333 0.898306 11.883634 -0.601250 -2.866383 -2.305265 -3.980345 -11.469397 5.698367 6.127457 10.355198 0.071747 6.556731 -0.944607 -0.071556 -3.985685 3.804633 -7.332399 4.025708 -2.798141 1.627616 10.409033 3.180686 2.284214 -0.196314 -13.001959 6.188925 -2.579733 4.545162 8.911567 0.962138 -1.127335 -4.042191 2.291955 1.540332 2.781393 2.917942 3.984479 -0.281083 0.900722 1.611941 -1.385609 3.999487 1.138312 6.906543 0.120675 -1.887901 -1.158306 -4.079147 -5.632656 0.321943 0.864004 -6.482468 1.898602 3.167084 -2.117724 -1.780291 -0.751531 -1.853073 -6.635411 0.613418 -4.253752 -0.917960 2.355106 -3.828012 2.762997 -7.208824 0.363667 -1.350322 -5.679533 3.368517 2.816923 4.902492 3.225703 -9.168046 3.865284 0.177081 -0.913202 2.858441 1.247463 -5.260028 0.131975 -4.391515 -8.143899 3.312149 8.254350 -1.316646 -1.838083 -4.033734 2.640391 -1.130086 0.574288 -1.140340 6.456721 -7.242462 1.932341 -1.844093 -3.177745 -0.053430 -8.527349 -1.192972 -7.287764 1.908346 5.680860 -5.048125 -4.048145 -6.028894 1.531301 -3.578509 -4.965014 4.459437 -2.275944 -0.814370 6.555906 -6.283151 -0.315865 -6.514513 -0.304830 5.970605 3.642606 -0.091834 3.772237 4.840546 4.764744 5.355484 -6.202329 -0.791025 6.896186 4.832377 -0.134656 1.143909 -5.698273 -2.812653 2.404714 -3.194124 -8.746041 -4.409933 2.743196 5.018752 -1.400030 -3.120136 0.303617 -4.149455 6.171526 9.337239 2.419978 1.777613 2.238215 -5.342360 3.438528 9.222660 -3.474183 4.789319 -2.707910 -3.771122 8.891542 -5.652881 5.806029 -0.824488 4.907415 -2.000369 -6.906783 -0.505569 8.041396 1.777074 7.173885 -2.449655 1.707944 2.019114 -7.079788 -11.377776 -3.133955 8.885400 3.741346 6.365320 -5.454321 -1.300639 1.256594 7.495827 5.386831 -7.069200 2.046729 -0.808757 2.290223 -14.109153 -8.956003 10.202018 12.612672 2.964621 0.014408 2.860856 4.654577 -6.630778 -4.019231 -4.936123 6.595314 -5.599688 -6.357275 -2.592941 2.840201 -6.357127 -3.100813 -1.345491 0.954036 6.296403 -3.648624 2.149023 5.586420 -2.005092 -3.091546 7.397016 -3.884782 -8.620624 -2.870360 0.548964 2.522103 2.714966 -1.481351 1.518110 4.487297 -5.127638 -1.269059 4.433894 1.442518 -0.220377 8.182469 6.846680 -1.535301 -4.786735 -1.306777 -2.276406 9.328280 -4.638456 -2.162549 0.415067 0.567981 1.471811 3.656731 4.018874 -2.437741 -6.365244 -6.228615 1.504188 -1.226025 4.623930 -4.653541 -10.870476 -7.258471 3.215217 1.644258 8.726097 2.425287 14.276657 -1.160616 3.385884 -10.447994 0.517886 3.984831 -0.226068 5.681077 1.667238 -3.403239 -2.567197 -2.691837 -6.122492 0.852507 -0.717518 -4.278318 -3.203141 -4.634738 6.907605 -2.375689 1.149913 0.021266 0.595083 8.457406 6.435398 -2.554734 -8.443730 3.353128 2.721765 1.825974 -3.581426 8.698435 -0.018343 10.399097 -5.272473 1.615778 -1.680582 4.198351 -3.312975 -5.451785 -0.873497 9.123104 7.423170 5.002751 -3.581540 -2.759108 -1.882275 3.140290 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -5.156337 3.626214 20.372183 11.471863 -6.992569 -10.179119 -5.718034 -10.148268 5.863837 4.660480 11.581769 -2.148502 4.119555 2.734246 -0.460196 -7.258940 2.862471 -2.177658 0.019281 -4.089519 -5.226013 10.902359 10.046591 -12.535688 0.515251 -15.688637 10.838287 4.216689 4.725995 10.588167 -0.513622 0.627593 -0.969613 6.864758 -9.019622 -2.587845 -2.801492 4.269789 -2.248661 0.000319 6.373399 6.482442 6.241229 1.500052 6.903870 7.478579 5.244447 -2.187384 -10.748406 -3.843995 -3.045427 9.122732 -6.143117 4.625969 1.711825 7.109222 0.556852 -10.068290 -2.920209 -16.560674 5.028144 4.351132 -7.570986 1.173532 -11.573770 1.894203 -5.878900 -5.690990 3.851631 -4.092753 5.472564 -0.011991 1.215969 -8.296821 -8.107644 5.968833 -1.142004 2.557637 4.380521 -0.074720 -6.781207 2.875066 -5.768342 -8.307255 1.058810 1.813776 0.029578 -0.560117 2.896206 -6.757328 0.968820 -0.741852 -5.187518 10.421811 -8.188087 9.162787 -1.758822 -3.026020 -6.739949 -5.046524 -2.118986 -10.358184 3.983989 11.619294 -6.424732 0.119602 -2.370107 3.437621 -0.785081 -11.146495 -0.222482 -3.948136 1.838115 8.748045 -8.117659 -2.226020 -0.956288 -0.259521 2.350690 9.970529 -1.564535 4.118748 10.407349 6.767362 2.949939 -7.734994 3.226293 3.771212 4.423157 5.178921 6.861256 -10.685427 -5.334083 -1.139299 0.186986 -15.735404 1.302287 5.100531 5.720436 1.278940 -13.840037 5.466310 -4.891280 10.224788 7.718510 8.941171 3.545783 -1.581135 -5.678914 3.804512 18.834150 -6.309510 6.518742 -4.636350 -14.713952 16.055705 -5.484078 9.629833 1.180578 3.077047 3.325027 -10.470970 0.897211 13.172856 2.940264 4.579692 9.732930 -0.618183 3.139114 -13.791243 -13.638375 -0.677951 4.731782 2.799399 20.937624 -9.405448 -4.030265 -3.647377 11.501862 0.209786 -3.744185 -1.332647 -0.937264 2.507186 -23.584731 -16.210698 12.668928 14.533882 0.607079 -1.537104 12.134940 2.449343 0.509109 -7.403346 -8.777458 7.744912 -0.510569 6.956097 1.920828 0.776878 -12.559496 -0.957528 0.256919 2.048813 9.387409 -11.986742 -7.847498 -1.205075 -12.882302 -9.013427 3.259538 -11.276605 -4.985739 -1.706176 1.166036 -0.991969 2.643894 -3.016646 -5.599494 2.017701 -6.831092 -2.825728 3.915666 6.453262 2.356453 16.163090 10.677198 -0.021655 2.488084 3.437359 -3.797084 30.236291 -7.380437 -3.318747 0.476930 9.249370 -1.406120 4.105316 3.989577 -2.738910 -6.118906 -9.599670 7.933422 -1.321371 3.036022 -17.718362 -8.082175 -12.417248 -2.743112 3.174586 12.877094 1.772719 21.998183 -0.059750 2.580701 -20.676590 0.613784 7.981915 -1.322016 8.561550 7.173351 -9.936181 -15.039425 -2.646929 -3.065521 9.619878 -2.214383 -10.731916 -6.623176 -1.842814 2.872441 -3.774626 6.392397 11.878031 -1.776637 5.145264 5.365992 -2.950195 -2.983934 -3.768826 5.034685 4.867991 -8.345285 13.517102 -3.042508 21.915987 -4.683387 9.257558 -7.489091 2.491047 -1.882208 -4.323146 -3.397575 13.284659 8.046731 5.846756 0.367271 0.501550 -6.286264 5.023001 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.898700 1.602480 5.510412 3.359840 -3.155673 -4.666549 -1.729017 -4.769693 1.794471 1.257325 4.053631 -0.671671 1.956133 0.475015 0.176507 -0.849523 1.982641 -0.173156 0.249974 -1.883232 -2.888114 4.141083 2.035922 -2.381867 0.611627 -3.484368 3.292740 1.715668 1.728809 3.032666 0.436513 -0.044487 -0.820043 1.768155 -2.058839 -0.300175 -1.269817 1.560590 -1.771072 0.517735 1.322476 -0.388523 3.119273 0.459191 1.848735 1.964331 2.532269 0.112301 -3.458567 -1.302281 -1.832262 3.076705 -1.919591 1.744796 -0.215369 0.426751 0.910169 -1.776299 -0.683030 -3.224817 0.464579 -0.494498 -2.777204 0.266812 -3.708185 0.571859 -2.799623 -2.510144 0.713886 -0.667662 1.867407 0.075593 -0.303557 -1.661868 -4.102218 1.117844 0.305451 1.102125 1.626826 0.527235 -0.903036 0.325531 -3.015285 -2.997864 1.787170 0.610108 0.882624 -0.071616 -1.200401 -1.774576 0.168361 0.177103 -0.191357 2.602286 -2.554737 2.609869 -1.034588 -1.399781 -2.996573 -3.811474 -0.117415 -2.608326 1.473913 1.988052 -1.627819 -0.248499 -1.247865 0.952860 -0.697264 -4.149854 -0.123904 -1.605810 -0.082557 3.625916 -2.112270 -1.154371 -0.937500 -0.306278 0.392955 2.589333 0.780801 1.042183 3.397813 2.444004 1.364439 -2.596227 -0.049356 0.598171 1.374059 1.715891 2.131254 -2.363564 -2.278552 0.441163 -1.119510 -5.442611 -0.489746 2.415816 2.537894 -0.078681 -2.853511 1.482835 -2.053857 2.672656 2.649396 2.489400 1.329792 -0.413271 -2.033245 1.484697 5.274036 -2.086368 2.541337 -1.545232 -3.631732 4.941951 -1.170275 2.040351 0.549403 0.130872 -0.158926 -2.423546 0.074384 3.960334 1.127224 0.700532 2.506832 0.437405 -0.656843 -4.131284 -4.879657 0.385288 3.026785 1.364582 5.710057 -3.291162 -1.217826 -0.297380 2.947647 -0.048510 -2.014432 0.335857 -1.032751 1.239237 -7.462854 -4.968711 4.837411 3.952777 0.773649 -0.462171 2.897200 1.298371 -1.581650 -3.044095 -3.095370 2.646886 -0.204701 -0.738385 -0.618005 0.564997 -4.401111 0.212804 -0.014301 1.158212 2.632583 -2.822173 -0.468520 -1.519716 -3.633292 -2.554847 1.789186 -3.064240 -1.277498 -0.020912 -0.364656 -0.023578 1.203242 -0.511390 -1.135914 0.007578 -2.699238 -0.674151 0.645075 2.180776 0.513453 6.249883 4.406392 -0.502371 1.338901 0.473362 -2.099822 8.142399 -2.440710 -0.127484 -0.187293 3.113551 -0.368801 1.334449 2.816018 -0.953658 -2.891909 -3.300471 1.063601 0.563343 1.370913 -4.146706 -2.398534 -5.347248 -0.357356 0.602781 5.235492 0.016922 6.347486 -0.930047 1.279853 -6.238105 0.545708 1.496437 -0.459135 2.952817 1.561849 -3.083118 -2.695425 -0.891180 -2.406903 1.429821 -0.388912 -2.535871 -2.340990 -0.578090 0.344637 -1.638781 1.087699 2.781500 -1.284984 2.255949 1.320196 -0.964255 -1.215530 -0.327615 3.530586 0.979065 -2.691404 4.245516 -0.168905 8.174073 -0.083523 2.588383 -1.933710 0.140165 -0.189035 -2.279086 -1.470174 4.284241 3.356379 1.570824 0.240178 0.594698 -0.668467 1.800826 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp___GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -3.636420 1.597104 13.657942 11.419082 -7.043874 -9.451565 -3.558221 -6.868033 5.236118 2.137245 7.844486 -0.283885 2.763934 1.684770 0.088741 -3.634136 2.912767 0.625016 -2.191382 -3.023338 -3.715271 9.203556 7.923891 -12.134399 1.037029 -8.483940 6.339034 5.310267 2.907156 8.353449 -0.636002 0.388022 -0.473606 5.224090 -7.739027 -1.755923 -2.516232 1.940232 -3.178412 -2.556391 5.192470 1.276404 6.903032 -0.288921 5.682545 3.261881 6.461572 -1.641556 -8.935693 -2.727042 -4.959069 7.890903 -4.492756 5.386783 -0.029563 5.231288 2.176597 -7.413520 -1.846064 -13.351096 3.014665 2.796841 -5.346342 -1.242967 -7.379778 1.036660 -1.407380 -6.394240 4.085095 -3.766232 4.697535 -0.311308 0.567226 -6.786125 -6.817024 3.200473 0.409680 3.111453 2.945891 2.335912 -3.333544 0.569003 -4.014920 -4.475437 0.882249 -1.687005 0.685383 1.695722 -0.552821 -4.236569 1.882300 -0.165716 -3.205776 6.502898 -5.608815 6.513354 0.219518 -1.982860 -4.900827 -3.901895 -0.676471 -6.512914 2.659847 6.730023 -3.575041 2.246895 -0.287885 2.833516 -0.938245 -9.332990 0.859472 -2.845756 -1.002123 5.210901 -5.399664 -2.248425 1.451189 0.308628 0.250440 7.610455 -1.607658 2.983774 6.595413 5.017049 2.871460 -6.338615 1.803232 1.643033 4.928583 4.536453 4.777192 -5.580307 -3.524362 -0.214851 -1.445081 -12.498872 0.272965 6.196727 7.009514 3.435352 -10.780686 3.856778 -3.393969 8.210185 4.954494 6.974735 2.525261 -0.323343 -5.345793 2.432897 14.378044 -4.835053 6.083604 -3.120676 -10.054841 11.679606 -3.076203 6.703610 0.324899 0.952932 3.858255 -7.251594 0.167506 9.892795 2.739942 1.568846 6.116641 -0.250882 -1.420512 -13.226673 -11.496873 -1.589142 4.760458 3.782073 16.178093 -7.417806 -4.339465 -2.781143 7.738734 -3.172155 -2.983950 -0.204834 -2.360983 3.176062 -19.747571 -12.825951 12.156542 10.037763 1.559446 0.940660 9.158879 1.635503 0.676953 -5.014508 -5.620263 4.369533 2.892540 3.613005 1.333692 -0.877411 -9.321415 -0.689108 0.984333 1.179513 4.277341 -7.983753 -3.576193 -2.218668 -9.809278 -6.232258 1.852861 -10.261819 -2.834323 -0.152579 1.243082 -0.217718 1.726295 -0.549350 -4.756779 0.316389 -4.829377 -1.656295 1.230681 5.391443 2.639502 10.209184 10.859480 -0.992149 5.453798 2.561742 -4.409744 23.235128 -7.875579 -1.503435 -0.054293 8.181480 0.088096 3.030854 4.395629 -2.517244 -2.455204 -7.290662 4.537526 0.075683 3.381876 -15.448959 -6.334580 -9.518654 -2.606081 2.099493 8.356575 -0.900447 15.860654 -1.966614 1.866909 -18.880014 0.224962 6.701034 -0.064911 5.925716 5.230199 -7.792204 -13.784373 -1.277797 -2.605862 7.985538 -1.716231 -8.153332 -4.329310 -2.063112 1.180607 -4.622167 4.042275 10.013807 -3.752511 5.264657 1.426338 -1.705604 -1.366203 -3.636734 3.405822 3.608826 -5.404432 10.238904 -1.176878 17.254840 -1.351323 7.126582 -5.718991 3.320129 -2.068452 -3.922944 -3.107371 9.046574 6.353460 2.938213 1.308938 1.692782 -4.773626 4.622087 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -1.111389 0.876856 5.368382 2.222568 -2.661880 -4.312694 -1.721355 -5.438497 2.469165 1.575556 4.329193 -0.320447 2.191540 0.278029 0.249958 -0.070298 2.036455 -1.083868 0.380396 -1.747460 -1.618696 4.728379 1.868406 -1.441259 0.684318 -4.338869 2.487766 1.381248 1.805228 3.397353 0.583637 -0.098724 -0.907704 1.740146 -1.455900 0.762099 0.049679 1.276084 -1.730472 0.167126 0.992828 -0.626222 3.128723 0.042858 3.012750 1.171856 1.963647 0.114243 -2.817948 -1.815740 -1.621669 2.808537 -2.175898 1.767787 -0.096508 0.227788 0.494523 -1.850125 -0.774012 -3.033972 0.056384 -0.605587 -2.190945 0.308696 -2.786576 0.897804 -1.965010 -1.990538 0.646093 -1.475032 2.185564 0.320129 0.226628 -0.447906 -4.351823 1.066569 0.582150 0.941770 1.465537 0.389078 -1.103970 0.106401 -2.539887 -2.872080 1.939064 1.640784 0.675468 0.174878 -2.059501 -0.626049 -0.121829 -0.000132 0.131313 2.713338 -2.756212 1.483413 -0.312486 -1.465559 -2.363583 -3.828162 0.257051 -2.578802 1.392103 1.487411 -1.120487 -0.134984 -1.217205 0.969222 -1.128429 -3.716539 0.860555 -1.426578 -0.265754 3.536692 -2.214189 -0.843713 -1.422126 -0.420440 0.502091 2.644170 0.488539 1.040838 3.173044 2.498667 1.656857 -2.778139 -0.747756 1.163969 2.246938 1.324805 1.673959 -2.446779 -1.879127 0.673481 -1.731068 -5.373595 -1.403730 2.216281 3.036200 -0.036693 -2.369171 1.153822 -1.784485 2.970672 3.081827 1.801613 0.999100 0.156314 -2.583270 1.566711 5.372014 -1.860888 2.796045 -1.692336 -2.782248 4.273106 -1.703841 2.272202 0.620858 0.379549 -0.388509 -2.453320 0.043987 3.718801 1.174523 1.400454 0.921416 0.706121 -0.939216 -4.324472 -5.471511 -0.511247 3.481050 1.394461 5.145286 -3.280127 -1.505834 -0.286814 3.472402 0.015443 -2.313226 0.824962 -1.516036 1.454518 -7.071830 -4.792636 5.573578 5.111479 1.795022 0.159680 2.761718 1.786934 -2.341819 -2.291486 -2.408788 2.484281 -0.001426 -2.359871 -0.850900 0.349440 -3.864098 -0.634505 -0.532776 1.083627 1.857287 -1.467850 0.722801 -0.570272 -2.923452 -2.039203 1.963518 -2.826214 -1.865069 -0.162788 0.139430 0.190673 1.118807 -0.728228 -0.532508 0.835406 -2.626916 -0.161876 1.275108 1.855314 0.615728 5.042543 4.552230 -0.798192 1.753734 -0.147032 -1.878766 6.466804 -2.522916 0.073340 -0.213914 2.279373 0.061860 1.255771 2.570961 -1.181994 -2.545124 -3.103745 0.760236 0.451412 1.835625 -3.112708 -3.666331 -4.875200 -0.227261 0.658351 4.783900 0.071677 6.375291 -1.066684 1.497546 -6.764556 0.459227 1.745108 -0.177708 2.563472 1.322250 -2.688804 -3.199710 -0.780700 -2.814294 0.107421 -0.366199 -2.736680 -2.104300 -1.747604 1.615041 -1.964764 0.570940 2.522435 -0.845240 2.972534 1.061809 -0.834618 -2.075917 0.068823 2.919504 0.576447 -2.192638 3.781978 0.172711 7.649721 -0.588578 2.400566 -1.419136 1.230625 -0.678971 -2.516073 -1.236038 4.041325 3.520506 1.157948 -0.215082 -0.011861 -0.617601 1.899165 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp___GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -2.462913 2.039065 13.861791 9.075589 -4.085908 -6.972699 -3.318910 -8.129573 6.029852 2.258241 8.287572 0.107293 3.719409 1.142701 -0.199274 -2.981068 3.276686 -1.578700 -0.835534 -2.755676 -0.793716 11.128073 6.349631 -9.968927 0.453938 -11.412923 5.894619 3.699191 4.722848 8.350448 -0.076333 0.409028 0.725494 5.063140 -7.052204 -2.020530 -1.614123 2.725213 -3.444986 -2.602989 4.619714 3.856514 6.058130 0.730710 4.809465 2.588360 6.030232 -1.858460 -5.334885 -2.468172 -5.348328 8.059365 -4.754014 4.545317 -1.170307 4.240868 1.901437 -6.253785 -1.797340 -11.131395 2.046928 4.611267 -4.717420 -1.103860 -6.776775 1.564120 -1.362773 -4.273779 2.802872 -2.546697 5.380143 1.146459 1.783280 -6.565138 -8.298542 4.018941 -0.681454 2.917583 3.225091 1.239567 -3.897696 0.960663 -3.640926 -5.337424 3.065752 1.050339 0.361682 1.049369 0.631117 -3.473535 -0.458218 0.254564 -3.451219 6.749950 -5.332564 6.227454 -0.503517 -1.756069 -2.861041 -2.068928 -1.298406 -7.670043 1.972987 6.861396 -2.324377 1.991442 -0.727965 1.871443 -1.068314 -7.958522 1.332535 -1.780059 -2.157544 6.061452 -5.311076 -2.020175 0.680874 0.902069 0.492087 7.543223 -1.655605 3.608997 6.946849 4.937188 2.616709 -6.240814 2.213007 2.690531 4.876332 4.247307 4.774123 -5.879906 -4.099390 -0.836240 -0.177419 -12.389285 0.829118 6.020848 6.396631 1.598154 -10.819277 4.405788 -3.228073 8.337670 6.784563 5.043373 3.361513 0.224002 -4.855736 3.437073 14.870581 -4.728850 5.873983 -4.562076 -8.061313 11.278540 -4.380952 7.285536 -0.796067 2.083735 3.261111 -7.773774 0.406641 10.224423 2.210212 3.196083 5.667905 -0.538177 1.322830 -12.382255 -11.228880 -2.930494 4.071738 2.615811 15.118073 -6.005664 -3.526974 -1.719927 6.252747 -2.628696 -2.895279 0.140073 -2.689639 2.951424 -18.324677 -11.976228 12.490895 10.638612 0.787815 0.693644 8.265256 2.974765 0.659160 -4.699912 -4.679997 5.331676 2.476871 1.583705 1.134081 -0.286729 -8.205017 -2.311525 0.841499 0.806221 4.009868 -6.457213 -3.259581 -0.956474 -9.750848 -5.541710 3.071974 -9.455331 -4.200848 -0.690967 0.932961 -0.746449 2.056431 -1.124869 -3.450591 2.575035 -4.863777 -2.585287 1.433172 5.209486 2.124673 7.713000 10.233473 -0.373708 4.772186 3.145959 -4.293878 19.497620 -6.495323 -2.588445 -0.154324 6.630204 -0.161205 4.276496 2.757651 -2.518532 -3.652662 -8.182798 6.015063 -0.034495 2.984963 -11.709384 -5.838189 -6.901266 -2.801552 2.709665 8.810856 -0.376121 16.564263 -2.587119 1.729350 -17.515525 0.348449 6.655799 0.371838 5.589150 5.556012 -6.533705 -11.220785 -2.146245 -2.426989 5.580824 -1.762916 -9.129207 -5.180027 -4.050346 3.201676 -6.053134 4.688667 9.112187 -2.201384 5.589793 0.623412 -1.872527 -3.012130 -2.123779 2.739776 4.076550 -5.376695 8.600491 -2.626184 15.692522 -4.069087 7.259493 -6.650084 3.674843 -2.589242 -4.305561 -2.738903 10.264115 6.233043 2.371873 1.508592 -0.431239 -3.871888 5.364735 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.790501 0.980757 4.816937 2.108767 -1.882453 -3.393666 -1.413676 -4.400995 2.167593 1.200554 3.663678 -0.167831 1.976143 0.298534 0.117874 -0.293470 1.853387 -0.951118 0.331601 -1.459526 -1.053556 4.381317 1.647978 -1.673002 0.526143 -4.066424 2.292379 1.134672 1.764790 3.139503 0.446552 0.051854 -0.413069 1.630799 -1.561015 0.148328 -0.160293 1.253841 -1.514209 0.004964 1.084331 0.163263 2.692288 0.358105 2.128222 1.230903 1.720864 -0.035080 -2.010635 -1.424997 -1.591535 2.403095 -1.878478 1.583836 -0.513167 0.396419 0.689531 -1.539256 -0.558577 -2.767444 0.124724 0.144556 -1.854116 0.100016 -2.531055 0.730179 -1.565316 -1.652183 0.480639 -1.029380 1.995657 0.449727 0.293882 -0.987596 -3.870022 1.120276 0.285982 0.942363 1.367703 0.273731 -1.208608 0.203263 -2.170581 -2.581847 1.827732 1.334400 0.600682 0.245785 -1.226288 -0.869332 -0.315591 0.180624 -0.149903 2.442048 -2.080630 1.597469 -0.380566 -1.144418 -1.666101 -2.691245 -0.000109 -2.471139 1.028520 1.574495 -0.860413 0.014505 -0.999080 0.727971 -0.799860 -3.064250 0.773147 -1.080585 -0.656491 3.026637 -1.800666 -0.833565 -0.997608 -0.194367 0.491132 2.526836 0.227416 0.970265 2.770922 2.086470 1.239677 -2.379104 -0.212084 0.951172 1.795764 1.197303 1.664642 -2.080584 -1.823043 0.337260 -1.170573 -4.686602 -0.777898 2.027295 2.557774 -0.223441 -2.574948 1.454822 -1.633486 2.565176 2.897383 1.526352 1.154225 0.074935 -2.106191 1.481545 4.925709 -1.724471 2.378508 -1.696275 -2.505102 3.974722 -1.511134 2.165137 0.143504 0.382285 -0.104471 -2.264845 0.208237 3.498690 0.899705 1.308239 1.269576 0.326503 -0.231888 -3.794964 -4.624587 -0.649380 2.722553 1.166864 4.754863 -2.597361 -1.050164 -0.213806 2.606747 -0.201351 -1.799670 0.552806 -1.169896 1.181753 -6.445918 -4.170039 4.913280 4.258125 1.153228 0.094008 2.315730 1.569964 -1.281312 -2.054821 -2.014378 2.250877 0.125999 -1.569520 -0.552830 0.332785 -3.213837 -0.656665 -0.251137 0.797883 1.704754 -1.582353 0.124598 -0.628935 -2.894221 -1.903277 1.636075 -2.671961 -1.689519 -0.088861 -0.004116 -0.046410 0.923503 -0.464281 -0.600048 0.880676 -2.192710 -0.525135 0.848310 1.783417 0.522905 3.846229 3.925124 -0.573773 1.309536 0.314798 -1.723325 5.819118 -2.199026 -0.217352 -0.186574 2.187646 0.052448 1.390484 1.946521 -0.966074 -2.170626 -2.993871 1.209440 0.466279 1.349524 -2.889163 -2.750967 -3.758456 -0.356793 0.627911 4.317100 -0.016031 5.836653 -1.019204 1.139530 -5.793948 0.404646 1.684720 -0.062039 2.191383 1.446361 -2.304602 -2.711442 -0.837424 -2.237119 0.437562 -0.372561 -2.654126 -2.009374 -1.459263 1.255610 -2.004186 0.904619 2.459123 -0.757283 2.465850 0.670298 -0.771902 -1.829582 -0.058217 2.313343 0.760743 -1.912179 3.081262 -0.222634 6.257621 -0.880531 2.359247 -1.633526 1.060969 -0.644338 -2.191682 -1.173662 3.794062 2.880185 0.899215 0.249339 -0.168694 -0.422598 1.879515 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp___GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/anagram-substring-search-search-permutations.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -0.824842 1.303005 4.417064 3.278609 -2.659894 -2.731792 -1.204703 -2.642175 1.161512 0.568092 2.614124 -0.197318 0.805296 1.150857 0.107561 -1.298567 1.123155 0.379550 -0.834426 -1.292081 -1.526400 1.870323 1.904317 -3.695934 0.588113 -1.979149 2.296908 1.577742 0.411260 1.922276 0.152702 0.207371 -0.767036 1.771579 -2.303078 -0.855342 -0.506622 1.046637 -0.985225 -0.496245 1.913562 0.825628 1.902176 0.196567 1.440371 1.952292 1.519860 -0.085978 -2.721627 -0.763125 -0.857419 2.139966 -1.353740 1.878680 -0.027246 1.599968 0.513516 -2.335230 -0.205747 -3.508579 1.072504 0.699713 -1.578489 -0.305186 -2.236491 0.129285 -0.127455 -2.181321 1.216917 -1.075745 1.468294 -0.836858 -0.500411 -1.984189 -1.635507 0.569589 0.241849 1.061556 1.245514 0.401688 -0.730615 -0.004252 -1.421908 -1.640789 0.161503 -0.409804 0.599079 0.392252 0.117321 -1.143959 0.993573 -0.105527 -0.595102 2.357938 -1.653287 1.857238 -0.628725 -0.828559 -2.028643 -1.213388 0.222524 -1.910523 1.328209 1.836575 -1.903674 0.468171 0.091164 0.867870 0.092055 -2.710997 -0.152123 -0.865203 0.335602 1.862915 -1.221368 -1.264163 0.568202 -0.572682 0.196053 2.220192 0.187070 0.445328 2.434909 1.681243 0.910892 -2.087327 0.076560 0.049527 0.943769 1.724200 1.748813 -2.022683 -1.292268 0.161193 -0.948112 -3.705514 0.503293 1.182025 2.341526 0.433791 -3.299441 1.269127 -1.585452 1.770619 1.234499 2.727304 0.821911 -0.369263 -1.526974 0.338243 3.931228 -1.350031 1.799996 -0.513728 -2.695881 2.820963 -0.303876 1.771311 0.551636 0.004200 0.757733 -2.044411 -0.262099 3.083261 0.901091 0.617944 2.100807 -0.008506 -0.940159 -3.729325 -3.306002 -0.329274 1.677128 0.901970 4.305487 -2.409968 -1.092635 -0.620083 2.769369 -1.186429 -1.101206 -0.027122 -0.360354 1.126598 -4.372244 -3.303861 2.997694 2.873891 0.166568 -0.351284 2.586008 -0.122772 -0.289715 -1.902295 -1.978486 1.406512 0.619521 1.562098 0.335197 -0.138173 -2.724500 0.210958 0.495201 0.854784 1.488343 -2.226600 -1.261203 -0.089187 -2.783261 -2.102497 0.360510 -2.407838 -0.516816 0.269629 0.187594 -0.186587 0.368221 -0.425139 -2.038157 -0.032115 -1.536710 -0.370348 0.560358 1.689438 0.492868 3.608269 2.151897 -0.532186 1.403614 0.752992 -1.486192 6.734432 -2.003917 -0.016284 -0.001037 2.893706 -0.313349 0.882828 1.646186 -0.876831 -1.303176 -2.497803 0.673035 -0.111184 1.082706 -4.352578 -1.407067 -2.912675 -0.583634 0.312648 2.833709 -0.440592 4.764197 -0.171545 0.854583 -5.051272 0.171268 2.043127 -0.632652 1.409870 1.615727 -2.272938 -4.117449 -0.300188 -1.219119 1.465404 -0.240716 -1.774185 -1.697376 -0.256470 0.010101 -0.858936 0.959776 2.998998 -1.095562 1.056815 0.125157 -0.564511 0.259852 -1.454247 1.723957 0.782073 -2.190584 3.034323 -0.001755 5.743715 -0.026450 2.484747 -1.500096 0.163405 -0.259803 -1.079834 -1.421763 2.884997 1.969446 1.321671 0.413763 0.629640 -1.265796 1.340153 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -2.453990 3.092487 14.871341 9.084908 -5.510286 -7.908202 -3.585204 -11.276239 6.325359 3.142573 9.115946 -1.176904 3.927604 2.387287 0.004244 -2.222607 3.983726 -1.274813 -0.351009 -3.162806 -1.983425 10.749404 5.591320 -8.458308 0.570095 -11.664052 5.555064 3.664466 4.475406 7.111623 1.032577 0.083334 -0.657523 4.911055 -6.864535 -1.057034 -0.195854 2.428909 -4.393794 -2.635277 3.034777 3.063418 6.230056 0.442266 6.229337 2.416303 6.292897 -1.024225 -6.078725 -2.318002 -4.724871 9.596674 -4.045774 4.867146 1.307778 3.323509 1.522602 -7.135080 -1.379938 -10.313364 1.589175 3.244376 -4.753992 -0.370356 -6.743975 1.530170 -2.154813 -4.473992 3.028898 -2.604756 5.304783 0.041211 1.715153 -5.300803 -8.996704 3.808836 -0.230287 2.188246 3.515588 1.464092 -2.988170 1.035297 -4.396215 -6.188578 3.480058 2.726981 0.213978 0.787264 -0.820576 -2.672380 0.023581 -1.397123 -2.674687 7.409651 -6.468005 6.146884 -0.520663 -2.558341 -4.879476 -4.655499 -0.591856 -7.360603 2.945571 5.717370 -2.305910 1.451603 -0.785189 2.203332 -0.927430 -8.609628 1.933634 -2.283708 -0.374540 6.981424 -5.938116 -2.413329 -0.299049 -0.129172 -0.051659 7.381558 -0.913181 3.184630 7.188629 5.253521 3.372374 -6.145292 1.430838 3.100361 4.683275 4.208592 4.526843 -7.264026 -3.673871 0.644852 -1.206701 -12.611851 -0.479014 6.342949 6.913672 1.704107 -9.762194 2.500983 -2.977380 8.604114 6.250133 5.728514 2.661177 0.279450 -4.390133 2.393811 14.419534 -4.765791 6.454363 -4.219974 -7.442936 9.667043 -4.246380 7.670840 0.187921 2.337000 2.215794 -7.440448 -0.015557 10.187237 3.083293 2.171161 4.885789 0.242146 -1.025304 -12.904299 -12.624646 -1.782522 5.021247 1.654951 14.512952 -6.742061 -4.913115 -1.519858 7.821355 -1.941215 -3.855954 1.431225 -3.347558 3.265098 -16.799921 -12.114927 12.339635 11.502447 1.727506 -1.032803 8.887073 2.407129 -2.464951 -6.089197 -5.415428 5.418322 1.073887 -0.025909 0.142817 -0.491583 -9.344816 -1.145813 -0.132755 1.595723 5.315453 -5.226859 -1.683696 -1.123285 -9.745049 -5.629565 4.065486 -8.437976 -4.551815 -0.833689 1.467408 -0.204030 2.706664 -1.855659 -3.827510 3.055930 -5.924062 -2.157685 2.497109 4.731172 1.269744 11.263900 9.985816 0.006491 6.107198 1.818764 -4.534024 20.030191 -6.279978 -1.785367 -0.751991 5.695861 -1.004545 3.585003 4.105248 -2.838586 -6.264707 -7.627320 4.495234 -1.169282 3.739785 -11.272732 -7.964392 -8.529576 -2.626008 1.915843 8.994225 0.149613 16.457198 -2.376228 2.592392 -18.422786 0.776052 6.802798 -0.527753 5.606487 4.887538 -7.401396 -10.637542 -1.349236 -4.075895 3.129567 -1.185376 -9.496708 -5.022698 -4.975223 4.023933 -5.048692 3.644426 9.237822 -2.133487 5.856934 1.551889 -1.943131 -2.811764 -1.584715 4.812113 2.216051 -5.992278 9.440670 -1.729710 18.733734 -3.604474 6.511887 -5.519870 2.990864 -2.190070 -4.447239 -2.990487 9.877969 7.163532 2.916081 -0.127994 -0.139650 -4.298518 4.799478 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.628325 0.964399 4.345969 1.193144 -1.588870 -2.736873 -1.194798 -4.650032 1.897697 1.350698 3.380609 -0.522371 1.692832 0.535102 0.214408 0.075539 1.523732 -1.007065 0.517323 -1.203655 -0.679866 3.250392 0.895229 -0.544745 0.393233 -3.680230 1.549200 0.819085 1.461722 2.097169 0.670792 -0.173059 -0.738433 1.221307 -1.045784 0.562292 0.694788 0.914308 -1.407431 -0.035605 0.229218 0.078644 1.936394 0.078325 2.356281 0.723543 1.316509 0.125932 -1.577386 -1.156782 -1.015577 2.522301 -1.395589 1.201351 0.434571 -0.018371 0.057676 -1.515917 -0.431300 -1.924297 0.018163 -0.147683 -1.371136 0.331464 -1.807348 0.661810 -1.307960 -1.120169 0.453022 -0.969316 1.606590 0.103013 0.425334 -0.052578 -3.288345 0.920832 0.303146 0.467617 1.116327 0.002897 -0.647700 0.186037 -1.680474 -2.283012 1.664600 1.980635 0.363822 -0.028619 -1.461842 -0.079883 -0.284571 -0.349621 0.014233 2.215587 -2.173785 1.071443 -0.377048 -1.126702 -1.747003 -2.769924 0.192796 -2.064345 1.079855 1.009730 -0.593953 -0.135957 -0.925433 0.742360 -0.727306 -2.520482 0.837424 -0.902158 0.084839 2.693806 -1.824569 -0.640373 -1.164322 -0.395466 0.308062 1.855567 0.321094 0.785820 2.262887 1.792491 1.333213 -2.001579 -0.562451 1.143394 1.577736 1.032401 1.107632 -2.268798 -1.196650 0.599971 -1.286242 -3.929439 -0.975208 1.478867 2.178696 -0.182017 -1.755319 0.446956 -1.200412 2.280326 2.315628 1.323054 0.643909 0.267628 -1.633362 0.893862 3.805293 -1.401974 2.138220 -1.240242 -1.488957 2.297934 -1.332035 1.909863 0.487604 0.601095 -0.255652 -1.905179 -0.193118 2.805257 1.125196 1.197713 0.436448 0.556783 -0.750841 -3.220040 -4.102811 -0.497659 2.404506 0.371544 3.371425 -2.235471 -1.484354 -0.115400 2.821097 0.000961 -1.781643 0.835171 -1.218455 1.078767 -4.288445 -3.338799 3.820971 4.033081 1.287969 -0.369858 2.103325 1.232233 -2.327775 -1.766023 -1.613358 1.856197 -0.415081 -2.156709 -0.780660 0.183968 -2.800654 -0.405809 -0.566163 0.814959 1.419099 -0.459528 0.782208 0.120622 -2.133375 -1.331067 1.681612 -1.753402 -1.626142 -0.324927 0.290407 0.216238 0.946129 -1.010705 -0.443225 1.332422 -2.177489 -0.197202 1.245454 1.193440 0.276380 3.997905 2.818307 -0.216971 1.555175 -0.227072 -1.375986 4.277598 -1.507064 -0.057964 -0.253853 1.156952 -0.279793 1.011228 1.698577 -0.955170 -2.558710 -2.321958 0.386439 -0.126966 1.462155 -1.430023 -3.026078 -3.155260 -0.217768 0.469761 3.361813 0.233574 4.723987 -0.614691 1.258021 -4.828201 0.354649 1.354621 -0.364225 1.682687 0.962383 -1.957234 -2.189184 -0.440497 -2.160056 -0.877737 -0.123210 -2.262320 -1.552152 -1.904518 1.750322 -1.334969 0.354004 1.691662 -0.174473 2.179027 0.863549 -0.635512 -1.524022 0.349115 2.336414 0.158425 -1.815229 2.621983 0.074828 5.971526 -0.884787 1.635134 -1.041901 0.724502 -0.462632 -1.611856 -0.878802 3.024641 2.705421 1.046627 -0.622958 -0.284163 -0.693602 1.378167 -PE-benchmarks/anagram-substring-search-search-permutations.cpp___GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -4.707384 3.604617 21.723865 13.682465 -7.984860 -10.286591 -4.739223 -11.458283 7.869545 3.942419 13.151571 0.240610 5.682399 2.999648 0.099162 -5.927479 5.322678 -1.924086 -1.638429 -4.486147 -3.268490 14.532459 10.191344 -16.327424 1.361160 -15.671255 10.607074 5.170695 4.448799 12.243619 0.378178 1.699337 -0.488521 7.581994 -10.150242 -3.570449 -2.009484 4.587751 -3.615138 -3.468183 8.196355 4.918997 8.470938 1.852129 7.459593 5.913544 7.644245 -2.203726 -9.491068 -3.850999 -6.110859 9.906809 -6.765135 7.157379 -1.169116 7.479214 3.033602 -10.196874 -2.021838 -19.688351 4.349699 5.638511 -6.625342 -1.139934 -10.125125 2.014411 -1.471124 -7.059695 4.081304 -4.506079 7.266029 0.106471 1.980818 -10.147813 -10.762528 5.083942 -0.592835 3.529931 5.073834 1.703224 -7.728844 1.046078 -6.184451 -8.198058 3.043238 1.014100 0.493567 1.331078 1.964357 -5.005047 0.867555 -0.164445 -5.580795 11.115781 -8.330412 9.280286 -0.163469 -2.833161 -5.463577 -3.618107 -1.342556 -10.873154 3.564429 11.897265 -5.864055 2.349921 -1.724832 3.381391 -1.081482 -11.125953 1.804010 -3.901578 -1.862218 7.668030 -7.319627 -3.716258 1.166868 0.059199 2.725392 11.670235 -3.129950 4.320702 11.276081 7.163374 3.208104 -8.553675 3.920471 3.514989 6.071346 5.842353 7.141756 -9.760920 -5.754073 -0.317033 -1.383352 -17.434846 1.790510 7.980432 9.361246 1.190855 -17.533866 7.357533 -5.332356 11.554114 10.356170 10.033949 4.232157 -0.027148 -6.989543 3.505715 21.712027 -6.732015 8.394604 -5.313198 -13.166677 16.946882 -5.395857 10.598399 -0.243073 2.715912 3.917361 -11.113906 0.288303 15.047049 4.199003 3.993677 9.158429 -0.867933 1.375719 -17.863464 -16.411981 -4.130864 6.331066 5.233930 24.343125 -9.988274 -4.017998 -3.257122 9.828862 -3.854838 -4.931767 -0.123965 -2.003581 3.764542 -27.695726 -17.810634 17.596595 14.667697 0.963394 0.176946 12.939958 1.826616 1.874400 -7.933241 -7.729259 7.422567 2.661268 5.618288 2.265348 0.159442 -13.321571 -2.085815 1.104636 1.807818 8.467165 -11.208395 -6.657618 -1.165478 -14.152444 -8.854605 3.203141 -13.102027 -7.167038 -0.680220 1.508027 -0.605908 1.995776 -1.044683 -6.376028 2.257447 -7.582457 -3.994149 2.812078 7.775195 2.433660 14.186429 14.393893 -1.156408 3.665315 4.194590 -5.746224 31.035106 -9.351888 -3.606797 -0.097441 10.592482 0.406020 5.143665 5.396721 -3.456354 -5.429676 -11.613911 8.832104 -0.843003 3.978036 -21.147721 -8.270221 -11.682046 -3.207998 2.996414 14.023163 -0.653546 25.729016 -2.124325 2.279748 -26.278060 0.511654 10.542690 -0.401338 7.225875 8.324397 -10.208592 -16.946433 -2.495266 -4.002199 9.616293 -1.899687 -11.428617 -7.719780 -3.768915 1.844530 -7.544246 6.703242 14.602671 -4.090329 7.859054 2.026330 -2.850604 -3.043303 -3.823838 4.733725 5.431262 -7.665515 13.746765 -3.182653 23.969623 -4.936984 10.650619 -8.573125 5.115987 -3.136537 -5.608370 -4.659027 14.102485 9.310467 4.532802 3.036459 0.147977 -5.522512 7.634600 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -0.744048 1.110398 5.662521 2.786628 -2.092471 -3.212536 -1.379718 -4.549439 2.422003 1.269819 3.832617 -0.146877 1.923592 0.484924 0.017015 -0.653266 1.690919 -0.711337 0.084313 -1.360713 -1.031301 4.536977 1.899951 -2.762020 0.454654 -4.513644 2.574721 1.247222 1.881508 3.136213 0.386867 0.176064 -0.350119 1.811455 -2.136910 -0.334704 -0.189730 1.325529 -1.632442 -0.472372 1.373122 0.557885 2.467751 0.310567 2.320520 1.160123 2.033981 -0.249048 -2.128677 -1.164917 -1.720428 2.946266 -1.775745 1.807669 -0.297968 0.894108 0.499810 -2.082812 -0.578269 -3.729130 0.550160 0.715639 -1.859642 -0.023161 -2.718332 0.728942 -1.083013 -1.803869 0.761156 -1.037847 2.083442 0.295382 0.562167 -1.775654 -3.955360 1.283841 0.116294 0.915597 1.426071 0.414451 -1.347875 0.192918 -2.042069 -2.567490 1.678451 1.410137 0.300103 0.172059 -0.585817 -1.042518 -0.135790 -0.071709 -0.682072 2.850449 -2.532340 2.088035 -0.609540 -0.953854 -1.663036 -2.381392 -0.156334 -2.834478 1.136400 2.172109 -1.070137 0.454966 -0.399176 0.942158 -0.453156 -3.187810 0.618391 -1.028099 -0.436311 3.027888 -1.854632 -1.033675 -0.472671 -0.130383 0.309409 2.777781 -0.215572 1.190606 3.142021 2.129859 1.260979 -2.441080 0.220317 1.321065 1.694453 1.513792 1.765467 -2.665107 -1.679816 0.218697 -0.765512 -5.068486 -0.298803 2.129973 2.639875 -0.298422 -3.404596 1.470573 -1.490702 3.029357 2.972261 1.961326 1.147300 0.128399 -2.019997 1.280033 5.677735 -1.747295 2.354582 -1.765098 -2.881601 4.114624 -1.545328 2.590336 0.000583 0.704365 0.383985 -2.775191 0.107765 3.878919 0.995581 1.178819 1.672627 0.182713 -0.322539 -4.525495 -4.757284 -0.931678 2.370897 1.128813 5.811391 -2.736999 -1.373843 -0.470876 2.848965 -0.526981 -1.608943 0.577624 -1.221524 1.242776 -6.852325 -4.745537 5.011357 4.444269 0.859720 -0.114782 3.114889 1.141126 -1.039830 -2.370612 -2.106582 2.171520 0.450485 -0.798717 -0.306370 0.232765 -3.660324 -0.618027 0.006544 0.707225 2.111602 -1.805721 -0.408509 -0.417593 -3.408553 -2.236383 1.714208 -3.029967 -1.852528 -0.220233 0.333160 -0.128588 0.978578 -0.730306 -1.078564 0.986355 -2.230411 -0.611105 0.970923 1.822807 0.364063 4.251123 4.133483 -0.352739 1.486715 0.615799 -1.739720 7.167413 -2.289893 -0.583950 -0.137583 2.199476 -0.195993 1.461035 1.780858 -1.076459 -2.203189 -3.222515 1.551128 -0.067645 1.307262 -3.904497 -2.786201 -3.563615 -0.670156 0.683176 4.142255 0.134981 6.666631 -0.987701 1.025563 -6.826918 0.322509 2.291209 -0.163660 2.331062 1.820681 -2.601509 -3.580575 -0.724913 -1.795641 0.864941 -0.535374 -3.188200 -2.176221 -1.623933 1.142573 -2.079459 1.249005 3.273239 -0.775307 2.577767 0.326117 -0.772471 -1.533825 -0.251957 2.069716 0.981133 -2.162498 3.395685 -0.518940 7.096595 -1.185182 2.576610 -2.011077 1.170523 -0.789787 -2.062534 -1.203107 3.955538 2.897245 1.222980 0.246450 -0.199052 -1.073455 2.003507 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp___GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp = 0.271602 0.320039 0.396197 -0.059968 0.007299 -0.323015 0.006975 -0.459574 0.132098 0.019622 0.088159 -0.086805 0.202136 0.023788 -0.052652 0.127326 0.134409 0.259956 0.034064 -0.089229 0.017316 0.097731 -0.264113 0.029783 0.096183 -0.230448 0.036745 0.192150 0.310665 0.142685 0.030845 -0.044049 -0.088965 0.093794 -0.155533 -0.186823 0.185879 0.041414 -0.418403 0.066565 -0.281445 0.127384 0.103400 0.047942 0.054240 0.166194 -0.109557 0.138441 0.123519 0.031432 0.009898 0.223111 0.139264 0.188078 -0.055406 -0.138196 -0.099658 0.079514 0.160790 0.103478 0.085108 0.101932 0.021335 -0.019065 -0.194485 -0.081408 -0.062441 -0.285360 -0.046824 -0.052935 0.035461 -0.033280 0.018237 -0.085730 -0.453441 0.022145 0.111838 0.140005 0.172879 -0.020838 0.201362 -0.072144 -0.109173 -0.181695 0.147320 0.352619 0.108698 0.191404 -0.232608 -0.258855 0.025825 -0.041815 0.186406 0.095203 -0.016914 0.099437 -0.381379 0.018912 -0.042130 -0.455959 0.042774 -0.012157 0.077833 -0.287342 0.244404 0.116512 0.174172 0.200528 0.139648 -0.015787 0.165662 -0.020025 -0.064850 0.408145 0.100526 -0.202971 -0.062725 -0.087475 -0.199889 0.150062 -0.006470 -0.048000 -0.043980 0.082409 0.141670 -0.157943 -0.110939 0.150842 -0.087374 0.187147 0.134784 -0.211381 -0.050131 0.049524 -0.235836 -0.386391 0.033616 -0.070527 0.131163 -0.279168 0.055953 -0.018167 -0.231639 0.011551 0.015629 0.017842 0.117180 -0.054046 -0.078879 0.023943 0.184920 -0.117940 0.112767 -0.088758 0.020781 -0.259038 0.152594 0.099334 -0.184203 -0.176318 0.115029 0.035284 0.058114 0.221028 0.065754 0.034297 0.002208 0.013269 -0.420356 -0.191424 -0.186030 -0.059949 0.172251 -0.184599 0.146032 -0.061837 -0.260692 -0.102369 0.302561 -0.155550 0.058841 0.167730 -0.205094 0.145774 -0.029705 -0.183630 0.183262 0.341017 0.147293 -0.240412 0.021463 0.025902 -0.237436 -0.263123 0.058244 -0.127725 -0.074153 -0.543023 -0.336953 0.002794 -0.179086 0.128591 0.103372 0.062146 0.047850 0.347447 0.272522 -0.075137 -0.118516 -0.264137 0.143180 -0.046993 0.164382 0.102172 0.052512 -0.065668 0.150841 -0.284824 -0.156530 0.331228 -0.091177 0.103924 -0.036207 0.057028 -0.059289 0.282991 -0.009970 0.126261 0.304517 0.064561 -0.252028 0.381733 -0.066981 0.148437 0.025149 0.023005 -0.190292 0.155137 0.058777 -0.125518 -0.163137 -0.312559 -0.333113 0.033973 0.049200 0.294516 -0.216722 -0.080942 0.010122 -0.159065 0.197223 0.010048 0.245295 -0.073691 0.163924 -0.151380 0.064719 0.011766 -0.145550 0.160240 0.134415 -0.194868 -0.225187 0.037702 -0.259084 -0.472420 -0.059567 -0.254218 -0.031557 -0.064940 0.049461 -0.018993 -0.005493 0.155473 0.032398 0.164892 -0.310119 0.035398 -0.110799 0.052412 0.322409 -0.133102 -0.200189 -0.109095 0.106365 0.473345 0.082310 0.157788 -0.080103 -0.168665 0.089000 -0.168712 -0.202691 0.272037 0.111106 0.205198 -0.062624 0.002577 -0.002423 0.117749 diff --git a/src/test-suite/oracle/FA_llvm12_onDemand/ir2vec.txt b/src/test-suite/oracle/FA_llvm12_onDemand/ir2vec.txt deleted file mode 100644 index 3cdbef3b..00000000 --- a/src/test-suite/oracle/FA_llvm12_onDemand/ir2vec.txt +++ /dev/null @@ -1,269 +0,0 @@ -PE-benchmarks/subset-sum.cpp__main = -0.616951 0.843025 4.120553 2.253487 -1.614559 -2.679435 -1.160907 -3.136063 1.896115 0.758344 2.610534 0.009184 1.460850 0.063298 -0.120681 -0.668465 1.474355 -0.407623 -0.019444 -1.206188 -0.675478 3.644013 1.662574 -2.236921 0.490790 -3.474436 1.896139 1.001329 1.649196 2.837357 0.142502 0.064419 -0.335539 1.467151 -1.605747 -0.329637 -0.264539 0.849030 -1.595869 -0.089979 1.052351 0.653337 2.268851 0.246774 1.583591 1.100625 1.192740 -0.045443 -1.775051 -1.058500 -1.147502 1.903434 -1.329308 1.554024 -0.324076 0.720230 0.505367 -1.390121 -0.390396 -2.612360 0.346023 0.560776 -1.277210 -0.008094 -2.289332 0.451932 -1.126606 -1.549032 0.573322 -1.099489 1.531218 0.385447 0.314407 -1.469070 -2.970452 1.038894 0.236444 1.055048 1.165016 0.519337 -0.937517 0.140586 -1.597254 -1.934038 0.959075 0.811709 0.366317 0.445636 -0.556666 -1.303152 0.104866 0.104749 -0.251858 1.847563 -1.658984 1.443853 -0.671600 -0.776872 -1.040972 -1.939162 -0.157292 -1.872193 0.809123 1.328918 -0.790936 0.299265 -0.248983 0.729284 -0.250369 -2.326898 0.689615 -0.609084 -0.598186 2.717671 -1.263806 -0.906920 -0.636308 -0.059614 0.035584 2.327345 -0.173031 0.812996 2.040095 1.704995 1.002434 -1.929940 0.160189 0.810468 1.302454 1.033574 1.659506 -1.617346 -1.467402 0.112377 -0.678119 -3.842677 -0.446086 1.467226 2.178539 -0.007661 -2.337973 1.179449 -1.433370 2.222226 1.995873 1.139001 1.094528 -0.189565 -1.775241 1.295069 4.248523 -1.370773 1.754407 -1.485644 -2.475614 3.341066 -0.995910 1.892523 -0.340847 0.157695 0.348591 -1.857835 0.489934 2.922023 0.469356 0.856842 1.215769 0.098189 -0.110518 -3.401308 -3.713849 -0.530601 1.797340 1.017475 4.230349 -1.990806 -0.860116 -0.591401 2.152966 -0.284351 -1.104088 0.405311 -1.028955 0.953710 -5.496575 -3.534787 4.111144 3.766350 0.732947 0.081364 1.994509 1.067046 -0.484036 -1.775886 -1.577994 1.552270 0.378811 -0.739022 -0.368366 0.237953 -2.527780 -0.575598 0.214591 0.584684 1.629086 -1.630182 -0.354142 -0.667965 -2.641998 -1.980479 1.299491 -2.454707 -0.992981 0.192219 0.034059 -0.163029 0.897109 -0.358858 -0.886481 0.635756 -1.466847 -0.448582 0.385219 1.668128 0.342865 2.588123 3.144271 -0.315666 1.231480 0.663850 -1.604383 5.744878 -2.058794 -0.133613 -0.135983 1.878193 0.005037 1.209197 1.260369 -0.804384 -1.246220 -2.475186 1.114053 0.283461 0.953339 -3.310542 -2.333799 -2.812439 -0.367434 0.340970 3.064364 0.059837 4.937247 -1.011343 0.654707 -5.024071 0.258673 1.799210 0.112505 2.026290 1.415447 -2.007633 -2.951833 -0.612349 -1.725341 1.157193 -0.568059 -2.507128 -1.532968 -0.821681 1.153320 -1.489728 1.061804 2.632354 -0.780654 2.048049 0.238406 -0.592841 -1.414374 -0.546786 1.341355 0.782553 -1.508548 2.446048 -0.258452 4.744900 -0.635461 1.994869 -1.539490 0.840220 -0.524100 -2.009369 -1.125561 3.096030 2.088890 0.771559 0.404151 -0.165789 -0.577653 1.503671 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -5.786228 3.149354 26.664261 18.167047 -5.377388 -10.629519 -6.608325 -9.436612 10.795476 2.344630 14.451645 0.275204 5.466214 2.280799 -1.168683 -10.469706 5.338518 -3.507648 -3.634423 -5.208371 0.829103 18.356546 14.375006 -23.038974 1.248919 -23.423266 10.833634 6.574901 7.474220 18.090647 -1.877662 1.123942 2.271223 10.061778 -14.241383 -6.202006 -2.075372 2.782324 -5.455139 -5.291090 11.407934 12.844408 11.809414 2.368910 6.896613 7.089906 7.394531 -4.247032 -10.253337 -4.547210 -8.356339 12.647753 -8.657813 8.041503 -1.815621 12.622229 4.623921 -14.161253 -3.284767 -24.220082 5.486300 12.849195 -6.614717 -2.526770 -12.617433 2.434737 -1.341699 -7.006149 7.007598 -8.167839 9.125687 2.349601 3.546245 -14.568974 -10.293724 9.048062 -1.774184 6.582304 5.756781 1.335813 -8.867285 2.932860 -4.649556 -7.829744 1.831818 -1.515410 0.517612 3.341640 5.927294 -9.246768 1.071915 0.968233 -8.188901 11.228442 -7.553880 11.361729 -1.288781 -3.319149 -2.786309 1.113052 -3.646310 -13.485489 2.510543 16.071995 -7.114531 4.680027 -0.713867 3.729169 -0.517699 -12.767269 3.113053 -1.394936 -4.581874 10.759197 -10.683084 -5.009804 1.886149 2.345900 1.183097 16.150158 -6.562569 6.755722 10.292976 8.796451 3.394909 -11.228100 7.249552 3.489324 9.027239 7.223768 11.034313 -9.831924 -7.552087 -3.495046 0.887622 -22.281272 3.551435 7.805765 12.478828 5.907632 -24.693977 10.692697 -7.070005 15.835859 11.164710 9.522157 6.974812 -1.418698 -10.270314 7.047115 26.812597 -9.250669 10.874256 -9.282213 -18.024026 20.578591 -7.127194 13.594530 -3.877327 3.089145 9.700980 -14.524891 2.513895 19.031859 3.279653 6.656467 11.623183 -2.420616 7.009339 -23.497982 -19.754128 -5.784589 3.653187 4.427550 28.176383 -10.130827 -5.280628 -6.283900 12.620156 -6.704357 -3.711727 -1.658499 -3.448902 4.267356 -35.257824 -22.021557 22.970540 21.589726 -0.668599 2.764582 14.704923 4.275993 7.497263 -5.745127 -7.884185 9.034844 6.159320 8.675772 4.394213 -1.745863 -12.110345 -5.445860 3.471514 1.147926 7.718732 -16.849866 -11.125011 -1.207748 -19.371366 -11.989863 4.344031 -19.987807 -6.596161 0.337376 0.648437 -2.040968 3.710957 -1.174944 -8.707527 5.066813 -7.543526 -6.231939 1.459959 12.192121 4.924861 9.423775 16.529635 0.019657 7.507639 8.576291 -8.083573 39.464215 -14.065275 -5.243848 -0.252018 13.765909 1.013928 8.725817 1.984495 -4.119797 -3.299725 -14.944927 13.899529 -0.967780 4.418680 -26.069396 -10.786272 -10.636613 -5.562994 4.908994 14.224360 -0.574083 31.728569 -3.644071 0.181883 -31.023175 -0.960474 15.851894 2.140714 9.897746 11.939312 -12.012888 -26.177266 -3.611338 -3.775018 17.183001 -4.201226 -17.890952 -9.045675 -5.889159 8.224626 -10.283338 11.662135 18.850879 -3.284394 8.998364 2.647908 -4.111886 -4.921311 -7.693719 -0.018084 9.450792 -8.617936 15.896495 -5.603499 22.796627 -8.315833 14.205263 -14.168787 7.394111 -4.499062 -7.115425 -6.013263 18.676131 10.431316 3.805036 4.347859 -1.753563 -8.312441 9.880908 -PE-benchmarks/karatsuba.cpp__main = 14.608715 59.884788 123.914691 25.453896 -77.146876 -71.542308 -29.961924 -139.164874 49.544152 41.703934 61.956672 -14.102859 32.452740 1.772232 -21.031728 34.331415 44.632097 -2.838716 -17.446267 -51.269662 -92.572020 40.479288 -0.160905 -12.156262 52.911521 -89.544596 72.052980 -5.286338 32.301114 31.971434 48.712928 8.053188 -17.172469 57.798973 14.938769 34.901686 9.663200 31.982428 -44.136068 28.533322 26.800829 -18.538588 47.741645 38.625461 59.402599 59.921038 25.762396 6.108974 -57.807027 -3.356307 -27.323994 68.284331 -42.707879 41.245547 -8.070853 16.840164 -10.143258 -65.727394 7.716952 -1.899079 -22.111282 -34.602727 -49.563365 6.651185 -66.746222 -0.238872 -35.106310 -52.827792 -13.222921 2.048098 40.179080 2.917794 -21.632023 -4.065668 -67.095942 16.973702 34.663008 18.440864 64.826264 -3.034766 2.939954 -14.413926 -59.613809 -77.706828 75.592704 25.249243 26.972096 -0.486056 -5.404158 -38.290412 -21.797077 -17.065290 28.266025 80.982911 -79.419473 8.867097 -44.551154 -48.636056 -74.151183 -102.903891 10.069062 -52.373582 43.791485 6.403931 -59.755891 28.155477 13.154405 24.453537 18.892670 -37.268817 -3.273966 -32.328588 23.099518 92.440611 -3.378889 -60.410205 -19.473377 -25.781612 -1.820863 39.465255 27.598598 -7.242423 124.986273 41.981862 62.023128 -40.771792 -14.681979 7.714621 -5.186631 29.556004 54.901648 -81.290939 -45.469597 22.307541 -18.389408 -116.660243 -8.918488 -2.666565 46.732322 -33.603749 -40.173588 10.493949 -23.746973 10.873126 30.374231 18.691371 31.158476 -10.674717 -31.521103 11.350742 109.184743 -37.056672 31.098829 -54.354939 -29.116111 54.471649 -10.975579 21.957706 -1.821862 -13.279751 -8.491973 -51.345736 -2.290934 82.538090 -3.805788 -20.189129 31.041090 19.152300 -51.901272 -74.644036 -85.409567 -3.038630 54.869272 -2.051748 93.869956 -73.489479 -5.403413 -31.569836 84.253993 5.801265 -10.627312 25.961046 -38.262434 32.981748 -46.711048 -87.700228 103.140918 83.494567 22.724181 -33.109324 37.064135 5.668350 -93.910544 -76.138931 -63.605826 20.954472 26.336808 -53.721019 -52.613551 14.684296 -83.358488 7.258536 -4.374153 28.882351 73.981917 -4.879259 15.814043 -1.956656 -43.259875 -67.006630 41.728485 -28.698642 -25.681835 8.362878 19.316569 3.190375 42.050842 -19.204274 -44.224830 -7.990775 -36.440198 -8.055264 42.777108 63.521758 -8.819449 112.752042 71.867536 -23.340388 33.679503 1.910652 -36.659040 91.199401 -17.153620 12.254091 10.292004 33.238044 -22.504668 26.981607 68.952037 -31.619421 -70.530151 -57.402432 -5.238972 -21.807190 7.122102 -24.462258 -29.376478 -86.363695 -12.358939 -13.431254 75.561313 12.082954 110.452696 7.688516 26.669871 -101.382966 7.149796 51.221347 -15.080725 55.349903 44.194301 -72.157242 -33.853189 -22.376144 -66.490368 -47.634177 -1.203633 7.335875 -60.186188 -7.603552 39.811457 -13.098776 10.361192 67.962765 3.192876 39.208318 -12.689969 7.073175 -31.356784 -2.795278 107.273458 2.092272 -44.080064 57.986245 14.616478 158.401788 15.030129 45.471958 -23.958269 -44.969133 16.624868 -39.415162 -55.040995 69.445619 49.812002 46.438966 4.924193 -7.640927 -3.847257 72.617589 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 4.455235 28.646258 62.801812 17.624933 -37.642878 -34.503304 -15.077460 -64.056971 23.394854 19.680836 31.820787 -6.809335 15.487384 2.975605 -9.498478 11.596955 21.521118 -1.313220 -8.354501 -24.674531 -43.076280 21.481455 4.836215 -12.867651 23.913040 -44.599130 37.793158 -1.064664 14.928320 18.677540 21.968180 4.946626 -7.474805 28.948225 2.773048 12.936786 2.255443 16.528428 -19.322575 11.991564 16.518826 -5.122984 23.305539 18.574250 27.586991 31.043717 14.146713 1.465587 -29.747235 -2.600152 -13.770493 32.083125 -22.340585 20.708271 -4.594085 10.552430 -2.602658 -33.371044 3.105549 -8.709833 -7.544861 -13.469614 -24.971960 2.719565 -34.240793 0.960254 -16.525588 -26.397131 -3.816347 0.821254 20.719417 1.179538 -9.522235 -6.067395 -31.499126 9.729839 14.788137 9.650148 31.034116 -1.976809 -1.720814 -5.497458 -28.728879 -37.735252 33.908439 9.084090 12.447658 -0.348543 1.220385 -19.531274 -8.649944 -7.467505 9.688863 40.782611 -36.447671 8.468052 -20.261621 -22.704375 -34.670585 -45.982683 3.589730 -28.039720 20.899536 8.698055 -31.229640 13.649091 5.316875 11.876280 8.725934 -21.444204 -1.730163 -15.673398 10.243469 42.958131 -3.741919 -28.412859 -7.434236 -11.356120 1.291135 22.093056 11.858561 -1.341228 60.235974 21.314513 27.056918 -21.124951 -4.724551 3.293888 -1.267524 15.510392 28.036235 -39.776559 -23.601368 8.997341 -7.542106 -56.857667 -1.690288 1.143629 23.968423 -14.754294 -25.317644 8.800564 -12.946235 7.832599 17.119704 13.100919 15.391026 -5.630375 -16.147864 6.408847 56.266977 -19.375933 16.210636 -25.604782 -18.654619 31.401743 -5.913038 12.853117 -0.777983 -4.494200 -1.929880 -27.385823 -1.420134 42.731864 -0.410914 -7.414004 20.051065 7.878245 -21.097575 -39.570209 -41.986441 -2.125224 26.472255 0.453878 49.991098 -36.303371 -1.693755 -14.693907 40.301083 1.733852 -5.788321 10.017017 -16.038279 15.436063 -30.259360 -45.254056 50.750169 40.186765 9.048258 -15.111005 19.343709 3.410823 -38.826092 -36.686376 -32.076976 12.629365 12.253993 -17.918602 -22.383410 6.458114 -41.326401 2.562166 -0.624583 13.763637 37.033016 -9.054477 1.275639 -1.326092 -25.022086 -33.901146 18.800071 -17.678239 -13.736015 3.729536 8.712405 1.750117 18.166978 -7.556400 -22.378404 -3.872766 -17.866731 -6.235303 20.126813 31.683090 -2.774626 54.591413 35.395728 -11.003924 13.720071 3.571157 -18.194959 52.869328 -10.350442 4.041189 4.878160 19.950378 -9.994492 13.775383 32.752906 -14.981861 -33.413330 -29.919517 1.554147 -10.152690 3.954026 -20.094240 -13.327220 -42.175286 -6.702087 -4.585350 38.859631 4.907277 58.035618 3.666778 11.941485 -51.980699 3.095865 26.921154 -7.458013 27.434461 23.399500 -35.555157 -20.430850 -11.557746 -30.000152 -15.214828 -1.395947 0.277770 -30.233662 -2.064471 16.383894 -7.149470 7.579226 35.398603 0.224427 18.281555 -4.216608 1.773632 -13.875887 -3.697513 49.146884 3.564006 -23.125474 31.233966 5.025068 77.095360 5.022705 24.354157 -14.299667 -20.039847 6.554071 -17.748683 -26.486215 36.063177 24.643180 22.362484 4.478614 -2.827399 -3.218306 35.374009 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.821629 1.229262 5.573571 3.035430 -2.400059 -3.322920 -1.467172 -4.184674 2.168662 1.027545 3.550365 -0.351441 1.566938 0.658891 0.078386 -0.785178 1.791674 -0.378064 -0.331789 -1.526727 -0.905555 3.687424 1.852746 -3.154834 0.617689 -3.996428 2.119354 1.642743 1.537670 2.751546 0.339962 0.045322 -0.604660 1.865755 -2.391169 -0.448549 0.132773 0.967783 -1.942766 -0.515793 1.303663 0.974664 2.560539 -0.023459 2.239429 1.350605 1.909928 -0.095544 -2.649193 -1.156595 -1.430738 3.208487 -1.489819 1.988862 0.188952 1.130112 0.418184 -2.491430 -0.538536 -3.482162 0.690996 0.908059 -1.661636 -0.148544 -2.542373 0.503327 -0.630171 -2.037931 1.242652 -1.337227 1.877717 -0.146519 0.237708 -1.741166 -3.171190 1.245360 0.356255 1.215459 1.355434 0.438039 -0.696764 0.131821 -1.727789 -2.251817 1.068540 0.978197 0.544646 0.408119 -0.758882 -1.124789 0.379445 -0.246342 -0.603357 2.570215 -2.417736 1.837539 -0.704758 -1.140730 -2.054548 -2.128334 -0.049444 -2.471670 1.251451 1.895372 -1.288776 0.635397 -0.285589 1.079767 -0.330453 -3.058360 0.552157 -0.908874 -0.180222 3.104620 -1.921017 -1.249278 -0.369616 -0.229867 -0.071776 2.716924 -0.216617 1.036528 2.796821 2.167553 1.380478 -2.564616 0.023197 0.862626 1.775246 1.707796 2.009698 -2.552384 -1.574892 0.186832 -1.122213 -4.906937 -0.308619 1.661394 2.959893 0.331057 -3.394295 1.165247 -1.660755 3.029718 2.113221 2.099146 1.049834 -0.089675 -2.116082 1.077785 5.148985 -1.811202 2.455937 -1.493704 -2.780923 3.287961 -0.951605 2.401555 0.217245 0.316139 0.655414 -2.598428 0.008028 3.750572 1.140228 1.056709 1.493223 0.214392 -0.719545 -4.640848 -4.792982 -0.699273 1.981168 0.750739 5.326405 -2.729565 -1.891197 -0.867645 3.295180 -1.023981 -1.568329 0.512871 -1.331363 1.335684 -5.853233 -4.458754 4.774544 4.678029 0.808098 -0.143972 3.188983 0.719452 -1.364727 -2.153192 -1.961888 1.954553 0.606729 -0.551094 -0.190691 0.098706 -3.365147 -0.453747 0.135492 0.862863 1.677485 -1.699167 -0.275164 -0.172784 -3.451221 -2.176030 1.400206 -2.982051 -1.226825 0.075037 0.325523 -0.023909 1.117617 -0.960701 -1.653281 0.900183 -2.218776 -0.538176 0.779196 2.131243 0.612409 4.020510 3.578215 -0.178511 2.424468 0.618816 -2.031149 7.241305 -2.428731 -0.257514 -0.235182 2.333362 -0.342406 1.328009 1.738190 -1.114664 -1.947205 -3.153008 1.062170 -0.188004 1.447738 -4.033819 -2.815965 -3.489987 -0.683465 0.566966 3.619493 -0.085712 6.144215 -0.869378 0.965769 -6.720996 0.234165 2.249612 -0.219125 2.068909 1.821886 -2.729979 -4.524517 -0.411795 -2.014077 0.778893 -0.447665 -3.063502 -2.043424 -1.536853 1.638004 -1.668851 1.076864 3.493181 -0.742568 2.321475 0.485446 -0.778959 -0.981141 -0.842640 2.026136 0.901179 -2.278651 3.411597 -0.207242 7.122745 -0.685882 2.609040 -1.959971 0.726391 -0.460624 -1.986196 -1.448888 3.786694 2.824223 1.316910 0.087269 -0.022387 -1.442067 1.975790 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/word-wrap.cpp__main = -1.405986 2.086683 9.629279 5.868387 -3.215004 -5.247787 -2.228679 -4.686684 2.555624 1.569981 5.363984 -0.760613 1.887428 2.122299 0.266989 -1.955842 1.895399 -0.070385 0.040878 -1.844811 -2.106862 5.188860 4.947295 -6.135256 0.371273 -6.197168 4.266245 2.831561 2.777716 4.692743 0.166226 0.380967 0.093181 3.328676 -4.665791 -1.664436 -1.767744 2.005567 -2.134321 -0.151207 2.438493 2.542968 3.024290 0.449365 2.801037 3.268062 4.149305 -0.880131 -4.365984 -1.418278 -3.119448 5.404744 -3.060428 2.426605 -0.127893 3.163551 0.551015 -4.258439 -1.231450 -7.337339 1.922474 2.836847 -3.726214 0.218478 -5.445304 1.022402 -2.508020 -3.261666 2.067484 -0.480862 3.143066 0.164492 0.640971 -3.868411 -4.499727 2.706280 -0.540811 2.036960 2.005819 -0.166157 -2.365048 1.606232 -2.207036 -3.499898 0.951321 0.063222 0.344700 -0.402262 1.130671 -2.783231 -0.040673 0.043912 -2.572477 4.592340 -3.471639 5.196142 -1.345510 -1.144586 -2.837880 -2.603453 -1.004936 -5.097033 1.812248 4.385224 -1.866228 0.853464 -1.280949 1.621892 -0.005665 -5.854525 -0.100107 -1.172533 -0.443183 4.116290 -3.648456 -0.907073 0.474710 0.385260 0.481393 4.845907 -0.452131 2.168144 4.372914 3.157916 0.912473 -3.503900 1.442501 0.949593 2.191125 3.065171 3.732185 -4.078848 -3.063018 -1.108264 0.168402 -7.743189 1.304981 3.535429 2.866329 0.981637 -6.549611 2.025371 -2.362600 4.863489 3.869569 4.694863 2.008607 -0.738506 -2.258181 1.763291 8.920876 -3.362921 3.606501 -1.731919 -6.340497 7.235915 -2.546836 4.657322 0.282786 1.412555 2.213968 -5.012268 -0.695089 6.355243 2.037924 1.850497 5.535174 -0.734887 1.258761 -7.152507 -5.832458 -0.408037 2.039737 0.874993 9.089976 -3.815492 -1.863301 -1.016034 4.492952 -0.902464 -1.739723 -0.762156 -0.665914 1.270883 -11.357192 -7.511086 5.836144 6.059507 -0.021296 -0.633236 5.050684 1.964398 -0.181808 -3.760347 -3.844637 3.605436 -0.215143 2.368101 0.489524 0.147871 -5.644327 0.321948 0.418806 1.006405 3.804552 -4.609334 -3.695467 -0.536665 -6.826697 -3.826763 1.238569 -5.337521 -2.467242 -0.529715 0.475875 -0.204674 0.567042 -1.291937 -2.636681 1.422883 -3.484823 -1.700111 1.404074 3.648516 1.251246 7.246958 4.849190 0.621869 2.108917 2.091017 -2.725103 13.766297 -3.495514 -1.364381 -0.293747 4.659636 -1.261254 2.089533 1.727844 -1.327426 -3.854114 -4.839387 3.402708 -0.373656 1.606007 -7.056136 -3.501140 -4.983259 -1.578358 2.105063 6.350016 0.215175 10.154744 -0.588608 1.208882 -9.408830 0.301595 3.745617 -0.705519 4.579555 3.793724 -4.751151 -6.455330 -1.500850 -1.268442 4.696351 -0.780204 -5.469930 -3.384264 -0.821937 0.518532 -2.437914 2.714265 5.409335 -1.571773 2.891610 2.003937 -1.518100 -0.870641 -1.669297 3.059723 2.526278 -4.206052 6.272884 -1.548843 10.933274 -1.901375 4.534796 -4.010482 0.183298 -0.496655 -1.140492 -1.842138 6.318274 4.177288 2.305385 0.599617 0.422190 -2.558322 2.354412 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -0.446192 0.822501 6.686517 3.445848 -1.426460 -3.340912 -1.585619 -6.094679 4.074263 1.570384 4.504258 0.262846 2.535007 -0.445987 -0.181182 -0.299094 1.785292 -1.121527 0.008221 -1.309868 0.476206 6.903358 2.007265 -3.277694 0.228503 -6.444512 2.130880 1.474316 3.656922 3.632646 0.353335 -0.074303 0.257618 2.038496 -3.016804 -0.190226 -0.376162 1.498817 -2.816766 -1.505975 1.336369 1.620046 2.850667 0.150854 3.106615 -0.216792 3.203448 -0.828249 -1.389608 -1.287892 -2.712298 4.800376 -1.990734 2.201276 -0.552165 0.879202 0.177424 -2.192225 -0.905816 -3.726744 0.508660 2.098411 -2.399155 -0.419209 -2.998236 0.994748 -0.757113 -1.439819 0.790429 -1.406228 2.905598 0.786687 1.072942 -2.801996 -5.817778 1.745358 -0.395974 1.042060 1.705730 1.163602 -1.215871 -0.051337 -1.882497 -2.929753 2.987313 2.515404 -0.228002 0.473336 -0.909710 -1.279146 -1.008592 -0.096155 -0.847917 3.103522 -3.741164 2.541565 -0.667169 -0.945184 -0.819849 -1.586861 -0.283028 -3.846632 0.958821 2.041833 -0.055671 1.160998 0.426963 0.911616 -0.606377 -3.669145 0.905279 -0.373931 -1.070992 4.319303 -2.362570 -1.144993 -0.500467 0.543832 -0.697580 3.213263 -0.267855 2.054581 3.738151 2.431158 2.042240 -3.246215 0.413527 2.703687 2.621741 2.093903 1.645416 -3.055971 -1.856882 0.019042 -0.049829 -6.647255 -0.604258 3.122775 3.387759 -0.154970 -3.864788 1.379342 -1.150988 4.286560 3.684765 0.987601 1.740922 0.708185 -2.531505 1.869458 7.545901 -1.917544 2.594682 -2.719207 -2.884814 4.729108 -2.551876 3.455711 -0.619090 1.382975 1.018664 -3.787964 0.456060 4.810098 0.569353 1.824892 1.110858 0.390430 -0.051432 -5.859766 -6.287004 -1.987554 2.185851 1.135744 6.852347 -2.614645 -2.263202 -0.570506 3.049621 -0.844968 -1.570467 1.118958 -2.689471 1.803286 -7.953856 -5.704300 6.715834 6.330442 1.219178 0.061125 4.218768 2.026421 -1.370806 -2.512727 -2.064108 2.729534 1.619816 -1.937528 -0.050174 0.000854 -4.224921 -1.862817 0.122322 0.289714 1.246122 -1.229826 0.574530 -0.303974 -4.137527 -2.335020 2.772613 -3.781739 -1.962821 -0.846044 0.634091 -0.615343 1.794740 -1.589682 -0.812072 2.088814 -2.476565 -0.739723 0.941675 1.920926 0.562377 3.654170 5.483813 -0.147457 3.470717 0.834519 -2.402900 7.999093 -2.783939 -1.312828 -0.336083 1.866253 -0.300167 2.324496 1.022728 -1.536236 -2.259433 -4.156241 2.252634 0.023386 1.779735 -3.534586 -3.629871 -3.194708 -1.344114 0.998409 4.328949 0.405315 8.166293 -2.396176 1.322978 -8.979862 0.419358 3.052336 0.219197 3.043520 2.191090 -2.851365 -4.692825 -1.021864 -1.683263 0.248198 -1.009277 -5.105219 -2.789269 -3.575572 3.187224 -3.637062 1.863635 3.967457 -0.481910 3.614875 -0.873621 -0.743830 -2.430943 0.176421 1.383586 1.691027 -2.893297 3.310283 -1.294249 8.497545 -2.580485 3.442519 -3.208406 2.357194 -2.016712 -3.237793 -1.200005 5.212050 3.677506 1.114621 -0.075959 -0.908628 -1.901267 2.624235 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -6.726870 7.966169 41.583237 27.617237 -12.464417 -19.275756 -8.987511 -14.944132 9.909336 5.950335 20.973804 -3.187918 5.524189 10.257632 0.998737 -10.645693 5.471022 0.386345 -1.020894 -6.251285 -7.165787 19.303484 23.800618 -30.764186 0.255165 -26.010764 17.506411 12.265344 11.104226 18.679239 -0.520632 1.874548 2.143483 14.528491 -22.212748 -9.092159 -8.801275 7.801964 -7.397713 -2.408371 11.711320 14.514610 10.108690 1.322869 11.038562 13.523062 19.004048 -5.677592 -18.868312 -4.536718 -13.691585 24.457810 -12.865739 9.514403 0.829256 17.184520 1.343313 -20.629290 -6.010498 -35.019890 10.200098 16.290641 -15.641012 0.420969 -22.976128 4.200387 -8.462684 -12.899213 10.530012 -1.025530 12.942021 0.368696 3.808456 -19.303961 -15.136059 12.711482 -4.205162 8.612602 7.476135 -1.213805 -10.901111 8.158943 -6.180051 -12.769329 1.010877 -2.672513 -0.264761 -2.695299 9.879670 -12.230490 0.143411 -0.341935 -14.799143 19.675517 -14.687733 24.302575 -5.156725 -3.440847 -10.669702 -5.479591 -5.869184 -22.825496 7.040898 21.773524 -8.359666 5.012731 -4.418071 6.755393 1.227123 -24.569206 -2.006712 -3.524611 -1.150995 14.568379 -16.565823 -2.577064 5.483560 3.165930 1.663295 20.742050 -3.987835 10.329741 17.737665 12.424028 2.418209 -13.946284 9.050916 3.764338 9.006257 13.847721 16.024362 -17.745785 -11.964358 -7.048741 4.549195 -31.439606 8.958190 15.021101 10.207976 6.927279 -31.295461 7.971613 -8.282569 21.870014 14.916746 21.560065 8.179533 -3.440038 -7.854219 6.396104 38.375909 -14.209658 14.336390 -6.136410 -28.518246 30.856706 -11.532488 21.197018 1.016163 7.848490 12.991270 -23.182313 -4.178591 26.932437 8.903604 7.776494 26.419811 -4.797396 8.605133 -31.426386 -21.903104 -2.103425 4.201552 2.303306 39.493771 -14.708603 -8.222340 -5.274268 18.415023 -4.914241 -5.339094 -5.471833 -1.283323 4.361870 -47.626775 -31.810300 21.637421 24.149478 -2.984490 -2.616240 23.350249 7.094966 2.853665 -14.722518 -15.784040 14.751042 -0.229588 17.499366 5.127383 -0.402994 -23.069144 1.607639 2.808662 3.004077 15.962399 -21.893317 -20.698800 -0.267452 -30.682737 -15.907984 3.131623 -23.903008 -10.488613 -3.294515 3.163159 -1.047888 1.165176 -5.884717 -12.829306 6.201021 -13.822611 -8.411990 5.953473 15.651027 6.084281 28.819341 18.320991 4.544744 9.111735 10.911851 -10.377248 61.421264 -14.364307 -8.059803 -1.028475 19.932326 -6.330587 8.563475 4.047734 -5.156114 -14.940419 -19.481122 17.346376 -3.685776 5.929697 -33.014783 -13.175297 -17.288030 -8.374278 10.729078 23.449121 1.174921 42.827645 -1.139148 3.569207 -39.912481 0.350611 17.605546 -2.924680 19.282789 17.594390 -20.203019 -30.603606 -6.319286 -0.727987 25.289317 -3.717122 -24.553541 -13.783810 -2.847274 1.698117 -9.719208 13.441716 24.392520 -6.290871 10.439618 9.229005 -6.451975 -0.933779 -9.050669 9.332202 12.846664 -18.189597 27.341406 -8.768584 44.603734 -9.986819 19.433930 -18.817624 0.460803 -2.343689 -1.316415 -6.713687 25.943991 16.007138 10.057344 2.572190 1.902850 -14.117308 9.065804 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.365884 0.727964 2.186000 1.250999 -0.702752 -1.357181 -0.364329 -1.898727 0.804251 0.250688 1.144266 -0.219759 0.635646 0.419034 -0.025409 0.115492 0.699243 0.250259 0.236060 -0.419599 -0.485528 1.711665 0.300020 -0.980234 0.130781 -1.582464 0.926509 0.704347 1.089158 1.007831 0.285989 -0.036096 0.003836 0.558270 -1.005970 -0.517878 -0.259766 0.438107 -1.198511 -0.047469 0.032668 0.223694 0.891588 0.093625 0.433763 0.326682 1.195121 0.083597 -0.415985 -0.027838 -1.196651 1.651032 -0.336493 0.657478 -0.305261 0.073738 0.204066 -0.550393 -0.192987 -0.800585 0.057166 0.519223 -0.821334 -0.063855 -1.210100 0.192109 -0.671606 -0.837570 0.320231 0.312934 0.794559 0.178597 0.296624 -0.949503 -2.017054 0.470609 -0.131366 0.582544 0.525544 0.136259 0.016266 0.270256 -0.828553 -0.895150 0.859674 0.588532 0.116629 -0.121476 -0.250820 -0.690921 -0.337218 -0.025344 -0.198300 0.864634 -0.821646 1.220093 -0.941317 -0.148564 -0.582482 -1.130218 -0.149194 -1.011209 0.420551 0.336588 0.107369 0.401410 0.146902 0.431550 0.129405 -1.302279 0.155241 -0.251192 -0.380810 1.451652 -0.484557 -0.512824 0.001589 0.057813 -0.395830 0.954428 -0.003366 0.512814 0.923830 0.748883 0.429098 -0.762444 0.072469 0.526441 0.309798 0.795367 0.768500 -0.872493 -0.681721 -0.146612 -0.012999 -2.068263 0.224616 0.990698 0.775299 -0.319938 -0.917365 0.147682 -0.604377 1.179883 0.916732 0.734217 0.615337 0.019396 -0.417506 0.512535 2.236306 -0.673720 0.865913 -0.835407 -0.814992 1.192722 -0.353705 0.969733 -0.289031 0.287973 0.397327 -0.964983 -0.116402 1.437643 0.423302 0.097084 1.084540 0.000231 -0.414031 -1.686762 -1.506865 -0.102647 0.824120 -0.018739 2.068377 -0.825097 -0.728622 -0.076593 0.758855 -0.349537 -0.378120 0.331023 -0.641832 0.475270 -2.420105 -1.750405 1.655366 1.205531 0.038038 -0.430128 1.059340 0.567910 -0.712124 -1.269477 -0.774103 0.709421 0.111058 -0.715584 -0.362432 0.057008 -1.401593 0.095111 0.265373 0.253939 0.882232 -0.349382 -0.068822 -0.456466 -1.616179 -0.930484 0.954171 -1.248186 -0.531038 0.053694 0.069414 -0.173010 0.460196 -0.352858 -0.375419 0.628170 -0.882429 -0.274835 0.177861 0.623978 -0.121749 1.736454 1.594501 0.338089 1.065601 0.483241 -0.939808 2.915462 -0.711126 -0.213821 -0.133631 0.619706 -0.552069 0.604794 0.584390 -0.399940 -1.348426 -1.333866 0.468819 -0.101232 0.449380 -0.886909 -0.753670 -1.043600 -0.428952 0.273279 1.556583 0.132312 2.296704 -0.561004 0.436044 -2.327336 0.195295 0.748533 -0.077065 1.122109 0.699963 -1.030168 -0.894881 -0.228648 -0.600235 0.239306 -0.267703 -1.617669 -0.933762 -0.612488 0.114661 -0.782040 0.480247 1.378508 -0.491503 0.972346 -0.360715 -0.316191 -0.389281 0.007715 1.114976 0.372286 -1.030839 1.145786 -0.382918 3.149021 -0.295217 0.855864 -0.914022 -0.058734 -0.182469 -0.607200 -0.449528 1.532417 0.986923 0.518817 0.097589 -0.025599 -0.363921 0.651204 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -0.447310 2.103415 8.046720 5.813682 -2.755267 -3.944973 -1.312228 -3.519771 1.760094 0.754460 3.836785 -0.280619 1.546422 2.522693 0.254723 -1.538534 2.328576 0.523708 0.264655 -1.398233 -1.601397 4.494910 3.149785 -6.060206 0.109390 -4.909804 4.231088 2.591340 1.856262 4.210830 0.785951 0.541053 0.224788 2.482373 -4.174316 -2.571081 -1.535880 1.555718 -2.152984 -0.574840 1.947327 1.998398 3.004801 0.942778 1.005804 2.366765 4.227788 -0.262659 -2.720619 -0.231051 -4.127530 4.712196 -1.969858 2.060930 -1.151171 2.518081 1.681751 -3.244718 -0.771382 -6.314127 1.192009 2.904776 -2.951384 -0.458645 -4.157404 0.568463 -1.742172 -2.921708 1.535019 1.077779 2.589719 0.232484 1.043285 -4.361831 -4.721245 1.824342 -1.153320 1.998822 1.840522 0.051250 -2.211655 1.386486 -2.289638 -2.711774 1.288324 -0.534671 0.171678 -0.369223 1.258727 -2.437131 -0.851665 0.224406 -2.411336 3.440130 -2.101305 5.025805 -1.581474 -0.397918 -1.936780 -1.136591 -0.885253 -3.852158 1.088530 3.684705 -1.059176 0.930558 -1.459170 1.035610 -0.081339 -4.285692 0.419069 -1.466825 -1.623405 2.697280 -2.511480 -1.272416 1.161985 0.400833 0.571425 4.168341 -1.056883 1.720882 2.943062 2.459453 0.340885 -2.463860 1.829217 0.661265 1.269415 2.616632 3.092265 -2.734236 -2.486409 -1.181190 0.424522 -6.184060 2.354512 3.716772 2.170445 0.391109 -5.786034 1.524882 -2.285864 4.371187 3.454629 4.673048 2.009642 -0.215654 -1.326515 1.323351 7.905897 -2.634369 3.363122 -1.939284 -4.121509 5.750912 -1.660314 3.968675 -0.652911 1.042662 2.100289 -3.656566 -0.933864 5.361927 2.223139 0.570425 5.606449 -0.809217 0.821696 -6.077100 -4.687788 -0.415052 2.351940 0.770337 8.336351 -3.070409 -1.426968 -0.593583 2.115159 -1.733012 -1.500348 -0.324078 -0.138390 1.081455 -10.367522 -6.132819 5.323161 2.884161 -1.076490 -1.039611 4.053013 1.150630 0.429124 -3.871028 -2.805944 2.669085 -0.019241 2.372071 0.788003 0.141361 -4.710413 0.466580 1.114800 0.694313 3.698528 -4.342858 -3.359336 -1.067865 -6.267011 -3.227423 1.408223 -5.323449 -2.982746 0.183410 0.118979 -0.293183 0.224943 0.272758 -2.140043 1.338102 -3.154688 -2.170672 0.509055 2.896121 0.495922 5.649349 5.167331 1.056429 1.801639 2.565678 -2.560882 12.008499 -2.871193 -1.355574 -0.129398 3.735784 -1.020518 1.724354 1.838250 -0.975859 -3.750634 -4.324766 3.609942 -0.437249 1.433619 -6.667693 -1.604213 -3.193120 -1.407066 1.658634 5.354413 -0.515797 8.620480 -0.633731 0.750590 -8.005269 0.330549 3.565978 -0.158874 3.138987 3.250506 -3.839705 -4.290776 -1.016474 -0.920603 4.997825 -0.459267 -4.805664 -3.131910 -0.564419 -1.211787 -2.672936 2.580972 5.549438 -2.681431 2.519773 0.440726 -1.295125 -0.046588 -1.370987 2.666738 2.352082 -3.304530 5.397707 -2.057555 9.632418 -1.388390 3.410404 -3.409922 0.288641 -0.525469 -0.515586 -1.559202 5.227323 2.986938 1.722834 1.588059 0.496941 -1.490287 2.313954 -PE-benchmarks/binary-insertion-sort.cpp__main = -0.503087 1.473472 5.253559 2.916893 -2.381863 -3.383968 -1.497155 -3.762747 1.799979 0.725229 3.074434 -0.639557 1.192782 0.923204 -0.134801 -0.827129 1.481333 -0.165707 -0.263223 -1.442844 -1.735308 3.406117 1.756014 -2.956669 0.629251 -3.966236 2.350196 1.564310 1.367943 2.713636 0.219011 0.062722 -0.506336 1.850142 -2.259986 -0.634770 0.010804 0.783613 -1.718471 -0.041681 1.306253 0.864306 2.546843 0.093134 1.721466 1.833218 1.525692 0.078034 -2.537539 -0.898342 -1.347651 2.798651 -1.257275 1.761610 0.230211 1.267268 0.650395 -2.526744 -0.448680 -2.985020 0.432763 0.704995 -1.569574 0.018359 -2.693847 0.400070 -0.990714 -2.067706 1.295634 -1.051210 1.665421 -0.098253 0.108061 -1.714365 -2.772103 1.320517 0.455701 1.307916 1.234878 0.214968 -0.581791 0.529583 -1.934273 -2.141448 0.701366 0.695482 0.674183 0.205091 -0.342746 -1.485640 0.507047 -0.263778 -0.450268 2.464939 -1.889877 1.838853 -1.153534 -1.090687 -2.372270 -2.582530 -0.169101 -2.142756 1.293382 1.778810 -1.505177 0.464639 0.000000 0.946356 0.101650 -3.040763 0.367313 -1.042426 0.095081 3.050739 -1.591715 -1.272616 -0.338546 -0.466622 -0.235834 2.734132 -0.235935 0.720162 2.592744 2.032069 1.096533 -2.155010 0.038518 0.421440 1.245542 1.441316 2.194553 -2.482176 -1.539707 0.049206 -0.828402 -4.625572 -0.126585 1.260127 2.519490 0.203943 -2.997997 1.261760 -1.660395 2.630058 1.745886 2.089787 1.002846 -0.475617 -1.868719 1.149157 4.936540 -1.678264 2.253178 -1.671691 -3.151952 3.428713 -0.764927 2.245483 0.139769 0.169082 0.554874 -2.296703 0.223147 3.484909 0.820798 0.621220 2.057836 0.011049 -0.605227 -4.221105 -4.256704 -0.077361 1.885643 0.550797 5.254594 -2.701842 -1.522631 -0.821132 3.267935 -0.833554 -1.225344 0.409722 -1.016323 1.109272 -5.707420 -4.377338 4.283161 4.109589 0.434006 -0.236845 2.837954 0.657721 -1.028632 -2.272257 -2.149175 1.753552 0.500858 -0.269290 -0.373315 0.046151 -3.013229 0.009739 0.197083 0.933354 2.204434 -1.995053 -0.786378 -0.819613 -3.503111 -2.538478 1.358965 -2.945893 -0.948986 0.432516 0.193342 -0.274766 1.106324 -0.561342 -1.733848 0.538336 -1.920622 -0.383826 0.753445 1.993975 0.290128 4.110481 3.333576 -0.148056 2.049181 0.804441 -1.665055 7.384767 -2.361232 -0.071364 -0.146441 2.457374 -0.518346 1.245358 1.789236 -0.924245 -2.010384 -2.816435 1.202822 -0.373484 0.984345 -4.144845 -2.584413 -3.666704 -0.786016 0.484899 3.438140 0.120786 5.741084 -0.503199 0.718408 -6.145127 0.201969 2.148941 -0.189505 2.132475 1.710460 -2.710617 -4.002447 -0.400202 -1.921590 1.113222 -0.512500 -2.977433 -1.891790 -0.979887 0.938159 -1.246518 1.177625 3.545040 -0.725092 1.774236 0.490321 -0.793133 -0.953724 -1.099325 2.255227 0.566216 -1.931527 3.299502 -0.166586 6.449663 -0.430107 2.360443 -1.700475 0.344156 -0.016311 -1.800752 -1.361466 3.374323 2.283510 1.165465 0.136854 0.128171 -1.172014 1.716453 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.333373 1.932722 9.396664 6.434229 -3.246659 -5.599894 -2.422167 -4.283997 2.964744 0.860891 5.156365 -0.934516 1.610263 1.771835 -0.499863 -3.114303 1.581215 -0.220328 -0.901579 -1.944470 -3.205815 5.921747 4.267372 -7.370786 0.655676 -7.663999 5.474010 2.947119 1.637171 5.968835 -0.245195 0.549103 0.128792 3.392854 -4.793117 -1.978790 -0.953637 1.138190 -1.345694 -0.720754 3.790912 2.636201 4.343362 0.762026 2.283633 3.783667 2.833189 -0.752852 -4.106519 -1.241081 -2.915580 3.914809 -2.494295 2.600660 -0.372868 4.144433 2.196455 -5.172369 -0.842147 -7.851513 1.577958 2.777356 -3.274397 -0.324030 -5.277520 0.693990 -1.502047 -3.296610 2.586084 -2.063165 2.785324 -0.034226 0.301065 -4.853532 -3.883507 2.657376 -0.041484 2.009605 1.901254 0.087862 -2.699552 1.448163 -3.326027 -3.006657 0.370957 -0.553702 0.682382 0.460228 1.790696 -3.350588 0.786404 0.000978 -1.970933 4.459948 -2.249692 4.226657 -1.386553 -1.383947 -3.389658 -2.561842 -0.665303 -4.163038 1.693447 5.214885 -3.347466 1.142542 0.359736 1.358732 0.529090 -5.576711 0.340567 -2.109512 0.158726 3.854105 -3.015988 -2.124295 0.304195 -0.420644 0.420355 5.675508 -1.757746 1.411518 4.252831 3.023230 1.022594 -3.515746 1.653411 0.597903 1.873544 2.328466 3.749948 -4.208549 -2.502404 -0.914059 -0.194345 -8.086806 1.104042 2.201816 3.760256 0.875961 -7.369432 3.837735 -2.624600 4.837580 3.619330 4.627882 1.850300 -0.844975 -3.236322 1.945487 9.527302 -2.882904 3.611922 -3.285856 -7.276406 7.756838 -1.612941 4.361432 -0.324814 0.824716 2.289339 -4.448521 0.819331 6.439492 1.104225 1.198229 5.494111 -0.651200 1.080228 -7.684520 -6.658885 -0.283605 2.752517 1.722607 11.109382 -4.805636 -1.523548 -1.691144 5.076148 -1.878082 -1.393352 -0.368632 -0.685307 1.379746 -12.939606 -8.487696 7.122332 5.968884 -0.267789 0.058510 5.223383 0.927491 1.855209 -3.237345 -4.153476 3.088206 1.516250 3.159184 0.955994 -0.589741 -5.110545 -0.169586 0.875561 1.063098 4.433314 -6.305509 -4.212690 -2.644800 -6.817730 -5.419633 1.619642 -6.454185 -1.951538 0.532077 0.209268 -0.972750 1.128784 0.199816 -3.159394 0.560078 -2.747928 -1.321474 1.202928 3.412236 0.725330 6.767362 6.086636 -0.360063 1.994029 2.407340 -2.034972 15.496695 -4.446167 -1.061338 0.157432 5.534558 -0.135431 2.434303 2.496754 -1.266333 -2.395606 -4.771121 4.229113 -0.769063 1.168199 -9.713560 -3.611949 -6.315834 -1.962727 1.179057 6.131836 0.202914 10.979172 -0.191184 0.489531 -10.824502 -0.109720 4.988894 -0.009796 3.554135 3.514686 -4.990739 -7.585057 -0.865469 -1.773322 5.250320 -1.239170 -5.683853 -3.421105 -0.912620 -0.270880 -2.552504 3.555091 6.914330 -1.486434 2.050421 0.795015 -1.403944 -1.121582 -2.824550 2.291686 1.992156 -3.073619 6.174343 -1.262746 9.634848 -1.766918 4.592008 -3.739794 1.929525 -0.705750 -2.288395 -2.064920 5.654343 3.322755 1.635694 1.107546 0.426233 -2.292147 2.966324 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = -0.215609 1.298548 4.857539 2.588408 -1.562532 -2.580063 -1.098851 -3.781035 1.984590 0.775370 2.939232 -0.383119 1.755936 0.416986 -0.180366 -0.538770 2.144337 -0.815183 0.538585 -1.294460 -0.550034 4.304601 0.968756 -2.428066 0.289036 -4.540684 2.758562 1.232084 1.912641 2.890565 0.550602 0.196606 0.134541 1.635619 -1.880700 -0.955842 0.104957 1.111260 -1.899893 -0.237391 0.955244 1.189604 2.516378 0.162849 1.138570 1.305201 1.987373 0.052316 -1.455232 -0.733663 -2.035464 2.350580 -1.360846 1.515494 -0.665812 0.303990 1.110077 -1.811705 -0.548961 -2.246925 0.146712 1.094123 -1.392603 -0.042311 -2.681870 0.670504 -0.981860 -1.635471 0.821939 0.040347 1.763352 0.935825 0.952822 -1.829582 -3.767061 1.701635 0.119766 1.261371 1.209006 -0.061142 -0.696111 0.517006 -2.056165 -2.329143 1.588939 1.554881 0.619553 0.023445 -0.108250 -1.296511 -0.496653 0.082654 -0.835262 2.303808 -1.217330 1.908231 -1.248681 -0.690260 -1.398319 -2.084547 -0.577197 -2.543632 0.859512 2.036035 -0.833341 0.712807 -0.181206 0.720923 -0.285460 -2.543598 0.637623 -1.105109 -0.610649 3.097654 -1.304848 -1.225059 -0.837021 0.131890 0.218882 2.507456 -0.689996 1.194352 2.815450 2.046478 0.801890 -2.174145 0.274666 0.952210 1.294907 1.304484 2.185628 -2.414838 -1.831279 -0.390936 -0.452750 -4.224924 0.017971 1.540081 2.283193 -0.872145 -3.096031 1.722834 -1.598982 3.016317 2.693623 1.445648 1.296319 0.135638 -1.564208 1.750536 4.878158 -1.623776 1.963860 -2.604272 -2.131286 3.446528 -0.704786 2.134093 -0.526776 0.581559 0.177532 -2.503682 0.503560 3.426534 0.797680 0.947462 2.174608 -0.045865 0.377656 -3.929723 -3.812912 -0.418235 1.848978 0.551930 5.451307 -2.385821 -1.224685 -0.398635 1.685157 -0.400136 -1.149607 0.498439 -1.195488 1.002438 -6.097826 -4.336876 4.482417 3.241743 0.221207 -0.126150 2.242788 1.067851 -0.787094 -2.170606 -1.622445 2.205577 0.301805 -1.142114 -0.321306 0.638874 -2.922964 -0.748362 0.329466 0.730769 2.566406 -1.843273 -0.746509 -1.067613 -3.660162 -2.299503 1.998459 -2.858077 -1.723750 0.227487 0.004138 0.023012 1.184983 -0.207452 -0.918630 1.041364 -1.696521 -1.134766 0.488447 2.129074 0.078457 2.807003 3.852596 0.182783 1.459232 1.162668 -1.773669 6.144325 -1.788146 -0.627916 -0.127365 1.734112 -0.323070 1.532886 1.648898 -0.873007 -2.102880 -3.368007 1.933511 -0.100766 0.923463 -3.411078 -1.643785 -2.864068 -0.765809 0.718799 4.028673 0.164622 5.709797 -0.999085 0.451323 -5.423954 0.170201 1.764414 0.384128 2.116883 1.911069 -2.386005 -2.295547 -0.649035 -1.847830 0.705353 -0.680204 -3.202263 -2.375480 -1.170355 0.927261 -1.746268 1.107888 3.555549 -0.687903 2.102636 0.215908 -0.806433 -1.480955 -0.455642 1.781903 1.043006 -1.704808 2.924060 -0.939967 5.932971 -1.054039 2.057954 -2.172695 0.631027 -0.310585 -2.035062 -1.180239 3.824658 1.841778 0.753204 0.864544 -0.590478 -0.531730 2.450846 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -0.728215 1.361038 5.950796 3.843138 -1.271669 -3.275222 -1.285585 -3.152532 2.508167 0.782097 3.217191 0.492874 1.807614 0.640568 -0.120028 -1.311673 1.638914 0.005453 -0.334892 -1.193659 -0.483651 5.267688 2.928010 -4.377891 0.183755 -4.725101 2.877490 1.673745 2.537486 4.236028 -0.148715 0.294291 0.640890 2.199414 -3.239675 -1.390444 -1.490639 1.364657 -1.794650 -1.271633 2.185805 1.590549 2.930110 0.956572 1.524971 1.139287 2.525799 -0.927610 -1.800830 -0.848878 -2.778112 3.255022 -2.119571 2.110027 -1.418038 1.885517 1.358842 -1.883179 -0.237900 -4.957746 0.820960 2.238690 -2.334577 -0.740537 -3.345277 0.540532 -1.421169 -2.270897 0.539642 -0.949752 2.319183 0.797707 0.597737 -3.484366 -4.328374 1.663463 -0.445255 1.572815 1.770152 0.839479 -2.155719 0.389369 -1.844457 -2.558154 1.799421 0.132162 0.179555 0.858389 0.159090 -2.215121 -0.609062 0.562109 -1.407409 2.690442 -1.808466 3.499921 -0.273502 -0.582112 -0.482091 -0.980741 -0.708877 -3.327667 0.466172 2.577511 -0.503199 0.624544 -0.709918 0.746836 -0.241059 -3.445028 0.856429 -0.631612 -1.888446 2.634836 -2.081485 -0.771369 0.586444 0.665209 0.291456 3.696555 -0.713413 1.510040 2.440035 2.048330 0.861424 -2.587459 1.482140 1.139666 1.801720 1.789714 2.158567 -1.721238 -2.217474 -0.483041 0.155783 -5.328148 0.834793 3.496465 2.604340 0.594448 -4.539153 2.125211 -1.478218 3.053390 3.324107 2.175714 1.906790 -0.105785 -2.084111 1.630334 6.366667 -2.307839 2.528822 -2.048652 -3.957650 5.589597 -2.090701 3.228038 -1.000092 0.624510 1.645929 -3.081564 0.621180 4.832830 0.751391 1.308580 2.761426 -0.593631 0.858918 -5.125535 -4.595173 -1.207620 1.940082 1.489048 6.642655 -2.167535 -0.909588 -0.456543 2.201715 -1.214424 -1.029388 -0.012894 -1.128760 1.288373 -9.201199 -5.247876 5.538756 4.134470 -0.046685 0.020955 2.829173 1.990589 1.412428 -2.225032 -2.046176 2.260287 0.953063 0.840152 0.331075 0.001327 -3.376532 -0.624614 0.798984 0.131149 1.709998 -3.301928 -1.368350 -1.377196 -4.397905 -2.769382 1.401906 -4.437626 -1.689730 -0.207967 0.044508 -0.468668 0.730667 0.194496 -1.404311 1.380149 -1.965386 -1.275728 -0.044185 2.427228 1.104476 3.076357 4.786471 -0.179547 1.414300 1.930725 -2.117279 8.843411 -3.144912 -1.173559 -0.072862 3.282229 -0.007062 2.296547 1.312660 -0.962340 -1.584190 -3.918472 2.826911 0.600682 1.019025 -5.046722 -2.114873 -3.083403 -1.046861 1.015695 4.312850 -0.548859 7.365439 -1.466912 0.485945 -7.031258 0.283837 2.915995 0.167754 2.662457 2.595611 -2.734576 -4.095814 -1.288533 -1.027440 3.164676 -0.696143 -4.034703 -2.192437 -1.232263 0.587291 -3.330994 2.558704 3.499841 -1.322474 2.521549 -0.051575 -0.757141 -1.731160 -0.775898 1.494344 1.815061 -2.232929 3.419810 -1.326993 5.987503 -1.849398 3.381909 -3.200587 1.788423 -1.223730 -2.077915 -1.485299 4.854579 2.757308 0.809552 1.158667 0.104193 -1.007755 2.207031 -PE-benchmarks/tarjan-algorithm.cpp__main = 1.724031 10.581454 39.012879 12.417982 -15.925013 -31.363299 -9.125561 -45.993391 21.185908 11.142622 29.272454 1.330243 17.591741 0.375101 2.043374 7.643967 16.872563 -1.065712 -0.362477 -14.083971 -8.152791 34.122376 6.047603 -7.861314 7.333065 -30.914087 11.833530 13.196048 20.590015 18.230843 6.212362 -0.114963 -5.265241 12.333093 -11.853910 1.209602 -0.821444 7.307264 -21.995978 0.126426 3.048392 -0.652923 22.493637 4.752182 21.065511 2.949763 16.954638 1.808427 -11.872018 -8.687465 -14.015935 28.861256 -8.772242 15.506180 -4.501339 -0.143396 -0.466224 -9.087456 -0.227746 -11.570962 0.753877 1.356386 -15.883916 -0.734011 -18.302319 3.930814 -12.268658 -14.317784 0.873367 -7.346645 15.783240 -1.353873 -3.234345 -9.305418 -40.079813 4.037677 3.981707 7.032189 14.277570 4.484310 -3.782089 -3.898314 -17.487106 -21.137605 20.719639 18.069676 2.848221 5.072639 -18.958784 -10.408099 -4.454840 -1.178436 4.164350 18.121068 -26.242103 11.336239 -5.371974 -10.790803 -15.326199 -26.051268 3.601366 -16.492597 8.905124 -1.312555 1.384193 3.755474 -3.138772 6.633416 -4.985135 -20.719362 5.031448 -4.937922 -5.086068 30.820155 -9.594161 -11.099388 -8.645333 -1.718540 -4.771376 17.705863 5.376911 5.780633 25.048463 17.071757 12.533473 -18.449085 -3.997759 11.009409 11.001947 13.788287 11.223663 -16.220284 -13.761514 6.517031 -11.073198 -40.091801 -6.917940 16.658840 22.768456 -5.661172 -10.836215 3.009855 -11.655628 19.429610 20.592188 6.757833 9.035378 0.448699 -17.281063 10.667043 40.046407 -12.721716 17.825357 -14.007071 -12.366248 22.414306 -11.970165 14.791265 0.449393 -1.479022 -2.383089 -13.066800 0.232003 27.440821 5.555747 5.362498 4.024960 5.940251 -12.522016 -28.307212 -40.063239 -8.141410 19.598824 7.950874 34.438193 -18.522066 -12.890883 -4.864827 21.172774 -3.229702 -13.801976 12.106515 -17.256248 11.707590 -40.854339 -29.843093 40.027274 40.345891 14.446948 -4.667430 20.803239 12.706411 -19.537130 -20.709673 -12.194389 13.715303 5.034283 -25.357784 -8.593058 2.702714 -28.667953 -3.895738 -2.786484 6.300135 8.637328 -0.347393 15.509937 -5.033484 -21.114945 -15.291656 15.537236 -16.297403 -8.510141 -1.504250 0.953575 -2.258787 10.808103 -10.244407 -5.759593 10.175969 -18.245384 0.370956 5.380365 13.681722 3.726247 33.176159 30.535160 -1.910620 22.941795 -0.166545 -17.467285 41.009666 -15.393452 2.166150 -1.058677 9.678998 -4.492890 12.041449 13.809221 -9.377957 -17.207896 -24.277521 1.947192 2.839287 12.933754 -10.117973 -22.484753 -30.401569 -3.387447 1.271095 32.563059 -0.833731 44.052221 -12.638674 12.026838 -47.473517 4.547910 10.280861 -2.987366 18.383089 10.381846 -20.405799 -18.796598 -3.876161 -20.308538 -10.279437 -0.336478 -20.059558 -17.295020 -16.139320 14.573278 -19.270280 4.861933 18.165187 -5.771208 23.641144 -5.422230 -4.131106 -14.065541 4.641694 25.583245 3.492611 -17.853986 17.557452 0.168594 57.490007 -4.419160 20.688096 -11.879686 4.303215 -4.650343 -20.802453 -12.417303 29.635479 26.580758 10.338596 -2.093456 -1.755456 -2.932940 15.397194 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -2.617421 2.789421 17.556525 8.745636 -7.710195 -9.166066 -4.172807 -14.368963 8.399856 4.853392 12.294692 0.602638 5.598686 0.570231 -0.050707 -1.659007 4.963474 -1.905295 -1.529490 -4.812823 -3.742469 12.332575 7.369027 -8.765304 2.640700 -13.747725 6.850592 2.887229 5.980446 8.453176 1.391765 0.854237 -1.521519 5.909094 -5.838363 -0.224885 -1.067508 3.653317 -5.220018 -2.229062 5.526754 0.983952 7.493650 2.422060 8.687371 2.252748 5.865189 -1.795234 -8.203418 -3.758898 -4.983153 10.025834 -5.771307 6.603871 -0.360940 4.007335 0.322349 -6.783546 -1.305090 -12.404948 2.029664 1.149138 -5.368804 -0.373987 -7.782636 2.378341 -3.362276 -5.145549 1.887207 -4.019785 7.136070 0.279275 1.112439 -4.741559 -11.187261 3.496232 0.765647 2.376426 5.566491 2.376419 -4.128791 -0.972319 -5.846074 -8.194261 6.153119 3.152395 0.115194 1.208807 -1.882831 -3.754992 0.349774 -1.005081 -1.894382 9.203591 -11.185646 5.880834 -0.352221 -3.765059 -4.488252 -7.345191 -0.512729 -9.130568 3.447561 6.352965 -4.377710 2.505212 -0.896303 3.644313 -1.201325 -9.345916 2.056141 -1.781632 -1.695323 9.419563 -5.775790 -4.300386 -0.652105 0.222960 0.400881 8.102739 -0.048466 4.076497 11.328279 6.599771 4.759947 -6.983008 1.716953 4.584411 5.362106 5.029072 5.091259 -7.839628 -5.307282 2.181146 -1.837874 -15.577001 -1.748483 6.825481 9.632483 0.670915 -10.526706 3.014743 -3.788360 8.747665 8.608411 5.313629 3.538416 0.039932 -6.826269 3.452950 17.724812 -5.618101 6.829021 -4.144778 -8.387022 11.810326 -5.840391 7.530256 -0.210001 1.788110 2.035833 -9.195096 -0.539842 12.506934 2.400727 2.224106 3.404128 1.601800 -2.628839 -14.312106 -15.460368 -4.240703 6.127442 3.931494 16.884505 -8.274408 -3.956584 -2.906576 10.118177 -1.477296 -4.898774 1.982842 -4.377482 3.730219 -19.575977 -13.982734 16.476319 16.133015 3.946128 -0.538890 10.017841 3.817666 -3.827022 -7.624844 -6.731061 5.605430 3.387410 -1.926829 -1.831537 0.537381 -11.840005 -3.071702 0.156246 1.719228 5.822292 -5.324300 0.323590 0.669030 -9.500312 -5.870596 4.849703 -9.131127 -5.613354 -1.287385 1.622140 -0.012224 3.290387 -2.848867 -4.016577 2.485322 -6.958350 -1.873443 3.036861 7.161152 1.937537 13.395609 13.012674 -1.495714 4.826324 1.301598 -6.458372 21.453232 -7.859081 -2.086432 -0.646810 5.564873 -0.555323 4.175372 5.026056 -3.818846 -5.700697 -9.691112 4.247750 -0.870409 3.980699 -12.131676 -8.798640 -11.433746 -1.958043 1.528804 11.332904 0.717427 20.718846 -3.589986 2.215885 -21.413096 0.714607 8.199814 -1.104777 7.489153 5.923138 -8.093498 -13.026214 -2.680419 -5.606524 3.517296 -1.437600 -8.355109 -6.530534 -5.397981 6.054830 -6.745534 4.805851 9.656632 -1.530000 9.082508 0.478287 -2.227268 -5.232952 0.190443 5.942589 3.517351 -7.142448 10.591876 -1.057393 22.082837 -3.670452 7.917591 -6.792747 2.747472 -3.267944 -5.904705 -4.216009 11.767741 10.334829 5.017688 0.458216 -0.529513 -4.722213 6.735272 -PE-benchmarks/topological-sorting.cpp__main = 0.349310 1.965122 6.108397 1.765899 -2.649200 -5.331530 -1.633456 -7.650697 3.119144 1.808449 4.573947 -0.452145 2.655919 0.185184 0.232626 1.493567 2.825252 -0.094597 -0.015600 -2.413258 -1.615393 5.032945 0.231520 -0.799438 1.249107 -4.625660 2.134285 2.183244 2.872935 2.765463 1.388034 -0.172824 -0.875249 2.058547 -1.698745 0.946545 0.380273 1.243354 -3.569597 0.473904 0.106320 0.090237 3.604743 0.563275 3.475803 1.392370 2.423374 0.592921 -2.237350 -1.308504 -1.972165 4.534352 -1.404723 2.407381 -0.666064 -0.277520 0.024707 -1.723441 -0.010304 -1.136680 -0.175456 0.172844 -2.630884 0.028319 -3.091557 0.441753 -1.849484 -2.377511 0.158144 -1.076125 2.303780 -0.377749 -0.862925 -1.006750 -6.024035 0.705786 1.033286 1.200633 2.405402 0.115729 0.037206 -0.640272 -2.787337 -3.429477 3.335539 2.989170 1.021400 1.049434 -3.067632 -1.696607 -0.771873 -0.253425 1.173117 2.928050 -3.445604 1.344479 -1.184551 -1.849279 -2.981682 -4.585564 0.835216 -2.337148 1.696250 -0.306251 0.233526 0.503554 -0.348210 1.234564 -0.713029 -3.019740 0.771391 -1.183968 -0.202128 5.138900 -1.329015 -2.113332 -1.737373 -0.706947 -0.756365 2.826198 1.172872 0.515120 3.860701 2.709430 2.604982 -3.144032 -1.233937 1.374298 1.575366 2.262487 1.934792 -2.785098 -2.152678 0.934512 -2.342910 -6.235703 -1.367759 1.932485 3.604118 -1.157040 -1.479259 0.619746 -2.063303 2.915908 2.752356 1.175699 1.381681 -0.005188 -2.822893 1.535816 5.864708 -1.901956 2.782984 -2.345187 -1.782873 2.685087 -1.148162 2.004254 0.470201 -0.754353 -0.643846 -1.864863 0.280534 4.166248 1.019234 0.809390 0.491947 1.180727 -2.485712 -4.177104 -6.246220 -0.709046 3.317118 0.773544 5.264465 -3.180018 -2.349230 -0.766606 3.702594 -0.572682 -2.092881 1.959422 -2.815701 2.042708 -5.777515 -4.634278 6.287110 6.215585 2.665785 -1.094612 3.040467 1.831675 -3.831643 -3.189916 -1.962941 2.173945 0.592480 -4.514627 -1.549755 0.502953 -4.396847 -0.465046 -0.539617 1.360543 1.238024 0.335031 2.422153 -1.167305 -3.151552 -2.451781 2.396826 -2.312568 -0.937806 0.005597 0.105042 -0.358855 1.951206 -1.970551 -1.071735 1.629007 -2.935951 0.233610 0.971052 2.312587 0.509089 5.506487 4.668211 -0.432180 4.196014 -0.133819 -2.733421 6.179606 -2.027050 0.800856 -0.158236 1.590948 -0.589044 1.658855 2.577671 -1.599783 -3.020653 -3.950517 -0.360132 0.687188 2.114789 -1.078026 -3.440603 -5.219022 -0.355578 -0.118300 5.409787 -0.024988 6.642857 -1.617675 2.112079 -7.047481 0.795720 1.602479 -0.613784 2.642425 1.583767 -3.379348 -3.024544 -0.380172 -3.779385 -2.674247 -0.046210 -2.888710 -2.817231 -2.513162 2.338366 -2.522739 0.393160 3.119602 -0.673702 3.302167 -0.766222 -0.606854 -2.010146 0.339126 4.517623 0.173140 -2.960301 2.589979 0.462362 9.571518 -0.290355 3.219690 -1.694834 0.408780 -0.345334 -3.391502 -2.222178 4.615814 4.075257 1.652045 -0.261449 -0.109191 -0.317347 2.577635 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.418138 1.552408 9.686342 3.878590 -3.144831 -6.202806 -2.641356 -10.580265 5.837499 3.498112 8.352112 0.538061 5.009811 -1.187993 0.460393 -0.626690 4.104288 -1.664605 -0.019864 -2.721693 -0.108540 8.898859 2.310606 -2.919946 0.850988 -7.138251 3.169691 2.405557 3.889207 4.765305 1.393750 0.118826 -1.344822 3.087199 -3.086485 1.138211 0.616480 2.727954 -3.445354 -2.354983 1.709548 0.194461 5.131461 0.726135 6.033464 -0.147662 3.530656 -0.918845 -3.628869 -3.046857 -2.102319 5.876160 -3.380917 3.474483 0.548405 -0.018208 0.729448 -2.387551 -0.085920 -5.859567 1.158415 0.474082 -3.531233 -0.318793 -3.588501 1.246245 -1.794565 -2.271003 0.328755 -3.629508 3.650706 -0.339427 0.494082 -1.845929 -8.302249 1.746439 0.833603 0.361629 3.543308 2.604077 -1.928920 -1.655528 -3.361669 -5.360120 5.033197 3.866283 0.293853 2.059067 -4.401610 -0.707016 -0.420096 -0.385340 0.227275 4.926435 -5.962212 2.569385 0.921512 -2.707596 -2.410257 -4.751676 0.867418 -5.182624 1.638275 2.595154 -1.010559 0.261095 -2.295906 1.332089 -2.313189 -5.232866 2.341317 -1.949786 -1.186887 5.934227 -4.006479 -2.013311 -2.211212 -0.071371 0.859853 4.494192 0.911615 2.190400 5.125355 3.757002 3.558785 -5.418374 -0.346512 3.762912 4.122563 2.597722 1.484627 -4.532289 -2.708337 1.950163 -3.143305 -9.600138 -2.764740 4.614840 5.834088 -0.019497 -4.925698 1.778987 -2.254023 5.128727 5.844979 2.375985 1.649676 1.330565 -4.569209 1.847463 8.386537 -3.033847 4.435301 -1.589688 -3.734321 5.963242 -3.723584 4.211589 0.268813 0.785677 -0.137369 -4.283725 0.293019 7.105431 1.668149 3.112856 -0.978527 1.389810 -1.866156 -7.748127 -10.938369 -2.377798 5.729311 3.185003 8.649838 -4.750037 -3.483892 -0.091942 5.761940 -1.069010 -4.336391 2.397974 -3.465269 3.299613 -11.298285 -7.958029 10.231218 9.663084 3.487040 -0.604908 5.228166 2.448881 -3.897869 -4.087357 -3.633651 4.127640 0.880952 -4.261651 -0.605594 0.547772 -6.961877 -2.128262 -0.783240 0.952613 1.427932 -1.602167 2.978904 -0.285960 -3.744602 -2.581310 3.477536 -3.450909 -3.215279 -1.820496 0.585459 0.300218 2.665830 -2.395720 -1.514987 2.398373 -4.804322 -1.105041 1.477435 2.968495 1.573001 8.505764 7.731339 -1.513389 4.054230 -0.417962 -3.644345 10.485517 -4.465045 -0.554627 -0.503076 3.155105 0.784148 3.000153 3.809572 -2.533208 -3.847293 -6.180067 0.457632 0.830358 3.872187 -5.181273 -6.518840 -7.323920 -0.209240 0.474563 7.508429 -0.442229 11.915659 -3.054488 2.576166 -12.100429 0.843660 3.977874 -1.009219 4.251308 2.476634 -4.828461 -6.329773 -1.410183 -4.590498 -1.731213 -0.126260 -4.706763 -3.578330 -5.061245 4.964774 -5.069474 1.569625 3.915280 -0.723456 5.689578 0.387551 -1.012188 -3.734049 0.995425 3.700097 1.075874 -4.392488 5.591284 -0.033128 13.367003 -2.979633 4.827658 -3.433304 3.630323 -2.786898 -5.092800 -2.592381 7.430632 7.427923 2.332350 -0.935731 -0.030985 -2.175390 4.089636 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -2.372875 2.691830 12.599654 5.804874 -6.216780 -7.441670 -4.080811 -11.462815 5.333479 4.025813 8.725034 -2.308413 3.023856 0.892421 -0.448012 -0.232410 4.118443 -1.848148 -1.288706 -4.235996 -3.523009 7.505483 2.979227 -4.981760 2.078781 -9.253367 5.764578 2.117918 2.419769 5.399706 2.833651 -0.079469 -0.973670 4.930993 -3.475340 3.822055 1.497891 2.869988 -3.735458 -0.049670 2.916085 2.149285 5.503716 0.737867 7.509106 5.201930 3.494810 -0.545330 -8.215930 -2.503140 -2.579320 7.632934 -4.620980 4.479895 0.623217 2.592439 0.418018 -7.012947 -1.247199 -6.686677 0.053092 1.242586 -4.344049 0.309341 -6.151236 1.038549 -1.546276 -3.474935 1.700817 -2.821895 4.368157 -0.480579 -0.471294 -1.463957 -5.862632 3.282760 2.123827 1.928617 4.533292 -0.783900 -0.655892 -0.741073 -3.640911 -6.144612 4.317643 2.499692 2.139315 1.781397 -1.027754 -2.514727 -0.219020 -1.199752 0.085602 7.155052 -5.675689 2.161561 -0.885390 -3.571607 -5.646835 -6.049950 0.469957 -5.800572 3.631210 5.077390 -3.500057 1.439417 -0.383787 3.171303 -0.752167 -5.337847 1.295450 -2.831843 1.526069 7.450500 -3.962389 -4.408856 -1.893267 -1.380380 0.455504 5.999161 1.005479 1.487824 8.030149 4.763911 6.575164 -6.057704 -0.806113 1.683577 3.672293 3.839157 4.337480 -6.557570 -3.543830 0.948265 -3.243042 -10.473262 -2.544968 2.059257 7.044626 0.352081 -7.194996 2.401820 -3.134384 6.467436 3.930174 4.269326 2.228338 -0.172212 -5.426242 1.730485 11.110030 -3.497894 4.761385 -3.550398 -5.491377 5.224597 -1.622478 4.461745 1.861865 -0.510619 0.457755 -6.416923 0.546934 8.362509 2.342870 1.482180 1.493336 2.140966 -3.057012 -9.347169 -11.156389 -0.828574 4.558229 0.888757 11.715906 -7.018075 -4.346841 -2.354106 8.773036 -1.210608 -3.287646 1.453724 -3.472494 3.417870 -11.372123 -9.865768 12.148148 11.614667 4.357910 -1.575289 6.900365 1.850608 -5.928745 -4.782427 -5.032076 4.396909 1.905525 -2.452917 -1.322261 0.779040 -7.835299 -2.154151 -0.578669 2.591070 3.497353 -2.691353 -0.431270 -0.415294 -6.165812 -3.868332 3.013910 -5.646551 -2.901770 -0.243793 1.274148 0.131673 3.544155 -3.581850 -3.809535 1.701233 -5.374048 -0.965096 2.893730 6.157945 1.394631 10.133671 9.090299 -1.620363 6.388704 0.509081 -4.230248 14.154141 -4.036646 -0.065618 -0.510448 3.937538 0.420899 1.812304 4.888736 -3.245430 -5.053818 -7.094617 1.145447 -0.096586 3.271635 -7.618842 -6.194371 -9.696972 -0.707931 0.158426 8.579829 1.099739 13.922212 -0.829729 2.170936 -14.396129 0.668237 6.488753 -0.990631 4.100284 4.200796 -6.569855 -10.431085 -0.928383 -6.034144 -1.017440 -0.860703 -4.860362 -5.077705 -4.290283 5.613005 -2.808928 2.174575 8.459528 0.095337 4.831500 1.521596 -1.530222 -2.788414 -1.954083 5.548083 1.401741 -5.520015 7.290646 0.759600 17.895037 -1.607635 5.445163 -4.329327 1.351670 -0.857014 -4.583155 -3.963194 8.079778 6.986800 3.610938 0.507929 0.038903 -3.535326 5.614984 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = -0.267341 0.996617 3.993842 2.083551 -1.866294 -2.867300 -1.157787 -3.548729 1.650012 0.770896 2.652892 -0.403178 1.234498 0.427303 -0.083990 -0.289756 1.301534 -0.268730 0.039476 -1.139470 -1.422754 3.158397 1.157368 -1.752136 0.470904 -3.145991 1.872987 1.124714 1.440731 2.174175 0.302375 -0.018596 -0.361174 1.333269 -1.557702 -0.194166 -0.137355 0.842014 -1.549500 -0.024873 0.840975 0.180933 2.140417 0.043578 1.556945 1.022366 1.418811 0.028255 -1.863913 -0.799228 -1.247638 2.253298 -1.167875 1.342972 -0.132152 0.499814 0.383876 -1.525829 -0.429389 -1.997620 0.180388 0.208854 -1.485535 0.053914 -2.189732 0.442454 -1.162648 -1.560004 0.762154 -0.721455 1.441848 0.166141 0.133355 -1.096782 -2.919403 0.946712 0.396460 0.884268 1.033799 0.292955 -0.374193 0.247527 -1.734517 -1.838468 1.209638 0.964967 0.511813 0.135552 -0.823542 -0.993398 0.124940 -0.027328 -0.077202 1.899660 -1.686163 1.363571 -0.939898 -0.868099 -1.692465 -2.452317 -0.038961 -1.825224 1.032148 1.163736 -0.928147 0.391668 -0.072895 0.767711 -0.153329 -2.615874 0.283479 -0.863098 -0.090860 2.689512 -1.239465 -1.004631 -0.548841 -0.252177 -0.182071 1.910771 0.073603 0.703428 2.225906 1.623591 1.056528 -1.861305 -0.165278 0.670609 1.091195 1.159180 1.489058 -1.791147 -1.311345 0.132614 -0.744418 -3.901330 -0.451907 1.251497 1.995865 -0.176778 -1.984554 0.884668 -1.270761 2.135100 1.749796 1.318123 0.886697 -0.100740 -1.519226 1.036935 3.879812 -1.284307 1.768574 -1.423528 -2.218491 2.778893 -0.773657 1.718036 0.050839 0.209480 0.215672 -1.864768 0.203479 2.740633 0.533937 0.606664 1.209691 0.213577 -0.604076 -3.194314 -3.542113 -0.111190 1.890806 0.637855 3.962770 -2.185968 -1.199201 -0.330317 2.333501 -0.353788 -1.123484 0.543530 -1.082695 1.013304 -4.766412 -3.513370 3.589029 3.340784 0.697174 -0.157446 2.138429 0.847800 -1.219138 -1.793625 -1.779661 1.564591 0.436718 -1.037106 -0.525229 0.150224 -2.594463 -0.207282 0.071714 0.705110 1.582873 -1.235405 -0.082743 -0.758997 -2.540920 -1.767344 1.485840 -2.239885 -0.874273 0.112457 0.093313 -0.166574 0.970051 -0.583570 -0.916269 0.508163 -1.595273 -0.221339 0.605125 1.440957 0.187757 3.442552 3.132643 -0.297991 1.619582 0.401668 -1.414096 5.271633 -1.792270 -0.080847 -0.143578 1.675635 -0.384803 1.026190 1.603076 -0.815592 -1.776924 -2.329775 0.756415 0.017532 0.940843 -2.566817 -2.080727 -3.104778 -0.514261 0.356911 3.090393 0.191714 4.518941 -0.761818 0.785903 -4.753414 0.238284 1.526460 -0.108376 1.934739 1.194485 -2.007826 -2.617106 -0.471403 -1.684839 0.414106 -0.419980 -2.397268 -1.632261 -1.051489 0.895006 -1.228503 0.798802 2.418143 -0.604715 1.750845 0.184498 -0.598093 -1.060964 -0.383837 1.932140 0.486527 -1.617297 2.563222 -0.128587 5.506213 -0.415481 1.815240 -1.369269 0.478372 -0.287681 -1.664562 -1.027124 2.833780 2.101179 0.899604 0.016183 -0.020367 -0.714591 1.391463 -PE-benchmarks/largest-independent-set-problem.cpp__main = -1.138941 1.569256 10.089758 6.373952 -5.545653 -9.531769 -2.900825 -13.175652 6.696033 2.724584 9.856252 0.174723 6.063692 -2.840858 0.356817 0.606421 6.267018 -0.508917 0.016947 -3.903719 -2.922095 12.441762 1.833278 -3.164463 1.747187 -7.057999 4.398062 3.906912 5.651724 6.258108 1.882106 -0.263373 -1.282794 2.817337 -3.254855 1.138631 -1.524853 2.799233 -6.405289 -1.891172 1.855281 -3.306958 8.219606 -0.340428 5.498609 -1.327357 6.621919 -0.391518 -5.536410 -3.333380 -5.219072 7.526550 -3.846769 4.163317 -1.176864 -2.183093 2.561807 -1.178432 -0.756000 -4.455689 -0.275341 -1.540791 -5.123563 -0.679944 -5.572527 1.693048 -4.153290 -4.251474 1.290255 -2.951108 4.219793 0.909545 -0.078897 -2.409003 -11.592729 1.844683 2.259389 1.795351 3.663705 3.921207 0.713585 -2.003745 -5.703441 -5.537912 7.399731 3.020852 1.905612 1.927495 -6.954480 -1.773495 -0.141778 0.929849 1.720002 3.618598 -6.790201 3.006942 -1.365332 -3.501938 -3.860223 -8.639850 0.814404 -5.289374 2.133262 2.048903 -1.824955 1.711454 -1.792408 1.657597 -2.634619 -8.159291 1.162934 -2.797235 -2.363646 9.267107 -4.291635 -3.636624 -3.629366 0.739091 -0.608526 4.375715 1.541085 3.212661 6.624605 4.786106 4.498212 -6.697847 -1.086471 3.301621 4.674002 3.333332 2.595124 -2.834310 -4.440292 1.741075 -4.020264 -12.849348 -4.332843 6.064863 7.843769 0.147249 -4.484956 2.276500 -3.259448 6.831788 6.742490 1.755113 2.739933 1.570476 -5.804911 3.724165 9.764569 -3.936925 5.620448 -3.704880 -5.000069 8.233360 -2.518925 3.305600 -0.290245 -0.073891 -0.443160 -4.727665 0.745286 8.116490 1.244049 1.703582 -0.381476 2.155345 -2.928199 -9.856030 -13.092564 -0.804125 7.543794 4.586780 10.696642 -6.297574 -3.927284 0.616340 4.902076 -1.523954 -5.486185 3.260326 -5.723888 4.188373 -15.724912 -10.816219 13.689897 9.994984 3.796795 0.543938 5.469227 3.943342 -6.023316 -4.838095 -5.384528 5.400413 2.749729 -8.638206 -2.171499 1.176491 -8.658524 -2.033949 0.094129 1.687707 2.027098 -2.774974 4.609399 -3.730975 -5.559607 -3.515297 6.479771 -5.620769 -2.533892 -1.007368 -0.758289 0.956976 4.312172 -1.789257 -0.947697 0.495121 -5.770777 -1.347955 -0.082535 4.833641 1.385496 10.562466 12.382491 -2.132340 6.067201 -0.386978 -6.116086 12.680421 -5.998022 0.035518 -1.170188 4.329098 0.734054 3.731496 6.535663 -2.957568 -5.194791 -7.849111 -0.245010 2.261871 4.372681 -6.253071 -6.361019 -10.933422 -0.635921 0.421621 10.212249 -0.448986 13.722715 -5.747321 2.319769 -14.887404 0.790750 3.710420 0.045161 6.990808 2.250837 -5.800263 -5.353805 -1.937046 -6.663658 -0.719480 -0.659515 -5.844494 -5.343434 -5.318266 5.209378 -6.432480 1.614275 4.745866 -2.238638 7.774886 0.139574 -1.494878 -4.412652 1.495623 5.586852 2.086965 -4.811816 7.384548 0.459660 17.445285 -0.809591 4.789492 -4.725813 3.276860 -2.516356 -7.723689 -3.489350 8.791429 9.619466 2.030518 -0.189532 0.431568 -1.222821 5.567587 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -10.185115 -1.115520 29.302047 15.783989 -7.708582 -18.585232 -9.371492 -26.011537 17.357083 7.858667 28.106272 -0.867262 13.715571 -6.837292 2.061254 -4.016979 12.777213 -9.228033 -2.463463 -8.942485 1.257701 28.904237 12.108273 -15.096889 3.432567 -25.817273 7.356487 8.859701 8.325920 18.188934 1.996365 0.813136 0.288916 8.753030 -12.591570 5.255567 2.279936 5.067932 -9.315190 -8.058874 8.914026 5.218650 17.343772 -1.823233 17.927357 0.436508 13.505218 -4.317952 -16.112502 -11.258053 -8.823364 19.812026 -12.025675 8.363630 -0.396986 4.566483 5.946472 -13.184838 -5.712069 -25.109952 2.963253 6.483574 -11.062264 -1.917053 -10.524671 6.074131 -0.653611 -6.285840 7.006278 -12.805441 11.534201 2.467322 1.427035 -6.311371 -17.303065 8.503949 4.126591 3.462399 7.064470 4.052236 -5.046281 -2.974734 -8.085568 -11.689118 15.091756 5.373279 4.418944 6.689824 -8.921260 -1.352502 -0.177830 0.308588 -1.870853 11.043373 -15.606620 4.296246 7.513556 -9.862785 -8.234715 -6.045765 0.559722 -15.697927 3.545123 17.164259 -6.548149 5.304120 -8.721951 5.660246 -10.528415 -17.563073 4.862556 -5.958891 -4.750309 17.684761 -17.711354 -5.833589 -7.559349 3.026873 2.232448 15.827095 -2.763423 10.317345 16.769750 12.616096 8.596520 -17.559977 1.120378 7.283394 19.069436 7.696838 7.690826 -12.175326 -9.972985 1.611472 -9.943549 -30.592667 -10.805563 11.588535 21.079829 6.253852 -24.976669 12.920374 -5.986738 22.896384 17.781397 5.334417 4.669404 3.700111 -17.955105 9.489029 27.271330 -11.705742 16.875107 -8.924899 -16.107579 19.984665 -9.650006 11.354252 2.794048 1.009492 3.063797 -15.830522 2.871544 21.342372 7.462101 10.848803 -3.376943 4.887028 2.397785 -27.426133 -35.442963 -6.994969 10.890677 8.413857 32.443964 -15.295609 -13.103473 -4.667607 17.881568 -8.628512 -13.574554 3.012642 -12.604847 8.574037 -40.023695 -28.280549 37.656434 32.370408 11.373279 6.422774 20.698802 8.145698 -7.327888 -3.380116 -9.283423 14.980455 9.860170 -10.819143 1.445878 0.459558 -19.289404 -11.909224 -3.187899 3.488664 -1.002192 -10.164128 4.006176 -2.181972 -16.583710 -4.671780 8.924003 -17.973870 -9.210735 -4.254608 -0.073848 2.594094 8.946462 -7.665672 -3.958052 4.282067 -16.682333 -5.560182 3.179593 15.597643 9.964308 20.873493 29.781830 -5.010721 17.518651 -0.359427 -12.579599 31.559971 -15.100985 -3.682698 -3.214934 12.244826 6.225565 8.148894 10.702543 -6.614984 -7.438644 -19.134021 7.978814 4.815547 10.903009 -21.131650 -19.111180 -23.187261 -3.718401 4.596896 23.488948 -1.635796 38.742899 -10.209973 3.175717 -43.071385 0.137530 13.748643 1.532004 10.660920 8.603125 -13.918423 -30.874874 -3.817732 -14.000197 1.361553 -2.899244 -17.808146 -12.520213 -17.939248 22.112124 -17.945830 7.729274 16.396129 0.709102 17.535622 7.813772 -4.707977 -10.543956 -0.387667 4.387838 8.417385 -11.147200 18.917713 -0.821635 40.091294 -8.821989 15.388788 -15.264155 14.898951 -7.853004 -15.210034 -6.978430 22.277003 25.182768 2.745419 1.075026 -1.636692 -8.581490 15.744737 -PE-benchmarks/reservoir-sampling.cpp__main = -0.197906 1.007304 3.165973 1.636486 -1.506465 -2.482995 -0.930279 -2.917140 1.280218 0.641430 2.097874 -0.240009 1.105284 0.371899 -0.076235 -0.220045 1.237804 -0.051683 0.058255 -1.044772 -1.218232 2.528291 0.909315 -1.312131 0.480932 -2.258707 1.612801 0.939172 1.165421 1.867998 0.311106 0.034159 -0.371517 1.154119 -1.191626 -0.210593 -0.214855 0.790872 -1.348331 0.099183 0.688157 0.066489 1.938152 0.258910 1.197467 1.073291 0.983059 0.134320 -1.544990 -0.665469 -0.911559 1.574496 -0.949435 1.213242 -0.279662 0.294063 0.538716 -1.058620 -0.143046 -1.472456 0.114364 0.066697 -1.230643 0.048630 -1.880209 0.244303 -1.079406 -1.500320 0.383960 -0.643103 1.129129 0.107199 -0.098981 -0.909057 -2.483547 0.683401 0.449432 0.787962 1.017102 0.367485 -0.370832 0.115504 -1.524056 -1.665690 1.023354 0.754485 0.543034 0.325922 -0.790480 -1.091121 0.129044 0.046549 0.133071 1.557606 -1.160499 1.213145 -0.690695 -0.792875 -1.296766 -2.173920 0.058538 -1.365623 0.863942 0.669255 -0.721380 0.163403 -0.234541 0.655111 -0.101151 -1.990231 0.368825 -0.761389 -0.156670 2.254781 -0.843826 -0.892475 -0.589580 -0.301263 -0.011937 1.658611 0.218753 0.368293 1.736748 1.337855 0.828891 -1.520730 -0.201085 0.402862 0.739379 0.901000 1.274396 -1.285435 -1.195281 0.216959 -0.785402 -3.093733 -0.412485 1.094613 1.610261 -0.316165 -1.390563 0.799795 -1.192330 1.392812 1.476306 1.106450 0.826676 -0.178186 -1.261343 0.827132 2.937880 -1.078613 1.401173 -1.088225 -1.935255 2.296462 -0.540876 1.319039 -0.026949 -0.110323 0.020893 -1.305877 0.360347 2.273656 0.388728 0.425260 1.004580 0.143958 -0.612044 -2.341283 -2.867810 -0.005595 1.662183 0.757117 3.174567 -1.745097 -0.786378 -0.257779 1.819692 -0.173495 -0.903134 0.468321 -0.815331 0.843114 -4.003619 -2.752925 2.916555 2.560519 0.667509 -0.288855 1.378322 0.692351 -0.841635 -1.687780 -1.386144 1.227720 0.198462 -0.923808 -0.536787 0.244612 -2.054586 0.004217 0.082785 0.620318 1.376110 -1.166747 0.098064 -0.901986 -1.963577 -1.597473 1.104369 -1.686195 -0.624698 0.209205 -0.046711 -0.124391 0.753386 -0.280199 -0.795173 0.321309 -1.267578 -0.191512 0.346753 1.285741 0.117913 2.681369 2.483504 -0.346645 1.067074 0.358045 -1.243938 4.292831 -1.594552 0.107713 -0.088709 1.562176 -0.200577 0.853578 1.458774 -0.652485 -1.383445 -1.950262 0.456745 0.292213 0.735293 -2.171662 -1.587864 -2.667550 -0.245802 0.097584 2.712543 0.024074 3.623709 -0.615720 0.668147 -3.552749 0.275902 1.084260 -0.132869 1.626574 0.979612 -1.754580 -1.829788 -0.444757 -1.672860 0.370259 -0.241168 -1.653207 -1.314809 -0.514972 0.477696 -1.013940 0.617630 1.847994 -0.701723 1.371780 0.104083 -0.443919 -0.932850 -0.367787 1.818464 0.239163 -1.298735 1.922827 0.003212 4.229523 -0.120393 1.549295 -1.031676 0.295478 -0.153153 -1.483033 -1.025479 2.388584 1.698099 0.712676 0.168462 0.111595 -0.281123 1.134546 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -0.686472 2.569272 9.266706 6.457728 -3.921721 -5.451796 -2.495513 -6.096409 3.532306 1.307583 4.643257 -0.584901 1.613470 1.505633 -0.717381 -1.966710 2.183047 0.479853 -0.934011 -2.251091 -2.722634 6.000639 3.610719 -6.648562 0.803461 -6.318458 4.239187 2.803400 3.042752 4.555516 0.203766 0.140507 -0.180008 3.655705 -4.841925 -1.822943 -1.036828 1.728491 -3.467764 -1.156422 2.959643 2.132212 4.677997 0.370595 3.020712 2.549210 3.172822 -0.605337 -4.763345 -0.772675 -2.652141 5.306571 -2.310775 3.447589 0.070414 2.837083 1.281820 -4.630195 -0.568481 -5.695479 1.159549 2.439889 -3.163161 -0.428268 -5.150654 0.309890 -1.319614 -4.092482 2.112392 -1.836735 2.872337 0.082229 0.108699 -4.507192 -5.055162 2.597087 0.746055 2.367613 2.532550 1.454407 -0.930032 0.705302 -2.765147 -3.598289 1.371038 0.783800 0.726912 0.945620 0.273915 -3.769937 0.991993 -0.328753 -1.271404 4.501847 -3.132034 4.387587 -1.882649 -1.682294 -2.964130 -3.331925 -0.551817 -4.168450 2.299367 3.193682 -2.635425 1.562426 0.813967 1.921486 0.749696 -5.247736 0.337948 -1.468892 0.281568 5.260833 -2.542672 -2.504075 0.162110 -0.266687 -0.803356 4.805572 -0.633413 1.330484 4.556832 3.323721 2.000302 -4.030434 0.832990 1.030687 1.747528 3.026866 3.735415 -3.778718 -2.625670 -0.422627 -0.219822 -8.192325 0.370861 2.817023 3.927634 0.438268 -5.500223 1.843729 -2.431216 4.516628 2.950434 3.617999 2.269878 -0.638441 -2.870026 1.715310 8.460933 -2.788119 3.309752 -2.917943 -6.492036 6.159441 -1.502687 4.505601 -0.532514 0.234100 2.025899 -4.650359 1.098585 6.524501 0.657623 0.650307 3.766843 -0.403171 -0.748892 -7.370269 -7.079866 -0.091214 2.313783 1.713924 9.916727 -4.356630 -2.837723 -1.482990 5.048719 -1.269398 -1.156149 0.680552 -2.030408 2.223025 -10.858910 -8.019494 7.039473 6.654538 0.459533 -0.894337 4.988438 0.734730 -0.445471 -4.359683 -3.491580 2.862461 1.838441 1.039819 -0.004168 0.080713 -5.120438 0.018984 1.128558 1.073641 3.820188 -4.680380 -1.731147 -2.094057 -6.367138 -4.761533 2.460624 -5.646377 -1.275891 0.400085 0.550231 -0.646472 2.096895 -0.826029 -3.621767 0.693148 -2.736387 -0.868991 0.666869 3.837152 0.417619 5.991399 6.492561 -0.297824 3.902521 2.246991 -2.971422 14.053935 -4.859499 -0.699334 -0.003285 4.445025 -1.027201 2.383700 2.702387 -1.781411 -2.587075 -5.035494 2.616558 -0.356435 1.576127 -8.592416 -3.608918 -5.709488 -1.711499 0.691679 5.261756 0.219416 10.172471 -1.274705 0.865532 -10.632074 0.222144 4.298763 -0.061434 4.517884 3.523832 -5.220168 -7.475896 -1.038824 -2.750080 3.658861 -1.021943 -5.469925 -3.436536 -1.312450 1.493933 -2.599343 2.958540 6.585813 -1.940620 2.840470 -0.270261 -1.081071 -1.244825 -2.543120 3.125911 1.411087 -3.653009 5.591123 -1.008310 11.084978 -1.081912 4.506424 -3.923592 1.021703 -0.626181 -3.029123 -2.630390 6.295542 3.611194 2.093797 0.416413 0.349875 -2.731312 2.966475 -PE-benchmarks/min-cost-path.cpp__main = -0.315768 0.981071 4.077538 1.727657 -1.260470 -2.024168 -1.088299 -3.300781 1.607968 0.746493 2.591938 -0.351013 1.228070 0.535976 0.020957 -0.252650 1.371029 -0.700077 0.284557 -1.024946 -0.276043 3.211502 1.132815 -1.791946 0.306181 -3.529521 1.557592 0.895299 1.548298 2.094217 0.176527 -0.029565 -0.055004 1.357182 -1.561811 -0.459580 0.315344 0.859482 -1.546558 -0.025944 0.609404 1.051250 1.719218 -0.090473 1.431551 1.029652 1.393898 -0.023913 -1.390700 -0.693886 -1.171882 2.283376 -1.180564 1.318475 -0.169430 0.453543 0.150236 -1.540507 -0.620358 -2.075304 0.199608 0.898487 -1.027147 0.020903 -1.922277 0.598168 -0.590346 -1.241093 0.742126 -0.253318 1.536933 0.495052 0.602384 -1.055183 -2.728296 1.289657 0.189800 1.029763 0.840235 -0.232525 -0.453607 0.398838 -1.274708 -1.844545 1.066241 1.378649 0.425460 -0.087664 -0.204272 -0.665893 -0.149770 -0.077272 -0.640442 1.995548 -1.441920 1.435619 -0.910464 -0.653014 -1.251404 -1.655590 -0.401770 -2.072489 0.875797 1.415068 -0.533983 0.516018 -0.118322 0.877502 -0.251004 -2.187580 0.471630 -0.418538 -0.402979 2.486749 -1.195408 -0.733657 -0.388014 0.015180 -0.123147 1.933882 -0.304558 1.016362 2.163600 1.777855 0.823104 -1.784739 0.012243 0.729800 1.278912 1.213911 1.710561 -2.039810 -1.378862 -0.131724 -0.544998 -3.474171 -0.175170 1.233741 2.000130 -0.538167 -2.311680 0.963933 -1.221687 2.551299 1.970537 1.108735 0.854218 -0.068333 -1.464436 1.307709 3.995560 -1.343373 1.739013 -1.636387 -1.609370 2.482342 -0.859574 1.862325 -0.089339 0.539788 0.243535 -2.109933 0.072412 2.727414 0.916144 1.040107 1.185639 0.036346 -0.022879 -3.222716 -3.214715 -0.673131 1.368568 0.160110 3.892268 -1.761555 -1.446681 -0.464523 1.948635 -0.366965 -1.054984 0.419259 -1.082572 0.884824 -4.296093 -3.301754 3.530482 3.508163 0.547030 -0.051007 2.201074 0.947978 -1.076839 -1.684337 -1.185737 1.725898 0.162774 -1.056245 -0.543900 0.334660 -2.317689 -0.565858 0.029616 0.631322 1.450330 -0.771628 -0.389096 0.041823 -2.775295 -1.497166 1.335016 -2.166705 -1.246816 0.099428 0.176909 -0.014007 0.882350 -0.800028 -0.804521 1.060333 -1.646057 -0.465627 0.666146 1.546505 0.271465 2.426758 2.765301 0.162123 1.657283 0.685143 -1.447312 4.647076 -1.441981 -0.330812 -0.144418 1.178385 -0.562652 1.133390 1.099158 -0.723761 -1.751905 -2.510047 1.223512 -0.205766 0.980611 -2.235640 -2.055412 -2.063988 -0.490543 0.744143 2.861832 0.184332 4.530637 -0.690128 0.729006 -4.727596 0.179380 1.384262 0.091731 1.647701 1.431693 -1.792811 -2.813567 -0.394308 -1.423660 0.012638 -0.562173 -2.646247 -1.666173 -1.282214 1.259535 -1.294341 0.760747 2.540991 -0.240004 1.906743 0.301497 -0.750258 -1.187740 -0.329556 1.580842 0.691584 -1.563083 2.166320 -0.424624 5.208543 -0.952494 1.754876 -1.611496 0.354564 -0.194701 -1.401688 -0.849573 3.029742 1.882919 0.842715 0.172105 -0.499232 -0.776026 1.550689 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -0.966540 1.316636 4.438707 3.750470 -2.953959 -2.575137 -1.468209 -2.445836 1.380001 0.018438 2.053366 -0.257771 0.419410 -0.146855 -0.654645 -1.790043 1.163452 0.115125 -0.854598 -1.407744 -1.652165 2.362131 1.828394 -4.660107 0.879167 -3.009701 3.029119 1.710545 0.673315 2.399013 -0.216761 0.143468 -0.410081 2.592351 -2.175698 -1.437502 0.031606 0.900085 -1.316987 -0.072217 2.269989 2.032820 2.545787 -0.216108 1.272435 2.665718 0.752793 0.107417 -3.475605 -0.542817 -0.247894 1.629584 -1.328301 2.317392 0.278975 1.812254 0.962058 -2.969986 -0.357798 -3.536755 0.781476 0.986843 -0.687020 -0.316265 -2.662198 -0.207371 0.518331 -2.480833 1.784881 -0.917121 1.220770 -0.046715 -0.247949 -2.190141 -0.813110 1.594469 1.307668 2.024503 1.407441 0.299761 -0.110964 0.104311 -1.416172 -1.752548 -0.509715 -0.458102 1.272779 0.790084 1.036590 -2.099438 1.766330 -0.204548 -0.609446 2.479581 -0.750902 0.913904 -1.313120 -0.826788 -2.084146 -1.414738 -0.330650 -1.754978 1.530107 2.670182 -2.599313 0.860674 0.863804 1.193492 0.460075 -2.049101 0.015539 -1.296488 0.814364 2.606176 -0.549605 -1.765544 -0.034677 -0.557671 -0.102591 2.708578 -0.789480 0.227203 2.760208 2.326603 0.943794 -2.215942 0.079668 -0.442366 0.760839 1.681391 2.624338 -2.636977 -1.327036 -0.332959 -0.750413 -3.656278 0.148325 -0.092250 2.452708 0.077478 -3.644847 1.925635 -1.942153 2.643990 0.804248 1.829846 0.961985 -0.692802 -1.836864 1.637133 4.047006 -1.203871 1.332914 -1.420881 -3.356119 2.862574 0.198615 1.898441 -0.047605 -0.737831 0.800188 -2.271276 0.928288 3.186529 0.307920 0.295454 2.196769 -0.273810 -0.296249 -3.880556 -3.491841 0.617254 1.234830 0.888070 5.722072 -2.680395 -1.500612 -1.380329 2.925010 -1.036735 -0.434640 -0.037283 -0.646012 1.347614 -4.369224 -3.898364 4.018981 3.631802 0.041277 0.100061 2.787402 -0.414373 0.217773 -1.907784 -1.757497 1.143768 1.356129 1.397635 0.036653 0.483194 -2.278744 -0.416096 1.089177 0.841230 2.482479 -2.645307 -2.414979 -0.752286 -3.203836 -2.680940 0.512961 -2.709287 -0.037295 1.111145 0.079428 -0.067348 1.441337 -0.292368 -2.794094 -0.853014 -1.193936 -0.558348 0.029370 2.739440 0.429495 2.328969 2.845616 -0.452291 2.073984 1.811717 -1.516681 7.335696 -2.130802 0.313104 0.573555 2.732488 0.119990 1.114902 1.778073 -1.014010 -0.147534 -3.131564 1.388958 -0.061109 0.775947 -6.295606 -1.458820 -3.229876 -0.930742 0.403523 1.956672 -0.122932 5.233513 -0.025036 -0.127821 -5.553659 -0.194838 2.555235 0.169829 1.801896 2.021085 -2.684959 -5.482274 -0.478909 -1.745927 1.729788 -1.014463 -1.932718 -1.818731 0.386151 0.888662 -0.454936 1.741716 4.706873 -0.863055 0.837589 -0.397979 -0.486890 -0.288215 -2.694636 0.863330 0.625743 -1.733987 2.830422 -0.003593 5.301041 -0.163582 2.181137 -2.040558 0.194095 0.360970 -1.754561 -1.481269 3.000296 1.210272 1.201647 1.030076 0.592394 -1.627073 2.505158 -PE-benchmarks/box-stacking.cpp__main = -2.358457 1.353466 9.732937 4.953233 -2.571810 -5.541287 -2.769826 -6.291907 3.802461 2.262921 6.685293 -0.204943 2.737992 1.587176 0.782476 -0.957501 2.144343 -1.552051 -0.103908 -1.913252 -0.762709 7.383289 5.369344 -5.156356 0.384912 -7.342604 2.352741 2.297815 2.929779 5.229074 -0.185205 0.176268 0.141330 3.234752 -4.666280 0.033567 -0.552020 2.107328 -2.127703 -0.939744 2.170744 2.007460 3.688299 0.313263 4.573056 2.000918 4.221083 -1.165290 -4.243456 -2.341539 -3.128365 6.461609 -3.560710 2.921890 -0.164387 2.866000 0.202962 -4.029688 -1.674358 -8.315246 1.261102 2.692358 -3.592212 -0.243034 -4.321146 1.550878 -1.449221 -2.679523 1.551567 -1.601214 4.050103 0.345156 0.963947 -2.715763 -5.779634 2.483500 -0.459490 1.691635 1.931080 0.405987 -3.169703 0.919316 -2.026379 -4.149908 2.411066 1.256982 0.229082 0.276764 -0.740577 -1.267502 -0.611450 -0.177831 -2.204483 4.912274 -4.609844 4.477825 1.036860 -1.616235 -2.761875 -2.271460 -0.737072 -5.368324 1.449517 4.125975 -0.491984 0.429849 -2.344151 1.775087 -1.697877 -6.200379 1.327408 -0.702527 -2.060101 3.818033 -4.473298 -0.088406 0.660731 0.422495 0.413297 5.138901 -0.218423 2.694357 4.351770 3.645489 1.697044 -3.954762 1.071991 1.630900 4.349333 2.785618 3.041908 -4.197838 -3.030129 0.114870 -1.031063 -8.571017 -0.329403 5.291031 4.357043 1.339700 -6.704841 2.240196 -1.948705 5.817342 4.813710 3.566031 1.690352 -0.246156 -3.616216 2.097745 10.112003 -3.695341 4.902827 -1.627340 -5.356973 7.871042 -4.170822 5.228572 0.737304 1.569227 1.583754 -5.126649 -0.772783 6.800713 2.912442 2.975463 2.864845 -0.116204 0.532713 -7.980943 -8.289730 -2.530531 3.071272 1.216569 9.434297 -3.822369 -3.210101 -1.065884 5.316074 -1.571698 -2.994207 -0.030528 -1.734246 1.856240 -12.424970 -7.946649 8.626788 8.792832 1.747478 0.426188 6.355785 2.885322 -0.996732 -3.642161 -3.182651 3.997712 0.428921 0.157906 -0.057597 -0.221731 -6.294710 -1.238744 -0.908560 0.791980 1.675748 -2.618976 -1.250233 0.738609 -6.287763 -2.444468 1.116921 -5.758367 -3.449729 -0.917607 0.827770 -0.328869 0.820790 -1.982994 -1.772525 2.467494 -4.743839 -1.168671 1.789290 3.183188 2.267688 7.270959 7.000988 -0.119940 3.668507 1.050354 -2.954298 12.299964 -4.382094 -1.430710 -0.613662 4.174497 -0.568977 2.305292 1.910609 -1.462598 -3.700439 -5.023988 3.594925 0.197743 2.507964 -6.316396 -5.896175 -5.108292 -1.237671 2.422541 6.743109 -0.407921 11.055294 -1.494226 2.165999 -12.420757 0.735945 3.782103 -0.481030 3.703503 3.354395 -4.368424 -8.553596 -1.369984 -1.957887 2.212367 -0.790085 -6.260157 -2.905621 -3.638564 2.627114 -4.302755 2.424837 4.942607 -0.844321 4.552973 2.137893 -1.702210 -2.499171 -0.461348 3.291775 2.155764 -3.953514 6.047441 -1.077485 12.366438 -3.098943 5.055530 -3.826197 2.147231 -1.441655 -2.187093 -1.477831 6.930073 5.745017 1.802156 0.176036 -0.146046 -2.609861 2.605007 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -12.425783 4.368272 42.426178 24.385607 -10.491520 -22.515472 -11.723661 -22.500928 16.050957 9.467177 28.259770 0.185438 10.517316 7.356140 3.853389 -6.613973 7.865548 -6.467596 -2.372860 -7.396964 -1.476429 30.321668 26.694062 -27.441169 1.009254 -30.841729 9.478934 10.546609 10.812068 22.730356 -1.947560 1.435863 1.697131 14.494544 -22.521789 -0.824591 -3.610807 8.618085 -7.044844 -6.345981 11.739124 11.459936 14.932406 1.520415 19.914929 8.566899 19.416612 -6.809217 -19.606226 -9.972522 -13.710588 28.544388 -15.773881 12.793048 -0.411662 16.358879 1.127537 -19.629394 -7.644923 -41.748201 7.613088 15.093099 -15.816492 -2.198066 -18.178894 6.410302 -3.521068 -11.150280 7.803962 -7.766878 17.457626 0.495876 4.142143 -14.640355 -21.735477 10.858072 -3.464731 7.060260 7.890965 2.338998 -16.267027 4.023098 -6.458088 -16.395276 8.128168 1.777899 -0.224690 1.923073 -0.133733 -5.730263 -2.109258 -0.879024 -12.483791 21.414424 -20.078066 20.806728 7.869715 -6.336465 -10.765374 -3.870679 -3.723322 -23.859781 5.293732 21.011323 -2.492931 2.530265 -10.833407 7.499238 -7.720308 -26.531937 5.419777 -2.335380 -9.591212 12.940857 -20.645586 0.698270 5.888626 2.941919 2.678836 23.246506 -2.723553 12.248425 18.086537 15.031115 6.277633 -16.779378 7.433034 6.498965 19.856017 12.488038 12.844050 -17.809842 -12.381660 -0.469764 -2.846899 -36.082671 0.654977 24.111859 18.509606 9.038327 -33.273323 10.580030 -7.310422 26.128315 20.178903 17.181438 6.997436 -1.066579 -15.434232 7.866269 44.620854 -16.218914 21.155577 -5.248877 -24.976745 35.516384 -18.976533 23.802404 3.464846 7.378654 9.549686 -23.151299 -3.990431 29.835452 13.396113 13.232961 13.863452 -1.539092 4.860872 -35.718525 -35.323226 -12.463491 10.561876 6.000968 42.781014 -15.800159 -13.820632 -5.983027 22.494815 -8.734376 -12.261880 -2.166603 -5.971156 7.427909 -55.711404 -34.410769 36.778881 37.521192 6.317677 2.793614 29.653590 11.149591 0.373417 -14.367714 -13.243350 16.858501 3.193623 8.050011 3.301668 -2.081687 -27.235327 -6.050038 -3.610192 2.235363 5.863966 -14.249588 -8.987310 4.519036 -28.185323 -9.885406 1.652015 -26.531803 -15.260566 -4.808106 4.218241 -1.568242 1.988260 -8.126638 -9.102394 10.205953 -20.353322 -6.346496 7.261122 14.242555 11.711656 29.868112 29.853612 -0.204984 15.805626 5.701494 -12.147589 56.364225 -19.710474 -7.867146 -2.525442 19.613299 -1.353760 9.596865 6.218184 -5.899775 -13.300551 -21.033688 18.389352 0.575589 10.715143 -32.097077 -24.588694 -20.101573 -6.212697 11.510941 27.340270 -2.962869 48.397002 -5.714534 8.417180 -55.411869 2.673797 18.190427 -1.931014 14.658808 15.629085 -19.151623 -41.425713 -5.775231 -5.342265 14.709986 -3.322901 -27.350673 -11.892714 -15.403905 10.771550 -19.432119 12.309985 22.818603 -4.187470 18.665046 10.112497 -7.264488 -8.580848 -3.907437 10.833167 11.327087 -17.164850 27.048248 -5.987566 51.939762 -14.916677 23.065254 -17.806081 10.967001 -7.357503 -7.398477 -5.958423 29.430557 24.450753 7.526726 1.894022 0.015307 -13.479918 11.003771 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.338529 2.239125 6.132647 2.234908 -2.992104 -5.353187 -1.664109 -7.662159 3.123280 1.423595 4.483322 -0.252379 2.645874 0.141462 0.262396 0.985575 2.910420 0.202603 -0.178788 -2.378798 -1.743571 4.885213 0.106776 -1.427603 1.216720 -4.281854 2.024957 2.607969 2.798772 2.258749 1.233581 -0.099683 -1.231200 2.076711 -2.085002 0.012655 0.450836 1.138365 -3.799665 -0.033070 0.339475 0.248987 3.708260 0.342665 3.091274 1.029244 2.502366 0.757799 -2.179431 -1.247562 -1.817898 4.751147 -1.014022 2.515371 -0.024867 -0.248597 0.291830 -1.888509 0.168652 -1.009791 0.130710 0.139196 -2.429216 -0.082292 -2.894657 0.340581 -1.432409 -2.497342 0.608113 -1.220205 2.184047 -0.814649 -0.871550 -1.430645 -5.791502 0.619330 0.978680 1.336487 2.381251 0.811684 0.352252 -0.646150 -2.823015 -3.303983 2.940111 2.859184 0.937159 0.998280 -3.211747 -1.686974 -0.207161 -0.528951 1.077545 2.782831 -3.620998 1.412533 -1.392798 -1.863544 -3.264455 -4.445622 0.918128 -2.211533 1.728179 -0.298891 -0.181500 0.442046 -0.142157 0.985649 -0.547679 -3.234144 0.649896 -1.215616 -0.010919 5.292852 -1.347159 -2.151330 -1.505343 -0.803931 -1.112407 2.839104 1.155831 0.534129 3.704599 2.851286 2.075713 -3.102607 -1.272640 1.390624 1.558597 2.329478 1.999821 -3.109146 -2.023660 1.062750 -2.288589 -6.257363 -1.147641 1.951919 3.755823 -0.870899 -1.691516 0.531955 -2.085475 2.824675 2.371557 1.378628 1.229387 -0.082977 -2.676380 1.512853 5.545570 -1.827261 2.797870 -2.004179 -1.893059 2.547415 -1.035292 1.999108 0.481092 -0.657337 -0.629578 -1.734972 0.200825 4.091322 0.909623 0.690882 0.672723 1.006621 -2.725343 -4.455904 -6.434760 -0.327751 3.228770 0.778444 5.258593 -3.234641 -2.626811 -0.698770 3.979772 -1.066050 -2.201534 2.118777 -2.832119 2.189081 -5.020131 -4.534518 5.945971 5.941822 1.980679 -1.156990 3.302239 1.323302 -3.906969 -3.387506 -2.151722 2.140230 0.794625 -4.040035 -1.192947 0.424238 -4.361964 -0.209614 -0.254092 1.410946 1.452735 0.176702 2.432064 -1.165327 -3.252233 -2.637577 2.483057 -2.003908 -0.601373 0.156709 0.031508 -0.433237 2.164268 -1.846927 -1.601632 1.347645 -2.879478 0.135307 0.796986 2.176984 0.404227 5.845648 4.238701 -0.286151 4.530072 0.029238 -2.779494 6.675131 -2.239622 0.869188 -0.235752 1.878309 -0.786186 1.775210 2.598479 -1.595464 -3.071615 -4.066555 -0.510276 0.271002 2.177311 -1.859156 -3.388573 -5.242339 -0.634185 -0.073091 4.989445 -0.246796 6.614709 -1.775831 1.846188 -7.245833 0.747975 1.684706 -0.755330 2.617991 1.514048 -3.384597 -3.344344 -0.277991 -3.683633 -2.653826 -0.037014 -3.061911 -2.807822 -2.545729 2.436930 -2.519032 0.416592 3.408345 -0.805637 3.023178 -0.992502 -0.621427 -1.636139 0.041414 4.301795 -0.033683 -3.058283 2.949458 0.369693 9.649675 -0.154535 3.253976 -1.702463 0.308535 -0.322480 -3.518114 -2.220865 4.516297 3.985858 1.613604 -0.487694 0.172849 -0.711428 2.513842 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -2.237237 2.327390 9.901862 6.319556 -5.125357 -6.661256 -2.967270 -7.990063 4.160182 2.097973 6.989414 -0.513558 3.009066 0.895758 0.225606 -1.961235 3.449860 -0.462444 -1.100937 -2.896288 -2.877191 6.699153 3.557440 -6.297570 1.256381 -6.118303 4.140842 3.329028 1.991735 4.369312 0.907524 0.437046 -1.285201 3.657521 -4.566654 -0.501760 -0.128058 2.157169 -2.975986 -1.654201 3.263688 1.399716 5.149540 0.395510 4.400451 2.636161 3.776744 -0.417700 -5.763331 -2.249822 -2.325791 5.861037 -2.870084 3.853380 0.765904 2.251697 1.529614 -4.896735 -0.565785 -6.787959 1.529489 1.053756 -3.683589 -0.410141 -4.649358 0.752715 -0.957110 -3.537757 2.248612 -2.799766 3.431955 -1.172354 -0.424678 -3.491611 -5.362142 1.962620 0.873909 1.654082 3.008236 1.671755 -1.410410 -0.292195 -3.581919 -4.438852 2.406324 1.016067 1.074674 1.368033 -1.801264 -2.133175 1.133064 -0.744489 -0.747135 5.081085 -4.630006 3.197811 -0.100724 -2.562664 -4.408994 -3.974001 0.457625 -4.585919 2.389430 3.931607 -3.047756 0.813644 -0.745440 1.724589 -0.763258 -5.954866 0.926226 -2.111789 0.080415 5.319286 -3.532747 -2.631454 -0.514570 -0.763796 0.194434 5.150276 0.442874 1.570229 5.519219 3.912583 2.578303 -4.701672 0.042174 1.420214 3.196585 3.041175 3.237704 -4.960481 -2.862326 1.001555 -2.343521 -8.758844 -1.076164 3.578089 5.698235 1.002211 -6.668840 2.642716 -2.715582 4.866984 3.673051 4.225101 1.660205 -0.126188 -3.943895 1.505802 8.812427 -3.148405 4.306465 -1.795911 -5.585716 6.172850 -1.895541 4.033696 0.971393 0.265733 0.801423 -4.570343 0.269885 6.924743 1.814779 1.363824 2.586746 0.620422 -2.052095 -8.245969 -9.483334 -0.515622 3.932865 2.146198 9.959975 -5.449908 -3.309096 -1.287481 6.357634 -2.200864 -3.224354 1.038956 -2.227197 2.714425 -10.616581 -7.927416 8.823192 7.938762 1.656357 -0.629946 6.002225 0.758528 -2.314116 -4.183856 -4.523767 3.797125 1.680111 0.231509 0.372574 0.061301 -6.640853 -0.784845 0.077839 1.608209 3.071155 -3.870562 -0.539888 -1.136159 -5.812822 -3.653395 2.107968 -4.793235 -1.972401 -0.194738 0.391188 -0.232339 2.195479 -1.478933 -3.564334 0.597568 -4.239360 -1.286629 1.329521 3.935638 1.276817 8.835318 6.921842 -1.121851 4.363403 0.863480 -3.523787 13.670298 -4.615149 -0.379141 -0.566887 4.946148 0.079693 2.214067 3.805739 -2.077531 -3.587038 -5.799537 1.676500 -0.054846 2.783881 -8.794441 -4.718179 -7.807527 -1.279072 0.632920 7.039588 -0.456781 11.419542 -1.640227 1.637314 -12.393099 0.575002 4.541165 -0.917360 3.487403 3.105072 -5.194251 -8.514836 -0.823111 -3.916817 1.324236 -0.514670 -4.804202 -3.879364 -2.867752 2.751795 -3.334348 2.095095 6.599358 -1.496275 3.611771 0.814390 -1.369810 -1.422532 -1.856719 3.903502 1.239243 -4.434609 6.778561 -0.160028 13.572797 -1.046733 5.149496 -3.596645 1.733718 -1.337797 -3.857436 -2.878993 6.622570 5.703512 2.272264 0.331134 0.849691 -2.891251 3.755030 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = -0.298337 1.281669 5.336104 2.515903 -1.493168 -2.386085 -1.170849 -3.757461 1.723603 1.013709 3.086641 -0.640942 1.264507 0.983430 -0.045902 -0.572595 1.225363 -0.400739 0.408457 -1.060143 -0.619681 3.451681 1.831082 -2.389692 0.132442 -4.118095 2.317286 1.102601 1.998526 2.522056 0.360042 0.069907 0.034249 1.651155 -2.198845 -0.634352 -0.336293 1.144255 -1.616896 -0.102705 0.831801 1.332872 1.600846 0.061962 1.701057 1.343053 2.075272 -0.307355 -1.699625 -0.640194 -1.576296 3.086415 -1.514089 1.251008 -0.049379 0.827919 0.049480 -2.043226 -0.627141 -2.970165 0.547201 1.242784 -1.795769 0.232994 -2.785052 0.703608 -1.399389 -1.535820 0.909602 -0.155084 1.739994 0.422137 0.633271 -1.711023 -3.150797 1.601219 -0.095639 1.013095 1.100608 -0.290052 -0.725433 0.786037 -1.417177 -2.172906 1.229663 1.201302 0.222681 -0.347763 0.255063 -1.015315 -0.324812 -0.094997 -1.015056 2.562608 -1.907671 2.382217 -1.260284 -0.707067 -1.433469 -1.860553 -0.466932 -2.813624 1.105297 1.901012 -0.880831 0.583111 -0.342638 0.906924 0.075627 -3.039084 0.124833 -0.635296 0.057841 2.898662 -1.855077 -0.698603 -0.369453 0.132384 0.014755 2.411933 -0.220332 1.288322 2.611987 1.836415 0.795412 -2.088753 0.316137 1.001416 1.110152 1.568698 1.894952 -2.453950 -1.669410 -0.504355 0.028767 -4.348130 0.287585 1.680573 1.719072 -0.223421 -2.843876 0.917005 -1.220979 2.839560 2.434199 1.775404 1.076004 -0.100719 -1.270314 1.158268 4.889363 -1.706765 1.921311 -1.656421 -2.664281 3.317751 -1.273189 2.469895 -0.011630 0.969988 0.793468 -2.767567 -0.102954 3.478839 0.933817 1.139293 2.228301 -0.149174 0.464386 -3.889655 -3.436243 -0.358792 1.406554 0.088091 4.643091 -2.012679 -1.270245 -0.284464 2.401412 -0.164623 -1.048644 0.118967 -0.977627 0.868078 -5.503274 -4.158528 3.419247 3.612341 0.210166 -0.509687 2.516359 1.302148 -0.986223 -2.040927 -1.806145 2.126311 -0.159699 -0.331360 -0.284226 0.233249 -2.967088 -0.176520 0.136389 0.665446 2.077581 -1.665679 -1.096493 -0.202814 -3.566464 -2.037519 1.556737 -2.690316 -1.544969 -0.293059 0.364120 -0.024521 0.736846 -1.034817 -0.989261 1.275383 -1.946195 -0.706921 0.943298 1.758485 0.242007 3.609105 2.914153 0.334023 1.439958 0.920223 -1.521535 6.400294 -1.549183 -0.684586 -0.144997 1.678622 -0.878080 1.331627 1.124863 -0.868654 -2.553528 -2.831436 1.527355 -0.343058 0.981101 -2.784577 -2.127131 -2.474226 -0.838826 0.977634 3.381005 0.429322 5.630440 -0.586925 0.776069 -5.189194 0.208868 1.840269 -0.255949 2.473140 1.862734 -2.352421 -2.790797 -0.752643 -1.176524 1.044648 -0.572712 -3.226372 -2.059353 -1.101986 1.009360 -1.393303 1.234402 2.678578 -0.387181 1.842980 0.707720 -0.785377 -1.024277 -0.389067 1.975613 1.048901 -2.247761 2.917886 -0.806772 6.211158 -1.277434 2.179357 -2.127796 0.236410 -0.331324 -1.055927 -0.958697 3.615635 2.358249 1.193181 -0.018814 -0.331671 -1.163299 1.510033 -PE-benchmarks/strongly-connected-components.cpp__main = -0.163090 2.094125 7.425884 2.433752 -3.215660 -5.882905 -2.037449 -8.591365 3.682453 2.262473 5.575642 -0.590305 3.022976 0.181562 0.208042 1.141786 3.167635 -0.464411 -0.103650 -2.724724 -1.939947 5.763771 0.835058 -1.514694 1.408782 -5.502605 2.712891 2.289032 3.019440 3.362682 1.530104 -0.088266 -0.962916 2.566151 -2.064218 1.191906 0.538425 1.602409 -3.675172 0.228451 0.572456 0.204164 4.140334 0.675088 4.223495 1.755412 2.705643 0.392042 -3.120459 -1.630211 -2.098661 5.109079 -2.009768 2.775677 -0.453034 0.066430 0.114403 -2.496072 -0.199071 -2.269442 -0.006482 0.200663 -3.043167 0.038406 -3.611463 0.621099 -1.962683 -2.650922 0.373592 -1.504551 2.728862 -0.341453 -0.727800 -1.156013 -6.444265 1.104440 1.256632 1.235066 2.812152 0.230435 -0.248122 -0.684708 -3.122172 -4.041171 3.741118 3.084114 1.152952 1.183979 -3.037596 -1.773974 -0.655687 -0.364155 0.992258 3.720024 -4.061165 1.667495 -1.001406 -2.248065 -3.415692 -5.106533 0.812003 -3.092950 2.022872 0.544426 -0.371563 0.628163 -0.564314 1.585768 -0.895666 -3.727755 0.934808 -1.509246 -0.116381 5.657201 -1.921602 -2.400725 -1.873606 -0.766297 -0.459129 3.422000 1.127837 0.796599 4.658726 3.178381 3.064536 -3.748827 -1.113543 1.616610 2.072786 2.541570 2.263701 -3.543427 -2.451373 1.093123 -2.583257 -7.296018 -1.663775 2.237836 4.247950 -1.008047 -2.548864 1.005133 -2.285058 3.537516 3.368932 1.683159 1.547224 0.070943 -3.335569 1.651718 6.903331 -2.310306 3.300753 -2.531013 -2.538027 3.439481 -1.542625 2.557521 0.595906 -0.593853 -0.453884 -2.679832 0.322400 5.065538 1.277060 1.038964 0.568708 1.292712 -2.571872 -5.211133 -7.407631 -0.851504 3.828424 1.032660 6.533949 -3.908565 -2.719410 -0.930835 4.604973 -0.653086 -2.466987 1.980800 -2.991114 2.359861 -7.198003 -5.733001 7.437308 7.257613 3.007253 -1.082971 3.753918 1.890616 -4.167904 -3.585199 -2.563189 2.661710 0.782963 -4.382027 -1.586319 0.511074 -5.240736 -0.707461 -0.614767 1.523529 1.710065 -0.250623 2.187955 -1.046330 -3.741836 -2.739662 2.667653 -2.932700 -1.461749 -0.169260 0.243349 -0.218837 2.215699 -2.182746 -1.457450 1.686117 -3.509636 -0.008461 1.292365 2.906148 0.657513 6.638497 5.654109 -0.699188 4.377591 -0.110025 -3.067741 7.680519 -2.586699 0.603193 -0.216314 2.090736 -0.426034 1.843572 3.111159 -1.880919 -3.494410 -4.604896 -0.100829 0.623732 2.447106 -2.227082 -4.152107 -6.152735 -0.420711 -0.001710 6.240975 0.070542 8.170746 -1.651174 2.257788 -8.548178 0.793005 2.316789 -0.683930 3.137539 2.035961 -4.031825 -4.239520 -0.583475 -4.271501 -2.404670 -0.166377 -3.331280 -3.239765 -2.910497 2.931000 -2.827050 0.696266 3.877268 -0.666031 3.832881 -0.346469 -0.783695 -2.323005 0.188840 4.853504 0.358559 -3.439727 3.547678 0.458163 11.224195 -0.600623 3.739593 -2.190479 0.739881 -0.547790 -3.654508 -2.508939 5.427698 4.850844 1.991496 -0.239885 -0.108421 -0.827246 3.113912 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.375854 1.071451 2.718340 1.547794 -1.107105 -1.686206 -0.596303 -2.345622 1.085770 0.222127 1.337856 -0.204592 0.712207 0.417154 -0.133324 -0.014743 0.917278 0.354677 -0.073867 -0.728009 -0.564330 2.022481 0.417534 -1.480610 0.282706 -1.930624 1.000042 0.927889 1.391182 1.153399 0.149142 -0.074581 -0.111893 0.925942 -1.305209 -0.770867 -0.149582 0.474508 -1.644220 -0.098277 0.254542 0.524879 1.272451 0.009639 0.632474 0.575749 1.147724 0.118895 -0.798830 -0.120208 -1.049242 1.931237 -0.401014 1.102084 -0.171337 0.211336 0.101505 -0.835928 -0.110430 -0.827699 0.155398 0.640449 -0.762349 -0.158801 -1.491397 0.157078 -0.512585 -1.234500 0.524990 -0.024836 0.948327 0.091470 0.183371 -1.214214 -2.191564 0.660304 0.147051 0.905040 0.728161 0.233016 0.249076 0.129823 -0.942653 -1.134295 0.705795 0.751203 0.288843 0.119082 -0.303715 -1.007170 0.061643 -0.084440 -0.180794 1.145483 -1.050879 1.268089 -1.277538 -0.322819 -0.944481 -1.489406 -0.197638 -1.156172 0.657110 0.279218 -0.155476 0.606410 0.541883 0.554200 0.294925 -1.515594 0.110777 -0.158015 -0.298373 2.012645 -0.433795 -0.838959 0.053728 -0.037009 -0.705293 1.217425 -0.010278 0.534809 1.292513 1.090907 0.643832 -1.157654 0.007193 0.445035 0.393370 1.083794 1.245576 -1.177578 -0.905092 -0.061753 -0.212554 -2.561747 0.216741 0.897002 1.330521 -0.354066 -1.192471 0.292370 -0.892342 1.422567 0.847918 0.764676 0.742745 -0.226026 -0.777407 0.734673 2.647852 -0.849592 1.050091 -1.083423 -1.076901 1.398972 -0.252240 1.150939 -0.361865 0.087293 0.415384 -1.174273 0.045986 1.858659 0.335436 0.158258 1.119982 -0.052617 -0.704233 -2.286664 -1.974574 -0.223792 0.864361 0.010969 2.482753 -1.090039 -1.055489 -0.301898 1.243612 -0.525634 -0.406832 0.507193 -0.944693 0.739080 -2.553675 -2.172164 2.135737 2.081458 0.092700 -0.396458 1.385020 0.478804 -0.835939 -1.546534 -0.864966 0.798422 0.356507 -0.851351 -0.556009 0.106395 -1.610340 0.066799 0.410922 0.426430 1.038853 -0.354878 0.000140 -0.412767 -1.965721 -1.406939 1.070857 -1.448943 -0.257300 0.279496 0.117114 -0.237193 0.753332 -0.560197 -0.893921 0.621349 -0.881013 -0.165749 0.096049 0.990336 -0.052933 1.798273 1.700595 0.262894 1.614378 0.669126 -1.234488 3.678976 -1.083263 -0.010120 -0.087479 0.906611 -0.765705 0.881565 0.729877 -0.565137 -1.220561 -1.750360 0.348960 -0.208828 0.553259 -1.421832 -1.103615 -1.348549 -0.493760 0.227074 1.659687 0.054394 2.826603 -0.710152 0.505852 -3.096011 0.185546 0.946192 -0.090458 1.385802 1.016772 -1.370113 -1.713268 -0.196563 -0.891786 0.004921 -0.380152 -1.899650 -1.103068 -0.648822 0.502886 -0.817851 0.540024 1.862872 -0.464937 1.176361 -0.535501 -0.374815 -0.491457 -0.341944 1.372065 0.361213 -1.214739 1.311013 -0.244194 3.710412 -0.199238 1.250826 -1.132852 -0.225104 0.006609 -1.085839 -0.801994 2.016367 1.102335 0.709292 0.078199 -0.097046 -0.548247 0.946728 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -0.576562 2.036615 7.080640 4.309449 -2.193139 -2.464223 -1.551254 -3.187524 1.925145 0.379807 3.243127 -0.264322 0.921100 1.997408 0.061942 -1.643167 1.618915 -0.262137 -0.489563 -1.418438 0.017799 3.604926 2.820206 -5.626228 0.231198 -4.962668 2.511920 1.839486 1.981241 3.005529 -0.152371 0.044591 0.162910 2.616671 -3.691012 -2.403592 -0.023826 1.100422 -2.265799 -0.724514 1.840016 3.372890 2.183696 0.071481 1.365934 2.225730 2.644363 -0.356046 -2.459238 -0.346413 -2.218045 4.263024 -1.772476 2.428534 -0.050164 2.506468 0.224994 -3.459913 -0.889142 -4.911833 1.151158 3.168219 -1.427179 -0.542060 -3.211677 0.597749 0.081405 -2.269641 1.881514 -0.017142 2.474620 0.223465 1.084129 -3.327718 -2.893154 2.190512 -0.564008 2.306143 1.327558 -0.498391 -1.034274 0.979884 -1.074262 -2.236371 0.084368 0.368072 0.320312 -0.240067 1.773640 -1.621374 0.265683 -0.249376 -2.489550 3.264935 -2.011791 3.569564 -1.800079 -0.470454 -1.785167 -0.469493 -1.148575 -3.501885 1.276366 3.132401 -1.259021 1.281572 0.227041 1.283291 0.362043 -3.360736 0.280908 0.051666 -0.887551 2.870652 -1.981925 -1.159838 1.437170 0.311199 -0.448225 3.497663 -1.132085 1.791484 2.831146 2.727670 0.698627 -2.589421 1.260530 0.401740 1.666768 2.666515 3.457902 -3.156197 -2.118745 -0.909236 0.261400 -5.162455 1.899453 2.157839 3.046578 0.365672 -5.525996 1.392216 -2.031404 4.191315 2.220980 3.172271 1.577823 -0.694735 -1.807154 1.582129 6.711982 -2.282865 2.772043 -1.963134 -2.890733 3.970874 -1.193585 3.503582 -0.471873 1.086795 1.947336 -3.784310 -0.679867 4.665196 1.883751 1.365600 3.737246 -0.798730 0.565104 -6.024235 -3.976952 -1.363966 0.885176 -0.321960 6.410854 -2.381829 -2.284444 -1.247846 2.882384 -1.800999 -0.986442 -0.196311 -0.861565 1.218211 -6.533890 -5.011027 4.597195 4.932446 -0.833100 -0.307909 4.037049 0.704044 0.014351 -2.773801 -1.764498 2.299727 0.443612 1.778567 0.205247 0.030577 -3.386864 -0.403798 1.049896 0.813577 2.507796 -2.380426 -2.797011 1.001917 -5.393800 -2.851120 0.977634 -4.183704 -1.757836 0.529217 0.474166 -0.220126 0.732716 -0.985740 -2.663187 1.797922 -2.303814 -1.356847 0.651600 2.912640 0.726897 3.175968 3.066833 1.075815 2.821279 2.426355 -2.456732 9.471903 -2.493788 -0.952414 -0.127082 2.750615 -1.455978 1.933163 0.756823 -1.053018 -2.328686 -4.040859 2.821745 -1.164493 1.370409 -5.357039 -2.399120 -1.737001 -1.294675 1.723051 3.325671 -0.294105 7.298055 -0.519869 0.648627 -7.656831 0.008066 3.177871 0.000105 2.244852 3.214956 -2.996813 -6.063634 -0.505939 -0.755869 2.366111 -0.936862 -4.533968 -2.485226 -1.268113 1.124584 -1.805224 2.000300 4.999458 -0.854018 2.260710 0.255606 -1.289693 -0.308443 -1.889502 1.703417 1.934411 -2.903121 3.956831 -1.359761 7.877004 -1.665781 3.263808 -3.293669 -0.196145 -0.031275 -0.916409 -1.503581 4.924905 2.218698 1.650600 0.801336 -0.530775 -2.220508 2.198531 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = -0.221248 1.060734 4.483819 2.203030 -1.224382 -2.093548 -1.200559 -3.773231 1.835426 0.826323 2.993441 -0.685604 1.304770 0.584897 -0.155986 -0.468070 1.494089 -0.786821 0.485636 -1.118991 -0.496082 3.454348 1.219250 -1.964679 0.162416 -3.751331 2.000124 0.907236 1.757370 2.398583 0.493379 -0.023769 0.180239 1.508575 -1.731964 -0.562720 0.188816 1.015314 -1.744083 -0.137629 0.638158 1.134444 2.098167 0.110929 1.465239 1.098424 1.568342 -0.128772 -1.500245 -0.454240 -1.484711 2.567236 -1.453089 1.146103 -0.181256 0.286310 0.501486 -1.818056 -0.685342 -2.117438 0.038257 0.948893 -1.378747 0.142535 -2.292289 0.707417 -1.112380 -1.314860 0.810066 -0.114511 1.662687 0.738673 0.730481 -1.171071 -3.048076 1.646489 0.226111 0.936056 1.073494 -0.341593 -0.182815 0.588044 -1.464716 -2.001896 1.519242 1.291514 0.488519 -0.034932 0.076800 -0.895996 -0.291494 -0.027989 -0.590310 2.164944 -1.115560 1.856197 -1.082631 -0.916542 -1.301305 -1.972413 -0.401787 -2.420129 1.036668 1.640285 -0.878975 0.766330 -0.193147 0.937384 -0.217435 -2.586891 0.441536 -0.666554 -0.183792 2.927125 -1.525947 -1.068424 -0.695199 0.114977 -0.008797 2.090013 -0.235073 1.250314 2.194656 1.838971 0.783170 -2.067113 0.113691 0.723498 1.150472 1.339808 1.858247 -2.016491 -1.643234 -0.346202 -0.240338 -3.941616 -0.234271 1.163982 1.890871 -0.524563 -2.537864 1.106187 -1.322346 2.694763 2.304027 1.363305 1.067782 0.000000 -1.497024 1.382603 4.015372 -1.502263 1.912564 -1.881105 -2.022655 2.523397 -0.900707 2.010664 -0.348634 0.567021 0.553785 -2.415844 0.169995 3.027318 0.843424 0.888246 1.466470 0.058313 0.258083 -3.434280 -3.364320 -0.257047 1.592319 0.165749 4.066598 -1.899793 -1.478075 -0.233761 1.898854 -0.114517 -0.961669 0.416893 -1.156071 0.959450 -5.152909 -3.815715 3.682053 3.235426 0.610460 -0.276797 1.875264 1.046882 -1.012284 -1.854172 -1.457870 2.034349 0.161412 -1.174898 -0.578345 0.227401 -2.339816 -0.542068 0.216594 0.736323 1.808894 -1.535577 -0.517160 -0.436417 -3.033066 -1.664461 1.756848 -2.508245 -1.493289 0.030600 0.077895 0.085893 1.002840 -0.675768 -0.717080 1.059900 -1.684891 -0.808106 0.696149 1.928960 0.011108 2.752748 3.118072 0.171021 1.609191 0.822951 -1.601118 5.136651 -1.691749 -0.437364 -0.135585 1.273076 -0.531677 1.197660 1.361935 -0.861852 -2.146225 -2.680745 1.309703 -0.112508 1.136002 -2.418743 -2.015341 -2.362479 -0.599716 0.796380 3.182819 0.362206 5.000838 -0.733740 0.622595 -4.535173 0.094912 1.693772 0.130262 2.237468 1.645735 -2.197617 -2.440744 -0.655631 -1.758727 0.584038 -0.637509 -2.862158 -2.010292 -1.206168 1.432280 -1.346516 1.022483 2.607474 -0.423205 1.792097 0.404248 -0.850809 -1.166804 -0.410738 1.744459 0.796688 -1.849309 2.534731 -0.684222 5.626082 -0.990858 1.811546 -2.058837 0.349347 -0.289906 -1.171142 -0.975554 3.453483 2.108652 0.843095 0.105753 -0.557988 -0.806781 1.688955 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -2.284997 2.890679 14.884502 10.385733 -3.501173 -4.706214 -4.102525 -7.092982 5.157427 1.749623 8.614866 -2.081527 2.239752 2.767421 -1.091068 -5.133406 3.185450 -1.720668 -0.477930 -3.067230 -1.259579 8.962190 7.595348 -11.911464 0.108678 -10.726993 6.683204 3.105646 3.980918 8.522964 0.074474 0.519474 2.081430 6.055083 -7.997332 -3.908127 -1.024655 2.975399 -3.740570 -1.751796 4.975251 6.928648 6.578102 1.021596 3.617359 5.233510 4.166911 -2.107385 -6.687746 -0.613082 -3.745167 7.400306 -5.245621 3.877201 -0.497753 4.891549 2.410528 -8.146315 -2.255665 -11.725526 1.884660 6.191120 -4.142853 -0.378152 -7.570705 1.574592 -1.855183 -4.681501 3.951151 -1.510697 4.907711 1.949853 1.877520 -6.848203 -5.442851 6.362418 0.552134 3.207366 3.333855 -1.041261 -1.963816 2.512992 -2.864794 -5.060238 2.044437 -0.417954 1.314146 1.091850 4.697234 -4.644214 0.996858 0.378071 -4.077281 7.353607 -1.708606 7.550505 -2.045252 -2.883639 -3.199867 -1.667632 -2.195958 -8.209224 3.073150 8.347813 -5.094813 3.652498 -0.283308 3.333609 0.387796 -8.099702 0.665600 -1.605523 -0.553235 6.984790 -5.454374 -3.744304 0.379836 1.064426 0.609268 7.868395 -2.460886 4.042600 5.964553 5.092975 1.310183 -6.622308 3.316042 0.367175 3.195419 4.591676 6.883228 -5.434388 -5.179616 -2.578481 1.173922 -11.856596 1.292468 2.988508 5.372728 0.735503 -12.083179 5.347737 -4.148446 8.787045 6.350473 6.195010 3.777171 -1.083726 -4.716316 3.585051 12.670059 -5.178279 5.834259 -4.845982 -9.930540 9.294879 -2.745951 7.519343 -2.047367 1.369456 5.027967 -8.779959 1.178516 10.448389 2.280013 2.342015 6.696955 -1.464657 3.716102 -11.679622 -9.600890 -0.804169 2.407308 1.276692 14.351917 -5.309689 -4.094371 -1.971693 5.743304 -1.587404 -1.374407 -0.887951 -1.689149 2.504106 -18.788348 -12.603445 10.711073 9.418094 0.435520 -0.180891 6.508018 1.350664 2.755209 -4.911470 -4.616947 5.998377 2.041763 3.892925 0.581137 -0.414560 -6.052660 -1.426502 2.005244 1.574216 5.531093 -9.736705 -6.536343 -1.417845 -10.948245 -5.739630 2.902623 -10.227396 -4.134076 0.417582 0.251151 -0.186362 2.152174 -0.949342 -4.640291 1.652048 -4.413034 -3.903224 1.103956 7.655103 0.869373 6.328510 9.069150 0.276129 4.103836 4.661171 -4.563967 20.277941 -7.174372 -2.410435 0.042387 6.393906 -0.958372 3.797880 2.999470 -2.367456 -3.850583 -7.936588 6.698108 -0.370149 2.746762 -13.522442 -5.145663 -5.769222 -2.564200 2.941330 8.062036 0.591316 16.696749 -1.069523 0.505312 -14.525043 -0.551704 7.590281 0.810308 7.216349 6.885062 -7.796399 -12.201725 -2.398384 -3.609214 8.614198 -2.403157 -9.215419 -5.907040 -1.396974 3.641546 -3.898297 5.861237 10.015438 -2.312277 3.806590 1.952939 -2.898487 -1.558927 -4.664065 2.674223 4.060811 -5.637727 8.534342 -3.181604 15.058378 -3.629939 7.045041 -8.313632 1.545685 -0.936148 -1.524589 -3.556548 10.886911 5.714657 2.575885 1.650050 -1.072027 -4.258010 5.093774 -PE-benchmarks/bfs.cpp__main = 0.407474 2.099586 6.871806 1.715697 -2.722161 -5.960250 -1.723993 -9.143342 3.922064 2.216377 5.414164 -0.141208 3.419893 -0.191989 0.306475 1.746999 3.274588 -0.225672 0.231637 -2.592152 -1.383223 6.271435 0.089141 -0.394064 1.248710 -5.486678 2.085596 2.372389 3.750074 3.041260 1.502950 -0.237106 -1.129993 2.111336 -1.774556 0.918338 0.455371 1.440790 -4.135741 0.117859 -0.049819 -0.346073 4.062621 0.580081 4.059665 0.584206 2.928039 0.500692 -1.968646 -1.664978 -2.339174 5.198199 -1.518305 2.669882 -0.585972 -0.805376 -0.120324 -1.351381 0.127952 -1.102217 -0.153431 -0.096304 -2.927659 0.008620 -3.201967 0.674964 -2.276077 -2.418861 -0.035143 -1.403170 2.709468 -0.366419 -0.626138 -0.975824 -7.518034 0.713476 0.965466 1.084818 2.697259 0.724148 -0.056246 -0.939331 -3.238811 -3.996336 4.199227 3.959277 0.760265 1.086042 -4.165181 -1.505862 -0.985870 -0.314600 1.329730 3.248712 -4.469718 1.572728 -1.251907 -2.063219 -2.982032 -5.446963 0.931987 -2.808174 1.660478 -0.618508 0.500950 0.474249 -0.599192 1.148039 -1.033712 -3.561274 1.131282 -1.152729 -0.507865 5.887993 -1.666201 -2.160763 -2.120383 -0.571620 -0.901705 3.004156 1.413260 0.863698 4.316935 3.037908 2.836111 -3.609732 -1.432465 2.170826 2.000775 2.424023 1.760096 -3.155633 -2.398896 1.286810 -2.582410 -7.293044 -1.724839 2.716268 4.190955 -1.376513 -1.335458 0.393612 -2.156401 3.374072 3.583616 0.952109 1.502945 0.314746 -3.222408 1.834969 6.620289 -2.124673 3.184199 -2.525278 -1.664351 3.229202 -1.851863 2.346735 0.297769 -0.387017 -0.861212 -2.120843 0.163303 4.770962 1.014972 1.229689 0.025423 1.450168 -2.847930 -4.861298 -7.418546 -1.158668 4.088260 1.131466 5.672445 -3.496950 -2.696761 -0.496344 4.073864 -0.516940 -2.698972 2.527352 -3.442624 2.396872 -6.602547 -5.288566 7.283736 7.344397 2.924909 -1.184561 3.395723 2.381542 -4.592569 -3.697661 -2.235417 2.552245 0.602345 -5.859515 -1.859320 0.614701 -5.129332 -0.763068 -0.689552 1.314002 1.200253 0.716481 3.534054 -1.046537 -3.219649 -2.641766 3.172838 -2.300176 -1.339267 -0.363689 0.197868 -0.286979 2.321525 -2.334219 -0.837532 2.142108 -3.396155 0.263977 1.117750 2.203464 0.569683 6.412711 5.466061 -0.476296 4.625934 -0.377758 -3.120759 6.666665 -2.456600 0.719754 -0.242127 1.485228 -0.707251 2.174568 2.825621 -1.858249 -3.561479 -4.511072 -0.550885 0.632308 2.574623 -0.763811 -4.286523 -5.852632 -0.366095 -0.068545 6.035506 -0.080464 7.673337 -2.310186 2.477166 -8.155231 0.911621 1.724058 -0.750370 3.256391 1.578764 -3.637915 -2.895190 -0.558803 -4.121971 -3.439999 0.008506 -3.471832 -3.064614 -3.442466 2.975154 -3.274870 0.400543 2.923734 -0.580565 4.162747 -1.030155 -0.637094 -2.701735 1.085752 4.988121 0.199052 -3.370240 2.952937 0.409338 10.771907 -0.762835 3.526726 -1.871032 0.833226 -0.826441 -4.150328 -2.314308 5.332387 4.971646 1.874164 -0.752127 -0.255742 -0.401476 2.905855 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -2.642842 3.467868 15.896737 5.596852 -6.411592 -10.002652 -4.340937 -16.912377 8.339798 5.816236 12.386830 -0.778311 6.446179 -0.433630 0.011983 0.129434 6.147727 -2.218491 -0.321939 -4.932729 -2.574142 12.173755 2.761465 -3.553771 2.081713 -12.313713 5.714225 2.993841 5.588531 6.743320 3.069368 -0.091087 -2.154786 5.252973 -3.907759 3.162426 1.672571 3.878707 -5.377787 -1.742280 2.689878 0.246752 7.468371 1.193761 9.592062 2.183287 5.186748 -1.166674 -7.252805 -4.259066 -3.724110 9.598940 -5.183279 5.672297 0.871031 0.621797 0.197684 -5.179146 -0.207564 -7.512443 0.687573 0.028815 -5.444386 0.082660 -6.447814 1.855694 -3.317607 -3.840777 0.772543 -4.543131 5.894835 -0.738839 0.425045 -1.431787 -11.695420 3.258610 1.895879 1.214066 5.856657 1.996919 -1.780274 -2.095421 -5.592088 -8.672098 7.649453 6.007236 1.110058 2.230770 -5.742369 -1.696589 -0.706781 -1.218748 0.466025 8.726030 -9.671721 3.372597 -0.607933 -4.533609 -5.544082 -9.474866 0.809028 -7.855873 3.208162 4.207382 -2.781528 1.001815 -2.362298 2.704180 -2.231552 -7.566657 3.071429 -2.966750 -0.161752 9.754016 -5.489731 -4.500485 -3.249250 -0.817446 0.680579 6.896744 1.869878 2.739147 9.685507 5.898439 7.150238 -8.007578 -1.210977 4.720854 5.383851 4.309664 3.494525 -7.956073 -4.646256 2.557396 -4.663933 -14.742400 -3.719860 5.561941 9.474338 -0.439567 -7.154324 1.986158 -3.797127 7.948216 7.755766 3.940446 2.691406 1.132323 -7.082988 2.659063 13.806941 -4.704256 6.584981 -3.609991 -5.350891 7.913821 -4.637651 5.965539 1.053817 0.955654 -0.329446 -7.344423 -0.057194 11.198712 2.506104 3.530867 -0.250502 2.964633 -4.256301 -12.073569 -16.104320 -2.897273 8.065529 2.904603 13.406092 -8.368147 -5.367728 -1.055236 10.299577 -1.251538 -6.113976 3.475962 -5.326993 4.777824 -15.401774 -12.534590 16.102219 16.001120 5.119067 -1.934597 8.076362 3.844275 -8.115446 -6.937075 -6.292620 5.942357 1.534348 -7.105632 -2.391606 1.299457 -10.910481 -3.045302 -1.246196 2.202947 3.366768 -1.869605 3.838561 0.180734 -6.251098 -4.670778 5.620412 -5.527998 -4.811257 -1.893209 1.539639 0.600449 4.682318 -4.671975 -3.169497 3.637070 -7.435791 -1.229072 3.276670 5.718577 1.995344 14.243810 12.111864 -2.047197 7.069432 -0.447810 -5.740367 16.547376 -6.247665 -0.521705 -0.785301 4.230515 0.233300 4.181396 6.158604 -4.194383 -7.067018 -9.545658 0.397786 -0.180788 5.054437 -7.015468 -9.526995 -12.460791 -0.461836 0.279900 11.508849 0.360588 18.421342 -3.383093 3.659980 -18.631123 1.102655 6.931955 -1.862889 6.539305 4.304884 -7.738840 -9.923192 -1.805930 -7.322775 -3.523596 -0.270905 -6.764501 -5.838336 -7.656290 7.468872 -5.998544 2.408230 7.206306 0.328951 8.264028 0.949567 -1.671090 -5.543556 1.154748 7.593772 1.547826 -7.094965 9.006481 0.636859 22.227312 -3.648326 6.963285 -4.987342 3.165678 -2.811259 -7.480498 -4.548811 11.111512 10.864503 4.706991 -1.329395 -0.173029 -3.724848 7.106420 -PE-benchmarks/binomial-coefficient.cpp__main = 0.296628 0.975130 4.554772 2.615626 -1.277800 -2.381377 -1.009889 -3.795444 2.291149 0.785710 2.378497 -0.254662 1.273678 0.059374 -0.365766 -0.095861 1.047379 0.059587 0.201235 -0.827374 -0.479224 4.269327 1.376577 -2.308519 0.181019 -4.087319 1.655460 1.106497 2.767809 2.258105 0.174543 -0.024554 0.252015 1.395230 -2.212153 -0.636845 -0.710043 0.842996 -2.361436 -0.326143 0.522918 1.133111 1.699049 -0.063752 1.572180 0.333927 2.180426 -0.325733 -1.129029 -0.420956 -1.771944 3.329765 -0.886753 1.380470 -0.203598 0.583741 -0.149528 -1.458870 -0.580247 -1.974008 0.357846 1.381023 -1.615239 0.020225 -2.602106 0.537501 -1.233347 -1.315364 0.761400 -0.186993 1.651199 0.592153 0.652119 -2.261427 -3.771222 1.377165 -0.133101 1.030199 1.024736 0.590837 -0.247266 0.460195 -1.322581 -1.848762 1.477906 1.494524 -0.127969 -0.040207 -0.153811 -1.590750 -0.418774 -0.145286 -0.577035 1.949531 -2.282607 2.069748 -1.568934 -0.407082 -0.814021 -1.816983 -0.489563 -2.354665 0.853867 1.021527 -0.028944 0.988848 0.852829 0.797654 0.373466 -2.613819 0.152926 -0.165915 -0.334782 3.365791 -1.175486 -0.881587 -0.324684 0.353315 -1.059381 2.127080 -0.205345 1.253816 2.410265 1.568195 1.053515 -1.788355 0.362587 1.526050 0.918460 1.455365 1.573064 -2.056736 -1.346165 -0.382201 0.509244 -4.293837 -0.065441 1.699926 1.627048 -0.380825 -1.964166 0.480439 -0.809325 2.778069 1.908742 0.596426 1.222470 -0.037988 -1.145891 1.364104 4.990546 -1.265512 1.356878 -1.959204 -2.426150 3.141764 -1.280380 2.289839 -0.655670 0.792188 0.832312 -2.403400 0.442867 3.032915 0.053308 0.525570 1.626347 -0.040899 -0.080066 -3.655800 -3.455145 -0.410627 0.959031 0.276953 4.589082 -1.580727 -1.412092 -0.476142 1.879863 -0.122590 -0.528631 0.651312 -1.677330 0.959876 -5.082759 -3.886754 3.652864 3.747490 0.357859 -0.431552 2.657028 1.305136 -0.984659 -2.140370 -1.590244 1.596596 0.780546 -1.088824 -0.402783 0.175837 -2.816689 -0.498562 0.339191 0.303753 1.697371 -0.895092 -0.340131 -0.835309 -3.295006 -2.006126 2.034179 -2.526538 -0.818610 -0.252067 0.401348 -0.531607 1.274140 -1.194601 -0.834047 1.075970 -1.398978 -0.370658 0.445532 1.357641 -0.060746 2.703560 3.358201 0.383883 2.275415 0.937243 -1.616244 6.136113 -1.601197 -0.661061 -0.211304 1.036560 -0.929610 1.366440 0.575298 -0.866076 -1.895965 -2.553357 1.417642 -0.239863 0.728148 -2.446833 -2.118294 -2.092282 -1.082867 0.588134 2.617066 0.705218 5.088733 -1.476144 0.654729 -5.404476 0.306105 1.844158 0.101915 2.681014 1.568956 -2.091235 -2.690455 -0.646180 -0.950624 0.735173 -0.859329 -3.708937 -1.846997 -1.491665 1.504369 -1.691265 1.317517 3.019097 -0.501013 2.094775 -0.582364 -0.535729 -1.337651 -0.185901 1.309416 0.967157 -1.929170 2.157514 -0.925860 5.708039 -1.211318 2.003325 -2.098526 0.528911 -0.728987 -1.885191 -0.817153 3.185377 2.016858 0.910122 -0.024055 -0.439153 -1.228264 1.383914 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -1.372102 3.135145 13.604773 8.905065 -4.646500 -5.654491 -2.706152 -5.325684 2.895057 1.550955 6.262768 -1.414673 1.565765 3.280907 -0.151220 -3.594090 1.946060 0.723176 -0.239891 -2.198499 -2.535275 5.960131 6.771656 -9.983891 0.405277 -8.568229 6.445766 3.713677 3.627221 6.042095 0.053802 0.680261 0.334951 4.771385 -7.042981 -3.385750 -2.559180 2.308842 -2.967863 -0.161172 3.710993 5.332778 3.268937 0.331846 3.010705 5.033963 5.417331 -1.186833 -5.993482 -0.980908 -3.511964 7.449478 -3.465379 3.200527 0.179064 5.200468 0.081794 -6.651996 -1.552627 -10.484568 3.269144 4.952345 -4.566909 0.318115 -7.701846 0.922444 -2.898957 -4.223814 3.664050 0.038343 3.675181 0.014276 0.813487 -6.910032 -4.620773 3.976271 -0.837619 3.135673 2.584522 -0.793923 -2.764553 2.721988 -2.396174 -4.088793 0.057822 -0.626555 0.236591 -0.926908 3.600740 -4.190931 0.667720 -0.188940 -4.196206 6.226564 -4.383127 6.878156 -3.357383 -0.950022 -3.564783 -1.926317 -1.752832 -6.716035 2.694085 6.668123 -3.408018 1.900926 -0.505283 2.331481 1.358869 -7.393215 -1.030163 -1.351958 0.645088 5.544929 -4.474999 -1.791692 1.138072 0.572907 0.084472 6.695657 -1.455217 2.693907 6.093604 4.069411 0.754209 -4.330298 2.615399 1.065704 1.649883 4.500722 5.540735 -5.880128 -3.803611 -2.490991 1.488859 -9.900288 3.151748 3.166355 3.032419 1.267936 -9.352035 2.537204 -3.108209 6.945833 4.403311 6.142889 2.754396 -1.298260 -2.125055 2.240407 12.257535 -4.208808 3.943162 -2.659013 -8.775452 9.045461 -2.619137 6.434408 -0.050944 2.004759 3.969762 -6.973203 -0.633574 8.496056 2.063005 1.810403 8.504994 -1.535235 2.528305 -9.736964 -6.794221 0.298044 1.238778 0.239118 12.663892 -4.776769 -2.315091 -1.904527 5.696311 -1.272911 -1.456981 -1.434439 -0.457214 1.420855 -13.936185 -9.962757 6.377535 7.520391 -1.459262 -1.492414 7.260810 1.668302 0.710304 -4.728323 -5.119081 4.378728 0.054925 5.352700 1.399827 0.225908 -7.324753 0.632070 1.322312 1.259048 6.090490 -6.845847 -7.287406 -0.571172 -10.182206 -5.534428 1.731326 -7.609214 -2.784407 -0.381562 0.782824 -0.487893 0.856662 -2.387116 -4.594870 1.594435 -4.314031 -2.502591 1.612191 5.127643 1.188440 8.833782 5.575583 1.485410 2.713873 3.951450 -3.390708 19.584523 -3.776070 -2.007431 -0.046742 5.723860 -2.297700 2.728955 1.534238 -1.701881 -5.064879 -6.406043 5.170021 -1.299374 1.531860 -10.487248 -3.505749 -5.320614 -2.879504 2.743046 6.931366 0.807411 13.801324 -0.245959 0.814636 -12.157733 0.036683 5.727807 -0.843122 6.073242 5.536567 -6.159007 -9.341574 -1.786095 -0.736773 7.467849 -1.433820 -7.749884 -4.753770 -0.323376 0.680890 -2.174400 4.433963 8.473191 -1.976935 2.846591 2.236107 -1.885111 0.080081 -3.333709 3.261381 3.780129 -5.809381 8.189465 -2.643952 14.271870 -2.630690 5.881754 -5.874640 -0.556338 -0.252447 -0.787413 -2.525684 7.913952 4.782644 3.436267 1.188856 0.416007 -4.187113 3.128926 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.332749 0.665814 2.112002 1.274463 -0.852370 -1.705680 -0.486498 -2.333261 1.344530 0.278343 1.164563 0.002257 0.928482 -0.267094 -0.193117 0.212605 1.005109 0.130004 0.103823 -0.650769 -0.357512 2.537031 0.217487 -1.048614 0.347633 -2.060209 0.947596 0.778153 1.488721 1.307249 0.224822 -0.031681 -0.057740 0.713208 -0.953463 -0.391480 -0.158859 0.386542 -1.672381 -0.055758 0.116968 0.365268 1.398008 0.045959 0.718413 0.248383 1.008475 0.207596 -0.489412 -0.275380 -0.995059 1.522811 -0.251526 1.038504 -0.383159 -0.089159 0.306769 -0.497352 -0.128872 -0.469471 -0.053610 0.429046 -0.735169 -0.105685 -1.372251 0.141044 -0.561450 -0.949382 0.243401 -0.159572 0.863540 0.328682 0.175147 -1.153878 -2.462399 0.526089 0.178752 0.751290 0.704756 0.505071 0.080673 -0.027558 -1.098457 -1.102131 0.982058 1.018164 0.208573 0.306424 -0.651920 -1.093211 -0.210672 -0.066019 0.141422 0.821634 -0.970563 0.811179 -0.884192 -0.306224 -0.548414 -1.422223 -0.061363 -0.865582 0.442986 0.039775 0.211445 0.494438 0.603293 0.466920 0.116270 -1.128434 0.406326 -0.248519 -0.424226 2.116334 -0.185628 -0.789019 -0.485776 0.024327 -0.685539 1.182105 -0.057799 0.433141 1.233978 0.973062 0.690606 -0.972959 -0.084221 0.735148 0.489602 0.720281 0.917322 -0.960558 -0.789999 0.075293 -0.212033 -2.269669 -0.339072 0.873040 1.243973 -0.562079 -0.736283 0.428926 -0.710241 1.323782 0.925423 0.082807 0.753561 -0.010691 -0.833568 0.912300 2.536874 -0.598434 0.716752 -1.311247 -0.963597 1.450625 -0.265587 0.933133 -0.512027 -0.032350 0.063697 -0.857230 0.544115 1.506558 0.012227 0.062593 0.618187 0.165590 -0.590182 -1.814762 -2.108364 -0.186510 0.877737 0.355158 2.547157 -0.972750 -0.788062 -0.420201 0.837237 -0.197730 -0.331217 0.656596 -1.175328 0.654814 -2.687369 -1.947247 2.457030 2.009492 0.472123 -0.216078 1.153198 0.612872 -0.697719 -1.353566 -0.724821 0.702890 0.561362 -1.351888 -0.478728 0.236440 -1.519877 -0.354176 0.266356 0.284412 0.953223 -0.213566 0.409474 -0.941539 -1.626298 -1.243697 1.197635 -1.202705 -0.209823 0.253382 0.008106 -0.292995 0.933688 -0.372087 -0.411747 0.477350 -0.685713 -0.158595 -0.020377 0.850290 -0.142996 1.260368 2.066895 0.113478 1.490990 0.451111 -1.167353 3.077432 -0.962146 -0.009472 -0.126033 0.558417 -0.237861 0.761168 0.657316 -0.513624 -0.781283 -1.576643 0.492243 0.172694 0.458636 -1.328804 -1.093405 -1.517781 -0.422337 -0.018545 1.684665 0.187028 2.548398 -1.048211 0.378170 -2.929694 0.247454 0.790565 0.210661 1.233542 0.702564 -1.183707 -1.180441 -0.205302 -1.130507 -0.194971 -0.479572 -1.771837 -1.040448 -0.700759 0.729097 -1.006988 0.505451 1.859780 -0.495891 1.265662 -0.787388 -0.223787 -0.909152 -0.129774 0.950063 0.255363 -0.891538 0.890393 -0.272213 3.053277 -0.253069 1.053182 -0.941709 0.324815 -0.319033 -1.587153 -0.675140 1.726327 0.966649 0.333140 0.287024 -0.205773 -0.236169 1.027131 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.400228 1.387966 4.644407 3.033111 -3.041954 -5.179931 -0.997983 -6.369659 3.444975 1.134730 3.592338 0.623192 3.049684 -1.638549 -0.358857 0.535382 3.017801 1.043305 -0.321270 -2.085204 -1.639832 5.762499 -0.068931 -1.910353 1.056046 -3.200616 2.603586 2.416189 3.254629 3.126457 1.058664 0.019854 -1.083729 1.626794 -1.636608 -0.236271 -0.938501 1.244299 -3.918268 -0.639713 0.591782 -1.238085 4.200443 0.369933 2.475294 -0.148790 2.559607 0.450991 -1.955232 -1.185391 -2.066876 3.001273 -0.884083 2.550188 -1.028979 -0.956370 1.023575 -0.173448 0.568696 -1.237625 0.213020 -0.578012 -2.284758 -0.423330 -3.135182 0.046927 -1.961771 -2.969755 -0.025477 -1.712887 1.581297 -0.031869 -0.553843 -2.328652 -6.441429 0.257237 1.173713 1.136943 2.364588 2.433694 0.248236 -1.511394 -3.105610 -2.707096 2.901168 1.986564 0.709297 1.770471 -3.581397 -2.393625 0.103269 0.346436 1.560700 1.685714 -3.061540 1.396367 -1.524279 -1.291040 -1.617361 -4.570230 0.857444 -1.619829 1.193158 -0.623462 -0.277089 0.943226 0.372218 0.665920 -0.462707 -2.778069 0.756098 -1.603453 -0.688361 5.049092 -0.604127 -2.504084 -1.878212 -0.221573 -0.857455 2.375460 0.637330 0.492001 3.037110 2.043481 2.233576 -3.160259 -0.705396 1.902798 1.097577 1.786112 1.360611 -1.370131 -1.825884 0.961366 -1.981723 -5.983517 -1.419010 2.205383 3.273115 -1.096412 -0.996698 0.865659 -2.050540 2.478233 2.634733 0.661983 1.653437 0.418276 -2.613000 1.493247 4.824269 -1.285121 1.943770 -2.079541 -2.469737 3.491728 -0.417428 1.581474 -0.917565 -1.091960 -0.428055 -1.224830 1.149068 3.671994 -0.306694 -0.005282 0.340375 0.910412 -2.524695 -4.164954 -5.922588 -0.264147 3.682599 2.704462 5.598048 -3.001746 -1.473982 -0.261465 2.083927 -0.463681 -1.715394 2.136660 -2.808190 2.177316 -7.048694 -4.795361 6.275130 4.613767 1.932052 -0.635299 2.265179 1.066014 -2.249705 -3.222816 -2.098946 1.418184 1.406453 -4.222478 -1.056742 0.753403 -4.209826 -0.477429 0.604516 0.815081 1.753415 -0.901496 2.711615 -2.905322 -2.289537 -3.090369 2.965460 -2.085128 -0.218085 0.159531 -0.159124 -0.223264 2.163923 -0.702490 -1.048783 0.152645 -1.811666 -0.024021 -0.482026 1.918551 0.023667 4.505063 5.329095 -0.971625 3.099335 0.166521 -2.853777 7.077913 -2.797426 0.769036 0.031620 2.084684 0.239094 1.822691 2.835817 -1.593037 -1.411493 -3.725066 -0.734527 1.251835 1.725791 -3.296242 -2.637498 -5.136665 -0.198171 -0.908117 4.464270 -0.324556 6.224547 -2.762741 1.314717 -6.660592 0.615598 1.749147 -0.111815 3.420710 1.291090 -3.222101 -1.890377 -0.674399 -3.414589 -0.734906 -0.297641 -2.545360 -2.410542 -1.322968 1.357039 -2.765057 0.716001 3.126979 -1.962740 3.366879 -1.956595 -0.050632 -1.824599 0.178853 2.922669 0.452668 -2.241744 2.508524 0.265010 7.683364 0.412165 2.609723 -1.627751 1.470298 -1.045884 -4.559574 -2.297342 4.090253 3.458666 1.258180 0.229118 0.361391 0.007844 2.621654 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.368307 0.262202 1.271473 1.462056 -1.171794 -1.736384 -0.307626 -1.530372 0.961562 0.360262 1.237762 0.353985 1.110324 -0.702845 -0.090201 -0.355173 1.010590 0.297689 -0.047080 -0.572246 -0.860109 1.961515 0.445923 -0.952489 0.322750 -0.554489 1.447518 0.627636 0.691263 1.459030 0.272473 0.118009 -0.366501 0.522294 -0.439130 -0.039795 -0.799684 0.717740 -0.689172 -0.339754 0.695098 -0.917491 1.512069 0.299757 0.564472 0.135583 0.793022 -0.031098 -0.979537 -0.612627 -0.749770 0.231547 -0.746121 0.875754 -0.668502 -0.326019 0.914180 0.234176 0.191438 -1.176292 0.184429 -0.631026 -0.911113 -0.193026 -1.199326 0.032774 -0.898634 -1.042814 -0.100719 -0.630119 0.560588 0.152090 -0.131891 -0.801982 -1.938357 0.013673 0.356892 0.250005 0.843469 1.087914 -0.362725 -0.551031 -1.249222 -0.956547 0.991932 -0.106509 0.349621 0.658325 -1.024954 -0.725796 0.180162 0.430660 0.468646 0.555260 -0.628757 0.629808 -0.151227 -0.338164 -0.241020 -1.480855 0.279450 -0.679348 0.266610 0.383945 -0.532914 0.058736 -0.269841 0.175391 -0.321885 -1.237223 0.330833 -0.846042 -0.532016 1.166757 -0.280651 -0.721077 -0.520858 -0.004834 0.393162 0.826369 0.305225 0.199174 0.904428 0.557596 0.690979 -1.053233 -0.025105 0.513008 0.426041 0.376088 0.262510 -0.118865 -0.713105 0.399588 -0.709054 -1.879541 -0.559570 1.071921 1.062785 -0.116543 -0.751670 0.809772 -0.771386 0.486873 1.148842 0.574676 0.635967 0.293950 -0.843610 0.438206 1.433968 -0.477920 0.576822 -0.330859 -1.235168 1.894157 -0.159836 0.424612 -0.351265 -0.282832 -0.078214 -0.503565 0.438400 1.313970 -0.133877 0.091312 0.348454 0.261023 -0.579150 -1.380407 -1.858557 0.048369 1.743487 1.462757 1.969303 -1.148344 0.127663 0.248322 0.422255 -0.067619 -0.705445 0.318399 -0.458599 0.680310 -3.325156 -1.676852 2.108941 0.814662 0.507204 0.044221 0.354043 0.437254 -0.032143 -0.960403 -1.129198 0.602475 0.383395 -0.622334 -0.176007 0.256569 -1.474721 -0.180236 0.364118 0.160497 0.761244 -1.219666 0.317731 -1.268989 -0.610103 -0.961392 0.804019 -0.937032 -0.269436 -0.027137 -0.258070 0.087619 0.455608 0.378262 -0.181021 -0.420250 -0.544962 -0.346363 -0.325576 0.666067 0.065828 1.635414 2.033210 -0.769687 -0.103505 0.088838 -0.916218 2.726031 -1.160498 0.073854 -0.014385 1.329852 0.643222 0.561309 1.337861 -0.487839 -0.327510 -1.316049 -0.101897 0.859303 0.505084 -1.947068 -0.537776 -2.055774 0.104459 -0.312698 1.852383 -0.254178 2.161349 -0.913971 0.297508 -1.943159 0.182041 0.711384 -0.040605 1.186669 0.366900 -0.951896 -0.420207 -0.528733 -1.064367 0.783288 -0.151108 -0.446819 -0.722391 0.037740 -0.224896 -0.932445 0.410763 0.818011 -0.963756 1.005325 -0.331833 -0.021946 -0.646737 0.030673 0.655717 0.340741 -0.680654 1.251560 0.109193 2.109391 0.166793 0.808818 -0.604318 0.797335 -0.636810 -1.426360 -0.725293 1.342852 1.181987 0.299423 0.518799 0.471894 0.173233 0.924924 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -1.345601 -0.212662 3.726480 3.070537 -2.036040 -3.297738 -1.066193 -4.234401 3.007413 1.414832 3.811174 0.455196 2.616650 -2.034800 -0.227557 -0.969134 2.011073 -0.233409 -0.558042 -1.366666 -0.615771 4.697431 0.872073 -2.739851 0.665613 -2.943802 2.665466 1.630782 1.192527 3.043531 0.567914 0.468926 -0.567156 1.364320 -1.629425 0.583093 -0.440963 1.293216 -1.323935 -1.578112 1.867477 -0.264985 2.955878 0.051538 2.775174 0.100503 1.685753 -0.502727 -2.350987 -1.624980 -0.842581 1.345516 -1.456616 1.763925 -0.743955 0.149776 1.314167 -1.170861 -0.030519 -3.637198 1.058468 -0.011625 -1.942198 -0.415434 -2.100798 0.392450 -0.179191 -1.764090 0.457281 -2.518303 1.272083 -0.100198 -0.375151 -1.990888 -3.495347 0.463033 0.965898 0.063732 1.640026 1.869873 -0.975147 -1.467285 -2.097241 -1.904528 2.245520 0.930179 0.493952 1.797123 -1.897863 -1.157906 0.487494 0.283578 0.656728 1.833962 -2.125414 0.465438 0.780636 -1.138320 -0.670545 -1.672449 0.849929 -1.905473 0.778533 2.006820 -1.481562 0.935879 0.098873 0.807625 -1.150231 -2.279402 0.698535 -1.849594 0.116797 2.861747 -1.242267 -1.842997 -1.609369 -0.096700 0.656762 2.292907 -0.157241 0.744129 3.019668 1.531271 1.671293 -2.942989 -0.266331 1.955293 1.879162 1.099188 0.448516 -1.851244 -1.136475 0.633304 -1.907562 -4.461860 -1.784741 1.287967 2.897974 -0.465627 -2.906975 2.430897 -1.169372 2.460459 2.743565 0.873306 0.794481 0.998421 -2.714501 0.975995 3.877305 -0.967019 1.421439 -1.335225 -2.975697 3.288199 -0.419201 1.243910 -0.063668 -0.439564 -0.030011 -1.783405 1.405133 3.056837 -0.128012 1.024784 -0.424341 0.992579 -0.921280 -3.633082 -5.330894 -0.726370 2.740011 3.014216 5.879495 -2.841123 -1.169617 -0.456601 2.225489 -0.582058 -1.596611 0.959593 -1.790655 1.663658 -6.659539 -4.380527 5.497742 3.657766 2.159621 0.322861 2.622395 0.308650 -0.312516 -1.166671 -1.800555 1.636544 1.955919 -1.287014 0.569974 0.356516 -3.395230 -1.644853 0.102787 0.417342 0.752715 -2.117032 0.961686 -1.966070 -1.520811 -1.857088 1.703231 -2.034150 -0.629905 -0.665264 0.029441 0.072611 1.420028 -0.570902 -0.739957 -0.442724 -1.456530 -0.384237 0.119901 1.593368 0.721003 3.283819 4.860708 -1.711031 1.546293 -0.180131 -1.581821 5.917414 -2.291994 -0.152458 0.115385 2.211909 1.638787 1.109988 2.285692 -1.241677 -0.050037 -3.040577 0.332875 1.300617 1.519147 -4.673102 -1.921803 -4.398242 -0.272606 -0.622019 3.793542 -0.184151 5.861061 -1.772866 0.667644 -6.062498 0.154606 2.275731 -0.037588 1.957114 1.039346 -2.415322 -3.584979 -0.548224 -2.324124 0.206767 -0.523834 -1.811211 -2.101972 -1.486371 1.669708 -2.371679 1.039559 3.017924 -0.918826 2.217504 -0.696140 -0.038936 -1.342118 -0.271112 0.314109 0.881365 -1.750803 2.458558 0.107598 5.706616 -0.622498 2.397346 -1.736197 3.110573 -1.968052 -3.468640 -1.470216 3.021487 3.108179 0.731636 0.572624 0.421466 -0.784763 2.568284 -PE-benchmarks/biconnectivity.cpp__main = -0.980949 8.491943 35.280712 13.588436 -15.487919 -23.581213 -9.219075 -39.575895 18.278769 8.426146 25.834856 0.452504 12.930631 -0.477692 1.278882 3.679816 12.696483 -2.815557 -1.189988 -11.362277 -6.472287 27.030251 7.189586 -11.437855 5.633872 -26.755656 10.546498 10.527324 16.076597 13.454686 5.505777 -0.447270 -4.641735 12.164200 -11.101749 0.480644 1.326573 6.411499 -18.089528 -2.518248 4.545719 2.057392 17.594805 1.831309 19.533702 2.048019 14.560870 0.793963 -13.098131 -6.140993 -11.315600 28.371092 -9.160544 12.861858 1.560940 2.309681 -0.941744 -12.867646 -2.469379 -13.333114 0.855804 2.216280 -12.146732 -0.268451 -15.014326 4.029261 -6.763119 -10.700560 4.056511 -5.736512 13.882688 -1.526385 -0.496067 -7.019610 -28.594607 5.753862 3.739756 6.941657 12.269907 4.080757 -0.676836 -2.708172 -11.879258 -17.424200 15.991517 13.406793 2.148548 2.694941 -11.238847 -6.682804 -1.478619 -3.382564 0.781571 16.997441 -23.689275 9.576741 -4.695343 -9.319988 -14.093549 -19.673357 2.254765 -16.105735 9.030853 4.394609 -2.619992 3.669735 -1.475654 6.357823 -4.156967 -18.864886 2.900838 -4.220628 -1.519856 26.018483 -10.657587 -8.931626 -5.350212 -1.323188 -4.634965 15.503634 3.700613 7.257518 21.856396 16.776137 10.690087 -16.036519 -3.039511 9.358594 11.069555 13.167877 10.479735 -18.071503 -10.624771 5.377144 -7.337911 -34.262762 -5.651121 12.468115 19.884876 -0.934119 -14.103468 1.179588 -8.519417 19.111413 15.413660 7.817825 6.445046 0.382524 -14.234355 9.850884 34.166546 -10.728885 15.555411 -9.828722 -11.523360 17.538586 -11.416574 13.748907 1.900471 0.521969 -0.141595 -14.716128 -1.573949 23.733445 6.083466 5.102608 3.153140 4.649542 -10.079954 -27.791959 -34.007996 -5.385901 15.016082 4.198424 30.973226 -16.516820 -14.392048 -4.314894 22.034829 -3.976999 -11.573825 9.424515 -14.805176 11.234047 -30.681133 -26.734717 33.935795 34.681171 10.353250 -3.475943 20.838515 9.474549 -19.379953 -17.140259 -11.483822 12.420326 5.861606 -17.325644 -5.923938 1.512086 -24.296188 -4.447737 -1.006818 5.967174 8.550267 -0.828874 9.427482 0.341421 -18.965454 -11.441976 13.317774 -14.317985 -8.281176 -1.687741 1.989281 -0.617735 10.519621 -10.316197 -7.703587 7.795942 -16.339603 -0.805735 5.971832 13.416865 3.128806 29.317733 25.234098 -0.670697 21.801950 1.386517 -14.594062 36.607934 -12.584688 0.808707 -0.925982 7.832714 -4.060851 9.232783 11.626175 -8.946518 -16.155073 -21.563058 2.149452 -0.823374 12.629141 -13.642793 -20.552266 -24.325898 -4.923139 4.008184 23.266131 0.367677 39.406251 -9.203652 7.777759 -43.433042 2.836831 12.394631 -2.812633 15.573602 9.985845 -17.727460 -22.608141 -3.691201 -15.776314 -7.695211 -1.851329 -18.103577 -14.995138 -16.082015 17.874604 -14.854803 5.236215 18.888939 -3.148291 18.791908 -2.812871 -4.369408 -10.408242 1.399775 17.904512 3.108795 -16.701039 18.925365 -0.415388 52.473168 -6.083049 16.507373 -12.461838 3.575106 -3.827294 -14.697818 -8.921900 25.457660 22.917840 9.698131 -3.050877 -0.859245 -8.299288 13.483074 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -6.626800 3.722816 25.942620 16.407683 -9.600340 -14.385268 -6.877680 -17.759242 11.890723 5.569240 18.414999 1.478645 8.119525 2.093648 0.730272 -6.120592 6.718676 -2.157677 -2.745585 -6.083050 -2.674545 20.441264 12.736005 -18.230120 1.761394 -17.414400 10.534390 6.789977 6.902015 14.589224 0.325243 1.033651 -1.503214 9.176293 -12.163616 -1.810078 -3.119373 6.131956 -5.916263 -5.397452 9.485998 5.065742 11.605126 1.978442 11.760544 4.880094 10.328890 -3.175258 -11.983094 -6.059452 -6.546440 13.858672 -9.266128 9.427152 -0.968778 7.815608 2.645948 -10.253879 -2.231222 -23.512464 5.045087 6.137965 -9.476674 -1.767007 -11.723133 2.673542 -2.423526 -8.265669 3.770835 -7.680914 9.721478 -1.086109 0.624255 -11.327819 -15.319152 4.963838 -0.548304 3.914376 6.932327 4.514122 -8.379252 -0.817171 -7.293645 -10.488933 5.552275 1.805527 0.342169 3.203937 -1.440606 -4.726993 1.159368 0.130547 -4.388324 12.982536 -12.704079 10.879449 1.157541 -4.552463 -6.020684 -5.093707 -0.013841 -13.219983 4.548825 11.364204 -5.743768 2.065049 -3.014832 3.893655 -2.662835 -14.827126 2.778208 -2.986851 -3.045235 10.933975 -9.792530 -4.295848 0.995932 0.096397 1.953133 14.133802 -0.624485 5.539715 12.698226 9.201139 5.766752 -12.066573 3.136858 5.360913 9.047225 7.663324 7.453124 -10.315645 -7.432761 1.285875 -3.389960 -23.252252 -0.476625 12.186378 13.369306 2.429412 -19.219924 7.698749 -6.453349 14.057966 13.136387 10.817576 5.192876 0.120257 -10.760437 4.312997 25.892478 -7.816508 11.039591 -4.353171 -15.459361 20.899111 -8.573305 12.488959 0.420941 2.844736 3.878906 -12.833172 0.127766 18.440755 5.020876 6.434386 6.704918 0.321911 -0.355884 -21.852127 -23.190174 -5.993695 9.806876 8.235801 26.928248 -11.842084 -6.342674 -2.825873 13.034491 -4.900318 -7.992735 1.217852 -4.688314 6.146669 -33.793377 -21.381871 23.698703 22.169171 3.770706 0.278825 15.888845 3.968247 -0.104520 -9.861137 -10.026532 9.838561 3.748352 3.220662 2.209648 -0.392017 -16.769405 -3.642771 0.723294 2.327806 6.132815 -11.028894 -3.803905 -0.723321 -14.690022 -9.640066 4.150266 -14.105413 -7.504804 -1.843826 1.418840 -1.147889 3.231980 -3.340151 -6.862670 3.168282 -10.779976 -3.445503 3.235041 8.598118 4.290706 18.463451 18.368671 -2.943936 7.821259 3.348833 -8.139323 36.516337 -12.719657 -2.879233 -0.697282 12.971613 1.132649 6.664935 6.647105 -4.826435 -6.903276 -14.134228 7.882168 0.819336 7.219093 -23.210891 -13.407464 -15.424471 -2.511407 3.233165 17.162582 -1.596628 31.899940 -5.042016 4.929539 -33.764776 1.329766 13.212823 -1.298744 10.056449 8.903758 -12.157763 -22.237704 -3.260284 -6.191066 8.202852 -2.014157 -14.022507 -8.975142 -7.394528 5.503910 -11.464256 7.229103 14.802571 -4.954472 11.531840 1.318076 -3.499066 -4.715059 -3.510379 6.355151 6.077481 -10.862347 15.880965 -2.334622 31.670336 -6.545435 14.044668 -10.091823 7.958110 -5.792729 -9.195413 -6.116132 18.033327 15.446635 5.385492 1.318344 0.658710 -6.759914 8.044802 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/find-parity.cpp__main = 0.887491 0.443565 2.186083 0.999410 -0.845382 -1.150042 -0.552464 -2.799293 1.238649 0.288052 1.302806 -0.262440 0.694067 -0.103176 -0.332730 0.687076 0.501847 0.081909 0.353900 -0.481013 -0.495931 2.244937 0.387824 -0.482509 0.094953 -2.111729 0.688451 0.575579 1.842342 1.070203 0.297166 -0.304154 0.179652 0.505964 -0.913650 -0.219078 -0.418456 0.588561 -1.855651 0.101404 -0.110697 -0.212153 1.040580 -0.553973 0.952714 -0.325011 1.138560 -0.002399 -0.521682 0.157047 -1.269779 2.005549 -0.451121 0.649112 -0.300247 -0.247177 -0.351665 -0.290815 -0.577251 -0.185395 -0.351180 0.351875 -0.607090 0.349768 -1.309241 0.394975 -0.744956 -0.933744 0.417401 0.378914 0.896464 0.703709 0.466045 -0.516564 -2.420732 0.722747 0.341651 0.590375 0.409522 0.055860 0.911103 0.053877 -0.746343 -0.877767 1.296815 1.428024 0.057589 -0.258841 -0.411694 -0.743182 -0.033598 0.026317 0.060002 0.826093 -1.187184 1.009648 -1.502127 -0.143060 -0.528961 -1.765200 -0.246747 -1.090123 0.749720 -0.055113 0.058601 0.907389 0.951123 0.760757 0.204479 -1.417176 -0.293890 -0.092577 -0.058327 2.359508 -0.298052 -0.782134 -0.477663 0.197853 -1.017834 0.569606 0.010850 0.845327 1.452834 0.936987 0.772341 -1.046598 -0.318516 0.849452 0.339629 1.046535 0.843110 -0.715890 -0.769557 -0.150947 0.174739 -2.484261 -0.505867 0.430028 0.711892 -0.779514 -0.084628 -0.319654 -0.485990 1.773714 0.892704 0.200862 0.655531 0.109611 -0.515489 1.077440 2.465798 -0.612498 0.679907 -1.178570 -0.944391 1.056259 -0.330235 1.025844 -0.481685 0.071599 0.048627 -1.310038 0.177985 1.427373 -0.048184 0.206291 0.264966 0.207415 -0.684377 -1.844244 -1.555142 -0.242055 0.571747 0.070350 2.346789 -0.823174 -1.283131 -0.000206 0.879664 0.311007 -0.232591 0.719171 -1.495387 0.694961 -2.396583 -2.240683 1.998720 1.833611 0.868630 -0.085303 1.242433 0.813183 -1.255531 -1.353622 -0.587292 0.819390 0.649175 -2.176306 -0.987689 0.289984 -1.339577 -0.203935 0.258160 0.334533 0.676518 0.363717 0.776710 -0.509741 -1.601712 -0.665070 1.533774 -1.549732 -0.374226 -0.074713 0.213889 -0.108962 0.889447 -0.992741 -0.074904 0.421572 -0.604275 0.312820 0.209904 0.757815 -0.446041 1.183790 2.347026 0.233553 1.596918 0.247783 -1.010962 2.280498 -0.803317 -0.140382 -0.020999 -0.168259 -0.932452 0.548509 0.757438 -0.714447 -0.957777 -1.384532 0.135242 0.056089 0.481740 -0.345342 -1.035402 -0.969364 -0.620391 0.405043 1.306761 0.779603 2.388352 -0.975508 0.363840 -2.731608 0.129693 0.417033 0.095196 1.713288 0.588351 -1.079966 -1.071374 -0.418345 -0.847817 -0.310791 -0.535947 -1.902964 -1.186901 -0.982351 1.034562 -0.675773 0.457756 1.377547 -0.382097 1.336912 -0.816824 -0.312260 -0.871740 0.306942 0.957679 0.306370 -0.941134 0.849626 -0.233217 3.608737 -0.231562 0.702807 -1.185934 -0.025272 -0.145560 -0.956314 -0.383502 1.778365 1.070109 0.715736 -0.277960 -0.474963 -0.504214 0.657374 -PE-benchmarks/the-knights-tour.cpp__main = -0.039991 0.866997 2.153845 1.014676 -1.274378 -1.711226 -0.648100 -2.015668 0.586037 0.302527 1.416671 -0.493494 0.553635 0.486153 0.009766 -0.179817 0.776056 0.104411 -0.070477 -0.723389 -1.144195 1.042732 0.272477 -0.847527 0.417630 -1.291024 1.036831 0.783060 0.433997 0.802566 0.229076 -0.014689 -0.435653 0.739781 -0.801611 -0.219046 0.223354 0.399971 -0.864119 0.137526 0.364775 0.077519 1.135594 -0.045134 0.688131 0.969853 0.528115 0.241264 -1.246402 -0.359806 -0.393608 1.172832 -0.432924 0.782141 0.164798 0.190619 0.235183 -0.983289 -0.079473 -0.751995 0.157991 -0.098797 -0.691097 0.061428 -1.150540 0.118895 -0.467491 -1.037473 0.604369 -0.356953 0.631500 -0.246603 -0.193093 -0.353942 -1.183809 0.424483 0.465355 0.552311 0.578821 -0.031699 0.217897 0.125126 -1.002727 -0.976081 0.461823 0.455270 0.566352 0.081797 -0.535166 -0.523926 0.402826 -0.167253 0.133206 1.043814 -0.713800 0.567946 -0.756153 -0.578547 -1.385270 -1.689515 0.107213 -0.780527 0.734492 0.526076 -0.765995 0.198032 0.078730 0.551258 0.075522 -1.390847 0.045655 -0.585994 0.301579 1.494598 -0.526422 -0.759080 -0.288456 -0.413617 -0.164436 0.941407 0.180867 0.158019 1.184623 0.929198 0.553295 -0.971833 -0.363228 0.054773 0.393513 0.722034 0.933864 -1.186839 -0.672723 0.164694 -0.785383 -2.008589 -0.200889 0.264268 1.187383 -0.173337 -1.036641 0.478949 -0.852511 0.881951 0.558081 0.932201 0.332139 -0.210485 -0.771634 0.396689 1.625601 -0.718972 0.967853 -0.581678 -1.043109 0.878866 0.067147 0.660280 0.280305 -0.128492 0.045554 -0.822215 0.002181 1.374858 0.444413 0.199950 0.700842 0.157516 -0.808555 -1.603400 -1.765327 0.269795 1.028102 0.023200 1.872021 -1.308396 -0.848264 -0.247539 1.624795 -0.434732 -0.627727 0.308157 -0.511225 0.583391 -1.746650 -1.712463 1.566792 1.624214 0.321460 -0.310372 1.059146 0.142751 -1.035932 -1.020697 -1.024261 0.727119 0.119513 -0.600359 -0.451786 0.072431 -1.340397 0.225917 0.047816 0.592792 0.917494 -0.454586 -0.032467 -0.355181 -1.303810 -0.986688 0.662335 -0.934173 -0.151398 0.262035 -0.003237 -0.023447 0.571809 -0.468032 -0.831364 0.172240 -0.910660 -0.018814 0.362656 0.856765 0.051430 2.261002 1.210240 -0.117105 1.027108 0.170235 -0.823018 2.730711 -0.834555 0.234114 -0.091742 0.991576 -0.374407 0.465733 1.111217 -0.448116 -1.151255 -1.311487 -0.081054 -0.132232 0.496642 -1.199571 -0.965200 -1.905947 -0.249699 0.042553 1.678833 0.045362 2.160693 -0.120090 0.434160 -2.200695 0.107308 0.677346 -0.312981 0.850669 0.588351 -1.129297 -1.543284 -0.059172 -1.142507 -0.312183 -0.136251 -0.989546 -0.880045 -0.408446 0.342012 -0.246599 0.224566 1.311685 -0.181378 0.636983 0.176792 -0.342529 -0.254135 -0.394553 1.432219 -0.024017 -0.972248 1.383334 0.242329 3.187812 0.170818 0.934578 -0.598755 -0.247146 0.205384 -0.742225 -0.711277 1.367290 1.085464 0.647746 -0.072559 0.199925 -0.423448 0.764323 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.560464 1.218509 4.086030 2.733924 -2.538084 -2.807461 -1.142233 -2.577639 1.123175 0.432983 2.113226 -0.701221 0.511970 0.904673 -0.075542 -0.952918 0.969511 0.277582 -0.678339 -1.084051 -1.801152 1.546412 1.279909 -3.005105 0.545064 -2.485285 1.820386 1.478848 0.489097 1.414455 0.160005 0.035543 -0.672398 1.509711 -2.065022 -0.653583 0.306337 0.434885 -1.287605 -0.431993 1.138196 0.805802 1.857401 -0.285424 1.385256 1.508573 1.117845 0.079115 -2.771666 -0.528719 -0.680191 2.459598 -0.731709 1.518450 0.824132 1.390120 0.342825 -2.594852 -0.285900 -2.653720 0.715078 0.545534 -1.180580 -0.118301 -2.006131 0.094021 -0.130573 -1.823590 1.546386 -0.974015 1.065667 -0.623794 -0.079179 -1.383183 -1.336081 0.917088 0.537181 1.035584 0.925399 0.261455 -0.004934 0.259488 -1.263188 -1.320206 -0.006398 0.090898 0.618255 0.284256 -0.187966 -1.038951 1.025267 -0.577571 -0.492747 1.895544 -1.499008 1.222920 -0.861202 -0.831669 -2.398617 -1.861909 -0.008383 -1.467868 1.187838 1.700453 -1.615692 0.621961 0.369714 0.919742 0.252358 -2.417986 0.035143 -1.077811 0.694389 2.058254 -1.271265 -1.172803 0.194008 -0.531232 -0.385081 1.926886 -0.337770 0.435912 1.957900 1.533467 0.933185 -1.699028 0.012106 0.119128 0.936737 1.402233 1.682786 -2.250282 -0.846636 0.074536 -0.809314 -3.504261 0.105576 0.496072 2.073696 0.705777 -2.827105 0.719095 -1.182553 2.057025 0.496997 2.031186 0.491626 -0.386147 -1.284864 0.403687 3.301554 -1.238123 1.665686 -0.776977 -2.346442 1.900756 -0.031043 1.685808 0.489898 -0.044772 0.809782 -1.823000 -0.084816 2.549390 0.810215 0.256378 1.500937 0.056033 -1.010827 -3.535021 -3.115833 0.362819 1.219526 0.040598 4.109482 -2.377417 -1.734760 -0.922619 3.083155 -1.206139 -0.790352 0.213078 -0.739737 0.990641 -3.513102 -3.379019 2.775167 3.036685 0.156669 -0.348465 2.663963 -0.242404 -1.011772 -1.562912 -1.770867 0.999205 0.664647 0.660944 -0.005871 -0.149338 -2.441307 0.223792 0.333040 0.800705 1.649554 -1.452350 -0.882436 -0.330497 -2.661287 -1.788106 0.685027 -2.169058 -0.254345 0.388480 0.393013 -0.051508 0.917312 -0.763477 -2.038100 0.184716 -1.394259 -0.221175 0.591950 1.650127 0.338506 3.721753 2.177896 -0.029217 2.190244 0.624845 -1.296290 6.113332 -1.753384 0.035585 -0.106653 1.978320 -0.531080 0.685203 1.598555 -0.822110 -1.321739 -2.103806 0.511046 -0.650535 0.816435 -3.708303 -1.808375 -3.037374 -0.794042 0.270541 2.107194 -0.043722 4.039172 -0.072339 0.401095 -4.780573 0.018605 1.920830 -0.422311 1.296194 1.370958 -2.159756 -4.069337 -0.008983 -1.300030 0.781419 -0.351368 -2.140275 -1.301089 -0.708802 0.761624 -0.424344 0.881655 3.113199 -0.451640 0.927243 0.388566 -0.489558 0.067295 -1.351589 1.573248 0.330679 -1.699364 2.958344 0.094055 5.495751 -0.054409 1.772107 -1.307644 0.024561 0.176054 -1.011242 -1.143983 2.272657 1.554408 1.160221 -0.062818 0.455000 -1.625887 1.347167 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.593854 0.461464 3.941813 2.695039 -2.070734 -1.961368 -1.126302 -2.241280 0.994961 0.229730 2.312437 -0.408414 0.182553 0.698667 0.016478 -0.807748 0.615175 -0.288662 -0.485275 -1.075751 -0.522210 1.938098 2.171925 -3.546379 0.545994 -2.507621 1.573444 1.291480 0.799777 2.077946 -0.550652 -0.307431 -0.095130 1.663168 -1.983725 -0.817860 -0.017328 0.678466 -1.304054 0.248567 1.289134 1.367466 1.583884 -0.924673 1.581477 1.661724 1.603084 -0.120790 -2.737232 -0.463004 -0.599159 2.001877 -1.501125 1.736644 -0.271066 1.398222 -0.511842 -2.211487 -1.204651 -3.520353 0.677675 1.213340 -0.920522 -0.213381 -2.120485 0.388625 0.350309 -2.010062 1.621004 -0.473609 1.410833 0.319815 -0.010350 -1.409198 -1.109364 1.203184 0.723283 1.663314 0.311626 -0.782920 0.042564 0.339113 -0.771478 -0.931873 -0.403116 0.034841 0.807830 -0.205088 0.908942 -0.559861 1.201295 0.161617 -1.045192 1.915468 -1.108450 1.330938 -1.213765 -0.522711 -1.607115 -0.914550 -0.440394 -1.813098 1.496677 1.982809 -1.545510 1.319744 0.777588 1.673051 0.074032 -2.559099 -0.507300 -0.005237 0.454554 1.984308 -1.003876 -0.906847 0.376112 0.043358 -0.387994 1.735365 -0.698899 0.969523 2.367041 2.049329 0.801638 -2.086246 -0.039894 -0.288083 1.220146 1.896277 2.173965 -1.647709 -1.269272 -0.618784 -0.627611 -3.354937 0.179243 0.510183 2.283962 -0.213697 -3.021529 1.038644 -1.503488 3.185285 1.324520 1.570466 0.732452 -0.372645 -1.735133 1.287953 3.969569 -1.223224 1.593050 -1.369778 -2.089982 2.296251 -0.038138 1.772356 0.324843 0.204133 1.017668 -2.511816 -0.135555 2.573203 1.281992 0.946736 1.462650 -0.045194 -0.039249 -3.620617 -2.499757 -0.673623 0.725407 0.285863 4.173150 -1.963507 -1.858371 -1.132545 1.934275 -0.662947 -0.692661 -0.248421 -0.926479 0.941814 -4.197193 -3.361388 3.023357 3.854455 0.649824 0.588468 2.844416 0.167855 -0.245412 -1.062503 -1.012757 1.450885 0.770301 0.487813 -0.405585 0.111144 -2.148413 -0.546955 0.555061 0.814142 1.040461 -1.290482 -1.799257 0.737495 -3.080677 -1.525870 0.482024 -2.841526 -0.508864 0.568425 0.229379 0.339532 0.497740 -1.140113 -1.408379 0.135893 -1.546657 0.029213 0.536341 2.010845 0.559664 1.813491 2.506182 -0.016737 2.120272 1.021317 -1.592395 5.412989 -1.511825 0.030953 0.219191 1.597237 -0.702746 0.747842 1.113248 -0.736510 -0.568771 -2.211090 1.216666 -0.064596 1.218525 -3.527249 -1.851499 -1.838872 -0.550833 0.996330 1.918716 0.081178 4.234763 -0.165541 0.802852 -5.226595 -0.215020 1.516249 0.329222 1.528719 1.594927 -1.861836 -5.003482 -0.077906 -0.993809 1.109318 -0.966065 -2.219272 -1.614060 -0.291551 0.769741 -0.432095 0.927889 2.979945 -0.516399 1.619758 0.166126 -0.789097 0.056331 -1.641317 1.107277 1.209124 -1.786713 2.133164 0.030343 5.610593 -0.234794 1.799681 -1.819916 -0.011425 0.181782 -0.681672 -0.886913 2.731892 1.751841 1.144804 0.294177 -0.380973 -1.373927 1.267369 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.399024 2.920146 12.893431 9.489233 -5.811269 -7.801676 -3.875188 -7.221767 4.686763 1.454091 7.780107 -0.385335 2.788240 1.892254 -0.548152 -4.482575 3.210501 -0.495166 -1.983367 -3.582660 -4.022307 8.475689 6.100995 -10.471680 1.497549 -9.184365 7.285170 4.138860 2.642299 7.791630 -0.116108 0.779350 -0.465833 5.389142 -6.529934 -2.467151 -2.038082 2.530315 -2.675981 -1.387501 6.411487 3.544600 6.913870 1.326233 3.665165 5.333555 3.967244 -1.001099 -6.956895 -2.489224 -3.527915 5.564610 -4.402652 4.749165 -1.101602 5.170503 2.810355 -6.888954 -0.988733 -9.929993 2.386487 3.207575 -4.639801 -0.797046 -7.241317 0.834218 -1.628911 -5.252541 3.352897 -3.735654 4.554246 -0.462504 -0.611007 -6.547498 -5.711143 3.153855 0.473403 3.158501 3.632058 1.237697 -3.303670 0.852390 -4.678714 -4.978417 1.415617 -0.992999 1.460971 1.506611 1.248167 -4.885940 1.769735 0.401323 -1.968988 6.599779 -4.098105 5.243835 -1.620444 -2.530825 -4.367247 -3.093975 -0.325726 -6.133358 2.911532 6.619614 -5.392027 1.505300 0.412895 1.901016 0.152593 -7.845068 0.211193 -2.197487 -0.172638 6.410956 -3.952221 -3.742999 0.384827 -0.755173 0.604039 7.518837 -0.665847 1.834175 7.191465 4.901826 2.251051 -5.978028 1.413005 0.730575 3.249164 3.943146 5.554107 -5.555624 -4.265436 -0.465024 -1.280114 -11.546669 0.882201 3.602469 6.648157 1.290849 -10.297256 5.487725 -4.344130 6.014892 5.004542 5.979450 3.188516 -1.164992 -5.126900 2.933392 12.685758 -4.138001 5.162704 -4.025842 -9.510514 10.537941 -2.261793 5.518149 -0.142469 0.352761 2.543711 -6.434540 1.336000 9.383183 1.025003 2.064355 6.538923 -0.447715 0.273163 -10.746473 -10.414261 -0.833367 4.108709 3.312618 13.989444 -6.873573 -2.136343 -2.113014 7.358593 -2.632095 -2.620789 -0.086544 -1.493556 2.844396 -16.228226 -10.789998 10.730380 9.475860 0.319937 0.235343 7.047529 1.211510 1.430273 -4.690248 -6.023781 4.864534 3.027825 3.894051 1.397338 -0.414913 -7.282838 -1.026163 1.390603 1.843160 5.152174 -8.395108 -4.606129 -2.505424 -8.956021 -6.910700 2.360631 -8.522783 -2.087856 0.778052 -0.145122 -1.383197 1.995449 -0.099907 -5.018510 0.109386 -3.914971 -1.878640 1.194088 5.603041 1.519498 8.436318 8.417495 -1.750904 3.451850 3.205240 -3.854799 20.117464 -6.873478 -0.949993 0.067405 8.322138 0.115392 3.698417 3.698694 -2.283844 -2.943730 -7.622714 4.694466 0.087387 2.323390 -13.402350 -4.395983 -9.045570 -2.383983 1.249653 9.055202 -0.373611 15.335085 -1.352885 1.198085 -14.978402 0.139950 6.891696 -0.210218 5.289728 5.096040 -6.604596 -11.472960 -1.676336 -3.563333 6.458981 -1.530976 -6.867910 -5.392979 -1.457736 1.524654 -3.948853 4.433440 9.366112 -2.778959 3.477640 0.546375 -1.926576 -1.619063 -4.202250 3.297751 3.079571 -5.110092 8.682354 -1.253780 14.234749 -1.661144 7.481118 -5.614689 2.233918 -1.510050 -4.447971 -3.846141 8.990665 5.542361 2.515529 2.051863 0.708068 -3.071959 4.749205 -PE-benchmarks/coin-change.cpp__main = -0.438574 1.211929 4.693531 2.533518 -1.895435 -2.895743 -1.172060 -3.438119 1.477384 0.861120 2.865591 -0.507573 1.276290 0.716491 0.014835 -0.589859 1.359345 -0.166109 0.213896 -1.151269 -1.355644 3.118176 1.709718 -2.302946 0.395828 -3.415230 2.336804 1.224997 1.478788 2.377587 0.363941 0.148454 -0.283160 1.565040 -1.945405 -0.466909 -0.440635 1.066067 -1.425289 0.165801 0.982016 0.793601 1.854687 0.149373 1.555963 1.559009 1.732441 -0.047632 -2.055091 -0.815967 -1.321061 2.525694 -1.368702 1.313569 -0.120673 0.840937 0.355915 -1.810523 -0.512109 -2.808917 0.498372 0.650501 -1.743311 0.208344 -2.693417 0.495811 -1.401416 -1.635375 0.880761 -0.218964 1.528946 0.135406 0.176220 -1.560082 -2.784011 1.173877 0.173020 1.083424 1.155283 -0.047134 -0.757457 0.543679 -1.658854 -2.043560 1.034992 0.716917 0.478038 -0.087505 -0.173047 -1.160144 0.047002 -0.034214 -0.542440 2.238779 -1.747478 1.859345 -1.036027 -0.774443 -1.719499 -2.189394 -0.214442 -2.250426 1.092300 1.741131 -1.064395 0.330200 -0.451295 0.810505 -0.059532 -2.846998 0.105997 -0.945657 0.017448 2.682904 -1.497706 -0.859335 -0.451718 -0.144736 0.116812 2.315173 0.007521 0.842933 2.491460 1.839692 0.769015 -1.878163 0.102188 0.624418 0.985475 1.419036 1.783360 -2.200638 -1.569544 -0.179762 -0.472101 -4.032528 0.019867 1.394409 1.739520 -0.133915 -2.598965 1.011507 -1.363618 2.393555 2.015718 1.815587 0.973007 -0.221870 -1.306029 1.170735 4.432031 -1.519260 1.771309 -1.254941 -2.750783 3.313790 -0.937573 2.024239 0.170192 0.409172 0.415207 -2.178477 0.015740 3.119230 0.744351 0.801643 2.063673 -0.010185 0.027116 -3.492867 -3.452271 0.073964 1.699292 0.477529 4.536394 -2.199714 -0.999021 -0.332986 2.354784 -0.258279 -1.150068 0.154548 -0.737254 0.869331 -5.304889 -3.817686 3.437442 3.291219 0.354435 -0.414295 2.344302 1.066653 -0.959939 -1.984839 -2.002064 1.828691 0.002314 -0.217843 -0.250965 0.302722 -2.924337 -0.068566 0.081148 0.742324 2.045843 -1.709071 -1.034639 -0.630595 -3.148728 -1.947068 1.250904 -2.408106 -1.123911 -0.045088 0.101438 -0.083859 0.731627 -0.757008 -1.121101 0.583806 -1.826428 -0.584324 0.707181 1.724620 0.295386 3.830644 2.956705 0.017374 1.249128 0.719101 -1.462685 6.200836 -1.527384 -0.282554 -0.144559 2.017675 -0.512995 1.056361 1.496678 -0.785525 -2.195304 -2.590380 1.167350 -0.016873 0.925806 -3.086540 -1.900532 -3.046660 -0.694050 0.728656 3.431178 0.217805 5.109365 -0.545814 0.715829 -4.865677 0.252142 1.689286 -0.311821 2.187281 1.551013 -2.259852 -2.731651 -0.663279 -1.435520 1.077253 -0.460334 -2.580482 -1.851457 -0.701329 0.579549 -1.148329 1.056000 2.709492 -0.651553 1.605663 0.663769 -0.682625 -0.831196 -0.529743 1.985577 0.783223 -2.039135 2.927296 -0.411505 5.887446 -0.697218 2.051452 -1.684358 0.193378 -0.189811 -1.282942 -1.021669 3.120797 2.237511 1.089427 0.251122 0.093169 -0.854392 1.456594 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -2.337102 3.678324 16.274831 10.822596 -6.143449 -7.735882 -3.364152 -7.162599 3.593760 2.148554 8.019182 -1.665007 2.305739 3.520014 0.004110 -4.425275 2.999128 0.392916 -0.612671 -2.991460 -3.642005 7.084460 7.681726 -12.045135 0.738363 -10.583960 8.133881 4.599975 3.265868 7.097590 0.564565 0.987793 -0.280554 5.697055 -8.360215 -3.414682 -2.170058 2.897514 -3.152083 -0.544479 4.814328 5.885147 4.354320 0.339833 4.315328 6.031731 6.128262 -1.159121 -7.732349 -1.693842 -3.968161 8.716559 -4.172206 4.044676 0.623487 6.135063 0.879032 -8.371158 -1.831710 -13.000223 3.625197 5.167586 -5.542474 0.239993 -9.011313 0.995079 -2.659152 -5.160229 4.451866 -0.276541 4.273080 -0.571893 0.628747 -7.847705 -5.296848 4.363194 -0.466041 3.844995 3.383865 -0.743377 -3.498553 2.528582 -3.432684 -5.109938 0.404930 -0.605805 0.760377 -0.503419 3.357905 -4.416255 1.156684 -0.527617 -4.474255 7.549275 -5.257268 7.235733 -2.921923 -1.704482 -5.231881 -2.780274 -1.433692 -7.717932 3.321944 8.504964 -4.844605 1.967072 -1.154203 2.613812 0.895859 -8.688224 -0.866277 -2.855837 1.244867 6.373709 -5.497470 -2.554703 0.832951 0.124624 0.786669 8.177089 -1.817624 2.821208 7.694249 5.460526 1.300403 -5.574143 2.504643 1.194166 2.534174 5.431201 6.236051 -7.694167 -4.328885 -2.235987 0.487383 -11.954440 2.970933 3.645750 4.404127 1.702473 -11.802540 3.317981 -3.837518 8.506642 5.135715 7.985950 2.909850 -1.098285 -3.019159 2.737921 14.690236 -4.920498 4.995662 -2.848215 -10.629516 10.677428 -2.604557 7.488653 0.706098 1.869739 3.958857 -8.025330 -0.650748 10.349043 2.722701 2.320378 9.367219 -1.274648 2.457390 -12.217655 -9.395051 0.566049 2.486118 0.837617 16.179432 -6.663284 -3.067741 -2.297792 7.476334 -2.103905 -2.415136 -1.400672 -0.621537 2.070483 -16.928659 -12.358062 8.839389 9.346718 -1.195008 -1.638570 9.058124 1.683060 0.095600 -5.451835 -6.366844 5.257916 0.408774 6.090966 2.027365 0.384802 -9.115431 0.192285 1.242182 1.793442 7.149492 -8.240204 -7.921035 -0.941431 -11.694997 -6.587732 1.857863 -8.812116 -3.386834 -0.437013 0.939186 -0.234974 1.297420 -2.553345 -5.763840 1.410596 -5.355022 -3.059718 2.078000 6.279513 1.641782 11.551655 7.645164 1.275212 3.744514 4.002951 -4.007895 23.457255 -4.449599 -2.130663 -0.100967 7.540613 -1.840234 3.009375 3.098322 -2.261675 -5.720334 -7.870282 5.751483 -1.382701 2.412899 -13.815836 -4.368588 -7.829687 -3.431783 3.282866 8.881847 0.442379 16.756596 -0.145190 0.968788 -15.726471 0.045878 7.078799 -1.211795 6.357090 6.307708 -7.782358 -11.809040 -1.883583 -1.824801 8.038072 -1.551342 -8.513395 -5.766462 -0.799612 0.776119 -2.677737 5.031380 10.602625 -2.302619 3.238444 2.901244 -2.058291 0.242560 -4.057001 3.941619 4.034770 -7.092355 10.403413 -2.604230 17.929586 -3.021844 7.086714 -6.562990 0.252696 -0.399261 -1.550128 -3.090516 9.323696 5.920846 4.023714 1.482726 0.848942 -5.018578 4.465659 -PE-benchmarks/magic-square.cpp__main = -0.262017 1.228267 4.332985 3.780173 -2.683895 -3.799729 -0.901804 -2.495004 1.310933 0.524018 2.078471 -0.643067 0.885958 0.402576 -0.205445 -0.718488 1.223823 1.159108 -0.079014 -1.038503 -2.409053 2.655074 1.730482 -3.116627 0.412384 -2.402974 2.841085 2.196936 1.579142 2.181287 0.234521 0.195743 -0.126228 1.578815 -2.251902 -1.004126 -1.414009 0.776600 -1.763541 0.020524 0.901658 -0.279180 2.294452 -0.198893 1.079290 1.543844 2.508874 -0.096796 -2.922604 -0.496014 -1.895974 2.472852 -0.883926 1.485734 0.078340 0.771389 1.051144 -1.867813 -0.291478 -2.748775 0.757017 0.288606 -2.156305 0.099675 -3.381240 0.197767 -1.722557 -2.659907 1.211306 -0.195578 1.079075 0.050537 0.068888 -2.175172 -2.883679 1.315705 0.478684 1.180641 1.052886 0.555769 -0.042678 0.489373 -1.902719 -1.626193 0.429977 -0.284868 0.525390 0.156742 -0.383026 -2.434561 0.443962 -0.076077 -0.654802 1.889200 -1.391360 2.651459 -1.329734 -0.650840 -2.244266 -3.121413 -0.321848 -1.939824 1.032998 1.487219 -1.123312 0.841602 0.257763 0.912613 0.490344 -3.223870 -0.184477 -1.445688 0.307003 2.753131 -1.115121 -1.045477 -0.320211 0.091211 -0.354731 2.188743 -0.296940 0.817051 2.212323 1.448907 0.701306 -1.781221 0.347763 0.429212 0.607429 1.420237 1.875823 -1.920184 -1.429622 -0.468939 -0.090744 -4.210042 0.153015 1.701129 1.521877 0.158100 -2.445507 0.991999 -1.228391 2.251897 1.210122 2.199123 0.946188 -0.371542 -1.066883 0.888994 4.028120 -1.460327 1.310672 -1.269170 -3.608298 3.562811 -0.136974 1.939418 -0.122044 0.128235 0.898342 -2.056571 0.308201 2.928803 0.487263 -0.465341 3.095222 -0.214599 -0.558929 -3.544856 -2.949622 0.979964 1.496948 1.025434 5.147961 -2.470167 -1.029736 -0.689942 2.049394 -0.368891 -0.479504 -0.062322 -0.880114 0.779301 -6.060800 -4.363793 2.995317 2.183875 0.069445 -0.397307 2.118772 0.540143 -0.410646 -2.601031 -2.355880 1.376003 0.249318 0.321655 -0.150575 0.285924 -3.258232 0.913092 0.547666 0.603845 2.738734 -2.634624 -1.320651 -2.396694 -3.367083 -2.840668 1.007957 -2.421213 -0.403609 0.179131 0.240107 0.045566 0.912352 0.022280 -1.503123 -0.308551 -1.234642 -0.686300 0.174654 1.943246 0.135245 4.203789 3.118230 0.254828 1.606371 0.942101 -1.588156 7.998256 -2.134963 -0.266853 -0.088790 2.623926 -0.540809 0.960455 1.835439 -0.773338 -1.424576 -2.479372 0.959423 -0.094267 0.512934 -4.590505 -1.368934 -3.877388 -0.847396 0.428469 3.228978 0.257498 4.559484 -0.634234 0.265987 -4.592511 0.120861 1.516615 -0.209697 3.093072 1.681550 -3.145976 -2.365240 -0.540617 -1.160771 2.345894 -0.630909 -2.474773 -1.714355 0.739695 -0.715604 -0.796087 1.300726 3.172302 -1.449776 1.264766 0.390958 -0.479255 -0.376822 -1.089434 2.144496 0.847886 -1.833272 3.208275 -0.437012 5.712759 0.467820 1.926537 -1.813649 -0.177457 0.102024 -1.241858 -1.212387 2.768893 1.587456 1.073153 0.397050 0.858626 -1.145899 1.554771 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = -0.243490 3.280103 11.057798 4.243707 -5.173445 -8.979420 -3.141817 -13.845840 6.001466 2.657502 8.307783 -0.256456 4.524331 -0.543483 0.405129 1.495045 4.777974 -0.473767 -0.394536 -4.032403 -2.212597 8.982052 0.655860 -3.017643 1.866708 -8.310352 3.444195 4.358831 4.911054 3.942716 2.175774 -0.313411 -2.029234 3.981812 -3.636104 0.526198 1.295450 1.982887 -6.299972 -0.762531 0.846720 1.010389 6.264833 0.235912 6.400881 1.123999 4.732224 0.888317 -4.214114 -2.332384 -3.178780 9.121642 -2.355068 4.354353 0.817713 -0.140260 0.317440 -4.071556 -0.139904 -2.807161 0.198687 0.487946 -4.145392 -0.206517 -4.797721 0.867741 -1.803277 -3.764300 1.365912 -2.327667 4.116267 -1.264144 -0.989238 -2.147466 -9.633810 1.536070 1.607769 2.350562 4.224289 1.472856 0.520369 -1.307111 -4.339589 -5.817055 5.221243 5.036791 1.381080 1.738796 -5.221320 -2.236784 -0.433795 -1.335850 1.386598 5.213498 -6.904948 2.032658 -1.610503 -3.294767 -5.509528 -6.999872 1.497295 -4.464430 3.001544 0.517396 -0.474527 0.764197 -0.548626 1.618215 -1.554456 -5.720152 1.336310 -2.137449 0.296185 9.030071 -3.149480 -3.297304 -2.601846 -1.122858 -1.757330 5.199632 1.792586 1.500288 6.711784 5.463572 3.849846 -5.741255 -2.234425 2.841432 3.556064 4.246404 3.287612 -6.198788 -3.313234 1.856663 -3.697337 -11.123157 -2.320224 3.619860 6.861808 -0.578594 -3.756466 0.710423 -3.167376 5.910154 4.343064 2.251022 1.845769 0.212586 -4.984247 3.066726 10.166076 -3.205847 5.092569 -3.313328 -3.179198 4.578309 -2.732960 3.889859 1.197915 -0.685417 -0.849583 -3.733553 0.064646 7.414888 1.879099 1.752960 0.603324 1.938653 -4.297640 -8.640758 -11.855336 -0.776341 5.621246 1.244098 9.702457 -5.812510 -5.270829 -1.258090 7.552060 -1.973352 -4.092910 3.666841 -5.276081 4.124414 -8.715849 -8.352514 11.233943 11.308073 3.614645 -1.648176 6.567345 2.705617 -7.268983 -5.450917 -3.646534 3.991816 1.698732 -6.930045 -1.685340 0.661612 -7.767310 -1.355495 -0.514307 2.312397 2.205661 0.414635 4.095888 -1.026196 -5.583034 -4.135011 4.363231 -3.629396 -1.601778 -0.219791 0.463701 -0.377370 4.060808 -3.657043 -2.785715 2.612389 -5.357906 0.050334 1.770952 4.017017 1.249085 10.147154 7.819370 -0.448873 8.681372 0.155267 -4.717851 11.641375 -3.762187 1.233376 -0.228682 2.970075 -0.960087 3.131817 4.301856 -3.041648 -5.266003 -7.328604 -0.486739 0.184966 4.430544 -3.904456 -6.679144 -9.040824 -1.448741 0.567256 7.893770 -0.440052 12.274647 -3.109294 2.992976 -13.816206 1.143092 3.703628 -1.226691 4.457264 2.789679 -5.932228 -7.104494 -0.715273 -6.101667 -4.776540 -0.317513 -5.611556 -4.895766 -5.500018 5.799774 -4.812679 1.043288 6.248827 -0.809045 5.475265 -1.474231 -1.066758 -3.135666 0.005876 6.528461 0.191666 -5.658541 5.705080 0.457243 17.433486 -1.309137 5.544829 -3.451122 1.356088 -1.084058 -6.011695 -3.356104 8.142843 7.413088 2.821635 -1.249706 0.241894 -2.242319 4.833349 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -2.331612 2.452592 9.306379 6.126808 -4.990338 -5.993884 -2.858056 -7.441990 3.815117 1.813807 6.416703 -0.805848 2.645918 0.708446 0.036309 -2.285521 3.407386 -0.407446 -1.263322 -2.855875 -2.709400 5.653481 3.070642 -6.192249 1.299129 -5.582768 3.940524 3.117467 1.427165 3.709880 0.932881 0.398239 -1.382322 3.630303 -4.268866 -0.628974 0.527410 1.807027 -2.829927 -1.720669 3.055798 1.820861 4.914925 0.242118 4.044775 2.869708 2.969912 -0.209936 -5.813811 -2.024719 -1.482874 5.329220 -2.463159 3.716092 1.504469 2.168688 1.775188 -5.151695 -0.306772 -6.226224 1.458733 1.009769 -2.894031 -0.333994 -4.194078 0.492457 -0.340922 -3.420216 2.438854 -2.911960 2.917461 -1.286260 -0.422168 -3.111056 -4.048841 2.115958 1.288499 1.612163 2.938411 1.611195 -0.825812 -0.365845 -3.204975 -4.126729 1.852837 0.791704 1.327331 1.627593 -1.455295 -2.148601 1.700727 -1.114876 -0.633966 4.751619 -3.940290 2.538932 -0.098963 -2.631468 -4.539629 -3.761358 0.425517 -4.005351 2.382334 3.986836 -3.435296 0.819059 -0.625657 1.687226 -0.501687 -5.138499 1.016023 -2.275099 0.696972 5.052421 -3.316811 -2.836348 -0.709367 -0.945149 0.145494 4.913931 0.181333 1.218541 5.056673 3.738640 2.444723 -4.406145 0.013797 0.971444 2.871534 2.765050 3.310841 -5.046208 -2.517188 1.070167 -2.471505 -7.962152 -1.199556 2.594173 5.574579 1.170127 -6.625475 2.608096 -2.608703 4.522426 2.858231 4.055653 1.372586 -0.294983 -3.680521 1.305551 7.526355 -2.898528 3.962271 -1.595321 -5.320061 5.018464 -1.245501 3.594448 0.977614 -0.120156 0.713014 -4.151047 0.558066 6.371828 1.741757 1.042478 2.129781 0.599986 -2.075951 -7.800510 -8.978833 0.019932 3.431346 1.747296 9.360003 -5.223098 -3.432406 -1.512954 6.383349 -2.358019 -2.942433 1.025319 -2.090456 2.612986 -9.028681 -7.405509 8.207524 7.433159 1.467543 -0.733357 5.534040 0.042036 -2.363565 -3.874322 -4.151824 3.342080 1.606611 0.371464 0.338209 0.111085 -5.925286 -0.634720 0.189628 1.701975 3.184407 -3.851153 -0.716100 -1.205912 -5.356598 -3.577028 1.820231 -4.160879 -1.534610 0.126232 0.384208 0.017092 2.452756 -1.334621 -3.986494 0.242292 -3.929543 -1.388552 1.157466 4.121504 1.141893 8.278258 6.043785 -1.015791 4.415463 0.915097 -3.315856 12.853909 -4.387198 -0.086571 -0.555067 4.736372 0.247517 1.983586 3.856755 -2.029996 -3.193996 -5.444853 1.256706 -0.335163 2.528831 -9.018663 -4.446957 -7.464042 -1.208716 0.314154 6.054579 -0.421341 10.531942 -1.231613 1.120858 -11.440842 0.380021 4.463963 -0.884911 3.052842 2.991658 -5.129342 -8.466494 -0.559094 -4.111586 0.990116 -0.494479 -4.206581 -3.472731 -2.434386 3.081631 -2.611575 1.952957 6.628844 -1.143773 2.975624 1.014303 -1.233978 -1.106601 -2.320540 3.492561 0.769422 -3.999771 6.368074 0.122752 12.472030 -0.779716 4.594198 -3.369152 1.375679 -0.841258 -3.642535 -2.942254 5.971722 5.125513 2.108877 0.299390 0.945764 -3.011567 3.831939 -PE-benchmarks/channel-assignment.cpp__main = -0.024339 1.274900 3.320049 1.787872 -2.390671 -3.588533 -1.056048 -4.239192 1.253996 0.584897 2.975402 -0.598324 1.419622 0.392895 0.285568 0.413774 1.837387 0.032475 0.151222 -1.451829 -2.231118 2.785719 0.499921 -0.607140 0.762265 -1.742879 1.668129 1.399623 1.169457 1.560829 0.740015 -0.192225 -0.756827 1.025847 -0.927851 0.217587 -0.331798 0.866956 -1.830539 0.335132 0.425412 -1.283516 2.519932 -0.004124 1.314353 0.916380 1.959612 0.486877 -2.119227 -0.874466 -1.621321 2.451634 -1.190183 1.268042 -0.198226 -0.569172 0.849038 -0.898782 -0.262916 -0.738921 -0.389674 -1.019804 -1.759289 0.098079 -2.052172 0.418386 -1.721131 -1.794090 0.658410 -0.329884 1.383664 -0.093213 -0.478900 -0.180650 -3.104765 0.445887 0.791095 0.934034 1.102111 0.386606 0.520589 0.018754 -2.195919 -1.894362 1.838865 0.629511 1.127765 -0.000895 -2.014937 -0.558773 0.159323 0.091816 0.662705 1.423676 -1.709517 1.127338 -1.013454 -1.262096 -2.514752 -3.639083 0.354262 -1.417554 1.185262 0.349013 -0.972544 0.057948 -0.764561 0.588589 -0.478720 -2.989915 -0.002415 -1.103490 -0.134721 2.870817 -1.277132 -1.122208 -0.909645 -0.415251 -0.189907 1.395841 1.060098 0.511172 2.213766 1.711615 1.160392 -1.800050 -0.878132 0.049955 1.055779 1.204867 1.381576 -1.213192 -1.582739 0.579901 -1.529287 -3.915858 -0.890242 1.592086 2.299399 -0.000943 -1.190533 0.603016 -1.442561 1.559194 1.621240 1.405711 0.801641 -0.081725 -1.487071 0.967813 2.907414 -1.385966 2.048455 -1.045571 -1.568309 2.327670 -0.390287 0.841993 0.616214 -0.201355 -0.453013 -1.288341 -0.276203 2.421096 0.885356 0.198930 0.991543 0.588886 -1.497473 -2.834445 -3.566132 0.514966 2.590873 0.674680 2.896719 -2.341227 -1.124433 0.241929 2.099847 -0.528137 -1.767761 0.758047 -1.257493 1.147352 -4.021806 -3.085479 3.507542 2.586085 0.844331 -0.236459 1.445608 1.097396 -2.555748 -1.945667 -2.091364 1.733252 0.117614 -2.454932 -1.074710 0.270764 -2.697837 0.334981 -0.125038 1.087164 1.263501 -0.822446 0.964274 -1.122963 -2.120786 -1.337976 1.638132 -1.663966 -0.661755 0.267639 -0.376698 0.237591 1.040117 -0.415308 -0.643473 0.016897 -2.075100 -0.215922 0.411136 1.595089 0.208920 4.454871 3.056340 -0.493241 1.783990 -0.114144 -1.832586 4.044057 -1.632504 0.484234 -0.417268 1.893437 -0.346867 0.907112 2.533488 -0.825346 -2.617061 -2.308641 -0.361549 0.422453 1.196633 -1.467623 -1.737451 -3.959292 -0.260186 0.254421 3.616324 -0.158809 3.833932 -0.929417 0.984061 -4.046395 0.360236 0.720695 -0.376515 1.934223 0.671036 -1.930001 -1.203120 -0.474094 -2.386208 -0.546580 0.007429 -1.421442 -1.715981 -1.027204 0.649113 -1.200432 0.079744 1.427805 -0.783084 1.756878 0.572857 -0.656004 -0.833290 0.091681 3.197800 0.154310 -1.724945 2.689627 0.486402 6.054640 0.559771 1.470255 -1.029351 -0.273593 0.142432 -1.722948 -1.208669 2.625769 2.701842 0.805354 -0.102227 0.451696 -0.089675 1.385497 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -2.900193 1.974055 10.292294 7.841541 -4.977933 -6.131103 -2.908364 -6.071552 4.135087 1.749794 6.475716 0.215679 2.481496 1.349774 0.169138 -3.149809 2.764604 -0.236911 -1.766748 -2.700136 -1.936946 6.641100 5.560907 -8.997383 0.898571 -5.991264 4.455064 3.261777 1.892321 5.307302 0.037147 0.501001 -0.691267 4.218731 -5.636189 -1.504314 -1.111954 2.285735 -2.469363 -2.144228 4.265332 2.840980 4.923439 0.619546 4.264666 3.240697 4.103474 -1.003820 -6.039167 -2.089042 -2.334911 5.526788 -3.543197 4.368841 0.085474 3.956115 1.418141 -5.345441 -0.866427 -9.553241 2.348634 2.650453 -3.712320 -0.865982 -5.209748 0.728902 -0.246463 -4.023629 2.271514 -2.954343 3.834065 -0.883565 -0.118109 -5.126672 -4.703522 2.169779 0.089571 2.135814 2.915618 1.561250 -2.800910 -0.230430 -2.909242 -4.019302 1.090482 -0.535155 0.575473 1.672841 0.297749 -2.699591 1.484143 -0.411968 -2.095384 5.399246 -4.182122 4.452822 0.424600 -1.879028 -3.434984 -1.841190 -0.053288 -5.028545 2.265282 4.970840 -3.005246 1.238504 -0.448980 1.922923 -0.546990 -6.104428 0.875333 -1.371326 -0.580187 4.209838 -3.614773 -2.218036 1.078682 -0.236725 0.442013 5.887450 -0.344808 1.967208 5.205896 3.965724 2.087715 -4.856449 1.372377 1.084664 3.389397 3.509641 3.844651 -4.571907 -3.062867 0.452873 -1.360027 -8.658049 0.245128 4.384494 5.747177 1.501293 -8.566033 3.299388 -2.835854 5.455709 3.922437 5.092861 2.077305 -0.534424 -4.053906 1.513135 9.985142 -3.234483 4.280012 -1.585804 -6.452230 7.697291 -2.395694 4.916299 0.377482 0.556271 1.968589 -5.229175 0.240986 7.401320 2.156866 1.677394 3.833915 -0.052524 -0.873199 -9.148691 -8.747333 -1.580139 3.310458 2.645963 10.927766 -5.130985 -2.858237 -1.817489 5.574853 -2.493536 -2.613148 0.070511 -1.574438 2.552831 -12.610244 -8.207386 8.825229 8.145879 1.191027 -0.096011 6.506528 0.565420 0.538548 -4.099333 -4.178777 3.676204 1.852186 3.338140 1.189690 -0.334298 -6.683556 -1.100679 0.777767 1.301474 3.122702 -5.326189 -2.763981 -0.638056 -6.593338 -4.260624 0.852625 -5.947101 -2.178984 -0.023231 0.621677 -0.400576 1.227616 -0.904459 -3.981161 0.577658 -3.866898 -1.633836 1.041381 4.237952 1.723116 7.432515 6.744124 -1.055160 3.738544 1.917446 -3.572947 15.858479 -5.178715 -0.820202 -0.315209 6.018127 0.230622 2.335213 2.953820 -1.985936 -2.255966 -5.769985 3.153079 0.168490 2.784144 -11.066968 -4.657998 -6.532553 -1.344067 1.124917 6.494934 -0.904210 12.031786 -1.520609 1.638387 -13.254203 0.464009 5.445814 -0.569559 3.428376 4.070856 -5.302159 -10.223993 -0.988231 -2.641179 4.032151 -1.028019 -5.394765 -3.591380 -1.745482 1.618783 -3.613020 2.962777 7.321243 -2.267980 3.612479 0.509101 -1.425806 -0.844442 -2.982277 2.640488 2.308748 -4.595104 6.855757 -0.811439 12.824649 -1.601563 5.873860 -4.317751 2.263581 -1.773368 -3.164548 -2.895460 7.173841 5.208206 2.160861 1.257134 0.703336 -3.221949 3.410689 -PE-benchmarks/longest-palindrome-substring.cpp__main = 0.522952 3.854086 10.111264 4.392608 -5.834943 -6.145154 -2.501079 -9.802189 4.054885 3.134350 5.489061 -1.405126 2.319522 0.853690 -1.414343 1.193754 3.213896 -0.079366 -1.173191 -3.871374 -6.024039 4.830155 1.588547 -2.933457 2.944064 -7.884053 6.180797 0.530923 2.961590 3.653904 2.884678 0.425323 -0.786000 4.455771 -1.099348 1.766691 -0.323923 2.502774 -3.339591 1.511020 2.686191 0.100954 4.047527 2.741221 4.450736 4.816865 2.959661 -0.124670 -5.383626 -0.938679 -2.927138 5.500566 -3.584147 3.721380 -1.139408 1.943276 0.090555 -5.075642 0.165363 -2.666950 -0.713382 -0.907907 -3.989676 0.371143 -6.024073 0.509322 -3.219828 -4.141955 -0.065512 -0.009892 3.901151 0.443241 -0.990821 -1.638457 -5.730452 2.058305 1.547082 1.905635 4.680759 -0.563987 -0.656970 -0.470665 -4.626377 -5.759752 4.823602 1.386376 1.784538 0.355883 0.180620 -3.727671 -1.153406 -0.964212 0.990771 6.220426 -5.468412 2.034160 -2.970363 -2.870358 -4.882213 -6.919231 0.002546 -4.772230 3.120692 2.195837 -3.986981 2.161389 0.891943 2.020051 1.148122 -4.074359 0.124642 -2.233489 1.461193 6.948789 -1.350136 -4.556599 -0.958227 -1.239908 -0.114143 4.200654 1.703898 0.301061 9.037185 3.445187 4.439965 -3.687553 -0.358616 0.868061 0.430735 2.958509 4.528894 -5.517184 -3.921113 0.755341 -0.891330 -9.154960 -0.253355 1.202705 4.489657 -1.407086 -4.452038 1.610956 -2.430007 2.637781 3.136190 2.645617 2.738782 -0.964740 -3.055683 1.406197 9.715598 -3.037110 2.846085 -4.212156 -3.750092 5.417623 -1.209465 2.741540 0.058270 -0.516761 0.358491 -4.883065 -0.080741 7.088624 0.076774 -0.930363 3.839362 1.540211 -3.017488 -6.957207 -7.230962 -0.201451 3.925888 0.409408 8.822005 -5.781067 -0.855635 -2.146528 6.177600 0.138757 -1.159156 1.245580 -2.529147 2.167041 -7.603420 -7.867684 8.764572 7.490599 1.797892 -2.395265 3.856391 1.628633 -5.003984 -5.659512 -4.900931 2.380296 1.844428 -2.447876 -2.955447 1.103028 -6.593512 -0.459660 0.264572 2.074593 5.408361 -2.490447 -0.422156 -1.037420 -4.951773 -5.234692 3.168256 -4.029303 -1.990322 0.469279 1.265695 -0.117671 2.798846 -1.502525 -3.209054 0.277937 -3.055149 -0.938687 2.722306 5.395565 0.077917 8.753503 6.613034 -1.323643 3.072933 1.027785 -3.421062 10.874304 -2.540595 0.198418 0.332422 3.450069 -1.374756 2.146627 4.490167 -2.518331 -4.996808 -5.353102 1.101093 -1.033330 0.782170 -4.355229 -2.489215 -7.601293 -1.225527 -0.550239 6.729472 1.059255 10.282743 -0.292854 1.553718 -9.280071 0.495426 4.886872 -1.146140 4.736985 3.961256 -5.577514 -4.308072 -1.881486 -4.489118 -0.473897 -0.605903 -2.029988 -4.708762 -0.859054 2.204685 -1.789838 2.100146 6.184014 -0.080881 3.338073 -0.669936 -0.201621 -2.402474 -0.676528 6.870835 1.267907 -4.414225 5.459778 0.208161 13.106177 0.121072 4.017610 -3.173970 -2.242359 0.202800 -3.351152 -3.919077 6.296360 4.233604 3.486089 0.932888 -0.221532 -1.136525 5.388842 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.154237 0.836475 2.524005 2.101343 -1.542069 -1.711378 -0.645145 -1.675028 0.975094 0.175199 1.128310 -0.158623 0.491269 0.209407 -0.248101 -0.676137 0.669752 0.467747 -0.419600 -0.672226 -0.992920 1.581538 0.797033 -2.196153 0.383399 -1.568824 1.446817 1.016703 0.748058 1.309057 0.033500 0.036762 -0.337287 1.067031 -1.352328 -0.694356 -0.288302 0.406095 -1.065260 -0.287515 0.875595 0.455979 1.361149 0.021063 0.678196 0.898496 0.766423 0.054099 -1.429211 -0.256405 -0.658072 1.314852 -0.482643 1.206590 0.056260 0.686391 0.458333 -1.261337 -0.015492 -1.670488 0.453245 0.390882 -0.711487 -0.190531 -1.487448 -0.075776 -0.228962 -1.381596 0.776406 -0.577391 0.730131 -0.171570 -0.062169 -1.429607 -1.332987 0.538589 0.339541 0.788720 0.809834 0.551335 -0.024115 0.042631 -0.945808 -0.960157 0.149243 0.001548 0.350287 0.394392 -0.062730 -1.209504 0.607178 -0.143240 -0.149191 1.169726 -0.841594 0.995841 -0.870663 -0.354684 -1.011596 -1.182093 -0.020152 -0.930868 0.703311 0.790783 -0.889254 0.466994 0.634133 0.539996 0.355115 -1.426797 0.086603 -0.584522 0.178642 1.586037 -0.403331 -0.964485 0.106351 -0.259958 -0.355359 1.363494 -0.122360 0.200385 1.293411 0.963012 0.679478 -1.132874 0.060144 0.271896 0.358181 0.921109 1.081870 -1.201532 -0.640984 0.025384 -0.297984 -2.293908 0.137563 0.518048 1.289349 0.149783 -1.688001 0.643427 -0.891169 1.112732 0.477403 1.087327 0.619515 -0.213317 -0.831040 0.475672 2.437179 -0.690243 0.812227 -0.765486 -1.754316 1.600712 0.003330 1.158750 -0.190799 -0.150653 0.571876 -1.097962 0.330700 1.768445 0.077252 -0.028031 1.217445 -0.029677 -0.755798 -2.295720 -2.026542 0.132542 0.897407 0.460758 2.866023 -1.372661 -0.761685 -0.527604 1.573478 -0.585511 -0.271474 0.246337 -0.569879 0.739407 -2.724000 -2.185524 2.050599 1.706052 0.046888 -0.251022 1.400506 -0.024585 -0.091606 -1.289956 -1.129193 0.539593 0.651944 0.304718 -0.053021 -0.018704 -1.530099 0.094039 0.545264 0.371408 1.220471 -1.236000 -0.698027 -0.704998 -1.781905 -1.562065 0.690805 -1.587777 0.008750 0.361932 0.123338 -0.233486 0.725031 -0.175699 -1.250182 -0.054595 -0.612175 -0.184307 0.052064 1.039559 -0.002200 1.815408 1.645130 -0.157645 1.162740 0.678728 -0.946483 4.356045 -1.321636 0.030662 0.055693 1.428794 -0.182004 0.658942 0.923536 -0.591066 -0.550323 -1.574524 0.370693 -0.108881 0.409498 -2.810692 -0.859522 -1.788844 -0.538057 -0.020164 1.351434 -0.002485 2.792696 -0.397143 0.209837 -3.121223 0.048898 1.397051 -0.106999 1.212162 0.943369 -1.461486 -2.311450 -0.191715 -0.847121 0.937615 -0.409802 -1.404973 -0.915849 -0.134072 0.247691 -0.479642 0.852968 2.227164 -0.685279 0.696139 -0.425883 -0.193585 -0.186696 -0.910026 0.821980 0.301592 -1.067913 1.622487 -0.087430 3.158798 0.053045 1.248246 -0.981001 0.138585 -0.112768 -1.093053 -0.864782 1.630972 0.807392 0.687207 0.285231 0.354984 -0.804035 1.002560 -PE-benchmarks/egg-dropping-puzzle.cpp__main = -0.466155 1.476962 5.323432 3.940427 -2.192005 -3.143922 -1.248459 -2.465753 1.475671 0.535973 2.463729 -0.470477 0.948493 1.027758 -0.193272 -1.243679 1.149691 0.575858 -0.196740 -1.091745 -1.600490 3.381192 2.776134 -4.182406 0.346175 -3.544586 2.662696 1.679745 1.783446 2.859263 -0.093243 0.349678 0.135444 2.015363 -2.984692 -1.444367 -1.338242 1.010001 -1.620976 -0.034508 1.543077 1.627470 1.960557 0.267314 1.136869 2.179357 2.188791 -0.321852 -2.572453 -0.597557 -1.623417 2.859802 -1.320343 1.728760 -0.244859 1.855235 0.588520 -2.373968 -0.476834 -3.966933 1.067918 1.581549 -1.966838 0.016686 -3.428586 0.363163 -1.411517 -2.202926 1.291313 -0.174501 1.647414 0.147911 0.203795 -3.000352 -2.597546 1.589863 -0.080272 1.465742 1.210894 0.265509 -1.107423 0.897007 -1.569420 -1.983201 0.273631 -0.246928 0.336230 0.079233 0.820649 -2.336597 0.385562 -0.022257 -1.251827 2.474297 -1.654893 2.861047 -1.257050 -0.483159 -1.627775 -1.623840 -0.678571 -2.546639 1.054760 2.279313 -1.100607 0.728747 0.091108 0.948987 0.535285 -3.249286 -0.085986 -0.681206 -0.256348 2.702757 -1.466535 -0.898982 0.352541 0.112649 -0.260512 3.009766 -0.431437 1.009326 2.537226 1.782552 0.439440 -1.823607 0.988026 0.379412 0.778895 1.658536 2.455106 -2.286756 -1.814303 -0.601758 0.288537 -4.281101 0.760584 1.893102 1.678269 0.299588 -3.582433 1.472927 -1.421044 2.669680 1.752281 2.273044 1.287207 -0.742723 -1.170240 1.210647 5.356175 -1.801994 1.718239 -1.391756 -4.002096 4.364134 -0.963878 2.585090 -0.278460 0.417243 1.214716 -2.581374 0.282060 3.639373 0.640923 0.376017 3.455655 -0.579810 0.362509 -4.155499 -3.250473 0.144749 0.984117 0.608861 5.680782 -2.161291 -0.923663 -0.802695 2.330345 -0.548939 -0.533146 -0.335647 -0.535021 0.731956 -6.545819 -4.417190 3.486328 3.260460 -0.249970 -0.437417 2.885987 0.858227 0.442196 -2.446834 -2.284188 1.752252 0.331126 1.582226 0.130739 0.151262 -3.249441 0.288142 0.610647 0.579676 2.633340 -2.786274 -2.432609 -1.273457 -4.279782 -2.698872 0.858844 -3.260318 -0.750337 0.178714 0.179268 -0.431821 0.612872 -0.457701 -1.878317 0.283048 -1.594128 -0.910071 0.321869 2.164516 0.418777 3.677972 3.112517 0.267589 1.347369 1.542738 -1.655916 8.606414 -2.115538 -0.561260 -0.133275 2.793739 -0.783823 1.212827 1.044593 -0.689330 -1.860391 -2.824432 2.052685 -0.138448 0.478876 -5.055033 -1.671983 -2.995728 -1.108389 0.786414 3.345256 0.191642 5.741568 -0.613600 0.390653 -5.713135 0.237845 2.233493 -0.225974 2.700868 2.227220 -2.764198 -3.887926 -0.770194 -0.814816 2.961598 -0.754275 -3.447773 -1.891229 0.069841 -0.001908 -1.206080 1.760770 3.940253 -1.135942 1.452352 0.532840 -0.760038 -0.519962 -1.450323 1.597487 1.213076 -2.157481 3.280187 -0.865128 5.879832 -0.686765 2.599760 -2.288477 -0.034091 -0.124198 -1.207825 -1.245013 3.453114 1.905086 1.119839 0.850140 0.372795 -1.279579 1.473897 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -2.770692 4.717784 20.029288 14.388455 -8.408711 -10.299175 -4.154369 -7.687577 4.120485 2.380580 9.244733 -2.197333 2.216581 4.685670 -0.087401 -5.653616 2.837922 1.786610 -1.035701 -3.481672 -5.308844 8.396883 10.733312 -15.857681 0.878314 -11.930840 9.892081 6.434730 4.796058 8.708882 0.005869 1.146547 -0.224079 7.267457 -10.714946 -4.912656 -4.346884 3.310553 -4.006136 -0.533262 6.027468 6.833663 5.150634 0.291482 4.942613 7.938664 8.434685 -1.701945 -10.449594 -2.006757 -5.018235 10.869964 -5.125751 5.283810 1.209561 8.177311 0.797578 -10.474148 -1.967467 -16.181251 5.291512 6.140648 -7.353350 0.525114 -11.926874 1.140541 -4.397645 -7.086314 5.823058 -0.923724 5.225639 -0.871367 0.497559 -10.271390 -6.279108 5.668028 -0.811188 4.468811 3.974228 -0.125703 -4.280864 3.665096 -4.108698 -6.095384 -0.906063 -1.906900 0.598302 -0.954205 4.320597 -6.831158 1.991921 -0.739423 -6.012887 9.358410 -6.948357 10.147735 -4.053020 -1.757233 -6.568170 -3.916473 -2.156719 -9.640510 4.220038 10.044758 -5.727834 2.399574 -0.777190 3.312453 1.963162 -11.665473 -1.685927 -2.768887 1.873248 8.015236 -6.798185 -2.614622 1.653321 0.370294 0.236160 10.238591 -1.885804 3.550926 9.384076 6.043552 1.318742 -6.499078 3.726185 1.211413 2.675493 6.587089 8.088108 -9.141203 -5.444196 -2.881038 1.519479 -14.583705 4.058342 5.526087 4.953866 2.934217 -14.178021 3.989237 -4.490199 9.908173 5.628931 10.159733 3.646801 -2.123739 -3.271325 2.776169 18.192580 -6.273740 5.806211 -3.219413 -14.523454 14.075344 -3.448452 9.487874 0.861505 2.597487 5.422261 -10.082669 -0.872494 12.731967 3.332406 1.959851 13.124145 -2.084794 2.447879 -14.932025 -10.439239 1.110936 2.193823 1.362724 19.495463 -8.071856 -3.479649 -3.076592 9.474410 -2.020423 -2.103293 -2.351302 -0.632114 2.192546 -21.064061 -15.294641 9.628792 11.051577 -1.857676 -2.145796 11.273384 1.924512 0.884232 -7.425100 -8.580437 6.286194 0.116106 9.015221 2.366277 0.205956 -11.792844 1.624127 2.039461 2.076023 9.521336 -10.901036 -10.751188 -2.125895 -15.109825 -8.957741 1.938602 -10.985962 -3.110712 -0.596378 1.316237 -0.513127 1.272339 -2.834685 -7.536152 1.136475 -6.185253 -3.548940 2.473771 7.711769 2.086584 14.734487 8.468048 1.635062 4.265253 5.194057 -4.904686 30.976949 -6.246297 -2.600899 -0.171676 9.876101 -3.030055 3.586551 2.964654 -2.603202 -7.127772 -9.284693 7.107877 -2.022619 2.208568 -18.353534 -5.411205 -10.340017 -4.304243 3.682262 10.528869 0.887338 20.259944 -0.087065 1.126403 -19.374627 0.090853 8.452520 -1.776954 9.068289 8.021598 -10.034291 -14.803637 -2.491700 -1.295172 11.902060 -1.893414 -11.035949 -6.700387 0.380802 0.270478 -2.721065 6.250605 13.365518 -3.309053 3.838017 3.938619 -2.538361 0.572280 -5.888935 4.894259 5.023871 -8.691353 13.138553 -3.221653 21.477548 -2.893309 8.902161 -8.090206 -0.688480 -0.228820 -1.653950 -4.000492 11.401039 7.013198 5.149088 1.666693 1.754760 -6.613201 4.696178 -PE-benchmarks/palindrome-partitioning.cpp__main = -0.777768 1.614034 6.994940 3.979031 -2.325594 -3.344121 -1.751669 -4.088072 1.963893 1.217461 3.920466 -0.876006 1.161109 1.852666 0.037731 -1.331220 1.183194 -0.180607 0.102233 -1.293215 -1.339527 3.493480 3.132789 -4.056776 0.161109 -4.507776 2.689279 1.784065 1.993110 3.003843 0.197529 0.065084 -0.004359 2.359712 -3.281119 -1.092110 -0.594697 1.387947 -1.766314 -0.192233 1.398831 1.898479 2.108113 0.193379 2.287581 2.125099 2.550893 -0.570917 -3.073272 -0.678396 -1.879227 4.114566 -2.061688 1.727137 0.412675 2.062426 -0.042919 -3.291897 -1.006014 -4.743805 1.125739 1.897448 -2.348353 0.204918 -3.621389 0.761026 -1.592887 -2.235341 1.561839 -0.352768 2.282377 0.128027 0.675487 -2.361570 -3.177417 2.083266 -0.251327 1.376714 1.354110 -0.368950 -1.151075 1.196923 -1.431333 -2.495953 0.734728 0.556666 0.176647 -0.373181 0.823368 -1.562926 0.156194 -0.283410 -1.705303 3.475975 -2.373611 3.511811 -1.281958 -0.934542 -2.126486 -2.099415 -0.690689 -3.628628 1.574282 2.832596 -1.436275 0.821889 -0.446713 1.437073 0.161434 -4.138343 0.059042 -0.611098 0.105889 3.147178 -2.590133 -0.888791 0.330385 0.057949 0.019301 3.192828 -0.282348 1.554564 3.004337 2.382373 0.877109 -2.584145 0.752491 0.775525 1.432581 2.286261 2.633605 -3.135815 -1.968714 -0.637473 0.152434 -5.512261 0.744786 2.115873 2.090117 0.381229 -4.328175 0.924012 -1.656843 3.568460 2.602150 3.297038 1.320528 -0.477803 -1.605408 1.174792 6.093839 -2.261603 2.649849 -1.302485 -4.006105 4.113182 -1.777216 3.454907 0.097510 1.130192 1.660870 -3.714294 -0.557005 4.452238 1.477128 1.154794 3.311400 -0.409249 0.231067 -5.113987 -4.195894 -0.252681 1.513760 0.178710 5.910859 -2.682715 -1.992856 -0.686406 3.489910 -0.456262 -1.204331 -0.163307 -0.698023 1.059042 -7.232123 -5.272769 3.957592 4.587794 0.218197 -0.775063 3.609136 1.142983 -0.718049 -2.852825 -2.596059 2.499234 -0.149002 1.111244 -0.072680 -0.084625 -3.779250 0.189537 0.266307 0.828006 2.616121 -2.761437 -2.212563 0.095046 -4.629068 -2.522380 1.282941 -3.721648 -1.818219 -0.319318 0.525181 -0.125537 0.602415 -1.298476 -1.951031 1.221210 -2.511184 -0.930590 1.285051 2.438891 0.480914 5.007835 3.424908 0.522601 1.945998 1.333009 -1.904521 9.253129 -2.454695 -0.841401 -0.178298 2.643949 -1.302942 1.376860 1.282140 -1.052661 -3.096302 -3.258916 2.046355 -0.675744 1.402798 -4.380907 -2.934214 -3.244045 -1.099169 1.482831 4.026399 0.402687 7.095299 -0.284372 1.083753 -6.700864 0.163170 2.755602 -0.516445 3.218785 2.595626 -3.357373 -4.873907 -0.876036 -1.170182 2.468701 -0.630597 -4.077091 -2.367523 -1.075703 0.832026 -1.400122 1.734457 3.782762 -0.970393 2.072742 1.152267 -1.160481 -0.598809 -1.180396 2.418642 1.407856 -3.120885 4.289455 -0.989033 8.253990 -1.253896 3.002620 -2.776952 -0.032749 -0.311247 -0.588680 -1.233710 4.509424 2.982051 1.848121 -0.130452 -0.004748 -2.083338 1.468846 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -4.803805 6.047929 29.886985 21.069976 -10.224040 -12.943950 -7.097272 -12.113109 7.425292 4.288087 15.194133 -3.000696 3.183315 8.701311 0.032054 -8.861029 3.852856 0.576406 -1.493872 -4.863231 -5.370395 12.673230 16.545127 -23.359710 0.150395 -17.434746 12.297024 8.493598 6.563736 12.962677 -0.046504 1.153427 1.060051 10.764952 -16.415798 -6.830531 -4.783439 5.491782 -5.738221 -2.558507 8.794208 10.819891 8.363501 1.297451 8.589027 9.987313 11.829708 -3.835856 -14.735754 -2.063195 -8.223215 17.130651 -8.856214 7.577235 1.712968 12.750302 0.833776 -16.289483 -4.382891 -25.066452 6.968779 11.175299 -10.418986 -0.102904 -15.892079 2.568876 -4.931281 -9.888464 7.980497 -1.655404 9.255675 -0.370252 2.468175 -14.036030 -9.940456 9.135097 -2.308410 6.043365 5.527564 -1.002252 -6.832313 5.470022 -4.556190 -8.919768 0.154725 -2.244266 -0.146407 -0.946178 7.610447 -8.277341 1.835829 -1.072863 -10.017524 14.844267 -9.125564 16.842070 -3.724739 -3.225339 -8.117067 -3.727096 -3.587967 -15.752611 6.152494 15.128672 -7.651074 4.566200 -1.486896 5.900786 1.500901 -17.354070 -0.814261 -2.340597 0.577285 10.459322 -11.407625 -3.756780 4.191714 1.117299 0.833623 14.611239 -2.968310 6.726688 12.286059 9.321274 2.272695 -10.532262 6.178257 2.046166 5.586480 10.253339 11.665536 -12.659020 -7.988738 -4.179845 2.929034 -22.144244 5.917850 9.274539 7.992968 4.216960 -22.437699 5.066628 -6.494440 15.470820 9.928260 16.405303 5.775867 -2.534180 -6.028219 3.898821 26.292280 -9.611295 10.494415 -4.286172 -19.742195 19.028325 -7.278319 15.511651 0.006678 4.906471 9.848577 -16.595055 -2.366770 19.260147 6.133391 3.980124 17.237731 -3.135569 3.454920 -22.543341 -16.216756 -0.958339 3.617669 1.828818 27.317342 -10.956276 -7.474320 -4.198248 13.538078 -3.268140 -3.661675 -2.875563 -0.931656 3.718684 -32.897645 -22.501747 15.243725 17.192236 -1.237739 -3.005747 16.503664 2.820048 2.501119 -11.374749 -11.228787 10.063354 0.749781 13.282486 3.284509 -1.215949 -15.739973 1.045978 2.466581 2.646806 11.489098 -16.448304 -14.391196 -0.012792 -21.187168 -11.273486 2.736696 -17.569431 -7.336004 -1.468087 2.394451 -0.817542 1.078930 -4.031136 -10.390129 3.386262 -9.572250 -5.570793 4.429775 11.360013 2.911455 19.474507 13.766806 2.539325 7.232630 7.590398 -7.566166 43.935541 -11.177170 -4.929363 -0.437816 13.382744 -4.743383 5.365093 3.931788 -3.975208 -10.494411 -13.158877 11.547661 -3.177160 5.251840 -24.760062 -10.048413 -12.334922 -5.699584 6.816366 15.426810 0.849659 30.458904 -0.281065 3.091920 -28.774248 0.038457 13.680519 -1.894012 13.098953 12.437108 -14.977681 -23.746320 -3.707148 -2.084161 17.402254 -2.760210 -17.244534 -9.918983 -2.158107 1.256806 -5.719056 9.448876 18.378278 -5.773684 6.846342 5.174262 -4.812781 0.460349 -8.015148 7.104377 7.983754 -13.370382 19.316702 -5.755554 32.878745 -5.547725 13.779233 -13.187160 0.420669 -1.886603 -0.437847 -5.317574 18.504188 11.243495 7.688100 1.287605 1.005762 -10.544462 5.981569 -PE-benchmarks/dfa-based-division.cpp__main = 0.061939 1.236465 3.064488 2.293212 -1.760329 -2.072582 -0.860501 -2.272428 1.154473 0.185507 1.487514 -0.237579 0.724128 0.257362 -0.360850 -0.517782 1.166441 0.455122 -0.285806 -0.990995 -1.212319 2.440486 0.949445 -2.297277 0.505819 -2.024409 1.607680 1.057822 1.300355 1.585176 0.050507 0.104196 -0.167292 1.301554 -1.581635 -0.958666 -0.484128 0.724725 -1.674053 0.027633 0.895109 0.627171 1.792449 0.021942 0.592770 1.245085 1.056902 0.120381 -1.639235 -0.328793 -0.775586 1.566372 -0.616760 1.469895 -0.208045 0.502800 0.524082 -1.152198 -0.105631 -1.393665 0.252260 0.527171 -0.840899 -0.141435 -1.992525 0.064615 -0.544014 -1.740344 0.775701 -0.332172 0.990462 0.136628 -0.040931 -1.628728 -1.984093 0.902253 0.573855 1.167247 0.917062 0.555289 0.121389 0.113369 -1.323656 -1.406400 0.455267 0.289578 0.621612 0.364929 -0.074727 -1.580038 0.654145 0.009385 -0.141920 1.425351 -0.920340 1.320959 -1.362127 -0.552187 -1.280155 -1.790995 -0.271951 -1.242281 0.889569 0.793402 -0.956532 0.664300 0.652408 0.674255 0.488261 -1.816155 0.025906 -0.513581 -0.176154 2.366450 -0.355315 -1.183246 -0.093264 -0.171952 -0.587282 1.611019 -0.087494 0.408988 1.751376 1.284667 0.702918 -1.415081 0.133650 0.097172 0.365537 1.054894 1.722761 -1.271388 -1.202716 -0.048264 -0.340171 -2.896235 -0.004620 0.806304 1.639470 -0.400414 -1.677477 0.914695 -1.226936 1.561821 0.871541 0.945424 0.931141 -0.481480 -1.020803 0.946238 2.995166 -0.974014 1.065418 -1.201475 -2.080841 2.252922 -0.011208 1.302891 -0.402585 -0.226734 0.303550 -1.398678 0.553542 2.235600 0.073169 -0.005138 1.488155 -0.164904 -0.574113 -2.595094 -2.450503 0.151731 1.008886 0.552141 3.437433 -1.538909 -0.848141 -0.473638 1.458827 -0.502146 -0.425661 0.359158 -0.840292 0.826036 -3.469352 -2.752828 2.733525 2.350255 0.079479 -0.220305 1.573895 0.178429 -0.355534 -1.867644 -1.347899 0.973429 0.667163 -0.243328 -0.525635 0.316612 -1.865552 0.094073 0.581844 0.556717 1.638042 -1.254567 -0.623563 -1.069640 -2.350140 -1.887071 0.998971 -1.765156 -0.086864 0.584645 -0.011786 -0.270668 0.947307 -0.215664 -1.393203 -0.169328 -0.882062 -0.335205 -0.121490 1.481763 -0.068768 2.005696 2.275646 -0.134822 1.416972 0.904114 -1.389680 4.879996 -1.598289 0.071722 -0.076910 1.643414 -0.493760 0.925777 1.220917 -0.608805 -0.939342 -2.030999 0.648792 0.033520 0.350106 -3.070702 -1.114092 -2.107592 -0.491620 0.040036 2.024227 0.075859 3.467003 -0.759934 0.300745 -3.742124 0.191569 1.274262 0.043332 1.743834 1.243043 -1.768791 -2.402569 -0.350453 -1.302557 0.785218 -0.532952 -1.928950 -1.296335 -0.024329 0.324897 -0.728163 0.865463 2.633500 -0.801686 1.151962 -0.388819 -0.442585 -0.562151 -0.967147 1.399325 0.381221 -1.171569 1.702423 -0.136675 3.948082 0.056395 1.542572 -1.302706 -0.184015 0.155311 -1.567862 -1.144315 2.255533 1.157483 0.711590 0.537892 0.126804 -0.554625 1.305104 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.684266 1.108429 4.483217 3.197679 -1.965888 -2.897963 -0.975298 -2.867778 1.896978 0.732371 2.506239 0.265577 1.427982 -0.025812 -0.270777 -1.109190 1.468282 0.277731 -0.197322 -1.175981 -0.698015 3.892238 2.057477 -3.370911 0.537503 -3.277584 2.694570 1.399205 1.970945 3.102754 0.122021 0.343096 -0.206521 1.805123 -2.019633 -1.033712 -1.073563 1.186441 -1.607717 -0.252215 1.577571 1.033801 2.260144 0.471394 1.393136 1.358141 1.664971 -0.299240 -1.938729 -0.876942 -1.154215 1.758984 -1.465436 1.932976 -0.534314 0.857483 0.658813 -1.354750 -0.067486 -3.302225 0.888731 0.877198 -1.578699 -0.228856 -2.920252 0.225503 -1.148271 -1.925530 0.744011 -0.946835 1.557077 0.242442 0.094003 -2.493759 -3.219796 1.093880 0.229433 1.194017 1.508171 0.814660 -1.189655 -0.010961 -1.676122 -2.126435 0.747478 0.297915 0.268457 0.621797 -0.121962 -2.098298 0.461496 0.218088 -0.652676 2.205554 -1.560829 2.147338 -0.909711 -0.622511 -0.703656 -1.751070 -0.220038 -2.213941 0.825300 1.621769 -1.055570 0.486491 0.132055 0.703856 0.150648 -2.642218 0.450920 -0.716149 -0.677646 2.711827 -0.965256 -1.070754 -0.327613 0.139333 0.176240 2.643630 -0.166751 0.835883 2.315870 1.722046 0.854475 -2.132721 0.557033 0.823667 0.890183 1.404012 1.783078 -1.639871 -1.617586 -0.001049 -0.299000 -4.027791 0.085781 1.836267 2.167648 -0.166182 -2.742581 1.458560 -1.611955 2.201351 2.172976 1.416863 1.329772 -0.166987 -1.557198 1.364660 4.839821 -1.509873 1.410042 -1.287782 -3.188653 4.167148 -0.859430 2.043220 -0.618556 0.215813 0.659134 -2.104346 0.599184 3.492591 0.192425 0.835159 2.179367 -0.177480 0.072710 -3.771571 -3.651517 -0.443918 1.846945 1.457950 5.095972 -2.102077 -0.407655 -0.516993 1.777662 -0.294676 -0.837293 0.235693 -0.870443 1.059321 -6.342677 -3.969809 4.166125 3.428369 0.404612 -0.153728 1.948433 0.934760 0.412549 -2.171940 -1.980941 1.602687 0.507424 0.360977 -0.111763 0.297327 -3.010935 -0.468980 0.702157 0.313261 2.182681 -2.412510 -1.155733 -1.213237 -3.102345 -2.584216 1.195918 -2.693968 -0.800631 0.036430 0.010918 -0.170346 0.759948 -0.073324 -1.349625 0.247843 -1.265572 -0.874708 0.008704 1.751015 0.376855 2.618156 3.251575 -0.280681 0.806518 1.241671 -1.776388 7.254497 -2.095072 -0.373789 0.053407 2.406100 0.129594 1.474906 1.311730 -0.889625 -1.014642 -2.944146 1.373205 0.500443 0.884892 -4.569390 -1.692965 -2.904320 -0.542901 0.296883 3.177638 -0.054590 5.485239 -1.119078 0.575687 -5.248667 0.283809 2.065593 0.018323 2.437326 1.727555 -2.395840 -3.083453 -0.845224 -1.366394 2.036091 -0.622643 -2.511245 -1.751960 -0.135443 0.428258 -1.543878 1.491239 3.124204 -1.261080 1.850545 -0.254654 -0.525217 -1.127330 -0.918100 1.179798 1.040180 -1.834078 2.550931 -0.502866 4.785510 -0.830194 2.406329 -1.951542 0.703654 -0.708557 -2.010496 -1.394468 3.352102 2.040023 1.030669 0.878434 0.209871 -0.727565 1.870419 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.259881 0.721905 1.462419 1.111675 -0.724244 -1.348540 -0.401950 -1.234613 0.572224 0.019590 0.724914 -0.162979 0.496658 0.210494 -0.154366 -0.043650 0.611222 0.379300 0.028688 -0.456414 -0.875588 1.511849 0.409472 -0.898395 0.228015 -1.031633 0.861058 0.573173 0.840399 1.021307 0.004223 0.038360 0.069287 0.592115 -0.805495 -0.522940 -0.471200 0.371910 -0.921246 0.148649 0.269695 0.014709 1.037280 0.186233 0.103905 0.658786 0.638273 0.114674 -0.582622 -0.110360 -0.763593 0.853087 -0.314719 0.680881 -0.464350 0.074283 0.457531 -0.291867 -0.019845 -0.521975 -0.025363 0.162575 -0.610845 -0.081699 -1.164836 0.081027 -0.703443 -0.953864 0.217542 0.116201 0.596873 0.232929 -0.001769 -0.841693 -1.471268 0.409441 0.186573 0.626117 0.490148 0.220607 0.023674 0.181955 -0.892546 -0.797606 0.549897 0.119240 0.362558 0.183986 -0.203620 -0.960236 0.052527 0.138886 0.068895 0.640904 -0.284598 0.893794 -0.767667 -0.184178 -0.602935 -1.263148 -0.171201 -0.631418 0.350113 0.180092 -0.097279 0.264449 0.262770 0.317282 0.207848 -1.128881 0.099100 -0.268336 -0.446501 1.240298 -0.121858 -0.524507 0.006150 -0.049727 -0.349182 0.882253 0.095274 0.232056 0.742454 0.632519 0.258545 -0.609201 0.075406 0.052805 0.124633 0.507775 0.867554 -0.504293 -0.747105 -0.031247 -0.143491 -1.606318 0.046356 0.728668 0.722849 -0.305295 -0.683238 0.567506 -0.648352 0.638058 0.601395 0.440195 0.577845 -0.295105 -0.478523 0.614809 1.647672 -0.594107 0.642761 -0.745731 -1.048884 1.386162 -0.129943 0.608624 -0.363185 -0.150470 0.169797 -0.571128 0.293132 1.165836 0.043195 -0.100095 0.995200 -0.115151 -0.392739 -1.255453 -1.160149 0.144503 0.770955 0.237424 1.715132 -0.721573 -0.314208 -0.067712 0.579833 -0.232537 -0.179816 0.199185 -0.437560 0.393485 -2.239066 -1.452499 1.456406 0.935961 0.055975 -0.152721 0.575534 0.467223 -0.078510 -1.070046 -0.739170 0.508392 0.241427 -0.467678 -0.484009 0.086904 -1.004040 0.191478 0.279046 0.264583 0.837416 -0.591832 -0.212862 -0.913817 -1.300218 -1.005196 0.620649 -1.082530 -0.059386 0.334338 -0.131485 -0.267168 0.420473 0.040360 -0.459035 0.046529 -0.469492 -0.158075 -0.140380 0.666404 -0.066720 1.217524 1.382450 -0.040508 0.601713 0.510189 -0.754743 2.519297 -0.847964 0.069053 -0.063475 0.919589 -0.318095 0.558646 0.696544 -0.251527 -0.729232 -1.096825 0.350126 0.215854 0.118682 -1.159939 -0.506337 -1.194822 -0.289039 0.049121 1.381376 0.005480 1.726765 -0.506930 0.239605 -1.742356 0.186955 0.500692 0.001887 1.030248 0.605946 -0.864917 -0.754790 -0.276041 -0.662500 0.415925 -0.310675 -1.148243 -0.652123 -0.008440 -0.204676 -0.559849 0.447407 1.167639 -0.509710 0.632076 -0.303028 -0.250924 -0.485629 -0.248270 1.003612 0.159048 -0.588643 0.829608 -0.117974 2.026948 0.079180 0.802134 -0.695819 -0.144676 0.060739 -0.789059 -0.534404 1.237351 0.606739 0.247357 0.387680 0.148441 0.027318 0.586191 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.010649 0.847522 2.483644 1.818746 -1.040073 -1.791427 -0.571840 -1.383287 0.733897 0.018991 1.186018 -0.279040 0.487408 0.427626 -0.166542 -0.629376 0.622590 0.338466 -0.129880 -0.562463 -1.113635 1.567472 0.821712 -1.810754 0.282674 -1.753586 1.481036 0.981768 0.823712 1.570766 -0.017792 0.021485 0.051315 0.980248 -1.237879 -0.832389 -0.423820 0.328964 -0.872683 -0.033563 0.726984 0.461703 1.427778 0.264325 0.274380 1.011545 0.836152 -0.013174 -1.125684 -0.135903 -1.091699 1.299583 -0.620063 0.836583 -0.316701 0.698231 0.672558 -1.046678 -0.084352 -1.529403 0.274369 0.564702 -0.851270 -0.168079 -1.611743 0.042029 -0.794016 -1.180879 0.682386 -0.147858 0.774331 0.158374 0.077417 -1.261339 -1.480838 0.715430 0.146426 0.845627 0.709839 0.082003 -0.230616 0.407733 -1.007701 -0.917066 0.370836 -0.220313 0.425526 0.199581 0.145097 -1.224932 0.205040 0.118853 -0.304498 1.031636 -0.423370 1.244893 -0.933170 -0.285612 -0.883683 -1.247800 -0.253881 -1.052418 0.474832 1.007299 -0.636050 0.372773 0.149854 0.452336 0.242900 -1.603289 0.112853 -0.530513 -0.291774 1.384580 -0.596048 -0.747417 0.137435 -0.039789 -0.153443 1.413114 -0.241158 0.341120 0.972334 0.913162 0.338901 -0.943110 0.333186 0.048452 0.315833 0.842412 1.174870 -0.925200 -0.828651 -0.281302 -0.115279 -2.363375 0.434379 0.727565 1.007408 0.192261 -1.723163 0.822860 -0.933111 1.151147 0.817030 1.092650 0.728413 -0.287174 -0.723547 0.732807 2.364074 -0.909997 1.016160 -0.922137 -1.697871 1.810949 -0.249084 1.026501 -0.383677 -0.045708 0.784604 -1.062934 0.177426 1.788957 0.262349 0.055516 1.641765 -0.215290 -0.124181 -2.074148 -1.657236 0.276721 0.934405 0.219235 2.636946 -1.219353 -0.523258 -0.319251 1.229757 -0.613549 -0.270988 0.032413 -0.339453 0.534065 -3.306673 -2.196018 1.923045 1.422034 -0.188211 -0.166312 1.043456 0.478172 0.173623 -1.098522 -1.148552 0.700659 0.365859 0.186198 -0.169622 -0.087763 -1.368102 0.188866 0.510290 0.297039 1.260586 -1.438105 -0.943199 -0.876568 -1.962512 -1.422462 0.705934 -1.861626 -0.278381 0.343987 -0.124678 -0.230909 0.520942 0.003857 -0.931292 0.214157 -0.766517 -0.429767 -0.010896 1.126400 0.125289 1.902824 1.704678 0.067051 0.773555 0.925863 -0.910045 4.067346 -1.240419 -0.098067 0.051203 1.453871 -0.246754 0.843086 0.834770 -0.429856 -0.912141 -1.597769 0.760913 0.001344 0.325898 -2.122974 -0.741714 -1.724551 -0.579635 0.295797 1.718751 -0.028433 2.773180 -0.268352 0.117563 -2.511482 -0.003153 1.194604 -0.019728 1.323051 0.999040 -1.326077 -1.720313 -0.367949 -0.674637 1.304651 -0.376193 -1.559136 -0.934600 -0.149014 -0.075592 -0.663086 0.954552 1.777838 -0.606094 0.658469 -0.091542 -0.358029 -0.344130 -0.675066 0.997715 0.504221 -0.961540 1.657295 -0.284258 2.852472 -0.158237 1.166842 -1.207007 0.005519 0.014588 -0.630047 -0.714836 1.715640 0.889571 0.536665 0.417894 0.292118 -0.476110 0.944127 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = -0.438449 0.999389 4.801890 2.502231 -1.971810 -3.132416 -1.318445 -4.117551 2.144858 1.038439 3.125493 -0.286307 1.437232 0.391870 -0.059058 -0.345785 1.326674 -0.325078 -0.054700 -1.172868 -1.140901 3.777513 1.545696 -2.153589 0.453881 -3.672422 1.807039 1.249513 1.846814 2.410746 0.261252 -0.065776 -0.369322 1.534895 -1.981314 -0.093286 -0.184969 1.025621 -1.833379 -0.343467 0.923202 0.339251 2.296710 -0.018406 2.104085 0.804079 1.826167 -0.189348 -2.130350 -0.955401 -1.480416 3.003027 -1.345120 1.636178 0.028591 0.723738 0.211266 -1.820267 -0.564591 -2.651952 0.357432 0.592127 -1.722268 -0.032106 -2.383927 0.515246 -0.991877 -1.688423 0.867174 -1.033966 1.758474 0.125703 0.314380 -1.384404 -3.460394 1.106043 0.282565 0.920174 1.159535 0.668166 -0.545942 0.199652 -1.669319 -2.100737 1.408785 1.203827 0.322089 0.193923 -0.889059 -1.051832 0.059022 -0.133918 -0.295439 2.282318 -2.362891 1.776395 -0.777468 -0.940526 -1.662728 -2.404106 -0.078264 -2.290704 1.112328 1.358538 -0.798619 0.528886 -0.058715 0.936917 -0.252851 -2.995547 0.442364 -0.774939 -0.249563 2.985161 -1.619851 -0.968743 -0.393541 -0.142643 -0.330875 2.184430 0.049176 0.971069 2.509420 1.789892 1.391787 -2.191905 -0.064042 1.083579 1.535502 1.414049 1.513606 -2.124813 -1.351069 0.169992 -0.687306 -4.685051 -0.528882 1.771205 2.331864 0.028422 -2.421186 0.774261 -1.255506 2.598122 2.044248 1.467095 1.017132 0.023914 -1.751212 1.020347 4.696290 -1.489700 2.058954 -1.430283 -2.538882 3.211293 -1.206166 2.253310 0.042590 0.479051 0.533899 -2.375857 0.103743 3.246443 0.689584 0.855105 1.165107 0.232551 -0.701092 -3.886406 -4.268247 -0.533277 1.974739 0.791374 4.649209 -2.373154 -1.629707 -0.471242 2.810813 -0.513240 -1.290161 0.633397 -1.376808 1.212130 -5.497713 -4.091183 4.197227 4.193049 0.885824 -0.165999 2.808124 0.978720 -1.405661 -2.171474 -1.907087 1.753327 0.612035 -1.087794 -0.465854 0.063537 -3.108200 -0.365903 -0.022197 0.617381 1.487758 -1.238934 0.079742 -0.455524 -2.881549 -1.865155 1.588954 -2.592299 -1.116229 -0.121548 0.347226 -0.235492 1.114190 -0.969658 -1.078100 0.818019 -1.947668 -0.243584 0.761622 1.524081 0.293539 3.809895 3.615324 -0.251099 2.122714 0.420662 -1.666001 6.222039 -2.219662 -0.336778 -0.224392 1.859191 -0.465121 1.245797 1.536060 -0.999938 -1.920584 -2.650162 0.935329 -0.078072 1.173646 -2.972861 -2.724652 -3.198827 -0.647089 0.502246 3.283878 0.234972 5.397845 -1.017086 1.022974 -5.923042 0.308956 1.919824 -0.159399 2.300001 1.419861 -2.341350 -3.460906 -0.541250 -1.689531 0.531655 -0.489282 -3.001967 -1.761547 -1.629333 1.369449 -1.658488 1.021536 2.729936 -0.657055 2.201822 0.164848 -0.649978 -1.254347 -0.290195 1.963727 0.710603 -1.981246 2.913915 -0.259472 6.507012 -0.792609 2.210485 -1.714377 0.791083 -0.605978 -1.899808 -1.085434 3.334097 2.584792 1.125288 -0.188046 -0.070424 -1.211945 1.526300 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = -2.450233 10.542908 36.066214 10.789908 -21.058239 -26.979785 -9.469959 -40.279872 15.659530 9.999201 24.768233 -3.463865 11.146993 -1.486171 0.096423 8.315235 15.416265 -2.974873 -4.770462 -14.552385 -12.897789 20.499416 4.283605 -7.395911 10.984569 -23.144716 14.269060 6.116220 11.176516 14.882700 10.648098 -2.125839 -5.233902 13.722933 -2.858214 14.634803 3.684685 7.477219 -17.693889 3.801685 3.526483 -2.739666 18.366336 2.731540 23.317147 12.861990 14.053277 2.291144 -21.799018 -6.076024 -11.801971 27.041091 -13.882369 14.847886 -1.007717 3.228115 -2.249186 -15.070309 -2.533555 -11.550934 -4.504451 -2.281430 -13.841597 -0.134265 -19.253609 1.373834 -7.873980 -12.740767 0.557217 -6.721852 12.325991 -0.737574 -3.673763 0.019139 -23.801559 5.392211 9.074654 8.543057 15.056878 -0.816527 2.372534 -5.968558 -12.108373 -18.732457 17.363001 8.125938 8.281113 4.448887 -10.331541 -6.234823 -3.551870 -2.288233 4.413667 18.023538 -23.055446 4.975470 -7.305921 -11.581264 -18.995569 -26.676941 3.362440 -14.125659 11.162681 5.072120 -5.475743 4.326941 -2.558795 9.584365 -2.629047 -14.767596 2.448469 -6.340170 -0.378318 25.781226 -8.967904 -13.494474 -6.547871 -3.813741 -1.706796 14.622510 5.161089 3.366939 24.472700 16.010453 23.773180 -17.111857 -4.206691 3.865605 10.380858 12.932020 13.498292 -16.488012 -11.311863 6.398450 -13.156077 -34.699003 -7.896718 9.024934 22.546243 -0.793639 -15.857706 1.305650 -9.986220 17.720053 10.927193 8.551802 8.495296 -0.555602 -15.605153 6.696486 33.408832 -11.023685 15.304221 -11.705518 -9.028019 14.411436 -4.452946 9.986403 3.673004 -4.279331 -1.376330 -15.334149 -1.134689 23.795415 9.548880 1.662099 1.397065 7.052877 -14.883768 -27.593906 -32.326370 -5.110468 17.236423 1.894941 29.248210 -20.071601 -11.821579 -7.761790 23.258661 -4.694464 -11.364487 7.182207 -15.168525 12.334508 -28.422847 -26.540051 39.253581 36.826226 13.746414 -3.841719 17.933171 8.522690 -28.067174 -16.725462 -14.713464 10.299012 4.702118 -21.917275 -10.745153 3.067489 -27.226772 -3.295729 -2.056490 8.790461 10.316467 2.754232 7.257085 0.649749 -16.007718 -11.770687 10.348500 -13.888062 -8.562196 1.595229 2.777041 2.712636 11.500645 -11.542707 -9.954746 5.101363 -19.227202 -1.343961 6.767103 19.233949 3.724609 32.912116 27.486255 -4.220470 21.725894 -0.341328 -17.078536 32.937699 -9.482565 3.689136 -1.448423 9.746723 -0.488396 7.096666 17.698527 -10.470955 -18.285878 -21.788645 -3.392356 0.899541 12.047808 -10.393369 -20.544422 -28.820303 -0.071592 0.291854 26.284772 1.375779 37.454209 -4.498313 9.475434 -42.535789 3.027498 14.924243 -2.199170 13.163408 11.348354 -19.736680 -22.838939 -2.430397 -20.885385 -12.933856 -1.448768 -8.549209 -14.830262 -13.119176 18.528656 -9.288217 1.967024 20.078294 -1.631833 20.604378 2.388969 -2.997860 -9.827593 -1.785430 25.403869 3.892972 -15.571251 18.606851 6.351725 57.702253 0.097806 14.818443 -10.300220 -1.226208 1.381536 -15.288697 -14.001521 24.167445 24.353495 11.757589 1.642386 -1.046889 -5.653899 17.751110 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -2.732272 3.482829 14.698573 9.249884 -7.959348 -9.436170 -4.468750 -11.535452 5.357606 2.922566 10.212454 -1.867990 3.749788 1.462456 0.216581 -1.977217 5.382427 -0.406910 -1.453162 -4.531360 -4.677132 8.548495 5.182754 -9.056868 2.123982 -7.990880 5.454966 5.085134 2.772917 5.792824 1.371914 0.253318 -1.469367 5.499314 -6.590646 -0.557371 0.279668 3.126661 -5.251118 -1.372448 3.832898 1.651347 7.649433 -0.533246 6.392215 4.185927 5.629647 -0.395469 -9.976465 -2.677184 -3.083883 9.174529 -4.316280 5.362374 1.333022 2.969827 1.762856 -7.609512 -1.515163 -9.614248 1.690520 1.605866 -5.019286 -0.326352 -6.656554 1.006768 -1.065382 -6.203321 4.008840 -3.022228 4.486412 -0.922314 -0.641132 -3.954289 -6.686665 3.573945 2.825525 3.004760 3.944736 1.406703 -0.097777 -0.138725 -4.657487 -6.042831 3.430657 1.119579 2.776296 1.688883 -2.326143 -2.774069 2.375889 -0.764669 -0.999519 7.075609 -6.117606 4.408788 -1.037865 -4.259050 -7.543844 -6.564296 0.073519 -6.483740 4.125268 5.724679 -5.144384 2.405514 -1.621543 3.644877 -1.235827 -8.613165 0.428607 -3.603676 0.530392 8.248352 -5.292261 -4.298356 -1.080301 -0.838418 -0.127155 6.710338 0.104605 2.403995 8.208231 5.847560 3.891100 -7.228269 -0.207732 0.594457 4.595260 4.946934 5.678548 -6.567721 -4.503881 0.647023 -3.880487 -13.169359 -1.951559 3.672836 7.864778 1.232267 -9.461897 3.159235 -4.325098 8.159255 4.780012 6.455948 2.342209 -0.420796 -5.705369 2.272195 11.728868 -5.048876 6.758462 -2.648708 -8.201373 7.618062 -1.611097 5.816366 1.535265 -0.625106 1.511949 -7.058374 -0.006033 9.949816 3.254299 1.480041 3.091680 0.801339 -2.811029 -11.887843 -13.441418 -0.005601 5.169236 2.412868 14.527834 -8.004853 -6.314596 -2.204154 9.014409 -3.131922 -4.462754 1.245503 -3.569052 4.051721 -15.020101 -12.420059 12.770979 11.451275 2.935985 -0.591359 8.938924 0.282526 -4.742450 -6.111505 -5.922254 5.422714 2.476655 -1.078902 -0.726651 0.726631 -9.271084 -0.385737 0.046497 2.775432 3.991811 -5.272445 -0.749081 -1.337634 -8.877741 -4.526671 3.026311 -7.433387 -2.672184 0.227564 0.558620 0.705935 3.650089 -2.903492 -5.646934 -0.016478 -6.769630 -1.829101 1.608217 7.154846 1.984914 12.721036 10.812893 -1.212684 7.653014 1.225308 -5.659901 18.784444 -6.822612 -0.105502 -0.741132 6.699159 -0.721539 2.634092 6.663814 -3.082601 -5.310859 -8.230220 1.731044 0.062655 4.001365 -12.173779 -6.776497 -10.877846 -1.656596 1.308331 9.699856 -0.496665 16.012324 -1.858416 2.272161 -17.873571 0.418435 5.838365 -0.929984 5.923103 4.826551 -8.308976 -13.384164 -1.138954 -6.457437 1.828877 -0.690017 -6.582456 -5.727983 -3.464101 4.569968 -3.934455 2.755466 9.763642 -2.209139 5.578348 2.349141 -2.131266 -1.231541 -3.076683 6.659413 1.858527 -6.245074 9.823410 0.340556 21.256157 -0.373390 6.824021 -5.534389 0.954611 -0.144143 -4.672796 -4.547831 9.677467 8.565099 3.766136 0.218380 1.075486 -4.508618 5.873791 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = -0.321698 1.240426 4.984176 2.165248 -1.994283 -3.633775 -1.374802 -4.825804 2.339456 1.094641 3.333891 -0.246387 1.807321 0.176808 0.070207 0.260756 1.907870 -0.321237 0.100454 -1.504764 -1.004146 4.324036 1.275910 -1.807316 0.567111 -4.005578 1.729103 1.525448 2.152968 2.645960 0.532976 -0.009950 -0.447553 1.623541 -1.906119 0.052880 0.082157 0.987905 -2.399667 -0.169840 0.558424 0.355068 2.660560 0.055046 2.367070 0.790790 1.987240 0.131165 -2.021857 -1.062561 -1.669333 3.403668 -1.286192 1.758250 -0.124957 0.286605 0.395247 -1.646173 -0.382737 -2.349850 0.043869 0.432369 -1.843190 -0.009394 -2.428503 0.572060 -1.226835 -1.870203 0.586458 -0.859315 1.812462 0.192084 0.177508 -1.205958 -4.127188 1.071269 0.520749 1.147137 1.475625 0.515196 -0.431216 0.000911 -1.910079 -2.474393 1.940222 1.659921 0.562789 0.509891 -1.570579 -1.078177 -0.295845 -0.181749 0.061240 2.216639 -2.409222 1.600690 -0.612339 -1.174868 -1.903724 -2.844819 0.091364 -2.169784 1.051317 0.834249 -0.329664 0.368562 -0.605441 0.895623 -0.601721 -2.851352 0.757193 -0.941479 -0.536521 3.522494 -1.613147 -0.980986 -0.849733 -0.169592 -0.399253 2.502583 0.134069 0.991959 2.530991 2.129061 1.354579 -2.354613 -0.318138 1.076900 1.735444 1.461278 1.687097 -2.165393 -1.694705 0.346101 -1.087532 -4.763039 -0.809839 2.048915 2.594933 -0.141956 -2.084704 0.782668 -1.407574 2.810264 2.255063 1.192606 1.006526 -0.046582 -2.091967 1.375250 4.890851 -1.673073 2.370398 -1.661739 -2.295365 3.161427 -1.292623 2.191457 0.080261 0.014666 0.059712 -2.011452 0.242909 3.426387 0.913546 0.840842 0.899942 0.397931 -0.912868 -3.955320 -4.809445 -0.507075 2.284511 0.687592 4.779907 -2.379987 -1.830809 -0.522332 2.851773 -0.570961 -1.536746 0.931086 -1.829379 1.403469 -5.642966 -4.198594 4.987540 4.610497 1.248820 -0.233595 2.714328 1.424866 -1.918043 -2.310793 -1.609352 1.842561 0.457072 -2.202468 -0.802062 0.321735 -3.274244 -0.472217 -0.162451 0.815125 1.314634 -0.742248 0.861556 -0.747834 -3.002967 -1.887326 1.726182 -2.499042 -1.185397 0.052950 0.238284 -0.107742 1.348650 -1.008438 -0.895865 1.089345 -2.234371 -0.232007 0.610154 1.833063 0.509120 3.970213 3.991509 -0.163467 2.705306 0.340593 -1.964853 5.940688 -2.150887 0.023079 -0.213907 1.666884 -0.357389 1.313718 1.810972 -1.069680 -2.085381 -3.033689 0.722509 0.265586 1.394008 -2.595222 -3.013794 -3.609458 -0.527906 0.492653 3.715647 -0.076162 5.627256 -1.301523 1.040868 -6.232758 0.468400 1.656883 -0.159355 2.285882 1.464072 -2.514330 -3.303365 -0.573752 -2.313549 -0.278661 -0.432069 -3.000275 -1.904025 -1.745681 1.794351 -2.135834 0.881900 2.800259 -0.621306 2.559069 0.134493 -0.615563 -1.668538 -0.061733 2.524858 0.446138 -2.012060 2.738117 -0.140918 6.954701 -0.698500 2.340339 -1.656373 0.865664 -0.393083 -2.316544 -1.296788 3.704361 2.927313 0.976651 -0.062955 -0.066677 -0.784863 1.892649 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -2.987243 4.579266 18.566129 13.369315 -8.195069 -9.344055 -4.420198 -7.658302 4.556740 2.053005 8.324432 -1.105203 1.628037 5.377031 -0.202542 -4.709667 3.986163 1.545303 -1.831568 -3.834747 -4.952445 9.757200 9.177419 -15.626152 0.832934 -11.479566 9.689640 5.671351 3.193205 9.798323 0.475838 1.534571 -0.186544 6.715925 -10.128433 -4.022944 -2.794224 3.265206 -4.294064 -2.431806 7.187102 4.792586 7.251475 0.747258 5.168324 5.985470 7.262500 -1.659515 -10.098006 -1.156196 -6.442603 10.300149 -4.605645 6.273458 -0.237839 7.365969 3.188609 -9.992798 -1.287787 -16.060639 2.867364 5.181125 -7.205256 -1.172090 -9.654701 1.020252 -2.393950 -7.507802 4.525181 -1.921104 4.982966 -1.133494 0.324833 -9.603237 -7.868912 4.634272 0.038853 4.817725 4.338318 1.308750 -4.204445 2.266515 -4.855450 -6.460155 1.016447 -1.786473 0.818238 0.675195 2.795130 -5.381526 0.797781 -0.218308 -4.971773 9.164655 -5.197845 10.205508 -1.272179 -2.834269 -5.792874 -3.048052 -1.023285 -8.635811 3.318674 8.570380 -6.048128 2.122880 -1.226333 3.461381 0.789482 -10.681036 0.640643 -3.421964 -0.560851 6.849283 -5.596187 -3.100333 2.322163 -0.108355 0.661674 10.249903 -2.893207 3.660285 7.438804 6.085795 1.968315 -6.956980 3.204219 1.050987 4.118473 5.336841 6.865175 -6.806641 -5.468918 -2.085657 0.646954 -13.290047 2.934220 7.411341 6.818517 2.948755 -12.901873 3.897635 -4.365841 9.376615 5.617273 9.664516 3.092569 -1.381537 -5.358163 2.136411 17.389317 -6.097198 6.947592 -4.236079 -12.896190 13.354705 -2.625512 9.435381 -0.032488 1.552557 5.005864 -9.096306 0.181995 12.958964 3.452244 1.236072 10.421346 -1.761913 1.121360 -14.637493 -12.487058 -0.549728 4.090041 2.614047 19.481602 -7.746402 -4.194655 -2.907703 8.929552 -3.303139 -2.513061 -1.128775 -1.726810 3.260285 -22.559239 -14.985044 12.434238 10.175775 -1.347169 -1.258237 10.097027 1.842650 2.104315 -7.504278 -6.613495 6.040539 2.066599 8.122768 2.197688 -0.165622 -9.882322 0.757862 2.143609 1.907970 7.155374 -11.228072 -6.763088 -2.465238 -13.654035 -8.268431 2.135134 -12.135418 -4.495573 0.920756 1.354921 -0.582640 1.696392 0.019943 -6.597640 1.476022 -5.779737 -3.101434 1.263151 7.067237 1.811812 11.949984 11.606189 0.451175 5.361369 4.998473 -5.095105 28.850283 -8.627557 -2.520558 0.086018 8.962488 -1.307167 3.732611 4.894234 -2.491130 -4.797875 -9.842124 7.437422 -1.332597 3.110330 -19.348789 -6.181419 -10.118370 -3.246456 3.095673 10.476245 -1.146663 20.023788 -0.893943 0.658900 -20.636370 0.486535 9.211713 -0.663083 7.020161 7.181166 -9.469974 -15.659045 -1.804650 -3.042034 11.358291 -1.920836 -10.094021 -6.858466 -0.698916 0.218870 -5.471748 7.050882 12.668727 -4.179441 4.240121 2.191123 -2.615724 -0.759267 -5.318298 5.286833 3.789858 -7.034705 11.989005 -2.871125 20.939364 -2.955360 8.890279 -7.362668 2.725554 -1.088399 -2.665117 -4.254740 11.596239 6.615329 3.858269 2.143365 1.899587 -5.579030 5.441377 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 0.938023 0.772226 4.365336 1.733188 -0.500316 -2.416753 -1.112491 -5.748340 3.696147 1.171818 2.547094 -0.038585 1.871729 -1.006878 -0.877152 1.139354 1.256841 -0.737987 0.722903 -0.789905 0.333489 6.918590 0.442237 -0.847231 0.139315 -5.913900 1.051534 0.631185 4.449089 2.506561 0.359276 -0.221916 0.702335 1.188914 -1.859103 0.125523 -0.212476 0.966779 -3.373068 -0.563433 -0.192211 0.770180 2.146217 -0.174681 2.307695 -1.199877 2.319169 -0.315160 0.182116 -0.425406 -2.174126 3.773009 -0.789910 1.406179 -0.393859 -0.674860 -0.463694 -0.798289 -0.803340 -0.138451 -0.558282 1.295562 -1.519422 -0.018006 -2.344882 0.922262 -1.218742 -0.744518 0.185410 -0.401990 2.154634 1.535825 1.321447 -1.898638 -5.881464 1.618439 -0.015958 0.788434 1.094750 1.170104 0.178701 0.114270 -1.607102 -2.457030 3.024062 3.765843 -0.518800 0.166476 -1.214426 -1.606540 -1.278762 -0.369841 0.083247 1.989332 -2.809635 1.665390 -1.696624 -0.513733 -0.117548 -2.635048 -0.562547 -2.509184 0.621665 0.000000 1.184474 1.263887 1.941320 0.578080 0.127474 -2.553368 0.758373 0.154813 -0.889628 4.673199 -0.859219 -0.856734 -1.131647 0.598254 -1.977572 2.019234 -0.070560 1.708484 2.826542 1.725964 1.664590 -2.062164 -0.180714 2.768402 1.435751 1.212733 1.154071 -2.262747 -1.315659 0.024407 0.927679 -4.973634 -1.286744 2.213378 2.104556 -1.515923 -0.663326 0.185249 -0.373410 3.379394 2.616683 -1.259770 1.409404 0.495757 -1.582050 2.257998 6.151739 -1.002349 1.311436 -3.351905 -1.812477 3.407134 -2.063769 2.543980 -1.355532 1.144729 0.031506 -2.582230 1.220249 3.172738 -0.747175 0.809011 0.244849 0.421092 -0.505151 -3.862099 -4.624153 -1.157110 1.392786 0.383867 4.884864 -1.386123 -1.875616 -0.250648 1.688295 0.468486 -0.380297 1.872267 -3.221234 1.476961 -5.280266 -4.466083 5.335696 5.088033 1.345964 -0.194814 2.707423 2.221611 -1.972718 -2.489389 -1.285489 1.822593 1.619113 -4.044627 -1.292720 0.233910 -2.892132 -1.699218 0.040889 -0.032333 1.319463 0.634767 1.762002 -1.382525 -3.057706 -1.943117 3.522153 -2.455932 -0.983179 -0.447337 0.685740 -0.964640 2.126893 -1.355976 0.223174 1.743704 -1.151340 0.054266 0.565168 0.769061 -0.448416 1.805969 4.898396 0.218680 3.401795 0.606355 -1.659145 4.966663 -1.777495 -0.934788 -0.174443 -0.215654 -0.924368 1.852570 0.420899 -1.133828 -1.770553 -2.789613 1.575080 -0.130140 0.862696 -1.046410 -3.001513 -1.971126 -1.226247 0.445977 2.711757 1.305706 5.460680 -2.754535 0.870851 -6.681245 0.601995 1.731021 0.698844 3.112292 1.195856 -1.906365 -2.084332 -0.745295 -1.433166 -1.279960 -1.286397 -4.938657 -2.032366 -3.181983 3.096430 -2.758594 1.184928 3.164706 -0.058024 3.206939 -1.905326 -0.438157 -3.246205 0.915602 1.200806 0.575694 -1.585900 1.246839 -1.154546 6.053094 -2.088087 1.919678 -2.117818 1.534111 -1.487321 -3.431964 -0.548300 3.582185 2.160290 0.413194 -0.474202 -1.370237 -0.962503 1.863836 -PE-benchmarks/union-find.cpp__main = -0.364797 1.641800 5.400102 4.032985 -3.806177 -4.813489 -1.466877 -5.723863 2.585452 0.896479 4.195394 0.023187 2.359051 -0.453714 0.086860 -0.050741 2.871992 0.470019 -0.374863 -2.158523 -2.597627 5.091410 1.816827 -3.029544 1.179005 -2.912262 2.882852 2.055416 2.392582 2.849194 0.761795 0.129208 -0.806397 1.994381 -2.144595 -0.435971 -1.395351 1.597781 -3.126593 -0.330799 1.530856 -1.096376 3.839246 0.133105 2.112865 0.991004 3.203298 0.211051 -3.447013 -1.272918 -2.318899 3.634689 -1.867745 2.619013 -0.647923 -0.107415 1.281818 -1.333997 -0.294464 -2.770293 0.124354 -0.606186 -2.492163 -0.222134 -3.489269 0.550115 -1.858852 -3.009003 0.902737 -0.720338 2.208035 0.126953 -0.451363 -1.968492 -4.799983 0.885480 1.191449 1.565320 2.039858 1.644371 0.194412 -0.619097 -2.989963 -2.921093 2.642300 0.462201 1.228665 0.671839 -2.034766 -1.795492 0.658624 0.216433 0.398309 2.360498 -3.157339 2.198851 -1.246096 -1.552237 -2.717404 -4.259381 0.196230 -2.548074 1.600235 1.202976 -1.552856 0.836481 -0.349396 1.066033 -0.454584 -4.198743 -0.036553 -1.383406 -0.743151 4.456265 -1.503604 -1.984609 -0.868052 -0.056311 -0.459826 2.575254 0.841139 1.196973 3.921797 2.658803 1.733658 -2.903143 -0.197446 0.656839 1.584009 2.066846 2.279548 -1.897707 -2.532062 0.845333 -1.542623 -6.055558 -1.140894 2.786508 3.695439 -0.096461 -2.871016 1.366311 -1.976005 2.902857 2.651595 1.814996 1.553381 -0.115614 -2.339650 1.733987 5.415075 -2.031266 2.549522 -1.584587 -3.247079 4.670215 -0.818731 1.822278 0.054963 -0.404644 -0.189424 -2.454041 0.255306 4.222246 0.734012 0.118909 1.568630 0.585427 -1.706406 -5.050510 -5.640516 0.006432 3.221766 1.989086 6.023069 -3.287142 -1.432647 -0.170611 2.602481 -0.811480 -2.150064 1.013910 -2.132466 1.871545 -7.333564 -5.243123 6.094495 4.353066 1.195098 -0.084613 2.910002 1.313758 -2.241921 -3.310650 -2.985380 2.363363 1.213727 -2.198962 -1.147403 0.674091 -4.559490 -0.134868 0.459163 1.194624 2.244335 -2.010189 0.650235 -1.920882 -3.677228 -2.491639 2.260118 -2.965097 -0.887458 0.262130 -0.325327 0.250968 1.700395 -0.442305 -1.512218 -0.550374 -2.626383 -0.717720 -0.079497 2.934202 0.371719 5.516145 5.369981 -0.899156 2.494557 0.482556 -3.113215 7.790750 -2.916929 0.245281 -0.471252 3.062174 -0.174047 1.569279 3.386130 -1.386420 -2.553382 -3.957051 0.292730 0.874266 1.560830 -4.686243 -2.385700 -5.382016 -0.599002 0.236842 4.974640 -0.275072 6.755500 -2.164480 0.927533 -7.399032 0.500165 1.865636 -0.255926 3.424766 1.713400 -3.264929 -3.145645 -1.002142 -3.058617 0.696123 -0.481550 -2.598082 -2.714077 -0.973596 1.182599 -2.371540 1.006041 3.481847 -1.662318 3.142638 -0.054094 -0.778298 -1.401102 -0.312058 3.355233 0.913649 -2.597508 3.932028 0.209020 8.828558 0.256580 2.736738 -2.344496 0.308209 -0.375553 -3.194724 -2.059109 4.384149 3.916141 1.294462 0.740298 0.612787 -0.645232 2.632917 -PE-benchmarks/union-find.cpp__find(int*, int) = -1.007490 0.773075 4.067601 2.675851 -1.510766 -2.268832 -1.143500 -2.554138 1.805464 0.852709 2.655888 0.210209 1.372816 0.119526 -0.036089 -1.048170 1.146774 -0.241900 -0.463305 -0.997633 -0.514055 3.258163 2.009587 -3.115463 0.364543 -2.796654 1.893714 1.143022 1.108177 2.476726 -0.104373 0.305006 -0.072530 1.688359 -2.160996 -0.489994 -0.533060 1.225107 -0.890702 -0.717443 1.684381 1.129587 1.931305 0.362565 1.626017 1.290165 1.292668 -0.477774 -1.955339 -1.016553 -0.807753 1.792492 -1.488207 1.703916 -0.559934 1.280050 0.626809 -1.597863 -0.243858 -3.700431 0.907974 1.128210 -1.403466 -0.356635 -2.000885 0.302146 -0.088012 -1.631019 0.589252 -1.164206 1.548790 0.002701 0.011725 -1.994099 -2.311983 0.912429 0.228189 0.744444 1.250027 0.649861 -1.360370 -0.175693 -1.245237 -1.875639 0.961526 0.244534 0.382855 0.838857 -0.042531 -1.160867 0.336541 0.166880 -0.567526 2.230956 -1.510978 1.605607 0.151331 -0.679883 -0.938421 -0.690798 -0.067958 -2.133453 0.749519 1.927542 -0.958463 0.444727 -0.273132 0.751503 -0.380482 -2.226996 0.461693 -0.767096 -0.582603 1.831200 -1.195968 -0.848906 0.179516 -0.073074 0.367977 2.341451 -0.190057 0.714769 2.263285 1.481425 0.896477 -2.064028 0.491235 0.685083 1.382955 1.257241 1.365445 -1.792953 -1.327640 0.124753 -0.701107 -3.649740 -0.094317 1.610856 2.098600 -0.028133 -3.189006 1.815571 -1.215864 2.070663 2.016283 1.585538 0.964226 -0.046847 -1.723060 0.833394 4.157692 -1.318809 1.631070 -0.847355 -2.685952 3.410939 -1.070465 2.023078 -0.066620 0.078247 0.593415 -2.053901 0.454892 3.112049 0.536036 1.069950 1.220835 -0.063101 -0.036566 -3.390527 -3.679103 -0.943165 1.581590 1.310225 4.637458 -1.910438 -0.931795 -0.522852 2.106657 -0.836449 -0.990050 0.071811 -0.670070 1.079201 -5.353224 -3.434003 3.858519 3.349298 0.696610 0.133628 2.492438 0.475898 0.481325 -1.612949 -1.457820 1.483368 0.853413 0.730124 0.246054 0.089840 -2.573633 -0.615354 0.176892 0.343566 0.964387 -1.889892 -0.851437 -0.433008 -2.488239 -1.674651 0.470899 -2.409255 -0.889123 -0.120312 0.193179 -0.335663 0.584651 -0.403037 -1.298050 0.274525 -1.473350 -0.557923 0.293455 1.551907 0.715489 2.510818 3.015055 -0.713751 1.136334 0.727008 -1.290914 5.831142 -2.079857 -0.435404 0.027588 2.427514 0.258278 1.172751 1.218141 -0.803452 -0.650760 -2.594200 1.345622 0.500710 0.852232 -3.973880 -1.743153 -2.436991 -0.467559 0.357245 2.937817 -0.329372 5.018561 -0.766146 0.726197 -5.224943 0.244486 1.924907 -0.183580 1.551917 1.613544 -2.001905 -3.902201 -0.649195 -1.134657 1.202447 -0.469055 -2.219448 -1.481596 -0.768358 0.657588 -1.772215 1.300455 2.771398 -0.781891 1.609087 -0.066347 -0.447005 -0.890613 -0.802058 0.949059 0.903267 -1.653543 2.284977 -0.361335 4.771159 -0.974933 2.526567 -1.757484 1.260721 -0.786315 -1.655285 -1.168633 3.087759 2.057638 0.817605 0.689066 0.201500 -0.937145 1.668517 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.660834 1.199916 4.471100 3.599169 -2.111393 -2.876600 -1.224294 -2.768813 2.029846 0.656126 2.533373 0.270633 1.467131 0.053779 -0.350592 -1.186993 1.476344 0.350176 -0.577170 -1.213103 -1.260523 4.066918 2.158747 -3.861534 0.491662 -2.934163 2.559573 1.489371 1.686924 3.008747 -0.213634 0.337169 0.051785 2.019965 -2.551137 -1.125829 -1.232166 1.384029 -1.519136 -0.606983 1.974923 0.865026 2.679221 0.444496 1.257288 1.532719 1.632503 -0.428489 -2.325835 -0.858804 -1.252841 1.840949 -1.497955 2.169670 -0.989099 1.228257 1.040019 -1.461907 -0.096338 -3.660257 0.858224 1.094205 -1.597134 -0.497198 -2.747340 0.149142 -0.589489 -2.384846 0.687244 -0.992158 1.637937 0.258180 -0.051210 -2.838314 -3.092953 1.129568 0.507803 1.180118 1.503537 1.119766 -1.136370 -0.159859 -1.808186 -2.140387 1.000403 -0.005233 0.585860 1.035858 -0.038785 -2.097350 0.618616 0.439482 -0.475736 2.367764 -1.425820 2.164648 -0.657862 -0.657484 -1.138344 -1.503195 -0.280311 -2.247308 0.925090 1.804108 -1.190245 0.771704 0.272259 0.821881 0.052129 -2.703037 0.299186 -0.952620 -0.836650 2.506246 -0.821913 -1.366035 0.239192 -0.011406 0.017438 2.626861 -0.254249 0.678385 2.611634 1.650325 1.019343 -2.316215 0.710170 0.551223 1.021967 1.456179 1.900405 -1.624398 -1.705347 -0.005891 -0.525069 -4.320947 0.058424 1.902224 2.307042 -0.338005 -3.228772 2.072045 -1.600434 2.254320 2.125972 1.667128 1.407782 -0.277691 -1.805415 1.191855 4.805491 -1.467278 1.641232 -1.407259 -3.438872 4.351891 -0.818761 2.231886 -0.649571 -0.193705 0.703655 -2.214297 0.907160 3.619656 0.095850 0.563585 1.978195 -0.297479 -0.222239 -3.899638 -3.973455 -0.607010 1.886793 1.785179 5.586523 -2.220763 -0.806844 -0.503231 1.861254 -0.779549 -0.798725 0.227308 -0.844005 1.279085 -6.723923 -4.194926 4.421997 3.357614 0.450937 0.085646 2.518216 0.469332 0.871962 -2.347167 -1.888059 1.549787 1.196785 0.699105 -0.028377 0.270061 -2.946208 -0.308239 0.655535 0.383190 1.746246 -2.598390 -1.153864 -1.484388 -3.161480 -2.512672 0.924915 -3.031546 -0.628875 0.260539 0.029685 -0.525743 0.912711 0.024744 -1.696673 -0.226268 -1.316983 -0.663413 -0.201154 1.929950 0.422520 2.685430 3.868255 -0.829803 1.235414 1.230361 -1.659334 7.416109 -2.700086 -0.335651 0.113379 2.972106 0.059786 1.519255 1.668998 -0.894806 -0.605385 -3.064065 1.538119 0.669895 0.660532 -5.155692 -1.569988 -3.009160 -0.603553 0.176195 3.376600 -0.306857 5.653833 -1.173605 0.640759 -5.888521 0.276559 2.123996 0.036709 2.405123 1.950783 -2.520265 -3.874308 -0.829447 -1.371908 2.057380 -0.684324 -2.661960 -1.784637 -0.180039 0.059356 -1.911563 1.639968 3.526041 -1.447869 1.850523 -0.593852 -0.482666 -1.030471 -1.169418 1.365726 1.032066 -1.685450 2.587867 -0.475113 5.307362 -0.609745 2.800411 -2.102130 1.044180 -0.617785 -2.274570 -1.571838 3.573281 1.956895 0.904205 1.107290 0.360631 -0.752137 2.003906 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.041571 0.656077 1.870353 0.581147 -0.795599 -1.487950 -0.598012 -2.195715 0.837817 0.441574 1.412698 -0.266863 0.843859 0.137609 -0.036071 0.180988 0.814577 -0.228480 0.308012 -0.631275 -0.713289 1.831497 0.273221 -0.179157 0.272610 -1.598241 0.885587 0.420899 0.936007 1.119193 0.215659 -0.057627 -0.211998 0.607284 -0.488980 0.051017 0.045270 0.554020 -0.915246 0.275721 0.102680 -0.185038 1.110011 0.066585 0.734767 0.572325 0.549713 0.180362 -0.674531 -0.474778 -0.576774 0.970360 -0.613854 0.635210 -0.220477 -0.257966 0.194064 -0.360251 -0.164285 -0.428768 -0.159230 -0.222068 -0.660795 0.149818 -1.090290 0.296415 -0.852593 -0.797677 0.126312 -0.181719 0.770913 0.281383 0.111269 -0.137884 -1.821787 0.473369 0.329612 0.452354 0.561518 0.035764 -0.034999 0.116705 -1.039635 -1.159887 0.931547 0.884477 0.413244 0.025818 -0.723586 -0.417348 -0.092158 0.053714 0.256329 0.941459 -0.724815 0.573728 -0.653316 -0.466260 -0.835182 -1.771441 -0.010043 -0.883648 0.537447 0.219650 -0.234341 0.029718 -0.154214 0.393366 -0.156720 -1.285750 0.273922 -0.434616 -0.191731 1.605684 -0.478890 -0.462628 -0.556576 -0.199663 -0.081719 0.865893 0.283883 0.322058 1.117644 0.886213 0.564327 -0.927518 -0.361219 0.367822 0.514058 0.481890 0.766195 -0.892773 -0.803881 0.195165 -0.590181 -1.961217 -0.467335 0.653342 0.994296 -0.512369 -0.532159 0.470781 -0.744564 0.890116 1.066598 0.398188 0.477374 -0.070664 -0.790034 0.703529 1.810182 -0.667498 0.920647 -0.822088 -0.848063 1.324887 -0.410062 0.718680 -0.011534 0.037509 -0.249297 -0.787100 0.163496 1.321663 0.266443 0.395276 0.411060 0.177898 -0.479215 -1.375148 -1.770465 -0.041354 1.251022 0.237211 1.671991 -1.031526 -0.547261 0.052585 1.111639 0.053269 -0.668341 0.423376 -0.647473 0.539496 -2.206771 -1.667207 1.881140 1.689977 0.543533 -0.121647 0.731835 0.707394 -0.992644 -1.056689 -0.824697 0.860102 -0.053188 -1.389850 -0.719888 0.231965 -1.252582 -0.063651 -0.093734 0.445213 0.799775 -0.189326 0.365650 -0.435408 -1.108771 -0.844238 0.943381 -0.887257 -0.479001 0.113401 -0.045061 -0.059830 0.560088 -0.327499 -0.186801 0.374200 -0.861339 -0.009811 0.328953 0.646882 -0.026278 1.734315 1.564372 -0.199736 0.657241 0.073445 -0.760817 2.056825 -0.796159 0.123256 -0.097450 0.696558 -0.262240 0.578979 0.963425 -0.408430 -1.169161 -1.261321 0.107241 0.177336 0.457558 -0.610100 -1.147427 -1.601839 -0.091073 0.128943 1.814363 0.149821 2.155638 -0.474038 0.541372 -2.094420 0.223109 0.432611 -0.088713 1.083419 0.490501 -0.903928 -0.761380 -0.316290 -1.148041 -0.454879 -0.219417 -1.125375 -0.812832 -0.558596 0.467958 -0.630816 0.167394 0.890465 -0.193413 1.027029 0.090200 -0.324061 -0.901959 0.134335 1.345170 0.021299 -0.755854 1.047166 0.076053 2.732161 -0.136424 0.807563 -0.552215 0.070369 -0.021690 -1.016004 -0.519940 1.527914 1.120265 0.409013 -0.024700 -0.087462 0.011905 0.719061 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.425644 0.881325 3.113260 2.525180 -1.610466 -2.248788 -0.864592 -2.019972 1.227740 0.360441 1.896795 -0.124160 1.046649 0.108305 -0.239349 -0.921529 1.216722 0.150261 -0.313261 -0.987080 -1.229329 2.562706 1.213443 -2.555173 0.447744 -2.119916 2.143168 1.162033 0.843208 2.180950 0.056759 0.266389 -0.069511 1.357207 -1.635287 -0.737342 -0.624356 0.851543 -0.982561 -0.268658 1.398803 0.497443 2.040964 0.287023 0.723485 1.423933 1.059761 -0.080956 -1.761597 -0.638715 -0.952632 1.088145 -1.039605 1.359647 -0.692112 0.739048 1.083047 -1.282211 -0.094556 -2.315815 0.511427 0.520972 -1.159408 -0.233803 -2.024616 0.137986 -0.537925 -1.741051 0.677690 -0.669405 1.061674 0.177011 -0.121248 -1.750960 -1.946239 0.807417 0.480776 0.863854 1.043155 0.487886 -0.593508 0.010048 -1.524369 -1.445168 0.730575 -0.084628 0.696119 0.668345 -0.048780 -1.479494 0.487200 0.278702 -0.179732 1.560347 -0.652918 1.286243 -0.581168 -0.586593 -1.131907 -1.370586 -0.088177 -1.436400 0.733382 1.479698 -1.204713 0.529608 0.116274 0.590629 -0.014521 -1.958792 0.152345 -0.995828 -0.249364 1.879115 -0.673545 -1.172841 -0.197908 -0.168874 0.203759 1.881469 -0.212023 0.386933 1.915908 1.234735 0.614047 -1.643155 0.266986 0.183576 0.679642 0.969400 1.465484 -1.284521 -1.250419 -0.068289 -0.642490 -3.033669 -0.034681 0.923414 1.695872 -0.222014 -2.409913 1.732955 -1.289714 1.492183 1.443345 1.342224 0.932543 -0.189121 -1.303323 0.895190 3.111753 -1.079701 1.244676 -1.222616 -2.432195 2.785607 -0.172735 1.252943 -0.279344 -0.279938 0.384431 -1.453554 0.690969 2.440202 0.166118 0.332027 1.594529 -0.068583 -0.198765 -2.689551 -2.726901 -0.017611 1.460625 1.104182 3.969483 -1.845943 -0.506431 -0.390684 1.472639 -0.609540 -0.632548 0.102915 -0.537290 0.844186 -4.620407 -3.013558 3.050642 2.006916 0.297951 0.054439 1.533841 0.259952 0.393861 -1.440355 -1.453578 1.170448 0.783077 0.311231 -0.009790 0.186789 -2.024691 -0.174571 0.463936 0.501527 1.484098 -2.101340 -0.907894 -1.351050 -2.290366 -1.884257 0.784314 -2.176252 -0.406923 0.346936 -0.145914 -0.223047 0.684751 0.150838 -1.173776 -0.260515 -0.940822 -0.552195 -0.040566 1.561024 0.241826 2.184893 2.670532 -0.603963 0.749292 0.816950 -1.180180 5.148534 -1.780801 -0.097316 0.055617 2.223608 0.179927 0.965303 1.482267 -0.628937 -0.644162 -2.220354 0.950932 0.473557 0.463114 -3.565596 -0.844954 -2.569310 -0.479709 0.042954 2.696537 -0.174159 3.898721 -0.613592 0.294044 -3.780185 0.109616 1.442964 0.030572 1.558387 1.309616 -1.829140 -2.464633 -0.506758 -1.293032 1.373756 -0.469558 -1.676764 -1.428771 -0.004063 -0.024228 -1.072424 1.022771 2.557892 -0.932930 1.035327 -0.125970 -0.373742 -0.594788 -0.929024 1.100143 0.654762 -1.176545 2.046874 -0.219878 3.768381 -0.104084 1.825417 -1.436168 0.582687 -0.257675 -1.543030 -1.168969 2.419760 1.326992 0.561012 0.890342 0.308228 -0.371084 1.574041 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = -0.815076 1.509478 7.527212 5.958713 -5.717471 -7.896920 -1.860379 -9.525165 5.405680 1.990506 6.408954 1.145974 4.803095 -3.012074 -0.434181 -0.491479 5.105002 1.034174 -0.921877 -3.460619 -2.686545 8.863083 0.836453 -4.347844 1.787058 -4.606469 4.910844 3.677045 3.989695 5.207080 1.748995 0.234458 -2.142279 2.692380 -2.603128 -0.031272 -1.528903 2.270694 -5.331747 -1.721319 2.291062 -2.100492 6.928014 0.265136 4.274195 -0.170923 4.102339 0.311054 -4.626383 -2.492557 -2.853429 4.004597 -2.185714 4.237623 -1.191983 -1.005203 2.227409 -0.932655 0.561878 -3.820750 0.809154 -1.330097 -3.679777 -0.756932 -4.878542 0.222423 -2.514828 -4.594583 0.557638 -3.592507 2.509395 -0.288709 -0.917980 -3.670051 -8.930875 0.476384 2.091615 1.582317 3.741379 4.378097 -0.018272 -2.767344 -4.917234 -4.161456 4.186878 2.012878 1.280579 2.890109 -5.248357 -3.126130 1.014555 0.653411 2.085582 2.836987 -5.018185 1.866196 -1.551793 -2.406971 -2.621417 -6.451284 1.514662 -2.927378 2.015755 0.815663 -2.269137 1.484505 0.060238 1.167603 -1.188539 -4.802629 1.067890 -3.041784 -0.689118 7.462964 -1.631050 -4.189111 -3.131467 -0.292407 -0.298001 3.825759 0.771928 1.070375 5.281559 3.407182 3.767759 -5.495451 -0.895769 2.848762 2.366352 2.687310 2.026739 -2.168778 -2.916668 1.663064 -3.551328 -9.434290 -2.795989 3.352028 5.929441 -0.795338 -3.097553 2.004257 -3.341431 4.309605 4.341388 1.818272 2.425020 1.070515 -4.582827 2.155145 7.338061 -2.068427 3.143690 -2.685146 -4.603171 6.113174 -0.411658 2.443966 -0.918503 -1.503027 -0.591395 -2.610354 1.785266 6.055663 -0.292120 0.385070 0.156119 1.688567 -3.417217 -7.196384 -10.004462 -0.307808 6.123192 5.233695 9.472075 -5.441404 -2.103389 -0.440209 3.617082 -0.929950 -3.392946 2.878548 -4.024904 3.554949 -12.056788 -7.995546 10.352991 7.251628 2.989344 -0.375550 3.973357 1.073382 -3.132110 -4.511120 -4.050960 2.786447 2.659233 -4.930851 -0.770425 1.304607 -6.899159 -1.355720 1.148031 1.384865 2.903471 -3.123972 3.313001 -4.247477 -3.480443 -4.580704 4.473438 -3.589110 -0.742438 0.015515 -0.387471 0.311548 3.361551 -0.696271 -1.989804 -0.775684 -3.073443 -0.634831 -0.718753 3.632056 0.380753 7.385202 8.890913 -2.305856 4.067415 0.069600 -4.637665 12.064795 -4.882070 0.898464 -0.099690 4.079216 1.402708 2.585819 5.188537 -2.633215 -1.761332 -6.069753 -0.906927 2.109139 3.131394 -7.679553 -4.102453 -9.011195 -0.086340 -1.386287 7.245943 -0.692926 10.548045 -4.299600 1.636439 -11.195545 0.673509 3.613980 -0.070825 5.187710 2.015363 -5.160704 -4.324563 -1.169667 -5.619157 0.355669 -0.481274 -3.345965 -4.084449 -1.907034 2.532726 -4.181295 1.400797 5.314816 -3.273097 5.321205 -2.057992 -0.238016 -2.462039 -0.351343 3.522096 1.274780 -3.679920 5.209355 0.607235 12.393729 0.616818 4.108928 -2.836397 3.099013 -2.178908 -7.259901 -3.724982 6.433690 6.050460 2.044992 0.699104 0.883719 -0.634005 4.576476 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -2.477001 -0.243373 7.227614 5.434327 -3.945074 -5.875415 -2.146496 -8.295813 5.366770 2.780366 7.336090 0.614215 4.645615 -3.338153 -0.235746 -1.485105 3.909748 -0.905086 -1.020893 -2.726793 -1.148764 8.430310 1.758771 -4.691068 1.272952 -5.492453 4.581664 2.932364 2.180232 5.149615 1.126249 0.742705 -1.045375 2.588850 -3.047039 1.296384 -0.592902 2.515452 -2.536374 -2.713844 3.442003 -0.449050 5.476115 -0.209888 5.237732 0.121994 3.391042 -0.942543 -4.686291 -3.119604 -1.494171 2.971867 -2.945906 3.241766 -1.190213 0.139062 2.132199 -2.409025 -0.299107 -6.349140 1.716111 -0.016426 -3.576419 -0.697018 -3.630403 0.854403 -0.151595 -3.191511 1.071698 -4.422597 2.483559 -0.166323 -0.813255 -3.172484 -6.258567 1.013086 2.076386 0.126502 2.922367 3.097245 -1.401318 -2.621328 -3.765078 -3.655844 4.400764 1.999868 1.177805 3.026643 -3.555892 -1.535703 0.964960 0.542098 1.143003 3.577219 -4.263180 0.699718 1.342687 -2.471283 -1.929906 -3.107344 1.518957 -3.750715 1.699733 3.740359 -3.047052 1.766993 -0.220834 1.519977 -2.286853 -4.457330 0.853166 -3.348319 0.404175 5.448673 -2.643578 -3.375812 -3.055675 -0.157138 1.183764 3.877748 -0.105977 1.481059 6.103653 3.014201 3.254979 -5.685421 -0.659890 3.212922 3.633901 2.193360 1.004122 -3.446800 -2.293426 1.177302 -3.678891 -8.436603 -3.518881 2.296965 5.611063 -0.777986 -5.354484 4.202233 -2.165334 4.856178 5.113835 1.611079 1.413964 1.885589 -4.963492 1.804378 7.084027 -1.976599 2.961553 -2.526105 -5.116746 5.843361 -0.910919 2.407649 0.374287 -0.726268 -0.327253 -3.622753 2.296483 5.830976 0.030595 2.105444 -1.093219 1.915237 -1.478736 -6.786619 -10.056316 -1.371102 4.906820 5.151620 10.408603 -5.331127 -2.461367 -0.686684 4.251474 -1.155201 -3.338051 1.824226 -3.477066 3.176257 -11.588117 -8.037057 10.009173 7.155721 3.993745 0.785204 5.118737 0.547881 -1.383879 -2.078853 -3.306750 3.456006 3.596969 -2.705086 0.820571 0.791553 -6.254418 -2.978930 -0.075342 0.969501 1.070625 -3.684688 1.948713 -2.999440 -3.056615 -2.996468 3.227783 -3.824751 -1.366671 -1.303677 0.053126 0.367847 2.747203 -1.360719 -1.416765 -0.848937 -3.101653 -0.711453 0.398552 3.223547 1.406639 6.203554 8.927305 -3.253634 3.286415 -0.593520 -3.006446 10.105956 -4.169973 -0.297343 0.078611 3.978306 2.626919 2.068710 4.499445 -2.348102 -0.485083 -5.663734 0.540078 2.309316 2.948462 -8.001285 -3.624950 -8.099322 -0.498045 -0.872640 7.143677 -0.365821 10.745655 -3.234618 1.416189 -11.386694 0.256681 3.840319 -0.043119 3.587787 1.919437 -4.448812 -6.800307 -1.018894 -4.532532 -0.097702 -0.754671 -3.244963 -4.098634 -3.087317 3.599419 -4.341594 1.727905 5.252422 -1.456375 4.305929 -0.773186 -0.240500 -2.401651 -0.391927 1.158064 1.682592 -3.308019 4.712760 0.316514 11.234181 -1.143082 4.503837 -3.269602 5.247548 -3.216993 -6.200009 -2.799714 5.802038 6.103903 1.420655 0.790716 0.515678 -1.550195 4.894575 -PE-benchmarks/trie-suffixes.cpp__main = 2.593577 10.712223 26.043931 4.074173 -17.074422 -17.802544 -6.916659 -36.353688 13.939679 11.325243 16.306259 -3.314262 9.191536 -3.380643 -4.529357 10.290179 10.988510 -2.753304 -3.262435 -11.939203 -18.762398 12.716647 -3.113057 2.311377 11.518247 -21.392721 15.088662 -1.610637 8.328420 6.898493 12.294169 0.353710 -4.740239 11.554105 5.347341 13.627614 4.364374 7.228632 -11.205690 5.356631 3.784061 -7.060617 11.843912 7.460529 17.381675 9.976234 6.336076 1.489481 -13.398238 -2.763327 -6.540907 16.204815 -10.025962 9.535606 -1.514199 0.255400 -2.432140 -12.594833 1.267097 1.731598 -6.681282 -9.849650 -11.009799 1.804369 -13.868983 0.744922 -8.247091 -9.945338 -4.398055 -1.746350 9.618985 1.324092 -4.188794 3.098984 -18.360590 3.202926 8.550653 2.803852 14.969172 0.274595 2.170623 -5.833303 -13.982355 -17.836381 20.493552 9.614512 6.255995 1.654182 -6.446349 -6.302949 -6.194389 -4.181263 9.374924 16.919549 -19.823768 -1.645887 -8.060822 -11.107397 -15.722765 -25.833575 3.649913 -11.095273 9.653115 0.270825 -10.729556 5.681252 2.507047 5.734330 1.553663 -7.457934 1.324948 -8.019345 5.948184 22.619032 -1.810315 -14.278435 -7.803864 -5.714166 -0.749904 7.757752 7.584671 -1.273623 28.121412 9.561751 18.239703 -10.559602 -5.930080 4.849563 1.550372 6.287049 9.463427 -17.392459 -9.166704 6.712377 -6.963393 -26.978819 -7.157623 0.171709 13.005122 -7.285232 -6.082819 0.986824 -4.644007 4.341370 7.840089 1.520521 6.464143 0.013278 -9.322747 2.847436 23.369305 -6.837340 7.089887 -12.614834 -3.521836 9.283191 -3.004602 3.870691 1.074263 -3.534314 -4.120286 -11.160373 0.332293 17.347807 -0.816617 -3.631015 0.382836 7.887372 -14.817736 -16.481558 -22.730930 -1.284190 14.846992 0.846992 20.121130 -17.429783 -3.523031 -6.192163 19.710436 2.065702 -4.654694 8.134279 -11.876553 8.595786 -11.004775 -19.860988 27.127161 22.694336 9.961956 -7.072377 9.002086 3.527473 -26.267873 -15.792791 -13.448172 4.928002 6.589200 -20.440368 -12.867252 4.165636 -19.531497 -2.096887 -2.342332 6.693740 13.292709 2.782473 9.732000 -1.138715 -6.320660 -12.524256 11.931019 -4.876029 -5.984759 0.416221 4.690113 1.356618 11.644120 -6.845883 -6.801374 0.033036 -9.587327 -0.111305 10.023995 13.817692 -1.443117 26.769068 19.770797 -6.624685 11.023957 -2.649911 -9.099671 16.693374 -3.756945 3.332456 1.393928 4.545016 -2.483552 5.298758 16.533581 -8.495230 -15.765863 -13.520253 -4.187340 -2.953138 3.622860 -1.587809 -9.724135 -22.979784 -1.374543 -4.453778 17.890564 3.787582 25.178864 -0.978901 6.649026 -24.565626 1.965982 11.722888 -3.239684 12.025778 7.849979 -15.334007 -7.118501 -4.625400 -17.792526 -16.427882 -0.485275 1.252996 -13.124983 -6.676693 13.366469 -4.749023 1.025169 13.561321 2.571597 11.713485 -3.669526 2.016307 -9.990637 2.536283 23.277142 -0.291368 -10.361280 12.330052 4.820564 39.025469 2.432346 8.571543 -4.872521 -6.011873 1.080291 -12.715539 -11.783967 15.471123 14.072716 10.083271 -0.482767 -2.147544 -1.174711 17.190123 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.695183 1.079149 6.948854 2.700951 -3.435758 -4.634535 -2.032792 -8.509968 3.865036 2.878387 6.014516 -0.616254 2.620242 -0.512796 -0.023229 1.082972 2.600204 -1.495882 -0.463833 -2.816017 -1.691267 5.281297 1.265271 -1.402009 1.444007 -6.278468 2.749059 1.109459 2.198329 2.351942 1.555555 0.022143 -0.987678 2.450997 -1.646608 2.026006 0.860101 1.950943 -2.440833 -0.173969 1.566677 0.469169 2.974685 0.657486 4.908242 1.353498 2.861020 -0.269748 -3.822104 -2.227621 -1.500658 4.549935 -2.655689 2.772912 -0.517813 0.340495 -0.031249 -2.931184 -0.519501 -3.277655 0.014018 -0.218927 -2.610598 0.107761 -2.750010 1.230856 -0.670637 -2.259335 0.459735 -1.288778 3.424064 0.093351 -0.450223 -0.037471 -4.823816 1.172439 1.021651 0.836380 2.718566 -0.114251 -0.671526 -1.149205 -2.913781 -3.943192 4.181123 2.720436 1.170355 0.799863 -1.970046 -0.522426 -0.472537 -0.826646 0.874713 3.951162 -4.807529 0.372945 0.214658 -2.253362 -3.048442 -3.607583 0.512284 -3.576824 1.959318 2.024887 -1.899738 1.295688 -0.731457 1.563578 -1.415316 -3.333540 0.834755 -1.538250 0.891483 4.983597 -2.403921 -2.467654 -1.484973 -0.481739 -0.033520 2.892713 1.272201 1.156038 6.287911 3.009951 2.949647 -3.668100 -1.261653 1.717207 2.790366 2.407543 2.018349 -3.781024 -2.634737 0.989157 -2.171999 -6.821016 -1.990061 1.814353 4.843322 -0.718204 -3.281807 1.513745 -1.665936 3.920211 3.563571 1.356821 1.159312 0.384232 -3.714856 1.421943 6.909811 -2.009063 3.001091 -2.225620 -1.850205 3.145198 -1.759985 2.239323 1.512895 -0.069553 -0.524495 -3.620282 -0.363045 4.901325 1.154434 1.353825 -0.139573 2.322997 -2.145509 -5.435548 -7.548209 -1.520824 3.315378 1.046243 6.506687 -4.189152 -2.473065 -1.141125 4.837573 -0.684888 -2.639528 1.392897 -2.888283 1.946155 -5.855533 -5.775865 7.998904 7.964348 3.218454 -0.573665 4.476372 1.871245 -4.298276 -2.817499 -2.284489 2.546103 1.752141 -3.902111 -1.594184 0.914423 -4.900338 -2.473571 -0.790712 1.448654 0.807048 -0.471540 2.026453 0.432929 -2.891812 -1.787671 2.285139 -2.556273 -1.793327 -0.557243 0.929425 0.364363 2.121235 -2.507749 -0.953734 1.196169 -3.529133 -0.054700 2.135175 3.382517 1.462986 6.389706 5.814795 -1.308038 4.199849 -0.592639 -2.822835 6.283365 -2.263817 -0.013324 -0.230967 1.862094 -0.009185 1.333189 3.040989 -2.078021 -2.775670 -4.343985 0.563854 0.240651 1.932570 -2.387160 -3.509081 -6.051874 -0.522013 0.062696 5.231422 0.251315 8.236462 -1.586249 1.556472 -8.817687 0.415241 2.958834 -0.896274 2.500971 1.989199 -3.211532 -5.280175 -1.046113 -3.783965 -2.473515 -0.383754 -2.638284 -3.252173 -3.307100 3.730133 -2.976327 1.198046 3.560609 0.839945 3.730579 -0.229519 -0.471054 -2.360273 0.797353 3.701318 0.991478 -3.753003 3.665509 0.361059 11.129885 -1.182992 3.144697 -2.390442 0.965163 -1.267800 -3.446606 -2.113431 4.949159 5.061931 2.040604 -0.298163 -0.413358 -1.488162 4.001757 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = -0.506604 2.023903 9.817096 2.667690 -4.084118 -5.962930 -2.738583 -13.748110 6.200669 4.616394 8.501020 -1.182733 4.588859 -1.458819 -0.804688 1.224490 4.007402 -2.575492 0.514380 -3.563713 -2.203497 8.465603 -0.284103 0.239343 1.595176 -9.763044 4.614136 1.155080 4.225313 3.331392 2.656687 -0.088412 -1.572366 3.230019 -1.361553 2.807716 2.060308 3.032054 -3.683782 -0.644002 1.291639 -0.321795 4.710144 0.896110 6.704800 0.839311 2.831040 -0.359916 -3.927237 -2.910356 -1.524338 5.314133 -3.201433 3.355139 0.298746 -1.420949 0.130964 -3.234444 -0.006156 -1.998881 -0.303216 -1.270651 -3.123615 0.661236 -3.945639 1.504274 -2.073061 -2.546586 0.131148 -2.519799 4.018939 0.569372 0.271516 0.441542 -8.424066 2.254930 2.055852 0.096619 4.006911 0.922840 -0.210143 -1.639569 -4.796438 -6.267983 6.665853 6.382892 1.280025 1.197052 -4.165403 -0.967079 -0.776925 -1.211161 1.950100 5.905714 -6.363125 0.231338 -1.019111 -3.345182 -3.760339 -7.481487 0.841974 -5.198454 2.833799 2.105511 -2.829954 1.351278 -0.329066 1.757932 -1.411456 -4.354260 1.715066 -3.027019 2.151045 8.076923 -2.939287 -3.968694 -4.147671 -1.048878 0.285256 3.423101 1.618677 1.249325 8.619741 3.805468 4.810983 -5.484907 -2.286822 3.941358 2.940138 2.508625 1.931853 -6.036638 -2.959288 1.747933 -3.114587 -9.946332 -3.837505 1.666794 6.007752 -2.605518 -2.834591 1.683211 -2.256107 4.885578 5.691294 0.946257 1.635767 1.457376 -4.571255 1.991958 8.480727 -2.349022 3.503012 -4.049644 -2.531173 3.789368 -2.355174 3.282467 1.041165 0.477107 -1.567136 -4.962448 0.814780 6.857921 0.232446 2.034805 -1.329090 3.050051 -3.218798 -6.835054 -10.972425 -1.313543 5.724873 1.961619 8.755488 -6.067764 -3.404381 -0.455938 6.806526 0.537094 -3.662110 3.261498 -4.404837 3.092679 -7.994766 -8.472597 10.504390 10.524248 4.526726 -1.599441 4.948263 2.262672 -7.150204 -4.576807 -3.726218 3.833694 1.689043 -7.865624 -2.680077 1.652069 -6.693804 -3.015215 -1.188641 1.765642 2.770076 -0.430418 4.282294 -0.856668 -3.118796 -3.372409 5.340891 -2.484315 -2.877218 -1.396816 1.323035 0.446229 4.102431 -3.319885 -1.048714 2.032660 -4.292173 -0.074148 3.096582 3.623872 0.400442 9.243008 8.218878 -2.055995 4.738239 -1.225859 -3.195279 8.077239 -3.289201 -0.184593 -0.078677 1.485525 -0.056205 2.608155 4.837754 -3.160850 -4.628910 -6.244817 -0.174167 -0.181122 2.647149 -2.478908 -5.362867 -8.972703 -0.520014 -0.724132 7.625559 1.437323 11.627244 -2.369441 2.283993 -11.054117 0.552573 3.767388 -1.124531 4.678847 2.260707 -4.918593 -4.515073 -1.549972 -6.182534 -5.093114 -0.380135 -3.851717 -4.688584 -5.176293 5.775995 -3.624373 1.247712 4.329812 1.322440 5.225102 -0.757457 -0.448019 -4.593246 1.875311 5.450821 0.259854 -4.616747 4.860097 0.431719 14.765059 -2.216635 3.710122 -2.949206 1.955944 -2.006095 -5.956127 -2.937607 7.015205 6.583840 3.020807 -1.585477 -1.061882 -1.832612 5.812775 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.465324 2.379487 9.919547 3.950703 -5.005166 -6.246393 -2.526151 -10.604213 4.970584 3.326129 7.183192 -0.392650 3.369398 -0.329588 -0.391785 1.184039 3.704696 -1.006588 -0.935897 -3.771777 -3.253013 6.439013 2.084314 -2.604606 2.516475 -8.013594 4.039074 1.165065 3.471543 3.873253 2.095523 0.036404 -1.342689 3.636703 -1.644305 1.676648 0.448497 2.299857 -3.910346 0.183106 2.167810 -0.150411 4.408558 1.655351 5.612608 1.991391 3.558218 -0.371395 -5.026151 -2.183341 -2.740612 6.192153 -3.613140 3.912219 -0.756010 0.999737 -0.178203 -3.739559 -0.313234 -4.266554 -0.187392 -0.708422 -3.460256 -0.080097 -4.422750 1.180476 -2.237121 -3.633682 0.282778 -1.436144 4.336792 0.430117 -0.364347 -0.827138 -6.767877 1.662809 1.331340 1.727540 4.015063 0.434301 -0.874287 -1.258704 -4.027129 -5.339895 5.225787 2.412370 1.371243 0.771503 -2.135478 -1.744125 -0.732271 -0.772692 0.932164 5.188869 -6.658315 1.578704 -1.218588 -3.000640 -3.807598 -5.848361 0.224338 -4.818890 2.487047 2.089393 -2.927044 2.027440 -0.793788 2.138965 -0.832390 -4.577728 1.151079 -1.552168 -0.017833 6.888742 -2.791078 -3.574411 -1.282356 -0.379929 -0.229936 3.984448 1.406191 1.495630 7.862465 3.904162 3.989476 -4.458257 -0.687537 1.896947 2.739784 3.102400 3.485421 -4.541937 -3.784580 1.299749 -2.168638 -9.724566 -1.582743 2.680705 5.993342 -0.501405 -4.491570 1.233933 -2.510133 4.426941 4.383377 2.091620 2.246316 -0.050039 -4.441956 1.893477 9.512043 -3.242228 4.042975 -3.111309 -2.836092 5.130505 -2.342319 3.132582 0.408190 -0.072159 0.353346 -4.806489 -0.816209 7.049820 1.241617 0.860569 1.003110 2.188518 -2.869431 -7.786299 -9.319899 -1.902800 4.569007 1.322978 8.292355 -5.358866 -2.484453 -1.846264 6.214722 -0.810167 -2.932117 1.775027 -3.512099 2.560691 -8.647531 -7.955046 10.425739 9.972537 2.974823 -1.059474 5.017744 2.428292 -5.452815 -4.672332 -3.778053 2.858442 2.023702 -4.654611 -2.826159 1.037293 -6.656910 -1.995888 -0.198803 1.722497 2.620101 -1.330041 2.018308 0.622928 -4.306208 -3.491121 3.390815 -4.064847 -2.530347 -0.217216 1.108069 0.575972 2.826895 -2.457727 -2.060746 1.380549 -4.368695 -0.665322 2.362222 4.986383 1.431836 8.517788 7.505305 -1.260305 4.519765 0.075151 -4.301440 9.747640 -3.532648 0.059872 -0.151552 2.853094 -0.734434 2.369792 4.172251 -2.647577 -4.296969 -5.683775 0.714949 -0.326120 2.291858 -3.734557 -4.691802 -7.372877 -0.663458 0.115505 6.564692 0.185097 11.023697 -1.923521 1.943602 -11.300945 0.434603 4.450470 -0.962731 4.423242 3.215073 -4.832292 -6.304142 -1.724227 -4.834586 -1.375323 -0.496093 -3.094766 -4.211395 -3.188985 4.386493 -3.605364 1.930294 4.808005 0.172038 5.317984 -0.299095 -0.576550 -3.099968 0.685786 5.644166 1.657980 -4.673523 5.439948 0.407757 14.090500 -0.884390 4.038076 -3.343402 -0.163093 -1.050224 -4.127581 -3.337968 6.800168 6.428417 3.216608 -0.170637 -0.525834 -1.698846 5.174264 -PE-benchmarks/m-coloring-problem.cpp__main = -0.129670 0.814093 2.354616 0.906159 -1.301733 -1.927348 -0.798374 -2.550931 0.843157 0.538547 1.816577 -0.427549 0.897235 0.306290 0.029065 0.018658 1.023070 -0.193067 0.201148 -0.855831 -1.162841 1.729822 0.388570 -0.519255 0.438606 -1.617025 1.188956 0.723452 0.705929 1.193151 0.350542 -0.005862 -0.438040 0.812679 -0.677135 0.065432 0.147248 0.652752 -0.974701 0.324655 0.345009 -0.170857 1.397749 0.042378 0.964579 0.958458 0.626358 0.266508 -1.273159 -0.585657 -0.544590 1.175620 -0.739253 0.801597 -0.073827 -0.080109 0.303030 -0.797106 -0.190691 -0.770839 -0.020436 -0.328536 -0.871770 0.185910 -1.297045 0.270484 -0.850044 -1.070271 0.386604 -0.336764 0.836867 0.016148 -0.122852 -0.155297 -1.752645 0.497520 0.535051 0.539766 0.730996 -0.006851 0.032356 0.116158 -1.246041 -1.328747 0.907603 0.773378 0.624162 0.073924 -0.827733 -0.478554 0.157801 -0.017554 0.313781 1.206518 -0.867385 0.594143 -0.665854 -0.713809 -1.341152 -2.060057 0.132961 -0.995074 0.787985 0.495649 -0.695488 0.042625 -0.270197 0.568219 -0.210593 -1.582931 0.194252 -0.717927 0.084455 1.843211 -0.644409 -0.723975 -0.641639 -0.395208 0.024370 1.081575 0.378900 0.255571 1.432337 1.110919 0.661542 -1.169176 -0.514417 0.221599 0.606251 0.675129 0.964772 -1.187903 -0.923812 0.249045 -0.934593 -2.300243 -0.542931 0.521000 1.260647 -0.425575 -0.870484 0.604415 -0.987125 1.019975 1.064693 0.846423 0.465198 -0.125483 -1.003223 0.664328 1.979034 -0.814865 1.147605 -0.736672 -1.184294 1.348482 -0.249845 0.776725 0.267002 -0.130382 -0.253039 -0.936831 0.096517 1.580486 0.433915 0.385536 0.568540 0.269025 -0.735539 -1.645738 -2.209190 0.190096 1.465185 0.307972 2.102652 -1.451880 -0.771244 -0.074055 1.633566 -0.098217 -0.877087 0.423205 -0.622261 0.680962 -2.444177 -1.980604 2.135460 1.923167 0.657188 -0.233788 1.023821 0.511880 -1.281718 -1.221997 -1.138594 1.023709 0.012055 -1.199361 -0.649294 0.257511 -1.554768 0.045061 -0.110036 0.653683 0.983743 -0.477353 0.246532 -0.465334 -1.336380 -0.964755 0.925918 -1.038866 -0.467735 0.184616 -0.085516 0.001612 0.648979 -0.445532 -0.528995 0.205407 -1.121617 -0.038033 0.450980 0.949240 0.057158 2.427992 1.761618 -0.309858 0.877036 0.044630 -0.912129 2.706483 -0.969080 0.248915 -0.100253 1.020102 -0.235072 0.519073 1.328921 -0.512439 -1.379721 -1.511875 -0.010756 0.163241 0.634118 -1.127705 -1.246587 -2.222133 -0.109296 0.105376 2.204123 0.096393 2.605682 -0.324741 0.592455 -2.502536 0.208052 0.622597 -0.238947 1.154430 0.593344 -1.220944 -1.338842 -0.281254 -1.494499 -0.410474 -0.151269 -1.076796 -1.053934 -0.538667 0.522738 -0.542460 0.185356 1.275737 -0.296774 1.008004 0.297224 -0.409224 -0.703584 -0.120816 1.670930 -0.010466 -1.034296 1.523817 0.222312 3.571483 0.084828 1.035139 -0.622170 -0.033008 0.081460 -1.048517 -0.739879 1.722337 1.417706 0.626810 -0.028428 0.113589 -0.175391 0.894635 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = -0.031931 0.868860 2.545784 1.751707 -1.375100 -1.595859 -0.678209 -1.868923 0.922985 0.187375 1.177723 -0.325520 0.435114 0.351033 -0.177883 -0.336630 0.661414 0.305792 -0.325959 -0.670275 -0.801828 1.504520 0.702980 -1.801930 0.296803 -1.659433 0.932094 0.888945 0.843957 1.002749 0.082245 -0.050316 -0.288766 0.950333 -1.334068 -0.527436 0.002571 0.342695 -1.246355 -0.239375 0.487070 0.487693 1.135880 -0.162111 0.781149 0.719336 0.879224 0.093813 -1.316252 -0.226194 -0.683522 1.749379 -0.415592 1.038737 0.300094 0.543882 0.173996 -1.276933 -0.164973 -1.261931 0.254159 0.447595 -0.621330 -0.105837 -1.293231 0.077164 -0.158279 -1.232948 0.781804 -0.387398 0.778561 -0.104167 0.123784 -1.030100 -1.290198 0.627637 0.293446 0.812485 0.655160 0.346653 0.243707 0.121708 -0.737786 -0.923326 0.257120 0.276327 0.347756 0.219118 -0.142447 -0.858329 0.464248 -0.291085 -0.185340 1.082995 -0.993303 0.930940 -0.880985 -0.387390 -1.159188 -1.245351 -0.117456 -0.941088 0.703858 0.627340 -0.622318 0.497969 0.457437 0.544572 0.254953 -1.422144 0.079571 -0.384367 0.122772 1.648669 -0.631526 -0.748052 0.146878 -0.201578 -0.578718 1.214265 -0.077245 0.385861 1.171151 0.991761 0.656255 -1.077538 -0.035802 0.237082 0.527575 0.933435 1.146386 -1.268118 -0.653183 0.026906 -0.285252 -2.274274 0.066282 0.583218 1.273253 0.226783 -1.413967 0.330165 -0.746374 1.291866 0.389951 0.948947 0.510653 -0.279699 -0.771636 0.471705 2.326792 -0.754484 1.015632 -0.702424 -1.390110 1.245458 -0.145141 1.072324 -0.037540 -0.048255 0.498959 -1.136582 0.067442 1.658125 0.338029 0.045861 0.962155 0.000000 -0.809101 -2.324139 -1.955935 0.039641 0.702204 0.005652 2.485618 -1.226003 -1.097663 -0.470184 1.670931 -0.664864 -0.362047 0.293340 -0.733502 0.704809 -2.172238 -2.100362 1.997096 1.952737 0.086798 -0.240856 1.520971 0.107690 -0.772879 -1.242043 -0.917964 0.571000 0.491002 -0.219906 -0.305402 -0.020984 -1.462976 0.081268 0.359236 0.451819 0.951132 -0.625375 -0.237829 -0.305606 -1.754068 -1.250117 0.708814 -1.422120 -0.097150 0.323978 0.252901 -0.144043 0.729625 -0.504318 -1.135890 0.241371 -0.807117 -0.096306 0.186964 1.014606 0.068570 1.903965 1.517073 0.065967 1.576758 0.528943 -0.990531 3.781081 -1.153791 0.039417 -0.083941 1.122084 -0.487923 0.573876 0.794132 -0.566108 -0.889003 -1.438027 0.234642 -0.293556 0.449729 -2.091406 -1.153670 -1.490901 -0.530342 0.155495 1.165348 0.033321 2.599303 -0.412866 0.280370 -3.158422 0.100315 1.103269 -0.153175 1.118617 0.924475 -1.338028 -2.350561 -0.134888 -0.826952 0.367450 -0.377745 -1.596992 -0.809376 -0.505739 0.650014 -0.496010 0.529315 2.004179 -0.374344 0.838811 -0.166892 -0.267644 -0.234009 -0.678813 1.007715 0.219704 -1.067938 1.551577 -0.054168 3.415466 0.002457 1.097459 -0.936404 -0.087297 0.075321 -0.911499 -0.726328 1.630872 0.949164 0.658206 0.018360 0.157235 -0.880126 0.864837 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.212021 1.547767 5.021831 4.107365 -3.069814 -3.428315 -1.461240 -3.403948 1.651445 0.647024 3.192211 -0.361028 1.100461 0.851677 0.019926 -1.538219 1.561625 0.243498 -0.859936 -1.571193 -1.933848 2.639536 2.312145 -4.258867 0.659185 -2.260075 2.686291 1.856561 0.594887 2.276124 0.227394 0.136043 -0.624049 2.268549 -2.625004 -0.885596 -0.482533 1.218515 -1.303847 -0.727872 2.017318 0.927144 2.762494 0.263680 1.778795 2.244760 1.907373 -0.074969 -3.472642 -0.843686 -0.943618 2.575813 -1.751855 2.256213 0.217800 1.517333 1.182316 -2.771159 -0.175093 -4.070685 0.917105 0.656104 -1.782726 -0.322377 -2.752292 0.105420 -0.261852 -2.585462 1.353341 -1.164756 1.727411 -0.566869 -0.465699 -2.172216 -1.948765 1.039644 0.671080 1.216456 1.641009 0.620808 -0.615446 -0.065416 -1.823062 -2.124539 0.560557 -0.577787 0.978578 0.857026 -0.030075 -1.482370 1.269790 -0.270368 -0.572922 2.700350 -1.534629 2.052904 -0.306372 -1.189229 -2.596042 -1.877199 0.133646 -2.203171 1.541093 2.261881 -2.120275 0.527581 -0.291104 1.005465 -0.080347 -3.203314 0.125521 -1.291451 0.377861 2.294245 -1.604239 -1.534163 0.323955 -0.530635 0.252179 2.752589 0.222793 0.516663 2.773072 2.093428 1.079267 -2.474869 0.224260 -0.177889 1.245147 1.900243 2.177553 -2.326243 -1.634051 0.355213 -1.134123 -4.409348 0.084374 1.636703 2.870189 0.624124 -4.053009 1.751048 -1.754382 2.281522 1.593119 2.939506 1.017011 -0.423160 -1.838648 0.669335 4.276998 -1.640227 2.184815 -0.720577 -3.303298 3.408709 -0.527664 2.029247 0.479084 -0.262411 0.712028 -2.335829 0.127264 3.639053 1.125235 0.405091 2.172865 0.046903 -1.009385 -4.450727 -4.232661 0.093385 2.112808 1.183335 5.299850 -2.907820 -1.455595 -0.668758 2.956220 -1.332047 -1.345194 0.079552 -0.667683 1.435614 -5.694918 -4.149238 4.099913 3.357515 0.506772 -0.322487 2.780345 -0.101870 -0.299722 -2.331717 -2.355173 1.733428 0.719004 1.265540 0.157100 -0.062572 -3.263521 0.118556 0.506967 1.014121 1.982156 -2.909208 -1.401951 -0.881780 -3.281380 -2.360443 0.458629 -2.781620 -0.698660 0.393417 0.078892 0.041044 0.823933 -0.210436 -2.365904 -0.330094 -2.019875 -0.789721 0.415132 2.443385 0.607633 4.460795 3.129232 -0.710406 1.878549 0.960629 -1.852773 7.810218 -2.567031 0.098140 -0.072051 3.475744 0.037318 1.100327 2.386574 -1.101778 -1.508718 -2.983736 0.865618 0.190848 1.291572 -5.614636 -1.846987 -3.929630 -0.670970 0.326403 3.353128 -0.543336 5.664206 -0.384271 0.770927 -6.051642 0.159686 2.362537 -0.498692 1.868062 1.937103 -2.952608 -4.546228 -0.503933 -1.915588 1.648564 -0.362198 -2.013183 -1.843418 -0.256036 0.325339 -1.214485 1.205041 3.602495 -1.294975 1.296592 0.354995 -0.633956 -0.017594 -1.789408 2.207170 0.678007 -2.358187 3.598422 0.034631 6.771168 -0.048811 2.721859 -2.002390 0.362900 -0.190419 -1.467586 -1.769782 3.485097 2.470805 1.182552 0.644322 0.794765 -1.373397 1.933155 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = -6.576937 12.377909 45.116715 12.377301 -24.012234 -26.442371 -11.748585 -49.631492 22.385057 17.688880 32.476102 -1.934774 18.251713 -4.622243 -3.675502 4.517939 19.856967 -6.028378 -1.619660 -16.266209 -18.711264 25.760655 6.207620 -4.975577 13.179040 -33.108542 22.595668 -0.416137 13.238250 19.254060 13.026841 1.960628 -8.337330 16.781366 3.398305 14.001423 5.751806 12.132566 -13.892141 1.579545 7.853257 -11.311728 20.407286 9.956184 27.703530 8.520922 9.547079 -2.220440 -24.540814 -9.217178 -9.585916 21.462243 -19.332187 14.273632 1.190109 1.086564 -0.251045 -15.369008 0.795501 -17.566963 -3.108724 -13.781924 -15.423024 2.089147 -20.682331 5.122765 -15.544544 -13.893609 -4.216889 -8.631320 15.124737 3.490425 0.985130 4.060469 -30.410190 7.576180 9.992149 3.409069 20.621117 4.667014 -4.745278 -7.786520 -19.646758 -27.501147 26.538726 11.549888 6.261394 3.745963 -12.512725 -4.899647 -4.802263 -3.016341 6.296409 25.701167 -30.592822 4.663911 -5.123874 -15.946479 -16.740726 -36.766199 2.442103 -22.283094 10.576221 9.580153 -18.123936 5.653886 -8.799754 9.524024 -4.402312 -18.593695 7.841679 -12.373039 -0.537268 29.360614 -11.929709 -15.690390 -11.878218 -3.814764 6.829821 15.955123 5.192469 5.909939 33.353578 16.588025 21.382539 -19.498835 -3.277399 10.809721 9.851548 8.515492 13.027351 -22.946507 -15.323011 9.500745 -12.726707 -42.897508 -11.758861 9.634663 22.880006 -3.284478 -17.809823 2.358106 -10.120942 14.471460 20.771579 9.767137 7.863738 2.387254 -18.360961 6.509097 36.078331 -14.992807 17.215111 -11.464500 -11.640814 23.610481 -11.571435 12.274631 -1.732399 -0.105021 -1.667465 -19.924849 -3.264773 31.116109 4.228608 2.622153 -0.586421 8.367677 -13.390423 -32.320756 -41.281568 -6.306866 28.501031 8.289207 33.170795 -26.369781 -7.780212 -5.608735 29.561325 2.568913 -14.360261 9.282430 -13.624318 13.022040 -38.627034 -36.973504 44.795320 38.764979 13.668210 -5.487904 15.129497 9.061804 -30.810668 -22.324801 -20.807590 12.581821 2.766430 -24.175068 -16.237573 6.099485 -31.919636 -5.268910 -2.732420 7.731130 19.385226 -5.939282 11.943675 3.187516 -11.581616 -16.776133 17.288426 -13.083605 -17.154905 -3.167509 5.044471 6.832313 13.727002 -7.662526 -8.773151 3.972771 -19.011539 -5.184382 12.120354 20.332734 2.969049 43.308714 34.813361 -8.232560 8.145194 -2.588692 -16.248765 38.100033 -13.938443 1.986201 0.714423 10.076037 -0.549615 10.419253 25.247187 -11.825175 -23.264295 -23.953352 -3.166541 -3.125788 11.840798 -16.426086 -24.430928 -34.833723 1.384198 -0.394385 30.279497 1.672421 47.667324 -4.584324 9.185949 -44.153338 1.855645 21.250357 -5.204182 22.533987 13.134774 -23.938806 -19.783097 -8.964886 -24.886113 -8.688766 -1.008538 -4.495405 -17.685731 -11.183176 20.743195 -11.964316 5.035785 16.780581 1.104851 24.928485 5.479344 -0.951803 -17.617825 5.203539 27.758728 3.493232 -16.651239 27.239646 5.504826 59.000604 -3.298069 13.530956 -10.707350 -0.822301 -2.989649 -17.534698 -15.321622 29.459844 29.593003 16.056680 -2.758513 -1.935050 -5.414977 24.106975 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -6.933574 5.774983 33.206781 18.180749 -14.614922 -22.642452 -8.762275 -23.021621 10.980832 7.490817 22.384412 -2.355333 7.293151 5.962694 1.153221 -4.246897 8.183232 -3.789680 -1.530097 -7.881278 -10.452477 18.212509 14.348345 -16.121363 2.815297 -24.278004 12.730487 8.421645 6.390296 14.414314 2.103739 0.883274 -2.354341 11.012237 -12.857847 1.180466 -0.076560 6.179947 -6.690976 -2.134916 8.247898 4.299542 14.478856 1.194969 16.019364 8.293837 14.100223 -2.413905 -19.482956 -6.637773 -9.450451 20.537824 -10.339999 9.535512 2.256301 10.048442 2.708840 -15.720838 -3.811285 -25.526757 3.862551 4.939107 -12.965037 0.038909 -16.423518 3.843208 -5.667196 -10.548809 6.313097 -5.340938 11.549391 -0.902932 1.874330 -6.238228 -17.187356 7.888949 0.494468 5.674517 7.752154 1.166935 -8.063953 1.674249 -10.472590 -13.127821 6.355017 2.449545 1.758493 0.334449 -2.232840 -3.934161 0.491200 -2.050205 -5.876666 16.732690 -16.580230 13.011404 1.322221 -6.830587 -13.298038 -12.969842 -1.236766 -16.255192 6.280812 14.751094 -8.371013 2.505417 -7.646234 5.838468 -4.896095 -20.380008 3.224266 -6.992891 -0.781970 13.879907 -14.258615 -4.754452 0.060247 -0.697515 2.221475 15.702963 -1.838513 6.535529 16.355279 12.029675 6.574061 -13.089044 2.174355 4.011927 12.398586 9.586482 10.563118 -15.461431 -8.989660 0.279546 -6.099969 -29.219228 0.083230 13.994908 14.707643 3.588394 -21.383463 5.282681 -7.575885 19.722711 12.819514 14.885766 4.410347 -0.794081 -11.579002 5.418127 30.836124 -10.632813 15.607225 -5.503471 -18.044193 22.796817 -9.379105 15.613009 3.252798 3.659332 4.388764 -15.962640 -3.364288 21.642666 9.383765 6.405263 11.081293 1.181359 0.130246 -25.823473 -27.804976 -3.380426 11.825663 4.505057 32.339492 -17.898890 -11.478194 -4.709108 19.427802 -5.254762 -10.671381 0.750109 -4.882683 6.208111 -39.135419 -28.116604 27.303807 28.705222 4.249547 -0.899757 20.968792 5.565164 -7.946793 -13.031214 -13.306359 11.341443 1.808549 -0.468379 -0.366230 0.738905 -23.207342 -2.939208 -2.516298 4.188049 10.843779 -10.820223 -4.205532 -0.399867 -18.820971 -10.085125 4.764195 -16.407350 -11.296569 -1.394973 2.954303 0.692074 4.076634 -6.123861 -8.611108 5.855723 -16.790652 -4.020729 6.588686 12.520177 7.079104 32.312826 23.592945 -0.489642 13.103480 3.091512 -9.272413 43.849109 -14.103738 -2.921842 -0.906886 14.206115 -2.255906 6.338937 10.281843 -5.706668 -13.593978 -16.369952 9.043877 -2.415403 7.948159 -22.867250 -18.324486 -24.137611 -3.609391 5.808383 22.007116 -0.604794 35.368920 -2.017082 5.118627 -38.614192 0.887253 14.617525 -2.484360 13.209177 10.737228 -17.032795 -26.971846 -3.492938 -8.356631 7.027000 -1.825079 -16.084036 -10.695973 -10.239567 7.292507 -9.884633 8.207110 17.698718 -3.072302 13.610587 7.957735 -4.672814 -5.396730 -3.248428 13.011571 5.795171 -13.783019 23.267513 -1.900674 46.153716 -7.410630 14.516824 -11.116584 4.281027 -2.472798 -6.025261 -6.467400 20.819619 19.716632 8.526390 -0.330769 0.950434 -9.529303 10.499126 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(suffix&, suffix&) = -0.876669 0.056883 2.667358 0.404453 -1.240513 -1.347886 -0.686080 -3.629157 2.084474 1.471027 2.495615 0.523199 2.044357 -1.151672 -0.275212 -0.644967 1.547329 -0.839193 0.686051 -0.783357 0.328483 3.160375 0.033791 0.347953 0.287358 -2.671025 1.825034 -0.216906 1.725826 2.375955 0.670703 -0.147397 -1.342974 0.464552 0.493820 0.692617 0.482357 0.927449 -1.165689 -0.414438 0.307862 -1.227788 1.650395 0.143818 1.965942 -0.896791 -0.242069 -0.195553 -0.802740 -1.344376 -0.147022 0.007513 -1.173989 0.958431 0.425430 -1.083904 -0.188904 0.560180 0.115311 -1.082592 0.251560 -1.476924 -0.394632 0.334722 -1.194399 0.495794 -1.917257 -0.388071 -0.421846 -2.035637 0.741178 0.405208 1.004246 0.294513 -3.395025 0.430704 0.348826 -0.173154 1.112639 1.465276 -0.650374 -0.825089 -1.398819 -1.792278 1.255328 2.155006 -0.411543 0.297484 -2.094215 0.038038 0.037017 0.267407 0.657473 1.202488 -2.083974 0.228316 -0.979620 -0.646091 0.590915 -2.998702 0.340866 -1.451814 0.458753 0.430638 -1.045341 -0.299014 -0.383373 0.427798 -0.493001 -1.276835 1.359544 -0.698399 -0.306335 2.511733 -0.865168 -0.898142 -2.048132 -0.066738 0.882416 0.837863 0.105081 0.737668 1.074244 0.991368 1.772903 -1.840272 -0.511723 2.356460 0.871441 0.038267 -0.104192 -0.871024 -0.535244 0.885229 -1.182351 -2.759041 -1.633347 0.706070 1.699488 -0.574015 0.012990 -0.301210 -1.136537 1.200213 2.241373 0.218252 0.619857 0.934493 -1.566756 0.701618 1.996782 -0.512037 0.786258 -0.665819 -0.923236 1.787138 -0.828907 1.153348 -0.826797 0.753954 -0.385788 -1.251802 0.348663 1.913283 -0.329770 1.292963 -1.274851 0.689638 -0.641304 -2.040757 -3.244015 -0.697865 2.908633 1.760001 1.644958 -1.574199 -0.218118 0.438039 1.726564 1.235726 -1.572720 1.240613 -0.960131 1.010788 -3.899049 -2.395792 3.005778 3.162340 1.168947 -0.236321 0.345811 1.072436 -1.890896 -1.242818 -1.494538 1.142566 -0.514151 -2.645375 -0.816606 0.656196 -1.845437 -0.925842 0.260145 0.190188 1.593768 -0.636409 1.597254 0.240596 0.030409 -1.304769 2.590349 -0.632421 -1.394505 -0.675599 0.145103 0.554376 1.059353 -0.411244 0.295900 0.938410 -0.780548 -0.091460 0.550518 0.290247 -0.430815 2.006443 2.264035 -0.753537 -0.727132 -0.531440 -1.144571 2.947271 -1.482833 -0.064856 -0.013993 0.038082 0.545032 0.972582 1.309427 -0.946049 -1.171210 -1.757922 -0.764685 0.042875 1.435045 -1.438175 -2.777363 -2.347473 0.843532 -0.428595 2.112629 0.582750 3.660204 -1.263332 0.734781 -2.691742 0.124642 1.473688 -0.065820 2.101096 0.219500 -1.030900 -0.466391 -0.628367 -1.985914 -0.015846 -0.202140 -1.042941 -0.950624 -1.211594 1.847677 -0.776393 0.204626 0.353202 -0.430789 2.550586 0.127296 -0.253164 -2.146163 0.943572 0.334481 0.251740 -0.995193 1.895012 0.313174 2.879265 -0.819814 0.415100 -0.356741 1.531802 -1.415925 -2.386494 -0.676841 2.111558 2.153023 1.220446 -0.883284 -0.422657 -0.310490 0.966163 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/weighted-job-scheduling.cpp__main = -0.334722 0.784805 3.854811 1.519514 -1.464559 -2.498491 -0.981181 -3.940090 1.904833 0.998388 2.871712 -0.130288 1.585608 0.019830 0.046873 0.084112 1.339443 -0.533533 0.248820 -1.042707 -0.796424 3.487796 0.992842 -1.134145 0.426027 -3.227338 1.567587 0.805375 1.680363 2.092116 0.408949 -0.020077 -0.376069 1.130503 -1.175262 0.132462 -0.002693 0.921850 -1.543091 -0.200766 0.515809 -0.118048 1.881825 0.113949 1.829775 0.425955 1.442935 -0.014305 -1.381996 -0.885799 -1.234654 2.294828 -1.210841 1.217319 -0.169793 0.070952 0.207988 -1.053474 -0.408125 -1.960427 0.067537 0.079919 -1.329056 0.096129 -1.850864 0.594054 -1.070124 -1.236415 0.339533 -0.636631 1.504335 0.329051 0.374972 -0.737632 -3.301678 0.800875 0.313713 0.606690 1.057116 0.388930 -0.518613 -0.029354 -1.587222 -1.950499 1.688409 1.460639 0.294782 0.098929 -1.023866 -0.544613 -0.220786 -0.076185 -0.023087 1.848548 -2.087642 1.221887 -0.607741 -0.801423 -1.265190 -2.376017 0.014249 -1.888686 0.861600 0.952294 -0.471817 0.273060 -0.317156 0.721669 -0.460116 -2.337412 0.497820 -0.717304 -0.362543 2.593658 -1.259595 -0.744586 -0.715495 -0.103696 -0.042645 1.740725 0.132791 0.879382 2.246878 1.598381 1.115970 -1.751841 -0.185994 1.130860 1.321690 1.047741 1.097464 -1.797300 -1.224507 0.398820 -0.788149 -3.801811 -0.695848 1.579033 1.970551 -0.410819 -1.763705 0.694504 -1.016647 2.173458 2.164455 0.965349 0.782553 0.174511 -1.522793 1.060624 3.885977 -1.207101 1.712210 -1.290047 -1.716489 2.675599 -1.173633 1.655176 0.027646 0.395556 -0.045484 -1.790154 0.057235 2.633433 0.667857 0.808898 0.557279 0.383145 -0.620444 -3.077904 -3.591115 -0.623906 2.009196 0.756759 3.753787 -1.921765 -1.167385 -0.171594 2.102887 -0.174805 -1.312602 0.747533 -1.295164 1.015056 -4.563816 -3.345294 3.782235 3.472147 1.004130 -0.104534 2.066030 1.146629 -1.540797 -1.765087 -1.462301 1.531949 0.273535 -1.816578 -0.750954 0.246292 -2.653769 -0.464388 -0.154896 0.578450 1.297921 -0.596901 0.547495 -0.326772 -2.137332 -1.407236 1.593022 -1.874071 -1.244480 -0.200374 0.195076 -0.000358 0.938687 -0.778859 -0.432498 0.795782 -1.728002 -0.185810 0.710150 1.210910 0.168718 3.249571 3.157192 -0.288134 1.370717 0.120188 -1.396105 4.400312 -1.572808 -0.187559 -0.174100 1.185251 -0.231477 1.044992 1.493865 -0.847668 -1.840102 -2.285214 0.597231 0.087011 1.067593 -1.891728 -2.289358 -2.740150 -0.345539 0.401207 3.022576 0.214760 4.561046 -0.978453 0.883891 -4.769835 0.311138 1.348553 -0.144163 1.918064 1.034870 -1.792822 -2.146870 -0.538130 -1.650890 -0.245862 -0.368149 -2.236541 -1.515072 -1.481910 1.254371 -1.558870 0.631158 1.932013 -0.400490 2.158231 0.120901 -0.523417 -1.453399 0.312181 1.825816 0.455783 -1.529741 2.217043 -0.118959 5.363063 -0.758319 1.621151 -1.284140 0.771970 -0.523026 -1.714349 -0.831267 2.801548 2.359864 0.875813 -0.132176 -0.205482 -0.579121 1.395744 -PE-benchmarks/weighted-job-scheduling.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(Job&, Job&) = -0.876669 0.056883 2.667358 0.404453 -1.240513 -1.347886 -0.686080 -3.629157 2.084474 1.471027 2.495615 0.523199 2.044357 -1.151672 -0.275212 -0.644967 1.547329 -0.839193 0.686051 -0.783357 0.328483 3.160375 0.033791 0.347953 0.287358 -2.671025 1.825034 -0.216906 1.725826 2.375955 0.670703 -0.147397 -1.342974 0.464552 0.493820 0.692617 0.482357 0.927449 -1.165689 -0.414438 0.307862 -1.227788 1.650395 0.143818 1.965942 -0.896791 -0.242069 -0.195553 -0.802740 -1.344376 -0.147022 0.007513 -1.173989 0.958431 0.425430 -1.083904 -0.188904 0.560180 0.115311 -1.082592 0.251560 -1.476924 -0.394632 0.334722 -1.194399 0.495794 -1.917257 -0.388071 -0.421846 -2.035637 0.741178 0.405208 1.004246 0.294513 -3.395025 0.430704 0.348826 -0.173154 1.112639 1.465276 -0.650374 -0.825089 -1.398819 -1.792278 1.255328 2.155006 -0.411543 0.297484 -2.094215 0.038038 0.037017 0.267407 0.657473 1.202488 -2.083974 0.228316 -0.979620 -0.646091 0.590915 -2.998702 0.340866 -1.451814 0.458753 0.430638 -1.045341 -0.299014 -0.383373 0.427798 -0.493001 -1.276835 1.359544 -0.698399 -0.306335 2.511733 -0.865168 -0.898142 -2.048132 -0.066738 0.882416 0.837863 0.105081 0.737668 1.074244 0.991368 1.772903 -1.840272 -0.511723 2.356460 0.871441 0.038267 -0.104192 -0.871024 -0.535244 0.885229 -1.182351 -2.759041 -1.633347 0.706070 1.699488 -0.574015 0.012990 -0.301210 -1.136537 1.200213 2.241373 0.218252 0.619857 0.934493 -1.566756 0.701618 1.996782 -0.512037 0.786258 -0.665819 -0.923236 1.787138 -0.828907 1.153348 -0.826797 0.753954 -0.385788 -1.251802 0.348663 1.913283 -0.329770 1.292963 -1.274851 0.689638 -0.641304 -2.040757 -3.244015 -0.697865 2.908633 1.760001 1.644958 -1.574199 -0.218118 0.438039 1.726564 1.235726 -1.572720 1.240613 -0.960131 1.010788 -3.899049 -2.395792 3.005778 3.162340 1.168947 -0.236321 0.345811 1.072436 -1.890896 -1.242818 -1.494538 1.142566 -0.514151 -2.645375 -0.816606 0.656196 -1.845437 -0.925842 0.260145 0.190188 1.593768 -0.636409 1.597254 0.240596 0.030409 -1.304769 2.590349 -0.632421 -1.394505 -0.675599 0.145103 0.554376 1.059353 -0.411244 0.295900 0.938410 -0.780548 -0.091460 0.550518 0.290247 -0.430815 2.006443 2.264035 -0.753537 -0.727132 -0.531440 -1.144571 2.947271 -1.482833 -0.064856 -0.013993 0.038082 0.545032 0.972582 1.309427 -0.946049 -1.171210 -1.757922 -0.764685 0.042875 1.435045 -1.438175 -2.777363 -2.347473 0.843532 -0.428595 2.112629 0.582750 3.660204 -1.263332 0.734781 -2.691742 0.124642 1.473688 -0.065820 2.101096 0.219500 -1.030900 -0.466391 -0.628367 -1.985914 -0.015846 -0.202140 -1.042941 -0.950624 -1.211594 1.847677 -0.776393 0.204626 0.353202 -0.430789 2.550586 0.127296 -0.253164 -2.146163 0.943572 0.334481 0.251740 -0.995193 1.895012 0.313174 2.879265 -0.819814 0.415100 -0.356741 1.531802 -1.415925 -2.386494 -0.676841 2.111558 2.153023 1.220446 -0.883284 -0.422657 -0.310490 0.966163 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.660757 1.976650 12.685314 7.346894 -4.845302 -6.716370 -2.746535 -8.411539 5.283696 2.585265 8.347042 0.323555 3.992477 0.674177 0.248454 -2.240589 3.565296 -1.035066 -0.815893 -2.896116 -2.094101 9.286554 5.655796 -8.188047 1.218024 -9.239727 5.571401 2.961462 3.443070 7.023134 0.488590 0.718632 -0.618273 4.177231 -5.342004 -1.234615 -1.074298 2.569357 -3.168380 -2.110154 3.909790 1.539335 5.541307 0.869042 5.005870 2.242700 4.689016 -1.030012 -5.757660 -2.455411 -3.681989 6.649622 -3.940613 4.205630 -0.528239 3.363433 1.574492 -5.050180 -1.171120 -10.844835 1.936581 2.459914 -3.972415 -0.543484 -5.787788 1.339968 -1.406680 -4.222428 1.973187 -2.500002 4.370494 0.274816 1.044844 -4.957702 -7.494117 2.669112 0.394260 1.985400 3.229060 1.575617 -3.582535 -0.065282 -3.910220 -5.113100 3.093029 1.266606 0.466966 0.965429 -0.225886 -2.515519 0.442572 -0.186823 -2.285871 6.106277 -6.106921 4.949544 -0.154471 -2.071005 -3.474347 -3.591229 -0.489640 -6.144197 2.190429 5.798191 -2.872455 1.440391 -1.314731 2.278947 -1.116279 -6.873961 1.201158 -2.347603 -1.493378 5.496877 -4.344441 -2.270816 -0.047252 0.192632 0.965120 6.484954 -1.388135 2.764582 6.800363 4.505981 2.483061 -5.107479 1.888918 2.563966 4.207532 3.512101 3.801737 -5.421889 -3.477529 0.583583 -1.496536 -11.101471 -0.194716 5.225733 6.014626 0.628869 -9.329409 3.477187 -2.962076 7.274616 6.317140 5.054061 2.408421 0.203413 -4.503523 2.408668 12.753236 -4.031048 5.182741 -2.937941 -7.341116 9.751755 -3.537383 5.922600 -0.107760 1.171868 1.770015 -6.188717 0.035650 8.819618 2.560386 2.144071 3.581693 0.134227 -0.113806 -10.625507 -10.581137 -2.592003 4.522560 3.373663 14.055106 -5.912107 -2.985709 -1.760708 6.098476 -2.093961 -3.450063 0.725580 -2.371780 2.625941 -16.253181 -10.809420 11.450984 9.807089 1.685441 0.228186 7.695667 1.854131 -0.630436 -4.905613 -4.507855 4.224709 1.776515 0.528978 0.042432 0.227078 -8.288793 -1.317620 0.297435 1.163941 4.398761 -5.164296 -1.877600 -0.711374 -7.796341 -4.708873 2.597211 -7.322549 -4.126794 -0.580925 0.817607 0.035245 1.796317 -1.287451 -3.145698 1.304586 -5.070416 -1.867673 1.508213 4.715710 1.456933 9.178672 9.512438 -0.833382 3.085325 1.716533 -4.028151 17.199600 -5.766462 -1.624842 -0.280023 5.521354 0.228600 3.063450 3.961757 -2.312399 -3.614243 -6.927407 4.062618 -0.069719 2.779691 -11.083874 -5.786007 -7.564721 -1.584915 1.586569 8.424767 -0.254655 15.201091 -2.078085 1.571390 -15.992644 0.454799 5.829407 -0.303855 5.160884 4.395341 -6.165156 -9.777908 -1.561354 -3.278443 4.062279 -1.063562 -6.670318 -4.414039 -3.058795 2.403522 -4.941297 3.614005 7.896542 -2.216244 5.761375 1.000253 -1.605333 -2.641171 -1.003145 3.514227 2.804512 -4.501728 7.853552 -1.182746 15.301965 -2.802670 5.873328 -4.938440 3.123221 -1.802733 -3.867447 -2.799831 8.332538 6.623563 2.796966 1.143329 0.115823 -3.050843 4.595788 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = -0.962387 2.852023 9.757500 3.799957 -5.830366 -7.395512 -3.043705 -10.110308 3.905339 2.628906 6.614989 -1.741232 2.189602 0.766291 -0.147678 1.381180 3.747902 -1.053664 -1.377863 -4.136975 -3.483582 5.643063 1.386904 -2.529728 2.391900 -7.122567 4.787958 1.610510 2.383511 4.366272 2.954783 -0.740840 -1.300712 3.896360 -1.396482 4.258279 1.029256 1.932377 -4.045534 1.375523 1.675002 0.744423 4.791626 0.892606 5.965199 5.007891 3.451976 0.526415 -6.510031 -1.977345 -3.231034 6.900290 -3.957295 4.053615 -0.268451 1.626567 0.141920 -4.880832 -0.796005 -3.356107 -1.270081 0.160670 -3.708298 0.198957 -5.653480 0.558189 -2.340033 -3.023754 0.654986 -1.850934 3.735044 -0.460813 -1.055925 -0.091218 -5.523061 1.926560 1.671299 2.704939 4.104300 -1.305441 0.185495 -0.962547 -3.360492 -5.028388 3.707169 1.634544 2.379739 1.161844 -1.599290 -2.178366 -0.946552 -0.683458 0.917828 5.141487 -5.117762 1.346797 -2.096877 -2.824760 -5.264978 -6.420378 0.709374 -3.867968 3.077939 2.501310 -2.038335 0.573098 -0.457445 2.246184 -0.382260 -3.968623 0.877968 -1.756260 0.711056 6.766127 -2.666100 -3.904410 -1.557789 -1.398996 -0.266613 4.674405 1.771634 0.714552 6.349068 4.264181 6.639179 -4.665114 -1.313703 0.589054 2.813106 3.504895 4.132709 -4.410371 -3.281937 1.080556 -3.224752 -8.719864 -1.649527 2.121601 6.520314 0.588419 -4.748499 1.001655 -3.180395 4.924491 2.476764 3.174554 2.347070 -0.696883 -4.594488 1.778842 9.315107 -2.717909 4.055889 -3.410981 -2.941930 3.932834 -0.829220 2.718162 1.701115 -1.052995 -0.292429 -4.415383 -0.207489 6.433641 2.444430 0.667578 1.684027 2.206375 -3.528805 -7.484033 -8.488200 -0.657697 4.395483 0.028717 7.988514 -5.806467 -2.792333 -2.036083 6.808904 -1.283283 -3.009854 1.396347 -3.383682 2.904619 -8.084705 -7.113935 10.551374 10.166678 3.408730 -1.382441 4.767977 2.754861 -6.716257 -4.167652 -4.246636 3.229289 0.978739 -4.244168 -2.175227 0.779473 -6.621463 -1.482782 -0.236789 2.729857 2.881507 -0.594886 0.376512 -0.228604 -4.741668 -3.604956 2.536088 -4.207450 -2.014227 0.817231 0.629507 0.140577 2.992203 -2.937559 -2.805197 1.832098 -4.842956 -0.411384 2.140782 5.420665 1.194771 8.639129 6.870964 -1.053258 6.056434 0.490675 -4.337925 10.446099 -2.628930 0.980377 -0.629492 3.271087 0.218208 1.670914 4.232770 -2.855032 -4.995345 -6.051576 -0.134114 0.129031 2.921107 -3.825463 -5.162209 -8.463082 -0.110521 0.019326 7.332793 0.669363 10.557725 -0.786919 2.101690 -11.163049 0.807979 5.094199 -0.763224 3.040789 3.240848 -4.996398 -6.735869 -0.592566 -5.476976 -2.235793 -0.582019 -3.058102 -4.133829 -3.379956 4.438038 -2.163922 1.109746 6.108118 0.025139 4.493819 0.934615 -1.211170 -2.429457 -1.392101 6.193007 1.200953 -4.629441 5.526078 1.451314 15.102255 -0.333119 4.112557 -3.012851 -0.172626 0.148917 -4.241930 -3.751386 6.578599 5.949604 2.989104 0.857820 -0.024840 -1.767685 4.611964 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -4.687013 6.131114 26.909270 13.979962 -13.338582 -15.332596 -8.059287 -22.591796 10.131726 7.111897 19.021817 -3.745401 6.685289 2.898000 -0.137267 -2.828892 8.889703 -2.490427 -2.303427 -8.416762 -7.818227 14.432972 8.255202 -13.099574 3.901788 -17.390576 9.962954 7.197058 4.989064 9.560663 3.000718 0.537442 -2.878948 10.073676 -10.203716 0.654252 2.308825 5.787200 -7.854578 -1.770593 6.956946 3.850091 12.266284 0.376931 13.032396 7.808635 8.385937 -1.270475 -16.991723 -5.323665 -4.063037 15.480049 -8.151106 9.273873 2.624552 5.259529 1.591837 -14.066950 -2.059815 -16.063589 2.906843 2.325934 -8.150468 0.087351 -10.970661 2.263489 -2.031626 -9.838017 6.073897 -5.727036 8.576496 -1.540864 -0.946705 -4.793041 -11.614907 6.675610 4.860053 4.109102 7.692504 0.786574 -1.372218 -0.457084 -8.374013 -11.903249 7.055933 4.506606 4.382567 2.659130 -3.750311 -4.069358 3.381213 -2.164992 -1.351452 14.263689 -12.166985 6.082777 -1.329536 -7.994252 -13.093956 -11.995710 0.076659 -12.343353 7.525594 10.365103 -10.034010 4.144728 -3.033193 6.347608 -2.308020 -13.885918 1.424129 -6.259990 2.827419 14.720887 -9.478500 -8.138611 -2.780323 -2.043414 0.694278 11.605712 0.644093 3.684352 16.749313 10.289283 7.572662 -12.809418 -0.993153 2.132763 7.843643 8.425473 9.604592 -13.255839 -7.889788 1.446464 -6.859555 -22.978288 -3.707730 5.035861 14.083780 0.811977 -15.812377 5.357526 -7.338502 14.076604 9.483207 10.577689 3.764405 -0.559923 -10.531106 3.747676 21.308150 -8.667421 11.612563 -5.466016 -13.094380 12.205597 -3.913742 10.407899 3.361341 -0.403898 1.967127 -13.179395 -0.364854 18.052243 5.135910 3.444498 4.414182 2.509082 -4.892294 -20.277117 -24.365915 -1.203516 9.179296 3.517793 24.761217 -14.513910 -10.643980 -4.191406 17.533788 -4.071111 -8.033482 2.720472 -6.121760 6.727685 -24.244316 -21.651100 22.771830 22.804516 6.237343 -2.030194 15.783949 1.181645 -9.779354 -10.641661 -9.994197 9.456500 3.959441 -3.408539 -2.171346 1.739002 -16.036875 -2.186582 -0.998258 4.888285 7.226231 -8.269833 -0.344112 -0.155587 -14.403286 -7.934982 5.826229 -12.085239 -5.788240 -0.443003 2.058063 1.217592 6.580128 -6.282209 -9.444091 1.485586 -11.962014 -2.566302 4.907260 12.440732 3.711273 22.834251 18.271092 -2.603634 12.754347 1.356778 -8.888640 30.895415 -11.211128 -0.464887 -0.697647 10.169145 -1.654071 4.845232 11.124844 -5.840092 -9.754058 -14.459893 3.207001 -1.206183 6.733478 -18.759679 -12.357094 -19.425314 -2.597640 1.830603 16.921750 0.117420 28.946208 -2.139835 4.249463 -30.715847 0.522280 10.839042 -2.432482 10.116245 8.675252 -14.291085 -23.129102 -2.321749 -11.650076 0.743837 -0.814080 -10.782906 -10.345912 -7.285794 9.585892 -6.597326 5.081345 16.141709 -1.412137 9.944574 4.076270 -3.425765 -3.572049 -3.960584 12.398429 2.932355 -11.436633 16.626311 0.658307 37.328601 -2.129281 11.839843 -9.255525 1.374005 -0.682051 -8.132305 -8.032546 17.104794 15.299175 7.690733 -0.861996 0.715835 -8.021730 11.328585 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.240858 0.900698 3.223319 1.965840 -1.327593 -2.210074 -0.819344 -3.243606 1.745560 0.576871 1.816547 -0.329124 0.997524 -0.125101 -0.344552 -0.057395 0.990536 0.145665 -0.011901 -0.846314 -0.819602 2.840578 0.611464 -1.548000 0.366565 -2.637806 1.268810 1.013304 1.785287 1.458681 0.339931 -0.091873 -0.142553 1.101823 -1.481807 -0.332303 -0.221690 0.619957 -1.956605 -0.231215 0.309214 0.520229 1.653426 -0.039592 1.273955 0.443357 1.317201 0.038252 -1.207261 -0.337788 -1.003100 2.309965 -0.539167 1.197771 0.096421 0.194086 0.138698 -1.232990 -0.236826 -0.966395 0.123694 0.600023 -1.140981 0.031071 -1.882451 0.193958 -0.798232 -1.276558 0.611188 -0.518491 1.098816 0.198293 0.153474 -1.354907 -2.645573 0.872764 0.368864 0.744906 0.956715 0.644267 0.280066 0.082782 -1.258344 -1.434773 1.151190 1.133703 0.254875 0.334066 -0.579093 -1.337840 0.078606 -0.268375 0.111845 1.396661 -1.494218 1.167907 -1.136473 -0.630444 -1.126656 -2.001361 -0.038937 -1.389732 0.879251 0.454334 -0.333638 0.720469 0.750117 0.697198 0.273152 -1.840724 0.210954 -0.495173 0.168659 2.764246 -0.722457 -1.083770 -0.591545 -0.085457 -0.835723 1.500405 0.071284 0.567567 1.801282 1.210116 1.034084 -1.479782 -0.126733 0.890785 0.606167 1.087310 1.171291 -1.548957 -0.914382 0.031162 -0.178272 -3.275796 -0.478859 0.835387 1.477217 -0.313161 -1.256679 0.366857 -0.806168 1.727617 1.065501 0.525687 0.869701 -0.040842 -1.004275 0.833719 3.151841 -0.857520 1.048323 -1.361950 -1.800768 1.719240 -0.470626 1.433752 -0.335467 0.073226 0.405946 -1.497414 0.532513 2.141383 -0.009362 0.084541 0.833469 0.217059 -0.774786 -2.588117 -2.858360 0.099546 0.996555 0.385750 3.304958 -1.504721 -1.273776 -0.453430 1.754170 -0.220968 -0.427875 0.737286 -1.405062 0.917760 -3.337732 -2.827831 2.855526 2.749271 0.643031 -0.465838 1.741035 0.527865 -1.183517 -1.723798 -1.278638 0.999583 0.717311 -1.281828 -0.510600 0.120141 -2.049879 -0.223342 0.273413 0.451119 1.295401 -0.687069 0.281659 -1.040770 -2.107968 -1.606980 1.533302 -1.603479 -0.237918 0.060545 0.223989 -0.302225 1.226155 -0.809436 -0.876927 0.439383 -0.994071 -0.139462 0.290881 1.191215 -0.197607 2.367211 2.473291 0.018871 2.030870 0.465119 -1.333407 4.436768 -1.368645 -0.080228 -0.155342 0.987768 -0.486351 0.906562 0.923439 -0.794912 -1.253339 -1.881576 0.410602 -0.033780 0.649549 -2.009738 -1.627143 -2.221885 -0.674925 0.021037 1.983877 0.451826 3.552315 -1.021620 0.534764 -3.880615 0.226049 1.324847 -0.012241 1.933751 1.009822 -1.826860 -2.032458 -0.345901 -1.409343 0.016706 -0.517362 -2.302363 -1.338751 -0.917930 1.221775 -0.996619 0.773299 2.328907 -0.469605 1.379869 -0.591394 -0.292283 -0.860838 -0.367031 1.344563 0.310792 -1.433691 1.617417 -0.269214 4.438065 -0.325864 1.431023 -1.358990 0.294786 -0.353375 -1.667202 -0.903613 2.264140 1.478207 0.709760 -0.129237 -0.133260 -0.854918 1.177639 -PE-benchmarks/Iterative_QuickSort.cpp__main = -0.163382 1.236053 4.541901 2.483096 -1.868408 -3.358826 -0.945806 -3.476777 1.377306 0.675715 2.774570 -0.534519 1.367390 0.958677 0.176218 -0.236634 1.654383 0.001929 0.228418 -1.218853 -1.497958 3.079036 1.216998 -1.994425 0.469441 -3.594947 2.203980 1.572004 1.366081 2.657664 0.565163 0.013140 -0.391851 1.283796 -1.812165 -0.521640 -0.194375 0.623841 -1.620162 0.050496 0.620294 0.256172 2.326300 0.284572 1.247348 1.225213 1.923714 0.204600 -1.752598 -0.715663 -2.019941 2.586940 -1.124547 1.282226 -0.331904 0.718245 0.836676 -1.638762 -0.304811 -2.612162 0.242732 0.519289 -1.727620 -0.012899 -2.411764 0.417179 -1.610567 -1.810305 0.840506 -0.313064 1.453418 0.082121 0.190337 -1.408451 -3.345939 0.906729 0.114355 1.012350 1.103427 -0.024508 -0.801627 0.494930 -1.954833 -1.848879 1.251361 0.725230 0.577646 0.042096 -0.752214 -1.173453 -0.241693 0.028746 -0.319996 1.837336 -1.531542 1.882645 -0.952683 -0.820548 -1.914865 -2.414375 -0.042945 -1.854224 0.891610 1.425093 -0.657608 0.290377 -0.700490 0.687581 -0.301707 -2.824571 0.426332 -1.111189 -0.405669 2.510976 -1.545335 -0.975107 -0.521204 -0.175259 0.136994 2.318565 -0.296753 0.725878 2.006130 1.669154 0.810102 -1.801075 0.248704 0.507740 1.056370 1.309693 1.627192 -1.770422 -1.438936 0.015280 -0.904895 -4.118806 0.051835 1.657212 1.996941 0.144080 -2.577624 0.872730 -1.514744 2.435953 1.984564 2.010312 0.966324 -0.062811 -1.397913 0.995670 4.432046 -1.636009 2.175793 -1.605528 -2.296660 3.034031 -0.694417 1.969790 0.035881 0.221547 0.445594 -1.720621 -0.200601 3.124640 1.106150 0.500049 2.114882 0.134568 -0.377894 -3.651638 -3.640002 -0.035157 2.170349 0.503948 4.501720 -2.333947 -1.111658 -0.337322 2.205627 -0.646716 -1.320564 0.429248 -0.891173 0.901674 -5.822489 -3.878616 3.758258 3.049799 0.441122 -0.363796 2.182219 1.093010 -0.882763 -1.922608 -1.822181 1.631508 -0.084624 -0.795681 -0.421280 0.038178 -2.887595 0.200531 0.116925 0.772060 1.942581 -1.673427 -0.474061 -1.036114 -3.247397 -2.035652 1.496921 -2.838210 -1.247738 0.165447 -0.053204 0.049280 0.703708 -0.233755 -0.896935 0.896443 -1.891635 -0.586110 0.574994 1.631669 0.353014 4.002349 3.266363 0.137614 1.460425 0.567426 -1.640698 6.242014 -1.794716 -0.099375 -0.169544 2.000417 -0.429468 1.120965 1.794189 -0.775302 -2.357483 -2.549961 1.106347 -0.040688 1.102125 -2.800364 -2.060390 -3.324237 -0.603048 0.519387 3.701367 -0.112824 4.882653 -0.573401 0.821671 -4.977138 0.230667 1.683960 -0.193929 1.941516 1.347157 -2.330147 -2.429829 -0.419526 -1.709912 1.104001 -0.182759 -2.718159 -1.791934 -0.927069 0.289223 -1.340076 1.014349 2.580944 -0.966461 1.793100 0.551583 -0.680098 -0.805807 -0.279865 2.221191 0.662874 -1.780406 3.033168 -0.268094 5.859183 -0.439104 1.849286 -1.445105 0.419564 -0.118433 -1.290809 -1.126770 3.045273 2.206522 0.970253 0.216495 0.194742 -0.475348 1.515841 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = -1.120217 1.456952 7.263404 4.276876 -3.086906 -4.230152 -1.740548 -4.335660 2.589116 1.138498 4.300769 -0.423312 1.675192 1.188064 0.001494 -1.507004 1.769278 -0.366384 -0.476979 -1.599244 -1.872672 4.363244 3.029367 -4.565234 0.646107 -5.317295 3.150398 1.990442 1.911579 3.758581 0.104959 0.189062 -0.333045 2.398741 -3.112599 -1.060297 -0.334735 0.999208 -1.936491 -0.813501 2.025428 0.902092 3.243093 0.275652 2.490882 1.714343 2.565679 -0.508809 -3.580376 -1.156888 -2.432806 4.054151 -2.004877 2.314941 0.307405 2.233026 0.782727 -3.482224 -0.822964 -5.411176 1.017127 1.237767 -2.194870 -0.195847 -3.632218 0.761875 -1.341365 -2.554599 1.727130 -1.506453 2.420763 0.130509 0.847576 -2.498089 -3.806095 1.938329 0.099716 1.497072 1.560036 0.456023 -1.455962 0.637864 -2.233443 -2.674097 1.007776 0.421384 0.304467 0.158887 -0.126188 -1.905636 0.471986 -0.322058 -1.566421 3.403751 -3.074968 3.175132 -0.856228 -1.165119 -2.490091 -2.902020 -0.606865 -3.464489 1.342211 3.239269 -1.820098 0.919228 -0.297480 1.408051 -0.099330 -4.336881 0.653044 -1.013446 -0.591365 3.309064 -2.682526 -1.324462 0.164795 0.035184 0.075769 3.572325 -0.925796 1.646035 3.395115 2.609240 1.347568 -2.768479 0.983370 1.090126 2.104505 2.027635 2.661210 -3.285137 -1.906829 0.031079 -0.559533 -6.325502 0.199321 2.619495 3.407305 0.895338 -5.151536 1.558970 -1.817328 3.983886 2.851232 3.153583 1.369358 -0.287837 -2.366421 1.414163 6.849263 -2.495078 3.107389 -1.949369 -4.213085 4.979693 -1.694728 3.404842 -0.163292 0.910685 1.519780 -3.718344 -0.163175 4.866316 1.486809 0.914539 2.922745 -0.169416 -0.394971 -6.145668 -5.419571 -0.748319 2.218928 0.991279 7.317871 -3.532347 -2.008755 -1.236275 4.113725 -1.273045 -1.651966 0.212700 -1.199777 1.327279 -8.682287 -6.074382 5.711901 5.539045 0.442721 -0.009299 4.149784 1.076837 -0.667048 -2.868320 -2.909369 2.364982 0.789436 0.559255 -0.132848 -0.163472 -4.513415 -0.206757 0.366432 0.797228 3.077530 -3.102788 -1.491995 -0.511933 -4.801569 -3.046934 1.646302 -4.411164 -2.054321 0.002311 0.508880 -0.076351 1.095680 -0.605332 -2.197549 1.042630 -2.701345 -1.021417 1.019744 2.793485 0.698614 5.626213 4.750874 0.088396 2.144512 1.247541 -2.338247 10.294454 -3.434179 -0.904259 -0.286184 3.153262 -0.559633 1.760538 2.025539 -1.241152 -2.510110 -3.824763 2.270606 -0.758157 1.452036 -5.948945 -3.527105 -4.542459 -1.173565 1.108684 4.615321 0.145046 8.042410 -0.764250 0.713361 -8.455892 0.101869 3.340129 -0.148175 2.999232 2.628044 -3.619400 -5.633789 -0.689223 -1.754497 2.549893 -0.745633 -4.269616 -2.410218 -1.591175 1.240502 -2.095158 2.009395 4.499531 -1.116208 2.872167 1.005767 -1.156748 -1.322284 -1.094479 2.321008 1.472469 -2.600289 4.974159 -0.692101 8.719957 -1.168413 3.157281 -2.848257 0.913071 -0.579243 -1.744702 -1.534164 4.677216 3.303616 1.716849 0.319921 0.072609 -2.163801 2.320708 -PE-benchmarks/cut-vertices.cpp__main = -1.019365 5.520007 25.785388 9.425731 -9.014708 -17.991367 -6.084264 -26.941585 13.522974 6.890898 19.234199 1.024222 10.645798 0.650139 1.855822 3.035280 9.562113 -1.881159 -0.465075 -7.804083 -3.003996 21.511760 7.198477 -8.141177 3.616621 -19.420505 6.157188 7.939381 12.451320 11.961770 2.949323 -0.065292 -2.179287 8.056793 -9.294396 0.355171 -0.620175 4.797376 -12.807855 -1.937320 2.565606 1.260564 13.243839 2.245625 13.992131 1.074965 11.540363 -0.259067 -8.282459 -5.270748 -9.065362 19.903529 -6.753239 9.395592 -1.468957 1.920617 -0.626842 -7.356038 -1.646779 -12.128693 1.378288 3.125125 -9.985082 -0.735761 -11.152965 3.095793 -6.088335 -8.097983 1.581676 -4.889933 10.466285 -0.362938 -0.316822 -6.642175 -23.318724 3.718064 1.583116 4.182782 8.224921 2.925412 -3.419674 -1.729744 -8.903403 -12.667389 12.271654 9.704769 0.903881 2.851842 -9.526926 -5.169915 -2.481025 -1.042712 -0.117795 11.881151 -16.733759 8.961311 -1.145355 -6.446672 -8.612065 -13.128133 1.288158 -11.976795 5.250840 2.197656 1.039984 2.651835 -3.132394 4.795180 -3.913061 -14.204306 3.302303 -2.171113 -4.396088 17.393587 -8.386801 -5.176066 -3.413824 0.137450 -2.419059 11.832265 2.089421 5.571390 14.597449 10.952070 7.230284 -11.685474 -0.502111 7.079598 8.835464 9.074065 7.001963 -10.706164 -8.306390 3.737991 -5.584523 -25.357731 -3.883277 12.116083 14.113804 -1.099048 -10.616852 2.095361 -6.256221 14.033812 13.482334 5.652614 5.454319 0.584763 -10.620201 6.482101 26.106634 -8.768716 12.177832 -7.187587 -9.098803 15.273475 -9.487167 11.051461 0.335793 0.678561 0.599183 -10.242741 -0.779595 17.956457 5.284171 4.589499 2.429738 2.719168 -5.815811 -19.841765 -25.194641 -6.445977 10.892841 4.536130 22.875966 -10.944484 -9.440186 -3.165843 13.640086 -2.982002 -8.774411 6.143615 -10.305475 7.302909 -27.889564 -19.675704 25.363945 25.692328 8.689773 -1.756034 14.844966 7.866594 -10.445095 -12.155040 -7.543671 9.350181 3.227128 -12.351141 -4.008050 0.648291 -18.361880 -3.023643 -1.844040 3.299818 4.550934 -1.309985 7.457402 -0.889219 -14.531873 -7.901198 8.382882 -11.904163 -7.014908 -2.038730 1.179023 -0.851160 5.885222 -6.840247 -3.989163 7.027933 -12.466443 -0.984736 3.594461 9.051098 3.247992 20.535647 19.650807 -0.541694 14.309668 0.467677 -10.980661 27.376223 -10.378561 -0.400918 -1.208400 6.594283 -2.505519 7.316937 7.599132 -5.778374 -10.818604 -15.083711 3.136675 1.411884 8.811288 -8.995506 -15.559938 -16.951222 -2.708117 2.766666 19.404848 -0.671932 29.076557 -7.697702 7.188456 -32.239476 2.581066 7.638032 -1.592170 11.291930 7.439331 -12.891732 -15.652648 -2.749692 -10.946164 -3.609419 -0.738519 -14.268624 -10.209666 -11.417636 10.693158 -12.846174 3.972274 12.063453 -3.565057 15.256613 -1.266683 -3.272700 -8.289174 2.274073 13.734216 3.360049 -11.485699 12.537859 -0.926519 36.814723 -4.854264 13.430922 -9.123766 4.121361 -3.711284 -10.819298 -6.758512 19.321739 17.565513 6.245058 -1.326598 -1.344771 -4.218550 8.907736 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -3.573969 3.085871 21.118608 11.420875 -8.277788 -9.530940 -5.112600 -15.286078 9.339480 4.560319 14.093014 0.366735 5.548440 1.859251 0.461914 -2.938491 4.922018 -2.406745 -1.698073 -4.754680 -3.153563 13.566322 10.747565 -12.856617 2.299513 -14.942275 6.460446 3.872372 6.920003 9.663060 0.846226 0.663488 -0.824080 7.092261 -8.560040 -1.726199 -1.295263 3.763907 -6.628068 -3.478541 5.922115 2.731755 8.435615 1.656554 9.855012 2.269410 7.544636 -2.248892 -9.706395 -3.057054 -6.125671 13.889846 -6.822093 7.181656 1.209048 6.004310 -0.157177 -9.538541 -2.958712 -16.289806 2.649850 3.537889 -6.129264 -0.413508 -9.102701 2.897119 -2.939173 -5.663305 3.623409 -4.047514 8.223258 0.505029 2.283957 -6.602820 -11.538937 5.029947 0.513693 3.225392 5.490244 2.410632 -3.984990 0.215420 -5.011185 -8.477083 5.755249 2.551781 -0.402004 0.681687 -0.093307 -4.023490 1.080071 -1.607779 -4.306605 10.550409 -12.326159 8.941499 -0.230151 -4.149393 -5.311548 -6.763886 -1.277984 -11.071827 4.356232 8.349500 -4.309653 3.297453 -0.830169 5.016991 -1.194114 -11.999283 1.723023 -0.884590 -2.426687 10.225430 -7.915458 -3.753997 0.709554 0.935099 -0.395993 9.743376 -1.070284 6.045295 11.410114 8.263468 4.417993 -7.809879 3.251545 4.628925 6.796066 6.640926 6.570775 -9.438340 -5.750317 2.021746 -0.706609 -17.982643 -1.265858 8.462294 10.385370 2.290645 -14.247130 2.648011 -3.786509 11.506869 9.359536 7.352367 3.988592 -0.310489 -6.993046 4.202154 20.650685 -7.002848 8.607139 -4.002127 -10.731795 13.555013 -7.577541 9.943968 -0.490919 2.886826 3.997638 -11.610716 -1.142464 14.408612 4.321727 2.674180 4.523957 0.491272 -1.878781 -17.741581 -16.865866 -4.810765 5.316314 3.224967 19.970209 -8.616565 -6.410596 -3.609645 11.591798 -2.238426 -5.121731 1.587951 -5.031926 4.393898 -23.248274 -16.437695 17.793577 17.984945 3.933055 -0.178078 12.582019 3.795004 -3.559963 -8.691466 -7.510393 7.001385 3.635826 0.186948 -1.337413 -0.527299 -13.573401 -2.640348 0.436593 1.957990 6.831790 -6.521287 -1.573039 1.827783 -12.919783 -5.891289 4.888984 -11.868216 -7.029036 -1.553199 1.840726 0.194249 3.304576 -3.629841 -5.425377 3.256997 -8.569603 -2.777601 3.322566 8.656045 1.899509 14.898315 14.607299 -0.240845 6.624550 2.429478 -7.691953 26.088377 -9.371918 -3.032595 -1.195105 6.304510 -1.553897 4.458440 4.912561 -4.146872 -7.224488 -10.692239 5.928012 -1.590309 5.430688 -15.538118 -11.213211 -11.033336 -3.128768 3.534152 11.862820 0.988509 23.919153 -3.765061 2.434281 -25.871411 0.636329 9.532319 -0.708680 8.808007 7.481334 -9.891307 -17.315799 -2.738416 -5.430314 5.975472 -2.174136 -11.421034 -7.203392 -6.632331 7.981169 -7.377911 5.684309 12.229221 -2.615351 10.241210 1.836783 -3.432440 -4.742780 -1.212492 5.902288 4.304531 -8.388872 13.056725 -2.024750 26.411231 -4.911094 9.347811 -9.070147 2.941937 -3.226532 -4.439591 -4.112714 14.002054 11.890594 5.450246 0.251599 -0.922527 -7.166543 6.203079 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/program-wish-womens-day.cpp__main = -2.940007 5.662807 19.485232 14.348540 -9.891912 -7.649671 -5.404197 -10.103800 5.188116 1.688236 8.323699 -4.886009 2.492958 0.356351 -2.715403 -7.683214 4.251850 -1.131545 -1.495006 -6.048807 -4.885725 8.860678 5.388333 -15.119160 1.189252 -15.925696 10.549682 5.724804 3.914133 8.323499 0.514723 0.219539 -1.733776 6.749519 -9.946056 -4.690338 0.079604 1.835998 -6.293262 -0.989855 5.935439 8.546672 7.496136 -1.463222 3.549820 7.348526 5.559996 -0.080288 -12.599759 -1.130225 -1.846766 9.960413 -2.544027 5.900461 5.353352 5.268281 2.172135 -12.792024 -3.180573 -11.638254 3.330283 4.334956 -4.802519 -0.151453 -10.549408 0.739887 -1.340727 -6.342937 7.183779 -3.034598 2.612979 0.007616 1.387829 -9.871095 -4.995150 7.637431 2.960162 5.045794 3.197305 0.850518 1.321522 1.561448 -5.817995 -6.769350 -0.461223 1.395197 2.278487 0.883687 3.702620 -7.293192 4.846930 -2.631633 -4.881044 7.775501 -6.234855 5.657339 -6.392372 -3.986737 -9.763013 -5.292818 -1.929418 -7.670438 5.014446 10.952943 -9.741931 3.563690 2.864116 3.823434 1.637821 -7.708749 -1.579105 -4.530920 4.960241 12.068575 -6.011224 -6.144269 -2.479076 -1.493666 -1.153443 9.314237 -5.284136 4.366424 10.283006 8.150564 3.977714 -8.480181 2.359990 1.328358 3.711140 5.532809 9.260742 -12.300963 -5.171383 -1.621867 -0.099539 -14.765004 0.612437 -0.397960 8.835416 1.818310 -14.565420 5.804901 -5.294884 12.962809 2.344863 5.489013 3.148453 -2.757122 -6.252851 4.668939 16.861309 -6.553552 6.184972 -8.026624 -13.113518 9.534549 1.736683 8.340327 0.505514 0.339275 4.164964 -9.750367 2.681564 12.645805 2.243220 0.878201 8.391992 0.781633 1.752912 -16.582345 -14.230843 2.562199 0.841873 -0.888909 22.194878 -9.598570 -8.022164 -6.414260 11.501801 -2.924410 -1.564784 -0.034352 -4.771752 3.498134 -14.452669 -16.470878 13.707067 14.498298 -1.421798 -1.289154 11.580086 -1.197340 -2.301748 -7.149448 -6.275772 6.155648 2.833515 4.361128 0.733433 1.140415 -11.324947 -0.800823 3.005285 3.535902 9.677895 -10.446364 -7.346720 -2.487337 -14.294895 -10.612754 5.617779 -10.558955 -1.392970 2.060142 1.394236 0.635927 7.074095 -3.343507 -8.576865 -0.800862 -4.780910 -3.601348 1.371323 9.620489 0.562476 11.215746 9.565817 1.901830 10.011135 4.450622 -6.219452 29.490664 -6.948717 -2.680766 0.204997 6.877326 -1.943485 4.572895 4.642629 -3.976457 -3.197659 -10.844461 6.373520 -3.777103 2.053289 -21.117912 -6.707246 -12.317600 -3.876793 1.147225 7.519770 1.983298 19.531977 -0.452492 -1.032076 -21.061323 -0.068868 8.263283 0.601613 7.092367 7.565915 -10.352159 -16.925378 -0.249573 -5.808133 6.555144 -4.251975 -10.881501 -7.895916 -0.931686 7.186737 -1.116556 6.273122 16.161066 0.446658 2.548388 4.099684 -2.823033 -1.074897 -7.489768 3.726985 4.152802 -6.993962 12.112720 -2.354088 22.155648 -2.043829 7.926767 -8.864199 0.785656 1.117344 -6.815463 -4.959417 12.324798 3.880495 5.481891 1.072184 0.754603 -8.375868 9.098536 -PE-benchmarks/naive-algorithm.cpp__main = -0.375317 0.742373 3.052181 0.632566 -1.203115 -1.995898 -0.885260 -3.423367 1.307471 0.943612 2.424920 -0.463416 1.171732 0.317321 0.071842 -0.018818 1.076458 -0.771103 0.373952 -0.929981 -0.621765 2.068240 0.456143 -0.217356 0.357568 -2.538262 1.181511 0.524055 1.022239 1.410432 0.464178 -0.192609 -0.629404 0.888465 -0.579304 0.385671 0.708237 0.673291 -1.058454 0.118641 0.113943 0.019232 1.467070 -0.010771 1.653376 0.665772 0.608624 0.172218 -1.231223 -0.824877 -0.395683 1.524216 -0.989092 0.847897 0.388956 -0.136796 -0.075712 -1.051328 -0.290865 -1.047456 -0.009111 -0.302268 -0.873684 0.313354 -1.343414 0.437241 -0.955202 -0.861340 0.338602 -0.860616 1.067396 0.100293 0.247923 0.179774 -2.227422 0.698161 0.426906 0.363034 0.781376 -0.105152 -0.202344 0.081444 -1.264430 -1.602860 1.072535 1.547712 0.400027 -0.003166 -1.121072 -0.072678 0.019305 -0.237283 0.172077 1.562197 -1.395096 0.552767 -0.557696 -0.889601 -1.357883 -2.349514 0.170282 -1.378897 0.906934 0.620824 -0.672314 -0.033945 -0.506509 0.647853 -0.380042 -1.738946 0.552327 -0.689108 0.321459 2.105644 -1.178934 -0.626021 -1.040972 -0.392261 0.204058 1.197608 0.252117 0.466377 1.619549 1.307806 1.024035 -1.516560 -0.594981 0.723769 0.982307 0.740222 0.873104 -1.623054 -0.842221 0.420390 -1.052749 -2.860828 -0.802635 0.614335 1.596381 -0.364430 -1.081313 0.327105 -0.999799 1.512262 1.563321 0.864709 0.460673 0.144719 -1.225647 0.652751 2.387790 -0.930536 1.434557 -0.910382 -1.004801 1.338717 -0.706524 1.219029 0.330845 0.310706 -0.237715 -1.335047 -0.043278 1.911315 0.720744 0.899141 0.083868 0.439317 -0.627887 -2.129840 -2.802788 -0.203788 1.771312 0.224960 2.212366 -1.690658 -1.091011 -0.124449 2.119822 0.077115 -1.217994 0.633082 -0.897697 0.792123 -2.788165 -2.359894 2.545301 2.981343 1.011222 -0.275401 1.286453 0.711663 -1.822534 -1.204571 -1.175382 1.275952 -0.334300 -1.805431 -0.748008 0.199874 -1.872612 -0.269861 -0.324129 0.682334 1.117634 -0.260473 0.648336 0.106628 -1.326880 -1.019619 1.252510 -1.047012 -0.997195 -0.123963 0.171907 0.224296 0.756382 -0.819756 -0.377313 0.888989 -1.459394 -0.019655 0.921192 0.925935 0.061376 2.845387 1.832586 -0.213691 1.044114 -0.199735 -1.004319 2.822070 -1.059489 0.112824 -0.134034 0.759262 -0.246136 0.727075 1.333238 -0.724675 -1.720434 -1.637453 -0.002037 -0.101520 1.042876 -0.830984 -2.163989 -2.395741 -0.032307 0.218327 2.368813 0.272260 3.234831 -0.332579 0.908458 -3.109164 0.182861 0.871514 -0.258768 1.244459 0.656700 -1.392004 -1.499482 -0.276190 -1.766269 -0.894932 -0.116143 -1.410122 -1.108321 -1.191964 1.288859 -0.665565 0.140239 1.073119 -0.005251 1.485316 0.556860 -0.449439 -1.078071 0.127190 1.788227 0.015996 -1.279272 1.770517 0.226002 4.181785 -0.449069 1.088798 -0.696903 0.334628 -0.182688 -1.172202 -0.715914 2.142516 1.875080 0.829099 -0.563195 -0.304381 -0.466593 0.981758 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -1.188948 1.982358 8.402403 6.282019 -3.581511 -4.203326 -2.037516 -5.142918 3.374228 1.107138 4.337500 -0.882130 1.322101 1.298383 -0.708586 -2.694391 1.747354 -0.095004 -1.067864 -1.794439 -1.692920 4.838647 3.395890 -6.821363 0.391772 -5.954210 3.716619 2.189319 2.277988 3.677937 -0.000495 -0.014418 -0.112380 3.246845 -4.532137 -1.940143 -0.128605 1.223825 -2.648911 -1.864045 2.458402 2.766357 3.883436 -0.003218 2.714813 2.127447 2.753472 -0.792795 -4.347911 -0.658477 -1.625398 4.606247 -2.013289 3.099875 1.079703 2.731384 0.855662 -4.812133 -0.677759 -5.929161 1.452804 2.471449 -2.266731 -0.460907 -4.424304 0.407325 -0.391021 -3.179844 2.456798 -2.061253 2.608816 0.027610 0.828096 -4.139044 -3.692087 2.695480 0.388514 1.665330 1.840832 0.923848 -0.761389 0.512333 -2.315994 -2.787816 0.519733 0.562364 0.395003 0.914530 0.883275 -2.636356 1.542958 -0.835434 -1.885466 4.142703 -2.574559 3.553505 -1.423905 -1.372834 -2.933875 -2.553450 -0.704427 -3.933362 2.080962 3.772841 -2.697711 1.961665 1.309430 1.730801 0.808890 -4.701951 0.508153 -1.218460 0.808561 4.040613 -2.709943 -2.341568 0.317702 -0.113146 -0.571683 4.091767 -1.258068 1.587417 3.971943 2.830093 1.826481 -3.720196 1.268187 1.002237 1.706130 2.747698 3.354201 -4.035309 -1.901726 -0.253054 -0.039233 -7.268795 0.383850 2.020286 4.002096 0.792043 -6.392168 1.901728 -1.974313 4.763798 2.488598 3.436789 1.744995 -0.335099 -2.351559 1.188253 7.332020 -2.408603 2.936044 -2.570674 -5.022156 4.870957 -1.118827 4.216669 -0.595875 0.885055 2.305481 -4.589787 0.733642 5.717530 1.061032 0.678302 3.122888 -0.345182 -0.410538 -7.453297 -6.124533 -0.313166 1.855278 0.922030 8.717653 -4.017995 -2.946398 -1.565101 4.314978 -1.560446 -1.037710 0.420780 -1.743765 1.831880 -9.298521 -7.220398 5.961282 6.243754 0.343773 -0.560520 4.802716 -0.195724 0.061254 -3.281940 -3.225545 2.517099 1.477790 1.730479 0.306076 -0.412052 -4.704609 -0.466076 1.077419 0.932601 3.808131 -4.231581 -2.353057 -1.193253 -5.712571 -4.072323 1.919978 -4.906023 -1.407080 0.171131 0.874909 -0.163738 1.757930 -0.900916 -3.497948 0.838766 -2.333588 -1.269949 0.875800 3.393647 0.194724 5.501307 5.057212 0.022888 3.551892 1.955451 -2.675690 12.752549 -4.042106 -0.931425 -0.152900 3.707408 -0.836257 2.164240 2.278553 -1.686111 -2.073326 -4.204792 2.552855 -1.042056 1.643391 -8.277539 -3.653947 -4.731982 -1.698707 0.658675 4.029228 0.343043 9.011420 -0.965668 0.844575 -9.827600 -0.082888 4.387264 -0.000468 3.415350 3.359122 -4.575246 -7.189035 -0.527698 -2.106958 3.043591 -1.150038 -5.235719 -2.803543 -1.412453 1.716621 -1.701673 2.575600 6.145110 -1.287378 2.388383 0.018443 -1.012762 -0.582010 -2.694338 2.071179 1.503910 -3.312491 5.183342 -0.973839 9.785031 -1.425887 3.780207 -3.794879 1.041497 -0.790351 -2.248968 -2.176048 5.467341 3.011828 1.828437 0.170818 -0.240741 -3.163472 2.817434 -PE-benchmarks/kmp-algorithm.cpp__main = -0.582487 0.912781 4.339131 1.916700 -1.982460 -3.117790 -1.147398 -3.932205 1.642841 1.154309 3.046702 -0.436346 1.382875 0.723659 0.100569 -0.241932 1.368085 -0.353140 0.299404 -1.165202 -1.397308 2.900349 1.331062 -1.306004 0.427962 -3.006417 1.903886 1.192544 1.262547 2.206143 0.483133 -0.118244 -0.648814 1.289723 -1.356679 0.231827 0.123049 0.919844 -1.314819 0.032556 0.528919 -0.283945 2.185638 0.054251 2.089623 0.986698 1.503423 0.040633 -2.100729 -0.984633 -1.113352 2.122883 -1.336342 1.278492 0.214520 0.409672 0.226779 -1.509074 -0.420526 -2.407713 0.264717 -0.205049 -1.576994 0.226527 -2.161397 0.496767 -1.388233 -1.688686 0.556395 -0.909902 1.488787 0.040304 0.213285 -0.592816 -3.133200 0.875448 0.355457 0.585486 1.021329 0.269869 -0.675362 0.150483 -1.806825 -1.979036 1.180755 1.189592 0.347659 0.031240 -1.210206 -0.673131 0.060571 -0.153107 -0.137866 2.173546 -1.870032 1.603696 -0.528050 -1.017753 -1.900045 -2.978441 0.124269 -1.952887 1.142812 1.079599 -0.889046 0.135563 -0.653747 0.892746 -0.470059 -2.738584 0.549234 -1.030337 0.152334 2.470933 -1.535351 -0.806846 -0.790225 -0.370908 0.253770 1.898669 0.144289 0.654380 2.139167 1.643104 1.190895 -1.980202 -0.346216 0.813042 1.293154 1.171430 1.248331 -1.977867 -1.171199 0.377101 -1.179393 -4.030241 -0.573095 1.472166 2.003183 -0.271711 -1.840784 0.515654 -1.311697 2.175717 2.063665 1.822668 0.711584 0.080833 -1.577430 0.770398 3.922579 -1.295767 1.920867 -1.140852 -2.164071 2.745211 -1.055309 1.905996 0.316945 0.422317 0.032047 -1.870181 -0.127140 2.821469 0.955270 0.714507 1.047193 0.359642 -0.924266 -3.253178 -3.782556 -0.212929 2.366553 0.879420 3.974477 -2.409089 -1.327742 -0.279622 2.549351 -0.036454 -1.469446 0.602565 -0.963054 1.004210 -5.144531 -3.636833 3.484593 3.462044 1.139636 -0.300277 2.069024 0.805262 -1.641169 -2.004840 -1.825060 1.630189 -0.241707 -1.298214 -0.644813 0.172082 -2.869335 0.068494 -0.302583 0.763265 1.791072 -1.178123 0.207883 -0.440650 -2.296283 -1.700681 1.342999 -1.976823 -1.352681 -0.141751 0.243359 0.195495 0.705444 -0.613084 -0.727305 0.715815 -1.910727 -0.131179 0.988050 1.281325 0.203875 4.120877 3.014099 -0.247329 1.305163 0.002327 -1.334332 5.454941 -1.873051 -0.004162 -0.119739 1.657847 -0.388501 0.910869 1.872358 -0.875756 -2.103299 -2.147995 0.497260 -0.084036 1.281993 -2.477795 -2.606988 -3.392656 -0.159297 0.359475 3.379762 0.188800 4.617332 -0.473089 1.213519 -4.727696 0.255457 1.372606 -0.292563 2.022623 1.079988 -2.268096 -2.391193 -0.395244 -1.865450 0.213635 -0.187792 -2.065617 -1.536562 -0.974585 0.624807 -1.072721 0.503112 1.953808 -0.746601 1.898277 0.661259 -0.605800 -1.101952 -0.077066 2.372728 0.316848 -1.780293 2.770859 0.088174 5.957867 -0.294045 1.759078 -1.082682 0.560153 -0.331248 -1.347151 -0.988475 2.915780 2.439573 1.170263 -0.409782 0.102597 -0.716864 1.156755 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -2.224802 2.834399 14.837152 12.702691 -7.478239 -9.812788 -3.348205 -7.687107 5.051077 2.160624 7.446412 -0.746779 2.377817 3.330075 -0.564951 -3.809961 3.205489 1.994813 -1.440603 -2.970542 -5.570638 8.999189 7.770487 -12.264604 0.743740 -8.294988 7.328493 5.531763 3.479527 7.656493 0.094280 0.357408 -0.209431 5.253132 -8.419013 -2.709359 -3.054546 2.456590 -3.930736 -2.294471 4.533285 1.250475 7.476277 0.321893 4.896049 3.732082 7.227466 -1.450717 -8.695439 -1.457254 -5.213743 7.599584 -3.749538 5.252851 0.207521 5.463720 2.368113 -7.100864 -1.326065 -12.730444 2.821947 2.957546 -5.783278 -0.895041 -8.514216 0.704956 -2.556174 -7.316576 3.545759 -2.307683 4.715771 -0.272336 0.654904 -8.001992 -8.220974 3.581917 0.031271 2.777590 3.040595 2.798952 -3.126476 0.857525 -5.027971 -4.668694 1.060835 -1.228235 0.133162 1.086556 0.437606 -5.638617 1.749288 -0.414553 -3.435182 7.199445 -4.949239 8.808147 -1.275675 -2.013595 -5.644684 -5.698087 -0.934491 -6.803312 3.260352 6.066713 -3.781374 2.809206 0.573238 2.955263 0.358806 -9.700141 0.492687 -2.924603 -0.037065 5.867058 -4.492024 -3.245695 1.571437 -0.006384 -0.323123 7.597070 -1.797204 2.527431 6.570029 4.506585 2.660782 -6.038405 2.512010 1.448599 3.260365 4.903740 5.230339 -5.809374 -3.546615 -0.469496 -0.672456 -13.115858 1.531553 6.309446 6.036104 1.255634 -10.189523 2.844475 -3.533803 8.081071 4.990318 8.226583 2.999550 -0.654529 -4.110471 1.776491 15.005965 -4.234756 5.367596 -3.723022 -10.818504 11.903427 -2.862753 7.651506 -0.665375 1.443110 3.654290 -7.265455 0.314332 10.268298 2.233663 -0.244868 7.939513 -0.743557 -1.892432 -13.069989 -11.023371 -0.358872 4.831486 4.194332 17.528208 -7.610150 -4.130055 -2.340965 6.462626 -2.128290 -2.294969 0.268194 -2.070550 2.892313 -21.080355 -13.605095 10.657743 8.647261 0.985843 -0.684900 8.715569 0.272271 0.968080 -7.283281 -6.473939 4.288282 1.940756 4.266567 0.822055 -0.551012 -9.688222 1.225699 1.185146 1.337252 7.175321 -8.819833 -4.555323 -3.929645 -10.559588 -7.477634 2.372419 -9.555081 -3.184513 0.082189 1.232167 -0.307744 1.503241 0.132446 -5.247909 -0.027106 -4.590252 -1.827572 1.210091 5.170600 0.907217 11.878757 10.964778 -0.145299 4.857135 2.965758 -4.325756 25.916902 -8.109912 -1.516353 -0.081423 8.200336 -1.548081 3.083210 4.974153 -2.441515 -3.987651 -6.757503 5.049339 -0.954633 2.838978 -16.511593 -5.868940 -9.716557 -2.333655 1.364415 9.083974 -0.074256 15.923925 -1.668220 2.369881 -17.920261 0.280091 6.892722 -0.169441 7.306171 5.475563 -8.955706 -11.647591 -1.122968 -2.602863 8.586428 -1.508285 -8.513194 -4.944744 -0.325559 -1.603640 -3.737451 4.389966 10.548553 -4.994128 4.453188 0.540436 -1.794568 -0.701411 -3.715620 4.993682 3.008168 -5.817596 10.185049 -1.662981 18.665441 -0.650766 7.131606 -5.723774 2.169122 -1.533150 -3.123712 -3.538853 9.333664 5.834290 3.534260 0.937885 1.794146 -4.414827 3.692416 -PE-benchmarks/matrix-chain-multiplication.cpp__main = -0.422670 1.272305 5.709825 2.811602 -1.653005 -3.053530 -1.288107 -4.003909 1.979679 1.144126 3.300328 -0.595829 1.474268 0.787477 0.000191 -0.547655 1.254375 -0.316355 0.391869 -1.097652 -0.911102 3.935758 2.166872 -2.613809 0.210241 -4.461352 2.325764 1.336978 2.276087 2.707265 0.289535 0.083163 -0.034721 1.778647 -2.410421 -0.559528 -0.582809 1.187105 -1.736446 -0.042810 0.846702 1.269609 1.732381 0.055102 1.951369 1.360177 2.370386 -0.330361 -1.983549 -0.896177 -1.701306 3.438996 -1.585760 1.379131 0.056425 1.035877 0.020723 -2.158097 -0.691119 -3.300272 0.710698 1.314647 -2.052148 0.299111 -3.090817 0.733028 -1.669102 -1.647574 1.005994 -0.267177 1.907324 0.380480 0.610287 -1.917851 -3.486434 1.611977 -0.157821 1.043595 1.196700 -0.051883 -0.985928 0.831041 -1.558862 -2.357152 1.235582 1.185257 0.154179 -0.333811 0.053874 -1.359241 -0.316470 -0.169891 -1.024679 2.692384 -2.418857 2.504589 -1.226885 -0.695411 -1.629346 -2.155067 -0.498403 -2.970179 1.126227 2.037685 -0.698048 0.493431 -0.382602 0.893434 0.002422 -3.369093 0.129616 -0.670313 -0.033825 3.149420 -2.021416 -0.602527 -0.397955 0.143234 -0.108225 2.671127 -0.128040 1.319295 2.901465 1.952351 0.906371 -2.131801 0.383091 1.194750 1.302083 1.657022 1.958609 -2.729117 -1.721336 -0.422995 0.015150 -4.785362 0.195451 2.042858 1.804194 -0.002532 -3.054453 0.922455 -1.214197 3.035751 2.502455 1.867987 1.138306 -0.153276 -1.335797 1.295687 5.499612 -1.829453 1.995969 -1.577369 -3.168052 3.902404 -1.606260 2.694355 0.085240 1.005607 0.803811 -2.878722 -0.107430 3.696097 0.920062 1.108000 2.486418 -0.119185 0.350933 -4.226954 -3.848491 -0.365165 1.487459 0.314162 5.177426 -2.249274 -1.326396 -0.394785 2.710430 -0.157008 -1.115443 0.146241 -1.072627 0.913361 -6.043749 -4.485930 3.831553 4.104976 0.311609 -0.486836 2.987794 1.514220 -1.126552 -2.293105 -2.148386 2.193472 -0.106299 -0.312093 -0.240973 0.267860 -3.465566 -0.169020 0.043072 0.633739 2.228967 -1.759227 -1.207568 -0.464952 -3.850823 -2.236696 1.570257 -2.831383 -1.441114 -0.431239 0.408538 -0.161265 0.847833 -1.165861 -1.091655 1.202110 -2.108900 -0.681360 1.017258 1.800816 0.381922 4.198429 3.250210 0.326742 1.648844 0.903644 -1.604927 7.231142 -1.748564 -0.707697 -0.219710 2.033837 -0.882263 1.410500 1.090592 -0.922354 -2.702763 -2.952900 1.656954 -0.291663 0.980167 -3.221817 -2.492016 -3.029271 -0.995738 1.034130 3.680935 0.505455 6.078640 -0.774544 0.888472 -5.879769 0.297737 1.978800 -0.336326 2.842687 1.926574 -2.621305 -3.249685 -0.846249 -1.150648 1.331632 -0.595625 -3.596052 -2.069624 -1.238866 1.160158 -1.559456 1.347006 3.056187 -0.438781 2.076514 0.795917 -0.775614 -1.200976 -0.382928 1.987120 1.140846 -2.411018 3.269909 -0.815899 6.729817 -1.330062 2.405536 -2.215450 0.327577 -0.430949 -1.358236 -0.970384 3.757441 2.596566 1.274333 -0.021798 -0.175208 -1.337319 1.564954 -PE-benchmarks/snake-ladder.cpp__main = -0.246649 2.752544 7.445894 5.841023 -5.488610 -7.087979 -2.202214 -6.820357 2.833262 1.151084 4.934936 -0.746677 2.291729 0.716311 -0.322624 -0.488359 3.477719 0.979633 -0.625019 -2.902288 -5.115340 5.727706 2.099292 -4.410791 1.492595 -3.863665 4.683063 3.103961 2.361465 3.849234 1.325610 0.185458 -0.936170 3.047889 -3.162230 -0.627802 -1.736120 2.047896 -3.625813 0.135968 2.401277 -0.998470 5.504241 0.582589 2.358819 2.869664 3.834529 0.343996 -5.300340 -1.234379 -3.403135 4.540828 -2.323666 3.333160 -0.894927 0.775903 2.208036 -2.877627 -0.224217 -3.395249 0.077398 -0.447621 -3.752963 -0.233226 -5.170705 0.231514 -2.812666 -4.345513 1.501985 -0.789840 2.683500 -0.291310 -0.970904 -2.858653 -5.770098 1.424610 1.508632 2.231234 2.876325 1.533586 0.178359 -0.118112 -4.277581 -3.820909 2.659738 -0.030503 1.880361 0.909028 -1.947165 -3.263532 0.839972 0.282197 0.512520 3.639475 -3.100563 3.240235 -2.186045 -2.162900 -4.493231 -6.006360 0.234999 -3.151392 2.365785 1.888092 -2.741847 0.996904 -0.265798 1.340522 0.002905 -5.463686 -0.122001 -2.577470 -0.223465 5.522796 -1.765343 -3.204174 -0.807844 -0.696620 -0.394498 3.741792 1.140612 0.713996 4.944951 3.123843 2.509799 -3.788694 -0.341618 0.004434 1.336008 2.706902 3.429492 -2.588623 -3.208851 0.463008 -1.848648 -7.906353 -0.664635 2.866091 4.229668 -0.008595 -3.810248 1.889813 -3.055757 3.346602 2.736442 3.590765 2.253619 -0.564143 -2.854905 1.705853 7.030125 -2.592086 3.342244 -2.305982 -5.076297 5.855137 -0.427728 2.631991 0.156597 -0.935039 0.200582 -3.237448 0.447836 5.650386 0.670513 -0.502681 3.675819 0.534599 -2.412503 -6.194276 -7.022973 1.214593 4.213053 2.216289 8.280730 -5.024864 -1.802586 -0.414718 3.911230 -1.099155 -2.235858 1.029680 -1.895969 2.327697 -10.035513 -7.070227 7.415229 4.966396 0.978434 -0.866553 3.604896 0.977619 -2.465574 -4.696313 -4.535688 2.891739 1.506802 -1.404596 -1.031057 0.718262 -5.616311 0.546896 0.766481 1.716147 3.795230 -3.886477 -0.246180 -3.349575 -5.103058 -4.000361 2.638595 -4.375091 -0.964624 0.870735 -0.358069 -0.193605 2.168289 -0.237086 -2.828785 -0.922097 -3.153629 -1.008237 0.116996 3.966933 0.224753 7.959420 6.928533 -1.170417 3.339943 1.130552 -3.559321 11.816675 -4.192454 0.428598 -0.332483 4.777189 -0.382986 1.820824 4.502386 -1.775229 -3.527098 -4.962511 0.719541 0.775847 1.638225 -6.796591 -2.487598 -7.846290 -0.921057 0.014942 6.769406 -0.283314 8.786847 -1.734366 1.208303 -9.055162 0.595838 3.081340 -0.437865 4.445552 2.547877 -4.868286 -4.220492 -1.176578 -4.003895 2.087165 -0.358938 -3.331342 -3.651479 -0.689844 0.192036 -2.306026 1.647437 5.432656 -2.594770 2.929931 -0.023375 -1.031894 -1.024657 -1.490514 5.131818 1.010976 -3.491137 5.827748 0.128638 11.782857 0.972993 3.791431 -2.830743 -0.168728 0.033839 -3.680614 -3.025488 5.587839 4.231623 1.971142 1.100979 1.225543 -0.950585 3.414501 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -2.988752 3.959379 16.576847 7.965755 -7.325056 -10.253625 -4.799293 -12.614090 6.129215 3.869009 10.489094 -2.369110 3.407053 2.169053 -0.660857 -2.492523 4.692657 -2.368881 -1.419060 -5.057666 -5.145155 8.644759 4.689414 -7.603880 2.406560 -13.247937 7.895281 3.207760 3.067473 7.439698 2.226658 -0.073182 -1.550036 6.378423 -4.977236 1.499907 1.972812 2.585900 -3.950366 -0.312541 4.626572 3.705325 7.641481 0.943449 7.700260 6.787317 4.053598 -0.652644 -9.523032 -3.295951 -3.807525 8.632254 -5.228622 5.610357 1.456614 4.680371 1.643584 -9.378484 -1.311823 -9.419899 0.913904 2.331703 -5.065961 0.301832 -8.464045 1.314587 -2.422436 -4.705618 3.207514 -4.274643 5.549347 -0.754251 0.256038 -2.643262 -6.903574 4.633079 1.702028 3.237215 4.955194 -0.736229 -2.128431 0.307569 -5.224029 -7.219746 3.209358 2.347030 2.076404 1.238324 -0.190516 -4.203163 0.924339 -1.634769 -1.642023 9.091126 -6.841083 4.176838 -1.962276 -4.204593 -7.242522 -7.868694 -0.304252 -7.277485 3.992153 7.384671 -5.634832 1.483001 -0.786573 3.308211 -0.259589 -7.741481 1.968176 -3.309240 1.838750 8.604942 -5.497783 -4.964666 -1.813616 -1.545454 0.747093 8.274218 -0.285163 2.034466 9.508227 6.311438 6.055053 -7.158713 -0.088970 1.540037 4.571149 4.538647 6.348617 -8.865379 -4.586208 0.547706 -3.257067 -13.949449 -1.154715 2.745659 9.108336 1.200650 -10.695600 3.528662 -4.700639 8.508210 5.303128 6.648226 2.916578 -0.861655 -6.561024 2.910807 14.346563 -4.867309 6.443684 -4.896248 -8.328758 8.356772 -2.613653 6.337014 1.423802 0.638057 1.519153 -8.227788 0.329567 10.890363 3.089303 2.594221 4.845427 1.670233 -1.857851 -12.607801 -13.443658 -0.684131 5.332180 0.900209 15.278933 -9.497039 -4.814025 -3.416430 11.313591 -2.178997 -4.220231 1.059461 -3.296176 3.587774 -15.671426 -13.004625 14.416174 15.215662 2.738405 -1.355888 8.560960 2.095714 -4.964567 -5.905053 -6.966643 5.526668 1.764366 -0.965753 -0.969610 0.554389 -9.373857 -2.180220 -0.096212 3.015874 6.574462 -5.990370 -2.389275 -0.355593 -8.877355 -7.128823 3.569095 -7.702400 -4.091310 0.463175 1.382077 0.253518 3.933182 -3.245536 -5.568722 2.548851 -6.522995 -1.827333 3.665705 7.609933 1.847519 13.367165 9.965200 -1.013230 6.695230 1.933764 -5.145576 20.933121 -6.778545 -0.518776 -0.459995 6.821395 -0.058162 3.501756 4.952601 -3.648300 -6.072752 -8.959547 3.287994 -1.693000 3.707841 -11.365510 -8.223303 -12.723064 -1.696067 1.040848 10.636529 0.890232 18.025984 -0.422911 1.975933 -18.018994 0.221790 8.604624 -0.933205 5.743213 5.695281 -8.702663 -12.947076 -1.118045 -6.412475 1.760113 -1.219261 -7.162523 -5.947681 -4.743079 5.532817 -3.082574 3.774775 10.529138 0.136667 5.432255 2.546523 -2.270297 -3.267175 -3.258469 6.437748 2.261930 -6.619941 10.570124 0.206694 20.679460 -2.666422 7.017311 -5.590847 1.342461 -0.703609 -5.167170 -4.640602 10.367218 7.996816 4.448921 0.408126 -0.230367 -4.758893 6.904781 -PE-benchmarks/floyd-warshall.cpp__main = -0.595438 1.022094 4.199075 1.856348 -1.857731 -2.950289 -1.098721 -3.067692 1.166575 0.779519 2.668349 -0.487720 0.858599 1.158845 0.260806 -0.545334 0.931325 -0.149598 -0.194471 -1.024616 -1.320972 1.829748 1.353003 -1.824490 0.452368 -2.694888 1.529205 1.255489 0.732199 1.715012 0.208830 -0.045922 -0.681029 1.261109 -1.598398 -0.138709 0.276468 0.561609 -1.036903 -0.083166 0.768289 0.401673 1.655569 0.036733 1.775593 1.295247 1.337053 0.030521 -2.091635 -0.796230 -0.960183 2.452092 -1.031800 1.233272 0.445152 1.127172 0.093966 -1.991415 -0.391966 -2.676634 0.584884 0.436568 -1.410210 0.044664 -1.888828 0.375513 -0.756968 -1.488392 0.953775 -0.963103 1.329753 -0.497204 0.010504 -0.735299 -2.081985 0.700745 0.089946 0.772483 0.846257 -0.039834 -0.688555 0.350112 -1.279415 -1.549762 0.475047 0.575656 0.314872 -0.031308 -0.553143 -0.583815 0.307047 -0.355798 -0.469334 1.987798 -1.874686 1.534115 -0.502701 -0.822814 -1.933189 -2.004109 0.094512 -1.696413 1.019540 1.352084 -0.954966 0.144082 -0.429317 0.856491 -0.278684 -2.507744 0.348327 -0.685274 0.172302 1.898358 -1.589400 -0.652939 -0.036937 -0.445431 0.025601 1.872041 -0.019963 0.592033 1.781415 1.543008 0.883147 -1.626052 -0.106045 0.464232 1.287576 1.257779 1.347703 -2.037674 -0.967196 0.197670 -0.988623 -3.660182 0.034239 1.298230 1.959458 0.390065 -2.382534 0.490879 -1.193109 2.050238 1.378668 2.074919 0.511302 -0.231066 -1.389651 0.480689 3.512852 -1.327820 1.968266 -0.692835 -1.986756 2.162510 -0.855412 1.779842 0.566190 0.387981 0.554771 -1.743428 -0.468043 2.537628 1.245478 0.816417 1.372665 0.158252 -0.796969 -3.108725 -3.215527 -0.291391 1.638427 0.248396 3.404466 -2.135547 -1.523354 -0.624021 2.882696 -0.740000 -1.289366 0.254084 -0.636517 0.827222 -3.968318 -3.046567 2.852041 3.456919 0.526396 -0.346395 2.414596 0.552170 -1.298434 -1.644962 -1.624352 1.320486 -0.052269 -0.119271 -0.214136 -0.184288 -2.586304 0.146584 -0.231815 0.734884 1.323279 -1.046719 -0.428943 0.127178 -2.343463 -1.623774 0.717677 -1.961264 -0.987594 0.018733 0.310544 -0.057564 0.466782 -0.869004 -1.206951 0.813274 -1.909755 -0.102420 0.984932 1.203992 0.583491 4.032285 2.051814 0.029780 1.693525 0.290020 -1.231717 5.352515 -1.681870 -0.040955 -0.161666 1.807669 -0.563084 0.812091 1.298758 -0.717123 -1.913159 -1.973811 0.585882 -0.450031 1.132734 -2.213345 -2.419858 -2.931163 -0.435798 0.525236 2.827373 -0.033150 4.185374 -0.086824 0.956072 -4.441661 0.189025 1.615914 -0.519056 1.403825 1.154394 -1.991932 -3.210992 -0.123892 -1.283305 0.367623 -0.157507 -2.102232 -1.282551 -1.141754 0.573135 -0.874595 0.674976 2.034742 -0.458530 1.479924 0.785783 -0.643302 -0.448537 -0.509368 1.994656 0.430892 -1.790543 2.693934 0.066305 5.674687 -0.389082 1.815800 -1.097655 0.212529 -0.150716 -0.773880 -0.893380 2.464518 2.228530 1.164033 -0.341161 0.256376 -1.121201 0.926016 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -3.208769 3.400034 16.675147 10.615331 -7.606247 -10.601245 -4.244847 -8.116827 4.060748 2.087101 8.991444 -1.497785 1.463210 5.481528 0.781723 -4.317543 2.220862 0.379358 -2.493695 -3.274633 -5.275109 6.025233 7.832784 -11.964131 1.181109 -9.954095 6.072104 5.413791 1.721908 6.439152 -0.315803 0.272687 -1.565035 5.454238 -8.468112 -2.201071 -0.484970 1.516415 -2.899086 -1.954460 5.154054 3.561463 5.899351 0.000000 6.097727 5.235486 6.465751 -1.104877 -9.436626 -2.220415 -4.399477 10.322067 -3.860069 5.037244 2.187411 7.773683 0.911698 -9.959492 -1.959067 -13.981507 3.562186 4.352115 -5.695311 -0.730591 -7.584236 1.171205 -1.093303 -5.939698 5.204207 -3.675656 5.122106 -2.520905 0.172531 -5.912234 -5.451716 3.208549 -0.807812 3.386482 2.709908 0.470275 -3.781990 1.985523 -3.679162 -4.582198 -0.550518 -1.146698 0.277166 -0.100589 1.277989 -3.330801 2.099809 -1.674128 -4.312858 7.847477 -7.149412 7.692146 -0.965837 -2.425887 -7.222195 -3.944987 -0.543928 -6.972082 3.554631 7.727694 -4.679245 1.607472 -0.443553 3.101687 -0.285893 -10.081931 0.421936 -2.018839 0.644003 5.201469 -6.608893 -2.212469 2.827760 -1.004691 -0.367930 8.002508 -1.644304 2.781092 6.634804 5.540303 2.463566 -5.751778 1.954631 0.970015 5.086569 5.334627 5.793799 -7.835281 -3.289542 -0.407383 -1.536553 -13.696821 2.390093 5.877930 7.281907 3.901975 -12.487454 2.388835 -3.711561 8.930887 4.045138 9.594764 1.927169 -1.508186 -4.777264 1.246526 14.769812 -5.133769 7.333098 -2.233033 -9.724439 10.004644 -3.582652 7.917398 1.942173 2.165094 4.502346 -7.814780 -1.986978 10.131017 4.771789 2.291236 7.862947 -0.579085 -1.509100 -13.471922 -11.488217 -1.260617 3.888167 1.180813 15.274261 -8.006113 -5.999396 -3.508840 10.694978 -4.317976 -3.787848 -0.471085 -1.413086 2.695971 -16.857482 -12.350965 10.257092 12.462573 -0.068706 -0.786782 11.292371 0.781167 -1.324000 -6.034442 -6.509639 4.699655 1.453057 5.946724 1.707674 -1.704303 -9.916175 0.671771 -0.043861 2.115886 5.378608 -7.002753 -5.507628 0.442030 -10.798855 -6.858978 1.037718 -9.405348 -3.535605 0.139464 1.711062 -0.826214 1.021946 -2.435831 -6.454681 1.967751 -6.704859 -1.231575 3.243241 5.076125 2.997307 14.607658 7.858400 0.648421 7.105985 2.828301 -4.228210 24.845800 -7.459064 -1.438581 -0.542255 8.485241 -2.294491 2.979461 3.627181 -2.354315 -5.683395 -7.022632 4.992363 -2.846696 3.691111 -13.373527 -8.269322 -10.123747 -3.007864 2.827890 9.142443 -0.548233 16.618307 0.161991 2.485548 -18.900635 0.239487 8.155357 -1.584810 5.111350 5.565348 -8.143280 -15.733947 -0.226249 -2.158448 6.395838 -1.049781 -9.266069 -4.694431 -3.578759 0.870263 -3.463708 4.384492 10.161516 -2.622091 4.515360 3.113051 -2.579686 0.291785 -4.249421 5.311524 3.137129 -6.845604 11.537708 -1.086732 21.291926 -2.101427 7.754254 -5.472092 1.272531 -0.953567 -1.510565 -3.120487 8.982514 7.466220 4.222018 -0.315106 1.653067 -6.312775 3.218150 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -0.815358 1.244895 6.329667 3.751559 -3.365525 -3.972553 -1.731222 -5.122529 2.630975 1.069916 3.777248 -0.546027 1.208195 0.594432 0.002429 -0.812833 1.419553 -0.214832 -0.864658 -1.584319 -1.413571 3.470170 1.820932 -4.023522 0.631245 -4.460449 2.123248 2.008931 1.626688 2.054788 0.423008 -0.185285 -0.982219 2.102389 -2.943956 -0.288972 0.607094 0.828662 -2.454843 -1.125500 1.388970 1.275872 2.579256 -0.663913 3.085424 0.950851 2.412884 -0.112820 -3.485461 -0.999680 -1.368459 4.618191 -1.378931 2.275267 1.230994 1.682894 -0.197474 -3.581612 -0.789986 -3.836368 0.901969 1.089039 -1.995340 -0.209073 -2.736144 0.503531 0.051052 -2.151185 1.954616 -1.685032 2.075048 -0.682414 0.243861 -1.894288 -3.093185 1.270061 0.388149 1.347287 1.432178 0.709766 -0.018027 -0.053709 -1.587044 -2.082313 0.859759 1.195603 0.368908 0.305237 -0.750088 -0.871760 0.825971 -0.960964 -0.699578 2.847761 -3.414512 1.718976 -1.015674 -1.220849 -2.916174 -2.323725 0.163917 -2.646568 1.723577 2.186463 -1.667222 1.091823 0.677182 1.316539 -0.117103 -3.616484 0.202493 -1.028377 0.861460 3.631697 -2.256626 -1.486892 0.048127 -0.430033 -0.940283 2.721379 -0.260755 1.250162 3.267420 2.518712 1.892680 -2.920471 -0.243520 1.246513 2.117002 2.348777 2.032721 -3.484322 -1.214136 0.265288 -0.954929 -5.764289 -0.302549 1.390375 3.450637 0.924957 -3.942398 0.487080 -1.369667 3.784154 1.385702 2.333609 0.799924 -0.009450 -2.266764 0.836223 5.671730 -1.648277 2.551524 -1.332357 -2.777621 2.779771 -0.933711 2.798685 0.746782 0.519953 1.077712 -3.150145 -0.349158 3.885061 1.253874 0.972893 1.179214 0.539248 -1.539467 -5.669450 -5.338357 -0.419965 1.892063 0.193288 6.012006 -3.359757 -3.045114 -1.259964 4.523473 -1.582838 -1.503944 0.790218 -2.014289 1.780292 -5.145091 -5.102217 4.926273 5.723523 0.840403 -0.354055 4.542832 0.267545 -2.429951 -2.246170 -2.343030 1.808507 1.311525 -0.304346 0.017065 -0.215631 -3.991970 -0.634433 0.297989 1.043938 1.641268 -1.119768 -0.174747 0.351489 -3.659766 -2.249993 1.616600 -2.994506 -0.824022 -0.033762 0.878919 -0.051379 1.605039 -1.912125 -2.304881 1.037403 -2.381096 -0.108508 1.233540 2.170951 0.609071 5.240657 3.738997 0.007629 4.153699 0.546904 -2.166812 8.363432 -2.429803 -0.229506 -0.260059 2.153860 -0.761750 1.185334 1.855054 -1.510169 -2.082882 -3.291102 0.741739 -0.932184 1.850443 -4.460367 -3.499045 -4.074040 -1.194843 0.682747 2.997369 0.119965 6.555698 -0.905890 1.011458 -8.116155 0.127041 3.045758 -0.486667 2.092548 1.921801 -3.008594 -6.179526 -0.125192 -1.860461 0.077494 -0.676133 -3.726409 -2.161820 -2.409092 2.535742 -1.496455 1.185345 4.310290 -0.359959 2.296098 0.001992 -0.665208 -0.455842 -1.245050 1.928698 0.832756 -2.960383 4.158543 -0.119843 9.074281 -0.874160 2.762715 -2.199075 0.866839 -0.610587 -2.017041 -1.420956 3.854809 3.074620 1.712040 -0.644558 0.060704 -2.761117 2.020821 -PE-benchmarks/optimal-binary-search-tree.cpp__main = -0.733249 1.339251 6.322739 2.662355 -2.170764 -3.581141 -1.652719 -4.999236 2.224354 1.452505 4.053386 -0.752532 1.754417 0.821273 0.026417 -0.614392 1.613330 -0.847827 0.451104 -1.463584 -1.332972 4.202202 2.114094 -2.385483 0.423161 -5.134204 2.742706 1.308317 2.125513 3.027932 0.498400 0.049460 -0.456245 1.985546 -2.233330 -0.153385 -0.004049 1.342219 -1.775801 0.168138 1.051282 1.085376 2.279555 -0.005471 2.578935 1.661382 2.059934 -0.162055 -2.598709 -1.280473 -1.501105 3.479462 -1.909672 1.527116 0.297674 0.974184 0.048987 -2.551648 -0.843403 -3.442711 0.565611 0.842687 -2.161633 0.469034 -3.282983 0.847305 -1.804943 -1.702670 1.141097 -0.690761 2.071002 0.289508 0.527509 -1.397075 -3.716882 1.697955 0.205113 1.155593 1.403108 -0.191110 -1.015465 0.757888 -1.970724 -2.759032 1.411206 1.696076 0.415601 -0.305821 -0.420506 -1.084350 -0.113784 -0.239681 -0.726671 3.079106 -2.717290 2.136353 -1.235340 -1.132720 -2.201161 -2.982170 -0.272578 -3.123350 1.460593 2.312552 -1.340427 0.312497 -0.676027 1.058940 -0.275848 -3.693836 0.301508 -1.121934 0.321355 3.670666 -2.319287 -0.890413 -0.955281 -0.199905 0.177672 2.873472 -0.019249 1.255604 3.375085 2.451407 1.245113 -2.580226 -0.109951 1.245471 1.640649 1.723789 2.122839 -3.215813 -1.864583 -0.178539 -0.644268 -5.421703 -0.348588 1.642824 2.330057 -0.136029 -3.209373 1.034302 -1.585802 3.363247 2.820201 2.065745 1.097744 -0.094805 -1.865828 1.543368 5.782633 -1.958716 2.425796 -1.775097 -3.339715 4.057860 -1.623438 2.805008 0.415843 0.891121 0.447425 -3.081263 -0.058424 3.999352 1.073082 1.492035 2.116478 0.165261 0.171958 -4.585951 -4.709018 -0.221660 2.196909 0.436825 5.624557 -2.934032 -1.588994 -0.457330 3.571169 -0.064661 -1.622497 0.379869 -1.204457 1.161453 -6.488470 -5.015812 4.570148 5.047380 0.758281 -0.430697 3.243574 1.592807 -1.900663 -2.352374 -2.486258 2.528165 -0.142059 -0.946125 -0.422296 0.389612 -3.804510 -0.438501 -0.162259 0.959037 2.514988 -1.780403 -0.872334 -0.240845 -3.836627 -2.360907 1.911748 -2.946417 -1.710302 -0.353015 0.377246 -0.015714 1.104674 -1.429012 -1.193973 1.265164 -2.496097 -0.545690 1.387350 2.058308 0.407114 5.008634 3.712063 0.035962 1.819070 0.629406 -1.708605 7.497713 -1.969723 -0.475845 -0.197856 2.159658 -0.714889 1.431592 1.727945 -1.119509 -3.007139 -3.268278 1.445553 -0.314207 1.379395 -3.435258 -3.130712 -3.917708 -0.868557 1.070389 4.324777 0.564784 6.786712 -0.653292 1.070800 -6.497493 0.284384 2.238784 -0.386110 2.934367 1.910141 -2.870354 -3.731286 -0.840328 -1.935297 0.801505 -0.591204 -3.543092 -2.353090 -1.620078 1.714624 -1.513838 1.235765 3.255462 -0.314015 2.368575 1.133125 -0.902490 -1.494843 -0.428217 2.425884 0.964874 -2.631370 3.854147 -0.499464 7.782328 -1.325491 2.556523 -2.115640 0.529454 -0.392538 -1.743368 -1.134817 4.122058 3.110501 1.491473 -0.241554 -0.269216 -1.381215 1.856820 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.597415 0.901284 3.071910 2.913009 -1.910143 -2.552646 -0.775270 -1.532382 0.949965 0.223250 1.524137 -0.071062 0.745335 0.202102 -0.135407 -1.110042 1.002220 0.645867 -0.547615 -0.876955 -1.701528 1.969658 1.452196 -2.882711 0.481648 -1.493589 2.023566 1.414771 0.469862 2.048290 0.019705 0.215088 -0.338176 1.312464 -1.736716 -0.731848 -0.775369 0.662766 -0.840168 -0.348427 1.338577 -0.001635 1.981749 0.225958 0.707932 1.371023 1.123445 -0.001744 -2.189312 -0.546450 -1.059051 1.287456 -0.859734 1.417355 -0.261384 0.903136 1.173657 -1.486938 0.041868 -2.718469 0.606617 0.276539 -1.177068 -0.291553 -1.934383 -0.079714 -0.486003 -1.928282 0.915876 -0.720005 0.865641 -0.197271 -0.265429 -1.783964 -1.511127 0.552536 0.487638 0.867220 1.032804 0.838949 -0.477512 0.078570 -1.409307 -1.216874 0.263155 -0.742721 0.651403 0.712399 -0.163740 -1.532120 0.766490 0.074419 -0.185449 1.368015 -0.711219 1.364887 -0.375346 -0.527437 -1.431821 -1.537673 0.016748 -1.105252 0.704294 1.415999 -1.207498 0.336824 -0.020242 0.539933 0.043246 -2.075286 0.158109 -1.155908 -0.142162 1.428345 -0.778725 -1.012280 0.165395 -0.274216 0.138732 1.882269 -0.087047 0.178024 1.500170 1.095935 0.605711 -1.382643 0.255116 -0.049022 0.605907 0.964684 1.285577 -1.128796 -0.973461 -0.020567 -0.668843 -2.908252 0.101888 1.079405 1.555995 0.625370 -2.513809 1.307677 -1.168277 1.173779 0.840414 1.739318 0.740906 -0.279378 -1.105959 0.533340 2.946198 -1.112222 1.286314 -0.715023 -2.631368 2.710431 -0.075319 1.255849 -0.068213 -0.434574 0.789920 -1.167888 0.402927 2.307853 0.294911 -0.105309 1.837781 -0.088192 -0.628730 -2.865921 -2.622928 0.334836 1.495248 1.146947 3.966792 -1.888351 -0.558003 -0.482392 1.757319 -0.963227 -0.579575 -0.000424 -0.319966 0.824667 -4.522553 -2.901672 2.783178 1.529800 0.137222 -0.054249 1.509900 0.118283 0.424383 -1.566863 -1.582998 0.768657 0.673703 0.808349 0.108504 -0.076220 -2.069150 0.292422 0.513439 0.447517 1.473776 -2.422412 -1.173631 -1.422349 -2.293672 -1.827386 0.351729 -2.354425 -0.165727 0.418469 -0.053924 -0.140735 0.576672 0.344466 -1.436822 -0.468692 -0.910475 -0.482226 -0.124982 1.447490 0.338874 2.659349 2.474534 -0.519226 0.839162 0.885054 -1.111038 5.717065 -1.886133 0.052430 0.050321 2.563454 0.226531 0.848596 1.599130 -0.605968 -0.483100 -1.901380 0.591461 0.352955 0.451409 -4.220027 -0.805401 -2.770035 -0.577742 -0.001639 2.222398 -0.375806 3.642842 -0.398654 0.208631 -3.850969 0.098315 1.657590 -0.161817 1.574232 1.158998 -1.915178 -2.652969 -0.394372 -1.092279 2.132495 -0.321918 -1.383287 -1.030804 0.217828 -0.350655 -0.797433 1.165104 2.581725 -1.198101 0.774629 0.094334 -0.250116 -0.178752 -1.107899 1.207201 0.593037 -1.141437 2.404374 -0.021942 3.682843 0.336436 1.626608 -1.284005 0.365057 -0.107756 -1.222471 -1.121500 1.985021 1.164582 0.641055 0.764382 0.844712 -0.617493 1.320429 -PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.930393 3.176465 8.041978 8.118350 -7.720546 -10.983639 -2.379153 -8.490245 2.943599 0.844809 7.368094 0.070976 3.970100 0.452262 1.070134 0.300707 5.651547 1.832104 -0.789302 -4.047843 -7.370898 8.231376 3.762879 -5.326842 2.132332 -1.650690 5.502412 4.811078 2.489525 5.126681 1.553369 0.339704 -1.296527 3.237464 -3.877862 -0.719157 -4.415539 3.136818 -4.518379 0.013499 3.120258 -4.488178 8.139058 0.914872 2.389700 2.806554 7.451041 0.771044 -7.281736 -2.340183 -5.813002 6.013192 -3.853601 4.462204 -2.875294 -0.376171 4.477949 -1.483274 -0.293830 -5.351827 -0.378783 -2.358608 -6.113949 -0.919904 -6.512082 0.637201 -4.530305 -6.442047 1.336330 -0.104468 3.931611 -0.283209 -2.294591 -3.388420 -8.612571 0.422819 1.933414 3.025104 3.515547 2.930271 -0.264428 -0.832910 -6.542716 -4.891059 4.931369 -2.303000 3.349416 1.347673 -4.834345 -3.021120 0.845136 1.498771 1.132453 3.382082 -4.051404 4.875855 -0.773161 -3.010573 -6.480368 -8.134641 0.811589 -3.765304 2.558334 1.763182 -2.568714 0.460156 -3.336072 1.094150 -1.847890 -8.824224 -0.534121 -3.655129 -2.784665 5.959008 -2.987206 -2.986765 -0.514098 -0.250022 0.328940 4.448318 2.810070 1.377449 6.043523 4.263973 2.251045 -4.796176 -0.347331 -1.313849 2.819745 3.596350 4.026233 -1.034789 -5.264916 1.534259 -3.719017 -10.584701 -1.340020 7.095831 6.255105 1.006886 -5.209485 3.325087 -4.085295 3.985740 4.836441 5.108920 2.962916 -0.515292 -3.923618 2.482980 8.503372 -4.098656 5.568945 -1.636943 -6.002554 9.970118 -1.192236 2.377375 1.078512 -1.778989 -0.747674 -3.082453 -0.507603 7.211415 2.397365 -0.749289 4.749902 0.823922 -3.274697 -8.116210 -9.513000 1.302591 7.399060 4.695501 10.164471 -6.396816 -1.344764 0.884719 2.880699 -2.529049 -4.744565 0.872283 -2.359064 3.098289 -15.541968 -8.867776 10.586211 4.669380 1.611412 0.207852 4.115800 2.551016 -2.795904 -6.084376 -6.229724 4.512656 1.482345 -2.711102 -1.558068 0.971505 -8.483230 1.320198 0.507565 2.379861 3.383379 -5.374278 0.750637 -5.529735 -6.544209 -3.801844 2.379700 -5.814125 -1.672087 1.040819 -1.730425 0.580959 1.647202 1.288264 -2.318550 -2.568346 -5.547574 -1.918766 -1.067260 5.360245 1.594360 11.963577 10.383635 -2.337141 3.512803 0.742373 -5.667551 13.911288 -5.730000 1.001546 -1.069938 8.049767 0.443433 2.408286 7.860889 -1.889740 -5.120276 -6.549073 0.551460 3.301715 2.752678 -8.609667 -2.598377 -11.466290 -0.644305 0.650703 10.829180 -2.337375 10.844561 -3.511850 2.160590 -11.996718 1.257586 2.178847 -0.690981 5.483551 2.570609 -5.830495 -3.294792 -2.072001 -5.510386 3.126060 0.240273 -2.956337 -4.627049 -0.237086 -1.810974 -4.909109 1.375658 4.803604 -4.942433 4.763306 1.043901 -1.535266 -1.083688 -0.691357 8.328628 1.804865 -4.441563 8.063610 0.732947 15.995853 2.371111 5.110926 -3.593568 0.015179 -0.008437 -4.802819 -3.931504 7.460690 7.394757 1.453096 2.588766 2.779954 0.721809 4.259451 -PE-benchmarks/dfs.cpp__main = 0.623177 1.634976 4.629424 1.226573 -1.901145 -4.627878 -1.107060 -6.289783 2.560929 1.232833 3.590380 0.008473 2.442183 0.016909 0.369744 1.425116 2.404814 0.235983 0.162596 -1.873981 -1.126875 4.375845 -0.013307 -0.397149 0.972770 -3.482027 1.367821 2.130323 2.715577 2.224468 0.917398 -0.135576 -0.821714 1.422396 -1.457589 0.161573 0.060781 0.874775 -3.239868 0.316198 -0.223178 -0.254500 3.084236 0.450680 2.488339 0.517777 2.178521 0.675419 -1.123913 -1.067750 -1.778400 3.681988 -0.775419 1.937671 -0.770984 -0.639849 0.069207 -0.724613 0.173215 -0.493547 -0.049351 0.020777 -2.174427 -0.089758 -2.364643 0.334445 -1.712254 -2.049220 0.002460 -0.808624 1.821456 -0.355641 -0.782028 -1.076334 -5.610245 0.224066 0.676200 1.009574 1.822098 0.477266 0.018261 -0.559793 -2.457088 -2.676734 2.808638 2.680216 0.678172 0.857198 -3.180547 -1.417257 -0.683152 -0.070814 1.117782 1.972770 -2.859820 1.258530 -1.025243 -1.381484 -2.236705 -3.863693 0.799827 -1.650535 1.183873 -1.013991 0.766649 0.309715 -0.361525 0.795781 -0.694137 -2.591659 0.674838 -0.789792 -0.612683 4.281954 -0.906737 -1.482546 -1.458227 -0.464615 -0.872501 2.178715 1.019801 0.429513 2.792595 2.193511 1.589504 -2.440525 -1.085314 1.274137 1.228619 1.827139 1.378505 -1.943694 -1.762591 0.872965 -1.964137 -5.127980 -1.019366 1.994478 2.834776 -1.139089 -0.664176 0.368086 -1.727844 2.187517 2.415653 0.675810 1.134182 0.048395 -2.199528 1.410519 4.647305 -1.546507 2.308039 -1.861896 -1.204762 2.319499 -1.071961 1.537237 0.142863 -0.623445 -0.651877 -1.028784 0.196120 3.229608 0.762064 0.685430 0.390354 0.853779 -2.131073 -3.210388 -5.070374 -0.672429 2.882528 0.843724 3.967971 -2.325195 -1.850761 -0.438508 2.573666 -0.547565 -1.801990 1.830184 -2.451002 1.663592 -4.744020 -3.518304 4.902084 4.832828 2.044053 -0.825142 2.285789 1.661295 -2.941103 -2.680674 -1.394829 1.685739 0.379211 -4.218694 -1.309974 0.358090 -3.582181 -0.173478 -0.417585 0.992517 0.803472 0.578184 2.590548 -1.214005 -2.526768 -2.055698 2.083323 -1.712123 -0.578337 0.019474 -0.117446 -0.398624 1.490992 -1.448169 -0.586886 1.447357 -2.333667 0.316062 0.505960 1.477967 0.384377 4.395499 3.667740 -0.192842 3.439510 -0.164048 -2.330825 4.778648 -1.709940 0.790590 -0.125067 1.252762 -0.655018 1.558990 1.979930 -1.181746 -2.390339 -3.174029 -0.444120 0.759700 1.807660 -0.353254 -2.789180 -4.110146 -0.328611 -0.078709 4.478270 -0.304276 5.088611 -1.733076 1.890495 -5.541922 0.740920 0.755951 -0.485975 2.231953 1.049089 -2.601511 -1.794928 -0.286115 -3.015898 -2.400481 0.049314 -2.484916 -2.204323 -2.031742 1.563893 -2.399801 0.161717 2.079536 -0.863244 2.843588 -1.047014 -0.437632 -1.692355 0.632138 3.826579 0.044590 -2.337150 1.805959 0.296009 7.472854 -0.101016 2.668160 -1.214669 0.375697 -0.369919 -2.958403 -1.722482 3.740592 3.350547 1.158374 -0.337291 -0.062081 0.130778 1.850819 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -1.002879 1.087692 5.231528 3.112290 -2.413886 -3.788352 -1.383888 -4.536847 2.548608 1.196357 3.729148 0.037134 1.967894 -0.008888 0.146569 -0.673270 1.926229 -0.132571 -0.441020 -1.460863 -1.054076 4.142419 1.724620 -2.998719 0.633503 -3.462390 1.977138 1.839655 1.681733 2.664942 0.430012 0.116548 -0.648853 1.801019 -2.310230 -0.182163 -0.165678 1.126306 -1.971452 -0.967828 1.311239 0.397049 2.857171 0.216879 2.515418 0.774413 2.194930 -0.254015 -2.618797 -1.266904 -1.532698 3.251972 -1.488579 2.126997 0.091417 0.780428 0.645888 -1.930083 -0.201609 -3.557479 0.774921 0.525733 -1.998800 -0.331432 -2.483926 0.407258 -0.786386 -1.894671 0.858267 -1.566031 1.870991 -0.343915 -0.008409 -1.878732 -3.763606 0.918832 0.408216 0.871485 1.666272 1.157266 -0.787956 -0.410148 -1.921113 -2.399889 1.683745 0.937548 0.417181 0.930345 -1.565043 -1.146600 0.288854 -0.216410 -0.214972 2.449505 -2.702060 1.765914 -0.100995 -1.190649 -1.832071 -2.397316 0.251073 -2.424026 1.038083 1.576795 -0.898987 0.495861 -0.483416 0.925199 -0.599804 -3.117227 0.788685 -0.980892 -0.509010 3.027158 -1.832748 -1.272666 -0.422331 -0.147115 -0.024375 2.684529 0.174306 0.984323 2.671470 2.030183 1.564055 -2.602567 0.042318 1.223893 1.845011 1.649955 1.454400 -2.311257 -1.505059 0.613142 -1.310447 -4.971816 -0.713495 2.334602 3.056085 0.407621 -3.142453 1.181828 -1.438260 2.733897 2.285365 1.808481 1.024307 0.171414 -2.216077 0.962827 4.910993 -1.703156 2.325332 -1.040453 -2.689667 3.401263 -1.255430 2.216364 0.121219 0.126295 0.515923 -2.284651 0.172735 3.759450 0.935260 0.872659 0.969215 0.409210 -1.236342 -4.495949 -5.234304 -0.681474 2.393304 1.343138 5.248531 -2.725192 -1.801489 -0.608790 3.091041 -1.108184 -1.755983 0.783729 -1.549804 1.561354 -6.229724 -4.330340 5.117155 4.583779 1.173804 -0.248553 3.081111 0.853996 -1.302088 -2.253317 -2.168248 1.856567 0.852812 -0.867432 -0.101626 0.072185 -3.730465 -0.611948 0.080607 0.636966 1.317253 -1.562563 0.396031 -0.681560 -2.923685 -1.918657 1.398661 -2.628351 -1.102483 -0.261338 0.241995 -0.076446 1.248600 -0.943964 -1.486591 0.740937 -2.298032 -0.582827 0.492200 1.925291 0.753989 4.547386 4.049013 -0.517270 2.443999 0.388223 -2.105009 7.167816 -2.528312 -0.207137 -0.257841 2.347510 0.113422 1.402974 1.908596 -1.196981 -1.755947 -3.228030 0.671038 0.277296 1.624292 -4.061016 -2.836525 -4.035357 -0.558126 0.292104 3.806827 -0.317174 6.173502 -1.343646 1.050305 -6.781035 0.363741 2.259748 -0.396485 2.130968 1.590024 -2.720185 -4.248164 -0.540634 -2.096044 0.444805 -0.328472 -2.762479 -1.924141 -1.814895 1.619974 -2.212445 1.098055 3.162910 -0.871357 2.490589 0.041820 -0.587639 -1.184551 -0.470035 2.051527 0.764778 -2.341852 3.328572 -0.098790 7.238974 -0.720193 2.710868 -1.956294 1.254032 -0.972391 -2.392028 -1.508108 3.724329 3.275624 1.218267 0.093712 0.319104 -1.352118 2.055463 -PE-benchmarks/tug-of-war.cpp__main = -0.657701 1.045352 4.704194 2.739652 -2.040582 -3.049486 -1.320966 -3.780235 2.026490 0.956520 3.077418 -0.237393 1.446805 0.417152 -0.056428 -0.701168 1.541401 -0.270138 -0.101193 -1.321200 -1.110571 3.581557 1.728591 -2.671693 0.485623 -3.386484 2.137166 1.352912 1.515304 2.691455 0.366749 0.112748 -0.396868 1.681721 -2.008217 -0.376973 -0.222205 1.043156 -1.703101 -0.302105 1.174427 0.678711 2.483597 0.250724 1.948250 1.265425 1.596169 -0.092617 -2.233019 -0.905781 -1.300920 2.523695 -1.409034 1.719648 -0.136402 0.786978 0.535852 -1.920554 -0.410553 -2.945903 0.465897 0.571881 -1.719532 -0.041070 -2.491128 0.451328 -1.035067 -1.794151 0.803010 -1.027616 1.690399 0.030838 0.113460 -1.658364 -3.193716 1.085891 0.324823 0.956305 1.352749 0.470537 -0.712637 0.135671 -1.777832 -2.133638 1.179515 0.820694 0.415305 0.480256 -0.603612 -1.283251 0.177660 -0.084186 -0.287251 2.306365 -1.813406 1.789634 -0.583385 -1.036044 -1.604089 -2.179243 0.046902 -2.179202 1.114772 1.452742 -1.050202 0.495400 -0.163032 0.937705 -0.241671 -2.803451 0.570574 -0.856788 -0.212390 2.881754 -1.443662 -1.171397 -0.509608 -0.212997 0.012806 2.456656 0.026767 0.872969 2.379541 1.867928 1.112547 -2.220911 0.029219 0.805256 1.306605 1.383575 1.680603 -2.016673 -1.538737 0.154813 -0.756621 -4.263686 -0.436680 1.597077 2.349964 -0.039758 -2.626791 1.167065 -1.477388 2.415443 2.059546 1.681486 1.042670 -0.111632 -1.862889 1.066211 4.517206 -1.496699 1.971343 -1.382810 -2.673568 3.185377 -0.947753 2.086738 -0.071443 0.174999 0.509114 -2.148741 0.302858 3.267286 0.705226 0.702000 1.448482 0.192913 -0.554010 -3.751134 -4.127280 -0.360855 1.998091 0.968771 4.656311 -2.331579 -1.313075 -0.580276 2.552268 -0.449847 -1.200376 0.488433 -1.128257 1.161855 -5.744436 -3.899061 4.195362 3.790675 0.913239 -0.250569 2.370309 0.816379 -0.783602 -2.124549 -1.872885 1.766924 0.495556 -0.494874 -0.257716 0.091247 -2.936727 -0.395100 0.185442 0.724329 1.721472 -1.839480 -0.298532 -0.711139 -2.920077 -2.019448 1.304074 -2.601310 -1.092246 0.082556 0.154317 -0.157413 0.941541 -0.576831 -1.161597 0.610659 -1.744082 -0.492580 0.597075 1.799126 0.283287 3.474802 3.384623 -0.333038 1.722887 0.603807 -1.718693 6.453235 -2.196365 -0.157151 -0.111966 2.029901 -0.143071 1.155655 1.596529 -0.954799 -1.596577 -2.706905 1.010183 0.172913 1.247604 -3.667783 -2.383493 -3.303145 -0.509699 0.378766 3.405710 0.018994 5.403643 -0.891677 0.873934 -5.520499 0.283694 1.989875 -0.140559 2.151543 1.551019 -2.448964 -3.393027 -0.553948 -1.921251 1.019677 -0.502120 -2.609369 -1.861278 -0.980053 1.096500 -1.526827 1.087342 2.975216 -0.928307 1.939130 0.142366 -0.664822 -1.063808 -0.714931 1.861094 0.711008 -1.993817 2.859190 -0.286966 6.015362 -0.551339 2.319402 -1.741358 0.768730 -0.586022 -1.788666 -1.275141 3.384415 2.413041 1.021594 0.214203 0.028574 -0.926969 1.622902 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -3.252766 3.137920 18.079279 13.502706 -7.556408 -9.690739 -4.902510 -11.045713 7.811997 2.927566 10.288884 -0.408985 3.862655 1.752482 -0.711397 -4.734518 4.486135 -0.417880 -1.879278 -4.195390 -3.203717 13.025622 8.708911 -14.823256 1.087148 -12.684707 7.986461 5.386502 5.214801 9.997086 0.477889 0.799742 -0.225495 6.925508 -9.721039 -3.023619 -2.025958 3.457028 -5.735845 -3.106008 6.287870 5.069988 8.722354 0.699816 6.867818 4.298127 6.999850 -1.730296 -9.173518 -2.371201 -5.351053 10.366321 -5.177505 6.724370 0.033178 5.687185 2.194313 -9.272530 -1.979005 -14.195280 2.942232 4.997243 -6.424760 -1.018015 -9.400493 1.447644 -1.790858 -6.515068 4.329012 -3.878761 6.302011 -0.090133 0.929109 -9.390640 -9.808186 4.871909 0.244794 3.757457 4.726575 2.495896 -3.270728 0.859727 -5.102637 -6.719806 2.561834 0.596669 0.433797 2.087263 1.116950 -5.779285 1.343974 -0.649248 -3.387731 8.842977 -6.619791 8.119886 -1.357675 -3.195087 -5.038724 -4.089598 -0.695986 -8.811188 3.792151 7.671049 -4.717481 3.293237 1.029694 3.421105 -0.026865 -10.437151 1.439936 -2.411147 -0.638243 9.257077 -5.711026 -4.351725 0.513191 0.166061 -0.555774 9.860689 -1.501998 4.019820 8.698117 6.569495 3.514573 -8.128708 2.307728 2.858893 4.882686 5.701676 6.612376 -7.582594 -5.245097 -0.677511 -0.226228 -15.378216 0.142694 6.350752 8.430297 1.786581 -12.695047 4.724921 -4.494734 10.193346 6.658078 7.060388 3.966932 -0.608339 -6.510603 3.542420 18.074572 -5.428356 6.754542 -5.036885 -11.671050 12.861500 -3.790712 8.897988 -1.000486 1.380445 4.370532 -9.353014 1.339336 12.635979 2.155321 1.876582 7.114192 -0.282088 -0.376515 -15.551747 -14.712099 -1.737727 4.839905 3.777441 19.429469 -8.137656 -5.209605 -3.192799 8.877222 -2.759183 -2.992628 0.740885 -3.733412 4.092934 -22.650531 -15.181807 15.203606 13.468333 1.776847 -0.505282 10.509658 1.728541 0.547428 -7.487955 -6.838792 6.245165 3.758047 3.626601 1.440482 -0.506372 -10.599714 -2.007124 1.842134 1.828401 6.458287 -9.505301 -4.284851 -2.444690 -12.415783 -7.854377 3.714428 -11.413764 -3.836249 0.112712 1.242646 -1.068521 3.216706 -1.642077 -5.840900 1.547287 -5.497699 -2.778354 1.611218 7.227935 1.370386 10.889406 12.760298 -0.697728 7.217189 3.936522 -6.004139 27.602674 -8.950050 -2.021609 -0.206663 8.190026 -0.467047 4.295681 4.253597 -3.417838 -3.876612 -9.753407 6.248807 -0.342456 4.201574 -18.359370 -7.837282 -10.435559 -3.204178 2.096568 10.380856 -0.046748 20.890897 -3.258383 1.984662 -22.382823 0.486971 9.426001 0.103898 7.996334 6.964669 -9.560261 -15.968107 -1.980653 -4.670108 8.281029 -2.549771 -11.026245 -6.878472 -3.204056 4.037517 -5.944323 5.876709 13.542906 -4.022259 6.244304 -0.091440 -2.436434 -2.342093 -4.778040 3.991388 4.154011 -7.495195 11.318459 -2.656145 21.504738 -3.074675 9.314611 -8.081307 3.720749 -2.960312 -5.570890 -4.453996 12.428346 7.787338 3.574107 1.553416 0.224412 -5.651081 6.055418 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = -1.006597 1.341538 6.153895 3.112972 -2.710897 -4.299868 -1.701217 -4.717646 2.044678 1.242219 3.936639 -0.685464 1.316015 1.303045 0.232356 -0.722471 1.514210 -0.488629 -0.222644 -1.551740 -1.978059 3.354125 2.192762 -2.897440 0.660975 -4.422126 2.384160 1.742716 1.163902 2.543062 0.395360 -0.038292 -0.721122 1.972086 -2.454948 0.015719 0.355105 0.950671 -1.623306 -0.194965 1.152834 0.918715 2.737016 0.035186 2.768916 1.875860 2.009825 -0.005661 -3.296302 -1.150923 -1.224450 3.524370 -1.575269 1.879877 0.661987 1.693519 0.348455 -2.999174 -0.660812 -4.010816 0.644077 0.809975 -2.145424 0.111123 -2.907477 0.582195 -0.895740 -2.103620 1.251317 -1.290430 2.054117 -0.460122 0.045660 -1.312978 -3.188210 1.295540 0.296270 1.058077 1.316277 0.083038 -1.102580 0.347867 -2.059336 -2.391157 1.011172 1.002468 0.484162 0.138467 -0.631859 -1.053006 0.396942 -0.642673 -0.696540 3.026898 -2.621400 2.157867 -0.365773 -1.342593 -2.886380 -2.820990 0.077194 -2.571250 1.514805 2.257083 -1.335191 0.352413 -0.523668 1.302847 -0.443233 -3.570520 0.620041 -1.107232 0.385022 2.971368 -2.130286 -1.086944 -0.289656 -0.576848 -0.010925 2.974219 -0.205582 0.881269 2.883810 2.339272 1.367934 -2.402420 0.014065 0.690995 1.927654 1.784953 2.041432 -3.109881 -1.499697 0.317985 -1.326727 -5.323781 -0.281707 1.844428 2.957055 0.183004 -3.698014 0.947162 -1.566307 3.332428 2.093594 2.724098 0.776636 -0.304576 -2.128780 0.928153 5.510695 -1.762360 2.607406 -1.255763 -3.122837 3.582746 -1.332505 2.745938 0.761804 0.486643 0.476058 -2.647748 -0.249232 3.795987 1.643273 1.021708 1.661298 0.358018 -0.771571 -4.590364 -5.070361 -0.282239 2.278206 0.595629 5.926158 -3.239096 -2.306189 -1.031068 3.859833 -0.863527 -1.753105 0.496625 -1.220146 1.246332 -6.497694 -4.865274 4.690447 5.340599 1.101239 -0.424778 3.672279 0.672149 -1.645985 -2.516466 -2.439629 2.054380 0.202241 -0.198824 -0.306218 -0.051996 -3.862582 -0.101510 -0.408353 1.072734 2.158012 -1.543149 -0.732271 -0.310758 -3.532517 -2.244705 1.047010 -2.769343 -1.455275 0.036324 0.432361 -0.038373 0.950159 -1.147710 -1.693358 0.943023 -2.693662 -0.315224 1.377874 2.024454 0.761018 5.650388 3.741435 -0.077170 2.716187 0.443346 -1.785546 8.209512 -2.458441 -0.103132 -0.270915 2.454288 -0.579685 1.105376 2.058782 -1.072633 -2.518558 -2.904510 1.297123 -0.480374 1.602425 -4.117884 -3.594606 -4.540426 -0.606519 0.670817 4.181079 0.094920 6.333413 -0.349154 1.293636 -7.002688 0.279427 2.530758 -0.495601 2.098748 1.742539 -3.047649 -4.938267 -0.215014 -2.090548 0.477171 -0.382437 -3.189358 -1.977918 -1.569837 1.065105 -1.327589 1.178345 3.519015 -0.632879 2.109987 0.941752 -0.917951 -0.901196 -0.840829 2.649630 0.532497 -2.526068 3.794142 -0.006749 8.270018 -0.922160 2.683344 -1.750319 0.705472 -0.312924 -1.433519 -1.332072 3.694832 3.190307 1.465680 -0.302497 0.207938 -1.605209 1.605871 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.254431 3.336097 12.326237 6.202520 -5.965004 -7.927152 -3.667645 -9.942091 4.286097 3.414528 7.813643 -1.961570 2.285007 2.881412 -0.174150 -0.085506 3.216842 -0.764408 -0.554278 -3.821480 -4.600710 6.507651 4.411578 -5.570080 1.563220 -8.090794 5.590625 2.320260 2.913372 5.199573 2.039674 -0.184703 -0.336629 5.035226 -4.311117 1.479258 -0.180451 3.001879 -3.607222 0.875095 2.663907 2.329084 5.342172 1.213855 6.136078 5.692815 4.190628 -0.543153 -7.606286 -1.521919 -3.253748 7.638555 -4.623820 4.289318 -0.613513 3.358647 -0.103856 -6.310669 -1.416125 -7.199756 0.236092 1.823989 -5.137080 0.384643 -6.884990 1.108235 -2.655205 -4.375278 1.438951 -0.749420 4.940271 -0.248171 -0.470415 -2.183673 -6.444541 3.093270 1.061524 2.438505 4.091397 -1.662262 -1.404410 0.448547 -3.852722 -5.796291 3.607263 1.452515 1.579796 0.618162 0.193628 -3.027912 -0.265660 -0.752690 -1.048041 7.371525 -4.852759 4.533691 -1.596769 -2.991877 -5.649814 -6.019289 -0.279977 -5.877474 3.576428 4.215854 -2.594839 1.579681 -0.760891 3.250298 -0.350107 -6.418463 0.684678 -2.022392 0.711266 6.324036 -3.468469 -3.551195 -0.067312 -0.926356 0.079058 5.921295 1.315014 1.641301 7.436680 4.739740 4.495391 -5.289896 -0.024244 0.395977 2.733676 4.511451 4.973076 -5.599168 -4.382186 0.130740 -1.714189 -10.466575 -0.270421 3.085253 5.690965 -0.385694 -6.976731 1.801351 -3.497755 6.152157 4.414783 5.443564 2.734124 -1.029817 -4.459240 1.909195 11.425100 -3.761640 4.878547 -2.908609 -5.589458 6.507422 -2.611445 5.148375 1.219227 0.000616 1.207834 -6.324021 -0.673845 8.311558 2.787582 1.297846 3.871697 1.340420 -2.036508 -8.685931 -9.029650 -0.700584 4.426844 0.405496 11.176775 -6.421796 -3.806112 -1.845340 7.019948 -0.611769 -2.591191 0.584971 -2.331594 2.794703 -12.759725 -9.611446 10.284065 10.367619 3.110776 -2.015030 6.235569 2.191003 -3.648370 -5.830785 -5.008029 4.279745 0.887376 -0.570811 -1.743251 0.509832 -7.759238 -0.860183 -0.235589 2.389131 3.979288 -3.422726 -1.921904 -0.224085 -7.045701 -4.108696 2.023012 -6.104512 -3.220551 0.140637 1.054728 -0.040638 1.996266 -2.958279 -3.482956 1.801218 -5.176783 -0.993543 2.777749 5.828708 1.169954 10.236350 8.610492 -0.670269 5.319664 1.460738 -4.201931 14.879020 -4.257366 -0.157026 -0.263989 4.461875 -1.137353 1.867123 4.378739 -2.710606 -5.409413 -6.334937 2.353194 -0.075465 2.996291 -6.743146 -5.445025 -8.696743 -0.926373 1.165741 8.617356 0.538553 13.003344 -0.406051 2.765200 -12.963915 0.697792 5.679735 -1.124621 4.749539 4.635578 -6.426873 -8.629824 -1.324619 -4.475194 1.021821 -0.727260 -5.347108 -4.641382 -2.747544 2.214327 -2.545419 2.606713 7.462103 -1.080778 4.205814 1.100501 -1.827951 -1.681186 -1.906312 6.767158 1.830334 -5.985854 7.274727 -0.126587 17.598129 -1.600718 5.775411 -4.381511 -0.234669 -0.243589 -2.449710 -3.586470 8.434786 6.264245 3.702838 0.629232 0.087793 -2.828089 4.212750 -PE-benchmarks/n-queen-problem.cpp__main = 0.161207 0.721585 1.665178 0.749642 -0.708941 -1.119101 -0.432457 -1.425431 0.408931 0.161471 0.998587 -0.366434 0.428039 0.478664 0.003563 -0.067801 0.572415 0.148607 0.066053 -0.482643 -0.644814 0.854975 0.194593 -0.654604 0.242331 -0.995655 0.734068 0.564556 0.521624 0.689117 0.155351 -0.022789 -0.149685 0.541348 -0.682456 -0.368539 0.063664 0.345745 -0.772697 0.161604 0.153411 0.208019 0.747617 0.043054 0.333358 0.730089 0.465539 0.153964 -0.654422 -0.131360 -0.499609 0.977478 -0.335667 0.538796 -0.098088 0.103136 0.140994 -0.594861 -0.096138 -0.515876 0.104704 0.176842 -0.505024 0.021431 -0.908124 0.124641 -0.442184 -0.776542 0.383935 0.017006 0.536009 -0.026406 -0.007049 -0.384625 -1.060362 0.395072 0.202580 0.503301 0.426355 -0.158752 0.187107 0.206417 -0.656359 -0.726663 0.433247 0.360670 0.385486 -0.017016 -0.195306 -0.483063 0.113325 -0.020077 -0.010477 0.758054 -0.396715 0.690689 -0.765366 -0.307222 -0.797726 -1.136671 -0.050797 -0.690127 0.487864 0.337359 -0.335601 0.241384 0.085501 0.454478 0.111553 -1.031864 0.034507 -0.273185 -0.037733 1.149666 -0.351778 -0.533450 -0.072346 -0.174920 -0.185170 0.725206 0.111136 0.240607 0.755359 0.680571 0.308505 -0.690480 -0.157691 0.061389 0.218816 0.624036 0.790165 -0.792973 -0.599555 -0.036546 -0.407257 -1.513197 0.072437 0.291525 0.758486 -0.263707 -0.782654 0.337287 -0.681153 0.678280 0.523561 0.717885 0.372731 -0.188123 -0.492028 0.379104 1.321491 -0.603693 0.742172 -0.504835 -0.703028 0.645968 0.007885 0.555745 0.001651 -0.022814 0.199099 -0.680094 -0.081466 1.083952 0.376716 0.187966 0.728371 0.010688 -0.473977 -1.196320 -1.110320 0.080964 0.687850 -0.124301 1.330813 -0.785258 -0.626753 -0.117946 0.999430 -0.311703 -0.350037 0.179382 -0.356996 0.398232 -1.425287 -1.269851 1.099299 1.064924 0.126367 -0.297682 0.675408 0.262107 -0.649255 -0.848223 -0.649877 0.568064 0.007028 -0.499044 -0.428853 0.052118 -0.919018 0.205545 0.144902 0.397227 0.649780 -0.288835 -0.127352 -0.197117 -1.123254 -0.737517 0.551840 -0.829181 -0.180113 0.203495 -0.036221 -0.064529 0.352070 -0.368640 -0.540281 0.335376 -0.662317 -0.102763 0.203887 0.661278 0.001441 1.458522 0.865261 0.093037 0.717372 0.301341 -0.703257 2.037676 -0.583021 0.086176 -0.072979 0.676305 -0.442448 0.418663 0.663901 -0.308181 -0.994919 -1.067539 0.041113 -0.077997 0.348100 -0.626265 -0.602455 -1.050858 -0.209240 0.145161 1.284208 0.049060 1.638412 -0.140650 0.340002 -1.489699 0.093426 0.477377 -0.205268 0.748402 0.556282 -0.815091 -1.012245 -0.113613 -0.722149 -0.117803 -0.156459 -0.931125 -0.700874 -0.287393 0.154619 -0.264366 0.230809 0.959039 -0.179221 0.528415 0.028710 -0.314537 -0.204722 -0.210840 1.068745 0.105462 -0.790815 0.924865 0.017650 2.344225 0.040088 0.718620 -0.604350 -0.335262 0.162329 -0.399473 -0.505232 1.165321 0.760208 0.500539 0.025097 0.065218 -0.250384 0.523505 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.560464 1.218509 4.086030 2.733924 -2.538084 -2.807461 -1.142233 -2.577639 1.123175 0.432983 2.113226 -0.701221 0.511970 0.904673 -0.075542 -0.952918 0.969511 0.277582 -0.678339 -1.084051 -1.801152 1.546412 1.279909 -3.005105 0.545064 -2.485285 1.820386 1.478848 0.489097 1.414455 0.160005 0.035543 -0.672398 1.509711 -2.065022 -0.653583 0.306337 0.434885 -1.287605 -0.431993 1.138196 0.805802 1.857401 -0.285424 1.385256 1.508573 1.117845 0.079115 -2.771666 -0.528719 -0.680191 2.459598 -0.731709 1.518450 0.824132 1.390120 0.342825 -2.594852 -0.285900 -2.653720 0.715078 0.545534 -1.180580 -0.118301 -2.006131 0.094021 -0.130573 -1.823590 1.546386 -0.974015 1.065667 -0.623794 -0.079179 -1.383183 -1.336081 0.917088 0.537181 1.035584 0.925399 0.261455 -0.004934 0.259488 -1.263188 -1.320206 -0.006398 0.090898 0.618255 0.284256 -0.187966 -1.038951 1.025267 -0.577571 -0.492747 1.895544 -1.499008 1.222920 -0.861202 -0.831669 -2.398617 -1.861909 -0.008383 -1.467868 1.187838 1.700453 -1.615692 0.621961 0.369714 0.919742 0.252358 -2.417986 0.035143 -1.077811 0.694389 2.058254 -1.271265 -1.172803 0.194008 -0.531232 -0.385081 1.926886 -0.337770 0.435912 1.957900 1.533467 0.933185 -1.699028 0.012106 0.119128 0.936737 1.402233 1.682786 -2.250282 -0.846636 0.074536 -0.809314 -3.504261 0.105576 0.496072 2.073696 0.705777 -2.827105 0.719095 -1.182553 2.057025 0.496997 2.031186 0.491626 -0.386147 -1.284864 0.403687 3.301554 -1.238123 1.665686 -0.776977 -2.346442 1.900756 -0.031043 1.685808 0.489898 -0.044772 0.809782 -1.823000 -0.084816 2.549390 0.810215 0.256378 1.500937 0.056033 -1.010827 -3.535021 -3.115833 0.362819 1.219526 0.040598 4.109482 -2.377417 -1.734760 -0.922619 3.083155 -1.206139 -0.790352 0.213078 -0.739737 0.990641 -3.513102 -3.379019 2.775167 3.036685 0.156669 -0.348465 2.663963 -0.242404 -1.011772 -1.562912 -1.770867 0.999205 0.664647 0.660944 -0.005871 -0.149338 -2.441307 0.223792 0.333040 0.800705 1.649554 -1.452350 -0.882436 -0.330497 -2.661287 -1.788106 0.685027 -2.169058 -0.254345 0.388480 0.393013 -0.051508 0.917312 -0.763477 -2.038100 0.184716 -1.394259 -0.221175 0.591950 1.650127 0.338506 3.721753 2.177896 -0.029217 2.190244 0.624845 -1.296290 6.113332 -1.753384 0.035585 -0.106653 1.978320 -0.531080 0.685203 1.598555 -0.822110 -1.321739 -2.103806 0.511046 -0.650535 0.816435 -3.708303 -1.808375 -3.037374 -0.794042 0.270541 2.107194 -0.043722 4.039172 -0.072339 0.401095 -4.780573 0.018605 1.920830 -0.422311 1.296194 1.370958 -2.159756 -4.069337 -0.008983 -1.300030 0.781419 -0.351368 -2.140275 -1.301089 -0.708802 0.761624 -0.424344 0.881655 3.113199 -0.451640 0.927243 0.388566 -0.489558 0.067295 -1.351589 1.573248 0.330679 -1.699364 2.958344 0.094055 5.495751 -0.054409 1.772107 -1.307644 0.024561 0.176054 -1.011242 -1.143983 2.272657 1.554408 1.160221 -0.062818 0.455000 -1.625887 1.347167 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = -0.260417 2.049788 6.604678 3.166502 -2.935434 -3.671546 -1.876955 -4.888380 1.702574 0.846864 4.107857 -1.119773 1.247135 1.895183 0.133032 -0.795731 1.998253 -0.476265 -0.007779 -1.886650 -1.981485 3.143259 1.663357 -3.186449 0.739146 -4.383961 2.795983 1.952790 1.489293 2.588152 0.674831 -0.039962 -0.576698 2.233836 -2.593844 -0.997816 0.355636 1.170445 -2.277663 0.273865 1.417236 1.408217 2.819656 0.023425 1.839749 2.467131 2.100262 0.228274 -3.107450 -0.750958 -1.908902 3.942181 -1.775629 1.821386 0.209399 1.366945 0.392571 -3.337858 -0.878711 -2.922340 0.459415 1.102467 -2.006364 0.148882 -3.148071 0.661764 -1.235584 -2.329235 1.835237 -0.396655 2.169883 -0.179060 0.126129 -1.480507 -3.123730 1.732984 0.404063 1.770786 1.466297 -0.672645 -0.074698 0.974092 -2.062860 -2.538364 1.067202 1.009191 1.039312 -0.449208 -0.053546 -1.244609 0.344660 -0.222936 -0.824476 3.121728 -2.159976 2.428207 -2.027447 -1.446880 -3.164649 -2.905558 -0.274180 -2.968961 1.872130 2.358093 -2.101756 0.757782 -0.277702 1.361400 0.002085 -3.835067 -0.081362 -1.037926 0.300971 3.874566 -2.119231 -1.715895 -0.270627 -0.494145 -0.209818 2.880628 0.042611 1.139574 3.329017 2.726824 1.127209 -2.733524 -0.239370 0.168087 1.452806 2.282480 3.001422 -3.112217 -2.141291 -0.372915 -1.026465 -5.538271 0.382151 1.053894 2.935896 -0.023663 -3.811823 1.109970 -2.282687 3.306373 2.147742 3.053913 1.269543 -0.538172 -2.049028 1.393140 5.420350 -2.192351 2.951629 -1.900312 -2.939808 3.030437 -0.643917 2.560426 0.520479 0.427490 0.792639 -3.174393 -0.596628 4.138633 1.536290 1.034775 2.753416 0.042213 -0.565167 -4.834582 -4.573900 0.096098 2.066106 -0.170688 5.431740 -3.220218 -2.276559 -0.733158 3.902393 -1.019091 -1.637591 0.383904 -1.064734 1.355560 -5.657857 -4.910999 4.390458 4.578752 0.228107 -0.644784 3.300260 0.770381 -2.243436 -2.689669 -2.569177 2.599718 0.257197 -0.448955 -0.505716 0.191100 -3.412985 0.154018 0.306751 1.458403 2.519933 -2.009523 -1.167963 0.125177 -4.417044 -2.456278 1.822466 -3.381209 -1.438006 0.476644 0.035470 -0.056358 1.178275 -1.236997 -2.142313 1.071119 -2.650304 -0.713833 1.219974 2.806008 0.343849 5.105243 3.380236 0.295733 2.737102 1.111927 -2.270162 7.798450 -2.320190 -0.142161 -0.254633 2.530797 -1.288509 1.390251 2.144938 -1.157264 -3.410336 -3.676072 1.251726 -0.767658 1.572479 -3.530411 -2.528405 -3.889639 -0.940987 1.111724 4.436513 0.184885 6.686711 -0.223895 0.983914 -6.391473 0.111259 2.422678 -0.405507 2.529635 2.241264 -3.100406 -4.517849 -0.483700 -2.351053 0.775027 -0.400563 -3.433114 -2.846115 -1.458027 1.436057 -1.148485 1.154010 3.955299 -0.691043 1.984602 0.976661 -1.314932 -0.500065 -1.241785 3.224266 0.981321 -2.926060 4.289977 -0.374079 8.739650 -0.437833 2.799811 -2.383957 -0.608273 0.354084 -1.229862 -1.669738 4.391897 2.954364 1.793689 -0.038565 -0.092942 -1.572252 2.027030 -PE-benchmarks/birthday-paradox.cpp__main = 0.338526 0.298090 0.593769 0.080963 -0.100505 -0.305350 -0.155760 -0.803632 0.299400 0.154586 0.316962 -0.275244 0.296985 -0.134658 -0.094786 0.140645 0.043185 0.122153 0.168492 -0.177385 0.002797 0.637601 -0.318395 0.034464 0.000134 -0.656814 -0.042213 0.075599 0.588347 0.169563 -0.068295 -0.240475 -0.065275 0.013778 -0.268124 -0.207196 0.125272 0.039168 -0.591232 0.134781 -0.373895 0.026518 0.169950 0.026685 0.013963 -0.128219 0.127640 0.143061 0.001186 0.176992 -0.237478 0.588647 0.191619 0.183701 0.157243 -0.359484 -0.240916 0.066776 -0.188093 0.318813 -0.100502 0.060359 0.040637 -0.046751 -0.329569 0.034956 -0.269369 -0.193353 -0.057983 0.074749 0.118694 0.205408 0.171008 -0.179499 -0.873178 0.184240 -0.020220 0.133938 0.047346 0.043659 0.333933 0.003255 -0.329279 -0.399612 0.449160 0.615608 0.053894 -0.028436 -0.232711 -0.314373 -0.070174 -0.121962 0.096261 0.065048 -0.197317 0.262314 -0.620010 -0.005372 -0.094145 -0.570317 -0.140081 -0.119578 0.068471 -0.204142 0.303981 0.003281 0.341503 0.293107 -0.009676 -0.177956 0.074666 0.193959 -0.196230 0.749312 -0.019115 -0.199939 -0.136944 0.016619 -0.478922 0.173291 0.044574 0.213295 0.137968 0.322123 0.390473 -0.278938 -0.064948 0.368051 0.040617 0.234547 0.183958 -0.538084 -0.182097 0.201359 -0.006143 -0.629191 -0.109370 0.167700 0.265896 -0.363146 0.086990 -0.053887 -0.248195 0.384038 -0.006453 -0.221561 0.176147 -0.120718 -0.213470 0.377650 0.609216 -0.223224 0.216012 -0.486857 0.072519 -0.114002 0.069897 0.211561 -0.192986 -0.060286 0.045088 -0.173594 0.118458 0.397917 0.144166 -0.046613 -0.100672 0.207608 -0.520216 -0.434999 -0.502224 -0.133462 0.174254 -0.399267 0.438224 -0.034575 -0.611044 -0.162324 0.360763 -0.050832 -0.024772 0.323709 -0.519122 0.182185 -0.177505 -0.370959 0.552792 0.640978 0.166996 -0.260580 0.333586 0.238214 -0.531700 -0.524268 0.080743 0.119573 0.012850 -0.945206 -0.464908 0.025655 -0.444301 0.015012 0.069563 0.077500 0.084410 0.417955 0.445011 -0.153726 -0.288427 -0.283339 0.570665 -0.324840 0.148138 0.113886 -0.032666 -0.177595 0.493850 -0.487327 0.060312 0.401703 -0.207929 0.227677 -0.047054 0.032572 -0.139548 0.430963 0.434750 0.269286 0.679397 0.111229 -0.428553 0.488691 -0.048098 -0.028378 -0.029434 -0.222327 -0.422241 0.288870 -0.001080 -0.127701 -0.372459 -0.317119 -0.118388 -0.040485 0.132965 0.418368 -0.418043 -0.212235 -0.014086 -0.039799 0.291538 0.198691 0.398683 -0.295805 0.249055 -0.546436 0.137438 -0.120706 0.024414 0.244945 0.062082 -0.222596 -0.378217 0.067560 -0.281227 -0.552611 -0.377165 -0.600614 -0.160349 -0.420034 0.326534 -0.107783 0.084034 0.234925 0.129545 0.356879 -0.235190 -0.146954 -0.389202 0.316397 0.390353 -0.076865 -0.325794 -0.061065 -0.054249 1.047736 -0.079770 0.237463 -0.369700 -0.160165 0.075354 -0.442350 -0.014593 0.583525 0.208326 0.322723 -0.219779 -0.142549 -0.123322 0.127556 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.206634 0.358454 0.912284 0.613861 -0.749856 -0.276371 -0.414016 -0.615495 0.229928 0.521696 0.616241 -0.646733 0.529075 -0.693148 -0.237970 -0.485363 -0.341294 0.046320 0.195834 -0.610026 -0.225364 1.093339 -0.425920 -0.491203 -0.215399 -1.006308 -0.013759 -0.083377 0.686940 0.274853 -0.460971 -0.798989 -0.355868 -0.145334 -0.588773 -0.674621 -0.261023 0.044540 -0.516083 0.429972 -0.313337 -0.273670 0.494742 0.466231 -0.607799 -0.465654 0.323699 0.306302 -0.837403 0.657084 -0.502634 0.732762 0.496475 0.261229 0.778019 -0.668980 -0.357712 0.127134 -0.881173 0.414659 -0.268100 -0.168208 0.367632 -0.347043 -0.696527 -0.171859 -0.712489 -0.343210 -0.387457 -0.046896 -0.165304 0.598769 0.195975 -0.761558 -1.427602 0.318475 -0.311011 0.022115 -0.162427 0.451102 0.178790 -0.116563 -1.068237 -0.986048 0.711959 0.549515 0.134412 -0.139142 -0.104481 -0.873517 0.132701 -0.158655 -0.153034 -0.249039 -0.170311 0.629185 -0.985802 -0.095502 -0.314296 -0.365217 -0.530784 0.136557 -0.102142 0.133060 0.017579 -0.816555 0.120567 0.418629 -0.609255 0.074073 -0.237165 0.392884 -0.589291 1.010576 -0.232410 -0.354018 -0.273587 0.121591 -0.619644 0.269000 0.012961 0.346019 0.293707 0.737363 1.158883 -0.701679 0.444760 0.455074 0.066812 0.281011 0.242313 -1.194722 -0.432148 0.892947 0.319744 -0.911946 -0.072241 0.523194 0.377368 -0.367830 -0.094315 0.210306 -0.777293 0.892187 -0.487343 -0.387964 0.444752 -0.507528 -0.543668 0.990049 1.153343 -0.511747 0.417954 -1.141207 0.042225 0.111421 0.361169 0.432881 -0.192932 -0.533537 -0.119049 -0.237065 0.423787 0.898738 0.485607 -0.552237 -0.204944 0.725872 -0.793133 -0.680039 -1.163510 -0.255220 0.218131 -0.608373 1.238163 0.023033 -1.159022 -0.622140 0.311469 -0.022738 -0.207692 0.436816 -0.729483 0.191125 -0.497405 -0.384100 1.265819 0.895425 0.020653 -0.419805 0.890701 0.052066 -0.386244 -1.287772 0.430407 0.343440 0.009856 -1.025535 -0.400352 0.177511 -1.176843 0.109482 0.168844 0.061629 0.243459 -0.199524 0.614808 -0.702348 -0.243408 -0.551368 0.974535 -1.058806 0.395836 0.456381 -0.483307 -0.470242 1.270793 -0.648314 0.298468 0.063089 -0.393124 0.500325 -0.559124 0.103664 -0.173899 0.779129 1.131860 0.437965 1.039102 0.365464 -0.868495 0.925343 -0.072976 -0.397628 0.112865 -0.224538 -0.621104 0.628396 -0.068187 -0.100457 -0.045599 -0.033674 0.338598 0.176335 0.164148 0.136094 -0.416906 -0.724514 0.350583 -0.123687 0.391186 0.219850 0.359794 -0.403715 0.426921 -0.819283 0.335016 -0.791651 0.449258 -0.083529 -0.102107 -0.453514 -0.830705 0.181787 -0.366671 0.119113 -1.097243 -0.480062 -0.158460 -0.409436 0.175821 -0.036608 0.506705 0.208318 -0.113766 0.388334 0.198533 -0.453183 -0.640852 0.725045 0.547791 0.099057 -0.487439 -0.055684 -0.372652 1.820453 0.002570 0.680207 -1.027044 -0.165607 0.423174 -1.111095 0.238392 1.398394 0.040076 0.920319 -0.293507 -0.159720 -0.197542 0.224107 -PE-benchmarks/edit-distance.cpp__main = 2.325345 8.111769 16.541487 4.080342 -10.117737 -9.558327 -3.860367 -19.811261 7.340769 5.888425 8.499531 -2.280906 4.536159 0.156265 -3.131854 4.866308 6.492625 -0.614075 -1.983955 -7.041532 -11.948395 6.166642 -0.729915 -1.284901 6.811097 -12.818613 9.682402 -0.878553 4.795579 3.823654 6.644259 0.711547 -1.962209 7.846073 1.819802 4.444827 2.060660 4.233633 -6.631599 3.418609 2.802462 -1.992245 6.929112 5.519354 8.115708 7.681123 3.713624 0.886898 -7.804406 -0.202492 -3.875811 9.410777 -5.490429 6.144744 -1.108139 1.511957 -0.750157 -8.680402 1.226702 0.238418 -3.406743 -4.361454 -5.946869 0.799564 -8.968599 0.081507 -4.650667 -7.210511 -2.040948 1.045758 5.939256 1.206674 -2.111846 -0.297541 -9.891433 2.907771 4.623829 2.533557 8.904173 -0.702879 0.845302 -2.062220 -8.543701 -10.788811 10.798854 4.367107 3.815202 0.464726 -0.860838 -5.416725 -3.025639 -2.815235 3.865657 10.921642 -10.171163 1.026709 -5.824660 -6.292531 -9.812361 -14.519374 0.773680 -7.134752 5.897605 0.748027 -7.197529 4.376416 1.995860 3.634950 2.469985 -4.515751 0.577890 -4.357653 3.281516 12.759933 -0.397898 -8.842159 -2.839289 -3.186580 -0.589572 5.316322 3.501126 -0.906804 17.060675 5.806359 8.638602 -5.456507 -1.829633 1.211854 -0.738231 4.172786 7.638032 -10.912358 -6.255272 3.046484 -2.384668 -15.654708 -1.610142 0.001799 6.949845 -5.006391 -5.368643 1.295397 -3.233748 2.283430 4.482510 2.298818 4.414487 -1.261069 -4.273344 1.803080 14.391666 -4.829792 4.198676 -8.073500 -2.857639 6.222998 -1.427877 3.129834 -0.684109 -1.916338 -1.146916 -7.118339 -0.025854 11.169706 -0.311017 -3.391020 3.779227 3.113476 -7.609670 -10.272819 -11.926871 -0.289632 7.392000 -0.432125 13.000314 -9.902591 -1.685571 -4.337644 10.628271 0.872132 -1.422378 3.955813 -5.697013 4.335957 -6.968509 -12.146279 14.651405 11.820346 3.690864 -5.063696 5.017617 0.885090 -12.840938 -10.872941 -7.876948 2.636028 3.398139 -8.805515 -7.790574 2.477653 -11.149016 0.209172 -0.436805 3.896905 10.370589 -0.596456 2.794351 -0.929448 -5.994171 -8.885374 6.173870 -3.871820 -3.732119 1.295694 2.772448 0.684533 6.263719 -2.606449 -5.733143 -0.351927 -5.144974 -1.336311 5.574778 9.311694 -1.350364 15.280926 10.613368 -2.624524 5.531424 0.495541 -5.558834 12.377258 -2.638313 1.565417 1.190225 3.725280 -3.151861 3.686849 9.522597 -4.520645 -9.635910 -8.118007 -0.381546 -2.942386 0.979993 -3.355463 -4.066876 -12.091523 -1.650674 -2.176691 10.139471 1.836611 15.075856 0.459891 3.336761 -13.884393 0.861294 7.054596 -1.825555 7.526364 6.184628 -10.015789 -4.126262 -2.966616 -9.745424 -6.997632 -0.394620 0.286278 -8.023160 -1.447733 5.437229 -2.077215 1.685763 9.601037 0.715884 5.762726 -2.442308 0.958467 -4.723378 -0.010833 14.727735 0.093021 -6.212076 7.514587 1.635337 22.313951 1.739576 5.470934 -3.829706 -6.146693 1.998747 -5.798147 -7.465015 9.722023 6.639396 6.189844 0.761852 -1.423796 -0.589458 10.527022 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 2.554244 16.308307 37.053578 12.786981 -22.119404 -19.082759 -8.368376 -35.956996 13.952515 10.109724 17.296325 -3.789094 8.798024 2.013917 -5.409833 6.161297 14.564792 -1.942710 -4.340466 -14.194734 -21.584024 13.785980 0.853036 -10.788062 12.897132 -28.224840 22.940430 0.536323 8.462475 10.932073 13.033205 2.178907 -3.696548 16.889722 0.378018 5.699086 4.065657 8.718441 -13.427353 5.544781 8.676916 0.321301 14.431884 9.226690 14.877307 17.641691 10.007243 1.890246 -17.440946 -0.534747 -11.002168 20.260099 -12.043537 13.311409 -2.736208 6.666867 0.093497 -20.769162 0.425726 -5.774654 -4.829778 -4.201172 -12.297521 0.637158 -20.023964 0.601056 -6.827251 -14.903666 -1.003335 3.106895 12.404921 2.357707 -1.966506 -5.065797 -19.124352 7.424966 7.201877 8.013376 17.400428 -2.227575 -0.216088 -2.635788 -16.255842 -20.999448 18.025039 6.522945 7.472085 -0.475688 2.635391 -11.099384 -6.200794 -4.874421 2.895468 22.740270 -19.665735 5.107974 -13.167204 -10.935526 -19.548141 -24.348455 0.196799 -16.280856 11.518427 7.517736 -15.870861 9.029427 4.097777 7.424105 4.598404 -10.433304 0.655134 -9.199538 4.666902 24.994785 -1.960417 -17.381575 -3.331886 -5.492784 0.051352 13.658271 3.277129 0.444313 34.147974 13.675033 16.551658 -12.229992 -1.548666 2.487208 0.701746 9.974821 18.087920 -23.942793 -13.232773 3.407180 -3.998217 -32.033826 0.619141 0.963348 15.357594 -8.272637 -17.886775 4.810277 -8.234739 8.968355 9.360547 8.731146 9.497908 -2.446341 -9.288834 5.218034 33.636634 -10.638380 9.705492 -17.466541 -7.776334 16.162944 -1.674437 8.496120 -1.490232 -2.155315 -0.413433 -17.088431 -0.944453 24.367035 1.905167 -4.571509 12.960535 4.343692 -11.681158 -25.290692 -24.072151 -1.567483 13.912439 -1.199179 32.495818 -21.364239 -4.247212 -9.973529 21.460829 -0.954656 -3.355102 5.825391 -10.074405 9.020390 -19.138169 -27.090500 31.220727 23.364155 3.474882 -8.635435 13.711976 1.202218 -23.006473 -21.653820 -16.574437 7.403426 7.026443 -10.413764 -11.398012 5.369712 -24.052514 -0.575098 1.317327 8.258773 23.359765 -4.713150 -1.186994 -0.201231 -17.244904 -19.527118 11.822456 -11.908224 -9.491247 3.718089 5.248854 1.507820 11.812947 -4.438966 -13.799883 0.265556 -10.842045 -5.254774 10.593564 20.548951 -1.835492 29.206407 22.455782 -3.274382 11.419045 4.576835 -12.219677 33.329863 -5.710864 1.209079 2.269725 9.968641 -5.840190 7.812973 18.215668 -9.017167 -19.329516 -19.796497 3.677610 -7.297566 3.076041 -14.882229 -7.348546 -22.994176 -4.500617 -1.486369 22.274244 2.621250 34.844031 1.379035 5.101367 -33.052832 1.212569 17.239796 -2.264032 14.236722 15.083700 -20.877676 -14.096625 -5.371223 -17.366328 -8.184033 -2.124317 -3.081533 -18.235994 -2.917824 10.072519 -4.695211 4.793952 25.809234 -0.370279 11.934210 -3.201811 0.376581 -7.522050 -3.649184 25.970257 3.602077 -13.476643 19.660033 0.792283 47.958049 1.779677 12.790381 -10.180304 -10.823315 3.988643 -11.266884 -14.926606 22.055779 12.206489 12.711559 4.950300 -2.949872 -3.498124 22.583438 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.051937 0.542768 1.597998 1.335866 -1.071352 -1.705940 -0.405035 -1.921554 0.977842 0.361868 1.260261 0.070293 0.968023 -0.479713 -0.150081 -0.209116 0.827476 0.367187 -0.095495 -0.587645 -0.967915 1.786975 0.139098 -0.951255 0.370582 -0.899578 1.456789 0.870285 0.769853 1.189927 0.181157 0.086444 -0.220354 0.736217 -0.672721 -0.203356 -0.503397 0.676596 -0.771309 -0.214717 0.635852 -0.403951 1.422871 0.199425 0.608866 0.451455 0.695614 0.029545 -0.887273 -0.401081 -0.580765 0.558182 -0.581978 0.907835 -0.604728 -0.214270 0.715295 -0.185979 0.225472 -0.839418 0.257777 -0.248819 -0.859328 -0.184640 -1.203993 -0.046033 -0.528691 -1.147408 0.134431 -0.446553 0.559655 0.036971 -0.324860 -0.887498 -1.822310 0.178092 0.576489 0.298332 0.873800 0.665357 -0.038574 -0.398552 -1.185033 -1.023366 1.031524 0.283977 0.504147 0.633874 -0.813871 -0.897678 0.253149 0.264843 0.474199 0.857924 -0.539157 0.551695 -0.467645 -0.383652 -0.624927 -1.481323 0.272679 -0.746420 0.477104 0.351032 -0.524690 0.263861 0.211036 0.342343 -0.109715 -1.197917 0.091976 -0.870158 -0.047408 1.401532 -0.084916 -0.920445 -0.440041 -0.188607 0.071145 0.871555 0.268389 0.039815 1.270066 0.698284 0.675936 -1.127770 -0.224667 0.447877 0.258649 0.644488 0.428630 -0.671193 -0.660496 0.237918 -0.720114 -2.034414 -0.386849 0.594275 1.034203 -0.524668 -0.797732 0.939507 -0.774712 0.590686 0.997425 0.521959 0.553425 0.198888 -0.837780 0.519813 1.599227 -0.481267 0.542345 -0.649912 -1.232807 1.459651 -0.010184 0.453164 -0.200925 -0.386088 -0.029469 -0.593885 0.551889 1.410401 -0.181040 0.111959 0.474370 0.232373 -0.742473 -1.386726 -1.881782 0.126776 1.472611 1.019247 2.231692 -1.201799 -0.297872 0.066180 0.816069 -0.223844 -0.474583 0.447435 -0.632644 0.789620 -2.667044 -1.774833 1.928749 1.020507 0.558267 -0.142082 0.671800 0.257329 -0.223278 -1.010342 -0.976584 0.589941 0.593513 -0.743955 -0.260740 0.199530 -1.417423 -0.055835 0.286441 0.240916 0.706916 -0.899415 0.211938 -1.230497 -0.895075 -1.127795 0.820918 -0.963475 0.007782 0.033003 -0.176940 -0.123028 0.673953 -0.005153 -0.479299 -0.295230 -0.544689 -0.114639 -0.145601 0.690495 0.011374 1.690599 1.852665 -0.657295 0.500612 0.229175 -0.744254 2.700127 -0.993607 0.155472 0.153466 1.207619 0.286349 0.684335 1.271144 -0.545281 -0.369260 -1.515194 -0.108407 0.630721 0.428073 -1.623554 -0.385440 -1.999511 -0.179240 -0.276514 1.811654 -0.116382 2.231823 -0.643975 0.371733 -2.050593 0.113013 0.618863 -0.138286 1.183175 0.490959 -1.120497 -0.860610 -0.374653 -1.048951 0.062424 -0.216179 -0.646750 -0.900902 -0.126715 -0.095685 -0.794871 0.430559 1.155599 -0.643174 0.733481 -0.666551 -0.007628 -0.538150 -0.144126 0.940988 0.149046 -0.809387 1.001878 0.105583 2.540406 0.080661 1.045652 -0.737106 0.534237 -0.364193 -1.332069 -0.803652 1.415530 1.011980 0.434448 0.363509 0.436349 -0.027659 1.101833 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/quicksort-for-linked-list.cpp__main = -0.023937 1.211338 5.570090 3.969523 -3.703850 -5.882228 -1.245381 -7.232067 4.167575 1.399620 4.396010 0.838594 3.528956 -2.220540 -0.401123 0.191106 3.543086 0.925190 -0.635084 -2.481765 -1.554685 6.681620 0.302289 -2.941942 1.259397 -3.859546 3.145345 2.834091 3.471779 3.786910 1.205045 0.078579 -1.332317 1.969082 -2.087730 -0.127160 -0.947663 1.456325 -4.393719 -1.105244 1.123599 -1.077660 4.923707 0.211440 3.217027 -0.235845 3.031010 0.361312 -2.721938 -1.603079 -2.203791 3.413825 -1.246766 3.080958 -1.066007 -0.747886 1.228244 -0.625676 0.453850 -2.280346 0.517995 -0.433463 -2.649193 -0.573715 -3.576842 0.111830 -1.727465 -3.397489 0.226305 -2.445106 1.874018 -0.089534 -0.624419 -2.882215 -7.035793 0.342377 1.410070 1.286629 2.733245 2.949464 0.131443 -1.980949 -3.435554 -2.988632 3.197460 2.073537 0.804194 2.248025 -3.875886 -2.589799 0.385241 0.356874 1.630752 1.985301 -3.697912 1.382434 -1.356699 -1.576188 -1.773995 -4.654752 1.084324 -1.984129 1.419844 -0.071379 -0.773783 1.302094 0.463279 0.910833 -0.740308 -3.206715 0.865232 -1.927183 -0.584040 5.773428 -0.968571 -3.005158 -2.234322 -0.175041 -0.792180 2.886064 0.449180 0.737227 3.732072 2.477091 2.710439 -3.943176 -0.713860 2.302970 1.643595 2.138492 1.548763 -1.718077 -2.054660 1.090901 -2.404912 -7.009636 -1.857025 2.391121 4.146660 -0.943718 -1.854141 1.265124 -2.352059 3.263940 3.080072 0.866274 1.855377 0.671219 -3.307258 1.704361 5.726942 -1.458366 2.268583 -2.340871 -3.065643 4.084302 -0.414033 1.911584 -0.908789 -1.248194 -0.328266 -1.710597 1.443025 4.351073 -0.268105 0.234401 0.082900 1.215882 -2.690202 -5.191919 -7.187792 -0.493593 4.129751 3.381067 6.942427 -3.691544 -1.846253 -0.588849 2.604647 -0.731760 -2.095391 2.328943 -3.341757 2.612539 -8.417107 -5.757033 7.605835 5.702913 2.400825 -0.430225 3.033531 0.964520 -2.369233 -3.360309 -2.429463 1.740766 2.030056 -4.302424 -0.803109 0.848230 -4.986333 -1.046107 0.786059 0.953860 1.837127 -1.456147 2.849190 -3.115970 -2.678457 -3.488626 3.300718 -2.624169 -0.298739 0.088532 -0.108204 -0.073429 2.546348 -0.918096 -1.339236 0.005205 -2.134760 -0.148828 -0.513581 2.487678 0.239456 5.008796 6.392230 -1.336428 3.712097 0.145321 -3.392988 8.569806 -3.361753 0.762286 0.023051 2.562444 0.681072 1.989926 3.294240 -1.951344 -1.158365 -4.413400 -0.672905 1.533693 2.209531 -4.672094 -3.162904 -6.062559 -0.247268 -1.049321 5.074251 -0.422014 7.555212 -3.270108 1.378371 -8.270598 0.587682 2.425290 0.000319 3.770670 1.583746 -3.783186 -3.181583 -0.732297 -3.997868 -0.464342 -0.475323 -2.938251 -2.895701 -1.648436 2.043579 -3.251709 0.993669 4.009230 -2.228633 3.980780 -2.141396 -0.037762 -1.956796 -0.103856 2.703723 0.816778 -2.697639 3.167376 0.307449 9.072939 0.347096 3.144760 -2.089263 2.205516 -1.515195 -5.386926 -2.698470 4.791230 4.199675 1.434108 0.398892 0.359535 -0.376078 3.263014 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.770253 0.251554 2.251650 2.539245 -2.025703 -2.539033 -0.597663 -2.348724 1.556786 0.565703 2.051567 0.486525 1.535136 -1.126752 -0.154977 -0.771485 1.560280 0.301945 -0.390551 -1.020715 -1.106270 2.784003 0.843543 -2.086918 0.544289 -1.047122 2.154319 1.119176 0.820113 2.095423 0.400227 0.197818 -0.620600 0.953090 -0.938821 -0.058711 -0.919836 1.002050 -1.113995 -0.724954 1.333021 -0.868980 2.321928 0.161079 1.171803 0.282161 1.294655 -0.090823 -1.934358 -0.978745 -0.898259 0.587528 -1.152742 1.437732 -0.730309 -0.094273 1.235858 -0.264353 0.120734 -2.233636 0.484343 -0.583685 -1.313697 -0.339232 -1.757246 0.063477 -0.740757 -1.657461 0.216663 -1.257470 0.838384 0.063016 -0.283587 -1.383900 -2.442310 0.137721 0.692671 0.467352 1.241246 1.570513 -0.422314 -0.957838 -1.684949 -1.289134 1.212672 -0.204628 0.579009 1.098028 -1.251839 -1.008378 0.601310 0.487556 0.530238 0.943436 -1.148206 0.730294 -0.118895 -0.653349 -0.622073 -1.760422 0.464598 -1.062956 0.584386 1.005240 -1.243800 0.406251 -0.206595 0.414674 -0.523520 -1.808779 0.313426 -1.289935 -0.361685 1.872479 -0.604325 -1.296427 -0.778122 -0.031457 0.494925 1.352070 0.178556 0.374410 1.684188 1.018511 1.116017 -1.856931 -0.035994 0.704573 0.864399 0.774876 0.596983 -0.476537 -1.029490 0.495696 -1.171542 -2.955508 -0.875977 1.248001 1.917583 -0.009650 -1.683812 1.316672 -1.174350 1.213435 1.571113 0.984709 0.855514 0.437458 -1.511196 0.640125 2.296261 -0.700106 0.951379 -0.571988 -1.998875 2.627268 -0.054085 0.738252 -0.299404 -0.514498 -0.005307 -1.009012 0.703345 2.061371 -0.086999 0.229049 0.353037 0.481769 -0.794640 -2.443203 -3.072475 -0.011788 2.278672 2.178534 3.410357 -1.948645 -0.206057 0.005822 0.964118 -0.365997 -1.095778 0.454543 -0.858865 1.130699 -4.790351 -2.744839 3.378371 1.734476 0.853893 0.210289 1.099659 0.244842 -0.104538 -1.238511 -1.596526 0.960526 0.962513 -0.549259 0.028872 0.386847 -2.287310 -0.540749 0.588014 0.372593 1.028529 -1.965564 0.266319 -1.618809 -1.096693 -1.479158 1.092769 -1.521258 -0.314862 0.001175 -0.255708 0.236789 0.812520 0.277466 -0.632591 -0.766358 -0.892027 -0.490566 -0.395559 1.316885 0.256941 2.369715 3.113680 -1.189963 0.418138 0.156296 -1.435690 4.432962 -1.802331 0.127575 0.010647 2.037791 1.001401 0.747771 1.988564 -0.833809 -0.175992 -2.054660 -0.055185 1.118900 0.914446 -3.551010 -0.928560 -3.134620 0.050407 -0.442677 2.568589 -0.396483 3.542025 -1.300929 0.346579 -3.529536 0.144120 1.370479 0.015078 1.641232 0.726300 -1.610262 -1.673892 -0.618993 -1.662070 1.186051 -0.296822 -0.763416 -1.248693 -0.071775 0.173569 -1.326729 0.692846 1.762340 -1.325142 1.510620 -0.437859 -0.043905 -0.667023 -0.377188 0.674123 0.669498 -1.144133 2.053682 0.191811 3.635592 0.253476 1.379114 -1.074271 1.347705 -0.926812 -2.195149 -1.206380 2.085766 1.885552 0.528894 0.752222 0.594856 -0.160831 1.594849 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.832623 -0.078761 2.796386 1.915592 -1.223958 -2.295844 -0.708491 -3.006526 2.104930 0.964891 2.593820 0.319231 1.818403 -1.361924 -0.097252 -0.501203 1.454965 -0.155673 -0.382084 -0.979886 -0.023588 3.173683 0.615379 -1.884356 0.501664 -2.251941 1.510915 1.183279 1.019126 2.145556 0.346832 0.248203 -0.385627 0.963033 -1.229173 0.314562 -0.035821 0.768848 -1.226786 -1.005105 0.981882 0.167551 1.987621 -0.021285 2.015672 0.047023 1.097267 -0.278606 -1.506942 -1.120861 -0.541385 1.227217 -0.902339 1.308933 -0.457215 0.140107 0.645191 -0.814208 -0.042190 -2.538752 0.759511 0.288183 -1.186993 -0.316741 -1.394238 0.253726 -0.009668 -1.235583 0.311607 -1.733533 0.903259 -0.040758 -0.161452 -1.338620 -2.520661 0.378106 0.666267 0.206674 1.123157 1.122395 -0.575027 -1.020829 -1.256138 -1.308585 1.498110 0.878496 0.335565 1.332896 -1.362413 -0.806077 0.282393 0.129993 0.402802 1.208733 -1.539453 0.305392 0.462738 -0.766555 -0.405726 -1.093115 0.530100 -1.278078 0.497844 1.184737 -0.647471 0.737869 -0.000915 0.714630 -0.809114 -1.410432 0.651504 -1.051973 -0.129366 2.113267 -0.912403 -1.213484 -1.100256 0.016434 0.275565 1.657381 -0.268298 0.585150 1.885079 1.146023 1.185224 -2.061247 -0.145372 1.366258 1.383515 0.868581 0.430595 -1.310794 -0.787010 0.421876 -1.402080 -3.154192 -1.211270 0.864813 2.104336 -0.289968 -1.984629 1.466574 -0.883015 1.901658 1.830186 0.483383 0.581299 0.624044 -1.924710 0.747949 2.792463 -0.782595 1.115292 -0.929951 -1.811090 1.943030 -0.329910 0.998333 -0.141640 -0.383319 0.126815 -1.202984 0.895685 2.175993 0.137247 0.821697 -0.465617 0.671085 -0.674235 -2.608922 -3.723296 -0.720527 1.712697 1.760441 3.933895 -1.805964 -1.086609 -0.551644 1.643811 -0.558984 -1.076575 0.709493 -1.414675 1.164351 -4.411675 -2.955152 3.902148 2.994717 1.592932 0.205816 1.903771 0.312235 -0.379593 -0.792886 -0.945151 1.022269 1.246186 -1.211545 0.193695 0.237821 -2.324724 -1.186378 0.074665 0.283912 0.309314 -1.043442 0.833020 -1.033548 -1.167508 -1.215787 1.102958 -1.469211 -0.413135 -0.393278 0.094228 0.095080 1.018658 -0.686526 -0.550500 0.094744 -1.130952 -0.231848 0.050811 1.211449 0.610761 2.077082 3.210505 -0.919058 1.459264 -0.085691 -1.306690 4.019042 -1.546631 -0.039302 0.050267 1.311607 0.971772 0.809709 1.368054 -0.886098 -0.011183 -2.180768 0.148471 0.886981 1.164225 -2.837821 -1.635418 -2.752670 -0.152843 -0.377938 2.499690 -0.177846 4.043508 -1.281120 0.545122 -4.313003 0.130290 1.503511 -0.004463 1.270907 0.820073 -1.688990 -2.850096 -0.291679 -1.690632 -0.122775 -0.389402 -1.461392 -1.359508 -1.179202 1.482430 -1.685086 0.714409 2.111224 -0.520832 1.762303 -0.517195 -0.048283 -0.996394 -0.154530 0.265004 0.619897 -1.269630 1.503008 0.108716 4.064929 -0.484699 1.700327 -1.255511 1.986722 -1.240348 -2.340282 -1.058273 2.215316 2.234846 0.575552 0.326076 0.128906 -0.611682 1.784710 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.255972 1.689429 5.279426 3.183268 -3.797781 -5.821051 -1.173632 -7.202012 3.566621 1.379370 4.168674 0.664828 3.398599 -1.524400 -0.309442 0.415629 3.615005 0.978251 -0.210293 -2.498759 -2.113606 6.046235 -0.037312 -1.775575 1.321357 -3.357086 3.236479 2.530974 3.401134 3.555364 1.325658 -0.029689 -1.626433 1.797630 -1.422550 -0.199189 -0.958816 1.499070 -4.230984 -0.367687 0.768354 -1.805741 4.849494 0.464132 2.691266 0.062618 2.554200 0.639870 -2.514900 -1.525113 -2.100337 2.869410 -1.197786 2.896542 -1.006822 -1.242128 1.129767 -0.062329 0.666948 -1.241672 0.175236 -1.248203 -2.470397 -0.313071 -3.546629 0.036750 -2.642402 -3.360885 -0.048380 -2.084151 1.710005 -0.132173 -0.684975 -2.137886 -7.115383 0.215948 1.454347 1.273013 2.671003 2.668234 0.217038 -1.647599 -3.703974 -3.189166 3.029598 2.200716 0.913706 1.737782 -4.215561 -2.445012 0.329685 0.519588 1.837911 1.978874 -3.458028 1.479243 -1.983533 -1.646418 -2.031756 -5.664602 1.037869 -1.804446 1.504315 -0.691811 -0.875779 0.729071 0.020619 0.759406 -0.490791 -3.226974 0.847032 -1.925540 -0.660395 5.676246 -0.720571 -2.886630 -2.423373 -0.416110 -0.527486 2.479723 0.882768 0.414489 3.434914 2.351863 2.635115 -3.602508 -0.955196 1.920844 1.080963 1.861300 1.571164 -1.354810 -2.127681 1.235580 -2.530716 -6.645382 -1.724639 2.288631 3.779720 -1.219924 -0.883210 0.733124 -2.627863 2.542472 3.033855 1.053741 1.868551 0.472457 -2.910850 1.575569 5.066768 -1.491259 2.231812 -2.156155 -2.687200 3.929710 -0.319142 1.712971 -0.890668 -1.157331 -0.735433 -1.372239 1.087160 4.144430 -0.258960 0.101560 0.357988 1.054643 -2.799095 -4.476910 -6.603029 -0.115274 4.546406 3.169885 5.754218 -3.574282 -1.318295 -0.126602 2.437973 -0.206678 -2.265126 2.369566 -2.831231 2.397010 -7.837765 -5.208632 6.749328 5.137838 2.082994 -0.754266 2.142308 1.146800 -2.866523 -3.705916 -2.676149 1.770413 1.080894 -4.708045 -1.354948 1.015570 -4.683803 -0.294928 0.695083 1.078349 2.371189 -1.327204 2.973924 -2.978760 -2.395381 -3.506169 3.437330 -2.204167 -0.466854 0.264516 -0.334085 0.012203 2.328030 -0.567221 -1.179131 0.037325 -2.122165 -0.090845 -0.427148 2.215326 -0.137130 5.310635 5.668659 -1.231686 2.779646 0.009030 -3.273932 7.792096 -3.206618 1.002202 -0.001348 2.428059 0.264833 2.000525 3.547659 -1.787779 -1.875545 -4.137768 -1.090091 1.349699 2.068659 -3.694444 -3.054211 -6.097852 0.126087 -1.068437 5.275038 -0.349655 6.896325 -2.880844 1.571572 -7.000003 0.664621 1.864201 -0.182290 3.895312 1.307484 -3.594989 -1.677421 -0.792360 -4.198642 -0.574838 -0.125512 -2.353258 -2.754265 -1.144048 1.328544 -2.689015 0.622484 3.095083 -2.364463 3.853406 -1.703473 -0.188143 -2.037183 0.197922 3.622306 0.452535 -2.509264 3.147477 0.550120 8.547567 0.721650 2.740605 -1.544524 1.303625 -0.980893 -5.022652 -2.695349 4.582306 3.986080 1.632790 0.139388 0.416254 0.198507 2.848870 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.437576 0.303060 1.557264 1.386619 -1.408461 -1.852381 -0.383762 -1.955717 1.139571 0.482699 1.460722 0.414570 1.260212 -0.740706 -0.094230 -0.380700 1.229821 0.164306 0.086254 -0.691370 -0.785129 2.210758 0.428288 -0.779020 0.390328 -0.850204 1.553299 0.527318 0.924833 1.662188 0.389817 0.019933 -0.655247 0.519339 -0.229810 0.031285 -0.641918 0.727913 -0.960804 -0.247256 0.601978 -1.106059 1.685994 0.263695 0.769656 -0.023319 0.717219 0.046868 -1.087369 -0.745045 -0.757452 0.276732 -0.825235 0.993159 -0.440837 -0.494877 0.756785 0.328062 0.158114 -1.101188 0.107073 -0.915660 -0.845234 -0.093041 -1.311835 0.089185 -1.254734 -1.023588 -0.127132 -0.843989 0.626366 0.190632 0.053364 -0.611134 -2.308758 0.060430 0.358049 0.333156 0.913637 1.234959 -0.342007 -0.575012 -1.381987 -1.127986 0.959024 0.195265 0.254065 0.522075 -1.321043 -0.643931 0.200189 0.408764 0.521003 0.606554 -0.970843 0.639047 -0.453992 -0.428950 -0.202929 -1.971754 0.281394 -0.765923 0.348606 0.284488 -0.662035 -0.047047 -0.345183 0.229320 -0.305610 -1.338165 0.531232 -0.787454 -0.579944 1.540744 -0.381527 -0.792841 -0.812206 -0.014439 0.410574 0.853377 0.326862 0.297295 0.899299 0.714257 0.927636 -1.176301 -0.124495 0.741878 0.499069 0.345441 0.320817 -0.130072 -0.759083 0.525995 -0.810596 -2.109713 -0.746620 1.124069 1.281954 -0.099230 -0.551905 0.464131 -0.950065 0.656607 1.291235 0.583035 0.709906 0.340402 -0.985913 0.532912 1.592300 -0.515521 0.669369 -0.383906 -1.184064 1.974650 -0.229506 0.561967 -0.463245 -0.123113 -0.159570 -0.616545 0.346168 1.437638 -0.103669 0.186696 0.169903 0.339846 -0.677065 -1.581594 -2.157794 0.013472 2.037652 1.550622 1.891851 -1.283072 0.092220 0.253347 0.615316 0.171734 -0.938360 0.500324 -0.568369 0.743589 -3.561320 -1.823616 2.376592 1.300372 0.553982 -0.020976 0.319864 0.589155 -0.511731 -1.166767 -1.316740 0.716077 0.144910 -1.061179 -0.371007 0.376069 -1.621828 -0.229956 0.423712 0.229167 1.075346 -1.165311 0.557669 -1.038766 -0.588140 -1.087463 1.178649 -0.915709 -0.479570 -0.010168 -0.252290 0.227327 0.594776 0.316403 -0.139130 -0.233163 -0.665057 -0.346651 -0.234432 0.712525 -0.063476 1.831826 2.131598 -0.695626 -0.160484 0.016039 -1.138069 2.968419 -1.302144 0.127050 -0.076885 1.152933 0.593743 0.630738 1.432470 -0.579331 -0.600652 -1.416888 -0.247565 0.705691 0.723243 -1.996515 -1.028529 -2.257070 0.281287 -0.320725 1.950342 -0.133231 2.463458 -1.049666 0.372800 -2.173983 0.191147 0.864923 -0.001722 1.434174 0.332983 -1.020697 -0.344563 -0.549519 -1.359994 0.799759 -0.148592 -0.543193 -0.787155 -0.088529 0.108575 -0.875253 0.354475 0.790436 -1.033088 1.392705 -0.202404 -0.113486 -0.889433 0.131762 0.764113 0.343765 -0.776602 1.509893 0.185966 2.416028 0.144976 0.692083 -0.538820 0.775666 -0.697273 -1.665307 -0.777558 1.522090 1.418722 0.491897 0.300561 0.337468 0.124562 0.907573 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -3.396060 0.184932 8.229207 7.041862 -5.333908 -6.984289 -2.578127 -8.198949 5.403565 2.526017 7.826578 0.816448 4.739338 -3.451914 -0.012610 -2.285815 4.862734 -0.818841 -1.721550 -3.398013 -1.709924 8.347719 2.768582 -6.683931 1.684686 -5.220241 5.074714 3.620598 1.567261 5.407503 1.377799 0.943919 -1.612439 3.222627 -3.788998 0.977340 -0.542314 2.684659 -2.978541 -3.083061 4.312602 0.110582 6.452387 -0.185220 5.404652 0.946850 3.858040 -0.659345 -6.436444 -3.611413 -1.597811 3.624400 -3.358275 4.047226 -0.733184 0.970231 3.112124 -3.407479 -0.302898 -7.932895 1.949356 0.127120 -3.823646 -0.943165 -4.094254 0.717586 0.421757 -3.934182 1.660388 -4.811602 2.809938 -0.616215 -1.074199 -3.676693 -5.692297 1.098994 2.335167 0.871189 3.534654 3.726734 -1.484208 -2.951956 -4.012202 -3.985560 4.069339 0.703089 1.796553 3.669145 -3.459638 -1.893260 1.704704 0.274881 0.972105 3.690555 -4.555342 0.816096 1.850979 -2.966379 -2.937878 -2.903297 1.639957 -3.817067 1.879475 4.715185 -3.992342 1.660177 -1.192682 1.578580 -2.633352 -4.839813 1.079116 -3.899130 0.078798 5.758537 -3.281458 -3.754354 -2.787910 -0.289745 1.421985 4.747172 -0.180638 1.574198 6.326756 3.672867 3.357401 -6.166285 -0.340405 2.401808 4.307916 2.581223 1.884299 -3.684447 -2.842750 1.488434 -4.269804 -9.152214 -3.550227 2.725834 6.761059 0.533949 -7.093850 4.704087 -2.771817 5.344773 4.718326 2.690700 1.624138 1.517936 -5.501445 1.896492 7.486522 -2.447772 3.697672 -1.866454 -5.883713 6.476977 -0.769993 2.711100 0.779114 -1.456051 -0.209878 -3.826165 2.164519 6.526947 0.705858 1.959962 -0.701332 1.986151 -1.653738 -8.001805 -11.206899 -0.948249 5.214650 5.469259 11.567633 -6.142989 -2.726907 -1.262458 5.058708 -2.353586 -3.941931 1.477372 -3.433417 3.534599 -12.443832 -8.651632 11.332298 7.837431 3.678067 1.010747 5.860470 0.079596 -1.406593 -2.497713 -3.898744 3.627935 3.960162 -1.431450 1.235847 0.972632 -6.984391 -3.072138 0.312075 1.400143 1.362155 -4.866899 1.248329 -3.121492 -3.775110 -3.256490 2.535094 -4.300248 -1.335525 -0.726141 -0.130981 0.735026 2.985499 -1.049181 -2.549710 -1.514948 -3.782578 -1.443167 -0.003116 4.644351 2.042918 7.246237 9.426224 -3.426875 4.009503 -0.237847 -3.959977 12.220199 -4.997745 -0.034499 -0.230174 5.474697 3.235147 1.966228 5.318880 -2.610775 -0.364010 -6.437388 0.664982 2.613575 3.285355 -10.618583 -3.935443 -9.351137 -0.497337 -0.814418 7.626027 -1.176871 11.818557 -3.437909 0.961446 -12.879997 0.283592 4.671436 -0.127873 3.427397 2.482167 -5.162403 -8.829132 -1.150447 -5.364052 1.044463 -0.713432 -3.117232 -4.288491 -2.701266 3.986653 -4.637104 2.134538 6.588477 -2.011476 4.479964 -0.126558 -0.364874 -1.938787 -1.443504 1.224843 1.944935 -3.792871 6.150597 0.527177 12.637243 -0.633506 5.105066 -3.742381 5.122322 -2.913915 -6.556639 -3.487810 6.478737 6.786787 1.443762 1.606535 1.139904 -2.059818 5.674856 -PE-benchmarks/sudoku.cpp__main = -0.332105 1.459919 4.841516 1.854684 -2.489646 -2.828195 -1.588237 -4.654345 1.680749 1.076399 3.251226 -0.869295 1.205635 0.678576 -0.030603 -0.244877 1.634384 -0.416878 -0.048637 -1.528307 -1.516492 2.417028 0.602285 -1.743366 0.746981 -3.262131 1.851734 1.431558 1.096073 1.439531 0.769188 -0.018021 -0.911863 1.678592 -1.659565 -0.051770 0.944555 0.996896 -1.983120 0.101044 0.779677 0.881090 2.087341 -0.272907 2.192931 1.528928 0.981393 0.327049 -2.600211 -0.792963 -0.551204 2.953911 -1.053547 1.478573 0.807046 0.590104 -0.041747 -2.491936 -0.461584 -1.695378 0.352729 0.317047 -1.282642 0.292360 -1.965600 0.374841 -0.483183 -1.695149 1.238931 -0.863218 1.366994 -0.487748 -0.136973 -0.534434 -2.314756 1.137870 0.946583 0.992469 1.358848 -0.021123 0.418410 0.154911 -1.497864 -2.144828 1.109071 1.633824 0.841088 0.099592 -0.842455 -0.714418 0.552448 -0.566298 0.143875 2.428584 -2.097132 0.888317 -1.303051 -1.384760 -2.547861 -2.665030 0.246702 -1.927807 1.619043 1.374584 -1.653799 0.484317 0.015569 1.207042 -0.141992 -2.393770 0.151396 -1.191076 0.914448 3.447328 -1.358009 -1.551257 -0.866066 -0.745262 -0.370506 1.969207 0.272128 0.546062 2.714258 2.080312 1.355569 -2.246411 -0.823761 0.627542 1.174980 1.570653 1.804686 -2.831498 -1.255091 0.227894 -1.407113 -4.089354 -0.710661 0.126982 2.315856 -0.396231 -2.089661 0.497972 -1.539984 2.360969 1.259297 1.766319 0.602902 -0.190187 -1.789886 0.849949 3.540117 -1.309855 1.948268 -1.085662 -2.047871 1.364541 -0.293010 1.766772 0.727220 -0.112567 0.007962 -2.115345 -0.056372 2.860794 0.823914 0.805035 0.635436 0.498781 -1.271058 -3.281498 -4.133039 0.265657 1.776704 0.000000 4.037711 -2.589369 -2.291042 -0.667164 3.718450 -0.555070 -1.345773 0.871015 -1.298529 1.375798 -3.049434 -3.589859 3.558008 4.068533 0.975482 -0.746198 2.750248 0.167762 -2.805241 -2.093223 -1.797220 1.686482 0.476197 -1.333657 -0.618927 0.399261 -2.616868 -0.118523 -0.055344 1.183733 1.542729 -0.567749 0.232857 0.135901 -2.492001 -1.564432 1.581504 -1.680299 -0.683197 0.194189 0.279148 -0.006929 1.485042 -1.568912 -1.725785 0.629417 -1.998340 -0.037219 1.089230 1.901187 0.163633 4.122865 2.651355 -0.156519 2.703091 0.209311 -1.562212 5.129949 -1.587312 0.271898 -0.135470 1.328607 -0.736258 0.742388 1.900182 -1.099629 -2.308096 -2.725473 0.002204 -0.526480 1.339158 -2.439021 -2.435726 -3.389358 -0.472627 0.296544 2.968744 0.345344 4.878229 -0.283639 0.810200 -4.986911 0.181112 1.782478 -0.545708 1.808232 1.319086 -2.381702 -3.923516 -0.191965 -2.421654 -0.964870 -0.249599 -2.242330 -2.007314 -1.527195 2.084531 -0.709395 0.554028 3.087063 -0.138039 1.586427 0.399438 -0.723621 -0.657715 -0.744934 2.312821 0.034787 -2.184450 2.894401 0.226305 7.006839 -0.268981 1.941216 -1.340190 -0.072264 0.168325 -1.566337 -1.350100 2.994728 2.442470 1.531462 -0.552024 0.070247 -1.465702 1.674751 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -1.520305 2.179329 8.507919 5.636554 -3.434620 -4.459059 -2.325524 -4.915752 2.950460 0.904863 4.240906 0.134211 1.598561 1.143211 -0.188364 -1.997344 2.606860 -0.109395 -0.713697 -2.173108 -1.314670 6.073851 3.701794 -7.124536 0.774169 -6.427216 4.597578 2.577164 2.242896 4.787830 0.052547 0.385503 0.074840 3.563662 -4.420906 -1.976517 -0.521185 1.721229 -2.868206 -1.307070 3.350545 3.294769 3.903420 0.140358 2.769453 2.766026 3.022527 -0.524879 -4.272692 -0.955963 -2.531336 4.633750 -2.616159 3.559236 -0.484960 3.049987 1.503247 -4.368214 -0.770007 -6.777548 1.145596 2.835870 -2.583936 -0.722757 -4.639693 0.630482 -0.471856 -3.532318 1.820260 -0.947533 2.891640 0.423931 0.401121 -4.338778 -4.093262 2.640949 0.373319 3.054151 2.363197 0.478244 -1.808723 0.521382 -2.456605 -3.519414 1.091657 0.501201 0.848120 0.779046 0.991547 -2.677990 0.400495 -0.283151 -2.123974 4.217768 -2.360566 3.747016 -0.836758 -1.114187 -2.178111 -1.554219 -0.831118 -4.171987 1.636926 4.417805 -2.117044 1.039498 0.027584 1.937541 0.066656 -4.381938 0.867057 -1.224660 -0.611632 4.218270 -2.309753 -1.594424 0.543847 0.204854 -0.066264 5.336176 -1.360861 1.812266 4.234666 3.968459 1.242420 -3.611877 1.099452 0.928098 2.480269 2.827796 3.903996 -3.968851 -2.918369 -0.661846 -0.433189 -6.379191 0.691383 3.247944 4.376152 0.405900 -6.499756 2.546662 -2.212247 5.078625 3.225001 3.340053 1.881268 -0.578823 -3.187822 2.554514 8.393661 -2.806082 3.088404 -2.911343 -5.239395 6.247974 -1.457024 4.127513 -0.174800 0.460248 1.500894 -4.537204 1.046320 6.265185 1.642439 1.513119 3.472781 -0.455293 0.362747 -7.227424 -6.415761 -0.513895 2.067092 1.216150 10.162298 -3.764114 -2.647789 -1.714103 4.321349 -1.713164 -1.416189 0.129032 -1.888963 2.062055 -10.261930 -7.226406 7.526714 6.358984 0.002666 -0.332403 4.995270 1.556132 0.324385 -3.232747 -2.818461 3.209992 1.526126 1.962689 0.485855 0.670530 -4.641718 -1.038621 1.312354 1.056059 3.279147 -3.995401 -2.733906 -1.173204 -6.451876 -3.867858 1.703408 -5.413678 -1.779355 0.578173 0.282082 -0.043529 1.713137 -0.356173 -3.160943 1.178862 -2.844837 -1.376839 0.455161 4.164517 1.418092 4.479428 6.285968 0.076642 3.456901 2.886694 -3.023770 12.537012 -3.571630 -0.838784 0.005645 3.821458 -0.267445 2.269181 2.560440 -1.426430 -2.148666 -5.693722 3.679157 -0.089859 1.845775 -8.875558 -3.096530 -5.070536 -1.469884 1.429250 5.148959 -0.493471 9.997183 -1.194622 0.122244 -10.502081 0.208050 4.317419 0.285673 2.770335 3.587614 -4.031536 -7.884378 -0.923616 -2.266205 2.980705 -1.371953 -5.147454 -3.475323 -1.280279 1.640582 -3.155052 3.102696 6.867066 -1.252825 2.913705 0.139574 -1.280848 -1.598336 -2.648480 2.035068 1.746820 -3.389732 5.141260 -1.196887 9.940285 -1.998785 4.154354 -4.114336 1.733662 -0.808019 -2.880535 -2.152475 6.189735 3.340059 1.472814 1.582918 0.345139 -2.375779 3.422629 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.951171 2.734150 9.697434 5.964497 -4.812247 -5.378523 -3.164868 -6.493856 3.520075 1.757802 5.575747 -0.703982 2.115745 1.692265 -0.482516 -2.943122 2.694265 -0.565625 -1.298173 -2.784566 -3.061127 5.689185 3.191281 -6.974300 1.294808 -7.233163 5.352809 2.883382 1.216799 4.428772 0.562492 0.932912 -1.067463 4.063917 -4.621994 -1.351509 0.194838 1.956086 -2.007850 -1.044146 4.358939 3.501582 4.404527 0.764578 3.486767 4.486110 1.809377 -0.254585 -5.189439 -1.884225 -1.174432 4.102899 -2.312223 3.672455 0.626210 3.699705 1.621248 -6.017748 -0.336429 -6.299758 1.937948 2.153183 -2.886928 -0.145909 -4.774093 0.471479 -0.219192 -3.487031 2.395810 -2.855287 2.925029 -1.410501 -0.655455 -4.282069 -3.642989 2.310953 0.741267 1.903163 2.951600 0.901114 -2.194268 0.373781 -3.459219 -4.310520 0.839173 1.066331 0.918587 1.195344 0.630891 -3.316944 1.404586 -0.950751 -1.097990 5.689816 -3.367192 2.797597 -0.879981 -2.135539 -3.985050 -2.533896 0.265411 -4.217120 2.514981 4.756056 -4.063378 0.627875 0.951465 1.639083 0.420284 -4.707348 0.658559 -2.273997 1.339380 5.108401 -2.260521 -3.020564 -0.346176 -1.504773 0.278341 5.683789 -0.403280 0.718029 5.871224 3.793443 1.874348 -4.124253 0.199190 1.226770 2.140069 2.537463 3.857521 -6.073452 -2.540709 0.305697 -1.612570 -7.375166 -0.097982 1.553564 4.934018 -0.124936 -6.881599 3.604140 -2.819301 4.055765 2.821908 4.254679 1.525210 -0.878110 -3.632098 1.607355 8.815866 -2.540482 3.182429 -2.771208 -6.413420 5.998711 -1.051283 4.010094 0.789763 0.173367 0.602266 -4.449482 1.459472 6.499184 0.680481 1.451463 3.858429 0.058885 -1.009330 -7.147336 -8.175506 -0.171528 2.784844 1.696630 10.596552 -5.333243 -2.481265 -2.062260 6.888183 -1.648337 -1.906311 0.688349 -1.306422 2.236113 -8.967711 -7.338747 7.430707 7.298767 0.682599 -0.983763 5.822716 -0.127585 -0.621379 -3.996665 -4.251706 3.446494 1.991570 2.865919 1.169933 0.167373 -5.396871 -0.766569 0.412290 1.728699 4.335654 -4.660535 -2.667373 -1.493218 -6.028390 -4.989692 1.701162 -4.584549 -1.301348 0.528942 0.479303 -1.227042 2.096381 -0.812359 -4.384686 0.365913 -2.759783 -0.932104 1.720583 3.592217 0.710813 6.765720 5.427585 -1.164216 3.305063 1.760423 -2.231300 14.106801 -4.138659 -0.379259 -0.011878 5.004198 -0.103042 2.061564 2.815443 -1.720267 -2.578379 -5.628966 2.855387 -0.904948 1.689991 -9.922908 -3.570514 -7.046595 -1.633663 0.228994 6.398261 0.173669 10.958301 -0.376111 0.854801 -11.025968 0.431906 5.120445 -0.752743 2.759176 3.455982 -4.919094 -9.032747 -0.467020 -3.308958 1.936450 -0.956632 -4.863034 -4.064129 -1.462774 1.939344 -2.164864 2.652241 8.003917 -1.120682 1.953518 0.209383 -1.318542 -1.292348 -3.241483 2.570088 0.834209 -3.796014 6.000898 -0.561103 11.122367 -1.424960 5.313161 -3.211797 1.607314 -0.955603 -3.732225 -2.852775 5.943947 3.506829 2.151521 0.994374 0.629695 -2.797390 3.612700 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 1.620885 5.020571 10.392014 2.649602 -6.937321 -7.084494 -2.372890 -12.452317 4.598419 3.819839 5.470253 -1.146982 3.078809 -0.193238 -1.955682 2.886115 4.077033 0.431034 -1.628031 -4.633985 -8.546564 3.470582 -0.527314 -0.707757 4.679950 -7.642739 6.118202 0.172632 2.866704 2.402943 3.924839 0.664946 -1.904558 4.790267 0.926226 2.396350 0.926065 2.504843 -4.198055 2.204760 2.101502 -2.196269 4.792854 3.616538 5.144665 4.588568 1.915260 0.649139 -5.367896 -0.636480 -2.064894 5.471418 -2.944262 4.046770 -0.804749 1.048173 -0.338852 -5.184290 1.260422 0.028779 -1.521579 -3.441067 -3.913541 0.427562 -5.484999 -0.182873 -3.172905 -5.314985 -1.100425 -0.306551 3.493794 0.082622 -2.067751 -0.248941 -6.422915 1.195370 3.276969 1.446534 5.709977 0.474432 0.370259 -1.618652 -5.928678 -6.682283 6.612060 2.430617 2.479212 0.750360 -1.774562 -3.923682 -1.181959 -1.658523 3.191667 6.616328 -6.940883 0.284977 -3.487066 -4.232513 -6.536638 -9.840786 0.944348 -3.987335 3.698218 -0.014839 -5.058137 2.791155 1.157602 2.302210 1.497107 -3.082994 0.320225 -3.344618 2.279764 8.289236 -0.163019 -5.909414 -2.038934 -2.279861 -0.460979 3.272043 2.345216 -1.090141 10.856486 3.394662 5.100227 -3.541163 -1.491739 0.832440 -0.568364 2.537780 4.455569 -6.557975 -3.811397 2.122186 -2.237590 -10.451452 -1.286200 -0.351264 4.513688 -2.967214 -2.815341 0.880976 -2.370059 0.856102 2.618618 1.600921 2.638849 -0.867307 -3.050603 0.783633 8.738997 -3.100418 2.722377 -4.585562 -2.515451 3.959470 -0.580566 1.769667 -0.258543 -1.844423 -0.576958 -3.905551 0.044345 7.031931 -0.750964 -2.360982 2.151644 2.207404 -5.529774 -6.186193 -8.177708 0.109167 5.123809 0.624581 8.368175 -6.672615 -0.961817 -2.996531 7.488422 0.199948 -1.048663 2.680798 -3.498690 2.736365 -4.597037 -7.805819 9.180359 7.665204 2.594402 -3.172206 3.323679 0.191715 -7.927334 -6.972662 -5.154532 1.135856 2.640386 -5.679171 -4.896524 1.506131 -7.159320 0.546636 -0.305259 2.387527 6.145849 -0.826959 2.611987 -1.185825 -3.329188 -5.909724 3.737693 -2.386486 -1.555441 0.871228 1.697595 0.218698 3.973823 -1.580127 -3.876794 -0.839827 -3.113240 -0.307960 3.337838 5.657326 -0.546966 10.516265 6.737268 -2.124915 3.485042 -0.108945 -3.520611 8.472766 -2.421701 1.349871 0.891527 3.008077 -1.906859 2.350502 6.391746 -2.870415 -5.289829 -4.999909 -0.927416 -1.602250 0.431070 -2.409408 -2.553245 -8.771957 -1.003622 -1.985257 6.563885 0.881363 9.490214 0.152800 2.117427 -8.667149 0.527404 4.283673 -1.559540 5.091741 3.559455 -6.506636 -3.007581 -1.845459 -6.465276 -3.933298 0.078082 0.511412 -4.895405 -0.474962 2.905363 -1.368734 1.273920 5.727411 0.106093 3.599060 -1.869358 0.867317 -2.823246 0.188704 9.530147 -0.092574 -3.937700 4.884864 1.462646 13.969060 1.936810 3.707804 -1.998703 -3.776165 1.164154 -4.113508 -4.994828 5.763499 4.454248 4.219117 0.096561 -0.190342 -0.321128 6.595673 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.566730 2.463216 9.477254 7.750756 -4.896749 -6.017402 -2.199381 -5.274230 3.238692 0.744257 3.743967 -1.353896 0.561777 1.947482 -1.049175 -3.181819 1.447197 1.219237 -1.218393 -1.854606 -4.045372 4.474561 3.338854 -7.546878 0.460685 -6.098310 4.734651 3.248106 2.506117 3.791224 -0.106749 -0.239784 -0.275531 3.416705 -4.998931 -2.576673 -0.624952 0.592746 -3.341595 -1.525655 2.263750 1.456422 4.723872 -0.455251 2.483737 2.463805 3.480576 -0.485943 -5.534189 -0.103082 -2.798997 5.492404 -1.463467 3.248596 1.883319 3.118411 1.236390 -6.024504 -0.871625 -5.310607 1.373655 2.176169 -2.826726 -0.295654 -5.694681 0.303763 -1.391762 -4.369130 3.502923 -1.836674 2.504429 -0.100449 1.032181 -4.591349 -4.264222 3.078434 0.431695 2.218714 1.610617 1.591463 0.157833 1.375223 -3.171029 -2.528107 -0.466030 -0.477822 0.290419 0.372638 0.965122 -4.079695 2.029818 -1.346893 -2.156105 4.248890 -2.637000 4.652171 -2.881578 -1.265649 -4.485752 -5.008687 -1.004281 -3.760080 2.536813 3.931473 -3.102391 2.418255 2.720087 2.030766 1.785040 -6.033381 0.174020 -1.806724 1.671355 4.750405 -2.710305 -2.741254 0.539873 -0.351969 -1.597854 4.276780 -1.598868 1.554490 4.038113 3.089741 1.870553 -3.551921 1.103820 0.853526 1.182366 3.023488 4.064526 -4.638563 -1.709328 -0.974174 0.525955 -8.663165 0.857049 2.107832 4.029436 1.383155 -6.535292 1.144560 -2.072961 5.098456 1.514770 4.458142 1.714482 -0.827901 -2.104949 1.293187 8.010689 -2.601951 3.073277 -3.512546 -6.236519 5.325273 -0.523761 4.400628 -0.753860 1.068101 3.375608 -4.862227 0.711214 5.792482 0.882514 -0.809799 5.026962 -0.527772 -1.440835 -8.363970 -5.861712 1.177042 2.093264 0.946379 10.207559 -5.094955 -3.568813 -2.137855 5.262924 -1.884797 -0.454148 0.610895 -1.978440 1.777684 -10.500692 -8.549877 5.542041 5.670409 -0.242205 -0.945757 5.161702 -0.327259 -0.582516 -4.663674 -4.266782 2.266318 1.581698 1.922796 0.041109 -0.844581 -5.436517 0.894204 1.503719 1.202904 5.665298 -5.639909 -3.248243 -2.868173 -6.919874 -5.728761 2.330529 -5.933413 -0.914384 0.741450 1.136635 -0.352923 2.156450 -0.290497 -4.217481 0.362148 -1.958298 -0.915515 1.113019 3.500984 -0.405538 7.321324 5.646898 0.733557 4.493236 2.793607 -2.733378 16.050833 -4.958151 -0.748523 -0.125850 4.526088 -1.850217 2.472216 2.911624 -1.720303 -2.300911 -4.073289 2.547379 -2.158872 1.486151 -9.965273 -3.844062 -6.397241 -2.432365 0.698178 4.153399 0.911813 9.400289 -0.651319 0.628793 -10.453002 -0.250706 5.068815 0.130026 4.998892 3.569264 -5.764951 -7.065410 -0.092407 -2.015538 4.939844 -1.489146 -6.254786 -2.906890 -0.606856 0.375675 -0.743427 2.952014 7.316751 -2.081427 2.107666 0.011885 -1.165094 -0.187269 -3.452016 3.184296 1.668977 -3.420542 6.625940 -1.034240 11.220129 -0.123052 3.529933 -4.181503 0.037260 -0.183690 -2.067244 -2.192191 5.306239 2.290881 2.164043 -0.260538 0.442742 -3.816535 2.560456 -PE-benchmarks/finite-automata-algorithm.cpp__main = -0.099957 0.741648 2.477909 2.030636 -1.255360 -2.080497 -0.576385 -2.093681 1.155257 0.353993 1.549557 -0.049830 0.981573 -0.005408 -0.217868 -0.483671 1.036953 0.371629 -0.191063 -0.810819 -1.029287 2.123804 0.759591 -1.760872 0.322164 -1.522291 1.578983 0.992931 0.938594 1.678961 0.267280 0.138931 -0.150952 0.976860 -1.255048 -0.478564 -0.579944 0.644666 -1.119096 -0.315874 0.751169 0.090087 1.757931 0.373977 0.759615 0.778389 1.021439 0.010590 -1.183952 -0.391340 -0.885219 1.124060 -0.707678 1.047537 -0.512817 0.316254 0.807101 -0.752679 0.091882 -1.573443 0.318648 0.235409 -1.099303 -0.170275 -1.669238 0.066651 -0.766907 -1.431287 0.295262 -0.554460 0.860262 0.080101 -0.145159 -1.409866 -2.074037 0.449836 0.296336 0.553326 0.984293 0.626802 -0.312951 -0.183518 -1.321307 -1.163426 0.914110 0.113658 0.401660 0.686388 -0.416513 -1.255634 0.242824 0.150188 0.142421 1.109644 -0.676277 1.157835 -0.485718 -0.496912 -0.822794 -1.496487 0.123884 -1.043237 0.591784 0.642610 -0.604868 0.449259 0.058603 0.416458 -0.070776 -1.577388 0.226823 -0.773537 -0.186174 1.708930 -0.560835 -1.030093 -0.316956 -0.133462 0.004755 1.438274 0.053007 0.276773 1.317093 0.905109 0.587702 -1.328918 0.129730 0.348694 0.424887 0.860090 0.962436 -0.843034 -0.946281 0.123802 -0.535629 -2.615102 -0.096848 0.937275 1.270542 -0.200097 -1.489888 0.970291 -0.973939 1.038049 1.193408 1.015999 0.798664 -0.059990 -0.952972 0.593376 2.413315 -0.787500 1.012242 -0.876645 -1.773632 1.999481 -0.280076 0.973556 -0.373250 -0.311613 0.297372 -0.918396 0.498584 1.916103 0.067810 0.041481 1.053281 0.091984 -0.549087 -2.103499 -2.277076 0.078211 1.409195 0.945946 2.938356 -1.418246 -0.465341 -0.172243 1.040548 -0.352583 -0.525777 0.348768 -0.649288 0.761348 -3.780343 -2.372832 2.430897 1.544864 0.466104 -0.251062 1.015833 0.299760 -0.000113 -1.328141 -1.153065 0.784773 0.534225 -0.317609 -0.171651 0.069625 -1.764286 -0.032193 0.363467 0.394705 1.147340 -1.443516 -0.176429 -1.320872 -1.607149 -1.526248 0.845277 -1.560988 -0.282297 0.167574 -0.105128 -0.163032 0.562973 0.026248 -0.764793 -0.040047 -0.796997 -0.359188 -0.086880 1.117209 0.068593 2.111593 2.181793 -0.430090 0.786067 0.495200 -1.077757 4.124056 -1.404464 0.078651 0.028951 1.589507 0.072895 0.747513 1.240317 -0.590193 -0.737582 -1.653578 0.343354 0.504438 0.543361 -2.383366 -0.819410 -2.155005 -0.318752 -0.168188 2.128904 -0.145041 3.007570 -0.714177 0.422248 -2.845025 0.172177 1.110940 -0.084290 1.412928 0.933158 -1.559233 -1.426828 -0.420187 -1.181754 0.860559 -0.277404 -1.301339 -1.082920 -0.112774 -0.010614 -0.970353 0.710928 1.752734 -0.921189 0.924386 -0.376241 -0.179991 -0.473164 -0.469513 1.129209 0.376726 -1.104101 1.515858 -0.130770 3.247619 0.055939 1.389199 -1.069495 0.468577 -0.355291 -1.267245 -0.979367 1.959747 1.292447 0.491723 0.488857 0.289185 -0.170174 1.078125 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -0.679602 2.237304 8.867455 6.721468 -3.275166 -4.720831 -2.095176 -5.624404 3.453976 1.079455 4.761743 -0.834419 1.872004 1.335806 -0.850872 -2.357638 2.322661 0.235874 -0.595711 -2.017793 -2.385883 6.059136 3.620314 -6.487528 0.476075 -6.093538 4.147776 2.490074 2.821477 4.753270 0.351358 0.214296 0.302090 3.317850 -4.654908 -1.951566 -1.187688 1.555748 -2.967706 -1.293991 2.515557 2.144269 4.683213 0.785418 2.372511 2.403631 3.181860 -0.675099 -3.961858 -0.616871 -2.558705 4.571742 -2.252505 2.848518 -0.100615 2.412947 1.755705 -4.085309 -0.468197 -5.895004 1.015561 2.325267 -2.784632 -0.366957 -4.882090 0.410352 -1.738015 -3.591409 1.927330 -1.483692 2.831324 0.544365 0.550740 -4.620086 -4.790590 2.731946 0.371290 1.740057 2.328532 1.163385 -1.115929 0.714790 -2.975857 -3.251572 1.696574 0.244708 0.603206 1.050217 0.768433 -3.449369 0.886241 -0.139976 -1.372974 4.112248 -2.251887 4.360349 -1.540535 -1.578953 -2.655452 -3.157076 -0.705406 -4.117677 1.916993 3.443044 -2.453458 1.776654 0.303349 1.459867 0.340130 -4.995767 0.519532 -1.530580 -0.047457 4.678124 -2.752092 -2.676416 -0.124866 0.005176 -0.288631 4.626460 -0.852014 1.446308 3.981057 2.777569 1.536935 -3.745613 1.421962 0.776118 1.567365 2.709942 3.549760 -3.289605 -2.581734 -0.429678 -0.122503 -7.900041 0.539689 2.649189 3.527958 0.322549 -5.883428 2.326331 -2.391271 4.413967 3.434411 3.587178 2.326524 -0.458928 -2.398442 1.719372 8.174143 -2.669227 3.344439 -2.991709 -6.034899 6.136960 -1.686611 4.220937 -1.190365 0.409371 2.045434 -4.221371 1.054276 6.247542 0.598955 0.242001 3.854164 -0.453374 -0.052788 -7.245438 -6.800635 0.088930 2.506633 1.661740 9.417681 -3.953371 -2.293277 -1.014380 3.622156 -1.049218 -1.248925 0.531453 -1.588416 1.830122 -11.416882 -7.752093 6.888486 5.552226 0.427230 -0.714900 4.171852 0.508033 0.310082 -3.896325 -3.507769 2.822305 1.493613 0.900658 0.025499 -0.147078 -4.858191 -0.074265 0.905782 0.940528 4.074127 -5.070301 -2.324439 -2.533266 -6.170617 -4.323596 2.445018 -5.586335 -1.753429 0.299886 0.206414 -0.474478 1.706575 -0.304195 -3.061051 0.477449 -2.770821 -1.637999 0.361953 3.769427 0.167681 5.962479 6.230529 -0.277202 2.960680 2.188588 -2.848432 13.523118 -4.532472 -0.806389 -0.092390 4.270820 -0.722339 2.383699 2.699739 -1.605458 -2.841393 -4.543819 2.799903 -0.114022 1.411046 -8.334323 -3.178176 -5.132980 -1.626319 0.521948 5.205713 0.268037 9.833878 -1.363124 0.862541 -9.653610 0.090012 4.200065 0.156974 4.397628 3.440095 -4.970674 -5.939317 -1.147864 -2.556327 4.122385 -0.990803 -5.240646 -3.235722 -1.044957 1.133845 -2.538817 2.915483 6.122467 -2.149021 2.560783 0.149189 -1.089969 -1.111551 -2.192787 2.845935 1.573663 -3.333515 5.192639 -1.251350 10.050195 -1.060955 4.134824 -4.010698 0.997874 -0.732515 -2.480586 -2.467751 6.069744 3.672377 1.700210 0.795210 0.127185 -2.071319 2.924569 -PE-benchmarks/subset-sum-problem.cpp__main = -0.537714 1.920375 6.828816 3.951296 -2.826547 -3.265518 -1.797494 -4.484420 1.829779 1.082570 3.758416 -1.019194 1.243225 1.414716 -0.075967 -1.082635 1.744390 -0.106000 0.249163 -1.576725 -1.624351 3.461898 2.511441 -3.942089 0.396028 -4.266337 2.992212 1.801777 1.924266 2.603159 0.610782 0.144598 -0.252588 2.427122 -3.078286 -1.149727 -0.326423 1.562823 -2.303219 0.175020 1.264378 2.036192 2.272864 -0.059936 2.065177 2.413827 2.413467 -0.087193 -3.340253 -0.603312 -1.490332 4.005522 -1.802256 1.858331 0.548125 1.517693 0.134063 -3.251416 -0.929374 -3.869370 0.890265 1.544176 -2.093552 0.355671 -3.649841 0.598193 -1.394945 -2.354259 1.659771 0.163150 2.032527 0.136493 0.479060 -2.244196 -2.989886 2.145690 0.296901 1.659529 1.556764 -0.290245 -0.409423 1.049720 -1.619994 -2.642461 0.824951 0.850724 0.654201 -0.367859 0.646009 -1.648272 0.351952 -0.392917 -1.292924 3.340884 -2.186198 2.970531 -1.797626 -1.079631 -2.576201 -2.524387 -0.584903 -3.320056 1.808997 2.634136 -1.806257 0.862724 -0.370783 1.470955 0.262960 -3.745974 -0.167125 -1.016587 0.543533 3.827008 -2.130214 -1.359053 -0.202357 -0.145328 -0.163345 3.078429 -0.136353 1.288156 3.394300 2.569804 0.931251 -2.593678 0.344298 0.528464 1.150662 2.293398 2.926437 -3.292233 -2.115103 -0.652470 -0.121230 -5.250435 0.452355 1.358724 2.055491 -0.139631 -3.904759 0.911134 -1.889373 3.528836 2.224744 2.974344 1.314778 -0.535320 -1.533777 1.375058 5.669383 -2.060976 2.359832 -1.395416 -3.765131 3.673567 -1.057385 3.073615 0.213799 0.599368 1.065791 -3.481788 -0.289777 4.234244 1.285341 0.824349 3.068263 -0.242171 0.080569 -4.830393 -4.298438 0.412362 1.528971 0.062811 6.150982 -2.857401 -2.128678 -0.712262 3.336789 -0.296887 -1.233828 0.058334 -0.882141 1.200255 -6.331662 -5.211782 4.095532 4.269559 0.149560 -1.020386 3.473349 0.740449 -1.534771 -3.074096 -2.572228 2.464717 -0.063343 0.520069 -0.300447 0.467959 -3.759373 0.186960 0.398792 1.135233 3.038899 -2.420040 -2.100104 -0.225107 -4.606996 -2.440883 1.517133 -3.229587 -1.474124 0.076138 0.342376 0.069093 1.096900 -1.468330 -2.211323 0.744750 -2.491598 -1.027753 1.041282 2.865870 0.220007 5.018792 3.536416 0.490044 2.275161 1.343479 -2.094014 8.755474 -2.057070 -0.463822 -0.181397 2.376352 -1.252115 1.130171 1.759635 -1.133468 -3.227398 -3.523004 1.616493 -0.587213 1.259810 -4.668146 -2.473517 -3.359552 -1.026145 1.238739 3.942884 0.456436 6.930849 -0.372597 0.760816 -6.489321 0.180589 2.490342 -0.456796 3.196732 2.516942 -3.365732 -4.522631 -0.864513 -1.784886 1.792039 -0.636038 -3.634582 -2.674935 -0.754357 1.137944 -1.056395 1.474480 4.405435 -0.926937 1.933095 1.003002 -1.081171 -0.463856 -1.402380 2.677751 1.112558 -3.096434 4.218693 -0.832453 8.618340 -0.831051 2.738041 -2.639610 -0.509465 0.181797 -1.012677 -1.498881 4.395296 2.785914 1.889232 0.161834 0.056166 -1.890458 1.928887 -PE-benchmarks/partition-problem.cpp__main = -0.398521 2.161567 7.300306 4.074581 -3.106754 -3.432620 -1.917201 -4.844255 1.834711 1.044700 3.866306 -1.298325 0.979925 1.634495 -0.140882 -1.009868 1.675002 0.116091 0.166713 -1.671304 -1.943100 3.480382 2.569564 -4.112231 0.410092 -4.436340 3.129884 1.916751 2.056743 2.637827 0.686122 0.146064 -0.282375 2.508466 -3.267764 -1.237727 -0.327089 1.569241 -2.589169 0.227275 1.294911 1.947200 2.357741 -0.267308 2.204839 2.506964 2.566550 -0.097268 -3.620994 -0.426973 -1.651290 4.568052 -1.686622 1.977178 0.798450 1.384394 0.068042 -3.521922 -0.924958 -3.842522 0.686244 1.369267 -2.331360 0.380445 -3.858216 0.626860 -1.541395 -2.564609 1.882060 0.123617 2.005919 -0.064906 0.379975 -2.249458 -3.145735 2.351658 0.523302 1.818205 1.581849 -0.270358 0.096401 1.178475 -1.716631 -2.750944 0.811783 0.822865 0.720451 -0.503802 0.648982 -1.647238 0.371587 -0.488199 -1.258979 3.544920 -2.283365 3.258938 -2.116831 -1.361040 -3.024281 -2.954413 -0.491549 -3.456286 1.972428 2.470743 -2.139006 1.014264 -0.163322 1.589516 0.585672 -4.168352 -0.270679 -1.068641 0.843076 4.279685 -2.200086 -1.480238 -0.206152 -0.191911 -0.479581 3.136027 -0.136638 1.469266 3.402289 2.654754 1.060655 -2.764713 0.195567 0.485314 1.123961 2.358978 3.028682 -3.395892 -2.252632 -0.806918 0.044805 -5.576108 0.384660 1.442258 2.223828 -0.044690 -3.711156 0.775921 -1.897835 3.752955 2.029427 2.975399 1.231775 -0.658413 -1.710973 1.304174 5.918045 -2.194811 2.477935 -1.562436 -4.072299 3.652228 -0.827790 3.227381 0.291876 0.687489 1.294531 -3.681362 -0.332405 4.471306 1.381541 0.638548 3.276420 -0.265628 -0.025293 -5.141156 -4.496062 0.604120 1.512500 -0.173617 6.181958 -2.913512 -2.354840 -0.765376 3.763401 -0.398430 -1.143762 0.058406 -1.161125 1.280745 -6.325540 -5.527179 4.193899 4.553523 0.033081 -1.089219 3.560107 0.828435 -1.842103 -3.322584 -2.727809 2.593007 -0.006969 0.369421 -0.481070 0.357177 -3.806732 0.439747 0.522559 1.259437 3.103851 -2.485717 -1.959204 -0.277758 -4.879756 -2.665648 1.615282 -3.365117 -1.395410 0.249215 0.502739 0.074869 1.285102 -1.587183 -2.300723 0.747024 -2.586023 -0.946862 1.093869 2.949409 0.065976 5.324741 3.472917 0.599722 2.811165 1.357989 -2.223088 9.259221 -2.287941 -0.460256 -0.179971 2.351447 -1.486835 1.243356 1.895181 -1.208452 -3.349398 -3.708419 1.513596 -0.859689 1.291168 -4.897503 -2.785532 -3.675207 -1.124061 1.329050 3.886305 0.538522 7.238938 -0.339974 0.676029 -6.837131 0.176296 2.633257 -0.547338 3.586083 2.566332 -3.640689 -4.798802 -0.817571 -1.946644 1.860419 -0.791550 -3.846014 -2.873929 -0.667715 1.409894 -1.049545 1.661324 4.497559 -0.816217 1.887607 1.035397 -1.177658 -0.473403 -1.583842 3.081819 1.031948 -3.260159 4.327864 -0.799984 9.195486 -0.751093 2.860606 -2.768164 -0.657950 0.364785 -0.913314 -1.581648 4.560125 2.930173 2.009773 -0.145625 0.135010 -2.131422 1.985136 -PE-benchmarks/boruvkas-algorithm.cpp__main = -2.205348 2.465454 11.058770 8.477887 -6.803744 -10.196298 -2.953069 -8.790637 4.737634 1.986000 8.565436 0.634407 4.347328 0.541583 0.925108 -0.913693 4.861512 0.271553 -1.126924 -3.632127 -5.054139 9.906969 5.975444 -7.496947 1.722471 -5.772725 5.162770 4.335128 3.604473 6.597347 0.643455 0.553293 -0.677607 4.037134 -5.395186 -0.854478 -3.441430 3.169490 -4.258747 -1.390591 3.877866 -1.614062 7.646057 0.986409 4.435519 2.283964 7.099805 -0.639778 -7.379732 -2.871877 -5.471549 7.414324 -4.429061 5.019508 -1.952547 1.962457 2.894585 -3.292476 -1.018602 -9.284922 0.989741 0.259430 -5.957292 -1.059723 -6.843438 1.268472 -3.419578 -5.616671 1.635709 -1.793045 4.900577 0.040956 -0.600047 -4.612047 -9.221013 1.737706 0.940789 2.737595 3.543091 2.932128 -2.492010 -0.625920 -5.547999 -5.477590 4.485575 -0.872010 1.718335 1.513750 -3.257685 -3.040354 0.518921 0.798032 -0.944450 5.153585 -5.984813 5.817132 0.402594 -2.742463 -4.982669 -6.200783 -0.022273 -5.738548 2.258636 3.903936 -2.090979 1.098576 -2.692663 1.940669 -1.890784 -9.095988 0.677496 -2.612523 -3.383172 5.982157 -4.283551 -2.314794 0.289031 0.427733 0.383236 5.959219 0.962483 2.746927 6.682155 4.763985 2.658930 -5.429027 1.199185 0.842595 4.373695 3.907008 4.152551 -3.172951 -4.902969 1.350420 -2.634268 -11.979942 -1.121900 7.860091 7.013841 1.408525 -7.959716 3.547746 -3.517588 6.209749 6.099057 5.148624 3.012606 -0.267526 -4.801417 2.753077 11.834335 -4.675615 6.044246 -2.075726 -7.171627 11.338668 -3.359333 4.873928 0.387052 -0.066657 0.869622 -5.310218 -0.350698 8.885568 2.820623 1.062117 4.290202 0.393465 -1.835696 -10.332572 -11.165341 -1.366972 6.151624 4.453705 12.854014 -6.507649 -2.595207 -0.603012 4.839107 -2.666017 -4.533363 0.688429 -2.791396 3.126074 -18.072559 -10.595594 12.276037 8.783194 2.177823 0.630065 6.744365 2.921126 -1.386850 -6.014784 -5.980726 4.912863 2.055333 -0.909195 -0.761616 0.410790 -9.577147 -0.496647 0.189807 1.583591 3.528517 -5.342297 -0.261648 -3.263343 -7.800358 -4.084321 2.233633 -7.294538 -3.174608 -0.080253 -0.378832 0.120836 1.665306 -0.121872 -2.822114 -0.253952 -5.948987 -2.076737 0.059221 5.421015 2.235380 11.562350 11.266847 -1.702998 4.083889 1.238537 -5.573207 17.013436 -6.660364 -0.653855 -1.013320 7.411363 0.275393 3.099979 5.824663 -2.191812 -4.399032 -7.295842 2.835521 2.039273 3.172203 -10.418144 -5.242331 -10.472187 -1.169613 1.529222 10.668655 -1.612355 13.990520 -3.590402 2.293505 -15.734986 1.117527 4.274445 -0.484339 5.674167 3.889489 -6.353156 -7.924993 -2.082416 -4.396454 4.070009 -0.556047 -5.731455 -4.649649 -2.374365 0.694691 -6.005846 2.848288 6.537761 -3.880397 6.250315 1.191725 -1.871132 -2.436972 -0.770855 6.250344 2.787869 -4.951862 8.719663 -0.364879 17.211448 -0.673357 6.442950 -4.932124 1.992587 -1.502254 -4.757983 -3.508298 8.895859 8.078784 2.144521 2.047351 1.369555 -1.560172 4.530279 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.748537 0.396063 5.284170 2.915495 -1.139031 -2.830573 -1.410716 -3.260701 2.510270 1.254992 3.941102 0.527537 1.924193 0.159974 0.650013 -0.619477 1.384515 -0.911751 -0.375885 -1.022862 0.683363 4.613834 3.336745 -3.599512 0.181639 -3.718590 0.950915 1.313688 1.706351 3.109800 -0.271546 0.131468 0.234924 1.830893 -2.861026 -0.003556 -0.451629 1.379433 -1.247137 -1.216465 1.398064 1.521600 1.997126 0.216926 2.784449 0.615373 2.583174 -0.908788 -2.215325 -1.516072 -1.665673 3.682361 -2.242721 1.961888 -0.536180 1.632218 0.220023 -1.791015 -0.874034 -5.694172 0.974220 1.949054 -1.980423 -0.577568 -2.024422 0.856542 0.010650 -1.367434 0.581670 -1.167541 2.453216 0.263084 0.573180 -1.938062 -3.287624 1.184302 -0.364119 0.935435 1.249721 0.515553 -2.110339 -0.150232 -0.817050 -2.250879 1.704452 0.386858 0.090886 0.780831 -0.460161 -0.323719 -0.406837 0.095998 -1.346175 2.533779 -2.689230 2.381126 1.393667 -0.769130 -0.776398 -0.041940 -0.330736 -3.103253 0.467112 2.460347 0.222822 0.405833 -1.660194 1.015996 -1.433305 -3.114280 1.059403 -0.155488 -1.980863 1.754819 -2.568605 0.088683 0.776865 0.626019 0.375093 3.017687 -0.209388 1.789399 2.207788 2.041256 1.044754 -2.469550 0.940221 1.119111 2.983156 1.751783 1.445018 -1.960685 -1.764675 0.252123 -0.774000 -4.710481 -0.245487 3.511051 2.885893 0.948725 -4.435026 1.656743 -1.018125 3.521916 3.036585 1.840152 1.052959 0.148318 -2.388342 1.185185 5.781127 -2.084445 2.807269 -0.449219 -2.571086 4.454354 -2.607570 2.953177 0.228818 0.717895 1.077898 -2.862614 -0.439437 3.974097 1.904031 2.037857 0.817709 0.026320 0.370629 -4.818668 -5.001811 -2.245408 1.774895 1.125567 5.366588 -1.840747 -1.891101 -0.644378 2.485543 -1.486490 -1.849535 -0.105215 -1.210307 1.277711 -7.258303 -4.245172 5.593739 5.234778 1.284012 0.634339 3.772256 1.662956 0.093874 -1.631350 -1.308780 2.164618 0.651969 0.238963 0.229457 -0.130914 -3.558065 -1.338753 -0.349349 0.182466 -0.147013 -1.254152 -0.456187 0.829333 -3.266237 -0.817065 0.164402 -3.255798 -1.967901 -0.711840 0.441663 -0.045808 0.363695 -1.172293 -0.872692 1.488275 -2.833530 -0.911076 0.565473 1.947521 1.810987 3.303823 4.138268 -0.276220 2.280884 0.621517 -2.027955 6.510961 -2.466063 -0.948828 -0.389409 2.512084 0.292276 1.429751 0.930691 -0.928250 -1.338426 -3.141613 2.055347 0.732818 1.694632 -3.778192 -3.322970 -2.286428 -0.505325 1.395980 3.590455 -0.786233 6.489262 -1.388212 1.255639 -7.572223 0.439895 2.267911 -0.197319 1.608586 2.006665 -2.149195 -5.571502 -0.877680 -0.942939 1.125532 -0.514541 -3.413744 -1.474305 -2.335447 1.895380 -3.249509 1.512723 2.720153 -0.554459 3.009132 0.765810 -0.821540 -1.447880 -0.135268 1.111383 1.592269 -2.312379 2.970795 -0.649917 6.763060 -2.099281 3.159827 -2.504489 1.981144 -1.350338 -1.489357 -0.924161 4.175875 3.651550 0.820903 0.516229 -0.069596 -1.522323 1.761094 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -13.057378 3.067787 43.284367 23.769900 -13.410358 -23.012441 -11.394579 -24.262890 19.068409 10.484464 29.392735 2.126390 12.248547 3.533933 2.611169 -8.349873 9.169086 -7.949247 -4.240891 -8.089441 -2.676856 31.842206 25.791924 -29.258993 2.323192 -33.513130 11.767512 9.910479 11.420986 23.277501 -1.842804 2.226374 0.866884 14.503538 -21.625702 -1.194722 -2.724177 8.553254 -7.970793 -9.295917 14.010747 10.535624 17.242480 1.773570 21.451578 6.041805 17.333221 -7.618414 -21.358242 -10.752741 -11.975480 26.434275 -15.181627 14.429388 0.046619 16.523772 1.270519 -19.788930 -6.965322 -42.919091 8.525126 13.255712 -15.371348 -2.893273 -18.227405 6.386522 -2.096265 -10.659560 7.436394 -12.217198 17.164158 0.683607 4.941237 -15.842054 -23.175365 10.918763 -1.708420 5.822586 8.745827 4.980998 -16.478516 0.735729 -9.275649 -16.675696 9.184136 3.298741 -1.104540 4.064639 -0.980049 -5.773501 -0.098289 -1.361437 -11.981682 21.901658 -22.786511 17.947918 8.060940 -7.172719 -9.341164 -5.218626 -3.224047 -23.965391 5.286403 22.284278 -5.193696 4.754383 -7.234971 8.483590 -6.777389 -25.350555 6.415042 -3.674312 -9.134119 14.668953 -19.447546 -2.374427 3.877110 3.116692 2.728679 22.887647 -5.248073 12.709835 20.767690 15.110155 8.297376 -17.898847 8.529319 9.568198 19.950013 11.793613 11.981342 -18.956437 -11.393798 1.537834 -3.611685 -37.325882 -2.028767 22.283292 21.673774 7.222746 -35.117193 11.783904 -7.031481 27.137228 21.319083 15.553927 7.164581 0.419439 -17.090355 7.867864 45.004426 -15.331675 19.717592 -6.983453 -24.392968 34.673382 -18.068756 23.751737 1.335596 7.188331 9.115166 -24.220066 -1.156738 30.568144 11.202950 12.340210 9.506468 -0.459446 3.157611 -37.008107 -37.730255 -13.953693 10.605027 9.128686 45.671759 -18.455515 -13.647202 -8.017307 23.317105 -9.041203 -12.271238 -0.266145 -8.158039 8.242190 -56.724399 -35.515245 39.640098 40.981706 8.192551 3.998880 30.680038 8.594091 1.225313 -13.439870 -14.325554 16.141926 7.170110 7.079046 3.319208 -1.564099 -28.897501 -9.196642 -2.447722 1.733025 7.891949 -14.956910 -6.781652 3.028407 -26.680998 -10.485299 3.631910 -26.072792 -15.444903 -5.163675 4.828290 -1.198959 4.037893 -7.339961 -10.040604 9.247133 -19.097128 -6.392891 6.730091 15.178466 10.398867 29.621330 32.545071 -2.052849 14.865813 4.855048 -13.051236 56.845571 -20.782849 -8.764783 -2.504919 18.226389 0.613615 10.367522 7.218873 -6.930312 -9.559544 -22.160170 18.164477 -0.192117 10.724774 -35.349952 -25.415870 -23.458432 -5.799419 9.039640 27.735099 -1.756934 50.949987 -7.549511 6.969406 -58.247375 1.996012 20.395750 -0.753896 13.866183 15.867333 -18.989955 -43.507878 -5.151297 -7.187080 14.004600 -4.149154 -26.874959 -12.760076 -16.499242 13.889932 -20.113824 13.383219 25.068367 -4.218201 21.060440 7.231341 -6.764627 -10.578083 -3.809489 7.932825 11.633161 -15.871864 27.054311 -5.493149 51.987577 -15.063037 23.270808 -18.612415 14.168753 -9.458207 -10.906051 -7.145053 29.593594 24.917785 8.115134 2.427005 -1.960639 -14.755027 13.436870 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -3.086690 1.538123 11.057155 7.019278 -3.132146 -5.800859 -2.988081 -6.154301 4.854577 2.052593 7.482391 0.957118 3.428185 0.909385 0.803101 -2.105986 2.962331 -1.142710 -1.223040 -2.365409 0.233258 9.124025 6.804190 -8.407227 0.540078 -7.499656 2.883229 2.850827 3.480564 6.419110 -0.524369 0.445735 0.384011 4.072305 -6.157952 -1.088950 -1.645335 2.714331 -2.794767 -2.348294 3.749841 3.291481 4.623307 0.812468 4.643781 1.979092 5.061392 -1.766938 -4.903802 -2.690166 -3.567483 7.150018 -4.293393 4.248398 -1.081726 3.899235 1.009060 -4.123124 -1.440319 -10.989482 2.023998 4.042760 -3.995866 -1.252736 -4.769574 1.414350 -0.446609 -3.350426 1.622020 -2.447514 4.823393 0.257107 0.827044 -5.026506 -6.384747 2.596336 -0.686508 2.350858 2.746798 1.488497 -4.039363 0.010268 -2.164544 -4.561887 2.722650 -0.023673 0.287787 1.510046 -0.174663 -1.919942 -0.193297 0.332902 -2.815026 5.308916 -5.206474 5.364678 1.546068 -1.679310 -2.011121 -0.423586 -0.858818 -6.231088 1.242862 5.129297 -0.815684 1.054620 -2.430183 1.775196 -1.840835 -6.510630 1.600624 -0.422108 -3.632254 4.073182 -4.747269 -0.706504 1.762671 1.004697 0.469348 6.338281 -0.512583 3.269397 4.818886 4.101142 2.025148 -5.001534 2.278407 1.690821 5.073518 3.600597 3.706403 -3.849825 -3.819176 0.210286 -1.005355 -9.793568 0.254798 6.628352 5.883255 2.019558 -9.200029 3.509907 -2.533719 6.737616 5.625541 4.265835 2.569160 -0.268831 -4.580372 2.401599 11.860526 -4.225837 5.465146 -1.460978 -6.214577 9.626640 -4.626313 6.045995 -0.057779 1.268235 2.455673 -5.909267 -0.498468 8.397124 2.995361 3.295554 3.108209 -0.427327 0.870137 -9.975263 -9.874354 -3.743238 3.346990 2.574842 11.305527 -4.037980 -3.184836 -1.377904 5.032514 -3.030924 -3.324539 -0.238283 -2.049199 2.515339 -14.973316 -8.890830 10.921328 10.027511 1.450547 0.937946 7.386832 2.751565 0.882386 -3.958151 -3.417338 4.386486 1.720531 1.852999 0.755371 -0.251227 -6.992730 -2.000551 0.050138 0.547265 1.075250 -4.102213 -1.951330 0.738973 -7.307837 -2.923651 0.717852 -7.023772 -3.487487 -0.815644 0.628518 -0.519390 0.933866 -1.537700 -2.798129 2.162091 -5.117362 -2.093554 0.737880 4.353600 3.050080 6.602760 8.161303 -0.610748 4.263222 2.011304 -4.200889 14.976643 -5.614595 -1.849377 -0.707951 5.898639 0.172468 3.200587 2.055495 -1.837471 -2.740897 -6.489841 4.524033 0.967584 2.929794 -9.343785 -5.952427 -5.018824 -1.347244 2.486100 7.254235 -1.450549 13.454027 -2.689456 2.073085 -15.135439 0.777276 5.192748 -0.291171 3.859825 4.441325 -4.830140 -10.992075 -1.825502 -1.941889 3.970774 -1.031301 -7.014115 -3.440018 -3.655595 3.037599 -6.043818 3.578963 6.414074 -1.838294 5.495947 1.199437 -1.784512 -2.436902 -1.313729 2.433399 3.357575 -4.650856 6.539472 -1.534380 13.289867 -3.628095 6.635297 -5.276956 3.228851 -2.317657 -3.298202 -2.384091 8.557171 6.729766 1.848859 1.411246 0.076100 -3.068669 3.651329 -PE-benchmarks/rabin-karp-algorithm.cpp__main = -0.965868 1.248525 5.853585 3.022791 -2.492841 -3.594446 -1.518258 -4.315276 2.122209 1.168470 3.656459 -0.433795 1.613555 0.926117 0.023156 -1.028713 1.770641 -0.550968 -0.001813 -1.537039 -1.357822 3.808808 2.258288 -2.818978 0.561058 -4.226361 2.695619 1.452798 1.518641 3.090876 0.366876 0.004726 -0.647239 1.890527 -2.160307 -0.337753 0.055322 1.108688 -1.786648 -0.368189 1.353083 0.816851 2.784016 0.116742 2.256477 1.585774 1.867929 -0.064391 -2.811857 -1.233555 -1.370218 2.885600 -1.714215 1.875022 0.269277 1.106218 0.473291 -2.473593 -0.550632 -3.495542 0.556453 0.658176 -1.908722 0.192100 -3.182916 0.585302 -1.422077 -2.179708 1.058264 -1.311617 1.903302 0.067029 0.345025 -1.499930 -3.361210 1.398541 0.377955 1.291144 1.344225 0.300068 -0.958780 0.371914 -2.108502 -2.446914 1.029467 0.906652 0.541521 0.254956 -0.585909 -1.192169 0.385049 -0.226185 -0.703963 2.735820 -2.274852 2.199772 -0.799962 -1.213202 -2.110404 -2.875357 -0.093350 -2.684925 1.352854 2.224606 -1.480464 0.372646 -0.480880 1.172039 -0.306831 -3.486787 0.676902 -1.150636 0.025129 3.193675 -2.027350 -1.052651 -0.824855 -0.328016 0.299076 2.908892 -0.269594 0.971149 2.928882 2.309615 1.332912 -2.532355 0.009801 0.822207 1.638046 1.497026 2.036800 -2.701648 -1.759653 0.020672 -0.985618 -5.071943 -0.244263 1.935349 2.821821 0.238763 -3.412405 1.223754 -1.737237 2.942443 2.427046 2.242697 1.066693 -0.113426 -2.052108 1.155102 5.273244 -1.864490 2.466713 -1.684578 -3.298011 3.776415 -1.095059 2.581685 0.194338 0.475792 0.584069 -2.759442 0.231856 3.922810 1.129445 1.011718 1.882373 0.200097 -0.404154 -4.592767 -4.757202 -0.343035 2.217601 0.934109 5.652601 -2.970939 -1.669690 -0.681469 3.359225 -0.483896 -1.638226 0.470240 -1.226702 1.216432 -6.652164 -4.842196 4.695132 4.532384 0.811634 -0.197598 2.810433 1.134992 -1.253897 -2.371500 -2.310416 2.240063 0.001672 -0.482184 -0.367789 0.242238 -3.577206 -0.268756 0.130323 0.935435 2.484158 -2.280750 -0.731751 -0.572547 -3.724754 -2.416424 1.468286 -3.073460 -1.491702 0.049104 0.254811 0.117511 1.013423 -0.694579 -1.423472 0.957643 -2.177116 -0.599763 0.981824 2.288140 0.509438 4.462529 3.841441 -0.256733 1.737531 0.779757 -1.874675 7.574551 -2.402780 -0.238394 -0.207981 2.541834 -0.280699 1.429756 2.065476 -1.076092 -2.323545 -3.136706 1.313342 -0.153812 1.439060 -4.261537 -2.994563 -4.044409 -0.570832 0.555009 4.033627 0.103998 6.448590 -0.685944 0.942434 -6.469358 0.234589 2.302047 -0.188363 2.546456 1.782051 -2.855385 -3.814396 -0.530095 -2.222602 1.272418 -0.440624 -2.998563 -2.146046 -1.185062 1.134469 -1.516890 1.278733 3.206112 -0.768798 2.271216 0.905495 -0.839931 -1.229551 -0.798521 2.341860 0.862209 -2.294851 3.718667 -0.190424 6.983655 -0.761374 2.439308 -2.030131 0.620309 -0.431427 -1.836724 -1.396077 3.951111 2.768995 1.277317 0.015112 -0.024059 -1.172248 1.871611 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -3.874385 4.134716 21.287958 16.703999 -9.066047 -10.789576 -4.748946 -8.968635 6.899589 2.186896 9.747291 -0.896858 2.989633 4.321782 -0.858962 -7.381671 4.433162 0.811131 -2.798660 -4.267565 -4.353817 11.782832 11.404803 -18.452586 1.148986 -13.667339 10.161709 6.318629 4.337368 10.755877 -0.482909 0.705969 -0.282820 7.625364 -11.640989 -5.188485 -2.440806 2.933687 -5.795650 -4.355050 7.757227 6.877788 9.151035 0.264196 5.637123 5.939212 8.288518 -1.985567 -11.281051 -2.304896 -5.745967 11.099410 -5.070169 7.490751 1.234841 8.560923 2.673863 -11.590798 -1.903601 -17.037023 4.255606 7.242238 -6.624762 -0.925934 -12.426569 1.044998 -2.032455 -8.818258 5.933736 -4.196797 6.165020 -0.348149 1.555403 -11.400645 -8.158843 5.935009 0.021979 5.757748 4.139285 2.423714 -3.911896 1.911095 -5.467744 -6.226312 -0.105592 -2.124758 0.756941 1.835167 3.650397 -7.185114 3.262782 -1.113123 -6.250953 9.413480 -6.750120 10.938673 -2.623652 -2.693890 -6.158508 -4.451603 -1.936596 -9.888659 4.071928 11.231815 -6.300521 3.923793 1.579395 4.265082 1.248910 -12.317837 1.037786 -3.060837 -0.031875 8.619390 -6.782845 -4.021680 1.447070 0.216660 -0.220460 11.583292 -3.957967 3.945321 9.591289 7.243733 3.274871 -8.201806 3.968878 1.678188 4.685799 6.269788 8.326760 -9.280592 -5.586736 -2.307486 0.446731 -16.988241 3.282904 7.603948 9.325151 3.841731 -17.033940 5.340129 -5.023278 11.351136 6.015775 9.759521 4.158014 -1.323150 -5.851016 3.068292 20.042281 -6.528566 7.502886 -5.795632 -15.000755 14.801966 -2.807862 10.476060 -1.032904 1.990744 6.510869 -11.223428 1.581118 14.631676 3.189326 1.398615 10.987570 -1.417594 0.625918 -18.635715 -14.561722 -1.139190 3.240139 3.462527 23.814808 -9.570782 -6.101398 -4.252882 10.346374 -4.257475 -2.788600 -0.353206 -3.250418 3.677220 -25.530978 -18.200278 14.940342 13.335943 -0.742830 -0.369131 11.861332 1.547250 2.201707 -8.172157 -7.987208 6.650970 2.723512 7.904604 2.157879 -0.379977 -12.159005 -0.431025 3.149384 1.963397 9.729461 -12.871709 -8.682771 -3.284263 -16.435798 -10.073381 2.743582 -13.846450 -3.656998 0.690593 1.602151 -0.440725 2.864101 -0.942141 -8.341734 1.774644 -5.543402 -3.766472 1.486221 9.380814 2.309137 12.656181 13.339342 0.275619 6.983370 6.392189 -6.368525 33.768230 -9.677071 -2.689563 -0.435539 11.213895 -1.281697 5.276050 5.077304 -3.318337 -4.865008 -10.766365 8.264694 -1.913994 3.560423 -23.143953 -7.556602 -11.427221 -4.218137 2.343109 10.700030 -0.257503 23.261460 -2.128601 0.924261 -24.716572 -0.050114 10.940766 0.147774 9.071726 8.402074 -11.023972 -18.087588 -1.401350 -3.710550 12.505261 -2.549373 -12.402412 -7.282573 -1.811742 1.495101 -5.177751 7.698459 15.489090 -4.156396 5.750793 1.774213 -2.714374 -0.896928 -6.823694 4.187018 5.351277 -8.023608 13.878568 -2.859023 22.303820 -3.149374 9.575100 -9.851716 2.137112 -1.864258 -4.557974 -5.001565 13.356667 6.879963 4.133812 2.154057 0.871221 -7.001210 6.619536 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = -1.370661 2.168435 13.965768 7.122546 -2.333272 -5.262876 -2.642172 -6.943011 3.293621 2.227934 7.439846 -0.998004 1.860951 3.632678 0.501422 -2.389500 0.596518 -0.405956 0.687489 -1.584160 -1.056678 7.311319 8.608974 -7.313337 -0.289912 -9.876310 4.695883 1.989378 4.886438 6.734505 -0.322696 0.071027 0.574575 3.796358 -6.266854 -1.797067 -3.385544 2.184339 -2.042627 0.206419 2.521943 4.584440 1.792997 0.920468 4.574121 3.440548 6.332950 -1.710700 -3.766967 -1.435964 -3.760532 8.283798 -4.307770 2.094494 -0.124958 4.949410 -1.583330 -4.926942 -1.987803 -11.508679 2.718987 4.887985 -5.120122 1.145045 -7.649398 1.937029 -5.138341 -2.738502 2.048257 -0.132825 4.617490 0.473738 1.159179 -5.738280 -6.101610 3.217791 -2.384379 1.992611 1.942232 -1.561426 -4.616568 3.017210 -2.114620 -4.229532 0.963222 0.412159 -1.181913 -1.832902 3.717136 -2.833040 -0.961857 -0.075778 -4.259159 6.096672 -6.302800 7.519134 -2.175982 -0.656218 -2.203040 -1.828412 -1.496383 -7.379891 2.251514 5.569184 -1.263611 0.574664 -2.215663 1.809876 0.588702 -8.491966 -0.777124 0.539323 -0.048121 4.953345 -5.928085 0.313665 0.963438 0.856485 0.238054 6.482079 -0.386467 3.387834 5.483111 3.811869 0.674424 -3.664723 2.696327 2.118433 2.266953 3.938137 4.118292 -5.252727 -3.777649 -1.789246 2.446300 -10.420739 2.692250 6.276154 2.542018 1.545915 -8.023526 1.248601 -2.018690 7.258437 6.406773 5.324582 2.489209 -1.160693 -1.758762 2.292126 13.712465 -4.188284 4.607090 -2.218017 -8.540674 10.726095 -6.053603 6.960988 0.279106 3.595491 3.571887 -6.952850 -1.606305 8.316721 3.320349 3.083359 7.720285 -1.160838 3.930870 -9.365154 -6.283686 -1.657461 1.734747 0.182731 10.428112 -3.518992 -1.087291 -0.674398 5.224017 0.088721 -2.158645 -1.524866 -0.695312 0.915857 -14.970752 -9.153685 6.061729 9.526104 -0.374467 -1.181676 7.123070 4.687027 0.602438 -4.217770 -4.845830 4.891112 -1.808270 3.359981 0.528492 -0.542400 -7.803451 0.268687 0.221208 0.908339 4.869162 -5.371876 -6.673724 0.737430 -9.619379 -4.577547 1.849880 -7.494163 -3.967517 -1.954624 0.953889 -0.768555 -0.506972 -3.418082 -1.851595 3.549990 -5.716561 -1.442697 2.851877 3.310953 1.572630 9.990278 4.914186 1.406880 1.398715 2.816579 -2.725499 17.722809 -3.046514 -2.210273 -0.394637 4.880191 -2.721146 3.006353 0.330600 -1.381631 -7.116425 -4.926606 5.522506 -0.940032 2.170143 -7.221687 -6.095973 -4.284844 -2.450400 3.473374 7.103556 1.205337 14.234302 -0.713575 2.401643 -12.649300 0.613304 5.351476 -1.250532 6.751226 4.515063 -4.926446 -7.633342 -2.161436 0.169317 7.032576 -1.272013 -8.480670 -3.889582 -1.868820 1.185525 -3.324451 4.246470 5.162087 -1.009564 4.014146 3.248038 -2.064524 -1.510226 -1.248704 3.324216 3.731428 -6.081832 7.103192 -2.563560 14.066030 -4.461289 5.617889 -5.497675 0.335386 -1.569292 0.099064 -1.202779 7.838898 7.030645 2.856228 -0.315981 -0.475000 -3.121469 0.907909 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -6.235135 7.977971 59.243401 36.386427 -9.438335 -18.999387 -9.541776 -16.890753 10.287131 6.455171 26.212732 -2.113026 3.671321 17.521555 1.859694 -15.358303 -1.348143 3.176926 -0.735231 -4.692564 -3.667207 25.444064 42.222626 -41.999219 -1.942090 -38.957277 21.703759 9.806709 18.035157 29.435453 -3.868542 2.269701 4.043590 16.343864 -31.000569 -13.059671 -20.512860 7.684897 -5.213970 -0.282721 15.889603 25.128359 3.442842 4.881973 15.228403 16.985539 28.067307 -9.312082 -16.221290 -4.180016 -16.775974 33.691642 -16.816985 8.463867 -2.706101 29.533539 -6.934773 -22.928818 -8.059052 -57.585276 16.740069 27.585792 -22.087678 3.400896 -33.796693 6.606674 -19.677858 -12.036789 10.738463 0.342861 17.823950 -0.486741 3.533058 -33.367068 -18.947305 12.455254 -13.925222 9.686076 7.188880 -6.342798 -23.980986 14.161337 -5.334874 -13.457527 -3.419337 -7.416478 -7.621424 -8.018936 25.375686 -16.332970 -2.692971 1.002193 -23.139553 24.517054 -25.987435 35.622371 -9.494881 0.861938 -5.566007 3.500919 -7.571893 -30.740403 7.671278 28.024617 -6.975392 3.915140 -7.155711 6.732705 5.848392 -34.669421 -6.912925 4.263472 -0.667605 15.539749 -24.009423 2.118099 10.621225 5.152421 1.142637 29.180489 -5.213246 13.983179 21.285374 13.511800 -0.864944 -12.879701 17.172892 7.312172 6.702261 17.496104 18.003144 -20.281975 -14.852319 -11.688475 15.936066 -40.777266 19.434822 26.445368 7.034967 10.718848 -39.353920 6.481062 -7.687973 29.981911 23.758187 26.059976 10.897569 -6.919167 -4.541380 7.584049 60.261749 -17.071404 16.603813 -6.902010 -41.425495 48.921160 -24.552068 30.275812 -0.155351 15.521001 21.045494 -29.578829 -7.512453 34.758298 12.901310 11.675291 41.178044 -8.278388 22.386666 -39.679660 -20.026838 -7.523049 0.555035 1.433969 46.764536 -12.328511 -0.090073 -5.414165 19.445306 -2.156440 -4.867083 -11.481464 1.918887 1.427010 -64.752631 -36.940637 19.568035 35.247305 -8.077889 -4.773528 32.243961 17.484326 14.050197 -15.736956 -20.265962 17.989987 -5.613844 31.473046 8.997929 -3.810900 -31.847814 2.762253 4.604993 1.782929 21.062612 -29.584546 -39.828884 3.289891 -43.940779 -21.383677 2.500214 -35.071666 -14.114466 -8.083700 4.225658 -5.543378 -6.182272 -13.076632 -11.235144 12.727594 -21.196616 -7.501215 9.738513 13.792268 8.212206 37.704612 15.936232 7.528891 2.075195 16.531663 -9.749361 84.044038 -12.120077 -11.645716 -0.614258 24.187536 -11.646178 11.901393 -4.191906 -4.177366 -25.364182 -19.140311 28.454075 -5.052234 6.150107 -39.331663 -19.739007 -12.375020 -12.647717 15.434154 25.643750 3.982606 59.742251 -0.967794 7.007579 -51.934120 1.688979 26.073600 -5.487108 27.699824 21.302128 -19.952868 -37.317855 -8.884171 9.085518 44.019004 -5.984076 -36.326955 -15.694337 -1.978547 -1.297253 -12.773172 22.414966 25.584254 -6.687928 12.585275 12.933032 -8.115424 -0.302827 -10.326353 6.546028 20.220879 -25.759176 30.241389 -13.918979 52.766771 -19.329011 25.461740 -24.938647 0.914616 -7.312936 4.978986 -4.578662 30.220048 25.928956 12.343189 2.637171 0.283311 -15.406674 1.430468 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 1.792258 5.518434 11.419563 2.417331 -7.521557 -7.539942 -2.671237 -14.195809 5.131059 4.561574 6.314659 -1.310466 3.597806 -0.196611 -2.107721 3.724369 4.615799 0.033335 -1.576054 -5.226059 -9.166766 4.077211 -0.796655 -0.148507 5.185098 -8.753592 6.917367 -0.156059 3.183930 2.690432 4.673747 0.772967 -2.046185 5.334706 1.400494 3.287612 1.127510 3.105430 -4.430566 2.734660 2.314427 -2.354311 5.028593 4.224650 5.984426 5.294553 2.123845 0.708396 -5.695857 -0.842571 -2.344529 5.970988 -3.605975 4.401306 -1.319190 0.945977 -0.528342 -5.531572 1.343794 0.211461 -1.921789 -3.910069 -4.415198 0.585785 -5.963416 -0.072251 -3.552622 -5.599405 -1.658250 -0.011759 4.059535 0.218490 -2.328774 0.151721 -7.298920 1.263557 3.567627 1.478334 6.533844 0.020710 0.156395 -1.926423 -6.525003 -7.730699 7.863262 3.185123 2.815776 0.727102 -1.916537 -4.016567 -1.861884 -1.701606 3.694344 7.601390 -7.798099 0.089336 -3.708922 -4.701468 -7.044175 -10.667635 1.137521 -4.637589 4.116731 -0.055880 -5.436380 2.868464 0.949019 2.486246 1.374265 -3.104990 0.372281 -3.731634 2.466497 9.178072 -0.094711 -6.513186 -2.426230 -2.588001 -0.150301 3.591122 2.933902 -1.236971 12.421726 3.797379 5.943502 -3.993136 -1.869552 1.054274 -0.553201 2.808009 4.809969 -7.338916 -4.385110 2.459941 -2.600280 -11.309711 -1.532765 -0.384379 4.930238 -3.737231 -2.822055 1.066357 -2.636023 0.883688 3.293679 1.659989 2.972550 -0.812361 -3.471275 0.917696 9.903890 -3.353706 2.971740 -5.122861 -2.358639 4.357940 -0.854515 1.896805 -0.037442 -2.024169 -1.160153 -4.418500 -0.079209 7.845042 -0.772743 -2.286954 2.198936 2.666817 -6.055578 -6.552720 -9.093462 -0.228098 5.880119 0.583616 9.050544 -7.339288 -0.817387 -3.080157 8.177395 0.613020 -1.328844 2.981401 -3.816697 3.061793 -4.868656 -8.436349 10.429745 8.622758 3.180569 -3.612457 3.589622 0.567389 -9.162200 -7.656767 -5.562635 1.471593 2.755915 -6.679911 -5.537185 1.927216 -7.931777 0.249908 -0.571206 2.707302 6.556256 -0.414790 3.127536 -0.909898 -3.426270 -6.244538 4.221737 -2.411890 -2.089970 0.787998 1.899385 0.232197 4.313190 -1.945954 -3.915874 -0.697989 -3.604037 -0.327529 3.950267 6.245146 -0.543408 11.466971 7.533488 -2.556297 3.603815 -0.373254 -3.789683 8.557393 -2.238891 1.452925 1.045594 3.020285 -1.951145 2.446436 7.054625 -3.246199 -6.194775 -5.708852 -1.008250 -1.552658 0.527298 -1.855064 -2.678561 -9.527687 -0.896876 -2.150436 7.618023 1.033112 10.586456 0.250274 2.531711 -9.434474 0.707784 4.607843 -1.823405 5.369764 3.936559 -7.001189 -2.986283 -2.222813 -7.250655 -5.092293 0.175231 0.865109 -5.630924 -0.791961 3.365496 -1.711868 1.204964 6.148914 0.357980 4.108021 -2.079942 0.968083 -3.407671 0.603157 10.684584 -0.135941 -4.484070 5.176087 1.610043 15.637676 1.822473 4.146882 -2.050648 -4.090848 1.184202 -4.598814 -5.504647 6.551352 5.077195 4.739122 0.257638 -0.382109 -0.062353 7.494659 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.290135 4.952533 14.615002 6.589397 -7.817929 -8.294645 -3.691114 -13.991688 5.901894 4.452932 7.965994 -2.171317 3.156765 1.930615 -1.809371 1.009448 4.141028 -0.769261 -0.958509 -4.814972 -7.146386 7.507704 1.992147 -4.750625 2.986425 -11.652574 8.730475 1.604654 4.092248 5.228668 3.637790 0.300323 -0.983667 6.138896 -2.627590 1.879635 0.382273 3.595683 -4.504150 1.123848 3.328378 0.666209 5.902567 2.585310 6.682542 5.993733 4.523503 -0.189655 -7.173995 -1.133536 -4.197174 7.990253 -4.772031 5.021273 -0.688885 2.607430 0.288938 -7.760915 -0.454764 -4.397198 -0.627396 -0.168843 -5.335009 0.495459 -8.086762 0.856874 -3.290346 -5.791230 0.713796 -0.362713 5.333133 0.578891 -0.272936 -2.588040 -8.644248 3.419371 1.884988 2.377710 5.729956 -0.677147 -0.911484 -0.163631 -6.152654 -7.770188 5.789981 3.294710 1.973238 0.256345 0.255248 -4.544119 -1.369806 -1.562308 0.357281 9.174200 -6.923080 3.673966 -3.990861 -3.610422 -7.023440 -9.142928 -0.038420 -7.011349 4.629377 3.726268 -4.993605 2.804801 1.677169 2.950949 1.170828 -6.143358 0.434301 -3.741809 2.605020 9.194586 -2.368764 -5.760113 -1.396605 -1.892667 -0.044467 5.872171 1.344559 0.820344 11.864313 5.103323 6.086925 -5.811786 -0.785245 1.962691 1.258181 4.374635 5.836524 -8.543270 -4.577894 0.714598 -1.287495 -12.954459 -0.375780 1.942256 6.112186 -2.466930 -6.568860 2.071466 -3.402779 5.236386 4.890073 4.753483 3.382984 -0.553173 -4.208308 1.963503 13.835156 -3.868392 4.320097 -6.199042 -5.452461 7.317622 -1.893506 5.036319 0.351646 0.169372 0.459634 -7.426971 0.093444 9.858038 0.773621 -0.439659 5.263422 1.769291 -4.069857 -10.196601 -10.440483 -0.509282 5.874816 0.741553 13.619403 -8.428325 -2.846664 -2.555986 8.707785 0.180561 -1.855052 2.113911 -3.568475 3.404824 -11.858787 -11.702526 11.788971 10.458177 2.688632 -3.147012 6.491420 1.551114 -6.756842 -8.084200 -6.307295 3.945000 2.159342 -3.080901 -3.162198 1.260843 -9.298802 -0.589436 0.173985 2.801775 7.717333 -3.579066 -0.670496 -1.488540 -7.405287 -7.402835 4.750750 -6.060431 -3.587028 0.325297 2.145584 -0.285429 3.853281 -2.119632 -4.412884 1.071336 -4.412281 -1.013361 4.175164 6.440084 -0.387751 12.074856 9.627997 -1.423354 5.087106 1.472067 -4.078739 16.473967 -4.044105 -0.233252 0.644482 4.587129 -2.071649 2.951885 6.226021 -3.599226 -6.825639 -7.618002 2.143208 -1.910909 1.967294 -7.193555 -4.470638 -10.175890 -1.898633 -0.127717 9.424088 1.670556 14.881498 -0.163947 2.700210 -14.289627 0.651197 6.689665 -1.189295 6.389006 5.454781 -8.237716 -6.958921 -1.979178 -5.942434 -0.855133 -1.003399 -4.486300 -6.584484 -2.191850 2.676341 -2.459097 2.607234 9.424266 -0.821990 4.652475 -1.041038 -0.661264 -3.109394 -1.379752 8.956481 1.452142 -6.152395 8.082054 -0.297256 19.563209 -0.694733 5.725323 -4.441231 -1.536156 -0.083452 -4.493772 -4.741283 9.245500 5.405612 4.764065 0.544850 -0.516094 -2.522661 7.055388 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.334665 0.830414 1.681651 1.126233 -0.872289 -1.404804 -0.450166 -1.512879 0.569578 0.100533 0.770335 -0.353166 0.439944 0.290573 -0.209704 -0.003478 0.586583 0.382957 0.016320 -0.492426 -1.107209 1.450254 0.295017 -0.826259 0.276112 -1.168762 0.897453 0.614366 0.803692 0.880170 0.048144 -0.003656 -0.038693 0.618228 -0.875776 -0.447881 -0.288993 0.380529 -0.964655 0.188052 0.209563 -0.076562 1.012274 0.034153 0.174435 0.711956 0.574252 0.166653 -0.721739 -0.098689 -0.603967 0.925074 -0.223180 0.678979 -0.226440 0.004071 0.352629 -0.473408 -0.011718 -0.352920 -0.045118 0.047446 -0.575967 -0.011897 -1.155427 0.037464 -0.613036 -1.044851 0.350210 0.036815 0.530687 0.131850 -0.054063 -0.769968 -1.403517 0.456736 0.384777 0.573505 0.462340 0.216755 0.267640 0.195860 -0.960373 -0.842368 0.522877 0.322470 0.448358 0.115825 -0.311173 -0.908238 0.211380 0.017725 0.157587 0.768191 -0.378562 0.760222 -0.965447 -0.290071 -0.935059 -1.568056 -0.125657 -0.618913 0.520227 0.163314 -0.326478 0.315238 0.447364 0.388713 0.326338 -1.175726 -0.011534 -0.426411 -0.067915 1.390518 -0.099394 -0.648864 -0.115719 -0.199212 -0.447337 0.845275 0.112848 0.124231 0.953506 0.636952 0.408303 -0.678831 -0.109376 0.054434 0.060095 0.532425 0.868225 -0.733637 -0.650244 -0.011666 -0.260031 -1.736008 -0.055856 0.466484 0.754248 -0.427008 -0.585805 0.471527 -0.644546 0.658182 0.466847 0.490355 0.497619 -0.268515 -0.445337 0.502944 1.726278 -0.558836 0.617592 -0.810132 -1.177075 1.231597 0.044998 0.622919 -0.201900 -0.153244 0.095281 -0.645474 0.320012 1.244182 -0.006167 -0.161886 0.891250 -0.059223 -0.601833 -1.345324 -1.344193 0.271624 0.775151 0.160099 1.928668 -0.891713 -0.515958 -0.092011 0.859110 -0.230602 -0.184099 0.306749 -0.521038 0.450011 -2.042200 -1.630795 1.430431 1.032503 0.089338 -0.241507 0.689989 0.248135 -0.460923 -1.148112 -0.820719 0.503850 0.271546 -0.648904 -0.578765 0.116444 -1.028217 0.324658 0.201291 0.344152 0.944897 -0.498502 -0.095711 -0.944537 -1.363437 -1.084266 0.729614 -1.047507 0.035327 0.341025 -0.033157 -0.251217 0.576578 -0.109641 -0.608973 -0.037263 -0.488663 -0.022996 -0.004718 0.634905 -0.188980 1.485654 1.427352 -0.077191 0.807710 0.400088 -0.687089 2.653810 -0.843067 0.115316 -0.054992 0.909801 -0.458162 0.551708 0.866710 -0.310696 -0.827284 -1.085753 0.167999 0.037371 0.084310 -1.268824 -0.565584 -1.391560 -0.329492 -0.039619 1.353505 0.139658 1.803359 -0.385072 0.293504 -1.964322 0.165486 0.464554 -0.063403 1.087517 0.556729 -0.999395 -0.912247 -0.182404 -0.797853 0.154579 -0.274116 -1.133426 -0.695352 -0.068880 -0.115712 -0.350531 0.367241 1.298815 -0.399102 0.562457 -0.288363 -0.228419 -0.427921 -0.288490 1.219019 0.011255 -0.606094 0.875837 0.002080 2.331409 0.184547 0.767046 -0.626833 -0.264265 0.205340 -0.820753 -0.581957 1.180753 0.566100 0.367424 0.173028 0.153961 -0.118706 0.640148 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -0.543991 1.351318 4.032629 3.449413 -2.794266 -3.415935 -1.151045 -2.434952 0.798345 0.411453 2.100124 -0.855633 0.742323 0.682049 -0.310952 -1.329121 1.298202 0.542626 -0.558175 -1.331130 -3.292664 2.070999 1.418264 -3.116218 0.835082 -2.220505 3.106505 1.734297 -0.026690 2.296359 0.255732 0.320667 -0.673793 1.632509 -2.097807 -0.627260 -0.456721 0.794246 -0.710301 0.107994 1.795302 -0.224319 2.520715 0.073558 0.670010 2.455294 0.847063 0.293504 -3.082744 -0.725959 -0.598255 0.906522 -0.925702 1.397247 -0.072461 1.005228 1.519224 -2.273997 0.041315 -2.612768 0.587562 -0.289618 -1.498231 -0.003608 -2.486611 -0.133928 -0.753662 -2.526333 1.371274 -1.002070 0.792615 -0.490943 -0.813723 -1.864007 -1.353527 0.753828 1.245687 0.870462 1.141252 0.454767 -0.189573 0.206924 -2.317354 -1.597463 0.256306 -0.606766 1.318260 0.599256 -0.307042 -1.790590 1.375746 -0.019429 0.215514 1.996796 -0.537153 1.003699 -1.034114 -1.095359 -2.886831 -2.801092 0.265990 -1.171581 1.393792 1.968240 -2.674510 0.396231 0.328339 0.790478 0.303292 -2.608417 -0.293420 -2.141023 1.103001 2.105464 -0.658576 -1.764977 -0.546655 -0.952412 0.348047 2.322225 -0.076039 -0.282336 2.614921 1.395164 0.816550 -1.810005 -0.260903 -0.459566 0.341156 1.029080 1.725512 -1.937017 -1.143053 0.000360 -1.365312 -3.589913 -0.157117 0.099659 1.897725 -0.105939 -2.677052 1.941048 -1.639483 1.266441 0.840173 2.360884 0.658962 -0.395019 -1.332293 0.530749 3.626132 -1.144187 1.359713 -1.228333 -3.821233 3.125488 0.686010 1.102245 0.528356 -0.743665 0.210249 -1.412776 0.803614 2.935032 0.121281 -0.249675 2.142398 0.092076 -0.921708 -3.180640 -3.509939 1.138298 2.027395 1.308437 5.501466 -2.995239 -0.706385 -0.577149 2.640575 -0.841064 -0.784790 0.126048 -0.277448 0.970531 -5.331359 -3.993759 3.162766 1.727507 0.204006 -0.224672 1.727265 -0.556338 -0.229110 -1.761220 -2.362282 1.176936 0.834931 0.819069 -0.013523 0.167700 -2.334064 0.698397 0.328285 0.994487 2.428260 -3.113773 -1.389616 -2.333645 -2.917871 -2.584540 0.753360 -2.625046 0.047442 0.708777 -0.173003 -0.148231 0.941089 0.365756 -1.988366 -1.248508 -1.044600 -0.281919 0.293857 1.810179 0.012196 4.018015 3.184988 -1.011867 0.879664 0.674051 -0.968912 7.114049 -2.083163 0.366160 0.150583 3.255062 0.121135 0.807006 2.727386 -0.733101 -0.960584 -2.230238 0.495663 0.180501 0.345367 -5.474242 -0.729519 -4.450323 -0.635833 -0.336521 3.264864 -0.058830 4.475012 0.146346 0.286711 -4.607601 0.015991 1.619655 -0.310376 1.776874 1.172892 -2.629897 -3.208522 -0.236296 -1.986737 1.919782 -0.243724 -1.205218 -1.659507 0.638905 -0.767628 -0.144012 1.000131 3.418235 -1.148715 0.342164 0.355819 -0.362113 -0.008534 -1.626527 2.123567 0.198845 -1.281641 2.997626 0.379136 4.874250 0.848778 1.869374 -1.154402 0.106662 0.406835 -1.425711 -1.543673 2.117726 1.197183 0.907687 0.696601 1.032670 -0.588956 1.787569 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = -0.251679 0.805497 3.830433 1.623734 -1.666682 -2.378306 -1.021012 -3.533587 1.646735 0.800016 2.615700 -0.311288 1.208227 0.311599 -0.039111 -0.154746 1.093795 -0.430049 0.068667 -1.016044 -1.010844 2.927917 1.080979 -1.468138 0.465069 -3.194778 1.572701 0.835789 1.487498 1.945791 0.254917 -0.056778 -0.374920 1.195058 -1.270736 -0.105676 0.076862 0.750593 -1.459285 -0.100763 0.672753 0.159928 1.784903 0.010326 1.714444 0.758843 1.247697 -0.001785 -1.597137 -0.722208 -1.068291 2.234391 -1.108767 1.242969 0.017175 0.442447 0.032184 -1.409003 -0.470857 -1.971375 0.160754 0.154356 -1.196244 0.104280 -1.906374 0.511148 -0.969983 -1.284099 0.643413 -0.725592 1.402398 0.213635 0.299782 -0.818488 -2.714220 0.913589 0.353880 0.754218 0.920532 0.164786 -0.389263 0.168323 -1.469095 -1.724288 1.157885 1.193084 0.336124 -0.024902 -0.639146 -0.680609 0.100110 -0.147546 -0.177518 1.851605 -1.907522 1.206811 -0.848120 -0.768518 -1.390213 -2.264855 -0.076578 -1.786041 0.984283 1.125764 -0.789314 0.408362 0.048587 0.834072 -0.137888 -2.353834 0.339096 -0.576367 -0.050418 2.512812 -1.193192 -0.848013 -0.493137 -0.189678 -0.230500 1.703389 -0.007912 0.795281 2.183178 1.584954 1.029225 -1.657498 -0.140308 0.881772 1.132915 1.106985 1.307314 -1.857398 -1.133045 0.253373 -0.637289 -3.626490 -0.474197 1.159299 1.924430 -0.265084 -1.889765 0.665220 -1.060129 2.167926 1.785479 1.056407 0.742270 -0.037553 -1.437913 0.988173 3.748240 -1.176958 1.631654 -1.339659 -1.799286 2.412595 -0.905736 1.649268 0.052506 0.389124 0.188351 -1.860269 0.044538 2.517550 0.636932 0.663879 0.870993 0.257906 -0.632583 -3.069638 -3.213559 -0.433951 1.639072 0.439097 3.614087 -1.939068 -1.221047 -0.381598 2.288249 -0.251042 -1.084280 0.563328 -1.141123 0.925410 -4.132571 -3.232228 3.337921 3.486052 0.826865 -0.114236 2.144019 0.871133 -1.309054 -1.657008 -1.513570 1.410357 0.360744 -1.235256 -0.656027 0.119682 -2.476641 -0.369896 0.004025 0.637973 1.462792 -0.706075 0.066426 -0.193151 -2.294916 -1.485826 1.458177 -1.970250 -1.007239 -0.001350 0.215619 -0.057327 0.881008 -0.802477 -0.747371 0.695173 -1.578410 -0.111981 0.740287 1.283109 0.090567 3.149643 2.760797 -0.179137 1.427592 0.278665 -1.319700 4.569855 -1.519838 -0.147662 -0.137651 1.178735 -0.450387 0.950515 1.341910 -0.798157 -1.756731 -2.145108 0.703605 -0.209332 0.939640 -2.095207 -2.239668 -2.632409 -0.465982 0.419553 2.697929 0.321071 4.339096 -0.670843 0.748905 -4.602387 0.194964 1.440281 -0.128263 1.763641 1.103789 -1.730252 -2.555854 -0.404918 -1.491101 0.036776 -0.451394 -2.324102 -1.473886 -1.312512 1.218397 -1.163429 0.683748 2.142521 -0.316145 1.859368 0.163170 -0.576001 -1.136745 -0.127468 1.715909 0.435783 -1.505584 2.264262 -0.085227 5.207221 -0.633334 1.579356 -1.276957 0.509561 -0.354495 -1.445559 -0.839381 2.643012 2.066344 0.951419 -0.140309 -0.217062 -0.799119 1.249764 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.289461 0.528100 1.617294 1.388466 -1.039968 -1.087508 -0.495626 -0.931854 0.499871 -0.090781 0.685114 -0.077992 0.176868 -0.143308 -0.234735 -0.606229 0.389722 0.179750 -0.259675 -0.479323 -0.573879 0.861463 0.610125 -1.745652 0.346708 -1.083628 1.152625 0.703641 0.335222 0.989070 -0.113871 -0.000688 -0.155190 0.979424 -0.784577 -0.615213 0.040521 0.303419 -0.582634 0.027568 0.690436 0.763325 0.927061 -0.063601 0.446594 1.027964 0.250377 0.112047 -1.196033 -0.139293 -0.162089 0.647809 -0.480430 0.914036 0.036732 0.593590 0.362248 -0.986173 -0.104327 -1.346686 0.292157 0.350087 -0.231102 -0.148172 -1.062683 -0.109115 0.139645 -0.977978 0.630692 -0.217631 0.474921 0.034645 -0.046378 -0.796372 -0.412699 0.565285 0.470103 0.873903 0.572084 0.047479 0.037376 0.031371 -0.513195 -0.646584 -0.174564 -0.200132 0.511196 0.341779 0.365415 -0.856181 0.625970 -0.081245 -0.175892 0.855750 -0.152858 0.372493 -0.589296 -0.189207 -0.657143 -0.651939 -0.123747 -0.608029 0.534317 0.894228 -0.741799 0.311214 0.369834 0.527038 0.173064 -0.761856 0.117742 -0.441730 0.183067 0.990784 -0.122366 -0.618260 0.050046 -0.187944 -0.099130 1.069498 -0.280434 0.100466 0.838698 0.929551 0.330833 -0.783753 -0.018789 -0.137188 0.263643 0.703238 0.980070 -0.994563 -0.490155 -0.123205 -0.307705 -1.375185 0.115180 0.009735 0.900593 0.023937 -1.315028 0.686765 -0.780528 0.952241 0.257452 0.654667 0.379962 -0.276056 -0.685422 0.713921 1.529105 -0.468999 0.488137 -0.480956 -1.148828 0.962643 0.094377 0.659843 -0.115464 -0.340147 0.413664 -0.762487 0.304221 1.176051 0.199867 0.111478 0.875611 -0.093719 -0.269727 -1.484460 -1.197915 0.256647 0.570500 0.211589 2.092468 -0.944355 -0.616929 -0.536491 1.102591 -0.441921 -0.083639 -0.022692 -0.282345 0.542368 -1.644984 -1.422604 1.533062 1.322626 0.045331 -0.011696 0.935137 0.003113 0.081308 -0.730879 -0.593090 0.305235 0.431445 0.346721 -0.134413 0.143154 -0.864168 -0.151745 0.512765 0.295036 0.897790 -0.818717 -0.907988 -0.282512 -1.188819 -1.024304 0.177443 -1.048672 0.067575 0.476830 0.008821 -0.007366 0.539393 -0.160202 -0.994845 -0.170841 -0.447592 -0.184871 -0.046379 1.016554 0.189103 0.885734 1.016663 -0.057363 0.823706 0.781761 -0.663280 2.807437 -0.721020 0.203501 0.260447 0.986794 0.051897 0.439082 0.634165 -0.403870 -0.073064 -1.271057 0.394984 0.064109 0.350017 -2.190433 -0.573504 -1.164474 -0.358191 0.180604 0.683347 -0.085206 1.904875 -0.027775 -0.037834 -1.982872 -0.063775 0.946625 0.026065 0.683487 0.759207 -0.976211 -2.076657 -0.198670 -0.642563 0.548217 -0.476045 -0.751832 -0.604339 0.169737 0.268211 -0.165648 0.661718 1.746718 -0.311456 0.322977 -0.314216 -0.153870 -0.149900 -0.974618 0.319142 0.196853 -0.726658 0.986251 0.036552 2.003710 -0.051472 0.762710 -0.803522 0.010948 0.128056 -0.595660 -0.517977 1.143980 0.435372 0.472456 0.425828 0.302852 -0.589078 0.935193 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.245541 2.080112 12.563429 7.867997 -5.855916 -6.115441 -2.945690 -6.379022 3.993207 1.593406 7.066983 -0.581442 2.105574 2.133021 -0.181467 -3.434879 2.337058 -0.517645 -1.716662 -2.762802 -3.166204 6.487158 6.096482 -9.858011 1.413233 -9.076927 5.596976 3.113532 2.478747 6.291507 -0.281570 0.535131 -0.612525 4.500005 -5.819371 -2.425307 -0.676521 1.713073 -2.749352 -1.610138 4.694513 2.929216 5.056697 0.350929 4.429212 3.907144 3.712823 -0.967410 -6.833366 -1.637454 -2.850176 6.347434 -3.430244 4.333881 0.406602 5.220909 0.695472 -6.827826 -1.484779 -10.899578 2.402668 2.832098 -3.308353 -0.502733 -6.065335 0.925441 -0.905976 -4.460844 3.492591 -2.944807 3.860808 -0.302264 0.668892 -5.361981 -4.556825 3.232682 0.595093 2.723036 2.546137 0.454900 -2.935785 0.923105 -3.319581 -3.982047 0.440407 -0.071169 0.673674 0.346274 1.697712 -3.195499 2.047055 -0.543629 -3.058023 6.121558 -5.206322 4.874164 -1.356368 -1.906481 -4.099460 -3.035420 -0.943774 -5.630969 2.803843 6.665540 -4.459938 2.116904 0.513981 2.840963 0.494861 -6.956072 0.407535 -1.642919 0.067246 5.092647 -4.012428 -2.787951 1.064537 -0.237279 0.025845 6.298275 -2.091649 2.344077 6.481865 4.438844 2.049335 -4.635764 2.117349 1.318528 3.263656 3.808320 4.850990 -5.722377 -3.020218 -0.143651 -0.742236 -10.224869 0.913540 3.127061 5.784020 1.357543 -9.959707 3.330768 -3.179490 7.246960 4.422262 5.509353 2.207006 -0.856909 -4.079121 2.046415 12.064552 -3.880329 4.779965 -3.186000 -7.755100 8.436735 -2.197898 5.893059 0.016541 1.139711 2.939189 -6.539292 -0.027835 8.240200 2.405758 1.418977 5.150260 -0.491968 -0.174504 -10.584177 -8.693355 -1.642226 2.671940 1.785349 13.356606 -5.998620 -3.254016 -2.810729 7.025287 -2.475144 -2.308453 -0.195449 -1.601576 2.177711 -14.096957 -10.244089 9.229415 9.876612 0.799118 0.179674 8.085608 0.476651 0.528283 -4.365217 -4.764201 3.616751 2.212561 3.435590 0.517067 -0.405973 -7.403155 -0.845159 1.092040 1.461558 5.223115 -5.710166 -4.282944 -0.043268 -8.584262 -5.101823 1.922987 -7.803444 -2.940589 0.414193 0.920323 -0.249605 1.507925 -1.405538 -4.720067 0.801539 -4.322453 -1.498526 1.658900 5.076706 1.066181 8.679033 7.530463 -0.288398 3.369700 2.508917 -3.646127 18.047316 -5.501613 -1.425355 -0.097781 5.488776 -0.865950 2.591066 3.201978 -2.064841 -3.197386 -6.226879 4.594486 -1.551438 2.139922 -12.101268 -5.537559 -7.026017 -2.187126 1.678301 6.801533 0.276900 14.091339 -0.540032 0.896462 -15.155408 -0.126068 6.288050 -0.224356 4.388770 4.739937 -5.852308 -11.822832 -0.895295 -2.479494 5.475468 -1.479789 -7.108127 -4.208107 -2.211805 2.223648 -2.964095 3.876959 8.949082 -1.794519 4.267058 1.211594 -1.868251 -1.057898 -3.201389 2.964688 2.704512 -4.380945 8.089647 -1.014088 14.522757 -2.177745 5.664353 -4.902528 1.811175 -0.960079 -2.523497 -2.840400 7.539858 5.155960 3.174997 1.102668 0.057924 -4.150833 3.865887 -PE-benchmarks/graph-coloring.cpp__main = -4.051025 5.848378 27.174192 8.934548 -13.231186 -19.928922 -7.711763 -28.482763 12.452289 8.407019 20.206430 -2.457475 8.916094 0.042162 1.025886 3.911139 10.383195 -4.173191 -2.088367 -9.449349 -6.787850 18.451383 5.565987 -6.389996 5.600447 -19.375458 9.727696 5.458556 8.297760 12.189103 6.409545 -1.255570 -3.065541 9.493206 -5.115018 10.017255 2.575538 5.887164 -10.899258 0.629880 3.266827 -0.196013 13.295769 1.432393 17.767180 7.671953 11.088052 0.057063 -15.364227 -6.188573 -8.880035 19.960338 -10.439413 10.067461 -0.038584 3.004861 -0.813787 -11.236451 -2.810325 -12.425456 -1.546460 0.566463 -11.047733 0.030901 -13.310565 2.415525 -5.823239 -7.473259 1.383299 -6.115274 10.109656 -0.642709 -1.107551 -1.074749 -18.693176 4.898267 4.249984 4.905445 9.825906 -0.102830 -1.440469 -2.966547 -8.705512 -13.845102 12.401176 7.206367 4.332930 3.106418 -8.191678 -3.181080 -3.174033 -1.636733 1.245337 13.838756 -16.530693 5.297363 -1.798854 -7.900199 -12.471448 -16.709414 1.976640 -12.164955 7.038678 6.381034 -2.754475 1.767247 -3.940796 6.283136 -3.853875 -12.965325 3.323078 -4.684834 -1.099446 17.273540 -9.281437 -7.395366 -4.590838 -1.970023 0.016396 12.044252 3.333352 4.088215 16.557659 11.413006 15.470004 -13.095708 -2.466653 4.837665 10.138889 8.893093 8.293068 -12.507628 -8.043596 4.005994 -8.883257 -25.590849 -6.235068 9.404644 16.443465 0.868719 -13.155046 2.393155 -6.745244 14.795696 10.512234 7.284112 5.463933 0.588904 -12.203604 4.968143 25.800216 -8.384043 12.247245 -7.517526 -8.413898 13.127202 -6.178854 9.517869 3.727561 -0.656539 -0.451633 -12.447732 -0.944091 18.134321 7.520495 4.218316 1.085809 4.956402 -8.264267 -20.876697 -25.829864 -4.638067 12.766722 2.532958 23.201494 -14.735669 -9.597312 -4.402913 17.605782 -3.358936 -9.685865 4.645525 -10.103995 8.402617 -25.903851 -20.719179 29.049331 28.141468 10.436038 -2.088295 15.049432 7.600212 -17.389979 -11.246101 -10.856881 9.659610 2.666152 -13.220994 -5.079544 1.599290 -20.068744 -4.237505 -2.675054 5.407714 5.750161 -0.081482 4.649082 0.492819 -12.630935 -7.163098 7.324869 -11.354424 -7.867187 -0.952827 2.206360 1.102786 7.432917 -8.645861 -5.706903 5.936347 -14.669376 -1.417582 5.744223 12.289805 4.089854 24.842205 21.339938 -2.811196 15.570294 -0.559195 -11.307698 27.063771 -8.473552 0.633105 -1.703553 7.605912 0.516995 5.386619 11.216708 -7.212309 -13.204039 -16.051057 0.496988 1.051366 9.377795 -9.558767 -16.779143 -21.728084 -0.551592 1.678980 20.825338 0.874002 29.847564 -4.162199 7.176200 -33.296425 2.426517 11.413181 -1.849152 9.461923 7.968816 -13.853484 -18.897989 -2.121737 -13.711844 -7.047945 -1.037010 -10.105134 -10.600716 -12.276427 13.488390 -9.168501 2.614355 14.295722 -0.749702 15.067235 3.293339 -3.183166 -8.159984 -0.362014 15.957038 3.428763 -12.025784 15.283583 2.701303 42.225972 -3.448126 11.997330 -8.384685 3.133914 -1.832228 -11.184582 -8.414075 18.663300 18.778066 7.647765 0.156382 -0.756292 -5.564608 11.739276 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -6.550734 4.128783 28.088799 11.496375 -10.633401 -16.302058 -8.407344 -24.234169 12.163786 8.352111 21.454459 -2.297589 8.875701 1.916325 1.345380 -2.795684 8.277286 -5.388587 -0.485345 -6.669170 -4.345026 18.463405 8.828404 -10.952011 2.284147 -20.173090 7.828529 7.543977 6.941285 10.893263 2.512725 0.218788 -2.884580 8.690379 -10.639738 2.286293 3.276328 6.082671 -7.537822 -4.070234 5.555844 2.893074 12.021114 -0.872958 15.438111 3.498082 9.730246 -2.405433 -14.339809 -6.882129 -5.681764 17.822522 -8.559655 8.015805 4.046617 4.513893 -0.019699 -12.674493 -3.507475 -18.049448 3.520441 3.359419 -9.554468 0.177217 -9.985303 3.654163 -2.982960 -6.597561 5.637178 -7.794252 9.364942 -1.429814 1.719543 -4.066408 -15.816526 6.829844 2.527605 2.536431 6.615777 2.820604 -3.606603 -0.095515 -7.617888 -12.186970 8.683825 8.000270 1.735230 1.658259 -7.075021 -0.890931 0.796380 -2.258329 -2.679827 14.224780 -14.943603 7.557253 0.890901 -7.376447 -10.889545 -11.550095 0.407527 -14.207802 6.076351 11.038136 -6.283568 2.165354 -4.958813 5.715270 -4.605585 -16.027552 3.387448 -5.283084 0.199504 14.459868 -12.316395 -4.601096 -3.275798 -0.916109 1.128116 11.864664 0.202019 6.166370 14.448590 10.376245 8.029068 -13.299987 -0.868071 6.602241 11.373765 7.680269 6.662820 -14.389679 -6.566038 2.136757 -6.764916 -24.967176 -5.224368 8.981390 13.964254 1.856079 -16.021266 4.219062 -5.807218 16.015985 12.192802 9.502166 3.174497 1.687685 -11.090607 4.136736 23.148037 -8.824487 12.787201 -4.319751 -12.488754 14.276136 -8.074458 12.598257 3.650079 3.194981 2.122640 -14.277027 -1.254173 18.255478 6.534807 7.550322 1.441029 2.401583 -3.742011 -21.312465 -26.779182 -3.954350 10.558774 4.052751 24.998270 -14.203371 -12.259197 -2.766270 18.908480 -3.954697 -10.089455 3.489349 -7.135654 7.195545 -27.734207 -22.443974 23.902970 25.807570 7.034296 -0.935431 17.846983 3.846122 -11.168040 -9.885207 -10.680762 11.237326 2.762049 -5.408072 -0.623337 0.736115 -17.919679 -4.004179 -2.736818 3.527507 5.153172 -5.252437 2.138973 1.967425 -13.748583 -5.653151 7.167026 -11.871780 -8.508373 -3.438693 2.683178 0.758826 6.291794 -8.198112 -6.747764 5.646109 -13.600790 -2.354985 6.225317 9.278634 4.452379 24.903823 19.758721 -1.854176 13.091015 -0.174960 -8.323303 30.960554 -11.635805 -2.604880 -1.606173 8.393250 -1.010621 5.668408 9.123100 -5.825760 -11.411706 -14.793178 4.074199 -1.456271 8.763099 -15.850169 -17.020711 -19.352221 -2.492809 3.800778 18.544612 0.532750 31.054711 -3.826964 5.655378 -33.603545 1.131085 10.993212 -2.396019 10.340373 7.548421 -13.336882 -23.988295 -2.393369 -10.216543 -1.399953 -0.915766 -14.426471 -9.784082 -13.065375 12.705324 -9.486601 4.669090 14.107212 -0.537103 12.528988 5.333303 -4.163441 -6.292309 -0.860632 10.403173 3.371092 -11.752612 18.132838 -0.554685 39.204949 -6.566383 12.408384 -9.402641 6.062620 -3.929254 -8.633000 -5.657595 18.200138 17.818063 7.258758 -3.310483 -0.452635 -9.607591 9.516670 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = -2.037060 3.698708 15.444763 5.246606 -8.491183 -13.692193 -5.316164 -17.174162 7.409964 4.984547 11.119978 -2.506980 4.604852 0.750910 0.055590 3.431788 6.075445 -2.959345 -1.243297 -6.392532 -5.835175 12.734766 2.660762 -2.911564 3.546897 -13.233873 8.484123 2.566128 4.626061 9.130611 4.924305 -0.977169 -1.091699 6.186995 -2.044728 9.157267 0.890213 3.495020 -6.103485 2.703085 2.414067 0.524477 8.734911 1.697475 10.745804 8.248855 6.215596 0.824307 -9.637432 -3.819818 -6.349549 11.026239 -6.923111 6.249123 -2.029203 2.394930 0.577752 -7.527164 -2.044197 -5.463672 -2.874964 0.376144 -7.884576 0.598017 -10.197738 1.384360 -5.098426 -3.913715 -0.133182 -3.050196 6.624640 -0.008906 -1.900808 -0.777697 -11.838880 2.953269 2.191938 3.731504 6.581816 -2.408125 -1.640253 -1.270597 -6.535092 -8.955720 7.662539 4.148578 3.363823 2.168775 -3.503505 -3.961809 -3.770996 -0.655959 1.853255 8.808583 -8.023845 2.448373 -1.796146 -4.428209 -8.252745 -10.879759 1.712397 -6.595616 4.631604 3.825796 -0.684584 -0.198319 -0.595694 3.375835 -1.493279 -7.158932 2.082378 -3.246381 0.156481 11.145669 -4.010246 -5.206888 -3.735503 -2.398561 0.048225 8.556957 3.152255 1.260463 10.737169 7.030916 11.446430 -7.588754 -2.383595 2.185717 5.343244 4.935538 5.821192 -7.476285 -5.435958 2.057413 -5.081278 -14.617832 -4.145396 5.129045 10.160209 -0.172396 -7.153185 2.870006 -4.476540 8.234299 5.648586 3.790760 3.972599 -0.535254 -7.927375 3.799580 17.344307 -4.195300 6.395585 -7.136580 -5.472658 9.282923 -2.882506 4.828335 2.967998 -1.404577 -1.919554 -6.873895 1.335441 10.444297 3.611785 1.799385 2.545029 3.774201 -5.099196 -11.441007 -14.630790 -1.529853 8.238784 1.084654 15.048769 -9.731044 -3.716634 -3.038258 10.309351 -0.659006 -4.926074 2.638315 -6.139824 4.795475 -16.991996 -12.126071 18.603644 16.770038 7.438498 -1.611617 8.006461 6.214030 -9.798982 -6.636612 -7.318226 6.378412 1.606917 -7.474328 -2.891498 1.022374 -11.955735 -3.252714 -1.749578 4.164942 4.702324 -0.600205 0.876838 -2.764420 -8.159285 -5.966942 4.401430 -7.482536 -4.066986 0.589164 0.724646 -0.880910 4.660705 -4.279236 -2.513456 3.508368 -7.708042 -0.206426 3.937864 7.605844 1.662751 13.793074 13.577265 -2.467066 9.327656 0.227845 -6.208880 17.091522 -3.841376 1.292925 -1.020911 4.997913 1.643875 2.735374 6.858129 -4.345533 -7.994394 -9.770978 1.450217 1.927038 4.895216 -5.574699 -9.204247 -15.261414 -0.294078 0.138213 14.675215 1.546999 17.899882 -2.041730 4.518411 -19.433877 2.135068 7.800021 -0.443720 4.775816 4.730955 -8.152207 -9.405972 -1.014352 -9.120525 -4.540971 -1.368755 -6.163866 -7.187974 -6.410211 6.493340 -4.990854 1.493638 10.306636 -0.482091 7.741133 1.129103 -2.030153 -5.935469 -1.527305 10.140146 1.761134 -6.896646 8.464647 1.887922 24.517921 -1.799851 7.653937 -4.627579 2.455950 -1.080463 -8.309099 -5.377160 11.161091 9.614396 3.484905 2.330778 -0.423928 -1.443924 7.097977 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -2.309758 1.926393 10.263621 3.283568 -3.527990 -6.353492 -2.840398 -11.745908 5.931278 3.866704 8.895789 0.310684 5.251429 -0.898544 0.416298 -0.446739 4.323209 -2.012758 0.447902 -2.911421 -0.465287 9.101216 1.951207 -1.874096 0.902876 -7.623252 3.514764 2.142241 4.276939 4.849341 1.624234 -0.103605 -1.797658 3.144185 -2.546644 1.387198 0.979702 3.001175 -3.617432 -1.909546 1.431160 -0.480419 5.307915 0.669481 6.316683 -0.152039 3.264219 -0.770344 -3.739570 -3.216210 -1.987888 5.837567 -3.661697 3.467824 0.917034 -0.631620 0.353105 -2.164480 -0.075482 -5.180477 0.872040 -0.355066 -3.460557 0.023153 -3.767025 1.374188 -2.614330 -2.318933 0.216665 -3.726408 3.748504 -0.225514 0.738417 -1.005683 -8.958406 1.918524 1.077727 0.314003 3.659542 2.488416 -1.690885 -1.519083 -3.745036 -5.896039 5.246405 4.733580 0.362594 1.569144 -4.998243 -0.326082 -0.405612 -0.350072 0.481448 5.355418 -6.392851 2.552656 0.100063 -2.962104 -2.783407 -6.196407 0.865017 -5.500767 2.002874 2.338243 -1.452353 -0.076995 -2.534781 1.385861 -2.241351 -5.625188 2.399299 -2.124473 -0.876767 6.568152 -4.153564 -2.120220 -2.787285 -0.321334 1.051079 4.271617 1.253039 2.176688 5.444184 3.994452 3.996462 -5.709049 -0.842808 4.008200 4.021898 2.560763 1.548624 -4.799744 -2.821147 2.148695 -3.458966 -10.115524 -3.059171 4.471271 5.945493 -0.457572 -4.251259 1.251835 -2.602417 5.156739 6.277181 2.513492 1.695575 1.423578 -4.648410 1.932455 8.432516 -3.133183 4.661742 -1.742428 -3.584900 5.991090 -3.873561 4.404051 0.344824 1.121314 -0.554218 -4.568681 0.019645 7.381864 1.678828 3.390175 -1.181255 1.486115 -2.145801 -7.841638 -11.298324 -2.231367 6.531158 3.123992 8.242311 -5.128585 -3.539177 0.353660 6.305056 -0.442315 -4.801011 2.758740 -3.491189 3.461034 -11.267274 -8.260274 10.271573 10.234176 3.570362 -0.864134 4.993416 2.728607 -5.156425 -4.560517 -4.076805 4.482728 0.184436 -5.444869 -1.285682 0.813144 -7.162896 -1.844536 -0.912245 1.183874 2.071976 -1.306993 3.486545 0.148487 -3.591326 -2.786926 4.248136 -3.240729 -3.660685 -1.890342 0.624051 0.514885 2.889979 -2.596521 -1.395973 2.686790 -5.098970 -0.904502 1.912078 2.847186 1.188378 9.351320 7.729169 -1.575743 3.690863 -0.696465 -3.682312 10.319652 -4.555412 -0.411590 -0.478654 2.908610 0.374027 3.210682 4.297212 -2.712918 -4.785271 -6.382580 -0.058006 0.473362 4.111999 -4.505401 -7.184128 -7.808373 0.103163 0.518745 7.946337 -0.100527 12.336119 -2.905933 2.936855 -12.065305 0.862988 3.863521 -1.175557 4.842728 2.364937 -4.950007 -5.646800 -1.552831 -5.136912 -2.367265 0.025747 -4.662479 -3.759049 -5.282757 5.212504 -4.759633 1.260620 3.407744 -0.606802 6.132544 0.759805 -1.177598 -4.214498 1.415701 4.587011 0.805289 -4.563530 6.022500 0.225443 14.147734 -2.981376 4.609006 -3.181768 3.243032 -2.559622 -5.269717 -2.667472 7.806421 7.787980 2.819905 -1.604800 -0.230990 -2.092384 4.072176 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/ugly-numbers.cpp__main = 0.437621 0.790086 1.513096 0.971050 -0.732831 -1.138343 -0.387304 -1.371571 0.553387 0.028225 0.611001 -0.329574 0.352329 0.299499 -0.215969 0.097809 0.513997 0.432333 0.026200 -0.408271 -0.794083 1.335314 0.224573 -0.757295 0.221066 -1.076181 0.628441 0.546763 0.936430 0.749074 -0.020499 -0.063214 0.045732 0.542498 -0.818691 -0.540495 -0.259280 0.276366 -1.104524 0.164726 0.046389 0.029074 0.866189 -0.051691 0.143127 0.510458 0.577030 0.131054 -0.566780 0.022186 -0.644380 1.058517 -0.124044 0.677321 -0.178124 -0.031977 0.174585 -0.374148 -0.053184 -0.201078 -0.067685 0.183574 -0.412745 -0.032584 -1.041886 0.047533 -0.545066 -0.954027 0.355622 0.143345 0.496282 0.213575 0.083337 -0.717902 -1.355624 0.504100 0.316481 0.629298 0.365180 0.176627 0.414094 0.227483 -0.736522 -0.718250 0.443131 0.401959 0.342043 0.059498 -0.243025 -0.869120 0.176184 0.003017 0.052692 0.638954 -0.387842 0.818494 -1.044113 -0.181888 -0.709579 -1.400198 -0.239669 -0.585147 0.446653 -0.000558 -0.092006 0.417713 0.547562 0.433783 0.396018 -1.050185 0.004423 -0.165494 -0.206125 1.366993 -0.074310 -0.568757 0.000000 -0.064073 -0.625693 0.693157 0.031390 0.239761 0.748230 0.596369 0.376448 -0.587911 -0.039106 0.101443 0.038790 0.548818 0.869668 -0.607850 -0.603314 -0.059127 -0.096585 -1.560320 -0.009414 0.491528 0.685410 -0.373750 -0.427177 0.246585 -0.559911 0.729058 0.366307 0.324099 0.494395 -0.289870 -0.370865 0.528195 1.539331 -0.551543 0.575995 -0.800046 -0.915321 0.958522 0.031448 0.627225 -0.344395 -0.087177 0.210797 -0.646409 0.255080 1.095427 0.024630 -0.174598 0.806330 -0.118940 -0.595962 -1.279783 -1.088860 0.158999 0.516256 -0.039958 1.570331 -0.647207 -0.624818 -0.133943 0.725260 -0.207379 -0.082765 0.312475 -0.596336 0.406841 -1.680675 -1.434424 1.253825 1.053869 0.056977 -0.234932 0.679055 0.308399 -0.482018 -1.094112 -0.619501 0.415691 0.255390 -0.761191 -0.655473 0.097966 -0.901771 0.297809 0.268287 0.272130 0.802013 -0.229155 -0.009480 -0.713548 -1.308700 -0.944575 0.756335 -0.997723 0.054871 0.343945 0.015826 -0.229377 0.575186 -0.218047 -0.567368 0.129533 -0.439718 -0.007397 -0.078777 0.602470 -0.199711 1.139690 1.235777 0.116625 0.936823 0.443589 -0.738093 2.333100 -0.777587 0.070583 -0.081613 0.598974 -0.600261 0.522478 0.625119 -0.282148 -0.789861 -1.008673 0.148191 -0.051238 0.075874 -0.918623 -0.596620 -0.973431 -0.341811 0.033374 1.044410 0.181285 1.559112 -0.455628 0.242970 -1.794353 0.145919 0.381691 -0.002117 1.061243 0.563065 -0.876145 -0.884702 -0.141596 -0.645684 0.074289 -0.327271 -1.244466 -0.601592 -0.150420 0.055872 -0.341886 0.336542 1.198610 -0.335908 0.646320 -0.340828 -0.245724 -0.425826 -0.240035 1.070292 0.032385 -0.555744 0.696907 -0.051418 2.161175 0.134685 0.652627 -0.647644 -0.371088 0.226270 -0.742045 -0.504063 1.126446 0.505968 0.369202 0.108066 0.039598 -0.191892 0.529418 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.334305 0.948351 3.098928 1.868336 -1.043600 -1.171409 -0.839687 -1.603509 0.818653 0.026580 1.174778 -0.293249 0.353543 0.699538 -0.342684 -0.347334 0.684093 0.446097 -0.057673 -0.630369 -0.710765 2.089938 1.499639 -2.369906 0.234982 -2.306110 1.330883 0.827029 1.386059 1.887901 -0.260732 -0.021407 0.451540 1.080943 -1.785330 -1.203704 -0.645540 0.574054 -1.659328 0.091542 0.767256 0.864097 1.322498 -0.283642 0.532334 0.959287 0.768125 -0.184104 -1.391854 0.214495 -1.077286 1.885893 -0.602544 1.166795 -0.405959 0.998406 0.181683 -1.041592 -0.485195 -2.023501 0.170187 1.208878 -0.556516 0.118590 -1.870635 0.274490 -0.527153 -1.602609 0.744211 0.195013 0.927317 0.685412 0.416225 -1.515010 -1.602958 1.368440 0.434707 1.282458 0.480687 -0.077215 0.164237 0.487848 -0.749596 -1.073617 0.348725 0.431806 0.308992 0.024825 0.711670 -1.555460 0.464270 0.121581 -0.753775 1.369018 -0.498290 1.920144 -1.296008 -0.142262 -0.620639 -1.169095 -0.798959 -1.407386 0.692607 1.082734 -0.529583 0.930728 0.705482 1.183719 0.578537 -1.635585 -0.048451 -0.045817 -0.509425 2.065252 -0.361093 -0.799613 0.226310 0.267994 -0.722058 1.560033 -0.761514 1.044543 1.281882 1.271828 0.275746 -1.086000 0.542327 0.180123 0.341757 1.103110 1.773656 -0.836517 -1.279827 -0.576374 0.316720 -2.373096 0.160430 0.744315 1.054887 -0.490491 -1.547665 0.513233 -0.893181 2.086654 0.837619 1.050172 0.842397 -0.573119 -0.835494 1.269244 3.024109 -1.116424 0.936600 -1.166003 -2.264890 2.001248 -0.151661 1.580185 -0.718599 -0.155379 0.712895 -1.668935 0.546308 2.239971 0.314934 0.212075 1.410027 -0.505076 0.091696 -2.361577 -1.593822 -0.143935 0.053535 0.185246 3.609021 -0.882500 -1.218866 -0.671361 1.245535 -0.172677 -0.019782 -0.019768 -0.904784 0.519202 -3.840684 -2.791865 2.272508 2.093896 0.290214 -0.082936 1.577874 0.598990 0.338586 -1.584046 -0.756908 0.988859 0.625265 -0.086291 -0.660016 0.410423 -1.299995 0.151580 0.629474 0.357112 1.264332 -1.009553 -0.901318 -0.786425 -2.647330 -1.258338 0.790425 -2.350365 -0.408888 0.541458 0.147476 -0.210301 0.662781 -0.384090 -1.059638 0.200233 -0.714988 -0.185088 -0.142633 1.630683 0.004485 0.961762 2.421591 0.426347 1.320394 1.217190 -1.255754 4.463675 -1.515022 -0.307644 -0.022381 0.784411 -0.936002 0.737124 0.820387 -0.474025 -0.570795 -1.933621 1.220302 0.017845 0.186189 -2.707091 -1.082471 -1.134494 -0.646776 0.648082 1.614987 0.459107 3.312685 -0.539546 -0.190357 -3.382806 0.044043 1.005088 0.216664 1.714705 1.329107 -1.609713 -2.709011 -0.352427 -0.791413 1.409932 -0.793963 -2.348841 -1.282975 0.010013 0.397763 -0.683122 1.377867 2.499690 -0.642790 1.145984 -0.194900 -0.643673 -0.728420 -0.848006 0.831768 0.544024 -0.873757 1.262125 -0.378836 3.430838 -0.327054 1.327150 -1.741483 -0.183207 0.270261 -0.690778 -0.747861 2.281734 0.904568 0.735213 0.544647 -0.124053 -0.736659 0.883877 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = -0.323760 1.687525 6.299455 3.207270 -1.675644 -2.917900 -1.384115 -4.525906 2.004342 1.120877 3.650334 -0.839587 1.237564 1.577494 0.043167 -0.643469 1.100953 -0.284204 0.433286 -1.096822 -0.792376 3.819573 2.591940 -2.838596 0.016406 -4.346740 2.071339 1.290678 2.528027 2.490197 0.195752 -0.160581 0.181083 2.027467 -2.767076 -0.862637 -0.591393 1.276154 -1.925232 -0.179867 0.629138 1.605089 1.776683 0.192345 2.086278 1.528560 2.828009 -0.459036 -2.043877 -0.512514 -1.822058 4.162669 -1.834653 1.548690 0.379583 1.139093 -0.174033 -2.460759 -0.780412 -3.539524 0.613645 1.579372 -2.091412 0.270011 -3.291348 0.803141 -1.738065 -1.761275 1.073543 0.033154 2.262024 0.444948 0.789929 -1.989937 -3.574864 1.965446 -0.346410 1.128242 1.170119 -0.333061 -0.786687 1.104948 -1.453342 -2.508751 1.278142 1.159126 0.098788 -0.526139 0.410326 -1.213449 -0.201421 -0.369682 -1.462679 3.106669 -2.399957 3.272722 -1.364307 -0.784651 -1.875879 -2.340084 -0.750908 -3.398215 1.408578 1.947986 -0.581140 0.651510 -0.479692 1.094989 0.251396 -3.821347 0.137820 -0.177743 -0.000103 3.085421 -2.397507 -0.540813 0.097247 0.208384 -0.306618 2.746128 0.064206 1.549449 2.815926 2.149726 0.860543 -2.218871 0.605050 0.868627 1.191470 2.041365 2.323235 -2.841931 -1.903001 -0.369634 0.369069 -5.135675 0.517775 2.602257 1.949569 0.030242 -3.418992 0.623469 -1.244653 3.365570 2.761031 2.339920 1.281210 -0.355064 -1.151096 1.211572 5.694892 -2.059568 2.384185 -1.555614 -3.037109 3.816309 -2.045772 3.132731 -0.004951 1.373130 1.126447 -3.314580 -0.493572 4.068263 1.413484 0.989263 2.839443 -0.341976 0.186051 -4.664156 -3.810626 -0.409218 1.408114 -0.118776 4.912332 -2.125568 -1.750164 -0.239522 2.656976 -0.227433 -1.243928 0.098651 -1.078807 0.939624 -6.243411 -4.654701 3.612853 4.384306 0.263192 -0.800992 3.072746 1.517439 -1.183253 -2.771716 -2.228156 2.442702 -0.536904 -0.221646 -0.575381 -0.018033 -3.622730 0.199142 0.019254 0.722402 2.449489 -1.763314 -1.450299 -0.033077 -4.311258 -2.270511 1.529664 -3.030312 -1.878257 -0.445777 0.495056 -0.052185 0.668847 -1.310154 -1.314989 1.549200 -2.579689 -0.849866 1.195705 1.980176 0.285096 4.731486 3.086571 0.675826 1.942172 1.118713 -1.845519 7.633160 -1.938026 -0.779024 -0.313191 2.050413 -1.485181 1.564428 1.067653 -0.965319 -3.453439 -2.928549 1.802497 -0.622399 1.244037 -2.999721 -2.833156 -2.706959 -1.047215 1.357013 3.606993 0.506434 6.370677 -0.614233 1.245102 -6.215445 0.294763 2.053576 -0.444922 3.026718 2.230147 -2.877337 -3.267140 -0.864088 -1.106461 1.240502 -0.578881 -3.973089 -2.071877 -1.331663 0.967427 -1.525288 1.341334 2.824375 -0.551873 2.178925 0.922199 -1.023486 -0.969808 -0.491703 2.807186 1.087681 -2.810958 3.371407 -0.937451 7.598654 -1.454326 2.532943 -2.555008 -0.241199 -0.281991 -0.761198 -1.007028 4.252854 2.978483 1.416851 -0.333114 -0.332043 -1.571844 1.299044 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -3.239770 4.760605 23.516703 15.783004 -6.893880 -9.187531 -4.506461 -9.019970 5.632557 3.069373 11.391873 -1.279180 2.888997 6.440681 0.294658 -6.642019 2.757392 0.766906 -0.921765 -3.431249 -1.909598 10.807078 12.936836 -17.920212 -0.023660 -14.628904 9.920793 5.999056 6.313300 10.581825 -0.274468 1.134366 0.732008 7.988612 -12.534812 -5.631822 -4.845215 4.130976 -4.162175 -2.006710 6.876724 9.475690 4.879130 1.395691 6.210060 7.617354 10.371616 -2.975214 -8.959857 -2.017637 -6.693283 13.199360 -6.649631 5.917490 0.239103 9.845893 0.118489 -11.352706 -2.745519 -19.819881 6.097923 9.360864 -8.040868 -0.081655 -12.498942 2.136938 -3.988602 -6.702393 5.410592 -1.053017 7.336921 -0.398409 1.985884 -12.374904 -8.487181 6.440835 -3.376770 4.635366 4.219913 -0.617351 -6.803524 4.121343 -3.462616 -6.961008 0.118710 -1.261682 -1.020019 -1.410371 6.480510 -6.475826 0.372644 -0.545620 -8.433645 11.236320 -8.480863 13.331516 -3.537989 -1.309463 -4.674919 -1.047106 -2.853838 -12.406088 4.054008 11.448871 -4.606023 2.909210 -1.308272 3.509729 1.706604 -12.751288 -0.816134 -0.651751 -0.071079 7.834461 -8.627285 -1.971006 3.407842 1.334496 0.719343 11.828700 -2.340789 5.455072 9.894928 6.839807 1.259419 -7.565809 5.326655 2.670992 3.872609 7.798916 8.755825 -10.011640 -6.335833 -3.371283 3.105949 -16.733467 5.907797 8.692302 6.074050 2.964512 -17.319306 4.312748 -4.705298 12.092446 8.693982 11.639112 4.697031 -1.841454 -3.895355 3.116923 22.233830 -7.248491 7.317082 -4.004723 -14.475853 16.276329 -6.409339 11.963128 -0.113963 5.005960 7.109318 -12.506735 -2.018745 15.087804 4.558075 3.821306 14.692634 -2.709899 3.964023 -17.594953 -11.799267 -2.232838 2.136428 1.340210 20.921807 -7.540642 -3.784687 -3.043758 9.296460 -2.570882 -3.076492 -2.701278 -0.687309 2.294567 -24.690366 -16.483741 11.097503 13.522920 -2.179322 -2.277296 12.991292 3.331772 2.617891 -8.367931 -8.309491 7.913942 -0.298160 10.736774 3.270200 -0.661830 -12.973373 0.537279 1.959532 1.683162 9.243786 -11.825641 -11.975588 0.605176 -17.156218 -9.665248 2.120511 -13.060177 -6.144316 -1.621847 1.889537 -1.027876 0.045703 -3.327334 -7.224357 3.899356 -7.608981 -4.517300 3.442426 7.755099 2.641790 14.425375 9.160172 2.512547 4.189960 6.323063 -5.769862 34.041699 -7.252919 -4.332061 -0.363966 10.377733 -3.839372 4.911538 1.228770 -2.841528 -8.627180 -10.557938 9.814629 -2.661379 3.549218 -18.353167 -6.803698 -7.994386 -4.676347 5.216179 11.733935 0.635126 24.163076 -0.722384 2.451134 -22.717048 0.341751 10.363378 -1.699631 9.498330 9.710179 -10.433505 -16.555196 -2.958093 -0.025206 13.274170 -2.267321 -13.959518 -7.749271 -1.493949 0.404660 -5.030603 7.394475 13.543731 -3.780009 5.603482 3.593550 -3.401001 0.034011 -5.233576 4.886200 6.998361 -10.453223 13.758577 -5.095414 23.966393 -5.579454 10.905020 -10.084390 0.461839 -2.217639 -0.985591 -3.821393 14.364636 8.875164 5.581588 1.746051 0.402831 -7.441248 4.491785 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 1.219686 8.112914 19.795288 5.454965 -13.432393 -14.792867 -4.874019 -24.764488 7.881345 6.301228 13.302387 -2.327357 6.104400 -0.935098 -1.505890 5.720966 8.512863 -0.354404 -2.867485 -8.679178 -13.778185 7.434045 0.423986 -1.886239 7.847641 -12.363321 8.493968 2.670604 4.872863 3.865250 6.589116 0.367178 -3.767658 8.388318 -0.247001 5.066022 2.136116 5.090163 -8.586978 2.957063 3.258205 -4.104244 9.636906 3.560661 11.251309 7.131724 7.549906 1.395244 -11.857838 -2.331575 -4.741404 13.941613 -6.727758 7.493516 -0.313557 1.038287 -0.522485 -9.291674 0.768276 -2.651555 -2.570841 -5.808713 -7.703679 0.341958 -9.233203 0.156005 -4.013312 -9.829552 0.011187 -0.790165 6.595773 -0.491405 -3.827087 1.295170 -11.500854 2.424538 6.750622 3.624882 9.240198 0.780411 2.120806 -3.128441 -9.634985 -11.572391 11.818587 4.245607 5.822466 1.074269 -6.138700 -3.247693 -0.840011 -2.408576 4.684277 11.269901 -13.873652 0.792854 -4.465910 -8.403241 -13.973515 -17.375693 1.933832 -7.791113 7.142273 1.202958 -8.688406 4.408845 -1.943795 4.427951 -0.696822 -8.122713 -0.369667 -6.234870 3.028285 14.825279 -3.734302 -9.185518 -3.397695 -3.375573 -0.904025 5.859684 4.401598 -0.449774 18.601217 8.197104 9.341452 -8.268457 -3.630845 0.263935 2.850109 6.490142 8.195148 -11.268240 -7.254081 3.944574 -6.964031 -20.279450 -3.292106 2.191347 10.099717 -3.339028 -7.045351 1.520088 -4.962819 5.978027 5.602684 4.444787 4.242453 -0.856129 -6.648275 2.578029 16.092848 -6.552768 8.104261 -6.226331 -4.371545 7.376705 -1.866914 4.069303 2.085285 -3.226342 -1.662980 -7.925414 -1.660851 13.305072 2.662055 -1.981846 2.263849 3.969577 -9.538547 -13.319356 -17.796879 -0.198482 10.183295 1.089228 15.642836 -12.654967 -5.479312 -4.163875 13.774190 -2.173826 -5.504088 4.465357 -7.591889 6.116022 -9.890228 -15.146726 19.368809 16.917541 5.265012 -3.750699 9.210649 1.259665 -17.318309 -11.502524 -9.248989 4.176437 4.257460 -13.503856 -8.101235 2.840585 -14.761732 0.440514 -1.873547 5.002914 7.990294 0.678290 6.183645 -0.206857 -7.243734 -7.382397 6.018022 -4.910607 -4.044520 1.197053 2.361857 1.892223 7.136256 -5.216018 -7.210674 -1.372942 -10.168635 -0.971639 5.264389 11.026734 1.528800 22.451979 14.560855 -3.660717 10.723757 -1.077122 -7.841080 14.583991 -5.088401 2.508657 0.492438 6.676719 -3.053154 4.107258 12.888816 -5.482283 -11.391832 -10.723383 -2.439051 -1.675943 3.838589 -4.197046 -7.355724 -17.104780 -1.422177 -1.196270 13.188991 0.052871 18.631348 -0.614818 4.698850 -20.273057 1.026242 6.441283 -2.758261 8.550985 6.145020 -11.817065 -9.051707 -2.957294 -12.297299 -9.544038 0.750609 -0.342081 -8.974634 -4.546425 8.197910 -4.139931 1.204879 9.758595 -0.072512 8.785899 -0.069179 0.331655 -3.882462 0.223201 18.623451 0.369017 -8.445753 10.666247 3.399834 31.896953 3.163610 7.509534 -4.371325 -5.606280 2.855461 -7.243999 -8.619016 11.923642 12.569517 7.386374 -0.559252 0.053976 -1.905120 12.245672 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -5.429056 7.461541 33.221879 16.238762 -13.904143 -19.859198 -8.977092 -21.364775 9.856913 6.165083 19.621722 -2.479743 4.867955 10.091938 1.483865 -3.509199 6.147964 -3.493967 -3.249323 -8.259578 -8.583415 17.232765 14.928819 -19.665381 3.048221 -23.680342 12.820858 6.855969 6.266395 13.887762 1.482926 0.003726 -2.185177 11.534631 -14.297067 0.232879 -0.141894 6.058743 -6.793031 -1.305741 9.077849 8.566180 10.881490 1.613217 14.774942 11.458446 12.429891 -1.493157 -16.491548 -5.392373 -7.689695 20.528168 -10.752198 10.845792 0.438181 12.280120 -1.842403 -17.257757 -4.326852 -24.493554 4.188062 7.211641 -12.726569 -0.746052 -15.699915 3.570246 -3.144353 -9.632181 6.471474 -4.882450 13.083422 -2.678206 -0.202132 -9.598387 -14.934879 6.057083 -1.657024 6.732261 7.342297 -2.828021 -8.429672 2.207878 -8.367335 -12.606460 3.763086 3.173038 1.123177 -0.396278 1.657334 -3.998423 0.560830 -2.752345 -6.813448 17.939440 -15.543116 13.009415 -1.935888 -5.527870 -14.149136 -9.032989 -0.796556 -15.918688 7.765649 13.431668 -6.480137 2.604710 -2.017039 5.892226 -1.813530 -19.506700 0.924552 -3.131746 0.005170 12.692990 -11.653812 -4.562300 4.093938 -1.967084 -0.013274 16.742663 0.293970 5.850617 17.177406 12.160227 7.400365 -12.795712 1.466248 2.437817 10.360698 11.818750 12.030412 -15.388922 -9.117885 0.288723 -2.858835 -26.709380 3.418521 11.590142 15.786802 2.834841 -22.122143 4.754901 -7.716217 17.607818 11.018810 16.112574 5.164439 -2.647698 -11.108519 4.382973 35.023231 -9.875581 14.286055 -6.582979 -16.113785 22.117408 -9.261057 16.332268 4.632427 4.076372 4.259546 -16.357172 -4.304439 21.959878 9.387104 7.189404 12.254467 0.797296 -1.797060 -26.244838 -24.335292 -6.699809 10.143585 1.915692 30.966805 -15.643440 -9.758984 -5.449703 19.031235 -5.925509 -8.058977 0.245217 -4.492775 6.658967 -33.736227 -24.801934 24.869752 28.796835 3.838037 -1.839495 21.463104 5.400611 -6.015073 -11.861546 -12.776784 11.125013 2.437561 6.060495 0.469750 -1.422977 -20.743634 -2.820174 -0.684843 5.096117 9.200586 -8.822144 -7.562837 3.200015 -20.451283 -11.692475 2.828129 -17.356022 -8.159970 0.100273 3.380759 -1.331421 1.523085 -6.978347 -9.584385 7.066897 -13.440032 -2.001206 7.672128 10.945147 6.048573 26.686228 18.203941 -0.674766 13.629275 4.401373 -9.205004 42.930043 -10.981041 -2.173032 -0.402926 14.266324 -4.334077 6.005920 8.390225 -5.644438 -12.527808 -15.492965 9.973918 -3.117328 8.003078 -20.699302 -16.074672 -18.841579 -4.230768 5.746541 20.445098 -0.533891 34.285531 -1.150906 7.384865 -39.571769 1.829395 14.483552 -3.120392 8.345912 11.531621 -14.696194 -27.842612 -2.079675 -5.891217 4.898318 -2.092635 -16.912178 -11.237948 -9.374461 4.946044 -8.726176 6.741915 19.284321 -2.314177 11.592380 3.645920 -5.094584 -3.286746 -5.947156 13.899615 6.461379 -15.176466 20.191206 -1.597413 43.752942 -7.377206 16.632982 -10.411359 2.626072 -2.350614 -5.168850 -6.913102 20.925453 15.996063 8.565317 0.505282 -0.529542 -9.205347 8.040460 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.847557 0.051933 1.763355 0.567325 -0.834162 -1.632691 -0.494992 -2.211721 1.113502 0.746169 2.024393 0.171650 1.379668 -0.761077 0.299102 0.010951 1.219592 -0.492878 0.166369 -0.663993 0.028375 1.826468 0.435114 -0.190397 0.279392 -1.087825 0.569305 0.486250 0.616368 1.237570 0.419845 -0.053005 -0.579299 0.423668 -0.224667 0.667859 0.341499 0.613314 -0.759725 -0.409956 0.065512 -0.649369 1.232965 -0.063868 1.442204 -0.230016 0.711499 -0.022449 -1.118700 -0.994811 -0.439844 0.965527 -0.937363 0.659246 0.091204 -0.502283 0.351516 -0.006466 -0.093614 -1.539586 0.105350 -0.589000 -0.668188 -0.012026 -0.649843 0.362468 -0.564874 -0.566569 -0.047947 -0.900052 0.683199 0.139188 0.262835 0.346204 -1.749247 0.214808 0.426560 0.122737 0.738299 0.608910 -0.285850 -0.625419 -0.741336 -1.084740 1.249165 0.629921 0.367295 0.560487 -1.567846 0.345567 -0.025008 0.081475 0.353693 0.593861 -1.190815 0.144456 0.470238 -0.631762 -0.435263 -1.451456 0.285749 -0.877223 0.212624 0.586635 -0.204402 -0.130616 -1.330081 0.370088 -1.049249 -1.124252 0.778189 -0.702669 -0.618836 1.197072 -1.142149 -0.250864 -0.831829 0.085938 0.555597 0.810384 0.217906 0.599682 0.684083 0.850142 0.849876 -1.252186 -0.291146 0.730522 1.307513 0.401314 0.169233 -0.553501 -0.652326 0.611609 -1.308942 -2.014680 -1.074399 1.085356 1.419419 0.283765 -0.963020 0.379491 -0.651589 1.155631 1.375332 0.495440 0.259460 0.461278 -1.227527 0.468278 1.260642 -0.747656 1.210409 0.089408 -0.546493 1.112433 -0.663891 0.604735 0.187081 -0.096856 -0.213519 -0.674444 -0.151951 1.327602 0.772432 0.842121 -0.800145 0.551015 -0.538901 -1.662889 -2.464947 -0.427042 1.746113 0.833507 1.492556 -1.124557 -0.759203 0.126572 1.196517 -0.311739 -1.363670 0.420780 -0.767813 0.765808 -2.660758 -1.688794 2.602800 2.063737 1.077062 0.204888 0.821336 0.757283 -1.287708 -0.552669 -0.699678 0.811771 -0.111208 -1.755223 -0.464457 0.311499 -1.575686 -0.605293 -0.219345 0.297538 0.008765 -0.123260 1.090098 0.056941 -0.341112 -0.120353 0.702208 -0.612517 -0.841447 -0.354075 -0.010530 0.593227 0.534300 -0.516135 0.049666 0.445257 -1.349410 -0.303112 0.161609 0.832114 0.629391 2.119447 1.897151 -0.464566 0.615453 -0.417226 -1.071371 1.662095 -0.931811 0.100505 -0.218840 0.725570 0.618745 0.438801 1.243908 -0.591444 -0.830879 -1.359056 -0.461705 0.626787 1.050831 -0.852801 -1.700917 -1.885273 0.367619 0.102730 1.765218 -0.340521 2.391922 -0.795591 0.487919 -2.426190 0.162958 0.628408 -0.210204 0.826394 0.312692 -0.838601 -1.282077 -0.404277 -1.393643 -0.515235 0.016026 -0.567864 -0.513882 -1.076411 1.260187 -1.133458 0.058142 0.337244 -0.146044 1.607893 0.648821 -0.184819 -0.965671 0.556470 0.763813 0.233182 -0.829665 1.414955 0.377952 2.927826 -0.302327 0.644547 -0.550103 0.942941 -0.530698 -1.156608 -0.534915 1.533797 2.040650 0.445357 -0.137346 0.143678 -0.230023 0.979202 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/shortest-common-supersequence.cpp__main = -0.506433 1.512528 6.384515 2.407964 -1.565954 -3.099837 -1.530861 -6.167044 2.505324 1.615452 4.487495 -1.109669 1.667407 1.275762 0.235168 0.008034 1.363575 -1.190587 1.010200 -1.223515 -0.488642 4.322201 2.154504 -1.455672 -0.053511 -4.905947 1.828198 0.958652 2.788518 2.231887 0.586995 -0.452393 -0.023714 1.902457 -2.144672 0.050500 0.234724 1.332166 -2.173124 -0.119391 -0.167948 1.246005 1.927989 -0.049912 3.009014 0.949265 2.956812 -0.273167 -1.970258 -0.730642 -1.625947 4.668151 -2.108524 1.360165 0.941331 0.187286 -0.464282 -2.420926 -1.011474 -2.858684 0.100228 0.975392 -2.195286 0.624379 -3.140263 1.147081 -2.072775 -1.338581 0.862254 0.050408 2.515731 0.724957 1.066626 -0.785790 -4.277881 2.054167 -0.171586 0.795613 1.197983 -0.649112 -0.420457 1.025906 -1.647734 -2.898215 2.130483 2.363775 0.117488 -0.719864 -0.448465 -0.342160 -0.567470 -0.745756 -1.112749 3.230580 -2.804288 2.802061 -0.997507 -1.144773 -2.142031 -3.268137 -0.551995 -3.576147 1.617183 1.601036 -0.212931 0.407616 -1.016662 1.191703 -0.332516 -4.045723 0.511477 -0.343125 0.392074 3.577305 -2.905623 -0.320084 -0.781137 0.148010 -0.216850 2.505784 0.480145 1.788282 3.049424 2.526049 1.179890 -2.432241 -0.064794 1.313373 1.688002 2.005319 2.054394 -3.263571 -1.923022 0.050676 -0.019137 -5.502982 -0.420128 2.620558 2.223528 -0.198738 -2.870284 0.166703 -1.051191 3.742059 3.303859 1.919539 1.048676 0.022916 -1.370751 1.442778 5.432342 -2.067492 2.701447 -1.678814 -2.246208 3.357134 -2.566554 3.049429 0.408681 1.642464 0.489873 -3.395770 -0.652570 3.926306 1.865474 1.476939 1.672038 0.198582 0.006773 -4.661794 -4.435780 -0.452009 2.037720 -0.403984 4.494872 -2.348754 -2.320907 0.025301 2.941012 0.270543 -1.832364 0.616687 -1.699171 1.128055 -5.980325 -4.817769 4.094005 5.220810 1.145370 -0.883119 3.023943 2.029813 -2.725567 -2.711673 -2.195463 2.849214 -1.047525 -2.183269 -1.106704 0.091520 -3.953589 -0.299058 -0.565012 0.951006 2.369885 -0.868602 -0.266812 0.289820 -3.886114 -1.767013 2.099890 -2.488629 -2.444859 -0.799408 0.589106 0.407064 1.010968 -1.856201 -0.619697 2.197772 -3.164077 -0.693406 1.775147 1.929559 0.225265 5.511585 3.365655 0.715461 2.426066 0.468341 -1.930037 6.356494 -1.613403 -0.601067 -0.457785 1.247056 -1.410121 1.486319 1.459834 -1.161772 -4.228960 -2.900202 1.320261 -0.580587 1.838098 -1.630343 -3.809961 -3.179815 -0.856707 1.507277 3.936445 0.750667 6.431763 -0.809864 1.640644 -6.306501 0.358694 1.704539 -0.465460 3.076527 1.891681 -2.889489 -2.575612 -0.862154 -1.852830 -0.479423 -0.517723 -3.918844 -2.127641 -2.323263 2.200983 -1.656343 0.763042 2.164008 -0.037143 2.702864 1.336964 -1.076872 -1.572189 0.249159 3.345325 0.680237 -3.007410 3.453200 -0.702721 8.627852 -1.875477 2.176407 -2.401906 -0.051524 -0.412451 -0.953541 -0.803766 4.441378 3.733051 1.347783 -1.054162 -0.815779 -1.516911 1.369178 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 1.581458 5.212315 11.720760 2.996667 -7.016404 -7.446630 -2.643024 -13.638719 5.061964 4.196950 6.242744 -1.335982 3.360024 0.132917 -2.049769 2.902188 4.376678 0.053450 -1.594114 -4.990262 -8.661771 4.446504 -0.071140 -1.021625 4.852637 -9.240030 6.706805 0.195219 3.187191 3.050336 4.095954 0.735954 -1.907862 5.186980 0.611776 2.569320 1.074248 2.731913 -4.350406 2.388654 2.427762 -1.668146 5.079317 3.910122 5.632001 5.000631 2.226836 0.593248 -5.595964 -0.901430 -2.335756 6.061361 -3.338351 4.260399 -1.042813 1.350473 -0.304681 -5.665112 1.200062 -0.652233 -1.575670 -3.085574 -4.176191 0.497705 -5.899157 -0.013673 -3.304284 -5.500418 -1.075172 -0.254030 4.062914 0.203187 -2.076115 -0.485178 -7.128060 1.494229 3.254668 1.607641 6.079960 0.071421 -0.176815 -1.565934 -6.359834 -7.276949 7.238890 2.934464 2.545584 0.697384 -1.389566 -4.040768 -1.389861 -1.712328 3.106237 7.371433 -7.549440 0.578227 -3.503261 -4.499089 -6.828910 -10.153023 0.926469 -4.660114 3.935662 0.589961 -5.465433 2.890387 0.969452 2.444145 1.339393 -3.525685 0.443382 -3.474240 2.447622 8.929155 -0.463621 -6.232358 -2.177841 -2.394581 -0.242690 3.908186 2.285462 -1.039126 11.782943 3.822476 5.331248 -3.931908 -1.503990 1.014770 -0.319880 2.883383 4.806695 -7.204079 -4.215938 2.042574 -2.436031 -11.354257 -1.133544 -0.232140 4.984932 -3.165296 -3.473359 1.167355 -2.637451 1.482963 3.300516 1.944496 2.835408 -0.903273 -3.476995 1.123198 10.280775 -3.407441 3.126533 -5.158821 -2.980573 4.757956 -1.012139 2.302387 -0.127872 -1.734427 -0.594914 -4.435878 0.005903 7.877340 -0.683069 -2.097526 2.649845 2.422777 -5.246041 -7.091879 -9.233667 -0.244733 5.484889 0.611272 9.610769 -7.169807 -1.070493 -3.143954 8.095736 0.238815 -1.312424 2.791935 -3.743204 2.866582 -5.704040 -8.731468 10.335646 8.825148 2.849988 -3.276129 3.836735 0.600784 -8.186875 -7.269602 -5.407529 1.496693 2.789870 -5.925231 -5.091327 1.614478 -7.589512 0.120169 -0.473783 2.560097 6.538929 -1.104763 2.387769 -0.920299 -4.025317 -6.266240 4.131022 -3.026875 -1.966843 0.847528 1.779953 0.164320 4.137399 -1.820213 -3.964427 -0.430150 -3.537913 -0.408813 3.690727 6.099881 -0.352540 11.176634 7.555084 -2.265127 3.806079 0.043245 -3.712078 9.756011 -2.570545 1.256349 0.969462 3.320126 -2.008227 2.625054 6.665715 -3.075546 -5.833825 -5.607353 -0.397190 -1.585818 0.547051 -2.823588 -2.989717 -9.351006 -1.181239 -1.905514 7.352729 0.980406 10.916353 0.060218 2.362930 -9.917814 0.565337 4.842748 -1.645477 5.406159 3.937570 -6.929197 -3.792556 -2.065198 -6.804384 -3.987703 -0.013430 -0.003128 -5.424827 -0.902802 3.185058 -1.684684 1.721945 6.354022 0.327239 3.968330 -1.810748 0.793963 -3.234237 0.293055 9.898220 0.081517 -4.475478 5.327026 1.352943 15.345757 1.495190 4.241539 -2.354512 -3.593573 1.046133 -4.374650 -5.210549 6.566999 5.010474 4.548522 0.184403 -0.363810 -0.344237 7.116868 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.763868 3.421936 16.120986 9.486078 -5.292167 -7.828083 -3.550052 -11.206236 5.556421 2.629811 7.606418 -2.298899 1.967851 3.578254 -1.519610 -3.101453 2.945419 -0.668686 -1.048807 -3.635990 -4.621410 9.354170 5.619721 -9.116215 1.324119 -14.084765 7.677668 3.361042 4.108551 7.028189 0.748825 0.115256 -0.292051 5.400268 -6.571179 -1.711824 0.115964 1.728096 -4.103349 -0.606185 3.895049 4.097036 6.156187 1.012668 4.920415 4.524122 5.038456 -0.765397 -6.674533 -1.427833 -4.153310 8.442119 -3.433910 4.316743 0.692997 4.629908 1.407247 -8.428617 -1.173424 -8.715666 1.103200 3.953631 -4.139972 0.055062 -7.765470 1.149762 -2.048655 -5.296292 3.629187 -1.574068 5.350029 0.502381 0.990360 -5.772535 -7.789951 4.572731 0.320194 3.024247 3.460533 -0.423589 -2.577537 1.638814 -5.326809 -5.501437 2.668122 2.041414 0.622279 0.107758 2.890101 -4.665125 0.990312 -1.615920 -2.583257 8.024414 -5.679781 6.118418 -2.962554 -2.598525 -5.947116 -6.569871 -1.093680 -7.123974 3.724036 6.955473 -5.138867 2.914413 1.779336 2.740444 0.996468 -8.246837 0.789804 -2.454835 2.510645 7.949998 -4.213316 -4.355973 -0.154661 -0.925570 -0.506409 7.457491 -1.897638 1.809567 8.670399 5.228808 3.025656 -5.505643 1.042566 1.765173 2.424786 4.751502 5.820154 -7.869081 -3.732033 -1.372235 -0.466250 -13.177187 1.620328 2.703456 6.385655 0.392747 -9.825381 2.576452 -3.409918 8.232761 4.924258 6.176019 2.697274 -1.007728 -4.236908 2.991015 15.719581 -4.137068 5.094061 -6.378843 -8.562131 9.317700 -2.681627 7.064233 -0.100502 1.618081 3.285829 -7.513863 0.519007 10.019526 1.221991 0.507483 7.517966 0.549092 -0.022170 -12.892399 -11.141505 -0.592455 3.898664 0.879835 16.420528 -7.580919 -4.112193 -2.874971 8.299492 -1.690464 -1.772950 1.166582 -3.201012 2.428767 -16.035707 -13.178123 11.318474 11.470131 1.035727 -1.465370 7.726983 1.718090 -1.880218 -6.148375 -5.531764 4.070503 2.329119 0.692497 -0.932909 -0.302844 -7.587480 -1.238130 0.661097 2.065754 7.630696 -7.028929 -4.369333 -1.540546 -10.400518 -7.511343 4.297174 -9.135356 -2.971391 0.622951 1.548425 -0.624815 2.974327 -1.490923 -4.655649 2.410533 -4.081662 -1.419782 2.877462 5.713760 0.566589 10.623170 9.735977 0.032495 6.098422 3.554560 -3.690715 22.467056 -5.702370 -1.216132 0.263822 6.086334 -2.357054 3.844976 4.281469 -2.745958 -5.020891 -7.110505 5.198508 -2.076710 2.066059 -12.036173 -6.026419 -9.292484 -3.320450 1.096894 8.097618 1.407027 16.530982 -1.114232 1.856305 -16.706326 -0.061038 7.864191 -0.299660 6.570982 5.459839 -7.877753 -10.990285 -1.191103 -3.711079 4.667817 -1.946707 -8.827484 -5.553998 -2.746058 1.774149 -2.323181 5.192135 10.449804 -0.975698 3.954016 0.304936 -1.531862 -2.242223 -2.930258 5.024659 2.539433 -6.109431 8.836749 -1.582759 18.103614 -2.331153 6.198609 -5.960553 0.950216 -0.773797 -3.372953 -3.270793 9.323736 5.072010 3.811065 0.178676 -0.424599 -3.932079 5.166433 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.339956 1.566203 4.229460 3.864815 -3.238557 -3.177923 -1.073269 -2.221723 0.957163 0.094812 1.796556 -0.360326 0.298849 1.366210 -0.141629 -1.407953 0.977193 1.103382 -0.981648 -1.210507 -2.404960 1.466734 1.640986 -4.131464 0.655009 -1.777389 2.506263 1.971369 0.526910 1.764630 0.102047 0.104482 -0.885741 1.710615 -2.353046 -1.447093 -0.753115 0.516770 -1.463575 -0.347804 1.748201 0.530699 2.149799 0.077907 0.919402 1.923664 1.660712 0.169870 -2.935963 -0.268309 -1.299619 2.276562 -0.769500 1.975708 0.334314 1.674460 0.667309 -2.506359 -0.082113 -2.839996 0.982829 0.510305 -1.506685 -0.325253 -2.635069 -0.127017 -0.581322 -2.494683 1.584078 -0.813776 1.184629 -0.937807 -0.443239 -2.435699 -1.653918 0.579867 0.206481 1.423216 1.151233 0.700609 -0.098659 0.276672 -1.638233 -1.278911 -0.542660 -0.857857 0.471139 0.222051 0.234360 -1.907854 1.293341 -0.327165 -0.620336 1.989114 -1.488384 2.147707 -1.548730 -0.595700 -2.221941 -1.938257 0.064528 -1.447324 1.363164 1.384509 -1.954546 0.673978 0.971199 0.867547 0.806101 -2.804778 -0.268334 -0.793685 0.560004 2.095816 -0.802930 -1.546175 0.771087 -0.620998 -0.485866 2.167066 0.006243 0.280732 2.018784 1.611932 0.830889 -1.682270 0.133555 -0.104063 0.336505 1.726539 2.002629 -1.888568 -1.073534 0.003630 -0.456036 -3.552884 0.888818 1.093289 2.157464 0.723796 -2.813796 0.682015 -1.591468 1.583595 0.391992 2.808853 0.858105 -0.675337 -1.171175 0.351624 3.816699 -1.193686 1.499849 -0.784412 -2.909575 2.579762 0.221005 1.590910 0.137660 -0.079415 1.117938 -1.781836 -0.172265 2.795441 0.577968 -0.302515 2.935732 -0.181043 -1.506882 -3.801499 -2.750356 0.397479 1.383948 0.647194 4.289756 -2.499759 -1.108632 -0.913468 2.706478 -1.205333 -0.598793 0.097228 -0.394805 1.014484 -4.227556 -3.294505 2.483713 2.364722 -0.435441 -0.646895 2.372029 -0.355335 -0.335393 -2.271319 -2.282143 0.930665 0.724032 1.782367 0.248711 -0.267083 -2.696216 0.698787 1.007054 0.855500 2.364670 -2.517503 -1.545645 -0.859288 -3.102440 -2.743622 0.673152 -2.585197 -0.000371 0.736663 0.175048 -0.322149 0.604985 -0.072060 -2.433448 -0.315309 -1.086756 -0.288085 0.284601 1.667823 0.031117 3.822097 2.027899 -0.048958 1.694154 1.164392 -1.569540 7.867496 -2.160397 0.169843 0.013844 2.757534 -0.714963 0.805058 1.459112 -0.810903 -1.299294 -2.255589 0.530908 -0.631191 0.836678 -4.954673 -1.154002 -3.192355 -0.854243 0.137712 2.295812 -0.228274 4.277618 -0.157558 0.474286 -4.811922 0.068932 2.153189 -0.481457 1.740096 1.582179 -2.478926 -3.885312 -0.055410 -1.044833 2.291912 -0.412632 -1.955094 -1.557213 0.308128 -0.508379 -0.293816 1.001656 3.526785 -1.499821 0.769058 -0.284205 -0.530890 0.599238 -1.922187 1.779636 0.625221 -2.038774 3.286697 -0.054609 5.599256 0.627486 2.083440 -1.392122 -0.492712 0.062981 -1.039759 -1.431725 2.439522 1.318359 1.378637 0.388235 0.905331 -1.447164 1.098114 -PE-benchmarks/rat-in-a-maze.cpp__main = -0.021242 0.621303 1.901674 0.276960 -0.840438 -1.375895 -0.645333 -2.350275 0.694669 0.555879 1.595367 -0.412530 0.789792 0.266467 0.082849 0.233834 0.799146 -0.340518 0.358557 -0.661715 -0.679791 1.336827 0.107273 0.096127 0.328579 -1.420309 0.772399 0.412766 0.679718 0.857625 0.354519 -0.096765 -0.411603 0.547659 -0.333244 0.241730 0.383009 0.544555 -0.840097 0.385690 -0.007998 -0.167551 0.939248 -0.031988 0.924216 0.615725 0.347691 0.247756 -0.799107 -0.490274 -0.325156 1.013119 -0.612701 0.512934 0.030320 -0.285051 -0.043444 -0.501618 -0.221981 -0.347529 -0.105366 -0.333064 -0.609625 0.259341 -0.879632 0.305064 -0.755261 -0.678023 0.217899 -0.232841 0.687133 0.067370 0.009959 0.269453 -1.513804 0.402516 0.422523 0.352232 0.536456 -0.197873 0.135279 0.115415 -0.887043 -1.105683 0.876071 1.021636 0.459494 -0.100006 -0.808708 -0.098371 -0.023607 -0.037121 0.334963 0.967425 -0.799405 0.358009 -0.643860 -0.598224 -0.986456 -1.771382 0.131500 -0.841310 0.658980 0.240531 -0.408747 -0.022447 -0.308946 0.524891 -0.250227 -1.197317 0.212637 -0.482313 0.103215 1.590282 -0.577164 -0.491542 -0.683031 -0.319987 0.015309 0.712426 0.383718 0.272935 1.084623 0.912952 0.604882 -0.949508 -0.591577 0.334581 0.536629 0.534339 0.665042 -1.000892 -0.700545 0.226627 -0.833176 -1.847205 -0.565384 0.266002 0.955232 -0.503280 -0.418111 0.236148 -0.776770 0.845109 0.948813 0.549940 0.314657 -0.012950 -0.813275 0.539467 1.463475 -0.640909 0.952193 -0.555855 -0.630602 0.752455 -0.282254 0.621136 0.274707 0.018989 -0.286971 -0.769763 -0.083724 1.185174 0.445527 0.537197 0.100601 0.310702 -0.596949 -1.180055 -1.741312 0.029789 1.250924 0.037448 1.321233 -1.058600 -0.760257 0.031866 1.410032 0.083513 -0.790763 0.442045 -0.585367 0.551217 -1.594977 -1.481831 1.608173 1.734520 0.687989 -0.252305 0.747264 0.563171 -1.467992 -0.920843 -0.784060 0.869470 -0.203474 -1.484319 -0.732354 0.240058 -1.150800 -0.012425 -0.208275 0.551286 0.614712 0.058600 0.500894 0.014028 -0.885152 -0.565395 0.899768 -0.643857 -0.493470 0.036433 -0.028135 0.079153 0.534316 -0.629749 -0.209650 0.463456 -0.992278 0.084881 0.542090 0.639223 0.002514 1.928668 1.243199 -0.155303 0.730320 -0.136379 -0.724924 1.596129 -0.598750 0.219690 -0.100190 0.467140 -0.319000 0.394146 1.008764 -0.436221 -1.343354 -1.175383 -0.212183 0.059479 0.632647 -0.184123 -1.224504 -1.579351 0.021628 0.150737 1.731715 0.195575 1.993402 -0.228658 0.614854 -1.799167 0.174302 0.373396 -0.247674 0.925016 0.371370 -0.854179 -0.899715 -0.213087 -1.279392 -0.836518 -0.086210 -0.871438 -0.830667 -0.699502 0.728499 -0.376555 -0.004480 0.700196 -0.018158 0.942929 0.316193 -0.365727 -0.699182 0.177941 1.414701 -0.084780 -0.885267 1.082226 0.241429 2.948309 -0.078486 0.699085 -0.412221 -0.087982 0.069456 -0.744747 -0.499697 1.393020 1.263324 0.596688 -0.301698 -0.069721 -0.136408 0.612060 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.560464 1.218509 4.086030 2.733924 -2.538084 -2.807461 -1.142233 -2.577639 1.123175 0.432983 2.113226 -0.701221 0.511970 0.904673 -0.075542 -0.952918 0.969511 0.277582 -0.678339 -1.084051 -1.801152 1.546412 1.279909 -3.005105 0.545064 -2.485285 1.820386 1.478848 0.489097 1.414455 0.160005 0.035543 -0.672398 1.509711 -2.065022 -0.653583 0.306337 0.434885 -1.287605 -0.431993 1.138196 0.805802 1.857401 -0.285424 1.385256 1.508573 1.117845 0.079115 -2.771666 -0.528719 -0.680191 2.459598 -0.731709 1.518450 0.824132 1.390120 0.342825 -2.594852 -0.285900 -2.653720 0.715078 0.545534 -1.180580 -0.118301 -2.006131 0.094021 -0.130573 -1.823590 1.546386 -0.974015 1.065667 -0.623794 -0.079179 -1.383183 -1.336081 0.917088 0.537181 1.035584 0.925399 0.261455 -0.004934 0.259488 -1.263188 -1.320206 -0.006398 0.090898 0.618255 0.284256 -0.187966 -1.038951 1.025267 -0.577571 -0.492747 1.895544 -1.499008 1.222920 -0.861202 -0.831669 -2.398617 -1.861909 -0.008383 -1.467868 1.187838 1.700453 -1.615692 0.621961 0.369714 0.919742 0.252358 -2.417986 0.035143 -1.077811 0.694389 2.058254 -1.271265 -1.172803 0.194008 -0.531232 -0.385081 1.926886 -0.337770 0.435912 1.957900 1.533467 0.933185 -1.699028 0.012106 0.119128 0.936737 1.402233 1.682786 -2.250282 -0.846636 0.074536 -0.809314 -3.504261 0.105576 0.496072 2.073696 0.705777 -2.827105 0.719095 -1.182553 2.057025 0.496997 2.031186 0.491626 -0.386147 -1.284864 0.403687 3.301554 -1.238123 1.665686 -0.776977 -2.346442 1.900756 -0.031043 1.685808 0.489898 -0.044772 0.809782 -1.823000 -0.084816 2.549390 0.810215 0.256378 1.500937 0.056033 -1.010827 -3.535021 -3.115833 0.362819 1.219526 0.040598 4.109482 -2.377417 -1.734760 -0.922619 3.083155 -1.206139 -0.790352 0.213078 -0.739737 0.990641 -3.513102 -3.379019 2.775167 3.036685 0.156669 -0.348465 2.663963 -0.242404 -1.011772 -1.562912 -1.770867 0.999205 0.664647 0.660944 -0.005871 -0.149338 -2.441307 0.223792 0.333040 0.800705 1.649554 -1.452350 -0.882436 -0.330497 -2.661287 -1.788106 0.685027 -2.169058 -0.254345 0.388480 0.393013 -0.051508 0.917312 -0.763477 -2.038100 0.184716 -1.394259 -0.221175 0.591950 1.650127 0.338506 3.721753 2.177896 -0.029217 2.190244 0.624845 -1.296290 6.113332 -1.753384 0.035585 -0.106653 1.978320 -0.531080 0.685203 1.598555 -0.822110 -1.321739 -2.103806 0.511046 -0.650535 0.816435 -3.708303 -1.808375 -3.037374 -0.794042 0.270541 2.107194 -0.043722 4.039172 -0.072339 0.401095 -4.780573 0.018605 1.920830 -0.422311 1.296194 1.370958 -2.159756 -4.069337 -0.008983 -1.300030 0.781419 -0.351368 -2.140275 -1.301089 -0.708802 0.761624 -0.424344 0.881655 3.113199 -0.451640 0.927243 0.388566 -0.489558 0.067295 -1.351589 1.573248 0.330679 -1.699364 2.958344 0.094055 5.495751 -0.054409 1.772107 -1.307644 0.024561 0.176054 -1.011242 -1.143983 2.272657 1.554408 1.160221 -0.062818 0.455000 -1.625887 1.347167 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -0.749827 0.974913 4.635606 3.208733 -2.730461 -2.429367 -1.337333 -2.703241 1.176272 0.493460 2.813793 -0.531273 0.542387 0.897403 -0.060583 -1.229902 1.089831 -0.147895 -0.762635 -1.422572 -1.273848 2.088058 2.149532 -3.932621 0.756496 -2.455191 2.215739 1.580925 0.601384 2.137416 -0.330382 -0.105428 -0.361474 1.954092 -2.344320 -0.908314 -0.140636 1.080011 -1.332202 0.056412 1.860208 1.249691 2.136415 -0.695750 1.581931 2.254825 1.554212 -0.092612 -3.338952 -0.735501 -0.413254 1.879747 -1.608134 2.050644 -0.273639 1.541810 0.011309 -2.540333 -0.858860 -3.740082 0.931722 1.090746 -1.172076 -0.218126 -2.425055 0.202782 0.380246 -2.537072 1.693967 -1.020348 1.405508 -0.050858 -0.374593 -1.779970 -1.243634 1.223367 1.089423 1.501345 0.748377 -0.302160 -0.082508 0.139387 -1.288519 -1.397425 -0.179146 -0.036948 1.135789 0.163602 0.636570 -0.907686 1.589801 0.207496 -0.806357 2.389202 -1.293864 1.476704 -1.261818 -0.927657 -2.285292 -1.331997 -0.216841 -1.982182 1.764312 2.302375 -2.393028 1.265970 0.624390 1.641219 0.222676 -2.827022 -0.614551 -0.677376 0.762704 2.362253 -1.084052 -1.539904 0.223350 -0.303691 -0.122402 1.993929 -0.513425 0.627558 3.007774 1.995633 1.105717 -2.517171 -0.006866 -0.367132 1.167199 1.940227 2.377705 -1.934626 -1.458049 -0.393532 -1.127949 -3.974484 0.072406 0.412350 2.662150 -0.409960 -3.575251 1.648784 -1.865305 2.960062 1.474776 2.193051 0.922953 -0.388102 -1.919226 0.886015 4.078929 -1.348086 1.769866 -1.347231 -2.847644 2.680396 0.299973 1.902092 0.475679 -0.084295 0.774986 -2.683411 0.191176 3.079480 1.087390 0.853460 1.655404 -0.018111 -0.337209 -3.900177 -3.312433 -0.448380 1.128058 0.804247 4.919861 -2.591684 -1.739355 -1.079393 2.462130 -0.942296 -0.974190 -0.149431 -0.799683 1.176379 -4.719878 -3.880478 3.389149 3.895639 0.634966 0.372243 3.062797 -0.476631 -0.283769 -1.554647 -1.615858 1.686307 0.990685 0.881129 -0.204206 0.243028 -2.595829 -0.202665 0.544360 1.031851 1.467997 -2.051174 -1.815932 0.103610 -3.259121 -1.994306 0.522703 -2.869558 -0.432735 0.640480 0.157972 0.193529 0.746083 -0.950426 -2.055090 -0.376276 -1.750071 -0.170844 0.511045 2.328537 0.442814 2.802580 2.833505 -0.572286 1.965840 0.895038 -1.676980 6.430415 -2.089709 0.036173 0.105931 2.519225 -0.508827 0.900262 1.851997 -0.926891 -0.729019 -2.644749 1.042108 0.005995 1.044048 -4.572844 -1.696624 -2.780430 -0.469859 0.521904 2.766676 0.006845 5.001191 -0.119329 0.838298 -5.726918 -0.157750 1.780662 0.087195 1.756622 1.813562 -2.380440 -5.259961 -0.127221 -1.564668 1.228849 -0.723459 -2.091379 -1.934642 -0.069502 0.516668 -0.518703 1.016049 3.463976 -0.805281 1.553007 0.293269 -0.772635 0.180193 -1.916749 1.675053 1.089853 -1.915077 2.672995 0.168472 6.362588 0.072119 2.346776 -1.874174 0.070888 0.274907 -1.216568 -1.537392 3.086527 2.005303 1.341852 0.487477 -0.092680 -1.390186 1.692607 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = -0.253450 1.529307 5.248883 2.588690 -2.841264 -3.329555 -1.801306 -4.760319 1.740265 1.018480 3.654956 -0.856116 1.349128 0.858672 -0.016023 -0.296985 1.932735 -0.288730 0.038462 -1.774988 -2.070216 3.173476 1.274165 -2.325695 0.855045 -3.290473 2.370621 1.626539 1.385647 2.192377 0.709242 0.036495 -0.691758 1.921219 -2.007282 -0.307439 0.149878 1.313493 -2.256730 0.475674 1.186275 0.647466 2.704396 -0.117491 2.022214 1.934648 1.440886 0.300838 -3.044220 -0.840359 -1.085058 3.043946 -1.527557 1.681582 0.024711 0.703546 0.262739 -2.424713 -0.732124 -2.174147 0.269656 0.366456 -1.783424 0.264666 -2.572750 0.491364 -1.107518 -2.212047 1.333507 -0.543923 1.723994 -0.149151 -0.320363 -1.012287 -2.904128 1.270055 1.015301 1.341535 1.472133 -0.088092 0.255708 0.389229 -1.928039 -2.373589 1.364132 1.162805 1.101409 0.010250 -0.675626 -1.182389 0.541863 -0.062036 0.123063 2.591810 -1.996524 1.532907 -1.603011 -1.514901 -2.696511 -2.960549 0.097953 -2.273732 1.817077 1.575399 -1.899215 0.682950 -0.110994 1.385770 -0.205240 -3.126338 -0.124497 -1.264013 0.424485 3.880351 -1.399537 -1.770040 -0.813935 -0.593784 -0.303456 2.278150 0.431360 0.735815 3.121804 2.354532 1.267570 -2.544541 -0.650564 0.268581 1.187781 1.834852 2.309206 -2.424935 -1.883299 -0.016321 -1.338109 -4.777053 -0.628826 0.488112 2.455195 -0.558988 -2.399925 0.936036 -1.990074 2.663306 1.794198 2.107259 1.050142 -0.368149 -2.049582 1.276371 4.317788 -1.639684 2.273231 -1.405315 -2.785168 2.548147 -0.375232 1.990715 0.524435 -0.257160 0.127854 -2.439650 -0.011121 3.362822 0.793254 0.754376 1.318487 0.370858 -0.926874 -3.629062 -4.428873 0.349659 2.184162 0.496456 4.787733 -2.823256 -2.052798 -0.538219 3.389773 -0.371054 -1.447941 0.694087 -1.231370 1.431888 -4.848111 -4.273696 4.172717 4.085795 1.024568 -0.546610 2.810596 0.501343 -2.331369 -2.502217 -2.200851 2.146862 0.639574 -1.160773 -0.755460 0.502237 -2.928793 0.008549 0.123712 1.308158 1.802338 -1.432409 -0.258557 -0.351634 -3.223165 -1.829791 1.770205 -2.526525 -0.828263 0.386477 -0.067065 -0.084769 1.377488 -1.253863 -1.680619 0.203960 -2.180637 -0.227814 0.862247 2.403541 0.157207 4.284112 3.564880 -0.354145 2.494799 0.499247 -1.962972 6.149690 -2.093780 0.263667 -0.139493 1.949174 -0.797775 0.877524 2.348224 -1.091499 -2.506064 -3.079242 0.485333 -0.018193 1.396784 -3.135512 -2.302621 -3.817450 -0.494942 0.504929 3.853632 0.281689 5.607491 -0.562821 0.955276 -5.528265 0.224085 1.856672 -0.334637 2.513532 1.598949 -2.727450 -3.967832 -0.521031 -2.670956 0.141980 -0.356397 -2.564876 -2.475344 -1.101211 1.573193 -0.992537 0.842358 3.452790 -0.817412 1.903233 0.464083 -0.973274 -0.698489 -0.925589 2.745844 0.471375 -2.421561 3.339498 0.059221 7.717684 -0.055224 2.363097 -1.749861 -0.213402 0.212797 -1.703027 -1.584953 3.625229 2.782800 1.555526 -0.076453 0.142339 -1.126109 1.790378 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = -0.450505 0.911709 3.267889 1.822723 -1.509613 -2.334287 -0.844275 -2.591734 1.255882 0.590844 2.233253 -0.150867 1.259522 0.254622 0.023703 -0.454824 1.456293 -0.213425 0.017373 -1.052134 -0.852606 2.541336 0.984527 -1.689770 0.443678 -2.307349 1.714155 1.016180 0.983859 1.991933 0.325255 0.121256 -0.338225 1.158021 -1.268800 -0.364624 -0.133276 0.818730 -1.198248 -0.104061 0.812361 0.275065 1.915852 0.228743 1.067330 1.103233 1.147797 0.082344 -1.572664 -0.804109 -1.020578 1.493543 -1.037085 1.244496 -0.354275 0.354764 0.733571 -1.099408 -0.181435 -1.972541 0.277518 0.248488 -1.120182 -0.068766 -1.805312 0.290412 -0.793365 -1.451991 0.488019 -0.624957 1.154532 0.149409 0.112923 -1.031977 -2.341250 0.750020 0.337583 0.808413 0.991287 0.319301 -0.569045 0.029296 -1.477809 -1.616936 0.954089 0.530338 0.597077 0.380595 -0.660834 -0.893827 0.118419 0.119930 -0.149167 1.527580 -1.100064 1.179818 -0.492370 -0.722107 -1.242689 -1.757958 -0.031212 -1.486098 0.705660 1.123239 -0.798731 0.234144 -0.527430 0.574245 -0.312721 -1.912207 0.460205 -0.871071 -0.434273 2.003582 -1.010124 -0.877342 -0.506214 -0.154192 0.282387 1.733945 -0.047820 0.533108 1.742326 1.336175 0.757289 -1.608137 0.022077 0.380857 0.970049 0.915272 1.341931 -1.335890 -1.239117 0.150060 -0.907014 -3.077680 -0.262860 1.165492 1.790137 -0.161234 -2.015412 1.125824 -1.289739 1.648478 1.637176 1.306082 0.835634 -0.056383 -1.315296 0.843981 3.026030 -1.181095 1.530636 -1.038613 -1.776008 2.398324 -0.463696 1.338831 -0.055734 -0.036535 0.104080 -1.412865 0.210193 2.372018 0.645305 0.598756 1.138140 0.100726 -0.330356 -2.628978 -2.937846 -0.234837 1.673172 0.792082 3.388424 -1.795551 -0.752051 -0.297906 1.630296 -0.492843 -1.070941 0.288301 -0.676163 0.812006 -4.221899 -2.814934 3.152262 2.487612 0.505464 -0.070370 1.505836 0.584155 -0.608081 -1.518593 -1.346424 1.308701 0.178429 -0.646185 -0.303073 0.296715 -2.161291 -0.202816 0.134398 0.589022 1.352450 -1.332529 -0.178636 -0.702470 -2.078749 -1.492736 0.925723 -1.798255 -0.863238 0.191904 -0.061615 0.039928 0.658385 -0.184901 -0.847269 0.344217 -1.383028 -0.543159 0.251665 1.463562 0.312914 2.593103 2.485336 -0.294716 0.935493 0.444778 -1.363303 4.401545 -1.563593 -0.062128 -0.130828 1.743508 0.024194 0.913119 1.463738 -0.657082 -1.276260 -2.157736 0.667032 0.297453 0.779845 -2.521134 -1.464699 -2.523344 -0.233753 0.218711 2.835437 -0.177884 3.844330 -0.635066 0.563538 -3.758491 0.216555 1.199668 -0.076345 1.414421 1.138638 -1.728007 -2.034437 -0.450553 -1.567044 0.565760 -0.236811 -1.656637 -1.361474 -0.546475 0.488064 -1.150373 0.657475 2.033825 -0.715813 1.473988 0.324596 -0.479801 -0.827451 -0.400303 1.547680 0.532270 -1.287113 2.115859 -0.107452 4.218190 -0.235485 1.602559 -1.192569 0.429767 -0.197827 -1.452766 -1.048491 2.505658 1.741197 0.684781 0.459307 0.070430 -0.329956 1.439277 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = -0.796021 2.828986 13.333549 6.233072 -5.039347 -8.523344 -3.764288 -11.661866 5.542386 2.291730 8.808247 -1.519273 3.134630 1.988929 0.230406 -0.575978 3.026163 -1.431646 -0.385924 -3.178101 -3.338652 9.661887 4.009368 -5.552512 1.161423 -10.985711 4.145181 3.553092 4.911662 5.637096 0.658792 -0.562904 -0.709245 4.031659 -5.516771 -0.229406 0.344136 1.802622 -5.031212 -0.928619 2.261301 1.929027 5.860415 -0.330147 5.523863 2.086944 5.228112 -0.441613 -5.451589 -2.231363 -4.397765 9.812117 -3.512471 3.792366 0.946853 2.567628 0.101431 -6.156568 -1.976300 -6.271893 0.541921 2.232611 -4.777197 -0.047106 -6.121132 1.755540 -2.605416 -3.688783 3.177323 -2.473900 5.051973 0.010010 0.738769 -3.164279 -8.701644 3.260697 0.251624 2.740662 2.680719 0.359153 -0.919801 1.285666 -4.165717 -5.138913 3.791789 3.335561 0.885863 -0.336573 -2.143065 -2.109175 -0.203429 -0.983283 -1.321008 5.983788 -6.734422 4.522625 -2.395168 -2.795295 -5.652244 -6.150243 -0.348147 -6.294984 3.038102 4.040680 -2.090564 1.476969 0.157070 2.278454 -0.536763 -8.523792 0.664664 -1.449935 -0.060490 8.213885 -5.123728 -2.294752 -0.609116 -0.366419 -1.718668 5.972170 0.062955 3.020925 6.756371 5.253613 3.397806 -5.581771 -0.222682 2.420061 4.483615 4.230600 4.473354 -6.410053 -3.584757 0.180269 -1.409252 -12.851095 -0.806257 4.306273 6.693464 1.153735 -7.308458 1.659174 -2.932493 7.691572 4.827624 3.932595 2.353686 -0.289650 -4.719531 3.038807 12.927124 -4.238161 6.019941 -4.285369 -6.045558 7.802625 -3.568559 5.958449 0.933006 1.905413 1.774217 -6.634354 -0.629735 8.623574 2.474409 2.520139 3.334601 0.729542 -1.468589 -11.006134 -11.351520 -1.090419 4.509334 0.173453 11.833096 -6.340130 -5.197790 -1.556975 8.456405 -2.248284 -3.508352 1.764360 -4.261684 3.083454 -13.344677 -11.028056 11.053195 12.030405 1.772371 -0.334674 8.185224 3.177618 -4.860801 -4.833487 -5.242351 5.102240 1.784356 -3.168942 -1.064984 -0.541805 -7.898208 -1.039653 -0.294484 1.994195 3.443864 -2.415411 0.055296 -0.214625 -8.497599 -4.561833 4.515993 -7.150384 -2.837120 -0.312941 0.875874 -0.718094 3.237565 -3.200468 -2.999364 3.113305 -5.533077 -0.549511 2.772191 4.313335 1.223841 10.809019 8.928569 0.216812 7.404704 1.215350 -4.394481 15.973666 -5.325519 -0.948561 -0.891064 4.389182 -2.058728 3.506464 3.618547 -2.597978 -6.212698 -6.981002 3.010746 -1.367540 3.439136 -6.370938 -7.624202 -8.743666 -2.550109 2.292520 8.441234 0.753435 14.295305 -2.362090 2.566603 -16.184451 0.531392 5.401336 -0.532319 5.542861 3.787916 -5.892477 -9.889053 -1.046948 -4.053974 0.284534 -1.281123 -8.816088 -4.949840 -5.652212 4.928392 -4.317781 2.768249 7.193261 -0.484360 5.540592 0.973895 -2.150650 -2.969699 -0.955192 5.550553 1.945810 -5.667288 8.132594 -0.821903 18.043358 -2.760329 5.942197 -4.966972 1.537558 -1.176848 -4.260270 -2.518814 8.823305 7.186355 2.811908 -1.313037 -0.553704 -3.951775 3.865894 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.274046 0.874659 2.959245 2.241357 -2.239649 -1.719977 -0.905606 -1.842402 0.560410 0.144939 1.675301 -0.667407 0.199533 0.537502 -0.257208 -0.971609 0.858608 0.139142 -0.573763 -1.102920 -1.448076 0.961573 0.969677 -2.644139 0.736219 -1.401454 1.872205 1.211685 0.156617 1.262896 -0.165497 -0.076876 -0.417602 1.361392 -1.426396 -0.804189 0.086517 0.651206 -1.034615 0.322077 1.306839 0.732138 1.655510 -0.650422 0.750109 1.962872 0.675286 0.215045 -2.571674 -0.367932 0.064028 0.786762 -0.833151 1.449804 -0.087728 0.854968 0.214638 -1.848727 -0.460687 -1.924961 0.575960 0.409128 -0.555099 -0.058644 -1.758039 -0.070453 0.326781 -2.043172 1.406135 -0.714913 0.637653 -0.092279 -0.502817 -1.131291 -0.433922 0.875839 1.259997 1.151196 0.498188 -0.253794 0.543011 0.091236 -1.122145 -0.849015 -0.389877 -0.062789 1.163206 0.160761 0.453343 -0.916021 1.586535 0.122180 -0.217230 1.518343 -0.439667 0.623217 -1.453797 -0.743705 -1.955234 -1.457507 -0.079788 -0.985250 1.451209 1.509121 -2.231926 1.036469 0.916708 1.271597 0.512829 -1.759275 -0.649338 -0.785414 1.122949 1.923602 -0.324150 -1.562854 -0.207057 -0.477048 -0.203958 1.187984 -0.432397 0.075445 2.198710 1.352619 0.802547 -1.716908 -0.287287 -0.574577 0.364214 1.267907 1.829778 -1.378907 -0.931674 -0.328479 -1.033094 -2.574304 -0.096893 -0.545110 1.822071 -0.645816 -2.188594 1.280586 -1.509716 1.804446 0.585561 1.444661 0.596249 -0.375916 -1.248161 0.606522 2.224652 -0.766043 0.945849 -1.163531 -2.073899 1.303945 1.022926 0.933933 0.313939 -0.447737 0.359129 -1.640118 0.492583 1.882670 0.463929 0.204798 1.181793 0.034752 -0.536542 -2.382945 -2.056967 0.316109 0.718507 0.515587 3.377189 -1.999820 -1.188263 -0.872090 1.765174 -0.589330 -0.472254 -0.017982 -0.541697 0.823518 -2.622646 -2.619780 2.009284 2.296744 0.366037 0.153464 1.824464 -0.850663 -0.377226 -1.085471 -1.209294 0.978889 0.828968 0.437551 -0.327423 0.330487 -1.558989 0.121516 0.572090 0.911711 1.440221 -1.576620 -1.377543 -0.442039 -2.162171 -1.665735 0.526195 -1.778823 0.178292 0.818725 -0.036016 0.194782 0.804364 -0.549346 -1.725447 -0.788085 -0.951822 -0.010436 0.214391 1.779431 -0.026872 1.908730 1.780547 -0.505966 1.330623 0.654620 -1.130792 4.358540 -1.387680 0.334390 0.158521 1.748223 -0.367588 0.510733 1.649278 -0.653392 -0.337848 -1.811680 0.341417 -0.053831 0.493641 -3.401357 -0.762781 -2.281485 -0.307954 -0.009392 1.807755 0.185287 3.085712 0.128167 0.345405 -3.429339 -0.234191 1.084555 0.123778 1.252792 1.142710 -1.751916 -3.468556 0.081202 -1.478361 0.663772 -0.553636 -1.075529 -1.422708 0.476999 0.153212 0.253309 0.589421 2.663952 -0.568513 0.699817 0.062826 -0.472516 0.352839 -1.702791 1.295580 0.468410 -1.137537 1.724701 0.390740 4.214693 0.643747 1.371347 -1.130599 -0.350634 0.603569 -0.999764 -1.275622 1.820171 1.010598 0.975717 0.417588 0.049624 -0.852202 1.336275 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.112824 0.889438 2.209455 1.707239 -1.195083 -1.740319 -0.540834 -1.691633 0.770422 0.140907 1.125525 -0.261069 0.681652 0.318205 -0.139182 -0.217259 1.001086 0.359531 -0.015610 -0.699201 -1.009631 1.857631 0.535464 -1.541820 0.327782 -1.463387 1.350364 0.893652 0.841983 1.314416 0.152361 0.107831 -0.069873 0.842960 -1.148495 -0.691752 -0.372088 0.521322 -1.173699 0.037532 0.497210 0.180472 1.397058 0.083573 0.294652 0.924188 0.977393 0.184140 -1.065637 -0.217466 -0.957531 1.161853 -0.432877 0.994518 -0.414137 0.177965 0.655294 -0.776938 -0.089938 -0.994095 0.130823 0.299509 -0.789664 -0.112199 -1.508284 0.106465 -0.591897 -1.316695 0.509066 0.062979 0.754988 0.168332 0.028325 -1.190214 -1.760411 0.577502 0.298821 0.802491 0.654590 0.247544 0.024253 0.175376 -1.174946 -1.047521 0.569440 0.226486 0.501006 0.224664 -0.194456 -1.113171 0.187940 0.056594 -0.090256 0.984855 -0.470689 1.088318 -0.906393 -0.323943 -0.996009 -1.474148 -0.159235 -0.904508 0.565214 0.591347 -0.439081 0.445258 0.303474 0.491145 0.169376 -1.448201 0.114583 -0.571655 -0.284472 1.602579 -0.285370 -0.822751 -0.113829 -0.111202 -0.266355 1.226171 -0.059948 0.327314 1.248669 0.944354 0.396602 -0.966608 0.044348 0.112557 0.297208 0.759480 1.186041 -0.944059 -0.929756 -0.086651 -0.360690 -2.129998 0.074152 0.780360 1.139003 -0.383577 -1.271365 0.798242 -0.908193 1.095965 0.808462 0.858166 0.666725 -0.233140 -0.703365 0.713550 2.260350 -0.793366 0.888103 -1.031141 -1.378037 1.699317 0.049611 0.838365 -0.271811 -0.155790 0.213929 -0.916834 0.330132 1.622031 0.240922 -0.058613 1.326233 -0.062197 -0.491624 -1.900701 -1.747965 0.157941 0.981764 0.370131 2.698784 -1.200613 -0.601913 -0.260526 0.868845 -0.382573 -0.372096 0.253990 -0.574142 0.563378 -2.948398 -2.081502 2.027514 1.260015 0.070129 -0.212022 1.026227 0.307419 -0.279813 -1.399293 -0.975534 0.772679 0.344260 -0.355579 -0.367926 0.232274 -1.497430 0.133472 0.357175 0.438445 1.260555 -0.978758 -0.372272 -1.044510 -1.858431 -1.353549 0.800690 -1.472140 -0.226289 0.409268 -0.088221 -0.151514 0.588434 0.012339 -0.783510 0.018709 -0.697943 -0.334180 -0.063215 1.047407 -0.049179 1.695701 1.879577 -0.030296 0.914785 0.651261 -1.032094 3.605031 -1.079213 0.033442 -0.070006 1.221891 -0.305814 0.661483 1.067268 -0.401528 -0.914324 -1.565252 0.510816 0.136917 0.311216 -2.063046 -0.599594 -1.714833 -0.402870 0.067828 1.890651 -0.036355 2.527763 -0.550579 0.272695 -2.642124 0.173199 0.786339 0.022569 1.219569 0.874648 -1.318409 -1.320169 -0.231030 -0.987017 0.577034 -0.358218 -1.426932 -1.034921 -0.049376 -0.132350 -0.627339 0.535864 1.924034 -0.703135 0.829613 -0.255874 -0.333464 -0.405597 -0.510818 1.224257 0.322675 -0.879966 1.376870 -0.174494 3.054787 0.135318 1.081997 -0.964947 -0.102544 0.069084 -1.060819 -0.778271 1.672407 0.806724 0.432062 0.548934 0.168777 -0.181245 1.008012 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -1.717953 2.893138 11.463576 7.703289 -5.158680 -5.440475 -2.961521 -5.676118 2.758352 1.425977 6.085295 -1.057613 1.776886 3.193178 0.125137 -2.638652 2.998964 -0.431713 -0.667034 -2.773286 -2.630408 5.862294 5.058595 -9.016051 0.871621 -7.009824 5.623207 3.526707 1.784169 5.421539 0.140054 0.514090 -0.302016 4.473733 -5.897868 -2.699508 -0.712993 2.665756 -2.646139 -0.416025 3.918249 3.423225 4.549342 -0.076532 2.795928 4.840586 4.209409 -0.337495 -6.183999 -1.295846 -3.017288 5.537367 -3.462727 4.013580 -0.608087 3.770707 1.245357 -6.179213 -1.610733 -8.667529 1.961402 3.367358 -3.365516 -0.423106 -5.647770 0.820732 -0.358228 -4.882773 3.329511 -0.462224 3.745219 -0.004628 0.420809 -4.938126 -4.372943 3.098403 0.506437 3.091188 2.322945 -0.661807 -1.929885 1.476648 -3.103119 -4.120665 0.449912 0.079775 1.505776 -0.100772 1.987844 -2.713428 1.265659 -0.019413 -2.938859 5.963075 -2.883866 5.111323 -2.075493 -1.628541 -4.567943 -2.292851 -1.010558 -5.456243 2.949112 5.747232 -3.787675 1.777995 -0.194668 2.510110 -0.057527 -6.391940 -0.208547 -2.096982 0.012063 4.630858 -3.122218 -2.447809 1.108793 -0.416603 0.547978 5.654334 -1.139560 1.943984 6.203959 4.446188 1.391420 -4.783135 0.981983 -0.034968 2.621537 4.037396 5.254847 -5.215884 -3.615944 -1.233031 -1.043035 -8.800449 1.741952 2.728802 4.745795 -0.171400 -8.658389 3.446990 -3.711884 6.253385 4.002117 6.048270 2.263360 -0.801889 -3.349136 2.161029 10.732988 -3.709406 4.543001 -3.043272 -6.519220 7.584281 -1.101425 5.247372 0.594719 0.715607 2.145066 -6.021823 -0.352658 7.692676 2.663745 1.786155 6.044016 -0.717143 0.320880 -9.153042 -7.535899 -0.902691 2.912376 1.189934 12.277168 -5.440300 -3.297850 -1.787436 5.140982 -1.982390 -2.120532 -0.458046 -0.851085 2.174006 -12.437034 -9.099413 7.867515 6.891722 -0.086533 -0.297276 6.675674 0.284258 -0.149779 -4.823168 -3.905998 4.176951 1.062416 3.286242 0.530871 0.602318 -6.280360 -0.087305 0.929924 1.813306 4.570803 -5.529442 -4.461956 -0.186738 -8.593906 -4.619626 1.380713 -7.165743 -2.713805 0.810281 0.504137 -0.125807 1.106171 -0.931893 -4.295626 0.643047 -3.903900 -1.762295 1.408080 4.917720 1.051929 6.939735 6.710193 -0.030334 3.510261 2.960665 -3.391588 16.049532 -4.517175 -1.035176 0.106336 5.706619 -1.353358 2.368305 3.485723 -1.758001 -3.444793 -6.357989 4.118316 -0.621652 2.127329 -10.648554 -3.202638 -5.682244 -1.822144 2.063726 7.185059 -0.430840 12.285896 -0.229013 1.469190 -12.826155 0.123539 4.593422 -0.183455 4.100262 4.678739 -5.693154 -9.764147 -0.959556 -2.586779 4.459763 -1.114808 -5.906973 -4.575538 -0.808811 0.358438 -2.292025 2.910000 8.621481 -2.426601 3.124363 1.104618 -1.900399 -0.138459 -3.440103 3.906982 2.713570 -4.605551 7.386397 -1.379927 14.035019 -1.194684 5.568009 -4.662999 0.180378 0.147708 -1.967452 -2.838722 7.653823 3.852938 2.778265 1.694303 0.215152 -2.965469 3.967478 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = -0.106436 1.120750 3.455159 2.238657 -1.686811 -2.240474 -0.799562 -2.343758 0.896841 0.455639 1.809138 -0.628642 0.716825 0.581641 -0.113951 -0.594669 0.867146 0.455003 -0.054632 -0.854697 -1.449435 1.876221 1.167967 -2.014872 0.403354 -2.159654 1.848657 1.155300 1.027733 1.544315 0.201546 0.121917 -0.288366 1.197522 -1.635786 -0.604908 -0.535406 0.640830 -1.169007 0.140743 0.745859 0.566438 1.314421 -0.022342 0.844284 1.407333 1.252980 0.036463 -1.790976 -0.439566 -0.805115 1.853347 -0.723780 1.039967 0.112688 0.668704 0.272204 -1.531707 -0.165747 -1.830302 0.587527 0.448772 -1.282065 0.170815 -2.155212 0.173401 -1.036054 -1.505714 0.964908 -0.238484 0.900691 -0.153847 -0.167715 -1.452045 -1.683054 0.831658 0.351666 0.798079 0.841549 0.091463 -0.107981 0.464077 -1.247524 -1.351779 0.457238 0.225743 0.489983 -0.010453 -0.025036 -1.269675 0.464249 -0.135744 -0.290183 1.583775 -1.173618 1.377086 -1.181787 -0.547214 -1.563217 -1.838591 -0.117143 -1.462904 0.961241 1.195071 -1.054598 0.434714 0.220848 0.678157 0.396975 -2.210233 -0.262935 -0.756475 0.514709 2.124358 -0.907063 -0.883090 -0.283922 -0.231182 -0.218100 1.670085 0.053824 0.414628 1.921793 1.188708 0.556803 -1.318603 0.049826 0.274535 0.329866 1.122288 1.418179 -1.695610 -1.069830 -0.226259 -0.317973 -2.949654 0.136254 0.669946 1.203618 0.040540 -1.862333 0.762888 -1.000605 1.464919 0.963464 1.361510 0.665434 -0.339449 -0.756929 0.633749 3.037695 -1.121669 1.101724 -0.927378 -2.345791 2.203603 -0.180050 1.288452 0.179024 0.106726 0.534859 -1.497961 0.154091 2.252886 0.315996 0.200645 1.850688 -0.062317 -0.298118 -2.600990 -2.315048 0.512528 0.968738 0.215898 3.390044 -1.665076 -0.754449 -0.365018 1.953446 -0.325876 -0.560165 0.070848 -0.560474 0.629840 -3.449598 -2.832289 2.072398 2.045097 0.059516 -0.510709 1.678850 0.440742 -0.673870 -1.508383 -1.637575 1.128156 0.137698 0.180382 -0.200242 0.123868 -2.124814 0.397885 0.255885 0.613495 1.714418 -1.479895 -1.034059 -0.873213 -2.512951 -1.715854 0.903730 -1.798167 -0.225166 0.091110 0.080857 -0.113405 0.660848 -0.596552 -1.222252 0.102024 -1.090433 -0.315233 0.388674 1.318195 0.062738 3.003908 1.867885 0.009266 1.060009 0.648823 -1.083176 5.078460 -1.115716 -0.045110 -0.084981 1.671403 -0.571901 0.772153 1.165697 -0.585302 -1.548330 -1.862014 0.525206 -0.125164 0.421918 -2.629399 -1.049667 -2.433677 -0.706095 0.231215 2.290411 0.271330 3.546675 -0.296382 0.398492 -3.390910 0.133320 1.219497 -0.390212 1.803865 1.140288 -1.803312 -2.128633 -0.367479 -1.000836 0.997857 -0.346175 -1.846175 -1.349755 -0.116309 0.194007 -0.416228 0.814664 2.228812 -0.485308 0.800026 0.367899 -0.401514 -0.241999 -0.734002 1.543377 0.473990 -1.530466 2.139105 -0.142357 4.221325 -0.091345 1.491328 -1.271166 -0.288176 0.107986 -0.926214 -0.934526 2.043594 1.388067 0.914043 0.154235 0.355577 -0.787019 1.040862 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = -0.621487 1.433185 6.779310 2.918144 -1.863989 -3.514119 -1.423652 -5.114137 2.059204 1.254056 4.338862 -0.556497 1.745121 1.659831 0.355726 -0.625890 1.836263 -1.095419 0.492510 -1.373104 -0.782431 4.311251 1.714975 -2.871164 0.194287 -5.562786 3.031326 1.521517 1.715366 3.104420 0.685354 0.130319 -0.271982 1.856917 -2.511097 -0.704798 0.404756 1.280582 -1.509938 -0.391668 1.192382 1.535765 2.164364 0.325184 2.317360 1.645602 2.963003 -0.118756 -1.704434 -0.993467 -2.539813 3.842644 -1.910222 1.561192 -0.245263 1.171649 0.611551 -2.822183 -0.863546 -3.895344 0.610458 1.501905 -2.358693 0.040775 -3.008490 1.011226 -1.136636 -1.549493 1.086840 -0.136739 2.446074 0.145814 0.924753 -1.797868 -4.468755 1.570047 -0.649703 1.102357 1.280518 -0.659860 -1.608673 0.827274 -2.164570 -2.652658 1.767643 1.883432 0.227607 -0.560158 -0.073774 -0.541488 -0.895411 -0.287261 -1.464651 3.277748 -2.538905 2.822210 -0.836084 -0.829789 -2.167404 -2.175102 -0.253830 -3.455284 1.215972 2.855732 -0.894864 0.350170 -0.859676 0.873832 -0.746966 -3.759817 0.587538 -1.075812 -0.230208 2.927528 -2.451875 -0.791049 -0.229951 -0.185425 0.634248 3.113441 -0.466062 1.502764 3.289686 2.481823 0.909925 -2.496701 0.189617 1.298257 2.081401 1.919677 2.106629 -3.530588 -1.848461 -0.300502 -0.656571 -5.551862 0.552185 2.435936 2.673606 -0.305465 -4.309638 1.387026 -1.643450 3.764016 3.416645 3.007405 1.088319 0.191924 -1.787383 1.355245 6.482900 -2.016466 2.918440 -2.206412 -2.429572 4.098532 -1.770435 3.000740 0.441319 1.413554 0.540660 -3.275748 -0.675645 4.254059 2.037947 1.736185 2.969159 0.110158 0.252522 -5.038625 -4.739170 -1.062284 2.501176 0.209403 6.282015 -3.036307 -1.925365 -0.403391 3.074435 -0.805357 -1.941358 0.410867 -1.072933 1.101125 -7.029709 -5.146599 4.875571 4.442571 0.344640 -0.492783 3.580539 1.480345 -1.614055 -2.410864 -2.254833 2.751541 -0.235570 -0.526344 0.075156 0.051136 -4.091245 -0.585636 -0.164559 0.959984 2.661058 -1.751912 -1.177528 0.112514 -4.360328 -2.495303 1.799753 -3.369937 -2.688542 -0.316830 0.379217 -0.072536 0.657834 -0.912256 -1.015171 2.087493 -2.858942 -0.998233 1.633078 1.812124 0.696713 5.274448 3.884921 0.466542 1.996116 0.968508 -1.745042 7.839860 -1.743749 -0.927875 -0.179144 2.296906 -0.791395 1.553118 1.656722 -1.029786 -3.467879 -3.672538 2.297790 -0.681005 1.694021 -3.149143 -2.828848 -3.522785 -0.992098 1.356951 4.999499 0.059536 7.235719 -0.520934 1.295693 -7.062976 0.300604 2.426450 -0.358161 1.964550 2.174749 -2.796185 -3.483522 -0.555005 -1.492182 0.545634 -0.445444 -3.838358 -2.770842 -2.188592 0.789364 -2.052325 1.252219 3.626466 -0.488147 2.468988 0.942667 -1.087204 -1.114619 -0.278143 2.686241 1.242345 -2.807387 4.159461 -1.059427 8.651994 -1.778414 2.769968 -2.254234 0.779285 -0.725477 -1.310972 -0.988531 4.483367 3.180603 1.355117 0.133606 -0.453235 -1.239601 2.110253 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = -0.023259 0.699692 2.300834 0.868246 -0.803600 -1.536538 -0.595850 -2.423935 0.994201 0.551545 1.542421 -0.415409 0.907437 0.116351 -0.074142 0.044848 0.861092 -0.209804 0.347139 -0.620637 -0.606775 1.983405 0.339039 -0.448599 0.212767 -1.918993 1.045024 0.517535 1.054387 1.230853 0.264742 -0.060777 -0.192375 0.691590 -0.690642 -0.024465 0.138447 0.550836 -1.000735 0.090133 0.032194 -0.040000 1.125491 0.000840 0.886706 0.510655 0.737458 0.108278 -0.768662 -0.420644 -0.631879 1.266024 -0.601720 0.684034 0.024482 -0.289060 0.201590 -0.610668 -0.157235 -0.675265 -0.039383 -0.079051 -0.725979 0.170380 -1.235761 0.316764 -0.850229 -0.837711 0.263815 -0.211339 0.793141 0.291220 0.270743 -0.329277 -1.967203 0.677791 0.319555 0.401904 0.599090 0.061837 0.015658 0.158179 -1.047154 -1.240245 0.948527 1.007356 0.338276 0.043539 -0.659712 -0.470552 -0.094754 -0.101620 0.090555 1.129839 -0.794660 0.761671 -0.697084 -0.475651 -0.922342 -1.885008 -0.067837 -1.097500 0.579869 0.421283 -0.275507 0.151655 -0.071711 0.460178 -0.105690 -1.405892 0.338513 -0.517403 -0.003098 1.711401 -0.648121 -0.506810 -0.646265 -0.147926 -0.082651 1.020333 0.146406 0.480191 1.243892 0.948435 0.623115 -1.062717 -0.299453 0.555727 0.538454 0.571177 0.793735 -1.198874 -0.791486 0.111783 -0.490966 -2.176898 -0.444688 0.725242 1.055061 -0.440541 -0.784029 0.433521 -0.689986 1.138816 1.145648 0.505611 0.458399 0.022091 -0.757336 0.696526 2.101961 -0.758183 0.932449 -0.915312 -1.019819 1.358717 -0.411138 0.899907 -0.041724 0.185143 -0.049912 -0.988536 0.189322 1.574668 0.354863 0.389807 0.568723 0.173685 -0.449398 -1.754205 -1.984960 -0.002708 1.214142 0.144500 2.103781 -1.144888 -0.752397 -0.013866 1.244035 0.054792 -0.659560 0.441512 -0.758077 0.576909 -2.505330 -2.001899 2.009365 1.798017 0.528551 -0.244721 0.889091 0.684001 -1.096999 -1.137743 -0.889288 0.928205 -0.104068 -1.385390 -0.665041 0.235161 -1.456141 -0.067717 -0.079042 0.426793 1.030932 -0.353956 0.281676 -0.502388 -1.369008 -0.999695 1.063861 -1.014455 -0.598942 -0.017098 0.105261 0.035224 0.667944 -0.415522 -0.299264 0.488104 -0.909632 -0.118894 0.413642 0.728255 -0.054750 1.963924 1.706418 -0.061041 0.816722 0.148457 -0.808919 2.638829 -0.833328 0.012511 -0.097978 0.693584 -0.313757 0.675566 0.985043 -0.483276 -1.303766 -1.414487 0.155267 0.017105 0.534792 -0.995302 -1.262153 -1.710740 -0.222481 0.180985 1.844056 0.239512 2.529310 -0.478878 0.528659 -2.462513 0.185527 0.562345 -0.114561 1.257464 0.610668 -1.168606 -0.928965 -0.292941 -1.157605 -0.341039 -0.282607 -1.354371 -0.913179 -0.643545 0.615254 -0.614653 0.299261 1.153874 -0.145250 1.073960 0.155178 -0.317145 -0.905250 0.093930 1.367112 0.073953 -0.892992 1.237144 -0.013935 3.080441 -0.260881 0.858710 -0.744718 0.103778 -0.083694 -0.972502 -0.533629 1.689836 1.172443 0.500901 -0.128914 -0.103568 -0.228778 0.889571 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -0.823461 1.870780 6.612924 5.606996 -2.611479 -3.768472 -1.411892 -3.354383 2.312190 0.697095 2.920325 -0.865827 1.562306 0.554754 -0.635997 -2.008659 2.093970 0.548013 -0.249889 -1.471207 -1.917411 5.011821 2.896014 -5.606278 0.343366 -4.637089 3.945776 2.094138 2.013891 4.080875 0.043346 0.488599 0.356109 2.621019 -3.726021 -1.957573 -1.193144 1.262562 -2.029951 -0.822981 1.894518 1.526868 3.372389 0.350081 1.171982 2.388981 2.681446 -0.376580 -3.261098 -0.529999 -2.038888 3.061167 -1.492180 2.412913 -0.172101 1.303660 1.978700 -3.069975 -0.216721 -4.682867 1.001432 1.633324 -2.099390 -0.239027 -4.146976 0.315515 -1.286983 -3.090095 1.617485 -0.499924 1.867423 0.646213 0.638026 -4.026959 -3.644944 2.439160 0.497644 1.552822 1.645793 0.868350 -0.949826 0.718855 -2.520845 -2.681903 0.789097 -0.194768 0.742481 0.912745 0.773497 -3.108207 0.661647 -0.196536 -1.368550 3.227250 -0.950505 3.478183 -1.227935 -0.805201 -2.303371 -2.691625 -0.893781 -3.135920 1.229659 3.074214 -1.773550 1.225821 0.462368 1.045422 0.514376 -3.747319 0.511892 -1.639292 -0.180769 3.261663 -1.605274 -1.698329 -0.230148 0.104905 0.038882 3.893083 -0.973471 1.361952 3.329785 2.215723 0.760378 -2.708851 1.181881 0.498863 0.927513 1.716075 3.013922 -3.003924 -2.266905 -0.675002 0.109947 -5.386991 0.432007 2.376862 2.617807 0.111313 -4.823276 2.563096 -1.756020 3.406781 2.399674 2.573731 1.591918 -0.497211 -1.571752 1.661505 6.564372 -2.237257 2.008823 -2.473202 -5.014275 5.504543 -0.512009 3.022144 -0.871879 0.195581 1.459887 -3.086679 1.306703 4.960373 0.602961 -0.037787 4.175482 -0.617809 0.279380 -5.843534 -4.783918 0.414496 1.747081 1.206751 8.323401 -3.097923 -1.314444 -0.927418 2.270759 -0.760439 -0.660943 -0.055987 -1.008887 1.161904 -9.231818 -6.199884 5.320655 3.273174 -0.142447 -0.376912 2.948712 0.534099 0.878866 -3.123784 -2.639758 2.149974 0.768411 1.184804 0.073507 0.407417 -3.938336 0.105749 0.846110 0.678415 3.921477 -4.437452 -2.523934 -2.928423 -5.387033 -3.847907 1.431810 -4.286309 -1.227974 0.400084 0.336616 -0.171474 1.344094 0.499913 -2.445060 -0.244457 -1.535446 -1.561971 -0.009995 2.975578 0.158437 4.062091 4.980911 -0.053656 1.661580 2.100988 -2.074000 11.258199 -3.186691 -0.672867 -0.046449 3.764525 -0.283644 1.926174 2.252040 -1.000673 -1.691735 -3.891908 2.493382 0.016558 0.582884 -8.040506 -1.715752 -4.259251 -1.432729 0.552460 4.286417 0.069893 7.580075 -1.042113 0.204878 -7.634337 0.169873 2.689294 0.202661 3.435482 2.809719 -4.088759 -4.233722 -0.835213 -1.796072 3.767806 -1.132208 -4.001220 -2.508585 0.352295 -0.123965 -1.609562 2.429266 5.542341 -1.682814 1.744831 0.338077 -0.744767 -1.048936 -1.963580 2.123045 1.280829 -2.099006 4.069424 -1.036878 6.897002 -0.552723 3.080066 -3.119402 0.511830 -0.230957 -2.060798 -1.809818 4.522644 1.810645 0.944185 1.434595 0.433186 -1.284831 2.947747 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = -0.480421 1.289354 5.260885 1.740781 -2.476244 -4.129824 -1.604590 -6.091923 2.647807 1.755092 4.173034 -0.546610 2.241491 -0.107519 0.019396 0.839352 2.302195 -0.822211 0.160219 -1.928659 -1.816850 4.535840 0.927858 -0.646343 1.034938 -4.309371 2.331363 0.950713 2.039272 2.792805 1.147986 -0.078946 -0.656259 1.781911 -0.891038 1.508736 0.309043 1.352716 -2.124235 0.347969 0.615004 -0.704854 2.914881 0.512469 3.081043 1.221869 1.890928 0.096201 -2.650271 -1.468540 -1.716853 3.265350 -2.025354 1.794034 -0.331997 -0.109393 0.398253 -1.678468 -0.355911 -1.870173 -0.443701 -0.648828 -2.221710 0.236669 -2.681746 0.718991 -1.874742 -1.718283 0.111048 -0.983446 2.093600 0.317350 -0.115312 -0.090070 -4.470573 0.962015 0.936106 0.811100 1.974049 0.165911 -0.438002 -0.376235 -2.450958 -3.145398 3.019536 1.904987 0.978362 0.510376 -2.118002 -0.839992 -0.645052 -0.085692 0.740702 2.737875 -3.012176 0.980141 -0.547784 -1.663237 -2.351369 -4.150258 0.335770 -2.499665 1.315601 0.952896 -0.840394 0.195815 -0.992550 1.024745 -0.875296 -2.962386 0.794095 -1.363829 -0.324436 3.877454 -1.718091 -1.463252 -1.526099 -0.480383 0.193481 2.390547 0.898150 0.793150 3.589039 2.240166 2.373565 -2.624564 -0.825517 1.116576 1.805454 1.373712 1.628995 -2.431945 -1.966707 0.839669 -1.768444 -5.365005 -1.573092 1.854562 3.029808 -0.344306 -1.920170 0.849533 -1.536136 2.506799 2.717596 1.176167 1.076295 0.139759 -2.457872 1.326440 5.071997 -1.818869 2.532021 -1.848454 -2.025742 3.297837 -1.430396 1.757432 0.436680 -0.131505 -0.533691 -2.243746 0.077571 3.735851 0.836877 0.858511 0.393603 1.003270 -1.483657 -3.937642 -5.434179 -0.550900 3.249984 0.914492 4.712634 -3.076091 -1.507051 -0.334610 3.371106 -0.121601 -2.029431 1.137651 -1.953932 1.589655 -5.828096 -4.551529 5.851254 5.069394 2.060995 -0.353340 2.428396 1.831019 -3.297169 -2.478646 -2.271139 2.137803 0.383991 -3.415778 -1.472515 0.549412 -3.834175 -0.713377 -0.588077 1.095276 1.501437 -0.574716 1.435955 -0.683136 -2.499275 -1.811325 2.143716 -2.314977 -1.587140 -0.201255 0.192775 0.137506 1.612069 -1.174109 -0.645033 0.935461 -2.645676 -0.227269 1.140542 2.183796 0.556107 5.065913 4.686407 -0.814769 2.291127 -0.253469 -2.072184 5.266874 -2.004800 0.227431 -0.261912 1.707481 -0.022227 1.288340 2.687192 -1.324837 -2.859423 -3.249738 0.102607 0.455132 1.556049 -1.814502 -3.133830 -4.732425 -0.195509 0.219738 4.687681 0.196720 6.064611 -1.146433 1.433194 -6.274657 0.538895 1.859503 -0.402854 2.499101 1.361077 -2.708071 -2.709696 -0.827147 -3.086881 -1.204302 -0.215865 -2.132538 -2.252071 -2.105308 2.197693 -2.075500 0.552024 2.439441 -0.199014 2.988762 0.554843 -0.576783 -2.223253 0.503974 3.439847 0.362172 -2.196422 3.084647 0.448263 7.858913 -0.554819 2.264979 -1.499823 0.615729 -0.429670 -2.696903 -1.604580 3.887971 3.660351 1.311362 -0.097177 -0.090013 -0.472250 2.462241 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -1.582054 0.138307 4.494964 0.694172 -1.498737 -4.045075 -1.343163 -6.674038 3.065249 2.271154 5.577153 0.061212 3.578892 -1.604257 0.907764 1.086075 3.019423 -1.710503 0.761479 -1.618607 -0.018832 5.394564 0.645497 0.804142 0.594883 -3.430336 0.878733 1.242266 2.019392 2.536717 1.160666 -0.137853 -0.855406 0.921813 -0.611019 2.187213 0.829311 1.559895 -1.945893 -0.862489 -0.187640 -1.772264 3.023177 -0.233902 3.853795 -1.076625 2.480179 -0.245483 -2.215857 -2.407808 -1.545809 3.368246 -2.200836 1.278474 0.039021 -1.714114 0.621520 -0.133047 -0.447699 -2.605180 -0.206677 -1.254666 -2.128382 0.067099 -1.352896 1.179355 -1.515157 -0.949244 -0.154585 -1.691603 1.938358 0.426033 0.383150 1.117280 -5.142718 0.712315 1.111288 -0.127100 1.590931 1.097053 -0.499706 -1.228470 -2.041329 -3.004640 4.245178 2.680382 0.872108 0.954899 -4.476008 1.175055 -0.859981 0.151509 0.937894 1.846500 -3.484528 0.322318 1.437612 -1.935195 -1.677113 -3.768308 0.692277 -2.600482 0.589191 1.054933 0.117106 -0.233624 -3.276233 0.747033 -2.816940 -3.135444 1.519050 -1.681416 -1.378412 3.300454 -2.986549 -0.444855 -2.408936 0.285411 1.000495 1.735126 0.917125 1.587166 2.642573 2.130946 2.146033 -3.098690 -1.037123 2.008235 3.376649 1.016099 0.169945 -1.756859 -1.728076 1.456504 -3.088331 -5.366767 -3.065147 3.015577 3.414570 0.094140 -1.787670 0.898354 -1.089918 3.196778 3.972416 0.582416 0.506920 1.386070 -2.954741 1.361425 3.631760 -1.989347 3.177934 -0.565372 -1.043011 2.874311 -2.226395 1.556619 0.942217 0.160014 -1.087068 -1.904416 -0.350150 3.424082 1.800112 2.185707 -2.229379 1.489441 -1.116828 -3.806088 -6.654851 -1.238181 4.066449 1.769776 3.852887 -2.705836 -2.304218 0.624590 2.866861 -0.546037 -3.601696 1.493957 -2.475621 1.873698 -6.307661 -4.366668 6.589644 5.400673 3.066074 0.480049 2.534297 2.356070 -4.052393 -1.423052 -1.663837 2.687578 -0.008543 -5.577805 -1.256535 0.768660 -4.060098 -1.526733 -1.417229 0.687562 -0.477968 0.450500 3.611681 -0.071021 -1.224635 0.142005 2.237722 -1.450787 -2.370807 -1.403330 -0.005170 1.146187 1.595746 -1.691570 0.617995 1.352145 -3.727197 -0.543875 0.818067 1.747995 1.545551 5.534779 5.339276 -1.119203 2.418971 -1.485658 -2.315297 2.844357 -2.014865 -0.057943 -0.650681 1.186614 1.013059 1.336366 3.067994 -1.352551 -2.802871 -3.342141 -0.704213 1.410323 2.559037 -0.562985 -4.144897 -4.832108 0.485404 0.560179 5.047563 -0.535598 6.027480 -2.144080 1.646837 -6.458625 0.545126 0.855860 -0.465087 2.150787 0.536989 -2.138418 -2.337794 -0.937969 -3.449155 -2.743078 0.308985 -1.888814 -1.798949 -3.792452 3.607311 -3.423367 -0.081737 0.501218 0.124703 4.124683 1.628446 -0.615127 -2.822664 2.145296 2.814274 0.434104 -2.034942 3.095160 0.683906 8.078121 -1.265244 1.890423 -1.456417 2.339469 -1.298439 -3.019915 -1.090845 3.926228 5.419460 0.895159 -0.829423 -0.019225 -0.405027 2.572533 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -2.017599 3.111331 14.348456 4.724453 -7.191953 -10.209655 -4.168971 -15.723321 6.898826 5.600824 11.218347 -1.767697 5.286090 -0.283328 -0.200102 2.188710 5.767895 -2.351698 -0.655875 -5.336208 -5.461873 9.883620 2.383090 -1.808809 3.337926 -11.142006 7.269107 1.491210 3.962701 6.921652 4.008786 -0.047185 -1.768215 5.154145 -1.029889 6.152298 1.185522 3.635318 -4.053178 0.818107 2.665803 -2.303027 6.992174 2.326707 9.259112 3.942106 4.653516 -0.604505 -8.590835 -3.740247 -4.355266 8.405919 -6.282896 4.686207 -0.621943 0.942149 0.794682 -5.839229 -0.548084 -5.845702 -1.106959 -2.132303 -6.292020 0.533069 -6.967608 1.570072 -4.531591 -3.872053 -0.117715 -3.064417 5.245445 0.185835 -0.995612 0.595548 -10.004964 2.275255 2.784087 1.301027 6.057656 -0.292882 -1.611469 -1.821100 -5.931154 -8.403870 8.385507 3.759043 2.646170 1.635119 -4.535557 -1.951347 -2.045358 -0.340116 1.898627 8.188811 -8.843826 1.731639 -0.533260 -4.904881 -6.304921 -10.379549 1.222463 -7.053475 3.540590 3.804456 -3.894012 0.808583 -2.934455 2.923744 -2.154428 -6.789451 1.735411 -4.138332 0.247382 8.972382 -4.667042 -4.794210 -3.819038 -1.547892 1.887428 6.062690 2.564981 1.539961 10.760859 5.297576 7.940404 -6.978573 -1.863976 2.723502 4.383872 3.636058 3.783810 -6.692310 -4.774667 2.358990 -4.731465 -13.885799 -3.982532 3.853146 8.042056 0.194673 -6.035912 1.799112 -3.547278 5.902769 6.705354 3.926757 2.533653 0.757163 -6.558365 2.095386 13.101273 -4.756901 6.218990 -4.409332 -5.076964 7.807421 -3.519448 4.035660 1.707390 -0.536372 -0.829730 -6.527788 -0.477422 10.229472 2.000511 1.752057 0.746036 3.239163 -4.101622 -10.284546 -14.183773 -1.813707 8.412618 2.516527 12.298363 -8.792367 -3.272711 -1.435400 9.662451 -0.273215 -5.157212 2.522839 -4.544943 4.195942 -14.500817 -12.012492 15.438622 13.080930 5.795870 -1.436466 6.257520 4.217253 -9.398788 -5.967151 -6.552730 5.197006 1.490782 -7.344440 -3.440908 1.368060 -10.385352 -2.174360 -1.701980 2.792979 3.882083 -2.428901 3.125760 -0.751811 -5.556961 -4.541987 5.022446 -5.990739 -4.684129 -1.236223 1.046576 0.895852 4.191633 -3.269564 -2.372447 2.058948 -6.970262 -1.030730 3.753112 6.489493 1.933108 13.992777 12.263487 -2.816584 5.211426 -1.042339 -4.978670 13.421948 -4.751368 0.302793 -0.356442 4.402240 0.765820 2.978028 7.497130 -3.836988 -7.365721 -8.317482 -0.239188 0.605196 4.075332 -5.008715 -7.273419 -12.893403 -0.289817 0.144456 11.993849 0.693778 16.139321 -1.638714 3.585905 -15.971008 1.030446 6.377457 -1.622972 6.055619 3.881257 -7.553969 -7.670290 -2.248621 -7.800351 -2.565938 0.014522 -3.266617 -6.176281 -5.520228 6.211848 -4.849456 1.792487 6.279457 0.371680 7.406964 2.150042 -1.042394 -5.161135 1.201978 8.980253 1.430419 -5.984371 8.593363 1.769972 20.787178 -1.603597 5.779892 -3.941190 1.325501 -1.282472 -6.186223 -4.745330 9.591281 9.917172 4.400908 -0.188940 0.069860 -2.067667 7.437295 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = -1.093429 1.462762 6.310983 3.724881 -3.147767 -4.561952 -1.561601 -4.225318 1.928372 1.057193 3.846944 -0.531484 1.359776 1.408572 0.244745 -1.129377 1.749376 -0.044242 -0.386060 -1.543884 -2.091345 3.239988 2.150969 -3.693962 0.585407 -3.991596 2.740379 2.123158 1.098209 2.716438 0.367559 0.156212 -0.789249 2.040406 -2.700682 -0.628522 0.053944 0.947824 -1.686079 -0.536229 1.514965 0.714968 2.896633 0.010744 2.458361 1.869758 2.528753 -0.044438 -3.491548 -1.118066 -1.881317 3.615094 -1.518514 2.095940 0.495361 1.720114 0.764331 -3.172366 -0.592246 -4.423859 1.007104 0.810570 -2.221084 -0.124753 -3.199540 0.515063 -0.840913 -2.439716 1.557660 -1.190062 1.964065 -0.516015 0.281538 -1.816701 -3.359313 1.287928 0.100325 1.300120 1.348191 0.328874 -1.127001 0.414013 -2.114629 -2.314554 0.672177 0.553294 0.478031 0.175541 -0.670712 -1.320797 0.491367 -0.506149 -1.085709 2.974606 -2.626318 2.541613 -0.523569 -1.086084 -2.856501 -2.857597 -0.080285 -2.660311 1.381036 2.494761 -1.550871 0.512520 -0.641422 1.188716 -0.448182 -3.787181 0.575839 -1.328547 0.048724 2.794553 -2.283887 -1.154893 0.037426 -0.427541 0.174895 3.002272 -0.455410 1.036573 2.879456 2.332734 1.183318 -2.509795 0.248645 0.757269 1.980713 1.880015 2.237991 -3.101240 -1.553749 0.133029 -1.218222 -5.419560 0.175614 2.254397 3.006359 0.571160 -4.162131 1.183838 -1.768615 3.404528 2.147641 3.190803 0.902385 -0.231270 -2.022539 0.864985 5.456408 -1.972866 2.820017 -1.298368 -3.266835 3.815042 -1.068647 2.749012 0.546294 0.528757 0.845677 -2.806988 -0.371245 3.934593 1.779110 0.807300 2.537975 0.080742 -0.997726 -4.969222 -4.883557 -0.266817 2.256553 0.722056 6.063865 -3.452680 -2.271978 -1.071441 3.756075 -1.234395 -1.802127 0.308447 -0.975538 1.248448 -6.879710 -4.981908 4.718645 4.661716 0.512449 -0.383513 3.835275 0.492228 -1.373352 -2.671766 -2.541465 2.032206 0.276900 0.300696 0.123646 -0.026307 -4.255716 0.081568 -0.064222 0.993641 2.564730 -2.213669 -1.039785 -0.568953 -3.878333 -2.690636 1.084289 -3.176445 -1.635305 0.127133 0.472814 0.005411 0.866601 -0.882862 -2.053726 0.798185 -2.712842 -0.663875 1.100843 2.176829 0.885643 5.994865 3.858999 0.074732 2.564871 0.787418 -1.961487 8.982528 -2.722242 -0.341690 -0.223313 2.913983 -0.533195 1.187923 2.060077 -1.073468 -2.442209 -3.240415 1.433559 -0.604020 1.542931 -4.771823 -3.089656 -4.587585 -0.803259 0.774644 4.364324 -0.201196 6.598864 -0.421178 1.013546 -7.189779 0.229946 2.619403 -0.461988 2.172519 2.046507 -3.272367 -4.878330 -0.247879 -1.811056 1.300010 -0.385024 -3.317596 -2.114864 -1.337578 0.513120 -1.489350 1.216241 3.953979 -1.078777 2.277514 1.040585 -0.911357 -0.550933 -1.075391 2.656314 0.914652 -2.556739 4.474205 -0.293117 8.588060 -0.505574 2.778801 -1.942048 0.567441 -0.331981 -1.536168 -1.435601 3.847253 3.093381 1.552354 0.095028 0.436871 -1.764781 1.910012 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.767648 0.224948 2.106807 1.854340 -1.255607 -1.619137 -0.653195 -1.637143 1.205621 0.560145 1.645460 0.148661 1.093545 -0.632193 -0.231063 -0.964368 1.004044 -0.067109 -0.429161 -0.796737 -0.632012 1.926686 0.768921 -1.985547 0.425322 -1.476698 1.761653 0.806987 0.276747 1.691465 0.190365 0.368671 -0.348790 0.959095 -1.067745 -0.085146 -0.245733 0.769795 -0.458469 -0.591364 1.353731 0.379291 1.540144 0.209519 1.037161 0.898190 0.415891 -0.140076 -1.462705 -0.844191 -0.128144 0.239522 -0.814139 1.063205 -0.464189 0.549070 0.890316 -0.949940 0.058863 -2.135832 0.692753 0.189867 -0.855449 -0.187235 -1.273302 0.061514 0.074970 -1.184073 0.354206 -1.281093 0.645412 -0.120115 -0.299782 -1.266467 -1.234763 0.323308 0.544272 0.253061 0.949006 0.782193 -0.702629 -0.575252 -1.138528 -1.058745 0.673389 0.070013 0.469558 1.015622 -0.308242 -0.955815 0.573327 0.159934 0.232023 1.144820 -0.626304 0.319379 0.204245 -0.567029 -0.543352 -0.651475 0.370070 -0.924443 0.524265 1.333958 -1.228968 0.381351 0.117298 0.456687 -0.305362 -1.078925 0.296300 -1.076496 0.182836 1.357594 -0.472170 -1.087165 -0.612402 -0.288014 0.534181 1.404938 -0.191757 0.138508 1.594419 0.816333 0.686966 -1.485605 0.014058 0.544107 0.699811 0.553744 0.629528 -1.088608 -0.705317 0.238045 -0.943827 -2.147907 -0.593328 0.295758 1.450393 -0.248078 -1.906126 1.631831 -0.898861 0.958628 1.143082 0.831310 0.529559 0.193351 -1.277582 0.442727 1.993752 -0.545379 0.690189 -0.643984 -1.890110 1.822350 0.032885 0.746101 -0.042821 -0.453308 0.055595 -0.933745 0.898999 1.693249 -0.125456 0.487035 0.350494 0.298293 -0.298689 -1.820061 -2.450665 -0.164307 1.293631 1.421317 3.145761 -1.566646 -0.279627 -0.415838 1.331658 -0.418984 -0.600299 0.181157 -0.490434 0.776655 -3.292459 -2.149461 2.513549 1.653095 0.761699 0.133123 1.217633 -0.182857 0.428558 -0.704546 -1.023367 0.757708 0.947842 0.353676 0.373755 0.196139 -1.569629 -0.627558 0.268460 0.344378 0.780774 -1.665782 -0.322009 -1.068017 -1.038499 -1.304969 0.484353 -1.229777 -0.165050 0.017817 -0.039921 -0.095473 0.584491 0.003749 -0.813699 -0.465573 -0.547076 -0.308052 0.020852 1.055758 0.280018 1.496003 2.068250 -0.991853 0.348626 0.204708 -0.756722 3.593769 -1.297998 -0.004036 0.121574 1.685011 0.828430 0.524107 1.223382 -0.601221 0.184942 -1.640596 0.379097 0.692811 0.503365 -3.080210 -0.677015 -2.242797 -0.153834 -0.417002 1.999596 -0.171070 2.984608 -0.567581 0.198106 -2.837987 0.075007 1.301168 -0.060246 0.847524 0.785288 -1.314065 -2.246976 -0.327276 -1.252060 0.706227 -0.334108 -0.799962 -1.063733 -0.079222 0.367777 -0.844953 0.724437 1.944522 -0.616057 0.729847 -0.292481 -0.034963 -0.479552 -0.704669 0.135828 0.414177 -0.869575 1.380928 0.058093 2.548301 -0.108128 1.436116 -0.889586 1.242864 -0.703724 -1.601437 -0.958531 1.621160 1.165258 0.388364 0.701023 0.320728 -0.347346 1.367471 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = -0.458215 0.982254 4.397108 2.258398 -2.083527 -2.866207 -1.173798 -3.734054 1.847706 0.859588 2.928332 -0.306638 1.318223 0.352285 0.007516 -0.353185 1.299718 -0.251837 -0.124033 -1.178352 -1.241750 3.200033 1.520119 -2.085117 0.545302 -3.258326 1.731386 1.138022 1.575138 2.189944 0.242758 -0.031943 -0.467077 1.423904 -1.663034 -0.202518 -0.130857 0.802241 -1.677461 -0.240692 0.894065 0.153506 2.096765 -0.016182 1.884192 0.843550 1.611836 -0.081331 -2.142889 -0.877828 -1.291262 2.703754 -1.266731 1.534553 0.172465 0.666268 0.170102 -1.721931 -0.489120 -2.562047 0.335281 0.226886 -1.443846 0.028190 -2.237394 0.519807 -1.061240 -1.603558 0.875438 -0.928312 1.580514 0.095450 0.274110 -1.132403 -2.899771 1.005479 0.391740 0.923495 1.093921 0.451915 -0.389560 0.143016 -1.587129 -1.913441 1.165148 0.900554 0.379729 0.112987 -0.801662 -0.909965 0.281496 -0.201788 -0.318882 2.051332 -2.252680 1.540880 -0.811687 -0.902842 -1.710704 -2.488281 -0.106242 -2.042557 1.069786 1.320572 -0.960247 0.485048 -0.082645 0.923381 -0.165723 -2.800078 0.323256 -0.670613 -0.165146 2.741048 -1.510674 -0.934462 -0.380439 -0.132252 -0.258783 2.021265 0.007986 0.948936 2.392997 1.786872 1.176480 -1.916069 -0.009550 0.846289 1.330667 1.323270 1.536950 -2.024911 -1.312746 0.311722 -0.719042 -4.152406 -0.481905 1.543926 2.294529 0.162395 -2.341583 0.715503 -1.185808 2.386690 1.831321 1.410816 0.852163 -0.105915 -1.629305 1.027956 4.218666 -1.452798 1.923666 -1.248802 -2.293265 2.901840 -1.024686 1.884829 0.095870 0.374722 0.414022 -2.138197 -0.014557 2.962732 0.775689 0.640928 1.123054 0.233337 -0.783419 -3.714386 -3.771024 -0.383406 1.778639 0.601382 4.176413 -2.225880 -1.406671 -0.516009 2.683068 -0.500234 -1.263814 0.528857 -1.238820 1.073267 -4.871506 -3.721303 3.858424 3.838031 0.770411 -0.099145 2.487371 0.932591 -1.412324 -1.898806 -1.832731 1.566463 0.477743 -0.988938 -0.601117 0.083467 -2.927278 -0.254759 0.072847 0.685518 1.600153 -1.125391 -0.025462 -0.307633 -2.704764 -1.719074 1.448667 -2.356514 -1.027400 -0.017162 0.258407 -0.010629 0.993778 -0.822283 -1.083001 0.626946 -1.827940 -0.264225 0.682360 1.622481 0.288768 3.711469 3.154730 -0.185895 1.752188 0.379099 -1.640217 5.684951 -1.938748 -0.191556 -0.231802 1.646427 -0.428169 1.077360 1.552353 -0.916179 -1.867351 -2.462267 0.714869 -0.175191 1.084058 -2.872375 -2.476521 -3.105779 -0.580507 0.494099 2.981808 0.204393 4.936799 -0.846487 0.763867 -5.393361 0.220306 1.719639 -0.200993 2.054416 1.338883 -2.127402 -3.169156 -0.477940 -1.620224 0.504672 -0.469583 -2.527282 -1.597341 -1.284572 1.303115 -1.357633 0.854716 2.506097 -0.517240 2.084175 0.359124 -0.644509 -1.123609 -0.317968 1.908530 0.603858 -1.782838 2.812109 -0.083792 5.943420 -0.539471 1.896125 -1.555984 0.471704 -0.353491 -1.627282 -1.038009 2.992913 2.439255 1.097949 -0.093701 -0.015545 -1.098636 1.445013 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = -0.363260 1.172956 4.385072 1.478912 -2.256130 -2.979690 -1.424912 -4.914620 1.829981 1.225452 3.435583 -0.641228 1.631664 0.334877 0.032055 0.007331 1.789766 -0.655877 0.385355 -1.465615 -1.440324 3.158372 0.587349 -0.805282 0.654228 -3.212939 1.909127 1.090761 1.470282 1.945728 0.773189 -0.122548 -0.932479 1.359353 -1.055001 0.332539 0.574656 1.109171 -1.861250 0.248359 0.516868 -0.216568 2.303660 -0.125103 2.172234 0.989191 1.150194 0.289352 -2.180781 -1.058731 -0.879278 2.385816 -1.345439 1.343552 0.357480 -0.216688 0.091745 -1.511552 -0.451092 -1.352126 0.015923 -0.516004 -1.411394 0.374795 -2.037087 0.579030 -1.377942 -1.527603 0.725968 -0.894133 1.478735 -0.003516 0.087091 -0.120684 -3.209310 0.956299 0.833958 0.743951 1.270683 0.176393 0.153947 0.055009 -1.903413 -2.299092 1.621771 1.856725 0.730793 -0.015871 -1.570311 -0.450488 0.202648 -0.186979 0.419777 2.184240 -2.118276 0.918204 -1.218235 -1.323115 -2.096180 -3.437463 0.261132 -1.961994 1.417647 0.928067 -1.323456 0.182081 -0.402892 0.988684 -0.444280 -2.665690 0.402745 -1.109393 0.383232 3.415290 -1.400439 -1.277253 -1.340676 -0.561314 0.001212 1.717161 0.560572 0.691610 2.579813 1.979736 1.460866 -2.242573 -0.940309 0.912085 1.235590 1.227245 1.438885 -2.219755 -1.404643 0.471236 -1.489739 -4.149328 -1.135367 0.805375 2.300748 -0.591851 -1.409764 0.479108 -1.552469 2.160160 1.976164 1.366313 0.728935 0.091471 -1.830675 1.072956 3.517100 -1.319995 1.983228 -1.260906 -1.807268 2.042447 -0.673420 1.574441 0.454158 0.150650 -0.358105 -1.942217 -0.025622 2.805200 0.719063 0.912770 0.403146 0.622702 -1.207215 -3.111369 -4.148853 0.062035 2.503366 0.546825 3.528842 -2.524308 -1.662622 -0.116862 3.046274 0.030025 -1.693767 0.995428 -1.341137 1.301218 -4.021877 -3.556117 3.800766 3.889556 1.247252 -0.472890 2.043849 0.871167 -2.819781 -2.055146 -1.937741 1.889752 0.040876 -2.387883 -1.010583 0.479027 -2.745461 -0.236863 -0.192731 1.063085 1.635136 -0.618206 0.825436 -0.172529 -2.129132 -1.518276 2.032590 -1.671942 -1.099620 -0.017066 0.079022 0.181925 1.318380 -1.145371 -0.849954 0.683881 -2.006910 -0.038944 1.019433 1.557711 0.016201 4.130173 3.080631 -0.425212 1.786733 -0.110352 -1.606597 4.557341 -1.662582 0.253952 -0.185634 1.228018 -0.476754 0.920911 2.114676 -1.047994 -2.497855 -2.593440 -0.134757 -0.084642 1.441755 -1.840347 -2.628101 -3.628101 -0.145135 0.267928 3.467232 0.369137 4.796425 -0.703753 1.078416 -4.690730 0.273221 1.360197 -0.378719 2.149241 0.986673 -2.133283 -2.503295 -0.453614 -2.577806 -0.879282 -0.217524 -2.028557 -1.911213 -1.523041 1.757956 -0.979794 0.289466 2.137410 -0.348647 2.097552 0.531570 -0.716763 -1.304857 -0.021362 2.553358 0.105756 -1.955200 2.812576 0.295673 6.532137 -0.232885 1.653986 -1.128402 0.218045 -0.161071 -1.901250 -1.181699 3.077911 2.722820 1.321159 -0.573052 -0.091096 -0.760375 1.545643 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.158659 0.424509 3.160669 1.882458 -1.393699 -2.182041 -0.838168 -3.497072 2.046147 0.689967 2.101839 -0.091154 1.168693 -0.583669 -0.154214 0.102463 0.990296 -0.197214 -0.206522 -0.824960 -0.258139 3.065296 0.593274 -1.587940 0.300967 -2.799657 0.896648 1.011150 1.643661 1.420116 0.383567 -0.166286 -0.374221 0.948278 -1.401767 0.213865 0.195924 0.504376 -1.877371 -0.766685 0.330667 0.291534 1.550769 -0.371154 1.888289 -0.260974 1.578267 -0.039566 -1.235278 -0.644358 -1.137065 2.686849 -0.697803 1.206741 0.328095 0.124058 0.028277 -1.288333 -0.406886 -1.445041 0.135768 0.417893 -1.092376 -0.119997 -1.415766 0.380588 -0.184811 -1.038386 0.658007 -0.905911 1.229929 0.116747 0.367831 -1.014244 -2.657748 0.645115 0.249922 0.628757 0.921045 0.862161 0.242330 -0.327253 -0.975269 -1.288897 1.357050 1.269580 0.116159 0.443061 -1.034017 -0.574410 -0.026777 -0.429130 0.122147 1.220005 -2.061340 0.719019 -0.530658 -0.597082 -0.972040 -1.536929 0.166652 -1.394582 0.726188 0.600902 -0.207788 0.684835 0.506769 0.596227 -0.307389 -1.795862 0.402085 -0.476555 0.069928 2.565966 -1.138512 -0.821720 -0.501140 -0.002920 -0.801662 1.435475 0.040369 0.860588 1.771351 1.335042 1.288528 -1.682555 -0.349481 1.302152 1.338058 1.130484 0.787763 -1.680467 -0.708708 0.304620 -0.466537 -3.338648 -0.772931 1.140806 1.909549 0.228577 -1.477524 0.238554 -0.555899 2.105592 1.107458 0.411606 0.610539 0.313512 -1.362145 0.803338 3.319924 -0.788210 1.303085 -1.128039 -1.313965 1.577891 -0.770154 1.365875 0.001925 0.209331 0.339232 -1.557491 0.233139 2.076078 0.304522 0.475073 0.034919 0.568136 -1.087005 -3.104921 -3.331105 -0.443526 1.245343 0.370153 3.296982 -1.604129 -1.655749 -0.476722 2.094334 -0.605276 -0.812959 0.849289 -1.758884 1.145373 -3.088678 -2.867875 3.445415 3.245689 0.915241 -0.075611 2.229584 0.685780 -1.714398 -1.261016 -1.028620 0.957721 1.014755 -1.699207 -0.319833 -0.000447 -2.227314 -0.815841 0.135599 0.415951 0.544457 -0.110384 0.935866 -0.325941 -1.763788 -1.160032 1.532248 -1.596345 -0.432783 -0.182533 0.451653 -0.086318 1.276672 -1.105246 -0.628964 0.734502 -1.232371 0.009976 0.454762 1.038815 0.205564 2.410093 2.755697 -0.126946 2.549514 0.100701 -1.365503 4.031817 -1.332183 -0.137281 -0.204765 0.782789 -0.140215 0.787705 0.920071 -0.949959 -1.082522 -1.937651 0.167448 -0.048964 1.040945 -1.855912 -2.069204 -2.145056 -0.665733 0.173062 1.676924 0.209535 3.677845 -1.271009 0.566301 -4.693939 0.203767 1.474828 -0.031813 1.488738 0.852122 -1.547013 -2.775170 -0.271099 -1.298084 -0.518749 -0.561842 -2.299343 -1.193055 -1.813585 2.018694 -1.407111 0.545531 2.226111 -0.182250 1.757556 -0.551696 -0.174583 -0.968550 -0.054563 0.834065 0.403315 -1.500315 1.817066 -0.149589 4.844175 -0.568073 1.367232 -1.273913 0.985114 -0.762050 -1.866906 -0.695579 2.251613 1.890751 0.635204 -0.333561 -0.151474 -1.199135 1.321744 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.478697 1.736624 6.692347 4.916428 -3.467074 -3.782324 -1.901602 -4.293789 2.061976 1.126967 4.321811 -0.536200 1.500030 1.275271 0.100154 -1.774593 2.021034 -0.183244 -0.610849 -1.872325 -1.919044 3.546270 3.014689 -5.283617 0.632038 -3.392070 3.467334 2.201300 0.880340 3.065963 0.415385 0.288945 -0.485487 2.848662 -3.422159 -1.106124 -0.483612 1.852470 -1.548514 -0.744030 2.477789 1.610518 3.201112 0.269348 2.360762 2.783472 2.494472 -0.258687 -4.172254 -0.999958 -1.370678 3.340290 -2.437432 2.554919 -0.088116 1.940393 1.182027 -3.580309 -0.612016 -5.444016 1.220398 1.339569 -2.357372 -0.273665 -3.382227 0.375855 -0.277161 -3.042872 1.703495 -0.918944 2.315988 -0.346252 -0.225893 -2.678929 -2.679850 1.588124 0.673085 1.436109 1.950165 0.229390 -1.030389 0.224990 -2.079098 -2.776056 0.971505 -0.215134 1.125217 0.685057 0.417765 -1.552005 1.092416 -0.131085 -1.080275 3.665796 -1.863076 2.809315 -0.403776 -1.439102 -2.927549 -1.806679 -0.050878 -3.263487 1.945263 3.280993 -2.570369 0.860372 -0.636134 1.466693 -0.399844 -3.993157 0.068136 -1.689403 0.315756 2.899471 -2.163512 -1.778763 0.308562 -0.457933 0.645873 3.431977 0.019007 0.972176 3.751137 2.692510 1.175806 -3.252073 0.362776 -0.001056 1.701098 2.506334 2.756806 -3.061293 -2.206799 -0.010578 -1.203410 -5.571307 0.253338 1.828401 3.179655 0.267290 -5.227409 2.242178 -2.232552 3.330619 2.567974 3.818623 1.343887 -0.278731 -2.275967 0.995780 5.749523 -2.177932 2.834962 -1.076193 -4.088074 4.323235 -0.862808 2.927314 0.596324 -0.039810 0.986945 -3.402306 -0.058285 4.743482 1.566880 0.997817 2.782574 -0.025750 -0.524513 -5.463736 -5.244945 -0.204972 2.516542 1.351414 7.040814 -3.544565 -2.014634 -0.734711 3.493970 -1.295793 -1.665996 -0.047296 -0.683671 1.708010 -7.590568 -5.476022 5.131885 4.175734 0.729546 -0.416869 3.740575 0.002754 -0.364152 -2.896346 -2.715977 2.534472 0.766352 1.639555 0.307171 0.165864 -4.060458 -0.110644 0.483612 1.196313 2.398801 -3.606784 -2.007123 -0.556051 -4.408342 -2.572721 0.727069 -3.774256 -1.469885 0.202183 0.169105 0.121611 0.850043 -0.576090 -2.655871 -0.048615 -2.652204 -1.144337 0.772665 3.144218 0.767488 5.185921 4.239589 -0.684223 2.144294 1.259447 -2.225734 9.478113 -2.978412 -0.285110 0.013057 3.928744 -0.148278 1.280884 2.794628 -1.344155 -2.104214 -3.904026 1.630162 0.251518 1.695966 -6.631676 -2.170077 -4.348489 -0.840366 0.813181 4.544966 -0.512764 7.483874 -0.351384 1.058913 -7.592314 0.155400 2.889120 -0.506536 2.470789 2.630414 -3.693277 -5.789943 -0.801910 -2.252713 2.187553 -0.444108 -2.854094 -2.678569 -0.584216 0.557492 -1.638311 1.609077 4.690852 -1.587589 1.809858 0.669627 -0.947528 -0.057427 -1.990575 2.585186 1.195855 -3.122949 4.589831 -0.395255 8.900654 -0.552468 3.501734 -2.751007 0.545058 -0.300894 -1.451771 -2.025235 4.728946 3.125370 1.658218 0.835209 0.618728 -1.787329 2.524646 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = -0.228229 0.893359 3.756670 1.310223 -1.708923 -2.915519 -1.143998 -4.182894 1.762953 1.085116 2.819607 -0.525624 1.435802 0.152337 -0.081646 0.050644 1.285721 -0.603542 0.228278 -1.156386 -1.456379 3.089712 0.554813 -0.683203 0.547277 -3.289381 1.781915 0.980058 1.362171 1.859295 0.490049 -0.059703 -0.581197 1.164423 -1.089247 0.427074 0.316370 0.892651 -1.394655 0.092615 0.539373 -0.158025 2.083621 -0.050186 1.899920 0.875663 1.074030 0.158360 -1.700795 -1.014463 -0.833170 2.003935 -1.037886 1.173493 0.072573 0.037732 0.274491 -1.437194 -0.347944 -1.246812 0.024261 -0.186637 -1.437515 0.252775 -1.910344 0.446649 -1.077231 -1.410880 0.580552 -1.031893 1.312816 0.061079 -0.015133 -0.408364 -3.022798 0.789767 0.659431 0.501309 1.004404 0.290391 -0.251338 0.085953 -1.896293 -1.973469 1.527899 1.707785 0.579316 0.149567 -1.331745 -0.687111 0.030817 -0.182999 0.386562 1.958495 -1.823316 0.772346 -0.731938 -1.074523 -1.899675 -2.887566 0.271005 -1.658530 1.127458 0.857922 -0.901265 0.181664 -0.040584 0.730574 -0.317575 -2.384855 0.362255 -1.168258 0.441355 2.833565 -1.168472 -1.011734 -1.190534 -0.534926 -0.067906 1.608476 0.278082 0.436720 2.488156 1.533141 1.308374 -1.897199 -0.700246 0.937861 1.136178 0.930978 1.078108 -2.072410 -1.070537 0.380947 -1.178494 -3.870278 -1.040112 0.870697 1.960632 -0.564644 -1.401036 0.825511 -1.137167 1.879116 1.795335 0.954998 0.659275 0.159290 -1.551738 0.887808 3.467477 -1.096401 1.620220 -1.508669 -1.894686 2.258011 -0.696029 1.496416 0.405664 0.171896 -0.289079 -1.660844 0.382147 2.469331 0.379677 0.775708 0.536937 0.533193 -0.869246 -2.714917 -3.736669 -0.088757 2.129097 0.694526 3.667264 -2.329459 -1.263113 -0.255343 2.641178 -0.083961 -1.266603 0.836807 -1.289263 1.053369 -3.955480 -3.301125 3.455148 3.490921 1.198688 -0.220137 2.015287 0.774379 -1.909065 -1.708282 -1.703335 1.553408 0.349336 -1.934344 -0.684538 0.227196 -2.552200 -0.306995 -0.369950 0.771245 1.415505 -0.690439 0.676567 -0.808903 -1.972926 -1.612418 1.630187 -1.649058 -0.828100 -0.080730 0.187859 -0.135746 1.153738 -0.793819 -0.623897 0.553660 -1.585746 0.101473 0.941398 1.103701 0.035084 3.602468 2.959605 -0.549374 1.627303 -0.138771 -1.135002 4.250177 -1.576145 0.054898 -0.117869 1.373261 -0.235903 0.966689 1.793658 -0.879536 -1.775817 -2.166667 0.308551 0.048253 0.957188 -1.742837 -2.256863 -3.462198 -0.404411 0.084849 3.207985 0.395736 4.225455 -0.655525 1.001204 -4.410505 0.290676 1.193587 -0.219853 1.804061 0.817864 -1.936207 -2.151927 -0.354848 -2.068345 -0.793206 -0.269682 -2.049753 -1.611094 -1.397390 1.247034 -1.077583 0.454977 1.976476 -0.243162 1.680455 0.200872 -0.444211 -1.331684 0.008318 2.139426 0.100552 -1.494564 2.238248 0.159307 5.401947 -0.413713 1.663235 -0.986422 0.689935 -0.326916 -1.937976 -0.964699 2.583228 2.117040 0.881127 -0.373133 -0.118781 -0.574011 1.446206 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -2.629364 3.148144 11.656781 11.787156 -8.703015 -10.122145 -3.378545 -5.956721 3.979849 0.820378 6.694585 -0.264662 2.740212 0.644387 -0.629416 -4.445878 4.590618 1.581645 -2.704734 -3.992619 -6.850193 7.812230 5.857421 -11.857032 2.032771 -5.660458 7.680195 5.680880 1.697312 7.055830 0.171686 0.930311 -1.222720 5.142861 -6.686105 -2.914408 -3.217828 2.542567 -3.816981 -1.622508 6.050472 0.546337 8.559444 0.333001 2.861155 5.082976 5.330763 -0.310768 -9.893687 -2.368472 -3.970443 5.026160 -3.485572 5.619832 -0.666445 4.090666 4.604186 -6.153947 -0.457360 -10.095687 2.245817 1.430644 -4.856844 -1.198363 -7.847009 0.010088 -1.699089 -7.589529 3.851641 -3.429487 3.445996 -0.773456 -1.142300 -6.982867 -5.545401 2.646140 2.133906 3.687098 3.605648 3.740347 -1.512368 -0.214196 -5.728712 -4.424474 0.672032 -3.316857 2.615721 2.551321 -0.391361 -5.889882 3.562993 0.423649 -1.210344 5.244012 -3.512542 5.295442 -1.566531 -2.736530 -5.923577 -5.432119 -0.214040 -4.584071 3.041607 6.034197 -6.072512 2.127961 0.037452 2.139955 0.250963 -8.219682 -0.037028 -4.200969 -0.358314 6.221938 -3.235475 -4.513285 0.266541 -0.701224 0.262822 6.901936 -0.872342 1.255846 6.674311 4.508302 2.520627 -5.916066 1.423800 -0.671499 2.773352 3.787837 5.798020 -4.042923 -4.222903 -0.048690 -2.505021 -11.534402 -0.005895 4.279297 6.998169 2.007768 -9.913204 5.217207 -4.636280 5.846657 3.446817 6.818411 3.031830 -1.258810 -4.874928 2.254615 10.843821 -4.069613 4.943314 -2.942238 -10.459414 10.704498 0.027125 4.644349 -0.133744 -1.499995 2.216077 -5.353893 1.687139 8.802206 1.126291 -0.308223 6.700466 -0.363870 -1.621614 -10.992429 -10.554298 0.985460 4.978372 5.200315 15.428332 -7.944466 -2.484163 -2.270367 6.187530 -3.582963 -2.761798 -0.027393 -1.632760 3.111487 -17.708698 -11.632905 11.258475 7.478405 0.290878 0.431232 6.771016 -0.582294 0.989794 -6.056475 -6.709621 3.808645 3.462224 3.649766 0.903299 0.428394 -8.343624 0.266511 2.064865 2.069572 6.131742 -9.639078 -3.996808 -5.668198 -8.675295 -7.187237 1.662249 -8.171478 -0.869522 1.777402 -0.325746 -0.232970 2.531553 1.371991 -6.099979 -2.990326 -3.832247 -2.265098 -0.657119 6.617342 1.430330 10.260924 10.280031 -2.124656 4.078504 3.047572 -4.894878 22.196323 -8.047958 -0.048804 -0.239041 9.791809 0.794093 2.925458 6.073604 -2.292782 -1.691973 -7.303253 3.070348 0.945060 1.924392 -17.295956 -3.465683 -11.533315 -1.817546 0.131144 8.975454 -1.308512 14.296504 -2.025589 0.471101 -15.538132 0.185565 6.245308 0.010437 6.074702 4.792638 -7.852440 -11.292274 -1.324069 -4.644952 8.106204 -1.196803 -5.389003 -4.747715 1.167039 -0.510809 -3.299383 3.949301 10.393056 -4.861770 3.589464 0.787129 -1.471702 -0.332689 -5.017268 4.136614 2.747990 -4.351468 9.780431 -0.201369 15.312905 1.291450 6.487202 -5.136550 1.513497 -0.289123 -5.366607 -4.667128 8.006738 5.220674 2.406367 3.007089 2.426595 -2.811814 5.390095 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = -0.610048 0.899212 6.047945 2.502749 -0.917401 -3.016585 -1.691959 -4.883471 2.976975 1.177410 4.315287 -0.263323 2.083468 0.330723 -0.064975 -0.747248 1.557485 -1.390010 0.222295 -1.340894 -0.115780 5.507177 2.083213 -2.338617 0.285375 -6.029511 2.181810 1.110212 2.723882 3.888651 0.151423 -0.035966 0.324107 1.891782 -2.288082 -0.203270 -0.118035 1.034408 -1.791916 -0.582819 1.437078 1.477052 2.727531 0.530324 2.280718 0.822590 1.959686 -0.672149 -1.388206 -1.312612 -2.301566 3.583145 -2.179680 1.439466 -0.558686 1.087506 0.515497 -2.201537 -0.862339 -3.330579 0.287950 1.586901 -1.987634 -0.089382 -2.780084 1.104469 -1.623031 -1.133627 0.880599 -1.336390 2.539216 0.851899 0.848045 -1.717391 -4.359471 1.868975 -0.287709 1.075503 1.414178 -0.007305 -1.408267 0.645425 -1.801982 -2.636312 2.333236 1.650852 0.179542 0.161144 -0.429523 -1.225259 -0.811082 0.208718 -0.795636 2.775770 -2.514306 2.205102 -0.716792 -1.110511 -0.992385 -1.869538 -0.460242 -3.425222 0.802727 2.380162 -0.700512 0.547266 -0.470311 0.746700 -0.651652 -3.549722 0.838377 -0.346794 -1.064985 3.635706 -2.546631 -0.896017 -0.701447 0.321052 0.031020 3.164950 -0.248527 1.766183 2.924932 2.346824 1.267486 -2.736423 0.392187 1.611542 2.253899 1.551579 1.976644 -2.603275 -2.022169 -0.220063 -0.331803 -5.789810 -0.336251 2.262224 2.931106 0.263049 -3.736395 1.770524 -1.471273 3.460124 3.492883 1.278309 1.489674 0.085987 -2.490273 2.081836 6.280729 -2.170326 2.820954 -2.578306 -2.997020 4.472782 -2.379719 2.783153 -0.459567 1.129126 0.993065 -3.211697 0.264620 4.334518 0.741636 1.956230 1.580758 0.109425 0.732626 -4.929196 -5.208127 -1.313824 2.170785 0.639763 5.420605 -2.399813 -1.492518 -0.395054 3.205516 -0.607063 -1.608019 0.571028 -1.677700 1.265972 -7.481094 -5.047583 5.689458 5.518193 0.823789 0.278312 2.959555 2.387931 -0.829230 -1.715359 -2.058674 2.761574 0.777490 -1.524622 -0.286332 -0.184903 -3.160391 -1.318031 -0.039231 0.543077 1.429444 -1.947946 -0.307530 -0.177803 -3.867107 -2.240571 2.370673 -3.812645 -1.975188 -0.465922 0.063470 -0.468559 1.242982 -0.956866 -0.657746 1.962637 -2.308313 -0.791787 1.045439 2.065630 0.762032 3.423451 4.350658 -0.149735 2.052050 0.962895 -1.902133 6.878307 -2.618159 -0.906004 -0.242834 2.096579 -0.289144 2.195714 1.031323 -1.094973 -2.536867 -3.625795 2.196693 -0.036359 1.512287 -2.737646 -3.287665 -3.185694 -1.065693 1.223408 4.385190 0.343813 7.268026 -1.379810 0.955615 -6.876460 0.186216 2.686433 0.149265 2.766676 2.020025 -2.427132 -3.911813 -1.052291 -1.714525 0.994331 -0.789374 -4.282492 -2.462855 -2.740418 2.653812 -2.808997 1.756069 2.891695 -0.122126 2.824519 0.517032 -1.075947 -2.390878 -0.009425 1.574121 1.483560 -2.318164 3.328297 -0.934726 6.602831 -2.159291 2.972458 -2.821953 1.546621 -1.226900 -2.210416 -1.048183 4.664959 3.375530 0.921737 -0.022589 -0.737485 -1.162946 2.126904 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -20.648504 13.775379 118.401515 69.987039 -13.855522 -48.431545 -31.681231 -59.569874 53.033994 15.190744 74.918450 0.303955 31.310822 11.511336 -3.308196 -36.066724 23.959872 -22.959511 -7.526614 -22.594153 2.122963 99.897394 60.509397 -80.920125 2.811299 -114.558390 47.906107 24.134101 43.108307 83.671345 -5.515252 5.069824 16.300118 42.249589 -58.570490 -19.387055 -15.440098 16.542884 -21.839410 -20.970786 48.516504 48.513699 52.527770 17.016687 32.294951 24.542890 38.452611 -22.530799 -32.026211 -22.209043 -47.451294 63.034183 -44.438173 29.166012 -16.358356 46.569431 20.442520 -54.960301 -16.320478 -93.198368 16.445191 52.195051 -38.152555 -9.153813 -56.199245 18.040996 -21.551252 -22.506805 24.037785 -29.581871 48.075190 14.852932 15.412854 -57.987854 -63.840816 40.477774 -13.483954 23.860456 26.266544 1.631761 -43.340407 16.874584 -27.329092 -42.753560 28.950201 3.787122 -0.197271 8.601035 18.162911 -36.479446 -10.520273 8.298315 -32.459214 54.285384 -38.855374 53.551832 -3.671693 -17.295289 -10.417669 -2.781232 -15.631235 -69.315882 9.251534 67.170159 -22.900283 15.326055 -8.157638 10.819243 -7.960717 -66.278457 12.999847 -3.657321 -27.434700 52.723379 -51.682718 -17.137239 3.351138 12.180434 6.837767 71.102648 -17.808966 35.076775 52.514495 40.828801 14.582834 -50.205887 28.258264 21.885463 42.151310 30.330014 44.089700 -44.711663 -39.451374 -13.992415 7.094547 -105.962676 11.276292 45.938862 54.094636 21.035232 -100.208675 48.848251 -27.539897 67.979113 64.503920 35.512908 32.432086 -3.419655 -46.381955 38.355631 127.532761 -44.625898 52.672611 -48.503351 -75.864929 102.799474 -46.870534 59.189481 -15.738529 22.231671 36.435590 -66.960957 8.750862 89.034537 11.394140 35.683692 51.208674 -8.915633 35.774107 -101.364280 -93.081310 -28.620845 25.962945 19.109808 119.212512 -42.581810 -18.736189 -15.206668 54.235315 -22.096176 -22.297795 -2.850587 -19.076983 19.051193 -164.362962 -99.388651 106.886844 96.421795 0.341072 11.723800 61.195861 38.392439 24.806918 -26.106063 -40.066579 51.800342 25.029709 20.437103 15.039266 -9.477330 -55.173072 -26.594985 7.567708 4.266533 29.634113 -69.306694 -37.727996 -7.190590 -86.585679 -49.220298 30.566444 -89.718908 -37.348896 -7.095856 -0.526637 -13.801207 15.770264 -4.772916 -24.775115 29.806539 -37.212892 -26.888685 11.981669 47.406582 21.712237 47.921294 81.323136 -2.614283 29.634481 33.912305 -33.336197 159.541822 -59.167496 -26.873552 -2.512723 57.121358 1.137716 45.018494 9.242676 -17.050954 -31.341207 -69.120441 65.744558 -1.361943 22.236393 -90.283009 -49.374763 -50.941635 -27.371772 27.512533 77.793741 0.361213 146.475308 -21.762479 7.523801 -135.731125 -0.641297 65.263348 7.600298 49.253610 49.337466 -49.110783 -94.192522 -22.076118 -16.392315 63.836597 -16.773546 -85.507514 -46.936898 -40.015590 39.839213 -57.299849 50.091301 69.560148 -10.065632 43.822195 12.548769 -21.725676 -34.983674 -18.199405 9.807647 42.169786 -41.266443 69.160733 -28.591139 104.820464 -47.142204 66.171133 -65.260764 35.617429 -26.785847 -33.856781 -21.473716 89.560502 55.550001 13.744477 14.481045 -10.542012 -28.516330 42.537440 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = -0.267163 0.783460 3.335167 0.831202 -1.202847 -2.233575 -0.924991 -3.746720 1.451885 0.984530 2.657211 -0.433320 1.346545 0.320880 0.052009 0.084946 1.209914 -0.700291 0.463161 -0.999447 -0.768409 2.517250 0.560837 -0.215293 0.381963 -2.706929 1.277845 0.642420 1.241603 1.704261 0.559380 -0.171754 -0.570489 0.921205 -0.674962 0.431839 0.451074 0.764645 -1.217534 0.180057 0.131031 -0.148119 1.689007 0.135503 1.727034 0.642054 0.871213 0.178259 -1.172640 -0.845228 -0.695478 1.718578 -1.075237 0.848815 0.159038 -0.183817 0.074009 -0.937855 -0.282008 -1.160910 -0.096840 -0.318079 -1.075827 0.322995 -1.505575 0.465829 -1.272552 -0.971862 0.243349 -0.801611 1.202766 0.193620 0.202537 0.006236 -2.636852 0.702072 0.377133 0.387885 0.910592 0.017367 -0.298015 0.101888 -1.450928 -1.746517 1.409157 1.542018 0.391781 -0.001408 -1.223026 -0.229373 -0.154288 -0.114284 0.269206 1.620277 -1.527933 0.813782 -0.590771 -0.953347 -1.328519 -2.537627 0.196646 -1.508376 0.907360 0.551892 -0.595079 -0.044749 -0.694273 0.611743 -0.508108 -1.928510 0.566087 -0.722639 0.145649 2.354366 -1.272266 -0.711124 -1.131641 -0.356275 0.202736 1.375136 0.365251 0.495370 1.709327 1.349208 1.049859 -1.595117 -0.581227 0.788709 1.056461 0.806632 0.904627 -1.527692 -0.998756 0.410539 -1.069826 -3.192483 -0.785691 0.895981 1.591800 -0.438732 -1.023996 0.363552 -1.084805 1.577148 1.856770 0.936425 0.612717 0.160333 -1.299835 0.777577 2.812940 -1.005765 1.590151 -1.039566 -1.282304 1.720877 -0.930888 1.309206 0.219683 0.289662 -0.266043 -1.347957 -0.016439 2.127773 0.660732 0.823374 0.239438 0.460523 -0.632968 -2.267259 -3.145693 -0.184484 1.972382 0.429048 2.517422 -1.746632 -1.048926 -0.017418 2.060999 0.161655 -1.332550 0.709641 -0.969890 0.843292 -3.428239 -2.611255 2.923763 3.030743 1.088089 -0.318714 1.313309 0.920062 -1.896100 -1.402846 -1.307141 1.396068 -0.283281 -2.073733 -0.801961 0.229756 -2.049905 -0.219121 -0.383235 0.688947 1.163026 -0.394511 0.738664 -0.142085 -1.501527 -1.115262 1.453984 -1.264250 -1.124184 -0.144092 0.065983 0.144201 0.778859 -0.770291 -0.274798 0.877230 -1.655500 -0.074545 0.864213 1.001401 0.076814 3.126032 2.221607 -0.272250 1.076862 -0.176396 -1.108750 3.223977 -1.228591 0.110319 -0.143851 0.900568 -0.246509 0.814135 1.432001 -0.755750 -1.987239 -1.773776 0.066957 0.072584 1.072449 -0.895634 -2.221543 -2.579852 -0.052223 0.211033 2.692927 0.281807 3.626440 -0.499581 0.988860 -3.382464 0.236497 0.915803 -0.234829 1.534839 0.685503 -1.541232 -1.352434 -0.412926 -1.876545 -0.690385 -0.101289 -1.544143 -1.260369 -1.263814 1.257389 -0.956903 0.232704 1.133138 -0.211743 1.649404 0.546319 -0.475083 -1.229399 0.279517 2.007113 0.069278 -1.393217 1.856966 0.151188 4.544309 -0.420412 1.237739 -0.794634 0.412100 -0.264892 -1.301592 -0.784449 2.375649 2.170595 0.850352 -0.496970 -0.236863 -0.313730 1.010698 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -0.648179 2.187792 9.817329 7.275199 -3.580175 -5.391712 -2.236169 -6.759682 4.096298 1.311732 5.498954 -0.731651 2.196169 1.316176 -0.807748 -2.175574 2.414635 0.259059 -0.621818 -2.141768 -2.426142 7.083698 3.919361 -6.811046 0.513745 -6.797547 4.198285 2.781141 3.374809 5.147080 0.475515 0.089861 0.182195 3.410542 -5.010427 -1.709302 -1.414420 1.680592 -3.444308 -1.556964 2.543846 1.929603 4.993121 0.728156 3.083104 2.008858 4.066419 -0.762589 -4.054996 -0.760228 -3.124373 5.578056 -2.444012 3.104466 -0.069886 2.496275 1.604266 -4.244766 -0.633475 -6.496433 1.014158 2.392394 -3.277446 -0.412704 -5.235110 0.550264 -1.977771 -3.732457 1.980532 -1.766227 3.285665 0.494245 0.601164 -5.006731 -5.739235 2.715039 0.139650 1.789581 2.486909 1.536442 -1.239743 0.614550 -3.248484 -3.506100 2.202843 0.533893 0.353771 0.923317 0.373503 -3.419831 0.674993 -0.220440 -1.399822 4.433104 -3.238744 4.858581 -1.589279 -1.691566 -2.787059 -3.494012 -0.572605 -4.580757 2.083095 3.428178 -2.311539 1.907642 0.370608 1.550251 0.168560 -5.649770 0.576951 -1.386112 -0.070486 5.284222 -3.176603 -2.767083 -0.135645 0.066780 -0.578292 4.979405 -0.692395 1.732379 4.420833 3.037104 1.955600 -4.112981 1.336959 1.326938 2.076898 3.079748 3.511816 -3.558497 -2.684404 -0.302308 -0.124619 -8.927070 0.468573 3.428518 3.979192 0.420532 -6.105581 2.083962 -2.399346 5.088228 3.955841 3.795369 2.505214 -0.257026 -2.722500 1.812385 9.457769 -2.784746 3.714015 -3.216595 -6.409669 6.781756 -2.240649 4.667556 -1.151681 0.779832 2.163842 -4.654337 0.867836 6.799821 0.760969 0.299469 3.900738 -0.239152 -0.435940 -8.140392 -7.839058 -0.216647 2.860629 1.942469 10.242935 -4.297867 -2.735975 -1.029947 4.020864 -1.137746 -1.610489 0.803571 -2.104734 2.087725 -12.498893 -8.477207 7.853593 6.490755 0.728107 -0.777084 4.936996 0.846273 -0.306575 -4.273315 -3.884344 3.117679 1.732883 0.388971 0.036310 -0.262640 -5.591072 -0.212372 0.781887 0.965663 4.035090 -4.901770 -1.901416 -2.436818 -6.585807 -4.550541 2.927344 -5.992216 -2.042026 0.070487 0.345287 -0.564211 1.870315 -0.653592 -2.985374 0.779968 -3.314118 -1.544400 0.590904 3.770976 0.271914 6.904533 7.002315 -0.269908 3.715634 2.072146 -3.197843 14.762084 -4.887615 -0.943948 -0.201981 4.413938 -0.838123 2.599538 2.772368 -1.841487 -3.407349 -4.886408 2.897825 -0.171532 1.791256 -8.600786 -3.941717 -5.652535 -1.798285 0.622206 5.649795 0.390778 10.969462 -1.800678 1.246586 -11.194102 0.185294 4.608705 0.119226 4.867251 3.503137 -5.321386 -6.453792 -1.211379 -2.658340 4.066331 -1.075771 -5.905824 -3.563783 -1.771700 1.559269 -3.158364 3.037923 6.445204 -2.319838 3.208820 -0.034265 -1.140986 -1.338649 -1.932705 3.165611 1.770317 -3.882214 5.615586 -1.347910 11.597652 -1.282600 4.524910 -4.283536 1.428855 -1.201367 -2.895917 -2.518723 6.633007 4.489401 1.934705 0.501945 0.096848 -2.399156 2.962131 -PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.840227 0.247064 4.634450 2.036445 -1.721724 -2.877431 -1.208438 -4.966839 3.225303 1.619063 3.631100 0.321778 2.483372 -1.163462 -0.218748 -0.282839 1.925165 -0.934496 0.394026 -1.180498 -0.109091 5.441225 1.110463 -1.386881 0.451003 -4.525879 1.951544 0.769167 2.517043 3.232567 0.651361 0.016934 -0.722757 1.112877 -1.100362 0.625118 0.083442 1.134878 -2.138165 -0.813191 0.759319 -0.141118 2.535404 -0.041630 2.820809 -0.506360 1.488949 -0.370010 -1.542165 -1.537493 -1.427981 2.286818 -1.447102 1.626538 0.100576 -0.207588 0.168548 -0.909094 -0.417149 -2.561783 0.147951 -0.107469 -1.491163 0.103632 -2.115282 0.773448 -1.365990 -1.039704 0.328841 -1.897920 1.752645 0.492512 0.879879 -1.025715 -4.688504 1.012532 0.283059 0.388286 1.423370 1.537480 -0.852999 -0.569028 -1.914849 -2.388542 2.196650 2.269848 -0.221650 0.489661 -2.035155 -0.754604 -0.254298 -0.137403 -0.038096 2.108072 -3.017234 1.234822 -0.580649 -1.062488 -0.398856 -2.824337 0.126718 -2.388795 0.650752 1.214058 -0.549671 0.354778 -0.084137 0.755521 -0.684358 -2.505354 1.318648 -0.810970 -0.600623 3.662768 -1.592011 -1.125096 -1.764560 0.154236 0.021029 2.301983 -0.098031 1.333284 2.492547 1.791722 1.994758 -2.580216 -0.261621 2.442676 1.918796 0.866192 0.769693 -2.009619 -1.289133 0.567024 -0.937781 -4.686509 -1.760894 1.905671 2.747740 -0.350841 -1.835081 0.543653 -1.096021 2.950808 2.897620 0.379754 1.042683 0.839254 -2.255877 1.456566 4.944065 -1.247951 1.678558 -1.641771 -2.339536 3.397282 -1.626765 2.170966 -0.558999 0.869091 -0.084176 -2.315124 0.645805 3.260783 0.081340 1.361748 -0.462731 0.843157 -0.646875 -4.072090 -5.261885 -1.063897 2.717666 1.682847 4.963956 -2.398081 -1.415623 -0.172351 2.467044 0.223622 -1.740847 1.194473 -2.096310 1.412517 -6.389464 -4.325863 5.619842 4.874041 1.493283 0.113701 2.343933 1.423410 -1.844511 -1.937211 -1.938875 1.931494 0.676404 -2.701135 -0.495218 0.466392 -3.235043 -1.426317 -0.057204 0.355915 1.464321 -1.023305 1.421589 -0.473110 -2.092617 -1.804859 2.750379 -2.187133 -1.718856 -0.722787 0.348933 0.208634 1.609803 -0.951671 -0.196111 1.033747 -1.708635 -0.350059 0.733982 1.130982 0.058194 3.021171 4.790183 -0.586143 1.556782 -0.173959 -1.883312 5.688951 -2.319309 -0.517238 -0.340594 0.951170 0.494894 1.386007 1.619851 -1.224946 -1.651911 -2.836037 0.621455 0.223269 1.674182 -3.149862 -3.549651 -3.528060 -0.190476 0.097464 3.373793 0.523227 6.099490 -1.993561 1.039852 -6.479247 0.333871 2.316926 0.214483 2.551784 0.952403 -2.104188 -2.730720 -0.721185 -2.261437 -0.014717 -0.621630 -2.991086 -1.757142 -2.408642 2.614701 -2.123318 0.906202 2.459068 -0.564080 3.132218 -0.065668 -0.518912 -2.376171 0.603770 0.946529 0.756763 -1.784770 2.678371 -0.234191 5.851524 -1.385577 1.787236 -1.514910 2.182961 -1.677580 -3.155796 -0.958739 3.465696 3.091760 1.063485 -0.454858 -0.468492 -1.036594 1.949701 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 1.062978 3.456230 7.763011 2.585484 -4.431895 -4.862892 -1.763586 -9.276586 3.714206 3.031422 4.532428 -0.959045 2.457411 0.189085 -1.401711 1.790528 3.008235 -0.144307 -0.687645 -3.362232 -5.176017 3.942720 0.189549 -0.835570 2.769915 -6.621866 4.754381 0.035172 2.636751 2.317798 2.566240 0.482155 -0.851027 3.565627 -0.124949 1.283863 0.355941 2.167697 -2.881521 1.333550 1.681534 -0.566130 3.508205 2.911017 3.716051 3.372441 1.802221 0.135857 -3.566039 -0.736339 -1.735399 3.806820 -2.481472 3.188988 -1.223430 0.516701 0.214465 -3.437431 0.852354 -0.811085 -0.929855 -1.708359 -2.784590 0.291425 -4.208199 0.311766 -2.487632 -3.694775 -0.845232 0.201066 3.237463 0.610305 -0.998959 -0.624471 -5.429953 1.363302 1.794936 1.038186 4.165943 -0.182164 -0.427971 -0.922398 -4.496827 -5.258702 5.085004 2.299505 1.629850 0.683284 -0.830021 -3.006753 -1.048636 -1.069079 1.804003 5.189437 -4.542181 0.834138 -2.081782 -2.740808 -4.004659 -6.555292 0.212439 -3.582891 2.528964 0.568138 -3.178646 2.020847 0.620318 1.625450 0.779699 -2.579597 0.685048 -2.170897 1.333914 5.959212 -0.422856 -4.190626 -1.428579 -1.262080 -0.070636 2.908942 1.696805 -0.318794 8.082305 2.655000 3.321644 -2.833052 -0.763412 0.884839 -0.116959 2.059312 3.366158 -4.622846 -3.271364 1.278076 -1.194054 -7.480671 -0.813220 0.625793 3.690389 -2.523928 -2.461873 1.358618 -1.935184 1.405296 3.034045 1.284331 2.162102 -0.566435 -2.483052 1.075973 7.241323 -2.361882 2.146855 -3.751199 -2.027263 3.623032 -1.009821 1.862367 -0.305176 -0.881359 -0.456728 -3.361742 0.209926 5.673447 -0.418502 -1.176266 2.105220 1.707340 -3.276041 -4.873073 -6.346887 -0.409351 3.783325 0.644927 6.731335 -4.681337 -0.622854 -1.743904 4.752720 0.475743 -0.951268 1.795093 -2.419069 1.786797 -5.126759 -6.120895 7.365830 6.141230 2.148274 -2.340089 2.519798 0.997151 -4.546714 -5.168507 -3.443377 1.437095 1.654878 -3.979006 -3.461861 1.261520 -5.189949 -0.492413 -0.162191 1.603439 4.394340 -1.320100 1.438972 -1.146515 -3.112764 -4.284605 2.924086 -2.366512 -1.643563 0.422791 1.148163 0.038974 2.644490 -0.993470 -2.257152 0.087275 -2.401182 -0.542418 2.349597 4.247522 -0.172890 7.199025 5.520250 -1.433692 2.326187 0.281729 -2.726709 7.012039 -2.078249 0.509811 0.553491 2.224227 -1.242825 1.931988 4.270000 -2.118156 -3.882890 -4.200364 0.393945 -0.750915 0.349259 -2.261340 -1.801474 -6.386026 -0.774069 -1.191064 5.441099 0.712835 7.855052 -0.412749 1.503953 -6.843845 0.450223 3.258898 -1.066322 3.833432 2.911203 -4.607900 -2.155521 -1.662083 -4.559680 -2.208061 -0.185565 -0.764461 -3.777732 -0.616266 1.768790 -1.695687 1.481546 4.319827 0.194434 2.891871 -1.539165 0.299298 -2.590265 0.422855 6.560622 0.266546 -3.307500 3.452683 0.411802 10.321055 0.389394 2.981764 -2.081883 -2.154243 0.198420 -3.214233 -3.448050 4.971635 3.419332 2.848760 0.442970 -0.434717 -0.101580 5.039551 -PE-benchmarks/permutations-of-a-given-string.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(char&, char&) = -0.093114 0.400420 1.790478 1.625985 -0.817618 -1.762830 -0.417794 -1.949782 1.397295 0.495146 1.349047 0.309607 1.318256 -0.749259 -0.262467 -0.236912 1.055938 0.424907 -0.126719 -0.593210 -0.584188 2.685113 0.405196 -1.251935 0.235210 -1.335244 1.342147 0.769976 1.223096 1.675384 0.154181 0.249903 0.002321 0.698018 -0.997456 -0.254836 -0.797966 0.747575 -1.053964 -0.580161 0.665090 -0.345351 1.570543 0.351219 0.712778 0.060117 0.887507 -0.222818 -0.676773 -0.541546 -0.859934 0.714463 -0.579022 0.979522 -0.858153 -0.189495 0.802018 0.062685 0.241633 -1.240184 0.346658 0.054454 -0.994849 -0.300992 -1.341866 0.121556 -0.693070 -1.143369 -0.098727 -0.641717 0.708217 0.241940 -0.040851 -1.384137 -2.491948 0.269344 0.337101 0.235443 0.945759 1.115381 -0.380249 -0.577148 -1.225114 -1.149775 1.358719 0.409322 0.218857 0.961331 -0.912097 -1.178794 0.001005 0.372341 0.407878 0.826004 -0.767400 0.849652 -0.223774 -0.299058 -0.102260 -1.331188 0.155340 -0.962597 0.220156 0.367681 -0.124108 0.457138 0.231556 0.268554 -0.219718 -1.273086 0.381735 -0.721175 -0.688318 1.588925 -0.228299 -0.876893 -0.444392 0.094390 0.004743 1.136798 0.083639 0.377276 1.190074 0.625228 0.690319 -1.272469 0.149667 0.887983 0.444964 0.542599 0.416678 -0.547292 -0.820420 0.269174 -0.541700 -2.328904 -0.525658 1.156567 1.159634 -0.487008 -0.965035 1.084116 -0.672084 0.821719 1.349877 0.286874 0.726203 0.237326 -0.991887 0.644670 2.108339 -0.622412 0.667562 -0.816415 -1.488432 2.069984 -0.353248 0.738577 -0.646276 -0.302424 0.097599 -0.704837 0.800348 1.707860 -0.362339 0.184953 0.368125 0.163714 -0.569808 -1.731369 -2.240865 -0.289392 1.496508 1.352442 2.676032 -1.075648 -0.250556 0.092642 0.611989 -0.216048 -0.472408 0.548806 -0.855066 0.807617 -3.718560 -2.152908 2.524745 1.338334 0.678650 -0.047666 0.810717 0.545922 0.207569 -1.135506 -0.911191 0.671759 0.807503 -0.838964 -0.214802 0.191116 -1.639270 -0.359763 0.331757 0.067218 0.621811 -1.022968 0.471135 -1.525960 -1.044823 -1.266092 1.034483 -1.261399 -0.151563 -0.153266 -0.086961 -0.263868 0.674019 0.068783 -0.322711 -0.092967 -0.459872 -0.252623 -0.362872 0.669661 0.097388 1.434727 2.460524 -0.697821 0.506238 0.271077 -0.940294 3.284818 -1.313404 -0.070986 0.042447 1.243242 0.358598 0.833285 1.072423 -0.533380 -0.241316 -1.638574 0.166512 0.816783 0.427195 -1.962375 -0.673775 -1.870787 -0.177074 -0.358922 2.028609 -0.156943 2.702792 -1.206615 0.380515 -2.628467 0.261718 0.881147 -0.027037 1.433005 0.681100 -1.198596 -1.009352 -0.504507 -0.978335 0.462842 -0.330185 -1.248369 -0.924637 -0.343580 0.083402 -1.344592 0.653369 1.353806 -0.794073 1.184726 -0.815164 -0.018864 -0.946991 0.079583 0.580391 0.383049 -0.775800 0.997786 -0.140022 2.488323 -0.201459 1.260724 -0.966604 1.017699 -0.786614 -1.762563 -0.813318 1.742182 1.226917 0.300150 0.540765 0.283924 0.045643 1.154984 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = -0.901388 2.547312 10.031276 5.554335 -3.269540 -4.998896 -2.353973 -6.679263 3.451381 1.531517 5.942175 -0.941812 2.672719 1.485008 -0.182785 -1.486071 3.336198 -1.155621 0.503230 -2.458160 -1.453984 7.566467 3.271507 -5.726187 0.463182 -8.283990 5.422271 2.618486 3.314303 5.586982 0.815214 0.590373 0.404951 3.529116 -4.336609 -1.865395 -0.633441 2.297759 -2.989991 -0.476247 2.687560 2.704449 4.401121 0.344962 2.544854 3.158357 4.200772 -0.449873 -3.611587 -1.359369 -3.817653 5.244409 -2.970509 2.934594 -1.004780 1.526349 1.791692 -4.270823 -1.104935 -5.832846 0.696193 2.385739 -3.493302 -0.083618 -5.507239 1.300161 -2.014143 -3.344918 1.955604 -0.215972 3.440957 1.020578 1.121100 -3.959253 -6.339492 3.389912 0.175027 2.420313 2.360610 -0.322012 -1.617581 1.297300 -3.552137 -4.453739 2.562632 1.746760 1.068926 -0.128155 0.498813 -2.539486 -0.746147 0.194212 -2.100893 5.058946 -2.658824 4.492889 -1.873014 -1.694382 -3.201094 -3.254670 -0.924440 -5.436483 1.845247 4.369416 -2.367983 1.307979 -0.671797 1.412747 -0.234556 -5.737617 0.572201 -1.967973 -0.611859 5.589039 -3.043917 -1.989577 -0.879733 0.269596 0.551345 5.165384 -1.054446 2.489597 5.544014 3.874534 1.324662 -4.355114 0.807439 1.363582 2.526177 2.789425 4.194006 -4.701255 -3.743350 -1.101746 -0.306035 -8.310463 0.511352 3.371736 4.200910 -0.733958 -6.492411 3.459140 -2.868041 5.768103 4.959133 3.441968 2.280797 -0.134050 -3.139413 2.893407 9.863933 -3.450338 3.907828 -4.262439 -5.349483 7.395309 -1.680626 4.539155 -0.338383 1.354226 1.089359 -5.301625 0.524061 7.099750 1.736711 1.940208 5.039838 -0.410234 1.305904 -7.850106 -7.320597 -0.757145 3.034033 1.007172 10.450978 -4.422327 -2.120563 -0.833082 3.983186 -0.962612 -2.085565 0.162798 -1.894760 1.814166 -12.005250 -8.528019 8.120055 6.426947 0.085299 -0.225446 4.738958 2.189180 -0.710805 -4.096128 -3.546698 4.529935 0.594581 -0.152775 0.002414 0.763818 -5.704320 -0.866941 0.584269 1.382442 4.498908 -4.448286 -2.407140 -1.588872 -7.447716 -4.507218 2.855233 -5.799150 -3.199881 0.199922 0.257092 -0.104949 1.753603 -0.588915 -2.156419 1.647437 -3.446913 -2.177027 1.165289 4.201493 0.575455 5.964918 6.699647 0.230989 2.886775 2.299521 -3.170229 12.995138 -3.739237 -1.443837 -0.116022 4.074901 -0.737663 2.934780 2.835200 -1.623617 -3.880917 -6.415759 4.050951 -0.311411 1.762059 -7.421508 -3.243005 -5.645595 -1.737462 1.887817 7.535672 0.145228 11.469958 -1.356903 0.846356 -10.708425 0.303099 3.759401 0.198408 4.437491 3.947401 -4.971212 -5.560145 -1.454024 -2.871885 2.647269 -1.289745 -6.009384 -4.698057 -1.658325 1.599049 -3.422409 2.750144 6.543775 -1.230691 3.406766 1.032706 -1.669196 -2.232874 -1.476612 3.621094 2.303252 -3.823707 5.957604 -1.884969 11.641820 -2.259075 4.712974 -4.478320 1.100249 -0.555194 -2.923509 -2.261642 7.477186 3.944606 1.708621 1.348927 -0.571393 -1.668796 4.355422 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.343940 0.273995 1.190083 1.539681 -0.812647 -1.435951 -0.328268 -0.767107 0.778153 0.172314 0.811569 0.312327 0.833668 -0.449574 -0.178333 -0.510830 0.754649 0.330710 -0.217236 -0.486977 -0.681455 1.742065 0.761052 -1.467385 0.218695 -0.711658 1.251201 0.589575 0.505437 1.488116 0.031781 0.280355 -0.020915 0.633708 -0.821201 -0.316768 -0.805314 0.585835 -0.484662 -0.317549 0.831236 -0.128717 1.259685 0.402789 0.317381 0.579147 0.571921 -0.081606 -0.815932 -0.480092 -0.590170 0.135329 -0.594175 0.796873 -0.813379 0.250902 0.928127 -0.115757 0.145186 -1.489642 0.318309 0.051051 -0.771386 -0.238673 -1.154079 0.019374 -0.471008 -1.038084 -0.048576 -0.486406 0.537235 0.190501 -0.126056 -1.193052 -1.383485 0.147030 0.184274 0.360204 0.728468 0.776647 -0.658911 -0.342803 -0.969413 -0.782265 0.609670 -0.373963 0.306715 0.802204 -0.273408 -1.042603 0.167423 0.357812 0.182200 0.567569 -0.200434 0.704615 0.095726 -0.166584 -0.130576 -0.685958 0.093511 -0.579393 0.145318 0.591760 -0.341392 0.174176 -0.091263 0.156880 -0.196860 -0.934149 0.307959 -0.668472 -0.611131 0.840158 -0.171444 -0.570691 -0.123770 0.001647 0.291306 1.079015 -0.008290 0.154222 0.759012 0.472986 0.286778 -0.842547 0.293700 0.241682 0.357289 0.334338 0.529535 -0.237772 -0.720348 0.153867 -0.392481 -1.509321 -0.183509 0.900704 0.818185 -0.102083 -1.144148 1.180392 -0.662584 0.457906 0.897129 0.550347 0.614933 -0.030945 -0.740667 0.466659 1.565889 -0.479969 0.518680 -0.423927 -1.439921 1.944556 -0.181133 0.537579 -0.424779 -0.426615 0.109300 -0.434093 0.644881 1.225462 -0.156864 0.053543 0.731265 0.006545 -0.193027 -1.263358 -1.452533 -0.068386 1.120026 1.181270 2.187081 -0.891900 0.183021 -0.061382 0.334780 -0.258585 -0.289120 0.033344 -0.241901 0.478931 -3.159399 -1.525342 1.887502 0.689344 0.336969 0.131564 0.492217 0.273178 0.814954 -0.792440 -0.763774 0.423841 0.537571 0.230683 0.063322 0.131626 -1.176088 -0.224294 0.358766 0.114301 0.656950 -1.337162 -0.289794 -1.306265 -0.875188 -1.038366 0.279537 -1.110295 -0.110133 0.150292 -0.175686 -0.187399 0.232114 0.461168 -0.370145 -0.399012 -0.285991 -0.355466 -0.377962 0.711733 0.196238 0.980634 1.750856 -0.642000 -0.058553 0.387943 -0.680715 2.859078 -1.089182 0.006432 0.047612 1.459381 0.564137 0.465137 0.875454 -0.315827 0.103310 -1.142577 0.419253 0.832456 0.175960 -2.218340 -0.295094 -1.507993 -0.082073 -0.248674 1.568202 -0.321454 1.963756 -0.698906 0.122563 -1.855078 0.196412 0.769926 0.038587 0.860305 0.623736 -0.886602 -0.943247 -0.457168 -0.692313 1.122983 -0.285425 -0.690597 -0.575826 0.321029 -0.437165 -0.895757 0.613500 1.223788 -0.868753 0.632330 -0.378348 -0.010275 -0.498897 -0.344616 0.284714 0.379089 -0.486267 0.938378 -0.110056 1.461687 0.065059 1.004029 -0.676825 0.767225 -0.482871 -1.154699 -0.660187 1.243657 0.697691 0.066664 0.865456 0.390968 0.186270 0.826578 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(int&, int&) = -0.093114 0.400420 1.790478 1.625985 -0.817618 -1.762830 -0.417794 -1.949782 1.397295 0.495146 1.349047 0.309607 1.318256 -0.749259 -0.262467 -0.236912 1.055938 0.424907 -0.126719 -0.593210 -0.584188 2.685113 0.405196 -1.251935 0.235210 -1.335244 1.342147 0.769976 1.223096 1.675384 0.154181 0.249903 0.002321 0.698018 -0.997456 -0.254836 -0.797966 0.747575 -1.053964 -0.580161 0.665090 -0.345351 1.570543 0.351219 0.712778 0.060117 0.887507 -0.222818 -0.676773 -0.541546 -0.859934 0.714463 -0.579022 0.979522 -0.858153 -0.189495 0.802018 0.062685 0.241633 -1.240184 0.346658 0.054454 -0.994849 -0.300992 -1.341866 0.121556 -0.693070 -1.143369 -0.098727 -0.641717 0.708217 0.241940 -0.040851 -1.384137 -2.491948 0.269344 0.337101 0.235443 0.945759 1.115381 -0.380249 -0.577148 -1.225114 -1.149775 1.358719 0.409322 0.218857 0.961331 -0.912097 -1.178794 0.001005 0.372341 0.407878 0.826004 -0.767400 0.849652 -0.223774 -0.299058 -0.102260 -1.331188 0.155340 -0.962597 0.220156 0.367681 -0.124108 0.457138 0.231556 0.268554 -0.219718 -1.273086 0.381735 -0.721175 -0.688318 1.588925 -0.228299 -0.876893 -0.444392 0.094390 0.004743 1.136798 0.083639 0.377276 1.190074 0.625228 0.690319 -1.272469 0.149667 0.887983 0.444964 0.542599 0.416678 -0.547292 -0.820420 0.269174 -0.541700 -2.328904 -0.525658 1.156567 1.159634 -0.487008 -0.965035 1.084116 -0.672084 0.821719 1.349877 0.286874 0.726203 0.237326 -0.991887 0.644670 2.108339 -0.622412 0.667562 -0.816415 -1.488432 2.069984 -0.353248 0.738577 -0.646276 -0.302424 0.097599 -0.704837 0.800348 1.707860 -0.362339 0.184953 0.368125 0.163714 -0.569808 -1.731369 -2.240865 -0.289392 1.496508 1.352442 2.676032 -1.075648 -0.250556 0.092642 0.611989 -0.216048 -0.472408 0.548806 -0.855066 0.807617 -3.718560 -2.152908 2.524745 1.338334 0.678650 -0.047666 0.810717 0.545922 0.207569 -1.135506 -0.911191 0.671759 0.807503 -0.838964 -0.214802 0.191116 -1.639270 -0.359763 0.331757 0.067218 0.621811 -1.022968 0.471135 -1.525960 -1.044823 -1.266092 1.034483 -1.261399 -0.151563 -0.153266 -0.086961 -0.263868 0.674019 0.068783 -0.322711 -0.092967 -0.459872 -0.252623 -0.362872 0.669661 0.097388 1.434727 2.460524 -0.697821 0.506238 0.271077 -0.940294 3.284818 -1.313404 -0.070986 0.042447 1.243242 0.358598 0.833285 1.072423 -0.533380 -0.241316 -1.638574 0.166512 0.816783 0.427195 -1.962375 -0.673775 -1.870787 -0.177074 -0.358922 2.028609 -0.156943 2.702792 -1.206615 0.380515 -2.628467 0.261718 0.881147 -0.027037 1.433005 0.681100 -1.198596 -1.009352 -0.504507 -0.978335 0.462842 -0.330185 -1.248369 -0.924637 -0.343580 0.083402 -1.344592 0.653369 1.353806 -0.794073 1.184726 -0.815164 -0.018864 -0.946991 0.079583 0.580391 0.383049 -0.775800 0.997786 -0.140022 2.488323 -0.201459 1.260724 -0.966604 1.017699 -0.786614 -1.762563 -0.813318 1.742182 1.226917 0.300150 0.540765 0.283924 0.045643 1.154984 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.176509 0.674650 1.239273 0.662332 -0.868848 -1.114543 -0.274720 -1.330493 0.412425 0.138027 0.713942 -0.116461 0.478445 0.190460 -0.067876 -0.029632 0.605047 0.353131 0.068521 -0.441543 -0.693579 0.861846 0.049941 -0.381261 0.267886 -0.563143 0.736633 0.422873 0.630222 0.664556 0.176074 -0.085260 -0.386376 0.394527 -0.335583 -0.310021 -0.145003 0.340070 -0.835682 0.160394 0.051128 -0.373045 0.800673 0.078075 0.245551 0.391863 0.343186 0.212084 -0.570730 -0.163931 -0.411554 0.579011 -0.246389 0.617849 -0.071888 -0.231087 0.144286 -0.052172 0.107846 -0.201521 0.015511 -0.336587 -0.373173 0.007828 -0.851898 -0.004896 -0.710202 -0.808919 0.128451 -0.147771 0.375347 -0.024560 -0.003664 -0.298015 -1.250676 0.156890 0.257837 0.436673 0.463203 0.303653 0.231265 -0.034389 -0.747143 -0.689598 0.347575 0.308954 0.284265 0.061948 -0.584388 -0.497056 0.220745 0.069760 0.239586 0.513582 -0.481318 0.582132 -0.886634 -0.230375 -0.554617 -1.488747 0.038774 -0.433012 0.417844 -0.112772 -0.301762 0.077560 0.103975 0.306574 0.196722 -0.872369 0.136464 -0.275566 -0.140953 1.105257 -0.110318 -0.534293 -0.204840 -0.179021 -0.163238 0.480657 0.249323 0.092622 0.512355 0.507654 0.476316 -0.597943 -0.208189 0.169249 0.020009 0.431914 0.541825 -0.373168 -0.475650 0.189528 -0.436870 -1.320005 -0.081467 0.417257 0.688336 -0.247529 -0.198398 0.017287 -0.683367 0.354144 0.424747 0.524967 0.405766 -0.108133 -0.387616 0.263328 0.987874 -0.418749 0.510454 -0.317570 -0.565227 0.694770 0.078363 0.406879 -0.200933 -0.083755 0.033491 -0.399663 -0.020149 0.894826 0.123684 -0.015603 0.484614 0.045699 -0.724677 -0.987973 -0.990236 0.137725 0.948700 0.232594 0.910808 -0.695719 -0.296577 0.057112 0.693950 -0.068104 -0.374587 0.319642 -0.335158 0.414582 -1.366547 -1.024907 0.982834 0.852878 0.104190 -0.316668 0.278535 0.246800 -0.700736 -0.958951 -0.705853 0.336683 -0.126418 -0.759763 -0.571198 0.146293 -0.867454 0.314265 0.277162 0.301390 0.769539 -0.246912 0.223780 -0.365691 -0.686858 -0.800729 0.673662 -0.547702 -0.079266 0.229581 -0.062031 0.013556 0.371303 -0.117265 -0.409164 0.130044 -0.462398 -0.023198 -0.008344 0.431559 -0.183456 1.326415 0.785652 -0.047703 0.342347 0.169279 -0.723824 1.850182 -0.641731 0.216679 -0.055433 0.597459 -0.304451 0.408460 0.756695 -0.321620 -0.805120 -0.870786 -0.323261 0.031946 0.317523 -0.658755 -0.622336 -1.083769 0.024710 -0.104647 1.032225 0.020086 1.302591 -0.330838 0.349219 -1.183802 0.135019 0.352707 -0.180763 0.864635 0.331067 -0.695294 -0.383524 -0.160141 -0.773855 0.010177 -0.089610 -0.569964 -0.473331 -0.019555 -0.059075 -0.172471 0.100442 0.595538 -0.432484 0.648397 -0.167768 -0.172558 -0.304073 -0.064395 1.028979 -0.008012 -0.607508 0.792542 0.174362 1.849853 0.264467 0.444344 -0.309831 -0.297072 0.081874 -0.654332 -0.520576 0.946710 0.658036 0.506773 -0.034483 0.158280 -0.042296 0.384600 -PE-benchmarks/cutting-a-rod.cpp__main = 0.082824 0.937009 2.974839 1.237823 -1.230487 -2.144198 -0.803802 -2.789344 1.125309 0.561355 1.830423 -0.398090 0.933220 0.434942 -0.069774 0.053718 0.973988 -0.163459 0.304949 -0.768282 -1.153524 2.410544 0.618406 -0.809430 0.299014 -2.468141 1.325503 0.738731 1.314987 1.518720 0.273760 -0.065934 -0.204483 0.911060 -1.034307 -0.180504 -0.016274 0.657697 -1.288355 0.202959 0.235528 0.004589 1.529777 0.069097 0.962478 0.751608 0.984824 0.131854 -1.139921 -0.474676 -1.018878 1.765153 -0.738998 0.887545 -0.081498 0.117904 0.250594 -0.909639 -0.281300 -1.022198 -0.071521 0.084676 -1.036906 0.134619 -1.632743 0.340678 -1.101728 -1.120306 0.429626 -0.175853 1.051569 0.269293 0.269352 -0.590067 -2.459701 0.805148 0.269174 0.677369 0.727552 0.122319 -0.173658 0.355190 -1.350925 -1.474742 1.032407 1.018860 0.398169 -0.074125 -0.696508 -0.739307 -0.129112 -0.054619 -0.008934 1.390452 -1.156348 1.101792 -0.963771 -0.574572 -1.301886 -2.230190 -0.144202 -1.335473 0.723114 0.637443 -0.358942 0.175957 -0.133270 0.546740 -0.046002 -1.908134 0.310752 -0.670852 -0.205430 2.087871 -0.817683 -0.617896 -0.457875 -0.194285 -0.251334 1.340455 0.083852 0.504507 1.497078 1.166974 0.730906 -1.205563 -0.160223 0.508075 0.672166 0.781042 1.117159 -1.357390 -0.980559 0.063966 -0.482234 -2.911668 -0.301847 0.974876 1.259153 -0.363288 -1.149569 0.454263 -0.925442 1.539329 1.297546 0.853922 0.665807 -0.114130 -0.925422 0.826062 2.864822 -0.976416 1.305236 -1.145961 -1.424627 1.973923 -0.621026 1.348290 -0.050218 0.221627 0.067636 -1.291570 0.071710 1.983192 0.437268 0.386270 0.965390 0.090147 -0.458496 -2.190995 -2.460471 0.069559 1.495707 0.202051 2.807416 -1.508207 -0.948007 -0.099859 1.636975 -0.147407 -0.778510 0.480421 -0.822206 0.685089 -3.416150 -2.605665 2.522775 2.334481 0.446126 -0.275009 1.409321 0.807250 -1.188363 -1.597163 -1.274950 1.125559 0.015051 -1.252232 -0.731913 0.189652 -1.875077 0.060282 -0.025969 0.511979 1.330091 -0.527672 0.057452 -0.605619 -1.931448 -1.247805 1.226726 -1.539565 -0.734274 0.118326 0.078238 -0.142575 0.751085 -0.430364 -0.537019 0.574120 -1.210959 -0.149641 0.480108 0.941577 -0.023401 2.646983 2.271634 -0.006946 1.190165 0.327633 -1.018442 3.654035 -1.201748 -0.050115 -0.133487 1.023458 -0.549524 0.815650 1.215855 -0.555400 -1.658810 -1.703015 0.527875 -0.105135 0.589867 -1.407638 -1.601697 -2.198554 -0.357604 0.320180 2.342246 0.233616 3.217339 -0.521535 0.630044 -3.292698 0.242835 0.943313 -0.110980 1.573936 0.835287 -1.423778 -1.431435 -0.377267 -1.270092 0.014733 -0.283792 -1.953165 -1.132377 -0.822836 0.533112 -0.848303 0.537763 1.635815 -0.380701 1.343689 0.153761 -0.470800 -0.966156 -0.036201 1.767306 0.201069 -1.126290 1.781662 -0.125294 4.095654 -0.365494 1.169108 -0.941535 0.103282 -0.020690 -1.131550 -0.669427 2.112048 1.426717 0.671072 -0.085283 -0.048308 -0.374947 0.964013 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -0.866474 1.870420 7.937726 5.811053 -3.835276 -5.458907 -1.767272 -4.017097 2.175706 0.898891 3.913926 -0.575138 1.481530 1.431279 -0.177970 -2.080020 2.019524 0.474451 -0.543313 -1.694265 -3.441552 4.468836 3.074356 -5.956243 0.631536 -5.483531 4.650840 2.782018 1.636227 4.251383 0.413796 0.460634 -0.308515 2.752174 -4.050632 -1.687552 -0.916762 1.321517 -1.968363 -0.737844 2.517373 1.311045 4.025735 0.492765 1.803551 2.698738 2.802288 -0.278211 -4.369581 -0.880237 -2.709517 3.987630 -1.851214 2.433539 -0.181844 2.867160 1.801223 -3.999720 -0.514907 -6.036156 1.329437 1.719265 -3.039527 -0.349743 -4.446819 0.293324 -1.503398 -3.285624 2.094628 -0.966600 2.177485 -0.246879 0.271166 -3.806528 -4.131188 1.990037 0.171322 1.719109 1.922332 0.779250 -1.807165 0.873245 -2.978010 -2.681759 0.847197 -0.294732 0.744022 0.528638 0.247776 -2.844984 0.572000 -0.129497 -1.399855 3.522698 -2.225889 3.487821 -1.245123 -1.111101 -3.279313 -2.976442 -0.370269 -3.285905 1.495176 4.029251 -2.283497 0.954577 -0.382814 1.246860 0.082354 -4.709297 0.375596 -2.534786 -0.154557 3.387097 -2.364499 -1.891835 0.266036 -0.305294 0.223182 4.253183 -1.209790 1.037622 3.463719 2.492636 1.081063 -2.946155 1.259054 0.544601 1.503978 2.266492 2.904598 -3.313413 -2.018358 -0.592159 -0.628528 -7.008660 0.820398 2.175621 2.935489 0.862769 -5.890312 2.180924 -2.276177 4.166007 2.486809 4.069505 1.578835 -0.337877 -2.106907 1.217812 7.491739 -2.473768 3.033293 -2.164604 -5.277636 5.816912 -0.897352 3.827690 -0.107963 0.233566 1.854009 -3.448490 0.179057 5.335118 1.212137 0.440250 4.245052 -0.348357 0.050490 -6.266330 -5.746703 0.647024 2.912702 1.387068 9.289933 -4.300152 -1.944627 -1.176691 3.939673 -1.739165 -1.326605 -0.010976 -0.789938 1.449227 -10.525845 -7.151735 5.817582 4.355968 -0.054673 -0.533696 4.449489 0.438009 0.190316 -3.461373 -3.592433 2.299478 0.996973 2.072538 0.501712 -0.097223 -4.900292 0.334109 0.807091 0.903641 3.842681 -4.448979 -2.888818 -2.191565 -5.747693 -3.670296 1.449059 -5.155107 -1.598039 0.354342 0.241455 -0.367889 1.096813 0.075502 -2.837044 0.283656 -2.488950 -1.364192 0.651808 3.036830 0.620751 6.600756 5.669050 -0.067122 2.450484 1.910954 -2.197977 12.703233 -3.572288 -0.722492 0.021593 4.286051 -0.468471 1.736878 2.930257 -1.246065 -2.436046 -4.166108 2.798336 -0.481914 1.253458 -8.019698 -2.538341 -5.740384 -1.486900 0.806545 5.351336 -0.215959 8.664209 -0.429866 0.551088 -8.796018 0.106203 3.979621 -0.259042 3.314712 2.851615 -4.178507 -5.796771 -0.746511 -1.858198 4.233083 -0.607006 -4.726689 -2.818496 -0.666636 -0.296010 -1.887277 2.730233 5.910258 -2.009178 2.067972 0.575980 -0.967109 -0.408103 -2.019588 2.622764 1.591000 -2.892893 5.770153 -0.953238 9.584098 -0.912973 3.532584 -3.047787 1.092775 -0.402295 -1.726518 -1.927724 4.848635 2.762487 1.710447 1.013366 0.932989 -1.990909 2.713850 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = -1.049856 5.006859 39.963799 22.399612 -7.253683 -18.839853 -4.847179 -22.449459 3.815030 1.784525 19.066365 -10.293930 2.265592 10.044311 -0.159275 -8.778499 5.178765 4.305562 -1.330766 -5.220344 -16.520951 16.233550 12.599782 -7.376620 2.803041 -29.686635 10.190606 9.869407 1.983600 20.857470 1.453535 -0.143977 -2.673555 5.478214 -15.351097 8.554397 -3.070475 -4.474030 -5.578585 0.692386 3.946565 1.526607 12.109213 -1.731641 7.939984 6.303475 19.238754 1.366120 -14.764636 -2.261670 -14.080354 25.397294 -3.191356 -1.466154 2.169179 11.388368 5.945045 -15.845875 -1.628091 -23.915902 0.706987 11.684480 -8.585791 0.385479 -11.525350 0.817938 -12.429297 -11.534378 12.701132 -2.062646 4.087916 -1.621068 -1.673412 -2.522738 -9.833456 3.517100 3.886253 4.125616 3.180119 -2.623397 -6.767246 8.180774 -10.347372 -5.768173 10.757812 -9.209252 4.029819 -0.127022 -0.108601 2.357849 3.762203 -1.448603 -0.129436 7.141585 -15.266897 7.583891 -1.693029 -4.502371 -15.129014 -9.052828 0.285390 -5.203880 5.698146 20.997999 -14.209333 2.161978 -13.237054 3.500974 -9.237553 -20.703603 -1.339125 -8.280522 3.760329 9.845001 -20.818016 -5.345354 -1.690065 -2.606403 -1.649469 15.377119 -8.382813 1.150676 9.718399 6.668219 3.750105 -6.787585 6.675882 -0.948302 12.910798 5.040162 7.111418 -8.125827 -4.454721 -6.663652 -14.238948 -33.316214 5.312889 10.755783 8.364393 14.033560 -23.951450 3.084913 -5.150300 26.526672 11.909627 10.732181 1.874567 -1.583867 -5.284385 2.844091 30.134224 -11.503715 23.250909 -11.829797 -21.635768 20.226962 -8.250122 13.581349 2.998526 -0.816412 14.141320 -6.560695 0.230344 18.392068 12.665283 -3.927458 16.669096 0.988794 7.375188 -28.156691 -31.470181 6.607693 9.307320 -1.785591 30.379459 -13.567383 -16.098443 -2.374464 17.614958 -10.037248 -14.056144 1.763686 -3.635253 3.898375 -38.263140 -25.685124 30.061867 25.565895 -5.265677 -0.910497 20.821737 6.515878 -7.953043 -4.010592 -11.107538 5.454837 2.246075 -12.659850 -1.768529 -6.199582 -15.857706 5.484009 -9.576770 4.298768 10.890075 -13.353406 -7.833364 -10.703270 -26.422459 -0.938679 10.950902 -30.434370 -10.942171 2.157775 0.232089 0.400705 4.364329 -8.210650 -6.604742 1.671605 -25.691014 -0.223626 2.467695 6.853280 10.246491 42.005002 32.505090 -1.009234 18.316765 8.428287 -5.040472 36.277647 -10.230364 1.330720 -0.564471 18.303889 -2.545663 9.620741 11.920477 -2.947999 -23.305065 -8.042512 10.037916 -1.852122 3.143112 -18.155312 -24.697604 -25.756670 -9.421353 0.919212 18.580894 0.478790 40.178333 -0.540800 2.059693 -38.787514 0.178469 20.893552 -0.981358 17.196895 4.155929 -12.453406 -26.417301 -0.069071 -7.310274 17.851713 -0.978692 -22.411145 -6.576317 -14.865252 11.633813 -1.167865 17.712593 13.341181 -5.951431 13.739541 18.958257 -2.451313 -0.470600 4.659301 13.924986 7.596415 -5.959445 21.584079 1.324897 50.526548 -2.895352 6.111555 -11.360102 7.295547 2.143026 1.786904 -4.707480 8.655027 26.381673 3.953674 -0.353323 5.432972 -3.989130 5.627304 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -1.879929 4.099645 37.212745 23.064901 -6.931296 -16.986102 -3.760226 -17.604767 2.241548 1.012048 16.645430 -9.377759 1.223504 9.591298 -0.524185 -11.024238 4.088848 5.437338 -2.434990 -4.439024 -16.309533 12.769552 12.751832 -9.186241 2.665432 -26.369770 11.077975 9.582464 -0.506070 20.497186 1.045962 0.506808 -2.836312 5.061826 -14.909953 7.624137 -4.098493 -4.782466 -3.116530 -0.091928 5.527829 1.789837 11.106178 -0.986686 6.196363 6.932715 17.455673 0.971563 -14.596552 -1.875826 -12.594647 21.505174 -2.657267 -1.836573 1.575796 12.676835 6.949394 -15.358274 -0.596474 -25.241825 2.110936 11.758631 -7.758913 -0.137466 -10.700460 -0.280768 -11.125268 -11.424770 12.402288 -3.004336 2.526159 -2.496882 -2.447918 -3.762936 -6.424466 2.374306 3.610906 3.344635 3.012657 -1.876117 -7.992220 7.441225 -9.496655 -4.062482 8.403038 -12.229408 3.701879 0.936776 1.744911 1.702066 4.989755 -0.862427 -0.361797 6.070364 -13.050886 6.946686 -0.541856 -3.630036 -13.346915 -5.990124 0.754101 -3.692141 4.952439 21.777339 -15.596146 2.010679 -12.824270 2.900322 -8.609107 -18.600581 -1.678955 -8.808446 4.384108 6.716899 -19.505072 -5.599495 -0.828140 -2.776780 0.000864 14.731141 -9.199596 -0.185300 8.143765 4.930393 2.851290 -5.857672 7.762495 -1.769945 11.386553 4.181192 5.953182 -6.465946 -3.237455 -6.943317 -13.882095 -30.331754 6.593365 9.123669 6.857502 14.713938 -24.440225 4.053592 -4.972713 24.055771 10.475942 11.485498 1.592954 -1.431138 -4.256853 1.190454 27.181123 -10.363009 21.330835 -10.176038 -22.059365 19.344426 -6.553912 12.379928 2.487600 -1.666815 14.963320 -5.173576 0.893095 16.907071 11.529132 -4.657313 17.256869 0.455220 8.228958 -26.078336 -28.639864 7.026009 8.315001 -0.315519 29.161279 -12.812622 -13.675454 -2.602389 15.850026 -10.201518 -12.706829 0.442748 -1.364608 3.150667 -36.986593 -23.484472 27.045166 21.641377 -6.431211 -0.793617 18.953168 4.255339 -3.771593 -2.447890 -10.616458 3.730903 2.595930 -7.645045 0.346687 -6.538117 -14.153908 5.865727 -8.473170 3.553362 10.840865 -15.917580 -10.085256 -11.422552 -24.487919 -1.065231 8.808082 -29.631539 -9.792856 2.329424 -0.021730 0.383116 2.976629 -6.307587 -7.205208 -0.211792 -23.538772 -0.688466 1.382369 6.167544 10.138464 39.332428 30.007733 -1.895876 14.879709 8.839857 -3.747763 35.808816 -9.828023 1.236184 0.121738 19.320637 -0.798141 8.798700 11.213358 -2.467732 -20.024372 -6.586498 9.916635 -1.243734 2.095256 -20.530156 -21.683965 -24.357926 -8.952890 -0.311007 16.575947 -0.218398 37.608558 0.682457 0.908965 -34.941889 -0.314518 21.113887 -1.036898 15.566727 3.833932 -11.602593 -25.606910 0.115592 -5.748612 21.249245 -0.646147 -19.543892 -5.463661 -11.818806 8.752739 0.286061 18.163333 12.768305 -6.960438 11.308902 18.347283 -1.554399 1.584116 3.189158 11.023757 7.904091 -4.818864 20.579054 1.349463 45.034268 -1.954047 5.510388 -10.521977 7.926584 1.705421 2.972202 -4.744515 6.422824 24.016689 3.603061 1.013793 6.481208 -3.612272 5.019281 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = -0.499004 1.018570 3.722922 1.638781 -1.948001 -2.797267 -1.040098 -2.938523 0.983165 0.696299 2.373223 -0.543385 0.762202 0.971822 0.192794 -0.453459 0.967117 -0.076742 -0.167256 -1.025661 -1.406750 1.450058 1.005138 -1.587207 0.517956 -2.305290 1.479738 1.209035 0.537914 1.371676 0.294838 -0.051141 -0.771062 1.158891 -1.372825 -0.137174 0.425316 0.557852 -1.063743 0.101510 0.657730 0.282813 1.587602 -0.118783 1.638935 1.304376 1.070582 0.168091 -2.155125 -0.719610 -0.699518 2.115462 -0.838462 1.199256 0.530950 0.861004 0.085585 -1.837909 -0.408164 -2.124092 0.455922 0.173853 -1.179227 0.089359 -1.758268 0.264261 -0.608040 -1.488141 0.966114 -0.752928 1.078609 -0.528184 -0.101866 -0.536868 -1.744636 0.655274 0.350243 0.834057 0.759893 -0.092761 -0.299297 0.249828 -1.226083 -1.410221 0.342930 0.631125 0.467953 -0.017271 -0.646271 -0.569343 0.477657 -0.374535 -0.254225 1.786191 -1.587617 1.191389 -0.652544 -0.844578 -2.005141 -2.171766 0.160002 -1.421837 1.087006 1.130917 -1.084758 0.205859 -0.254231 0.914017 -0.143465 -2.207154 0.244926 -0.798900 0.436157 1.907377 -1.257261 -0.795241 -0.230394 -0.539122 -0.006667 1.589258 0.002106 0.397936 1.747058 1.537395 0.880945 -1.530484 -0.349552 0.310479 1.020338 1.218713 1.282709 -1.975329 -0.847915 0.226025 -1.080262 -3.222101 -0.146868 0.781531 1.789807 0.160806 -1.990942 0.360454 -1.184818 1.872377 1.048784 1.904531 0.405284 -0.217921 -1.276521 0.503563 2.979864 -1.129748 1.668530 -0.622344 -1.786361 1.655324 -0.380314 1.490019 0.605631 0.167747 0.330392 -1.557521 -0.337288 2.212455 1.059595 0.629108 1.145721 0.219284 -0.956055 -2.755054 -2.898149 0.041326 1.529155 0.182294 3.112185 -2.079100 -1.498211 -0.615334 2.705394 -0.614363 -1.152931 0.314717 -0.625062 0.807454 -3.265089 -2.802341 2.530572 3.097525 0.568523 -0.374501 2.155904 0.334757 -1.481210 -1.575360 -1.502171 1.145471 -0.024792 -0.306871 -0.331242 -0.032306 -2.321086 0.168821 -0.145766 0.786582 1.323746 -0.809344 -0.283211 0.089329 -2.036742 -1.487698 0.689422 -1.642631 -0.698360 0.141938 0.258890 0.043724 0.570853 -0.856592 -1.239805 0.518317 -1.645552 -0.002763 0.873481 1.213833 0.391203 3.703634 1.843384 0.014621 1.643519 0.161142 -1.149694 4.732209 -1.433606 0.128875 -0.126439 1.554192 -0.539577 0.604447 1.415030 -0.691699 -1.682951 -1.816015 0.254090 -0.430751 1.066240 -2.118459 -2.079173 -2.849879 -0.367537 0.451744 2.529649 0.007008 3.639349 -0.003827 0.853897 -3.897516 0.138894 1.337947 -0.489464 1.260157 0.988663 -1.879977 -2.986275 -0.050702 -1.420119 0.074079 -0.172006 -1.676215 -1.233568 -0.844896 0.530461 -0.492829 0.450454 1.993299 -0.422518 1.256768 0.649305 -0.555793 -0.308136 -0.596121 1.926238 0.208465 -1.675077 2.448493 0.210724 5.352138 -0.084332 1.548500 -0.863276 0.022587 0.051192 -0.805101 -0.872690 2.142678 1.899728 1.154933 -0.339341 0.255980 -1.011782 0.948635 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.426147 1.289861 4.217753 2.743879 -2.551539 -2.849848 -1.180137 -2.800614 1.236719 0.432446 2.115404 -0.726324 0.510466 0.912532 -0.126708 -0.827551 0.962106 0.266002 -0.636566 -1.095421 -1.802924 1.762297 1.255903 -2.965752 0.522600 -2.705945 1.768129 1.474534 0.726038 1.410284 0.157097 -0.020142 -0.629081 1.545930 -2.117123 -0.676521 0.312212 0.439879 -1.486538 -0.404525 1.040693 0.834171 1.887392 -0.335441 1.427610 1.425182 1.224282 0.094247 -2.713312 -0.479040 -0.789631 2.696292 -0.718212 1.549127 0.859767 1.340719 0.245725 -2.611227 -0.335409 -2.494961 0.618073 0.600851 -1.190779 -0.099776 -2.077614 0.126720 -0.191534 -1.844097 1.556409 -0.887204 1.143269 -0.530320 0.014804 -1.407231 -1.552469 1.002837 0.523196 1.113842 0.932202 0.273318 0.106843 0.314415 -1.280454 -1.383370 0.071205 0.270509 0.588230 0.213140 -0.199957 -1.080834 0.957381 -0.617918 -0.498300 1.937845 -1.621923 1.296668 -1.049363 -0.819998 -2.441515 -2.007660 -0.076809 -1.537155 1.231458 1.594345 -1.510889 0.677806 0.498344 0.925366 0.315805 -2.494777 0.021744 -1.003222 0.678451 2.267026 -1.275578 -1.172300 0.204824 -0.504326 -0.580288 1.939513 -0.324550 0.504049 2.028282 1.599164 0.994501 -1.727448 -0.011303 0.192922 0.949477 1.460838 1.766822 -2.323032 -0.883862 0.047225 -0.688632 -3.663356 0.109477 0.570254 2.093657 0.648068 -2.740453 0.598508 -1.165772 2.190442 0.510765 1.932683 0.547043 -0.414414 -1.279554 0.499236 3.505181 -1.251195 1.704215 -0.924166 -2.330500 1.954611 -0.125362 1.793746 0.425627 0.019718 0.812635 -1.915929 -0.083867 2.614497 0.774842 0.227931 1.529601 0.044381 -1.056729 -3.663070 -3.187702 0.349985 1.200055 -0.067360 4.178894 -2.377217 -1.853013 -0.915221 3.122991 -1.168333 -0.756927 0.302794 -0.887948 1.033381 -3.528909 -3.496285 2.888470 3.229682 0.140149 -0.373356 2.764406 -0.144410 -1.193485 -1.695309 -1.775845 1.030134 0.694983 0.415521 -0.130173 -0.135110 -2.495565 0.212770 0.346416 0.811133 1.709980 -1.295514 -0.791255 -0.322099 -2.785345 -1.852390 0.845718 -2.226282 -0.268480 0.409620 0.446566 -0.103184 1.024820 -0.856406 -2.033016 0.286213 -1.419948 -0.171346 0.618791 1.655301 0.270311 3.748567 2.292778 0.054833 2.417354 0.670972 -1.346488 6.201872 -1.782079 0.020782 -0.120846 1.886043 -0.691376 0.751330 1.556864 -0.858613 -1.445725 -2.156141 0.549900 -0.735519 0.814178 -3.601905 -1.943376 -3.002877 -0.863857 0.327102 2.079575 0.038675 4.142849 -0.168992 0.433532 -4.991113 0.041256 1.941082 -0.381628 1.442603 1.417642 -2.199647 -4.081400 -0.032329 -1.306088 0.662228 -0.413201 -2.368091 -1.338581 -0.840861 0.900284 -0.485084 0.896009 3.202152 -0.423178 1.042009 0.285542 -0.506747 -0.041552 -1.307761 1.675341 0.322351 -1.739537 2.967480 0.035219 5.720105 -0.113315 1.784247 -1.369052 -0.032991 0.205717 -1.096187 -1.130747 2.388346 1.565008 1.176367 -0.144118 0.361265 -1.678349 1.358064 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -2.726598 3.382414 14.294380 9.527495 -8.057600 -9.836135 -3.951730 -7.470982 3.143698 1.670998 7.515815 -1.776110 0.981226 4.546417 0.441664 -3.858168 2.399820 0.743641 -2.357623 -3.279857 -5.704001 4.126782 6.093457 -10.777717 1.509050 -8.006107 5.824768 5.181523 0.750482 4.722473 0.114237 0.246589 -2.015196 4.943149 -7.340242 -2.193400 0.259269 1.497630 -3.033286 -1.031082 4.601259 2.967166 5.559516 -0.777568 5.414438 5.281129 5.133396 -0.417031 -9.754076 -1.837312 -3.096154 8.638915 -2.893379 4.867163 2.616402 6.442845 0.869791 -9.191967 -2.040056 -11.218798 2.917374 3.038537 -4.540392 -0.507115 -6.931437 0.614943 -0.348662 -5.938442 5.265902 -2.624782 3.866387 -2.675807 -0.389321 -4.920079 -3.764970 2.981196 0.493676 3.694349 2.278086 0.205642 -1.835697 1.484099 -3.412500 -3.884494 -1.211102 -0.869354 1.042568 -0.030402 0.812349 -3.258439 2.952859 -1.767816 -3.237317 6.839444 -5.714068 5.978515 -1.715054 -2.534708 -7.581956 -4.783272 -0.216476 -5.599203 3.891958 6.621856 -5.328203 1.916355 0.431877 3.389317 0.390202 -8.578981 -0.095067 -2.586966 1.963277 5.246567 -4.948199 -2.923981 1.860476 -1.473147 -0.529270 6.588595 -1.533961 1.810608 6.463023 5.512241 2.452555 -5.273940 0.737095 0.201252 3.750378 5.139294 5.468829 -7.523558 -2.693139 -0.265604 -1.994746 -11.506417 1.484559 3.294439 6.433654 2.755679 -10.529494 1.736712 -3.670108 8.041583 2.395719 8.742825 1.397080 -1.442461 -4.211614 1.360900 12.104869 -4.143409 5.834417 -1.880577 -8.722467 7.468714 -1.207161 6.468286 2.139379 1.063926 3.380454 -6.885246 -1.333203 8.505150 3.842373 1.354689 6.728232 -0.273922 -2.304527 -11.703565 -9.901325 0.402968 3.341811 0.850304 13.812861 -7.723874 -5.873680 -3.465405 9.808469 -3.689791 -3.105670 -0.167919 -1.355812 2.597130 -13.341337 -11.129836 8.649747 10.665600 0.141931 -0.927313 9.998913 -0.305898 -2.237880 -5.686432 -5.898736 3.824583 1.590442 5.008729 1.122147 -0.944391 -8.590084 0.782955 0.386385 2.374375 5.380943 -5.815876 -4.778969 0.252783 -9.265251 -6.178594 0.896441 -7.812182 -2.089436 0.755490 1.452792 -0.319775 1.542305 -2.373773 -6.618951 0.492967 -5.383849 -0.733290 2.685984 5.125329 2.035865 12.964404 6.816248 0.572626 6.855956 2.183912 -3.818092 21.744270 -6.217745 -0.589431 -0.366116 7.217854 -2.176956 1.941241 4.208541 -2.227198 -4.532354 -6.233650 3.333403 -2.750294 3.358644 -12.899100 -6.565895 -9.717328 -2.666560 2.460434 7.653822 -0.347440 13.888180 0.576980 1.974670 -16.179908 -0.011169 6.765526 -1.436850 4.393012 4.736696 -7.583505 -14.610364 0.139702 -2.842521 4.928118 -1.122276 -7.135983 -4.449517 -2.094468 0.656892 -1.554883 3.261881 9.954298 -2.442028 3.399584 2.430660 -2.142140 0.993789 -4.683186 4.969432 2.024995 -6.268275 10.310503 -0.364636 19.679182 -0.577679 6.417755 -4.300201 0.322821 0.055975 -1.666668 -3.017034 7.373313 5.822210 4.176519 -0.306005 1.651087 -5.765680 3.331242 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -0.787441 1.240813 5.372644 3.537860 -2.608875 -3.779534 -1.476767 -3.742021 1.956918 0.713375 3.301393 -0.378336 1.437068 0.611097 -0.072488 -0.919838 1.817253 -0.198821 -0.251051 -1.576727 -1.722466 4.023390 2.200134 -3.552036 0.667625 -3.960105 2.716845 1.743756 1.528096 3.381367 0.174881 0.100994 -0.339427 2.043773 -2.410401 -0.752955 -0.432744 0.964591 -1.824002 -0.145363 1.597455 0.640323 2.980464 0.093544 1.792719 1.809714 2.005635 -0.039561 -2.904342 -1.062301 -1.783330 2.774746 -1.695629 2.055074 -0.345408 1.130492 0.942078 -2.392461 -0.593155 -3.658890 0.501162 0.677247 -1.800512 -0.179763 -3.013662 0.471168 -1.140186 -2.383404 1.302132 -0.950063 1.889732 0.221292 0.138860 -2.054346 -3.223993 1.392269 0.515361 1.558614 1.362811 0.304024 -0.775620 0.370519 -2.103307 -2.272223 0.940561 0.347497 0.820322 0.418052 -0.450663 -1.633872 0.465103 0.089000 -0.602815 2.522181 -1.791952 2.036382 -0.898398 -1.052158 -2.110027 -2.589067 -0.233076 -2.427543 1.256696 2.133737 -1.476416 0.637158 -0.246551 1.055743 -0.253095 -3.445148 0.424627 -1.116304 -0.401575 3.082343 -1.689296 -1.300445 -0.371361 -0.156468 0.070602 2.970594 -0.286363 0.982297 2.841401 2.299286 1.119279 -2.505329 0.145356 0.400985 1.549301 1.645731 2.347677 -2.249235 -1.879099 -0.041088 -0.961534 -4.961736 -0.192406 1.793692 2.853621 0.303305 -3.561223 1.652397 -1.893568 3.006690 2.244086 2.116653 1.240819 -0.312477 -2.141546 1.546923 5.443466 -1.931632 2.436921 -1.884919 -3.327301 4.234454 -0.824571 2.285796 -0.037700 0.080547 0.682847 -2.540404 0.303013 3.886924 0.961423 0.760412 2.290236 0.016274 -0.407067 -4.694254 -4.578824 -0.260105 2.229801 1.040856 5.845676 -2.866689 -1.440290 -0.791312 2.858174 -0.811438 -1.382941 0.279972 -1.117448 1.267129 -7.212258 -4.781732 5.028081 4.173482 0.625524 0.102599 2.828149 1.008535 -0.632249 -2.228826 -2.172820 2.035771 0.661112 -0.270787 -0.304275 0.161761 -3.341520 -0.339536 0.383525 0.889529 2.191240 -2.489284 -1.009909 -1.087928 -3.881077 -2.546769 1.412656 -3.580802 -1.162809 0.422092 0.033947 -0.044690 1.051503 -0.318099 -1.593438 0.391489 -2.030456 -0.690964 0.459283 2.401676 0.572878 4.017013 4.106905 -0.320423 1.960638 1.032842 -2.042416 8.103607 -2.615709 -0.133788 -0.059409 2.834046 -0.178370 1.405300 2.105160 -1.001724 -1.776170 -3.279824 1.476166 0.179144 1.266885 -4.847652 -2.415206 -4.083537 -0.787607 0.668875 3.985533 -0.152746 6.249919 -0.856990 0.757430 -6.676976 0.201860 2.322078 0.053642 2.401171 1.935968 -2.853283 -4.210937 -0.630973 -2.035540 1.796206 -0.660893 -3.021405 -2.155178 -0.812546 0.777497 -1.639402 1.439832 3.784185 -1.156546 2.162533 0.487413 -0.843468 -1.086949 -1.160223 2.160066 1.027322 -2.091180 3.580667 -0.276352 6.842133 -0.412403 2.582646 -2.102684 0.607709 -0.272780 -2.021126 -1.461756 3.869760 2.544971 1.107771 0.642677 0.183151 -1.001452 2.135268 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -3.945240 2.558189 16.993200 11.576845 -4.984808 -7.083622 -4.559179 -7.241573 6.803174 2.220479 9.734475 0.079468 3.733347 1.312786 -0.790163 -5.746263 3.820374 -1.849358 -2.123914 -3.668728 -0.885823 12.760764 9.506553 -14.514747 0.934046 -13.470927 7.666339 4.099407 4.642358 11.169884 -1.127291 1.202365 1.309591 6.856009 -9.280943 -3.501003 -2.174458 3.542940 -3.416249 -2.737775 7.631263 6.864829 7.731670 1.003188 5.004592 5.442545 5.124251 -2.669950 -7.761317 -3.147951 -4.309351 7.506581 -5.795403 6.094740 -1.904150 6.636820 2.796760 -8.077671 -1.922577 -15.689406 3.142749 6.549609 -4.937573 -1.500082 -8.388008 1.514076 -0.555942 -5.705196 3.834254 -4.577471 5.854380 1.161486 1.328404 -9.117547 -7.483199 5.683281 0.398463 3.930570 3.926215 1.359765 -5.202194 1.108910 -3.989826 -6.255782 1.970045 -0.565878 1.132744 2.334316 3.001116 -5.253535 1.154552 1.039817 -4.402062 8.479967 -4.762956 7.387767 -0.471448 -2.777525 -3.184117 -0.666745 -1.773787 -9.013399 2.418593 9.488308 -5.231239 2.982669 -0.470566 2.827196 -0.287500 -8.974622 1.473479 -1.982487 -2.514560 7.318649 -5.607934 -3.393564 1.075008 0.954019 1.011853 9.838687 -3.234213 4.080030 8.055621 5.671543 2.661194 -7.922472 3.814077 1.834653 5.528695 4.523381 6.853260 -6.385940 -5.572723 -1.704151 -0.204071 -14.260753 0.974824 5.663123 8.111338 1.418280 -14.374977 7.750716 -4.750998 10.102752 7.657588 5.874060 4.197832 -0.882284 -6.925147 4.115908 17.434842 -5.736710 6.606835 -5.435462 -12.009847 14.337233 -3.866639 8.854939 -1.696135 1.468483 4.547598 -9.488548 2.127479 12.627487 2.009093 3.966361 7.013814 -1.470860 3.635026 -14.480457 -13.508159 -3.669856 3.591663 3.979617 18.699752 -6.831392 -3.287482 -3.189604 7.586366 -3.484566 -2.742959 -1.003003 -2.354257 3.232199 -22.847455 -14.460932 15.201025 13.718444 0.620310 1.839226 9.748676 2.064978 4.461123 -5.199272 -5.445790 6.392726 3.912091 5.177014 1.888247 -0.198847 -8.623582 -2.917279 1.669463 1.057402 4.871707 -10.121475 -6.313686 -1.465117 -11.997341 -7.393763 2.054148 -11.778253 -4.238108 0.421910 0.754230 -1.300866 2.409340 -0.742265 -5.390748 1.395546 -5.182121 -3.521692 0.767182 7.441548 2.615856 6.927049 11.529422 -1.414501 4.633487 4.575519 -5.059641 24.833644 -9.140802 -3.024899 0.092863 9.215897 0.690559 5.276598 3.028690 -2.728098 -1.645341 -10.072542 8.360307 0.409911 2.574134 -17.774551 -6.914925 -7.976684 -2.748486 2.728272 10.211567 -0.590743 20.631108 -2.539100 0.989682 -20.860130 0.013340 8.925185 0.918287 6.927315 7.463183 -8.130830 -16.595341 -2.558701 -3.314193 9.273646 -2.831277 -10.533878 -6.285944 -2.342512 3.847527 -6.769922 6.943776 12.076194 -2.656457 5.945825 1.153628 -2.572847 -3.422131 -4.817593 1.910210 5.216600 -5.591573 9.464407 -2.970312 16.542764 -4.763603 9.791188 -8.448778 4.800308 -2.451794 -5.247665 -4.290196 12.405351 6.999846 2.634756 3.089389 -0.592961 -4.575361 6.854211 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = -5.224870 7.947928 37.542501 21.306057 -16.419380 -21.544129 -9.749124 -23.111304 10.094346 6.462781 22.670148 -3.957516 5.926543 10.366604 1.564399 -6.354489 6.727769 -1.775839 -1.698462 -8.493883 -10.633932 19.111908 17.262393 -22.337913 2.490445 -24.195998 15.059723 11.220232 8.457302 15.751246 0.308380 0.150395 -1.886503 12.714225 -17.224788 -4.070714 -3.716656 7.175564 -8.098496 -0.645715 10.390273 7.187328 13.028201 -0.815542 13.274294 12.246286 16.532780 -2.399729 -19.448695 -5.922121 -10.531414 21.757731 -11.886277 10.636388 1.022420 12.053570 -0.481516 -18.878624 -5.868166 -26.202127 6.111632 7.823005 -14.367745 0.443814 -19.439142 4.307173 -6.703402 -12.994029 9.839479 -4.463289 12.883838 -1.520840 0.305367 -12.239249 -16.783207 8.897154 -0.188425 7.703054 6.356904 -2.626647 -6.940233 5.123727 -10.296214 -13.139810 3.143723 2.123179 2.348900 -2.886367 1.708112 -6.355934 2.498269 -0.978262 -8.533679 19.185288 -15.689750 16.550745 -5.995339 -6.147536 -16.263723 -12.358586 -2.015182 -18.796104 9.800500 16.214955 -10.489015 3.963040 -1.518975 7.176999 -0.085758 -24.753997 -2.139151 -3.309875 2.485403 16.466508 -13.736224 -5.040631 1.868913 -1.005131 0.156720 16.816255 -0.824831 7.486586 20.519996 13.840460 5.982457 -15.185488 2.112838 2.775640 9.607510 12.839779 14.272620 -17.348858 -10.880055 -2.424605 -2.567509 -30.853833 3.189741 12.433253 15.283285 2.511992 -24.724919 6.879679 -9.391361 20.441696 13.945653 17.688908 6.141389 -2.344619 -10.697349 6.019287 35.217427 -12.051585 15.070079 -8.468887 -20.942528 24.927377 -8.090707 17.403310 4.705319 6.029032 6.269706 -20.008861 -3.575392 24.236849 8.779213 6.505178 17.931037 -0.791238 -0.347725 -29.140626 -24.972513 -2.548779 9.475824 2.561278 33.629430 -17.862086 -10.252898 -4.365680 20.367995 -4.605427 -8.811898 -0.756869 -4.748518 6.379789 -38.355980 -28.578218 23.115918 28.359202 1.796093 -1.310196 22.731697 5.375575 -5.436931 -13.757558 -15.530348 14.929476 1.280491 6.645234 0.821613 -0.466661 -22.666990 0.610105 0.184019 5.843263 13.144322 -14.374575 -11.424427 0.860580 -25.652480 -14.150137 5.933913 -20.417371 -8.723831 -1.086260 2.557507 -0.677027 3.015019 -6.684136 -10.785101 4.496355 -14.544701 -3.005241 7.978548 12.695499 4.156461 30.138765 19.794894 0.167777 12.347527 5.554230 -10.125735 49.750315 -13.478611 -3.466256 -1.026763 16.970602 -6.350300 7.950215 9.109626 -5.784131 -15.263260 -18.002490 11.267624 -3.482904 8.239232 -25.701775 -15.858086 -22.203694 -6.091309 7.654075 24.081654 0.987648 38.905357 -1.395908 7.329549 -40.840280 0.938330 14.377537 -2.707122 15.029386 12.827840 -17.378593 -28.634629 -3.183831 -6.835693 10.415982 -2.785097 -20.590998 -14.037078 -6.333185 3.619630 -7.839036 8.344210 20.499912 -4.644907 11.602926 6.704546 -6.356417 -2.229056 -7.121698 15.083009 8.358086 -16.587719 24.420992 -3.160779 47.602237 -4.970299 17.716577 -13.694304 1.118434 -1.398600 -5.616676 -7.364466 23.721700 17.165991 9.550700 -0.432641 0.344823 -10.682588 8.853900 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -6.118037 6.876793 34.700611 21.664144 -15.693265 -19.215875 -8.620199 -17.971673 8.493137 5.724803 20.122879 -3.079002 4.783672 9.951053 1.207237 -8.651724 5.484888 -0.814160 -2.784138 -7.561310 -9.904624 15.450518 17.409416 -24.053528 2.275455 -21.052605 15.566520 10.720150 5.896132 15.264207 -0.181868 0.813771 -1.962554 12.162215 -16.774093 -4.958884 -4.442411 6.705944 -5.529551 -1.517152 11.824686 7.843312 11.671071 -0.137155 11.557960 12.732061 14.471346 -2.897907 -19.032152 -5.515884 -8.810010 17.832948 -11.178928 10.123114 0.645586 13.477282 0.268144 -18.468154 -4.908217 -27.571145 7.597847 8.196988 -13.280020 -0.055476 -18.327718 3.255400 -5.128056 -12.552734 9.561763 -5.512760 11.231008 -2.406233 -0.283038 -13.390944 -13.043288 7.836498 -0.601431 6.807858 5.999716 -2.010100 -8.234645 4.451890 -9.106457 -11.268798 0.605773 -0.715890 1.826290 -1.868407 3.759442 -6.847567 3.661371 -0.517060 -8.948376 18.034848 -13.459193 15.775110 -4.679170 -5.204576 -14.178121 -8.829721 -1.639029 -17.250891 8.910623 17.070141 -11.699876 3.862100 -1.037985 6.631920 0.577921 -22.331390 -2.332952 -3.575476 3.081610 13.144653 -12.479792 -5.133251 2.756566 -1.093186 1.767722 16.113041 -1.877425 6.240419 18.692664 11.970892 5.012346 -14.095508 3.317839 2.095409 8.144731 11.838772 13.004402 -15.755771 -9.473776 -2.763137 -2.088539 -27.547555 4.450868 10.607448 13.669688 3.254633 -25.228480 7.720241 -9.025561 18.022111 12.382895 18.242522 5.732205 -2.174790 -9.599414 4.271486 32.108436 -10.865601 13.054293 -6.755563 -21.171582 23.653653 -6.429373 16.248603 4.149078 5.354189 7.227792 -18.635436 -2.923341 22.581360 7.692516 5.924402 18.227033 -1.367400 0.722282 -26.908997 -21.968098 -2.365367 8.050913 3.764303 32.150112 -16.822138 -7.954616 -4.764388 18.636381 -4.776358 -7.348923 -2.128881 -2.455479 5.477724 -36.608022 -26.132821 19.871501 24.576801 0.630571 -1.171845 20.909601 3.048987 -1.172247 -11.931145 -14.758274 13.111803 1.585760 11.787889 3.029111 -0.874271 -20.695595 0.833184 1.192028 4.984519 12.872073 -16.667333 -13.683779 0.542517 -23.605668 -14.042143 3.682381 -19.485231 -7.618143 -1.017504 2.426304 -0.703237 1.573890 -4.978293 -11.331816 2.898782 -12.310911 -3.465009 6.983920 11.871504 4.086706 26.999667 16.970584 -0.517447 8.934864 5.914354 -8.722745 48.880982 -12.919490 -3.710054 -0.401347 17.606109 -4.647063 7.048451 7.981871 -5.214659 -11.854166 -16.337543 11.258312 -3.084391 7.140660 -27.807461 -12.986460 -20.281644 -5.613237 6.457403 21.706233 0.406531 36.121242 -0.093951 6.107976 -36.832453 0.411977 14.620056 -2.723553 13.132279 12.467478 -16.337284 -28.069291 -2.863606 -5.082444 13.687890 -2.478348 -17.850894 -12.766620 -3.500378 1.099047 -6.290802 8.802280 19.865042 -5.355247 9.144555 6.218542 -5.487317 -0.201575 -8.548864 11.767720 8.665906 -15.319270 23.141400 -3.200913 41.653667 -4.280276 16.992116 -12.816816 1.818410 -1.904914 -4.249827 -7.233195 21.282489 14.683582 9.165354 0.796572 1.186384 -10.484710 8.089943 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.349812 1.554098 4.662583 3.098322 -3.082917 -5.166883 -0.995078 -5.920599 3.214545 0.995999 3.476815 0.525487 2.912410 -1.355400 -0.355413 0.386567 2.981995 1.166492 -0.362481 -2.063091 -1.852546 5.562306 0.127893 -2.140836 1.090214 -3.025634 2.598939 2.426412 3.077870 3.135882 0.936803 0.053596 -1.011792 1.696912 -1.749757 -0.485406 -1.027903 1.230647 -3.800654 -0.514700 0.658903 -1.127775 4.176497 0.444889 2.210491 0.237427 2.452483 0.471315 -2.109051 -1.107147 -1.996015 2.897506 -0.821700 2.591333 -1.014798 -0.736913 1.128328 -0.267895 0.602322 -1.518226 0.231803 -0.496058 -2.203974 -0.436450 -3.210268 -0.058641 -1.982885 -3.102769 0.063453 -1.698988 1.516472 -0.064476 -0.592071 -2.453328 -6.124186 0.359240 1.204012 1.271821 2.290669 2.334457 0.069957 -1.301609 -3.108296 -2.692071 2.583030 1.655363 0.829036 1.706557 -3.378388 -2.537029 0.250775 0.379069 1.380488 1.729196 -2.825899 1.579582 -1.528590 -1.287747 -1.766253 -4.525925 0.692807 -1.577127 1.190978 -0.458466 -0.385420 0.887055 0.229764 0.695548 -0.289390 -2.782562 0.767378 -1.619872 -0.801316 4.831243 -0.568027 -2.462582 -1.652865 -0.251285 -0.809031 2.482784 0.550614 0.374796 2.910551 1.969265 2.088477 -3.002117 -0.515979 1.567896 1.009398 1.737957 1.578720 -1.281856 -1.871294 0.873685 -1.938678 -5.861951 -1.185186 2.203154 3.165363 -1.025593 -1.262281 1.010125 -2.150446 2.420568 2.529176 0.914556 1.701123 0.202029 -2.516086 1.410239 4.782845 -1.383862 1.980214 -1.977498 -2.739413 3.658497 -0.296607 1.654318 -0.940364 -1.148591 -0.329029 -1.218769 1.116159 3.696285 -0.198812 -0.146938 0.713275 0.678776 -2.384746 -4.123644 -5.777262 -0.179626 3.507828 2.685325 5.722752 -2.963543 -1.390740 -0.336562 2.027965 -0.575542 -1.640370 1.922509 -2.512230 2.036232 -7.209957 -4.797445 6.185049 4.470199 1.777965 -0.650542 2.254090 0.895192 -1.848429 -3.345232 -2.169541 1.369375 1.253137 -3.775427 -1.025847 0.767145 -4.130046 -0.209961 0.615660 0.811965 1.961283 -1.138240 2.322738 -2.993717 -2.478452 -3.138688 2.666514 -2.159006 -0.209553 0.345765 -0.208204 -0.256794 2.047692 -0.528808 -1.298938 0.005213 -1.864746 -0.154732 -0.583423 2.039538 0.047944 4.563921 5.217554 -0.870440 2.933311 0.336844 -2.844912 7.332097 -2.900702 0.742869 -0.002194 2.348091 0.188302 1.819333 2.865485 -1.481849 -1.438212 -3.659825 -0.504367 1.181832 1.506432 -3.673592 -2.555488 -5.084779 -0.190619 -0.865385 4.467204 -0.382883 6.229201 -2.534933 1.235893 -6.629524 0.610570 1.795348 -0.111543 3.361735 1.393037 -3.300806 -1.964489 -0.663469 -3.344584 -0.369267 -0.238292 -2.530393 -2.316100 -1.022247 1.022932 -2.650984 0.804537 3.269215 -2.067376 3.208804 -1.710665 -0.129757 -1.667864 -0.061702 3.101187 0.434194 -2.127625 2.553001 0.259274 7.515342 0.504379 2.632260 -1.619398 1.307811 -0.820465 -4.384776 -2.356565 4.029440 3.296942 1.269450 0.385561 0.454694 0.034257 2.563111 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -1.464643 -0.119803 3.216305 2.751606 -2.164498 -3.313595 -0.961807 -3.194929 2.396758 0.928772 3.408337 0.239307 2.176682 -1.631067 -0.118509 -0.990974 1.694768 -0.039593 -0.636947 -1.298036 -1.027586 3.775695 0.949146 -2.894544 0.689385 -2.245857 2.345476 1.591357 0.537386 2.667348 0.461700 0.370897 -0.667416 1.323982 -1.441742 0.370686 -0.249847 1.010151 -1.051821 -1.260803 1.639067 -0.196865 2.567300 0.008884 2.450737 0.783542 1.421744 -0.145773 -2.525956 -1.331074 -0.557785 1.198864 -1.217521 1.574316 -0.385876 0.514237 1.271709 -1.404817 -0.048539 -3.908055 0.883546 -0.178209 -1.672327 -0.302514 -2.011141 0.183278 -0.117142 -1.842573 0.610088 -2.362563 1.008567 -0.262287 -0.456978 -1.740450 -2.386191 0.411172 0.921610 0.404002 1.378964 1.359875 -1.085637 -1.068620 -1.882479 -1.515005 1.291501 0.187295 0.726701 1.463216 -1.543894 -0.997230 0.749720 0.101737 0.430574 1.530169 -1.598364 0.437172 0.905270 -1.028557 -1.093206 -1.517656 0.675304 -1.365704 0.813981 2.202535 -1.573252 0.648028 -0.311373 0.737731 -0.963918 -2.002654 0.735410 -1.851707 0.278475 2.227041 -1.178752 -1.538708 -1.114547 -0.291002 0.601670 2.354045 -0.187436 0.410045 2.389898 1.408396 1.232362 -2.365258 -0.229901 1.197134 1.859183 1.018179 0.811119 -1.606447 -1.014563 0.484018 -1.845424 -3.757116 -1.193557 0.967341 2.462743 -0.099145 -3.118962 2.376220 -1.238731 2.310559 2.166937 1.413374 0.642732 0.482376 -2.527692 0.720256 3.321164 -0.874374 1.436384 -0.833407 -3.073704 3.029067 -0.080517 1.040670 0.219016 -0.674564 -0.005650 -1.392521 0.975633 2.474102 0.349031 0.618223 0.123593 0.715503 -0.901473 -3.353377 -4.619219 -0.435269 2.314204 2.734201 5.661860 -2.710689 -1.110884 -0.652339 2.108502 -0.806012 -1.414255 0.507525 -1.180327 1.319440 -6.103554 -3.991635 5.110494 3.234269 1.889813 0.266438 2.541249 -0.094172 -0.003586 -1.127105 -1.703243 1.214056 1.413961 -0.689361 0.700599 0.333613 -3.027552 -1.204645 0.070132 0.586086 1.028907 -2.025681 0.384145 -1.839534 -1.422302 -1.712833 0.870453 -1.652982 -0.503832 -0.132188 -0.006956 0.173530 1.057209 -0.399924 -1.064869 -0.660398 -1.544083 -0.391725 0.101510 1.703426 0.816438 3.541364 4.179285 -1.297966 1.483059 0.020412 -1.402848 5.639286 -2.005124 0.113093 0.083820 2.447432 1.627813 0.740717 2.247996 -1.012144 -0.111914 -2.485564 0.484245 0.993954 1.183002 -4.899447 -1.875609 -4.140278 -0.183469 -0.441524 3.214489 -0.360269 5.330659 -1.048549 0.427515 -5.642712 0.091561 2.245379 -0.100476 1.424799 1.027056 -2.321440 -3.458394 -0.378222 -2.075793 0.373527 -0.373057 -1.444821 -1.620888 -0.973513 1.186491 -1.916751 0.837771 3.080214 -0.932105 1.646566 -0.127112 -0.077170 -0.699146 -0.748444 0.614609 0.644023 -1.474893 2.470367 0.255206 5.210598 -0.252457 2.005032 -1.344799 2.740776 -1.475522 -2.856506 -1.379366 2.463060 2.596140 0.655684 0.663461 0.600826 -0.717168 2.129156 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.368307 0.262202 1.271473 1.462056 -1.171794 -1.736384 -0.307626 -1.530372 0.961562 0.360262 1.237762 0.353985 1.110324 -0.702845 -0.090201 -0.355173 1.010590 0.297689 -0.047080 -0.572246 -0.860109 1.961515 0.445923 -0.952489 0.322750 -0.554489 1.447518 0.627636 0.691263 1.459030 0.272473 0.118009 -0.366501 0.522294 -0.439130 -0.039795 -0.799684 0.717740 -0.689172 -0.339754 0.695098 -0.917491 1.512069 0.299757 0.564472 0.135583 0.793022 -0.031098 -0.979537 -0.612627 -0.749770 0.231547 -0.746121 0.875754 -0.668502 -0.326019 0.914180 0.234176 0.191438 -1.176292 0.184429 -0.631026 -0.911113 -0.193026 -1.199326 0.032774 -0.898634 -1.042814 -0.100719 -0.630119 0.560588 0.152090 -0.131891 -0.801982 -1.938357 0.013673 0.356892 0.250005 0.843469 1.087914 -0.362725 -0.551031 -1.249222 -0.956547 0.991932 -0.106509 0.349621 0.658325 -1.024954 -0.725796 0.180162 0.430660 0.468646 0.555260 -0.628757 0.629808 -0.151227 -0.338164 -0.241020 -1.480855 0.279450 -0.679348 0.266610 0.383945 -0.532914 0.058736 -0.269841 0.175391 -0.321885 -1.237223 0.330833 -0.846042 -0.532016 1.166757 -0.280651 -0.721077 -0.520858 -0.004834 0.393162 0.826369 0.305225 0.199174 0.904428 0.557596 0.690979 -1.053233 -0.025105 0.513008 0.426041 0.376088 0.262510 -0.118865 -0.713105 0.399588 -0.709054 -1.879541 -0.559570 1.071921 1.062785 -0.116543 -0.751670 0.809772 -0.771386 0.486873 1.148842 0.574676 0.635967 0.293950 -0.843610 0.438206 1.433968 -0.477920 0.576822 -0.330859 -1.235168 1.894157 -0.159836 0.424612 -0.351265 -0.282832 -0.078214 -0.503565 0.438400 1.313970 -0.133877 0.091312 0.348454 0.261023 -0.579150 -1.380407 -1.858557 0.048369 1.743487 1.462757 1.969303 -1.148344 0.127663 0.248322 0.422255 -0.067619 -0.705445 0.318399 -0.458599 0.680310 -3.325156 -1.676852 2.108941 0.814662 0.507204 0.044221 0.354043 0.437254 -0.032143 -0.960403 -1.129198 0.602475 0.383395 -0.622334 -0.176007 0.256569 -1.474721 -0.180236 0.364118 0.160497 0.761244 -1.219666 0.317731 -1.268989 -0.610103 -0.961392 0.804019 -0.937032 -0.269436 -0.027137 -0.258070 0.087619 0.455608 0.378262 -0.181021 -0.420250 -0.544962 -0.346363 -0.325576 0.666067 0.065828 1.635414 2.033210 -0.769687 -0.103505 0.088838 -0.916218 2.726031 -1.160498 0.073854 -0.014385 1.329852 0.643222 0.561309 1.337861 -0.487839 -0.327510 -1.316049 -0.101897 0.859303 0.505084 -1.947068 -0.537776 -2.055774 0.104459 -0.312698 1.852383 -0.254178 2.161349 -0.913971 0.297508 -1.943159 0.182041 0.711384 -0.040605 1.186669 0.366900 -0.951896 -0.420207 -0.528733 -1.064367 0.783288 -0.151108 -0.446819 -0.722391 0.037740 -0.224896 -0.932445 0.410763 0.818011 -0.963756 1.005325 -0.331833 -0.021946 -0.646737 0.030673 0.655717 0.340741 -0.680654 1.251560 0.109193 2.109391 0.166793 0.808818 -0.604318 0.797335 -0.636810 -1.426360 -0.725293 1.342852 1.181987 0.299423 0.518799 0.471894 0.173233 0.924924 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.366216 0.670928 2.297548 1.260820 -0.866778 -1.833667 -0.614684 -2.702656 1.307967 0.468984 1.426805 -0.319937 0.915926 -0.164861 -0.285313 0.201695 0.749814 0.045547 0.156266 -0.625549 -0.982847 2.607843 0.265922 -0.680769 0.279281 -2.263551 1.157456 0.670213 1.437366 1.300408 0.219892 -0.042237 -0.027954 0.707740 -0.996638 -0.054332 -0.280508 0.543720 -1.313395 -0.018042 0.233670 -0.084368 1.294313 -0.020159 0.805974 0.302178 0.959463 0.049796 -0.611592 -0.362011 -0.884657 1.448620 -0.452339 0.757205 -0.291912 -0.174085 0.250584 -0.580988 -0.149146 -0.405568 -0.096278 0.089735 -0.984249 0.061184 -1.454926 0.257391 -0.866190 -0.961932 0.304671 -0.281887 0.858211 0.309910 0.044025 -0.910346 -2.396055 0.576159 0.366846 0.441029 0.660244 0.424707 0.160479 0.061984 -1.281499 -1.200791 1.258355 1.078936 0.310956 0.161370 -0.713713 -0.922511 -0.111657 -0.020627 0.347687 1.054398 -1.032789 0.718351 -0.983048 -0.454437 -0.914276 -1.912358 0.018143 -1.053792 0.631009 0.262820 -0.233682 0.439260 0.666718 0.403946 0.133985 -1.583431 0.057168 -0.542919 0.090348 2.160260 -0.380616 -0.790053 -0.636496 -0.140836 -0.572225 1.093982 0.175308 0.383282 1.603374 0.886048 0.791411 -1.121313 -0.279521 0.758559 0.415574 0.668501 0.748044 -1.167584 -0.773399 0.068898 -0.269927 -2.587040 -0.520307 0.694819 1.100694 -0.624908 -0.671928 0.569195 -0.582866 1.174555 1.055396 0.185359 0.629250 0.049354 -0.795943 0.797092 2.623370 -0.621997 0.762033 -1.341746 -1.435184 1.727712 -0.364889 0.915219 -0.201238 0.095575 -0.032064 -1.035534 0.558857 1.683181 -0.215794 0.148966 0.579985 0.238547 -0.585521 -1.877553 -2.253678 0.046085 1.152034 0.421126 2.684112 -1.238275 -0.726249 -0.045005 1.227204 -0.016117 -0.402346 0.661051 -1.134098 0.703812 -2.876191 -2.327221 2.302848 1.919690 0.544378 -0.209414 1.159411 0.683739 -0.928971 -1.234208 -1.070117 0.894576 0.590198 -1.466119 -0.595238 0.133917 -1.555799 -0.163193 0.054649 0.360341 0.971233 -0.414846 0.404576 -1.174758 -1.589363 -1.317875 1.418538 -1.291733 -0.161201 0.000867 0.065706 -0.340382 0.949427 -0.459569 -0.323254 0.258441 -0.671321 0.074906 0.266309 0.639749 -0.230807 1.906938 2.262142 -0.254440 1.260023 0.200694 -0.827142 3.121802 -0.969487 -0.033756 -0.078441 0.817901 -0.362991 0.810322 0.975920 -0.551941 -1.085267 -1.487496 0.307448 0.131156 0.357702 -1.201955 -1.101426 -1.978255 -0.519106 -0.038291 1.921160 0.410270 2.711711 -0.858793 0.507863 -2.960027 0.226474 0.768087 -0.004851 1.521767 0.581270 -1.249305 -1.075515 -0.326973 -1.100381 -0.299765 -0.422760 -1.754301 -1.110160 -0.804891 0.620567 -0.859428 0.501241 1.537523 -0.244182 1.049231 -0.549219 -0.203624 -0.980124 0.058426 1.211274 0.136723 -0.927277 1.096342 -0.127119 3.256782 -0.285853 1.065418 -0.906597 0.379292 -0.298173 -1.487925 -0.605762 1.692166 1.093469 0.398923 -0.061438 -0.093487 -0.260979 0.961126 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -0.776109 1.494483 5.348223 3.595950 -2.588293 -4.100572 -1.565034 -3.409642 1.135057 0.921376 3.225078 -1.338875 1.213784 0.897712 -0.368314 -1.612690 1.270475 -0.195075 -0.213567 -1.572829 -3.931772 3.127207 2.094479 -3.030812 0.849630 -4.172001 4.188647 1.716679 0.244226 3.307326 0.264609 0.485598 -0.410011 2.083743 -2.495585 -0.259173 -0.632895 1.229958 -0.150330 0.441964 2.360222 0.347801 2.697250 0.349834 1.064418 3.397703 0.881535 0.058437 -3.218120 -1.270526 -0.582057 0.913439 -1.679347 1.204406 -0.393685 1.494018 1.674977 -2.955166 -0.135153 -3.480456 0.738272 -0.014651 -2.283850 0.388486 -3.359007 0.212863 -1.556258 -2.548815 1.486476 -1.309011 1.241278 -0.232248 -0.995529 -2.030504 -1.828148 1.258865 1.313779 0.654215 1.362166 -0.217279 -1.164364 0.709137 -3.007169 -2.341687 0.907503 -0.119666 1.571830 0.401866 0.060535 -2.008376 1.114439 0.151360 0.157017 2.955842 -0.672244 1.131732 -0.947171 -1.473330 -3.468032 -3.184715 0.264640 -2.084100 1.707266 3.143800 -3.313277 0.163358 0.008357 0.773011 0.169670 -3.594182 -0.557557 -2.725140 1.740174 2.704706 -1.302860 -1.779081 -1.245482 -1.151260 0.984122 3.129827 -0.125894 -0.221865 3.903807 1.734612 0.811544 -2.357779 -0.169855 -0.277093 0.589578 1.095193 2.029363 -2.905168 -1.653580 -0.230107 -1.445155 -4.729747 -0.341055 -0.028021 1.992592 -0.452097 -3.709571 3.103614 -1.846724 1.720489 1.954503 2.698241 0.839620 -0.384581 -1.669162 0.951213 5.047744 -1.604286 1.733585 -1.998778 -5.271980 4.681739 0.109492 1.712813 0.967309 -0.399926 0.005302 -2.142742 1.195625 3.927756 -0.029997 0.534524 2.826815 0.111992 0.214429 -3.730283 -4.450941 1.192376 2.526841 1.579706 6.995921 -3.756931 -0.319910 -0.395183 3.503330 -0.409192 -1.061604 -0.116359 -0.202998 0.961786 -7.176285 -5.248710 3.877336 2.672294 0.488184 -0.126447 2.248784 0.080798 0.167088 -1.643610 -3.131950 2.112658 0.691294 1.101223 0.127198 0.163805 -2.952906 0.525853 -0.154046 1.216754 3.053754 -4.144041 -2.273824 -2.977246 -3.814965 -3.283286 1.077499 -3.344799 -0.367065 0.312729 -0.261631 -0.357744 0.958058 0.229310 -1.844345 -1.106676 -1.370738 -0.362784 0.990039 2.084994 0.126825 5.135316 3.926537 -1.488703 0.317637 0.623083 -0.662452 8.278236 -2.183201 0.094516 0.241102 4.169151 0.235805 1.254393 3.125848 -0.841797 -1.625625 -2.830878 1.425622 0.391845 0.242200 -5.860370 -1.120581 -5.726927 -0.998440 -0.096708 4.878450 0.348658 6.049026 0.440278 0.531575 -5.443701 0.025013 2.016360 -0.476886 2.334999 1.498391 -3.191281 -3.513941 -0.668632 -2.288972 2.084583 -0.315322 -1.932420 -2.356239 0.444692 -0.689747 -0.407921 1.550078 3.678744 -0.697350 0.249592 1.059389 -0.514585 -0.633112 -1.567170 2.490830 0.391287 -1.669227 3.642268 0.204076 5.617958 -0.002344 2.642477 -1.604386 0.676274 0.272705 -1.674921 -1.667536 2.940321 1.696516 0.942190 0.716799 0.864896 -0.450744 2.244932 -PE-benchmarks/vertex-cover-problem.cpp__main = -0.424482 2.135915 8.237822 2.668077 -2.859615 -6.524507 -2.131818 -9.146349 4.097880 2.397286 6.480291 -0.188424 3.686026 0.349020 0.702556 1.075826 3.501277 -0.503392 0.111210 -2.685001 -1.254452 6.709735 1.487015 -1.903861 1.175797 -5.778117 2.050987 3.077187 3.546028 3.678234 1.192349 -0.057637 -0.940491 2.613252 -3.004207 0.428751 0.381179 1.762001 -4.046897 -0.318236 0.416338 0.425241 4.562382 0.580822 4.515279 1.015106 3.484727 0.207954 -2.878885 -1.951544 -2.442194 6.059854 -2.031027 2.947025 -0.421872 0.050490 0.140137 -2.267908 -0.223228 -3.320250 0.492730 0.793590 -3.434599 -0.157807 -3.508440 0.781591 -1.963570 -2.846965 0.524426 -1.724094 3.092386 -0.502864 -0.610259 -1.682492 -7.539908 1.131985 0.927955 1.217654 2.734106 0.691805 -0.779499 -0.597240 -3.184589 -4.304785 4.073657 3.507955 0.906757 1.313324 -3.992739 -1.469464 -0.730728 -0.272370 0.602561 3.854640 -4.598905 2.426751 -0.289223 -2.382771 -3.455678 -4.814177 0.802533 -3.594264 1.822441 0.449243 0.324432 0.533179 -1.603895 1.537638 -1.543676 -4.517125 1.266699 -1.376320 -0.984590 5.734572 -2.689423 -1.855162 -1.692662 -0.410531 -0.460133 3.826166 1.073484 1.253482 4.440203 3.439770 2.446267 -4.142995 -0.897038 1.929795 2.811268 2.858310 2.186337 -3.562925 -2.708299 1.165045 -2.851999 -8.195240 -1.609784 3.472681 4.511247 -0.775760 -3.009801 1.065871 -2.427640 4.226835 4.245303 2.031760 1.596150 0.265520 -3.599759 1.839514 7.537330 -2.854241 4.115025 -2.096512 -2.801700 4.206231 -2.425404 3.299321 0.593104 -0.315943 -0.250866 -2.822760 -0.055376 5.705585 1.885169 1.762035 0.500566 1.042005 -2.293000 -5.844669 -8.531678 -1.432253 4.137089 1.425442 7.078409 -3.857705 -3.415454 -0.746826 4.697945 -1.167276 -3.153194 2.106198 -3.196928 2.536697 -8.626989 -6.255264 8.035808 8.063399 3.127921 -0.938006 4.498220 2.213563 -3.889985 -3.882374 -2.492636 3.174711 0.550752 -4.652748 -1.299068 0.403290 -5.818505 -0.662254 -0.930708 1.319241 1.072317 -0.207127 2.819305 -0.826829 -4.303855 -2.452006 2.545551 -3.288278 -1.883498 -0.583434 0.185586 -0.235183 2.048019 -2.471392 -1.403256 2.274528 -4.295819 -0.231606 1.183805 2.808399 1.233339 7.380558 6.152834 -0.412951 5.005974 -0.165999 -3.439226 8.468073 -3.226772 0.362896 -0.349309 2.478266 -0.631003 2.307548 3.056897 -1.870722 -3.770258 -5.031588 0.264387 0.896949 2.994468 -2.310803 -4.958207 -6.231108 -0.547720 0.530007 6.921312 -0.508777 9.108914 -2.189517 2.736594 -9.774697 0.938360 2.039444 -0.839146 3.402098 2.152430 -4.353258 -4.897941 -0.707471 -4.265334 -2.411931 0.102803 -4.226246 -3.329419 -3.668645 3.129200 -3.933407 0.850882 3.640427 -1.024599 4.483505 -0.145978 -0.989211 -2.446128 0.590862 5.221728 0.569060 -3.864234 3.925252 0.132807 12.295615 -1.122557 4.455524 -2.570781 1.243232 -0.902829 -3.760776 -2.485298 6.230158 5.838431 1.998628 -0.618044 -0.075092 -0.987893 3.056496 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -3.860865 3.140295 16.733244 7.990558 -6.497726 -9.105162 -5.188206 -13.958689 6.861936 4.665470 12.293271 -2.029944 4.679054 1.838918 0.293321 -2.600770 4.829385 -2.732618 -0.333736 -4.132121 -3.251160 9.989835 5.744797 -7.812004 1.242069 -11.015905 5.205214 4.461206 3.572380 6.347550 1.646869 0.222789 -1.354318 5.885652 -6.881107 0.423656 1.886375 3.813269 -4.428243 -2.246509 3.545001 2.900453 7.412192 0.031284 8.600167 3.615047 5.154483 -1.240453 -9.084728 -3.246133 -2.632358 10.051397 -5.241155 4.844786 2.668484 3.090634 0.621901 -8.508026 -1.874365 -10.843984 2.124505 2.324358 -5.428507 0.326962 -6.470604 1.806332 -1.694203 -4.498336 3.554904 -4.029397 5.445612 -0.741905 0.735850 -3.098008 -8.096416 4.606921 1.888513 1.638817 4.349553 1.023819 -1.679084 0.380293 -4.473722 -7.331283 4.498385 3.894209 1.464219 1.466583 -2.537482 -1.558904 1.303610 -1.622235 -1.655812 8.886639 -7.149501 4.926888 0.299394 -4.588829 -6.941267 -6.830679 0.083890 -8.322255 4.238193 6.859673 -4.581409 1.598572 -2.511372 3.714786 -2.043770 -9.286181 1.821606 -3.281235 1.113213 8.535528 -6.991605 -3.460548 -1.785464 -0.894167 0.813460 7.480281 0.283132 3.173116 8.442491 6.250076 4.169120 -7.843969 -0.192544 2.733693 5.659808 4.813953 4.843606 -8.669679 -4.183490 1.023677 -3.474417 -14.086783 -2.661108 4.428164 7.713952 0.816101 -10.078845 3.001713 -3.788528 8.908046 6.771010 6.467535 2.160573 0.335170 -6.084786 2.314660 12.942275 -5.201028 7.335657 -2.492443 -8.255483 7.790505 -4.223293 7.492689 1.798373 1.160744 1.609301 -8.461441 -0.123663 10.901600 3.696753 3.352128 1.958644 1.046043 -2.266422 -12.357931 -15.061573 -0.974667 5.834636 2.096898 14.873095 -8.338382 -7.167348 -1.719375 10.863615 -1.919319 -5.132304 1.744714 -3.567722 4.218137 -16.292530 -13.139602 13.300296 13.886096 4.053538 -1.355237 9.698541 1.250697 -5.386642 -6.342091 -6.367147 6.533445 1.411041 -1.570328 -0.374601 0.330762 -9.986211 -1.654937 -1.072254 2.457469 4.227888 -4.744063 -0.276421 0.278426 -8.643795 -3.872844 3.766776 -7.212693 -4.688006 -1.439653 1.364723 0.467846 3.643298 -4.297458 -4.910519 2.456872 -7.597792 -1.891381 3.484638 6.371295 1.950403 14.390060 11.090951 -1.115551 7.243255 0.685348 -4.852558 19.214567 -6.961738 -1.133664 -0.720375 5.545795 -0.685121 3.006282 5.764180 -3.463871 -6.725635 -8.524475 2.550251 -0.679895 4.961463 -11.030157 -9.210244 -11.256462 -1.591084 1.928969 10.552526 0.421789 18.187504 -1.539470 3.037265 -18.797170 0.546909 6.797541 -1.435358 6.301475 5.077575 -8.555876 -14.124049 -1.566808 -6.559004 0.403226 -0.664208 -8.129454 -5.848077 -6.071335 6.666939 -4.621145 3.065149 9.272802 -0.914714 6.157881 3.079102 -2.507677 -2.828775 -1.952839 6.535923 1.556060 -7.155027 10.702549 -0.494165 22.722170 -3.030929 7.379001 -5.964555 2.608924 -1.700432 -4.253338 -3.834376 10.913454 9.752785 4.212973 -1.426507 0.048933 -5.602408 5.544684 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.084909 0.901679 2.607483 1.499600 -1.632639 -2.492267 -0.766889 -2.954825 1.223533 0.475921 1.896731 -0.254756 1.077486 0.040336 -0.113983 0.090578 1.236133 0.072470 0.131052 -0.972849 -1.493662 2.576119 0.497123 -0.812642 0.485984 -1.814304 1.484958 0.915811 1.265770 1.534981 0.340823 -0.069560 -0.376894 0.889275 -0.818028 -0.043851 -0.398089 0.765842 -1.413332 0.186727 0.447393 -0.689848 1.910403 0.093688 0.923742 0.651409 1.211815 0.220180 -1.410243 -0.615688 -1.090455 1.453860 -0.819830 1.079239 -0.328633 -0.232642 0.578503 -0.617206 -0.135949 -0.681803 -0.173188 -0.460153 -1.214576 0.059366 -1.751320 0.238719 -1.236166 -1.387367 0.344142 -0.425208 0.987221 0.205412 -0.129646 -0.613718 -2.622171 0.475851 0.561917 0.697601 0.859038 0.555486 0.092443 -0.005633 -1.708359 -1.498529 1.229846 0.708533 0.643485 0.180027 -1.180112 -0.862757 0.137453 0.180360 0.407703 1.219394 -1.199117 0.914722 -0.939884 -0.742344 -1.422770 -2.651619 0.099385 -1.147366 0.813282 0.298672 -0.678247 0.189617 -0.056112 0.483999 -0.073079 -2.023384 0.115602 -0.809972 -0.168267 2.263255 -0.624327 -0.931351 -0.746389 -0.276339 -0.187536 1.189087 0.433379 0.344832 1.743559 1.153945 0.928225 -1.392796 -0.420979 0.344829 0.605562 0.777350 1.058217 -0.949725 -1.107432 0.265975 -0.769329 -2.991513 -0.624392 1.096945 1.532735 -0.340052 -0.862834 0.571960 -1.083456 1.227117 1.316993 0.793273 0.751582 -0.049128 -1.070721 0.800944 2.557306 -0.907239 1.236080 -1.131722 -1.521469 2.095069 -0.349526 0.932781 -0.058872 -0.112195 -0.198640 -1.091597 0.287169 1.940290 0.139328 0.071278 0.864321 0.251092 -0.871429 -2.108666 -2.654278 0.228650 1.810780 0.797465 2.677297 -1.709732 -0.653583 0.049274 1.368430 -0.127507 -0.924632 0.584017 -0.953943 0.841789 -3.515925 -2.521170 2.732077 2.061172 0.612335 -0.130722 1.095845 0.708139 -1.268135 -1.624752 -1.486677 1.151005 0.282779 -1.554409 -0.757472 0.287731 -2.003815 0.091167 0.083410 0.613422 1.278032 -0.875992 0.477664 -1.151540 -1.671506 -1.394670 1.330259 -1.421398 -0.452965 0.223660 -0.155950 -0.073641 0.883448 -0.159982 -0.526211 -0.000625 -1.150853 -0.126126 0.180211 1.053830 -0.084953 2.744984 2.562335 -0.418111 1.053337 0.168527 -1.224737 3.546382 -1.414041 0.189431 -0.167286 1.369898 -0.218095 0.847494 1.642605 -0.625427 -1.406285 -1.769473 0.081372 0.340410 0.640266 -1.644398 -1.308128 -2.736002 -0.257108 0.031793 2.595544 0.101926 3.113246 -0.837115 0.679525 -3.227610 0.281716 0.791136 -0.073905 1.710210 0.667368 -1.509233 -1.036658 -0.442943 -1.623940 0.055726 -0.226997 -1.396577 -1.265058 -0.522248 0.331112 -0.934802 0.383542 1.468812 -0.692808 1.393485 -0.033721 -0.366349 -0.914282 -0.069594 1.977194 0.189898 -1.098551 1.749889 0.153363 4.056262 0.204531 1.204819 -0.872180 0.123464 -0.075927 -1.636184 -0.917938 2.074080 1.613994 0.576721 0.090106 0.139449 -0.105811 1.127788 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.567949 0.849549 3.908194 1.996090 -1.344146 -2.610449 -1.030329 -3.087420 1.711679 0.848210 2.722115 -0.081745 1.527022 0.331080 0.055033 -0.432622 1.407940 -0.474303 0.095743 -1.062839 -0.706841 3.429373 1.430203 -1.832607 0.365177 -3.155657 1.800138 1.019221 1.422864 2.556484 0.236731 0.124195 -0.152280 1.323310 -1.585450 -0.215887 -0.322195 0.956959 -1.219304 -0.227292 0.963641 0.412838 2.078718 0.390858 1.464371 1.018828 1.429941 -0.154114 -1.493293 -1.006633 -1.376281 1.972630 -1.361569 1.330787 -0.543364 0.571178 0.660634 -1.267587 -0.339308 -2.516916 0.319563 0.533829 -1.477419 -0.082080 -2.063363 0.489621 -1.063478 -1.410578 0.429263 -0.811014 1.556588 0.306245 0.262879 -1.281659 -3.025529 0.914119 0.085729 0.769359 1.098743 0.334134 -1.065779 0.169494 -1.608451 -1.943872 1.347075 0.791957 0.397053 0.367354 -0.713748 -0.976906 -0.227562 0.174210 -0.315584 1.912829 -1.521605 1.560864 -0.272092 -0.766670 -1.124215 -1.745534 -0.094382 -1.992310 0.683971 1.354532 -0.552179 0.193257 -0.625556 0.591410 -0.475675 -2.382985 0.625862 -0.774221 -0.735193 2.227885 -1.382171 -0.709541 -0.455537 -0.042948 0.311622 2.132595 -0.006406 0.796609 2.045310 1.505340 0.881834 -1.843707 0.154561 0.759572 1.337882 1.021620 1.360246 -1.591697 -1.419630 0.150779 -0.746156 -3.726734 -0.308303 1.730534 1.977002 -0.074052 -2.386739 1.313486 -1.263968 1.997176 2.210190 1.340535 1.005907 0.012197 -1.572878 1.048145 4.023395 -1.428936 1.847386 -1.313059 -2.171722 3.218361 -1.125750 1.822669 -0.111068 0.287259 0.266186 -1.823665 0.228043 2.889351 0.677792 0.947489 1.288372 0.089776 -0.117211 -3.148755 -3.551848 -0.645689 1.907282 0.921787 3.996843 -1.924838 -0.816130 -0.278053 1.943195 -0.434309 -1.212877 0.317941 -0.849539 0.895894 -5.354846 -3.358510 3.818512 3.180241 0.712719 0.025937 1.906120 1.103627 -0.477585 -1.655101 -1.531752 1.652516 0.259812 -0.721718 -0.251581 0.140551 -2.542558 -0.439532 -0.036369 0.497311 1.298039 -1.482108 -0.167570 -0.651081 -2.499120 -1.634028 1.126582 -2.336157 -1.219433 -0.067092 0.030277 -0.170183 0.651987 -0.291547 -0.677619 0.742320 -1.622572 -0.556703 0.480552 1.439399 0.461874 2.869404 3.068472 -0.355079 1.052471 0.468932 -1.415187 5.111866 -1.870041 -0.330469 -0.160279 1.931424 0.015472 1.185971 1.350231 -0.733274 -1.527247 -2.433591 1.135031 0.365612 0.925735 -2.621911 -1.958527 -2.714179 -0.404903 0.449733 3.348859 -0.104181 4.693220 -0.851897 0.816672 -4.664598 0.311644 1.473316 -0.062294 1.715860 1.324339 -1.897570 -2.410685 -0.642873 -1.510478 0.771916 -0.332032 -2.308618 -1.546233 -1.045357 0.756529 -1.694997 0.929763 2.175560 -0.711483 1.857477 0.349085 -0.579878 -1.281525 -0.191152 1.628851 0.747727 -1.524632 2.380641 -0.341245 4.782865 -0.749928 2.044225 -1.490163 0.866566 -0.578730 -1.653247 -1.002171 3.038761 2.139445 0.701123 0.392396 -0.063421 -0.442947 1.504065 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -2.536685 1.780497 12.977814 8.255749 -3.110125 -6.089064 -2.995765 -6.947808 5.689609 2.341480 7.764460 0.206419 3.722159 1.301541 -0.061043 -3.029594 3.033726 -1.633248 -0.746569 -2.341422 -0.165682 10.506049 6.215160 -9.250941 0.224684 -10.803210 5.175874 3.203645 4.329970 7.997946 -0.168105 0.590686 0.916179 4.501664 -6.811043 -1.849414 -1.573528 2.558925 -2.822628 -2.788795 4.337062 3.863958 5.380828 1.030335 4.355231 2.276896 5.407229 -2.047506 -4.504858 -2.478494 -4.975749 7.297241 -4.371445 4.035316 -1.248098 4.222658 1.891411 -5.675034 -1.549791 -10.917779 2.185547 4.775549 -4.397038 -1.081818 -6.066423 1.536482 -1.239975 -3.643773 2.338907 -2.676292 5.009630 1.077459 1.917997 -6.370202 -7.765071 3.750677 -1.072460 2.274598 2.940752 1.287652 -4.404768 0.975255 -3.187126 -4.989200 2.989643 0.971164 -0.002995 1.152781 0.657578 -3.198863 -0.791035 0.309553 -3.514677 6.277962 -4.937564 6.126186 0.210369 -1.551270 -2.101374 -1.189994 -1.316414 -7.301885 1.399511 6.620066 -1.789420 1.711696 -1.141108 1.602982 -1.122924 -7.211506 1.623136 -1.533048 -2.611047 5.126357 -5.234399 -1.589407 0.832329 1.024886 0.814438 7.175490 -1.759210 3.472066 6.099643 4.161148 2.265013 -5.645320 2.611217 2.814234 4.740042 3.629964 4.164666 -5.310031 -3.747414 -0.753527 -0.023592 -11.357331 0.891770 5.996628 5.761344 1.648834 -10.481100 4.412185 -2.789408 7.538445 6.619853 4.788426 3.166033 0.313478 -4.427701 2.820375 13.888504 -4.539732 5.540816 -4.042108 -7.674369 10.768938 -4.427055 7.023752 -0.953109 2.222008 3.252364 -7.239300 0.437070 9.602978 2.102945 3.261455 5.185800 -0.674083 1.725273 -11.407627 -10.500054 -3.291686 3.539280 2.537274 14.028104 -5.255332 -2.986482 -1.584363 5.666237 -2.573465 -2.704864 -0.071351 -2.201450 2.486929 -17.615045 -11.047420 11.549257 9.753148 0.685583 0.679625 7.627431 2.791114 1.374781 -4.196286 -4.219619 4.986445 2.145190 2.050269 1.421858 -0.439595 -7.560299 -2.199763 0.532784 0.458608 3.429832 -6.257187 -3.059319 -0.839531 -9.044852 -4.944309 2.571690 -8.896188 -4.249563 -0.981398 0.935168 -0.875431 1.589902 -0.882769 -3.033998 2.798206 -4.511356 -2.694947 1.335863 4.605444 2.137423 6.931574 9.417405 -0.339997 3.829503 2.801427 -3.827667 18.149108 -6.236943 -2.890243 -0.361132 6.291262 0.053041 4.045667 2.159669 -2.185354 -3.306084 -7.452139 6.007989 0.010565 2.528338 -10.843659 -5.462232 -5.942634 -2.507002 2.452425 8.443334 -0.421859 15.520026 -2.455588 1.608153 -16.191320 0.400858 6.244042 0.291443 4.964316 5.247466 -5.935118 -10.380378 -2.029406 -1.938170 5.667145 -1.476265 -8.746978 -4.593653 -3.964376 2.888101 -6.004625 4.519206 8.223644 -1.989421 5.268956 0.954747 -1.760864 -2.988202 -1.659947 2.177843 3.953908 -4.782495 7.880190 -2.730594 13.851689 -4.229585 6.981074 -6.216026 3.877143 -2.754066 -3.880191 -2.513850 9.546426 5.817925 2.036033 1.536084 -0.525210 -3.540434 4.814068 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.898700 1.602480 5.510412 3.359840 -3.155673 -4.666549 -1.729017 -4.769693 1.794471 1.257325 4.053631 -0.671671 1.956133 0.475015 0.176507 -0.849523 1.982641 -0.173156 0.249974 -1.883232 -2.888114 4.141083 2.035922 -2.381867 0.611627 -3.484368 3.292740 1.715668 1.728809 3.032666 0.436513 -0.044487 -0.820043 1.768155 -2.058839 -0.300175 -1.269817 1.560590 -1.771072 0.517735 1.322476 -0.388523 3.119273 0.459191 1.848735 1.964331 2.532269 0.112301 -3.458567 -1.302281 -1.832262 3.076705 -1.919591 1.744796 -0.215369 0.426751 0.910169 -1.776299 -0.683030 -3.224817 0.464579 -0.494498 -2.777204 0.266812 -3.708185 0.571859 -2.799623 -2.510144 0.713886 -0.667662 1.867407 0.075593 -0.303557 -1.661868 -4.102218 1.117844 0.305451 1.102125 1.626826 0.527235 -0.903036 0.325531 -3.015285 -2.997864 1.787170 0.610108 0.882624 -0.071616 -1.200401 -1.774576 0.168361 0.177103 -0.191357 2.602286 -2.554737 2.609869 -1.034588 -1.399781 -2.996573 -3.811474 -0.117415 -2.608326 1.473913 1.988052 -1.627819 -0.248499 -1.247865 0.952860 -0.697264 -4.149854 -0.123904 -1.605810 -0.082557 3.625916 -2.112270 -1.154371 -0.937500 -0.306278 0.392955 2.589333 0.780801 1.042183 3.397813 2.444004 1.364439 -2.596227 -0.049356 0.598171 1.374059 1.715891 2.131254 -2.363564 -2.278552 0.441163 -1.119510 -5.442611 -0.489746 2.415816 2.537894 -0.078681 -2.853511 1.482835 -2.053857 2.672656 2.649396 2.489400 1.329792 -0.413271 -2.033245 1.484697 5.274036 -2.086368 2.541337 -1.545232 -3.631732 4.941951 -1.170275 2.040351 0.549403 0.130872 -0.158926 -2.423546 0.074384 3.960334 1.127224 0.700532 2.506832 0.437405 -0.656843 -4.131284 -4.879657 0.385288 3.026785 1.364582 5.710057 -3.291162 -1.217826 -0.297380 2.947647 -0.048510 -2.014432 0.335857 -1.032751 1.239237 -7.462854 -4.968711 4.837411 3.952777 0.773649 -0.462171 2.897200 1.298371 -1.581650 -3.044095 -3.095370 2.646886 -0.204701 -0.738385 -0.618005 0.564997 -4.401111 0.212804 -0.014301 1.158212 2.632583 -2.822173 -0.468520 -1.519716 -3.633292 -2.554847 1.789186 -3.064240 -1.277498 -0.020912 -0.364656 -0.023578 1.203242 -0.511390 -1.135914 0.007578 -2.699238 -0.674151 0.645075 2.180776 0.513453 6.249883 4.406392 -0.502371 1.338901 0.473362 -2.099822 8.142399 -2.440710 -0.127484 -0.187293 3.113551 -0.368801 1.334449 2.816018 -0.953658 -2.891909 -3.300471 1.063601 0.563343 1.370913 -4.146706 -2.398534 -5.347248 -0.357356 0.602781 5.235492 0.016922 6.347486 -0.930047 1.279853 -6.238105 0.545708 1.496437 -0.459135 2.952817 1.561849 -3.083118 -2.695425 -0.891180 -2.406903 1.429821 -0.388912 -2.535871 -2.340990 -0.578090 0.344637 -1.638781 1.087699 2.781500 -1.284984 2.255949 1.320196 -0.964255 -1.215530 -0.327615 3.530586 0.979065 -2.691404 4.245516 -0.168905 8.174073 -0.083523 2.588383 -1.933710 0.140165 -0.189035 -2.279086 -1.470174 4.284241 3.356379 1.570824 0.240178 0.594698 -0.668467 1.800826 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.567567 0.438297 1.136213 1.452479 -1.175050 -0.969700 -0.803318 -0.793304 0.469475 -0.016927 0.524359 -0.139099 0.378802 -0.841935 -0.354002 -1.009745 0.376289 -0.171864 -0.385407 -0.851869 -0.649055 0.495188 0.057540 -1.321479 0.171979 -0.891560 1.185413 0.713168 0.004898 0.939597 -0.164881 -0.230012 -0.626701 0.480901 -0.661037 -0.471433 -0.230557 0.165482 -0.380174 0.101161 0.618330 0.549479 1.034768 0.478149 -0.018723 0.829127 0.266365 0.312794 -1.317350 -0.055434 -0.010794 0.407551 0.003558 0.667533 0.372184 0.431662 0.550041 -0.774722 -0.378429 -1.138050 0.362693 -0.269472 -0.234390 -0.321375 -0.839175 -0.371747 -0.273388 -0.888530 -0.066328 -0.491898 0.025061 -0.153932 -0.278328 -1.022543 -0.284535 0.214233 -0.035235 0.501560 0.854717 0.540070 -0.095402 -0.504247 -0.902895 -0.990603 0.175670 -0.174198 0.423639 0.649714 0.264931 -1.188495 0.425355 -0.319855 0.000000 0.350552 -0.174010 0.365292 -0.219611 -0.147778 -0.677152 -0.272719 0.034617 -0.002838 0.167445 0.924372 -0.623448 -0.696878 0.052279 0.360138 -0.416471 0.043405 0.120194 -0.481075 0.098525 1.011988 -0.221899 -0.652627 -0.198810 -0.262241 0.066292 0.831452 -0.110688 0.044187 0.581148 1.164537 0.710287 -0.781877 0.129058 0.038265 0.397831 0.593422 0.655221 -1.088141 -0.343218 0.684230 -0.437190 -0.911017 0.047944 0.020741 0.971542 0.277722 -0.919632 0.618361 -1.032359 0.591565 -0.028880 0.501353 0.470640 -0.619541 -0.897967 0.733855 1.301639 -0.468431 0.601886 -0.601645 -0.846142 0.846600 0.158030 0.187900 0.022184 -0.898376 0.003113 -0.002591 0.502699 1.076609 0.315646 -0.142937 0.361804 0.571206 -0.621632 -1.278403 -1.565925 0.407289 0.600948 0.211466 2.109238 -0.945900 -0.966209 -1.039745 1.218165 -0.248632 -0.182510 0.158354 -0.415227 0.552796 -0.923912 -1.070856 1.861900 0.972208 0.064499 -0.287321 0.903928 -0.430777 0.335002 -1.021461 -0.189742 0.263074 0.298991 0.488018 -0.055559 0.203583 -1.233117 -0.245107 0.490306 0.363867 0.504130 -1.151044 -0.258699 -0.289503 -0.825139 -0.991826 0.330671 -0.911291 0.312419 0.542518 -0.492227 -0.270403 1.113986 0.058813 -0.712555 -0.358028 -0.486122 -0.269749 -0.450170 0.712853 0.502850 1.177942 1.242089 -0.027400 0.920946 0.595695 -0.656606 2.761493 -0.572364 0.093747 0.349993 0.838641 0.316892 0.436633 0.552229 -0.291307 0.385327 -0.964464 0.304123 0.363288 0.584199 -2.228646 -0.549388 -1.409798 0.008501 -0.217087 0.585181 -0.313350 1.400438 -0.028899 -0.039441 -1.549991 0.216731 0.518825 0.175759 -0.173391 0.361449 -0.721833 -1.730456 0.097629 -0.792800 0.448772 -0.605788 -0.059849 -0.247972 0.174819 0.499255 -0.312817 0.685658 1.463340 -0.451014 0.097248 0.011510 -0.168370 -0.310116 -0.475522 0.430608 0.236088 -0.884523 0.896425 -0.076728 1.940079 0.189296 0.668982 -0.757271 0.180622 -0.076907 -1.176121 -0.356062 1.234749 0.149050 0.691101 0.364882 0.692227 -0.575069 0.892051 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -5.156337 3.626214 20.372183 11.471863 -6.992569 -10.179119 -5.718034 -10.148268 5.863837 4.660480 11.581769 -2.148502 4.119555 2.734246 -0.460196 -7.258940 2.862471 -2.177658 0.019281 -4.089519 -5.226013 10.902359 10.046591 -12.535688 0.515251 -15.688637 10.838287 4.216689 4.725995 10.588167 -0.513622 0.627593 -0.969613 6.864758 -9.019622 -2.587845 -2.801492 4.269789 -2.248661 0.000319 6.373399 6.482442 6.241229 1.500052 6.903870 7.478579 5.244447 -2.187384 -10.748406 -3.843995 -3.045427 9.122732 -6.143117 4.625969 1.711825 7.109222 0.556852 -10.068290 -2.920209 -16.560674 5.028144 4.351132 -7.570986 1.173532 -11.573770 1.894203 -5.878900 -5.690990 3.851631 -4.092753 5.472564 -0.011991 1.215969 -8.296821 -8.107644 5.968833 -1.142004 2.557637 4.380521 -0.074720 -6.781207 2.875066 -5.768342 -8.307255 1.058810 1.813776 0.029578 -0.560117 2.896206 -6.757328 0.968820 -0.741852 -5.187518 10.421811 -8.188087 9.162787 -1.758822 -3.026020 -6.739949 -5.046524 -2.118986 -10.358184 3.983989 11.619294 -6.424732 0.119602 -2.370107 3.437621 -0.785081 -11.146495 -0.222482 -3.948136 1.838115 8.748045 -8.117659 -2.226020 -0.956288 -0.259521 2.350690 9.970529 -1.564535 4.118748 10.407349 6.767362 2.949939 -7.734994 3.226293 3.771212 4.423157 5.178921 6.861256 -10.685427 -5.334083 -1.139299 0.186986 -15.735404 1.302287 5.100531 5.720436 1.278940 -13.840037 5.466310 -4.891280 10.224788 7.718510 8.941171 3.545783 -1.581135 -5.678914 3.804512 18.834150 -6.309510 6.518742 -4.636350 -14.713952 16.055705 -5.484078 9.629833 1.180578 3.077047 3.325027 -10.470970 0.897211 13.172856 2.940264 4.579692 9.732930 -0.618183 3.139114 -13.791243 -13.638375 -0.677951 4.731782 2.799399 20.937624 -9.405448 -4.030265 -3.647377 11.501862 0.209786 -3.744185 -1.332647 -0.937264 2.507186 -23.584731 -16.210698 12.668928 14.533882 0.607079 -1.537104 12.134940 2.449343 0.509109 -7.403346 -8.777458 7.744912 -0.510569 6.956097 1.920828 0.776878 -12.559496 -0.957528 0.256919 2.048813 9.387409 -11.986742 -7.847498 -1.205075 -12.882302 -9.013427 3.259538 -11.276605 -4.985739 -1.706176 1.166036 -0.991969 2.643894 -3.016646 -5.599494 2.017701 -6.831092 -2.825728 3.915666 6.453262 2.356453 16.163090 10.677198 -0.021655 2.488084 3.437359 -3.797084 30.236291 -7.380437 -3.318747 0.476930 9.249370 -1.406120 4.105316 3.989577 -2.738910 -6.118906 -9.599670 7.933422 -1.321371 3.036022 -17.718362 -8.082175 -12.417248 -2.743112 3.174586 12.877094 1.772719 21.998183 -0.059750 2.580701 -20.676590 0.613784 7.981915 -1.322016 8.561550 7.173351 -9.936181 -15.039425 -2.646929 -3.065521 9.619878 -2.214383 -10.731916 -6.623176 -1.842814 2.872441 -3.774626 6.392397 11.878031 -1.776637 5.145264 5.365992 -2.950195 -2.983934 -3.768826 5.034685 4.867991 -8.345285 13.517102 -3.042508 21.915987 -4.683387 9.257558 -7.489091 2.491047 -1.882208 -4.323146 -3.397575 13.284659 8.046731 5.846756 0.367271 0.501550 -6.286264 5.023001 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -1.111389 0.876856 5.368382 2.222568 -2.661880 -4.312694 -1.721355 -5.438497 2.469165 1.575556 4.329193 -0.320447 2.191540 0.278029 0.249958 -0.070298 2.036455 -1.083868 0.380396 -1.747460 -1.618696 4.728379 1.868406 -1.441259 0.684318 -4.338869 2.487766 1.381248 1.805228 3.397353 0.583637 -0.098724 -0.907704 1.740146 -1.455900 0.762099 0.049679 1.276084 -1.730472 0.167126 0.992828 -0.626222 3.128723 0.042858 3.012750 1.171856 1.963647 0.114243 -2.817948 -1.815740 -1.621669 2.808537 -2.175898 1.767787 -0.096508 0.227788 0.494523 -1.850125 -0.774012 -3.033972 0.056384 -0.605587 -2.190945 0.308696 -2.786576 0.897804 -1.965010 -1.990538 0.646093 -1.475032 2.185564 0.320129 0.226628 -0.447906 -4.351823 1.066569 0.582150 0.941770 1.465537 0.389078 -1.103970 0.106401 -2.539887 -2.872080 1.939064 1.640784 0.675468 0.174878 -2.059501 -0.626049 -0.121829 -0.000132 0.131313 2.713338 -2.756212 1.483413 -0.312486 -1.465559 -2.363583 -3.828162 0.257051 -2.578802 1.392103 1.487411 -1.120487 -0.134984 -1.217205 0.969222 -1.128429 -3.716539 0.860555 -1.426578 -0.265754 3.536692 -2.214189 -0.843713 -1.422126 -0.420440 0.502091 2.644170 0.488539 1.040838 3.173044 2.498667 1.656857 -2.778139 -0.747756 1.163969 2.246938 1.324805 1.673959 -2.446779 -1.879127 0.673481 -1.731068 -5.373595 -1.403730 2.216281 3.036200 -0.036693 -2.369171 1.153822 -1.784485 2.970672 3.081827 1.801613 0.999100 0.156314 -2.583270 1.566711 5.372014 -1.860888 2.796045 -1.692336 -2.782248 4.273106 -1.703841 2.272202 0.620858 0.379549 -0.388509 -2.453320 0.043987 3.718801 1.174523 1.400454 0.921416 0.706121 -0.939216 -4.324472 -5.471511 -0.511247 3.481050 1.394461 5.145286 -3.280127 -1.505834 -0.286814 3.472402 0.015443 -2.313226 0.824962 -1.516036 1.454518 -7.071830 -4.792636 5.573578 5.111479 1.795022 0.159680 2.761718 1.786934 -2.341819 -2.291486 -2.408788 2.484281 -0.001426 -2.359871 -0.850900 0.349440 -3.864098 -0.634505 -0.532776 1.083627 1.857287 -1.467850 0.722801 -0.570272 -2.923452 -2.039203 1.963518 -2.826214 -1.865069 -0.162788 0.139430 0.190673 1.118807 -0.728228 -0.532508 0.835406 -2.626916 -0.161876 1.275108 1.855314 0.615728 5.042543 4.552230 -0.798192 1.753734 -0.147032 -1.878766 6.466804 -2.522916 0.073340 -0.213914 2.279373 0.061860 1.255771 2.570961 -1.181994 -2.545124 -3.103745 0.760236 0.451412 1.835625 -3.112708 -3.666331 -4.875200 -0.227261 0.658351 4.783900 0.071677 6.375291 -1.066684 1.497546 -6.764556 0.459227 1.745108 -0.177708 2.563472 1.322250 -2.688804 -3.199710 -0.780700 -2.814294 0.107421 -0.366199 -2.736680 -2.104300 -1.747604 1.615041 -1.964764 0.570940 2.522435 -0.845240 2.972534 1.061809 -0.834618 -2.075917 0.068823 2.919504 0.576447 -2.192638 3.781978 0.172711 7.649721 -0.588578 2.400566 -1.419136 1.230625 -0.678971 -2.516073 -1.236038 4.041325 3.520506 1.157948 -0.215082 -0.011861 -0.617601 1.899165 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.790501 0.980757 4.816937 2.108767 -1.882453 -3.393666 -1.413676 -4.400995 2.167593 1.200554 3.663678 -0.167831 1.976143 0.298534 0.117874 -0.293470 1.853387 -0.951118 0.331601 -1.459526 -1.053556 4.381317 1.647978 -1.673002 0.526143 -4.066424 2.292379 1.134672 1.764790 3.139503 0.446552 0.051854 -0.413069 1.630799 -1.561015 0.148328 -0.160293 1.253841 -1.514209 0.004964 1.084331 0.163263 2.692288 0.358105 2.128222 1.230903 1.720864 -0.035080 -2.010635 -1.424997 -1.591535 2.403095 -1.878478 1.583836 -0.513167 0.396419 0.689531 -1.539256 -0.558577 -2.767444 0.124724 0.144556 -1.854116 0.100016 -2.531055 0.730179 -1.565316 -1.652183 0.480639 -1.029380 1.995657 0.449727 0.293882 -0.987596 -3.870022 1.120276 0.285982 0.942363 1.367703 0.273731 -1.208608 0.203263 -2.170581 -2.581847 1.827732 1.334400 0.600682 0.245785 -1.226288 -0.869332 -0.315591 0.180624 -0.149903 2.442048 -2.080630 1.597469 -0.380566 -1.144418 -1.666101 -2.691245 -0.000109 -2.471139 1.028520 1.574495 -0.860413 0.014505 -0.999080 0.727971 -0.799860 -3.064250 0.773147 -1.080585 -0.656491 3.026637 -1.800666 -0.833565 -0.997608 -0.194367 0.491132 2.526836 0.227416 0.970265 2.770922 2.086470 1.239677 -2.379104 -0.212084 0.951172 1.795764 1.197303 1.664642 -2.080584 -1.823043 0.337260 -1.170573 -4.686602 -0.777898 2.027295 2.557774 -0.223441 -2.574948 1.454822 -1.633486 2.565176 2.897383 1.526352 1.154225 0.074935 -2.106191 1.481545 4.925709 -1.724471 2.378508 -1.696275 -2.505102 3.974722 -1.511134 2.165137 0.143504 0.382285 -0.104471 -2.264845 0.208237 3.498690 0.899705 1.308239 1.269576 0.326503 -0.231888 -3.794964 -4.624587 -0.649380 2.722553 1.166864 4.754863 -2.597361 -1.050164 -0.213806 2.606747 -0.201351 -1.799670 0.552806 -1.169896 1.181753 -6.445918 -4.170039 4.913280 4.258125 1.153228 0.094008 2.315730 1.569964 -1.281312 -2.054821 -2.014378 2.250877 0.125999 -1.569520 -0.552830 0.332785 -3.213837 -0.656665 -0.251137 0.797883 1.704754 -1.582353 0.124598 -0.628935 -2.894221 -1.903277 1.636075 -2.671961 -1.689519 -0.088861 -0.004116 -0.046410 0.923503 -0.464281 -0.600048 0.880676 -2.192710 -0.525135 0.848310 1.783417 0.522905 3.846229 3.925124 -0.573773 1.309536 0.314798 -1.723325 5.819118 -2.199026 -0.217352 -0.186574 2.187646 0.052448 1.390484 1.946521 -0.966074 -2.170626 -2.993871 1.209440 0.466279 1.349524 -2.889163 -2.750967 -3.758456 -0.356793 0.627911 4.317100 -0.016031 5.836653 -1.019204 1.139530 -5.793948 0.404646 1.684720 -0.062039 2.191383 1.446361 -2.304602 -2.711442 -0.837424 -2.237119 0.437562 -0.372561 -2.654126 -2.009374 -1.459263 1.255610 -2.004186 0.904619 2.459123 -0.757283 2.465850 0.670298 -0.771902 -1.829582 -0.058217 2.313343 0.760743 -1.912179 3.081262 -0.222634 6.257621 -0.880531 2.359247 -1.633526 1.060969 -0.644338 -2.191682 -1.173662 3.794062 2.880185 0.899215 0.249339 -0.168694 -0.422598 1.879515 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -2.462913 2.039065 13.861791 9.075589 -4.085908 -6.972699 -3.318910 -8.129573 6.029852 2.258241 8.287572 0.107293 3.719409 1.142701 -0.199274 -2.981068 3.276686 -1.578700 -0.835534 -2.755676 -0.793716 11.128073 6.349631 -9.968927 0.453938 -11.412923 5.894619 3.699191 4.722848 8.350448 -0.076333 0.409028 0.725494 5.063140 -7.052204 -2.020530 -1.614123 2.725213 -3.444986 -2.602989 4.619714 3.856514 6.058130 0.730710 4.809465 2.588360 6.030232 -1.858460 -5.334885 -2.468172 -5.348328 8.059365 -4.754014 4.545317 -1.170307 4.240868 1.901437 -6.253785 -1.797340 -11.131395 2.046928 4.611267 -4.717420 -1.103860 -6.776775 1.564120 -1.362773 -4.273779 2.802872 -2.546697 5.380143 1.146459 1.783280 -6.565138 -8.298542 4.018941 -0.681454 2.917583 3.225091 1.239567 -3.897696 0.960663 -3.640926 -5.337424 3.065752 1.050339 0.361682 1.049369 0.631117 -3.473535 -0.458218 0.254564 -3.451219 6.749950 -5.332564 6.227454 -0.503517 -1.756069 -2.861041 -2.068928 -1.298406 -7.670043 1.972987 6.861396 -2.324377 1.991442 -0.727965 1.871443 -1.068314 -7.958522 1.332535 -1.780059 -2.157544 6.061452 -5.311076 -2.020175 0.680874 0.902069 0.492087 7.543223 -1.655605 3.608997 6.946849 4.937188 2.616709 -6.240814 2.213007 2.690531 4.876332 4.247307 4.774123 -5.879906 -4.099390 -0.836240 -0.177419 -12.389285 0.829118 6.020848 6.396631 1.598154 -10.819277 4.405788 -3.228073 8.337670 6.784563 5.043373 3.361513 0.224002 -4.855736 3.437073 14.870581 -4.728850 5.873983 -4.562076 -8.061313 11.278540 -4.380952 7.285536 -0.796067 2.083735 3.261111 -7.773774 0.406641 10.224423 2.210212 3.196083 5.667905 -0.538177 1.322830 -12.382255 -11.228880 -2.930494 4.071738 2.615811 15.118073 -6.005664 -3.526974 -1.719927 6.252747 -2.628696 -2.895279 0.140073 -2.689639 2.951424 -18.324677 -11.976228 12.490895 10.638612 0.787815 0.693644 8.265256 2.974765 0.659160 -4.699912 -4.679997 5.331676 2.476871 1.583705 1.134081 -0.286729 -8.205017 -2.311525 0.841499 0.806221 4.009868 -6.457213 -3.259581 -0.956474 -9.750848 -5.541710 3.071974 -9.455331 -4.200848 -0.690967 0.932961 -0.746449 2.056431 -1.124869 -3.450591 2.575035 -4.863777 -2.585287 1.433172 5.209486 2.124673 7.713000 10.233473 -0.373708 4.772186 3.145959 -4.293878 19.497620 -6.495323 -2.588445 -0.154324 6.630204 -0.161205 4.276496 2.757651 -2.518532 -3.652662 -8.182798 6.015063 -0.034495 2.984963 -11.709384 -5.838189 -6.901266 -2.801552 2.709665 8.810856 -0.376121 16.564263 -2.587119 1.729350 -17.515525 0.348449 6.655799 0.371838 5.589150 5.556012 -6.533705 -11.220785 -2.146245 -2.426989 5.580824 -1.762916 -9.129207 -5.180027 -4.050346 3.201676 -6.053134 4.688667 9.112187 -2.201384 5.589793 0.623412 -1.872527 -3.012130 -2.123779 2.739776 4.076550 -5.376695 8.600491 -2.626184 15.692522 -4.069087 7.259493 -6.650084 3.674843 -2.589242 -4.305561 -2.738903 10.264115 6.233043 2.371873 1.508592 -0.431239 -3.871888 5.364735 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = -0.628325 0.964399 4.345969 1.193144 -1.588870 -2.736873 -1.194798 -4.650032 1.897697 1.350698 3.380609 -0.522371 1.692832 0.535102 0.214408 0.075539 1.523732 -1.007065 0.517323 -1.203655 -0.679866 3.250392 0.895229 -0.544745 0.393233 -3.680230 1.549200 0.819085 1.461722 2.097169 0.670792 -0.173059 -0.738433 1.221307 -1.045784 0.562292 0.694788 0.914308 -1.407431 -0.035605 0.229218 0.078644 1.936394 0.078325 2.356281 0.723543 1.316509 0.125932 -1.577386 -1.156782 -1.015577 2.522301 -1.395589 1.201351 0.434571 -0.018371 0.057676 -1.515917 -0.431300 -1.924297 0.018163 -0.147683 -1.371136 0.331464 -1.807348 0.661810 -1.307960 -1.120169 0.453022 -0.969316 1.606590 0.103013 0.425334 -0.052578 -3.288345 0.920832 0.303146 0.467617 1.116327 0.002897 -0.647700 0.186037 -1.680474 -2.283012 1.664600 1.980635 0.363822 -0.028619 -1.461842 -0.079883 -0.284571 -0.349621 0.014233 2.215587 -2.173785 1.071443 -0.377048 -1.126702 -1.747003 -2.769924 0.192796 -2.064345 1.079855 1.009730 -0.593953 -0.135957 -0.925433 0.742360 -0.727306 -2.520482 0.837424 -0.902158 0.084839 2.693806 -1.824569 -0.640373 -1.164322 -0.395466 0.308062 1.855567 0.321094 0.785820 2.262887 1.792491 1.333213 -2.001579 -0.562451 1.143394 1.577736 1.032401 1.107632 -2.268798 -1.196650 0.599971 -1.286242 -3.929439 -0.975208 1.478867 2.178696 -0.182017 -1.755319 0.446956 -1.200412 2.280326 2.315628 1.323054 0.643909 0.267628 -1.633362 0.893862 3.805293 -1.401974 2.138220 -1.240242 -1.488957 2.297934 -1.332035 1.909863 0.487604 0.601095 -0.255652 -1.905179 -0.193118 2.805257 1.125196 1.197713 0.436448 0.556783 -0.750841 -3.220040 -4.102811 -0.497659 2.404506 0.371544 3.371425 -2.235471 -1.484354 -0.115400 2.821097 0.000961 -1.781643 0.835171 -1.218455 1.078767 -4.288445 -3.338799 3.820971 4.033081 1.287969 -0.369858 2.103325 1.232233 -2.327775 -1.766023 -1.613358 1.856197 -0.415081 -2.156709 -0.780660 0.183968 -2.800654 -0.405809 -0.566163 0.814959 1.419099 -0.459528 0.782208 0.120622 -2.133375 -1.331067 1.681612 -1.753402 -1.626142 -0.324927 0.290407 0.216238 0.946129 -1.010705 -0.443225 1.332422 -2.177489 -0.197202 1.245454 1.193440 0.276380 3.997905 2.818307 -0.216971 1.555175 -0.227072 -1.375986 4.277598 -1.507064 -0.057964 -0.253853 1.156952 -0.279793 1.011228 1.698577 -0.955170 -2.558710 -2.321958 0.386439 -0.126966 1.462155 -1.430023 -3.026078 -3.155260 -0.217768 0.469761 3.361813 0.233574 4.723987 -0.614691 1.258021 -4.828201 0.354649 1.354621 -0.364225 1.682687 0.962383 -1.957234 -2.189184 -0.440497 -2.160056 -0.877737 -0.123210 -2.262320 -1.552152 -1.904518 1.750322 -1.334969 0.354004 1.691662 -0.174473 2.179027 0.863549 -0.635512 -1.524022 0.349115 2.336414 0.158425 -1.815229 2.621983 0.074828 5.971526 -0.884787 1.635134 -1.041901 0.724502 -0.462632 -1.611856 -0.878802 3.024641 2.705421 1.046627 -0.622958 -0.284163 -0.693602 1.378167 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -2.453990 3.092487 14.871341 9.084908 -5.510286 -7.908202 -3.585204 -11.276239 6.325359 3.142573 9.115946 -1.176904 3.927604 2.387287 0.004244 -2.222607 3.983726 -1.274813 -0.351009 -3.162806 -1.983425 10.749404 5.591320 -8.458308 0.570095 -11.664052 5.555064 3.664466 4.475406 7.111623 1.032577 0.083334 -0.657523 4.911055 -6.864535 -1.057034 -0.195854 2.428909 -4.393794 -2.635277 3.034777 3.063418 6.230056 0.442266 6.229337 2.416303 6.292897 -1.024225 -6.078725 -2.318002 -4.724871 9.596674 -4.045774 4.867146 1.307778 3.323509 1.522602 -7.135080 -1.379938 -10.313364 1.589175 3.244376 -4.753992 -0.370356 -6.743975 1.530170 -2.154813 -4.473992 3.028898 -2.604756 5.304783 0.041211 1.715153 -5.300803 -8.996704 3.808836 -0.230287 2.188246 3.515588 1.464092 -2.988170 1.035297 -4.396215 -6.188578 3.480058 2.726981 0.213978 0.787264 -0.820576 -2.672380 0.023581 -1.397123 -2.674687 7.409651 -6.468005 6.146884 -0.520663 -2.558341 -4.879476 -4.655499 -0.591856 -7.360603 2.945571 5.717370 -2.305910 1.451603 -0.785189 2.203332 -0.927430 -8.609628 1.933634 -2.283708 -0.374540 6.981424 -5.938116 -2.413329 -0.299049 -0.129172 -0.051659 7.381558 -0.913181 3.184630 7.188629 5.253521 3.372374 -6.145292 1.430838 3.100361 4.683275 4.208592 4.526843 -7.264026 -3.673871 0.644852 -1.206701 -12.611851 -0.479014 6.342949 6.913672 1.704107 -9.762194 2.500983 -2.977380 8.604114 6.250133 5.728514 2.661177 0.279450 -4.390133 2.393811 14.419534 -4.765791 6.454363 -4.219974 -7.442936 9.667043 -4.246380 7.670840 0.187921 2.337000 2.215794 -7.440448 -0.015557 10.187237 3.083293 2.171161 4.885789 0.242146 -1.025304 -12.904299 -12.624646 -1.782522 5.021247 1.654951 14.512952 -6.742061 -4.913115 -1.519858 7.821355 -1.941215 -3.855954 1.431225 -3.347558 3.265098 -16.799921 -12.114927 12.339635 11.502447 1.727506 -1.032803 8.887073 2.407129 -2.464951 -6.089197 -5.415428 5.418322 1.073887 -0.025909 0.142817 -0.491583 -9.344816 -1.145813 -0.132755 1.595723 5.315453 -5.226859 -1.683696 -1.123285 -9.745049 -5.629565 4.065486 -8.437976 -4.551815 -0.833689 1.467408 -0.204030 2.706664 -1.855659 -3.827510 3.055930 -5.924062 -2.157685 2.497109 4.731172 1.269744 11.263900 9.985816 0.006491 6.107198 1.818764 -4.534024 20.030191 -6.279978 -1.785367 -0.751991 5.695861 -1.004545 3.585003 4.105248 -2.838586 -6.264707 -7.627320 4.495234 -1.169282 3.739785 -11.272732 -7.964392 -8.529576 -2.626008 1.915843 8.994225 0.149613 16.457198 -2.376228 2.592392 -18.422786 0.776052 6.802798 -0.527753 5.606487 4.887538 -7.401396 -10.637542 -1.349236 -4.075895 3.129567 -1.185376 -9.496708 -5.022698 -4.975223 4.023933 -5.048692 3.644426 9.237822 -2.133487 5.856934 1.551889 -1.943131 -2.811764 -1.584715 4.812113 2.216051 -5.992278 9.440670 -1.729710 18.733734 -3.604474 6.511887 -5.519870 2.990864 -2.190070 -4.447239 -2.990487 9.877969 7.163532 2.916081 -0.127994 -0.139650 -4.298518 4.799478 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = -0.744048 1.110398 5.662521 2.786628 -2.092471 -3.212536 -1.379718 -4.549439 2.422003 1.269819 3.832617 -0.146877 1.923592 0.484924 0.017015 -0.653266 1.690919 -0.711337 0.084313 -1.360713 -1.031301 4.536977 1.899951 -2.762020 0.454654 -4.513644 2.574721 1.247222 1.881508 3.136213 0.386867 0.176064 -0.350119 1.811455 -2.136910 -0.334704 -0.189730 1.325529 -1.632442 -0.472372 1.373122 0.557885 2.467751 0.310567 2.320520 1.160123 2.033981 -0.249048 -2.128677 -1.164917 -1.720428 2.946266 -1.775745 1.807669 -0.297968 0.894108 0.499810 -2.082812 -0.578269 -3.729130 0.550160 0.715639 -1.859642 -0.023161 -2.718332 0.728942 -1.083013 -1.803869 0.761156 -1.037847 2.083442 0.295382 0.562167 -1.775654 -3.955360 1.283841 0.116294 0.915597 1.426071 0.414451 -1.347875 0.192918 -2.042069 -2.567490 1.678451 1.410137 0.300103 0.172059 -0.585817 -1.042518 -0.135790 -0.071709 -0.682072 2.850449 -2.532340 2.088035 -0.609540 -0.953854 -1.663036 -2.381392 -0.156334 -2.834478 1.136400 2.172109 -1.070137 0.454966 -0.399176 0.942158 -0.453156 -3.187810 0.618391 -1.028099 -0.436311 3.027888 -1.854632 -1.033675 -0.472671 -0.130383 0.309409 2.777781 -0.215572 1.190606 3.142021 2.129859 1.260979 -2.441080 0.220317 1.321065 1.694453 1.513792 1.765467 -2.665107 -1.679816 0.218697 -0.765512 -5.068486 -0.298803 2.129973 2.639875 -0.298422 -3.404596 1.470573 -1.490702 3.029357 2.972261 1.961326 1.147300 0.128399 -2.019997 1.280033 5.677735 -1.747295 2.354582 -1.765098 -2.881601 4.114624 -1.545328 2.590336 0.000583 0.704365 0.383985 -2.775191 0.107765 3.878919 0.995581 1.178819 1.672627 0.182713 -0.322539 -4.525495 -4.757284 -0.931678 2.370897 1.128813 5.811391 -2.736999 -1.373843 -0.470876 2.848965 -0.526981 -1.608943 0.577624 -1.221524 1.242776 -6.852325 -4.745537 5.011357 4.444269 0.859720 -0.114782 3.114889 1.141126 -1.039830 -2.370612 -2.106582 2.171520 0.450485 -0.798717 -0.306370 0.232765 -3.660324 -0.618027 0.006544 0.707225 2.111602 -1.805721 -0.408509 -0.417593 -3.408553 -2.236383 1.714208 -3.029967 -1.852528 -0.220233 0.333160 -0.128588 0.978578 -0.730306 -1.078564 0.986355 -2.230411 -0.611105 0.970923 1.822807 0.364063 4.251123 4.133483 -0.352739 1.486715 0.615799 -1.739720 7.167413 -2.289893 -0.583950 -0.137583 2.199476 -0.195993 1.461035 1.780858 -1.076459 -2.203189 -3.222515 1.551128 -0.067645 1.307262 -3.904497 -2.786201 -3.563615 -0.670156 0.683176 4.142255 0.134981 6.666631 -0.987701 1.025563 -6.826918 0.322509 2.291209 -0.163660 2.331062 1.820681 -2.601509 -3.580575 -0.724913 -1.795641 0.864941 -0.535374 -3.188200 -2.176221 -1.623933 1.142573 -2.079459 1.249005 3.273239 -0.775307 2.577767 0.326117 -0.772471 -1.533825 -0.251957 2.069716 0.981133 -2.162498 3.395685 -0.518940 7.096595 -1.185182 2.576610 -2.011077 1.170523 -0.789787 -2.062534 -1.203107 3.955538 2.897245 1.222980 0.246450 -0.199052 -1.073455 2.003507 diff --git a/src/test-suite/oracle/SYM_llvm12/ir2vec.txt b/src/test-suite/oracle/SYM_llvm12/ir2vec.txt deleted file mode 100644 index 385dbf22..00000000 --- a/src/test-suite/oracle/SYM_llvm12/ir2vec.txt +++ /dev/null @@ -1,118 +0,0 @@ --5.918771 0.556122 27.321094 15.746989 -10.934108 -19.615966 -10.801238 -25.610506 16.576771 1.495923 17.142547 3.576572 6.246373 -6.979084 0.276597 -4.360213 2.351618 -9.865181 1.124468 -7.440658 -0.855373 24.712533 12.680841 -19.263318 1.369806 -34.052078 17.065077 9.576501 12.727711 21.445260 -0.367765 -3.033900 -3.818712 14.317334 -6.850295 1.298813 3.892385 2.575540 -8.467144 0.435143 9.099091 13.503809 15.247618 -0.480500 18.322367 5.957441 9.247426 3.761251 -9.844847 -5.120430 -10.077385 17.163997 -15.736992 8.581357 -1.065895 9.279776 1.680556 -16.913298 -7.449043 -20.083062 -0.278207 5.510533 -9.578816 1.148280 -15.640784 5.523918 -3.448862 -6.551898 6.834467 -2.420345 15.866853 7.584626 4.322981 -5.719590 -17.020086 6.374961 -2.159944 11.712763 10.905068 -6.243971 -7.444804 3.291794 -7.203113 -10.811095 5.212139 5.577346 1.543736 -0.359582 4.910235 -5.990119 -2.945625 -3.498023 -2.261504 11.188324 -10.077726 4.644597 -4.788152 -1.733892 -5.619863 -5.535775 0.421140 -12.285645 6.813901 12.272192 -4.246216 -0.908697 0.763501 2.943113 -8.686178 -14.626900 4.278586 -2.982899 3.741095 20.144563 -8.910562 -1.777697 -2.494571 -2.201764 -1.785269 19.138932 -0.959752 7.494678 15.001285 21.847685 3.204751 -13.405139 -5.079965 6.855271 14.578739 13.281944 12.232053 -17.943166 -9.769812 -2.325818 1.936645 -25.857013 2.428636 4.947190 13.501420 4.082229 -19.087916 7.785191 -8.648945 20.868006 12.458498 5.449885 5.302167 -0.833074 -16.706676 20.247394 35.434886 -4.997849 11.737024 -13.205919 -11.958745 21.920683 -15.720286 11.681161 1.457737 0.388248 3.647047 -11.784803 0.421633 15.937319 4.486290 10.620987 9.698555 4.746967 2.027707 -27.449752 -22.325725 -1.546911 15.136171 0.913777 30.354470 -15.198316 -8.057494 -6.934731 19.480583 -0.556805 -4.668629 2.201254 -10.460675 9.805443 -30.576350 -23.456150 31.351016 30.829656 5.719330 4.277391 17.190477 15.683418 -4.236320 -5.391430 -6.825101 8.407351 5.472244 -5.785620 0.463013 -0.537632 -15.126575 -13.625116 3.727548 5.526304 9.371257 -8.714334 -9.415854 3.680094 -18.274720 -14.837243 9.079082 -19.196700 -6.819414 3.226933 -0.041650 -0.776881 7.101317 -4.864580 -1.024480 8.781910 -7.827356 2.122661 8.471848 13.101182 5.278133 12.804114 18.797940 0.323347 15.655314 10.598399 -6.628213 36.155481 -7.602332 3.082697 6.006413 8.706975 3.130163 7.698251 3.410388 -8.485629 -2.954262 -18.994163 11.917607 1.820663 12.304650 -19.754845 -17.171557 -18.352067 -8.057904 11.448718 12.138867 -0.889873 34.148333 -3.966089 1.073295 -35.713988 -2.401831 16.540137 2.970558 12.924437 10.025472 -10.540617 -27.934091 -6.902996 -7.830662 4.899297 -10.112142 -16.558632 -10.571643 -9.284578 16.217463 -10.374900 8.461837 21.360687 -1.302439 9.857082 -5.838019 -1.008687 -10.442664 -7.079969 0.458264 6.227432 -14.800431 19.495789 -4.956480 33.805790 -10.303194 13.086968 -12.912173 11.122766 -5.187792 -9.834597 -2.225696 23.613214 10.843190 2.691827 2.265996 -1.818929 -7.512015 12.222342 -15.045058 32.955683 79.764309 27.901914 -65.357950 -75.968137 -25.665550 -119.428615 47.632039 8.285729 34.231029 8.180289 15.195644 -30.087552 -7.858796 33.540034 20.537337 -4.767995 -2.894581 -35.586950 -52.567353 44.793394 -3.545509 -21.151486 29.399081 -82.026715 54.442406 19.480348 47.657684 29.262786 29.363921 -9.362957 -28.333446 47.711384 18.891976 25.867122 16.462451 9.727777 -53.636006 23.631638 5.141931 0.279357 46.988698 13.462050 61.157664 20.423433 33.996043 30.370250 -35.181635 5.776789 -36.886688 71.626003 -36.025228 34.488047 0.569295 4.423662 -9.092784 -46.604296 -4.799576 7.498843 -30.890438 -27.070712 -35.667876 4.895505 -53.968517 3.708154 -23.277246 -35.682832 2.132566 22.324140 45.410798 17.651232 -4.246759 5.346546 -67.781035 2.497463 14.534390 39.198658 54.253935 -14.575876 15.205616 -6.034642 -37.346172 -47.149342 45.573242 24.116959 17.485523 -6.275914 -6.029582 -28.997999 -20.054089 -26.429235 25.279573 35.611597 -55.730406 -0.196714 -48.784867 -18.580585 -47.117683 -76.526870 11.586289 -23.411492 33.634003 -14.070781 -13.955644 7.083822 17.970786 9.623559 -7.072987 -25.634870 4.217043 -15.893507 25.549807 85.432361 3.804523 -27.980958 -13.921605 -22.934420 -24.369941 35.970560 22.168526 3.486653 73.425817 67.126223 36.882103 -29.347566 -33.965824 8.982165 11.311736 45.935032 42.379359 -61.439826 -33.266740 11.810110 4.375808 -86.816290 6.841620 1.141669 35.298543 -7.397841 -13.854241 -14.675047 -21.140879 33.226679 11.674504 0.463284 19.380539 -7.289947 -34.291787 52.225940 95.939917 -11.372696 24.675168 -43.911030 -1.039910 34.462039 -32.219480 14.694573 3.308685 -20.971608 -5.587558 -18.618130 -11.396559 43.436942 3.476747 -12.282945 24.369620 25.914889 -48.426687 -71.364992 -56.070907 11.128753 57.429089 -13.707010 69.859533 -52.387025 -19.001615 -25.349145 60.933173 5.216473 -3.770537 26.671502 -48.555546 37.746385 -22.835108 -59.708944 91.733183 81.732604 17.711042 -16.258589 34.972354 39.022013 -81.187072 -50.817304 -30.303556 -0.398187 18.928390 -70.474776 -40.274491 10.102598 -60.140480 -15.896755 11.330184 25.120734 51.997839 15.223724 10.408595 7.719985 -37.615204 -56.993643 39.769867 -26.155393 -9.983115 20.868086 7.711383 6.727479 37.419289 -18.891530 -14.094853 10.283109 -21.380882 15.885525 28.418728 49.562319 -3.613131 68.977156 51.229707 3.910976 63.940448 23.465711 -31.699225 71.680113 -0.988795 30.980990 24.373416 7.100671 -11.604517 20.203759 35.681886 -32.678194 -33.240362 -51.576711 -4.432518 -7.065103 28.846095 -13.174334 -36.342723 -68.446363 -22.173649 16.076418 24.837170 -2.514274 75.935520 -7.379041 10.551117 -87.308767 -3.118545 38.445381 -1.702663 48.326049 26.390680 -45.528224 -35.090547 -22.070237 -46.142851 -42.702292 -19.491540 -4.118488 -37.001853 -14.193065 46.722202 -11.015210 6.224084 60.904571 -4.311595 29.911512 -44.634456 13.827243 -27.254006 -9.205102 60.685854 -1.083708 -48.085587 48.219192 4.193252 130.477699 4.194347 24.976319 -21.022138 -20.858837 12.770992 -32.532995 -22.717475 62.655664 28.507566 25.363034 1.146712 -1.348113 -9.205869 53.924778 --2.055535 1.247094 13.783653 7.179505 -5.702110 -10.364888 -4.779533 -14.042205 7.849377 0.924780 8.637101 1.615224 3.492601 -2.834824 0.750881 -0.677548 1.809403 -3.794319 0.527007 -3.775217 -0.004580 11.167629 4.788418 -8.898179 0.816621 -15.327654 7.239314 5.457305 6.276641 8.860784 0.381006 -1.595849 -2.510526 6.686819 -3.821637 0.410892 2.728827 1.645867 -5.348768 -0.175173 2.889381 6.263705 6.915170 -0.630607 9.330449 2.561719 5.621364 2.418969 -4.478695 -2.198705 -5.001155 9.993751 -6.776454 4.819526 -0.333316 3.473842 0.104520 -7.707968 -3.179453 -9.193295 0.074685 2.717266 -4.853950 0.186242 -7.228070 2.439964 -0.484595 -3.952746 3.103942 -0.405210 7.811459 2.713732 1.852466 -2.517761 -9.455818 2.316748 -0.943612 5.753053 5.395541 -2.979097 -2.463112 0.782325 -3.502522 -5.498696 3.263120 3.895706 1.080417 0.016077 0.884314 -2.080301 -1.554771 -2.277302 -0.776553 5.542460 -5.599668 2.523513 -2.482031 -0.784334 -3.669739 -3.376855 0.736767 -5.813253 3.606766 4.430732 -0.621636 -0.032657 0.248715 1.933539 -4.373921 -7.007029 2.210245 -1.457293 1.661340 9.880071 -4.073049 -0.948907 -0.654265 -1.374106 -1.516435 8.735254 0.053878 3.582194 7.307550 10.666416 1.994083 -6.766895 -3.217482 3.489012 7.099083 7.411639 5.671394 -9.273437 -4.599171 -0.486475 -0.272393 -13.028520 1.396835 3.103662 7.063800 1.131538 -8.842332 2.794314 -4.323498 10.227989 5.719990 3.193676 2.327457 -0.054758 -7.744005 8.879416 16.925332 -2.593050 6.167556 -5.477198 -3.915230 8.585904 -6.924459 5.699257 1.385565 -0.140499 1.501073 -5.365956 -0.945945 7.874791 3.592889 5.085309 4.110595 2.648726 -1.330963 -13.629310 -11.086969 -1.469451 7.674261 -0.422994 14.376106 -7.370373 -5.484798 -3.297893 9.628675 -1.562749 -2.751833 1.635615 -5.806215 5.236977 -12.798014 -10.977861 14.955120 15.168426 3.288304 1.065396 9.109462 6.950803 -4.123214 -3.595855 -2.665091 3.631841 2.127327 -4.544419 -0.576664 -0.120746 -8.399104 -5.943637 1.544764 2.944175 3.580867 -1.559555 -2.560122 2.656804 -8.679644 -6.642075 3.940515 -8.217389 -3.099096 1.456599 0.523135 -0.010448 3.342886 -3.757652 -0.862900 5.244048 -4.787527 1.384519 4.133518 6.030489 2.688796 7.917441 8.548639 0.847651 9.525450 4.500586 -4.177178 16.849439 -2.974671 1.871106 2.662758 3.865097 0.551597 3.593227 2.142435 -4.414684 -2.417281 -9.736054 4.082378 0.823058 6.551454 -7.528070 -8.487609 -8.603866 -3.704966 5.273367 6.218762 -1.169150 16.143660 -2.144348 1.670101 -17.943227 -0.691298 7.060849 0.458950 5.448618 4.810257 -5.408255 -13.765559 -2.722915 -4.228153 -1.053580 -4.375797 -7.923599 -5.132656 -5.339050 7.483821 -5.224090 3.059780 10.148228 -0.549373 5.281994 -3.749371 -0.258307 -4.162245 -2.681769 2.075326 2.447843 -8.175579 8.908611 -1.856687 19.360452 -4.412834 6.602919 -5.982671 4.414465 -2.106372 -4.592612 -1.425278 11.789300 5.969805 2.009295 0.609342 -0.709291 -3.856778 6.102073 --6.484398 4.804272 40.897652 22.838296 -16.018985 -27.477769 -13.295723 -37.043194 19.423214 1.192068 24.306384 3.839777 6.502125 -5.714163 4.903914 -0.751128 1.120606 -10.322544 3.964823 -8.712655 0.148438 29.324840 20.228567 -26.739117 0.861615 -40.904964 20.815172 16.812220 20.571299 22.250537 -0.045497 -6.514030 -4.410485 21.202285 -11.409154 -0.413655 1.989135 5.199772 -13.487366 3.074985 7.514566 20.567644 14.944977 -2.724949 24.926073 8.267648 23.033449 5.779545 -14.057370 -3.848151 -18.030027 35.737026 -23.408787 11.919154 1.111490 11.346992 -2.212607 -23.236106 -11.160018 -28.256749 0.113010 10.146450 -16.413841 2.190173 -23.198551 7.183974 -5.847134 -8.848308 11.067535 8.373124 23.708551 9.213315 5.212616 -7.343939 -22.987096 9.155684 -5.123679 18.695117 15.431094 -13.339242 -6.484377 7.908006 -5.522089 -15.730206 7.900580 5.514723 2.738181 -7.001211 8.186280 -4.518948 -6.760694 -6.378404 -8.090497 16.850101 -17.730369 12.749621 -9.025849 -0.632536 -11.927838 -6.170123 -1.294205 -20.755271 10.728680 15.218990 -0.147501 -2.852772 -4.393632 4.235435 -11.952272 -24.310501 0.860215 -1.327179 5.739587 26.108629 -14.516738 2.931832 2.858344 -0.432704 -4.908065 25.191972 3.802560 12.243116 21.844184 32.232936 2.678140 -16.471510 -7.065469 6.610275 19.992062 24.806817 17.890384 -26.457032 -15.055868 -5.342785 6.588779 -35.539699 10.183154 12.867941 15.037790 8.828308 -26.756958 4.017623 -10.214164 30.542750 16.167455 11.668855 6.988490 -1.581910 -17.798813 27.544083 50.935845 -9.061452 16.871302 -11.897364 -12.817936 29.150921 -25.139070 17.345094 7.195695 3.819314 7.088207 -18.593488 -9.212968 23.145865 13.146254 14.992540 20.247964 5.045256 3.383087 -40.061364 -26.888909 -0.412968 17.893310 -6.088244 38.484952 -17.912555 -14.287227 -6.838598 25.131469 -2.366658 -7.333100 0.144378 -13.903205 13.663592 -35.045012 -30.575939 37.952234 39.513580 3.645971 2.109742 26.364238 25.757405 -13.533050 -10.757321 -9.968556 13.171450 0.889622 -6.819675 -0.359104 0.126792 -24.399555 -13.462335 4.598824 7.610595 11.089675 -5.926392 -16.973222 12.285777 -30.314847 -15.710347 8.752252 -24.379118 -10.209574 1.929750 0.439927 1.687610 8.119693 -12.112169 -2.307766 15.233874 -16.504214 0.808481 12.710516 19.697959 9.751429 25.071729 20.238996 7.321617 27.034325 16.788467 -11.137353 48.589289 -4.136619 3.384937 7.611973 11.363732 -1.508848 10.950507 3.194688 -12.153957 -12.979135 -28.212824 15.310113 0.937485 18.537398 -20.055453 -20.910019 -20.903753 -13.650103 23.135787 14.989067 -2.775667 45.995733 -3.436897 3.263466 -48.963826 -3.143100 18.242764 0.112216 19.948187 15.162973 -15.181854 -35.578138 -11.267774 -5.091936 3.506230 -12.186829 -22.073358 -14.694219 -13.603174 20.704063 -14.679250 10.230265 26.250880 -0.488726 12.932369 -5.187413 -1.864366 -8.941476 -7.763163 8.101538 10.138091 -26.858502 28.801354 -8.496444 56.745609 -16.413800 18.150761 -20.745713 5.862378 -2.806867 -5.011671 -1.659949 34.203933 17.417897 6.720490 0.807350 0.259457 -14.099911 15.750222 --0.105544 1.781456 8.756320 3.675356 -3.050783 -6.906279 -2.692482 -9.562599 4.330477 0.725278 5.507168 0.322763 2.478158 -0.343289 0.819215 1.274702 1.296203 -2.355894 1.657699 -2.132610 -0.960628 7.124998 2.136289 -3.594817 0.162750 -9.019085 4.865492 3.514453 4.545707 5.082024 1.036096 -1.247517 -0.618950 4.120404 -2.247826 0.100542 1.167354 1.750725 -3.594987 0.897258 0.507165 2.882563 4.046053 0.157640 4.953459 2.049081 4.709226 1.733312 -1.740028 -0.672119 -5.035244 7.579160 -4.652948 2.320254 -1.206211 0.990581 0.374184 -4.135018 -2.087124 -4.181049 -0.831465 1.627266 -3.849881 0.428941 -4.918824 1.610178 -1.867937 -2.428081 1.190879 2.408823 5.170594 2.281268 1.539424 -0.812032 -7.544336 1.786741 -1.012981 3.644003 3.677451 -2.937608 -1.106868 1.439152 -2.492129 -4.185125 3.653984 2.910019 1.029962 -0.996879 0.386849 -0.909306 -2.793589 -0.951724 -0.599975 3.949022 -2.930227 2.962271 -2.223552 -0.249879 -2.974477 -3.373590 0.112942 -4.354844 2.265998 2.182304 1.128349 -0.570208 -1.190557 1.030453 -2.894566 -5.213924 1.017362 -1.488355 0.083772 6.113566 -2.729305 -0.119978 0.113432 -0.492477 -0.799609 5.218540 1.160519 2.311292 4.481231 6.420434 0.960931 -3.816222 -2.111368 1.910480 4.090698 4.940052 3.656542 -5.706127 -3.364479 -0.734777 0.178684 -8.357299 1.665251 3.088193 3.218851 -0.125867 -4.759615 1.258744 -2.759254 5.874075 4.385659 2.826241 1.932968 0.078722 -3.807800 5.400863 10.774980 -2.078696 4.308301 -3.470792 -1.556760 5.412382 -4.778317 3.633254 0.968419 0.390024 0.609215 -3.646750 -1.717420 5.130539 3.021834 3.003439 4.143265 1.404339 -0.856273 -7.889940 -6.145684 -0.301916 5.598771 -1.487646 8.410793 -4.454281 -3.460819 -0.666866 5.132502 -0.591789 -1.755745 0.993071 -3.187810 3.263549 -8.473022 -6.885182 8.752930 7.344885 1.636345 -0.251514 4.785748 5.415184 -4.034462 -3.375886 -1.943002 2.986690 -0.009593 -4.234561 -1.212509 0.100951 -5.581332 -2.593253 0.653717 1.966315 2.484936 -0.043359 -1.377806 1.262370 -6.006914 -3.327269 2.844540 -5.259232 -2.941437 0.681842 0.103255 -0.145139 1.874364 -2.300637 0.197782 4.199511 -3.865527 0.139205 2.860974 3.610127 1.377611 6.567908 5.734317 1.202949 5.706271 2.928415 -2.547801 9.402659 -1.122292 0.795978 1.388095 2.317037 -0.544357 2.280902 1.975693 -2.728627 -4.209840 -6.598014 2.497917 0.646234 3.974582 -1.689393 -4.310885 -5.052661 -2.386299 4.092995 5.424025 -0.580979 9.829616 -0.934526 1.572231 -9.873199 0.015347 3.394612 -0.077208 3.885131 3.233087 -3.388553 -5.487419 -2.268611 -2.371209 -1.554497 -2.281415 -5.266078 -3.555522 -3.781944 3.247212 -3.866742 1.473274 5.471160 -0.529301 3.242655 -1.899294 -0.555415 -2.695593 -0.267858 3.646862 1.390590 -5.493689 5.961465 -1.804697 13.657213 -2.940521 3.899215 -3.946828 1.395296 -0.666007 -1.539111 -0.736482 7.897352 3.664411 1.353427 0.430728 -0.243920 -1.623445 3.676430 --3.241957 1.765066 17.838588 10.837678 -8.132216 -13.651474 -7.212510 -17.039378 9.842522 0.035227 10.997722 1.578862 3.153507 -3.665203 0.413166 -2.458533 1.485583 -5.511171 0.488542 -4.978084 -2.625913 15.036559 7.709944 -12.885146 1.200890 -21.058337 11.411881 7.203033 7.640386 12.655922 -0.179573 -1.938363 -2.496605 9.804412 -4.767268 0.020000 2.393317 1.676391 -5.514743 0.701635 6.134715 8.633888 10.342296 -0.319635 10.973191 5.015575 6.796359 3.035056 -7.175327 -2.489664 -7.139805 12.423707 -9.777709 5.966301 -0.357906 5.816325 2.132583 -11.746337 -4.509118 -11.999893 -0.900243 3.012237 -6.639178 0.435811 -10.359663 3.189625 -1.824198 -4.937996 5.359446 -0.036346 10.436268 4.157513 1.824716 -3.616066 -10.428382 4.205441 -0.780686 8.370674 7.232426 -4.520318 -3.423485 2.760042 -5.290569 -7.303988 3.484856 2.495385 2.145964 -0.718166 3.204339 -4.176067 -1.561272 -2.698638 -1.375842 7.621318 -5.860214 3.423717 -3.692414 -1.624362 -5.891306 -4.444237 0.334455 -7.873120 4.842838 7.651136 -3.360589 -0.765895 0.506087 1.713892 -5.157507 -10.261467 2.118935 -2.490583 2.923678 13.064057 -5.285872 -1.399838 -0.739912 -2.093024 -1.785114 12.363073 0.076026 4.432764 10.137635 14.728166 1.675288 -8.322242 -3.879287 2.722485 8.925911 9.213812 8.556465 -12.197717 -6.763335 -1.582184 1.310702 -17.025976 2.361667 3.393036 8.933321 2.911838 -12.471254 5.366852 -5.823921 13.258679 7.038315 4.207308 3.189988 -1.156615 -10.481804 13.370771 22.763657 -3.578697 7.960831 -8.439604 -7.743319 13.912538 -9.599619 7.196978 1.815239 -0.305377 2.331189 -7.345239 -0.341726 10.554285 3.431883 5.797246 7.995601 2.754151 0.456170 -17.919096 -14.382088 0.423753 9.933096 -0.360371 19.776373 -10.158652 -5.701669 -4.320114 13.106108 -1.642829 -3.006625 1.213732 -6.677274 6.536775 -18.214870 -15.118839 19.996711 18.984673 2.609891 2.393984 11.372352 9.959242 -3.373223 -4.410525 -5.042977 5.488609 3.738702 -3.472783 -0.019396 -0.483382 -9.867130 -7.510871 2.467008 3.962515 6.449660 -5.735394 -6.599879 1.779753 -12.773590 -9.829156 5.231476 -12.332625 -3.841923 2.994666 -0.378446 -0.662074 4.929450 -2.769708 -1.658294 4.753240 -5.653977 1.229540 5.233126 9.042630 3.411247 9.915928 11.672963 0.618058 11.589855 7.526773 -4.467043 23.694429 -4.880672 2.441187 4.077162 6.537768 1.387665 5.299133 3.155397 -5.427270 -2.749736 -12.946645 7.734170 0.773058 7.680251 -13.173885 -10.104083 -12.989335 -6.057153 7.997668 7.980237 -1.243192 21.850501 -1.865755 0.406484 -23.165272 -1.614954 10.209684 1.410487 8.300251 6.467866 -7.403274 -18.053116 -4.438617 -5.290842 2.327791 -6.402381 -10.139054 -7.307417 -5.525084 9.544667 -6.478215 5.617969 14.330232 -0.874342 5.087791 -4.060814 -0.798098 -5.881616 -5.389601 2.376986 3.337861 -10.038629 13.010437 -3.006651 23.480853 -5.954467 8.833767 -8.622469 5.521940 -1.962327 -5.647240 -1.599669 15.339652 6.842366 1.777789 1.650195 -0.046167 -5.030637 8.618073 --2.919361 2.098315 21.781082 11.875799 -8.402223 -17.083619 -7.721250 -22.408664 13.064520 1.621062 13.048850 2.486069 6.288412 -4.451029 0.343833 -0.640202 3.353405 -7.570736 2.570596 -6.041570 -1.490197 21.570681 7.552258 -13.643901 0.628718 -27.487264 15.295018 8.251704 10.886104 16.686628 1.009404 -2.078478 -1.756717 11.432867 -5.835940 0.435810 3.099051 3.385409 -7.688353 0.697399 5.453076 9.924936 12.286339 -0.008305 13.718102 5.667647 9.724966 3.915847 -5.805543 -3.332160 -10.382047 14.422946 -12.156367 7.064463 -3.267481 5.056340 2.748339 -12.494701 -5.415694 -13.837901 -1.192246 4.569908 -8.714572 0.849981 -13.535973 4.452982 -2.915267 -6.326363 3.693027 1.831253 12.960017 7.043397 4.034691 -5.099562 -17.453179 5.231272 -1.957925 9.504234 9.281414 -5.886975 -5.872339 2.583257 -7.540966 -10.218120 6.823353 6.985206 1.925130 -0.323482 3.215228 -4.802520 -4.988739 -2.727858 -1.792595 9.979027 -6.534734 4.948947 -3.888220 -0.489283 -5.621358 -6.244424 0.258983 -10.281348 5.393302 8.719938 -0.375015 -0.855209 0.301409 2.187302 -7.214973 -11.845641 3.691266 -4.160246 2.177102 16.166517 -5.869669 -1.276602 -1.937162 -1.680958 -1.205383 15.573383 -0.423743 5.707326 13.338452 17.472447 2.150838 -10.599890 -4.531752 6.031992 11.157929 10.879459 10.053298 -15.683637 -8.487966 -1.956772 1.122001 -20.428315 2.557641 6.140043 10.221013 -0.450703 -14.612846 7.270462 -6.807616 16.539307 11.565023 4.616527 4.653421 0.003119 -12.164124 16.204380 29.500152 -4.075304 9.331984 -12.505981 -7.583528 17.892361 -11.869571 9.290006 1.206969 0.350170 0.722934 -9.289494 0.830032 13.163847 4.623918 7.973184 9.792358 3.816425 0.422554 -21.452991 -17.289151 -1.115120 13.428149 -0.098441 26.595181 -12.746459 -6.692079 -4.354346 13.310279 -0.339699 -3.512872 2.479224 -8.933206 8.173719 -25.535886 -19.349513 25.471525 21.576799 4.769219 2.101608 13.246409 13.014444 -4.409340 -6.326470 -4.803852 7.464187 3.266956 -7.092795 -0.550662 0.658276 -13.787580 -10.384306 2.529242 4.819008 8.807912 -4.925581 -6.358254 0.095673 -15.736217 -12.212221 7.686739 -14.921197 -6.588956 2.720666 0.240241 -0.805993 5.693696 -3.165502 0.196266 8.184016 -6.756521 0.994410 6.820436 9.934294 3.547652 11.763368 16.983616 0.702939 12.811868 8.635926 -5.203356 28.164593 -4.471812 2.163997 4.708560 6.848394 1.920014 6.240878 4.459653 -6.811008 -4.493549 -16.810297 9.970675 2.212927 9.353255 -13.524998 -11.555304 -15.214501 -6.589494 8.940382 12.981870 -1.049121 27.180651 -3.406781 1.689496 -28.485531 -0.808705 11.304382 2.324872 9.492825 8.613529 -8.805763 -17.882857 -5.436966 -6.595930 0.016446 -8.015804 -14.003396 -9.423152 -7.500461 9.502476 -9.761694 5.614357 18.018835 -1.393227 7.969714 -6.117954 -0.605810 -9.005273 -4.020675 3.588319 4.152458 -11.842184 14.921311 -4.922292 29.723199 -8.257225 10.592589 -10.251280 8.593590 -3.700916 -8.334285 -2.017668 19.894690 7.390233 1.416097 3.521315 -1.635133 -3.867683 11.112911 --47.540005 5.407426 207.192752 65.705441 -123.718551 -217.594561 -85.128923 -337.747844 159.080347 62.414691 194.759997 23.565358 120.702748 -103.284880 6.336723 50.177451 82.455205 -91.369676 37.904223 -93.378855 -30.698115 238.124821 39.137123 -22.696892 19.170562 -239.628640 125.287132 50.167525 119.895575 154.486773 56.762491 -23.246259 -73.683925 88.522454 7.744043 106.243844 60.146704 62.646499 -105.936607 7.255725 7.214641 -30.402539 132.929420 -6.883325 215.809971 3.955439 94.018545 49.152947 -90.790603 -83.453996 -81.976289 144.216161 -148.822410 59.111143 -9.080991 -37.914774 4.323366 -62.617237 -47.300379 -105.367613 -40.731003 -74.822157 -101.350135 33.549861 -119.310941 73.173078 -76.418494 -63.933729 -15.405526 -29.154151 131.512499 66.935881 40.994493 65.932329 -230.336632 17.248275 16.187119 60.722642 116.756956 -17.671650 -24.831337 -43.256528 -99.730172 -133.099203 147.501344 118.069654 33.629253 23.660084 -88.574649 20.859721 -49.067177 -28.058428 64.452951 86.510468 -136.987455 -10.168109 -12.251260 -40.605623 -73.084487 -184.531886 45.752927 -92.758852 65.121889 34.676950 -12.920808 -25.408280 -65.975097 21.129017 -128.324707 -132.255618 56.222284 -72.745979 22.013647 207.033862 -95.031793 -17.309397 -94.299697 -30.333831 9.948704 120.456647 54.587825 72.151433 138.222665 176.356205 73.227043 -142.691542 -105.715394 95.917591 144.904632 91.479653 64.656070 -139.586819 -95.904655 44.719870 -71.953235 -239.458715 -78.445666 77.969566 137.959494 -2.069815 -73.510158 25.381415 -71.583885 150.756314 142.068231 25.052300 27.238915 23.332565 -157.237899 141.761901 242.649901 -41.016005 125.787783 -72.790302 -26.170195 146.042131 -135.382985 64.009978 40.990865 -21.590830 -59.987864 -71.821318 -19.754944 122.404937 56.721228 90.711252 -26.776241 96.451061 -77.602190 -214.462800 -233.252837 -20.218062 230.526322 31.078527 190.884241 -158.280413 -77.153550 1.817816 169.837263 26.809936 -101.093206 63.844025 -128.362887 109.821686 -232.067790 -202.099201 306.954261 265.913727 131.577133 22.715190 106.260794 155.961895 -187.376712 -68.660730 -57.266266 79.124346 2.778833 -239.260242 -76.935277 26.978522 -177.589179 -125.301570 -6.461919 76.666874 46.143105 31.202075 88.958272 23.731764 -57.319443 -84.047972 113.072737 -81.730943 -85.003401 0.085874 13.442422 36.896042 67.966711 -72.032602 50.975376 79.817141 -103.014114 38.463396 84.951976 87.500486 41.990438 214.713656 208.086152 -42.721483 123.337319 -5.127744 -80.071324 186.943029 -41.509460 66.037312 28.722711 44.742018 39.465582 36.001997 111.897531 -90.900270 -89.316709 -159.641168 -29.551157 56.386339 137.478679 -37.949591 -195.377653 -217.812041 -7.197623 58.925374 158.057912 -15.033269 267.520010 -73.765477 53.157722 -284.866010 13.985593 101.036022 -13.074462 114.350908 53.081481 -81.998777 -135.746099 -68.126052 -141.200090 -114.514652 -60.752741 -89.669490 -81.906446 -113.865661 160.079898 -109.730270 -3.022459 89.596207 9.586265 147.179744 -22.727536 6.453661 -132.812337 41.413883 82.749036 11.133098 -130.446669 164.712243 16.577406 368.224734 -45.062785 72.451161 -56.464045 101.429066 -51.394817 -129.369717 -28.033489 207.802843 166.635618 28.710398 -15.434943 -16.144794 -11.663734 110.130189 --53.150212 3.896681 195.902116 57.615396 -118.572026 -207.631289 -82.723564 -323.740073 148.259919 63.340835 192.083361 17.726815 119.048244 -102.091921 6.459143 45.100261 81.065434 -92.054741 40.138719 -89.078143 -32.436323 222.981546 34.157967 -12.347570 17.315285 -223.213470 124.256712 43.506767 106.600876 149.202870 57.011099 -21.714893 -73.178515 83.335267 14.683507 111.778303 63.230138 65.174780 -91.982447 7.046449 5.687668 -38.314675 125.743946 -7.694692 208.944154 8.076522 83.743196 46.266564 -93.164358 -84.311387 -72.770922 127.352323 -148.917303 52.299013 -6.845158 -43.497555 8.342407 -56.238456 -44.671339 -105.056051 -40.019740 -82.780147 -96.322611 34.709446 -112.551367 71.962523 -75.016367 -60.305224 -17.025934 -30.170297 123.528539 66.244616 41.688763 77.476509 -214.045770 17.285163 20.789759 53.032710 112.404823 -19.781296 -23.052683 -43.865287 -96.278468 -129.857171 145.226353 111.332353 38.299015 24.426737 -88.573131 29.228245 -45.042778 -24.905943 65.861122 83.445800 -123.947187 -15.812925 -7.222555 -40.645927 -70.848499 -184.836704 45.275469 -89.787493 62.287796 40.751736 -19.598457 -28.934756 -74.636007 20.981238 -129.230216 -127.300167 56.491716 -78.431127 23.443417 192.649639 -95.536536 -14.989638 -95.998204 -31.782698 21.810694 112.279624 54.476434 68.903645 129.443512 167.388603 73.417103 -139.728683 -105.665422 90.252769 141.280903 83.552037 58.019588 -134.099770 -91.860186 45.035877 -78.593044 -227.392496 -82.015331 71.036125 130.947166 -1.881882 -72.038112 29.822974 -69.903656 140.355635 139.395542 27.875436 22.588383 25.869164 -152.040127 133.058709 219.877377 -40.283525 122.797936 -62.556140 -24.349226 136.269741 -127.327298 57.168182 43.948161 -22.368369 -61.171494 -68.526541 -20.247353 116.264367 58.138493 91.990404 -33.094036 94.780235 -75.233631 -202.715712 -222.756189 -15.596523 231.156724 31.166275 177.094928 -155.455008 -72.284418 9.205003 166.423276 27.144168 -102.170510 57.914010 -117.821246 106.211366 -222.329354 -194.886620 293.316377 248.427443 129.971663 23.235498 94.699562 149.512587 -184.521175 -60.711097 -57.334237 77.262227 -4.689689 -234.578882 -77.618671 28.097990 -169.598161 -119.913396 -9.180778 75.210404 42.822789 28.619535 85.886977 24.122561 -45.049910 -75.250033 106.984391 -73.797284 -85.484094 -2.844753 12.337611 42.229133 63.352131 -68.746677 52.236375 74.076197 -101.541999 35.673806 83.393947 83.699399 42.197181 214.567564 199.449950 -47.556611 105.788297 -10.292015 -73.939327 168.978417 -37.698380 64.672703 27.765762 46.262757 44.425402 31.852504 116.515105 -87.750827 -89.154329 -153.503278 -37.558815 58.531731 132.638267 -33.074535 -187.866428 -214.546507 -0.532555 55.298837 156.167416 -15.509167 254.867526 -65.519824 51.158943 -263.647356 12.691113 95.283056 -16.499349 108.200477 48.408520 -76.673922 -127.141404 -67.850271 -139.988773 -115.443754 -56.633976 -76.125465 -75.600615 -107.943114 151.916851 -100.674857 -7.165084 76.347211 14.101426 139.376503 -9.881826 6.870971 -129.235663 43.323541 80.510251 7.575637 -123.680965 161.883819 22.256768 351.867191 -41.499528 64.396754 -51.121248 99.465114 -47.838142 -121.237299 -26.198091 198.332585 163.903458 28.254603 -15.525270 -11.932784 -8.734909 107.955436 --1.157454 2.516496 13.568920 7.038032 -6.837680 -11.029175 -5.249977 -14.734071 6.726365 0.427383 8.855835 0.415728 2.725153 -1.884020 0.575937 -0.584568 1.588461 -3.249791 0.695049 -4.060615 -3.363995 9.835800 4.074760 -7.535709 1.311126 -14.013575 8.049810 5.858506 5.785536 7.839536 0.546635 -1.801096 -2.769923 6.992423 -3.225037 0.276880 2.091113 1.909389 -4.964203 1.177339 3.356859 4.738217 7.655018 -0.423571 8.140890 3.856811 5.224921 2.910240 -5.550382 -1.682740 -4.975740 9.826727 -6.920090 4.417329 -0.127061 2.952036 0.892837 -7.966030 -2.908287 -6.780447 -0.835276 1.050621 -5.208162 0.587814 -7.546688 2.034924 -1.802706 -4.649309 3.862623 0.400197 7.580663 2.406697 0.551672 -1.371640 -8.496981 2.414028 0.294824 5.951831 5.535346 -3.450488 -0.885688 1.767162 -4.482424 -5.819104 3.549671 2.966528 2.478552 -0.886667 0.521626 -2.535015 -0.708810 -1.973137 0.239527 5.778732 -4.886738 2.442402 -4.169460 -1.705661 -5.877945 -5.701505 0.804614 -5.610649 4.513551 4.074450 -2.643680 -0.532367 0.108701 1.714348 -3.639069 -8.031316 0.783183 -2.433990 2.988882 10.493242 -3.741274 -1.719038 -0.953124 -2.331861 -1.635977 7.979515 1.427648 2.549149 8.078198 10.759554 1.956625 -6.559586 -4.205708 1.611312 5.855132 7.524719 6.161431 -9.000127 -5.019228 -0.630042 -0.492174 -13.574417 1.523259 1.850849 6.459550 1.031240 -7.725846 2.860535 -4.904141 8.908312 5.038011 3.894432 2.411207 -0.661689 -7.227001 8.941456 15.519924 -2.781449 6.303506 -5.437880 -4.870627 8.386402 -6.226556 4.931261 2.185675 -0.836754 1.078532 -5.140086 -1.180226 7.835085 2.884684 4.046536 5.234297 2.434851 -1.844476 -12.631822 -10.722677 0.930264 8.326756 -0.698781 13.386651 -8.007801 -5.053098 -2.319591 10.392942 -1.364467 -2.845866 1.584016 -5.124433 5.291387 -11.399388 -10.984107 13.708658 13.660596 2.430278 0.610679 8.191586 6.668428 -5.380156 -4.226218 -4.140800 3.935430 2.064305 -5.031446 -1.403514 -0.011976 -7.776330 -3.982744 1.466820 3.506267 4.449010 -2.592908 -2.937307 1.547595 -8.822287 -6.894725 4.423523 -8.051438 -2.308349 2.085803 -0.342416 -0.190519 3.816729 -3.180455 -1.611536 3.468857 -5.001088 1.671422 4.144166 6.492564 2.024513 9.846151 8.121796 0.302229 9.150821 4.575759 -3.793779 16.074280 -3.275538 2.532308 2.851253 4.888773 -0.222103 3.787886 3.721535 -4.351432 -3.838284 -9.666720 3.276737 0.660092 5.850167 -6.874778 -7.209344 -10.336184 -4.060381 5.304626 6.768043 -0.893238 15.522928 -1.078928 1.477792 -16.174420 -0.968621 6.237911 -0.019551 6.497083 4.316675 -5.802071 -12.115501 -3.157898 -5.043364 -1.075121 -3.771060 -6.600098 -5.629408 -4.363192 6.437160 -4.032391 2.966554 9.358250 -0.759126 3.876687 -3.142541 -0.468018 -3.549396 -3.126800 4.508578 1.601329 -8.208018 9.597795 -1.184149 19.892186 -2.980668 6.421634 -5.760812 2.299307 -0.433795 -4.024700 -1.811782 11.486256 5.901723 2.381900 0.097197 0.339230 -3.456281 6.141628 --5.514324 -2.929864 18.343271 10.256855 -9.379293 -21.047841 -8.313333 -28.879216 16.440678 3.606293 18.764739 3.011133 10.428191 -12.432594 2.250639 4.391542 7.616058 -8.859324 1.170207 -7.908766 0.599117 25.732092 6.508584 -8.013405 1.403279 -23.220335 6.599292 7.963655 11.056873 14.097438 3.579879 -2.426431 -3.983976 7.597598 -4.124549 9.036003 4.738246 2.817617 -11.963268 -2.996676 1.593345 1.919243 13.967162 -3.620665 20.239359 -3.474113 13.879928 3.506906 -9.162761 -7.610051 -10.316793 19.643608 -12.066476 5.955887 -0.290166 -0.717550 2.054612 -8.633486 -6.935898 -13.302371 -3.386311 -0.881519 -10.368737 0.721594 -9.496764 7.086598 -2.188926 -4.647400 2.748418 -2.998112 13.070711 6.038038 3.250766 1.386271 -19.640078 2.520575 0.493840 7.033766 8.502602 -0.198428 -1.144652 -3.628315 -6.801917 -9.026957 13.754994 8.098166 2.660669 3.245751 -8.026561 1.458617 -4.725611 -3.559457 3.681930 4.632230 -13.344760 -0.765645 3.238789 -4.037126 -6.467378 -9.326332 3.364490 -8.318217 4.286753 5.712176 2.087190 0.502382 -5.092478 2.094470 -13.903840 -13.129620 5.017766 -3.970082 -0.604415 19.058974 -11.276859 -0.439266 -6.650386 0.136058 -3.083321 12.653492 2.628174 9.303307 11.904567 17.337136 5.316413 -12.989186 -7.503812 8.168401 17.784042 9.677198 6.264836 -12.086544 -8.765825 2.754009 -5.131112 -23.204440 -7.957379 10.002329 15.224814 4.664580 -11.771424 4.299156 -4.060152 19.410681 11.683885 -0.285475 2.324396 2.372352 -16.131713 15.514825 24.789724 -4.632932 13.034174 -7.871957 -3.976745 14.348174 -13.337884 6.216747 4.499124 -2.035872 -2.506142 -7.213099 -0.655856 11.080700 6.899097 8.393396 -3.928098 8.924993 -4.667774 -22.925829 -24.553055 -2.632196 15.690257 2.510990 22.238076 -12.982415 -11.522058 -2.961238 14.541606 -2.874139 -9.600524 5.465463 -15.473669 10.038430 -24.132497 -19.786395 32.871107 27.544018 12.276595 5.411517 15.567925 14.970173 -14.554871 -3.075262 -3.776446 8.103055 6.341888 -20.570985 -2.976772 0.880112 -16.462591 -14.682883 -1.016657 5.772518 -0.975484 2.310181 7.445648 0.865249 -9.589704 -4.798865 9.408132 -10.964840 -6.097747 -0.311867 0.546716 2.852488 7.769599 -7.866175 4.234978 6.851712 -11.146525 2.285400 5.591739 10.655861 7.384645 16.659050 23.094217 -2.057343 20.552126 0.798772 -9.417811 19.267038 -5.323483 4.146513 1.036938 4.313868 5.020210 3.527927 7.465097 -7.672736 -5.266472 -14.851907 2.164436 6.128490 13.453888 -7.785392 -18.514234 -19.439282 -4.002372 7.382125 12.973459 -2.792105 25.894113 -10.423150 2.887881 -33.636717 0.563837 9.953548 1.635084 8.906871 4.847919 -7.662482 -20.547469 -4.939589 -11.565325 -8.570019 -6.714991 -12.998792 -8.021556 -15.328066 20.327264 -14.323404 1.813173 12.686140 0.798075 14.338752 -2.353170 -0.327835 -11.001932 1.850875 2.872860 3.653888 -11.984908 15.260289 -0.503251 36.019917 -5.817891 8.491355 -8.988916 12.877667 -6.507883 -13.035975 -1.494375 18.738529 17.517893 -0.464480 0.050570 -1.463399 -4.183326 11.052634 --0.181937 2.895293 12.633221 5.983681 -6.251873 -10.817457 -4.828914 -15.515784 7.069346 0.934858 7.940482 0.430335 3.098347 -2.118343 -0.101264 0.388419 1.758282 -2.551386 0.912034 -3.990467 -3.528232 10.470612 2.896767 -5.865753 1.257470 -13.481845 7.663386 5.158346 6.585306 7.319518 0.935467 -1.713547 -2.532756 6.508808 -2.995342 0.588940 1.785165 2.238333 -5.782769 1.029229 2.427612 3.887006 7.465965 -0.113367 8.053043 3.263848 4.617473 2.850608 -4.431302 -1.447709 -4.363728 9.199578 -6.022564 4.429824 -0.385064 1.820898 0.629432 -6.687264 -2.139887 -4.745962 -1.236310 0.584195 -5.104879 0.746482 -7.533626 1.721412 -2.397176 -4.864549 2.481559 0.027372 6.984737 2.470600 0.356816 -1.515870 -9.747320 2.189594 0.682825 5.337167 5.659464 -2.325730 -0.466614 1.087440 -4.917962 -6.181950 4.411804 4.461760 2.158845 -0.123442 -0.544637 -3.100807 -1.028180 -1.996207 1.311391 5.671966 -4.764494 2.270168 -4.291151 -1.704015 -5.271750 -6.917923 1.098730 -5.070296 4.488858 2.284563 -1.639950 -0.448491 1.008350 1.730788 -2.768140 -7.257504 1.093573 -2.492484 3.148876 11.074455 -2.846299 -2.034984 -1.772857 -2.409691 -2.192037 7.498156 1.797948 1.957932 7.869453 9.804453 2.486609 -6.372107 -4.340625 2.424552 4.841166 6.769510 5.497268 -8.494040 -4.689069 -0.070842 -0.509784 -13.013850 0.483420 2.054322 5.925013 -0.468347 -5.563902 2.257090 -4.359204 7.735697 4.968422 2.666372 2.613136 -0.534483 -6.608445 8.112771 14.538232 -2.278934 5.401894 -5.774288 -4.675642 7.666860 -5.753111 4.822890 1.498424 -1.106149 0.186143 -4.579453 0.181011 7.501206 1.765655 3.284278 3.986191 2.519978 -2.839120 -11.262243 -10.474789 1.099733 8.194443 -0.284267 12.755599 -7.466857 -4.745199 -1.880346 9.666673 -0.398731 -2.246064 2.460694 -5.761700 5.298114 -10.764911 -10.478888 13.135543 13.077370 3.130434 -0.292576 7.138431 6.323924 -5.670106 -4.855076 -3.827941 3.530826 2.030610 -6.547990 -2.165531 0.313581 -7.524566 -3.571396 1.361518 3.324270 4.521803 -1.485694 -0.949476 -0.143364 -7.745734 -7.076854 5.081846 -6.841276 -1.724930 1.857158 -0.001887 -0.592277 4.203401 -3.076709 -1.243104 3.470289 -4.297879 2.154338 3.786813 5.571450 1.099216 9.390431 8.385149 -0.160269 8.887496 3.838757 -3.613624 14.831602 -3.147952 2.642862 2.582398 4.067093 -0.432215 3.651835 3.919587 -4.304055 -3.819216 -9.072655 2.310382 1.074143 5.221166 -5.569296 -7.165085 -10.279447 -3.543121 3.832858 6.711171 -0.293355 14.511126 -1.768314 1.818854 -15.116087 -0.344869 5.576634 -0.068692 6.525186 3.895497 -5.671788 -9.920854 -3.004381 -5.630875 -2.654968 -3.594101 -6.601251 -5.308563 -4.108308 6.007204 -4.146086 2.609978 8.651306 -0.814708 4.006849 -4.233807 -0.065279 -4.311675 -2.387477 5.091573 0.586230 -7.589287 7.952240 -0.943257 18.816912 -2.605401 6.019221 -5.057141 2.575109 -0.764913 -5.112013 -2.080521 10.995361 5.423903 2.095151 -0.230491 0.076846 -2.606022 5.602176 --1.853715 1.364088 11.633707 6.851949 -6.033825 -8.531404 -4.522656 -11.938683 6.206289 0.073636 6.579226 0.898831 1.806629 -2.737572 0.349420 -0.791391 1.304784 -3.564544 1.107668 -3.059657 -1.074121 9.551395 4.068577 -8.585613 0.974906 -13.853929 7.431455 5.003765 5.097628 7.200991 -0.196351 -1.551175 -2.111519 6.566608 -2.839529 -0.459710 2.961885 1.230167 -4.452597 1.024021 2.784850 6.273064 6.248195 -1.519839 7.564724 3.225550 4.628342 2.780442 -5.092478 -1.096321 -3.843747 8.163016 -5.672161 4.689692 0.475166 2.934442 0.440681 -7.785013 -3.365584 -7.283798 -0.588300 1.901725 -3.347450 0.392598 -6.620570 1.840071 0.334734 -3.640563 4.043876 1.587899 6.679541 3.087188 1.773481 -2.029060 -6.868565 2.989600 0.218583 6.113451 4.268790 -3.564549 -1.095486 1.814399 -3.342226 -4.886852 1.508217 3.361141 1.709531 -1.179722 2.079248 -2.241080 -0.480794 -2.547935 -1.293339 5.242524 -3.653500 1.586427 -3.395150 -0.510867 -4.239446 -3.508700 -0.194857 -4.917005 3.771448 4.671876 -1.556929 0.017959 1.485267 2.207459 -3.217763 -5.896242 1.571971 -1.706429 2.745974 8.800634 -2.148760 -0.876000 -0.761900 -1.594580 -1.735080 7.545546 -0.650000 2.759881 7.319089 10.469377 1.268976 -5.222999 -3.405685 1.908906 5.544539 6.588984 5.886181 -9.220868 -3.994046 -1.091810 0.523876 -10.340308 1.318535 1.327063 5.774874 0.099258 -7.374555 2.533424 -3.903543 9.870806 4.083572 2.327495 1.641653 -0.370096 -6.358833 9.341935 14.925059 -1.901788 4.470283 -5.804274 -3.619914 7.553087 -5.264040 4.888775 1.461550 -0.209418 0.860279 -4.963420 -0.310631 6.450607 2.931942 3.613416 4.714558 1.916422 -0.720776 -11.611157 -9.038077 0.435497 6.141567 -0.966601 14.030514 -6.739504 -5.366854 -3.519462 8.168258 -0.607669 -1.712500 1.253897 -4.906222 4.454244 -10.022620 -9.804859 12.834078 12.757821 2.098450 1.108105 8.415363 5.651978 -3.751127 -3.694315 -2.492068 3.167472 1.972680 -3.400235 -0.838129 0.780216 -6.862644 -5.054922 1.629671 2.663272 5.121925 -1.748442 -4.379880 2.069679 -8.744715 -6.122410 3.543794 -7.289406 -2.458959 2.342770 0.197203 0.339337 3.799414 -2.765439 -1.414379 3.193769 -3.824911 1.235152 3.581430 5.971367 1.727966 5.947341 7.772016 1.466900 8.794004 5.190502 -3.222383 14.946221 -1.973033 1.916487 3.057434 2.546580 0.147819 2.988164 2.349931 -3.630828 -1.637579 -8.798181 4.922333 -0.007154 5.295538 -8.924891 -6.616116 -7.919056 -3.951976 5.442495 4.392161 -0.506672 13.704224 -0.984767 0.502976 -15.933703 -1.166184 5.733394 1.247193 4.991008 4.073315 -5.023698 -12.571429 -2.248565 -3.832314 -0.800987 -4.570927 -6.586776 -4.872951 -3.501626 6.194277 -3.042012 2.925941 10.936876 -0.441176 3.692867 -3.573113 -0.382353 -3.537081 -3.858348 1.819680 1.561304 -6.763985 7.899850 -1.765228 17.141804 -3.778006 4.909820 -5.335535 2.682904 -0.502608 -3.815798 -0.690107 9.794858 3.607415 1.760913 1.049603 -0.379147 -3.877034 6.249896 --12.481031 0.336032 41.292965 21.282873 -16.608001 -33.153790 -16.640189 -42.078873 24.239429 3.603095 30.319687 6.850225 10.333865 -8.933010 6.887616 2.547149 3.835673 -16.260573 2.722874 -10.705445 1.811456 38.397239 24.759231 -25.136860 0.479854 -44.004594 14.964437 15.198439 19.907033 26.410249 -0.234059 -6.734512 -4.869237 21.039583 -11.440040 7.464674 5.336542 5.858857 -14.074749 0.001869 7.316563 16.044358 19.347048 -3.314228 33.551567 4.020725 24.888569 5.036605 -17.375563 -9.088750 -19.677810 39.836068 -27.637854 13.002269 0.954860 11.553302 -1.497539 -22.728906 -14.240085 -36.065342 -2.949735 7.602956 -17.971499 1.112050 -20.389527 10.928593 -4.103976 -8.045837 8.153062 3.456509 27.837669 10.650039 7.439500 -1.567370 -27.670174 8.252116 -5.472430 18.501752 15.905568 -10.681132 -10.821446 3.916825 -6.053122 -17.849957 12.878806 6.580051 2.402823 -2.903143 1.703892 1.507625 -9.014734 -6.911585 -6.169116 16.663042 -22.388994 10.302655 2.138363 -2.756853 -12.543589 -7.076238 0.048139 -21.315731 9.185629 16.136523 4.226362 -4.937018 -12.147722 4.217796 -20.950113 -27.010681 6.913627 -1.189413 -2.225601 25.441206 -20.454098 6.868735 3.482986 0.264070 -4.041733 27.880114 4.824280 16.100181 20.057449 35.253745 4.634120 -19.288999 -7.981925 8.273753 30.460819 23.301316 17.093384 -25.765278 -16.736764 -0.361285 1.193095 -39.432292 2.751138 21.820906 21.804295 13.174512 -29.556398 5.197564 -9.250153 35.898593 20.301408 10.258266 5.713110 -1.288061 -25.180969 29.801920 55.173758 -10.689583 24.133274 -9.807329 -10.725438 34.561051 -33.059127 19.452647 9.421603 2.671223 3.712947 -18.724314 -10.234043 24.368818 18.196500 18.752249 10.664598 8.245649 0.344146 -44.956615 -36.295977 -6.596794 24.485841 -3.042186 40.608324 -20.270433 -18.835511 -6.827271 28.784022 -5.205186 -13.569204 2.049914 -17.708102 16.234612 -44.504312 -33.734696 51.442832 50.545178 11.569568 7.854780 31.466227 30.602733 -16.536225 -9.764181 -8.263017 15.104926 3.034170 -14.481393 -2.436592 -0.973754 -28.085384 -20.283696 0.310539 8.492680 3.475051 -0.974747 -8.259289 15.512711 -27.270885 -10.700890 7.257039 -26.435985 -15.227632 1.292747 1.735835 2.462137 7.810020 -12.934235 1.814102 17.554002 -22.022405 2.403000 13.975950 19.941041 15.552421 28.982619 30.412928 3.441674 32.513765 12.479812 -13.029992 46.470734 -8.753133 4.613894 5.706909 12.394554 2.653674 9.586691 5.920369 -12.778557 -12.365333 -28.350446 15.637292 4.714656 23.497238 -20.077370 -32.688074 -25.124945 -10.650369 24.862300 18.169256 -6.581290 50.494535 -7.990097 6.028395 -61.519231 -0.845791 20.657970 1.164937 17.136301 14.702506 -14.041601 -44.943430 -11.717319 -8.729236 -1.363010 -12.845136 -25.284409 -12.304092 -22.103423 27.990626 -22.991854 8.860247 25.084615 0.146168 20.903024 -1.839271 -3.078729 -15.467900 -3.777043 8.005952 9.699538 -25.906800 31.930740 -6.277713 64.381503 -18.562240 19.686590 -19.735118 14.838755 -6.720662 -9.041619 -0.302184 37.634978 25.614127 3.590036 0.585138 -0.635221 -13.272722 15.824601 --7.981317 5.612117 55.918088 20.769759 -33.968449 -62.611831 -22.943012 -91.873531 41.505254 15.071644 50.792214 5.331759 32.106241 -24.959416 1.044799 11.773560 19.524541 -19.176396 8.349331 -25.128087 -15.813612 62.007244 8.338088 -10.011311 6.046269 -61.732190 38.344882 17.822944 30.972706 41.151310 14.044681 -5.702559 -19.172340 26.044449 -3.362575 23.367073 12.604324 18.238224 -27.463674 2.348887 4.913642 -4.863772 37.706487 0.584912 53.801296 7.891480 23.738348 15.064687 -22.478469 -20.491715 -19.712371 36.508268 -37.343174 18.385187 -6.491357 -7.706918 3.850389 -18.746084 -9.560722 -25.696389 -7.768425 -17.450905 -30.043070 7.626825 -34.868978 16.152205 -18.655907 -22.685928 -2.464148 -7.540969 35.248113 14.019621 4.786914 10.050192 -62.353410 2.149866 5.499085 16.052804 32.721868 -4.866625 -6.250836 -11.384554 -30.366065 -36.509539 39.574506 30.671122 11.073246 8.907909 -21.950242 -1.831324 -10.100195 -7.273374 20.542058 25.860052 -31.544052 -0.460118 -6.235180 -10.484926 -22.562461 -50.346492 14.631055 -24.258887 20.214083 7.468561 -3.803428 -6.020970 -9.755278 6.621153 -30.277107 -37.170719 11.926661 -21.349806 10.382060 56.659781 -20.152957 -8.905542 -22.766931 -12.338391 1.074510 33.985505 17.280704 14.141901 41.265989 46.812387 17.933379 -39.111680 -29.685183 23.343046 33.665658 27.325174 17.937182 -41.043529 -25.628120 12.172443 -20.063627 -66.944022 -17.231272 17.397274 35.577785 -6.777933 -20.812091 13.314867 -21.150848 34.704230 36.836723 9.550958 8.813934 4.344434 -40.568652 36.745276 66.255122 -10.376250 31.878633 -21.468646 -12.816699 39.054092 -32.047353 16.268227 11.418831 -9.368522 -15.252135 -17.392947 -0.487740 34.695751 11.577400 22.605939 -0.854423 24.609319 -25.966454 -55.246415 -61.200771 -2.031705 62.273384 9.404257 56.444789 -43.847790 -19.620189 0.408855 47.311514 4.416970 -23.510472 17.372546 -33.138101 30.638772 -61.296319 -53.898649 78.305833 66.007038 35.175080 2.305059 28.684271 37.954848 -43.999813 -21.197312 -17.540485 19.532415 5.034729 -58.369465 -18.810530 5.206970 -48.293026 -28.383544 -0.265066 21.103465 14.423188 4.268442 19.676598 -1.649998 -18.855824 -28.010607 29.204741 -23.135341 -15.965239 1.687281 2.343364 4.581206 17.802261 -17.545510 9.271314 17.935367 -24.962534 12.768106 22.157277 22.583561 9.032978 60.843358 53.112689 -14.322283 33.126786 0.692660 -19.841209 56.638343 -12.496680 18.660394 9.767766 19.274579 9.177438 11.057985 31.689736 -24.531939 -22.381259 -44.830356 -8.173922 17.601156 33.914249 -12.487239 -44.873255 -61.976199 -5.359802 11.326212 47.186939 -4.145584 71.846819 -17.921307 16.491656 -74.171938 4.368976 25.049631 -5.804353 30.573086 14.895230 -24.294433 -36.779796 -17.706940 -38.308868 -32.611556 -16.372001 -23.994006 -24.054459 -26.190524 33.561780 -27.652761 0.426866 28.441783 -0.892050 32.885226 -14.572840 2.610415 -32.138363 7.263634 26.018233 0.212703 -37.284610 41.444903 4.629345 100.397673 -8.914030 25.197690 -15.844074 25.418493 -13.436064 -35.239532 -10.508374 55.822920 41.017756 8.281991 -1.410998 -0.240220 -1.665555 29.698924 --2.234076 2.915276 19.387572 9.975807 -6.861313 -12.530913 -6.004769 -17.879112 8.969365 0.572836 10.958415 0.938353 3.028034 -2.135532 1.615168 -0.455198 0.778097 -4.980875 2.527934 -4.140322 -0.158778 13.952145 8.231143 -11.718426 0.302708 -20.477714 11.038417 7.481286 9.821246 11.017362 0.242717 -2.912466 -1.570549 9.876514 -5.108112 -0.758591 1.664578 2.432673 -6.476639 1.720562 3.185955 10.011728 7.248403 -1.153883 10.994275 4.746617 9.919526 2.917169 -5.694865 -1.285939 -8.296675 15.627448 -10.457525 5.452094 0.132600 4.470659 -0.424592 -10.977568 -4.835711 -11.916960 -0.436969 4.637314 -7.415267 1.289467 -11.507692 3.349479 -3.280897 -4.450206 4.884210 4.078140 10.663752 4.958908 2.818927 -3.515663 -11.413500 5.083061 -1.926841 8.743453 7.152079 -6.983919 -2.582937 4.123689 -3.494122 -7.761174 3.968785 3.892865 1.587891 -3.246338 4.263547 -2.689309 -3.477351 -2.991079 -3.635578 8.314558 -6.642532 6.049532 -5.209696 -0.378872 -5.593440 -4.175721 -0.748210 -9.726821 5.153220 7.029568 -0.449347 -1.005280 -1.061024 2.295114 -4.600153 -11.138304 0.797971 -1.155104 3.563090 12.928446 -6.160685 0.707589 0.193489 -0.428440 -2.101539 11.978946 0.936832 5.526779 10.353685 14.942874 1.138374 -7.805807 -3.472180 3.334330 8.456980 11.046476 8.714700 -12.934413 -7.166851 -2.964030 3.217244 -16.378049 4.598509 5.234259 6.912252 2.351655 -12.036502 2.730160 -4.987224 14.127055 8.018556 4.944373 3.394288 -0.687398 -8.162037 13.031488 23.547467 -4.216747 7.442718 -7.468248 -6.135894 13.080515 -10.554898 8.044424 2.617364 1.965743 3.025913 -8.821813 -2.926115 11.014708 5.784939 6.777602 10.022207 2.183257 1.911282 -18.262097 -12.043911 0.387623 8.346543 -3.347286 18.484462 -8.544755 -6.381190 -3.231176 11.495718 -0.414632 -2.732447 0.286131 -6.770476 6.174641 -16.727228 -14.758047 17.359120 17.832286 1.587587 0.506728 11.121733 11.915975 -5.831758 -5.131374 -4.495946 6.419055 0.002900 -4.103983 -0.759725 0.280263 -10.952752 -6.121270 2.428538 3.793470 6.697170 -3.220913 -7.991298 4.152894 -14.563821 -8.540790 5.008856 -11.459339 -4.932167 1.395572 0.239923 0.812720 4.190661 -5.043865 -0.803670 7.612313 -7.099725 0.255239 6.073083 9.189826 3.523532 11.184892 9.472918 3.560684 11.900253 8.154663 -4.945656 22.739285 -1.785928 1.466806 3.741145 4.797687 -0.858184 5.503575 1.944692 -5.626065 -6.272652 -13.627630 7.491591 0.142274 8.108078 -9.102009 -9.344017 -10.238857 -6.377724 10.191102 7.784874 -0.587393 21.594778 -1.206402 1.173252 -21.797661 -1.530071 8.303446 0.445830 9.411089 7.265546 -7.384009 -15.026015 -5.017820 -3.195297 0.919508 -6.149742 -10.706737 -7.402029 -5.612343 9.048093 -6.352331 4.927417 12.526493 0.244598 5.531748 -2.749801 -0.918058 -4.914076 -3.815949 4.403854 4.151768 -12.051581 12.701631 -4.178041 25.747780 -7.654358 8.178088 -9.779776 2.746433 -1.004131 -2.629170 -1.027287 16.199332 7.145756 2.851908 0.578114 -0.548056 -5.818949 7.868212 --56.393185 5.158480 211.454687 63.751785 -126.799261 -220.977907 -89.202803 -345.665581 158.960206 65.858128 204.547342 19.546854 124.577563 -107.587546 7.999759 47.354681 84.775126 -98.151011 41.506497 -94.233683 -33.491704 237.470007 38.590714 -18.047187 18.376818 -239.417961 130.217964 48.618596 114.734338 156.941938 59.611409 -24.211035 -77.780143 90.570487 13.097793 116.872504 67.914053 67.847513 -99.648462 6.162576 6.828477 -35.669251 134.652262 -9.168502 223.029098 7.501817 91.763272 49.648638 -99.598423 -87.686160 -78.369301 142.179708 -157.908941 56.946548 -3.820040 -42.549727 7.563781 -64.489926 -48.778697 -112.436628 -42.549432 -84.051500 -103.249387 35.888370 -119.543766 75.771730 -76.902481 -63.448669 -14.856712 -31.117537 132.793335 69.060498 43.821550 79.253832 -226.785045 19.089072 20.977557 58.327178 119.490349 -21.088131 -23.656187 -44.723996 -100.714042 -137.676521 152.739881 117.889506 39.690383 24.054839 -92.117873 30.298225 -47.864208 -28.691530 67.344113 89.651779 -134.322042 -14.639557 -8.420341 -43.812827 -77.418033 -192.952660 47.547086 -96.697473 67.221231 43.526591 -20.058641 -30.694797 -77.427025 22.358338 -136.815108 -136.360482 59.177683 -80.869257 25.633322 205.853985 -102.163250 -15.115870 -99.207253 -34.011933 19.852160 120.673924 57.512660 73.779623 138.464394 180.711319 77.809101 -148.247037 -111.698281 95.145781 151.344535 91.670281 63.029327 -145.242778 -97.193975 47.369929 -80.329607 -243.814200 -84.362379 76.290560 139.649912 0.890102 -79.439858 29.536359 -73.413566 152.158740 146.309938 30.387397 24.156647 26.767970 -161.347051 142.956894 237.448617 -43.203877 131.366292 -66.945244 -26.655384 145.162506 -138.119472 63.248183 47.457767 -22.540252 -62.525561 -74.283531 -22.727530 124.755216 62.895845 97.504050 -33.569185 99.426200 -79.284584 -218.432622 -238.473333 -16.270810 242.866855 30.921769 190.690599 -164.676095 -80.288628 7.554915 178.933176 26.355795 -108.138494 61.948992 -126.897040 113.777179 -234.175884 -207.528615 312.494876 267.345194 135.961231 24.486105 105.378813 158.487615 -196.993777 -65.701986 -61.497295 82.495893 -3.100714 -246.216493 -80.070967 28.457233 -180.983956 -126.691116 -9.567997 79.569205 45.812075 30.563255 88.952920 28.575348 -52.118091 -80.304529 113.371458 -79.938886 -90.661008 -2.724312 13.156345 43.818762 68.726618 -74.358769 52.633492 79.627320 -109.336127 37.947982 89.221628 90.304735 45.165563 228.240391 211.150095 -47.662398 118.881691 -8.328951 -79.253986 182.982047 -40.606445 67.994917 29.839303 48.951989 45.259134 35.141565 121.613620 -93.558129 -95.414515 -163.761191 -36.617421 59.568182 142.367469 -38.128312 -201.333108 -226.675044 -3.821495 61.737722 163.449385 -16.970444 272.966300 -69.369990 54.405256 -285.667859 12.714196 102.675720 -16.733976 115.374859 52.277678 -83.087596 -140.583289 -71.617722 -147.424735 -122.312598 -60.536734 -83.403101 -81.189643 -117.441171 165.316904 -107.772843 -6.225910 85.004402 14.197299 147.708387 -12.004079 6.828740 -135.482813 43.013486 85.610172 8.357507 -133.407449 173.583068 21.887118 378.479977 -46.212181 70.725701 -56.601570 105.015799 -50.132740 -127.642831 -27.370804 212.135295 174.507198 30.355631 -17.670946 -12.663225 -13.471691 114.617597 -0.436243 2.319779 7.689823 3.710225 -3.552320 -6.116543 -2.324067 -8.306540 3.464724 -0.222035 4.101033 0.027378 1.407983 -0.478580 0.447338 0.401525 1.092812 -0.642477 0.563401 -1.983650 -1.155145 4.957464 1.295032 -4.192206 0.845778 -7.282547 3.620336 3.551553 3.880265 3.552564 0.266544 -1.290851 -1.588033 3.557191 -2.168680 -0.944033 1.628109 0.777343 -4.160694 0.711279 0.364815 3.039835 3.639353 -0.526107 3.817712 1.978420 3.238034 2.066879 -2.226130 -0.206105 -3.055663 6.463054 -2.657946 3.026614 0.170204 1.007231 -0.086716 -3.796068 -1.306991 -2.870635 -0.399224 1.168908 -2.330634 0.044311 -4.241362 0.756616 -0.603770 -2.900929 2.164290 1.175372 4.049933 1.126157 0.739159 -1.204613 -5.484323 1.289313 -0.054007 3.894396 2.838318 -1.899689 0.643315 1.021993 -2.226177 -3.086317 1.702377 2.318834 1.317873 -0.681558 -0.021314 -1.645169 -0.464112 -1.514991 -0.127726 2.862716 -2.656524 2.035421 -3.561333 -0.352832 -3.102702 -3.698617 0.128318 -2.802654 2.390137 0.991762 0.084944 0.217019 0.970590 1.541050 -1.094530 -4.089584 0.846079 -0.530274 0.963843 6.092253 -1.352799 -1.022769 0.168300 -1.083614 -2.102425 4.184880 0.560607 1.508359 3.591168 5.803243 1.225296 -3.122322 -2.231525 1.080644 2.714813 4.601847 3.654745 -5.093991 -2.531030 -0.316618 -0.223091 -7.359864 1.462881 1.441367 3.696182 -0.001712 -3.762442 0.518054 -2.813490 4.997007 1.987543 2.024551 1.481374 -0.508232 -3.283851 4.607059 8.551883 -1.642125 3.278872 -2.895493 -1.440305 3.082067 -2.542506 2.816340 0.580807 -0.284249 1.129034 -2.628785 -1.133568 4.227642 2.311057 1.719264 3.185821 1.092676 -2.295866 -7.197218 -5.268032 0.194118 3.961333 -1.678597 6.911080 -3.737612 -3.746038 -1.676010 5.354418 -1.489589 -1.125072 1.152484 -3.328671 2.870836 -4.927338 -5.572294 6.997029 7.503291 0.898625 -0.507408 4.527854 3.441622 -3.812598 -3.215162 -1.764332 1.514653 0.564440 -3.767802 -1.670032 0.008453 -4.496223 -1.512243 1.270441 1.827143 2.552519 0.424467 -1.084729 1.219941 -5.361696 -3.842894 2.467405 -4.055154 -0.799826 1.572058 0.076897 -0.066526 2.308002 -2.489414 -1.302307 3.036159 -2.957353 0.855276 1.862191 3.377069 0.713194 5.479540 3.665840 1.564143 6.247514 2.886669 -3.050734 9.170857 -1.344614 1.435038 1.201186 1.888274 -1.208937 2.240024 1.587039 -2.391875 -2.832642 -5.650965 1.122465 -0.217909 3.149714 -2.618813 -4.081683 -4.560443 -2.282721 2.763588 3.232420 -0.462981 7.926249 -0.907362 1.093404 -8.917868 -0.312993 2.978718 -0.222938 3.326956 2.484117 -3.217561 -6.619804 -1.148883 -2.657932 -1.991382 -2.235185 -4.391211 -2.814548 -2.575818 3.213673 -1.924971 1.318254 5.519770 -0.324219 2.512919 -2.661500 -0.310476 -1.593629 -1.529089 3.218027 0.587402 -4.860203 4.469968 -0.612459 11.835777 -1.390157 3.219782 -3.265894 -0.062882 0.225717 -2.005071 -1.110662 6.259592 2.913108 1.725587 -0.062571 0.037080 -2.206448 3.196949 --0.618814 1.360915 10.206669 5.623508 -3.697694 -6.878103 -3.718732 -10.796945 5.630524 0.335855 6.039356 -0.248825 1.701585 -1.461554 0.025219 -0.337969 0.925442 -2.886756 1.608680 -2.460928 -0.720495 8.182010 3.429782 -6.185635 0.252458 -11.500894 5.857069 3.733191 5.329192 6.525663 0.446046 -1.628056 -0.700660 5.250808 -2.716611 -0.447951 2.159329 1.096465 -4.649696 0.928627 1.109037 5.180411 5.423555 -0.592841 6.184102 2.446065 3.930971 1.947814 -3.246992 -0.063673 -4.034990 7.861574 -5.073674 3.024140 0.110568 1.687761 0.309153 -6.194491 -2.897886 -5.395080 -1.020112 2.131985 -3.465170 0.759854 -6.049819 1.851519 -1.687237 -2.805226 2.767414 1.742284 5.692223 3.291496 2.004234 -1.520793 -6.974107 3.215762 -0.144028 4.550420 3.866808 -3.602890 -0.038562 2.096212 -2.565255 -4.126393 2.611531 3.011357 1.118237 -0.834206 2.154215 -2.189245 -1.372622 -1.818305 -0.782290 4.274213 -2.176402 2.836745 -3.384069 -0.778915 -2.947095 -3.813085 -0.247669 -4.625813 3.196980 3.148603 -0.530245 0.631352 0.965669 2.203635 -2.319456 -5.698618 1.443886 -1.004869 1.963746 8.253998 -2.663391 -1.116308 -0.918357 -0.657186 -1.826815 6.299489 -0.028464 2.999196 4.825387 8.138238 0.935570 -4.580358 -2.298903 1.861617 4.176582 5.599008 4.964192 -6.743825 -3.771461 -1.381182 1.345839 -9.356087 0.995016 1.377002 4.056271 -0.048506 -5.690972 1.614328 -3.194439 7.995183 4.082147 2.111314 1.993591 -0.388019 -5.078058 7.343300 11.942883 -1.982385 4.169035 -5.084653 -3.252991 5.450549 -4.706596 4.330747 0.075821 0.130591 1.816654 -4.501184 -0.334389 5.588695 2.537320 2.687418 3.973718 1.596020 -0.195645 -9.505568 -7.062305 0.722817 5.194080 -1.677294 10.221730 -4.916114 -4.660690 -2.197274 6.248796 0.299055 -0.861224 1.167756 -4.405969 3.637697 -9.945871 -8.604539 10.198141 9.919621 2.311647 0.095269 5.421257 5.425701 -3.174570 -3.346320 -2.071466 3.071389 0.980934 -4.150317 -1.538890 -0.107819 -5.258247 -3.744138 1.612833 2.324254 4.066662 -1.893389 -3.088664 0.966181 -7.425188 -4.854412 3.892649 -6.650898 -2.499508 1.612154 0.034686 0.230329 3.114724 -2.571942 -0.286347 3.837678 -3.307820 0.470199 3.065231 5.218611 0.691793 5.383290 6.562978 1.682583 7.248171 4.233146 -3.088689 12.346252 -2.073425 1.352305 2.109735 1.551416 -0.421886 2.511621 1.790419 -3.190813 -2.836379 -7.040970 3.572794 0.244012 4.693082 -5.179200 -5.965009 -5.957438 -3.085174 4.507381 4.117201 0.315213 11.491553 -1.093276 0.669352 -11.645304 -0.910074 5.000210 0.991181 5.572777 3.775089 -4.597244 -8.721506 -2.284078 -3.604048 0.088781 -3.929324 -6.496009 -4.142747 -3.110050 5.621399 -2.814728 2.678796 7.858623 -0.462259 3.199441 -2.655786 -0.715196 -3.126929 -2.478900 2.270766 1.382298 -6.062954 6.402441 -2.027300 14.502491 -3.280123 3.953663 -5.251850 1.813936 -0.660880 -1.929779 -0.803760 8.830885 3.632469 1.355454 0.136526 -0.904092 -2.914944 4.313957 --8.419803 5.423260 65.771527 18.322014 -39.440958 -75.496868 -26.411625 -113.343923 51.103706 20.801175 61.074462 6.062931 41.749256 -32.582830 0.185609 19.067806 25.832517 -24.319378 11.868529 -30.832885 -16.805406 76.388844 5.910659 -3.240749 7.538559 -75.240030 44.538285 17.304243 39.065801 51.296182 19.592388 -7.558774 -23.775941 28.636321 1.522916 34.877837 17.587162 22.521432 -34.456215 4.401062 1.126864 -12.391291 44.189165 0.142668 67.049619 6.887375 26.876463 18.028114 -24.913468 -26.592743 -23.577701 41.393730 -45.293147 20.344612 -8.898491 -13.715257 1.790475 -17.597160 -11.131004 -26.603018 -11.873085 -25.442116 -36.092691 10.766150 -41.394854 20.346422 -25.766660 -25.893027 -8.226315 -11.528957 40.562257 18.739652 7.737393 18.009745 -79.470443 1.228667 7.510801 17.240791 39.184391 -5.324427 -6.944918 -17.186210 -37.220173 -44.698358 51.451195 41.982168 12.904502 11.592345 -31.793695 1.123090 -15.376435 -6.871303 28.164210 29.876172 -39.936732 -4.149020 -8.046381 -12.771985 -24.692630 -66.571209 18.603718 -28.046370 23.061337 4.839400 -2.104876 -7.593086 -13.900158 8.219386 -37.701714 -41.910317 16.331357 -26.222098 10.323036 69.314798 -24.195758 -10.696404 -32.539468 -14.600971 3.141739 38.349128 20.983937 17.316501 48.420094 53.737582 26.162411 -48.199658 -37.720966 31.452901 41.055050 29.810860 19.253279 -47.104659 -30.303185 16.305467 -27.561050 -80.771578 -25.360716 20.572740 42.339672 -10.495325 -19.322838 12.762731 -25.221202 40.662777 46.029080 8.217070 10.435524 7.179197 -49.272780 42.148097 77.294712 -12.188900 38.396950 -26.608369 -10.893019 44.429408 -37.802482 18.052556 11.828390 -11.405091 -21.691248 -19.719386 -0.151870 40.530971 13.319256 28.369653 -7.678945 31.532193 -33.279601 -64.189737 -73.478707 -5.148629 78.056187 11.687167 63.132449 -52.936976 -22.467950 2.055998 55.541459 8.533640 -29.659488 22.578052 -42.077148 37.053472 -73.247411 -64.461080 96.009877 80.638981 46.287478 3.287882 30.575464 47.125647 -59.090652 -24.214435 -19.702921 23.020477 3.245745 -80.903014 -26.780720 7.920135 -59.022169 -35.332459 -2.078012 25.756269 15.574901 11.480104 31.914421 -1.137409 -16.829803 -32.363575 37.952144 -24.698773 -21.352702 0.491131 4.172411 7.382979 21.825047 -23.028111 15.465149 24.196730 -30.021754 16.495789 27.380419 24.786475 9.877577 72.978587 66.120366 -18.680155 37.080515 -3.881282 -24.300546 60.099932 -13.308995 23.211351 10.663517 19.232813 11.990083 12.381897 39.579316 -29.990220 -28.413093 -52.351546 -15.609395 22.553055 41.311431 -5.276295 -57.492217 -73.649368 -2.623665 10.872761 58.602857 -3.531441 84.231410 -23.079026 22.449905 -86.761183 6.693085 28.927986 -6.849395 36.533403 16.370660 -27.652464 -37.996517 -21.086751 -48.409097 -45.883919 -19.034376 -26.885563 -27.580567 -33.483980 42.576501 -33.385763 -3.165576 28.797534 1.041890 44.031755 -15.521300 4.298721 -42.444337 14.185704 32.491167 -0.548176 -42.448314 47.137836 8.515470 119.271124 -9.480564 27.362483 -15.624524 32.111863 -16.804748 -45.467983 -12.963075 66.525815 51.193830 10.186363 -3.211719 -3.176674 1.249444 35.348896 --1.088128 2.547379 15.349678 7.797441 -6.062018 -10.931493 -5.023912 -15.878804 7.721458 0.560294 8.848203 0.640402 2.846084 -2.906320 0.965516 0.403836 0.551007 -3.340235 1.970066 -3.412578 -0.985799 11.701064 5.629969 -8.616197 0.825892 -16.327995 8.498388 6.410437 8.569238 8.335009 0.134452 -2.482638 -1.838903 8.035452 -3.942499 -0.155451 1.409529 2.113231 -5.999726 1.902778 2.039086 7.428973 5.989412 -1.193627 9.239015 3.712691 7.454091 2.797608 -4.716676 -1.273751 -5.938405 12.737448 -7.833637 4.765588 0.267259 2.942628 -0.862954 -8.364262 -3.695060 -8.129077 -0.326943 3.007787 -5.792668 1.161128 -9.211504 2.320750 -2.402036 -3.996743 4.060883 2.966027 8.531898 3.667094 1.609155 -2.536635 -9.722088 3.607729 -0.671451 7.029271 6.000097 -4.876523 -1.025748 2.830647 -3.150929 -6.510718 3.713722 4.044645 1.717224 -2.209157 2.124488 -2.842505 -2.137224 -2.605792 -1.477999 6.618454 -6.083435 3.753076 -5.088099 -0.392002 -4.896224 -4.769951 -0.163843 -7.321327 4.611380 4.499140 -0.064029 -0.638118 0.407980 2.154035 -3.485204 -8.764232 0.422281 -1.210576 3.397732 11.657963 -4.058905 -0.055972 -0.478455 -1.003194 -2.686203 9.258650 1.551623 3.755020 9.012514 12.106937 1.679397 -6.395931 -3.908801 3.035385 6.417741 9.118872 6.721394 -10.963167 -5.435948 -1.785701 1.796927 -13.968608 2.689822 3.165966 5.574285 1.108566 -8.312090 1.917518 -4.210068 10.872093 5.765852 3.046604 2.737885 -0.549438 -6.619028 10.718892 18.933580 -3.060780 5.594253 -5.823578 -5.010968 9.782367 -8.139820 6.101354 2.240863 0.686332 1.941637 -6.593057 -1.879053 8.645401 3.666121 5.098118 7.058152 2.222038 -0.262320 -14.320704 -10.464697 0.776306 7.160516 -2.514289 15.034080 -7.152886 -5.748478 -2.723814 10.224462 -0.255027 -2.035588 1.025788 -6.153506 5.455287 -11.938539 -11.841285 14.328477 15.116046 2.193005 0.109612 9.440323 9.278094 -6.176082 -4.690445 -3.818998 4.506959 0.816236 -5.228754 -1.478785 0.422341 -9.113765 -4.769962 1.766293 3.085424 5.021792 -1.081875 -5.144454 2.902636 -11.132550 -6.971315 4.571895 -8.559813 -2.617455 1.190732 0.212981 0.105639 4.277313 -5.099436 -1.001854 5.471679 -5.584724 1.216760 4.800214 7.026723 2.482491 9.599933 7.938012 2.400900 10.694812 6.048870 -4.136591 17.958173 -1.335315 1.919340 3.180501 3.675366 -0.926354 4.378470 1.847768 -4.826414 -4.900308 -11.095312 4.619472 0.522456 6.354423 -6.511117 -7.772109 -8.912696 -5.344725 7.433833 6.067761 -0.029976 17.121564 -1.451381 1.451773 -17.938961 -1.020668 6.276994 -0.021378 8.075520 5.312565 -6.103171 -12.698986 -4.010915 -3.306405 -1.295879 -5.039155 -8.556000 -5.903588 -4.932760 7.880096 -4.715238 3.590896 10.543898 0.293246 4.560601 -3.593048 -0.323143 -4.255307 -2.830047 3.895954 2.543021 -9.946432 9.573476 -2.567836 21.665568 -5.486544 6.672858 -7.442314 1.808617 -0.693315 -3.348997 -0.981380 12.739208 5.912082 2.749372 0.011890 0.015370 -4.852969 6.548324 -1.189282 1.010925 5.901585 2.132950 -2.142180 -5.230950 -1.915615 -9.048654 4.945201 0.766526 3.136772 0.377683 2.344681 -2.282781 -0.598510 1.934632 1.257417 -1.536098 1.176846 -1.733183 -0.114391 7.720137 -0.051793 -1.642821 0.472754 -8.701571 2.944306 2.101176 5.269638 3.780098 0.774828 -1.029333 -0.699112 2.591503 -1.372967 0.599138 1.513540 0.757525 -4.809879 0.543778 -0.639206 2.143999 3.420762 -0.604474 4.320882 0.100343 2.718050 1.713929 -0.162568 -0.645903 -2.833740 5.346239 -1.780657 2.313771 -0.509682 -0.474423 -0.520473 -2.389896 -1.344895 -0.264305 -1.210730 0.900640 -2.068190 0.522608 -3.761283 1.063743 -1.072851 -1.778428 0.457124 0.412606 3.477668 2.175163 1.398428 -1.233987 -7.484879 1.336218 -0.045600 2.626273 2.539523 -0.526867 0.395999 0.182743 -2.532172 -3.179340 3.157788 5.023109 0.224887 0.071279 -1.098558 -1.903249 -1.869103 -1.357535 1.065824 2.342949 -3.106244 0.638421 -2.894979 -0.154864 -1.488409 -4.017317 0.355298 -2.235962 1.809366 -0.477960 1.751559 0.552647 2.399616 0.985604 -1.012524 -2.703214 1.375350 -0.609184 0.863474 7.119107 -0.533293 -1.102448 -1.871749 -0.612232 -2.726686 3.581871 0.312427 1.443673 3.944266 4.554919 1.897419 -2.925637 -2.342443 3.251997 2.551738 2.909016 2.432258 -4.705986 -1.883149 0.050327 0.304980 -6.529745 -0.846863 1.326558 2.978066 -1.904348 -1.095189 0.360896 -1.560275 4.709052 2.574371 -1.075812 1.582810 0.246329 -3.095008 4.513036 8.558459 -0.537442 1.936548 -4.655436 -0.948659 3.208944 -2.716510 2.607087 -0.501631 -0.021671 -0.576426 -2.201879 1.155464 3.193519 0.174644 1.353848 0.933797 1.702533 -2.059958 -5.569769 -5.591849 -0.389375 3.462101 -0.733639 6.915808 -3.167047 -3.068837 -1.460266 3.831345 0.568504 -0.421386 2.461805 -4.646300 2.643601 -5.093197 -5.284043 7.617422 7.514505 2.452640 -0.247961 3.861440 3.601644 -4.054560 -2.935005 -0.873032 1.455477 1.492694 -6.454425 -1.845517 0.484226 -4.131576 -3.003231 0.549163 1.345283 2.339990 1.946222 1.533251 -0.812018 -3.897325 -3.635573 4.038186 -2.972616 -0.800197 0.875137 0.649539 -0.874780 3.150686 -2.422691 0.523578 3.078034 -1.590239 1.366690 1.842008 1.873494 -0.400507 3.102112 5.323140 0.689929 6.016499 1.485977 -2.147056 6.711236 -0.937025 0.999409 0.866823 -0.182373 -0.558807 1.815178 0.876007 -2.267920 -1.818208 -4.551135 1.237856 0.313128 2.380182 -0.974621 -4.449281 -4.039952 -1.917484 1.281579 3.114205 0.978798 6.955832 -2.516074 1.171224 -8.614228 0.359536 2.478138 0.832027 3.366869 1.764533 -2.525763 -3.877437 -1.004963 -2.975537 -3.641538 -2.606986 -5.296409 -2.659891 -3.466220 4.336298 -2.762421 0.818078 5.349336 0.050936 3.357591 -3.880972 0.180156 -3.670311 0.036926 1.818843 0.082374 -3.251397 2.413404 -1.054095 9.524640 -1.895632 2.464075 -2.317558 2.021607 -1.165584 -4.300143 -0.672443 5.355723 1.993604 0.525160 -0.176945 -1.394216 -1.047724 2.954660 --6.602263 -2.505983 22.635858 16.750156 -16.626214 -27.215075 -10.372526 -35.908418 20.595664 5.304963 21.218875 5.643039 13.707181 -17.343990 -0.236980 1.117116 9.986994 -7.734894 -0.851044 -11.565971 -3.453531 30.112754 6.078517 -15.278841 2.272073 -27.287698 16.354419 10.998975 11.507670 19.015172 5.573526 -0.396015 -8.468030 11.468016 -5.693348 9.201738 3.865147 6.275702 -13.092141 -4.821828 7.417685 2.431241 19.143225 -2.643475 25.055455 -0.325348 13.526498 5.443845 -13.043190 -9.871093 -8.275516 15.840584 -14.528085 9.403109 -2.915139 0.429190 4.398532 -11.308536 -5.249397 -17.221087 -0.745244 -3.357085 -13.643064 0.827582 -14.204391 6.913845 -0.781302 -10.622181 2.319108 -7.368189 14.774317 4.974484 0.784109 -3.213585 -24.204068 0.220620 2.401699 7.471675 13.547575 2.947909 -3.492628 -8.251949 -12.043310 -12.089836 14.671699 9.796968 3.696458 7.948552 -8.035842 -3.076782 -1.747425 -3.794497 8.031849 7.996098 -14.427697 -2.713175 1.848882 -4.667639 -8.002956 -12.116265 7.527914 -8.655966 7.769982 6.986594 -4.198251 1.465594 -0.621351 1.669703 -15.307847 -13.995902 4.429981 -9.896000 5.708770 24.850622 -8.779566 -5.639218 -10.325311 -4.124391 -0.938726 16.182059 3.158043 7.411518 19.248151 21.125348 6.914896 -19.061004 -11.129416 11.019041 17.123575 12.423865 7.511560 -16.941308 -10.566044 4.127168 -7.965795 -28.729650 -8.669848 6.492777 17.952977 0.297725 -14.062079 9.480350 -7.716009 19.716721 13.921131 1.999649 3.312309 3.165793 -20.378063 17.543706 30.016101 -2.804218 12.659757 -10.445880 -8.982206 19.137489 -12.049135 6.978639 4.962438 -6.755000 -5.390853 -7.006792 3.876889 14.350755 2.628428 9.039872 -2.647963 11.516178 -8.779724 -27.033326 -29.732285 -1.489733 22.950405 9.601673 32.409747 -19.838326 -9.756423 -3.664386 18.667654 -1.358714 -9.629974 7.586919 -17.108495 13.956891 -29.935198 -25.316489 38.381188 30.313853 15.562826 4.575589 18.168988 12.462470 -12.444907 -5.659707 -5.899393 7.659380 10.539302 -18.853042 -0.922130 2.484877 -21.243520 -17.682033 1.614035 8.269194 3.786685 -3.271075 7.261687 -4.179229 -9.181641 -13.241511 11.527066 -11.893796 -4.071920 0.815654 1.204549 1.884601 8.862925 -6.781380 2.171068 2.817312 -8.021884 5.265199 6.421368 12.078128 6.016711 19.586285 27.335081 -7.935861 19.891731 1.410315 -9.336724 30.309312 -7.223800 7.565867 4.973409 9.771224 8.225975 3.686007 11.981014 -10.746465 -0.016196 -19.185047 0.305423 9.586863 15.395416 -18.682978 -17.722439 -27.804975 -4.365414 3.639171 17.068378 -4.183213 32.958234 -11.772853 3.759336 -39.316741 0.730158 14.163778 0.541101 11.605804 6.916075 -11.670015 -25.063119 -6.435316 -16.007526 -8.304529 -8.435435 -11.664662 -11.860109 -11.228611 18.147030 -14.340546 2.524410 19.894650 -3.189464 13.664734 -9.776563 2.699705 -10.957556 -1.999545 1.512583 3.312883 -15.530389 18.708368 0.159719 42.098507 -3.281737 13.043328 -8.892561 18.174727 -9.224249 -20.212593 -4.806309 23.584519 17.319098 0.956110 2.817406 0.083777 -3.087589 15.551199 --8.777802 6.410847 75.599116 29.493166 -45.615580 -79.276637 -30.415238 -119.660394 55.729267 16.681867 63.899226 10.021821 37.101434 -32.558913 2.151306 16.398893 22.177611 -25.524460 9.034060 -32.063300 -17.255127 80.648542 14.564787 -19.660764 8.446707 -86.054501 47.316589 25.166630 44.275480 51.884208 16.538179 -8.986084 -24.535698 36.117861 -5.763213 26.662190 16.312088 19.696265 -39.767691 3.290187 7.700769 0.307674 48.563686 -0.966164 71.806197 6.322944 34.471728 20.107268 -28.865977 -22.945713 -29.425503 57.147069 -47.541250 25.893880 -5.128173 -4.439371 0.443993 -29.908156 -15.632595 -33.862987 -11.088753 -17.210632 -37.667836 8.837953 -45.186297 20.879058 -21.270084 -27.364669 1.179700 -6.242137 48.393791 18.360630 7.344898 9.380737 -80.142861 4.149758 4.699160 25.744356 42.049192 -7.787763 -6.787529 -11.890647 -35.624757 -45.391928 47.498184 39.531267 11.017194 7.037314 -23.331502 -4.181233 -13.867172 -12.511817 21.509270 33.623505 -47.093191 1.373628 -11.337468 -12.523525 -29.287014 -59.405407 16.826327 -32.441387 27.013370 9.431340 -2.908855 -6.021997 -7.463853 8.935078 -37.721788 -47.850233 13.682483 -21.880664 13.719122 75.940640 -25.481318 -10.168071 -25.224655 -14.165053 -5.275297 45.353976 19.933255 20.854517 55.352170 65.679446 22.321234 -48.475882 -36.907213 30.554055 44.753046 39.727781 25.940662 -55.699616 -32.603040 13.903822 -18.700360 -87.669022 -17.621471 22.869406 47.063427 -4.460132 -28.277024 10.846933 -25.772481 51.423098 44.564545 10.462975 11.803163 4.194604 -52.560061 52.953269 94.027008 -13.025405 40.820228 -30.461225 -15.154905 51.377564 -45.987522 24.063710 14.344696 -9.840467 -15.857189 -25.022730 -3.821820 45.306138 15.677914 27.914839 1.941661 30.851323 -31.522360 -76.179703 -79.000414 -4.276741 74.504733 8.255122 76.398517 -54.908083 -29.188682 -4.714401 62.791615 5.047441 -28.255434 23.423628 -46.211015 39.959282 -75.475172 -69.627766 103.176999 92.609548 42.346773 3.819929 43.915717 51.756752 -58.522829 -28.634310 -21.201075 24.428620 10.384970 -72.674307 -22.638276 5.720311 -62.519343 -38.911783 1.684128 26.328284 20.001213 7.866627 21.988246 4.833648 -30.660546 -36.873882 38.656631 -33.614780 -20.950986 3.641824 3.871424 4.896479 24.989492 -25.042340 9.806090 25.476165 -32.400337 17.504463 29.422080 31.842737 11.973920 73.400390 67.974994 -12.297783 52.229003 5.978917 -27.167936 77.187846 -15.320293 23.321111 14.131412 19.727949 8.103348 15.566034 34.861329 -32.302752 -27.499779 -58.780261 -4.153010 17.474869 46.034082 -19.116167 -60.334100 -75.866057 -11.873733 20.582126 53.462411 -4.583798 95.235136 -23.751054 18.902145 -103.689122 3.902243 35.202659 -4.676023 40.747392 20.828575 -32.174203 -54.782324 -22.365815 -45.627744 -38.774257 -23.293615 -35.314331 -32.708523 -37.297608 50.709050 -36.525757 3.708362 43.245992 -1.587272 43.884623 -23.271942 2.495966 -40.648435 6.248084 30.495096 2.906886 -50.323139 54.963003 2.383589 133.703152 -15.473763 33.304811 -23.936174 30.793210 -16.679619 -43.441610 -11.259115 73.361080 51.669055 12.023331 -3.083523 -2.216319 -8.112943 38.444241 -1.268351 1.235723 4.611213 1.852090 -2.211456 -3.549771 -1.448503 -5.856637 2.358022 0.218639 2.384195 -0.402729 1.230963 -0.590960 -0.408018 1.124703 0.723682 -0.282332 1.129802 -1.269429 -1.415342 3.832890 0.406579 -1.613629 0.446334 -4.914267 2.622509 1.880817 3.169949 2.685276 0.545519 -0.665617 -0.405372 2.000091 -1.111247 -0.415073 0.492039 1.006887 -3.244806 1.257948 -0.120495 1.207465 2.289655 -0.843723 2.527062 1.242152 1.588008 1.217207 -1.151804 0.211924 -2.039126 3.521669 -1.658383 1.505986 -0.782482 -0.166750 -0.535012 -1.842697 -1.078606 -0.872913 -0.871236 0.569837 -1.413714 0.818001 -3.033633 0.691025 -0.852735 -2.226858 1.142319 1.427551 2.382529 1.468094 0.730692 -0.160591 -4.238294 1.204652 0.708526 2.196169 1.820505 -1.586150 1.271653 0.583814 -1.617962 -2.081032 1.936475 2.498994 0.793580 -0.581059 0.088094 -1.580765 -0.087182 -0.649423 0.281750 2.055751 -1.240760 1.391136 -3.316876 -0.223539 -1.565780 -3.512656 -0.048630 -1.705146 1.788762 0.255383 0.200236 0.785202 1.394969 1.494099 -0.401446 -2.448913 0.071823 -0.734760 0.932646 4.836976 -0.164102 -1.337913 -0.903058 -0.496944 -1.673295 2.280100 0.286676 1.103046 2.867151 3.451784 0.889532 -2.320566 -1.823451 0.946118 1.108831 2.816917 2.439002 -2.868042 -1.909888 -0.619306 0.042406 -4.713103 0.065444 -0.137735 1.538125 -1.786609 -0.950127 0.102478 -1.836670 3.377233 1.668030 0.617878 1.190407 -0.171922 -1.795830 3.369540 5.373078 -0.973693 1.577848 -2.388175 -1.409876 1.703758 -1.174631 1.677255 -0.159260 -0.517055 -0.033166 -1.899185 0.096980 2.509238 0.560058 1.100556 1.455173 1.022174 -1.631835 -3.837360 -2.776581 0.315256 2.440913 -0.923312 5.088657 -2.476436 -2.587257 -0.517994 2.717422 0.376854 -0.178781 0.966634 -2.691838 1.893524 -3.677499 -4.119907 4.607971 4.139606 1.508690 -0.221340 2.226144 2.060003 -2.599966 -2.391190 -0.898891 1.125814 0.730570 -4.010923 -1.898286 0.599253 -2.685382 -1.005210 0.736634 1.305845 1.742501 0.621561 0.005328 -0.225911 -3.224304 -2.345692 2.499968 -2.890274 -0.606631 0.854718 0.152967 0.124503 1.735605 -1.930449 -0.203229 1.236763 -1.301077 0.922351 1.156994 1.961673 -0.514463 2.551055 3.898930 0.651030 3.456884 1.503687 -1.765446 4.896599 -0.854552 0.880168 0.832157 0.346508 -1.021378 0.964910 1.622355 -1.692822 -1.696467 -3.493737 0.352129 0.469671 1.678737 -0.822016 -2.283404 -2.765097 -1.454840 1.408636 2.315797 0.694187 4.873016 -0.848313 0.777903 -5.113379 -0.093414 1.413776 0.237992 2.944045 1.505766 -2.153760 -3.085154 -0.973918 -2.138651 -1.692882 -1.758125 -3.174129 -1.932830 -1.344797 1.826545 -0.656514 0.659473 3.627027 -0.383524 1.582379 -2.133496 -0.252618 -1.387684 -0.339554 2.029766 0.213838 -2.691418 2.142586 -0.383769 7.464414 -0.585937 1.693245 -2.010159 -0.112700 0.341690 -1.381035 -0.716424 4.102676 1.503265 1.299703 0.038870 -0.361497 -0.878220 2.113431 --3.254549 4.025989 22.815475 13.061002 -14.136253 -19.908401 -9.677731 -26.029391 10.827098 0.206251 16.123927 0.624752 4.008873 -3.659938 1.810315 -1.377463 3.429213 -5.610787 0.496630 -7.739015 -6.890973 15.728566 7.468907 -14.024529 2.960458 -22.592232 13.576296 10.653578 8.036984 12.174248 0.967911 -3.039717 -6.510935 12.002634 -5.053696 1.156412 4.335997 2.938183 -8.363376 2.020506 6.594760 7.538153 13.625976 -1.972559 14.878300 6.831364 9.686819 5.859930 -12.184250 -3.404835 -7.483029 17.032859 -11.905409 8.307592 1.312129 5.071706 1.766076 -14.726170 -5.529955 -12.179321 -1.633933 -0.037547 -9.018795 0.966450 -12.547119 3.811465 -1.751206 -8.375268 8.162306 0.511452 13.287124 2.937012 -0.284979 -1.263837 -12.554840 3.319962 1.329046 10.844292 9.017311 -5.947808 -0.450981 2.553707 -8.186903 -9.616168 5.091867 3.919206 5.170008 -2.068167 0.128652 -3.131992 0.622596 -4.351294 0.701787 9.495919 -9.084446 2.837893 -6.475927 -3.802153 -12.168041 -10.166777 2.049644 -8.931224 8.574426 7.476043 -6.527876 -1.070322 0.028370 3.213203 -7.041590 -14.443196 0.828733 -4.171318 6.583008 18.002221 -6.541188 -2.992574 -1.953849 -4.932946 -2.883455 13.352017 2.990167 4.485744 14.845430 20.013588 3.194698 -11.366414 -8.646171 1.282011 10.774741 13.385768 10.998501 -15.982681 -8.973158 -0.227422 -2.171216 -22.932672 1.673988 2.837849 12.825250 2.877712 -13.729882 4.740652 -8.588851 16.078801 7.496561 7.133180 2.992908 -1.440550 -13.220426 15.954860 25.798446 -4.708997 11.275983 -8.372878 -7.919333 13.939915 -9.938238 7.461893 5.912708 -2.033590 0.798629 -8.348732 -2.866518 12.885999 6.079555 6.639319 8.193885 4.976498 -4.415699 -22.328557 -19.163281 2.479816 14.636698 -0.863174 22.968673 -14.688510 -9.509779 -4.535490 18.829557 -3.173452 -6.305986 2.615544 -9.179986 9.274869 -17.420266 -18.536608 23.941135 24.405862 4.394304 1.671086 15.334204 10.858067 -10.861168 -6.916427 -7.717566 7.026016 3.898408 -8.247042 -2.258133 0.297494 -13.864031 -7.035729 2.179071 6.979846 7.556756 -4.501644 -5.078240 3.689004 -15.094938 -11.434119 6.895858 -12.915954 -3.397129 4.220428 -0.985549 0.862303 6.547109 -5.585211 -3.369992 4.148936 -9.324523 3.490032 7.338761 11.986485 4.124941 18.276469 13.664971 0.278374 17.079504 7.323939 -7.240270 27.295104 -5.303010 5.552836 4.803447 8.710980 -0.162936 5.718915 7.687427 -7.370809 -6.412174 -16.387610 4.947762 0.949253 11.057742 -13.979924 -12.794168 -19.777805 -6.970540 9.488487 11.217633 -2.440798 26.217038 -1.752502 2.395809 -29.142564 -1.942040 10.453690 -0.328422 10.187374 6.538879 -10.023679 -22.881852 -4.757655 -9.774274 -2.919223 -6.376222 -9.712173 -10.051287 -7.171263 11.723413 -5.817460 4.245311 16.572648 -1.229765 6.365241 -4.487244 -0.991946 -4.866583 -6.581082 8.139903 2.324634 -14.728581 17.520285 -0.679696 36.152909 -3.764123 10.712038 -9.336971 3.238061 -0.084387 -7.171199 -2.957077 19.149693 11.263632 4.104685 0.047634 1.366849 -6.456076 10.825228 --2.092853 2.877796 16.566152 8.700799 -7.582950 -12.561879 -5.709950 -17.064081 7.608931 0.559040 10.352752 0.670583 3.153330 -2.743586 1.459618 -0.111854 1.324784 -4.019623 1.994949 -4.285044 -2.174814 11.713509 6.284064 -9.439799 1.085282 -16.834344 10.064722 7.171869 7.759374 9.054476 0.713187 -2.348779 -2.686458 8.893337 -3.797233 0.122959 1.649892 2.498937 -5.515938 2.160166 3.101794 7.362060 7.124924 -0.902534 9.994881 4.909895 8.139635 3.334114 -6.297810 -1.863476 -6.441840 13.177094 -9.124940 5.015642 0.403565 3.371002 0.147867 -9.588066 -3.894293 -9.416267 -0.449724 2.160490 -6.677137 1.305424 -9.928646 2.642664 -2.802597 -4.558358 4.579927 3.113372 9.295065 3.364336 1.141625 -1.950829 -9.624149 3.541351 -0.579028 7.633214 6.776272 -5.559152 -1.624953 2.935878 -4.032056 -7.280091 3.894117 3.229615 2.504962 -2.389290 2.047969 -2.542123 -2.002182 -2.735348 -1.476091 7.342878 -6.273482 3.701625 -4.601907 -1.052356 -6.445190 -5.409969 0.274871 -7.870074 5.177193 5.755053 -1.500785 -1.451296 -1.281572 1.847195 -4.651565 -9.836094 0.360528 -2.310271 3.933025 11.948553 -5.005231 -0.125357 -0.829598 -1.625974 -1.490250 10.207636 2.104246 3.816274 10.082644 13.546875 1.423033 -7.156398 -4.584817 2.199312 7.192149 9.789225 7.510940 -11.890091 -6.334814 -1.600233 0.933256 -14.995473 2.959209 3.404709 6.455029 1.980507 -9.788846 2.691243 -5.100885 11.413890 6.486079 4.624857 2.672064 -0.706238 -7.498066 11.576520 19.758423 -3.616714 6.783824 -5.650357 -5.508298 11.037569 -8.735188 6.136739 3.464527 0.244077 1.408734 -6.810746 -2.660293 9.489328 4.633945 5.634375 8.175474 2.570671 -0.152631 -15.458684 -11.607659 1.518560 8.840804 -2.118342 16.209369 -8.635664 -5.643370 -2.555623 11.437871 -0.625891 -3.241457 0.732358 -5.772188 5.918118 -13.172334 -12.758916 15.671956 15.631500 2.150737 0.264479 9.916648 9.891410 -6.847342 -4.901762 -4.754413 5.366637 0.395718 -4.769009 -1.091613 0.630055 -10.073560 -4.948231 1.679699 3.912565 5.853691 -2.491064 -5.940499 3.180463 -11.783981 -7.483372 4.350862 -9.086214 -3.412952 1.480671 -0.238615 0.694016 4.074906 -4.634053 -1.338093 5.084416 -6.551199 0.882016 5.367842 8.214616 3.240650 11.724910 8.449827 2.013873 10.665844 6.347835 -4.445466 19.319198 -1.512677 2.534338 3.541971 5.178090 -0.335986 4.455719 3.191345 -5.154796 -5.754561 -12.136682 4.869060 0.826030 7.335081 -8.010189 -7.971851 -11.102609 -5.486750 8.241032 7.540936 -0.919207 18.717861 -0.867846 1.447240 -18.934695 -1.144093 6.859253 -0.403425 8.136799 5.685977 -6.810143 -13.349685 -4.512309 -4.244501 -0.880227 -4.803051 -7.823568 -6.738728 -4.763324 7.848800 -4.921328 3.615812 11.091175 -0.091761 4.397842 -2.562079 -0.523791 -4.017579 -3.435191 4.895899 2.728382 -10.941636 11.670983 -2.355221 23.798909 -5.272843 7.290678 -7.708821 1.777781 -0.371898 -3.243142 -1.256332 13.893905 6.937474 2.967442 0.430560 0.706404 -4.738835 7.471480 --0.891660 3.584811 17.952729 11.570870 -9.498983 -13.401793 -5.678650 -17.820776 8.644646 -0.573872 9.574159 0.451918 2.674273 -4.538413 0.508305 -0.697154 1.982377 -2.255813 1.539883 -4.839937 -2.506106 13.239608 6.426229 -12.387151 1.522465 -18.100345 11.357307 8.427233 10.073084 9.766658 0.657509 -2.547412 -3.068982 9.442394 -4.698523 -1.667906 0.715026 1.912391 -8.741170 2.296356 3.187095 8.324631 8.453703 -2.220463 9.462766 4.562835 9.428893 4.029188 -7.427823 -1.018970 -7.079658 14.478158 -8.112448 6.295768 1.039813 2.752879 0.372776 -9.952993 -3.794443 -8.711023 -0.664850 2.327950 -6.770248 1.315644 -12.011187 2.226394 -3.381485 -6.022490 6.087944 3.268736 9.039180 4.007254 1.300983 -4.445134 -10.761778 4.483535 0.423966 9.329369 7.168889 -4.300231 1.025231 3.031720 -4.616217 -7.017714 3.053328 2.908867 2.812093 -2.431472 2.516868 -4.906034 -0.798591 -3.037235 -1.311429 6.500612 -6.682243 4.428108 -8.126873 -1.169899 -6.825948 -6.838141 -0.118114 -7.595136 5.750715 4.925331 -2.781454 0.383475 1.575640 2.260574 -2.687967 -10.424938 -0.364500 -2.024323 5.174502 15.604489 -3.968384 -1.838649 -1.797413 -1.146658 -3.982305 10.653040 1.015785 4.458465 10.683013 14.344144 1.892290 -7.796781 -4.413354 2.419989 6.345342 10.636922 9.052438 -11.726206 -7.083276 -2.658274 2.597093 -16.503783 3.107058 2.640698 7.211275 1.938162 -9.444744 2.336191 -5.715268 13.187074 5.180319 3.300440 3.446684 -1.187830 -7.832491 12.877750 21.207692 -3.451351 5.901974 -7.529027 -7.311495 11.560285 -6.822203 6.388848 1.868045 -0.273137 2.483709 -7.202671 -1.322103 10.005400 3.331251 3.866776 9.558073 2.450015 -0.101428 -17.493095 -12.208728 3.074000 7.680961 -2.111692 18.076875 -8.833990 -5.926631 -3.827105 11.085447 -0.512400 -2.056849 1.046421 -7.749824 6.276160 -14.040919 -14.561799 16.899022 16.923811 1.003116 0.261716 10.344996 9.578730 -6.980650 -6.062929 -5.380413 4.960626 1.695340 -5.644677 -1.547957 1.262666 -10.655563 -4.826669 3.695729 4.187025 8.042740 -3.754991 -6.749855 1.093034 -13.906133 -10.000464 6.076323 -9.889879 -1.712321 2.934690 -0.321520 0.968790 6.022050 -4.815427 -2.330012 3.926444 -5.648220 0.682509 3.953089 9.977152 1.885571 10.897198 9.126792 3.089750 13.029149 7.796226 -6.173808 23.656057 -2.396690 2.903377 3.663878 4.906580 -0.873078 5.176417 3.102384 -5.757807 -4.570730 -13.315494 4.928408 0.334537 6.855744 -11.626154 -8.066333 -12.069266 -6.395806 7.895785 6.391087 -0.157188 20.039665 -2.510475 -0.105260 -20.856436 -1.761198 7.699408 0.581412 11.020331 6.346593 -8.295440 -14.362063 -4.563264 -5.105457 1.208959 -6.301068 -9.218791 -7.718471 -2.971403 9.156803 -4.319018 4.705385 13.852668 -0.835021 4.862199 -4.271506 -0.209343 -3.818736 -5.243183 4.403564 3.326311 -11.440142 11.955959 -2.825939 25.003516 -4.205788 7.321277 -9.030347 0.910399 0.393519 -5.089129 -2.249094 14.679837 6.453783 3.168394 0.790584 0.449491 -5.653092 8.728912 --6.821328 6.298785 55.226199 19.440211 -34.300739 -62.347716 -22.692993 -92.600400 41.006383 14.482290 49.806462 4.803822 31.514087 -25.617779 0.570059 12.394398 19.638027 -18.719351 8.339263 -25.215103 -16.221561 60.614133 5.912696 -8.525611 6.585961 -61.894421 37.899886 18.044675 31.003870 39.541287 14.379607 -5.875506 -19.995398 25.783781 -2.324930 23.133295 14.020494 17.451948 -28.234079 2.896307 4.058264 -4.821076 37.475949 -0.027743 53.225000 7.630474 22.691655 15.928569 -22.150936 -20.026669 -18.862125 36.465935 -35.715810 18.324014 -5.153156 -8.636982 3.515021 -18.827750 -9.007881 -22.435348 -8.369370 -18.320109 -28.853793 7.754472 -34.198184 15.559573 -17.998473 -22.550865 -1.830349 -7.523726 34.348696 13.456968 4.446274 11.035452 -61.556741 2.064775 6.488780 16.461995 32.468865 -4.780877 -4.206522 -11.452690 -30.450896 -36.197953 39.042219 31.868227 11.624223 8.611920 -22.915371 -2.065455 -9.450702 -8.003410 21.470150 25.246649 -31.570714 -2.279508 -7.947075 -10.759492 -23.432888 -51.613884 14.810259 -23.123458 20.454087 6.188691 -4.301922 -5.897459 -8.522138 6.431077 -29.369202 -35.778104 11.731170 -21.598603 11.832747 57.638439 -19.081191 -9.619630 -23.958429 -13.100949 0.059351 33.031214 17.027961 13.274123 41.315238 46.826641 18.300737 -38.631689 -30.908336 23.062442 32.607681 27.090059 17.890762 -41.682289 -24.883103 12.265282 -20.480836 -66.413970 -17.563472 15.201939 35.441117 -7.209326 -18.885093 12.199737 -21.200547 34.251518 35.139788 8.287893 8.325245 4.264624 -40.027296 36.919609 64.645424 -9.872283 31.161716 -21.964492 -11.664021 36.384373 -30.591069 15.437388 11.590413 -10.036185 -15.820060 -16.471263 -0.214260 33.838752 10.811876 21.763633 -1.569888 24.746849 -27.073747 -54.260430 -60.795807 -0.791862 61.525300 8.359345 55.329822 -43.778491 -20.224507 -0.055863 48.072694 4.163686 -23.142569 18.177835 -33.731958 30.626867 -56.892751 -52.929470 77.344729 66.125804 34.575484 1.760085 28.395790 37.120443 -46.134157 -21.144897 -17.172606 18.577185 5.267877 -60.443331 -19.491978 5.699360 -47.389644 -27.879883 -0.143211 21.270422 14.931308 5.937027 20.973661 -1.634325 -18.146808 -28.329268 29.926621 -21.608318 -14.742995 2.362663 2.410752 4.679605 18.974217 -18.145349 8.522650 17.635304 -24.457101 13.442004 21.987321 22.443932 8.350583 60.413615 51.664593 -13.664570 34.503884 0.590719 -19.777357 54.684327 -11.640878 19.407893 10.064968 17.947367 8.515581 11.144943 31.609115 -24.569540 -22.289892 -44.659449 -9.463897 16.530602 33.445221 -11.086224 -44.516857 -62.093845 -5.726690 10.714882 45.641233 -3.742524 70.388305 -17.535681 15.907320 -72.906362 4.119045 24.361903 -5.875639 30.154296 14.164401 -24.204931 -36.086107 -17.097015 -39.059209 -35.163295 -16.158657 -23.178143 -24.056077 -26.318408 34.662751 -26.284620 -0.047876 28.590503 -0.012079 32.126633 -15.386279 2.994223 -31.963544 6.995378 26.392864 -0.899018 -36.859828 40.466112 5.340940 99.741339 -8.045215 24.197324 -15.081338 24.049394 -12.226689 -35.850946 -10.473271 54.741864 40.116302 8.652001 -2.277872 -0.226940 -1.944871 30.256236 --2.213250 2.542357 17.705250 8.949833 -10.089176 -17.038425 -7.441444 -23.619914 10.423356 0.972052 13.900227 0.863646 5.029875 -4.281147 1.823428 1.561270 3.919956 -5.244342 1.031740 -6.461959 -3.841597 15.236779 4.980920 -7.957779 1.808949 -18.421821 8.352815 7.740337 8.397175 9.497973 2.139092 -2.962352 -4.916201 8.404657 -3.407785 3.125129 3.945366 2.190267 -8.884177 0.629913 2.551235 4.022394 11.015885 -1.578891 13.466288 2.317848 9.510636 4.650564 -7.994171 -3.406895 -7.736670 16.393221 -9.637573 5.864109 1.400300 1.727516 0.977816 -9.890549 -4.579428 -8.043098 -2.706557 -0.704616 -7.876424 1.027317 -9.473934 4.064937 -2.954722 -5.462601 4.593991 0.228847 11.158912 3.044030 1.045682 0.688666 -13.420069 2.339539 0.143905 7.969465 7.596786 -3.496828 0.313430 0.768348 -6.300085 -8.094341 7.206006 5.086820 3.242699 -0.908106 -2.898036 -0.937119 -1.830148 -3.826146 1.719995 6.332021 -9.289821 2.109285 -3.740232 -3.220252 -8.962727 -9.664206 2.091233 -7.135673 5.973153 3.885452 -1.784350 -1.148961 -1.874420 1.832469 -7.247601 -11.839750 1.994653 -2.623500 3.132099 15.684727 -7.065055 -1.458532 -2.521346 -2.739188 -3.325325 10.418740 3.647382 5.052221 10.489592 15.661268 3.417301 -9.317748 -7.110719 3.013930 10.411876 10.219321 7.828272 -11.918354 -7.372989 1.097901 -2.171708 -19.214136 -0.712764 5.230989 11.008097 3.254097 -9.454974 1.914427 -5.726777 13.375870 6.980561 4.040195 2.505173 -0.505983 -10.968920 12.585775 20.533805 -3.938678 10.216366 -6.365279 -4.000498 10.528040 -9.838270 5.779578 4.398217 -1.146735 -0.398683 -6.216233 -2.955388 9.911705 5.722277 5.544278 3.656564 5.222923 -4.767071 -18.456589 -16.753853 0.927546 12.727157 -1.265139 16.315962 -11.139192 -8.567699 -2.495166 14.501996 -2.485542 -6.316755 3.550242 -9.551917 7.909568 -14.478862 -14.786809 21.332306 20.847162 5.261095 1.290283 11.756619 10.925370 -12.142307 -5.571385 -5.483894 6.038709 2.536280 -12.035535 -3.101601 0.019563 -12.067483 -6.905176 0.875634 5.715606 4.016898 -0.235074 0.604485 2.875734 -10.646903 -7.444855 6.990395 -9.247039 -3.771250 2.259744 -0.334992 1.116741 5.788869 -5.585928 -0.428388 5.586523 -8.683466 2.588743 5.947842 9.030914 3.775360 16.059463 12.562791 0.507194 15.680197 4.051642 -6.912715 19.210206 -4.008499 4.514321 2.391550 5.389349 0.068539 4.341132 6.040979 -6.300418 -7.275490 -12.785946 2.137726 1.394243 10.051467 -6.713200 -12.805237 -15.701505 -4.816079 7.447971 9.477457 -1.965140 20.751482 -3.888353 2.650574 -24.120977 -0.545620 8.163177 -0.341123 8.311687 4.767606 -7.376442 -15.876238 -4.021128 -8.599993 -5.460265 -4.886589 -9.173156 -7.338593 -8.983146 12.287791 -7.172168 2.158527 11.066192 -0.203000 7.619782 -3.075957 -0.827241 -5.810052 -2.094277 7.090222 1.657341 -11.845246 13.854315 -0.482727 30.402293 -3.580599 7.740320 -7.281235 3.828568 -1.388035 -6.861693 -2.025293 15.817594 11.302458 2.316461 -1.102806 0.174525 -4.480789 8.010457 -0.094227 6.751001 27.667790 15.663927 -15.575708 -21.835772 -9.219221 -31.272467 14.312164 0.963082 15.013691 1.604366 3.749671 -4.991027 0.391922 1.612259 2.567949 -4.182601 1.110130 -8.643730 -7.714119 18.383941 7.617880 -15.359236 3.905253 -29.267249 18.187469 10.564864 14.612020 13.695891 2.958894 -4.223794 -5.687854 15.439780 -3.797449 1.056103 2.480400 2.968966 -12.179110 4.362124 5.521697 10.454903 13.599771 1.421640 16.911860 7.737775 13.017270 6.482787 -10.865157 -0.769292 -11.999587 22.555525 -13.888010 10.416184 -0.111002 5.824511 -0.050660 -16.464961 -4.623341 -10.342115 -3.201624 1.368229 -10.947708 1.398721 -17.682232 3.302540 -6.100331 -9.015386 6.441357 5.780074 16.430985 5.769386 0.833630 -3.863125 -18.263090 4.650333 -0.550073 13.422311 13.575030 -8.234045 -0.608818 3.510582 -8.896597 -12.650312 8.004914 5.122505 3.924399 -3.417221 3.680590 -8.018961 -3.665630 -6.009994 0.158367 12.068165 -12.633675 5.619745 -11.606988 -2.430799 -11.168844 -12.931318 0.699934 -11.669934 9.439379 5.502982 -3.874071 0.050128 2.942892 3.211068 -4.534664 -14.181540 0.992872 -2.783929 7.762957 22.841439 -4.819216 -4.556937 -0.907486 -3.940827 -5.551566 15.995769 4.585146 4.742330 19.288083 22.533422 5.388981 -10.916055 -7.747691 3.461929 8.548593 16.935395 13.627299 -18.898746 -10.916600 -1.496512 3.648545 -26.378662 5.910049 4.197988 12.255850 2.325075 -13.436401 1.517444 -8.571063 17.083010 8.270004 6.116909 5.913574 -2.168896 -12.535898 18.948671 33.937117 -4.866058 9.730516 -12.351489 -7.065568 16.379439 -13.187748 8.967517 3.229421 -1.300117 3.111162 -10.420645 -4.097487 15.885921 4.589839 4.052310 14.013416 5.873480 -5.046843 -26.097741 -18.891916 2.814259 15.074269 -3.762067 26.235447 -15.161081 -7.924688 -6.376234 18.952560 -0.296498 -3.082293 3.558568 -11.504453 10.124120 -19.222436 -21.093523 27.297456 27.448743 3.374496 -2.150418 15.164285 15.861725 -13.585214 -11.345076 -8.853059 5.754892 3.616111 -10.410778 -4.865781 1.072692 -16.879907 -8.072860 4.743158 6.709773 12.789453 -4.240046 -7.652805 3.785270 -18.940510 -16.072067 9.814099 -15.002462 -4.057927 4.568248 0.245835 0.409346 8.724601 -6.508216 -3.507939 7.535484 -8.712323 2.676274 8.708572 15.228624 2.926721 19.420925 14.723178 3.518725 19.555158 11.481088 -8.980458 33.468993 -3.392878 5.576610 6.588216 6.811994 -2.129993 7.959342 5.917608 -9.510663 -9.011682 -19.568253 6.950205 -0.683969 10.977670 -12.725479 -11.909593 -20.057671 -9.404177 10.846564 10.339416 -0.734945 30.301617 -2.341029 1.814469 -31.037685 -2.371843 13.691936 -0.310673 15.146613 9.769927 -12.575539 -19.764452 -7.366709 -8.813429 -1.555223 -8.147147 -11.035217 -11.962956 -6.473007 12.879310 -6.721630 6.784641 20.146126 -0.958440 7.645069 -9.783554 0.496697 -6.918257 -6.067921 10.855880 4.060164 -18.521632 18.465817 -3.434134 40.276631 -6.195589 11.322700 -12.467645 -0.419415 -0.160436 -7.250107 -4.112146 22.727831 10.086875 6.293569 0.862168 0.510540 -7.325048 13.997956 --3.537673 3.572569 20.839517 12.873960 -10.063786 -15.581679 -7.225873 -19.354980 9.227787 -0.076513 12.528349 1.280327 3.113402 -3.748191 2.181426 -1.281099 1.013031 -4.235640 1.626850 -5.100543 -2.797605 14.351473 10.211247 -14.373878 1.364391 -19.967004 12.327841 9.577809 9.692460 11.165750 -0.196922 -3.040509 -3.087763 11.684846 -5.660214 -0.620048 0.504592 2.864603 -6.554029 2.383102 4.937967 10.064349 8.791460 -1.458756 12.027800 6.325754 11.231899 3.746549 -9.271346 -2.217478 -8.029077 17.089155 -11.877296 6.784996 1.005925 5.549526 0.456360 -12.436683 -4.946606 -13.874222 0.028187 3.473033 -8.491511 1.306970 -12.886803 3.024358 -3.175247 -5.962127 6.678825 4.139731 11.750718 4.192342 1.012234 -3.810719 -10.258804 4.686057 -0.782868 10.184524 8.417527 -6.519652 -2.298315 4.084617 -4.222236 -8.601685 3.614221 1.439606 3.209615 -3.140535 3.751401 -3.760280 -1.460531 -3.438538 -3.011729 8.815330 -8.120233 5.543635 -5.394243 -1.096655 -8.177740 -5.184002 -0.331661 -10.008362 6.296902 8.172095 -2.422548 -1.843961 -1.981342 2.137912 -5.506760 -12.942598 -0.322293 -2.151277 4.729958 14.196002 -6.602271 0.485529 0.466593 -1.413311 -2.287972 13.221893 2.550173 5.018740 12.523184 17.187271 1.248813 -8.564410 -4.547302 1.638715 9.268433 12.780726 9.983096 -14.233471 -8.262212 -2.420562 2.357816 -18.567690 4.712451 5.235047 8.100064 4.463030 -13.837237 3.649897 -6.046277 14.719208 7.362426 6.174549 3.431906 -1.531084 -9.202647 14.787509 25.149929 -4.791391 8.308257 -6.065763 -8.460589 15.533224 -11.481924 7.890639 4.522784 0.330761 2.835555 -8.811662 -3.611045 12.108903 5.952135 6.639280 11.428107 2.549785 0.996240 -20.355606 -14.283719 2.300074 9.777736 -2.377539 20.815432 -10.314871 -6.650470 -3.606513 13.908987 -1.535919 -3.846778 -0.215377 -6.822384 7.220665 -17.204037 -16.138427 19.566128 19.610488 1.481819 1.019666 13.157566 12.463350 -6.850201 -5.941687 -6.462590 6.596550 0.832894 -3.110394 -0.528634 0.649115 -12.720718 -5.749570 2.578881 4.524466 7.213246 -4.764793 -9.830809 4.045156 -15.921348 -9.382866 4.138592 -12.054538 -3.587794 1.991162 -0.599338 1.071081 4.949044 -5.377717 -2.620642 5.137720 -8.345075 0.545435 5.896887 11.260098 4.873998 14.464081 10.238342 2.799328 13.549991 9.006597 -5.785151 26.165260 -2.407819 2.926545 4.341486 7.775560 -0.225162 5.853831 3.498745 -6.290217 -6.265231 -15.124296 7.135691 1.141387 8.719972 -13.029967 -9.540860 -13.682759 -7.436568 11.178757 8.274744 -1.688083 23.690981 -1.175268 0.936418 -24.732069 -1.876163 8.893980 -0.388084 10.845093 7.531415 -8.710486 -18.431610 -6.044732 -4.044926 1.824787 -6.243302 -9.644610 -7.930862 -4.820242 9.607209 -6.271190 5.430760 14.352158 -0.458796 5.155522 -2.492558 -0.619312 -4.171301 -5.561027 5.381473 4.231958 -13.807709 15.232973 -3.205692 29.154887 -6.749085 9.539000 -10.542483 1.810039 -0.029092 -3.541412 -1.655412 17.280293 8.772035 3.490788 1.158469 1.712588 -6.848910 9.300505 --4.837716 3.819502 28.155105 17.170920 -12.167271 -18.254678 -10.074345 -25.425249 12.575910 0.192992 16.867215 1.777242 2.713693 -2.705629 2.955450 -2.544061 0.231529 -6.573629 2.277513 -6.037443 -1.788530 17.418942 14.185284 -20.342156 0.891880 -26.402118 14.804532 11.750822 12.278922 14.570295 -0.250749 -4.650151 -3.693328 15.444451 -7.945807 -1.489881 2.407807 3.375051 -8.785099 2.062690 6.196191 14.949616 11.474816 -1.491586 17.050223 6.828864 13.793451 4.181875 -11.827892 -1.093450 -10.723543 23.840698 -16.074292 8.666864 2.273706 8.889076 -0.964971 -17.881259 -7.768704 -19.876716 -0.003461 6.512985 -10.587830 1.278761 -15.542179 4.344587 -3.199131 -6.800927 9.199551 5.701603 16.277623 5.552888 2.821140 -4.667101 -13.253798 6.601042 -2.434000 13.132544 10.669042 -9.768520 -3.040096 6.092558 -3.864742 -10.409997 3.855903 2.184367 2.539148 -4.719545 7.161737 -3.806600 -2.276834 -5.071586 -5.399683 12.160112 -10.176486 8.930634 -6.843321 -1.401266 -9.103109 -4.674378 -0.809032 -13.911313 8.622328 11.096087 -2.814225 -1.332157 -1.803308 4.168273 -7.505713 -16.737655 0.720050 -1.085908 5.531536 17.467689 -9.311294 0.572510 2.502223 -1.543710 -3.280362 17.045521 2.580370 7.740610 14.225245 23.002936 1.485397 -11.296973 -5.256821 2.463025 12.343586 17.707156 12.886040 -18.170617 -10.098098 -3.618286 4.560922 -24.177291 7.226806 6.443328 10.312222 6.340370 -18.753532 2.226934 -7.856948 20.678208 9.709839 9.816885 4.489938 -1.700542 -12.346502 18.959450 32.896541 -6.123951 11.666022 -7.248336 -9.497639 17.789027 -16.368402 12.016238 4.783429 1.591157 6.288451 -12.770038 -6.504758 15.841443 9.019031 9.044142 13.780040 3.157202 1.260056 -27.013354 -17.985691 1.545551 12.663684 -4.174948 25.994646 -12.634712 -11.145825 -5.181800 18.342642 -1.634815 -4.425460 0.123838 -8.554584 9.643549 -23.134767 -20.849485 24.716339 26.519168 2.486319 0.492188 17.716442 15.703309 -8.424682 -8.052764 -7.430850 8.480359 1.127397 -2.423344 -0.494500 -0.532734 -15.291354 -8.204195 4.014770 5.523197 8.647754 -6.387861 -13.162028 8.960258 -20.688372 -10.955146 5.702498 -17.210050 -6.497113 2.350162 -0.236849 1.464177 5.644258 -7.681964 -3.387493 8.959065 -11.004852 0.821616 8.711558 14.498628 5.891078 17.334426 13.167873 5.118739 18.752668 12.558480 -7.761807 34.315404 -3.949978 3.223757 6.091044 7.787221 -1.512229 7.023252 3.230867 -8.333022 -8.457211 -18.769412 10.304987 -0.013808 13.533599 -16.385100 -14.250150 -14.884404 -9.451568 15.875231 8.681805 -2.054692 31.124263 -0.762429 1.998894 -32.370305 -2.990012 13.554044 -0.037296 13.834533 10.274789 -11.437192 -26.716052 -7.432569 -4.721084 4.028180 -8.292097 -13.887241 -10.262706 -8.032216 13.859147 -7.735467 7.749753 18.983424 -1.453252 7.123336 -4.161503 -1.720001 -4.350250 -7.853353 5.843920 5.957745 -19.092140 20.416837 -5.237904 39.634983 -10.214686 12.143933 -14.549061 2.588502 -1.145805 -1.581383 -1.281662 23.242805 11.654948 5.521925 -0.128475 1.059384 -10.852672 10.420847 --2.334579 1.775883 13.522487 7.721008 -7.162707 -11.635581 -5.318213 -14.713534 7.299544 0.932099 8.660326 1.105825 2.904494 -3.074806 0.100607 -0.710443 1.800576 -3.806134 1.062409 -4.209825 -2.693070 12.303719 5.135777 -8.859323 1.299910 -15.679626 9.592333 5.656378 6.166653 9.424511 0.746440 -0.924369 -2.313832 7.568625 -3.144319 0.512307 1.837544 2.540495 -4.547192 1.465401 4.112622 5.761810 7.666339 -0.426334 9.232803 4.441625 5.551848 2.777347 -5.658358 -2.126650 -4.221401 8.464852 -7.666448 4.873796 -0.420755 2.698091 1.234420 -8.321072 -3.147248 -8.363053 -0.611170 1.174142 -5.426628 0.687032 -8.473462 2.429041 -1.201253 -4.475070 3.799322 0.605335 7.981687 3.161890 0.855969 -2.060432 -9.207178 2.831742 0.416963 6.163478 5.981223 -3.526148 -2.419926 1.309006 -4.820461 -6.639172 3.253377 3.383085 2.058616 -0.364950 1.470286 -3.381363 -0.553414 -2.343776 -0.384593 6.636219 -4.144436 2.391094 -2.871889 -1.451866 -4.791453 -5.351042 0.783554 -5.913108 4.365330 5.201924 -2.524716 -0.743037 0.704223 1.644762 -4.107405 -8.190828 1.500744 -2.895469 2.673081 10.581221 -3.151090 -1.079008 -1.623655 -2.043560 -0.913944 9.251965 1.042409 3.009023 8.833674 11.566303 1.261512 -6.897454 -4.175681 2.169858 6.318548 7.270003 6.448980 -9.919400 -5.353417 -0.359729 -0.074579 -12.908854 0.757100 2.609974 6.922713 -0.123835 -8.108279 4.136053 -4.879126 9.852790 6.052485 2.901757 2.232037 -0.542472 -7.693602 10.421959 17.766627 -2.716974 5.644724 -6.050691 -5.864670 10.912025 -6.701367 5.085158 2.095145 -0.678641 -0.083112 -5.408983 0.052785 8.349409 2.540361 4.755690 5.882789 2.640407 -1.055965 -13.157008 -11.215914 0.643217 8.970607 0.280243 16.275828 -8.698413 -4.123419 -2.648641 9.635666 -0.225095 -2.520408 1.658597 -5.446403 5.444007 -13.679524 -12.099199 15.808464 14.240487 3.588466 1.223711 8.201080 7.263366 -3.732658 -4.340558 -4.236252 4.458155 2.367963 -4.196380 -1.325779 0.402623 -8.846793 -5.932106 1.501367 3.188972 5.699564 -3.255029 -4.115019 0.233806 -9.326879 -7.631429 4.246420 -8.395179 -2.844780 1.955427 -0.065215 0.014314 3.584647 -2.240380 -1.049600 2.865461 -4.418230 1.146192 4.204985 6.207962 2.399360 8.695889 9.850538 -0.053496 8.215758 5.260068 -3.457912 17.690616 -2.717797 2.322919 3.283292 4.859469 1.236322 3.510295 3.988459 -4.361117 -2.559292 -10.192369 4.795149 1.626655 6.078478 -9.656871 -7.264447 -10.926277 -4.023128 5.352401 7.282324 -0.769116 16.634097 -1.541510 1.260058 -17.798247 -0.500660 6.799135 0.782565 6.209640 4.535238 -5.897244 -12.838311 -3.436642 -5.091633 -0.709865 -4.638645 -7.073421 -5.804676 -3.580442 6.231423 -4.411904 3.301271 11.210368 -1.067061 4.015571 -3.679017 -0.466187 -4.787871 -3.505584 3.183236 1.458330 -7.836943 9.375454 -1.575335 19.291854 -4.060005 6.673431 -5.788654 3.689777 -1.328199 -4.896366 -1.549994 11.689088 5.491832 1.704922 1.661123 0.106326 -2.949470 7.192054 --0.744062 2.020670 9.295342 5.275684 -5.005006 -8.454709 -3.728103 -10.447436 4.494187 0.168405 6.203928 0.125960 2.067041 -1.208964 0.394511 -0.068925 1.289393 -2.327143 0.981666 -2.902092 -3.480023 7.554243 2.855779 -5.116472 0.917385 -9.750192 6.758929 4.328774 3.966482 5.972160 0.546062 -1.147062 -1.416356 5.247072 -2.167662 0.095554 0.847574 1.719589 -3.113187 1.401608 2.540260 2.813246 5.834415 0.055627 5.257203 3.561343 4.157311 2.214401 -3.979327 -1.081410 -4.297540 6.698713 -5.348757 3.050792 -0.958798 1.735728 1.599327 -5.534701 -2.094016 -4.606956 -1.000198 0.344781 -4.186257 0.491124 -5.931890 1.454210 -1.961292 -3.548478 2.491267 1.466621 5.524375 2.141144 0.234008 -1.005611 -6.480700 1.909348 0.323185 4.423445 4.173108 -2.853100 -0.861595 1.615174 -3.856487 -4.592192 3.085667 1.678879 2.236377 -0.741340 0.578181 -2.160708 -1.012515 -1.051714 0.223984 4.442829 -2.592071 2.041566 -2.807165 -1.094444 -4.618118 -4.682886 0.459168 -4.188001 3.216939 3.221601 -1.671558 -0.764673 -0.350442 1.041825 -2.793072 -6.210318 0.406276 -2.478696 1.833505 7.250722 -2.375870 -1.117993 -0.670428 -1.644846 -0.692898 5.995879 1.398584 1.624358 6.150791 7.816613 1.011308 -4.485274 -3.053127 0.678331 3.971349 5.268957 4.617101 -6.517806 -3.991816 -0.612724 -0.317529 -9.536044 1.180288 1.823864 4.241963 0.254603 -5.532255 2.858083 -3.624663 6.053143 4.075602 3.017743 1.890154 -0.549837 -4.945706 6.856806 11.375080 -2.122329 4.469487 -4.294809 -3.748180 7.040384 -4.489905 3.256176 1.640336 -0.763666 0.254448 -3.618736 -0.618606 5.713468 2.064683 2.599922 4.934129 1.610222 -1.078204 -8.686254 -7.405808 1.393628 6.632379 -0.334941 10.279058 -6.032099 -3.069984 -1.146840 6.784688 -0.642669 -1.961409 0.920951 -3.269803 3.768779 -9.320682 -8.105618 10.026534 8.379356 1.633105 0.436159 5.323804 5.284512 -3.459671 -3.393705 -3.329482 3.232881 1.264249 -3.499118 -1.107432 0.197622 -5.786986 -2.614219 0.985157 2.600724 3.819685 -2.433865 -2.777827 -0.130446 -6.718937 -5.011280 3.096577 -6.092969 -1.912627 1.672511 -0.624786 -0.259521 2.651399 -1.440325 -0.849074 1.970091 -3.641410 0.765820 2.845434 4.782046 1.422125 7.494579 6.611985 -0.032064 5.872552 3.601517 -2.446014 11.601765 -2.131230 1.840459 2.176040 4.071070 0.142275 2.705014 3.396617 -2.976825 -3.245081 -7.302763 2.872256 1.042910 3.956767 -5.153878 -4.228074 -8.117215 -3.061688 4.030179 5.892141 -0.722842 11.125256 -0.559719 0.973112 -11.134814 -0.513457 4.095867 0.093832 4.776156 3.180226 -4.264978 -7.321046 -2.622157 -3.627427 -0.487291 -2.773133 -4.514835 -4.322126 -2.554486 3.286544 -3.150819 2.160188 6.916094 -0.901656 2.359389 -2.159469 -0.445841 -2.790829 -2.148349 3.928296 1.041741 -5.731447 7.133536 -1.068478 14.315530 -2.041040 4.584498 -4.220323 1.484639 -0.111473 -2.739317 -1.220744 8.325652 3.841549 1.330389 0.894077 0.709363 -1.697422 4.768545 --2.321428 2.262302 16.590574 9.487772 -7.877766 -12.522622 -6.277149 -16.406459 8.876689 0.349405 10.071172 1.804076 2.954881 -2.902822 0.874995 -1.244922 1.325031 -3.730988 0.062438 -4.406026 -1.868092 12.417899 6.638433 -11.366878 1.196722 -17.071434 8.363702 6.922588 7.554005 9.670355 -0.060458 -2.280153 -3.199610 8.601177 -4.762713 -0.024814 2.273528 1.925589 -6.364406 0.175689 4.236925 7.174613 8.601256 -0.685266 10.602029 3.287427 6.775108 2.849463 -6.663028 -1.980858 -6.057795 13.017969 -8.363642 5.962160 0.501976 4.949602 0.190795 -9.714789 -3.777754 -10.661950 -0.329345 2.839242 -5.894285 0.106657 -8.690520 2.459144 -0.990117 -5.060065 4.642937 -0.024634 9.512031 2.827629 1.492474 -2.913678 -9.983865 2.899314 -0.717583 7.544530 6.648314 -3.169884 -2.028201 1.701638 -3.888840 -6.493585 3.247223 2.814813 1.712692 -0.644494 1.475989 -2.982089 -0.891245 -2.798170 -0.944025 6.651501 -7.049064 3.630089 -3.941413 -1.340660 -5.450602 -4.373708 0.535322 -6.980027 4.757982 5.185603 -1.931695 -0.420997 0.249372 2.094858 -4.565125 -9.171502 1.722041 -1.468193 2.229187 11.861336 -4.874517 -1.119060 0.486157 -1.929735 -2.665039 10.187321 0.994939 3.937842 8.567341 13.055060 2.381926 -7.682790 -3.800090 2.706721 8.011486 9.388848 7.245431 -10.512587 -5.665628 -0.709560 0.588727 -16.013226 2.449885 3.677916 8.079152 2.883995 -10.354098 2.465744 -5.240002 11.784484 5.593355 4.474444 2.925628 -0.880776 -8.939855 10.775177 19.874517 -3.244116 7.522828 -5.480672 -5.765819 10.699718 -8.827733 6.992445 1.976055 -0.463015 2.587503 -6.551359 -1.910055 9.569127 3.867806 5.175743 5.753907 2.611059 -1.777572 -16.437292 -13.116005 -0.408338 8.956348 -0.760490 16.418694 -8.660910 -6.662071 -3.637844 12.316983 -2.300558 -3.117084 1.637047 -6.446871 6.441722 -14.325948 -13.023121 17.296079 18.019299 2.666373 1.152487 11.138353 8.290001 -5.219155 -4.993584 -4.249939 4.104645 2.948817 -4.218385 -0.874484 -0.405178 -9.492077 -5.771733 2.254238 3.449279 4.341379 -2.718264 -4.049774 3.552424 -10.776351 -7.838156 4.406434 -10.124138 -2.952023 2.217977 0.239535 -0.319401 4.339760 -4.257673 -2.228263 4.997760 -5.966430 1.823057 4.575227 7.752196 3.238868 10.338674 9.705185 1.113926 12.060151 6.155907 -4.990967 20.833874 -4.350106 2.496780 3.329247 5.458082 -0.070922 4.561960 2.759861 -5.282780 -3.286452 -11.420952 4.857358 0.492300 7.510605 -9.966311 -9.978020 -10.582967 -4.974488 7.027746 6.159330 -1.568220 19.148467 -2.099402 1.536296 -21.435197 -1.158755 8.725911 0.243781 7.560224 5.672616 -6.701982 -17.279888 -3.793330 -4.645396 0.292831 -5.003093 -8.994074 -5.892911 -5.906890 8.966007 -5.782528 4.342714 11.993530 -1.100894 5.558338 -4.352128 -0.462831 -4.245201 -4.138096 3.308653 2.730001 -10.093633 11.505909 -2.047325 23.537908 -4.850079 7.995842 -7.476866 3.822620 -1.517496 -4.697010 -1.745712 13.974143 7.259025 2.839182 0.152630 0.253289 -5.526304 6.894560 --8.579759 12.140527 84.726747 29.286518 -56.970038 -93.973413 -34.895762 -135.393271 57.476854 17.941453 69.494545 4.683897 39.379259 -37.474261 1.215590 22.282596 28.930005 -25.251043 9.434396 -38.204163 -27.907235 81.618379 8.494974 -16.538258 14.384969 -90.952535 57.079693 26.621666 44.604365 58.500080 24.259255 -11.597980 -31.282632 40.595060 3.495685 42.592103 23.065864 22.676306 -45.677786 11.118749 4.294798 -5.600800 56.538586 -1.597565 80.855039 17.379261 35.056195 26.924818 -41.277613 -23.440834 -31.527726 60.644990 -53.992832 29.801271 -5.441924 -7.578961 1.472418 -34.218651 -16.018810 -30.209528 -19.384985 -27.098655 -43.979964 11.007799 -54.871050 19.734478 -25.995994 -33.474269 0.519705 -6.126356 50.775383 20.812527 4.288408 18.987168 -85.655854 2.929118 12.293899 30.932176 48.796471 -14.344964 0.313679 -14.803807 -42.692494 -51.677256 54.187409 40.631635 21.085073 8.486876 -29.163906 -6.010696 -15.735933 -13.462694 30.639941 35.808097 -47.065676 -3.967089 -20.577015 -16.910853 -38.963867 -78.758271 20.754737 -31.853778 32.636208 7.075963 -7.351302 -7.260987 -8.711456 13.367099 -39.534875 -48.154478 15.734305 -28.729150 18.332983 86.735374 -23.810374 -16.600452 -34.036653 -22.138231 -2.840428 47.745460 23.566433 18.046445 61.011394 73.060660 37.169290 -54.874929 -46.796861 26.614366 45.450557 44.163261 31.381667 -59.806612 -36.990940 16.024241 -27.643314 -99.117166 -22.128894 17.043485 51.872005 -5.414881 -28.041956 10.234597 -32.280407 53.672171 42.329945 12.889843 13.708405 4.280473 -58.145634 56.901597 97.894000 -15.240421 45.064679 -34.598021 -14.216805 48.835725 -41.048565 21.651311 17.435465 -19.024280 -19.076580 -24.158255 -3.656589 49.299332 19.271778 26.231500 0.021224 35.811878 -42.715068 -81.929588 -84.614583 1.387491 87.299712 6.039326 81.636679 -64.900595 -31.388258 -7.088270 72.070927 4.529771 -30.905716 24.531692 -52.118683 45.495461 -77.457743 -77.237238 116.191163 100.900973 49.522743 1.835619 43.006239 55.045195 -75.704043 -32.144561 -27.536199 23.518261 7.579056 -89.712102 -31.804533 9.287021 -70.784936 -37.595475 1.420247 32.576426 25.901448 12.010656 24.916566 2.495459 -30.588786 -43.314565 42.195443 -34.794919 -20.986424 8.282719 2.901398 9.817038 30.055567 -29.004529 8.333893 24.879664 -37.167905 20.820486 32.006413 40.483704 10.912159 86.557245 75.331734 -14.336491 58.037296 5.683138 -33.562371 81.008874 -12.941138 31.441308 16.514226 22.495712 11.036728 15.684173 47.025113 -37.063691 -33.461505 -65.455755 -14.158719 22.233435 50.040005 -16.425130 -65.843727 -90.946011 -9.579015 18.739108 62.683623 -5.127319 101.602801 -21.039272 22.944959 -109.395337 3.687152 38.686281 -5.961504 44.342812 21.563051 -39.220309 -58.624738 -23.669988 -59.830603 -51.341583 -24.494641 -27.466409 -36.783354 -35.938311 54.978258 -30.902813 -0.536820 48.340725 -1.528112 46.921992 -22.154379 5.429685 -42.724595 2.433400 43.711089 0.133019 -55.327200 60.221408 11.313881 153.212652 -7.415774 34.069836 -23.441307 26.297538 -9.825644 -49.650581 -17.171417 80.612460 57.834718 16.298115 -0.504148 -0.647509 -5.801593 47.213167 --2.454717 3.996493 23.417555 12.740513 -10.939235 -18.179631 -8.696461 -23.536937 12.128480 0.310715 13.639517 2.208633 3.919568 -3.187234 1.082025 -0.381856 2.722689 -4.914184 0.958216 -6.666614 -3.522741 18.657802 8.797493 -15.241214 1.293754 -24.469374 13.719321 9.610766 11.071840 14.448139 1.065489 -2.703402 -3.407627 12.068893 -6.395444 -0.028127 2.528566 3.183494 -9.586344 0.655450 5.975178 9.435326 12.476860 -0.414257 14.433807 5.090470 10.502064 4.153696 -8.775667 -2.008917 -10.453498 18.928964 -11.982729 7.994005 -0.564113 6.015430 1.777913 -13.495115 -4.915026 -13.948287 -2.011686 3.469175 -9.897391 0.402185 -13.400463 3.878602 -3.403486 -7.287249 5.197358 1.663443 13.032593 4.510993 1.916056 -4.109700 -15.882503 4.565081 -1.040505 11.270446 10.033622 -5.120979 -2.736545 2.721252 -6.601119 -10.082169 6.177950 4.113862 2.664840 -1.079462 2.264056 -4.285540 -3.487308 -3.372112 -1.322536 9.727524 -8.632163 6.387968 -5.277812 -2.282552 -7.951832 -7.229191 0.974625 -10.260085 6.286306 6.807918 -2.451501 -1.202589 -0.821410 2.642276 -6.121267 -13.434715 2.454046 -3.055480 2.785268 17.447979 -6.678678 -1.350776 -0.054242 -2.295378 -3.327344 15.242112 1.342458 6.129277 11.837198 18.536520 2.589615 -10.811435 -5.334400 3.720159 11.036604 12.639167 10.554364 -14.237639 -9.233195 -1.856637 1.818543 -21.736573 3.575215 6.863085 10.981458 3.423862 -13.429924 3.598988 -7.096127 16.519205 8.698035 6.249718 4.115854 -1.445569 -12.722402 15.393172 28.203540 -4.891312 10.599677 -9.220947 -8.359857 15.972895 -12.106175 9.716754 2.516986 -0.575365 2.721027 -9.178743 -1.960908 13.947173 5.546029 6.582644 9.570478 3.466599 -1.313607 -22.383417 -17.995670 0.621643 13.160390 -1.500120 23.470907 -12.057955 -8.458173 -4.285733 16.161467 -2.456021 -4.007557 2.101526 -9.624878 9.050272 -21.917504 -18.907358 24.788452 23.332296 3.090807 1.095533 13.938749 13.404713 -7.245053 -7.474747 -5.942791 6.993183 3.431337 -6.343817 -1.364336 0.037033 -13.282348 -7.764847 3.570563 5.385904 6.840261 -4.587280 -5.165682 2.648790 -15.898705 -11.532530 6.803513 -14.348571 -5.133571 3.610724 0.036468 -0.282087 6.202254 -4.407909 -1.921460 7.565489 -8.382338 1.742350 6.099705 11.326181 4.302598 14.732785 14.909037 1.927155 16.636054 9.137528 -6.982324 28.973416 -5.773362 3.322707 4.532337 7.200547 0.166758 6.456870 5.001740 -7.198129 -5.712932 -17.125996 7.621240 1.125402 10.474985 -13.453934 -13.108229 -16.077048 -6.867540 10.329905 10.425991 -2.397240 27.274248 -3.089512 1.199113 -29.046918 -1.106867 12.215749 0.585666 10.857574 8.313886 -9.563952 -21.093649 -5.766346 -7.020483 0.686494 -7.345378 -12.753418 -9.452984 -7.269149 11.590456 -9.620377 6.679113 16.477607 -1.396088 7.508858 -5.683247 -0.947549 -6.942721 -5.367052 6.281569 3.471961 -13.969536 16.005945 -3.628325 33.082571 -7.119121 11.150605 -10.806278 5.878304 -1.890174 -6.424163 -2.639569 20.403653 9.983795 2.945242 1.019530 0.504657 -6.391891 10.137068 -0.866969 1.287264 6.794549 2.140785 -1.548926 -5.867027 -2.132230 -9.894391 5.265030 1.035724 3.764337 0.002694 2.246536 -1.896758 -1.131875 2.156076 0.870969 -2.309342 2.006666 -1.690843 -0.140060 9.678132 0.707434 -1.438122 0.483338 -10.342444 4.068055 1.900939 6.261042 5.078150 0.986050 -0.912153 0.304479 3.107695 -1.609870 1.076243 1.445878 1.486756 -4.291712 1.024950 -0.405024 2.395764 3.510762 -0.168712 5.151079 0.585948 3.157717 1.602245 0.264558 -0.341119 -3.225278 4.988522 -3.341415 1.829954 -0.963007 -0.784907 -0.714846 -2.727455 -1.938186 -0.911420 -1.220018 1.321522 -2.824276 0.693547 -4.632540 1.759874 -1.728436 -1.418214 0.321359 0.808407 4.353241 3.262183 1.984262 -0.970592 -8.319122 1.959469 -0.148216 2.514795 2.981744 -1.605164 -0.225451 0.596342 -2.389586 -4.179057 3.994801 5.836858 0.005964 0.018443 -0.027122 -2.174353 -2.281166 -1.498962 0.640982 3.442663 -2.249170 1.666639 -2.786433 -0.056809 -0.873445 -4.553531 -0.091576 -3.094806 1.631080 0.676161 1.995828 0.493319 2.567991 0.816890 -1.401028 -4.263796 1.294729 -0.734926 0.490077 7.360772 -1.087069 -0.406107 -1.572827 -0.148514 -2.269510 4.669421 0.667345 2.301914 4.286937 5.008280 1.236635 -3.381461 -2.439265 3.432540 3.069958 3.349903 2.680346 -5.322777 -2.438912 -0.203722 1.415451 -7.291919 -0.717641 2.061882 3.130078 -2.788555 -1.692923 1.023134 -1.669080 5.473004 4.133411 -1.018662 1.688293 0.306996 -3.535076 5.829528 11.036740 -0.910363 2.367144 -5.406178 -2.013137 5.211649 -4.024901 3.111076 -0.765653 0.619016 -0.849493 -3.125650 1.032354 4.217604 0.244244 2.667276 2.131538 1.766603 -1.282879 -6.497188 -6.044991 -0.544891 4.531638 -0.987276 7.855854 -3.365114 -2.492868 -0.864495 4.037107 1.187219 -0.023060 2.470311 -4.810918 3.367815 -7.204358 -6.934898 8.976963 7.926589 3.078688 -0.180415 3.337301 5.245620 -3.357596 -3.076580 -1.632907 2.281780 1.496245 -6.456985 -2.530417 -0.047370 -4.711111 -4.052929 0.611143 1.032379 2.776962 1.497618 0.449794 -1.418777 -4.690354 -3.740741 4.457123 -4.118695 -1.441541 0.742330 0.831243 -1.037493 2.401525 -1.885113 1.460468 3.529886 -1.697320 1.004530 2.469989 1.717047 0.221837 3.759259 6.423400 0.406817 5.107566 2.267823 -1.662840 7.685983 -0.832404 0.385770 1.617180 0.106715 -0.229127 2.140936 1.195254 -2.550686 -2.144451 -5.200399 2.131992 0.732722 2.740925 -0.524698 -4.380188 -4.121762 -2.121111 2.151137 4.153542 1.441319 8.298621 -2.430659 0.971378 -9.345384 0.601428 3.076620 0.818634 4.024653 2.064766 -2.541657 -4.095362 -1.617928 -2.336350 -3.331027 -3.228462 -6.516360 -2.920567 -3.983332 4.258598 -3.402875 1.302339 5.639227 0.364069 3.684479 -3.788297 -0.137558 -5.372042 0.558642 1.904547 0.216304 -3.553665 2.726627 -1.432958 10.414521 -3.290318 2.757812 -2.804301 2.377501 -1.753102 -3.755190 -0.417982 5.923550 2.455569 0.236189 0.138550 -1.566497 -0.766106 3.411282 --5.725999 -0.520081 21.766440 10.464466 -11.345102 -21.535453 -9.025040 -30.214357 16.178454 4.311898 19.298919 3.614887 10.316199 -9.950684 2.548419 4.075016 6.205680 -9.165096 2.012626 -8.232627 -2.065740 25.558502 9.797890 -9.245338 2.100938 -25.277429 10.478757 7.620563 12.082165 15.557446 2.834302 -2.163033 -4.358848 10.328836 -4.161173 7.647363 3.121456 4.601214 -10.462703 -0.270767 3.389180 2.835340 13.500039 -1.610141 20.838962 0.873693 13.026753 4.119909 -9.777907 -7.410936 -9.904534 19.447892 -14.413959 7.497224 -1.157797 1.321014 0.995729 -10.116835 -6.793301 -15.657904 -2.752997 -1.333942 -10.966825 1.873129 -12.281869 6.942082 -4.084953 -6.025632 2.104939 -0.826991 14.860157 6.392964 2.901611 0.746728 -20.326774 3.020304 0.425126 7.933536 10.399411 -2.362296 -4.211028 -1.869740 -7.906638 -12.055998 13.171090 8.184540 2.623213 1.370288 -4.905861 -0.299394 -4.629829 -3.817759 2.203545 8.829832 -14.445706 1.900439 1.872958 -3.563316 -7.896076 -11.111083 2.802011 -10.529298 6.013487 6.649852 1.201019 -1.542749 -5.063411 2.832292 -12.677707 -14.892552 4.187794 -4.289371 0.424300 19.373391 -10.035480 0.215844 -4.969860 -1.111809 -1.836991 14.664959 3.888532 8.461793 15.593645 19.442252 4.633389 -12.474172 -7.100595 7.784094 16.656906 11.100586 8.088253 -15.392765 -10.083807 3.264654 -3.682609 -24.115869 -5.498800 10.603819 14.415545 2.531371 -13.049968 5.155505 -5.232745 18.401118 13.443800 2.141552 3.126466 0.910939 -15.530721 16.774398 29.610216 -5.264378 12.708553 -8.037578 -6.391624 18.965924 -15.824880 8.020772 5.125948 -1.272778 -3.245229 -8.827413 -1.313212 13.330390 7.188747 8.923807 0.758955 7.874635 -4.269296 -23.831140 -24.079644 -2.974793 17.181444 2.254295 25.194840 -14.051543 -9.346043 -3.184518 16.536528 -0.414963 -9.017782 4.486467 -13.501249 10.160451 -25.975493 -20.746690 32.525380 28.304767 11.874898 4.303111 16.095405 16.415146 -13.417703 -6.388866 -5.506317 8.789395 4.238814 -16.949451 -4.080148 1.299897 -18.586079 -12.952868 -1.101501 6.300137 3.417521 0.955892 3.019884 2.250977 -12.384194 -7.196071 8.190333 -12.184442 -7.576941 0.170181 0.694683 1.920670 6.734777 -7.041936 3.165966 6.823534 -11.543544 2.564803 7.544987 11.286347 6.486380 19.052689 22.067284 -2.184763 16.837968 2.519328 -8.444831 23.232508 -5.075774 4.178768 2.320434 6.158977 3.828838 4.318251 8.074228 -8.108720 -6.794208 -16.700861 4.311712 5.618408 12.817224 -10.084695 -18.281323 -20.425795 -4.637371 8.949701 15.178858 -2.034154 28.866317 -7.980278 3.615052 -34.747657 0.837109 9.943620 0.511302 10.685193 6.612668 -8.915840 -20.373491 -6.452800 -10.892248 -6.976631 -7.270456 -12.558024 -8.827588 -12.405499 17.249359 -13.458139 2.688139 14.282552 0.043704 13.891904 -2.613985 -0.628307 -12.094330 1.258820 5.877665 3.195413 -13.349558 16.710727 -1.084553 37.954395 -7.259254 10.475784 -9.345763 10.732948 -5.260037 -11.365627 -1.928146 20.898949 16.397429 1.266233 1.240185 -0.823150 -3.978129 11.241353 --1.380492 1.336164 9.606675 5.710890 -5.364323 -8.227235 -4.012886 -10.728738 5.249527 0.558353 6.472171 0.361787 2.483365 -2.171605 -0.012854 -0.962478 1.702005 -2.914950 0.689555 -3.238333 -2.794949 8.423977 3.009624 -6.043425 0.967197 -11.120979 7.285528 4.036889 3.806208 6.749395 0.440274 -0.795194 -1.959389 5.242013 -2.256237 0.441854 1.523521 1.693069 -3.146913 0.836322 3.227128 3.440542 6.171409 -0.403848 6.056308 3.457999 3.475811 2.239845 -4.390623 -1.756906 -3.210216 5.435244 -5.265231 3.365146 -0.764264 1.985826 1.547899 -6.000706 -2.238202 -5.406962 -0.528685 0.330038 -3.839211 0.620747 -6.021986 1.760752 -1.119625 -3.696700 2.680986 -0.006930 5.494984 2.324010 0.508696 -1.481070 -6.381550 1.937748 0.574798 4.155692 4.079319 -2.383835 -1.354141 0.991218 -4.193196 -4.551258 2.638444 2.496450 2.005025 -0.161199 0.753945 -2.311328 -0.304872 -1.315013 0.418042 4.478187 -2.783368 1.135344 -2.573197 -1.190341 -4.162291 -4.354171 0.694119 -4.025375 3.371463 3.871119 -2.689286 -0.250609 0.700200 1.247487 -2.922216 -5.759107 0.781113 -2.653248 2.698079 7.922906 -2.216078 -1.666989 -1.722316 -1.960334 -0.475109 6.298022 0.469791 1.777931 6.909517 8.098915 1.237921 -5.137861 -3.219970 1.502328 4.333109 4.922558 4.706521 -7.157250 -3.930610 -0.435539 -0.684968 -9.636779 0.297353 0.906017 5.008160 -0.391213 -6.067793 3.723109 -3.723246 6.728884 4.312063 2.423705 1.693312 -0.317102 -5.747960 7.132881 11.801121 -1.735637 4.191051 -5.125457 -4.313621 7.342037 -4.019445 3.366347 1.472622 -0.883301 -0.203634 -3.755423 0.587910 5.712191 1.460138 3.014084 3.930895 2.025292 -0.942560 -9.214571 -8.189979 0.869090 6.588643 0.580895 11.570536 -6.610375 -3.012045 -1.870495 7.193150 -0.252067 -2.003826 1.182151 -3.778807 3.840810 -9.861725 -8.753875 10.861470 9.662445 2.334736 0.967216 5.941625 4.580764 -2.818760 -2.920167 -3.128090 3.223373 1.997904 -3.322590 -0.685713 0.476315 -5.995541 -3.791604 1.034042 2.795560 4.330410 -3.026959 -2.741288 -0.378746 -6.550146 -5.875273 3.534038 -6.084766 -1.800898 1.744420 -0.338151 -0.142632 2.905912 -1.459332 -0.826458 1.612872 -2.954445 1.195432 3.055546 4.842128 1.174168 6.546678 7.163749 -0.697162 5.617824 3.295655 -2.369898 12.495689 -2.451360 1.918625 2.321890 3.932447 0.765690 2.541697 3.383437 -3.117617 -1.812690 -7.309284 3.128139 1.069086 3.995257 -7.076139 -4.840103 -8.622003 -2.875779 3.297796 5.924986 -0.436013 11.847688 -1.021568 0.766815 -12.300540 -0.666378 4.709500 0.529298 4.659092 3.229372 -4.388713 -8.747572 -2.300191 -4.273101 -0.454070 -3.300492 -4.822001 -4.573926 -2.351361 4.094541 -2.841098 2.151909 8.044327 -0.764081 2.719295 -2.467377 -0.198924 -3.229115 -2.702190 2.474319 1.118170 -5.456940 7.078624 -0.944567 13.966976 -2.034485 4.756478 -4.045499 2.836657 -0.742353 -4.148282 -1.402724 8.457467 3.702385 1.139116 1.154476 0.031651 -1.774736 5.213557 --7.442596 -3.604908 23.229556 16.865117 -16.488563 -29.167818 -10.775287 -38.243281 22.451968 5.737584 22.959175 6.372078 15.193917 -18.936244 0.645612 3.095082 11.258466 -8.946903 -0.434927 -12.055855 -1.954920 33.679046 7.070739 -14.585558 2.061083 -28.618130 14.604750 11.103948 13.127162 19.981489 6.185369 -0.903912 -8.175998 11.187181 -5.768910 11.081502 4.145072 6.101157 -15.068333 -5.482541 5.978543 1.479997 20.035328 -3.204160 27.247984 -2.625547 16.129156 5.458734 -13.180757 -10.896755 -10.489265 19.284216 -15.588990 9.494401 -2.753149 -0.535036 4.336911 -10.733663 -6.361451 -18.362302 -1.877112 -3.438382 -14.648725 0.795962 -14.283362 8.133705 -1.631880 -9.879658 1.624852 -7.110905 16.100156 5.995069 1.972411 -2.183285 -26.990220 0.390206 1.650067 8.000107 13.914172 3.598119 -3.582470 -8.951107 -11.831415 -12.648580 16.976716 10.499447 3.273553 8.285983 -10.121018 -1.655632 -3.599302 -4.112330 8.117928 7.210966 -16.648982 -2.527026 3.800830 -4.875555 -7.786712 -12.690841 7.508690 -9.274871 7.087537 6.703140 -1.419663 1.192328 -2.946362 1.543449 -17.643773 -15.230624 5.763010 -9.195466 3.126464 26.104919 -10.937878 -4.303271 -10.584109 -2.735925 -1.780652 17.106729 3.756114 9.419265 18.690926 22.263763 7.436415 -19.583614 -11.116276 12.263392 20.151671 12.690977 7.562693 -16.669123 -11.437399 4.911119 -8.347911 -30.245681 -10.386547 9.985671 19.620851 2.119306 -14.544120 8.530842 -7.075904 22.087895 15.201831 0.996025 3.430962 3.519203 -21.825083 18.847544 32.032664 -3.530435 14.490671 -10.313682 -7.837647 20.544540 -14.488525 7.437699 5.191353 -6.343356 -5.907024 -7.383287 2.942579 14.756413 4.413109 9.792878 -4.498628 12.595616 -9.090666 -29.177000 -32.240232 -2.641866 24.057225 9.375223 32.920453 -19.916950 -11.328966 -3.543504 18.729939 -1.880801 -11.299832 8.284775 -19.275045 14.642939 -32.787462 -26.514943 42.482121 33.164399 17.210656 5.607113 19.440611 15.287963 -15.013035 -5.690777 -5.580427 8.663198 10.557878 -22.649971 -1.660834 2.485067 -22.976920 -19.669965 0.879001 8.477784 1.995062 -1.108603 9.815216 -3.568722 -9.539833 -11.631478 12.288081 -12.503979 -5.518092 0.230253 1.347140 2.602273 9.460160 -7.787547 3.926552 4.530221 -10.047619 4.797632 6.484463 12.846417 7.551656 21.055176 30.403722 -7.420226 22.764029 0.667033 -10.963386 30.164395 -7.547299 7.579778 3.853374 9.034209 8.906488 3.572689 12.119070 -11.152399 -1.488292 -19.888584 0.333021 10.478192 17.135156 -17.409443 -20.802104 -28.589428 -4.124436 4.861550 18.009582 -4.743654 34.526382 -14.136333 4.098058 -42.924727 1.367778 14.665311 1.029722 11.975619 6.991334 -11.535905 -25.953990 -6.853029 -16.705914 -9.627837 -8.865968 -13.616729 -11.686034 -14.310766 21.388215 -17.278563 2.128172 19.705049 -2.807535 16.643697 -8.722371 2.254642 -12.840852 -0.089662 1.614021 3.949968 -16.107745 19.906535 -0.013114 45.373074 -4.349057 12.965916 -9.614924 19.811278 -10.377224 -21.321526 -4.323215 24.932583 20.136177 0.047778 2.640385 -0.420952 -3.201070 15.766663 --0.935766 12.419878 70.175079 22.860648 -50.333414 -79.557726 -27.376413 -121.684667 52.309201 19.547401 56.443960 6.285533 34.595269 -34.927890 -2.585333 25.922373 24.836352 -19.097506 6.301899 -34.781855 -30.757691 68.951823 1.201639 -6.268310 14.934626 -80.337948 49.957996 18.136464 41.615278 44.071589 24.543567 -8.166045 -26.914185 35.069512 7.564213 37.080792 17.694903 19.885520 -40.570549 10.538698 3.594950 -10.640695 46.363694 5.341954 69.573104 11.093450 30.736280 22.165515 -31.203065 -19.012851 -28.181643 51.442078 -44.246475 26.044732 -8.372781 -10.082018 -0.048184 -26.446094 -8.947020 -15.692797 -18.874443 -29.526676 -37.502155 8.977043 -45.805639 16.659695 -25.583039 -30.371742 -5.733340 -1.057886 45.130334 19.169300 2.492413 17.210105 -78.323985 0.548746 10.561769 23.729508 46.193851 -8.999890 0.262682 -16.225898 -40.299165 -47.206561 54.420419 37.577454 16.442621 7.876499 -26.552803 -7.677568 -17.558668 -13.588569 31.883528 31.878193 -46.997198 -6.942268 -18.726440 -15.417783 -33.184962 -72.531237 18.033014 -26.963715 27.597525 -0.815063 -7.610455 -2.001203 -4.227548 8.689218 -31.193355 -37.517996 13.201791 -25.507577 18.247315 77.422842 -16.304655 -18.533987 -28.410941 -18.430154 -5.316815 37.423094 24.896404 12.728452 61.333788 59.443106 31.971064 -44.363063 -40.080853 25.640830 33.692704 36.150438 25.860809 -52.239250 -33.024004 16.102422 -20.353465 -85.450625 -18.363824 14.466796 43.772460 -9.894962 -16.721050 6.395325 -24.555719 39.122824 36.694071 4.953612 13.118289 3.436591 -48.329975 46.369928 84.409045 -11.136850 35.135267 -32.889812 -6.464314 40.933876 -36.196111 15.160326 12.667653 -16.889553 -18.414339 -19.595277 -4.032666 42.152987 9.534879 15.246498 0.028987 34.741334 -42.200696 -67.847385 -72.123186 0.359928 75.637785 5.307710 67.075740 -56.292606 -21.646495 -6.309102 60.398316 7.843328 -23.506085 25.227226 -46.295083 38.097371 -58.506899 -65.273608 99.934292 85.582299 42.100690 -3.470054 33.875300 47.607092 -70.023186 -32.444552 -23.124533 15.494825 11.050040 -83.818372 -33.399474 10.056069 -61.137696 -33.837101 1.503607 26.935328 24.619308 13.059853 29.208407 0.465443 -21.304200 -39.916877 40.141628 -24.966770 -16.790978 6.479251 6.078429 7.269284 28.194083 -23.719800 8.433064 19.536618 -28.353409 18.713610 29.312882 34.762031 7.637362 76.412921 65.368471 -14.631824 49.013244 2.538790 -27.667043 63.642055 -9.676993 27.225780 15.277743 16.073154 6.263878 13.933252 40.914224 -32.704371 -29.570249 -54.139158 -14.041233 15.778380 37.844607 -6.061343 -50.565607 -79.078280 -8.291356 10.643576 50.389744 -3.498799 84.204443 -20.111513 18.631032 -89.199005 3.598788 33.078599 -6.854012 40.955684 19.029876 -33.190509 -38.723940 -22.839459 -51.171035 -48.766004 -19.475364 -18.576357 -32.154000 -29.351094 45.516544 -28.428220 0.123351 38.810990 1.491733 40.659782 -27.262018 8.525883 -39.581058 9.245137 42.820593 -0.740675 -47.179280 48.892377 8.312619 129.050140 -4.217740 26.825580 -17.782083 17.076301 -9.689049 -45.081880 -16.742238 66.773430 47.181562 15.443365 -1.741555 -1.727587 -1.291420 44.555030 --2.178063 4.049773 18.124602 11.167356 -11.881523 -16.404127 -7.959741 -21.574319 9.046964 0.647892 12.668942 0.290347 3.956913 -3.370479 0.619726 -1.303492 3.430040 -3.742400 0.639372 -6.481505 -7.293844 13.344842 5.174315 -11.154181 2.399724 -17.513157 12.408029 8.554076 6.537023 9.876566 1.557356 -1.751126 -5.189170 10.035460 -4.315481 0.731865 2.756181 3.394475 -6.896838 1.595199 5.669992 5.532357 11.733285 -0.629176 11.490142 6.393231 6.939399 4.897229 -9.872959 -2.589292 -5.526197 12.489172 -9.343872 6.727125 0.452372 3.450257 2.722069 -11.501753 -3.540845 -8.758544 -1.295261 -0.674003 -7.665527 1.068207 -10.695439 2.650085 -2.030612 -7.568948 5.772533 0.568920 10.338823 2.319624 -0.689313 -1.773835 -10.915424 2.657146 1.761793 8.074658 8.322515 -3.648447 -0.323025 1.637402 -7.668565 -8.696509 5.127252 3.422695 4.528494 -0.533440 -0.061183 -4.088740 0.611241 -3.361748 1.851659 8.187440 -6.346063 2.378421 -5.398749 -3.342297 -9.955907 -9.388420 2.087115 -7.036191 7.188358 5.663527 -5.838900 -0.943504 0.456063 2.341844 -5.252867 -11.274660 0.723926 -5.019919 5.788961 15.312133 -4.254738 -3.594484 -2.382376 -4.649750 -1.920678 10.971070 3.069577 2.697355 12.533949 15.572314 2.605930 -9.371723 -7.060643 1.227963 7.435701 10.326921 8.772419 -13.096951 -7.478289 0.158419 -1.909196 -18.520789 0.767740 1.578167 9.457870 0.771012 -10.282243 4.816969 -7.185018 11.428221 6.098096 5.955715 2.824070 -1.207787 -10.248704 12.399891 20.080166 -3.441617 8.409448 -6.772757 -7.665041 11.551961 -7.341376 5.879791 4.168007 -2.788275 -0.245909 -6.216187 -0.788813 10.567559 3.303003 4.352068 6.864169 4.000415 -4.288851 -16.928609 -15.747551 3.340756 12.731314 0.439537 19.511212 -12.292719 -6.860279 -2.956311 14.961791 -1.703513 -4.468118 2.602887 -7.023497 7.775248 -14.744217 -15.358578 19.203676 17.719884 3.887105 0.259942 11.377581 7.758195 -8.175064 -6.907707 -6.852153 5.484507 3.531405 -6.442091 -1.880557 0.770250 -11.275899 -5.011150 1.960908 5.751812 7.296303 -4.792527 -3.768494 0.273566 -11.632635 -10.038795 6.006787 -9.803309 -2.198973 3.495996 -0.960767 0.011710 5.754331 -3.597127 -3.158536 1.964955 -6.641443 2.595185 5.450548 9.631065 2.290514 15.315629 11.845742 -0.916560 12.587899 5.805461 -5.401502 22.758698 -4.696378 4.733217 4.065544 7.832794 0.330849 4.343328 7.396592 -6.098732 -5.066957 -13.445379 3.412302 1.631703 8.087949 -12.506452 -9.047771 -17.060956 -5.424179 6.209523 10.063283 -1.711257 21.229165 -1.593995 1.737182 -22.319393 -1.145003 8.482229 -0.628381 8.985071 5.425012 -8.813216 -16.785342 -4.345786 -8.907943 -2.219288 -4.962085 -7.358858 -8.440138 -4.465932 8.108102 -4.548304 3.562466 14.235284 -1.954287 4.263123 -4.620860 -0.363500 -4.139710 -5.443592 7.031056 0.938107 -11.684378 14.021956 -0.656083 28.795620 -2.280830 8.952639 -7.251697 2.772288 -0.133809 -6.760930 -3.146091 15.550189 8.322413 3.221532 0.783403 1.845394 -4.338380 9.184903 --65.719269 15.001693 292.426295 104.863661 -179.965161 -289.249229 -125.368150 -458.432505 214.513291 80.277981 258.281998 29.262861 149.148100 -131.807720 -1.495619 45.797580 98.726754 -130.531881 49.498612 -126.328933 -58.427056 320.022126 54.678593 -53.966147 26.423066 -348.969745 203.321028 74.062672 155.375134 214.336404 76.740098 -24.448871 -101.196729 135.879771 5.739605 130.771017 76.347117 87.355302 -129.539046 16.518576 38.023441 -17.502808 187.033958 -6.539462 288.699497 28.855122 119.540376 69.280222 -126.530484 -104.918856 -109.162696 184.518445 -203.787731 80.889363 -14.678235 -35.521303 11.433496 -112.413665 -65.234899 -140.608355 -53.411666 -96.189828 -139.786939 47.876987 -173.575715 96.584553 -95.874530 -90.111289 -6.100069 -37.430640 182.319768 88.656735 48.627855 70.806729 -300.831323 31.759619 21.677167 87.068323 161.603361 -32.703441 -39.674535 -41.430866 -142.686893 -183.546214 182.537357 160.598669 45.992107 21.122021 -89.318860 9.281466 -62.801060 -43.900091 81.668580 134.695868 -175.387667 -11.426314 -35.820100 -57.216907 -111.082479 -235.293186 63.966656 -131.456209 101.284814 62.800770 -48.762694 -34.869170 -60.772857 20.821726 -159.613535 -181.871996 64.058012 -109.167710 64.726859 291.550291 -115.909827 -33.279202 -128.435845 -54.545183 15.111850 171.211844 66.558548 87.943546 209.213674 250.356877 93.707604 -195.128615 -147.637089 127.101562 180.971645 127.603742 96.715506 -211.489134 -130.596126 45.850780 -77.934079 -324.682624 -90.686492 79.273852 179.717067 -16.873600 -109.200736 54.037618 -101.317785 204.263217 188.214116 37.595571 39.574589 30.090344 -214.299746 204.959501 348.732248 -46.734748 158.749289 -119.371016 -56.848375 216.230610 -179.104550 93.537927 61.287642 -26.178479 -80.888241 -103.892453 -13.916101 169.313464 58.995609 121.680894 -4.174918 124.602338 -90.389893 -293.056706 -312.976558 -12.477939 309.786906 44.416270 284.231032 -227.158399 -92.241484 -4.156165 244.273845 48.321954 -124.831288 84.708473 -165.409556 149.593523 -309.021319 -280.904886 403.313753 357.124311 159.748071 29.578611 152.619005 201.597244 -233.743358 -99.061736 -88.988642 112.428680 14.359245 -284.079944 -85.181979 35.965332 -232.385448 -170.745576 -1.591564 106.205610 93.862091 10.994397 85.234489 23.786214 -92.771122 -142.643793 154.043185 -120.166481 -112.611442 9.558971 17.470816 37.536529 95.896241 -86.583065 57.063340 93.196125 -121.427558 58.086159 125.148148 118.036984 41.185215 276.069746 272.794277 -63.765969 160.824658 10.841761 -90.233722 284.624775 -54.359131 89.351922 54.690407 68.948598 52.737436 54.834018 146.680281 -125.193077 -107.921153 -222.292244 -11.142846 63.606557 179.386145 -93.213265 -246.326881 -305.754588 -24.231597 84.004642 208.230889 -13.380331 376.365228 -82.669756 61.518721 -388.834218 10.940632 148.551154 -12.022147 162.309625 76.694720 -119.877197 -189.959547 -93.652985 -188.795195 -134.717623 -91.072345 -122.179302 -128.028111 -135.135535 207.909844 -132.614506 7.244116 152.254058 5.547048 170.414161 -49.072214 9.479488 -172.654568 25.068709 105.354959 15.194427 -179.958711 234.115154 6.907678 490.165724 -66.513911 109.578853 -78.897951 139.964616 -66.456156 -177.486309 -38.258279 289.118630 197.932031 40.995264 -16.942116 -22.521429 -19.117991 157.156165 --36.131849 0.334488 129.245715 48.115852 -74.179482 -119.170481 -55.723758 -196.669833 98.543838 35.545094 114.129438 15.354190 67.255897 -61.159878 -1.206649 10.651801 45.553350 -64.373100 22.666314 -53.637380 -8.761435 148.254582 25.723804 -31.198786 7.385599 -162.361830 86.807211 33.486719 68.007234 97.038925 32.720491 -7.366442 -45.188979 56.971880 -2.839192 53.066361 38.303037 35.673130 -57.629122 -1.070244 19.506922 4.123660 82.053430 -7.851470 128.733235 5.839195 50.019839 28.685797 -51.338670 -49.477924 -45.324423 79.004599 -84.832294 33.618323 -0.499353 -14.375624 5.898868 -52.448022 -31.137280 -68.200174 -18.868258 -33.703687 -56.536378 21.346299 -72.039794 45.240948 -34.185094 -32.404455 1.014890 -26.125951 78.056841 37.553511 27.603346 24.689220 -131.159956 17.833104 5.323478 36.342270 67.322230 -8.577913 -21.766233 -17.313317 -58.415311 -77.369755 72.711724 77.844108 13.489455 10.915708 -37.501578 5.618750 -27.090605 -22.100585 29.548308 57.072872 -77.883021 -6.110619 -10.448528 -24.673538 -42.081613 -88.210680 28.529049 -57.361407 41.380762 34.057260 -21.830018 -15.531350 -24.616323 5.906283 -71.966454 -76.091249 32.915636 -47.149912 29.478866 129.782980 -54.767349 -12.437122 -62.276020 -21.238408 6.801464 78.539394 18.999516 43.382859 85.727779 110.079783 37.684412 -87.120859 -61.754720 64.938535 84.791503 51.854310 39.847162 -95.209972 -53.581947 17.712690 -31.688499 -137.022856 -43.873161 33.258704 81.313712 -5.724025 -52.256855 26.411858 -42.683632 98.169257 83.656816 12.306958 15.305653 17.061627 -97.003898 91.637681 154.934578 -17.506120 67.828458 -54.597776 -27.339419 95.491150 -78.998357 46.165020 25.732022 -6.105844 -36.343640 -46.782258 -0.368284 71.834964 24.947390 59.649017 -7.010932 53.824912 -29.057767 -130.935999 -143.190626 -9.608596 129.067265 22.832663 129.891213 -97.573746 -42.874890 -5.164311 107.235920 21.868546 -56.186850 38.669523 -74.374849 64.325395 -138.284738 -123.247641 178.312560 162.876376 68.300646 17.447713 72.572444 84.546800 -95.020274 -38.549601 -34.741001 53.107481 7.548166 -117.137806 -25.463813 15.569907 -98.411518 -84.263883 -0.632003 44.887338 41.247009 1.743150 37.616459 11.480486 -41.320152 -62.788673 68.632994 -51.983957 -52.787518 2.620747 8.758377 15.627850 43.312661 -38.552333 26.363770 44.643055 -49.867558 23.275296 54.266941 47.818680 16.725573 107.127901 118.736670 -25.909862 72.639982 4.555068 -37.878252 130.567348 -25.186305 35.139825 22.338906 24.606758 28.457828 23.502469 55.508823 -54.267774 -39.054096 -97.330110 3.367877 24.461709 81.388636 -55.167871 -114.737802 -129.639270 -10.764552 37.819113 86.498421 -4.313193 169.737180 -40.537744 21.723871 -177.706202 4.207369 69.963808 -0.541421 67.403004 33.057179 -51.335211 -91.064226 -37.257550 -82.138677 -53.494194 -42.590225 -63.839040 -57.006492 -64.341396 102.689916 -60.611890 5.040612 74.162700 2.684492 75.472529 -19.879757 2.346376 -77.468969 6.759352 28.541548 8.927535 -76.069902 103.254747 -3.337651 206.169246 -37.227255 48.631493 -34.920749 75.787061 -36.005572 -83.854650 -13.345154 127.241675 84.033711 13.870204 -8.583970 -15.520216 -12.922775 67.720653 --13.184095 11.015819 94.766769 36.409662 -59.574284 -99.083910 -38.734694 -145.390924 64.195100 20.691056 80.508359 6.953475 43.888811 -38.916227 2.832028 18.043813 29.719180 -30.384206 10.726440 -40.778511 -26.003923 91.342430 15.772008 -23.005884 12.284510 -101.865036 60.686063 30.790438 48.419460 62.798186 21.980208 -11.884138 -32.787629 45.215620 -3.289103 37.919744 24.363354 25.401683 -45.743907 6.754115 9.197371 -1.252768 60.688686 -1.418307 87.503828 14.804661 39.443258 25.646739 -44.600618 -28.535450 -32.900369 66.519646 -60.502819 32.088381 -4.175846 -5.852414 3.753686 -38.429848 -17.657849 -42.904454 -15.177729 -25.563745 -46.029534 11.243650 -56.121519 24.080443 -25.901367 -35.873306 3.458757 -7.750916 57.819952 22.421834 7.364576 18.420827 -91.101731 5.834838 10.362622 32.199911 52.457072 -13.875941 -4.923989 -14.459345 -44.919734 -56.572249 57.574518 43.418586 20.416008 9.085359 -29.609899 -3.314761 -13.931893 -14.837972 28.462474 41.139768 -52.819547 -1.581307 -15.703841 -18.065700 -40.701937 -78.064219 20.078868 -39.088022 34.049835 14.952186 -11.178339 -8.016669 -15.200870 13.083420 -46.763468 -57.068841 17.770875 -31.183670 19.296159 91.122384 -32.150063 -15.291725 -32.802158 -20.640604 -1.391107 54.224739 24.829584 22.917390 67.105709 80.212805 31.884025 -60.872593 -47.661734 30.657354 54.188981 48.811704 33.708360 -66.701537 -41.317560 16.189443 -28.342752 -108.363556 -21.895694 22.713222 58.483098 -2.671138 -37.389660 14.857463 -35.054717 61.970279 51.649361 17.906064 13.646822 4.830721 -65.394221 62.496055 107.986182 -18.053773 52.090873 -34.067024 -18.779740 57.587386 -50.735547 27.208962 20.195562 -16.308376 -18.170965 -30.220974 -6.823986 56.490774 22.239664 33.335780 1.622092 38.479183 -40.358304 -92.979050 -96.883493 -0.561140 94.356957 8.454457 91.173998 -70.554411 -36.266232 -5.787338 80.194432 3.008730 -36.620182 25.338059 -53.657148 48.891395 -89.996074 -86.859865 126.959593 112.538983 51.496872 3.798533 51.166212 60.675562 -75.675611 -33.960585 -28.720466 28.801718 9.121595 -90.243403 -30.787279 9.305944 -75.933125 -44.435800 1.702056 33.949138 24.892638 6.292065 24.294407 6.914680 -35.541833 -44.402896 44.649077 -40.309667 -25.375918 6.378951 3.557961 10.579592 31.368129 -31.107275 8.723284 28.517858 -42.751964 20.021451 35.713739 44.262761 16.569005 96.372217 82.182708 -15.808140 62.307418 7.298921 -35.018261 93.356609 -19.085350 30.634129 17.558612 27.781273 11.766149 18.564277 49.098088 -40.168767 -35.405778 -73.101764 -9.836181 22.355306 55.283371 -24.553277 -72.497820 -98.028418 -11.888257 24.146987 67.308598 -7.516347 116.305376 -24.002337 22.520270 -123.046825 2.721116 43.757284 -7.917656 49.498456 25.339258 -41.418572 -70.432891 -27.898435 -60.809146 -48.259158 -26.459431 -35.412965 -39.445047 -42.112464 60.806031 -39.249442 3.823494 51.292986 0.246933 51.571710 -21.457787 3.887623 -46.711096 4.556489 42.776439 2.515814 -62.369284 70.153512 8.015339 166.995112 -14.227415 39.033161 -28.997677 32.527344 -14.609184 -51.475928 -16.876348 89.902676 65.706534 17.377704 -3.057740 0.214265 -10.420442 51.414150 --0.097336 2.647478 10.864810 6.168130 -5.240080 -8.246391 -3.965353 -12.492586 5.928923 0.189362 6.239183 -0.111370 1.991625 -2.417334 -0.213463 -0.501955 1.264953 -1.544329 0.697274 -3.053343 -2.216717 7.814836 2.593584 -6.335621 1.142051 -11.157255 6.002584 4.744976 5.790020 5.298299 0.646044 -1.571596 -2.214860 5.735362 -2.895160 -0.518520 1.845160 1.237181 -5.503636 0.771381 1.609037 5.082226 5.852404 -0.482682 6.315141 2.716005 3.762190 2.562211 -4.112343 -0.501538 -3.010106 8.484657 -4.324883 3.846342 1.202584 1.787328 0.352796 -6.449160 -1.795754 -3.897612 -0.598510 1.353910 -3.575255 0.728458 -6.377049 1.054738 -1.372314 -3.728790 3.326821 0.555255 5.584611 1.916621 0.486362 -1.988618 -6.735384 2.419372 0.715486 4.812813 4.697987 -2.021345 0.865266 1.420176 -3.242967 -4.667305 2.696603 3.166618 1.800622 -0.304947 0.560654 -3.426164 0.025527 -2.478821 0.571652 4.326845 -3.811182 1.870500 -4.516496 -1.382050 -4.316296 -5.063311 0.469653 -4.117791 3.862087 2.175949 -1.661850 0.287951 1.720169 1.745559 -1.555919 -5.519354 0.767652 -1.538601 3.473177 9.788451 -2.194073 -2.098188 -1.533023 -1.831936 -2.703269 6.293221 1.064301 1.773551 6.205838 8.427035 1.775584 -4.873000 -3.270930 1.689355 3.456137 6.173447 5.049344 -7.617334 -3.659858 -0.509001 0.543319 -10.604569 0.832077 0.438106 4.602848 0.405349 -5.152236 1.282533 -3.553206 6.921525 2.848442 2.019674 2.104667 -0.699848 -4.912909 7.114836 11.659963 -1.860403 3.902492 -4.415794 -4.174026 5.033802 -4.272177 4.011531 0.862778 -1.020662 1.288947 -3.853595 0.026895 6.010100 1.334757 2.052313 3.738093 1.851337 -2.017002 -9.752359 -8.380244 1.884736 5.304645 -1.179552 10.568565 -5.624561 -4.652068 -2.395733 8.161180 -0.579675 -1.152325 1.827373 -4.937270 4.215131 -7.302048 -8.552485 10.292235 10.940424 1.905662 -0.757932 6.200849 4.610780 -4.815948 -4.155791 -3.161685 2.391755 1.773717 -4.693581 -1.561797 0.246014 -5.880082 -2.776223 1.722755 2.594457 4.407969 -1.597496 -2.073700 0.259525 -7.207781 -5.979075 4.159956 -5.443209 -0.612583 1.750865 -0.087095 -0.191370 4.173219 -3.223440 -2.040648 2.638112 -3.335935 1.229461 2.775426 5.527558 0.603226 7.233913 5.765264 1.156190 8.495774 4.045525 -3.523121 13.295270 -2.267833 2.224736 2.181036 2.770971 -0.692715 3.042695 2.377376 -3.666995 -2.948990 -7.539735 1.965692 0.173839 4.237157 -5.900084 -5.718523 -7.751781 -3.685269 3.459472 3.877241 0.140352 11.871181 -1.388418 0.668469 -12.299787 -0.832472 5.011046 -0.037348 6.020348 3.443519 -5.268246 -9.350088 -2.393919 -4.545651 -1.437850 -3.311627 -5.669800 -4.361107 -3.015759 6.273870 -2.350676 2.646916 8.402641 -0.456045 2.659039 -3.678359 0.016665 -2.672231 -3.079361 3.248772 0.561817 -6.823529 6.574649 -1.059993 15.456429 -2.235550 4.661877 -4.968298 0.891963 -0.091574 -3.690460 -1.708955 8.810254 4.128225 2.086397 -0.391246 0.211739 -3.497908 4.964457 --2.008654 3.611721 23.659352 14.186557 -11.174269 -21.799969 -8.560201 -25.151931 12.931285 0.113692 15.538411 2.296213 6.083471 -3.571308 1.244031 -0.603292 3.164951 -6.007469 1.431182 -7.393336 -5.694390 20.627004 8.523121 -14.114484 1.466072 -25.707520 16.228089 10.692225 11.706240 17.370144 1.473128 -3.378215 -3.060274 12.487023 -5.861063 0.272288 0.808204 3.180872 -8.860428 1.621128 6.424569 7.046478 15.013639 1.066245 13.662313 6.314675 12.266993 4.717743 -7.811379 -3.208238 -13.642203 18.165540 -14.400585 7.264057 -3.639501 5.435208 3.774593 -12.876547 -5.291511 -13.538985 -2.077205 2.634032 -11.344534 0.523073 -15.372233 4.327695 -6.490514 -8.028796 4.886212 1.802167 14.581410 5.995107 1.936119 -4.229786 -18.708607 4.085453 -2.072379 11.178974 10.942771 -6.108492 -4.159213 3.049904 -8.758502 -10.361151 8.061228 3.098400 3.456206 -0.898766 1.612706 -5.447396 -4.420916 -1.841329 -0.292283 9.536974 -8.152661 6.734663 -6.249075 -1.705885 -8.676029 -9.620333 1.290991 -10.686916 6.573057 7.703926 -2.051502 -1.685339 -1.656655 1.321437 -7.804541 -15.968465 1.814892 -4.219389 1.918031 18.011405 -7.968347 -2.164985 -0.578229 -2.209521 -2.035646 16.038180 3.001423 5.747727 13.281788 19.072526 2.661850 -11.804818 -5.660561 3.665323 11.527982 13.473157 11.283778 -14.143508 -10.147166 -1.680704 0.522711 -25.035373 4.380058 7.680401 11.676341 3.538206 -15.495804 6.343173 -8.772420 15.897578 11.477770 7.574807 5.833958 -1.092309 -13.317694 17.021328 30.451426 -5.450711 12.193241 -11.186378 -8.662877 19.463333 -13.307178 8.568104 2.220355 -0.788082 2.427908 -9.120873 -2.358611 14.656650 5.553062 7.385195 12.619423 4.325142 -1.527875 -24.131459 -18.513343 0.859564 16.814355 -0.246493 24.650299 -14.483040 -6.401205 -2.908963 15.637003 -2.358095 -5.161486 2.336675 -9.035288 9.535464 -27.434439 -20.517209 26.684523 22.293410 3.737646 2.048508 12.756563 15.427830 -6.903353 -7.127206 -7.745848 8.014840 3.363312 -8.588797 -1.515147 -1.007837 -15.056476 -8.346199 3.676391 6.084819 8.218120 -6.865647 -6.258861 0.188251 -16.749321 -13.319369 8.419785 -17.028953 -5.734941 3.534763 -1.415910 -0.823605 5.644469 -3.097243 -0.587788 7.690203 -8.813715 1.213182 6.686926 11.756389 4.532420 17.586042 16.874817 0.322705 14.628718 9.380337 -7.114377 31.177951 -6.284285 3.983911 4.811941 10.649463 1.197375 7.545603 6.365592 -7.860383 -7.661107 -18.136330 7.605189 2.903526 11.169076 -11.896924 -12.025738 -18.801584 -7.425671 10.419774 14.551860 -2.537737 28.962600 -3.445424 2.464152 -28.919076 -1.199364 12.343546 0.917521 12.253499 8.854580 -9.938638 -17.692845 -6.890901 -7.395026 2.149311 -7.298267 -13.183218 -10.201532 -7.825739 9.274741 -10.580820 5.980092 15.875452 -2.944016 7.967845 -5.793298 -1.025697 -7.535450 -4.249446 7.507948 5.053151 -14.591028 18.660609 -3.899563 34.300906 -6.186927 11.931089 -11.508858 6.142161 -2.728276 -7.204070 -3.160341 21.941984 10.706240 2.485636 2.451402 0.536361 -3.915332 10.820990 --5.669490 2.002742 27.417278 17.247551 -12.551043 -17.962464 -9.612435 -23.614806 14.521118 -0.631306 16.481737 4.383559 4.051897 -5.571964 2.208023 -4.442633 2.207062 -7.577708 -0.662020 -6.776449 -0.629641 18.974494 13.152805 -22.050837 2.047684 -29.389880 14.261561 10.766935 11.417202 16.605005 -0.392816 -3.417389 -4.751629 14.034480 -7.099099 -1.499074 3.964462 1.167982 -9.335258 -1.554748 8.871805 13.224179 13.854604 -0.716657 16.833479 3.585632 11.737545 3.909989 -11.146899 -2.633610 -11.768302 21.902388 -14.416811 9.563889 1.975453 10.382231 1.422734 -17.831205 -7.072713 -20.972816 -0.095002 5.907895 -8.342159 -0.444762 -13.713675 4.725459 -0.787102 -6.151500 9.106227 0.394385 15.937913 5.461657 4.407113 -5.603280 -13.688269 5.561158 -2.679243 12.913530 10.638969 -5.616919 -4.678983 3.295531 -4.867680 -9.217778 4.088639 1.662448 1.443939 -2.154663 5.602286 -4.545638 -1.499057 -5.238105 -5.030841 9.981682 -12.420438 6.630422 -4.937541 -1.673775 -6.983355 -3.515394 -0.462173 -12.173622 6.396593 12.314102 -4.369768 -0.155933 -0.336916 3.208203 -8.067182 -14.516751 3.274599 -0.964949 2.212070 17.435720 -9.430706 -1.286097 1.950680 -1.236202 -3.347424 17.408748 -1.123795 8.626712 13.631436 22.460593 2.421022 -11.175169 -3.276358 4.570235 14.415096 15.450693 12.325656 -17.307469 -9.106278 -1.541551 3.248131 -24.922197 5.669532 6.638917 14.401508 8.484771 -21.359985 3.839491 -7.628102 21.186855 9.378413 7.911082 4.484900 -1.095659 -14.637669 19.143880 33.381334 -5.870948 12.350647 -9.310351 -8.921098 18.377907 -15.660083 11.152914 2.216284 0.957195 6.417208 -11.841242 -4.495973 15.692767 7.662306 8.351012 10.577333 3.879390 0.272639 -29.167685 -20.443088 -1.867431 12.531219 -1.618442 27.909576 -13.561421 -10.117090 -7.645174 19.247425 -4.665658 -5.224761 1.481163 -10.064501 9.650993 -24.747595 -21.325712 29.036919 29.140989 2.284428 3.497410 18.595139 14.488129 -6.368839 -6.342001 -6.760114 6.820595 5.634879 -3.074709 0.511361 -1.273935 -15.356990 -11.329472 4.879681 4.931885 8.625251 -7.461117 -9.910519 8.173130 -19.362793 -12.324608 7.042566 -18.573736 -7.002774 3.464002 -0.111227 1.096003 6.680193 -5.194795 -3.797319 8.634528 -9.704459 0.459580 7.146195 14.903026 6.254382 14.646189 15.609645 3.780462 18.211810 12.000665 -8.869889 35.218544 -7.100514 2.385606 5.242307 7.891343 1.175462 7.779638 3.009472 -8.394204 -4.441551 -19.062622 11.182999 -1.128138 12.992702 -20.108120 -15.639488 -15.814626 -9.260909 13.696895 8.246687 -2.859195 32.345646 -3.274103 -0.590817 -35.767065 -3.370814 16.343576 1.802905 11.580753 10.129076 -10.606666 -29.528382 -6.246389 -5.686874 5.766834 -8.812946 -14.528390 -9.879802 -10.075309 16.952068 -9.774579 8.765397 20.870936 -1.450580 9.531480 -5.251617 -1.490196 -6.687178 -7.325194 1.429752 6.860080 -15.973522 20.987357 -4.898781 36.133260 -9.991073 11.993018 -14.316644 6.782163 -3.227635 -5.530536 -1.880046 22.503517 11.779166 4.292339 1.689384 -0.188708 -10.869313 12.270771 --10.638844 4.227113 75.823664 29.469161 -42.145602 -77.913472 -29.883947 -115.273183 56.227524 17.975866 64.408435 10.969694 38.114453 -30.705714 2.885114 15.574041 21.385346 -27.054920 8.886276 -31.241837 -13.984422 82.806095 19.264957 -20.858460 7.239333 -86.452520 45.813423 23.604768 44.315681 55.378146 14.868704 -8.655263 -21.620807 35.448055 -7.668150 27.197270 14.070608 20.117778 -37.746400 2.544219 8.243072 0.993791 47.796009 0.144333 71.928086 6.474028 35.064660 17.706719 -27.490657 -24.253908 -30.219468 55.638040 -49.433567 25.250652 -8.403602 -2.220108 -0.013341 -28.703004 -16.607248 -39.817548 -9.654351 -13.838028 -38.511458 8.505863 -45.346573 21.818903 -22.100744 -26.671953 -0.913425 -7.805718 48.960516 20.038478 8.619586 7.428354 -80.937670 4.673134 2.549734 24.247533 41.021905 -8.396458 -11.870123 -11.572974 -34.311497 -44.883549 47.508944 38.120212 9.284760 8.061934 -21.441836 -3.557358 -15.640776 -10.388107 19.017541 33.863642 -46.458120 4.272407 -7.153474 -11.562445 -26.001409 -55.269665 15.726905 -33.770346 25.304990 11.226457 -0.230691 -5.825188 -9.998680 9.361626 -38.790907 -48.689034 14.641897 -20.116368 9.557398 72.637942 -27.581169 -8.035242 -23.183605 -11.735249 -3.318532 46.649483 18.548657 22.253818 53.751887 63.607496 21.512246 -48.581910 -33.083277 31.343990 46.805671 38.565195 25.574134 -52.952326 -33.106310 13.250889 -17.907526 -87.205483 -17.239402 26.778843 46.707423 -4.082332 -31.439169 13.272103 -25.066632 52.088558 47.934612 11.094709 12.812562 4.275543 -53.143885 51.494441 96.327092 -14.005371 41.745633 -30.385133 -16.862061 55.768230 -48.283907 25.799760 12.892312 -8.068447 -14.428261 -26.383807 -3.285609 46.114824 17.023758 30.027039 2.124810 29.871876 -27.545893 -76.526726 -78.612290 -8.713033 73.360489 9.832335 77.082578 -53.452892 -27.329498 -4.796228 59.853144 5.548748 -28.244196 21.439456 -44.774250 38.659529 -83.747132 -70.235975 103.999972 93.048101 43.781060 5.922576 43.743688 52.822351 -52.358964 -27.010019 -20.015424 25.632247 9.551802 -68.965535 -21.322853 4.489378 -62.850659 -40.097578 0.616829 25.141499 17.673915 5.805530 20.080352 4.962315 -31.483022 -35.573406 36.348979 -36.514481 -23.371970 2.180071 4.181098 4.310245 22.116222 -24.013770 11.961757 27.286456 -32.841768 16.169008 29.341731 31.139880 13.497085 70.944753 69.731591 -13.221994 48.565934 5.423405 -26.620205 78.481138 -16.990383 20.961852 12.949848 21.191546 9.405697 15.528542 32.993190 -31.421540 -26.066420 -57.528661 -0.834498 19.389579 45.495138 -19.474449 -61.468573 -73.009861 -10.466161 20.977219 55.764271 -4.759229 96.412210 -24.363164 20.110234 -104.927333 4.479728 35.401849 -3.555397 40.221643 22.139317 -31.311043 -55.543022 -22.652628 -43.250506 -33.734028 -23.462628 -37.545534 -31.393814 -37.140089 48.717059 -39.323577 4.516022 41.510617 -2.291074 45.983089 -20.641422 1.708292 -41.763090 7.500807 28.671818 5.442198 -48.844727 54.185125 0.925419 130.599690 -17.574758 34.839498 -24.680476 34.067388 -18.855160 -42.211216 -11.198382 74.125995 52.375978 10.525034 -1.384776 -3.993720 -6.724276 36.461090 --1.491615 4.655425 18.061934 12.440690 -9.708120 -10.533602 -6.550531 -17.283348 7.837328 -1.491959 8.353891 -1.201541 1.742549 -6.309656 -0.766412 -4.676858 1.144109 -3.366054 1.253678 -5.510412 -2.378453 10.434979 3.375815 -13.560391 1.618227 -20.268647 11.515843 8.896115 8.011949 8.804741 -0.214385 -3.108101 -5.042387 9.019094 -4.728350 -3.024142 3.470053 0.260373 -8.190346 1.625454 4.107719 11.158239 8.921974 -2.027170 7.658419 4.556210 6.536439 4.943625 -8.945743 0.742832 -4.207778 13.425350 -5.436876 6.613700 5.224435 3.289167 1.381803 -12.569066 -4.412497 -7.726996 -0.351593 2.154940 -4.604887 0.243166 -10.180510 1.114634 -0.472195 -4.891826 8.121297 2.148875 6.937741 3.458354 1.564503 -5.376846 -7.664304 5.167621 1.675527 9.326158 5.998079 -3.809767 3.242826 2.856317 -5.262948 -6.926567 1.382975 3.456014 3.101531 -2.038688 3.659305 -6.297931 2.178816 -5.063821 -1.977576 5.250555 -6.182309 2.459998 -9.633288 -2.084027 -8.060685 -5.241913 -0.395816 -6.061595 5.788460 6.781682 -5.846990 0.254831 3.730794 2.931439 -2.755058 -6.586951 0.035441 -2.421988 7.267687 15.797192 -3.364736 -3.604262 -2.823824 -3.448410 -4.071701 10.085537 -2.072908 4.293408 9.818294 15.980842 2.647815 -7.601584 -4.363130 1.895343 6.002985 10.396997 9.030784 -14.548668 -5.757925 -1.853495 2.527562 -15.810120 3.229483 -1.766361 8.347058 2.434928 -10.920690 2.977483 -6.206595 14.694653 1.909435 2.164500 2.753879 -1.876922 -8.764425 13.734326 19.941350 -3.961952 5.910359 -9.103083 -7.258557 7.295147 -4.156755 6.255187 1.713566 -1.576604 3.969259 -6.358948 -0.113639 9.968529 3.100964 2.710007 7.790175 3.691363 -0.541207 -17.666343 -13.653183 4.243057 5.594641 -3.819376 20.053417 -9.042441 -9.427298 -7.174866 13.487677 -2.052667 -1.014813 1.705753 -8.592438 6.324958 -7.587964 -13.966629 17.138527 18.347204 -0.383713 -0.520741 11.456918 6.504682 -6.888736 -6.239022 -4.102976 3.588489 3.063186 -4.461817 -1.185362 1.083591 -10.147841 -4.980334 4.569007 3.975016 8.243118 -5.292690 -6.965438 2.331570 -13.733269 -11.308701 7.431282 -10.108164 -0.278435 4.301635 -0.769176 1.279622 9.063993 -5.051105 -4.381146 2.527711 -4.950248 0.773658 3.307059 10.495483 1.402734 8.996558 7.521552 4.748468 15.702219 8.576423 -6.358823 24.363364 -2.889662 1.815382 4.756049 3.094454 -0.696505 6.082871 2.473162 -6.054622 -1.467530 -13.672973 5.889371 -2.113566 6.408451 -15.089520 -7.881226 -12.675073 -6.794851 6.708329 2.681894 0.032617 19.164505 -0.781663 -1.848917 -20.891793 -2.509987 7.890322 1.363121 8.599007 5.547454 -8.459219 -17.794513 -2.639187 -6.522437 0.250623 -7.270284 -8.320618 -7.910828 -3.470267 12.485831 -1.638997 5.932506 15.872706 1.279365 1.964267 -4.128128 -0.331725 -3.270186 -7.421424 2.618254 2.723108 -10.968171 11.549096 -2.776361 24.568238 -4.096589 6.985878 -9.800294 1.122781 1.235000 -6.563227 -1.973203 14.589290 3.766144 4.611624 0.017321 1.542056 -8.591314 10.868924 --0.345204 2.000315 9.351397 4.409620 -4.312851 -7.055108 -3.340434 -11.319297 5.190667 0.539824 5.812779 0.021246 2.026622 -1.507514 -0.040845 -0.311743 1.190349 -2.200696 0.761890 -2.715122 -1.352583 6.815601 1.896127 -4.522219 0.733412 -10.095562 5.022828 3.437971 4.661967 4.861498 0.609277 -1.521605 -2.199881 4.566969 -1.965345 0.090683 2.445579 1.120135 -4.295900 0.383750 1.111631 3.634747 5.004031 -0.456189 5.944172 2.003480 3.088213 2.183901 -3.029926 -0.821661 -2.561861 6.707850 -4.044327 3.236277 0.930510 1.143711 -0.037502 -5.226772 -1.685867 -3.488606 -0.708335 0.614623 -2.884151 0.609370 -5.141750 1.342639 -1.112700 -3.014986 2.325441 -0.151016 5.047842 1.767650 1.016324 -0.788959 -6.459362 1.836473 0.236404 3.756013 3.710602 -2.056846 0.183037 0.864299 -3.084097 -4.088154 2.409994 3.615629 1.256240 -0.369130 0.031772 -1.743462 -0.236763 -2.100473 0.428905 3.953153 -3.384913 1.435251 -3.484571 -1.109580 -3.610853 -4.857550 0.587184 -3.636367 3.316929 1.768909 -1.286523 0.042962 1.212745 1.464560 -1.807074 -4.907634 1.226648 -1.147334 2.780596 7.872323 -2.267129 -1.516619 -1.409805 -1.734202 -1.723698 5.131333 0.776335 1.779296 5.193645 7.253272 1.812388 -4.522850 -3.108072 1.918187 3.477610 5.019173 4.053767 -6.644731 -2.989120 0.040540 -0.203864 -9.185988 0.460119 0.920931 4.608449 -0.094831 -4.449012 1.045541 -3.145997 6.141220 3.253933 1.918769 1.599753 -0.255945 -4.578816 5.826050 10.075614 -1.548206 3.875075 -4.101115 -2.445956 4.239306 -3.937437 3.538229 0.849776 -0.238237 0.613713 -3.440329 -0.333767 5.141516 1.830971 2.481420 2.554084 1.875422 -2.144061 -8.668994 -7.238102 0.493851 5.483629 -0.956019 8.467306 -5.194218 -4.026037 -1.735939 7.023595 -0.392621 -1.645626 1.837987 -4.265224 3.659636 -6.594681 -7.276015 8.974855 10.022175 2.140760 -0.334171 5.162619 4.103650 -4.487293 -3.299762 -2.434361 2.304889 0.898208 -4.910923 -1.704527 -0.017653 -5.271009 -2.865684 1.136625 2.431391 3.713513 -0.732825 -0.915436 1.083988 -5.551098 -5.141389 3.774541 -4.575557 -1.473415 1.360064 0.259518 0.115836 3.053091 -2.683409 -1.033711 3.186747 -3.075047 1.387939 3.033269 4.021595 0.470173 6.480415 4.925375 0.688716 6.680566 2.836288 -2.887935 10.645432 -1.974033 1.904948 1.805987 2.149678 -0.616792 2.648201 2.259102 -3.188069 -2.841944 -6.273218 1.433365 -0.111337 4.190838 -4.005445 -5.839717 -6.590138 -2.572884 2.908841 3.837576 -0.001042 10.210788 -1.100578 1.338080 -10.817592 -0.571265 4.250300 -0.012498 4.470087 2.810572 -4.110315 -7.604617 -1.737161 -4.056408 -2.318982 -2.787330 -4.913563 -3.570392 -3.252800 5.159890 -2.122292 1.600113 6.274219 -0.134387 2.941041 -2.907442 -0.125478 -2.751515 -1.974802 3.107478 0.418118 -5.678245 5.698842 -0.639161 13.533308 -2.101732 3.796704 -3.731244 1.391544 -0.510526 -3.200431 -1.264888 7.795145 3.815882 1.749462 -0.725521 -0.555262 -2.547255 3.970862 --2.894008 2.962061 21.132739 12.431587 -10.320348 -16.248533 -7.636122 -21.832036 11.261144 1.015392 13.164654 2.251150 4.289387 -2.729403 1.234159 -1.360860 2.343743 -5.159735 0.901263 -5.932198 -2.440103 16.273511 8.202854 -14.217475 1.124701 -21.663416 12.251357 8.565794 9.416886 12.778990 0.652446 -2.780464 -3.966910 10.961862 -5.785339 -0.189283 2.606970 3.047507 -7.824980 0.413804 5.178166 8.594476 11.218101 -0.471283 13.582740 4.732310 9.632616 3.868506 -7.958603 -2.373769 -8.222740 15.645624 -11.240257 7.613929 -0.335729 5.429301 0.566159 -12.172192 -4.841027 -13.430394 -0.455310 3.163787 -8.250368 0.423886 -11.945831 3.497885 -2.125297 -6.753944 5.088265 0.984089 12.425391 3.927188 2.049648 -4.063552 -14.256715 3.525304 -1.456262 9.157276 8.579205 -4.851793 -3.311855 2.066390 -6.047110 -8.783217 4.550544 4.394879 1.914778 -1.122007 2.237346 -3.526034 -1.821387 -3.378148 -1.510908 9.265499 -8.231216 5.443845 -4.887211 -1.482181 -7.135456 -6.360857 0.966422 -9.346622 6.530341 6.514625 -2.244512 -0.559682 0.353310 2.627268 -6.017312 -12.256081 2.111328 -2.301165 3.410259 14.830274 -5.927923 -1.612701 0.043228 -2.515337 -2.301401 13.041163 1.563582 5.077105 11.867345 16.857306 2.699671 -10.147369 -5.001885 3.726455 9.643854 12.100431 9.346744 -13.714302 -7.667381 -0.817574 0.672124 -20.065611 3.342453 5.451903 10.285562 1.938433 -13.172853 3.523538 -6.943611 15.013877 8.640458 6.534973 3.880369 -0.685585 -11.060157 13.627403 25.814787 -3.972115 9.436511 -7.974852 -6.587702 14.401054 -11.032504 8.828725 2.555259 0.030564 2.221350 -8.536682 -2.388586 12.357920 5.433905 6.628014 8.514546 3.561477 -2.201358 -20.835324 -16.101419 -0.695734 12.571599 -0.380935 21.462881 -11.665978 -7.709837 -3.936147 14.048870 -1.580903 -4.242006 2.281785 -7.934641 8.126603 -20.021193 -16.816530 21.540716 21.530391 3.903539 0.867733 13.321514 10.608057 -6.310882 -6.994268 -5.555927 6.153998 2.531800 -5.224639 -1.030176 -0.275334 -12.980016 -7.427959 2.811382 4.890181 7.124103 -4.238222 -5.513226 3.654315 -14.045712 -10.736814 6.016832 -12.810519 -4.913434 2.596066 0.260881 0.013686 4.689621 -4.522013 -1.920593 6.644113 -7.414220 1.944610 6.420473 9.533681 3.359428 13.646329 12.746681 1.223008 13.836439 7.658285 -6.216749 26.884422 -4.843434 3.230686 4.388165 6.938494 -0.125332 5.601447 4.370449 -6.728995 -5.049455 -14.628159 6.525087 0.932451 10.194480 -12.703747 -11.939392 -13.992536 -5.923384 8.785305 9.629502 -1.947046 24.517415 -2.534199 2.867904 -26.713591 -1.174472 10.635786 0.410943 9.505256 7.454910 -8.877682 -19.170762 -4.712389 -6.214227 0.195490 -6.294308 -11.163885 -8.305511 -6.630723 9.254823 -7.192278 4.731621 15.135905 -2.253441 7.107014 -5.712827 -0.726494 -5.192398 -4.976570 5.259454 3.598692 -13.223853 14.867548 -3.019668 30.730432 -6.041670 10.133412 -9.291096 4.911528 -2.389266 -5.781633 -2.327176 18.356686 8.877210 3.449578 0.768280 -0.278664 -5.715167 8.725314 --2.890125 2.920418 20.493609 10.900778 -7.597456 -14.058074 -6.465049 -19.039162 9.750631 0.732370 12.202683 1.342529 3.903383 -3.293412 2.048336 -0.412435 0.940398 -5.007328 2.255859 -4.572559 -0.243070 15.041671 9.413708 -12.252854 0.607576 -21.056757 10.921768 8.189976 10.657619 11.408652 0.209254 -3.030957 -2.173270 10.494491 -5.469617 -0.078036 0.955869 2.650611 -6.785304 1.853259 3.424897 10.191355 7.420772 -1.085134 11.976991 4.861535 10.934654 3.034928 -6.512628 -2.381325 -8.510476 17.073196 -11.372561 5.712613 0.531731 4.921462 -0.652535 -11.224221 -4.960889 -12.995117 0.076877 4.607835 -8.140289 1.521660 -12.172030 3.552267 -3.775261 -4.515299 5.182315 3.665899 11.467608 4.717371 2.416114 -3.610484 -11.714343 4.808390 -2.153691 9.049448 7.901187 -6.553501 -3.098405 3.899586 -3.396023 -8.331308 4.474895 3.387545 1.767326 -3.086075 3.558221 -2.975405 -3.321758 -3.159163 -3.355358 8.437632 -8.519775 5.848918 -4.934454 -0.494073 -6.100561 -4.323359 -0.540095 -10.258431 5.311831 7.403248 -0.239329 -1.627187 -2.117990 1.840252 -5.462005 -12.039187 0.463614 -1.125200 3.443345 13.862604 -7.217339 1.113220 0.123423 -0.436838 -2.238565 12.814678 2.049458 5.737724 11.323287 15.735328 1.408185 -8.289670 -3.718054 3.550241 9.461143 11.826409 9.047007 -13.705311 -7.698174 -2.511040 2.851676 -17.939994 4.488899 5.925794 7.456036 3.837213 -13.031914 2.884686 -5.211407 14.460196 8.297213 5.147059 3.614524 -0.933800 -8.665102 13.752480 25.064619 -4.683069 8.156319 -6.570363 -7.016190 14.656514 -12.019319 8.199947 3.446357 1.691660 2.919731 -8.969916 -3.593918 11.707705 5.913448 7.466936 10.299832 2.562458 1.776718 -19.673013 -13.559357 0.410220 8.942119 -3.079153 19.183972 -9.101926 -6.334017 -3.202592 12.841325 -0.855649 -3.602452 0.151362 -7.083544 6.623075 -17.261250 -15.433850 18.890099 19.549018 1.894000 0.779401 12.281147 13.054680 -6.927250 -5.261703 -5.300068 6.701705 0.030309 -4.478013 -0.584251 0.291936 -12.272100 -6.464264 2.112955 4.010815 6.271488 -3.077158 -8.174117 4.688292 -15.057374 -8.646214 4.843016 -11.605573 -4.599432 0.904846 0.085668 0.743938 4.423914 -5.976149 -1.102834 7.529125 -7.974673 0.269630 6.299649 9.846358 4.543443 12.995892 9.752868 3.311611 12.712213 8.066790 -5.482199 24.183337 -1.824492 1.860750 3.591365 6.115765 -0.547343 5.813787 1.846932 -6.073574 -6.930239 -14.331609 7.070657 0.741951 8.551225 -9.510440 -10.202486 -11.275634 -6.847571 10.733609 8.349905 -0.896481 23.055408 -1.821590 1.468663 -23.577705 -1.379066 8.731352 -0.215356 10.273955 7.542558 -7.737569 -16.353308 -5.757651 -3.204098 0.922629 -6.089355 -10.995422 -7.435635 -6.334883 10.338419 -7.099971 4.961679 12.793587 0.398650 6.156151 -2.207270 -0.735951 -5.177101 -3.588225 4.437824 4.627755 -13.140626 13.915922 -3.928923 27.319957 -7.928839 9.050520 -10.230311 2.716586 -1.194758 -3.399093 -1.209970 17.032681 8.621311 3.125005 0.545675 0.093494 -6.319106 8.251672 --47.578252 3.412928 160.164822 49.687651 -98.213734 -164.110769 -67.815142 -256.616239 117.555911 48.603585 155.377613 14.065374 91.999010 -80.842689 6.677104 32.715011 66.319868 -76.265334 32.688866 -71.263020 -23.569391 176.772249 31.893721 -14.230886 13.508771 -179.818020 98.229998 35.036146 84.505380 118.381286 45.113121 -18.697242 -60.213302 68.092708 13.735180 88.348256 53.097499 50.243400 -73.638995 5.313470 5.717852 -29.126823 101.287645 -8.553977 167.814651 4.539591 69.912012 36.498212 -80.840592 -66.760990 -61.124903 107.055473 -122.043642 41.859252 1.401761 -32.948737 7.575018 -48.662717 -38.315263 -88.795466 -34.304391 -66.967013 -74.917751 27.903801 -89.435006 58.894750 -60.158696 -45.456358 -9.252261 -21.668463 100.172467 54.401299 37.236562 65.882809 -166.031798 17.549335 15.847744 46.362531 89.425621 -17.034283 -17.155038 -31.504452 -74.335511 -103.361347 111.971310 84.049049 31.056416 14.740412 -68.762548 27.613153 -34.880568 -21.575524 46.543448 66.192682 -101.784283 -11.285274 -6.574551 -33.726347 -59.004739 -146.272180 32.674995 -73.565359 49.040049 37.894169 -20.430495 -24.938452 -66.780749 15.800858 -105.174774 -103.335610 46.380609 -61.497701 17.060895 152.477608 -81.336093 -9.064653 -75.003848 -23.364362 18.096860 90.536701 41.565706 58.817482 100.529062 137.888793 58.328618 -110.705666 -83.002119 68.700176 116.648843 67.800776 49.551071 -106.437221 -74.843272 34.180505 -60.089342 -181.462687 -63.327716 59.356509 106.976164 8.240343 -62.211229 18.807433 -56.502912 118.659642 109.861897 25.481372 17.128707 20.250690 -122.413088 109.714769 176.012338 -34.221730 101.275291 -47.122934 -18.006485 110.699155 -105.533029 47.730384 36.177115 -14.812896 -46.245919 -57.783473 -22.779034 93.762060 51.335847 73.739503 -24.598347 74.643931 -54.759018 -167.781947 -179.699986 -10.556292 184.168890 22.097894 140.159362 -124.777291 -60.394716 6.707255 134.396999 20.224468 -85.069284 44.030084 -93.046760 84.568040 -177.983614 -157.613521 237.368407 202.527122 97.815980 20.860946 77.771716 121.662679 -151.370161 -48.443506 -47.669336 63.989406 -7.409408 -184.905049 -61.522417 23.587063 -134.963161 -96.773965 -6.287041 60.251849 36.338496 19.946380 64.270003 27.249058 -38.711878 -57.947092 84.927184 -60.734059 -73.327315 -1.011314 8.998454 38.639419 51.970074 -54.671203 39.788319 59.741162 -85.247186 24.452209 66.570302 71.540930 36.179188 172.584364 159.715182 -32.945335 87.260723 -4.596833 -61.588375 137.818844 -31.082708 51.240620 21.431393 35.530383 35.298412 26.393437 93.057107 -70.208902 -74.466063 -123.700240 -26.614439 41.972418 109.058772 -33.509811 -154.772961 -171.065512 -0.814188 51.675404 119.475480 -14.425869 206.705503 -50.984656 36.968042 -215.278243 7.576595 80.104799 -11.754039 87.970646 39.530705 -61.933165 -106.291623 -55.283714 -110.842477 -85.018963 -45.075209 -60.665568 -59.907600 -88.095229 127.741873 -79.850601 -3.956142 61.667252 12.460360 113.113341 0.142376 3.596013 -102.035271 31.781292 63.442844 8.666231 -99.830711 137.040964 16.806011 284.152853 -35.741654 48.370002 -43.287242 76.632865 -35.077424 -93.552151 -19.090937 160.348371 133.747176 23.509041 -14.198297 -9.427529 -12.124660 87.966051 --2.465755 4.053686 21.364598 11.539957 -10.990918 -16.449913 -7.877264 -21.920585 9.895175 -0.473934 13.512537 1.611780 2.828049 -2.016971 2.488994 -1.040932 1.993971 -3.970803 -0.337702 -5.929301 -2.594805 12.572487 7.400139 -13.807442 2.033641 -19.747212 8.906446 9.609802 8.511928 9.550936 0.490535 -3.500077 -5.699907 10.315347 -5.643467 -0.311164 4.184651 1.544312 -8.834783 0.243584 4.388102 8.923722 10.204041 -1.430290 13.230553 3.882044 9.699488 4.613314 -8.946150 -1.979622 -7.961382 19.083316 -9.796941 7.671275 2.695284 5.987029 -0.446301 -12.974807 -4.733268 -12.042004 -0.729875 2.875688 -7.443753 -0.059163 -10.138981 3.103855 -0.687765 -6.124041 7.243199 0.701690 12.299717 1.624741 1.042488 -2.125783 -11.328551 2.687442 -1.351050 10.267273 7.973403 -4.874390 -0.472897 2.453688 -4.517101 -7.587402 3.559739 2.932309 2.663205 -2.304432 0.737266 -2.123489 -0.554355 -4.749076 -1.377458 7.697418 -10.142165 4.654649 -5.896946 -2.307356 -8.970359 -6.032570 1.180703 -8.358845 6.495678 5.516139 -2.748461 -0.877192 -0.414784 2.683314 -5.680718 -12.181157 1.654406 -0.660205 3.464947 14.899032 -6.960564 -1.240090 1.496336 -3.058870 -4.346364 11.998629 2.436553 5.196083 10.177268 17.339368 2.919981 -9.145817 -5.945370 2.060110 10.249556 13.063536 9.427759 -13.568992 -7.131584 -0.309179 -0.064380 -20.312335 4.116087 4.799846 11.401799 5.556709 -13.112047 0.869211 -6.812833 14.808720 5.370717 7.008391 2.928604 -1.498299 -10.888057 13.023273 23.671347 -4.574585 10.565954 -5.274877 -4.921514 10.498893 -10.565444 7.964802 4.333875 -0.243003 3.640291 -7.731695 -5.368121 11.624968 7.120710 6.283177 7.369863 3.690662 -4.142098 -21.361303 -16.181766 -0.046344 10.964582 -3.185003 17.858710 -10.782076 -9.872499 -4.683246 16.912874 -4.983128 -5.247672 2.118356 -8.402851 8.109698 -13.351122 -14.925798 20.343918 23.171993 2.176391 0.538876 14.551073 10.417369 -10.100273 -6.365264 -5.754318 5.111338 2.636563 -6.096025 -1.504854 -1.066104 -12.062833 -5.962602 2.736900 5.173102 4.660846 -1.569465 -4.146226 7.242978 -13.788351 -8.990167 5.128601 -11.488815 -3.333549 3.157655 0.006427 0.544763 5.204903 -6.624049 -3.680634 7.224646 -9.079288 2.486715 6.285928 10.148093 4.568893 15.653348 9.395954 3.134526 17.580570 7.465177 -7.662142 24.919543 -4.524544 3.943402 3.502113 6.527289 -1.643856 5.665504 3.578347 -6.665121 -6.654742 -14.321920 4.315801 -0.978320 10.651761 -10.118340 -12.934014 -13.448221 -6.571409 9.765026 6.988556 -2.891997 23.005031 -2.029984 2.322456 -26.570329 -1.669734 10.470180 -0.970280 8.341223 6.444751 -8.229841 -22.147589 -3.884187 -6.154131 -2.066867 -5.363944 -10.350564 -7.558095 -8.644173 12.243650 -6.281209 4.370030 13.829586 -0.636802 6.601240 -4.546125 -1.066282 -3.301868 -5.266033 6.276539 3.064008 -14.281496 15.317100 -1.589695 32.307386 -5.126492 9.648283 -9.203763 1.980506 -0.674177 -4.304578 -2.132015 17.223867 10.597936 4.435574 -1.316393 0.879998 -8.027599 8.058033 --3.515205 3.862797 24.617274 13.384012 -11.100041 -18.379205 -8.829771 -24.532101 11.781475 0.485514 15.168950 1.281322 4.371152 -4.500814 1.727800 -1.301599 1.530534 -6.314045 2.228513 -6.365898 -3.196445 17.764275 10.018576 -14.878902 1.559843 -25.925145 14.831640 10.378951 11.541380 14.187137 0.436112 -3.520458 -3.914404 13.350241 -5.766609 0.157818 2.458341 3.172042 -7.885441 2.651659 5.579055 11.358645 11.155776 -1.206275 14.799603 7.049142 11.273392 4.620368 -9.542415 -2.968279 -9.307899 19.018468 -13.709285 7.423958 0.860333 6.006029 0.569235 -14.717204 -5.795211 -14.557369 -0.675410 3.518018 -9.491349 1.749598 -14.628914 3.968694 -3.988252 -6.605697 7.118929 3.192011 13.844731 5.277910 1.923091 -3.266156 -13.559974 5.504662 -0.923952 11.388817 10.021014 -7.735568 -2.878929 4.387057 -5.842588 -10.413245 5.170782 4.085500 3.483515 -3.077096 3.611256 -4.289146 -2.407811 -4.029850 -2.242055 10.567027 -9.279701 5.217835 -6.726143 -1.656357 -9.104322 -7.425649 0.198820 -11.466914 7.426276 9.131295 -3.098623 -2.060020 -1.416539 2.413852 -6.742881 -14.480202 0.780372 -3.089146 5.758792 17.766183 -7.734082 -0.371188 -1.054949 -2.422594 -2.426275 15.494424 2.497120 5.727344 14.576719 20.076794 2.156569 -10.726017 -6.272213 3.237222 11.005495 14.149219 11.366322 -17.299980 -9.283358 -2.431789 1.866012 -22.566869 4.399354 4.743501 10.007442 3.934264 -15.276021 4.532304 -7.523333 17.083460 9.361698 6.494717 4.088981 -1.371394 -11.728857 17.494264 29.488636 -5.258815 10.200402 -8.844245 -9.111005 17.096328 -13.388798 9.275979 4.539516 0.277673 2.683401 -10.155670 -3.243272 14.120260 6.126932 8.363403 11.846501 3.660966 0.375046 -23.508705 -17.556009 2.082643 12.815051 -2.719378 24.200564 -12.878822 -8.014220 -4.231137 17.504337 -1.240708 -4.566831 1.014880 -8.606595 8.768092 -20.273546 -19.266903 23.851564 24.164352 2.868643 1.199704 14.833820 14.609257 -8.844451 -6.614066 -7.157166 7.687629 1.529692 -6.298226 -1.221692 0.454483 -14.341495 -7.869951 2.815931 5.635705 8.677350 -4.898107 -9.312122 4.516818 -17.436904 -11.753550 6.597376 -14.233162 -4.800524 2.520058 -0.412586 0.653133 6.288890 -6.305921 -2.277990 7.250660 -9.170720 1.480258 7.769248 12.374626 4.921571 16.477882 12.716768 2.535070 15.698160 9.806370 -6.325844 29.547823 -3.317532 3.685051 5.343961 8.190114 -0.053240 6.982725 4.261730 -7.657183 -7.364612 -17.715934 7.862999 0.986165 10.588073 -13.295259 -12.424452 -16.541960 -8.330279 12.104188 10.409556 -1.319155 28.190395 -1.463801 1.505840 -28.686006 -2.055778 11.177704 -0.088596 12.289845 8.580585 -9.979912 -21.126488 -6.780946 -6.129201 0.265370 -7.494663 -12.040918 -9.634927 -7.103920 12.459788 -7.441076 6.069683 16.725741 -0.050056 6.489404 -3.827775 -0.723661 -6.409136 -5.773662 6.021356 4.296182 -15.623520 17.557592 -3.574641 33.857574 -8.016814 11.000815 -11.669364 3.546703 -0.834214 -5.346954 -1.924724 20.608775 10.112251 3.992677 0.669073 0.825991 -7.330736 11.046821 --15.815564 -4.163857 39.291473 20.138185 -19.542987 -43.783040 -17.941201 -54.056611 29.034120 7.809781 41.012946 6.557820 20.054135 -17.999428 9.161222 9.394197 14.392649 -20.380511 2.398049 -16.077627 -1.334493 47.751551 21.078606 -17.324624 2.307387 -42.424969 12.267538 16.740405 17.535126 27.602227 6.250126 -4.399019 -6.643911 17.720989 -9.790503 18.871157 7.562228 7.926312 -17.805343 -4.129127 5.433946 4.027673 27.012026 -4.595240 41.239149 -1.459306 31.202192 6.381378 -22.142178 -16.404678 -22.671245 42.848764 -29.628244 11.630157 -1.673153 3.150285 5.385419 -19.931496 -15.065691 -35.805060 -6.636616 -0.743113 -23.625462 1.364339 -18.529085 15.027696 -4.460833 -9.463967 4.910687 -1.486932 29.095833 10.886515 5.083559 5.649172 -35.341897 5.026700 -0.812074 14.559353 17.895922 -5.350079 -8.840943 -4.459160 -12.140869 -20.485141 27.513105 9.687884 6.941632 4.322453 -13.513928 7.108669 -11.417086 -6.530353 2.698622 13.078164 -26.961305 3.054851 14.429983 -9.037101 -18.018518 -14.644827 5.706748 -19.832491 8.425691 15.823313 5.146586 -4.129002 -22.453169 3.275132 -32.496453 -30.095170 9.323770 -8.766308 -5.482788 30.420080 -27.280206 4.841686 -6.446221 0.437783 -0.963293 27.757303 8.298912 18.910455 24.422335 36.452519 7.244449 -24.739817 -12.568909 10.222323 39.566789 21.044314 14.306569 -24.488333 -20.337337 6.131338 -11.144812 -45.745299 -11.584753 27.093233 29.814082 13.984580 -30.443089 10.765860 -8.402834 38.710078 26.348790 7.259130 4.018078 2.621506 -32.147046 30.208524 52.124696 -12.771970 31.184414 -9.592877 -8.716565 35.262979 -33.261862 14.601777 14.764680 -3.470257 -5.591280 -15.774520 -7.996681 24.588715 21.513683 19.472579 -2.460162 15.918783 -5.710109 -46.854151 -49.170660 -7.076891 33.140858 3.726792 44.651431 -26.398077 -22.075436 -4.221170 29.992989 -8.551282 -23.030472 6.237808 -25.249669 19.401094 -52.404207 -38.923650 66.171560 53.812107 23.509364 12.177283 33.359120 32.655411 -26.965405 -7.211209 -8.501635 19.174070 7.779966 -32.786400 -4.542854 1.018172 -35.283545 -26.511711 -5.811698 12.212519 -4.299844 2.561707 9.231667 7.291018 -22.127489 -4.889589 10.184686 -23.946611 -17.724996 -1.334419 0.380710 6.606121 10.281391 -13.942097 7.802808 13.983852 -28.564286 1.837112 13.224991 23.594952 20.307489 40.270751 45.172361 -4.181607 38.272899 2.183387 -17.568202 37.930249 -10.848074 7.386632 1.630343 14.830141 10.331274 6.480011 16.837705 -14.303118 -14.694856 -30.278947 8.619650 13.576594 27.788222 -16.135262 -36.948101 -39.220502 -7.458906 20.842376 30.352774 -10.300114 53.768272 -15.978242 7.467968 -69.136653 1.916481 18.169314 0.761882 15.076499 11.872683 -15.562211 -43.181670 -11.978462 -20.290462 -13.810840 -10.506032 -23.049259 -14.884359 -30.016712 35.834392 -31.813760 3.652508 22.407790 0.815240 27.951236 3.664300 -2.633916 -20.090686 4.159625 12.090068 8.382618 -25.318666 35.366039 -1.521859 76.363504 -13.812078 20.298667 -18.494197 23.526448 -10.019061 -18.262907 -2.533797 39.894579 38.138254 -0.990917 2.302616 0.033579 -7.741387 21.294954 --5.757331 4.180418 48.438410 14.583191 -28.614491 -56.462419 -19.568220 -83.475595 37.471800 15.049321 45.478738 4.458618 30.897281 -23.098148 0.265640 13.264133 18.071811 -17.821111 8.689892 -22.722733 -13.902436 57.060334 5.175890 -3.325416 5.377375 -55.624381 33.970636 14.108845 28.821076 38.167420 13.322101 -4.982917 -16.596727 21.656029 -1.153483 23.386029 11.303502 17.075262 -24.678543 3.334899 2.187512 -8.165459 33.096978 0.870708 48.456048 6.462147 19.997317 13.349028 -17.576036 -19.797080 -17.512159 29.991048 -33.397186 15.145138 -8.396762 -9.865070 2.448890 -13.256500 -8.151506 -20.348540 -7.624446 -17.662662 -27.000639 7.683556 -31.090417 15.100020 -19.080103 -20.252529 -5.397139 -7.974923 30.653324 13.791490 4.759942 11.333405 -59.005025 1.175249 5.495090 12.713689 28.997386 -4.291063 -6.034301 -11.670459 -28.221387 -33.211559 38.028511 30.614335 9.885529 8.967353 -22.435793 -0.701008 -10.746964 -4.846406 20.814812 22.693830 -28.189707 -1.921152 -5.443914 -9.121172 -18.787471 -48.360150 13.826515 -21.121862 17.568411 4.391068 -1.416707 -5.472083 -9.272775 5.946756 -27.603959 -32.744124 11.077650 -19.889237 8.260172 51.386622 -17.760594 -7.955099 -22.993383 -10.774742 1.947973 29.241866 15.968843 12.379440 36.877733 39.894583 17.118620 -35.577542 -27.502013 22.893967 29.976480 22.561445 14.613298 -35.495191 -22.788368 11.641402 -20.081012 -59.949174 -18.032030 15.598051 31.226071 -9.205166 -15.205765 12.342575 -18.906578 29.405547 35.096779 6.359381 8.098738 4.700751 -36.489029 31.796744 58.362467 -9.028022 28.358935 -20.428738 -10.147239 34.647241 -28.065858 13.521995 9.418336 -8.584762 -15.926864 -14.750777 0.878975 30.365234 9.398296 21.103911 -3.285899 22.984161 -24.165035 -47.269572 -54.373461 -3.363957 57.519091 9.210466 48.556185 -39.271213 -16.041683 1.845369 41.210175 6.058993 -21.305779 16.468547 -30.275187 27.239635 -55.970758 -48.018530 70.224576 58.656711 34.234907 2.477230 23.160295 35.043331 -40.776832 -18.188434 -14.655779 17.501019 3.486717 -57.789113 -19.156065 5.146628 -43.452275 -25.926339 -1.418857 19.085487 11.751424 6.745265 21.781855 -3.096641 -14.109892 -24.679545 27.593003 -19.576169 -14.724373 0.644038 2.568609 3.948635 15.496330 -16.147054 11.296357 17.190345 -21.846822 12.505428 20.193106 18.132425 7.432681 54.342073 48.766563 -14.703363 26.935840 -2.224369 -17.135573 46.462556 -10.527642 16.966913 8.266622 16.191091 8.631030 9.475795 29.109472 -21.927477 -20.523295 -39.417223 -9.917432 17.503629 29.703024 -5.057991 -40.781355 -55.534505 -2.867484 8.037380 44.770404 -2.547407 62.996096 -16.970609 16.372843 -64.019372 5.067688 20.522905 -5.272141 27.384461 12.581919 -20.537653 -28.372094 -15.915159 -35.313026 -32.694979 -14.481698 -21.303483 -21.003857 -23.819607 29.139818 -25.462264 -1.431569 22.086099 0.151426 31.276510 -12.791586 2.725639 -31.387358 10.152007 24.331707 -0.400416 -31.749786 34.774497 5.264954 88.059653 -7.197899 21.647878 -12.279693 24.039222 -12.805743 -33.185102 -9.554753 49.513404 37.037055 6.944605 -1.584712 -1.652824 1.642897 25.924683 --4.861676 1.950923 27.774701 17.703427 -12.838759 -21.049396 -10.880272 -28.574667 17.245803 1.275067 17.220630 3.203215 5.832393 -7.055252 0.470110 -2.360777 3.241089 -8.001659 1.057970 -7.921129 -1.944421 25.329515 11.813208 -20.696929 1.077682 -32.082812 17.054559 10.921912 13.393147 19.450303 1.238414 -2.701689 -3.932045 14.849329 -8.089244 0.645369 3.628484 3.339581 -11.093079 -0.295374 7.946913 13.408805 16.053667 -0.826218 19.240393 5.374323 12.129854 4.612480 -10.486572 -3.301626 -11.359885 21.065972 -14.642508 9.765234 -0.409500 7.315433 2.317369 -17.305952 -7.004587 -19.053425 -1.497587 4.874183 -11.374731 0.754662 -16.179624 5.357680 -2.639569 -7.619827 6.815389 0.255740 16.342581 6.310953 3.540843 -6.730688 -19.436053 6.169970 -1.651766 12.128881 12.034587 -5.386439 -4.507705 2.505823 -7.821404 -11.662855 6.935400 5.678922 1.753953 0.115399 4.218510 -6.105641 -3.725569 -4.833205 -1.511632 11.753661 -10.191536 6.287379 -4.689887 -2.627719 -7.832296 -6.595534 1.567435 -12.378585 7.565199 9.692129 -3.145958 0.089150 1.529342 3.064953 -8.470722 -15.526867 4.234791 -3.632115 4.338589 21.855203 -7.848422 -2.565025 -1.802378 -2.458313 -3.799530 19.052960 0.389743 8.191225 15.122139 22.636074 3.176553 -13.796076 -5.968320 6.578041 14.095264 14.623839 12.243751 -18.506265 -10.618140 -1.910046 2.861761 -26.346567 2.221940 6.771568 13.832178 3.208345 -17.640708 6.622251 -8.209393 21.705863 11.304451 5.565510 4.924089 -0.894908 -16.636253 19.908138 35.903546 -4.752797 11.780683 -12.609149 -10.856532 20.569572 -15.004258 11.958351 1.848048 -0.472234 3.292346 -11.312473 -0.242292 16.182390 5.374142 8.309488 10.329557 5.256468 -0.475384 -28.122360 -23.242188 -0.417219 15.753459 0.158496 30.760982 -15.005874 -9.966291 -6.647966 18.683970 -1.238961 -4.295933 3.146794 -12.335362 10.836346 -29.337593 -23.718437 32.072088 29.871214 6.147082 2.608761 17.815610 15.177634 -6.074567 -8.311365 -6.653287 8.398672 5.999971 -6.957723 -0.080411 -0.512808 -16.465014 -12.904407 4.149477 6.115226 9.286929 -7.315330 -7.339779 2.402740 -18.879925 -14.742796 8.738359 -17.896948 -6.540748 3.919343 0.577632 -0.705239 7.892129 -5.338000 -1.187342 8.193441 -8.406656 1.837977 7.885309 13.535701 4.312456 14.732739 19.327877 1.262317 19.928299 10.589633 -7.935552 37.194487 -7.379263 3.775070 6.083851 7.838777 2.379290 7.148802 4.555089 -9.047465 -3.560390 -19.899353 10.915955 1.879952 13.324041 -20.486448 -17.084094 -19.245277 -8.524955 11.609553 11.779180 -1.856870 34.101430 -5.087309 1.307744 -37.112334 -1.725887 16.318537 2.210405 13.712794 10.207977 -12.213999 -27.374784 -6.717529 -8.929799 2.517387 -10.471729 -16.636529 -11.625847 -8.901371 16.142789 -11.301897 8.270528 22.806796 -2.405131 9.370671 -8.418471 -0.806045 -9.210619 -7.416344 2.982994 5.068259 -16.525850 19.238439 -5.440699 38.624855 -9.566511 13.750224 -13.364497 10.208620 -4.829454 -9.428903 -2.644944 24.507053 11.317025 2.645318 2.087539 -0.882620 -7.968640 13.004599 --51.729426 5.535694 179.060278 61.916417 -106.790086 -177.092901 -75.295865 -274.188209 127.318925 49.230372 166.659161 16.532480 93.941226 -82.067842 8.954275 30.793101 66.408278 -80.747786 32.459289 -75.703576 -23.957048 189.450074 42.341574 -30.487184 14.280916 -197.961805 106.734048 43.011623 91.410678 128.033023 44.221948 -21.119297 -63.450579 78.667361 6.671248 87.844979 55.888948 52.503483 -79.528941 5.028103 10.934719 -17.265778 109.483299 -9.188271 181.310802 9.479476 78.557317 39.622709 -88.770701 -68.052444 -66.585995 122.873356 -131.916719 49.464777 2.546569 -24.913502 6.577548 -61.961955 -43.479306 -104.380371 -33.500373 -61.220642 -82.159478 27.825147 -98.879074 61.875807 -58.495358 -50.637366 -3.578536 -19.994441 112.158010 56.514202 38.171509 60.983727 -175.347160 20.387080 13.493632 54.700555 96.590986 -22.627278 -21.298120 -28.927228 -77.325754 -110.432502 113.940449 86.397787 31.858138 13.555324 -63.949529 24.869528 -35.809122 -26.342853 43.229108 75.129053 -109.272703 -5.640694 -8.042481 -34.719434 -65.253304 -146.867976 33.406558 -81.972731 55.011485 44.450698 -21.121722 -25.462520 -65.881477 19.184626 -110.746607 -113.622460 48.428616 -61.338371 20.494436 163.369579 -86.442992 -8.855604 -71.755126 -25.824981 15.009442 103.044012 42.988734 63.527886 110.543687 153.805988 59.415572 -118.529282 -86.701252 70.949080 126.076359 79.822021 57.944394 -119.807027 -81.199515 33.501131 -57.990083 -197.414554 -59.098666 64.678731 115.914740 11.344584 -76.020624 21.538639 -61.424082 132.803355 115.811768 32.060885 19.560635 18.718696 -132.177785 121.618653 199.933142 -37.508294 109.340541 -51.888348 -23.873514 122.719666 -116.941877 56.598156 39.970117 -14.565032 -42.851596 -65.502308 -25.930831 104.217376 57.803899 79.907020 -17.174053 77.430092 -56.420849 -186.401726 -193.507815 -12.365256 192.619144 20.405267 159.632092 -133.541149 -69.023884 1.227067 147.600835 17.657404 -87.960874 44.902273 -99.646402 91.456199 -193.310617 -170.950163 255.447737 223.004843 101.670495 21.440478 92.334059 130.313284 -154.732670 -54.430602 -51.380949 68.827081 -4.649293 -184.298707 -60.790063 22.241297 -146.027423 -103.752497 -4.468612 64.125892 40.537288 16.849912 56.729672 33.641753 -52.238864 -65.829261 86.661543 -71.999818 -77.140557 1.168902 9.774547 38.077339 54.994650 -59.928599 36.981193 65.939617 -92.237661 26.683005 72.988168 80.048156 40.456894 183.281440 169.064256 -30.600764 101.908919 3.060876 -66.687620 162.237431 -34.697085 53.941464 25.488970 41.196285 34.813304 30.362377 94.637575 -75.703823 -77.290236 -135.635043 -18.775613 42.343544 118.665405 -46.942445 -165.968021 -181.061837 -6.942624 61.009909 125.328613 -16.965322 227.795668 -52.215554 39.798633 -240.785971 6.393930 90.037548 -11.857366 94.414299 46.393382 -69.615859 -128.811470 -58.719552 -114.493949 -84.528943 -51.060567 -70.853856 -66.391442 -94.172936 136.641982 -85.979795 0.905471 76.753194 10.820213 118.110489 -5.453800 2.814793 -104.754506 25.340990 66.597349 11.694635 -112.692310 149.237292 13.629278 311.902051 -42.651262 58.632217 -52.033446 80.899884 -37.440340 -96.209541 -20.252126 176.025824 141.367473 26.403054 -13.477936 -9.160061 -19.480514 94.363882 --1.565060 3.827647 18.665707 10.960728 -9.714805 -14.790675 -6.599230 -18.466580 7.823085 -0.977039 11.716600 0.700993 2.506344 -0.668246 2.274721 -0.777464 2.638886 -3.850403 0.949820 -5.320251 -3.364182 11.596413 6.205033 -12.158913 1.563349 -17.634802 9.957288 8.730260 7.305451 9.486529 0.965634 -3.003484 -3.833587 9.048594 -4.728599 -1.339165 2.890550 1.422888 -7.661435 1.309543 3.865699 7.267673 9.747164 -1.050662 9.796273 4.547085 9.845126 4.410832 -7.638290 -1.091205 -9.327052 16.254591 -9.243209 6.141491 0.697883 4.577202 1.304734 -11.447807 -4.748674 -9.982005 -1.368660 2.558995 -7.110717 0.170089 -10.149218 3.079129 -2.310181 -5.637186 6.567364 3.264442 10.888552 2.854732 1.579990 -2.246387 -10.806144 3.241872 -1.530791 9.699833 6.826055 -5.847671 -0.361884 3.489376 -5.027323 -6.741953 3.530517 1.860912 2.970179 -3.181700 1.891019 -2.290881 -1.635302 -3.257813 -2.120418 6.727316 -6.922848 5.363533 -6.260728 -1.623354 -8.312837 -6.121679 0.197244 -7.850558 5.622264 6.037597 -2.556885 -0.606054 -0.943629 2.275211 -5.053862 -11.707726 0.918608 -1.407391 2.358881 13.027706 -6.046921 -1.335856 1.078437 -1.983548 -2.982623 10.867827 1.697617 5.001556 9.312043 15.530644 1.517986 -7.738076 -4.727143 0.951026 8.557490 11.468808 9.434700 -11.542935 -7.242007 -1.555211 0.550449 -17.591980 4.624581 4.634018 9.503302 4.046003 -12.275381 1.830122 -6.606561 13.509787 5.867023 7.100647 3.186467 -1.290763 -9.036108 12.473601 21.345698 -4.504182 9.478013 -6.499297 -4.351004 10.606864 -8.480469 6.538372 3.253235 0.273150 3.010327 -7.297081 -4.814036 10.360844 6.810690 5.047358 9.458589 2.840730 -2.054637 -18.778361 -12.975255 1.141719 10.129977 -3.145438 16.886697 -10.013394 -7.800460 -3.475733 12.770662 -3.676644 -4.483076 1.286752 -6.664066 6.651390 -14.694690 -14.030564 17.814044 17.496172 0.818551 0.590035 11.529807 9.961641 -8.257740 -5.881039 -5.605033 5.722595 1.512012 -5.170441 -1.327370 -0.464488 -10.756701 -4.908572 2.918322 4.944665 6.169918 -3.303249 -5.706820 4.561823 -13.952171 -8.353701 5.393565 -11.619513 -4.108862 3.376264 -0.943269 0.914748 4.302368 -4.159283 -2.488604 6.191309 -8.021020 0.695043 5.292227 9.865165 3.529007 13.809773 9.608039 3.409366 13.971995 7.671652 -6.867676 22.691118 -3.577621 3.019711 3.001995 6.079969 -1.526710 5.035697 4.153617 -5.506043 -7.379271 -13.352662 5.395918 -0.714127 9.142854 -9.234403 -9.323507 -12.317215 -6.047879 9.436160 8.279699 -2.321129 20.462207 -1.422150 1.403195 -22.179322 -1.666646 8.756270 0.089355 7.905710 6.229653 -7.482553 -16.446710 -3.718172 -5.350939 0.248487 -4.969876 -9.480831 -7.780163 -6.500585 8.529429 -5.472741 3.880388 12.887384 -1.395464 5.524972 -2.991190 -1.658498 -2.768661 -4.632682 6.409322 3.560628 -12.269456 14.667625 -2.462913 28.671351 -4.175470 7.892261 -8.838334 0.798346 0.072973 -2.930640 -1.832966 15.607237 8.413012 3.348099 0.435517 0.544093 -5.721347 7.728514 -0.983423 0.901173 1.845391 0.257231 -0.749077 -1.546549 -0.526177 -2.694132 0.990929 0.386055 0.885039 -0.712517 0.901742 -0.897011 -0.249738 0.450601 -0.265185 0.209310 0.606509 -0.698330 -0.215875 1.834676 -1.061517 -0.019456 0.108619 -2.260050 0.338102 0.537385 1.844398 0.775660 -0.281873 -1.154257 -0.571837 0.314101 -0.541836 -0.567212 0.541413 0.046188 -1.775022 0.891426 -1.221858 0.152840 0.805846 0.219579 0.237661 -0.092923 0.360468 0.963179 -0.203920 0.664840 -0.815074 1.809251 0.365484 0.745746 0.517509 -1.088763 -0.743673 0.032348 -0.747895 0.966042 -0.485284 -0.080195 0.131535 -0.127187 -1.321564 -0.163262 -0.907408 -0.794413 -0.332401 0.289837 0.439561 0.844247 0.371635 -0.413923 -2.870814 0.361489 -0.076288 0.731047 0.450291 -0.152671 0.869285 -0.003472 -1.275643 -1.405649 1.266054 1.843785 0.389072 -0.076740 -0.660120 -1.161428 -0.253823 -0.501071 0.508565 0.102287 -0.424399 0.559981 -2.074047 0.116238 -0.525311 -1.863377 -0.230814 -0.008065 0.351486 -0.776394 1.051786 -0.590576 0.914871 0.939743 -0.378281 -0.333542 0.275163 0.373856 -0.271471 2.483628 0.097746 -0.563009 -0.512216 -0.199101 -1.478913 0.798503 0.314332 0.309782 0.444842 1.484570 1.439453 -0.960854 -0.538039 1.065255 0.274782 1.033592 0.609924 -2.013881 -0.523754 0.816839 -0.039065 -2.056377 -0.127625 0.343627 0.771980 -1.080087 0.306423 -0.105416 -1.146952 1.240701 -0.258092 -0.666866 0.672706 -0.447780 -0.911801 1.625633 2.268212 -0.499819 0.614502 -1.666740 0.404205 -0.393289 0.153230 0.590576 -0.385493 -0.665764 0.014313 -0.259534 0.409013 1.137836 0.680708 -0.196096 -0.129190 1.018329 -1.943094 -1.382536 -1.638132 -0.153192 1.037035 -1.399598 1.654493 -0.385641 -1.914883 -0.878554 1.365924 -0.083265 0.018386 0.997471 -1.698014 0.787188 -0.428891 -0.962186 2.100434 2.205699 0.718789 -0.809722 1.056498 0.914173 -1.741288 -1.728998 0.418687 0.090189 -0.090760 -3.174351 -1.444513 0.089617 -1.633808 -0.104407 0.377423 0.373261 0.413908 1.335324 1.191948 -0.558429 -0.752691 -1.148801 1.603453 -1.170324 0.658647 0.775352 -0.277782 -0.599805 1.786237 -1.552762 0.375057 1.280909 -0.721356 1.024046 -0.055246 0.235329 -0.375444 1.568374 1.297429 0.866523 2.378064 0.605300 -1.330852 1.645148 0.107875 0.268130 0.303589 -0.553077 -0.939843 0.918205 0.062035 -0.638880 -0.739448 -1.090575 -0.383938 0.234182 0.640335 1.375375 -1.355861 -1.180605 -0.025303 -0.006091 0.774588 0.493913 1.159982 -0.629191 0.831809 -1.661501 0.373292 -0.508712 0.221966 0.562582 0.115147 -0.740360 -1.332478 0.113899 -1.068606 -1.822410 -1.521434 -1.399784 -0.362031 -1.067918 0.898019 -0.224007 0.311950 0.860421 0.234297 0.906001 -1.122739 -0.240547 -1.261749 0.830830 1.342357 -0.366019 -1.238678 -0.135394 -0.131279 3.561456 -0.125095 0.838483 -1.151060 -0.340005 0.404347 -1.475356 0.000351 2.050367 0.342987 1.104469 -0.564396 -0.267696 -0.320396 0.564534 -4.463729 10.376292 26.226452 10.942870 -21.323427 -24.860247 -8.248814 -39.173928 15.930961 2.733787 11.584459 2.670543 5.371071 -10.197160 -2.358775 10.222700 7.212191 -1.750501 -0.523304 -11.514001 -16.191151 15.235258 -1.443800 -8.678604 9.159858 -27.585760 19.185339 7.049187 14.945465 9.924528 9.319346 -3.070209 -9.010997 16.007002 5.170125 7.268343 6.391560 3.355299 -17.366820 6.822021 1.741624 1.197546 15.739054 4.300797 19.863017 6.952262 11.628472 10.120509 -11.751184 1.983863 -12.389069 23.035313 -11.869090 12.095850 -0.492251 1.251316 -1.340131 -15.542436 -1.772468 0.602072 -9.309578 -8.216258 -11.085264 1.127701 -17.810540 1.423124 -6.409341 -12.154111 0.972509 8.624663 15.407279 6.671592 -0.369736 0.925266 -22.575208 1.354228 4.504750 13.181422 17.854963 -5.358769 4.587605 -2.039605 -12.844185 -15.549274 15.058355 8.166197 6.218154 -1.519536 -1.161773 -9.339517 -6.634065 -8.766117 7.762050 11.796870 -16.704657 -0.157601 -15.042357 -5.085802 -15.011995 -24.271784 3.319375 -8.029461 10.899316 -3.034265 -4.308435 3.004005 6.141579 3.956185 -3.215047 -8.271238 2.434832 -6.079508 8.416778 27.417335 1.508703 -9.537527 -4.035516 -7.262806 -7.365616 12.319948 6.347696 1.488939 24.386931 22.725487 11.361159 -9.670402 -10.945722 3.493378 4.322274 15.578920 14.059897 -21.154248 -11.002208 3.555732 0.938768 -28.118141 2.517716 0.646292 12.279088 -3.162884 -6.475490 -3.118048 -7.363140 12.056211 4.527109 1.072117 6.210461 -1.783148 -11.673338 17.743434 31.615279 -3.540941 8.083823 -14.971233 0.468763 10.896427 -9.832432 4.791685 0.873097 -6.994490 -1.355859 -6.501968 -3.508713 14.403637 2.093058 -4.017594 8.613905 8.856097 -16.031784 -24.227812 -18.651126 3.706719 19.422491 -4.380323 25.079194 -17.718302 -7.281149 -8.843212 19.501380 1.285275 -1.240782 8.629006 -15.836501 12.362809 -9.340280 -20.420491 30.733659 26.145178 6.246066 -5.566085 12.234037 12.643299 -25.417435 -16.752959 -9.024436 -0.104240 6.333971 -22.744441 -13.024450 3.833813 -20.123953 -6.485404 4.339632 8.214870 17.578366 4.229454 2.357836 2.089709 -13.144577 -18.581860 12.897504 -9.255887 -3.624807 7.119149 2.517914 2.416368 12.542715 -6.004370 -4.444161 4.065956 -7.200683 4.589439 9.150854 17.152033 -0.840306 22.799688 17.803352 1.787490 21.388455 8.536712 -10.774124 25.161130 -0.240053 9.873593 8.178653 2.302151 -3.220574 6.472636 12.121020 -10.908914 -10.276826 -18.334119 -0.445864 -1.924630 9.742654 -6.368660 -10.961970 -22.883654 -7.453075 5.412122 8.867645 -1.240447 25.715863 -2.583362 2.765477 -29.325423 -1.373136 12.869330 -0.398217 15.312389 9.184964 -15.105910 -12.776217 -7.087048 -15.322093 -13.804010 -7.161973 -2.035621 -12.551797 -4.543109 14.344067 -4.212166 2.548882 21.791123 -1.383718 9.834640 -15.585690 4.588738 -8.868045 -3.285070 18.874274 -0.198153 -16.337673 16.373803 0.603252 44.332443 0.863329 7.957521 -7.996520 -5.993866 3.469217 -10.842544 -7.272204 21.074610 8.795745 8.077989 1.677871 -0.275774 -3.340409 18.906223 --5.647962 -2.319391 21.227523 13.024992 -13.210392 -23.798942 -9.193707 -33.001911 18.830216 4.836661 19.153357 4.645516 12.085955 -15.533082 0.115458 1.961120 8.430637 -7.736006 -0.174672 -9.921226 -0.565463 26.685122 4.994260 -12.666825 2.261035 -26.586739 12.712255 9.804763 11.158231 16.820401 4.667242 -0.989494 -7.420053 10.237677 -5.000328 8.389433 5.779015 4.668897 -12.610523 -3.809790 4.739054 4.474638 16.120651 -2.877478 23.435538 -0.630704 11.302449 5.077982 -10.602038 -8.663450 -6.868753 16.006007 -12.190966 8.525024 -1.348963 0.558839 2.188093 -10.792963 -5.188410 -15.251019 -0.745922 -1.501911 -11.123506 0.843810 -11.999152 6.120915 0.240450 -8.417785 2.449558 -6.666541 13.348795 4.539460 1.486761 -1.906216 -21.644309 0.888864 1.993783 7.242803 11.638206 1.281847 -2.695315 -6.752696 -9.512989 -10.777379 12.800777 10.840703 2.988836 6.716762 -7.452505 -2.208772 -2.233479 -4.341273 6.606984 7.243803 -13.491267 -3.124503 1.594959 -4.082386 -6.611179 -10.296407 6.341566 -7.842916 6.716993 5.723521 -1.671665 1.415382 -0.469813 2.508196 -13.610906 -11.441415 5.247016 -7.556559 4.824362 22.708284 -8.221213 -4.270445 -9.578283 -3.412614 -1.804664 14.840739 1.913458 6.961881 16.284643 19.368818 6.521750 -16.606313 -10.244102 10.562417 16.069005 11.385098 6.705488 -16.365293 -8.731955 3.529178 -7.211227 -25.706817 -8.038373 5.167554 16.252712 0.400896 -12.299670 7.140464 -6.696584 18.938297 12.089662 0.597598 2.681218 2.904993 -18.361017 16.204224 27.557836 -2.854107 11.552268 -9.572708 -6.588497 14.750622 -11.292594 6.984173 4.371333 -5.492044 -3.946354 -6.528436 2.983222 12.789880 3.586925 9.036465 -3.673604 10.350508 -7.801399 -24.280696 -27.034075 -2.347394 19.141662 6.349102 28.495449 -16.804404 -10.736504 -4.772022 18.018373 -1.642451 -8.364901 7.054759 -16.251763 12.297556 -24.705770 -22.081113 34.809086 30.009182 14.660981 3.836400 17.151976 11.866920 -12.669368 -4.582837 -3.891169 6.424279 8.764336 -18.929850 -1.581990 1.998055 -18.604195 -16.518324 0.870927 7.039628 2.378797 0.040630 7.332118 -1.350132 -8.603103 -10.880276 10.159042 -10.454724 -3.879250 0.644112 1.652696 1.816102 8.527130 -8.202862 2.027796 5.147141 -8.104917 4.976213 6.437766 10.817902 5.871671 16.606140 23.428217 -5.174425 20.140336 1.338379 -8.871778 25.810742 -5.609535 6.617284 4.350187 6.513069 6.747128 3.538803 8.984270 -9.673648 -0.419803 -17.369755 0.474316 7.679821 14.340185 -14.089862 -17.968406 -23.313917 -4.209326 3.998981 14.050106 -3.171957 29.570710 -10.185486 3.682341 -35.932473 0.576532 12.554694 0.631221 9.530408 6.137232 -10.277118 -24.482901 -5.112449 -14.484840 -10.025413 -7.852788 -11.727452 -10.163176 -12.094236 19.116018 -12.788418 2.341334 18.030897 -1.178315 12.995393 -8.724141 2.181959 -10.588360 -1.426100 1.099606 2.624568 -14.222604 15.437404 0.194062 38.219197 -4.360271 11.393079 -8.208814 15.915602 -8.048832 -17.501794 -3.671989 21.108896 15.841306 1.310934 1.340999 -0.899769 -4.005520 13.900799 --3.922713 -0.686367 17.787936 11.273979 -12.746697 -21.505863 -7.803955 -28.863715 15.498994 4.251554 16.373575 3.729299 10.757963 -12.198427 -0.011935 2.135389 8.137863 -5.663982 -0.183272 -9.177423 -3.182944 22.590675 3.483645 -9.545446 2.093517 -20.802282 11.779225 8.480510 9.433279 13.815333 4.766592 -0.646986 -6.903154 8.534940 -3.962960 7.098137 3.556920 4.787951 -11.091272 -2.677803 4.248830 1.240896 14.717535 -1.809314 18.922924 0.118099 10.129118 4.858811 -9.383417 -7.479373 -6.353220 12.913931 -10.454096 7.214500 -1.944044 -0.601077 2.790454 -8.115152 -3.594418 -10.955060 -1.181876 -3.076630 -10.327090 0.984944 -10.876690 5.016205 -1.538794 -8.397540 1.328440 -5.431020 11.175960 3.460312 0.361493 -1.484443 -19.618737 0.039286 2.124087 5.835457 10.460319 1.975757 -1.867526 -6.041784 -9.653317 -9.817267 11.693177 8.857504 3.181950 5.715860 -7.606822 -2.297535 -1.709826 -3.047166 6.843105 6.204507 -11.504322 -1.984097 0.297864 -4.007489 -7.194638 -11.231457 5.906011 -6.300428 6.258840 3.556687 -2.443204 0.699216 -0.969059 1.357063 -11.182585 -10.632830 3.536434 -7.508178 4.271740 19.960918 -6.612403 -4.522245 -8.428104 -3.573204 -1.299314 11.994960 3.129027 5.103555 14.556574 15.939180 5.761286 -14.395261 -9.115645 8.217329 12.618195 9.478629 5.988925 -12.909275 -8.148436 3.571807 -6.804378 -22.451848 -6.774082 4.923633 13.699498 -0.501589 -9.232267 6.175780 -6.360027 14.485811 10.471101 1.504033 2.775187 2.125424 -15.180886 12.879704 22.558878 -2.394394 10.078710 -8.051652 -6.031307 13.474598 -8.878252 5.370221 3.919755 -5.329499 -4.765995 -4.924073 2.535576 10.974967 2.387758 6.625478 -2.186718 8.838228 -7.793327 -20.048376 -22.936170 -0.937813 17.787401 6.402541 23.479150 -15.118780 -7.795474 -2.632749 14.721258 -0.996748 -7.704651 6.422897 -13.334425 10.634420 -21.479693 -18.879826 28.939940 23.700924 12.042056 2.620572 13.377863 9.544874 -11.614756 -5.304406 -4.565243 5.809315 6.948072 -16.757948 -1.951334 2.095873 -16.369812 -12.350946 0.752998 6.705408 3.100062 -0.823952 7.200881 -3.125330 -6.947623 -10.107456 9.204010 -8.273933 -3.071888 0.945289 0.915381 1.308131 7.077380 -5.793585 1.555136 2.992486 -6.836399 4.295981 5.142093 9.052730 4.094454 16.283861 20.158801 -5.544773 15.844576 0.471909 -7.587355 22.093390 -5.401297 6.234512 3.363368 7.070865 5.263684 2.996273 9.498762 -8.278527 -1.633949 -14.635061 -0.916520 6.965316 11.612589 -11.627748 -14.183670 -21.490197 -2.949942 2.381637 13.739513 -2.953460 24.746721 -8.845924 3.622934 -29.408401 0.955998 9.862419 -0.015677 8.981116 5.066311 -9.118382 -17.589313 -4.658552 -13.242741 -8.449461 -5.802083 -8.928825 -9.008873 -8.929160 13.915822 -10.718161 1.170363 14.351125 -2.285402 10.862089 -7.237184 1.906270 -8.612761 -0.771423 3.514272 1.715149 -11.937588 13.851689 0.625593 33.161339 -1.840623 9.869594 -6.139080 12.434674 -6.065535 -15.564454 -4.162630 18.149007 13.546739 1.172120 1.358619 -0.206774 -1.802593 11.552289 --5.017605 7.363694 35.228808 21.511088 -21.800948 -30.092784 -14.510285 -39.301035 17.288329 0.348143 23.157281 1.970700 6.822637 -7.146619 1.639669 -4.212688 6.074390 -6.646035 0.113787 -11.709830 -10.644755 24.018456 9.685485 -24.079208 4.824851 -34.755177 23.615479 17.028640 11.967119 18.874998 2.358030 -3.363609 -10.616768 19.045465 -8.573658 0.093585 6.675343 5.076234 -13.048460 0.980501 11.763729 13.692360 21.237925 -1.502456 22.040589 11.055699 12.760508 9.047447 -18.091671 -4.650386 -10.436424 24.391561 -16.796570 13.741253 2.042848 8.590680 4.975270 -23.009495 -6.201241 -18.986838 -1.048704 0.859682 -13.505536 0.849183 -19.646705 4.466396 -1.340946 -13.521123 11.966930 -0.277925 19.371899 3.396664 -0.863314 -4.994988 -19.198939 4.795474 2.173161 16.398073 15.797759 -6.555833 -1.492634 2.738072 -13.151958 -15.496310 7.896714 6.090548 7.631376 -0.851245 0.747054 -7.751816 1.273373 -7.394455 1.730794 14.922093 -12.742535 4.240275 -9.828959 -5.446486 -16.846364 -14.202997 3.894298 -13.229936 12.544283 12.185610 -10.923893 -1.772390 1.704325 4.680951 -9.484548 -19.672077 2.642245 -8.288590 10.897004 28.051546 -8.120289 -6.381997 -3.452657 -8.381885 -3.810664 21.895652 3.607872 5.499493 22.565935 30.166380 4.933752 -17.336153 -12.580570 3.543620 14.893220 20.162076 16.169425 -25.767081 -13.075225 -0.132184 -3.060506 -34.211227 3.212221 2.941194 19.145415 3.602830 -21.749284 8.540333 -13.206891 22.610295 10.437624 11.307038 4.949625 -1.712688 -19.818995 23.689996 38.654077 -6.443266 15.292710 -12.601985 -13.798920 20.391743 -13.618686 11.469087 7.633502 -4.485679 1.657159 -11.939420 -1.768427 20.334869 7.061904 9.260368 12.787092 7.376795 -7.554628 -33.504855 -29.831485 5.135245 22.318345 0.065914 37.978259 -22.609174 -13.696129 -7.700808 29.637980 -5.509320 -8.076428 4.508615 -13.786899 14.741294 -26.160656 -28.383739 36.615924 35.163874 5.619074 0.426130 22.856193 14.762300 -14.240445 -11.505095 -12.160648 9.358020 7.421653 -9.557002 -1.530862 1.114761 -20.935696 -10.736610 5.039440 10.012228 13.258121 -9.022010 -8.247967 2.730392 -22.553419 -19.519137 10.756025 -18.868787 -3.770524 6.601774 -1.479449 0.476917 11.156655 -7.241847 -7.183334 5.731358 -12.356659 4.544086 10.025920 18.582899 5.611420 27.051592 20.672385 0.024373 25.112806 12.610788 -10.882449 44.843910 -8.362386 8.189484 8.003952 14.080243 1.444488 9.061768 11.979142 -11.689248 -7.870429 -26.635756 7.568714 1.713645 15.948905 -25.712707 -17.267194 -31.134372 -11.097206 12.301879 16.818283 -4.061365 41.048661 -2.842204 1.775662 -43.505053 -2.961488 17.894436 -1.065895 14.995109 10.474748 -16.134598 -35.399098 -7.433298 -15.557055 -3.584437 -9.828888 -14.251706 -15.818364 -9.580299 17.252442 -8.999109 8.158444 28.320016 -2.616247 7.878018 -9.815042 -0.293487 -7.320269 -11.561311 10.226749 2.637210 -22.754676 26.430072 -1.726507 53.227136 -6.086834 17.077687 -14.707540 6.631670 -1.353579 -12.819993 -5.648682 29.194872 15.428557 6.493217 1.615551 3.710624 -10.491757 18.150125 -2.367234 5.766058 15.833654 7.733544 -10.740570 -13.268331 -5.007174 -20.600742 8.933605 0.450043 7.166523 0.983821 2.227121 -4.358408 -1.337634 2.620377 2.795884 -0.625808 -0.747454 -5.938710 -7.331786 8.572087 0.855644 -7.354759 4.275080 -16.214772 9.596975 5.369124 8.863807 6.030809 3.080752 -2.253872 -4.825339 8.996621 -0.080575 0.837672 3.360128 1.081435 -9.814091 2.613084 1.921278 3.653282 9.147598 1.633966 9.900670 3.650689 5.636028 4.949779 -6.430807 0.905586 -5.853071 13.174747 -5.904539 6.926487 1.006847 2.225296 -0.616398 -9.439631 -1.088428 -1.464837 -3.406104 -1.878642 -5.205059 0.339870 -9.674989 0.648040 -2.925189 -6.930928 2.854997 2.467046 8.567453 2.956890 -0.122112 -1.314047 -11.274107 1.756430 1.998400 7.859049 8.888073 -2.601169 2.703032 0.180232 -6.348966 -7.599203 5.884283 4.089450 3.078413 -0.682993 0.072551 -6.028043 -1.237472 -4.689334 3.051989 6.331723 -8.537890 1.178505 -9.133001 -2.773843 -7.824538 -11.598641 1.190032 -4.794072 6.135121 -0.546603 -3.416707 1.961730 4.203368 2.431689 -0.820699 -5.914719 1.181557 -2.126656 5.140652 15.520800 -0.530221 -5.383069 -1.555867 -3.686546 -5.154047 7.651726 2.504811 1.209468 11.817842 12.593324 4.940295 -6.016738 -5.335321 1.673896 2.744342 9.292184 8.285561 -11.230843 -5.748442 0.907759 1.082749 -16.561011 2.303451 -0.120885 7.521599 -0.165320 -5.167778 -1.151902 -4.998378 7.890252 2.355277 1.611359 3.667840 -1.596986 -6.900761 9.961864 17.487043 -2.413332 5.165307 -7.930962 -2.220779 5.829166 -5.506497 4.076441 0.021397 -3.129459 1.534360 -4.423840 -1.563951 8.730232 0.975116 -1.003308 5.503014 3.898355 -7.361025 -14.544968 -11.191582 2.236882 9.151439 -2.511303 13.928217 -9.276151 -5.315893 -5.158228 12.089325 -0.715494 -0.656613 4.286703 -8.412131 6.619320 -6.346146 -11.845608 16.102904 16.425891 2.301591 -2.618294 7.797407 6.405438 -11.293317 -8.467087 -5.006757 0.453533 3.910405 -10.341784 -5.874633 0.953738 -9.735935 -3.299919 3.309690 4.208349 8.845446 0.066133 -0.191329 1.426624 -8.870755 -10.849136 7.131019 -6.723241 -0.793700 4.150587 0.900510 0.495510 7.026637 -3.868932 -3.839274 2.986551 -4.104656 2.598019 4.467407 9.439261 -0.134595 11.915224 8.448170 1.733490 13.008857 5.852361 -6.282572 17.333171 -2.393295 4.909679 4.228210 2.553579 -2.476672 4.679786 5.087527 -5.988065 -4.850875 -10.470164 0.742272 -1.673230 5.524039 -5.694825 -7.244787 -12.103512 -5.040194 3.518026 3.941193 -0.435942 15.669573 -1.623099 1.087525 -17.196936 -1.392808 7.946439 -0.212764 9.144704 5.348000 -8.474179 -10.667790 -3.625641 -7.850584 -4.706661 -4.269694 -4.034612 -6.672911 -3.045700 8.792488 -2.369139 3.081499 12.239279 -0.773128 4.859419 -8.466948 1.657157 -4.085459 -3.491278 8.743839 0.370466 -9.699087 9.326751 -0.236974 23.782483 -0.408168 5.485612 -5.829591 -2.731071 1.543633 -5.756807 -3.985684 12.270132 5.293669 4.612587 -0.379138 -0.109342 -3.759078 9.324664 --3.293365 3.765558 23.106608 14.573591 -11.850839 -17.542747 -8.849806 -23.125127 11.508581 0.376656 14.473534 1.296149 3.951170 -3.205558 0.717677 -3.602872 2.409391 -5.851953 0.721794 -6.633080 -5.090088 16.454503 8.182664 -16.471735 1.777634 -24.346743 15.876889 10.100964 8.590590 13.975312 0.583577 -2.472053 -4.352773 12.686978 -6.136197 -0.963099 3.122400 3.079390 -6.804150 0.728989 7.870666 10.354036 13.295071 -0.202195 13.360642 7.298744 9.025664 4.501383 -9.879707 -2.319313 -8.156981 15.089730 -12.158628 7.940493 -0.187093 6.719377 2.950617 -15.320055 -4.870744 -13.879939 -0.391991 3.074820 -8.794845 0.578920 -13.360848 3.294283 -1.740209 -7.685512 7.347952 0.813256 13.011247 4.112528 1.083685 -4.785798 -12.878641 4.502923 -0.285228 9.971060 9.545386 -6.041202 -3.159401 3.288352 -7.714665 -9.523845 4.458625 3.508470 3.598059 -1.307020 3.787361 -5.309827 -0.593798 -3.734262 -1.331926 10.509351 -6.886064 4.763080 -6.091537 -2.432211 -9.259466 -6.901525 1.092100 -9.993099 7.593839 9.324203 -6.059171 -0.591859 1.281899 2.566818 -5.899702 -13.227251 1.358178 -4.395641 6.226916 16.324873 -5.872979 -3.292927 -1.071007 -3.958037 -1.546289 14.523235 1.095338 4.298893 14.494957 18.723884 2.273610 -11.042716 -5.914163 2.518665 9.428719 12.947943 10.788202 -16.130660 -8.416170 -1.697871 0.666799 -21.908694 3.995395 2.796157 10.960131 1.993110 -15.778632 6.484433 -8.163698 15.575469 8.799844 7.654675 4.035175 -0.901866 -12.055596 15.602438 27.049967 -4.280939 9.727063 -10.021597 -9.325768 15.634751 -10.465155 8.650057 3.299759 -0.896067 2.519734 -9.227982 -1.111884 13.586116 4.479304 6.627139 10.939219 3.630431 -1.267353 -22.096214 -17.555050 1.788425 13.439088 -0.086503 25.091536 -13.937562 -7.509288 -4.657944 16.463153 -2.121884 -4.058683 1.909475 -7.673714 8.662483 -21.013465 -18.954454 22.804586 21.690713 3.005580 1.122238 14.125219 10.227852 -5.399492 -6.807015 -7.284070 6.903011 4.089018 -3.651973 0.019279 -0.206955 -13.087151 -7.585470 3.355543 5.622463 9.574327 -8.145970 -8.528605 1.870188 -16.107339 -13.100450 6.788123 -14.533743 -4.370510 3.603839 -0.756106 -0.243038 5.945381 -3.518321 -3.496302 4.918260 -7.234822 1.725588 6.971670 11.564019 3.212572 14.958109 13.562152 0.515206 13.981267 9.365067 -5.701852 30.065432 -5.576629 3.608734 5.612237 9.103043 0.735613 6.579309 5.897050 -7.225300 -4.665081 -16.567313 8.176313 0.733043 9.934045 -16.708924 -10.457885 -17.454039 -7.692817 9.269722 11.023979 -1.829138 27.125488 -1.161470 1.474905 -27.681032 -2.327391 11.943350 0.643306 10.461202 8.041722 -10.395296 -21.152911 -5.302687 -7.549097 1.580608 -6.888966 -10.838872 -10.183326 -5.784679 9.508251 -6.337141 6.151932 18.044570 -2.170428 5.041176 -5.959200 -0.631736 -4.958516 -7.451627 5.395125 3.544020 -13.994473 16.982852 -3.273098 32.045693 -5.949600 11.344722 -10.661486 4.983189 -1.586435 -6.399985 -2.968672 19.524302 8.419673 3.559205 1.687161 0.645070 -6.372498 11.210815 --3.938885 3.434259 21.561051 12.729922 -9.392307 -14.194762 -7.294726 -20.906910 9.639614 0.912230 13.399845 0.757112 3.162618 -2.800346 2.530549 -0.936662 1.358004 -5.577339 2.994230 -4.839048 -1.133313 14.036398 10.060085 -14.034247 0.475556 -20.242678 12.018946 8.977261 9.654394 10.230914 0.842780 -3.308790 -2.762762 11.815916 -5.602333 -0.513569 2.138463 3.304244 -6.811717 1.839844 3.495494 11.283734 8.330838 -1.491521 13.241879 5.532792 11.824565 3.670553 -8.946648 -1.238501 -7.974107 18.338478 -12.348013 6.351842 2.247690 4.862638 -0.180805 -13.360649 -5.625751 -14.143435 -0.258139 4.214030 -8.441521 1.762731 -12.412657 3.536200 -2.826121 -5.022855 6.485578 5.859516 12.241037 4.703898 2.400255 -2.970966 -10.772100 5.505212 -1.404130 9.466847 8.476782 -7.794775 -2.022060 4.525988 -3.528931 -9.030658 4.223270 3.124715 2.468365 -3.832957 4.656846 -2.306596 -2.436847 -4.427894 -4.092176 9.715541 -7.716518 6.384905 -4.616778 -1.238836 -7.973589 -4.723940 -0.603103 -11.043460 6.733943 8.563322 -1.564100 -1.562119 -2.801528 2.766739 -6.271540 -12.705444 0.460757 -2.057310 5.304080 13.809008 -7.354545 0.840284 0.233452 -1.069519 -1.705478 12.983348 2.471872 5.886999 12.289583 17.736450 0.942152 -8.653972 -4.487326 2.196290 9.421716 13.320127 9.815952 -15.182167 -8.143977 -2.504311 3.082350 -17.935928 4.660871 5.380790 7.468111 3.682279 -14.060909 2.151541 -5.558727 15.941971 8.290452 7.093674 3.122153 -0.736162 -8.601431 14.590058 24.730122 -4.743498 8.549084 -5.751918 -6.721622 13.690787 -12.356315 8.808369 4.609023 1.406401 2.873375 -9.716738 -4.660277 12.080510 7.434222 6.932766 10.704086 2.783214 1.369709 -20.321321 -14.052872 2.150911 9.840468 -3.442845 20.553513 -9.998017 -8.307056 -3.220623 13.114814 -0.351919 -4.017262 0.204187 -6.869378 7.277655 -17.036266 -16.183368 18.973082 19.170271 2.292566 -0.254492 13.166410 12.209482 -8.158697 -6.656465 -5.764690 7.329410 -0.666307 -3.481986 -0.592069 0.825886 -12.841046 -6.228145 2.172998 4.624428 7.813086 -4.218944 -9.670911 5.652157 -16.031146 -8.067871 4.510039 -11.515190 -5.629139 1.132620 -0.081657 2.113685 4.717520 -6.032973 -2.003111 6.684573 -9.031815 -0.266069 6.976754 11.460417 4.323642 14.704616 10.266610 4.090303 13.995388 8.932792 -5.825054 24.982626 -1.477028 2.419761 4.327915 5.668284 -0.811290 5.159275 3.498661 -6.480666 -7.838563 -14.854150 7.565099 0.398452 10.115757 -12.127717 -10.177026 -12.371417 -7.165569 12.069675 7.966727 -1.355181 23.770531 -0.683283 1.486505 -24.330386 -1.948120 8.948365 -0.349533 10.642918 7.837382 -9.198258 -17.541110 -5.938901 -4.365995 0.773540 -6.012136 -9.975611 -8.252094 -5.873440 10.504450 -5.951872 4.913488 14.438244 -0.446757 5.389570 -1.989762 -1.022537 -3.719485 -5.107660 5.696461 3.996806 -14.717612 15.628933 -4.112157 31.174648 -7.991122 8.793147 -10.976037 1.568254 -0.346568 -1.704749 -1.067133 17.920557 9.005862 3.822730 0.264932 0.742392 -7.579668 9.070530 --3.814863 4.405079 23.835893 14.695195 -11.344384 -15.838369 -8.124085 -22.330156 10.131914 -0.161708 14.056658 0.514556 2.102237 -2.951997 2.445953 -1.368799 1.350531 -4.618697 2.334763 -5.579319 -2.266930 14.747286 11.181390 -16.735990 0.745210 -21.452539 13.397161 10.257210 10.614479 11.376938 0.943357 -3.446279 -3.265418 12.913827 -6.475186 -1.478345 1.835768 3.098064 -8.560754 1.910905 4.531597 12.068909 9.796590 -2.053751 13.911105 6.076231 12.997205 4.105186 -10.678692 -0.455934 -9.308354 21.091324 -12.650138 7.508069 2.913979 5.116468 0.356123 -14.741344 -5.736830 -15.390588 -1.114976 3.785181 -9.659341 1.478987 -14.004277 3.634737 -3.493056 -6.193664 7.811899 5.991612 12.899522 4.319425 1.985019 -3.776868 -11.552572 6.270342 -0.824892 11.403373 9.361477 -7.803676 -0.311090 4.971892 -4.033443 -9.464476 3.997021 1.689718 3.008421 -4.129285 5.190347 -3.039860 -2.183259 -4.805260 -4.128402 10.075750 -8.031837 7.812388 -6.212798 -2.187654 -9.411489 -5.759525 -0.288234 -11.625391 7.315256 8.394870 -3.203810 -1.096502 -2.270332 3.067331 -5.527473 -14.595036 0.350663 -1.978958 5.899642 16.271757 -7.621796 0.233743 0.669628 -1.134947 -3.135182 14.231961 2.329292 6.994517 12.122685 19.422862 1.060925 -9.599279 -4.880939 1.577254 9.886106 14.477623 11.100166 -15.428197 -9.444484 -3.258717 4.236659 -19.849886 5.290762 6.121728 8.848014 5.093802 -14.555942 2.053607 -6.300068 17.664563 7.527976 7.357875 3.272533 -1.578158 -10.155581 15.857819 26.725103 -5.354944 9.373771 -6.375695 -8.280756 14.677514 -12.094427 9.533025 4.500285 1.114367 4.321748 -10.368856 -5.020173 13.417501 7.962045 6.285902 12.396541 2.720933 1.342758 -22.773796 -15.355674 3.242160 10.338387 -4.148239 21.507785 -10.480381 -9.024529 -3.947429 14.822238 -1.320823 -3.841709 -0.084814 -8.228537 8.050549 -18.288588 -17.857135 20.915021 21.247459 1.254044 -0.076168 13.839488 13.414440 -8.436200 -7.610478 -6.635582 7.697766 0.087611 -3.421423 -0.940521 0.462532 -13.318723 -6.028354 3.600578 5.248329 8.448176 -5.466337 -10.307308 5.567539 -17.855939 -9.681368 4.861057 -12.866427 -5.277582 2.600105 -0.099192 2.315735 5.673602 -6.089818 -2.650223 6.563030 -9.561773 -0.285365 6.597819 13.129887 4.317452 15.791630 10.516873 4.860661 16.758518 10.318328 -7.228653 28.829794 -2.783235 2.939622 4.787627 6.252985 -1.061901 5.971994 3.913372 -7.101627 -7.692955 -16.638359 7.925442 -0.134617 10.897206 -14.751524 -11.560199 -14.217001 -7.923843 13.239632 7.518998 -1.894209 26.061924 -1.054167 0.400261 -26.669513 -2.369169 10.517867 -0.347684 12.575619 8.547406 -10.503324 -20.121665 -6.361690 -5.181183 2.368552 -7.243941 -10.839143 -9.343464 -5.104889 12.003754 -6.527148 6.454313 15.787467 -0.650701 5.375755 -2.679483 -1.316914 -3.712339 -6.759166 6.628407 4.263000 -16.129148 17.001222 -4.331028 34.031642 -7.869583 9.770218 -12.351621 1.278766 0.269985 -1.622267 -1.593558 19.610120 9.985739 4.151136 -0.008970 1.424545 -8.732421 10.025671 --20.840369 -5.874318 54.188808 29.119046 -23.851640 -49.216388 -22.995123 -63.988275 39.162528 8.975335 47.926774 12.501837 21.374897 -21.143356 10.365759 6.762440 11.670950 -25.843960 1.467274 -17.569983 3.931646 60.636860 33.304632 -32.329645 2.008386 -60.862581 17.924568 19.830065 25.767254 37.947086 3.230142 -6.271071 -7.628219 25.930104 -14.828302 18.310756 8.354374 8.831732 -21.131354 -6.335830 11.185562 14.497857 30.906981 -4.691729 53.366569 -1.956109 36.909322 5.991955 -25.664590 -17.800477 -27.733574 54.795288 -38.436813 17.992346 -0.975894 12.443030 1.417955 -29.315703 -20.195597 -52.951119 -4.766632 6.220841 -27.172722 0.666268 -25.030079 18.153429 -2.543537 -10.388390 7.820269 -1.975173 39.111792 14.615540 9.648407 -0.204037 -43.304555 8.023038 -5.338664 20.663417 23.058752 -7.755360 -16.676680 -3.003175 -11.287015 -25.315949 27.499809 11.847469 2.942880 2.813940 -6.466007 5.249160 -13.638887 -9.840143 -3.570029 20.514545 -36.720575 8.583107 14.916705 -7.217177 -16.327158 -10.154833 4.324274 -28.165939 10.846327 22.846788 6.885278 -4.395883 -19.936309 5.700950 -36.546582 -36.652624 12.394431 -5.071302 -6.451083 36.799158 -31.330219 7.599496 -1.302071 1.465892 -3.501530 38.160925 6.296007 25.089163 31.521008 48.337664 8.573604 -29.629243 -11.473698 16.527403 48.703336 29.323074 19.286281 -34.637157 -23.697035 5.593776 -5.169151 -56.896337 -7.386857 33.891378 36.514095 18.120352 -42.485658 11.129957 -9.890197 51.643931 32.536327 9.730302 6.263094 2.223735 -40.022574 40.505677 75.612565 -14.613449 35.734494 -13.759601 -13.399084 48.922510 -46.677248 24.015636 14.434790 0.450357 -0.674321 -24.172272 -10.366646 33.197391 25.109825 26.071953 2.060013 17.046090 -3.464002 -63.369431 -59.221844 -14.167726 37.419738 3.617445 61.042843 -30.858302 -27.110333 -9.964788 39.258146 -8.564137 -23.827666 6.538234 -30.496316 24.197374 -67.781992 -49.289291 81.847070 73.296322 25.953943 15.113185 46.337218 41.841877 -25.474827 -10.725160 -9.825018 22.044541 11.329879 -28.721520 -2.698993 -0.714452 -43.826820 -35.552699 -3.485961 12.405329 -1.196942 0.648378 1.591589 16.742725 -32.514117 -10.678222 11.773926 -34.934839 -23.237145 -1.433149 2.871086 5.352551 12.005110 -17.708598 7.132928 21.259609 -32.184171 3.369644 18.406541 28.484542 24.062898 42.216727 53.310147 -1.694714 46.791012 9.352069 -20.375134 58.444906 -14.362900 6.330621 5.205924 16.259279 10.799355 10.485866 13.120053 -18.540503 -13.170584 -39.049954 18.824851 12.080642 35.100388 -29.026748 -48.330180 -41.562075 -12.416659 29.825075 30.913858 -10.839691 72.070277 -18.416925 8.380017 -92.511194 0.674644 28.727245 2.615039 20.604660 18.244775 -19.545443 -63.517767 -15.414538 -18.148452 -8.134798 -17.096755 -33.703371 -18.255086 -36.539548 45.691053 -38.862277 9.864690 34.603127 0.208002 35.147561 -1.968950 -3.226456 -25.698814 0.750752 7.617257 13.467594 -33.552810 44.179599 -6.371526 92.831435 -24.539699 27.928896 -26.300028 31.007616 -15.471820 -20.320853 -1.298028 51.974960 42.783680 1.393344 3.059374 -2.014948 -15.760597 25.261552 --2.539636 3.730180 21.597192 12.895873 -9.443788 -14.624248 -7.413483 -20.027174 10.264632 -0.375769 11.381289 1.735156 2.455375 -2.796097 0.729457 -2.952118 1.554691 -4.165573 0.898313 -5.546753 -1.782290 15.227090 8.970981 -15.869555 1.281442 -23.072529 13.310739 8.604991 10.161601 12.732185 -0.174934 -3.067135 -3.328856 11.234258 -6.038743 -1.864328 2.163284 1.854174 -8.387538 0.388798 5.942866 11.592222 10.097120 -1.259764 12.130518 5.232640 9.212990 3.632408 -8.106454 -1.197596 -7.795193 15.795122 -10.744568 7.520640 1.018093 6.687540 0.686601 -13.390364 -4.616064 -13.118921 -0.380330 4.686656 -7.517879 0.682573 -13.243324 3.191142 -2.876086 -6.607633 6.404659 1.517661 11.580914 4.821904 2.036024 -5.486769 -11.391543 5.140479 -1.271942 10.932249 8.175974 -5.670955 -2.330572 3.711881 -5.177443 -8.062607 2.790302 3.466090 2.048060 -2.312074 4.708760 -5.058291 -1.134730 -4.014996 -3.141397 8.445559 -7.136947 5.960656 -6.879649 -1.046098 -6.059945 -5.263539 -0.465662 -9.431627 6.338718 8.074294 -3.613261 -0.411873 1.648632 3.085303 -3.603698 -11.803075 1.331291 -0.953334 5.359028 15.686355 -5.961508 -1.166343 -0.284645 -1.642405 -3.326035 14.033013 -0.080618 5.384264 11.546784 17.568026 1.720466 -9.106664 -4.019106 3.187564 8.579989 12.186437 10.656572 -13.914979 -7.936283 -2.690763 3.168418 -18.477404 4.733039 4.506633 9.794374 3.377384 -13.895002 3.079647 -6.093560 15.383082 7.298869 5.504914 3.989401 -1.534077 -10.176974 14.911259 25.110482 -4.258036 7.906561 -9.346518 -8.636412 14.155105 -10.125119 8.674950 2.160425 0.815053 3.774776 -9.312643 -0.965161 12.532614 4.813223 6.251905 9.946059 2.521672 0.540565 -21.040138 -14.126322 1.654478 9.018454 -2.068006 22.029450 -10.416398 -7.192702 -5.055001 14.387895 -1.345405 -2.654365 1.133240 -8.437869 7.319931 -18.515306 -16.975331 19.984870 21.324223 1.055816 0.353652 12.591040 11.740425 -5.092538 -5.539927 -5.850713 6.244421 2.350760 -2.973538 -0.461899 0.344373 -11.301683 -6.887075 4.431652 4.667117 8.842210 -6.117878 -8.760798 2.761287 -16.180530 -12.033542 6.740027 -13.268904 -3.480337 3.052398 -0.247308 0.880982 5.635775 -4.107279 -3.024357 6.856818 -6.490282 1.432695 5.738183 11.291627 3.483503 11.497403 11.233492 3.119231 13.807452 10.121041 -6.431617 28.206977 -3.915823 2.669330 4.317467 6.190905 -0.698331 6.427814 3.164319 -6.313623 -5.016534 -15.108375 8.208161 -0.252425 8.967829 -14.837672 -10.667477 -13.719690 -7.207728 9.511257 7.484573 -0.957871 24.514902 -2.006200 -0.046314 -25.351531 -2.218183 11.187876 1.128431 10.033665 7.828980 -8.591023 -19.518456 -4.837949 -5.337268 2.675592 -7.191167 -11.692499 -8.557595 -5.070498 10.545185 -6.048058 6.579976 15.842280 -0.593237 5.706442 -4.694277 -0.750380 -5.175184 -7.019878 3.742019 3.968132 -13.138085 14.460905 -3.647372 27.603944 -6.851275 9.102290 -10.956093 3.842249 -1.405555 -5.402801 -2.174920 17.855788 7.729345 3.058504 0.903320 -0.185640 -6.956961 8.772435 --11.260642 2.722004 52.824544 26.866861 -12.539965 -31.373905 -15.303946 -42.329660 24.691212 2.360313 31.511859 6.529021 7.568210 -6.112065 9.542320 1.090276 -6.295208 -14.794906 6.432445 -7.873809 9.653870 38.957632 38.527789 -32.456846 -2.001021 -53.039739 21.052696 18.193288 31.936899 30.520735 -4.154108 -10.796522 -0.366451 27.056728 -15.816023 2.236396 -5.275940 6.071938 -13.300995 5.914822 6.989750 30.130707 9.463344 -3.461548 34.381186 9.150964 35.069345 2.561634 -13.279072 -6.532873 -24.750298 51.634330 -35.854525 12.249355 1.363588 17.861139 -10.816044 -26.766941 -16.755506 -44.722507 2.548603 18.620386 -23.573906 5.286525 -32.123728 11.819855 -13.861430 -5.330497 10.947833 13.089387 32.694147 14.198626 7.976513 -9.734375 -27.185052 13.136379 -13.165802 23.151063 18.113538 -22.083221 -14.859367 13.225048 0.872648 -19.269502 9.301219 3.505256 -1.736205 -12.978032 15.820724 -2.567472 -13.326896 -6.865203 -17.185352 22.056599 -27.769556 21.935711 -6.570544 3.199265 -9.006782 0.068555 -4.589237 -31.471530 11.218461 20.605128 9.080151 -7.404653 -11.719059 4.002323 -15.833448 -35.341397 -1.848450 7.674864 4.357329 28.529046 -25.098042 14.523373 8.736765 6.048548 -6.223557 34.434633 8.358902 20.402408 25.786044 40.173080 0.864741 -18.325389 -3.946341 10.616103 28.918582 33.072440 21.642866 -31.952589 -20.418672 -8.741878 15.939123 -42.972665 16.479537 26.344386 15.201908 18.807694 -36.351387 2.140809 -7.887210 39.989210 24.478496 13.012302 9.165991 -3.761846 -20.075225 36.014755 71.477690 -13.826093 21.045103 -10.388575 -18.055717 46.059157 -43.293739 24.352823 11.118753 12.335814 12.381343 -27.173790 -16.854737 30.316809 20.624917 25.362158 29.612293 4.474651 14.242988 -53.197558 -29.040265 -6.005256 16.498736 -11.867333 42.456158 -15.829757 -13.741821 -6.765683 29.407296 0.896616 -9.150389 -5.640397 -16.737774 14.538067 -48.307385 -36.358719 44.986970 53.964244 4.597257 4.881020 33.195177 44.683934 -13.269546 -8.980803 -11.612928 19.925003 -6.170713 -3.410322 0.730266 -2.672343 -32.277640 -18.141794 3.524881 7.353983 8.326778 -4.577108 -28.609016 23.372344 -41.303917 -15.534714 5.776907 -32.348070 -15.222807 -3.880364 1.856525 2.472601 4.841716 -19.726162 2.808946 26.178564 -23.418269 -0.179526 18.859844 23.179670 17.598009 30.110035 19.597049 12.619002 30.738359 21.775098 -12.558923 60.340894 -0.336381 1.020210 7.883650 14.091093 -3.153904 15.189960 -5.441377 -14.630820 -19.886438 -33.502492 23.155269 2.752757 24.131238 -17.317623 -30.301440 -18.012338 -18.652942 36.884065 16.401122 -1.664263 58.907508 -4.539530 5.970178 -61.813231 -3.050143 21.627041 -1.714428 27.719076 20.916538 -15.467698 -43.053359 -17.774447 4.471277 10.181231 -16.782218 -31.521144 -14.807891 -18.625245 28.753910 -22.786171 14.221083 23.582932 4.364509 18.553669 0.670510 -3.285471 -13.720573 -5.422611 7.147435 18.122929 -36.564710 34.519538 -13.322341 65.716987 -29.595358 24.125826 -29.683424 7.214099 -6.347943 0.760342 1.936290 44.172894 25.760066 7.273604 -0.990786 -1.112060 -19.207605 13.193608 -1.620205 9.530270 35.020168 18.266564 -23.723655 -30.603534 -11.831472 -45.358585 20.514564 2.970636 18.398823 3.794908 6.720627 -9.716615 -1.493120 5.803629 6.344854 -4.938042 0.243079 -13.217032 -13.787569 24.169652 4.825988 -17.048834 7.150876 -38.185848 24.887686 11.783584 18.741956 17.357000 7.199327 -4.433168 -9.794543 20.254757 -0.905594 4.718380 5.831695 4.837622 -18.147044 5.486970 6.348615 8.089763 20.006143 3.610123 24.707281 8.776660 15.241942 9.987032 -14.641830 -0.839195 -15.457439 27.722214 -17.243638 14.981082 -1.382736 5.166578 -0.039255 -20.222936 -4.340646 -9.466117 -6.776039 -3.566160 -14.026767 1.177189 -22.383367 3.767475 -7.114205 -13.983064 4.694298 6.753316 21.204842 7.734778 1.126013 -2.577148 -27.796894 3.737745 1.609837 16.843446 20.181167 -7.714767 0.270804 0.004930 -14.525229 -18.294115 14.116643 9.453098 5.717125 -1.649590 1.203323 -10.710578 -5.899408 -8.719945 4.954396 16.001935 -18.487313 3.583982 -15.339181 -4.337730 -15.421475 -22.515790 3.007997 -13.192040 12.858085 3.137111 -5.628001 1.565731 5.472237 4.251349 -6.604984 -15.102644 3.489600 -6.502659 9.685732 31.796843 -3.061526 -9.096483 -3.174420 -7.288451 -7.070477 19.269222 6.320562 4.557115 27.487834 29.303219 10.418574 -15.062628 -12.199620 5.950800 9.932368 20.840040 17.147241 -25.429414 -13.985920 1.384737 1.819111 -35.688207 4.869540 4.063596 17.224596 -0.694967 -13.797133 0.509753 -11.361526 20.188409 10.163807 5.868375 7.789843 -1.953280 -17.495992 23.783765 43.419304 -5.068191 12.475420 -17.451792 -5.180165 19.124440 -15.658218 10.308850 2.607172 -5.172677 0.877584 -11.464379 -4.212484 20.338206 4.110499 2.150383 13.864833 9.881291 -13.298314 -33.362680 -26.178299 2.580931 24.165300 -2.820095 34.881747 -22.253345 -10.203643 -9.075024 25.304193 0.380007 -3.862085 8.143371 -17.130937 15.020538 -22.645633 -27.862980 39.227947 36.352426 7.383143 -3.951888 18.811466 18.431745 -22.408992 -17.647006 -10.884283 4.386360 7.130142 -20.189416 -10.037099 2.953132 -23.838870 -11.606901 6.199734 9.512592 18.350877 -1.647070 -2.789062 3.738976 -20.000749 -22.615955 14.730397 -16.976086 -5.776289 7.241158 2.092278 1.061760 12.933377 -7.606932 -4.525583 8.246176 -10.029340 5.253821 11.487582 19.718208 2.144561 26.499105 22.697129 1.900701 25.908205 12.685174 -12.357038 40.394055 -4.447213 9.598487 9.846972 7.110132 -2.124563 9.297611 11.516013 -13.505513 -10.433976 -25.237453 5.047068 -0.654392 14.501303 -14.843197 -16.202659 -28.492826 -10.202734 10.184983 13.487930 -1.917078 38.351444 -4.118885 3.430855 -41.102143 -2.077813 18.574835 -0.368517 18.981211 12.442642 -17.396163 -23.597624 -9.394355 -15.571508 -8.281318 -10.175647 -10.509840 -15.801415 -8.195102 16.936218 -8.714734 6.807524 27.505642 -2.397818 12.089028 -17.266439 2.864194 -10.963371 -6.042391 16.773458 3.011324 -22.786831 23.310481 -2.314370 54.894829 -4.620583 13.510640 -13.184867 -0.212507 -0.254408 -13.165403 -6.996716 29.528311 12.677019 9.074415 1.730967 0.071237 -7.004051 21.013485 --0.147265 1.549528 4.826421 3.280625 -3.300063 -4.814217 -2.140019 -5.523163 2.263268 -0.065230 3.080479 -0.217358 1.107181 -0.719725 -0.273827 -0.609541 0.970737 -0.673403 0.192640 -1.833859 -3.091633 4.039124 1.246516 -2.999473 0.817121 -4.954155 4.246218 2.356483 1.870157 3.278134 0.194940 -0.312635 -1.037299 2.878449 -1.274012 -0.269975 0.111741 1.043384 -1.696536 0.884297 1.955860 1.148351 3.684822 0.157396 2.207030 2.658953 1.524069 1.372311 -2.618120 -0.682941 -1.632478 2.460673 -2.449259 1.901671 -0.647616 0.872862 1.479640 -2.935787 -0.677419 -1.838671 -0.475417 -0.391805 -2.127468 0.304368 -3.538749 0.515003 -1.157147 -2.616482 1.510775 0.157177 2.640614 0.941792 -0.441492 -1.001474 -3.186446 0.953428 0.849399 2.327169 2.297194 -0.924295 -0.163047 0.735044 -2.858328 -2.587602 1.423919 0.657321 1.675834 0.026632 0.173452 -2.101424 0.377622 -0.455092 0.781837 2.394025 -0.909977 0.816106 -2.119985 -0.883103 -2.950589 -3.385545 0.383801 -1.821824 2.006206 1.595565 -2.038286 -0.217956 0.669260 0.554579 -0.799608 -3.326443 -0.030959 -1.816008 1.566163 4.406433 -0.622849 -1.448105 -0.848775 -1.450896 -0.445284 3.179058 0.750777 0.274265 3.771838 3.970864 0.632689 -2.511030 -1.778501 -0.041810 1.389415 2.477637 2.773045 -3.442530 -2.273054 -0.152968 -0.516684 -5.265660 0.284133 0.209012 2.437438 -0.455400 -2.739211 2.331763 -2.305920 2.554388 1.799503 1.525526 1.138060 -0.628142 -2.653217 3.535183 5.625991 -1.026133 2.077123 -2.693329 -3.008379 4.032225 -1.435821 1.432940 0.670657 -1.037919 -0.224391 -1.625904 0.671185 3.110461 0.182452 0.763310 2.858322 0.760702 -1.021498 -4.357868 -4.098982 1.432662 3.644874 0.480086 5.935326 -3.633494 -1.094299 -0.669967 3.826418 -0.292083 -0.828482 0.595828 -1.625677 1.982085 -4.987286 -4.569526 5.203373 4.126327 0.735280 0.159523 2.525021 1.999651 -1.291747 -2.144617 -2.314609 1.557058 1.177814 -1.590024 -0.746821 0.272689 -2.975366 -0.882466 0.725648 1.601790 2.836777 -2.229612 -1.609408 -1.473957 -3.580611 -3.617626 1.867583 -3.141771 -0.217351 1.392225 -0.565786 -0.446592 1.705530 -0.187393 -1.062774 -0.128658 -1.380853 0.629681 1.148046 2.666260 0.204853 4.126347 3.629423 -0.715447 2.579719 1.896535 -1.264017 6.961516 -1.699872 1.305324 1.188757 2.950109 0.128569 1.528245 2.467869 -1.527447 -1.270125 -3.874181 1.256098 0.717453 1.420679 -4.011501 -1.743434 -5.293270 -1.618857 1.230822 3.527319 -0.218335 5.904478 -0.339540 0.308638 -5.702668 -0.266042 2.146695 0.027588 2.860511 1.613279 -2.601061 -3.788195 -1.324224 -2.618453 0.048760 -1.508082 -2.107073 -2.490290 -0.317011 1.025908 -1.082461 1.239588 4.191759 -0.815956 0.768666 -1.462083 -0.107944 -1.447502 -1.780178 2.374275 0.135048 -2.700409 3.673383 -0.174860 7.102011 -0.167063 2.634848 -2.007706 0.549150 0.278312 -2.340176 -1.189037 4.258395 1.656194 0.659906 0.837125 0.648786 -0.487440 2.768874 --1.922622 1.763618 14.630333 7.705439 -7.239394 -11.086505 -5.358386 -15.670645 8.053054 0.477901 9.286953 1.513627 3.080079 -3.399195 0.723984 -0.589541 1.508735 -3.767678 0.484497 -4.076141 -1.871973 11.112063 5.342059 -9.228455 1.585566 -15.875116 8.045723 5.740677 6.786235 8.809760 0.129632 -1.929007 -3.029046 7.538453 -3.276193 0.264946 2.693365 1.611159 -5.804073 0.526411 3.438872 5.510180 7.701252 -0.771442 9.849532 2.857707 5.533015 2.905385 -5.855402 -1.824571 -5.166730 11.017289 -7.412705 5.463199 0.380653 3.530674 0.105239 -8.504044 -3.525413 -9.063851 -0.585476 1.403949 -4.730221 0.400312 -7.869429 2.461034 -0.948941 -4.495575 4.029946 0.235671 8.458406 3.061730 1.634872 -1.687675 -9.206194 2.648156 0.142817 6.643175 5.926076 -3.198237 -1.349759 1.188337 -4.013226 -6.090344 3.592521 3.454858 1.783366 -0.736025 1.036066 -2.531404 -0.584554 -2.752093 -0.533110 6.089536 -6.445448 2.451381 -3.643833 -1.243034 -4.869548 -5.365339 0.537479 -6.161254 4.466123 4.728144 -1.849354 -0.081776 0.834855 2.555703 -4.147115 -8.069327 1.709046 -1.585263 2.362628 11.087691 -3.857296 -1.328078 -0.617859 -1.785608 -2.176766 8.857504 0.501148 3.714204 8.581851 12.170418 2.218088 -6.669532 -3.805900 2.899102 7.098845 8.203682 6.389905 -10.222869 -5.017816 -0.057121 -0.046463 -14.206653 1.151869 2.651592 7.695703 1.492049 -8.962977 2.409964 -4.630189 10.672645 5.458499 3.219872 2.328360 -0.475390 -8.084248 10.302427 17.785193 -2.888423 6.400061 -5.655005 -4.583704 9.097042 -7.453075 5.616299 1.689993 -0.465272 1.610719 -5.888150 -1.306686 8.393839 3.578360 4.476935 4.427846 2.821379 -2.214148 -14.616091 -11.671131 -0.506518 8.351240 -0.739941 15.222727 -8.080851 -5.992507 -3.596980 11.165705 -1.366823 -2.848161 1.839450 -6.333306 5.765467 -12.444490 -11.829176 15.886233 16.251611 3.331109 1.252252 9.661766 7.667053 -5.529421 -4.419640 -3.621254 3.607613 2.734929 -5.455988 -1.839351 -0.029784 -8.943294 -5.626570 1.856813 3.297289 4.747091 -1.686097 -3.044239 3.062505 -9.520420 -7.018082 4.596450 -8.865293 -2.937474 2.046823 0.199100 0.306669 4.235364 -3.848792 -1.469042 4.339233 -5.320044 1.798010 4.357740 7.188729 2.452241 9.335359 9.213207 0.931082 10.135730 5.121921 -4.664889 17.593453 -3.346681 2.414924 3.073064 3.887877 0.154870 3.927704 3.162084 -4.836284 -2.984179 -10.579129 3.967145 0.432502 6.806178 -8.472983 -8.969576 -10.116870 -4.412086 6.073706 5.958263 -0.802287 17.083818 -1.891349 1.120846 -19.072606 -1.123203 7.281953 0.413427 6.700517 4.835770 -6.006214 -14.867759 -3.234013 -4.939549 -1.099977 -4.903123 -7.577561 -5.565685 -5.232953 8.473955 -4.689447 3.510785 10.890474 -0.439562 5.442878 -3.998058 -0.439074 -4.658192 -3.034055 3.049041 2.038105 -8.707183 9.964249 -1.354297 21.308016 -4.249534 6.487441 -6.607760 3.297322 -1.273839 -4.410624 -1.395712 12.288174 6.517449 2.661423 0.376458 -0.111548 -4.641545 6.796987 --10.408521 7.788957 76.096439 25.116334 -47.607576 -83.319673 -31.427656 -122.411594 53.734626 18.636780 66.052192 5.787518 38.553500 -33.717827 2.223226 19.178519 25.328720 -26.380502 10.358413 -33.396415 -20.088672 78.574026 10.086934 -12.458351 9.590263 -83.373702 49.151030 23.057376 41.447753 53.914630 20.455072 -10.444380 -26.994949 35.198118 0.515528 38.097368 20.184732 22.111121 -38.668558 6.643165 3.815513 -5.959569 49.489044 -1.996702 74.430158 11.095871 32.954484 21.608140 -34.040178 -24.760428 -28.553642 54.286159 -50.709833 24.820429 -5.346778 -8.403881 0.947478 -27.807303 -15.343085 -31.611356 -15.055953 -23.442625 -39.982695 10.167846 -47.001138 20.405484 -24.174840 -28.001037 -1.435085 -8.003745 46.821684 19.430037 6.811646 17.992063 -80.104631 3.155799 8.234144 24.950939 42.909211 -10.877901 -4.052908 -13.933153 -37.252475 -47.106312 50.603746 39.562635 16.246423 8.138062 -28.423490 -0.487291 -15.738322 -10.630619 26.327568 32.911183 -44.208464 -2.523970 -13.051788 -14.335982 -32.058826 -67.927750 18.559577 -31.370123 27.716306 8.627576 -4.386295 -8.400773 -12.824705 10.151885 -39.775126 -46.411507 15.352172 -25.952782 14.096846 75.950266 -26.380845 -11.053124 -30.181021 -17.423533 -0.272591 43.363132 22.041214 19.011259 53.494352 64.532883 30.896373 -51.213173 -41.309856 28.247293 45.439765 38.425399 25.199109 -53.581548 -33.147114 14.831523 -25.545217 -89.577641 -21.549266 20.538236 47.040100 -4.273538 -26.282787 10.721563 -27.973944 49.812363 43.820643 12.030474 11.644183 5.750009 -53.841701 50.326908 89.006914 -13.836203 42.779604 -29.014538 -12.941901 47.686838 -42.094047 21.726673 16.615247 -13.208598 -18.214721 -23.672135 -4.408849 45.128338 18.384763 28.954635 -2.610943 32.735237 -35.147946 -74.765468 -79.185735 -2.267810 80.848058 7.556013 72.308409 -57.912041 -28.593532 -2.424456 64.653312 5.006517 -31.009564 22.268362 -46.071450 41.160799 -75.266350 -70.549950 105.564921 92.450877 45.933824 3.531977 39.850690 52.322844 -66.609540 -27.043354 -23.502064 24.288874 5.315713 -81.332804 -26.812780 7.654749 -64.099181 -37.048369 -0.456815 28.387831 18.914842 11.057778 25.171938 4.499441 -25.644586 -35.715221 38.529000 -31.251227 -22.145893 3.748774 3.600730 8.433449 25.251692 -26.916356 11.396212 25.744794 -35.090951 18.301213 30.152418 32.958825 12.239148 79.225427 69.347663 -14.922133 50.048289 2.435734 -28.358423 71.738478 -13.281875 25.889830 13.670585 21.083374 11.061687 14.371504 40.823358 -33.343736 -31.066912 -58.964212 -11.871545 21.072177 46.688644 -12.535349 -62.567572 -80.492480 -7.250262 18.307614 58.389906 -5.061926 94.009414 -21.261264 22.012353 -100.477975 4.371136 34.528520 -6.165664 40.046165 19.269915 -32.755306 -52.321915 -22.592158 -51.248233 -45.822485 -21.684832 -28.941160 -31.862772 -37.053287 50.564544 -33.073998 -0.598999 38.860987 0.024711 45.092908 -17.264394 3.854434 -41.337326 7.030402 36.336485 1.304437 -50.053204 55.719377 8.265852 137.640745 -11.239937 31.336431 -21.098516 29.900070 -13.453134 -45.031901 -13.342235 74.046869 55.008642 13.237522 -2.905783 -1.507413 -5.296423 40.285876 --59.026023 6.694903 227.155640 68.135864 -138.700689 -239.716794 -96.726975 -370.850911 168.470035 68.949294 217.056596 19.328535 130.112932 -114.820473 8.177950 52.065410 88.958286 -104.042479 43.640043 -101.422640 -38.940197 252.332574 39.441311 -19.840753 20.948737 -258.300973 144.064815 52.571818 122.102943 170.820540 65.037766 -27.859657 -84.434896 98.568068 16.943481 130.688918 73.039326 72.150630 -106.378518 11.095361 7.734324 -37.034060 144.879731 -10.542295 240.108758 14.124619 97.679535 55.407011 -109.556713 -92.124774 -85.465083 152.210968 -170.491818 62.644335 -5.889526 -43.518836 7.070812 -71.184562 -53.155055 -118.047247 -48.524634 -90.437522 -112.183640 38.530644 -132.048378 79.532678 -83.093781 -68.614822 -14.732239 -31.885915 142.924617 74.026023 44.792993 85.790935 -241.938068 19.562738 23.084969 65.640163 128.585116 -27.990259 -23.527308 -46.958875 -108.465105 -147.237288 161.535935 124.775168 44.880110 24.397930 -96.280790 29.821949 -52.354134 -30.429850 73.500784 96.466444 -141.234676 -16.987324 -14.804083 -45.739407 -84.506673 -209.158227 51.637603 -102.383423 73.879173 46.050853 -21.530818 -33.900042 -78.163507 25.112057 -144.499932 -144.494169 62.365735 -86.287947 30.422173 221.509655 -105.727167 -17.796676 -106.372313 -39.805324 20.966249 129.713656 62.360954 76.786530 149.333643 195.737296 89.471079 -159.098979 -122.834449 99.335206 160.037274 100.538195 69.040457 -156.060362 -104.077058 49.289766 -86.041048 -261.906085 -88.106396 78.009245 149.551175 0.845832 -83.869607 31.065538 -80.535899 163.349675 153.050897 33.227510 26.768904 27.802280 -173.426656 155.422161 257.283039 -45.208181 139.370014 -74.766358 -28.301111 154.598697 -144.934144 66.556558 52.308435 -26.575514 -66.357895 -78.962040 -23.903339 133.553941 67.448932 103.767190 -32.656444 107.012374 -87.518183 -234.075031 -252.132370 -15.584012 261.291602 30.901168 205.480294 -178.029884 -84.831642 6.270864 193.551266 28.564552 -113.980937 65.290126 -136.282839 122.567682 -249.175860 -221.850276 335.401459 287.922034 146.122743 25.291165 112.611761 172.165761 -212.743167 -69.949237 -67.601606 86.892160 -3.464222 -264.010059 -86.596593 30.613296 -194.107862 -134.931307 -9.039760 86.353923 51.268369 33.632666 90.639891 30.452263 -57.254172 -89.337168 121.184624 -87.712886 -95.010117 -0.342611 13.612972 46.087668 73.849244 -80.544906 55.697520 85.520771 -115.863621 43.642673 96.370060 98.100527 47.263241 243.248032 224.961971 -50.461096 129.232742 -6.269123 -85.038213 198.193228 -40.694724 75.003289 34.227111 52.595499 48.822736 37.823046 130.269585 -101.111897 -101.460780 -176.707562 -39.648292 64.653110 152.647252 -39.912384 -214.224388 -245.200952 -4.800412 66.262866 175.660129 -17.213933 292.124029 -71.302794 59.229274 -305.666972 12.952234 111.263019 -17.484642 122.885688 55.766852 -89.606816 -151.967245 -76.006285 -158.653720 -132.480891 -66.097639 -86.870908 -88.363135 -124.081205 175.143752 -110.890356 -6.986204 94.243020 14.679442 155.909437 -15.619300 8.031201 -144.236643 41.757981 93.521778 9.082506 -144.360637 185.363767 25.601238 407.715882 -47.794085 76.266812 -60.479356 110.333438 -51.330224 -137.244909 -29.841426 227.691050 184.558602 34.126635 -16.665745 -12.689904 -14.075968 123.831239 -0.549953 2.180118 7.134307 4.169629 -4.192555 -6.075319 -2.842660 -7.831456 3.123346 -0.471348 3.800086 -0.426764 0.870988 -0.627181 -0.319057 0.000675 0.772851 -0.585523 0.679574 -2.154482 -3.383360 5.689220 2.156308 -4.352909 0.999308 -7.432785 5.438173 3.307498 3.638879 4.712423 -0.020445 -0.990292 -0.842719 3.906708 -2.073503 -0.931682 0.187651 1.197226 -3.583002 1.623419 1.883699 2.120965 4.593605 -0.635545 3.293330 3.129575 2.431205 1.872735 -3.292200 0.067554 -2.970347 4.886292 -3.193743 2.916371 -0.865257 1.135896 1.043758 -3.874314 -1.502913 -2.776938 -1.106513 0.238747 -2.663272 0.586440 -5.213598 0.794223 -1.718215 -3.647890 2.264582 1.332157 3.745703 1.975503 0.048614 -1.385692 -4.904548 1.969649 1.184048 4.090895 2.844091 -2.044132 0.824831 1.533351 -3.235114 -3.364611 1.836782 1.525940 1.977114 -0.718301 0.855630 -2.794393 0.177529 -0.726391 0.360410 3.213395 -1.214295 2.065059 -3.921182 -0.727905 -3.493787 -4.655843 -0.049197 -2.740060 2.806599 1.717930 -1.766114 0.272235 1.674975 1.791719 -0.468855 -4.754607 -0.012603 -1.496253 1.785595 6.708881 -0.575513 -1.629947 -0.625310 -1.257700 -1.819393 4.379268 0.397180 1.231919 4.505537 5.896699 0.886949 -3.155094 -2.299374 0.313247 1.995880 3.991387 4.126649 -4.407113 -3.225151 -0.867930 0.305817 -7.128286 0.624912 0.644358 3.161179 -0.895938 -3.089888 1.952884 -2.957048 4.774274 2.173144 1.706599 1.659112 -0.968909 -3.551906 5.496988 8.497150 -1.572846 2.637493 -4.029779 -3.838524 4.905099 -1.857651 2.554484 0.339532 -1.014087 0.467105 -2.871867 0.648433 4.344399 0.926842 1.084595 3.885385 0.805315 -1.281627 -6.337610 -4.951821 1.667836 4.007474 -0.524620 8.240347 -4.155686 -2.619223 -1.449953 5.109663 -0.094574 -0.483152 0.760420 -3.189583 2.739625 -6.964075 -6.507531 7.181634 6.391637 1.155986 0.137457 3.734704 3.656657 -2.088736 -3.247127 -2.534071 2.141496 1.475270 -3.076542 -1.845896 0.473726 -3.876843 -1.205946 1.536103 2.042146 3.626154 -1.786263 -2.205806 -1.314509 -5.801435 -4.475698 2.813409 -5.034065 -0.405339 2.198340 -0.495506 -0.401369 2.640865 -1.113372 -1.067066 0.886851 -2.112725 1.076576 1.481070 3.975434 0.065771 4.704405 5.188676 0.364791 4.832715 3.277330 -2.342417 9.673451 -2.109293 1.506724 1.635877 2.431708 -0.700437 2.123144 2.818206 -2.241448 -1.783560 -5.743862 2.112673 0.665787 2.183820 -4.723554 -3.037637 -6.151729 -2.483598 2.577512 3.989543 0.314795 8.203305 -0.645423 0.029694 -8.330186 -0.489810 2.809411 0.411979 4.395905 2.393334 -3.510867 -5.966637 -1.704293 -3.241683 0.019560 -2.828092 -4.029100 -3.488483 -0.679726 2.212577 -1.589001 2.181506 6.023976 -0.847783 1.649818 -2.539172 -0.465391 -2.314514 -2.394518 3.221308 0.335310 -3.947371 4.438955 -0.566305 10.653604 -0.821843 3.235888 -3.533584 0.350670 0.632722 -2.457101 -1.291245 6.172549 2.207496 1.202234 0.821019 0.440517 -1.362444 3.420777 --3.778626 3.049459 22.752604 12.553076 -8.725070 -14.979378 -7.356873 -21.297860 10.663551 0.728012 13.691898 1.788843 3.249196 -2.491839 2.812673 -0.649069 0.103881 -5.833507 2.363306 -4.646151 0.150113 15.796366 11.379804 -14.526248 0.353758 -22.522935 11.444098 8.954042 11.274172 11.775246 -0.294649 -3.917428 -2.526011 11.942587 -6.147653 -0.334858 1.420316 2.867897 -6.967557 1.622028 3.879716 11.638500 7.942406 -1.407833 14.045861 4.846594 12.730623 3.123212 -7.664754 -1.843967 -9.318225 19.833196 -13.083025 6.855963 1.406324 6.075874 -1.577326 -13.126469 -6.047039 -15.507666 0.011819 5.312305 -8.959204 1.285463 -12.952134 3.980625 -3.236312 -4.693412 6.183114 4.737702 13.399551 4.848891 2.779027 -3.758342 -12.460919 5.183912 -2.916417 10.120393 8.347799 -7.883215 -3.497214 4.614019 -3.174851 -8.975608 4.122586 3.342874 1.396648 -4.227385 4.736812 -2.154332 -3.347901 -4.079446 -4.807749 10.007912 -9.651392 7.311751 -4.904918 -0.418657 -6.976868 -3.965741 -0.734876 -11.812982 6.337603 8.232035 -0.057710 -1.836303 -2.037875 2.514635 -6.181781 -13.883756 0.601433 -0.173018 3.989261 13.972269 -8.032040 1.914511 1.753368 -0.543930 -2.660336 13.843732 2.538000 6.683429 12.274037 18.127506 1.507513 -8.958559 -4.132979 3.447995 10.685025 13.910340 9.816225 -15.313685 -8.185181 -2.533123 3.823226 -19.501128 5.680822 7.502932 8.561540 4.709370 -14.808578 1.939685 -5.441293 16.749460 9.083907 6.614182 3.599158 -0.944221 -9.491421 15.157654 28.071135 -5.041991 9.228945 -6.499596 -6.674401 15.878832 -14.295555 9.702314 4.309737 2.792553 3.890527 -10.497037 -5.333059 12.959813 7.728809 8.322586 11.382811 2.710923 1.498117 -22.285217 -14.619610 -0.227410 10.015241 -3.784081 20.673385 -9.819622 -8.066027 -3.580571 14.041752 -1.028956 -4.157380 0.119751 -7.634182 7.498417 -18.654380 -16.584872 20.254672 22.136090 2.105016 0.716808 14.378211 14.342679 -7.585394 -6.198799 -5.752504 7.508352 -0.322628 -3.587951 -0.559326 -0.301572 -13.591260 -7.114274 2.308214 4.256445 6.665488 -3.142566 -9.705273 7.279095 -16.834583 -8.891424 4.644310 -13.045564 -5.818522 0.864919 0.382062 1.135161 4.268626 -6.734832 -1.348852 8.758598 -9.332838 0.588178 7.575212 10.512589 5.116329 14.483565 10.291665 4.268464 14.797911 9.297676 -6.022269 26.737372 -1.969243 1.982664 4.285170 6.143889 -1.267348 6.342880 1.791960 -6.698738 -7.834554 -15.386098 8.422863 0.056087 10.592016 -10.908088 -12.000247 -11.639206 -7.674990 12.992057 8.045655 -1.383988 25.275740 -1.421214 2.405534 -26.957589 -1.742128 9.875783 -0.281006 10.835567 8.219297 -8.504718 -19.245122 -6.047981 -2.763082 1.032446 -6.742120 -11.992139 -7.999335 -7.515620 11.127462 -7.558766 5.437307 13.876959 0.111512 6.780837 -2.888573 -1.149017 -4.874074 -4.469404 5.271120 5.104161 -15.261318 15.627125 -4.448685 31.609309 -9.464083 9.952438 -11.470497 2.689973 -1.559923 -2.211785 -0.673545 18.924971 9.724636 3.849814 -0.179316 0.064367 -7.992632 8.374526 --46.989520 12.048286 193.097817 66.452573 -119.348569 -191.161591 -78.899963 -293.840883 133.593364 48.327486 171.451224 19.234586 93.476635 -84.147729 9.661129 39.448462 67.803016 -80.297535 30.603550 -81.452868 -32.831332 194.804559 42.523246 -35.288579 19.702864 -210.630710 113.260735 48.815465 100.892222 129.654453 47.799584 -24.173309 -68.355291 86.590523 8.973028 89.840678 57.021946 52.975104 -89.947048 9.954370 11.398636 -17.222114 115.678424 -7.859065 190.975663 10.647008 89.532445 45.278208 -94.238287 -65.554558 -76.629921 140.810928 -137.777604 56.114911 2.522238 -22.869919 1.834327 -70.106517 -45.253674 -102.482423 -38.786409 -64.022746 -89.079309 26.958516 -107.122142 62.389210 -61.063297 -56.933243 -1.095785 -12.580224 121.302024 58.066947 36.397963 61.333369 -187.260366 19.200158 13.683613 64.289061 104.550905 -26.645006 -17.398566 -28.760777 -81.736878 -116.943917 119.677094 88.837529 34.131974 8.975813 -64.639510 21.698605 -39.883509 -31.242209 45.036883 80.506882 -122.411862 -3.393703 -18.385714 -36.641652 -75.091996 -157.497188 34.568241 -86.576060 60.927458 40.138790 -21.290381 -23.929361 -62.560014 20.094844 -111.484027 -120.360053 46.184839 -60.570561 22.898459 176.608029 -86.101775 -11.231122 -68.745810 -28.457294 7.427916 108.022494 47.707163 65.165288 123.122760 166.305397 64.317285 -122.342563 -92.697816 70.755219 128.714092 90.977575 65.999579 -128.972616 -86.680101 34.370433 -54.907421 -212.784861 -53.136423 68.315547 122.810792 12.652953 -77.699088 14.581407 -64.602188 140.475947 116.230418 33.240400 22.601440 16.565178 -137.213422 130.918042 219.979479 -40.057771 114.778639 -58.408089 -20.690438 128.632767 -123.862768 59.971882 42.551239 -16.315912 -42.059174 -69.429443 -33.679310 111.821791 61.130463 77.799200 -9.225724 80.920987 -65.644009 -200.578914 -201.606134 -12.574786 200.515587 15.136404 169.395853 -141.337562 -73.728821 -3.450903 157.316895 15.048409 -88.790591 49.121928 -108.157579 98.136056 -192.943820 -179.534200 269.731849 238.507314 101.605589 19.259422 101.651447 139.053415 -171.161584 -63.767255 -56.230559 68.352990 -0.969024 -194.969538 -67.568189 22.665775 -156.872127 -105.456409 -1.767687 67.974026 46.701987 23.273971 57.884836 39.902371 -61.172963 -74.173117 91.988523 -77.818496 -78.226210 5.395575 11.437917 39.024676 59.773881 -64.356002 33.861550 69.516848 -97.682074 30.274378 78.020866 87.625944 42.313666 195.850826 175.141638 -26.791732 117.750660 8.811831 -73.146987 174.249697 -33.557829 59.008344 30.170545 41.742158 28.880745 34.695213 98.524435 -81.043198 -84.331073 -144.542935 -18.440360 38.479756 124.636256 -44.921602 -171.243526 -189.712484 -12.487232 67.642816 126.979621 -18.929082 239.561227 -53.256653 42.538989 -258.241167 5.766028 95.444886 -12.663617 101.626768 51.013958 -76.027672 -136.815134 -62.021586 -118.010055 -92.132957 -53.709824 -72.606627 -73.099063 -98.674319 143.665124 -89.180313 1.897937 85.960141 10.011234 124.347677 -14.804765 4.387276 -106.856247 24.247519 79.698519 13.623847 -122.882145 157.886457 13.745426 338.144106 -42.301266 63.331637 -56.039679 73.455809 -33.891233 -98.498888 -22.941308 186.486151 146.730020 32.016294 -15.009162 -9.208858 -22.928672 102.394724 --3.067704 3.195007 21.766486 10.898388 -8.806932 -15.418231 -6.904519 -22.963499 10.711251 1.629374 13.919109 1.407425 4.579380 -3.158705 2.617484 0.725992 1.351908 -5.709605 2.860905 -5.112352 -0.161895 15.719920 9.001908 -11.693757 0.413323 -21.467803 11.185642 8.524362 11.121987 10.890181 0.999022 -3.602488 -3.251976 10.954688 -5.244461 0.907982 2.188893 3.491333 -7.615642 1.577787 2.466984 9.588155 7.848494 -1.549261 14.343999 4.298412 12.330117 3.695239 -6.951771 -2.424089 -8.594987 18.764567 -12.335632 6.355347 1.160936 3.769809 -1.565317 -11.580511 -5.348541 -13.155971 -0.307320 3.598410 -8.991041 1.762369 -12.439257 4.089099 -3.501568 -5.004144 4.877268 4.258091 12.660837 4.582952 2.621838 -2.365467 -13.768818 4.352039 -2.161337 8.952573 8.524204 -7.124722 -2.569666 3.224830 -3.997215 -9.343169 5.696996 5.335076 1.766174 -3.406900 2.427319 -1.372595 -3.621356 -4.050686 -2.911817 9.530235 -9.700032 6.009438 -4.794180 -0.791780 -7.322117 -6.015675 0.280059 -10.977043 6.463880 6.605429 0.293695 -1.799661 -2.389468 2.339944 -6.626940 -13.131203 0.785077 -1.382174 4.550253 14.743271 -7.683276 1.238143 -0.117506 -1.083283 -2.278122 12.730373 3.237908 6.193542 12.474682 17.247028 2.124413 -9.414763 -5.330397 4.300767 10.298804 13.157082 8.899389 -15.173778 -7.995674 -1.560958 1.992660 -19.277192 3.958587 6.876867 8.453528 2.866435 -12.777920 1.806076 -5.431688 15.584146 9.340017 5.940089 3.292757 -0.264991 -9.297731 14.007162 26.077288 -4.572602 9.053744 -6.317078 -5.364172 14.056470 -13.013015 8.712285 4.623152 1.995483 1.952577 -9.448651 -4.781878 12.207420 7.392661 8.152003 9.321887 3.651228 -0.279940 -20.948310 -14.814136 -0.092225 11.117238 -3.328643 19.500239 -10.200734 -7.984813 -2.656732 13.716890 -0.469515 -4.739191 1.155146 -8.230098 7.719370 -17.059169 -16.119484 19.877976 21.153669 3.517571 0.067482 13.284096 13.526586 -9.741079 -6.375030 -5.338768 7.285607 -0.802479 -6.851058 -1.522112 0.386069 -13.944733 -6.978705 1.652072 4.801218 6.300509 -1.305337 -6.493676 6.115320 -14.840035 -8.522872 5.423818 -11.002948 -5.613161 0.491663 0.653450 1.514794 4.461786 -7.193771 -0.485284 8.629780 -9.183239 1.103550 7.644026 9.677822 4.413841 15.549837 10.402663 3.296350 14.329899 7.344030 -6.019284 24.058554 -1.291950 2.616331 3.886660 5.526410 -1.074140 5.627469 3.063172 -6.895525 -8.374008 -15.018037 5.865147 0.776091 10.482782 -8.287883 -11.820022 -12.398147 -6.575191 11.247864 9.145787 -1.230676 24.050756 -2.001252 3.086877 -25.412039 -1.114580 8.605244 -0.876194 10.404538 7.489606 -8.308073 -16.596021 -5.724218 -4.311802 -2.377450 -6.107047 -10.984976 -7.956455 -7.664452 10.908064 -7.357085 3.803383 12.587719 0.353378 7.146815 -3.018566 -0.638215 -5.200038 -2.875785 6.322615 4.013235 -14.851849 14.738485 -3.519475 31.898659 -8.145778 9.287198 -10.099270 2.887815 -1.586696 -3.411954 -1.151710 18.448038 10.031831 3.770569 -0.569759 -0.192868 -6.613375 8.433923 -1.248574 6.988664 26.819076 14.157112 -16.569330 -22.569518 -9.113306 -33.433096 15.489698 1.346726 14.238930 2.417174 4.536554 -6.750661 -1.031735 2.924830 3.974016 -3.862572 -0.194656 -9.623420 -9.383890 17.975331 4.444857 -13.926473 5.219880 -29.686276 17.467435 9.560803 14.171882 13.114150 4.141368 -3.565299 -6.919936 15.169460 -2.079152 1.807976 4.765727 2.554182 -13.642286 3.487180 5.183478 8.075683 15.104335 2.339785 17.847653 6.333989 10.957580 7.160264 -10.459415 -0.625298 -11.145120 21.525489 -12.340821 11.006311 -0.108689 4.979177 0.065298 -16.237248 -3.521213 -7.695430 -4.352018 -1.010931 -9.940320 0.684382 -16.345860 2.907212 -4.703228 -10.128778 5.039194 3.862745 15.945539 5.455797 0.750091 -2.752033 -19.593147 3.446691 0.892944 12.975097 14.327916 -5.981935 0.425246 1.007042 -10.341029 -12.891062 9.536305 6.758964 4.123609 -1.323315 1.457146 -8.389540 -3.379232 -6.787912 2.963822 11.629168 -13.550284 2.904939 -11.502828 -3.478263 -11.499621 -15.466618 1.880666 -9.955395 9.479074 3.067694 -4.626735 1.560958 4.645618 3.315744 -4.492667 -11.992575 2.525391 -3.789898 7.498685 24.038890 -3.293328 -6.665240 -2.073862 -5.156948 -6.245278 15.036873 3.961451 3.790039 19.788691 22.148245 6.540942 -11.228277 -8.705844 4.131681 7.902566 15.794209 13.279903 -19.297739 -10.274641 0.461433 1.805132 -27.271719 4.024693 2.570254 13.445155 0.731270 -11.631894 0.952480 -8.565696 15.801336 7.347369 4.270195 5.727961 -1.956512 -13.405968 18.275916 32.553672 -4.274235 9.896059 -13.374660 -4.930676 13.913634 -11.994576 8.081624 1.763728 -3.344897 2.079556 -8.897348 -2.927094 15.420712 3.145928 2.217934 10.657526 6.890392 -8.834393 -25.642976 -20.088344 2.012966 16.584462 -2.860608 25.993588 -16.172215 -8.569879 -7.496866 19.983329 -0.923028 -2.753648 5.822847 -13.028443 10.938536 -16.735573 -20.977434 29.001450 28.478222 4.812676 -2.370088 14.769103 13.710219 -15.444169 -12.140611 -7.954514 3.584659 6.009951 -14.224562 -6.787598 1.167368 -16.849449 -8.770674 4.815284 6.963097 12.964495 -2.109385 -2.829752 3.134053 -16.111902 -17.069313 11.001991 -13.641326 -3.567943 5.591701 1.182463 0.314194 9.911806 -6.078690 -4.044662 6.751808 -7.695292 3.865096 8.541490 14.927081 2.073810 19.268261 16.050589 2.140586 20.629612 10.108100 -9.371457 31.215095 -4.235972 6.894330 7.104003 5.712229 -2.036699 7.674869 7.404733 -9.866709 -7.546136 -18.869677 4.721026 -1.175037 10.900936 -11.577526 -12.849070 -20.852478 -8.663623 8.213316 9.328110 -1.285107 29.203625 -3.085985 2.086960 -31.322400 -2.035721 14.290747 -0.063666 14.147855 9.362516 -12.950827 -19.913971 -6.679273 -11.270250 -5.236550 -7.934714 -9.538468 -11.757889 -6.972543 14.092091 -6.726529 6.026312 20.700070 -1.088065 8.527241 -12.586507 1.608199 -7.918908 -5.381751 11.516757 2.476091 -17.184577 17.346365 -2.075391 40.248269 -4.087394 10.653263 -10.806154 -0.024578 -0.304867 -9.449188 -4.981739 22.105611 9.833862 6.423484 0.492902 -0.177913 -6.322586 15.232895 --2.064034 2.871268 18.956780 11.060947 -11.787869 -15.819856 -8.058994 -21.389883 9.150061 0.677242 12.927879 0.561735 3.284060 -2.986199 1.296474 -0.351356 2.831882 -4.150373 1.072895 -6.173398 -5.329547 13.574127 6.556467 -12.046425 2.291909 -18.155123 11.060535 8.722835 7.524541 10.366340 0.869702 -2.551364 -4.969308 9.844696 -4.673259 0.725705 3.036141 3.049585 -8.147659 2.411568 4.735047 6.222013 10.959817 -2.178529 12.647903 5.243989 8.060890 4.763250 -10.242245 -2.221218 -6.234285 14.254803 -9.819308 6.936364 0.273477 3.941555 0.202207 -11.551713 -5.326619 -10.402310 -1.144722 0.619231 -7.571663 1.078593 -10.593731 3.190861 -1.735799 -7.408869 6.502768 1.587834 10.892910 3.150095 0.226835 -1.567475 -11.382834 2.969449 1.313638 9.106018 7.353258 -4.989840 0.158464 2.243706 -6.202655 -7.824404 4.199636 3.967130 3.864764 -2.004582 0.692755 -2.867733 0.260885 -3.091282 0.573492 7.850326 -7.457098 3.187175 -6.328485 -2.710785 -9.043320 -8.312125 1.363549 -7.563866 7.461289 5.614865 -4.613857 0.119217 0.904685 3.859348 -5.648162 -11.844841 0.375294 -3.216483 4.966186 15.684934 -4.602746 -2.709153 -1.451170 -3.518450 -3.046939 10.680632 2.279461 4.123581 12.087975 16.406800 2.735399 -9.549691 -7.010012 1.654853 8.523628 11.475723 9.186365 -12.488059 -7.533612 -0.879449 -1.217015 -18.784784 1.149192 1.859968 9.527046 0.832072 -10.128955 2.882146 -7.242201 13.968422 6.292776 5.798617 2.865719 -1.047879 -10.793500 13.179613 21.796804 -3.619029 8.770480 -6.777977 -6.781956 11.205920 -7.792817 6.830506 4.085501 -1.819782 1.046473 -7.430785 -2.317496 10.455754 4.725025 5.292846 6.271360 4.063617 -3.701373 -17.908047 -15.338506 1.831314 11.789002 -0.562827 19.550720 -11.602710 -8.663835 -3.867284 14.605030 -1.212029 -4.389090 2.335103 -7.785279 7.771268 -15.580010 -15.761962 19.545639 19.904947 4.491889 0.959361 12.960847 8.661512 -9.114083 -6.593877 -5.829261 5.686951 3.365323 -7.039904 -2.452901 0.837648 -11.446814 -5.798712 2.197823 5.598932 6.053568 -3.041961 -4.240474 3.330760 -12.719341 -8.794684 6.208615 -11.148687 -2.819773 3.417170 -0.567966 0.652099 5.423872 -5.470019 -2.379139 3.405946 -7.365773 3.204378 5.847745 9.904948 2.732778 13.893993 12.455239 0.590133 14.328629 6.105228 -6.304464 22.934241 -4.335351 4.425860 4.074748 5.810090 -0.878643 3.867606 6.128785 -6.131318 -5.014353 -13.358537 4.038134 1.242650 9.270752 -11.383773 -10.602503 -14.986954 -5.252468 7.850261 9.020767 -1.288998 21.566858 -1.928687 2.337666 -24.152062 -1.472294 8.437983 0.159535 9.562533 5.652403 -8.449086 -19.486952 -4.021096 -8.011799 -1.594473 -5.696423 -8.854176 -8.503579 -5.422261 9.469841 -4.512617 3.519135 14.602777 -1.982552 6.118147 -4.505482 -0.975491 -3.811161 -5.259182 6.312219 2.235547 -12.417765 14.055800 -1.032470 31.042052 -2.936820 8.620435 -7.828389 2.445551 -0.172743 -5.571300 -2.400710 16.023423 9.001188 3.985302 0.052937 0.717463 -5.525000 8.276033 --1.349222 1.635711 10.720234 5.942168 -4.989220 -8.539436 -3.783489 -11.042286 5.850041 0.531724 6.516425 0.849457 2.878315 -2.180382 0.264452 -0.613481 2.031792 -2.876171 0.790984 -3.177826 -1.280984 9.034544 3.185846 -6.811426 0.774370 -12.060975 6.819249 4.444043 4.759903 7.092140 0.573295 -1.021515 -1.828922 5.492211 -2.835162 -0.116934 2.008231 1.549901 -4.186362 0.345456 2.420092 4.534645 6.102436 -0.308887 6.453234 2.941931 4.288988 2.298880 -3.822602 -1.601412 -4.129391 7.110893 -5.221622 3.811701 -0.569936 2.211273 1.236282 -6.082757 -2.225232 -6.349516 -0.347024 1.560901 -3.766355 0.314473 -6.210210 1.734272 -0.839813 -3.631692 2.485758 0.404296 5.915743 2.517460 1.438909 -2.051801 -7.564260 2.212131 -0.177565 4.732769 4.468467 -2.357479 -1.657370 0.924366 -3.641395 -4.789419 2.753734 2.979953 1.550009 0.023830 0.741333 -2.320520 -1.115964 -1.651486 -0.356191 4.531947 -3.420254 1.944109 -2.517713 -0.743490 -3.637993 -3.791836 0.366341 -4.451603 2.969561 3.731562 -1.099055 -0.178170 0.110832 1.329610 -3.178810 -5.549684 1.661674 -2.175953 1.498936 8.104161 -2.703216 -1.248372 -1.054626 -1.361156 -0.868561 6.997065 -0.019739 2.371390 6.233321 8.432706 1.352008 -5.224352 -2.615702 2.173527 5.016169 5.513649 4.997916 -7.515575 -3.960460 -0.517513 -0.365589 -10.180864 1.054706 2.078567 5.334149 0.154985 -6.876305 3.017161 -3.790326 7.711279 4.550118 2.666572 2.026595 -0.210741 -5.799682 7.310282 13.029939 -2.098498 4.710530 -4.998595 -3.571214 7.236423 -4.739436 4.220109 0.908479 -0.565415 0.520162 -4.056618 -0.078628 6.286371 2.449736 3.367727 4.204292 1.874977 -0.964523 -10.402462 -8.649964 -0.030118 6.456131 -0.154358 12.128051 -6.320075 -3.849017 -2.326074 7.205458 -0.994323 -2.045337 1.298100 -4.244453 4.073560 -10.559452 -9.061606 11.884596 10.738688 2.147975 0.678103 6.576149 5.157423 -3.146364 -3.432355 -2.558588 3.037357 1.541218 -3.766566 -0.708188 0.438240 -6.653666 -4.178964 1.333440 2.561019 4.179488 -2.074285 -2.514022 0.512907 -7.244612 -5.827353 3.408778 -6.489810 -2.428806 1.695305 0.054574 -0.007374 3.015702 -2.044178 -0.970917 3.271173 -3.593241 0.637658 2.934728 5.192093 1.641925 6.637520 7.286814 0.459400 6.852172 3.887211 -3.159256 13.636690 -2.443844 1.611370 2.173643 3.602421 0.571490 2.910391 2.669370 -3.400803 -2.213000 -8.063771 3.461760 0.791854 4.532477 -6.839477 -5.751848 -7.730213 -2.994632 3.861800 5.733262 -0.837491 12.743034 -1.463271 0.851225 -13.598861 -0.530266 5.237337 0.559286 4.598718 3.917767 -4.654813 -9.572152 -2.327261 -3.957804 -0.625183 -3.435296 -5.954693 -4.379462 -3.279048 4.876159 -3.794916 2.414840 8.683272 -0.778833 3.670838 -2.789315 -0.217362 -3.454901 -2.414847 2.389625 1.548839 -6.004306 7.344425 -1.521899 15.126400 -2.895668 5.013192 -4.665280 2.972728 -0.956286 -4.021343 -1.443486 9.332388 4.024306 1.360597 1.226451 -0.269298 -2.362188 5.522664 --2.313796 4.175562 27.544461 14.768568 -13.963179 -23.168465 -10.787397 -31.547123 15.017851 0.675895 18.117660 1.826312 5.351872 -4.097993 1.883832 0.237650 2.439199 -6.991137 1.383642 -8.005965 -5.317763 22.328195 9.396970 -15.848231 2.494912 -29.673848 15.070764 11.747552 13.201286 15.987977 0.597907 -4.463153 -5.649444 13.937522 -6.787155 1.367836 3.942378 3.347090 -11.314305 2.109350 6.141344 9.846581 14.998946 -1.657594 18.157102 6.124212 12.884966 6.054533 -10.355363 -3.457786 -11.475042 22.549439 -14.365745 9.792129 -0.213404 6.127400 0.241174 -16.112890 -7.129652 -14.194098 -2.224099 2.626002 -11.311019 0.966627 -15.601024 4.920109 -3.406550 -8.583645 7.717431 1.403700 16.925158 5.086622 1.556014 -3.269792 -19.226074 4.287189 -1.045451 12.826989 10.791955 -6.986567 -2.051822 3.532753 -8.798648 -11.616698 7.460189 6.836403 3.685236 -2.818763 0.921021 -4.216467 -2.586046 -4.807841 -0.154725 11.557047 -12.100843 5.650992 -8.113557 -2.636402 -11.318020 -10.880376 1.741604 -11.747033 9.171646 7.178166 -2.813467 -1.107013 1.788414 3.716930 -7.701148 -17.467613 1.909254 -2.553124 5.302480 21.880795 -7.698086 -2.144028 -0.697252 -4.127063 -5.331362 16.631485 3.628851 6.505831 16.614647 23.035131 4.371345 -12.974042 -8.943584 4.657922 13.413541 16.113248 12.340722 -18.730351 -10.235625 -0.763410 0.216230 -27.949806 2.955861 6.524318 14.465013 2.668570 -15.457114 4.328678 -8.993970 19.714387 10.342643 6.739313 4.830708 -1.279540 -15.244959 19.170453 34.616146 -5.268000 12.864481 -11.600553 -8.363143 18.207681 -14.444521 10.441648 4.813228 -0.059730 2.166947 -10.972312 -3.284087 15.653148 6.820538 8.630341 10.346406 5.695942 -4.708806 -27.323752 -22.296486 0.162941 16.801775 -2.154727 27.325406 -15.791086 -11.188044 -5.299770 20.877414 -2.709004 -6.019578 3.719367 -12.272815 11.015098 -23.427186 -22.081544 29.256770 30.223739 5.620503 1.763721 18.351317 15.612671 -12.059204 -8.804230 -8.196506 8.397460 4.570634 -11.146460 -2.991354 -0.778290 -16.985284 -9.633645 2.839964 7.084101 8.034654 -2.832781 -5.324289 4.741667 -18.771778 -13.681019 9.353029 -16.738898 -4.928623 4.039190 -0.218373 -0.761531 7.685619 -7.471823 -1.855591 8.698293 -10.663913 4.286278 9.226749 12.260953 4.364442 19.746631 17.229078 1.552945 21.101326 9.239798 -8.489994 33.282959 -6.026167 5.066081 5.263268 8.598468 -0.987534 7.686354 6.146602 -8.968779 -8.309008 -19.572727 7.510356 0.990814 13.196474 -13.065621 -16.646874 -20.368109 -8.821640 11.949911 13.147867 -1.600818 31.869930 -3.792183 4.001468 -36.109049 -1.508580 13.092988 0.402934 12.860697 8.391990 -10.961730 -25.748605 -5.980565 -9.211686 -3.538715 -8.797210 -15.382895 -11.401974 -10.908576 14.363715 -9.466541 5.644473 19.372650 -1.234388 9.439876 -7.869742 -1.203108 -7.944020 -5.703166 8.703586 3.756385 -17.689594 19.224599 -2.818682 42.575673 -7.305939 13.229442 -11.948456 5.514334 -2.433472 -8.734019 -2.619050 23.670627 12.753336 4.277356 -0.252273 -0.127901 -7.700903 11.415434 --0.599994 3.276922 13.660166 7.964117 -7.250135 -10.782891 -4.748426 -13.667467 5.907855 -0.311954 7.710202 0.120909 2.245910 -1.098701 0.691798 -0.631375 2.199723 -2.607512 1.295738 -3.872791 -3.240743 9.345055 3.560928 -9.015726 1.408245 -13.871782 9.043248 6.515242 5.533521 7.642505 0.514029 -1.715286 -2.453459 7.171083 -3.620078 -1.579015 2.391193 1.733307 -5.587428 1.758200 2.870123 5.888813 7.599253 -0.823406 6.738324 4.919591 5.842957 3.647217 -5.519836 -0.687607 -5.578786 9.640096 -6.125359 5.062011 -0.503743 2.795759 1.489585 -8.319193 -3.029499 -6.674957 -0.735543 1.884442 -4.671754 0.395381 -8.171155 1.650637 -1.104355 -5.252336 4.528436 2.658598 7.374256 2.830489 1.090688 -2.561282 -8.496625 2.928086 0.241652 6.988566 5.223020 -4.351203 -0.353342 2.538359 -4.747749 -5.690654 2.485590 2.906387 2.857654 -1.586384 1.772203 -3.238658 -0.698020 -2.200860 -0.925789 5.798731 -3.407155 3.276968 -5.389279 -0.941039 -6.153342 -5.521000 0.031627 -5.450660 4.559430 4.408810 -2.172861 0.042145 0.999655 2.359539 -2.880641 -7.611220 0.876713 -2.547095 2.786376 10.274847 -2.457987 -2.017727 -0.435089 -2.132454 -1.891101 8.214676 0.314645 2.503052 8.107873 11.172668 1.227383 -5.888129 -3.808105 0.979705 5.088167 7.946199 7.197369 -9.510387 -5.163637 -1.430695 -0.010278 -12.592735 2.758712 1.626607 6.244096 -0.199414 -8.309227 3.061893 -5.381742 9.615403 4.564491 4.442119 2.576959 -0.792011 -6.409388 9.442476 15.935863 -2.797833 5.697668 -6.340965 -4.258889 7.958976 -4.652116 4.948978 1.634442 -0.746460 1.262560 -5.216890 -1.156204 7.700608 3.659406 3.257093 7.274667 1.864663 -1.677419 -12.719787 -9.533854 1.461138 7.554297 -1.552215 14.883324 -7.926571 -5.441414 -3.075363 8.934959 -1.557417 -2.108376 1.246818 -4.807587 4.932755 -11.467168 -11.015142 13.152635 12.117425 1.356072 0.114549 8.226909 5.930649 -4.765863 -5.141511 -3.793169 3.792274 1.511910 -4.030574 -1.414226 0.644413 -7.957321 -3.504828 2.192953 3.560048 6.241140 -2.784157 -4.794067 0.997163 -10.506100 -7.423421 4.184746 -8.442787 -2.395876 3.086844 -0.545318 0.158587 3.878477 -2.614146 -2.205821 3.496045 -4.812633 0.816415 3.630616 7.138785 1.438721 9.028618 8.036658 1.790176 9.299996 5.909046 -4.315350 17.410984 -2.561274 2.354751 2.953855 4.431640 -0.765397 3.674063 3.835095 -4.077583 -3.926170 -10.361663 4.416073 0.139881 5.488836 -8.393854 -5.747392 -9.679418 -4.395896 5.639751 6.930358 -0.926771 15.181056 -0.675758 0.946923 -16.065024 -1.149701 5.755051 0.575418 6.114958 4.820903 -6.202299 -11.764076 -2.609687 -4.867280 -0.591494 -4.212106 -6.944690 -6.085687 -3.073839 4.696396 -3.183800 2.975522 11.451403 -1.385488 3.487495 -3.672966 -0.700217 -2.706228 -4.091438 4.798226 1.736117 -8.179271 9.521122 -1.845240 20.437205 -2.649978 5.997074 -6.141976 0.942994 0.511862 -3.490071 -1.881714 11.421106 4.329582 2.445936 1.440689 0.247515 -3.395112 6.836352 --1.006198 3.635015 14.381611 8.206171 -7.446677 -11.306762 -4.835097 -14.655182 5.953000 -0.255904 8.818473 -0.215712 2.422495 -2.379617 0.933983 -1.127963 1.492357 -1.864018 0.932084 -4.113741 -3.486707 8.630784 4.736759 -8.299259 1.688866 -13.285044 8.858540 6.771487 6.571924 7.031242 0.599868 -2.014401 -3.209743 7.457717 -3.335008 -0.705756 0.848627 1.704795 -5.433889 1.994536 3.067295 5.870834 6.646689 -0.773415 7.244034 4.864685 6.399627 3.267400 -6.225530 -1.498019 -4.748675 10.879495 -6.894768 4.513153 1.135867 2.687330 0.737179 -8.188312 -2.397047 -6.465582 -0.134919 1.033665 -5.560954 1.180308 -9.031906 1.621547 -3.083126 -4.783173 4.924934 1.548428 7.273720 1.993780 -0.253537 -2.131559 -7.132451 2.788331 0.461981 6.732686 5.893486 -3.898281 0.275977 2.558566 -4.103042 -5.898523 2.830603 1.700534 3.044822 -1.890513 1.047036 -3.502660 0.054267 -2.386415 -0.305367 5.533034 -5.358819 2.963086 -5.879178 -1.627795 -6.565931 -6.134997 0.483069 -5.979677 4.868945 4.321757 -3.312310 -0.878568 -0.201942 1.508726 -2.471302 -8.697617 -0.608930 -2.050898 4.643097 11.492040 -4.020530 -1.536502 -1.430145 -2.014098 -1.998884 8.324799 2.201348 2.498941 8.764021 11.225774 1.489435 -6.133745 -4.143326 0.894028 4.865529 8.445427 6.923631 -9.637710 -5.573984 -1.258603 0.382418 -13.556534 2.585788 1.500349 5.940723 2.319129 -8.125188 2.426728 -4.979544 8.557159 4.207282 4.095342 2.527689 -1.199846 -6.082016 9.386949 15.319660 -3.279040 5.535043 -4.678988 -6.023772 8.543945 -5.710021 4.346354 2.884959 -0.605905 1.646498 -5.238301 -1.803755 8.161136 2.985997 3.702616 7.426852 2.078081 -0.901553 -13.179617 -9.923571 2.918783 7.000633 -1.722460 12.950954 -7.603759 -4.236497 -2.311515 10.604425 -1.280634 -2.700845 0.614173 -4.988879 4.930413 -9.645275 -10.846692 12.344326 13.017945 0.787035 -0.292864 7.718515 7.424736 -6.271617 -4.297468 -5.275410 4.152359 0.701587 -4.138549 -1.232633 0.471546 -8.260395 -2.658638 2.093368 3.728948 5.779376 -3.403507 -5.117282 1.334335 -10.259901 -7.616680 4.248740 -7.294684 -1.055912 1.891480 -0.887840 0.633710 4.164878 -3.829121 -2.551315 2.959533 -5.278466 0.821457 3.813969 7.763003 2.144492 11.148836 5.875978 1.564227 9.091778 5.469309 -4.526654 17.535091 -1.950105 2.774133 2.676249 5.591799 -0.713043 4.302802 3.353949 -4.466412 -5.176637 -10.362272 2.680913 0.411015 5.424053 -7.574760 -5.997149 -10.840911 -4.960815 5.920861 6.329191 -0.573621 15.662332 -0.779836 0.607498 -15.024513 -1.360972 5.737830 -0.872651 7.864788 4.545114 -6.372492 -11.051795 -3.705084 -4.590222 -0.160974 -3.732555 -5.878019 -5.969776 -2.807244 6.654057 -2.898322 3.235929 9.211645 -0.143310 2.874929 -1.993944 -0.288422 -2.487374 -3.875104 5.024695 1.992764 -9.492171 10.087410 -1.116219 19.758601 -2.755540 6.266416 -6.664935 -0.166613 0.717063 -3.439801 -2.138994 11.407254 6.177582 2.951240 0.036011 1.311774 -4.159841 6.488211 --4.441222 3.503600 28.446180 14.646425 -11.981061 -21.530544 -9.385857 -29.599835 14.165686 1.611550 18.926818 2.695038 7.000779 -2.282826 3.821758 0.565799 4.780343 -9.921595 3.535286 -7.628982 -0.563138 22.304354 9.176124 -16.626795 0.453131 -30.953660 16.652622 11.500894 11.381328 16.425733 2.863123 -3.417002 -4.215777 13.600286 -6.867163 0.658440 5.673681 4.023133 -9.284255 0.267465 5.191864 12.019455 13.225565 -0.857714 17.915348 5.782117 16.494680 5.692547 -8.123718 -3.537581 -15.142166 23.587523 -15.805116 8.421148 -1.189976 5.853984 2.008219 -16.878807 -7.763164 -17.941636 -1.554194 5.210003 -11.906648 0.703434 -15.030982 6.421721 -2.250790 -6.333598 6.375593 5.736043 17.609745 5.967922 5.054392 -3.370766 -20.435556 5.092507 -4.749924 12.251124 10.989211 -9.721812 -5.771695 3.796170 -7.771260 -12.198173 8.477259 7.416831 2.349181 -3.881420 3.152538 -0.797776 -7.204190 -5.036170 -4.537900 12.504471 -10.933505 7.631690 -4.059788 -1.018475 -10.047547 -6.352672 0.844946 -14.067257 7.167802 11.085651 0.142334 -2.150161 -3.729762 2.250856 -11.204662 -16.607418 3.678340 -3.774803 2.437818 17.740814 -10.160193 0.393033 0.406154 -2.060273 -1.016145 17.934350 1.765133 8.875560 16.110801 23.420231 2.000796 -12.685494 -6.841888 5.907626 15.662023 16.226491 12.267381 -20.578376 -10.783380 -1.820851 0.613963 -25.398882 5.869244 10.160929 13.914760 3.028455 -20.056241 5.161415 -8.321169 21.917569 13.772835 9.901579 4.270723 0.595303 -14.168997 19.038372 35.942061 -6.211005 14.260345 -11.458697 -4.161432 18.960790 -16.060984 11.208475 5.500237 2.634448 1.432482 -12.096016 -6.388043 16.217841 11.428853 11.071062 13.362418 5.377428 -0.956567 -28.624175 -20.926332 -2.224609 17.284812 -3.588509 29.115833 -15.783551 -10.981787 -4.207816 17.382767 -3.448963 -7.698772 2.385892 -10.367814 10.260247 -26.255627 -22.032516 29.657588 26.319061 4.086573 1.415466 18.372052 16.974907 -11.453622 -8.201828 -6.355821 10.531567 0.928568 -8.466511 -0.079588 0.095488 -18.691331 -11.748292 2.196740 6.986218 9.012591 -3.089378 -7.387901 7.262745 -20.131380 -11.689423 7.871096 -16.899823 -10.634761 2.309947 0.386777 1.361310 5.138183 -6.188300 0.043556 12.691553 -12.239164 0.108423 10.320156 12.666456 6.237927 19.793681 17.324121 4.036391 18.866778 10.066497 -8.193937 32.361588 -2.999669 2.650035 4.896217 7.865004 0.206831 7.102869 5.594151 -8.588035 -10.942869 -21.199476 10.824965 0.245285 14.951259 -12.581161 -14.659519 -17.573514 -8.499485 14.758914 15.834099 -3.643006 33.029161 -2.806955 3.616236 -35.687816 -1.151172 13.247293 0.491844 9.516268 10.253358 -10.484546 -22.242743 -6.083001 -6.872275 -3.160856 -7.926827 -15.769789 -12.277432 -12.574208 12.639408 -11.907145 4.773485 19.882099 -0.986271 9.994395 -4.665621 -1.914404 -7.276225 -3.668905 7.577154 6.009504 -18.267366 21.730409 -5.911711 43.605575 -10.645447 12.682934 -12.896919 6.874868 -3.552934 -5.566464 -1.340763 25.142076 12.292560 3.473937 2.214796 -1.245133 -7.002189 13.067660 --0.621707 2.849425 12.570616 6.908071 -5.760762 -10.059118 -4.421857 -13.532905 6.323009 0.081048 7.292359 -0.093044 2.601993 -2.067554 -0.079828 -0.727611 1.369463 -2.606015 1.389100 -3.519914 -2.826467 9.983323 3.517065 -7.252547 1.016121 -13.996198 8.873449 5.158175 6.161667 8.130198 0.445560 -1.522701 -1.836885 6.758486 -3.030219 -0.684694 1.668496 1.760549 -4.801703 1.578015 2.574855 5.325055 6.786831 -0.228187 6.713925 4.656661 4.687120 2.873517 -4.159573 -1.106468 -4.659941 8.355219 -6.065931 4.292177 -0.456998 1.947435 1.351652 -7.139629 -2.335922 -5.846817 -0.835641 1.136174 -4.665653 0.857566 -8.298179 1.806865 -2.446754 -4.386671 3.255664 1.330917 6.808905 2.981187 1.049440 -2.269406 -8.552188 3.069756 0.239093 5.825610 5.276794 -3.678035 -0.677066 2.090817 -4.650208 -5.841264 3.149844 3.177527 2.275668 -0.758621 1.565552 -3.576875 -1.016581 -1.956627 -0.049303 5.725017 -3.079532 2.749754 -4.758507 -0.959778 -4.880530 -6.075083 0.360634 -5.393811 4.062700 3.732722 -1.824954 -0.353220 1.324188 1.691326 -2.261196 -7.406173 1.104329 -2.301147 3.181111 10.316582 -2.549738 -1.686365 -1.486525 -1.923852 -1.618746 8.103450 0.838971 2.435514 7.488522 9.963673 1.393332 -5.751815 -3.612012 1.929729 4.483639 6.650629 6.171784 -9.187474 -4.889624 -1.052572 0.468317 -12.022100 1.585835 1.747864 5.560804 -0.282789 -6.999910 3.587089 -4.552407 8.117097 4.868894 2.772480 2.470531 -0.846107 -6.151339 8.940435 15.078080 -2.515649 4.849829 -6.377312 -4.943399 8.354958 -5.085186 4.486599 1.014776 -0.399825 0.973489 -4.803819 0.129032 7.412228 2.258712 3.341010 6.516424 1.892718 -1.117592 -11.724715 -9.054582 1.507805 7.433257 -1.197367 13.183924 -7.122178 -3.871137 -2.275450 8.754925 -0.356878 -1.559296 1.232121 -4.890814 4.583007 -11.315390 -10.459416 12.488879 11.748565 1.887254 0.121147 6.442601 6.737890 -3.821645 -4.358523 -3.807545 3.705149 1.174235 -4.653354 -1.702265 0.166193 -7.299083 -3.708553 1.941046 3.207850 5.962816 -2.811472 -4.040975 -0.248030 -9.026472 -7.732335 4.416135 -7.460973 -1.930690 2.325251 -0.262950 -0.295794 3.812101 -2.388497 -1.163283 3.527762 -3.807764 0.967360 3.635702 5.979437 1.009714 8.334019 7.183376 0.834539 7.627140 5.077703 -3.445907 16.220186 -2.371073 2.247368 2.827863 4.303479 -0.094764 3.892752 3.124467 -3.965832 -3.566226 -9.570234 3.646688 0.652692 4.795241 -7.144880 -6.121613 -9.519147 -4.117353 4.684150 6.541302 -0.110129 14.502608 -1.039508 0.905171 -14.227069 -0.774032 5.697926 0.243104 6.578005 4.429305 -5.667775 -9.654230 -3.030984 -4.575477 -0.815027 -4.490832 -6.786746 -5.402724 -2.674220 5.035266 -3.333691 3.094751 9.496484 -0.393802 3.023068 -3.570201 -0.344112 -4.042957 -3.239685 3.973729 1.246700 -7.468958 8.070316 -1.616180 17.200700 -3.156760 5.702452 -5.743888 1.847804 -0.387952 -3.964806 -1.632498 10.759567 4.191393 1.779107 0.924337 0.093933 -2.621589 6.169456 --56.872428 0.654416 243.065826 68.612137 -141.761699 -264.881986 -109.915105 -428.486082 195.821131 87.920841 246.014484 16.768416 155.737683 -123.991873 -0.778454 62.364853 93.647361 -130.722168 58.361013 -111.458746 -52.804429 313.603084 32.850985 -0.107637 14.085046 -306.265383 175.951483 55.217233 139.329522 195.553246 75.534753 -19.119657 -78.522293 105.314598 9.963541 147.717625 64.595172 92.945985 -105.222236 12.246994 19.748298 -50.552047 163.433614 -9.931078 264.057501 16.746638 112.235176 55.540432 -96.133075 -110.143927 -99.626175 150.634623 -188.805402 54.557574 -33.048829 -62.520218 15.121349 -74.924754 -61.091213 -109.087939 -54.580229 -101.384648 -138.243282 49.758740 -149.564307 98.287766 -97.233374 -73.986477 -26.897944 -39.548838 159.891528 87.421233 44.333981 84.855565 -293.712125 23.720541 23.181876 53.761631 137.719416 -27.285580 -38.328091 -47.896508 -138.161157 -170.283175 199.650499 168.450938 44.967704 27.321215 -107.999106 29.805187 -72.930744 -25.526687 92.049230 119.762657 -150.207998 -20.360000 -9.760284 -52.810871 -97.119951 -228.970959 66.640565 -120.496434 86.763297 50.818663 -26.278403 -37.014824 -68.681130 13.888551 -161.218583 -173.337243 55.192279 -112.630374 52.525337 257.884121 -113.462493 -21.868637 -135.945499 -47.288172 27.327842 142.429268 73.577761 81.817014 191.276417 208.262697 89.196118 -184.533918 -144.695622 128.869900 172.691295 98.768573 66.235001 -183.740736 -117.311844 48.600995 -91.236016 -292.303989 -112.705036 84.288312 156.109041 -38.001848 -80.071507 66.839222 -81.958516 173.463244 194.255456 21.002584 31.066989 40.673117 -193.411919 173.424970 299.395038 -40.572731 147.086800 -111.166911 -45.588834 198.677975 -162.982409 74.079060 64.676527 -20.135141 -99.678752 -90.713969 -0.134486 146.026099 50.166428 123.671553 -29.519671 121.730913 -84.538074 -244.679880 -286.486266 -18.097351 297.236682 50.813559 245.779732 -206.819819 -78.173120 24.337000 207.399809 54.495748 -124.299354 81.506908 -154.239198 135.402192 -294.060442 -254.764956 364.251331 302.714965 171.027547 34.754944 124.770737 190.593025 -221.006273 -76.138176 -76.656825 116.671630 8.505416 -296.557748 -83.551465 33.023024 -213.938864 -159.821432 -22.649684 97.861523 60.165390 28.930080 112.175895 -2.337834 -61.567570 -109.807462 147.763607 -96.920713 -108.488406 -9.853010 16.198231 31.147205 80.768548 -81.135252 82.321169 85.759420 -113.187719 58.119521 117.687378 83.170374 36.739210 261.358198 267.787038 -82.007006 127.769862 -21.295264 -68.793905 210.704060 -42.624215 76.085973 39.652057 62.894346 57.300548 42.909304 146.761669 -110.231410 -109.933026 -194.223109 -27.201409 80.581138 159.160334 -36.418224 -221.117406 -284.440539 -10.657460 63.934016 221.970530 -5.650802 329.223407 -85.086009 72.376119 -337.367718 22.021466 111.835406 -14.600574 140.347069 57.028424 -95.728488 -132.331179 -85.836059 -175.896710 -161.046146 -77.602971 -113.117826 -114.275340 -139.618879 177.873195 -135.385615 -12.595400 104.560116 15.233770 160.521533 -31.409810 8.412129 -173.280810 56.172425 103.436009 6.115331 -151.019993 197.259859 13.032263 439.947554 -60.257387 96.477198 -59.783418 151.107518 -73.159690 -172.170282 -29.049878 257.113736 190.283266 22.149871 -18.014963 -25.394798 6.677172 134.848848 --4.400570 4.491293 27.105478 17.037530 -15.188720 -21.973127 -9.927499 -27.364804 13.230336 -0.620684 17.171617 3.026033 4.686194 -4.171077 3.220029 -1.472990 4.528942 -5.592041 -0.084181 -8.089918 -3.025662 18.401896 10.014851 -19.930268 2.173758 -25.552868 13.242771 12.863563 10.613322 13.532375 1.367808 -3.765096 -6.819717 13.628858 -7.573089 -0.707674 4.894869 2.503836 -11.654367 -0.539376 6.168198 11.267961 14.431208 -2.073233 17.008588 4.782317 14.447436 6.180154 -12.455474 -2.907100 -11.738816 23.961914 -13.289667 10.256431 2.389857 7.190006 1.659461 -16.630126 -6.361183 -17.465591 -1.058209 3.717772 -10.018315 -0.351294 -13.833646 4.416819 -0.437236 -8.473848 8.904645 2.409814 15.972601 3.376660 2.459221 -3.989926 -15.692888 3.881513 -1.863811 13.668113 10.831174 -5.554964 -1.608977 2.347242 -6.555089 -10.135417 5.073095 3.032927 3.625888 -2.066543 1.391364 -2.927770 -1.422647 -5.894465 -2.519717 9.606671 -12.156807 6.207152 -5.960940 -2.444166 -11.344911 -7.128305 1.150999 -10.912677 7.753756 8.754937 -3.183123 -0.889915 -1.901269 2.905473 -8.939854 -15.536001 2.790900 -2.481226 3.192226 18.821443 -8.984359 -1.524907 1.566370 -3.048500 -4.407047 16.430515 2.014008 7.491584 13.676230 22.987566 3.007725 -12.203124 -6.781405 2.818636 14.202074 16.623890 12.809152 -17.500490 -10.039578 -0.616612 -0.116894 -25.581265 5.094502 7.791206 15.097443 6.935553 -18.626651 2.668198 -8.810434 20.635982 8.034071 9.345120 3.920159 -1.410659 -14.418965 17.884428 31.398526 -5.870823 13.749941 -7.549108 -6.379181 15.864032 -13.493852 10.255537 5.121465 -0.885859 3.532074 -9.965448 -6.150103 15.170902 9.718580 7.695912 10.428334 4.897684 -4.300139 -28.628605 -21.400816 0.190408 15.031621 -2.565585 26.299656 -14.804173 -12.343828 -5.963186 19.453225 -6.337581 -7.173461 2.558490 -10.927869 10.708501 -21.063993 -20.658675 28.658929 28.267692 2.839672 1.522665 19.038121 13.469007 -11.724756 -8.614875 -7.087448 7.141802 3.666039 -7.173640 -0.975110 -0.132265 -16.909065 -9.162752 3.970711 6.816730 7.400543 -3.655120 -6.271380 7.234239 -18.569024 -11.813708 6.487456 -15.464168 -5.596958 4.364956 -0.137128 1.657890 6.755046 -6.779702 -4.250839 8.276383 -11.617952 1.589782 7.108190 14.350089 6.417362 19.684180 15.101569 3.790990 22.202382 10.323402 -10.260953 33.885396 -5.828180 4.864423 4.585757 9.061402 -0.436217 6.779426 5.897725 -8.626570 -7.584652 -19.463471 7.102515 -0.101320 14.006295 -16.997180 -15.631422 -18.279509 -8.253864 12.829360 10.277779 -4.766271 30.636854 -3.703401 1.912856 -35.880792 -1.997835 13.853826 -0.153505 10.625956 9.172073 -11.168305 -27.890202 -5.401767 -8.178348 -0.903525 -7.393568 -13.449326 -10.229128 -10.180333 14.703138 -9.432134 5.665487 20.160341 -2.155275 9.258878 -5.570186 -1.210686 -4.559647 -7.029751 6.935534 4.789142 -17.860319 21.170691 -3.049983 42.284654 -6.590156 12.178719 -12.380766 4.179285 -1.279461 -6.656752 -2.866100 22.943002 13.176543 4.575541 0.861682 1.251177 -9.418952 12.163161 --2.324732 2.005158 15.766793 8.995067 -7.936789 -11.745240 -5.739139 -15.891068 8.419718 0.116510 9.893205 1.816161 2.965761 -3.471361 1.013319 -1.273446 1.600331 -3.537738 -0.121720 -4.420469 -1.844757 11.238463 6.460143 -10.778417 1.670044 -16.234072 8.024093 6.345380 7.148532 9.034772 0.073542 -2.066775 -3.465315 7.995806 -3.879123 -0.034655 2.303373 1.371039 -6.333794 0.085697 4.085930 6.224695 8.134246 -0.712205 10.190438 2.746821 6.345431 2.920080 -6.660528 -1.944015 -5.685239 12.452110 -7.888083 5.790618 1.021905 4.466398 0.207838 -9.293409 -3.603329 -10.166457 -0.354123 1.875964 -5.179082 0.260590 -8.336949 2.560842 -1.132346 -4.653205 4.704691 -0.131104 9.015841 2.750419 1.504794 -2.298886 -8.975527 2.670904 -0.293989 7.254124 6.377816 -2.908008 -1.416759 1.316505 -3.769444 -6.071796 3.308035 2.377869 1.702329 -0.812221 1.310940 -2.838974 -0.282449 -3.039093 -0.938106 5.965718 -7.448871 3.078687 -3.819344 -1.470976 -5.208711 -4.855804 0.498217 -6.510120 4.548569 5.195838 -2.393277 -0.160748 0.368958 2.288593 -4.272340 -8.771686 1.521806 -1.117330 2.291714 11.659445 -4.756277 -1.308215 -0.047004 -1.655246 -2.587596 9.544531 0.713394 4.182583 8.615669 12.866005 2.169767 -6.962525 -3.461213 2.652153 7.676366 8.942627 7.014692 -10.277424 -5.488220 -0.117083 0.418173 -15.193968 1.857135 3.249702 8.373704 3.222885 -10.225055 2.131314 -4.823029 11.264944 5.208289 3.902834 2.555684 -0.871687 -8.520829 10.675641 18.651384 -3.281982 7.064276 -5.202613 -5.302363 9.867307 -8.197736 5.980573 1.885915 -0.447820 2.389568 -6.195044 -1.984247 8.997078 3.914686 4.556501 5.060285 2.794373 -1.964558 -16.078378 -12.394099 -0.387060 8.235055 -0.835652 15.517506 -8.274086 -6.137261 -3.895906 12.008925 -2.168793 -3.226583 1.593744 -6.552453 6.002156 -12.954052 -12.357610 16.654075 17.391335 2.660881 1.343226 10.415364 8.155438 -5.650977 -4.513999 -4.204964 3.765005 2.965154 -4.590629 -1.348003 -0.320065 -9.387826 -5.652738 2.286425 3.477576 4.735975 -2.555065 -3.693678 3.658868 -10.363258 -7.441055 4.520643 -9.469544 -2.824501 2.148541 0.035084 0.414447 4.337849 -4.012701 -2.125061 4.439246 -5.787125 1.537777 4.276426 8.102046 3.020358 10.159319 9.045576 1.296345 11.071710 5.711027 -5.354711 19.474329 -3.916716 2.500901 2.927986 4.743562 0.080688 4.291206 2.904006 -5.098832 -3.268601 -11.021411 4.196849 0.170455 7.250402 -9.743637 -9.541401 -10.538315 -4.854739 6.695826 5.694266 -1.261383 18.211211 -2.207255 0.763944 -20.341380 -1.349521 8.237983 0.215622 7.295735 5.281953 -6.401950 -16.317418 -3.544964 -4.808038 0.258078 -4.934426 -7.983375 -5.722508 -5.463148 9.466737 -5.100507 4.053201 11.332444 -0.623555 5.652731 -3.635839 -0.527423 -4.255305 -3.646201 2.898312 2.644890 -9.535363 11.189590 -1.531273 22.294700 -4.389931 7.077281 -7.345892 3.114139 -1.267398 -4.389086 -1.671016 13.020883 7.391892 2.840743 0.280204 0.206468 -5.443391 6.884294 --2.768483 3.621860 22.960337 13.575024 -13.568683 -19.568592 -9.300825 -27.966548 12.958647 1.681036 16.120361 1.336680 5.926176 -5.498069 1.004427 -0.417171 4.715641 -5.174703 1.338247 -7.648694 -5.218682 18.309071 6.347769 -13.681864 2.219546 -22.667384 13.560451 10.056717 10.058309 12.513209 2.585090 -2.687490 -6.235243 11.663922 -5.498931 1.576649 4.192725 4.087322 -10.619545 0.520750 4.981562 7.132536 13.759638 -1.512429 16.114744 4.515974 10.036007 5.488026 -10.893965 -3.177726 -7.903553 17.719158 -11.575257 8.299232 1.067639 3.330280 1.548947 -13.181389 -5.101389 -11.842781 -1.449501 0.360206 -9.399260 1.170632 -12.712867 3.949933 -2.342026 -8.275109 6.229079 0.644815 13.187342 3.652853 1.236811 -2.237976 -16.072814 3.391516 0.927454 9.707456 10.265162 -3.649588 -0.193238 0.948832 -8.025272 -10.432542 7.374561 6.247401 3.839640 -0.438039 -0.884847 -3.665742 -0.801390 -4.491522 1.673185 9.421294 -9.800342 3.487037 -6.138906 -3.422851 -9.840246 -10.672634 2.440638 -9.358138 8.224539 6.237660 -4.410636 -0.191613 0.379366 3.392876 -7.469068 -13.476014 2.177031 -4.837360 5.547950 19.612648 -6.337578 -3.726885 -3.064020 -4.085570 -3.187975 13.367365 3.154821 5.242485 14.179704 19.199540 4.073807 -12.121613 -8.162094 4.236868 10.621146 13.201680 9.912267 -15.766234 -8.785912 0.315556 -1.743800 -23.319031 0.236034 3.639154 12.023572 1.342961 -12.325106 3.483319 -8.040200 16.166954 8.423215 6.383855 3.655370 -0.247113 -12.949992 15.194737 25.806535 -4.121023 10.627048 -7.978515 -7.399209 13.117395 -10.294438 8.293289 4.007422 -2.207537 0.529899 -8.465772 -1.916430 13.065308 5.045803 6.248751 6.034650 5.624258 -5.499235 -22.241186 -20.140260 1.964842 15.527262 0.173615 23.703070 -14.224583 -10.211360 -3.772397 17.568237 -1.693782 -5.788827 4.113576 -10.428804 10.032956 -19.302009 -19.320738 25.136639 23.799673 6.057209 0.146710 14.815720 10.618003 -11.806449 -8.484551 -7.085151 6.704565 4.082648 -10.462499 -2.580732 0.979769 -14.762340 -8.075124 2.692426 6.522712 7.567291 -3.359242 -2.280817 2.375297 -13.806493 -11.029596 8.612721 -12.026016 -4.018391 3.034135 -0.133831 0.836875 7.326550 -6.274109 -2.446531 5.132093 -8.715419 2.911486 6.815449 11.510781 3.055414 17.930101 15.765225 0.186509 17.351590 6.597815 -7.928755 27.752982 -5.389774 5.080388 4.453755 7.022066 0.281238 5.066675 7.710462 -8.073782 -6.586443 -16.651267 3.660225 1.861018 11.649427 -13.570116 -13.472721 -18.841243 -6.132189 8.091313 11.324468 -1.829603 26.856297 -3.911849 2.700948 -29.298678 -1.138699 11.243464 -0.344868 11.408779 6.921219 -10.575044 -21.284761 -5.264264 -10.564372 -3.636136 -6.543645 -10.995541 -10.065277 -8.078070 12.851401 -7.117417 4.104169 17.302269 -2.219269 7.933378 -6.348460 -0.421097 -5.860139 -4.932140 6.942053 2.132654 -15.174537 17.107491 -1.589465 37.250579 -4.365004 10.344144 -9.553139 4.949415 -2.007559 -8.561755 -3.271528 19.955454 11.588445 4.250287 -0.081057 0.834085 -6.443427 10.880593 --2.392186 3.426900 22.949923 15.263395 -14.753712 -21.854706 -9.750676 -28.210467 14.366089 0.830849 15.587692 2.157508 6.249184 -7.276700 -0.260628 -1.044095 4.796460 -5.263006 0.197306 -8.482518 -7.404617 21.944796 6.958502 -14.868677 2.710175 -25.516741 15.627894 10.499560 11.394420 15.071618 1.805219 -2.514861 -5.875427 12.385982 -5.656740 1.601447 2.247866 3.636693 -10.907451 0.643568 7.279330 6.254922 16.264038 -1.172332 15.578574 5.011698 10.510662 5.609524 -11.167485 -4.172287 -9.153750 16.608213 -12.007165 8.992136 -0.601039 4.065486 3.401107 -13.386611 -4.874688 -11.166099 -2.236887 -0.258362 -10.068492 0.872194 -14.541363 3.925854 -3.488306 -9.369425 6.258357 -1.213171 13.633848 4.706149 0.600237 -4.181621 -17.601596 3.524006 1.333916 10.678103 10.742592 -2.072793 -1.188348 0.711660 -10.184696 -10.760527 7.557356 5.469414 4.264364 0.523890 -1.099832 -6.211593 -0.475558 -3.677425 2.660890 9.210160 -10.155707 2.816219 -6.955593 -3.506490 -10.387119 -11.956415 2.453394 -8.941171 8.156176 6.416693 -5.700674 -0.216458 2.190616 2.016070 -6.901654 -14.431340 1.674108 -5.494536 5.623169 21.478591 -5.794428 -4.651961 -3.965256 -4.351189 -3.952067 14.667091 2.755144 4.710682 16.103059 19.642544 4.543063 -12.810496 -8.045134 4.266973 10.832400 12.569265 10.971112 -15.552032 -9.544115 0.242638 -1.187074 -25.272683 -0.173639 4.226027 13.366443 1.608014 -12.769790 5.992456 -8.486714 16.400840 8.919301 4.711184 4.673895 -0.907742 -14.233184 17.024790 28.589852 -3.889992 10.570662 -11.265097 -10.072161 17.651234 -10.625850 8.119213 3.068776 -2.961816 -0.307307 -8.337826 0.826974 13.834641 2.487539 5.493142 7.714850 5.625110 -4.876219 -23.678822 -21.710917 2.498765 16.312352 2.303089 26.655423 -15.793566 -8.072897 -4.215209 17.675843 -1.679392 -5.446205 4.475980 -11.449999 10.373934 -22.968266 -21.186888 28.116998 25.266608 5.566370 2.026781 15.105280 11.579396 -9.669818 -8.342042 -8.315091 6.939010 6.567625 -10.804505 -2.173276 0.899814 -15.377707 -9.065457 3.312219 6.704480 9.175840 -5.887563 -2.814684 -1.532984 -14.938730 -14.232242 9.908764 -13.917801 -2.935620 4.251070 -0.670527 -0.567682 8.456455 -4.168551 -2.500734 3.261631 -7.488306 3.455429 6.043290 11.950516 2.844862 17.240390 18.424051 -1.695347 17.329361 7.404886 -7.618433 31.026971 -7.234350 5.458627 4.850278 9.438946 1.464860 6.440753 8.242148 -8.275590 -4.655666 -17.386857 5.359979 2.678094 10.454627 -16.898890 -13.370276 -21.831521 -7.160355 7.318242 12.550186 -1.636710 28.668189 -5.323962 1.847515 -31.962806 -1.138211 12.284153 1.062179 12.732731 7.257672 -10.980758 -21.112782 -5.872645 -10.988595 -1.437723 -7.609474 -12.101220 -10.721915 -7.215133 12.440461 -8.447306 5.229418 19.007654 -2.947057 8.181983 -7.808468 0.049578 -7.777191 -5.974920 6.455842 2.674332 -13.962118 17.647452 -1.782112 35.800039 -3.785877 11.467670 -9.861687 6.852495 -2.431693 -12.210505 -3.945477 20.674572 10.866268 2.830230 1.487084 0.712615 -5.133044 12.197489 --5.824167 -0.560185 37.710767 21.979715 -12.533255 -29.216562 -14.980346 -38.125887 24.971754 0.071172 23.714451 5.209569 7.881636 -9.685615 1.267847 -1.784959 1.618737 -14.927985 2.354723 -9.752488 0.872334 38.813037 18.124011 -25.697045 0.760539 -51.128010 20.816042 13.730851 21.736238 30.640805 -0.882685 -6.338052 -2.131314 19.465139 -9.952006 2.485703 4.821119 1.234444 -14.851934 0.752481 9.822616 19.201142 21.085101 -1.421601 26.219623 4.777691 18.383290 5.272039 -9.975312 -5.512280 -20.901691 31.669219 -23.006632 10.847409 -2.751676 12.562906 1.278806 -23.797958 -13.156388 -25.916371 -3.546476 10.263174 -15.032624 1.042708 -22.490741 9.709716 -6.677148 -6.784394 9.513003 0.838195 24.913445 13.258584 8.100672 -7.627746 -27.872911 9.696380 -6.445741 18.785797 14.427346 -11.278226 -8.781794 6.368099 -8.786116 -13.893594 10.095947 8.116246 0.701824 -2.655890 7.708248 -7.305870 -8.909576 -5.343361 -4.616586 13.851071 -15.548031 8.525317 -7.195498 -0.743702 -7.050712 -7.102586 -0.688062 -18.127895 8.377288 15.565462 0.686102 -0.609442 2.011716 3.423466 -13.427995 -23.197151 5.856553 -0.059796 1.759411 29.448050 -14.492177 0.275599 -0.774234 -0.217067 -7.020630 27.706300 -0.415070 14.005518 19.330381 32.505332 3.692771 -17.593995 -6.954206 10.560950 23.237346 20.354327 18.046787 -24.750202 -14.529553 -4.536951 6.403468 -37.797474 4.808807 12.133655 19.852039 8.610718 -26.745892 8.352473 -10.030303 32.694802 17.997126 5.031955 8.016250 -1.662889 -23.831128 31.957526 54.387425 -7.620807 18.373541 -21.594248 -12.992992 31.831709 -26.242808 16.290291 1.372789 3.069495 6.785506 -17.423868 -1.903695 21.809045 8.521800 14.938168 15.302895 7.285767 3.232010 -41.538346 -30.306832 -3.507613 20.323440 -3.243161 41.272630 -19.627204 -13.662220 -9.509569 25.724800 -1.919737 -6.038545 3.757020 -18.363311 14.036679 -44.356071 -33.242742 46.737145 45.116855 7.713153 7.425842 25.156505 28.551721 -8.543735 -6.512975 -8.169231 12.933357 8.595912 -13.211897 -0.681429 -3.055154 -21.566733 -21.592713 5.432907 7.693484 10.293882 -7.772151 -12.089656 6.369579 -28.471869 -19.338857 14.788639 -29.969929 -10.572185 4.539186 -0.137743 -1.896724 10.380610 -8.164003 2.140835 17.065359 -12.377738 3.113423 12.518735 18.172151 8.749095 17.252006 28.753286 3.847750 28.318590 16.483154 -10.590145 49.311186 -9.179781 3.890423 7.446947 9.434186 2.435153 11.680648 1.774976 -11.892189 -7.582498 -27.008190 18.963654 1.812175 19.279735 -20.717923 -26.123957 -23.353828 -13.831466 20.152938 16.001737 -0.934237 47.683717 -8.126075 1.756442 -53.057918 -3.015936 23.712775 5.842399 18.485596 14.376172 -13.080536 -38.109799 -9.862187 -8.106572 5.173945 -16.285160 -28.514261 -14.908597 -18.493057 25.987682 -18.498779 11.982165 29.202715 -0.126648 15.962198 -9.641381 -2.555022 -16.526881 -7.465395 0.800410 10.494631 -21.810081 27.352068 -9.095557 50.394483 -17.054158 17.648640 -20.569652 15.597693 -8.503186 -12.336358 -0.550450 34.303696 16.373884 1.481865 2.506681 -4.329722 -10.832471 15.823158 --3.023832 2.395028 19.924150 10.697763 -9.445091 -16.966383 -7.741025 -22.987134 11.611705 1.601350 14.118000 1.961554 5.237181 -3.539299 1.504310 0.174317 2.716976 -5.772837 0.980214 -6.129174 -2.786198 17.034022 7.675379 -11.077047 1.107368 -20.821368 10.368624 7.877542 9.423994 12.197219 1.297141 -2.793125 -3.770478 10.051739 -5.061752 2.081097 2.625693 3.111337 -7.816305 0.214403 4.186101 6.493271 11.210491 -0.262207 14.308185 3.574545 9.751387 3.628627 -7.530444 -3.339734 -8.355669 16.340245 -11.392326 6.581032 -0.213621 4.138584 0.767233 -11.009550 -4.772803 -12.073688 -1.425519 1.846455 -8.798483 0.736664 -10.995238 4.034496 -3.061128 -5.907852 3.976145 0.104665 12.359641 3.807929 1.669654 -1.994907 -14.744394 3.038954 -1.209138 8.109882 8.578561 -4.103811 -2.993156 1.319018 -6.078431 -8.989622 6.746900 4.763642 2.127164 -0.417826 -0.139442 -2.326315 -2.693291 -3.257853 0.028577 8.470864 -9.075177 4.350794 -3.001176 -2.311165 -7.437091 -7.407864 1.631232 -8.975530 6.020855 5.528668 -1.200454 -1.266834 -1.595798 1.966452 -7.240491 -12.502253 2.401074 -2.513130 2.551419 14.962929 -7.238068 -0.977178 -0.911567 -2.347216 -2.275840 12.491565 2.987606 5.262423 11.275175 16.104093 3.121026 -10.119509 -5.552525 3.963587 10.680537 11.121952 8.294610 -12.851482 -7.741605 0.264007 -0.480093 -20.300628 1.241838 6.511262 10.456423 2.826630 -11.933078 3.362618 -6.107967 14.139282 8.979384 5.415243 3.544071 -0.520501 -11.394529 13.057006 24.402250 -4.186514 10.261086 -7.070535 -6.014531 14.019232 -12.012727 8.009696 3.348266 -0.340081 1.047487 -7.784308 -2.468610 11.801708 5.511549 6.802888 6.122478 4.373207 -2.854996 -19.953044 -17.103446 -0.713117 13.225995 -0.290431 19.446374 -11.409932 -7.711477 -2.861409 14.439436 -1.744232 -5.332319 2.763405 -8.628067 8.192448 -19.426590 -16.301661 22.367288 21.767975 5.310875 1.285518 12.672030 11.657710 -8.207483 -6.241322 -5.531636 6.493352 2.555242 -8.231926 -1.753367 -0.551704 -12.943401 -7.695651 1.447548 5.046684 4.925377 -2.607223 -2.430271 3.115972 -12.299298 -9.002673 6.171234 -11.679049 -5.003657 1.769395 0.179128 0.026360 4.829909 -4.991308 -0.614801 6.716176 -8.287202 2.163579 6.523949 9.021613 4.069204 15.084935 13.473842 0.209637 14.279740 5.722263 -6.166417 23.585503 -4.873536 3.486885 3.442002 6.865734 0.514518 5.199696 4.912457 -6.657748 -6.143869 -13.833156 4.971917 1.918745 10.285280 -9.491982 -13.013140 -14.844182 -5.341798 8.321759 10.329831 -2.043304 23.675857 -3.405745 3.280780 -26.134380 -0.517904 9.894683 -0.078377 9.155137 6.542196 -8.188302 -17.684548 -4.980285 -7.020536 -2.063683 -5.627235 -10.798125 -7.674822 -8.350848 10.813090 -8.476024 3.885254 12.703724 -1.311611 7.734014 -4.347578 -0.729193 -6.319642 -2.998444 6.023395 2.937087 -12.698228 14.474600 -2.181459 30.524918 -5.813089 9.785129 -8.608003 5.662174 -2.803880 -6.337647 -2.125741 17.855968 10.617910 2.597984 -0.039946 -0.122556 -4.868323 8.181513 --1.979366 0.882718 12.026140 7.082228 -6.063764 -10.171927 -4.468607 -13.265325 8.177103 1.373597 7.640802 1.956486 4.369030 -4.209535 -0.277322 -0.509248 2.749611 -2.918819 1.178551 -3.912451 -1.376912 12.558526 4.345312 -7.572213 0.768038 -14.178908 7.099540 4.217455 6.414441 9.318697 1.235658 -0.795433 -2.372156 5.916454 -2.690919 1.069393 1.396013 1.835194 -5.357985 -0.098874 3.286949 4.393568 7.219680 -0.911763 8.981356 2.051497 4.798043 1.948030 -4.370091 -2.666627 -4.886366 7.884197 -6.297264 4.314244 -0.872658 2.290623 0.621785 -6.282349 -2.495906 -7.912354 -1.074778 1.119110 -4.829707 0.923163 -7.099041 2.619920 -1.224925 -3.879734 2.304776 -0.842934 7.224468 2.478880 1.931961 -1.621315 -9.625276 2.163671 -0.220541 4.800940 5.796891 -1.317642 -2.134183 -0.241610 -3.983847 -5.561162 4.307720 3.523502 0.390439 0.494872 -0.139300 -2.873657 -0.727503 -2.239435 -0.350816 5.402205 -5.585548 2.420613 -2.604365 -1.465036 -2.728158 -4.957800 0.863145 -4.752182 2.727930 3.937059 -0.829245 -0.218360 0.034445 1.205310 -4.184019 -6.123858 2.626593 -1.934683 1.311655 9.893718 -3.208232 -1.770531 -2.153118 -1.059326 -1.478352 8.658263 0.597984 3.524807 7.271980 9.767162 2.225654 -6.846775 -3.278894 3.340016 6.483423 5.899632 5.159756 -8.209993 -5.220538 -0.068392 -0.197880 -11.980100 -0.114205 2.969374 6.852574 0.318245 -7.116161 2.513311 -3.957826 9.273440 5.906867 1.784988 2.493720 0.008097 -7.555109 8.989778 15.732486 -2.307401 5.249107 -5.065048 -4.836593 9.362914 -7.036301 4.588340 0.481926 -0.270413 -0.249676 -4.585335 0.500192 7.284631 1.699752 4.624432 2.661739 3.660232 -1.616477 -12.608382 -10.826663 -0.922131 8.090437 0.770010 14.507734 -7.523934 -4.333438 -1.932832 8.023085 -0.212004 -2.863383 1.812206 -6.160428 5.231778 -13.314709 -10.910120 16.178639 13.825866 3.069535 1.464095 6.899572 6.509468 -3.551598 -3.865993 -3.210061 3.591586 2.784529 -5.428821 -0.876250 0.620120 -8.095505 -6.128790 1.275720 2.854803 3.596990 -2.537936 -1.152970 0.786836 -7.107844 -6.928135 4.908255 -7.367166 -3.401260 1.218489 0.399503 0.862088 3.728999 -2.795719 -0.251631 2.882263 -3.671170 1.026580 3.305680 5.322771 1.602290 6.574652 11.161997 -0.492197 7.563332 3.586358 -4.004775 15.668458 -3.822246 1.929228 1.969181 3.912740 1.895693 3.045371 3.163642 -4.255034 -2.045497 -8.755771 3.254701 1.527275 6.009842 -8.642003 -8.404328 -9.422737 -3.177470 3.904956 5.837176 -1.014301 15.424396 -3.334172 1.366967 -17.263559 -0.376976 7.338104 1.014359 5.974788 4.092605 -5.053860 -10.650526 -2.954368 -4.554633 -0.611255 -4.291891 -7.338324 -4.020842 -4.924365 6.834025 -4.499648 2.680542 9.631067 -0.821065 4.821820 -3.328652 -0.189965 -4.673623 -1.677025 1.225455 2.081382 -6.898059 8.404757 -1.429310 16.560849 -3.908356 5.867816 -4.743820 5.185806 -2.440993 -5.821645 -1.548635 11.048525 5.836043 1.482656 1.136154 -0.145501 -2.749703 6.346755 -2.164407 3.881668 13.630183 6.171440 -8.694651 -13.007056 -4.474799 -20.224211 9.501774 2.256088 7.491186 1.311490 3.855121 -4.527180 -1.383003 3.903951 2.785488 -1.557037 0.247787 -5.748788 -5.746424 11.548088 0.650278 -4.342665 3.080217 -16.485279 9.393240 4.103481 9.056484 7.046463 3.154827 -1.636459 -3.653352 7.578078 -0.469982 2.586399 2.136541 2.191359 -8.444488 2.489926 1.504969 2.389072 8.062898 2.241974 10.399410 3.023223 5.403311 3.941788 -4.419356 -1.033024 -5.713737 10.627131 -6.043142 6.167878 -1.773997 0.686134 -0.386984 -6.591424 -0.926179 -1.732233 -2.901718 -1.894181 -5.630410 0.781993 -9.027781 1.686274 -3.824152 -6.007904 0.345058 1.783184 8.650256 3.371262 0.133953 -0.853188 -13.623366 1.158254 0.936695 5.923241 8.533507 -2.293388 0.178031 -0.951551 -6.870770 -8.101192 7.601988 6.109374 2.075457 0.640302 -1.287743 -5.277637 -2.855949 -3.446058 3.952235 6.441463 -8.104327 0.664968 -6.086947 -1.882932 -5.544980 -10.873432 1.645289 -4.895323 5.057240 -0.838370 -0.904941 1.221968 3.263514 1.844740 -2.215146 -5.636004 2.044676 -2.619279 3.856600 14.468977 -0.610934 -4.587164 -2.531739 -2.964269 -3.845156 7.630094 3.362001 1.357342 11.779616 10.765047 4.713203 -6.263519 -5.414168 3.850623 3.566386 7.705821 6.344123 -9.945610 -5.753630 1.287728 0.117191 -14.964659 0.262424 1.720906 7.323712 -2.279393 -3.305520 0.468613 -4.445165 7.181281 4.769841 0.508467 3.526597 -0.823329 -7.422908 9.026593 17.722870 -1.736037 4.623957 -8.010487 -1.893647 7.166077 -6.108929 3.872635 0.365535 -2.621539 -0.657537 -4.077464 -0.256554 8.183495 0.170351 0.443598 4.073298 4.986572 -6.934462 -12.481154 -11.578031 0.350641 10.045454 -0.706703 13.725270 -8.874394 -3.809869 -3.559569 10.221550 1.018791 -1.187984 4.492172 -8.084520 5.986219 -9.282164 -11.321630 16.660717 15.879223 4.917527 -2.237759 6.949410 7.851516 -9.557971 -7.710534 -3.788933 1.328544 3.559926 -11.445410 -5.573385 1.355317 -9.727764 -5.336847 2.000607 3.818105 6.560614 0.872682 1.961632 -0.366063 -6.995302 -9.484847 7.015744 -6.098786 -1.429814 2.675096 1.319545 -0.534463 5.831297 -3.720824 -0.804222 3.898690 -3.558343 3.043634 4.668443 7.102834 0.372180 10.831168 10.145969 -0.154323 10.811472 3.735246 -5.124485 15.376432 -2.234542 4.128282 3.505073 2.211829 -1.029734 3.759446 4.616485 -5.659101 -4.050243 -9.984533 0.870581 0.537004 5.010381 -3.352003 -7.003460 -12.220976 -3.645112 2.125087 6.360454 0.141536 15.306073 -3.095372 2.053920 -16.290434 -0.070458 6.972282 -0.467681 8.096866 4.706988 -6.802542 -8.008302 -3.786310 -7.373469 -5.648569 -4.190842 -5.188254 -6.210305 -3.828576 6.991993 -4.403601 2.560307 10.324166 -0.257671 5.747152 -8.601181 1.541287 -6.123314 -0.612630 7.520141 0.422160 -8.923300 7.450338 -0.585521 21.762889 -1.546850 5.591956 -4.701405 0.435138 -1.018120 -7.289786 -3.363792 11.799422 5.391272 3.426764 0.280901 -0.596912 -1.612066 8.428166 --22.988014 7.978839 116.180982 62.734343 -55.758869 -100.504710 -45.517979 -149.078487 79.649930 20.302306 86.905995 8.177740 46.456298 -43.997702 -4.075128 -0.746762 27.490682 -41.280904 11.440652 -40.165255 -13.270200 122.184623 27.679027 -60.860311 7.379874 -142.320143 86.502490 44.918216 53.733733 83.731726 17.802614 0.450582 -21.527905 58.861219 -25.431685 23.250140 19.768599 29.505951 -41.394516 -3.381226 32.036742 34.141188 69.129946 -1.045200 94.396286 26.814075 48.705555 20.910509 -40.847006 -29.487517 -43.946359 71.008514 -65.164041 34.071329 -16.637986 7.419996 17.805955 -63.283344 -23.384129 -70.548478 -5.950258 0.838746 -55.090542 9.630834 -70.169441 30.348596 -9.744478 -36.100773 12.951136 -9.958182 67.343768 28.532339 10.513514 -13.116332 -100.783907 20.190718 4.121766 36.403947 57.908032 -17.337654 -22.267895 -3.599569 -50.238651 -62.406263 56.929820 50.858951 17.512698 13.966594 -4.890896 -19.975682 -21.865540 -18.402521 13.753430 57.294033 -46.779466 7.376149 -8.694173 -16.510683 -40.064569 -46.464127 21.057771 -52.235699 35.095489 40.683241 -18.803167 -1.689623 0.437004 8.220400 -48.122003 -64.807293 17.577159 -43.298857 32.240580 103.108579 -33.643454 -17.111458 -36.353336 -19.333638 -0.049329 78.681488 6.240165 29.732727 83.616845 92.639312 20.550915 -70.402779 -42.766386 44.248668 61.403425 54.135881 40.748277 -90.994240 -46.651176 -0.391956 -12.500587 -116.898698 -15.972941 21.853466 62.499111 -11.851220 -67.459927 49.021313 -35.584136 83.084974 65.260017 15.375446 16.825468 10.500784 -77.022666 80.345465 148.388647 -16.685333 49.428173 -59.166163 -42.235417 88.244943 -57.842435 42.317166 19.945750 -10.749925 -14.385283 -42.941350 11.866013 68.549628 15.314150 43.120699 27.245061 35.581353 -13.566827 -112.346309 -114.933396 -4.246883 89.946121 15.266114 141.812005 -80.666243 -35.245667 -16.640091 86.749113 3.675261 -27.619290 21.885351 -58.769273 52.098031 -123.741029 -109.637775 144.274542 122.116978 46.457385 13.018288 72.352757 61.563786 -41.112078 -32.934105 -27.606326 42.640609 24.670972 -59.117038 -5.117778 6.243908 -81.108827 -66.443634 4.943098 32.704287 36.289388 -19.089299 -0.036563 -10.647859 -59.993786 -66.363956 42.341492 -61.075182 -31.129948 7.903271 4.678515 -0.961671 35.873024 -27.491218 7.812529 29.787682 -34.564602 15.071062 39.869201 45.971070 15.152021 77.672863 99.538411 -18.154405 71.135462 23.778756 -26.445108 139.046582 -20.837385 22.798266 26.756439 36.165812 23.918837 27.120175 39.026880 -43.314299 -16.308095 -92.521258 28.513335 23.565322 55.932369 -72.326248 -67.794680 -106.522563 -28.872427 34.893468 75.856814 -6.302773 150.248512 -25.555791 11.864148 -155.898693 -0.182483 61.659843 1.054939 53.510361 37.925743 -53.011410 -96.218946 -29.956205 -56.131561 -29.152941 -42.410489 -62.249269 -57.851997 -41.133100 65.592870 -53.671523 21.381867 90.193195 -0.759855 40.288083 -37.120256 4.861087 -51.368922 -15.850230 20.697294 12.608388 -68.271834 77.733031 -15.436073 170.465466 -36.260047 60.354599 -45.325654 62.724859 -27.404032 -63.943493 -14.659023 110.216093 53.293152 7.688191 10.445293 -5.890785 -16.152945 68.743302 -0.089345 1.123538 3.511099 1.566091 -1.984830 -3.047756 -1.337784 -4.321740 1.629755 0.254864 2.265979 -0.093812 0.898449 -0.143869 -0.032738 -0.008791 0.543267 -0.520174 0.332027 -1.148039 -1.481603 2.599157 0.589906 -1.331022 0.425808 -3.410935 2.393809 1.307977 1.611051 1.961901 0.285852 -0.402072 -0.935453 1.717871 -0.703901 0.022723 0.383320 0.801079 -1.379726 0.560013 0.734654 0.620524 1.968984 0.080357 1.858611 1.341244 1.048976 0.881523 -1.237010 -0.477538 -1.091600 2.107987 -1.623173 1.230462 -0.195530 0.296969 0.197406 -1.625740 -0.462885 -1.004562 -0.275183 -0.300974 -1.399102 0.292609 -2.187719 0.472774 -0.950198 -1.502767 0.691777 0.044335 1.894525 0.453133 -0.013984 -0.255178 -2.704007 0.465501 0.213664 1.390366 1.505525 -0.685166 -0.069416 0.380086 -1.667661 -1.842378 1.116791 1.179576 0.736727 -0.256932 -0.238675 -0.843154 -0.075889 -0.415938 0.507614 1.747260 -1.219150 0.735987 -1.650668 -0.477323 -1.711095 -2.493283 0.360904 -1.425979 1.384711 0.542428 -0.828808 -0.256431 0.399244 0.460393 -0.519822 -2.263727 0.147167 -0.785557 0.930663 3.031119 -0.601159 -0.723859 -0.466128 -0.939490 -0.414690 1.890044 0.777591 0.387995 2.292265 2.585317 0.713424 -1.740294 -1.379864 0.525725 1.001925 1.784445 1.566761 -2.416452 -1.361775 0.101410 -0.409206 -3.648309 0.231685 0.429832 1.637577 -0.447346 -1.363520 0.750483 -1.479353 1.680596 1.368094 1.067174 0.722268 -0.256026 -1.673882 2.026135 3.866892 -0.683469 1.503666 -1.484245 -1.304938 2.180548 -1.260655 1.180001 0.490325 -0.209915 -0.120901 -1.228922 -0.132824 2.113240 0.439328 0.896540 1.492194 0.623544 -1.102491 -2.982413 -2.691886 0.382954 2.619684 -0.066101 3.191168 -2.220861 -1.001658 -0.228530 2.796381 -0.042412 -0.752949 0.628450 -1.232367 1.386269 -2.756718 -2.797562 3.184957 3.236549 0.656442 -0.240740 1.698592 1.597371 -1.722943 -1.604374 -1.408813 1.052459 0.243151 -1.727918 -0.825303 0.081388 -2.134378 -0.552101 0.373439 1.062421 1.598493 -0.482853 -0.369861 -0.015928 -2.066441 -2.177861 1.462253 -1.742965 -0.433959 0.599930 -0.075145 -0.249629 0.969484 -0.732514 -0.441280 0.794641 -1.140047 0.652201 1.145184 1.288698 0.037571 3.064383 1.935549 -0.204892 1.827223 0.922618 -0.970051 4.199921 -0.873345 0.810384 0.666521 1.438118 -0.368873 1.034467 1.337056 -1.128480 -1.486091 -2.524576 0.301325 0.164828 1.300467 -1.362488 -1.779867 -2.991173 -0.845060 0.889663 2.258038 -0.015646 3.910626 -0.283949 0.736426 -3.764817 -0.010838 1.376853 -0.301831 1.866819 0.994547 -1.529497 -2.294082 -0.803014 -1.619480 -0.836148 -0.883798 -1.623090 -1.544965 -0.821351 0.996433 -0.750643 0.498390 2.152738 -0.297715 0.948171 -1.044043 -0.124223 -1.073249 -0.585435 1.864011 0.032998 -2.149375 2.317722 -0.049535 5.250963 -0.397770 1.668737 -1.146913 0.217022 -0.040199 -1.348105 -0.661067 2.984529 1.434159 0.806494 -0.087863 0.147290 -0.485706 1.411560 --0.898657 2.006492 10.090765 5.244900 -5.141918 -8.606157 -4.064881 -11.415167 5.136109 0.443957 6.639374 0.221253 2.326621 -1.500607 0.259857 -0.118067 1.401493 -2.852751 1.115808 -3.090364 -3.120265 8.336284 2.944807 -5.198801 0.884922 -11.096173 6.948115 4.240239 4.481593 6.391660 0.654963 -1.204603 -1.673128 5.525935 -2.180877 0.336360 1.375462 1.779968 -3.460685 1.332999 2.562940 3.317116 6.034431 -0.015034 5.983840 3.428806 4.017237 2.294019 -4.009860 -1.318619 -4.212722 7.106226 -5.573748 3.193363 -0.579270 1.851734 1.300644 -5.960664 -2.266368 -4.778144 -1.060415 0.449398 -4.156761 0.668071 -6.112873 1.675138 -1.973441 -3.447462 2.530539 1.104635 5.869803 2.332839 0.627506 -0.900283 -7.011621 2.164295 0.238784 4.549387 4.427146 -2.851252 -1.054241 1.614004 -3.924227 -4.984729 3.211319 2.495641 2.033707 -0.766255 0.558587 -2.152885 -1.156983 -1.347267 0.244701 4.801272 -3.162548 1.877044 -2.990955 -1.195283 -4.577059 -4.900664 0.466945 -4.512855 3.380095 3.379581 -1.751310 -0.834411 -0.218162 1.063602 -2.963931 -6.247355 0.755475 -2.469703 2.069522 8.011182 -2.632885 -1.143894 -1.063120 -1.777324 -0.805667 6.389124 1.268730 1.857375 6.518927 8.312421 1.271207 -4.847382 -3.276715 1.257401 4.363681 5.385400 4.814513 -7.220087 -4.079120 -0.538658 -0.242678 -10.112040 0.956101 1.704287 4.557161 0.193145 -5.663990 2.724668 -3.727516 6.632939 4.363503 2.837649 1.936038 -0.505877 -5.365429 7.296632 12.208388 -2.129094 4.689529 -4.682549 -3.852729 7.281437 -5.012056 3.725952 1.599833 -0.591066 0.141993 -3.957948 -0.501137 6.050231 1.993717 3.009071 4.644202 1.790204 -1.053154 -9.289732 -8.141164 1.179509 6.906283 -0.415606 10.836832 -6.335875 -3.402605 -1.358469 7.536890 -0.396441 -2.106188 1.224877 -3.678311 4.002407 -9.557840 -8.621383 10.830223 9.634271 1.890398 0.427791 5.823314 5.602489 -3.999220 -3.576612 -3.358403 3.401993 1.301711 -4.057777 -1.189636 0.299200 -6.060539 -3.151462 0.946339 2.721938 4.134637 -2.218144 -2.557396 0.301476 -6.894451 -5.361773 3.589921 -6.218746 -2.220457 1.632146 -0.391679 -0.303729 2.994218 -1.811579 -0.827468 2.469832 -3.734870 0.954187 3.255491 4.903159 1.378649 7.598124 6.929906 0.027107 6.321955 3.647284 -2.513253 12.156441 -2.262097 1.866277 2.283175 3.815719 0.109880 2.862886 3.251957 -3.227946 -3.357819 -7.643085 3.053716 0.790199 4.261484 -5.377644 -5.117079 -8.339002 -3.149604 4.174409 5.922933 -0.511360 11.997964 -0.734848 1.023128 -12.083350 -0.515015 4.604640 0.163959 5.069858 3.371050 -4.452568 -8.025970 -2.734898 -3.958302 -0.856978 -3.011079 -5.103214 -4.514575 -3.113586 4.306380 -3.321484 2.270480 7.438606 -0.669571 2.793223 -2.294488 -0.441202 -3.366621 -2.144278 3.726120 1.013847 -6.002552 7.475200 -1.192475 15.006155 -2.520675 4.768304 -4.340852 1.904041 -0.336297 -3.238716 -1.197390 8.890097 4.077940 1.476499 0.609899 0.359971 -2.018685 5.014424 --7.619080 0.489146 38.213588 17.251414 -10.673637 -38.088381 -16.938252 -41.822966 20.945765 -4.295702 34.259411 -1.688012 8.576551 -8.825560 8.198456 4.766634 6.970704 -19.669500 2.515759 -12.819801 -3.404086 34.254116 18.704761 -14.035408 1.968340 -45.982666 7.271919 17.400258 18.866270 25.504354 2.033169 -10.217869 -0.574979 16.399909 -7.521677 9.705917 9.721668 -3.831558 -18.094626 1.559782 2.546433 11.184951 25.818393 -4.014886 25.579139 1.277185 27.468446 7.059219 -16.554598 -7.854805 -30.561683 49.064966 -26.894796 4.099877 3.680445 8.033934 7.748232 -25.343543 -16.566436 -22.630725 -12.612775 5.937459 -17.463948 1.397812 -18.141449 13.525068 -12.274693 -3.725484 14.376808 3.937271 26.750979 14.911579 8.105642 9.366794 -21.890049 12.378775 -3.912157 21.992359 12.827509 -16.645116 1.354378 9.828954 -6.351360 -11.896348 19.511441 -1.086940 9.611080 -4.923451 -3.130234 3.176759 -11.571274 -5.982055 -3.152480 4.937093 -17.426300 6.414951 -0.832912 -8.282047 -19.472092 -13.974797 -2.464564 -17.405144 5.604205 17.761514 2.250691 -3.683150 -21.429842 0.825218 -23.691701 -31.036404 5.505516 -0.124640 -6.354335 29.772008 -31.850345 5.426815 -1.329146 3.841670 -8.349776 26.385210 4.490615 19.751130 11.620880 35.266742 1.870614 -16.825481 -8.086472 -1.003538 34.927771 21.226319 21.708188 -18.396015 -19.570694 -3.624804 -0.538914 -44.557863 0.874973 19.626808 25.664525 28.202646 -33.006782 5.987549 -9.255323 37.448262 17.031355 7.255805 6.248963 -4.082463 -26.914866 34.630682 44.468687 -16.334629 33.564445 -15.388510 -8.080251 26.090047 -31.406300 11.022183 9.441332 0.207782 8.188961 -15.824123 -13.503411 21.168012 22.443505 15.306949 10.320504 9.677408 4.686440 -46.646831 -35.841317 2.738739 21.077949 -13.695878 28.705008 -19.966305 -21.614658 -5.742385 31.067902 -14.893249 -17.122922 1.233305 -21.779151 14.029705 -41.353771 -34.617165 54.976709 48.729474 6.781333 13.325200 24.265296 38.184636 -26.073541 0.463672 -9.603122 17.481308 5.173805 -32.215304 -6.734860 -5.564406 -21.057657 -19.100228 -0.270452 11.683048 -1.929948 -3.045277 -3.171452 9.979414 -30.031190 -6.016756 13.523888 -31.667323 -14.086516 5.146216 -5.215810 5.902778 12.468706 -11.449213 4.345953 19.839003 -27.870544 -2.418795 11.155432 29.011172 19.715018 34.788061 31.514162 8.105848 41.526685 12.881615 -17.822923 34.197511 -11.256616 6.161082 0.100287 13.349999 2.586042 12.148595 8.153561 -11.523308 -22.921069 -27.344961 13.149915 2.981610 22.963944 -3.375715 -32.872595 -30.682355 -14.404121 28.792472 19.514716 -6.882926 46.200496 -8.777446 -1.782780 -53.126375 -4.399994 19.719551 4.445330 17.776447 12.653903 -12.249891 -38.177275 -11.799034 -13.955084 -0.839947 -11.368690 -27.210241 -12.326397 -30.841660 40.745392 -25.136432 9.092603 16.301920 7.292661 19.765085 11.725404 -6.959056 -16.410982 -0.978509 12.658861 11.300316 -22.030735 36.867517 -4.413129 61.246522 -13.345320 13.728284 -24.682767 8.293494 0.405764 -5.082128 -0.142459 35.700957 32.587089 -2.637335 -1.853888 -1.562387 -11.213436 17.389876 --2.167731 3.835346 17.739875 10.512372 -10.794137 -13.993619 -6.985764 -18.042834 7.108998 -0.967923 11.249117 0.679809 1.452532 -1.495812 1.937095 -1.521879 1.915501 -2.939792 -0.209333 -5.314299 -4.175908 9.150548 6.131646 -12.408621 2.229976 -15.564649 8.782171 8.663565 5.955826 7.607653 0.397279 -2.774525 -5.263625 9.215113 -4.400242 -0.946911 3.473334 1.405479 -6.979842 1.246029 4.547936 7.294329 9.214939 -1.635445 10.418907 4.683065 7.737115 4.412130 -9.448337 -1.218948 -6.030047 15.056593 -8.240078 6.656037 2.581316 5.073603 0.312703 -11.749141 -4.138430 -9.788402 -0.787378 1.369150 -6.065673 0.106528 -8.861157 2.252560 -0.455170 -6.038753 7.348616 1.504488 9.946792 1.164284 -0.008315 -1.459044 -7.795282 2.520251 0.178049 9.327046 6.543149 -4.757925 0.684103 2.631483 -4.411238 -6.304916 1.949498 1.354923 3.460211 -2.534268 1.221684 -2.256417 0.973791 -3.919598 -1.021242 6.695128 -7.354475 3.394598 -5.980274 -2.458650 -9.023050 -5.983724 0.871447 -6.731912 6.312800 5.397362 -4.553557 -0.570298 -0.075638 2.678448 -4.433652 -10.469484 0.447628 -1.547292 4.315315 12.621270 -5.075047 -1.795454 0.775617 -3.278131 -3.230416 9.783358 1.969413 3.727585 9.426568 15.285339 2.019105 -7.664735 -5.701370 -0.052151 7.643738 11.251486 8.728113 -11.603008 -6.314296 -0.721420 -0.437235 -16.706910 3.548314 2.270798 9.350416 4.327678 -10.900318 1.108659 -6.488412 12.455856 3.780243 6.624364 2.193359 -1.654178 -9.013330 11.596998 18.903464 -3.893074 8.624084 -4.476224 -4.963079 8.588515 -7.504482 6.172214 4.297598 -1.099693 2.810345 -6.435351 -4.452495 9.681614 5.799215 4.488680 7.223185 2.854262 -3.418212 -17.415585 -13.121677 1.887984 9.347991 -2.415007 15.679584 -9.797198 -8.338575 -4.058947 14.390826 -3.903975 -4.337991 1.387754 -6.317667 6.772359 -10.507025 -12.779801 16.404221 18.381405 1.255576 0.398845 12.109984 7.813373 -8.570264 -5.630529 -5.510952 4.388398 2.339964 -4.133536 -1.397814 -0.231481 -9.729912 -4.137728 2.647310 4.819949 5.278601 -2.811255 -5.031609 5.580858 -12.107845 -7.911943 4.163612 -9.748503 -2.260709 3.514915 -0.615790 1.014018 4.593992 -4.960208 -4.115293 4.033755 -7.489070 2.099181 5.021356 9.555065 3.540042 13.428212 7.837381 2.506050 14.450521 6.887373 -6.382704 21.278203 -3.717319 3.989715 3.582397 5.941304 -1.560918 4.436895 4.305982 -5.434418 -5.398303 -12.196626 3.695951 -0.883957 8.782497 -10.512496 -9.590558 -12.565267 -5.744902 8.408881 5.797427 -2.507948 19.021690 -0.630945 1.359451 -21.549314 -1.907045 8.400698 -0.724568 7.357123 5.271684 -7.541431 -18.939481 -3.284135 -5.932751 -0.865393 -4.416344 -7.297932 -7.034809 -5.516358 9.291511 -3.639128 3.788254 12.586467 -1.107395 4.374668 -3.409445 -1.066854 -1.709625 -5.929055 5.967664 2.246524 -12.065613 13.548723 -0.835778 27.622465 -3.048263 7.729542 -7.678517 0.175522 0.834327 -3.128537 -1.943087 14.130737 8.366334 4.192796 -0.723931 1.565500 -6.778077 7.432487 --4.739626 1.644408 25.302558 16.414721 -11.773092 -18.653305 -9.964721 -23.182644 13.925784 -0.777244 14.799637 2.782755 3.290895 -5.752541 0.826582 -3.583712 1.435316 -7.759815 0.591386 -6.569316 -2.118429 20.958491 11.793656 -20.354372 1.623593 -30.113287 15.570755 10.782185 11.332455 17.804741 -1.161472 -3.513006 -3.323398 14.155360 -6.923057 -0.919652 3.696190 1.506952 -8.560906 0.954171 8.359046 13.479522 14.361275 -1.825475 15.843203 5.972693 10.762228 4.297921 -10.764042 -2.654373 -10.579158 18.700568 -13.874101 9.057120 0.072047 8.899172 1.898748 -17.206789 -7.425080 -18.265526 -1.128731 5.448503 -8.648642 0.146956 -14.633666 4.411064 -1.368535 -6.916223 8.841092 1.072084 14.963869 6.652741 3.385607 -5.728408 -14.054302 6.419523 -1.263738 13.151201 9.485287 -7.092902 -4.071402 4.303857 -6.268551 -9.210490 3.281168 3.051299 2.683369 -1.924092 5.791074 -5.586301 -1.687535 -4.111773 -3.497989 10.198335 -8.503249 5.069991 -6.038824 -1.456271 -7.682549 -4.925074 -0.449645 -11.170558 6.937020 11.309165 -4.188659 -0.075062 1.782298 3.254937 -7.246986 -14.367504 2.759782 -2.214110 4.087071 18.134188 -7.230934 -1.443861 -0.032605 -2.029921 -3.581584 17.323096 -1.213627 7.071521 13.985530 21.841138 2.235995 -11.549266 -5.126247 3.622404 13.050196 14.143520 12.629289 -17.077878 -9.197407 -3.161915 3.011799 -23.743725 4.273187 4.787138 12.847576 4.896721 -18.261715 6.187213 -8.072196 21.014272 9.340950 5.625896 4.422953 -1.472088 -14.824894 20.112644 33.111378 -4.899343 10.944737 -12.243614 -10.118604 19.248954 -13.652804 10.651608 2.189742 0.098652 4.694318 -11.097529 -1.289404 14.670137 5.720722 8.145216 11.520324 3.650417 1.244406 -26.554282 -19.567350 0.213934 12.774615 -1.199351 28.714864 -13.891431 -9.499631 -7.263919 17.668052 -2.522964 -3.716714 1.442015 -10.055877 9.308734 -25.724093 -21.565329 28.460664 27.969459 3.207102 4.065143 17.359550 14.265069 -4.601833 -5.807004 -6.274774 7.315085 5.648354 -4.373883 0.066941 -0.576994 -13.863461 -11.387142 4.366379 5.177593 9.101612 -7.641372 -10.841520 4.288606 -19.222572 -13.558884 7.314639 -18.492650 -5.427330 4.588917 -0.352708 -0.086773 7.189616 -4.574461 -2.576873 7.110547 -8.070180 1.792460 7.070821 13.501535 5.206936 12.176506 16.727071 2.474456 18.189738 11.976537 -6.959877 34.339316 -6.468876 3.323601 6.255975 7.834006 1.426862 7.516864 3.422698 -7.735767 -2.806230 -18.375034 12.018231 0.418126 11.657309 -19.864437 -14.656317 -16.857956 -9.138219 12.741148 9.064767 -1.794052 30.805380 -2.737335 0.144115 -34.303075 -3.041106 14.705513 3.055155 11.888079 9.409680 -10.428498 -27.806046 -5.932153 -6.362460 4.466685 -9.863319 -14.976387 -10.178349 -7.989775 14.350829 -8.729433 8.374469 21.488080 -1.400205 7.870725 -6.423043 -1.225438 -7.561117 -8.618542 1.992151 5.726298 -14.526376 18.474144 -4.715225 34.011712 -8.963123 11.782859 -13.082471 7.436955 -2.546153 -7.173420 -1.550164 21.657183 9.261121 2.839442 2.256127 -0.558200 -8.570239 12.315659 --4.095904 4.994846 31.981235 19.155060 -18.280952 -25.659626 -11.869559 -33.350394 14.491100 -0.089263 20.846627 2.411241 4.136422 -2.985399 4.179731 -0.029234 2.652159 -7.105125 1.553601 -9.235619 -5.668472 22.243462 14.543829 -20.720406 2.464504 -29.907707 16.763769 14.427131 14.457517 16.108833 0.343350 -5.690049 -6.938976 16.412245 -7.914461 0.256104 1.926890 3.825833 -12.442984 3.487390 7.301705 11.321136 15.456984 -3.454159 20.115490 6.939381 19.096550 6.722431 -14.971302 -3.332014 -14.008070 28.104849 -18.025932 11.183653 1.427902 7.758437 -1.237128 -18.782777 -9.146758 -18.880861 -1.872630 3.009889 -13.758553 1.373057 -18.571753 5.828965 -4.878417 -9.964541 10.573694 5.147798 19.444713 5.299272 1.215041 -3.868934 -18.793490 5.060727 -1.856487 16.101890 11.502852 -9.562175 -1.783700 5.293760 -8.069955 -12.273180 5.687065 3.771135 4.284167 -6.448257 2.887833 -2.833616 -1.932036 -5.298162 -3.556015 12.830790 -15.383913 8.836491 -9.784816 -2.790100 -14.686590 -10.613420 0.689132 -14.523448 11.114895 9.434506 -4.471048 -1.735064 -1.371792 3.818196 -9.115020 -21.936268 -0.923759 -1.362574 6.636981 23.008008 -10.426150 -0.251397 1.406038 -3.110287 -5.518661 18.144946 5.003589 8.715925 19.514691 27.480994 3.461181 -14.244841 -9.084089 2.308949 15.307598 20.419873 15.508645 -19.900708 -12.941492 -2.225772 2.020434 -30.491552 6.354654 9.571128 15.753337 6.415336 -18.999333 2.174182 -10.083146 24.248789 11.317669 10.370801 5.056779 -2.212035 -15.870600 22.076669 39.224030 -6.950912 15.060058 -10.293813 -9.413714 22.620635 -17.298253 12.084135 7.829949 1.326465 3.214486 -13.633281 -8.059708 17.994566 10.637939 9.732079 15.150760 5.393745 -2.518509 -32.560222 -23.087129 1.224501 17.298236 -3.167214 29.493899 -17.222404 -12.310876 -5.256039 21.549998 -2.882597 -8.251660 1.900957 -12.360700 11.821262 -25.969361 -24.616976 30.778867 33.190274 3.483417 2.222001 21.753287 18.640113 -14.733700 -10.141262 -10.188773 10.869744 2.241856 -8.491096 -2.404021 0.100412 -20.274232 -9.022007 3.666507 8.438758 9.827840 -4.833135 -10.293653 8.974327 -23.690021 -14.146624 8.527719 -18.939991 -6.558333 4.087670 -0.723286 1.862184 6.923279 -8.695672 -2.959981 8.570631 -13.858830 3.378465 10.183358 16.018045 6.505039 23.819536 17.210533 3.952937 23.825270 11.727603 -10.617998 38.779799 -5.269605 5.667997 5.830778 10.444663 -2.822030 8.324180 6.799834 -9.784158 -11.265488 -21.797707 9.298750 0.219864 16.032442 -16.977322 -17.622072 -21.920725 -10.166996 17.080827 13.410464 -3.163705 35.750007 -3.250573 4.158323 -41.042864 -2.488152 13.613705 -0.051418 15.869077 10.214222 -12.773261 -28.715870 -7.456842 -7.896952 0.258883 -8.971905 -15.464923 -13.141126 -10.004205 15.019497 -9.622194 6.029025 20.603906 -2.336370 10.758666 -4.954280 -2.112332 -5.492307 -7.625560 11.254460 6.556819 -21.814901 24.520167 -3.620691 50.305689 -7.969521 14.355231 -14.489827 2.329723 -0.459948 -6.215089 -2.540410 27.055617 15.668481 5.955231 -0.506275 0.757134 -9.992431 12.132702 --4.315091 -1.531118 13.727002 8.953001 -8.873753 -15.976526 -6.207962 -20.856634 12.127598 3.287732 12.873289 3.161601 8.165486 -9.643734 0.370610 1.215508 6.065519 -5.313242 -0.153157 -6.715510 -1.108954 18.187995 4.323887 -8.381572 1.436607 -16.832240 8.393190 6.271135 6.891605 11.432549 3.071385 -0.343049 -4.460493 6.698083 -3.479317 5.702378 2.827985 3.325142 -7.785476 -2.379002 3.678984 2.208076 11.099887 -1.443992 14.977693 -0.014636 7.964408 3.091962 -7.511704 -6.116198 -5.048363 10.280406 -8.502240 5.496702 -1.429401 0.603352 2.320299 -6.889520 -3.481581 -10.673816 -0.716110 -1.196546 -7.811863 0.554928 -8.043207 4.225565 -0.576261 -5.567981 1.286476 -4.210648 8.916203 3.089324 0.776874 -1.419013 -14.240412 0.656751 1.148340 4.615596 7.640521 1.131003 -2.710561 -4.234247 -6.638628 -7.380275 8.671387 6.081559 2.085254 4.457869 -5.003000 -1.453149 -1.744575 -2.386168 4.058753 4.816028 -8.783157 -1.427885 2.132371 -2.977611 -4.746300 -6.658058 3.953411 -5.340417 4.127154 4.242635 -1.196939 0.419925 -1.705860 1.227405 -9.364545 -8.123433 3.417782 -5.200216 2.089160 14.318277 -5.895030 -2.453961 -6.005365 -1.962999 -0.566896 10.066886 1.580637 4.663295 10.766731 12.501341 3.921803 -10.730993 -6.032820 6.277120 10.931879 6.978130 4.676927 -9.992944 -6.332966 2.471499 -4.797274 -16.732462 -5.428290 4.692918 10.774769 0.751943 -8.619063 5.384010 -4.370626 12.264438 8.498722 0.894679 1.944851 1.597454 -12.127277 10.527295 18.273200 -2.271208 8.065513 -6.078967 -5.057497 11.472199 -7.911622 4.638631 3.046060 -3.579702 -3.110389 -4.302433 1.973291 8.622490 2.581670 5.759494 -1.824214 6.538033 -4.350097 -15.854353 -18.105563 -1.509774 12.808513 4.907434 18.996382 -11.138617 -6.262476 -2.715712 11.131904 -1.054069 -6.065477 4.237779 -10.074609 7.795338 -18.149995 -14.712041 23.397935 19.095057 9.463442 2.959820 11.093292 8.069686 -7.536327 -3.255905 -3.084065 4.914979 5.533150 -11.503345 -0.721078 1.415217 -12.492837 -10.572808 0.135325 4.676868 1.666068 -1.120435 4.398883 -1.695210 -6.025762 -6.824816 6.173159 -7.252345 -3.167459 0.418905 0.695200 1.124118 5.164496 -4.340130 1.490217 2.675342 -5.741904 2.586248 3.943603 7.407599 4.240650 11.400989 16.277395 -3.893020 12.323731 0.727612 -5.793972 17.274949 -4.311453 4.086199 2.373778 5.291666 4.833616 2.229791 6.463328 -6.002247 -0.654736 -11.222599 1.130597 5.529611 9.128452 -10.256759 -11.615549 -15.912806 -2.462185 2.785282 10.387518 -2.471244 19.678992 -6.867759 2.353664 -23.892460 0.655379 8.091725 0.577986 6.292483 4.153254 -6.793339 -15.345710 -3.632842 -9.519664 -5.156609 -4.791280 -7.607953 -6.672358 -7.525567 11.695662 -9.108061 1.595940 11.627308 -1.372016 8.751750 -4.430289 1.050838 -7.152941 -0.802310 1.272554 1.995549 -8.859090 10.791672 -0.039009 24.829060 -2.735467 7.770630 -5.347883 10.615272 -5.214799 -11.533408 -2.583138 13.968180 10.775411 0.308865 1.624852 -0.336557 -1.901204 8.993658 -0.291880 1.883169 6.632819 3.825221 -3.675380 -6.543075 -2.624639 -8.226255 3.697382 0.159969 4.108341 -0.206712 1.973806 -1.538397 -0.487921 -0.083355 1.184817 -0.934434 0.534321 -2.377357 -3.113938 6.218653 1.311296 -3.263995 0.937332 -7.479697 5.223686 2.989996 3.630445 4.650519 0.411925 -0.642443 -1.181083 3.647500 -1.680398 -0.005352 0.278849 1.291279 -3.050369 1.142268 1.681045 1.728937 4.521934 0.119534 3.448778 2.884365 2.263792 1.804217 -2.472476 -1.008330 -2.434615 3.961795 -3.167489 2.384888 -0.969362 0.658426 1.259544 -3.419778 -0.920108 -1.974215 -0.660151 -0.152567 -2.916393 0.581992 -4.916363 0.866623 -1.954748 -3.199111 1.477152 0.088541 3.620498 1.617363 -0.165469 -1.333871 -5.392557 1.307451 0.813024 3.029753 3.191292 -1.214749 -0.064775 0.736969 -3.543933 -3.523180 2.536576 1.972419 1.805674 0.215788 -0.155344 -2.829547 -0.192939 -0.688119 1.302499 3.003926 -1.767153 1.034882 -3.091727 -0.871488 -3.215629 -4.763482 0.584535 -2.529116 2.514466 1.406891 -1.463282 -0.115846 1.226971 0.774808 -1.061144 -4.304717 0.202296 -1.964856 1.944079 6.650747 -0.998306 -1.732762 -1.540774 -1.563905 -1.151900 4.349710 1.074322 0.706332 4.844909 5.200207 1.145616 -3.496621 -2.476353 0.990232 2.051405 3.395026 3.467586 -4.773332 -2.938640 -0.195866 -0.490252 -7.387289 0.094258 0.557560 3.180417 -0.865434 -3.094702 2.636721 -2.811975 3.617777 2.696747 1.175372 1.686709 -0.644775 -3.567204 4.841109 8.061621 -1.301364 2.674019 -3.952844 -3.559128 5.066644 -2.306171 2.023467 0.505488 -1.131620 -0.243531 -2.198429 1.041295 4.140033 0.140729 1.356347 3.276950 1.294674 -1.532186 -6.032274 -5.564181 1.409596 4.750093 0.193837 7.645629 -4.508228 -1.674268 -0.910187 5.116526 -0.065923 -0.895597 1.168013 -2.975336 2.762783 -6.606445 -6.163088 7.284872 6.272773 1.530891 0.041396 3.286713 3.428247 -2.385022 -2.736319 -2.634281 1.974427 1.419521 -3.666321 -1.405429 0.278479 -4.211346 -1.672565 0.957621 2.054748 3.362211 -1.735396 -1.228861 -1.893859 -4.623506 -4.866892 3.065501 -4.025084 -0.207699 1.486617 -0.434052 -0.705864 2.513306 -1.060784 -0.772598 0.926377 -1.793757 1.075517 1.696128 3.226683 0.208949 5.284230 4.883388 -0.649943 4.029521 2.289108 -1.888281 9.001982 -1.855515 1.720401 1.453814 3.207853 0.017883 2.174678 2.636645 -2.263160 -1.950741 -5.281022 1.214157 1.090115 2.076497 -3.770447 -2.997138 -6.555311 -2.185597 1.526799 4.607223 0.123079 7.995421 -1.076351 0.695210 -7.761126 -0.142299 2.852730 0.024517 4.121234 2.213432 -3.309958 -4.661946 -1.818430 -3.409858 -0.961491 -2.310520 -3.618601 -3.194803 -1.164678 2.274087 -1.918777 1.498610 5.268562 -0.588248 1.658923 -2.457880 0.040290 -2.597107 -1.602182 2.913312 0.243903 -3.814506 4.308736 -0.368866 9.572221 -0.680135 3.450402 -2.795572 1.084800 -0.109255 -3.529631 -1.479198 5.926153 2.442016 0.826860 0.729729 0.342611 -0.619013 3.524984 --6.831606 5.512818 53.505822 17.980097 -31.533623 -59.105475 -21.718060 -87.444337 38.674246 14.617611 48.609808 3.933636 30.312435 -22.829216 1.042920 12.234000 18.369734 -18.702188 8.851152 -23.837288 -15.130192 57.802419 7.643174 -7.504527 5.803968 -58.597398 35.680067 16.662835 29.743288 39.059937 13.316064 -5.931507 -17.676950 24.583476 -2.680075 22.511596 12.701690 17.430699 -26.333485 3.740140 3.211223 -5.130535 35.493867 0.183555 51.018560 7.983657 21.951876 14.388220 -21.445755 -19.184481 -18.533200 34.784036 -35.770791 16.700838 -6.377644 -8.013860 2.610983 -17.472843 -9.586986 -23.686385 -7.885355 -16.650906 -28.173526 7.817853 -32.977391 15.413169 -18.641119 -21.776790 -2.400014 -6.422377 33.131000 14.234496 4.914391 11.386644 -59.062454 2.746828 6.118139 15.310082 30.609047 -6.328678 -4.967793 -10.036432 -28.392737 -34.653342 37.863461 29.931756 11.256523 7.796574 -20.989313 -1.021233 -9.752975 -6.317054 19.636767 24.590325 -29.304680 -0.475466 -6.874901 -10.260907 -21.859003 -49.204403 13.343449 -23.185511 19.564425 6.714097 -3.394938 -5.383904 -10.371838 7.221664 -28.806299 -35.402253 10.958778 -20.381746 9.843614 54.051824 -19.608793 -8.313973 -22.192558 -11.450169 1.199934 31.551731 16.239614 13.439018 38.807044 44.193273 17.104283 -37.264848 -28.481323 21.428569 31.804769 26.035257 17.407578 -38.383996 -24.474991 10.886788 -19.556393 -63.867816 -16.609849 15.428398 32.899247 -7.221798 -18.833648 11.954409 -20.547226 33.278976 35.445287 9.132792 8.480728 4.045167 -38.312819 34.784993 62.028850 -10.390787 30.851848 -20.466907 -11.813217 35.719470 -30.129126 15.613208 10.817144 -9.081053 -14.208364 -16.906333 -1.075956 32.884932 11.726851 21.802361 -1.324656 23.201990 -24.200186 -51.652030 -57.426852 -1.750143 58.989418 7.771040 52.405866 -41.406197 -19.387341 0.633390 44.949505 4.878030 -22.260723 16.255028 -31.244960 28.878996 -58.032850 -51.401685 73.683236 62.900464 34.080595 2.198541 26.550954 36.242300 -43.075946 -19.909826 -16.057282 18.653175 3.651067 -57.592370 -19.474293 5.242115 -45.300212 -26.199360 -0.716774 20.243059 13.259117 5.098669 19.076014 -0.713364 -17.893722 -25.598539 27.928070 -22.267832 -15.646668 1.641053 2.214198 4.982858 16.829763 -17.644597 9.251164 17.697276 -24.477486 12.303055 21.353447 21.895984 8.521718 58.042615 50.372850 -13.133840 31.297023 0.272569 -18.884222 51.771066 -11.657859 17.829638 9.300204 17.430101 7.785366 10.298637 30.444329 -23.263734 -22.250439 -42.299131 -8.472558 16.808120 32.090451 -8.849292 -43.054392 -58.157419 -4.539021 11.191056 45.084769 -3.332472 67.720235 -16.125887 16.114339 -69.087360 3.952940 22.640495 -5.428516 29.696006 14.250028 -23.139852 -34.441093 -16.958414 -36.900199 -31.696783 -15.278006 -22.683667 -22.646610 -24.856981 32.130510 -25.565909 0.007580 25.696634 -0.289010 31.742276 -12.439193 2.125210 -30.650451 7.636576 26.205973 0.093088 -35.161270 38.951479 4.804492 95.938887 -8.085347 23.273970 -14.990589 22.777256 -11.402396 -32.090953 -10.002531 53.166739 39.302069 8.447400 -2.160864 -0.868222 -1.297652 27.918532 -0.882576 1.995506 8.379328 4.595853 -5.439917 -8.903860 -3.378420 -12.270320 5.539182 0.465280 5.669647 0.103436 2.651955 -2.242205 -0.538139 1.297154 1.931692 -1.572299 0.818333 -3.359933 -3.826057 9.024046 1.186452 -3.221841 1.134178 -9.664858 6.017627 3.633191 5.509657 5.426810 1.019921 -1.280055 -1.894740 4.277419 -1.454799 1.027955 0.520150 1.721319 -4.970553 1.322121 1.466324 0.635315 6.176721 -0.215497 5.404131 1.865502 4.088699 2.476727 -3.190078 -1.360264 -3.877206 6.233941 -4.196646 3.132029 -0.991430 0.106395 0.957592 -4.013292 -1.582515 -1.259652 -1.757484 -1.005907 -4.254441 0.788010 -6.025460 1.422326 -2.817116 -3.780564 1.444824 0.031766 4.907235 2.161620 -0.064411 -0.842180 -8.625612 1.035336 0.894372 3.831611 3.996398 -0.943642 0.486470 0.309916 -4.919293 -4.587642 4.112785 3.602922 1.957667 -0.090763 -1.605910 -2.556049 -0.777992 -0.809979 2.109700 3.670342 -3.898214 1.042493 -4.019370 -1.416122 -4.435492 -7.158631 1.120698 -3.259190 3.441357 0.463017 -1.435434 -0.105329 1.509309 0.865768 -1.823033 -5.793031 0.067724 -2.308785 2.299921 9.186706 -1.466121 -2.224792 -2.528395 -1.969830 -2.037158 4.859607 1.876893 1.313721 6.634512 6.845669 2.277165 -4.878687 -3.874398 1.775211 3.174890 4.511110 4.040432 -5.501934 -3.703454 0.227069 -0.606423 -10.150389 -0.671352 1.574482 4.605896 -0.952050 -2.598824 1.516883 -3.412021 5.404487 3.772353 1.182171 2.063054 -0.308731 -4.790513 6.029536 10.671993 -1.354491 3.817660 -5.323740 -3.244256 6.207619 -3.586518 2.733750 0.730643 -1.130915 -1.098227 -2.921531 0.683084 5.126926 0.109540 1.398320 2.996449 2.240227 -2.825985 -7.908201 -7.940501 1.304258 6.896051 0.587768 9.151202 -6.108553 -2.773877 -0.719048 6.008254 0.339049 -1.802787 2.356997 -4.880287 3.974721 -8.289450 -8.008681 10.082050 8.882947 2.634182 0.246615 4.592365 4.689185 -5.213047 -3.914358 -3.310048 2.827368 1.975879 -6.786611 -2.273144 0.518408 -6.023700 -2.561793 0.958171 2.855853 3.780427 -0.982469 0.682496 -1.870910 -5.391249 -5.738818 4.947206 -4.751128 -0.874096 1.678893 -0.377937 -0.683920 3.571592 -1.668586 -0.224374 1.481303 -2.766209 1.825188 2.380672 3.689026 -0.041691 7.335020 7.460485 -0.776534 6.373261 2.065365 -2.847742 10.281885 -2.490837 2.378474 1.549298 3.030313 -0.314247 2.614176 3.829534 -3.154480 -3.068572 -6.467777 0.868283 1.254409 3.554986 -3.352156 -4.836822 -8.611106 -2.575305 2.140101 5.949552 0.242248 10.132935 -2.324851 1.683277 -11.107472 0.102862 3.601730 0.283414 5.458342 2.336562 -4.131440 -5.071317 -2.226426 -4.779020 -2.436229 -2.732350 -4.746141 -4.386993 -2.726014 3.781001 -3.129389 1.257042 6.099234 -0.985830 3.439601 -3.550471 0.054982 -3.563008 -1.093222 4.524769 0.252126 -5.043460 5.588037 -0.242222 14.009429 -0.754885 4.046724 -3.138245 1.725191 -0.495570 -5.240414 -1.735340 7.835124 3.987704 1.049836 0.035154 -0.207564 -0.887600 4.304410 --1.571136 1.010115 12.486619 6.034181 -4.234518 -9.538696 -4.475523 -13.179205 7.714524 1.097130 7.932716 1.427739 3.516787 -2.349987 0.454951 0.039328 1.257933 -4.274319 1.103032 -3.226666 -0.279665 12.019137 4.648997 -6.834112 0.333217 -15.278893 6.888628 4.347018 6.693487 8.935341 0.320287 -1.570881 -1.151003 6.147648 -3.324196 0.882030 1.725174 1.676115 -4.543963 0.214954 2.551706 5.248529 6.426554 0.032727 8.344250 2.239437 5.475512 1.793436 -2.946080 -2.103789 -5.747383 9.403727 -6.863552 3.803540 -1.163447 2.963271 0.385296 -6.692640 -3.160963 -7.691301 -0.675601 2.626267 -4.948500 0.438698 -7.021272 2.641311 -1.882826 -2.946923 2.018263 0.156059 7.581733 3.439822 2.191175 -2.203154 -9.947715 2.650300 -1.463553 5.006619 5.043199 -2.977775 -3.081509 1.349341 -3.517097 -5.575774 4.111783 4.010393 0.600788 -0.299780 1.027459 -2.076737 -2.854677 -1.625873 -0.795897 5.468463 -5.073198 2.872902 -2.038281 -0.522527 -2.981275 -3.478463 0.296987 -5.959767 2.950577 4.081773 0.421542 -0.589895 -0.085960 1.170512 -4.109052 -7.054801 2.089612 -1.258387 0.706928 9.159177 -4.086365 -0.275139 -0.595937 -0.799602 -1.356040 8.368798 0.511638 3.530925 6.871176 9.520805 1.748243 -5.964356 -2.584082 3.703138 6.732086 6.257118 5.132537 -8.420377 -4.502991 -0.639589 0.647771 -12.206251 1.173278 4.004068 5.964245 0.822770 -7.750691 2.971825 -3.515979 9.187221 6.303807 2.323534 2.561917 -0.093587 -6.975243 8.615720 16.645285 -2.491577 5.768822 -6.062836 -3.899806 9.600264 -7.697066 5.482551 0.839990 0.646885 1.007426 -5.322895 -0.475275 7.441801 2.781491 4.862901 4.462495 2.266163 -0.263032 -12.322118 -10.193911 -1.471218 7.399203 -0.493137 13.249733 -6.606098 -4.243536 -2.259502 8.326976 -0.564391 -2.366242 1.582715 -5.337749 4.658704 -13.478643 -10.433388 14.251891 13.598613 3.022629 1.240166 7.803563 7.840979 -3.468819 -3.395096 -2.735191 4.079342 1.795014 -4.836204 -0.705136 -0.355600 -7.679789 -5.719641 1.004091 2.493176 3.475088 -1.546528 -2.385339 1.550455 -8.276492 -6.101185 4.276220 -8.175773 -3.598326 0.976543 0.394990 -0.733238 3.101413 -2.858127 0.264025 5.369638 -4.355434 1.018156 4.128776 5.023229 2.314551 7.175986 8.859437 0.507747 8.052185 4.179538 -3.166988 15.092235 -2.833089 1.165111 2.260046 3.575095 0.547929 3.701200 1.701468 -3.921702 -3.117163 -8.920582 4.789365 0.937075 5.638643 -5.711079 -7.901736 -7.861605 -3.637747 5.251910 6.611926 -0.493504 15.201118 -2.239740 1.658239 -16.404115 -0.309016 6.478856 0.804210 5.561615 4.534949 -4.633099 -10.770066 -3.076336 -3.353400 -0.626096 -4.229142 -8.272877 -4.762658 -5.561054 6.696047 -5.857336 3.040371 8.748165 -0.286043 5.088720 -3.213677 -0.485872 -5.203545 -1.506848 2.209504 2.380703 -7.028995 8.175929 -2.412701 17.075221 -5.010576 6.149443 -5.692378 4.646964 -2.412750 -4.357217 -0.916802 11.150127 5.296971 1.147848 0.684429 -1.047424 -2.804406 5.349707 --9.189871 3.174903 30.738222 12.516033 -16.219553 -24.079576 -13.532435 -37.462699 17.389155 4.952447 22.740784 2.457028 11.073854 -10.518483 2.509987 -1.438789 4.616253 -14.006866 6.116361 -11.131358 -2.870463 27.903344 11.315969 -10.038006 0.466651 -35.271514 18.511016 8.751927 15.994177 21.225821 1.731256 -7.041518 -10.058075 13.947893 -2.088742 6.110422 4.776130 5.774632 -10.773634 5.732735 3.543766 6.505969 15.580741 -0.875630 22.854222 4.948264 12.698510 7.202110 -14.223358 -7.938064 -10.617560 22.775969 -20.140637 8.283622 4.552271 0.758921 -1.854408 -13.278542 -9.990540 -18.072079 -2.966290 -5.030533 -11.317498 4.319225 -17.715918 7.120667 -12.180064 -6.555390 2.528356 1.081772 16.859214 9.502195 5.951930 2.623671 -23.784664 6.184460 -1.883789 11.834946 13.840089 -6.442018 -5.253119 1.483752 -10.570757 -18.034702 10.317480 11.585472 2.528604 -4.022559 -1.933473 -0.273356 -5.274892 -5.091420 -0.306453 11.716783 -17.068480 5.041392 -7.039289 -3.709532 -11.125325 -16.665291 0.398388 -13.761387 8.998766 10.685761 -3.275101 -9.349689 -9.306038 2.943258 -15.530450 -17.581090 4.282850 -4.717179 4.680270 25.560738 -13.871535 1.386224 -7.200227 -2.719861 0.567487 17.756932 5.651779 10.518659 16.875279 28.089104 7.479720 -16.287122 -9.747823 9.559786 18.388871 15.464457 12.447910 -21.961985 -12.680588 2.825141 -1.728323 -28.400878 -1.149879 9.639467 15.247258 4.145988 -14.287780 2.115169 -11.158661 23.868513 15.250408 5.987111 5.041773 -1.079228 -18.693368 23.768676 37.752117 -7.049457 15.913711 -10.949193 -7.376588 24.464997 -19.984377 10.960468 5.837500 0.897130 -3.266621 -12.078873 -4.956504 17.974216 10.369906 13.241532 6.221468 9.814193 -2.431302 -29.982941 -27.745973 0.892351 23.396187 -0.985522 27.910194 -17.948154 -12.088157 -4.080587 23.206866 4.810190 -12.060404 4.485658 -13.029458 12.594009 -29.072319 -25.573125 36.683089 35.610949 8.533802 1.937096 17.629895 21.324573 -19.845954 -10.823083 -8.329396 12.479152 -4.491171 -18.469801 -6.041523 3.808613 -22.459739 -13.098060 1.676575 8.662191 10.774521 -3.291816 -2.503382 10.261073 -16.589725 -12.802880 13.688140 -16.349956 -11.057499 1.761032 -1.179367 3.913334 10.595761 -8.408603 3.319607 10.673420 -14.734437 2.906533 11.010104 13.279205 6.586592 25.881527 21.176915 1.546952 16.693223 7.532916 -9.331923 34.178246 -4.697556 5.154977 6.501750 6.398987 2.644659 7.763729 8.980047 -10.365393 -11.806240 -22.187203 5.882676 3.005981 17.831773 -13.459815 -24.035208 -25.027139 -3.580615 14.243015 16.074789 -1.200987 36.571882 -4.757391 5.210126 -38.632845 -0.044413 12.009970 0.472205 14.999181 8.277574 -10.958182 -21.598186 -8.636031 -13.043009 -3.891152 -10.431275 -13.622687 -10.155288 -11.556560 20.783707 -11.047427 4.124266 14.814877 0.275755 15.326437 1.380860 -2.247367 -15.007014 -0.218495 9.600817 5.246900 -19.925005 25.734162 -2.634019 46.796859 -9.645687 9.954316 -11.654640 7.799614 -3.490560 -12.285364 -1.047915 29.240272 16.849376 7.178670 -2.460060 -0.477622 -7.291921 12.629089 --2.486836 1.271328 15.455126 7.862547 -7.504605 -12.985290 -6.297084 -17.400444 8.950181 1.028033 10.673014 1.531848 3.709689 -3.327735 0.755984 -0.383341 1.652643 -5.065350 0.780093 -4.829982 -2.235785 13.381685 6.024822 -8.731249 1.170590 -17.700938 8.866685 5.973371 7.233115 10.563124 0.384255 -2.206216 -3.150861 7.993794 -3.360466 1.730118 2.496980 2.024553 -5.604539 1.022277 3.953433 5.415217 8.828144 -0.721010 11.210908 3.374258 6.357732 2.989397 -6.127325 -2.967290 -5.838625 11.268256 -8.974232 5.115505 -0.399852 3.683119 0.224653 -8.927294 -4.125591 -9.473862 -1.049736 1.174143 -6.227597 0.800452 -8.734412 3.206447 -2.295561 -4.626612 3.612081 -0.631520 9.403321 3.450974 1.335228 -1.289327 -10.761951 2.621842 -0.435636 6.786977 6.302620 -3.829453 -2.565944 1.331041 -4.871192 -6.718460 4.198063 4.009395 1.839643 -0.635802 0.472776 -2.116884 -1.538705 -2.247600 0.138104 6.581675 -6.719382 2.287155 -3.196440 -1.639803 -5.502665 -5.884266 1.123963 -6.698127 4.859850 4.918749 -1.984344 -0.919954 -0.194868 1.810204 -5.419707 -9.426426 1.718904 -2.002291 2.743539 12.105691 -5.077342 -0.935588 -1.463167 -2.131414 -1.655846 9.875394 1.452322 3.877658 9.252387 12.960155 2.461252 -8.016176 -4.814090 3.146167 8.300138 8.343504 6.786383 -10.373852 -5.878527 -0.293522 -0.498721 -15.676669 0.725793 3.472324 8.234310 1.711998 -9.065326 3.242263 -5.189362 11.424430 6.904975 3.443384 2.624849 -0.559818 -9.519895 11.138133 19.517718 -2.992327 7.579540 -6.639460 -5.296848 11.334204 -8.873879 6.074280 2.490531 -0.382053 0.732465 -6.157656 -1.128889 8.975992 3.573495 5.800735 4.765734 3.423807 -1.552483 -15.428413 -13.149821 -0.482916 10.190230 -0.040511 15.775196 -9.281296 -5.636616 -2.945293 11.909344 -0.716282 -3.795848 2.007170 -6.680383 6.255751 -15.154578 -12.971429 17.647643 17.955760 4.197876 1.861387 10.001786 9.211301 -5.841953 -4.015048 -4.174290 4.919635 2.457624 -6.406387 -1.423049 -0.206721 -9.519472 -6.637745 1.327611 4.007419 4.381652 -2.385551 -2.815596 2.641034 -9.654858 -7.791870 5.199730 -9.666768 -3.527815 1.912756 0.052210 -0.096221 4.020624 -3.856781 -0.380626 4.886377 -5.744464 2.414336 5.338596 7.030564 3.057975 10.332684 10.521934 -0.158073 10.568971 4.757795 -4.288375 18.569987 -3.777662 2.987772 3.293888 5.057989 0.651457 4.140691 3.523672 -5.125554 -3.555069 -10.848151 4.390498 1.338584 7.758945 -8.091570 -10.347484 -11.828846 -4.248335 6.512191 7.712526 -1.037553 18.644592 -2.215750 2.146746 -20.469784 -0.819396 7.909950 0.566721 7.265386 4.978985 -6.093353 -14.905874 -3.767826 -5.546113 -1.124060 -5.045740 -8.429007 -6.137659 -5.977875 8.796672 -5.808675 3.289538 10.535040 -0.607340 5.938842 -3.517992 -0.540645 -5.526806 -2.996365 3.620956 2.420953 -9.335969 11.077067 -1.455588 22.624009 -4.504953 7.434620 -6.450112 4.826890 -2.004410 -5.514810 -1.433314 13.655096 7.541963 2.084445 0.101955 -0.476979 -3.735247 6.646794 --1.723014 1.157621 13.980183 6.480227 -5.587392 -11.359791 -5.339313 -16.117334 8.637009 1.376089 9.372742 1.384800 3.965191 -2.875267 0.487765 0.526144 1.572863 -5.175878 1.545753 -4.006004 -1.248447 13.634900 4.835510 -6.867821 0.562953 -17.312743 8.276826 4.939475 7.440401 9.907152 0.670222 -1.897284 -1.790169 7.081426 -3.088842 1.607606 2.196567 2.097569 -5.125649 0.866968 2.858515 5.113889 7.612558 -0.265646 9.917388 2.728550 6.244637 2.453209 -3.879797 -2.541696 -6.288201 10.470763 -8.062727 4.253633 -1.149037 2.721745 0.342625 -7.657826 -3.766051 -7.817952 -1.274660 1.782225 -5.802735 0.839081 -8.080711 3.136821 -2.495247 -3.547684 2.361387 0.391144 8.669129 3.911187 2.106962 -1.526231 -11.389735 2.860726 -1.090613 5.754021 5.762535 -3.684830 -2.968928 1.474904 -4.556271 -6.605907 4.898417 5.014352 1.118156 -0.704651 0.612747 -1.966677 -3.035241 -1.913697 -0.259744 6.401265 -5.877830 2.562527 -2.655807 -0.957465 -4.274229 -5.202563 0.668434 -6.646007 3.916207 4.351740 -0.166510 -0.929139 -0.119649 1.307213 -4.934810 -8.329930 1.995260 -1.934293 1.736108 10.936732 -4.487435 -0.448408 -1.466664 -1.403126 -1.414344 9.174686 1.136221 3.775405 8.576515 11.315641 2.160814 -7.015689 -3.951459 3.930261 7.545640 7.155323 5.874683 -9.883881 -5.275129 -0.509127 0.236226 -14.009275 0.721650 4.039155 6.866240 0.458944 -7.940797 3.193446 -4.191528 10.441747 7.244207 2.503424 2.670990 -0.068745 -8.111286 10.184912 18.670428 -2.662715 6.601486 -7.111300 -4.216042 10.837043 -8.627869 5.870854 1.641902 0.479308 0.233243 -5.926917 -0.591937 8.273656 3.067165 5.470217 4.817898 2.971125 -0.784141 -13.721135 -11.768992 -0.993582 9.185473 -0.415234 14.906172 -8.105112 -4.869350 -2.241813 9.806490 -0.024601 -3.075835 2.104767 -6.252133 5.508814 -14.678294 -11.935411 16.257076 15.571396 3.865117 1.424477 8.777723 9.052104 -5.175932 -3.977175 -3.403641 4.901831 1.889762 -6.600746 -1.277828 -0.066504 -8.871028 -6.466419 0.877952 3.290774 4.325696 -1.468486 -2.235576 1.688581 -9.073249 -6.992086 5.284146 -8.854467 -4.077811 1.244995 0.341577 -0.558730 3.728111 -3.316585 0.551079 5.535406 -5.066229 1.670166 5.087005 5.719000 2.411947 8.844916 10.290638 0.168357 9.243676 4.348036 -3.437194 16.339229 -2.892908 1.912696 2.824159 3.898328 0.544526 3.994043 2.738107 -4.571886 -3.917005 -10.113895 4.897390 1.170759 6.699943 -6.069206 -9.070955 -9.971226 -4.040405 5.995705 7.802726 -0.431584 17.109646 -2.337299 2.125186 -18.496804 -0.342347 6.936779 0.841222 6.510369 4.773215 -5.335654 -11.612198 -3.562357 -4.511579 -1.756444 -4.742494 -8.737740 -5.749623 -6.196857 7.656307 -6.196149 2.947276 9.696065 -0.275353 5.691978 -3.571347 -0.525826 -6.027469 -1.648795 3.303975 2.262585 -8.117916 9.527179 -2.262962 20.205273 -5.186854 6.699030 -6.015629 4.981327 -2.385639 -5.206687 -0.960764 12.650284 6.197840 1.414117 0.437859 -1.102390 -2.851199 6.234360 --1.734690 2.898216 17.694219 8.394466 -8.167330 -14.430853 -6.581654 -21.382993 10.192334 1.064714 12.001102 1.170215 4.403290 -2.817529 1.180204 0.570190 2.663991 -5.300717 1.533945 -5.321224 -1.943111 14.498383 5.010978 -8.298045 0.980825 -19.302560 8.806475 6.557729 8.938280 9.748084 1.688930 -2.946519 -3.877836 8.439320 -3.568360 1.474109 3.805781 2.089764 -7.919498 0.422947 2.326784 5.980649 9.471743 -0.544192 12.114945 2.581774 8.253544 3.904736 -5.583295 -2.391027 -7.523584 15.093856 -9.118936 5.612222 1.240877 2.606883 0.271616 -9.718598 -4.065096 -8.058932 -2.006493 1.218629 -6.812508 0.990319 -9.478590 3.551806 -3.029543 -4.494041 3.763412 0.659772 10.718487 3.443845 2.402851 -0.814153 -13.343082 3.024664 -1.342359 7.483342 7.360716 -3.911681 -1.239177 1.651710 -5.373754 -7.942200 5.765215 5.706799 1.686586 -1.354715 -0.484611 -1.702067 -2.683525 -3.733199 0.015633 7.104293 -8.208459 3.489143 -4.442416 -1.933534 -6.756938 -7.835118 1.163829 -7.642489 5.353018 3.998540 -0.774477 -1.268741 -0.707585 1.580234 -5.583854 -10.452364 2.594010 -1.696709 2.789670 14.146992 -6.203372 -1.036884 -1.468404 -2.247986 -2.860376 10.498789 2.501827 4.748670 9.401612 14.392057 3.019657 -8.352187 -5.450375 3.948852 8.929211 9.655158 7.522513 -12.033067 -6.427024 0.310736 -0.046951 -17.619227 1.253578 5.081133 9.316547 2.331856 -9.450566 1.427287 -5.355053 12.503302 7.162330 4.216938 3.009763 -0.420808 -9.373441 11.678404 20.869677 -3.483370 8.823717 -6.885627 -3.677504 10.399252 -10.089206 6.841886 2.610847 0.453365 0.743884 -6.734619 -2.637565 9.897100 5.028514 5.654972 5.302907 3.953152 -3.138007 -17.587070 -14.566316 -0.071078 11.307846 -1.927448 15.736825 -9.802824 -7.353327 -2.565787 13.058028 -1.413744 -4.655831 3.128190 -8.151000 7.061611 -14.421646 -13.761450 18.986714 19.384543 3.790235 0.319579 10.576098 10.406137 -9.529458 -5.892957 -4.837188 5.516108 1.327490 -9.267849 -2.347591 -0.326486 -10.977808 -6.535497 1.530318 4.674268 5.492752 -0.819337 -1.332118 3.465742 -10.821413 -8.186578 6.714917 -9.319856 -4.535683 1.927910 0.292987 0.331488 5.033328 -4.828649 -0.559223 7.163816 -7.271945 1.829274 6.125125 7.744774 2.652849 13.436889 10.558705 1.572951 13.314566 5.171412 -5.795229 19.772959 -3.539263 3.168450 2.708463 4.499668 -0.502083 4.827883 3.917869 -5.965290 -6.906995 -12.206798 3.738540 0.130199 9.114935 -6.589578 -11.955364 -12.552940 -4.878999 7.373755 8.238759 -1.118200 20.187125 -2.938528 2.574643 -22.153618 -0.581546 8.611082 -0.036559 7.962387 5.437602 -6.960099 -14.068471 -3.951363 -6.597974 -3.610383 -5.007098 -9.909217 -6.751762 -8.174878 10.701049 -6.567384 2.884841 11.052262 -0.304332 6.853278 -3.921423 -0.782393 -5.841460 -2.274516 5.784058 1.970332 -11.229883 12.646435 -1.944669 26.966808 -5.191042 7.471385 -7.332820 3.705421 -1.908994 -5.593056 -1.624333 15.441395 8.851991 2.539739 -0.982552 -0.780696 -4.646501 7.174319 --4.311458 1.345818 21.535784 12.109335 -9.775059 -15.943281 -7.673671 -22.209495 13.013998 1.915401 13.989371 3.656493 6.009695 -5.318867 1.206747 -1.238031 3.047194 -6.925799 0.928853 -5.983543 -0.632713 18.898507 8.762691 -14.450804 1.034834 -24.411020 12.715960 7.794533 9.926890 14.412689 1.013533 -2.014654 -3.727936 10.929234 -5.425268 1.164085 3.180902 3.247731 -7.488926 -0.965524 5.877173 8.552910 11.203104 -0.285401 15.267317 3.227292 9.586082 3.332248 -7.427605 -3.725904 -8.859074 15.608300 -12.012651 7.523873 -0.757031 5.617825 1.032657 -12.169461 -5.219881 -15.687566 -0.222882 3.271769 -8.081076 0.422570 -11.594848 4.430830 -1.360642 -5.676374 4.188608 0.028060 12.928708 4.931684 3.608445 -3.940083 -15.369706 3.720883 -1.878597 8.588876 9.272486 -3.811403 -5.284024 0.840849 -5.846679 -9.432209 6.197328 5.412406 1.053986 -0.176181 2.058934 -2.989330 -3.084371 -3.560487 -1.788976 9.410436 -9.851833 4.421531 -2.467228 -1.152217 -5.400933 -5.139473 1.015834 -10.066630 5.448355 8.304119 -1.509650 -0.727942 -0.551644 2.265926 -7.829042 -11.584811 3.436053 -2.963500 1.983339 14.983631 -6.777351 -1.010907 -0.731374 -1.729120 -1.309331 14.057028 0.403758 6.333173 12.735542 17.284725 2.878176 -10.486192 -4.296932 6.145791 11.786140 11.366077 8.636693 -14.968301 -7.650054 -0.119982 0.507617 -20.351324 1.991206 6.392694 11.123122 2.298914 -14.755896 4.717763 -6.123669 16.155177 10.192046 5.313129 3.661462 0.263598 -12.217525 14.614036 27.745114 -3.986674 9.643274 -8.472086 -6.578827 16.147080 -12.690707 9.124953 2.192686 0.361404 1.504559 -9.071470 -1.645766 12.783453 5.309993 7.863938 6.852738 4.295352 -1.347318 -22.091207 -17.846638 -2.561158 13.112818 0.619859 23.896103 -12.083140 -7.431045 -4.418224 14.629067 -1.468135 -4.805110 2.554228 -8.806419 8.457601 -22.114884 -17.919145 24.704538 22.998885 5.093672 2.215925 14.431791 11.850797 -6.094159 -6.192139 -4.918072 6.357684 3.716886 -6.003469 -0.402280 0.117327 -14.145038 -10.177113 2.371480 4.479686 6.769983 -3.781449 -4.569787 4.023847 -13.616317 -10.262654 6.469656 -13.257545 -6.440686 1.672153 0.852475 0.198981 5.091336 -4.489930 -0.756882 7.346707 -7.454757 1.418389 6.705438 9.757758 4.280701 12.892504 15.058914 0.516407 13.218136 7.182065 -6.058164 26.841646 -4.877244 2.313940 4.308371 6.387690 1.818473 5.536334 4.061007 -7.099759 -3.895084 -15.647345 7.588014 1.407670 10.479187 -13.876584 -13.002119 -14.199826 -5.945493 8.977508 10.274903 -1.931440 26.442332 -3.762787 1.904164 -29.114250 -0.991383 11.789923 0.924907 9.083037 7.878402 -8.488540 -20.463829 -5.263392 -6.087969 0.012217 -7.017087 -11.989216 -8.365735 -8.384945 11.704286 -9.267726 5.178855 16.260431 -1.393856 8.763125 -5.509562 -0.434656 -7.521078 -3.479875 2.550535 4.272771 -12.615437 15.530081 -3.641546 30.457116 -7.959946 10.297364 -9.723710 8.082127 -4.170026 -7.267037 -1.823478 18.970960 9.516919 2.821864 1.816436 -0.832607 -5.953222 10.149153 diff --git a/src/test-suite/oracle/SYM_llvm12_f/ir2vec.txt b/src/test-suite/oracle/SYM_llvm12_f/ir2vec.txt deleted file mode 100644 index 337e2585..00000000 --- a/src/test-suite/oracle/SYM_llvm12_f/ir2vec.txt +++ /dev/null @@ -1,2145 +0,0 @@ -PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = -0.149899 0.665802 2.608173 1.499931 -1.435770 -2.154797 -1.061475 -2.870631 1.281290 0.014991 1.606435 0.002870 0.504309 -0.392111 -0.019452 -0.244944 0.328626 -0.461163 0.058766 -0.805355 -0.913761 1.915216 0.675880 -1.573507 0.296325 -2.691544 1.681860 1.134019 1.079301 1.439457 0.075650 -0.262368 -0.581071 1.401719 -0.704644 -0.070562 0.374799 0.414832 -0.963757 0.184461 0.766832 0.946856 1.524384 -0.048045 1.418868 0.922863 0.853248 0.604216 -1.128958 -0.298733 -0.806081 1.747309 -1.198139 0.935278 0.027043 0.566403 0.331182 -1.582667 -0.435426 -1.147002 -0.147139 0.124009 -0.950426 0.103563 -1.524864 0.334829 -0.259945 -1.030486 0.807972 0.031954 1.425534 0.393832 0.028207 -0.401386 -1.548548 0.480164 0.170187 1.159793 1.108644 -0.511551 -0.063413 0.324551 -1.011537 -1.192843 0.656133 0.544119 0.575196 -0.076411 0.142389 -0.720146 0.055755 -0.451813 0.163688 1.168663 -0.827562 0.424757 -0.950368 -0.348897 -1.244849 -1.256004 0.160112 -1.026183 0.921399 0.784354 -0.707801 -0.071199 0.295391 0.307817 -0.513311 -1.531803 0.129381 -0.568194 0.717232 2.131262 -0.543808 -0.487578 -0.195103 -0.606412 -0.398525 1.566749 0.291901 0.378615 1.666355 2.061357 0.374598 -1.249303 -0.851946 0.252048 0.955126 1.401725 1.261883 -1.885670 -0.981497 -0.066888 -0.102374 -2.636715 0.271346 0.215884 1.271689 0.073674 -1.490552 0.737771 -0.971770 1.550980 0.811871 0.719746 0.461866 -0.223480 -1.343903 1.720237 2.929388 -0.506342 1.125898 -1.104805 -1.128097 1.633516 -1.029015 0.906997 0.384708 -0.275180 0.145672 -0.936148 -0.016482 1.541647 0.348898 0.626632 1.110082 0.422320 -0.527499 -2.426723 -2.084427 0.354376 1.596837 -0.099670 2.726057 -1.605425 -0.923231 -0.447948 2.128045 -0.331203 -0.450086 0.335174 -0.978634 1.035585 -2.012858 -2.162022 2.598665 2.529721 0.361223 0.039690 1.572882 1.112277 -0.941476 -0.950002 -0.911518 0.686445 0.533502 -0.859750 -0.308866 0.020403 -1.478095 -0.656069 0.342888 0.707023 1.051478 -0.611018 -0.628636 0.018382 -1.725954 -1.550797 0.878909 -1.477168 -0.234842 0.510936 -0.070348 -0.150492 0.836541 -0.518210 -0.510414 0.447339 -0.822368 0.368027 0.728638 1.243704 0.264216 1.958768 1.530845 -0.041792 1.736825 0.942803 -0.701917 3.310419 -0.703289 0.539877 0.564298 1.109099 -0.079468 0.769983 0.816537 -0.831363 -0.684054 -1.913225 0.585754 0.092014 0.944876 -1.636907 -1.257160 -2.144491 -0.861378 0.849319 1.301502 -0.143653 2.991933 -0.212437 0.204288 -3.113536 -0.167040 1.237348 -0.068083 1.282658 0.837419 -1.182105 -2.394900 -0.600146 -1.056324 -0.277357 -0.774463 -1.275114 -1.109200 -0.673802 1.107680 -0.652299 0.617837 2.011888 -0.140737 0.562883 -0.768396 -0.043684 -0.686521 -0.758932 0.900492 0.152759 -1.548243 1.809802 -0.173526 3.761450 -0.450885 1.291097 -1.094307 0.356725 -0.010858 -0.958099 -0.423630 2.182757 0.993790 0.445862 0.099913 0.173464 -0.659951 1.271668 -PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = -0.697122 -0.324313 1.669102 0.834839 -0.948018 -1.397867 -0.879984 -2.110910 1.225973 0.756891 1.585937 0.238104 1.021671 -0.762417 -0.200718 -0.297778 0.416591 -0.965959 0.460059 -0.658467 -0.509061 2.166905 0.825492 -0.676016 -0.012766 -2.097986 1.928465 0.199798 0.682103 2.093149 0.282735 0.048785 -0.376047 0.899452 -0.126688 0.741242 0.028429 0.905484 -0.150558 0.223649 0.818970 -0.099227 1.169910 0.077397 1.641796 0.597500 0.152799 0.117840 -0.896028 -0.809739 -0.313246 -0.045486 -1.637510 0.336968 -0.686690 0.084468 0.180434 -0.574615 -0.548357 -1.645999 0.069959 -0.485531 -0.939131 0.414316 -1.231299 0.631379 -0.840700 -0.693693 -0.161982 -0.453109 0.991049 0.797965 0.341730 0.086310 -1.654737 0.314793 0.179594 0.236293 0.944286 -0.256990 -0.917583 -0.182682 -0.928767 -1.120900 0.891876 0.756654 0.170257 0.254797 0.062527 -0.166458 -0.228137 0.257592 0.457785 1.078306 -0.435574 0.092991 -0.079775 -0.200652 -0.081827 -1.118730 0.333650 -1.010396 0.659103 1.049436 -0.780123 -0.184693 -0.247733 0.315918 -1.027021 -1.204897 0.285480 -0.969170 0.404613 1.490496 -0.560042 -0.295798 -0.874707 -0.312956 0.757954 1.166865 0.233217 0.468101 1.378526 1.296671 0.385045 -1.413051 -0.674442 0.896403 0.943819 0.536013 0.499685 -1.102582 -0.841724 0.022287 -0.459414 -1.802381 -0.616118 0.089420 0.636868 -0.637930 -0.832455 1.030796 -0.801711 1.040195 1.641320 0.506661 0.369523 0.239055 -1.402658 1.215323 2.159411 -0.208945 0.730966 -0.790237 -1.221302 2.026057 -0.985223 0.709934 0.116624 -0.152682 -0.422202 -0.883589 0.426865 1.132976 -0.091537 1.086600 0.128093 0.600000 0.063875 -1.422523 -1.661155 -0.088102 2.109920 0.975641 2.249614 -1.474097 -0.054391 0.174788 1.250918 0.945599 -0.539060 0.231205 -0.429065 0.818506 -3.223506 -1.993198 2.264584 1.614426 1.204405 0.330717 0.669283 1.048189 -0.252872 -0.416962 -0.670034 0.872165 0.183211 -0.745904 -0.203118 0.296257 -1.230806 -1.123270 0.095978 0.543770 0.795052 -0.950502 -0.303236 -0.202095 -0.497827 -0.983375 0.964813 -1.181947 -0.803284 -0.105625 0.025279 0.055183 0.246576 -0.149861 0.512430 0.153422 -0.303547 0.339584 0.787442 0.591214 0.118303 1.140919 2.023526 -0.974132 -0.304763 0.108517 -0.112376 2.206127 -0.601901 0.312755 0.555243 0.772264 0.643514 0.147233 0.984668 -0.663108 -0.160539 -1.268463 0.305716 0.827643 0.918060 -1.359501 -1.150544 -1.791168 0.082814 0.318135 1.720206 0.149859 2.540937 -0.310364 0.405765 -1.963973 0.034432 1.037896 0.078676 1.255440 0.594256 -0.686804 -1.257805 -0.791488 -0.997864 0.365755 -0.682776 -0.736537 -0.862666 -0.205067 0.546248 -0.636490 0.285296 1.070526 -0.368987 0.884246 -0.185105 -0.007199 -1.138429 -0.008917 -0.015664 0.309810 -0.903005 1.507294 -0.117200 2.323852 -0.475919 0.819393 -0.486091 1.401183 -0.754150 -0.996539 -0.227633 1.769390 0.910946 0.269091 0.263844 -0.099303 0.131702 0.768902 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -3.633988 -0.366314 15.084130 9.445888 -4.348297 -9.398759 -5.579290 -11.349460 9.061948 -0.290397 8.505962 2.401546 2.260302 -3.667137 0.488451 -3.416448 0.240343 -5.658747 -0.127057 -3.249478 1.766408 12.772117 8.073855 -12.893839 0.366262 -19.591944 8.148590 5.701473 6.864007 11.814700 -1.184908 -1.920019 -0.881953 7.980500 -4.664677 -0.517683 2.438068 -0.066690 -4.248991 -0.833707 5.371284 10.190765 7.803248 -0.262144 9.369286 2.527395 5.550132 1.395661 -4.680368 -1.965963 -6.511465 10.830892 -8.335477 4.527221 -0.139940 7.148220 1.069911 -10.616670 -4.502901 -12.780545 0.278370 5.898088 -4.568178 -0.223475 -7.895302 2.857478 -0.344881 -2.400641 4.835821 -1.040378 8.805465 4.408266 3.136390 -4.506405 -7.598113 4.185374 -2.425923 7.071309 5.437272 -4.152709 -4.654296 2.683898 -2.154576 -4.566022 1.580713 1.454936 0.114392 -0.345135 4.780552 -3.527041 -2.054421 -2.271176 -3.361871 5.387907 -5.118202 3.205603 -1.796949 -0.271457 -1.876121 0.679973 -0.764697 -6.860579 2.627154 8.096416 -1.357411 0.043335 0.472224 1.443876 -4.685253 -7.251636 2.699396 -0.152217 0.944199 9.486290 -5.578490 -0.180299 0.484953 -0.049996 -1.605382 11.152064 -2.212573 4.838440 6.736192 11.977307 0.876398 -6.482908 -1.028104 3.396048 8.737047 7.690580 6.967450 -9.569298 -4.806995 -2.395298 2.853938 -13.494288 3.198220 3.103917 7.362589 4.590760 -12.823029 4.200265 -4.004725 12.671425 6.069732 2.935590 2.906097 -0.603445 -8.995340 11.562158 20.064615 -2.997993 6.518712 -7.413114 -6.272971 11.634391 -9.415070 6.866463 0.080307 0.926285 4.367489 -6.828831 -0.335857 8.629658 3.208276 5.956788 6.237021 1.833599 3.120054 -15.986866 -11.439161 -1.689775 5.865137 -0.796801 16.869540 -7.103168 -5.022529 -5.150737 10.161488 -2.009687 -1.689282 0.317107 -5.598319 4.862961 -16.726289 -12.417769 17.122641 17.222696 1.659761 3.096552 10.265497 8.874423 -0.068726 -1.548273 -2.709393 4.106473 3.794344 -0.635964 1.783484 -1.282635 -7.281036 -8.233593 2.600770 2.109195 4.152995 -5.487842 -7.211518 3.318332 -11.313761 -7.617497 3.907755 -11.960114 -3.888722 1.845424 -0.034217 -0.562994 3.731959 -2.572625 -1.085195 6.019922 -4.251884 0.175400 4.168885 7.829181 3.975870 4.706799 9.472532 1.890096 9.935032 7.464459 -3.645946 20.521847 -4.221805 0.643600 3.316827 4.358427 1.886672 4.762856 -0.394936 -4.341279 -0.425100 -10.308003 8.797970 0.029286 6.711246 -11.717421 -9.139155 -7.764225 -5.559332 7.682369 4.573695 -0.949401 18.687242 -1.883105 -0.643886 -20.157217 -2.081498 10.112294 2.458137 6.164363 6.129636 -5.431563 -17.573879 -3.490072 -2.273465 5.035389 -5.936044 -10.180001 -5.267137 -6.005862 10.096647 -6.374533 5.997905 12.540140 -0.175928 4.965898 -3.133510 -0.739534 -5.037545 -4.847730 -2.009808 4.677608 -7.861644 10.555868 -3.964327 16.779100 -7.205354 7.290682 -8.481097 6.480428 -3.047641 -3.884809 -0.585980 12.644481 5.291214 0.933433 1.644113 -1.325684 -5.611954 6.785951 -PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = -1.474056 0.245624 6.425171 3.800811 -3.414745 -4.915450 -2.542403 -6.692013 3.997560 0.570487 4.150169 1.025357 1.655484 -1.980359 0.031606 -0.976367 0.856236 -2.040616 0.262558 -1.992364 -0.486083 5.895145 2.890863 -4.354395 0.530364 -7.581297 4.264564 2.201698 3.153730 4.851622 0.121132 -0.741416 -1.635183 3.332428 -1.275223 0.513981 0.730660 0.844883 -2.335057 0.243493 2.117223 2.516021 3.678760 -0.310136 4.639759 1.239719 2.217823 1.103976 -2.764876 -1.466260 -1.896599 3.743285 -3.648133 2.373977 0.096734 1.705705 0.081114 -3.579300 -1.569810 -4.400115 -0.008226 0.406014 -2.305375 0.444949 -3.898686 1.211629 -1.132402 -1.832578 1.489831 -0.928864 3.644951 1.481009 0.750483 -1.232594 -4.327691 1.157455 -0.221326 2.723995 2.697533 -0.853577 -1.514639 0.354048 -2.044187 -2.769850 1.077348 1.600430 0.344675 -0.143921 0.464424 -1.356973 -0.228486 -0.900929 -0.101501 2.669566 -3.010504 0.866527 -1.536379 -0.563441 -1.525492 -2.168888 0.407178 -2.750440 1.945566 2.355651 -1.443322 -0.361354 0.377410 0.709952 -1.860173 -3.536560 0.889784 -0.793139 1.383291 5.262901 -1.826384 -0.638560 -1.115653 -0.776049 -0.436574 4.249711 0.179452 1.583898 3.929432 5.244312 1.174027 -3.355240 -1.624096 1.822798 3.179912 3.123747 2.756507 -4.184815 -2.319404 -0.122207 0.125400 -6.175862 0.108852 1.127081 3.405213 0.706153 -3.757197 1.329988 -2.210968 4.733384 2.842961 1.207985 1.220910 -0.120334 -3.939696 4.607109 8.190333 -0.972893 2.493107 -2.816202 -2.851225 5.252684 -3.421489 2.663358 0.529667 0.028188 0.318649 -2.652046 0.124661 3.730537 0.804630 2.344502 1.913049 1.347885 -0.135158 -6.441237 -5.548707 -0.165788 3.999516 0.773035 6.954969 -3.832911 -1.681283 -1.499146 4.677069 0.356922 -1.414622 0.798295 -2.626724 2.450567 -6.858336 -5.466475 7.339829 7.570214 1.534698 0.770442 3.989018 3.482060 -1.750059 -1.711656 -2.000763 1.959540 1.034181 -1.757987 -0.123237 0.233046 -3.955487 -3.022359 0.945810 1.475711 2.663720 -1.901270 -1.714506 0.848359 -3.924539 -3.775941 2.425818 -3.883757 -1.392286 0.740231 0.042094 0.059734 1.806562 -1.242919 -0.316764 1.607185 -1.791966 0.775866 1.995062 2.961898 0.911656 3.484153 4.312410 -0.194004 3.479504 2.096890 -1.807994 8.718157 -1.762128 1.065703 1.389720 2.010787 0.710306 1.703622 1.209970 -2.142784 -0.755218 -4.416368 2.079403 0.478879 3.058775 -5.056892 -4.323232 -4.912785 -1.565070 2.289325 2.873231 -0.114138 8.039876 -1.205112 0.499535 -8.548694 -0.446785 3.753694 0.499786 3.375154 2.087031 -2.610421 -6.171518 -1.614366 -2.319643 0.834347 -2.266333 -3.406942 -2.563950 -1.776170 3.775929 -2.060332 1.646951 4.884233 -0.596679 2.603434 -1.513795 -0.098173 -2.431891 -1.652371 0.423260 1.249227 -3.694638 4.681708 -0.748960 8.361206 -1.962833 2.933746 -2.613429 2.433127 -1.249269 -2.937656 -0.727882 5.505566 2.796232 0.956932 0.265388 -0.313924 -1.697350 2.797138 -PE-benchmarks/subset-sum.cpp__main = 0.036293 0.335324 1.534518 0.165520 -0.787278 -1.749091 -0.738087 -2.587492 1.010000 0.443951 1.294044 -0.091305 0.804606 -0.177060 -0.023290 0.575325 0.509822 -0.738695 0.470141 -0.734994 -0.712876 1.963150 0.214751 0.234438 0.189621 -2.089308 1.041599 0.339513 0.948570 1.246333 0.337625 -0.158882 -0.344457 0.703235 -0.079063 0.631835 0.320429 0.477031 -0.768783 0.617248 0.024782 -0.050605 1.071315 0.062428 1.252659 0.669964 0.473425 0.539557 -0.374618 -0.579734 -0.549994 0.887998 -0.917733 0.407913 -0.363042 -0.225021 0.017916 -0.560046 -0.392549 -0.109401 -0.471171 -0.432048 -0.815706 0.408927 -1.090633 0.488602 -0.870934 -0.594501 -0.137176 -0.029949 0.999854 0.503554 0.066171 0.334485 -1.890998 0.237176 0.137524 0.521374 0.717333 -0.469145 -0.294873 0.111979 -1.064046 -1.161480 1.006068 1.221207 0.339216 -0.048912 -0.539657 -0.219502 -0.490335 -0.131697 0.580396 0.883882 -0.685884 0.054719 -0.424682 -0.349446 -0.891572 -1.672125 0.284896 -0.638046 0.660678 -0.013664 0.042441 -0.334786 -0.133791 0.165550 -0.600419 -1.102003 0.274545 -0.500178 0.291759 1.773614 -0.401838 -0.175463 -0.794062 -0.456352 -0.102742 1.003542 0.548251 0.225624 1.290780 1.268037 0.394683 -0.904638 -0.901377 0.487974 0.762834 0.529880 0.746529 -1.200801 -0.820192 0.236288 -0.480905 -1.747768 -0.533664 0.410888 0.825061 -0.650428 -0.184683 0.486371 -0.659771 0.872022 1.092613 0.079902 0.343771 -0.124869 -1.025079 1.142566 2.091140 -0.311676 0.868341 -1.081561 -0.485150 1.374036 -0.869489 0.534409 0.346432 -0.138363 -0.762561 -0.484189 0.222446 0.902500 0.216023 0.606464 0.310310 0.543163 -0.493566 -1.172402 -1.592275 0.042379 1.564761 0.061573 1.554290 -1.182715 -0.376059 -0.011688 1.263064 0.481564 -0.575579 0.519473 -0.827933 0.637825 -1.755361 -1.416686 2.025297 1.892600 0.959244 0.039991 0.693796 1.166469 -1.223187 -0.764537 -0.533393 0.782728 -0.072992 -1.786014 -0.685249 0.195296 -1.181152 -0.589825 -0.257898 0.690605 0.708013 0.236297 0.442041 -0.302883 -0.812639 -0.909633 0.901787 -0.693714 -0.500280 0.235967 -0.004457 -0.178313 0.479678 -0.380965 0.375463 0.554043 -0.657591 0.463784 0.791820 0.475186 0.008088 1.513476 1.458627 -0.356821 0.808716 -0.014270 -0.359980 1.398931 -0.313209 0.520762 0.180324 0.456398 -0.030861 0.314556 0.794149 -0.507094 -0.929352 -1.088104 0.148765 0.392842 0.671692 0.015875 -1.301465 -1.739397 -0.154937 0.309569 1.670233 0.167461 1.888344 -0.355071 0.607592 -1.930568 0.259060 0.398905 0.002042 0.846822 0.377130 -0.629725 -0.535989 -0.406923 -1.183367 -1.058836 -0.452526 -0.960038 -0.768689 -0.623677 0.690960 -0.651245 -0.086151 0.853899 -0.020108 0.840622 -0.237214 -0.120096 -1.148278 0.187981 1.159984 -0.161971 -0.792902 0.941116 0.047532 2.580181 -0.208204 0.752049 -0.237249 0.451302 -0.125873 -1.057494 -0.260572 1.511020 0.851008 0.086509 -0.007263 -0.253482 0.325537 0.598682 -PE-benchmarks/karatsuba.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = -0.764878 1.609675 7.958329 5.130647 -4.476707 -6.012948 -3.083454 -9.328706 4.753618 0.346143 4.736204 0.190907 1.654121 -2.266874 -0.498654 -1.202665 1.598486 -1.983643 0.229515 -2.624966 -1.737463 6.281051 1.612052 -5.472250 0.779465 -9.151943 5.448197 3.462472 3.454470 4.204216 0.660973 -0.719082 -1.901673 4.464088 -1.993828 -0.335811 2.028396 0.928064 -3.452969 -0.183578 2.211666 3.976015 5.258350 -0.387426 4.936345 2.052029 2.596171 1.972204 -3.552392 -0.686391 -1.768598 4.964882 -3.180894 3.093015 0.966437 1.488290 1.269538 -5.563740 -1.209663 -3.188238 -0.455689 0.727175 -2.403793 0.370965 -4.579628 0.852804 0.035463 -2.920277 2.627972 -0.346139 4.063416 1.502719 0.475079 -1.846016 -4.789763 1.873975 0.839940 3.230997 3.493226 -1.130192 -0.016756 0.554987 -3.194315 -3.579793 1.741880 2.703850 1.411235 0.317700 0.566384 -2.555022 0.450884 -2.072625 0.343973 3.531175 -2.405590 0.554000 -2.530431 -1.335285 -3.606273 -3.425496 0.537642 -2.894707 2.943757 2.495498 -2.490287 0.386629 1.565803 0.884710 -1.555230 -3.560310 0.891065 -2.087258 3.361983 6.987820 -1.402377 -2.141844 -1.939294 -1.816741 -1.175888 4.807973 -0.111761 1.055526 5.605125 6.507395 1.281150 -4.076473 -2.468996 1.274761 2.697616 4.133520 3.817055 -6.236303 -2.627250 -0.161376 0.038279 -7.672337 0.200797 -0.190613 4.056204 -0.248866 -4.598775 2.078142 -2.706519 5.627003 2.525313 1.485127 1.308973 -0.133793 -4.082516 5.488260 8.638803 -1.017373 2.808483 -4.319204 -3.201471 4.249908 -2.796046 2.973020 0.702798 -0.996645 0.083998 -2.815999 1.032920 4.513708 0.586202 1.419130 2.559624 1.546916 -1.164231 -7.447337 -6.896429 1.344836 4.286123 0.267320 9.358889 -5.102829 -3.178976 -2.082284 5.765872 -0.379831 -1.118256 1.657401 -3.654092 3.208340 -6.053029 -6.842672 8.357985 8.138427 1.557527 -0.073694 4.954884 2.363556 -2.668043 -2.883523 -2.275447 1.956731 1.995666 -2.839521 -0.336531 0.524866 -4.515536 -2.886626 1.158859 2.078196 4.296911 -2.505920 -1.640017 -0.672563 -5.231286 -5.229770 3.212010 -4.014074 -0.937113 1.520478 0.019450 0.049997 3.267127 -1.339445 -1.731565 1.095223 -1.975307 0.777339 2.122507 4.280018 0.246377 4.798287 5.093829 0.100899 5.882340 2.959116 -2.131810 10.214445 -2.045295 1.628350 1.999251 2.355515 0.323627 2.271245 2.450017 -2.744364 -0.948420 -5.634631 2.318175 0.016496 3.133641 -6.687531 -3.915300 -6.727526 -2.736856 2.071817 3.219045 -0.177605 9.265437 -0.965576 0.151700 -9.923300 -0.819505 4.066401 0.551619 3.827945 2.621302 -4.275417 -7.029338 -1.499179 -3.983419 -0.938898 -2.447973 -3.763676 -3.678371 -1.919768 4.434734 -1.687310 1.948035 7.321005 -0.655490 1.735645 -2.944400 0.238652 -2.082964 -2.983061 1.801712 0.333455 -4.439133 5.212022 -0.913872 11.082172 -1.581277 3.565482 -3.447579 1.870428 -0.310565 -3.763435 -1.442925 6.603948 2.488370 1.091370 0.334213 -0.211365 -2.291308 4.695863 -PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = 0.594492 1.371909 4.890491 1.817701 -4.134043 -5.634696 -1.980869 -8.511153 3.629932 1.223803 3.163048 0.428301 1.526519 -2.287119 -0.571306 2.173578 1.411461 -1.103729 0.071698 -2.684027 -3.366924 4.462125 -0.192629 -0.389817 1.531285 -6.411521 4.349053 1.117952 3.137156 2.848215 2.038018 -0.625917 -1.815944 2.980345 1.190334 2.901235 0.807037 0.987108 -2.851144 1.617486 0.820852 -0.347134 3.540666 1.202366 4.660965 1.530000 2.058349 1.780421 -2.468274 -0.712397 -2.493797 3.778246 -2.979584 2.169921 -0.873509 -0.080512 0.137429 -2.552941 -0.351099 0.247873 -2.086384 -2.163075 -2.667660 0.579989 -3.702073 0.749565 -2.303312 -2.073079 -0.344051 0.675003 3.434258 1.413632 -0.400621 0.926272 -5.284190 0.121412 0.754929 2.135550 3.771695 -1.163007 0.044306 -0.688304 -3.182289 -3.527817 3.697638 2.154446 1.241172 0.181535 -1.059949 -1.849521 -1.653368 -1.255166 2.371395 2.502996 -3.483120 -0.643740 -2.203009 -1.206055 -2.762165 -5.307882 1.047324 -1.696315 2.116865 -0.421856 -0.923934 -0.133378 0.628488 0.288207 -1.338397 -1.944770 0.680823 -1.675677 1.904609 5.808743 -0.201864 -1.991177 -1.832864 -1.638241 -0.852839 2.722447 2.021449 0.165448 5.281499 4.356977 2.805971 -2.481559 -2.745057 1.185206 1.399350 2.694327 2.301126 -3.667769 -2.461715 0.882744 -0.369932 -5.819111 -0.540580 0.406192 2.934115 -0.626996 -0.601808 0.077088 -1.701672 2.364339 1.839975 -0.016965 1.315206 -0.230429 -3.192803 3.694980 6.684192 -0.499116 1.809384 -3.331720 -0.485944 3.108739 -2.511028 0.862490 0.794911 -1.529862 -1.205560 -1.258363 -0.126858 2.988857 -0.192574 -0.143608 1.211000 2.526941 -2.980031 -4.426928 -4.667533 0.643038 4.815654 0.086727 4.982220 -4.061302 -0.644351 -1.098141 4.203592 0.998403 -0.898505 1.874485 -3.156057 2.432926 -3.400177 -4.324267 7.137375 6.161894 2.390038 -0.791222 2.190109 3.662739 -4.928285 -2.862875 -2.032931 0.605053 1.333168 -5.398019 -2.454250 0.875153 -3.987099 -2.260235 0.359982 1.818092 2.846235 0.283329 1.231095 -0.454599 -1.982735 -3.672119 2.981623 -2.002316 -0.862638 1.051783 0.348369 0.046752 2.409747 -1.095563 0.151462 0.900408 -1.438145 1.406139 2.114869 3.082742 0.155903 4.811397 4.447706 -0.778557 3.751157 0.954958 -1.776520 4.844053 -0.499936 2.045353 1.505611 0.858970 0.255632 1.211060 2.590550 -2.341447 -1.859962 -3.733609 -0.112386 0.556211 1.985592 -0.761070 -2.585915 -6.085599 -1.075595 0.635770 3.012573 0.079337 5.800312 -0.970658 0.753662 -5.889446 0.005469 2.756541 -0.198094 3.158523 1.479708 -2.636016 -1.873867 -1.756489 -3.565833 -2.676229 -1.324763 -0.670626 -2.643793 -1.424279 2.943799 -1.492215 0.596224 3.559780 -0.017924 2.218506 -2.820309 0.802062 -2.834214 0.030333 3.598318 0.009004 -3.283278 3.299748 0.316827 8.548813 -0.158416 1.862932 -1.295737 0.180512 -0.159067 -3.272130 -1.414112 4.446531 2.370217 1.294429 0.311694 -0.034150 0.028499 3.716347 -PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.266350 2.488310 9.664389 4.738648 -5.634567 -7.893871 -3.547482 -11.122047 5.140087 0.490342 4.935610 0.057838 1.281292 -1.285146 -0.403417 0.863699 1.180921 -2.794611 1.389502 -3.200636 -3.657136 7.668435 2.023923 -4.383305 1.321559 -11.677446 7.444197 3.046342 4.940050 5.677773 1.539199 -1.235162 -1.567802 5.322827 -0.097727 1.845643 1.352453 1.410504 -3.580414 2.289946 2.156050 4.190988 5.241342 0.646891 6.618284 3.870136 3.901746 2.593849 -4.080728 -0.243280 -4.811433 6.444572 -5.461952 3.540370 -0.776289 1.768352 -0.030304 -6.441401 -1.705074 -3.186136 -2.724622 0.740176 -3.895635 1.065649 -6.521155 1.557194 -1.834458 -2.731676 2.369215 2.569684 6.311592 2.409412 0.869484 0.167787 -6.877694 2.011406 -0.223693 4.558177 5.150203 -4.553754 -0.549328 1.478671 -3.405571 -5.134909 3.010380 2.497821 1.204321 -1.353163 1.987673 -3.327275 -1.382409 -3.011002 -0.650379 5.246323 -3.405432 2.326889 -4.555456 -1.022942 -3.720045 -5.406561 -0.006047 -4.227162 3.131411 2.814453 -0.513851 -0.681236 1.091076 0.835250 -1.595841 -4.436370 1.183753 -1.191955 2.790302 7.867860 -1.159036 -1.998605 -1.176871 -1.753033 -1.434291 6.553852 1.122984 1.666057 7.185978 8.245904 2.640867 -4.325040 -3.253501 0.629511 3.068882 5.741881 5.348364 -6.791872 -4.172152 -1.038889 1.894568 -8.536415 1.770410 1.174284 4.652028 -0.520196 -4.341385 0.411518 -3.034411 6.895812 3.600081 1.774259 2.116027 -0.720477 -4.640006 7.646422 13.279284 -1.727140 3.285468 -5.553484 -2.502884 5.970416 -5.166863 3.563269 1.424389 -0.129933 -0.425982 -3.873265 -0.768703 5.627668 1.558344 2.182582 5.097881 2.749812 -1.926768 -9.102762 -6.593051 0.528617 5.839772 -1.558412 10.579515 -5.901240 -2.712643 -1.570095 5.802943 0.112036 -0.882690 0.988373 -4.140302 3.865213 -7.629411 -7.693077 11.414341 9.934241 1.451215 -0.153022 4.645959 6.046270 -4.461181 -4.284651 -3.442078 2.335204 0.981012 -3.764499 -1.470386 0.673722 -5.742534 -3.721631 1.092516 2.649812 5.221768 -1.913864 -3.498628 0.622015 -6.848997 -6.199617 3.747109 -6.145626 -2.793473 1.941834 0.182264 0.915926 2.601329 -1.232895 -0.660150 2.442472 -2.706928 0.995121 3.599872 4.876145 0.627545 5.535358 7.116416 0.848070 5.917321 4.325309 -2.649205 11.332983 -1.364338 1.799082 2.745328 2.120405 0.141040 2.597328 2.818881 -3.435365 -3.075112 -6.989579 3.527614 -0.211221 4.069513 -4.848510 -4.577863 -7.873516 -3.310192 4.082075 4.185471 0.151213 11.118670 -0.395690 0.947345 -11.450778 -0.767887 5.544342 0.602641 4.580031 3.432064 -4.401528 -6.189949 -2.566937 -3.481245 -1.157193 -3.309937 -4.283774 -3.891049 -2.723540 3.747560 -1.329825 2.105302 7.802500 -0.130027 2.354930 -3.257258 -0.261837 -3.340923 -2.110791 4.048935 1.526198 -6.173568 6.137943 -1.135399 13.793175 -2.996568 3.768602 -3.708171 0.469523 0.071777 -2.393353 -1.146450 8.405256 2.859074 2.091755 0.875504 -0.118880 -1.997121 5.945249 -PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.162096 0.279392 1.297787 0.528359 -0.134438 -0.518426 -0.071952 -1.198343 0.544257 0.067304 0.490176 0.047594 0.304832 0.102077 0.215753 0.216962 0.110718 -0.180891 0.477603 -0.090455 0.660155 0.921762 0.192673 -0.665631 -0.083940 -1.457210 0.713975 0.407964 0.897769 0.557109 0.148796 -0.211289 -0.031530 0.417051 -0.364872 -0.347990 0.188586 0.122319 -0.679960 0.123694 -0.296755 0.954708 -0.074675 -0.135563 0.512524 0.172310 0.950151 0.254049 0.311396 0.098716 -0.786520 1.201824 -0.387020 0.372600 -0.068202 0.016775 -0.355512 -0.487216 -0.330429 -0.511027 0.147155 0.648777 -0.417953 0.111960 -0.838545 0.264984 -0.210935 -0.053982 0.193768 0.799324 0.694446 0.319443 0.498953 -0.523756 -1.192794 0.299594 -0.585417 0.568009 0.326003 -0.662393 -0.134526 0.352420 -0.109578 -0.467162 0.237333 0.762732 -0.220301 -0.540041 0.441079 -0.096091 -0.631614 -0.310181 -0.576454 0.545842 -0.494303 0.709886 -0.685930 0.372225 0.036086 -0.095929 -0.144788 -0.758371 0.229878 0.250305 0.650967 0.059447 0.328856 0.259053 -0.048885 -0.589838 0.130456 0.285744 0.107416 0.830918 -0.180241 0.159630 0.097286 0.177685 -0.284318 0.728119 -0.031054 0.555441 0.604643 0.882598 0.006722 -0.287248 -0.146561 0.686063 0.359687 0.818476 0.495197 -1.095891 -0.360049 -0.301348 0.446586 -0.761574 0.609591 0.542560 0.333680 -0.272510 -0.667601 -0.149989 -0.218339 0.969029 0.582250 0.267067 0.246053 0.120311 -0.145235 0.740694 1.798107 -0.220659 0.198470 -0.645607 0.213918 0.500702 -0.477370 0.525888 -0.004433 0.633417 0.248172 -0.662385 -0.413749 0.627380 0.606241 0.526394 0.981646 0.120776 0.069717 -1.188390 -0.342628 -0.292165 0.258802 -0.656199 1.104328 -0.267612 -0.456147 -0.241849 0.311233 0.106583 -0.025181 0.059146 -0.519522 0.242635 -0.745086 -0.709326 0.699628 0.840087 -0.075464 -0.335469 0.652364 0.888762 -0.599012 -0.490234 -0.106952 0.450735 -0.418181 -0.332600 -0.044122 0.061164 -0.879608 -0.421907 0.257568 0.177314 0.656890 0.366821 -0.585975 0.539279 -1.177758 -0.563217 0.492083 -0.546482 -0.449263 -0.064513 0.144544 0.079461 0.141212 -0.575051 0.159290 1.146760 -0.378261 -0.151958 0.506442 0.293633 -0.008118 0.499289 0.222916 0.796343 0.722757 0.594767 -0.481817 1.486855 0.454827 -0.133796 0.095314 -0.220308 -0.375513 0.343469 -0.294196 -0.316385 -0.839494 -0.985951 0.520626 -0.270884 0.582933 -0.005649 -0.395741 -0.016634 -0.461237 0.701811 0.564380 0.167079 1.229506 -0.188784 0.238294 -1.207078 0.009992 0.384837 -0.020887 0.422592 0.506524 -0.329470 -0.391759 -0.119006 0.126751 -0.353614 -0.491089 -1.045163 -0.585018 -0.504239 0.357008 -0.316566 0.110439 0.911002 0.133841 0.472260 -0.434872 -0.111523 -0.223447 0.042097 0.195069 0.396259 -0.995715 0.542152 -0.533823 1.757434 -0.752305 0.368094 -0.667555 -0.101615 -0.254151 -0.012976 0.079714 0.995380 0.207171 0.287170 0.074215 -0.307841 -0.396278 0.371679 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 4.365035 11.121686 25.551425 9.896551 -22.700231 -23.866198 -7.880294 -36.414842 14.015930 2.110708 10.030587 3.715981 3.591383 -9.812401 -1.930065 10.768870 6.104356 0.048013 -2.301294 -11.396809 -18.795054 10.896991 0.533396 -9.100636 10.793886 -23.803334 18.162252 5.795543 14.010638 8.412058 9.761053 -2.413753 -9.574682 16.135947 7.331348 7.527918 4.053125 2.867354 -16.353158 8.137030 2.975286 -1.089174 13.967398 5.395221 19.097885 7.003672 11.815912 9.578361 -12.469806 3.076424 -12.086545 23.673219 -12.332766 11.333609 0.473853 2.826179 -3.192818 -15.756732 -1.339590 0.824994 -9.447419 -10.385369 -12.221600 0.905436 -17.533164 0.736328 -7.525088 -11.904898 0.724536 9.227109 14.523950 5.211003 -2.424524 1.005761 -19.309101 -0.114886 4.675571 13.192768 18.108118 -4.493864 4.611663 -2.014024 -11.397853 -14.817720 14.221009 3.768073 5.638276 -3.227043 0.134274 -9.171445 -6.565059 -8.608989 7.533175 11.429560 -19.008416 0.499239 -15.399766 -6.194209 -15.622683 -23.624042 3.743528 -7.679530 10.834874 -4.246520 -6.757621 2.910476 5.450190 3.354588 -1.776527 -8.547940 0.142915 -4.607627 7.592975 25.884788 1.978979 -8.455280 -1.925079 -7.089939 -7.430700 11.026623 7.809112 1.248032 24.308572 21.969807 10.638938 -7.810578 -9.793082 1.504062 2.678532 15.184242 14.039513 -19.987179 -11.180836 4.307300 2.588138 -27.276502 4.326564 0.698159 10.661889 -0.817481 -5.774544 -5.262551 -6.161493 8.881141 2.339031 1.035620 5.939453 -3.062986 -10.317327 16.375944 30.869035 -4.091679 7.392197 -12.361145 0.070940 12.199140 -10.296623 3.458082 0.901040 -6.812570 -0.220509 -5.862197 -5.948414 14.010492 1.696981 -5.773133 9.829805 7.676836 -15.500216 -23.334771 -16.065022 3.865698 18.198761 -4.949717 21.567942 -16.577001 -4.247315 -9.331056 19.542578 1.538784 -0.459605 7.608979 -14.364459 11.816677 -5.290262 -18.508441 28.148686 24.007438 3.910775 -5.634835 10.790602 12.275213 -26.014380 -16.785305 -10.797034 -1.173812 6.578048 -19.071711 -13.459911 2.790314 -20.038544 -3.894639 4.555744 7.759286 17.788134 4.065704 1.049978 4.562077 -12.153086 -18.318324 11.190091 -8.029676 -3.065627 7.032892 2.417217 2.956444 11.299906 -5.119628 -5.610018 1.573442 -6.694858 3.996622 9.201309 17.128894 -0.513992 23.107808 14.591618 1.754629 19.019001 8.550941 -10.428092 23.280855 0.981050 10.201192 8.379822 2.655874 -4.207867 6.189057 11.722554 -10.106450 -10.862755 -15.975129 -1.350927 -3.363990 8.941415 -5.514095 -9.531960 -20.834956 -7.314321 6.016059 6.341661 -1.933108 23.284042 -1.094815 2.518291 -26.868087 -1.501384 12.712365 -1.070779 15.786594 8.980073 -14.743613 -11.509761 -7.658611 -13.241789 -11.347473 -5.996627 2.114047 -12.185824 -2.078216 14.121096 -2.864311 2.354430 19.593109 -1.837254 8.895828 -14.121096 4.945326 -7.009619 -3.626296 20.135343 0.242957 -15.698967 16.709933 1.476092 41.355574 2.397190 7.764614 -6.930503 -9.582642 5.018955 -7.876720 -7.573450 19.048377 8.990351 8.824361 1.250558 0.636541 -3.269841 17.464652 -PE-benchmarks/karatsuba.cpp__main = 10.405360 15.141889 28.279703 5.599543 -27.166858 -29.587260 -8.520870 -49.308559 18.268325 3.499210 9.531653 3.808055 5.432600 -14.006717 -4.291331 20.196731 9.375761 1.248231 -3.236691 -14.646489 -24.773804 12.679255 -7.092142 -1.448424 14.766820 -27.435929 16.637712 5.051741 19.716933 5.900925 14.614161 -3.928749 -12.541826 17.533662 12.943960 13.953936 7.488349 2.539205 -25.267743 11.151945 -2.331904 -6.976163 17.761861 6.501981 23.956941 4.895784 12.663569 13.358451 -12.771149 4.849252 -14.589842 30.949581 -10.837954 13.224824 1.428519 -0.786573 -6.852471 -15.835191 -0.078752 13.272858 -16.180286 -15.799780 -13.283496 1.464229 -19.193169 -0.693338 -10.277718 -14.536754 -2.896497 9.899084 15.476835 6.353909 -3.470523 5.332925 -27.417498 -1.688021 8.633609 14.908835 22.070419 -2.510861 11.107569 -5.199611 -14.618178 -18.110749 21.349196 10.434297 7.644964 -2.281227 -6.987523 -11.319991 -10.092746 -11.132350 14.896837 11.360177 -26.344126 -3.747295 -21.954117 -9.039420 -20.757745 -35.663745 5.764620 -5.607309 13.473165 -14.316813 -3.965645 4.692004 8.623161 3.597368 -0.427136 -5.482844 0.624559 -5.638057 9.313066 35.493933 4.863701 -12.733420 -6.070943 -10.015098 -13.084296 9.061899 10.673490 -1.189126 29.342698 23.934816 18.608694 -8.840361 -14.251765 2.649466 0.768200 16.490799 15.645546 -22.213269 -11.663950 7.630826 0.935337 -34.152253 0.933169 -1.525688 11.717060 -3.584213 2.018860 -12.301692 -6.014158 8.084541 -0.388863 -4.438422 7.814536 -3.252071 -10.772313 17.396273 32.703799 -3.520255 8.266752 -16.770514 5.323624 7.666703 -10.658288 2.745156 -0.324709 -11.456990 -3.477813 -3.855936 -5.559411 14.376053 -0.796075 -11.184972 4.512215 10.584016 -25.185943 -24.306266 -19.798819 4.976651 21.433386 -7.066520 20.686649 -18.900671 -7.293102 -11.234338 23.452097 2.478074 0.047324 13.594384 -21.666043 15.037394 2.121047 -19.822671 33.833904 30.609771 7.228123 -8.722410 11.505085 12.816928 -40.860338 -22.227443 -11.080194 -4.809231 8.761789 -36.162383 -21.094681 4.912115 -23.378149 -2.400818 3.574968 9.772261 20.164535 14.265309 12.683512 3.755624 -9.889323 -21.251513 16.779761 -4.892650 -1.809292 9.010647 4.396895 2.826278 17.028921 -8.765765 -6.518688 2.155742 -7.710320 8.066416 10.226458 19.529802 -3.775712 27.910988 18.487250 1.785869 28.008720 6.104114 -13.465220 18.230886 1.966828 14.453219 9.209503 -1.509473 -7.608969 7.037229 15.134722 -12.750181 -14.645128 -16.528594 -8.065784 -4.488205 9.325571 4.168698 -13.817746 -24.831766 -7.421488 2.988384 5.557065 -0.917808 22.954360 -3.253949 4.991226 -30.306618 -0.420543 12.377490 -1.053321 19.190990 8.749211 -18.181769 -7.587290 -7.918135 -20.238013 -24.385596 -5.349030 4.476219 -13.324900 -5.230814 20.789921 -2.867086 -0.672228 20.926758 -1.610425 13.171772 -19.863780 7.950589 -10.503879 -0.933300 29.339590 -3.123033 -16.232735 15.403371 4.532168 50.682659 6.987937 6.769542 -4.788676 -14.061166 8.574086 -13.663242 -10.419487 21.082940 10.642974 11.099070 -1.545055 -1.252329 -1.755142 20.885877 -PE-benchmarks/karatsuba.cpp____gnu_cxx::__alloc_traits, char>::_S_select_on_copy(std::allocator const&) = -0.014500 0.201318 0.701107 0.129666 -0.523184 -0.893013 -0.278355 -1.269091 0.464018 0.281106 0.619216 0.034523 0.544330 -0.247226 -0.117970 0.075976 0.292665 -0.182623 0.185488 -0.384264 -0.454523 0.755167 -0.090131 0.119871 0.073830 -0.735145 0.822614 0.147269 0.382860 0.700674 0.257443 -0.031605 -0.368125 0.335666 0.070891 0.284095 0.104224 0.402162 -0.267738 0.163543 0.094336 -0.330779 0.546348 0.116400 0.590465 0.340673 0.025132 0.251358 -0.208077 -0.341866 -0.113497 0.002981 -0.519911 0.207090 -0.254295 -0.270959 0.094434 -0.025817 0.029076 -0.142150 -0.063563 -0.503209 -0.384426 0.189396 -0.584785 0.165501 -0.506031 -0.480094 -0.225197 -0.248518 0.361791 0.179799 0.032567 0.195956 -0.974886 -0.033039 0.159181 0.117241 0.511132 -0.011337 -0.147551 -0.218504 -0.611214 -0.590933 0.507171 0.531830 0.201897 0.195535 -0.375612 -0.122761 -0.062113 0.053608 0.498970 0.429914 -0.222986 -0.031679 -0.325872 -0.117448 -0.285704 -1.056993 0.292077 -0.263473 0.351707 -0.018585 -0.243126 -0.178373 -0.074092 0.041044 -0.289471 -0.489806 0.143706 -0.503005 0.269160 0.818943 -0.122356 -0.260265 -0.480835 -0.323019 0.219187 0.392491 0.320370 0.000969 0.558833 0.490825 0.297645 -0.621529 -0.508901 0.363457 0.202697 0.243063 0.208536 -0.511498 -0.342789 0.209645 -0.452652 -0.902773 -0.251629 0.043588 0.350792 -0.429926 -0.034734 0.316202 -0.464424 0.128297 0.591290 0.219540 0.187221 0.053654 -0.498295 0.359408 0.707982 -0.076647 0.348266 -0.320014 -0.278319 0.574991 -0.229673 0.161984 0.067481 -0.209600 -0.373563 -0.143849 0.149780 0.472001 -0.042295 0.333050 0.068924 0.311537 -0.471165 -0.546327 -0.684735 0.068967 1.137983 0.304226 0.639553 -0.713451 0.021948 0.201796 0.650255 0.283926 -0.292533 0.274985 -0.266216 0.422675 -0.911388 -0.714281 0.835537 0.636686 0.490031 -0.082228 0.054407 0.395666 -0.516384 -0.377583 -0.334616 0.233343 -0.109211 -0.861358 -0.368895 0.131439 -0.614830 -0.210297 0.057333 0.351058 0.441726 -0.060419 0.313851 -0.261293 -0.030724 -0.626229 0.498390 -0.204381 -0.169945 0.061410 0.025254 0.000681 0.165178 -0.099160 0.144971 0.156518 -0.157308 0.265007 0.316489 0.132273 -0.084890 0.906460 0.591296 -0.436602 -0.062720 -0.080813 -0.141689 0.794508 -0.199468 0.349975 0.204919 0.434747 0.130708 0.153191 0.605047 -0.352143 -0.325979 -0.594755 -0.367855 0.331181 0.349530 -0.073944 -0.494463 -0.967337 0.103094 -0.108719 0.851712 0.009145 0.911352 -0.138610 0.326864 -0.596447 0.116696 0.263946 -0.168582 0.504397 0.187196 -0.324102 -0.061014 -0.284938 -0.646369 -0.457929 -0.174108 -0.161877 -0.316082 -0.045307 0.041598 -0.190312 -0.094558 0.207763 -0.130778 0.347299 -0.259341 0.088214 -0.488118 0.137055 0.495473 -0.118275 -0.428100 0.529000 0.161943 1.115885 0.083425 0.321511 -0.015031 0.321974 -0.155822 -0.584983 -0.254948 0.758899 0.395630 0.189683 -0.005068 0.021660 0.256643 0.333267 -PE-benchmarks/karatsuba.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = -0.014500 0.201318 0.701107 0.129666 -0.523184 -0.893013 -0.278355 -1.269091 0.464018 0.281106 0.619216 0.034523 0.544330 -0.247226 -0.117970 0.075976 0.292665 -0.182623 0.185488 -0.384264 -0.454523 0.755167 -0.090131 0.119871 0.073830 -0.735145 0.822614 0.147269 0.382860 0.700674 0.257443 -0.031605 -0.368125 0.335666 0.070891 0.284095 0.104224 0.402162 -0.267738 0.163543 0.094336 -0.330779 0.546348 0.116400 0.590465 0.340673 0.025132 0.251358 -0.208077 -0.341866 -0.113497 0.002981 -0.519911 0.207090 -0.254295 -0.270959 0.094434 -0.025817 0.029076 -0.142150 -0.063563 -0.503209 -0.384426 0.189396 -0.584785 0.165501 -0.506031 -0.480094 -0.225197 -0.248518 0.361791 0.179799 0.032567 0.195956 -0.974886 -0.033039 0.159181 0.117241 0.511132 -0.011337 -0.147551 -0.218504 -0.611214 -0.590933 0.507171 0.531830 0.201897 0.195535 -0.375612 -0.122761 -0.062113 0.053608 0.498970 0.429914 -0.222986 -0.031679 -0.325872 -0.117448 -0.285704 -1.056993 0.292077 -0.263473 0.351707 -0.018585 -0.243126 -0.178373 -0.074092 0.041044 -0.289471 -0.489806 0.143706 -0.503005 0.269160 0.818943 -0.122356 -0.260265 -0.480835 -0.323019 0.219187 0.392491 0.320370 0.000969 0.558833 0.490825 0.297645 -0.621529 -0.508901 0.363457 0.202697 0.243063 0.208536 -0.511498 -0.342789 0.209645 -0.452652 -0.902773 -0.251629 0.043588 0.350792 -0.429926 -0.034734 0.316202 -0.464424 0.128297 0.591290 0.219540 0.187221 0.053654 -0.498295 0.359408 0.707982 -0.076647 0.348266 -0.320014 -0.278319 0.574991 -0.229673 0.161984 0.067481 -0.209600 -0.373563 -0.143849 0.149780 0.472001 -0.042295 0.333050 0.068924 0.311537 -0.471165 -0.546327 -0.684735 0.068967 1.137983 0.304226 0.639553 -0.713451 0.021948 0.201796 0.650255 0.283926 -0.292533 0.274985 -0.266216 0.422675 -0.911388 -0.714281 0.835537 0.636686 0.490031 -0.082228 0.054407 0.395666 -0.516384 -0.377583 -0.334616 0.233343 -0.109211 -0.861358 -0.368895 0.131439 -0.614830 -0.210297 0.057333 0.351058 0.441726 -0.060419 0.313851 -0.261293 -0.030724 -0.626229 0.498390 -0.204381 -0.169945 0.061410 0.025254 0.000681 0.165178 -0.099160 0.144971 0.156518 -0.157308 0.265007 0.316489 0.132273 -0.084890 0.906460 0.591296 -0.436602 -0.062720 -0.080813 -0.141689 0.794508 -0.199468 0.349975 0.204919 0.434747 0.130708 0.153191 0.605047 -0.352143 -0.325979 -0.594755 -0.367855 0.331181 0.349530 -0.073944 -0.494463 -0.967337 0.103094 -0.108719 0.851712 0.009145 0.911352 -0.138610 0.326864 -0.596447 0.116696 0.263946 -0.168582 0.504397 0.187196 -0.324102 -0.061014 -0.284938 -0.646369 -0.457929 -0.174108 -0.161877 -0.316082 -0.045307 0.041598 -0.190312 -0.094558 0.207763 -0.130778 0.347299 -0.259341 0.088214 -0.488118 0.137055 0.495473 -0.118275 -0.428100 0.529000 0.161943 1.115885 0.083425 0.321511 -0.015031 0.321974 -0.155822 -0.584983 -0.254948 0.758899 0.395630 0.189683 -0.005068 0.021660 0.256643 0.333267 -PE-benchmarks/karatsuba.cpp___GLOBAL__sub_I_karatsuba.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/sort-array-wave-form-2.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = -1.987585 0.163897 8.689607 4.832722 -3.029171 -5.123591 -2.806714 -7.169706 4.566407 0.285872 5.150722 1.340376 1.323213 -1.395812 0.955721 -1.084668 0.446739 -2.819564 0.108214 -1.782874 1.504945 5.995776 3.969509 -6.855376 0.174646 -9.551162 3.842102 3.443342 3.453206 5.096395 -0.300881 -1.182086 -1.224846 4.193199 -2.639562 -0.229494 1.944224 0.504304 -2.639111 -0.661141 2.125072 5.239585 3.531893 -0.773506 5.802016 0.959046 3.996676 1.000891 -2.890792 -0.955457 -3.287429 6.846787 -4.372639 2.903412 0.431961 3.255197 -0.423304 -5.570107 -2.488598 -7.242170 0.478980 2.967305 -2.613436 -0.235259 -3.850613 1.539716 0.802123 -1.628560 2.690188 0.158948 4.929691 1.671192 1.661749 -1.909158 -4.470433 1.750479 -1.285164 3.731133 2.804911 -2.458177 -1.976742 0.995218 -0.904969 -2.645232 0.920234 1.591887 0.100711 -0.702129 1.842398 -0.527588 -1.005341 -1.641093 -2.112964 3.331258 -3.637759 1.990917 -0.933424 -0.129275 -1.709271 0.260445 -0.126078 -3.994559 1.870845 3.846107 -0.327599 0.148934 -0.183777 1.253213 -2.900569 -4.065474 1.287384 -0.035547 0.817347 4.762454 -3.036938 0.189823 0.741543 -0.206964 -0.818409 5.354840 -0.820167 2.783682 4.040676 6.758804 0.793933 -3.792161 -1.167606 1.940008 4.920526 4.969733 3.435670 -5.668319 -2.462510 -0.926012 0.820205 -7.341982 1.947161 2.149493 4.229872 1.937698 -6.741709 1.180699 -2.195940 7.331824 3.314262 2.397369 1.153018 0.168936 -4.581387 5.542191 10.701646 -1.663458 3.784506 -2.923202 -1.978438 5.102470 -4.858388 3.979263 1.012200 0.800241 2.072273 -3.917545 -1.561825 4.771658 3.048483 3.578884 2.849755 1.232597 0.520328 -8.931688 -6.274814 -1.591550 3.470799 -0.822702 8.812929 -3.931119 -3.852620 -2.571369 5.559100 -1.494662 -1.606568 0.338086 -3.183633 2.922801 -7.550586 -6.426582 8.719799 9.568392 1.193119 1.083259 6.437813 4.237174 -1.729087 -1.469101 -1.162559 2.247638 1.263698 -0.831026 0.663577 -0.355990 -4.788421 -4.064551 1.081805 1.311915 1.724621 -1.325578 -3.025380 3.494805 -5.941207 -3.334963 1.648031 -5.579779 -2.515422 0.597568 0.484295 0.404722 1.643346 -2.493741 -0.751402 3.766082 -3.177281 0.346730 2.659468 3.955235 2.287623 3.758101 4.551353 1.509328 6.233455 3.465837 -2.442940 10.429334 -1.562601 0.411813 1.757103 1.838526 0.269100 2.267097 0.185516 -2.547659 -0.975479 -5.782741 3.804812 -0.296681 4.375749 -5.399753 -5.166805 -3.789730 -2.669733 4.449911 2.485651 -0.998847 9.943768 -0.826362 0.600208 -11.525060 -0.965482 4.744119 0.618528 2.808393 3.191947 -3.064918 -9.892789 -1.510629 -1.239972 0.712975 -2.720523 -5.006850 -2.955799 -3.747241 5.194334 -3.225002 2.373549 6.429035 -0.093486 3.155523 -1.767439 -0.358340 -1.786819 -2.153940 0.052285 2.374114 -5.165906 5.782718 -1.800450 11.548805 -3.785767 3.947385 -4.288115 2.794952 -1.392065 -1.489232 -0.290752 7.071604 3.508632 1.341983 0.246001 -0.674051 -3.563216 3.648482 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.145198 0.640022 3.096168 1.230466 -1.776471 -2.812449 -1.300195 -4.181756 1.742873 0.276590 2.238755 0.026329 0.873854 -0.579890 0.099340 0.226972 0.684749 -0.902759 0.290281 -1.159934 -0.899343 2.582595 0.534400 -1.040483 0.409860 -3.457680 1.738221 1.195106 1.487416 1.690559 0.409794 -0.429243 -0.963886 1.461681 -0.440555 0.459064 0.773454 0.442238 -1.497613 0.412507 0.487519 0.720337 1.895405 -0.167007 2.157274 0.726966 1.117197 0.905960 -1.217353 -0.604861 -1.010270 2.315099 -1.449933 1.016932 0.188417 0.236565 0.078299 -1.687645 -0.647015 -0.840592 -0.460460 -0.265056 -1.203927 0.325356 -1.711856 0.590217 -0.662163 -1.017941 0.714880 -0.129529 1.766720 0.473522 0.090362 0.104136 -2.390866 0.428626 0.179645 1.300335 1.314666 -0.620110 0.016872 0.225972 -1.330585 -1.549331 1.099835 1.313919 0.576631 -0.215529 -0.505400 -0.442442 -0.233642 -0.618963 0.499340 1.290051 -1.491727 0.195758 -1.081297 -0.605682 -1.590612 -2.017328 0.402722 -1.143499 1.165094 0.481697 -0.577742 -0.251452 0.067795 0.333942 -0.895881 -1.824079 0.318711 -0.607394 0.866998 2.965850 -0.853308 -0.511358 -0.790080 -0.740372 -0.526273 1.740883 0.582386 0.555843 2.043000 2.576850 0.680217 -1.588421 -1.385416 0.605310 1.395060 1.562284 1.384530 -2.223637 -1.198241 0.178908 -0.436467 -3.246105 -0.192126 0.366682 1.731496 -0.008734 -1.196818 0.400138 -1.154264 2.004270 1.173728 0.575434 0.488067 -0.139996 -1.793322 2.094793 3.503389 -0.559967 1.511438 -1.415863 -0.851845 1.732790 -1.390871 1.010270 0.644406 -0.237493 -0.309922 -1.014171 -0.166499 1.692802 0.573322 0.901554 0.715815 0.840071 -0.861721 -2.807753 -2.825712 0.285980 2.198380 -0.147913 2.842882 -2.007829 -1.229966 -0.475035 2.635185 -0.069809 -0.923769 0.743780 -1.520690 1.283365 -2.218372 -2.485770 3.398656 3.561019 0.883946 0.027908 1.830574 1.630367 -2.096574 -1.138334 -1.027821 1.000272 0.369953 -2.137220 -0.631416 0.143255 -1.930597 -1.010503 0.131672 1.028465 1.139356 -0.079877 0.126195 0.270394 -1.764787 -1.641083 1.420230 -1.427513 -0.532439 0.506198 -0.043781 -0.017803 1.093352 -0.892229 -0.176353 0.867595 -1.216452 0.613700 1.129363 1.370334 0.274692 2.586186 1.966247 -0.035288 2.324622 0.637875 -0.991344 3.286446 -0.678354 0.826700 0.507708 0.840309 -0.114917 0.783735 1.062328 -1.058751 -1.217383 -2.163855 0.333874 0.106188 1.467892 -1.095952 -2.089060 -2.794395 -0.770248 0.963302 1.777211 -0.054527 3.528313 -0.493234 0.510359 -3.816520 -0.058546 1.313028 -0.055155 1.497975 0.767888 -1.316310 -2.375576 -0.629578 -1.695382 -1.109452 -0.810520 -1.521409 -1.384523 -1.266451 1.902852 -0.889198 0.336317 2.030937 -0.048438 1.152522 -0.709090 -0.112181 -1.141898 -0.438233 1.365209 0.063576 -1.883989 2.159055 -0.031938 4.893709 -0.487882 1.341832 -0.997650 0.518921 -0.117197 -1.434031 -0.461542 2.635887 1.586921 0.526869 -0.233669 -0.088230 -0.581783 1.378798 -PE-benchmarks/sort-array-wave-form-2.cpp___GLOBAL__sub_I_sort_array_wave_form_2.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/word-wrap.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -6.746409 4.002953 34.585730 20.697992 -13.679974 -21.835661 -11.073961 -27.980054 14.796307 0.147837 20.050149 3.354351 3.947727 -3.969336 4.946440 -2.266371 -0.027510 -8.387764 2.966940 -6.767139 0.477485 22.158717 19.320501 -25.066232 0.521652 -32.794079 17.749396 14.770680 16.075819 18.089645 -0.847803 -5.526924 -3.383988 18.497545 -10.070147 -1.624463 0.673269 4.053473 -9.705168 2.698499 7.543904 18.982481 11.601634 -2.425341 20.011195 7.809710 20.127674 4.358975 -13.256638 -2.618705 -15.161621 30.386177 -20.485302 9.867623 1.730250 11.391520 -1.709038 -20.740463 -9.680851 -26.390098 1.010751 9.702259 -13.724473 1.637284 -19.503935 5.703561 -4.405596 -7.070949 10.735572 8.406703 19.808491 7.424747 4.079948 -6.885460 -15.972611 8.175939 -4.760512 16.341959 12.703183 -12.377223 -6.034442 7.873201 -3.101465 -12.404157 4.555952 1.433469 2.410574 -7.040424 9.327517 -3.580092 -4.930448 -5.310371 -9.041105 14.169611 -14.345216 11.823704 -7.138248 -0.225112 -10.184181 -2.376303 -1.983627 -18.014328 8.847726 14.912442 -1.302643 -2.795921 -5.211449 3.408373 -10.002231 -20.707252 -0.379947 -0.607557 5.079405 19.800610 -12.865793 3.506328 4.251936 0.286561 -3.275985 21.410098 2.822069 10.495886 17.962766 27.432836 0.953011 -13.088455 -4.644237 3.702512 16.725393 21.656072 15.599669 -21.864913 -12.797094 -5.660331 6.935581 -28.622398 10.829553 10.859014 11.745319 9.777610 -24.688450 3.303933 -8.442090 26.028442 12.892792 11.533433 5.612148 -1.794912 -14.191377 23.285828 42.426379 -8.079561 14.016493 -8.345632 -11.687748 25.226881 -21.577614 14.744373 6.830526 3.702463 7.576610 -16.187258 -9.335598 19.549447 12.104025 12.719419 19.275907 3.188929 5.271274 -34.024002 -21.081423 0.386949 13.419372 -5.651179 32.160100 -14.370830 -11.516685 -6.001256 20.592231 -2.628481 -5.992487 -1.782901 -9.914403 10.883754 -29.139536 -25.180807 30.255371 31.841355 0.976241 2.060201 22.493075 21.573613 -9.539337 -8.302811 -8.703201 11.203861 -0.023742 -1.141213 1.259355 0.016930 -19.936390 -10.476655 4.359381 5.991666 9.490324 -7.281743 -18.233305 12.025415 -26.779333 -12.505838 5.369251 -21.162125 -8.776565 1.514362 -0.102632 2.212104 5.876192 -9.687415 -3.061473 12.006222 -14.232028 -0.545627 10.373729 17.769097 9.303535 20.635795 15.186195 7.236656 21.883689 15.671044 -9.072964 41.874302 -3.022911 2.275740 6.744205 10.482910 -1.252974 9.218089 1.894139 -9.827878 -10.587300 -23.599516 14.426697 0.249475 15.483521 -19.320439 -16.061077 -16.397075 -12.098892 21.322434 11.139333 -3.093820 38.496936 -1.372895 1.628689 -40.361548 -3.526445 15.516147 -0.052162 16.750143 13.306582 -12.810751 -31.166529 -9.899069 -2.293409 6.677406 -9.945519 -17.385536 -12.108431 -9.969985 16.624964 -11.596293 9.557105 22.098455 -0.598150 9.523205 -2.523277 -1.841070 -5.530888 -8.082424 5.952928 9.715873 -23.044202 25.382469 -7.783550 46.617769 -14.395560 15.266922 -18.426349 3.580782 -1.394103 -1.539481 -1.029113 28.380118 14.282034 5.995319 1.179880 1.223659 -13.131072 13.144386 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -0.295298 -0.052866 4.309541 2.163830 -1.495972 -3.318674 -1.563213 -5.711383 3.505541 0.607025 2.880249 0.753602 1.450214 -1.597622 0.060019 0.648657 0.448810 -1.653277 0.462174 -1.060347 0.463354 5.263610 1.271168 -2.133465 -0.027621 -5.883018 1.978684 1.410420 3.140286 2.827571 0.324598 -0.720888 -0.436430 1.940385 -1.126401 0.794131 0.683464 0.584684 -2.343555 -0.393577 0.488966 1.618591 2.164154 -0.416193 3.615668 -0.490145 2.599189 0.563956 -0.656516 -0.708368 -2.353797 4.174595 -2.262856 1.391962 -0.159342 0.525746 -0.355586 -2.146706 -1.362309 -2.125754 -0.501027 0.893438 -1.885747 0.141598 -2.322407 1.155393 -0.459162 -0.692187 0.591479 0.073517 2.889207 1.387359 1.101479 -0.811109 -4.446367 0.840827 -0.693858 1.628374 1.751286 -0.464979 -0.605686 0.093256 -1.140112 -1.939544 2.085559 2.317678 -0.251001 -0.188143 -0.134929 -0.406306 -1.398335 -0.864342 -0.071607 1.746122 -2.711984 0.811274 -0.797581 -0.090126 -0.714324 -1.277576 0.231095 -2.208667 1.047589 0.927779 0.751880 0.124764 0.677105 0.362535 -1.585197 -2.506016 0.763619 -0.129037 0.345650 3.899719 -1.437956 -0.055453 -0.445346 -0.048300 -1.217747 2.675531 0.323870 1.678984 2.703829 3.470093 1.066978 -2.252394 -1.202005 2.232984 2.703414 2.328349 1.401939 -3.134679 -1.406535 -0.049056 0.594540 -4.605052 -0.139069 1.791245 2.306962 0.163085 -2.126835 0.332514 -0.727944 3.789828 2.252937 0.003661 0.855431 0.391410 -2.537616 3.203232 6.339684 -0.555426 1.844183 -2.423711 -0.820778 3.179859 -3.074634 2.036268 0.220455 0.593596 0.164818 -2.077760 -0.126134 2.477767 0.700475 1.674178 0.701501 1.213162 -0.549770 -4.687458 -4.059467 -0.839754 2.567238 -0.168104 4.769240 -2.233627 -2.038929 -0.729940 2.824477 0.033825 -0.853562 1.148954 -2.846669 1.914380 -4.398872 -3.836032 5.547203 5.422773 1.458744 0.436613 3.279290 3.051925 -2.217006 -1.304653 -0.814545 1.468911 1.161298 -2.888367 -0.340210 -0.082075 -3.020303 -2.667441 0.321733 0.769017 0.854913 0.441216 0.241214 0.700443 -2.709800 -1.925320 2.274332 -2.611261 -1.269045 -0.016886 0.465534 -0.287849 1.566969 -1.572922 0.566407 2.193772 -1.480568 0.664635 1.579833 1.426474 0.601539 2.357061 3.761240 0.282469 3.901015 1.147651 -1.291746 4.957683 -0.800274 0.273648 0.670653 0.371745 0.061864 1.263012 0.334992 -1.598099 -1.147535 -3.117661 1.493791 0.189370 2.314059 -1.487243 -3.292875 -2.598147 -1.458216 1.846020 1.893682 0.137378 5.443518 -1.628232 0.722071 -6.674720 -0.000134 2.411695 0.456322 2.189570 1.363739 -1.500840 -3.755880 -1.036748 -1.138937 -1.174488 -1.737179 -3.510015 -1.805405 -2.966509 3.414433 -2.514628 0.897893 3.222068 0.087229 2.392376 -1.899738 -0.019125 -2.202518 0.000803 0.377107 0.864219 -2.681722 2.696270 -1.026803 6.805383 -2.128206 1.982504 -2.077448 2.186323 -1.465088 -2.188830 -0.045084 3.986859 2.136806 0.316198 -0.227437 -0.743072 -1.363633 1.889065 -PE-benchmarks/word-wrap.cpp__main = -0.020994 0.313998 1.282410 0.045342 -0.778300 -1.654721 -0.634629 -2.344976 0.769513 0.451201 1.270668 -0.130740 0.787946 -0.110285 0.041291 0.495678 0.529002 -0.645384 0.431599 -0.710129 -0.804319 1.529073 0.079416 0.391745 0.225238 -1.608826 1.045300 0.327324 0.620245 1.072179 0.390874 -0.100425 -0.426329 0.578222 0.046414 0.662676 0.296343 0.492716 -0.523502 0.602034 0.063633 -0.265102 0.978130 0.110805 1.105419 0.729926 0.346707 0.526415 -0.409689 -0.599275 -0.391650 0.568536 -0.855392 0.320041 -0.386495 -0.303344 0.109531 -0.433496 -0.273737 -0.063713 -0.380647 -0.617050 -0.794734 0.392808 -0.940995 0.415404 -0.833241 -0.583194 -0.167535 -0.104206 0.828133 0.319693 -0.109071 0.460969 -1.607896 0.078857 0.209601 0.354944 0.664619 -0.457910 -0.282038 0.023325 -1.064552 -1.057179 0.957604 1.031496 0.416546 -0.007899 -0.646014 -0.099418 -0.376359 -0.057553 0.659129 0.798673 -0.529723 -0.053022 -0.285604 -0.397295 -0.915883 -1.627015 0.398470 -0.511125 0.632725 -0.012553 -0.127717 -0.388242 -0.290685 0.142232 -0.612816 -1.004047 0.200481 -0.617919 0.373396 1.487889 -0.363062 -0.219310 -0.836075 -0.517949 0.131652 0.821679 0.613054 0.084910 1.197952 1.082929 0.353682 -0.847413 -0.930167 0.348598 0.629181 0.436734 0.573289 -1.032893 -0.737028 0.295037 -0.689479 -1.519698 -0.552254 0.268082 0.743525 -0.644660 -0.122153 0.541143 -0.668691 0.576261 1.027589 0.214242 0.255062 -0.060600 -0.924826 0.890471 1.619049 -0.283285 0.792742 -0.838695 -0.407955 1.127733 -0.632905 0.321754 0.464988 -0.216921 -0.810483 -0.326182 0.160668 0.769870 0.239535 0.574381 0.230955 0.556646 -0.541532 -0.884020 -1.410064 0.115694 1.586075 0.169698 1.254729 -1.158632 -0.218636 0.087572 1.160412 0.433425 -0.638494 0.439561 -0.619493 0.567607 -1.491190 -1.179170 1.679470 1.482076 0.942219 -0.003591 0.467336 0.954655 -1.153642 -0.621749 -0.551121 0.728231 -0.163245 -1.606767 -0.601430 0.189550 -1.073514 -0.427932 -0.298171 0.686255 0.604523 0.130950 0.477941 -0.330818 -0.555143 -0.772564 0.738259 -0.489925 -0.438143 0.180130 -0.075110 -0.087904 0.335841 -0.286970 0.362426 0.377853 -0.629172 0.423642 0.742660 0.395851 0.021708 1.577762 1.204181 -0.474435 0.485028 -0.168360 -0.289461 1.056285 -0.230438 0.547909 0.168366 0.538882 0.076145 0.221416 0.916294 -0.448264 -0.886766 -0.955940 -0.076250 0.464512 0.631449 0.130518 -1.026793 -1.766841 -0.032848 0.169392 1.702501 0.082447 1.594790 -0.203421 0.615835 -1.456991 0.241558 0.239409 -0.115266 0.657894 0.245246 -0.558057 -0.269175 -0.349953 -1.193024 -1.069257 -0.280227 -0.556043 -0.719650 -0.445085 0.419778 -0.491055 -0.195731 0.555466 -0.045045 0.648814 -0.090339 -0.091717 -0.925344 0.216653 1.195562 -0.210003 -0.726586 0.866592 0.186537 2.296354 -0.020970 0.667305 -0.088060 0.373098 -0.089277 -0.902186 -0.294882 1.281523 0.840906 0.113459 -0.000812 -0.117721 0.432757 0.538193 -PE-benchmarks/word-wrap.cpp___GLOBAL__sub_I_word_wrap.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.083803 1.006618 7.468073 3.756656 -2.802166 -5.554489 -2.504073 -7.190370 3.490892 0.598767 4.944447 0.640454 1.818022 -0.171876 1.026946 0.430284 0.987740 -2.656666 1.291850 -1.788550 -0.720449 5.904165 2.897363 -4.020571 -0.092225 -7.623406 4.583274 3.044527 3.156828 4.570714 0.783420 -0.908315 -0.364524 3.818273 -1.927327 0.149529 0.692401 1.505917 -2.052864 0.545126 1.404002 2.814491 3.546017 0.241054 4.365420 1.826511 4.439537 1.176500 -2.142461 -0.690187 -4.572665 6.339332 -4.746222 1.786429 -0.999254 1.672862 0.759206 -4.200227 -2.121471 -4.961506 -0.565263 1.626925 -3.524418 0.290153 -4.063917 1.572252 -1.387628 -1.700039 1.307226 2.314815 4.620613 2.005600 1.345513 -0.802762 -5.519331 1.660796 -1.222525 3.098400 3.159284 -2.842151 -1.889808 1.489512 -1.826594 -3.443214 2.691206 1.392629 0.734499 -1.132392 1.197253 -0.366245 -2.489119 -0.703099 -1.338213 3.557133 -2.427950 2.724095 -0.877422 -0.253980 -2.578039 -1.550259 -0.074071 -4.091162 1.780642 3.130744 0.322643 -0.857401 -2.022925 0.501359 -3.160698 -4.638479 0.676252 -1.444703 -0.008385 4.246899 -2.870321 0.377598 0.562428 -0.198615 0.155127 4.750276 0.812738 2.215363 4.020109 5.803339 0.301369 -3.226006 -1.339631 1.174186 4.001160 4.268205 3.204733 -4.794826 -3.051707 -0.911777 0.570199 -6.710710 1.922961 2.987218 2.656510 0.812148 -5.171459 1.448302 -2.214765 5.437937 4.079603 3.107402 1.478227 0.108035 -3.430662 4.895092 9.452484 -1.854387 3.885582 -2.657299 -1.672387 5.686167 -4.801300 3.247173 1.276277 0.584947 0.619611 -3.410924 -1.901799 4.467256 2.918813 2.875723 4.123731 1.040584 0.512601 -6.986696 -5.214910 -0.255931 4.755235 -0.853701 7.641965 -3.956383 -2.568942 -0.516524 4.104803 -0.498172 -1.810399 0.283724 -2.051728 2.674030 -8.138382 -5.979546 7.622099 5.897657 0.971725 0.299235 4.406857 4.797450 -2.542631 -2.436673 -1.812799 2.994654 -0.013151 -1.790389 -0.031889 0.083770 -4.720925 -2.574812 0.476397 1.601971 2.182162 -1.370256 -2.471250 1.590921 -5.424699 -2.516910 1.822810 -4.969723 -3.228748 0.396391 -0.093363 0.136836 1.143032 -1.315989 0.175519 3.163177 -3.438115 -0.390572 2.575762 3.486106 1.768971 5.370573 5.074769 0.911060 4.291889 2.874676 -1.760728 8.310369 -1.010618 0.379452 1.394472 2.429323 0.076831 1.831550 1.655222 -2.197896 -3.253006 -5.575886 3.249690 0.537160 3.654027 -2.874358 -3.315646 -4.335995 -2.153968 4.302673 4.576292 -0.950702 8.762248 -0.375109 0.938339 -8.682334 -0.257066 3.286786 0.146921 3.109503 2.971536 -2.858296 -5.086935 -2.210962 -1.417640 0.310074 -1.820793 -4.062659 -3.152408 -3.038609 2.628245 -3.560523 1.594457 4.830722 -0.709356 2.489939 -0.764451 -0.628363 -1.957819 -0.653387 2.469428 1.775870 -4.667588 5.993616 -1.979368 11.338888 -3.021502 3.466004 -3.626957 1.658987 -0.691925 -0.654199 -0.362650 6.820817 3.146131 0.944540 0.780408 0.002880 -1.586822 3.289358 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.399956 0.234651 0.568277 -0.012433 -0.183878 -0.683078 -0.164489 -1.365448 0.487731 0.140506 0.457403 -0.180256 0.343899 -0.134493 -0.063895 0.473510 0.138159 -0.063110 0.261737 -0.169021 -0.252098 0.847392 -0.318555 0.356919 0.112629 -0.776638 0.240425 0.166129 0.653930 0.250167 0.165841 -0.173408 -0.090688 0.115997 -0.061479 0.197012 0.138894 0.175909 -0.626982 0.184103 -0.314900 -0.163602 0.298977 -0.089195 0.394248 0.004413 0.309808 0.226613 0.136960 -0.060129 -0.339620 0.632111 -0.101489 0.194296 -0.134034 -0.415352 -0.127509 -0.019350 -0.122533 0.457640 -0.250135 -0.167461 -0.316576 0.120305 -0.423693 0.128311 -0.331174 -0.226065 -0.024365 0.096898 0.367261 0.194151 0.053651 0.099069 -1.064783 0.065884 0.088454 0.175762 0.206162 -0.056327 0.345151 0.031416 -0.449575 -0.412586 0.661314 0.785311 0.133401 -0.099742 -0.450110 -0.109929 -0.248919 -0.102487 0.375153 0.256194 -0.358830 0.070512 -0.541714 -0.075896 -0.282987 -0.934102 0.127157 -0.242531 0.284716 -0.339762 0.274728 0.080566 0.400972 0.206799 0.018159 -0.482259 0.065049 -0.070985 0.151020 0.946255 -0.009057 -0.197843 -0.336825 -0.140847 -0.408752 0.183599 0.304214 0.112592 0.481485 0.370016 0.355092 -0.306968 -0.482677 0.410112 0.155463 0.286184 0.136323 -0.486754 -0.197562 0.105435 -0.139653 -0.854039 -0.302634 0.151375 0.320357 -0.470290 0.231364 -0.029590 -0.169050 0.287918 0.311919 -0.198680 0.188893 0.088496 -0.232143 0.341221 0.771763 -0.081129 0.204836 -0.524167 0.017082 0.109767 -0.123100 0.143381 0.012416 0.064901 -0.167658 -0.233538 0.096283 0.314500 0.000802 0.103154 -0.020067 0.277236 -0.571988 -0.437360 -0.592819 0.029873 0.522912 -0.195286 0.467945 -0.348432 -0.378901 0.044631 0.473351 0.111811 -0.096788 0.370583 -0.613442 0.291669 -0.319226 -0.525706 0.660641 0.679852 0.395852 -0.167267 0.254355 0.440521 -0.868765 -0.411106 -0.230515 0.221589 0.088247 -1.260844 -0.503800 0.014794 -0.491058 -0.128134 -0.038561 0.200686 0.162859 0.543712 0.552517 -0.219288 -0.311645 -0.303734 0.651319 -0.173702 0.013131 0.033307 0.044483 -0.133233 0.390641 -0.419785 0.197389 0.380308 -0.264967 0.263946 0.270918 0.017484 -0.216008 0.696224 0.572169 0.014962 0.649790 -0.084392 -0.303891 0.391271 -0.028679 0.128886 -0.035127 -0.082481 -0.227306 0.201362 0.271207 -0.251014 -0.599301 -0.482421 -0.217647 0.074945 0.212186 0.563254 -0.465967 -0.574975 -0.172184 -0.007617 0.594181 0.271394 0.606879 -0.327067 0.337021 -0.720298 0.130493 0.032313 -0.047451 0.425048 0.014145 -0.218050 -0.013930 -0.075645 -0.487003 -0.937140 -0.236717 -0.581655 -0.342381 -0.521739 0.374080 -0.228945 -0.092182 0.265547 0.112814 0.384741 -0.460784 -0.014599 -0.455048 0.283723 0.601493 -0.153282 -0.420109 0.111826 0.047297 1.292223 -0.049954 0.199181 -0.166015 0.014135 -0.115684 -0.503738 -0.082962 0.521102 0.360128 0.113374 -0.205398 -0.143391 0.001341 0.208494 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp___GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = -1.772572 0.382213 8.085190 5.411971 -3.491844 -5.669327 -3.245501 -6.869827 4.599464 -0.320745 4.502722 0.928343 0.939185 -2.147575 0.051334 -1.557971 0.224085 -2.548898 0.084002 -1.963855 -0.489308 6.901884 4.037082 -7.002162 0.428380 -10.034390 5.254052 3.350564 3.560965 6.111369 -0.523511 -0.912973 -0.800559 4.690101 -2.361991 -0.409940 1.167561 0.423760 -2.427492 0.158062 3.038100 4.865624 4.585347 -0.444357 5.016350 2.135880 3.010174 1.192033 -3.369102 -0.821800 -3.222107 5.681647 -4.390248 2.891840 -0.001804 3.125640 0.909369 -5.722915 -2.278951 -6.350917 -0.280473 1.992554 -2.691298 0.006363 -4.717629 1.367211 -0.248839 -2.046467 2.835504 0.107571 4.675452 2.186593 1.175510 -2.184458 -4.204535 2.317512 -0.381691 4.160171 3.147733 -2.194494 -1.591515 1.435800 -1.877967 -2.960334 0.887703 0.698155 0.755249 -0.311210 2.366271 -2.124925 -0.596922 -1.323863 -1.221583 3.364723 -2.316009 1.594466 -1.614595 -0.454541 -2.116325 -1.035063 -0.168627 -3.607075 1.985964 3.968123 -1.493341 -0.023935 0.728638 0.960462 -2.197457 -4.370009 1.138837 -0.834142 1.292866 5.719106 -2.185671 -0.459432 0.004168 -0.603990 -1.034695 5.879201 -0.754519 2.298176 4.250586 6.876529 0.556539 -3.647309 -1.358142 1.274926 4.194619 4.256932 3.985029 -5.592235 -2.905606 -1.192758 1.322201 -7.375311 1.358819 1.366586 3.970048 1.658674 -6.103603 2.536574 -2.478130 6.711322 2.896317 1.534227 1.368753 -0.547197 -4.910049 6.541815 10.765521 -1.507558 3.273945 -4.054258 -3.746418 6.442906 -4.381900 3.519063 0.409614 -0.023115 1.759092 -3.543425 0.065535 4.740228 1.524233 2.605016 3.850814 1.021311 0.914024 -8.467221 -6.298791 0.087173 3.861101 -0.308939 9.512557 -4.286779 -2.779811 -2.558378 5.738223 -0.802997 -0.815324 0.249144 -3.119212 2.907592 -8.559689 -6.976251 9.300020 8.919004 0.925772 1.482580 5.460566 4.560269 -0.543548 -1.680432 -1.897459 2.231096 2.083987 -0.722122 0.339506 -0.299739 -4.169731 -3.900186 1.520561 1.473505 2.967888 -2.951210 -3.941437 1.078408 -6.172065 -4.543984 2.091805 -6.079504 -1.688464 1.569122 -0.042927 -0.251672 2.385603 -1.209728 -0.843043 2.164992 -2.248272 0.402423 2.142836 4.341628 1.671085 3.271292 5.298358 0.697193 5.621668 4.079141 -1.959856 11.411401 -2.251012 0.890543 2.167591 2.579990 0.887818 2.477715 0.784093 -2.440607 -0.208550 -5.975776 4.316358 0.171479 3.481883 -7.161331 -4.669206 -5.293913 -3.041876 4.054325 2.636727 -0.535836 10.059004 -0.801559 -0.374889 -10.954421 -1.043466 5.073062 1.104761 3.839171 3.154005 -3.379328 -9.338311 -1.994692 -1.872939 2.043609 -3.460555 -4.911933 -3.191807 -2.267372 4.756200 -2.921631 3.149171 7.240496 -0.318296 2.196045 -2.192803 -0.321372 -2.676777 -3.069574 -0.043300 1.838421 -4.415878 5.726149 -1.742078 10.056248 -3.219853 3.937811 -4.337909 2.890651 -0.991707 -2.311557 -0.450222 6.882521 2.613358 0.689710 0.988027 -0.105562 -2.848140 4.153058 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.402409 0.573244 6.570772 4.169319 -2.888469 -5.252887 -2.641978 -6.191782 3.621687 0.171317 4.397556 0.707363 1.477639 -1.176625 0.300777 -1.095407 0.629846 -2.118312 0.105305 -1.881750 -1.156933 5.614558 3.013599 -4.738106 0.376667 -7.531246 4.480960 2.685938 2.551062 4.871123 0.043026 -0.590468 -0.838614 3.585398 -1.849519 0.175524 0.491410 0.823171 -1.564771 0.007979 2.629061 2.889641 3.899923 0.274218 3.995292 1.955460 2.721256 0.935931 -2.567365 -1.159504 -2.905176 4.379470 -3.986887 2.030173 -0.568168 2.330155 1.165969 -4.271612 -1.568628 -4.816617 -0.123727 1.136763 -2.837156 0.100000 -3.870437 1.264522 -0.890518 -1.804467 1.748317 -0.172216 3.991036 1.437985 0.495798 -1.457765 -3.946224 1.317224 -0.574738 2.781061 2.829298 -1.608799 -1.860666 0.910332 -2.124501 -2.773680 1.671234 0.568100 0.776417 -0.100671 1.132330 -1.484628 -0.776902 -0.756416 -0.505788 2.906856 -2.170574 1.464766 -0.835994 -0.599331 -2.107234 -1.385393 0.277705 -3.094330 1.682399 3.186484 -1.305332 -0.500224 -0.312178 0.391340 -2.231702 -4.049686 0.684289 -1.139146 0.865783 4.414790 -2.287521 -0.476496 -0.133651 -0.761209 -0.131861 4.697670 0.321425 1.591720 3.906180 5.285648 0.523611 -3.183996 -1.267058 1.027320 3.431063 3.398205 2.988707 -4.383912 -2.607901 -0.472646 0.281328 -6.440376 1.019790 1.640666 3.314755 1.270782 -5.120328 2.436098 -2.152816 4.528384 3.058213 2.038641 1.278733 -0.298975 -3.884895 4.710097 8.427139 -1.436916 3.146549 -2.932037 -3.040234 5.648504 -3.829494 2.546726 0.842863 -0.067438 0.795768 -2.726922 -0.227143 4.068585 1.304976 2.370069 3.172958 1.071676 0.296384 -6.632039 -5.394676 0.010590 4.048876 0.260666 7.402430 -3.945691 -1.680070 -1.247315 4.755786 -0.738438 -1.373499 0.312506 -2.150597 2.422418 -7.437068 -5.642268 7.395865 6.511025 0.993126 0.903490 4.069190 3.798771 -0.868802 -1.458108 -2.122261 2.271813 1.372054 -0.798416 0.362216 -0.336934 -3.848122 -2.771817 0.786507 1.469561 2.200913 -2.668032 -2.539871 0.412840 -4.629517 -3.586876 1.813531 -4.725157 -1.622765 0.794214 -0.300717 -0.327403 1.474411 -0.719394 -0.490743 1.717140 -2.186565 0.260541 2.008177 3.268811 1.500061 4.132914 4.493060 -0.175310 3.647856 2.647157 -1.517638 8.841189 -1.886166 0.762701 1.420994 3.057339 0.806547 1.994434 1.382158 -1.991917 -1.252515 -4.824734 2.911173 0.609996 2.885549 -4.820098 -3.354169 -5.067688 -2.203117 2.899955 3.633228 -0.677029 8.277810 -0.667965 0.310816 -8.389023 -0.518552 3.850452 0.331009 2.913010 2.437309 -2.675585 -6.262821 -1.807251 -1.809643 1.210997 -2.111474 -3.567608 -2.782449 -2.131440 3.023530 -2.746470 2.055411 4.949475 -0.493170 1.786901 -1.244821 -0.294202 -2.079422 -1.757518 0.929032 1.448375 -3.804533 5.138818 -1.174070 8.600500 -2.250316 3.537999 -3.243957 2.360508 -1.060836 -2.026212 -0.679872 5.792015 2.787257 0.548311 0.844005 0.171080 -1.585021 3.135102 -PE-benchmarks/binary-insertion-sort.cpp__main = -0.066977 0.809608 3.182626 1.256388 -1.751904 -2.729261 -1.325031 -3.977769 1.621371 0.184655 2.097445 -0.056844 0.736684 -0.341003 0.061054 0.194845 0.631651 -0.843962 0.299235 -1.132478 -0.979673 2.520117 0.659264 -1.144877 0.395843 -3.492701 1.676869 1.166530 1.528359 1.673430 0.300911 -0.434922 -0.857433 1.528914 -0.555758 0.254416 0.734346 0.429460 -1.522480 0.535594 0.467554 0.878623 1.857025 -0.149496 1.961549 0.924236 1.064929 0.907092 -1.238859 -0.508360 -1.012522 2.362591 -1.400575 1.044288 0.212066 0.360530 0.057245 -1.751809 -0.661539 -0.832359 -0.496043 -0.117081 -1.110725 0.329447 -1.771597 0.557893 -0.684840 -1.087061 0.775625 0.028299 1.769780 0.532935 0.153407 0.026157 -2.277623 0.570705 0.175742 1.429442 1.255396 -0.717025 0.028696 0.413910 -1.288101 -1.569974 0.925919 1.229130 0.614298 -0.306285 -0.294263 -0.566515 -0.187448 -0.618358 0.351529 1.349739 -1.373631 0.364485 -1.241826 -0.570490 -1.667747 -2.023781 0.225377 -1.171716 1.174476 0.496530 -0.561916 -0.241735 0.089627 0.362090 -0.728348 -1.841773 0.295809 -0.517295 0.765029 2.930161 -0.812681 -0.463910 -0.610429 -0.727825 -0.618558 1.786202 0.509120 0.542868 1.980869 2.565989 0.595138 -1.490938 -1.254087 0.420239 1.300228 1.558675 1.582730 -2.221570 -1.249827 0.083220 -0.292827 -3.210289 -0.016943 0.385783 1.648518 -0.017618 -1.247323 0.394180 -1.192976 2.018973 1.083785 0.634439 0.542502 -0.310443 -1.686859 2.118859 3.570997 -0.634223 1.540337 -1.453310 -0.956667 1.821128 -1.388226 1.131189 0.562762 -0.214824 -0.223671 -1.074891 -0.180118 1.745471 0.602673 0.822161 0.971829 0.661164 -0.754239 -2.819836 -2.688620 0.325990 2.023120 -0.312097 2.861386 -1.926183 -1.241788 -0.514421 2.612100 -0.101394 -0.817801 0.652082 -1.407465 1.206765 -2.218113 -2.500321 3.300825 3.554644 0.690993 0.007915 1.842596 1.600202 -1.960873 -1.271985 -1.023256 0.985700 0.282662 -1.952245 -0.721119 0.153291 -1.849277 -0.838868 0.159940 1.019450 1.280859 -0.116151 -0.118571 0.288505 -1.972007 -1.698295 1.326141 -1.527964 -0.530695 0.631330 -0.034803 -0.082999 1.069436 -0.840587 -0.324508 0.871108 -1.219140 0.566576 1.082112 1.432190 0.240101 2.511722 1.881546 0.096175 2.320331 0.800475 -0.989548 3.441839 -0.743494 0.787943 0.488576 0.900440 -0.306699 0.826984 0.989146 -0.994747 -1.288671 -2.146135 0.506639 -0.008417 1.312819 -1.192456 -2.080708 -2.627734 -0.812160 1.043388 1.710282 -0.030327 3.513687 -0.396232 0.470557 -3.821829 -0.052936 1.286170 -0.025283 1.548070 0.876551 -1.348361 -2.451984 -0.636675 -1.608260 -0.926814 -0.830352 -1.659514 -1.333160 -1.126273 1.764937 -0.810114 0.413388 2.140262 -0.062876 1.104845 -0.623190 -0.182525 -1.125417 -0.562508 1.491253 0.051065 -1.818217 2.145470 -0.090502 4.824105 -0.484297 1.357956 -1.040603 0.270781 0.090216 -1.309471 -0.469575 2.665116 1.441751 0.539769 -0.181837 -0.111685 -0.597475 1.329913 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = -1.254741 0.745137 8.063765 5.414337 -3.181808 -5.003108 -2.559535 -6.500501 4.276979 -0.220790 3.899718 0.703631 1.437695 -1.673367 0.054721 -1.334509 1.359370 -2.990220 1.110893 -1.831384 0.230446 7.024955 2.654498 -6.827049 0.143066 -10.633148 6.193987 3.424363 3.490384 5.813513 0.103782 -0.749024 -0.364256 4.412785 -2.238748 -1.351245 1.875686 0.528395 -2.709993 0.139248 2.241108 5.352239 4.461696 -0.600733 3.896831 2.240569 3.675478 1.638963 -2.484508 -0.392100 -3.997418 5.028022 -3.902081 2.703745 -0.478746 2.364956 1.628801 -5.695318 -2.304481 -5.409546 -0.259021 2.720708 -2.143172 0.094910 -4.870685 1.339976 0.136896 -2.010241 2.745591 1.856223 4.376932 3.086527 2.359576 -2.693486 -4.915471 2.829772 -0.743643 4.158903 2.912146 -2.816310 -1.665000 1.808992 -2.273775 -3.056012 0.970369 1.952652 0.811350 -0.854413 2.888660 -2.091956 -1.372827 -1.389968 -2.163587 3.349629 -1.308263 1.855830 -2.236296 0.243810 -1.992038 -0.940759 -0.870562 -3.715098 1.763022 4.593320 -0.881902 0.330372 0.723757 0.942540 -2.185242 -3.531708 1.355248 -1.548197 1.136656 5.403644 -1.695004 -0.724405 -0.467745 -0.239507 -0.451155 5.710438 -1.845699 2.288225 4.750660 6.745915 0.118035 -3.314368 -0.937157 1.598800 3.769847 4.144961 4.418899 -6.182493 -2.822048 -1.758075 1.426872 -6.544610 2.059400 1.117722 3.507094 0.095677 -6.624869 2.784417 -2.590754 7.216691 3.502885 1.913628 1.593367 0.105686 -3.895649 6.617153 10.656440 -1.393817 2.862102 -5.332214 -2.553326 5.913189 -3.366468 3.477690 -0.105954 0.468741 1.102435 -3.767284 0.268991 4.535675 1.961038 2.422721 4.871920 0.807785 1.515391 -8.250700 -5.467639 0.206071 3.494294 -0.743101 10.815758 -4.521875 -2.843001 -2.525880 3.978970 -0.502787 -0.651095 0.405855 -2.839674 2.555730 -8.832207 -7.181089 8.843856 7.030012 0.238267 0.979640 5.180169 3.823720 -0.731087 -2.107882 -1.436511 2.511353 1.304000 -0.978297 0.592177 0.630711 -4.478464 -3.979384 1.647743 1.493223 4.680671 -2.973971 -4.568230 0.327683 -7.034229 -4.704673 2.735584 -6.005344 -2.651403 1.639412 -0.085112 0.275194 2.481916 -0.613104 -0.744354 2.710209 -2.078360 -0.679421 2.070641 4.584953 1.033944 2.713317 5.785097 1.634516 4.889302 4.571764 -1.952649 11.180914 -1.306264 0.248032 2.016967 1.863928 0.667477 2.378827 1.117774 -2.293454 -0.912447 -6.424728 5.217111 -0.310579 3.095422 -7.238713 -3.100029 -4.608610 -3.081879 3.992378 3.561344 -0.299684 9.813737 -0.642224 -0.716250 -10.357258 -1.119184 4.422292 1.755821 3.251852 3.559129 -3.494917 -7.200460 -1.639349 -1.850198 1.653629 -3.310680 -5.238121 -3.703886 -2.100559 3.531476 -2.599838 2.607356 8.456072 -0.582406 2.271224 -2.067557 -0.367435 -2.431514 -2.791395 0.046959 2.082802 -3.963764 5.891416 -2.635642 10.180338 -3.313940 3.200765 -4.453337 2.450033 -0.596312 -2.343494 -0.492185 6.917228 1.284456 0.519160 2.021157 -0.878397 -2.310710 5.023380 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -0.301279 0.286348 3.418333 1.320502 -0.719446 -2.694937 -1.269773 -3.690366 2.132428 0.403307 2.077549 0.452779 0.952787 -0.339544 0.042840 0.221172 0.128167 -1.377444 0.524909 -0.857025 -0.318595 3.828223 1.432680 -1.494755 -0.056643 -4.689163 2.416030 1.016426 2.051828 2.954894 0.070384 -0.442539 0.192200 1.765262 -0.891804 0.417066 0.084384 0.619152 -1.007160 0.157237 0.952945 1.378344 1.790698 0.279643 2.288528 0.790835 1.571868 0.302727 -0.402979 -0.507975 -2.022383 2.477309 -2.310366 0.826255 -0.967554 0.954005 0.303361 -1.802177 -0.895428 -2.064991 -0.446042 0.877829 -1.757866 0.191022 -2.263366 0.871369 -1.144251 -0.809732 0.085688 0.253589 2.199544 1.377567 0.559952 -0.672083 -3.122807 0.902417 -0.572634 1.437662 1.508262 -1.151406 -1.364910 0.623173 -1.175301 -1.761282 1.590114 1.249837 0.101616 -0.167571 0.564757 -0.674591 -1.418466 -0.186852 -0.296501 1.730458 -1.064268 1.131243 -0.361527 -0.037435 -0.561586 -0.963579 0.001876 -1.897949 0.737048 1.314354 0.340429 -0.456534 -0.184092 0.251243 -1.116267 -2.190001 0.510315 -0.415231 0.147731 2.471319 -1.227569 0.219961 -0.141592 -0.064443 -0.171990 2.648136 0.207170 0.981633 2.037610 2.667361 0.317455 -1.625144 -0.612094 1.160172 1.881837 1.598626 1.427310 -2.234025 -1.462086 -0.429150 0.516481 -3.256450 0.458840 1.593392 1.408444 -0.010077 -2.068851 1.118654 -0.758927 2.362941 2.297138 0.560794 0.877828 -0.045627 -1.963305 2.585514 4.937337 -0.743811 1.553061 -2.242877 -1.426663 3.374925 -2.542617 1.593997 0.216077 0.390239 0.129672 -1.674753 0.269310 2.249953 0.625396 1.552266 1.543584 0.546467 0.449763 -3.180907 -2.585955 -0.304967 2.160444 -0.108599 3.970801 -1.804045 -0.761754 -0.347126 2.167561 0.247830 -0.471690 0.352571 -1.494857 1.272505 -4.622641 -3.090845 3.999837 3.437840 0.804654 0.331831 1.806165 2.894568 -0.495613 -0.743705 -0.806917 1.500219 0.445005 -1.228003 -0.146939 -0.096446 -1.989584 -1.642953 0.263836 0.673501 1.009621 -0.742136 -0.855691 -0.161031 -2.479539 -1.838475 1.396015 -2.645412 -1.231621 0.144564 0.020318 -0.376332 0.741946 -0.380046 0.505602 1.771529 -1.115978 0.332499 1.294904 1.310529 0.731666 1.841150 2.947417 -0.072089 1.751362 1.361198 -0.517951 4.037998 -0.711613 0.134042 0.683808 1.079884 0.239029 1.172095 0.567578 -1.009803 -1.103832 -2.601316 1.871594 0.525767 1.425808 -1.202870 -1.935326 -2.407977 -1.064177 1.601317 2.349882 -0.009339 4.409039 -0.529554 0.365413 -4.284889 0.004849 1.793482 0.382935 1.559538 1.351934 -1.086274 -2.260703 -1.094338 -0.740023 0.045982 -1.268413 -2.509030 -1.467898 -1.522599 1.460217 -2.107128 1.093342 2.112763 0.044812 1.314371 -0.835415 -0.176792 -1.955354 -0.222399 0.808316 0.686607 -1.810949 2.181652 -0.939136 4.320776 -1.772635 1.790023 -1.733728 1.759857 -0.881318 -1.179407 -0.167894 3.300029 1.333572 -0.018597 0.370896 -0.340548 -0.348835 1.336535 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = -1.614683 0.314962 6.719804 3.902593 -2.788215 -5.192629 -2.532363 -6.436331 4.008182 0.578634 4.363011 1.260909 1.692529 -1.333920 0.505766 -0.522438 0.555732 -2.224395 0.086843 -1.801953 -0.166567 5.982297 3.343427 -4.827927 0.187945 -7.553541 3.826482 2.617183 2.935360 4.749321 0.009243 -0.665158 -0.906327 3.611132 -2.037104 0.467633 0.626443 1.028169 -1.849849 -0.236683 2.168468 3.093723 3.507125 0.104871 4.828653 1.368409 3.126940 0.837413 -2.345626 -1.300415 -2.787335 4.924228 -4.038530 2.311290 -0.538991 2.362215 0.340771 -3.987660 -1.660796 -5.499402 0.079200 1.513854 -2.864712 0.010908 -3.633336 1.313249 -0.381042 -1.747212 1.249088 -0.184197 4.177773 1.382159 0.760407 -1.532300 -4.572559 1.089333 -0.862954 2.693334 2.884243 -1.406086 -2.312580 0.449937 -1.657415 -2.888105 1.686275 1.195582 0.284005 0.086571 0.874139 -0.992556 -1.127125 -0.913978 -0.720765 3.081968 -2.912569 1.581167 -0.208831 -0.340751 -1.727591 -0.838706 0.364434 -3.210100 1.612730 2.706143 -0.256839 -0.522483 -0.550622 0.492530 -2.612596 -3.770497 0.997646 -0.804587 0.469550 4.187467 -2.319412 0.043867 0.238840 -0.549370 -0.268676 4.705984 0.316260 1.790594 3.825256 5.310780 0.746341 -3.321382 -1.195841 1.604326 3.880823 3.610286 2.689294 -4.454858 -2.440701 -0.222135 0.276115 -6.352900 0.968392 2.371336 3.325998 1.099852 -4.911381 1.819886 -1.900933 4.972418 3.273164 1.882686 1.203336 -0.099202 -3.967553 4.483495 9.005901 -1.299179 3.174891 -2.472732 -2.436925 5.675013 -4.438099 3.063925 0.923035 0.083978 0.651671 -2.793599 -0.539405 4.098671 1.715816 2.730914 2.519025 1.174673 0.035416 -6.830257 -5.635211 -0.952871 4.036072 0.336171 7.477780 -3.693224 -2.115200 -1.380329 4.567000 -0.651480 -1.477117 0.490105 -2.440698 2.599895 -7.448150 -5.487723 7.724858 7.331398 1.560874 0.880181 4.684998 3.878790 -1.084998 -1.691862 -1.517698 2.096559 1.161224 -0.993363 0.353254 -0.239252 -4.294196 -3.159361 0.557578 1.291915 1.574258 -1.550113 -1.912642 1.270829 -4.361415 -3.175663 1.396254 -4.433586 -1.949031 0.464452 0.215763 -0.285099 1.252644 -1.296841 -0.246791 2.327117 -2.409468 0.507049 2.151181 2.899051 1.767635 3.902231 4.596663 -0.040808 4.194038 2.367829 -1.577154 8.661207 -1.683384 0.703411 1.449913 2.579063 0.735248 1.821292 0.961192 -2.114773 -0.928359 -4.732335 2.839041 0.733379 3.262190 -4.462357 -4.081677 -4.367104 -1.923750 3.024515 3.287048 -0.895068 8.347026 -0.968513 0.846089 -9.260487 -0.254910 3.765237 0.259606 2.659233 2.549236 -2.593392 -6.807746 -1.735185 -1.493157 0.521532 -2.095324 -3.807699 -2.462933 -2.574189 3.285442 -3.254360 1.824499 4.901891 -0.556007 2.479215 -1.628163 -0.129739 -2.205750 -1.363343 0.798193 1.507694 -3.982740 4.792416 -1.260945 9.190853 -2.703082 3.708540 -3.048500 2.850454 -1.419477 -2.085122 -0.546358 6.001843 2.986276 0.674979 0.651165 -0.096136 -1.775552 2.921173 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.174093 0.308694 1.581302 0.122050 -0.816285 -1.764096 -0.686955 -3.090723 1.106834 0.497594 1.460948 -0.179768 0.909869 -0.245076 0.044686 0.815425 0.632221 -0.906682 0.719440 -0.718798 -0.625298 2.145947 -0.162856 0.508149 0.122235 -2.292599 1.199528 0.374876 1.072512 1.095070 0.553902 -0.237237 -0.356541 0.611749 0.073236 0.721033 0.501388 0.510366 -0.909308 0.564136 -0.186234 -0.203154 1.038948 -0.101991 1.332931 0.392127 0.843189 0.624627 -0.201879 -0.493283 -0.871455 1.161521 -0.951508 0.323992 -0.328496 -0.606917 0.025881 -0.559330 -0.511150 0.246571 -0.622549 -0.557502 -0.912234 0.456997 -1.102984 0.618356 -0.902315 -0.452935 -0.086214 0.340265 1.090720 0.628125 0.254401 0.511046 -2.247823 0.272107 0.059399 0.492749 0.700800 -0.612364 -0.026608 0.140019 -1.167506 -1.208588 1.333544 1.597234 0.325083 -0.321804 -0.659643 0.066853 -0.754534 -0.219814 0.551187 0.895822 -0.779453 0.043868 -0.614256 -0.305530 -0.970288 -1.881408 0.303112 -0.783006 0.709676 0.003192 0.139593 -0.276424 -0.052331 0.154606 -0.723398 -1.235959 0.223907 -0.577878 0.446171 1.952320 -0.444882 -0.188653 -0.960938 -0.400868 -0.141808 0.869293 0.606869 0.404206 1.501051 1.417628 0.449074 -0.952682 -1.122199 0.725000 0.841925 0.645963 0.666602 -1.430781 -0.824710 0.191958 -0.441337 -1.833921 -0.570792 0.470106 0.877045 -0.838729 -0.103940 0.334028 -0.583709 1.095361 1.259837 0.038546 0.292518 0.125961 -0.968321 1.275786 2.180176 -0.268872 0.870318 -1.320024 -0.081667 1.178592 -0.847187 0.444670 0.444852 0.110458 -0.899566 -0.619618 0.048756 0.869219 0.350583 0.662413 0.312804 0.711441 -0.588448 -1.301259 -1.613904 0.100527 1.732256 -0.130532 1.610546 -1.295891 -0.569914 0.150479 1.162358 0.565016 -0.691472 0.676943 -1.056084 0.714779 -1.603833 -1.524346 2.066308 1.738534 0.954185 -0.044273 0.734001 1.334103 -1.800089 -0.794600 -0.568014 0.972126 -0.136949 -2.316959 -0.740329 0.271274 -1.345249 -0.734024 -0.271203 0.756574 0.826473 0.494740 0.639247 -0.233412 -0.887384 -0.827382 1.286632 -0.626758 -0.705666 0.119407 0.006651 -0.022389 0.611001 -0.503829 0.616953 0.764789 -0.758921 0.410193 0.959022 0.434841 -0.112075 1.733517 1.623401 -0.192291 1.009793 -0.061740 -0.412707 1.150816 -0.036834 0.445921 0.159925 0.139257 -0.119153 0.326270 0.918518 -0.584704 -1.324491 -1.262460 0.099238 0.250808 0.862020 0.411307 -1.206528 -1.811070 -0.254703 0.462017 1.827695 0.270745 1.939271 -0.441739 0.634709 -1.981250 0.227809 0.319669 0.030933 0.879953 0.302808 -0.604153 -0.116755 -0.385386 -1.219752 -1.547593 -0.496632 -1.053207 -0.996101 -0.977756 0.838706 -0.690477 -0.260756 0.859852 0.107823 0.930954 -0.313977 -0.144058 -1.179128 0.446057 1.277019 -0.134797 -0.959048 1.088988 -0.062271 3.113294 -0.328384 0.579560 -0.318809 0.432654 -0.206700 -1.056913 -0.138247 1.593782 0.911678 0.100111 -0.118912 -0.373043 0.279194 0.757030 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_2_expected_linear_time.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/tarjan-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = -0.190463 0.133728 1.257446 0.344584 -0.623937 -1.634691 -0.524524 -2.098261 0.871996 0.435050 1.271753 0.118420 0.802396 -0.328718 0.149199 0.433836 0.307195 -0.516292 0.228120 -0.546992 -0.508622 1.492837 0.304550 -0.067300 0.095507 -1.339811 0.941518 0.522484 0.604105 1.029258 0.271443 -0.105256 -0.255992 0.649502 -0.206666 0.636000 0.077557 0.559018 -0.337703 0.175353 0.190510 -0.149499 0.851270 0.131024 1.244945 0.455452 0.705696 0.300718 -0.373422 -0.545387 -0.572718 0.839811 -1.012278 0.362504 -0.529398 -0.106095 0.148115 -0.413232 -0.231360 -0.717346 -0.144551 -0.287690 -0.956082 0.160444 -0.839813 0.363495 -0.454319 -0.572355 -0.198703 -0.073011 0.900504 0.270012 -0.117155 0.180575 -1.558279 -0.030828 0.060001 0.267160 0.758260 -0.330474 -0.460785 -0.178102 -0.779005 -0.926536 1.082913 0.677311 0.318355 0.215147 -0.524810 0.010139 -0.455651 -0.017515 0.470753 0.781011 -0.597657 0.117777 0.165294 -0.229401 -0.681284 -0.994430 0.436172 -0.638574 0.478023 0.172227 0.137989 -0.306369 -0.438318 0.085498 -0.840168 -1.030934 0.158467 -0.608223 0.190752 1.059625 -0.496824 -0.037994 -0.367325 -0.326129 0.191690 0.861477 0.598592 0.189151 1.098097 1.016099 0.326319 -0.922591 -0.718886 0.443326 0.840848 0.667107 0.327549 -0.964183 -0.641511 0.257628 -0.570045 -1.577515 -0.297449 0.635620 0.699155 -0.326661 -0.551899 0.645831 -0.479060 0.655105 1.093256 0.351615 0.235093 0.114575 -0.931481 0.774849 1.729152 -0.283532 0.812933 -0.504165 -0.379479 1.222461 -0.900372 0.391682 0.498315 -0.217113 -0.474615 -0.386455 -0.012422 0.861794 0.376970 0.693497 0.220427 0.542466 -0.502100 -1.117232 -1.406991 -0.156200 1.558408 0.280655 1.422191 -1.056361 -0.315646 0.136512 1.031399 0.076870 -0.586175 0.298864 -0.622598 0.696449 -1.704612 -1.200865 1.752822 1.342880 0.947999 0.098941 0.698793 0.985333 -0.753018 -0.445793 -0.403325 0.605818 0.062939 -1.181880 -0.305798 0.021816 -1.203169 -0.570215 -0.229293 0.480847 0.103380 0.096337 0.370351 -0.187058 -0.499520 -0.569442 0.403600 -0.632888 -0.429982 -0.056897 0.018349 -0.079945 0.201223 -0.363062 0.353095 0.437553 -0.693521 0.342265 0.628575 0.359932 0.339388 1.568077 1.274309 -0.520699 0.657187 -0.064412 -0.246828 1.189198 -0.225265 0.390486 0.265978 0.741112 0.276497 0.281020 0.776366 -0.523552 -0.570331 -1.054044 -0.019327 0.657362 0.741133 -0.002710 -0.856839 -1.525029 -0.153963 0.329575 1.499823 -0.195592 1.678486 -0.262881 0.625189 -1.692185 0.198749 0.355525 -0.206954 0.561228 0.350480 -0.536606 -0.666724 -0.448492 -0.757877 -0.894658 -0.285486 -0.521750 -0.592057 -0.617223 0.344575 -0.864639 -0.036060 0.483969 -0.077601 0.616799 -0.325330 0.056043 -0.724280 0.261525 0.891409 0.010910 -0.876803 0.874329 0.055016 2.382786 -0.277690 0.859055 -0.328675 0.724567 -0.348234 -0.690522 -0.236157 1.350073 0.948549 0.088995 0.083996 0.075203 0.196868 0.621834 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = -4.447084 -1.052138 17.733093 10.425121 -8.179152 -14.948670 -7.104449 -22.127888 14.211357 3.270112 13.141083 4.955333 6.462359 -6.927469 1.299971 1.518616 2.760626 -6.647660 0.369080 -5.376998 1.664793 20.791014 8.631157 -11.249870 -0.046235 -20.963833 7.727029 6.187682 10.884836 12.192749 1.456260 -2.249389 -3.194500 8.768409 -5.080009 4.341700 1.657027 3.281084 -8.386471 -2.524873 3.861707 5.823319 9.863656 -0.961975 16.934622 -1.704125 11.057159 1.908425 -5.951523 -4.452074 -8.368678 16.578896 -11.053455 6.505888 -0.370916 3.856222 -1.093384 -8.848319 -5.259831 -13.729814 -0.906697 2.738302 -8.752179 0.215218 -9.138347 4.800544 -1.481330 -3.792506 1.645989 -1.535383 12.189764 4.153632 3.158259 -3.276746 -16.856649 2.083391 -2.748791 6.350645 8.256487 -0.475372 -5.080027 -1.475125 -4.201581 -8.294200 7.647735 6.445135 -1.116029 1.100004 -1.322051 -0.837897 -4.479279 -3.256053 -0.257773 7.406867 -12.358727 3.468082 0.802899 -1.281808 -3.396125 -3.617449 2.006097 -8.915621 4.328035 4.603544 2.016041 -0.717911 -1.237375 1.004904 -8.898489 -10.559993 3.549769 -1.194753 0.330422 14.048051 -7.320765 0.587740 -0.882947 -0.392397 -2.791187 11.853615 2.293651 6.815334 10.674308 14.737517 4.055955 -10.230902 -4.239008 7.889941 12.557093 9.800884 5.591235 -11.449948 -6.538148 1.243643 0.744703 -18.621180 -0.982993 9.306452 10.330131 3.186240 -10.353810 1.556457 -3.446326 15.424912 9.718951 2.316081 3.074940 1.112661 -11.868159 12.276546 25.468000 -2.673627 8.923163 -6.194721 -4.563614 15.365404 -14.292880 8.846389 2.365490 0.783041 0.053331 -7.756731 -1.627578 10.742617 4.162820 7.426618 1.682487 5.192952 -2.250724 -19.799752 -18.242559 -4.255644 12.195017 2.297678 19.652873 -9.784886 -7.680714 -2.854081 11.892501 -0.375226 -5.410916 3.944796 -10.320893 8.385990 -20.690704 -15.595057 24.235372 23.265711 7.271060 2.479724 14.243936 12.026717 -7.489941 -5.434466 -3.523417 6.050489 4.300081 -8.391268 -0.039246 -0.146586 -13.536432 -11.130395 0.838768 3.463755 2.028978 -0.190407 0.913363 4.074000 -9.713273 -6.966935 6.340450 -10.342835 -5.943803 -0.490229 1.865815 -0.247404 4.695518 -5.630558 1.624450 7.224664 -7.103685 2.499723 5.988009 6.810020 4.687559 11.133729 15.861869 -0.658764 14.964854 3.894018 -5.630967 21.727827 -4.625243 2.147125 2.935392 4.032597 2.079289 4.123398 2.551442 -6.636373 -3.008585 -12.203926 5.523030 2.659172 10.982496 -10.039051 -14.807080 -12.026163 -4.341546 7.653833 8.020823 -2.016632 23.171471 -6.699510 3.537445 -28.860836 0.411751 10.661365 0.955684 8.405331 5.986691 -6.739055 -18.038978 -4.862018 -5.086587 -2.083260 -5.928730 -11.962467 -6.547187 -10.687032 13.389120 -11.387706 3.616124 12.472951 -1.579661 10.508323 -5.929814 0.088207 -7.948231 -0.793879 1.322838 3.991180 -11.516535 12.826103 -3.255692 28.505265 -8.005351 9.339865 -7.795361 10.397712 -6.488102 -8.693513 -0.898577 16.943696 10.956814 1.471263 -0.241262 -1.474437 -5.322851 7.272540 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -1.461471 0.731151 10.409681 5.235548 -6.498843 -8.265175 -3.836834 -13.125394 6.705920 1.435820 7.670634 2.054572 2.735378 -3.285034 0.726799 1.109340 1.547355 -3.361459 0.059402 -3.800487 -2.431198 8.438617 4.381480 -5.119213 1.679568 -11.843413 6.107708 2.919461 5.387938 5.862012 1.233628 -1.154205 -2.704219 5.428501 -0.824385 1.975989 1.224327 1.405615 -4.297218 0.488035 2.956355 1.654239 5.639954 0.751327 8.746982 0.748402 4.750444 1.959854 -4.795101 -1.794348 -4.682695 8.732373 -6.403926 4.113204 -0.091123 2.143908 -0.170762 -5.742381 -2.453857 -6.297168 -1.349741 -1.049559 -3.882078 0.614877 -5.556513 2.573466 -2.056327 -2.804539 1.635783 0.711809 7.188547 2.510165 1.155734 0.369198 -7.756503 1.192582 -0.081921 4.249303 5.475798 -1.907283 -1.633931 -0.246935 -3.471765 -5.323556 4.760993 2.425546 0.726906 -0.707180 0.105986 -1.359872 -1.288501 -2.407849 0.284051 4.732116 -7.439041 1.366625 -1.361367 -1.436216 -3.533912 -5.130958 0.675057 -4.893090 3.251636 3.012267 -1.580294 -0.226457 -0.494068 1.455832 -3.952711 -5.939648 1.260189 -1.124329 1.386515 8.467175 -3.194650 -1.215287 -0.623748 -0.971313 -1.291759 6.061776 1.736594 3.237928 8.188852 9.257083 2.103699 -4.482051 -2.674957 2.762189 5.617610 5.953600 4.256801 -7.143221 -4.352338 1.325206 0.300724 -10.532374 -0.022745 3.168046 6.483534 1.642813 -5.767313 0.539516 -2.699156 7.425981 4.865716 1.987537 1.668353 -0.261280 -6.355278 7.656282 13.749463 -2.043920 4.822812 -3.783639 -2.249489 7.491549 -7.115223 3.502199 1.733791 -0.331717 0.031843 -4.438278 -2.088427 6.255968 2.399071 2.391846 2.282178 3.448749 -2.571462 -10.885445 -9.214990 -1.200128 7.096002 0.174122 10.592584 -6.338657 -3.237696 -2.360720 8.176407 0.188798 -2.895777 1.963692 -5.105584 4.230741 -9.159719 -8.622771 13.119015 12.699602 3.604204 0.780631 6.882879 7.144365 -5.948329 -3.981180 -2.971568 2.584103 2.495807 -5.431661 -2.438836 0.409267 -7.575815 -5.194192 0.915301 2.625591 3.603440 -0.912536 -0.380583 3.008392 -5.991116 -4.438095 3.959901 -6.007313 -3.349168 0.900466 0.454667 0.789401 3.034880 -2.445415 0.029481 2.820798 -4.261490 1.334373 3.801526 5.978009 2.074200 8.179149 7.985370 0.001549 6.688707 2.714315 -3.797634 11.342295 -2.402364 1.813618 2.000063 1.967305 0.432426 2.358510 3.052269 -3.951188 -2.834321 -7.553774 2.529669 0.261822 5.251385 -5.134098 -6.657420 -8.645071 -2.810031 4.375459 4.620768 -0.483899 12.842288 -2.166803 0.465160 -14.221140 -0.611804 5.683310 -0.092907 5.380478 3.454617 -4.182214 -8.995577 -3.179519 -4.001580 -0.853731 -3.188394 -4.175771 -4.313120 -4.311385 7.137061 -4.350601 2.471639 6.899254 -0.051376 5.302667 -2.832634 -0.208818 -4.559999 -0.138664 2.992099 1.741153 -6.632531 8.055063 -0.835101 16.481445 -3.265466 4.189179 -4.585725 2.192408 -1.603653 -3.323670 -1.039249 9.037646 6.016299 2.274174 0.276723 -0.150523 -2.940028 5.447896 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/tarjan-algorithm.cpp__main = 7.716225 4.082179 7.766895 -1.570657 -4.965001 -11.243398 -1.925288 -18.476095 6.947040 0.583235 3.194688 0.307372 2.903243 -0.484486 -0.229091 9.939316 4.914418 0.123769 1.136947 -5.492615 -1.066036 9.882912 -4.590992 4.204899 2.705856 -11.436925 -1.561351 4.214304 10.956162 1.319742 4.090501 -2.759764 -3.603080 1.706534 -0.328293 1.343936 3.032150 -1.920409 -15.180465 4.693655 -6.424825 0.891173 6.459765 -0.975813 6.351326 -2.102552 5.918182 6.113070 2.036700 -0.100885 -5.460817 13.367054 2.348735 3.738465 0.612243 -3.258562 -4.866048 -1.871827 -1.161181 11.641801 -5.130016 0.047822 -3.311762 1.551860 -4.904834 0.718137 -5.039523 -3.233469 -0.679638 0.488026 4.232642 0.130817 -1.207482 -0.387261 -15.845980 -0.793434 -0.040517 5.705752 3.147173 -0.175248 5.243458 -0.365660 -4.955640 -4.019773 4.656772 12.076696 -0.242618 -0.979130 -8.331711 -3.937957 -4.256578 -3.122302 5.114634 0.512403 -9.662921 -0.192270 -8.604445 -2.593433 -6.409517 -11.185026 2.393835 0.875907 4.007075 -11.763036 6.673790 1.212360 4.522878 0.535124 0.737601 -2.069674 0.864166 2.412828 1.314447 16.314636 0.612362 -3.448937 -5.922134 -1.790239 -10.052288 3.007866 3.109728 0.384249 5.278514 6.418909 4.217897 -3.152686 -6.050855 3.487367 1.309761 4.636937 5.122521 -3.697643 -3.082730 1.756636 -0.950120 -10.117985 -2.342319 1.720122 5.629014 -3.639225 7.678243 -7.719387 -3.141905 6.207876 0.424585 -4.517496 3.083821 -1.835709 -3.708003 5.358546 11.335797 -0.354723 3.692743 -8.675597 3.831730 -0.798835 -2.025759 2.658021 -0.308651 -2.086772 -4.304779 0.739137 0.119240 2.429647 0.216577 -1.940248 -0.590325 3.699387 -7.688423 -5.167079 -8.629494 -0.113044 2.788644 -3.458850 3.453231 -3.375121 -5.866823 -3.830493 4.546717 1.465642 -1.662740 7.890332 -10.637616 3.306250 0.549814 -3.742871 9.848399 15.131736 4.610493 -3.245759 4.854255 5.058490 -15.055861 -7.283364 0.198044 1.193436 0.846522 -18.992578 -5.825588 1.333171 -5.912950 -1.441206 -0.394652 4.133131 2.864088 10.408021 11.747075 -1.409503 -5.332564 -5.841678 8.271497 -0.314134 1.130738 3.550975 0.682336 -2.139064 5.826559 -5.963570 0.728924 6.396537 -3.233809 4.581231 2.260821 2.411016 -2.595881 5.134219 4.993620 4.121182 16.471442 -0.772504 -6.468519 4.584580 -0.299865 5.093624 -0.765802 -4.779791 -5.771303 1.906667 0.188647 -3.003687 -6.289743 -3.622362 -2.595567 -1.377819 4.435066 8.804066 -9.228387 -6.133900 -1.712991 -0.415198 4.035675 1.801513 5.635770 -6.085838 4.391822 -11.302805 2.401405 0.089383 1.388042 4.520500 0.801584 -4.276465 1.093675 1.378256 -8.384561 -12.239678 -0.944915 -7.837448 -4.662505 -6.276394 8.995985 -3.433751 -2.534452 5.649693 -1.440325 7.564279 -7.263546 -0.239697 -4.267436 1.618868 9.978261 -1.807706 -4.734026 0.147083 0.270916 16.557166 2.343813 2.763479 0.331179 -2.979847 1.547428 -8.827173 -2.826373 6.549159 4.138675 1.295243 -3.659136 -4.628366 1.363363 1.229487 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.328972 0.342206 0.703205 0.066581 -0.328951 -0.525252 -0.152768 -0.950434 0.471964 -0.013421 0.082831 -0.132153 0.084448 -0.305285 -0.156344 0.581247 0.181593 0.259536 0.010462 -0.212091 -0.138626 0.223030 -0.150391 -0.175013 0.397489 -0.714807 0.302677 -0.120790 0.455733 0.303073 0.178561 -0.192338 -0.128154 0.334635 0.543783 0.525109 0.484345 -0.012530 -0.536335 0.337314 -0.363277 -0.044724 0.049622 0.216818 0.517742 0.196943 0.034835 0.207678 -0.249588 0.220682 -0.166540 0.580453 -0.280540 0.328500 0.048163 0.201930 -0.266397 -0.366406 0.036759 0.074568 -0.305089 -0.223211 -0.316963 0.083183 -0.467660 0.001701 -0.132879 -0.117726 -0.264218 0.285416 0.206383 0.239097 -0.020417 0.306036 -0.525871 -0.155333 0.094338 0.373674 0.442740 -0.381953 0.238679 -0.234699 -0.287715 -0.400740 0.532681 0.198460 0.197672 0.021121 0.030773 -0.195089 -0.314270 -0.139446 0.269662 0.292814 -0.422419 -0.194538 -0.435224 -0.028954 -0.055163 -0.821573 0.029280 -0.182093 0.092110 -0.388984 0.091729 0.193811 0.285800 0.488787 0.098888 0.142588 0.238467 0.116948 -0.115973 0.568956 0.335770 -0.297073 -0.158536 -0.239464 -0.184660 0.297250 0.039978 0.063553 0.396192 0.427041 0.502635 -0.100306 -0.339013 0.118849 0.016603 0.333546 0.353915 -0.465221 -0.228839 0.098078 0.032017 -0.652476 -0.005196 -0.159331 0.211132 0.014186 -0.040156 -0.512157 -0.151050 0.172688 -0.148884 0.000422 0.005725 -0.091786 -0.218155 0.218966 0.665524 -0.221605 0.107159 -0.306335 0.425598 -0.289851 -0.111132 -0.037378 -0.400215 -0.256123 0.166527 -0.062438 -0.179296 0.335626 0.016252 -0.237825 -0.051584 0.174222 -0.654071 -0.444076 -0.270718 -0.111898 0.455649 -0.448605 0.235504 -0.266966 -0.316547 -0.473660 0.408678 -0.035627 0.230184 0.085025 -0.595120 0.277935 0.157768 -0.429236 0.753101 0.565818 0.351062 -0.181983 0.043545 0.326798 -0.860232 -0.327051 -0.073213 -0.221933 -0.018633 -0.817275 -0.683332 0.066602 -0.523874 -0.086337 0.122233 0.175892 0.157969 0.584490 0.291846 0.357155 -0.106154 -0.364772 0.213255 -0.102499 -0.020669 0.174591 0.080097 0.134833 0.379152 -0.353461 -0.071393 0.407063 -0.165935 0.087043 0.228502 0.349834 0.009412 0.491786 0.449747 0.338527 0.502652 0.196603 -0.451371 0.203371 0.225983 0.333465 0.135358 -0.361455 -0.160449 0.120862 0.315173 -0.231819 -0.308554 -0.407612 -0.410563 -0.063230 0.274473 0.500736 -0.392636 -0.089364 -0.167005 0.108863 0.141786 0.067290 0.341647 0.002547 0.270753 -0.522719 0.015254 0.508018 -0.129530 0.212084 0.187368 -0.318672 -0.558093 -0.091840 -0.334200 -0.751064 -0.319553 0.163467 -0.204242 -0.074093 0.490235 -0.001273 0.009089 0.371064 0.362842 0.407579 -0.392870 0.253780 -0.243805 0.029596 0.497643 -0.133702 -0.381079 -0.108227 0.356694 0.985303 0.053721 0.039264 -0.176072 -0.426938 0.136524 -0.186069 -0.223833 0.381352 0.319423 0.273836 0.036099 -0.104709 -0.206056 0.476040 -PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.274445 0.141797 0.765939 -0.056370 -0.210120 -0.844576 -0.260903 -1.690274 0.726505 0.351984 0.661959 -0.052296 0.573592 -0.343815 -0.134993 0.448570 0.190199 -0.260192 0.221683 -0.312337 -0.186260 1.077512 -0.321729 0.354316 0.053250 -1.148729 0.476839 0.190931 0.702624 0.503345 0.267280 -0.085616 -0.167775 0.262497 -0.067481 0.411595 0.237427 0.306821 -0.532764 0.080329 -0.160808 -0.085644 0.426197 0.006660 0.762518 0.037597 0.229107 0.212973 0.147262 -0.254078 -0.233550 0.515193 -0.306865 0.161751 -0.245458 -0.354521 -0.134115 -0.125090 -0.065035 0.250706 -0.155971 -0.172880 -0.446409 0.171362 -0.478891 0.210886 -0.293394 -0.296301 -0.198225 -0.180352 0.442947 0.211217 0.036014 0.113193 -1.274693 0.017162 0.107148 0.047299 0.425160 -0.064212 0.055091 -0.185000 -0.528558 -0.573126 0.840299 1.036504 0.095141 0.160514 -0.495059 -0.117852 -0.329825 -0.091505 0.536511 0.437481 -0.463605 -0.109868 -0.322465 -0.128882 -0.271056 -0.909652 0.304890 -0.320860 0.338016 -0.255155 0.188634 0.028144 0.286565 0.089972 -0.246166 -0.430513 0.109844 -0.318556 0.346622 1.078266 -0.109554 -0.250504 -0.552136 -0.256748 -0.186921 0.348587 0.309635 0.081302 0.738282 0.476485 0.393782 -0.603716 -0.602863 0.632464 0.287390 0.323267 0.096339 -0.722932 -0.248069 0.165851 -0.297886 -1.059825 -0.387205 0.046642 0.360732 -0.606707 0.132577 0.201129 -0.223664 0.333469 0.586676 -0.188987 0.172643 0.161631 -0.473931 0.411524 0.978626 -0.037130 0.303809 -0.626903 -0.084235 0.302194 -0.340738 0.223574 0.086208 -0.089397 -0.356172 -0.222536 0.250842 0.450252 -0.117956 0.344961 -0.169495 0.407816 -0.546810 -0.547614 -0.858548 -0.106099 0.822945 0.037812 0.747741 -0.577546 -0.313652 0.078763 0.699203 0.223784 -0.170389 0.476660 -0.677760 0.446440 -0.569232 -0.730239 0.944761 0.949790 0.680632 -0.127057 0.351444 0.489982 -0.809414 -0.334460 -0.144387 0.259576 0.170278 -1.365087 -0.394538 0.046640 -0.636892 -0.388225 -0.111885 0.278927 0.130631 0.468341 0.713488 -0.261944 -0.154364 -0.505108 0.690232 -0.176818 -0.079572 -0.078515 0.142366 -0.177186 0.371901 -0.467029 0.273836 0.440100 -0.196956 0.404770 0.426533 0.002237 -0.124617 0.761529 0.730199 -0.276119 0.594296 -0.179926 -0.139350 0.478997 -0.050364 0.229399 0.145069 0.050978 -0.044717 0.219682 0.339823 -0.377128 -0.390837 -0.598988 -0.273847 0.240261 0.338490 0.514031 -0.591016 -0.788547 -0.132687 -0.089623 0.784314 0.195204 0.915851 -0.330117 0.430190 -0.897213 0.158800 0.173575 -0.108138 0.460122 0.129946 -0.311493 -0.142916 -0.176918 -0.601842 -1.112764 -0.239502 -0.554676 -0.422454 -0.581262 0.500302 -0.406046 -0.104674 0.314723 0.132522 0.430707 -0.581718 0.117731 -0.620968 0.332808 0.500025 -0.156798 -0.484533 0.192087 0.040159 1.388207 -0.151187 0.413299 -0.125450 0.426584 -0.278598 -0.726532 -0.157469 0.763460 0.439591 0.111619 -0.199283 -0.198269 0.107531 0.369842 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = -0.947690 -0.387454 2.102517 0.912176 -1.283459 -2.918991 -1.006796 -3.695728 1.760344 0.564431 2.625941 0.312516 1.477500 -1.601091 0.609257 0.969748 1.198069 -1.184562 0.107654 -1.135578 0.082130 2.667412 0.746284 -0.593706 0.146865 -2.127959 0.290645 1.119684 0.920640 1.299106 0.640882 -0.284668 -0.686538 0.839069 -0.442679 1.583835 0.930254 0.514475 -1.399242 -0.436381 -0.185527 -0.152663 1.617815 -0.646893 2.848353 -0.435601 1.990706 0.589395 -1.488273 -1.173816 -1.103247 2.665361 -1.635706 0.603930 0.083200 -0.384307 0.243478 -0.921771 -0.852421 -1.928034 -0.472714 -0.425500 -1.373687 0.109285 -0.827624 0.975934 0.088348 -0.741736 0.183472 -0.259417 1.581997 0.594147 0.290670 0.918751 -2.145518 0.068498 0.289473 0.757405 1.069222 -0.187431 0.019105 -0.808566 -0.670007 -1.113091 1.979445 0.899339 0.682328 0.631681 -1.517809 0.906573 -0.550110 -0.519560 0.666513 0.398180 -1.679088 -0.407184 1.110032 -0.664698 -1.293698 -1.225677 0.626303 -0.853857 0.537952 0.609985 0.457399 -0.080553 -1.672018 0.243646 -2.397134 -1.592706 0.627530 -0.795963 -0.154999 1.997000 -1.802213 0.245568 -0.782687 -0.043734 -0.103143 1.361104 0.570292 1.181587 1.321909 2.173417 0.586405 -1.755134 -1.191709 0.662339 2.635566 1.292400 0.677568 -1.416817 -1.169906 0.604406 -1.343815 -2.788028 -1.222036 1.449138 1.964664 0.785983 -1.552992 0.519160 -0.472731 2.421773 1.442012 0.218476 0.003630 0.335941 -2.096417 1.655268 2.437545 -0.697315 2.067115 -0.249708 0.000429 1.298796 -1.687804 0.573464 1.176218 -0.663393 -0.673167 -0.614898 -0.548089 1.209048 1.557901 1.218715 -1.061380 1.322601 -0.939714 -2.786575 -3.118689 -0.395335 2.209106 0.183004 2.348438 -1.698596 -1.784285 -0.162641 1.892840 -0.777177 -1.656236 0.580779 -1.912402 1.363202 -2.461816 -2.287048 4.158732 3.373929 1.933140 0.789963 2.032103 1.759940 -2.415114 -0.193164 -0.141776 0.936751 0.476835 -3.093278 -0.578304 0.224412 -2.242349 -1.771140 -0.497853 0.933673 -0.839869 0.930620 1.528405 0.471251 -0.736777 0.058608 0.591480 -0.909346 -0.877237 -0.130286 0.158803 0.781520 0.720315 -1.287460 0.631920 0.822760 -1.894310 0.342369 0.721562 1.459102 1.409631 2.764607 2.781964 -0.403876 2.850652 -0.371984 -1.253659 1.450169 -0.436610 0.797134 0.034926 0.714226 0.743229 0.108923 1.351510 -0.991898 -0.783762 -1.751137 -0.386972 1.114620 1.884396 -0.309860 -2.448074 -2.535348 -0.186001 0.984374 1.717779 -0.850725 2.864719 -1.181479 0.554523 -4.102660 0.178105 0.786358 -0.120076 0.680123 0.540403 -0.889099 -2.717873 -0.599722 -1.662370 -1.975273 -0.535309 -1.076565 -0.722647 -2.042667 2.573733 -1.919822 -0.252689 1.026170 0.275666 1.885627 0.280762 0.051537 -1.107384 0.545697 0.825728 0.274679 -1.540488 1.970701 0.321858 5.054565 -0.393422 0.981615 -0.868119 1.527790 -0.490570 -1.324086 -0.221607 2.315103 2.663951 -0.104285 -0.054367 0.006390 -0.365934 1.418537 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = -2.244996 -0.527362 4.079927 0.360674 -2.939108 -3.666865 -1.842012 -6.799885 3.101250 1.490909 4.550678 0.668575 2.470938 -2.786527 0.731845 1.207344 2.341470 -2.692924 0.935088 -1.872374 0.654968 3.897675 1.039344 0.463657 0.363985 -4.049449 0.947924 0.069035 1.939739 2.416302 1.516746 -1.062958 -2.481245 1.228053 1.709779 3.554514 2.773395 0.944152 -2.260534 -0.235262 -0.856901 -1.788892 2.243502 -1.043912 5.325058 -1.712282 1.865674 0.886743 -3.031452 -2.113464 -1.123114 3.471170 -3.502343 0.935472 2.009804 -1.258123 -0.752415 -0.861220 -1.345762 -2.746942 -1.328790 -2.872424 -1.313159 0.876087 -1.230889 1.829793 -1.495695 -0.274448 -0.291694 -1.034058 2.312656 1.436713 1.921838 3.777626 -3.615406 0.291691 0.435051 1.148521 1.961759 0.004079 0.106697 -1.516521 -1.001154 -2.416567 2.665289 2.187629 0.490681 -0.121681 -2.959422 2.852633 -0.766727 -0.878213 0.996567 0.931523 -4.022695 -1.115288 0.396747 -1.212205 -1.220811 -4.205080 0.631060 -1.885495 0.914210 0.892317 -0.675588 -1.000494 -3.595369 0.580114 -3.672338 -2.224276 1.960574 -0.916075 -0.405128 3.549049 -3.192861 0.513009 -2.256127 -0.171913 0.824941 1.514792 0.914724 2.356822 1.504172 3.735187 2.185933 -2.864108 -2.241739 1.926533 4.186141 1.411470 0.927126 -2.110972 -1.662655 1.540153 -2.102041 -4.434308 -2.503813 1.936965 3.235772 1.953241 -1.302685 -1.728820 -1.131867 3.911327 2.477483 0.662893 -0.215373 0.864718 -3.400376 2.500629 3.173702 -1.134888 3.285847 0.310801 1.100009 1.634950 -3.268694 1.204909 1.059627 0.079348 -1.228679 -1.543743 -2.069120 2.034923 2.466540 2.339464 -3.010218 2.199673 -1.623413 -4.770660 -5.043870 -0.739282 4.988347 0.231738 1.646508 -2.944549 -2.531041 0.225610 3.707037 0.347265 -3.450296 1.240964 -2.779851 2.276409 -3.364183 -3.700732 6.666509 6.440444 2.712244 0.992490 2.087823 3.338029 -6.392678 -0.779248 -1.042737 1.546885 -1.183546 -6.303419 -2.167135 1.032531 -3.577895 -2.787638 -0.440799 1.555278 0.189273 1.849068 3.061215 3.311400 0.216993 0.128011 2.341257 -0.593622 -2.907908 -0.467906 0.525654 2.528931 1.523725 -2.083792 1.294337 2.107217 -3.207016 0.333481 1.850145 2.176570 1.603140 5.011920 3.918189 -0.199353 2.625086 -0.929964 -2.324507 1.618467 -0.732499 1.369984 0.013251 -0.380785 0.949244 0.257565 2.620605 -1.892253 -2.564869 -2.587645 -1.904852 0.403272 3.835031 -0.036069 -5.908696 -3.683482 0.884449 1.886790 1.855817 -0.693283 4.856186 -1.566339 0.961234 -5.918956 0.018480 2.244699 -0.313064 2.029645 0.530755 -1.134147 -3.423436 -1.353279 -3.167940 -2.840585 -0.753975 -0.675661 -0.739959 -3.393754 5.607949 -1.930343 -0.829669 0.228704 0.920778 4.438295 1.912254 -0.052940 -2.761984 1.623177 1.303900 0.264193 -2.419859 4.257699 1.239833 7.919343 -0.995701 -0.066415 -0.684904 1.767215 -0.745143 -2.053110 -0.175040 3.788399 4.907080 1.021573 -1.512999 -0.562503 -1.192606 2.000276 -PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = -3.369590 -1.274173 4.185012 -0.562288 -2.788799 -4.019181 -2.083795 -7.757913 3.505614 2.228466 5.905391 1.030279 3.513476 -3.067599 1.261299 1.440069 2.888695 -4.238464 1.771319 -2.020808 1.501894 5.362396 1.583223 2.198074 -0.264436 -4.420748 0.294192 -0.444196 2.429012 3.126196 1.821315 -1.377048 -2.819299 0.781634 1.988371 4.448989 3.062670 1.322197 -2.397517 -0.441663 -1.531336 -3.077987 2.561444 -1.569035 6.350641 -2.894676 2.301184 0.759916 -3.000666 -3.287761 -1.601103 3.825369 -4.486546 0.458860 2.449038 -2.576685 -1.003721 0.292425 -1.961079 -3.457603 -1.729797 -3.832567 -1.169141 1.281368 -0.930071 2.709816 -2.783701 0.229447 -0.799181 -1.577193 2.804024 2.085904 3.252488 5.400854 -4.830167 0.742921 0.128916 0.869929 1.856764 0.430499 -0.373833 -1.619232 -0.771570 -2.843633 3.232444 3.083131 0.095027 -0.370680 -4.402653 4.588005 -1.285875 -0.714036 0.978246 0.677833 -4.831933 -0.962621 1.196354 -1.334219 -0.954475 -5.175055 0.549150 -2.373186 0.746811 1.275071 0.013979 -1.971624 -5.863658 0.119084 -5.165962 -3.285758 2.781584 -0.978704 -1.411566 3.818114 -5.034197 1.683823 -2.811144 0.535529 1.434620 1.483170 1.394955 3.402201 0.644550 4.042406 2.351567 -3.430171 -2.342333 2.818119 5.801263 0.949540 0.565348 -1.695309 -1.930719 2.094834 -2.875662 -4.805016 -3.689534 3.631451 3.823689 2.522202 -1.024258 -2.109127 -1.155862 4.800199 3.955794 0.558980 -0.189654 1.269267 -4.106726 2.917288 3.225900 -1.365649 4.423715 0.982556 1.452276 2.717862 -4.691277 1.709607 1.569241 0.956934 -2.042014 -1.992440 -2.786462 2.103868 3.600136 3.724760 -4.342817 2.668814 -1.214614 -5.514485 -6.065551 -1.264101 6.354429 0.566395 0.840010 -3.131879 -2.783878 1.429540 4.008639 1.008394 -5.097582 1.590693 -2.868872 2.487896 -5.246714 -4.135042 7.915508 7.830997 3.397677 1.615476 2.014595 4.845886 -7.845911 -0.636485 -1.130399 2.523105 -2.431621 -8.437807 -2.695342 1.258230 -4.005670 -3.602939 -0.982521 1.742164 -0.195821 2.566628 4.300453 4.221794 0.838969 1.211137 3.075839 -0.535460 -4.422283 -1.080390 0.680377 3.271238 1.315023 -2.366835 2.631983 3.099134 -4.302447 0.194810 2.251244 1.971366 2.108374 6.069921 4.724505 -0.560356 2.202994 -1.874857 -2.546821 1.022992 -1.188959 1.227639 -0.572634 -0.511110 1.352451 0.124544 2.893927 -2.092170 -3.822455 -2.650710 -2.283483 0.703311 4.784323 0.825034 -8.093050 -4.222486 1.942941 2.470654 2.521862 -0.752015 5.699355 -2.333354 1.221893 -6.696715 0.315958 2.037233 -0.209384 2.522754 0.352418 -0.596374 -2.723274 -1.804749 -3.648366 -3.078197 -0.595273 -1.512191 -0.215495 -4.835287 6.873428 -2.893699 -1.449245 -1.248744 1.003629 6.088542 3.721569 -0.663708 -4.159746 3.128926 1.320458 0.477781 -2.382320 5.612024 1.209815 8.805209 -1.693980 -0.647542 -0.421999 2.920281 -1.341067 -2.289807 0.331709 4.502284 6.353927 0.850399 -2.308985 -0.952917 -0.845769 1.421031 -PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.057347 0.249563 1.425860 0.269769 -0.923738 -1.493670 -0.547833 -2.412413 1.170124 0.379827 0.953661 0.055115 0.695576 -0.768443 -0.171259 0.788615 0.573123 -0.289438 0.178744 -0.679021 -0.436882 1.401769 0.027292 -0.067328 0.410250 -1.703654 0.978304 0.002245 0.891298 1.048223 0.507949 -0.232132 -0.462574 0.682157 0.650980 1.145406 0.572706 0.358622 -0.811965 0.374533 -0.163599 -0.422360 0.736716 0.234494 1.468630 0.189457 0.430129 0.385910 -0.619179 -0.287718 -0.474896 0.905779 -1.014689 0.478501 -0.114608 -0.013864 -0.170751 -0.542846 -0.149370 -0.254819 -0.518059 -0.731503 -0.865283 0.288303 -0.969562 0.349458 -0.620303 -0.392976 -0.481256 -0.009700 0.732468 0.513201 0.068906 0.602557 -1.604499 -0.158289 0.162265 0.462597 0.946175 -0.322735 -0.079490 -0.507510 -0.859206 -1.014568 1.217791 0.758699 0.286918 0.165093 -0.460469 -0.059397 -0.570408 -0.134548 0.678900 0.699148 -1.016751 -0.328713 -0.333839 -0.272616 -0.412475 -1.652657 0.334337 -0.560745 0.403705 -0.251909 -0.111833 -0.046480 -0.103361 0.375240 -0.558422 -0.459046 0.384709 -0.362235 0.078979 1.428044 -0.098795 -0.372864 -0.742314 -0.427756 0.055954 0.753371 0.387875 0.277013 1.151065 1.089768 0.817915 -0.810477 -0.838485 0.562814 0.620845 0.564393 0.534071 -0.963032 -0.658235 0.351925 -0.340306 -1.644040 -0.474019 0.195686 0.725598 -0.114386 -0.191598 -0.267247 -0.443795 0.682009 0.638896 0.090883 0.136551 0.050236 -0.917966 0.767111 1.645549 -0.306440 0.628124 -0.691427 0.181222 0.647119 -0.756651 0.209641 -0.139467 -0.359527 -0.387228 -0.319847 -0.105862 0.823436 0.061257 0.203104 -0.211370 0.619216 -0.868869 -1.189358 -1.316024 -0.161332 1.614123 0.013739 1.050422 -1.062913 -0.374403 -0.270730 1.017879 0.307861 -0.313624 0.416844 -1.052624 0.745211 -1.061320 -1.287490 2.049906 1.563379 0.994040 -0.011713 0.399247 0.960054 -1.567113 -0.582895 -0.403800 0.244795 0.014444 -1.799591 -0.863523 0.236489 -1.286087 -0.648452 -0.008597 0.543215 0.427555 0.498635 0.773047 0.225621 -0.179654 -0.778983 0.768006 -0.374413 -0.463739 0.095111 0.124440 0.224757 0.589731 -0.455382 0.278907 0.536250 -0.499082 0.306524 0.641519 0.592134 0.131504 1.401828 1.453185 -0.159709 0.728955 -0.004555 -0.589147 0.859136 -0.014000 0.618800 0.283979 -0.018442 0.132998 0.226743 0.913249 -0.602547 -0.620986 -0.954436 -0.504904 0.304693 0.827841 0.274694 -1.155001 -1.211880 -0.100063 0.228781 1.022351 0.008913 1.468467 -0.338192 0.570895 -1.642030 0.137963 0.864207 -0.142346 0.717429 0.351680 -0.633447 -0.731961 -0.442442 -0.988004 -1.147229 -0.475586 -0.089674 -0.600386 -0.474278 1.000363 -0.532665 -0.093850 0.606169 0.246423 1.005925 -0.421889 0.300668 -0.885444 0.271964 0.856941 -0.096134 -0.803695 0.657244 0.413448 2.353286 -0.069932 0.389670 -0.242883 0.244781 -0.184049 -0.915100 -0.362413 1.243733 0.994513 0.294796 -0.007234 -0.199444 -0.008890 0.880327 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/tarjan-algorithm.cpp___GLOBAL__sub_I_tarjan_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/topological-sorting.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = -0.190463 0.133728 1.257446 0.344584 -0.623937 -1.634691 -0.524524 -2.098261 0.871996 0.435050 1.271753 0.118420 0.802396 -0.328718 0.149199 0.433836 0.307195 -0.516292 0.228120 -0.546992 -0.508622 1.492837 0.304550 -0.067300 0.095507 -1.339811 0.941518 0.522484 0.604105 1.029258 0.271443 -0.105256 -0.255992 0.649502 -0.206666 0.636000 0.077557 0.559018 -0.337703 0.175353 0.190510 -0.149499 0.851270 0.131024 1.244945 0.455452 0.705696 0.300718 -0.373422 -0.545387 -0.572718 0.839811 -1.012278 0.362504 -0.529398 -0.106095 0.148115 -0.413232 -0.231360 -0.717346 -0.144551 -0.287690 -0.956082 0.160444 -0.839813 0.363495 -0.454319 -0.572355 -0.198703 -0.073011 0.900504 0.270012 -0.117155 0.180575 -1.558279 -0.030828 0.060001 0.267160 0.758260 -0.330474 -0.460785 -0.178102 -0.779005 -0.926536 1.082913 0.677311 0.318355 0.215147 -0.524810 0.010139 -0.455651 -0.017515 0.470753 0.781011 -0.597657 0.117777 0.165294 -0.229401 -0.681284 -0.994430 0.436172 -0.638574 0.478023 0.172227 0.137989 -0.306369 -0.438318 0.085498 -0.840168 -1.030934 0.158467 -0.608223 0.190752 1.059625 -0.496824 -0.037994 -0.367325 -0.326129 0.191690 0.861477 0.598592 0.189151 1.098097 1.016099 0.326319 -0.922591 -0.718886 0.443326 0.840848 0.667107 0.327549 -0.964183 -0.641511 0.257628 -0.570045 -1.577515 -0.297449 0.635620 0.699155 -0.326661 -0.551899 0.645831 -0.479060 0.655105 1.093256 0.351615 0.235093 0.114575 -0.931481 0.774849 1.729152 -0.283532 0.812933 -0.504165 -0.379479 1.222461 -0.900372 0.391682 0.498315 -0.217113 -0.474615 -0.386455 -0.012422 0.861794 0.376970 0.693497 0.220427 0.542466 -0.502100 -1.117232 -1.406991 -0.156200 1.558408 0.280655 1.422191 -1.056361 -0.315646 0.136512 1.031399 0.076870 -0.586175 0.298864 -0.622598 0.696449 -1.704612 -1.200865 1.752822 1.342880 0.947999 0.098941 0.698793 0.985333 -0.753018 -0.445793 -0.403325 0.605818 0.062939 -1.181880 -0.305798 0.021816 -1.203169 -0.570215 -0.229293 0.480847 0.103380 0.096337 0.370351 -0.187058 -0.499520 -0.569442 0.403600 -0.632888 -0.429982 -0.056897 0.018349 -0.079945 0.201223 -0.363062 0.353095 0.437553 -0.693521 0.342265 0.628575 0.359932 0.339388 1.568077 1.274309 -0.520699 0.657187 -0.064412 -0.246828 1.189198 -0.225265 0.390486 0.265978 0.741112 0.276497 0.281020 0.776366 -0.523552 -0.570331 -1.054044 -0.019327 0.657362 0.741133 -0.002710 -0.856839 -1.525029 -0.153963 0.329575 1.499823 -0.195592 1.678486 -0.262881 0.625189 -1.692185 0.198749 0.355525 -0.206954 0.561228 0.350480 -0.536606 -0.666724 -0.448492 -0.757877 -0.894658 -0.285486 -0.521750 -0.592057 -0.617223 0.344575 -0.864639 -0.036060 0.483969 -0.077601 0.616799 -0.325330 0.056043 -0.724280 0.261525 0.891409 0.010910 -0.876803 0.874329 0.055016 2.382786 -0.277690 0.859055 -0.328675 0.724567 -0.348234 -0.690522 -0.236157 1.350073 0.948549 0.088995 0.083996 0.075203 0.196868 0.621834 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -1.092636 0.390322 5.964799 2.364994 -3.179817 -5.697939 -2.506788 -9.590077 4.801251 1.536180 5.094498 1.014169 2.734987 -2.382429 0.383993 1.267020 1.568898 -2.492249 0.604361 -2.254396 -0.400167 6.741392 1.364577 -1.579518 0.177402 -6.924321 2.670125 1.938458 3.621036 3.210100 1.355580 -0.847613 -1.832234 2.793340 -0.852140 2.274104 1.488092 1.416315 -3.115240 -0.550013 0.470450 0.847381 3.608020 -0.258571 6.041824 -0.466599 3.370237 1.260539 -1.948326 -1.738074 -2.293677 5.598940 -3.517091 1.951224 0.599691 -0.143881 -0.200067 -2.725098 -1.288420 -2.519070 -0.972881 -0.628699 -2.980579 0.563765 -2.926156 1.641477 -1.037879 -1.364561 0.192644 -0.654016 3.976431 1.071708 0.772822 0.457711 -6.233434 0.494852 -0.237108 1.667302 3.122077 -0.115303 -0.755122 -0.808406 -2.232570 -3.513157 3.622517 3.501923 0.214817 0.386879 -2.013871 0.249539 -1.487939 -1.534169 1.146000 2.700165 -4.355592 0.287535 -0.073652 -1.137940 -2.386051 -3.423101 1.274163 -2.758350 1.942398 0.608535 0.317688 -0.775453 -0.934555 0.085916 -3.145767 -3.560825 1.305186 -1.253854 1.139843 5.602775 -2.560108 -0.214199 -1.627530 -0.938946 -0.778015 3.463917 1.727746 1.783575 4.090957 5.043592 1.844394 -3.686421 -2.652384 2.675785 3.940048 3.067640 1.647585 -4.486237 -2.225392 1.207509 -0.836706 -6.646630 -1.320797 2.594915 3.640783 0.365700 -2.255393 0.192353 -1.325432 4.469086 3.326398 0.640753 0.772694 0.547744 -3.875332 3.840776 7.413733 -0.833478 3.257561 -2.040472 -0.808115 3.987233 -4.515995 2.464184 1.482536 -0.099501 -1.289078 -2.120885 -0.553780 3.464213 1.388182 2.343587 -0.320501 2.315299 -2.025124 -6.108168 -6.714571 -0.586747 5.171130 0.496977 5.655240 -3.888556 -2.792704 -0.255928 4.802025 0.162641 -2.506952 2.096501 -3.839131 3.106292 -5.220765 -5.080039 8.019745 7.801629 3.006627 0.142614 4.158888 3.902962 -4.841353 -2.298334 -1.552647 2.195768 0.764025 -5.282806 -0.936672 0.277349 -4.778473 -3.256771 -0.313011 1.756849 1.076890 0.943658 2.127412 0.951440 -2.370417 -2.341780 2.840280 -2.112338 -2.005330 -0.222105 0.619598 0.208508 2.093545 -2.203361 0.684039 2.405016 -2.809910 1.182360 2.510317 2.105490 1.082377 5.562195 5.013812 -0.608254 5.202110 0.332580 -1.867486 5.681699 -1.195149 1.380088 0.848025 1.174329 0.517195 1.337913 2.012942 -2.493091 -2.324198 -4.146110 0.287350 0.822856 3.825011 -1.630170 -5.306520 -5.363458 -1.148763 1.957159 3.400357 -0.513593 7.444374 -2.097494 1.614191 -8.879337 0.378475 2.890190 -0.299160 2.828471 1.483193 -2.462985 -4.338180 -1.613310 -3.132914 -3.397525 -1.459214 -3.225346 -2.359006 -4.016395 4.920296 -3.416078 0.280051 3.280053 -0.033910 3.399730 -1.712564 0.182174 -3.030284 0.460489 2.136410 0.195786 -4.013432 4.339329 -0.330464 10.553122 -2.040800 2.763405 -1.904419 2.911497 -1.674751 -3.446374 -0.575440 5.705380 4.188095 0.657672 -0.893943 -0.413297 -1.262980 2.711560 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -1.172255 1.308114 8.481707 4.788550 -5.731954 -7.135165 -3.801734 -10.550876 4.649510 0.706827 5.483053 -0.037510 0.673043 -2.645216 0.313892 0.762961 1.173708 -2.224720 -0.002105 -3.011755 -2.351812 5.632737 2.038858 -4.668882 1.362320 -9.250614 5.425524 3.071249 3.432436 4.162093 1.760278 -1.509197 -2.486656 4.869065 -0.350326 3.558591 2.264895 0.967448 -3.632559 1.229295 1.773563 3.408867 4.820736 -0.197056 7.287927 2.652685 3.612857 2.301061 -5.660226 -0.461330 -3.272661 7.525240 -4.803658 3.457003 0.862285 1.992474 0.142498 -6.131886 -2.134727 -3.658478 -2.087172 -0.100928 -3.516967 0.436135 -5.048142 1.170225 -0.675756 -2.140132 2.534986 1.182333 5.400296 1.625210 0.086683 0.609863 -4.591718 1.366629 0.636746 4.176034 4.424599 -3.166863 0.588377 0.494961 -2.363594 -3.938184 2.831628 1.508966 1.979144 -0.525867 0.683371 -1.795407 -1.107643 -2.513691 0.773909 3.537424 -3.892761 0.204444 -2.640490 -1.434467 -3.993321 -3.989092 0.692568 -3.236614 3.229244 2.480425 -1.589056 -0.244792 0.588695 1.490042 -2.613459 -3.412244 1.046687 -1.423762 3.001649 7.134012 -1.723353 -1.750028 -1.123879 -2.122778 -1.352897 4.819936 1.490583 1.520531 5.848853 7.786916 3.815854 -3.866982 -3.476718 0.640200 3.695078 5.481859 3.835989 -5.888741 -3.169902 -0.031735 0.163506 -8.105551 0.306665 0.306004 4.638635 1.759747 -4.279852 0.106250 -2.575168 6.463885 1.579249 1.859982 1.286068 -0.269584 -5.005453 6.259770 10.021539 -1.151357 3.369066 -3.343525 -1.771433 3.602935 -3.936623 2.631071 2.315578 -1.578253 0.606005 -3.120745 -1.226390 4.581408 2.057897 1.268669 2.041134 2.852281 -2.517945 -8.157464 -6.881533 1.168478 5.153590 -1.177322 8.549187 -5.282755 -3.651584 -2.490784 7.128800 -0.434597 -1.566742 1.216263 -4.196101 3.624099 -5.241411 -6.655243 10.261451 10.220382 2.696517 -0.420536 5.683738 5.044344 -5.861591 -2.902840 -2.726085 1.561306 1.781503 -4.202838 -1.492241 0.647280 -5.240647 -3.668151 0.859881 2.388485 2.947068 -0.680205 -1.766346 1.887628 -5.025723 -3.864197 2.745053 -4.501561 -1.470578 1.501449 0.159389 0.711849 3.253815 -2.892777 -1.038962 2.012272 -3.266982 1.500339 2.893678 5.650301 1.383623 6.049646 5.690061 0.722183 7.829754 3.101767 -3.116798 9.373126 -0.863918 2.220347 2.157210 1.296110 0.610475 1.581930 2.435881 -3.344211 -2.087729 -6.074661 1.634219 0.364534 4.217098 -4.569964 -4.782091 -7.568071 -2.483061 3.360453 2.863445 -0.342937 9.626727 -0.536638 0.366128 -10.792405 -0.945920 5.086587 0.019342 3.841566 2.486946 -4.098676 -8.562923 -2.002533 -4.141813 -1.797934 -2.510503 -2.519513 -3.752480 -3.243046 6.151060 -1.454763 1.866527 7.183050 0.079786 2.491928 -2.524535 0.239429 -2.237052 -2.623399 2.828573 0.887330 -6.022290 6.104435 -0.080033 14.291315 -1.892324 3.261711 -3.755478 0.870637 0.069919 -2.765360 -1.093112 7.068152 4.032448 2.096662 0.381302 0.475114 -3.129970 5.073867 -PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/topological-sorting.cpp__main = 1.331016 0.833301 1.525927 -0.278494 -0.909813 -2.213426 -0.408097 -3.502285 1.196963 0.184666 0.795325 -0.085485 0.689077 -0.040656 -0.041685 1.684542 0.894744 0.032717 0.289997 -1.017959 -0.448750 1.774892 -0.877539 0.813007 0.515545 -2.053495 0.058821 0.795194 1.823484 0.434160 0.739864 -0.431995 -0.671428 0.381124 -0.088349 0.290410 0.567777 -0.140120 -2.511171 0.900589 -1.061529 0.053742 1.197643 -0.087442 1.157393 -0.004236 0.908635 1.118417 0.301515 -0.119373 -0.886263 2.145913 0.251962 0.673856 -0.093834 -0.668129 -0.704236 -0.325153 -0.150641 1.892944 -0.818977 -0.150620 -0.714144 0.322883 -1.025193 0.162013 -0.967488 -0.755521 -0.161140 0.068912 0.812251 0.026791 -0.296387 0.029995 -2.889615 -0.155678 0.108478 0.947077 0.671215 -0.185353 0.861090 -0.079012 -1.089667 -0.894567 1.028213 2.172971 0.155893 -0.079598 -1.502400 -0.722166 -0.704155 -0.482763 1.068674 0.288033 -1.486454 -0.028064 -1.525535 -0.477239 -1.238145 -2.272332 0.525948 0.051172 0.803620 -1.919337 1.040603 0.153551 0.757908 0.206088 0.058344 -0.565400 0.170410 0.172314 0.339474 2.927063 0.112996 -0.695314 -1.123309 -0.478336 -1.545862 0.646662 0.674556 0.003009 1.087729 1.200021 0.743983 -0.707363 -1.236536 0.622207 0.226890 0.865568 0.915139 -0.880723 -0.646205 0.357086 -0.450307 -1.979705 -0.474982 0.219628 1.036081 -0.901248 1.196457 -0.966217 -0.715939 0.942261 0.278123 -0.605630 0.546703 -0.304496 -0.756461 0.962247 2.046029 -0.144976 0.739406 -1.533843 0.508760 -0.055007 -0.272169 0.407468 0.045429 -0.464548 -0.826605 0.102115 0.097333 0.577685 0.090032 -0.179911 0.000359 0.715486 -1.527280 -0.945815 -1.607698 0.044518 0.864908 -0.567401 0.809089 -0.806694 -0.991839 -0.554036 1.050162 0.248739 -0.348337 1.340931 -1.796049 0.666741 -0.146410 -0.842947 1.803038 2.564053 0.984933 -0.624588 0.774496 0.941058 -2.618385 -1.313545 -0.095909 0.294338 0.078654 -3.431733 -1.152287 0.219691 -1.182222 -0.202341 -0.104146 0.832125 0.560503 1.738155 1.995290 -0.413824 -0.936875 -1.155958 1.456122 -0.125904 0.213149 0.616117 0.073213 -0.394643 0.976122 -1.064326 0.153099 1.117845 -0.631130 0.860604 0.509452 0.421306 -0.449990 1.298778 0.961492 0.509997 2.646467 -0.179042 -1.106698 0.972891 -0.057033 0.974780 -0.071195 -0.551167 -0.933330 0.363725 0.316616 -0.583561 -1.248885 -0.864711 -0.616696 -0.045770 0.792486 1.593204 -1.556280 -1.404929 -0.273409 -0.150618 1.154175 0.306903 1.199276 -0.949934 0.896919 -1.927586 0.454828 -0.006592 0.073130 0.835468 0.177126 -0.821215 0.137435 0.170711 -1.651484 -2.384149 -0.213961 -1.326788 -0.912857 -1.018716 1.323707 -0.571595 -0.480142 0.982893 -0.200410 1.236022 -1.275985 -0.033346 -0.825583 0.327168 1.966859 -0.418613 -0.968419 0.110595 0.167114 3.179446 0.468685 0.631067 0.035623 -0.485149 0.255313 -1.567119 -0.577997 1.315805 0.825270 0.287071 -0.553729 -0.678075 0.372008 0.330169 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/topological-sorting.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 0.327303 0.665291 2.620940 0.019245 -1.825021 -2.310971 -0.874841 -4.574674 2.012079 0.862025 1.618233 0.324106 1.225924 -1.217365 -0.460149 1.108209 0.895318 -0.704643 0.386916 -1.252237 -1.073506 2.143825 -0.421696 0.420916 0.699467 -3.110421 1.949758 0.015893 1.841919 1.543526 1.008499 -0.294810 -1.215917 1.244566 1.168770 1.475376 1.004240 0.717545 -1.513671 0.715670 -0.143570 -0.852861 1.404746 0.500915 2.500211 0.156528 0.255127 0.840832 -0.722702 -0.532749 -0.484970 1.236042 -1.474623 0.781959 0.063594 -0.387347 -0.601804 -0.862247 -0.064423 0.402941 -0.821824 -1.547832 -1.104546 0.586573 -1.606138 0.432836 -1.356743 -0.818107 -0.722670 -0.421563 1.171114 0.718576 0.216247 1.003459 -3.034315 -0.190534 0.518705 0.607047 1.745072 -0.162620 -0.064457 -0.723464 -1.542922 -1.879572 1.829037 2.010752 0.314000 0.114690 -1.025454 -0.262170 -0.682267 -0.348260 1.345354 1.399793 -2.102071 -0.585976 -1.312594 -0.660110 -0.913273 -3.365967 0.738080 -0.914960 1.062787 -0.724447 -0.638687 -0.211538 0.158468 0.343374 -0.579510 -0.762530 0.424876 -0.900592 0.882899 2.971905 -0.107789 -0.868523 -1.630345 -0.966048 0.024427 1.015778 0.723053 0.172333 2.306881 1.861980 1.425587 -1.522314 -1.525928 1.202835 0.594048 0.902748 0.817368 -1.953570 -0.893858 0.749103 -0.543988 -2.970273 -0.735800 -0.191569 1.104149 -0.759212 0.295981 -0.689827 -0.929455 0.852266 1.273906 -0.029395 0.400885 0.169631 -1.405765 1.275692 2.699296 -0.207782 0.912589 -1.396202 0.087311 1.044262 -1.301548 0.572191 -0.174614 -0.468449 -0.909788 -0.578525 -0.041232 1.410659 -0.375473 0.305080 -0.350440 1.027654 -1.541066 -1.859602 -2.289563 -0.100208 2.904525 0.231334 1.668692 -1.971783 -0.381146 -0.200125 2.109010 1.069209 -0.557173 1.179955 -1.559643 1.362120 -1.245343 -2.088997 2.950229 2.927821 1.406149 -0.369497 0.567413 1.317518 -3.067093 -1.367769 -0.823274 0.314699 -0.022916 -3.294511 -1.560323 0.502576 -2.044611 -0.829829 0.076400 0.963850 1.544576 0.741641 1.531013 0.423106 -0.205144 -1.841227 1.918451 -0.330860 -0.800782 0.193505 0.329843 0.232626 1.144147 -0.705438 0.236889 0.807797 -0.586441 0.809747 1.250629 0.798689 -0.403366 2.435572 1.913400 -0.473986 0.862797 -0.138476 -0.684185 1.498279 -0.197078 1.098794 0.687261 -0.094209 -0.075897 0.574525 1.459682 -1.148370 -1.157822 -1.589817 -1.024724 0.072007 1.297415 0.513273 -2.028677 -2.291796 -0.049082 0.113403 1.524473 0.276920 2.645784 -0.448960 0.947752 -2.479364 0.169640 1.253207 -0.236497 1.679196 0.588434 -1.199709 -0.465633 -0.795236 -1.930393 -2.014791 -0.555861 -0.131223 -1.145880 -0.712698 1.739365 -0.514053 -0.222647 0.980227 0.143604 1.634025 -1.050769 0.485286 -1.650130 0.539912 1.744363 -0.385006 -1.304463 1.318505 0.536519 3.816816 -0.090636 0.637985 -0.082249 0.279031 -0.153803 -1.706651 -0.710346 2.206447 1.334915 0.848538 -0.541422 -0.505407 0.044752 1.415582 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/topological-sorting.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = -1.889451 -0.708601 3.351423 0.104309 -1.779273 -3.553520 -1.584255 -5.802523 2.616758 1.232638 4.215795 0.462397 2.255880 -2.161382 1.059964 1.499538 1.895535 -2.682079 0.816058 -1.569813 0.976684 3.842763 1.134824 0.554279 0.064803 -3.625417 -0.174482 0.716076 1.682327 1.894536 1.081236 -0.854152 -1.537714 0.925044 0.376841 2.873555 2.308305 0.651988 -2.130976 -0.320594 -1.040417 -0.753670 1.999406 -1.242695 4.653135 -1.417197 2.308679 0.825422 -2.155378 -2.032992 -1.317454 3.924140 -2.710515 0.618446 1.312601 -1.128940 -0.537525 -0.880365 -1.532672 -2.572819 -1.098986 -1.410086 -1.270919 0.607449 -0.769836 1.748559 -0.704875 -0.267773 0.046563 -0.677985 2.281632 1.206843 1.501511 2.926414 -3.231644 0.486456 0.263742 1.034584 1.327335 -0.348263 0.034730 -0.960416 -0.534561 -1.855599 2.555599 2.177166 0.547181 0.113624 -2.774284 2.555573 -0.979615 -0.903211 0.681139 0.558047 -3.220121 -0.778911 1.255522 -1.073606 -1.501912 -2.667574 0.550229 -1.512016 0.700029 0.824103 0.640595 -0.775858 -3.483224 0.384342 -3.704338 -2.247624 1.608489 -0.675038 -0.600056 3.017836 -3.334272 0.979906 -1.630019 0.174951 0.167334 1.587591 0.797015 2.199138 1.169532 3.280452 1.302085 -2.452284 -1.831432 1.467908 4.306626 1.409434 0.844180 -1.922122 -1.517382 1.162299 -2.034275 -3.848343 -2.279329 2.284000 2.940376 1.602068 -1.520977 -0.691202 -0.715626 3.933004 2.380813 0.193853 -0.162530 0.645665 -3.098113 2.429601 3.143189 -1.109792 3.311150 0.103645 0.815732 1.527547 -3.117802 1.215331 1.615899 -0.044391 -1.181013 -1.257706 -1.619165 1.627944 2.811169 2.403723 -2.598096 1.967547 -1.071890 -4.144671 -4.681927 -0.889009 3.582634 -0.188851 1.954616 -2.265323 -2.829315 0.081807 3.163798 -0.349268 -3.139551 1.057036 -2.677415 1.866008 -3.181739 -3.119362 6.080277 6.030599 2.760562 1.181763 2.590320 3.168082 -5.133899 -0.320103 -0.271542 1.625510 -0.653728 -5.772294 -1.547439 0.618658 -3.058372 -2.703118 -0.951726 1.351450 -0.896539 2.206752 2.843174 2.441477 -0.463571 0.740778 1.488049 -0.827848 -2.351588 -0.442169 0.452371 1.826267 1.150618 -2.252829 1.389614 2.162258 -3.275892 0.399783 1.551508 1.924080 1.942964 4.207678 3.601794 -0.084926 3.591561 -0.965984 -1.958126 1.102698 -0.615891 1.036354 -0.254526 -0.074060 0.804241 0.137514 1.779995 -1.487425 -2.152359 -2.249060 -0.978906 0.810884 3.239573 0.552432 -5.207968 -3.184455 0.470812 1.896794 1.970310 -0.832802 4.212967 -1.621941 0.900748 -5.797188 0.205020 1.221025 -0.107050 1.257627 0.522646 -0.879533 -3.493911 -0.947592 -2.643740 -3.141543 -0.612958 -1.603151 -0.575221 -3.720088 5.073150 -2.457564 -0.764190 0.402826 0.909300 3.769223 1.758392 -0.303129 -2.402609 1.553346 1.242508 0.301278 -2.068438 3.377230 0.682062 7.302498 -1.122896 0.472945 -0.835076 1.991573 -0.624156 -1.660885 0.061019 3.386880 4.415931 0.281664 -1.150506 -0.575124 -0.850238 1.566952 -PE-benchmarks/topological-sorting.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.073968 0.215438 1.404606 0.254114 -1.000604 -1.559039 -0.614915 -2.371606 1.103620 0.344530 0.926769 -0.011355 0.569347 -0.824896 -0.129465 0.827503 0.521758 -0.370214 0.156543 -0.666084 -0.474485 1.341939 0.040221 -0.070770 0.430960 -1.715168 1.114760 -0.064212 0.776858 1.158663 0.603060 -0.296326 -0.481260 0.726393 0.856408 1.592905 0.619557 0.344379 -0.692922 0.477304 -0.152371 -0.413134 0.740064 0.212337 1.613230 0.401521 0.451697 0.435751 -0.813714 -0.242026 -0.576878 0.951744 -1.175537 0.486399 -0.107259 0.070103 -0.153860 -0.661202 -0.244624 -0.292982 -0.708472 -0.781971 -0.962493 0.293642 -1.091105 0.336119 -0.630401 -0.265699 -0.470267 0.049955 0.778038 0.550343 0.045699 0.759027 -1.464590 -0.170890 0.164104 0.531308 0.981350 -0.549078 -0.064008 -0.480512 -0.801492 -1.010282 1.204858 0.591256 0.378076 0.117357 -0.337881 -0.042193 -0.706429 -0.157694 0.668296 0.695494 -0.923292 -0.387812 -0.349057 -0.249531 -0.448759 -1.662591 0.360095 -0.544106 0.422798 -0.139345 -0.065641 -0.181899 -0.094454 0.389521 -0.605608 -0.380295 0.408913 -0.357985 0.114945 1.331650 -0.067040 -0.321972 -0.748272 -0.532809 0.156130 0.784843 0.425403 0.263348 1.108090 1.195220 1.140591 -0.786084 -0.911650 0.455456 0.665308 0.612314 0.528374 -0.971720 -0.644406 0.347997 -0.326798 -1.589039 -0.466212 0.169634 0.735050 0.061972 -0.271619 -0.284645 -0.419939 0.729799 0.505839 0.120267 0.128633 0.064313 -0.951742 0.858518 1.721894 -0.272588 0.604760 -0.719314 0.228767 0.657706 -0.765380 0.148941 -0.007189 -0.417199 -0.380756 -0.312274 -0.129661 0.786428 0.177889 0.196756 -0.188860 0.660505 -0.886863 -1.220219 -1.198648 -0.109094 1.676629 -0.081296 1.063611 -1.099724 -0.306521 -0.309593 1.071129 0.312606 -0.305796 0.316403 -1.050698 0.769966 -1.049339 -1.245186 2.162385 1.594100 1.050220 0.018650 0.381889 1.135262 -1.670471 -0.480564 -0.494821 0.231062 -0.048829 -1.752422 -0.839881 0.218034 -1.325861 -0.691409 -0.038559 0.572715 0.464388 0.531703 0.550333 0.283057 -0.181338 -0.766724 0.679970 -0.434141 -0.518372 0.126712 0.094172 0.272608 0.569468 -0.461443 0.324264 0.552867 -0.521256 0.345044 0.683858 0.680289 0.148343 1.369028 1.463024 -0.149939 0.748189 0.066573 -0.584606 0.820687 0.153780 0.662050 0.326696 -0.038058 0.297021 0.183634 0.922283 -0.628456 -0.632900 -0.972180 -0.486192 0.375134 0.888523 0.255568 -1.173770 -1.315239 -0.090472 0.316877 1.039044 0.016749 1.455298 -0.207455 0.566721 -1.662406 0.112531 0.967364 -0.108484 0.616785 0.323046 -0.631809 -0.789846 -0.435176 -1.001108 -1.180370 -0.519780 0.082589 -0.603903 -0.497057 1.055899 -0.389817 -0.134017 0.682751 0.271990 0.938509 -0.326764 0.318355 -0.892430 0.123320 0.846264 -0.073007 -0.829398 0.708658 0.506583 2.421510 -0.100207 0.363776 -0.254162 0.275521 -0.121177 -0.871129 -0.315901 1.248394 0.980374 0.286392 0.131972 -0.148064 -0.029743 0.926284 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/topological-sorting.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/topological-sorting.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = 0.192737 0.202784 0.279738 -0.031681 0.047784 -0.209471 -0.026216 -0.358388 0.103034 -0.022495 0.077260 -0.125920 0.105121 0.027922 -0.022431 0.105837 0.018276 0.121438 0.103078 -0.004490 0.005201 0.154977 -0.143808 0.033306 0.064580 -0.255399 0.030001 0.095707 0.244137 0.123904 -0.028054 -0.076004 -0.011022 0.057760 -0.106335 -0.108509 0.158245 0.023784 -0.283760 0.096072 -0.232555 0.123653 0.022604 -0.019904 0.031372 0.146747 -0.057301 0.106815 0.108774 0.046906 -0.043881 0.218951 0.060654 0.128419 -0.029918 -0.111939 -0.076114 0.019885 0.012906 0.062774 0.004300 0.078451 0.016803 0.012085 -0.168094 -0.013484 -0.052970 -0.140491 0.026454 0.074321 0.092638 0.063337 0.082331 -0.010211 -0.309318 0.076404 0.045822 0.144846 0.070425 -0.104219 0.183502 0.060817 -0.074843 -0.132798 0.127786 0.260051 0.088408 0.017881 -0.078095 -0.139919 -0.019977 -0.062460 0.085736 0.078825 0.031996 0.102419 -0.314097 0.057161 -0.009677 -0.342130 -0.025216 -0.059320 0.062750 -0.128356 0.222162 0.072132 0.207671 0.211943 0.117324 -0.103978 0.138018 0.051328 -0.057864 0.310210 0.065815 -0.077831 0.000370 -0.043797 -0.204254 0.130282 0.010463 0.032391 -0.035755 0.116511 0.090220 -0.051774 -0.109186 0.123896 -0.001889 0.139434 0.115248 -0.223378 -0.043494 0.004795 -0.089488 -0.274382 -0.000944 -0.013652 0.100835 -0.203331 -0.000364 0.011664 -0.130480 0.066789 0.009510 -0.028422 0.079718 -0.040043 -0.049693 0.106809 0.231219 -0.090532 0.068819 -0.114171 0.016706 -0.154631 0.073214 0.072919 -0.116084 -0.018187 0.121667 -0.055825 0.026448 0.136633 0.098271 0.052114 0.045513 0.020704 -0.286764 -0.179367 -0.105917 -0.017352 0.108118 -0.253277 0.139038 -0.025775 -0.240636 -0.082723 0.250295 -0.090138 0.070925 0.078080 -0.177877 0.086194 -0.036175 -0.156336 0.160777 0.255917 0.097417 -0.137303 0.046853 0.127345 -0.212120 -0.177017 -0.000773 -0.043485 -0.055807 -0.419640 -0.294374 -0.029914 -0.121829 0.046480 0.067448 0.041485 0.048568 0.303706 0.083315 -0.008899 -0.174807 -0.133349 0.141615 -0.101022 0.096548 0.088706 0.023789 -0.056607 0.136336 -0.235839 -0.040710 0.288678 -0.101184 0.072770 0.034842 0.031817 -0.063462 0.212053 0.040876 0.151706 0.247704 0.086459 -0.188720 0.279331 -0.007830 0.060397 -0.016855 -0.037507 -0.152590 0.104524 0.015175 -0.078228 -0.215315 -0.250221 -0.144544 -0.003237 0.031170 0.242507 -0.196691 -0.042256 -0.052260 -0.018896 0.144319 0.090626 0.191690 -0.051620 0.100795 -0.171351 0.035791 0.019834 -0.069998 0.122187 0.068909 -0.083938 -0.230015 0.019136 -0.152208 -0.369413 -0.143943 -0.295554 -0.027151 -0.125724 0.085650 0.005295 0.014160 0.161430 0.104144 0.114517 -0.204431 -0.021311 -0.143580 0.046937 0.201396 -0.099227 -0.171407 -0.060996 0.049218 0.414911 -0.021575 0.069172 -0.114192 -0.135674 0.039361 -0.070722 -0.058539 0.188343 0.070181 0.110734 -0.041193 -0.013093 -0.061189 0.060299 -PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/topological-sorting.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.274445 0.141797 0.765939 -0.056370 -0.210120 -0.844576 -0.260903 -1.690274 0.726505 0.351984 0.661959 -0.052296 0.573592 -0.343815 -0.134993 0.448570 0.190199 -0.260192 0.221683 -0.312337 -0.186260 1.077512 -0.321729 0.354316 0.053250 -1.148729 0.476839 0.190931 0.702624 0.503345 0.267280 -0.085616 -0.167775 0.262497 -0.067481 0.411595 0.237427 0.306821 -0.532764 0.080329 -0.160808 -0.085644 0.426197 0.006660 0.762518 0.037597 0.229107 0.212973 0.147262 -0.254078 -0.233550 0.515193 -0.306865 0.161751 -0.245458 -0.354521 -0.134115 -0.125090 -0.065035 0.250706 -0.155971 -0.172880 -0.446409 0.171362 -0.478891 0.210886 -0.293394 -0.296301 -0.198225 -0.180352 0.442947 0.211217 0.036014 0.113193 -1.274693 0.017162 0.107148 0.047299 0.425160 -0.064212 0.055091 -0.185000 -0.528558 -0.573126 0.840299 1.036504 0.095141 0.160514 -0.495059 -0.117852 -0.329825 -0.091505 0.536511 0.437481 -0.463605 -0.109868 -0.322465 -0.128882 -0.271056 -0.909652 0.304890 -0.320860 0.338016 -0.255155 0.188634 0.028144 0.286565 0.089972 -0.246166 -0.430513 0.109844 -0.318556 0.346622 1.078266 -0.109554 -0.250504 -0.552136 -0.256748 -0.186921 0.348587 0.309635 0.081302 0.738282 0.476485 0.393782 -0.603716 -0.602863 0.632464 0.287390 0.323267 0.096339 -0.722932 -0.248069 0.165851 -0.297886 -1.059825 -0.387205 0.046642 0.360732 -0.606707 0.132577 0.201129 -0.223664 0.333469 0.586676 -0.188987 0.172643 0.161631 -0.473931 0.411524 0.978626 -0.037130 0.303809 -0.626903 -0.084235 0.302194 -0.340738 0.223574 0.086208 -0.089397 -0.356172 -0.222536 0.250842 0.450252 -0.117956 0.344961 -0.169495 0.407816 -0.546810 -0.547614 -0.858548 -0.106099 0.822945 0.037812 0.747741 -0.577546 -0.313652 0.078763 0.699203 0.223784 -0.170389 0.476660 -0.677760 0.446440 -0.569232 -0.730239 0.944761 0.949790 0.680632 -0.127057 0.351444 0.489982 -0.809414 -0.334460 -0.144387 0.259576 0.170278 -1.365087 -0.394538 0.046640 -0.636892 -0.388225 -0.111885 0.278927 0.130631 0.468341 0.713488 -0.261944 -0.154364 -0.505108 0.690232 -0.176818 -0.079572 -0.078515 0.142366 -0.177186 0.371901 -0.467029 0.273836 0.440100 -0.196956 0.404770 0.426533 0.002237 -0.124617 0.761529 0.730199 -0.276119 0.594296 -0.179926 -0.139350 0.478997 -0.050364 0.229399 0.145069 0.050978 -0.044717 0.219682 0.339823 -0.377128 -0.390837 -0.598988 -0.273847 0.240261 0.338490 0.514031 -0.591016 -0.788547 -0.132687 -0.089623 0.784314 0.195204 0.915851 -0.330117 0.430190 -0.897213 0.158800 0.173575 -0.108138 0.460122 0.129946 -0.311493 -0.142916 -0.176918 -0.601842 -1.112764 -0.239502 -0.554676 -0.422454 -0.581262 0.500302 -0.406046 -0.104674 0.314723 0.132522 0.430707 -0.581718 0.117731 -0.620968 0.332808 0.500025 -0.156798 -0.484533 0.192087 0.040159 1.388207 -0.151187 0.413299 -0.125450 0.426584 -0.278598 -0.726532 -0.157469 0.763460 0.439591 0.111619 -0.199283 -0.198269 0.107531 0.369842 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = -0.947690 -0.387454 2.102517 0.912176 -1.283459 -2.918991 -1.006796 -3.695728 1.760344 0.564431 2.625941 0.312516 1.477500 -1.601091 0.609257 0.969748 1.198069 -1.184562 0.107654 -1.135578 0.082130 2.667412 0.746284 -0.593706 0.146865 -2.127959 0.290645 1.119684 0.920640 1.299106 0.640882 -0.284668 -0.686538 0.839069 -0.442679 1.583835 0.930254 0.514475 -1.399242 -0.436381 -0.185527 -0.152663 1.617815 -0.646893 2.848353 -0.435601 1.990706 0.589395 -1.488273 -1.173816 -1.103247 2.665361 -1.635706 0.603930 0.083200 -0.384307 0.243478 -0.921771 -0.852421 -1.928034 -0.472714 -0.425500 -1.373687 0.109285 -0.827624 0.975934 0.088348 -0.741736 0.183472 -0.259417 1.581997 0.594147 0.290670 0.918751 -2.145518 0.068498 0.289473 0.757405 1.069222 -0.187431 0.019105 -0.808566 -0.670007 -1.113091 1.979445 0.899339 0.682328 0.631681 -1.517809 0.906573 -0.550110 -0.519560 0.666513 0.398180 -1.679088 -0.407184 1.110032 -0.664698 -1.293698 -1.225677 0.626303 -0.853857 0.537952 0.609985 0.457399 -0.080553 -1.672018 0.243646 -2.397134 -1.592706 0.627530 -0.795963 -0.154999 1.997000 -1.802213 0.245568 -0.782687 -0.043734 -0.103143 1.361104 0.570292 1.181587 1.321909 2.173417 0.586405 -1.755134 -1.191709 0.662339 2.635566 1.292400 0.677568 -1.416817 -1.169906 0.604406 -1.343815 -2.788028 -1.222036 1.449138 1.964664 0.785983 -1.552992 0.519160 -0.472731 2.421773 1.442012 0.218476 0.003630 0.335941 -2.096417 1.655268 2.437545 -0.697315 2.067115 -0.249708 0.000429 1.298796 -1.687804 0.573464 1.176218 -0.663393 -0.673167 -0.614898 -0.548089 1.209048 1.557901 1.218715 -1.061380 1.322601 -0.939714 -2.786575 -3.118689 -0.395335 2.209106 0.183004 2.348438 -1.698596 -1.784285 -0.162641 1.892840 -0.777177 -1.656236 0.580779 -1.912402 1.363202 -2.461816 -2.287048 4.158732 3.373929 1.933140 0.789963 2.032103 1.759940 -2.415114 -0.193164 -0.141776 0.936751 0.476835 -3.093278 -0.578304 0.224412 -2.242349 -1.771140 -0.497853 0.933673 -0.839869 0.930620 1.528405 0.471251 -0.736777 0.058608 0.591480 -0.909346 -0.877237 -0.130286 0.158803 0.781520 0.720315 -1.287460 0.631920 0.822760 -1.894310 0.342369 0.721562 1.459102 1.409631 2.764607 2.781964 -0.403876 2.850652 -0.371984 -1.253659 1.450169 -0.436610 0.797134 0.034926 0.714226 0.743229 0.108923 1.351510 -0.991898 -0.783762 -1.751137 -0.386972 1.114620 1.884396 -0.309860 -2.448074 -2.535348 -0.186001 0.984374 1.717779 -0.850725 2.864719 -1.181479 0.554523 -4.102660 0.178105 0.786358 -0.120076 0.680123 0.540403 -0.889099 -2.717873 -0.599722 -1.662370 -1.975273 -0.535309 -1.076565 -0.722647 -2.042667 2.573733 -1.919822 -0.252689 1.026170 0.275666 1.885627 0.280762 0.051537 -1.107384 0.545697 0.825728 0.274679 -1.540488 1.970701 0.321858 5.054565 -0.393422 0.981615 -0.868119 1.527790 -0.490570 -1.324086 -0.221607 2.315103 2.663951 -0.104285 -0.054367 0.006390 -0.365934 1.418537 -PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = -2.244996 -0.527362 4.079927 0.360674 -2.939108 -3.666865 -1.842012 -6.799885 3.101250 1.490909 4.550678 0.668575 2.470938 -2.786527 0.731845 1.207344 2.341470 -2.692924 0.935088 -1.872374 0.654968 3.897675 1.039344 0.463657 0.363985 -4.049449 0.947924 0.069035 1.939739 2.416302 1.516746 -1.062958 -2.481245 1.228053 1.709779 3.554514 2.773395 0.944152 -2.260534 -0.235262 -0.856901 -1.788892 2.243502 -1.043912 5.325058 -1.712282 1.865674 0.886743 -3.031452 -2.113464 -1.123114 3.471170 -3.502343 0.935472 2.009804 -1.258123 -0.752415 -0.861220 -1.345762 -2.746942 -1.328790 -2.872424 -1.313159 0.876087 -1.230889 1.829793 -1.495695 -0.274448 -0.291694 -1.034058 2.312656 1.436713 1.921838 3.777626 -3.615406 0.291691 0.435051 1.148521 1.961759 0.004079 0.106697 -1.516521 -1.001154 -2.416567 2.665289 2.187629 0.490681 -0.121681 -2.959422 2.852633 -0.766727 -0.878213 0.996567 0.931523 -4.022695 -1.115288 0.396747 -1.212205 -1.220811 -4.205080 0.631060 -1.885495 0.914210 0.892317 -0.675588 -1.000494 -3.595369 0.580114 -3.672338 -2.224276 1.960574 -0.916075 -0.405128 3.549049 -3.192861 0.513009 -2.256127 -0.171913 0.824941 1.514792 0.914724 2.356822 1.504172 3.735187 2.185933 -2.864108 -2.241739 1.926533 4.186141 1.411470 0.927126 -2.110972 -1.662655 1.540153 -2.102041 -4.434308 -2.503813 1.936965 3.235772 1.953241 -1.302685 -1.728820 -1.131867 3.911327 2.477483 0.662893 -0.215373 0.864718 -3.400376 2.500629 3.173702 -1.134888 3.285847 0.310801 1.100009 1.634950 -3.268694 1.204909 1.059627 0.079348 -1.228679 -1.543743 -2.069120 2.034923 2.466540 2.339464 -3.010218 2.199673 -1.623413 -4.770660 -5.043870 -0.739282 4.988347 0.231738 1.646508 -2.944549 -2.531041 0.225610 3.707037 0.347265 -3.450296 1.240964 -2.779851 2.276409 -3.364183 -3.700732 6.666509 6.440444 2.712244 0.992490 2.087823 3.338029 -6.392678 -0.779248 -1.042737 1.546885 -1.183546 -6.303419 -2.167135 1.032531 -3.577895 -2.787638 -0.440799 1.555278 0.189273 1.849068 3.061215 3.311400 0.216993 0.128011 2.341257 -0.593622 -2.907908 -0.467906 0.525654 2.528931 1.523725 -2.083792 1.294337 2.107217 -3.207016 0.333481 1.850145 2.176570 1.603140 5.011920 3.918189 -0.199353 2.625086 -0.929964 -2.324507 1.618467 -0.732499 1.369984 0.013251 -0.380785 0.949244 0.257565 2.620605 -1.892253 -2.564869 -2.587645 -1.904852 0.403272 3.835031 -0.036069 -5.908696 -3.683482 0.884449 1.886790 1.855817 -0.693283 4.856186 -1.566339 0.961234 -5.918956 0.018480 2.244699 -0.313064 2.029645 0.530755 -1.134147 -3.423436 -1.353279 -3.167940 -2.840585 -0.753975 -0.675661 -0.739959 -3.393754 5.607949 -1.930343 -0.829669 0.228704 0.920778 4.438295 1.912254 -0.052940 -2.761984 1.623177 1.303900 0.264193 -2.419859 4.257699 1.239833 7.919343 -0.995701 -0.066415 -0.684904 1.767215 -0.745143 -2.053110 -0.175040 3.788399 4.907080 1.021573 -1.512999 -0.562503 -1.192606 2.000276 -PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = -3.369590 -1.274173 4.185012 -0.562288 -2.788799 -4.019181 -2.083795 -7.757913 3.505614 2.228466 5.905391 1.030279 3.513476 -3.067599 1.261299 1.440069 2.888695 -4.238464 1.771319 -2.020808 1.501894 5.362396 1.583223 2.198074 -0.264436 -4.420748 0.294192 -0.444196 2.429012 3.126196 1.821315 -1.377048 -2.819299 0.781634 1.988371 4.448989 3.062670 1.322197 -2.397517 -0.441663 -1.531336 -3.077987 2.561444 -1.569035 6.350641 -2.894676 2.301184 0.759916 -3.000666 -3.287761 -1.601103 3.825369 -4.486546 0.458860 2.449038 -2.576685 -1.003721 0.292425 -1.961079 -3.457603 -1.729797 -3.832567 -1.169141 1.281368 -0.930071 2.709816 -2.783701 0.229447 -0.799181 -1.577193 2.804024 2.085904 3.252488 5.400854 -4.830167 0.742921 0.128916 0.869929 1.856764 0.430499 -0.373833 -1.619232 -0.771570 -2.843633 3.232444 3.083131 0.095027 -0.370680 -4.402653 4.588005 -1.285875 -0.714036 0.978246 0.677833 -4.831933 -0.962621 1.196354 -1.334219 -0.954475 -5.175055 0.549150 -2.373186 0.746811 1.275071 0.013979 -1.971624 -5.863658 0.119084 -5.165962 -3.285758 2.781584 -0.978704 -1.411566 3.818114 -5.034197 1.683823 -2.811144 0.535529 1.434620 1.483170 1.394955 3.402201 0.644550 4.042406 2.351567 -3.430171 -2.342333 2.818119 5.801263 0.949540 0.565348 -1.695309 -1.930719 2.094834 -2.875662 -4.805016 -3.689534 3.631451 3.823689 2.522202 -1.024258 -2.109127 -1.155862 4.800199 3.955794 0.558980 -0.189654 1.269267 -4.106726 2.917288 3.225900 -1.365649 4.423715 0.982556 1.452276 2.717862 -4.691277 1.709607 1.569241 0.956934 -2.042014 -1.992440 -2.786462 2.103868 3.600136 3.724760 -4.342817 2.668814 -1.214614 -5.514485 -6.065551 -1.264101 6.354429 0.566395 0.840010 -3.131879 -2.783878 1.429540 4.008639 1.008394 -5.097582 1.590693 -2.868872 2.487896 -5.246714 -4.135042 7.915508 7.830997 3.397677 1.615476 2.014595 4.845886 -7.845911 -0.636485 -1.130399 2.523105 -2.431621 -8.437807 -2.695342 1.258230 -4.005670 -3.602939 -0.982521 1.742164 -0.195821 2.566628 4.300453 4.221794 0.838969 1.211137 3.075839 -0.535460 -4.422283 -1.080390 0.680377 3.271238 1.315023 -2.366835 2.631983 3.099134 -4.302447 0.194810 2.251244 1.971366 2.108374 6.069921 4.724505 -0.560356 2.202994 -1.874857 -2.546821 1.022992 -1.188959 1.227639 -0.572634 -0.511110 1.352451 0.124544 2.893927 -2.092170 -3.822455 -2.650710 -2.283483 0.703311 4.784323 0.825034 -8.093050 -4.222486 1.942941 2.470654 2.521862 -0.752015 5.699355 -2.333354 1.221893 -6.696715 0.315958 2.037233 -0.209384 2.522754 0.352418 -0.596374 -2.723274 -1.804749 -3.648366 -3.078197 -0.595273 -1.512191 -0.215495 -4.835287 6.873428 -2.893699 -1.449245 -1.248744 1.003629 6.088542 3.721569 -0.663708 -4.159746 3.128926 1.320458 0.477781 -2.382320 5.612024 1.209815 8.805209 -1.693980 -0.647542 -0.421999 2.920281 -1.341067 -2.289807 0.331709 4.502284 6.353927 0.850399 -2.308985 -0.952917 -0.845769 1.421031 -PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/topological-sorting.cpp___GLOBAL__sub_I_topological_sorting.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = -1.883401 1.729152 11.410392 7.043346 -5.993820 -8.626237 -4.501259 -10.747015 5.247819 -0.075698 7.342286 0.688308 1.543846 -1.514653 0.744606 -1.728768 0.948830 -2.814927 0.023259 -3.194645 -2.646033 7.351257 4.546900 -8.176394 1.023162 -11.302539 6.999883 5.265739 3.967673 6.496558 0.033280 -1.397399 -2.245972 6.212745 -3.027662 -0.313529 1.414515 1.320366 -3.215499 0.465976 4.041967 4.854710 6.438429 -0.366133 6.570878 3.299288 4.622590 2.063160 -5.558803 -1.205570 -4.194871 8.182269 -6.168771 3.760960 0.263751 3.747798 1.223791 -7.619936 -2.617396 -7.324469 -0.230561 1.523954 -4.304516 0.125732 -6.089367 1.553819 -0.719569 -3.670059 4.113059 0.356397 6.364531 1.772232 0.303119 -1.798250 -5.428260 2.161767 0.019112 5.184508 4.533218 -2.997432 -1.277754 1.805198 -3.168059 -4.329956 1.945401 0.773790 2.014547 -0.950595 1.631179 -2.103217 -0.060682 -1.672157 -0.839558 4.794485 -3.891884 2.307714 -2.839503 -1.430529 -4.875016 -2.926218 0.389571 -4.892280 3.608872 4.813167 -3.257359 -0.446491 -0.328918 1.248310 -3.228384 -6.711698 0.330414 -1.958006 2.612035 7.662769 -3.465739 -1.240250 0.068880 -1.744009 -0.882250 6.895804 0.668651 2.248216 6.690963 9.237526 1.126654 -5.321298 -2.814049 0.589326 5.123583 6.579787 5.292247 -7.334631 -4.136085 -0.986260 0.223620 -10.937612 2.187379 1.457554 5.385144 2.240074 -7.968104 2.697271 -4.002228 7.862174 3.884468 4.060567 1.858341 -0.595235 -6.075436 7.619021 12.937756 -2.406667 5.260349 -4.010953 -4.690685 7.541235 -5.456257 4.258456 2.083697 -0.581374 1.778416 -4.594539 -1.422486 6.654226 2.633395 3.394122 5.118956 1.653653 -0.379840 -10.989647 -8.750787 0.935374 6.304673 -0.286526 11.687284 -6.650327 -4.056410 -2.309759 8.577996 -1.745343 -2.354232 0.570927 -3.565817 4.270166 -9.838252 -9.161468 11.235816 11.046012 1.104151 0.973405 7.376085 5.200989 -3.107616 -2.968444 -3.652964 3.306510 2.152531 -1.589838 0.062373 -0.201439 -6.175321 -3.423997 1.553245 2.648279 3.715130 -3.868605 -4.243601 1.929854 -7.888499 -5.598963 2.856728 -7.362143 -2.071523 1.754013 -0.519715 0.091058 2.882035 -2.088748 -2.020266 2.218875 -4.162352 0.835509 3.239133 6.063999 2.286189 7.674572 6.457941 0.428607 7.444527 4.613707 -2.974969 14.315098 -3.001624 1.746171 2.661806 4.682975 0.259798 3.222230 2.801549 -3.502035 -2.358948 -8.039289 3.869568 0.267754 4.971017 -7.927623 -5.366404 -8.394765 -3.808483 5.179632 4.856463 -1.278538 13.235273 -0.363081 0.501615 -13.784067 -1.365213 5.837375 0.183656 5.198438 3.842801 -4.943519 -11.463596 -2.752825 -3.391157 1.314602 -3.073687 -5.006950 -4.731111 -3.224414 5.320131 -3.264085 3.209458 8.338994 -0.934392 2.597425 -2.112823 -0.461746 -2.042522 -3.673309 2.726005 2.034988 -6.933801 8.807211 -1.383497 16.033921 -2.853472 5.561201 -5.373889 2.065656 -0.322541 -2.520265 -1.361831 9.448553 4.770544 1.991388 0.467592 0.735607 -3.697563 5.371945 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.147644 0.247157 1.438557 0.063553 -0.779121 -1.734226 -0.724799 -2.980275 1.126692 0.517076 1.408232 -0.135144 0.865069 -0.332447 -0.024833 0.773292 0.469327 -0.798745 0.567679 -0.690930 -0.729881 2.111103 -0.029621 0.571850 0.145618 -2.091995 1.008134 0.288971 1.082914 1.081836 0.426520 -0.237904 -0.360212 0.593544 0.061645 0.836408 0.340539 0.520124 -0.833563 0.543334 -0.103172 -0.348166 1.015530 -0.063218 1.376221 0.339366 0.642450 0.516882 -0.257051 -0.555366 -0.657910 1.036740 -0.946082 0.316841 -0.317889 -0.528832 -0.073440 -0.430652 -0.447771 0.221205 -0.588648 -0.641136 -0.894760 0.443599 -1.026106 0.571490 -0.934002 -0.477272 -0.158455 0.046689 1.033412 0.552949 0.108295 0.534949 -2.108499 0.192200 0.154622 0.397483 0.690122 -0.413926 -0.045723 0.043740 -1.098406 -1.159823 1.302805 1.460659 0.301943 -0.171327 -0.749259 0.001334 -0.592576 -0.154841 0.716000 0.848551 -0.851408 -0.032976 -0.525541 -0.355128 -0.889479 -1.886059 0.355187 -0.697219 0.704039 -0.130039 0.082700 -0.292502 0.006223 0.143743 -0.658657 -1.226432 0.176708 -0.503318 0.435710 1.910061 -0.425607 -0.179055 -0.909833 -0.434836 -0.207743 0.799046 0.715430 0.317596 1.407599 1.274950 0.525500 -0.955039 -1.102599 0.695804 0.797475 0.559270 0.553698 -1.240950 -0.767933 0.284654 -0.463931 -1.844255 -0.709044 0.443695 0.832422 -0.741108 0.061777 0.323231 -0.526474 0.897918 1.159407 -0.083654 0.287018 0.051355 -1.006570 1.157884 2.031435 -0.231602 0.825274 -1.137601 -0.278487 1.228718 -0.916382 0.430105 0.422253 0.004444 -0.857146 -0.543259 0.154165 0.832078 0.149070 0.627852 0.075741 0.694680 -0.667750 -1.176291 -1.633934 0.070747 1.701458 0.026405 1.398484 -1.208007 -0.483712 0.185141 1.260597 0.586303 -0.643077 0.674325 -1.035976 0.723370 -1.545722 -1.442709 2.002652 1.847207 1.057360 0.020755 0.690964 1.290227 -1.649475 -0.729666 -0.588148 0.858473 -0.003537 -2.258280 -0.789067 0.187078 -1.231660 -0.668441 -0.302307 0.694330 0.593965 0.492512 0.765366 -0.272996 -0.663218 -0.789136 1.196385 -0.573488 -0.511006 0.079646 0.025165 -0.132836 0.594003 -0.526843 0.583856 0.593956 -0.676291 0.570082 0.890739 0.322029 -0.086323 1.670468 1.576475 -0.403305 0.941702 -0.176080 -0.335627 1.058162 -0.190918 0.498496 0.160698 0.235603 -0.088018 0.317666 0.870722 -0.569679 -1.121803 -1.087724 -0.058705 0.358210 0.770782 0.431134 -1.313667 -1.799727 -0.191751 0.327054 1.658028 0.286971 1.827166 -0.483497 0.679306 -1.919786 0.254672 0.325024 -0.026528 0.948066 0.226468 -0.546345 -0.265350 -0.423069 -1.185641 -1.462292 -0.473467 -0.971384 -0.837563 -0.917183 0.872142 -0.691033 -0.213902 0.644366 0.108027 0.911288 -0.355658 -0.093819 -1.224148 0.444703 1.206633 -0.201661 -0.868225 0.934561 0.071975 2.832162 -0.258132 0.626403 -0.233067 0.511477 -0.252856 -1.123261 -0.159080 1.482269 0.973028 0.094998 -0.226113 -0.292968 0.279245 0.591105 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp___GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_change.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/largest-independent-set-problem.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -3.768806 -2.082196 10.258581 6.221433 -4.530636 -9.824455 -4.660177 -13.414957 8.460838 1.381109 9.801918 1.590651 4.459929 -6.472754 1.236669 0.581608 3.192005 -5.299980 0.002533 -3.840586 1.247237 12.457573 4.638684 -6.341697 0.627231 -13.229532 3.453506 4.442582 5.079354 7.611842 1.070444 -1.269169 -1.845534 4.461461 -2.684768 4.085250 3.019055 0.741057 -5.301672 -2.100860 2.097368 3.254718 7.165476 -2.157720 10.533074 -1.588476 6.790932 1.402636 -5.486527 -3.744199 -4.952063 10.281601 -6.561039 2.999644 0.632672 1.524772 1.150288 -6.301236 -4.084889 -8.807169 -1.158428 1.073040 -4.856368 0.126102 -4.608260 3.661591 0.195945 -1.911117 2.858962 -2.093824 6.879799 3.240284 1.925129 0.081038 -7.935824 1.993448 0.048425 3.989328 4.100618 -0.882079 -1.121917 -1.129484 -2.541452 -3.927740 5.715532 3.051758 1.265261 1.403280 -2.266160 0.649129 -1.771965 -2.159620 0.568875 2.406429 -6.617924 -0.507091 2.020199 -2.133609 -3.098373 -2.395366 1.186380 -4.615045 2.080123 4.913399 -0.226501 0.620940 -2.515332 1.177000 -7.252217 -6.482048 2.450467 -1.632258 0.317735 9.193507 -6.474927 -0.099891 -2.838978 0.240518 -1.405902 7.088052 0.030196 5.119746 6.141068 9.484767 2.196945 -6.707581 -3.139701 3.676533 9.746961 5.373066 3.726701 -6.695381 -4.330830 0.536241 -1.741526 -11.904437 -3.130032 4.098347 7.999769 3.875947 -8.238225 2.813029 -2.013433 11.152222 5.642262 0.248053 0.995665 1.098191 -8.733502 8.607370 13.219408 -2.535135 6.855203 -4.259331 -2.947396 7.471794 -7.253124 3.677799 2.415037 -0.792534 0.140487 -4.389210 -0.422831 5.920193 3.738557 4.844388 -1.562918 4.209340 -0.613885 -12.710149 -12.670568 -1.466411 6.709104 0.934373 12.385229 -6.635120 -6.299257 -2.631316 8.223487 -2.237263 -4.608654 2.007201 -7.601404 4.952187 -12.454440 -10.564066 17.015662 15.142055 5.484157 3.567068 9.081710 7.354816 -5.908112 -0.387109 -1.736428 4.128461 4.041289 -8.145400 -0.231411 0.059663 -7.770796 -8.238629 -0.217887 2.696258 -0.564596 -0.494941 1.625268 1.661408 -5.917080 -2.595848 4.229062 -6.785177 -3.233934 -0.034804 0.214143 1.634020 4.023662 -4.056112 1.371401 3.493193 -5.630111 0.846565 3.035733 6.444268 4.473359 7.292148 11.355285 -0.539096 11.004130 1.500603 -4.536393 11.032102 -3.101713 1.624340 0.962306 2.423531 2.916887 2.109428 2.842621 -3.908927 -1.424031 -7.718744 2.797857 2.411901 6.953002 -6.176475 -9.506171 -9.390780 -2.854370 4.779340 5.412468 -1.572980 14.130469 -4.604224 0.458951 -18.124116 -0.632255 6.193829 1.360589 4.376811 2.986794 -4.090709 -13.435507 -2.515639 -5.179056 -2.293618 -3.794473 -6.961466 -4.201949 -7.999242 11.735976 -7.068154 2.031465 7.631008 0.859532 6.746102 -0.623494 -0.261989 -5.046214 -0.511444 -0.314228 2.714613 -6.208243 8.509513 -0.830486 17.759775 -3.897936 4.724312 -5.588052 7.078572 -3.235680 -5.887610 -0.525900 9.741674 8.744674 -0.250314 0.129103 -0.934467 -3.546004 6.156394 -PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = -0.730793 -0.225134 1.781937 1.147353 -1.631792 -2.911960 -0.923801 -3.467854 1.755589 0.575636 2.182368 0.535192 1.566739 -1.381914 0.227139 0.606488 1.284727 -0.869586 0.291133 -1.168145 -0.600590 3.132048 0.684419 -0.428837 0.174011 -1.981778 1.316943 0.689245 1.169399 1.940821 0.735823 -0.198358 -0.798030 0.779179 -0.051176 1.262306 0.097816 0.695436 -1.334525 -0.082499 0.215654 -0.950993 1.906791 -0.149833 2.244383 -0.208601 1.561244 0.575651 -1.208733 -1.158753 -1.280753 1.530610 -1.707027 0.694587 -0.410066 -0.594862 0.512600 -0.283425 -0.586809 -1.345403 -0.535181 -1.095309 -1.428820 0.251005 -1.393540 0.876417 -1.135082 -0.866634 -0.286875 -0.385145 1.450468 0.703871 0.302914 0.461542 -2.830616 -0.044155 0.091616 0.707483 1.241304 0.347623 -0.373328 -0.753677 -1.315796 -1.332822 1.752823 0.761471 0.368368 0.502519 -1.412230 0.218505 -0.562015 -0.071889 0.891942 0.519640 -1.475963 0.014977 0.309663 -0.470276 -0.805405 -2.067435 0.633872 -0.818198 0.575653 0.323908 0.049672 -0.359847 -1.068020 0.019133 -1.754500 -1.778722 0.621994 -0.853258 -0.306993 2.238118 -1.192125 -0.127968 -1.023515 -0.118143 0.133328 1.377787 0.820211 0.928169 1.312400 1.890627 0.701156 -1.627836 -1.028919 0.938691 1.862501 0.850343 0.685458 -0.946377 -1.262984 0.679758 -1.018884 -2.608727 -1.160153 1.564476 1.752476 0.271742 -0.826552 0.492375 -0.775179 1.660728 1.663881 0.288407 0.394692 0.223697 -1.892398 1.608783 2.572985 -0.467608 1.548118 -0.652085 -0.471213 2.264596 -1.446021 0.482084 0.473348 -0.413322 -0.934788 -0.545950 -0.091244 1.235955 0.692873 0.849230 -0.344829 1.152769 -0.927330 -2.420243 -2.740399 -0.098524 2.813093 0.925232 2.201778 -1.809965 -0.629688 0.240012 1.349869 0.185454 -1.446274 0.726874 -1.482154 1.238178 -3.519494 -2.255888 3.811743 2.578237 1.557953 0.522286 1.077727 1.869027 -1.849415 -0.745145 -0.812333 1.052537 0.217911 -2.633247 -0.639016 0.326838 -2.177147 -1.444569 -0.033582 0.911998 0.346888 0.002439 1.172070 -0.405109 -0.599316 -0.775867 1.243495 -0.998193 -0.891869 0.044395 -0.076027 0.449647 0.629807 -0.355807 0.787991 0.435257 -1.201741 0.254676 0.561807 1.047318 0.644479 2.511797 2.880651 -0.777255 1.331343 -0.226612 -1.123174 2.300552 -0.737183 0.805013 0.057163 0.930046 0.788454 0.217935 1.542815 -0.909766 -0.931424 -1.654074 -0.337837 1.121208 1.636433 -0.947780 -2.101046 -2.836888 0.108326 0.495865 2.155524 -0.458493 2.867062 -1.344940 0.564158 -3.368735 0.329592 1.019701 0.029667 1.256601 0.465849 -0.830177 -1.152147 -0.775528 -1.688029 -0.742501 -0.616432 -0.986947 -0.871416 -1.137687 1.454589 -1.621092 -0.165433 0.949969 -0.446178 1.862113 -0.073724 -0.034332 -1.444769 0.526110 0.824223 0.284366 -1.291994 2.101531 0.208702 4.082137 -0.119178 0.799544 -0.556997 1.471394 -0.812357 -1.788214 -0.375597 2.220838 2.116913 -0.053840 0.217830 0.046447 0.280936 1.051283 -PE-benchmarks/largest-independent-set-problem.cpp__main = -1.307006 -1.476133 4.121704 2.027589 -2.193438 -6.348367 -2.057028 -9.392017 5.216912 1.758341 5.862979 0.998123 3.928722 -4.006045 0.986661 3.124662 2.923139 -2.777692 0.668381 -2.312721 0.477929 8.848810 1.234731 -0.099499 0.178325 -5.743340 0.471017 1.725387 3.635809 3.305407 1.787200 -0.622973 -0.752375 1.115931 -0.849965 4.071044 0.816521 1.093069 -4.051249 -1.272022 -0.662670 -1.467856 3.801378 -1.177135 6.313127 -2.757821 5.369619 0.723132 -1.826848 -2.662929 -3.807173 6.507975 -3.252283 1.199599 -0.528226 -1.781855 0.428154 -1.019967 -2.139005 -2.486063 -1.686663 -1.015580 -3.712477 0.276380 -2.114018 2.574242 -1.250588 -0.669320 -0.381045 -0.658585 3.778383 1.740674 0.922804 1.116870 -7.356080 0.161077 -0.126907 1.080602 2.158528 0.923029 -0.068624 -1.869092 -2.161042 -2.723308 5.917555 3.290401 0.347723 1.092836 -4.284333 1.552022 -2.617022 -0.826075 1.775786 0.760900 -4.970656 -0.375831 2.263077 -1.405447 -1.738517 -3.249380 1.385251 -2.337404 0.797053 0.389792 2.259815 0.117589 -2.282114 0.173099 -4.807856 -4.067157 1.476461 -0.995384 -1.261451 5.565945 -3.735125 0.362823 -2.471593 0.658672 -1.180403 2.849922 1.752987 3.206700 3.443712 4.231947 1.953100 -3.656944 -2.343607 3.197836 5.740888 2.152200 0.765702 -2.584590 -2.584874 1.564918 -1.934518 -6.551682 -3.846850 4.673435 4.527664 1.084182 -1.952983 0.551985 -0.199842 5.428026 4.029303 -1.111526 0.525649 1.286316 -4.487817 3.808128 6.722987 -1.262212 3.949970 -2.034994 0.041749 4.179114 -4.334143 1.332342 1.639285 -0.199810 -1.997417 -1.781848 -0.358136 2.707909 2.113616 2.250624 -2.762010 3.225562 -1.986554 -5.966185 -7.659650 -1.412681 4.818489 1.156199 5.389908 -3.346673 -3.407349 0.137312 2.996400 -0.492456 -3.592145 2.289141 -5.370348 2.873480 -7.117711 -5.327596 9.984893 7.516979 4.631574 1.642416 4.309315 4.963492 -5.809669 -0.942589 -0.906019 2.925256 1.850174 -8.276556 -1.223289 0.370833 -5.333527 -4.588663 -1.286539 1.613185 -1.697721 2.395731 4.901612 -0.376281 -1.794156 0.065896 3.255865 -2.182344 -2.240527 -1.028311 0.311685 0.884958 2.201037 -2.558300 2.677295 2.152294 -3.745196 0.617825 1.544957 2.211571 2.211537 5.426405 7.929758 -1.032497 6.431388 -1.409589 -2.947739 3.173342 -1.184591 0.927866 -0.661467 0.417761 1.539007 0.544663 2.491179 -2.053106 -2.552075 -3.637480 -0.171142 2.405174 4.109559 0.150451 -5.695778 -5.679816 -0.621457 1.716940 4.629946 -0.743803 6.680959 -4.399488 1.557431 -9.863779 0.941743 1.922102 0.416359 2.284531 0.667124 -1.667342 -3.668547 -1.322355 -3.544502 -4.349842 -1.429984 -3.938256 -2.258216 -5.851150 6.290829 -5.461038 -0.492083 2.185270 0.346559 5.251611 -0.307705 -0.180763 -3.831862 2.521999 1.491681 0.929388 -3.121898 3.823976 -0.024756 10.999687 -1.621565 2.060540 -2.037574 4.373155 -2.688346 -4.492792 -0.157057 5.015181 6.149983 -0.813617 -0.353000 -0.764354 -0.363132 2.660960 -PE-benchmarks/largest-independent-set-problem.cpp___GLOBAL__sub_I_largest_independent_set_problem.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/reservoir-sampling.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = -0.119456 0.487621 2.612033 1.468705 -1.474311 -2.308337 -1.033795 -3.381701 1.585326 0.155746 1.799736 0.098326 0.705925 -0.761358 -0.035756 -0.081631 0.364231 -0.565404 0.092140 -0.826544 -0.792458 2.218574 0.461602 -1.369468 0.300966 -2.857902 1.723924 1.158542 1.271945 1.453030 0.230718 -0.326233 -0.692212 1.331200 -0.588381 0.214479 0.424326 0.464733 -1.114353 0.013771 0.690371 0.729873 1.596177 -0.121050 1.736512 0.543828 1.032161 0.605919 -1.023583 -0.393861 -0.904667 1.898722 -1.249051 0.939115 0.025355 0.328183 0.267718 -1.489448 -0.456249 -1.004983 -0.192565 -0.037314 -1.093234 0.110709 -1.512936 0.378007 -0.266434 -0.955626 0.718513 -0.154386 1.490381 0.412875 0.043177 -0.320426 -1.938633 0.357480 0.168675 1.033319 1.197630 -0.307091 0.026661 0.102944 -1.097918 -1.226911 0.997134 0.856772 0.497148 -0.012678 -0.194034 -0.577777 -0.076819 -0.485527 0.382074 1.129074 -1.128509 0.247700 -0.908326 -0.382839 -1.153202 -1.388802 0.353991 -1.058749 0.952272 0.651980 -0.630585 -0.030495 0.404500 0.279438 -0.658405 -1.567754 0.160354 -0.651308 0.865268 2.378531 -0.607862 -0.559216 -0.455962 -0.599316 -0.447861 1.490547 0.405897 0.434964 1.829046 2.090001 0.613437 -1.418408 -1.060235 0.617255 1.100981 1.451978 1.013664 -1.944259 -0.903749 0.049702 -0.179354 -2.876278 0.006122 0.259852 1.388649 0.026781 -1.328612 0.628812 -0.894115 1.635792 0.958067 0.527454 0.468874 0.038471 -1.455827 1.724201 3.030794 -0.396226 1.091538 -1.183176 -0.980533 1.544315 -1.109238 0.866036 0.425084 -0.224816 0.051280 -0.968449 0.025234 1.535623 0.249763 0.707405 0.754035 0.668683 -0.736035 -2.523156 -2.365458 0.278295 1.825131 0.051506 2.780737 -1.728131 -1.004195 -0.382566 2.195710 -0.254827 -0.549647 0.540501 -1.285235 1.186017 -2.028515 -2.252818 2.848476 2.719953 0.622004 0.042509 1.648856 1.210428 -1.310274 -0.892708 -0.944513 0.711819 0.700415 -1.377950 -0.296723 0.016462 -1.657149 -0.909566 0.320280 0.699113 0.907005 -0.401046 -0.163106 -0.018578 -1.521906 -1.519063 1.168474 -1.378954 -0.250380 0.337567 -0.009996 -0.112707 0.993426 -0.691606 -0.292439 0.537247 -0.851441 0.471845 0.821115 1.139417 0.217836 2.102518 1.768986 -0.165050 1.942806 0.732696 -0.756734 3.169167 -0.652670 0.538236 0.568367 0.954199 0.075045 0.784030 0.881478 -0.977901 -0.686023 -1.985996 0.372572 0.190830 1.129659 -1.385304 -1.398389 -2.349306 -0.875589 0.757426 1.358870 -0.069075 3.119957 -0.447936 0.303314 -3.319167 -0.151342 1.295356 -0.066466 1.349912 0.711481 -1.175468 -2.272962 -0.629377 -1.192396 -0.659391 -0.803257 -1.290687 -1.202800 -1.017096 1.438531 -0.827802 0.539761 1.927547 -0.098705 0.741668 -1.024008 0.069453 -0.819972 -0.527378 0.813949 0.163038 -1.679819 1.817172 -0.149173 4.069428 -0.521461 1.275047 -1.093991 0.690291 -0.306266 -1.240405 -0.402802 2.244223 1.199046 0.450691 -0.064170 0.110205 -0.717452 1.366201 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -0.619790 1.553487 8.018807 4.538502 -3.934523 -6.185687 -3.136570 -8.782327 4.362653 0.341905 4.764761 0.600185 1.288238 -1.209780 0.037037 -0.396536 0.694744 -1.704479 0.284184 -2.278754 -1.943374 6.349526 2.798267 -4.956865 0.588919 -8.396075 4.852369 3.368684 3.958167 4.533167 0.227041 -1.121096 -1.250476 4.413252 -2.194355 -0.042216 0.728438 1.211985 -3.229773 0.245395 2.255545 3.190562 4.690599 -0.108902 5.017322 1.771937 3.278725 1.388075 -3.263503 -0.532770 -2.944451 6.124603 -4.112884 2.831139 0.048999 2.062990 0.509697 -4.848878 -1.566780 -4.000082 -0.647031 1.070756 -3.208025 0.224482 -4.648481 1.018386 -1.148366 -2.823752 2.022563 0.288854 4.483503 1.656516 0.282450 -1.548073 -5.240570 1.693196 0.183459 3.579063 3.485210 -1.521599 -0.649026 1.042947 -2.539533 -3.568535 2.155601 1.841412 1.083089 -0.338120 0.655706 -1.990480 -0.519450 -1.306987 -0.092897 3.608523 -2.962816 1.907826 -2.292805 -1.003877 -3.089215 -3.012877 0.286413 -3.479271 2.703220 2.253814 -1.412626 -0.236380 0.463138 0.986822 -1.744892 -4.592517 0.456677 -1.250591 1.969077 6.287622 -2.025447 -0.956726 -0.368650 -1.139410 -1.329843 4.901265 0.735431 1.454722 4.862819 6.384444 1.215021 -3.823038 -2.061163 1.132518 3.176929 4.495135 3.594828 -5.092341 -2.933081 -0.487146 0.610911 -7.825324 0.984628 1.576788 3.550855 0.617259 -4.293618 1.247103 -2.420960 5.375424 2.988628 2.007156 1.623352 -0.394545 -4.082798 5.333548 9.337656 -1.456243 3.299730 -3.463090 -3.385699 5.378363 -4.157050 3.392400 0.928625 -0.404587 0.788085 -3.282535 -0.092986 4.846932 1.174137 1.977930 2.961600 1.208129 -0.764668 -7.389183 -6.361313 0.781600 4.462613 -0.066811 8.419250 -4.430628 -3.009392 -1.390379 5.756202 -0.371901 -1.209366 1.141868 -3.334332 3.246638 -7.229792 -6.666970 8.137407 8.107964 1.297443 0.051987 4.897702 3.981629 -2.583125 -2.812511 -2.432618 2.320330 1.578129 -2.379946 -0.590558 0.105183 -4.424555 -2.343591 1.123528 1.775244 2.870360 -1.998782 -1.805238 0.315295 -5.398114 -4.278602 2.804703 -4.856590 -1.310586 1.087316 -0.068916 -0.242924 2.533443 -1.533270 -1.137965 1.899163 -2.654821 0.993020 2.208744 3.929644 1.035025 5.209040 5.324602 0.202288 5.695069 3.136289 -2.084247 9.905130 -2.181849 1.269077 1.816915 2.603817 -0.189523 2.398399 2.072551 -2.598174 -1.888894 -5.591012 2.548185 0.384672 3.351690 -4.936222 -4.210630 -6.021609 -2.574537 3.108100 3.396249 -0.405056 9.335890 -0.884607 0.602834 -9.869362 -0.577005 3.966356 0.289719 4.166800 2.691363 -3.626057 -6.992163 -2.043047 -2.778889 0.001110 -2.286712 -4.132757 -3.325380 -2.424532 3.904007 -2.749956 2.294950 5.793402 -0.738198 2.248393 -2.445401 -0.130562 -2.283633 -2.178558 2.506122 0.865194 -4.776890 5.412453 -1.107993 11.425028 -2.193907 3.842838 -3.721235 1.789545 -0.510972 -2.588248 -1.091968 6.914182 3.225800 1.235487 -0.021227 0.187771 -2.283364 3.519205 -PE-benchmarks/reservoir-sampling.cpp__main = -0.020994 0.313998 1.282410 0.045342 -0.778300 -1.654721 -0.634629 -2.344976 0.769513 0.451201 1.270668 -0.130740 0.787946 -0.110285 0.041291 0.495678 0.529002 -0.645384 0.431599 -0.710129 -0.804319 1.529073 0.079416 0.391745 0.225238 -1.608826 1.045300 0.327324 0.620245 1.072179 0.390874 -0.100425 -0.426329 0.578222 0.046414 0.662676 0.296343 0.492716 -0.523502 0.602034 0.063633 -0.265102 0.978130 0.110805 1.105419 0.729926 0.346707 0.526415 -0.409689 -0.599275 -0.391650 0.568536 -0.855392 0.320041 -0.386495 -0.303344 0.109531 -0.433496 -0.273737 -0.063713 -0.380647 -0.617050 -0.794734 0.392808 -0.940995 0.415404 -0.833241 -0.583194 -0.167535 -0.104206 0.828133 0.319693 -0.109071 0.460969 -1.607896 0.078857 0.209601 0.354944 0.664619 -0.457910 -0.282038 0.023325 -1.064552 -1.057179 0.957604 1.031496 0.416546 -0.007899 -0.646014 -0.099418 -0.376359 -0.057553 0.659129 0.798673 -0.529723 -0.053022 -0.285604 -0.397295 -0.915883 -1.627015 0.398470 -0.511125 0.632725 -0.012553 -0.127717 -0.388242 -0.290685 0.142232 -0.612816 -1.004047 0.200481 -0.617919 0.373396 1.487889 -0.363062 -0.219310 -0.836075 -0.517949 0.131652 0.821679 0.613054 0.084910 1.197952 1.082929 0.353682 -0.847413 -0.930167 0.348598 0.629181 0.436734 0.573289 -1.032893 -0.737028 0.295037 -0.689479 -1.519698 -0.552254 0.268082 0.743525 -0.644660 -0.122153 0.541143 -0.668691 0.576261 1.027589 0.214242 0.255062 -0.060600 -0.924826 0.890471 1.619049 -0.283285 0.792742 -0.838695 -0.407955 1.127733 -0.632905 0.321754 0.464988 -0.216921 -0.810483 -0.326182 0.160668 0.769870 0.239535 0.574381 0.230955 0.556646 -0.541532 -0.884020 -1.410064 0.115694 1.586075 0.169698 1.254729 -1.158632 -0.218636 0.087572 1.160412 0.433425 -0.638494 0.439561 -0.619493 0.567607 -1.491190 -1.179170 1.679470 1.482076 0.942219 -0.003591 0.467336 0.954655 -1.153642 -0.621749 -0.551121 0.728231 -0.163245 -1.606767 -0.601430 0.189550 -1.073514 -0.427932 -0.298171 0.686255 0.604523 0.130950 0.477941 -0.330818 -0.555143 -0.772564 0.738259 -0.489925 -0.438143 0.180130 -0.075110 -0.087904 0.335841 -0.286970 0.362426 0.377853 -0.629172 0.423642 0.742660 0.395851 0.021708 1.577762 1.204181 -0.474435 0.485028 -0.168360 -0.289461 1.056285 -0.230438 0.547909 0.168366 0.538882 0.076145 0.221416 0.916294 -0.448264 -0.886766 -0.955940 -0.076250 0.464512 0.631449 0.130518 -1.026793 -1.766841 -0.032848 0.169392 1.702501 0.082447 1.594790 -0.203421 0.615835 -1.456991 0.241558 0.239409 -0.115266 0.657894 0.245246 -0.558057 -0.269175 -0.349953 -1.193024 -1.069257 -0.280227 -0.556043 -0.719650 -0.445085 0.419778 -0.491055 -0.195731 0.555466 -0.045045 0.648814 -0.090339 -0.091717 -0.925344 0.216653 1.195562 -0.210003 -0.726586 0.866592 0.186537 2.296354 -0.020970 0.667305 -0.088060 0.373098 -0.089277 -0.902186 -0.294882 1.281523 0.840906 0.113459 -0.000812 -0.117721 0.432757 0.538193 -PE-benchmarks/reservoir-sampling.cpp___GLOBAL__sub_I_reservoir_sampling.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = -1.216320 0.340045 6.957849 4.242724 -2.833952 -4.486909 -2.399014 -6.309139 3.924484 0.145073 3.796824 0.877305 1.164595 -1.318031 0.462115 -0.405657 0.721008 -2.442769 0.696276 -1.529466 0.565311 6.173068 2.948062 -5.515415 0.165449 -8.536947 3.958966 2.793311 3.302530 4.503999 -0.205037 -0.930937 -0.619885 3.616313 -2.079127 -0.404754 1.465636 0.580552 -2.644029 0.101738 1.531809 4.154758 3.349256 -0.873421 4.411745 1.211320 3.546678 1.222434 -2.329333 -0.573838 -3.085998 5.327628 -3.488804 2.583170 -0.114608 2.073874 0.103887 -4.518427 -2.298005 -5.067506 -0.177192 2.187245 -2.125385 0.042337 -3.787495 1.346820 0.313579 -1.633629 2.164777 1.221903 4.141357 2.182707 1.680798 -1.844285 -4.504279 1.907839 -0.751621 3.451790 2.280937 -2.188383 -1.343235 1.198842 -1.466382 -2.588110 0.976265 1.944291 0.333962 -0.872160 1.754365 -0.996242 -1.093003 -1.351208 -1.666598 2.928659 -2.399107 1.692300 -1.436099 0.106956 -1.719441 -0.745953 -0.462670 -3.270285 1.726861 3.081304 -0.012124 0.234485 0.609816 1.165049 -2.132662 -3.489921 1.065465 -0.411007 0.723902 4.635877 -1.713943 -0.030919 0.173907 -0.179854 -1.033316 4.589846 -0.833305 2.251318 3.987609 5.905641 0.529329 -2.943100 -1.156175 1.620096 3.780636 3.899035 3.369145 -5.064119 -2.345428 -0.977004 1.014700 -5.898148 1.282059 1.792034 3.348266 0.367674 -5.047470 1.393438 -1.883107 6.407532 2.905605 1.413895 1.137132 0.030389 -3.637987 5.360912 9.509953 -1.193354 2.732428 -3.633405 -1.787020 4.969317 -3.652828 3.259530 0.494752 0.636921 0.940643 -3.326210 -0.478407 3.841818 2.135696 2.429584 3.016902 0.978612 0.454665 -7.246296 -5.120678 -0.703460 3.029129 -0.688965 8.447208 -3.518589 -3.122695 -2.139058 3.896012 -0.466425 -0.961825 0.535391 -2.933685 2.395659 -6.997701 -5.823117 7.695540 7.431585 1.025594 0.920055 5.232716 3.660991 -1.513211 -1.918035 -1.075611 2.134832 1.118871 -1.377174 0.078015 0.250427 -4.179014 -3.457042 0.945861 1.248411 2.629189 -1.084836 -2.875917 1.604052 -5.611108 -3.238411 1.989487 -4.818264 -2.133363 0.998981 0.273843 0.171887 1.861991 -1.559730 -0.349550 2.672094 -2.329939 0.223269 2.100693 3.392307 1.251318 2.777222 4.876526 1.316706 5.167953 3.208989 -1.940138 9.004633 -1.135072 0.400591 1.498706 1.196179 0.096450 1.810153 0.631471 -2.019134 -0.952241 -5.075670 3.825787 -0.149234 3.212555 -5.128760 -3.899991 -3.599370 -2.374974 3.641505 2.626709 -0.344237 8.270345 -0.952242 0.290286 -9.884066 -0.666537 3.572529 1.110855 2.747586 2.706339 -2.709839 -7.286243 -1.269975 -1.392172 0.377693 -2.765489 -4.672396 -2.814772 -2.606160 3.693661 -2.552868 1.867110 6.442259 -0.330375 2.689348 -1.901568 -0.386102 -2.093901 -1.889848 0.410707 1.682813 -3.882954 4.685358 -1.791710 9.875983 -2.981576 2.992713 -3.536513 2.149703 -0.849571 -1.908640 -0.186062 5.938178 2.104214 0.719433 0.871498 -0.781126 -2.390861 3.441615 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -0.870616 0.730558 3.767011 2.820575 -2.782101 -3.044456 -1.709000 -3.748427 1.722869 -0.327323 1.964914 0.244489 0.174839 -1.405132 -0.151674 -1.000249 0.258770 -0.689669 -0.024985 -1.117772 -1.290265 2.315780 1.288577 -3.671460 0.686423 -4.099801 3.136367 2.093212 1.085487 2.210256 -0.270341 -0.384709 -1.191014 2.693539 -0.867752 -0.510667 1.056322 0.427512 -1.088841 0.449078 1.643710 2.320442 2.420100 -0.518494 2.389103 1.810801 0.783355 1.134720 -2.684292 -0.253650 -0.403361 2.034831 -1.764252 1.930663 0.585576 1.315849 0.581005 -3.080511 -0.772055 -2.611560 0.029105 0.134947 -0.840757 0.027367 -2.281547 0.137751 0.648146 -1.753601 1.937138 0.233107 1.946293 0.595686 -0.076007 -0.751149 -1.109441 0.933220 0.877824 2.320917 1.670797 -0.995843 0.014866 0.496196 -1.300740 -1.626604 -0.173052 0.373933 1.167223 -0.053070 0.882355 -1.364671 0.958514 -1.012275 -0.058856 1.894168 -0.714837 -0.098893 -1.390519 -0.405159 -1.926678 -1.391332 0.121422 -1.295521 1.601841 1.880721 -1.746356 -0.043249 0.890051 0.839472 -0.793613 -1.702951 0.321662 -1.179868 1.834503 2.910611 -0.158522 -0.780802 -0.391223 -1.150630 -0.403687 2.570650 -0.260628 0.266901 2.710484 3.784916 0.402107 -1.807046 -1.511778 -0.082367 1.315420 2.345285 2.098822 -3.413832 -1.203923 -0.309298 -0.143429 -3.376827 0.464537 -0.680138 1.901290 0.181028 -2.552751 1.247797 -1.658528 2.908921 0.637573 0.987679 0.360531 -0.345210 -2.192702 3.321575 4.350590 -0.509291 1.169217 -1.565310 -1.924551 2.233217 -1.167542 1.382563 0.723720 -0.905105 0.399525 -1.345753 0.265597 2.187826 0.507798 0.819353 1.748593 0.532996 -0.602190 -3.686524 -3.052605 1.092673 2.186175 0.053540 5.103346 -2.616303 -1.753030 -1.455107 3.417478 -0.445612 -0.332853 0.273931 -1.298159 1.675749 -2.513033 -3.250083 4.081418 4.079016 0.480147 0.289655 2.833339 1.180881 -0.847447 -1.267106 -1.135116 0.571017 1.096939 -0.306756 -0.169445 0.409438 -2.016542 -1.337648 0.876377 0.937517 2.152017 -1.362026 -2.132207 0.357406 -2.731541 -2.520775 0.784377 -2.255960 -0.030456 1.211457 -0.114359 0.167038 1.556783 -0.686415 -1.400222 -0.080020 -0.970681 0.632836 0.912373 2.390541 0.581386 2.080116 2.199567 0.132990 2.890986 2.127788 -0.922780 5.523124 -0.813218 1.150596 1.577261 1.440646 0.355548 1.019091 1.262820 -1.293713 0.284644 -3.115221 1.345685 0.103403 1.591539 -4.510570 -1.718125 -3.420013 -1.534350 1.571681 0.881545 -0.396921 4.508472 0.227026 -0.246494 -5.032069 -0.674831 2.077973 0.208697 1.711822 1.274686 -2.045906 -5.142792 -0.825692 -1.640945 0.020525 -1.538783 -1.247701 -1.641263 -0.243477 1.820197 -0.239980 1.320468 4.237055 -0.314468 0.356797 -1.591024 0.146861 -0.716780 -2.323975 0.480972 0.103656 -2.328828 2.728577 -0.118523 5.434837 -0.721538 1.703695 -1.726243 0.572440 0.312335 -1.365552 -0.431592 3.012589 0.864399 0.888762 0.493194 0.663105 -1.609504 2.593939 -PE-benchmarks/min-cost-path.cpp__main = 0.233221 0.293486 0.908846 -0.211350 -0.417772 -1.000039 -0.414642 -1.881117 0.558936 0.255886 0.817487 -0.222963 0.467196 -0.014409 0.038979 0.614515 0.325006 -0.432106 0.436377 -0.412418 -0.349167 1.062547 -0.168062 0.601262 0.123033 -1.217180 0.336122 0.117243 0.709611 0.486737 0.279026 -0.235528 -0.300620 0.256756 0.107351 0.455712 0.439927 0.222103 -0.719728 0.473205 -0.390670 -0.202137 0.478840 -0.127925 0.763876 0.203429 0.298310 0.423288 -0.078853 -0.268833 -0.354388 0.800558 -0.419106 0.175859 0.004199 -0.455280 -0.244210 -0.186076 -0.295524 0.395268 -0.440212 -0.420467 -0.381308 0.322894 -0.551529 0.355500 -0.626990 -0.253334 -0.058038 0.132889 0.591891 0.308795 0.168690 0.566374 -1.254845 0.148541 0.092379 0.340745 0.317056 -0.380324 0.232883 0.119361 -0.575104 -0.672137 0.705005 1.042917 0.208346 -0.254493 -0.557472 0.119833 -0.346306 -0.184452 0.432116 0.419697 -0.539555 -0.006980 -0.568532 -0.212663 -0.593327 -1.371415 0.146391 -0.351198 0.442746 -0.290149 0.201551 -0.173277 -0.014600 0.202938 -0.291487 -0.703370 0.184844 -0.115553 0.187569 1.254146 -0.276294 -0.064279 -0.544585 -0.264097 -0.298077 0.385051 0.443934 0.241662 0.620996 0.778820 0.337540 -0.472853 -0.737733 0.371177 0.448483 0.344665 0.418214 -0.742917 -0.444695 0.194493 -0.347394 -1.065333 -0.428060 0.215167 0.525317 -0.449444 0.225667 -0.107810 -0.361908 0.554353 0.540394 -0.074079 0.143990 -0.055275 -0.528144 0.659448 1.064516 -0.199144 0.568638 -0.605559 0.091657 0.350553 -0.443671 0.246683 0.243079 0.058766 -0.479889 -0.291457 -0.097821 0.420962 0.288448 0.364479 -0.050937 0.404815 -0.573251 -0.678338 -0.864794 0.046284 0.926264 -0.331176 0.479960 -0.604612 -0.491129 0.074703 0.854768 0.304368 -0.417823 0.444574 -0.674378 0.382836 -0.511885 -0.731660 1.057120 1.247220 0.592709 -0.101604 0.349308 0.810106 -1.390468 -0.509174 -0.281341 0.461623 -0.243130 -1.716305 -0.746700 0.120350 -0.667088 -0.260233 -0.192567 0.477343 0.340720 0.698420 0.628244 0.108220 -0.402066 -0.363224 0.769931 -0.215182 -0.295140 0.132333 0.037719 0.000412 0.380640 -0.519294 0.335393 0.601695 -0.524291 0.379046 0.568363 0.188519 -0.104737 1.090003 0.695923 0.017205 0.735065 -0.146275 -0.359465 0.418464 -0.024742 0.365300 -0.018533 -0.090244 -0.304179 0.158919 0.455640 -0.317981 -0.969982 -0.607289 -0.249139 0.038677 0.491444 0.714438 -0.998000 -0.899673 -0.042652 0.229309 0.883907 0.234486 0.925407 -0.259551 0.459184 -1.017568 0.175184 0.082892 -0.072359 0.531600 0.092290 -0.267953 -0.142395 -0.152899 -0.799197 -1.199205 -0.266656 -0.666679 -0.416916 -0.651989 0.680419 -0.249164 -0.261637 0.257562 0.203667 0.646722 -0.080521 -0.143112 -0.726401 0.355476 0.928002 -0.225164 -0.552203 0.485916 0.145004 1.830983 -0.074892 0.213413 -0.072778 -0.039239 0.034628 -0.541605 -0.072453 0.844091 0.638802 0.152718 -0.315089 -0.261126 0.123332 0.214343 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/box-stacking.cpp__max(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = -1.619870 -0.558962 2.380015 0.872140 -0.841247 -1.565434 -0.885957 -2.640006 1.752380 0.890481 2.210156 0.488312 1.544239 -1.597935 0.252879 -0.236100 0.844464 -1.656962 0.798625 -0.713726 0.979851 3.008585 1.512371 -0.771600 -0.168658 -3.104732 1.512901 0.106779 1.288060 2.346187 0.364040 -0.190194 -0.608845 0.976979 0.038721 1.174182 0.616980 0.711665 -0.545252 -0.104977 0.186641 0.493661 0.845601 -0.392639 2.470881 -0.023845 0.971644 0.143904 -1.064709 -1.390629 -0.517811 1.051121 -2.103375 0.452991 0.352203 -0.192531 -0.076164 -0.629694 -0.812776 -2.698832 0.078376 -0.398062 -0.790118 0.620453 -1.413484 1.074706 -0.965587 -0.073256 -0.111279 -0.398945 1.355350 1.199810 1.252724 0.547370 -1.842391 0.757171 -0.226068 0.554837 1.058772 -0.289939 -1.168102 -0.258804 -0.423880 -1.427174 0.975756 1.071190 -0.078075 0.037499 -0.253683 0.616267 -0.595126 -0.284973 -0.216689 0.922006 -1.399278 0.006474 0.501394 -0.066514 0.168862 -1.012318 0.008747 -1.500529 0.314228 1.626633 -0.066243 -0.634554 -1.504714 0.169104 -1.725771 -1.383592 0.973767 -0.528342 -0.009085 1.761681 -1.661703 0.630103 -1.175841 0.298500 0.850825 1.731891 0.043646 1.361809 1.185721 1.963895 0.445955 -1.483457 -0.474745 1.501958 2.139297 0.642504 0.689787 -1.734664 -1.063908 0.218795 -0.392638 -1.950391 -0.899087 1.192374 1.273587 0.504015 -1.662819 0.603213 -0.519371 2.186600 2.036142 0.183579 0.185628 0.381375 -1.674495 1.852934 2.857196 -0.575658 1.171330 -0.451956 -0.783460 2.497243 -1.962724 1.013451 0.379330 0.509181 -0.494378 -1.248817 -0.144627 1.395164 0.953905 1.833006 -0.249246 0.809124 0.650075 -2.682821 -2.381435 -0.447526 2.039839 0.438041 2.378266 -1.381127 -0.463313 0.003709 1.570094 0.788180 -1.287948 0.084432 -0.985482 0.867465 -3.495393 -2.340738 3.466959 3.069143 1.203170 0.645899 1.166263 2.194915 -1.293355 -0.166594 -0.570482 1.247052 -0.708063 -1.572976 -0.262592 0.571761 -1.964881 -1.935488 -0.082419 0.571541 0.838730 -0.261711 -0.315522 0.849334 -0.865237 -0.605761 0.978397 -0.962456 -1.532260 -0.481807 0.244486 0.897930 0.483299 -0.735769 0.861567 1.161077 -1.136699 -0.233148 0.998994 1.135057 0.859030 1.659670 2.051265 -0.222245 0.282531 0.148586 -0.707182 2.517609 -0.196106 0.163958 0.170630 0.421851 0.984152 0.330281 0.608354 -0.858113 -0.794035 -1.767049 0.450412 0.623132 1.519208 -1.605858 -2.502086 -1.780010 0.101009 1.114503 1.517876 0.004772 3.376561 -0.811467 0.124953 -3.230861 0.025258 1.318654 0.085773 1.335748 0.809064 -0.627730 -1.818813 -0.996626 -0.950887 -0.016302 -0.934101 -1.261801 -0.580502 -1.070746 2.250185 -1.214792 0.186949 1.033891 0.423376 1.870129 0.985168 -0.089718 -1.837556 0.430733 -0.492559 0.656747 -1.274467 2.183196 -0.214353 2.971731 -1.422965 0.515744 -0.900509 1.707455 -0.942169 -1.197060 0.068553 2.269656 1.823383 0.145966 0.103250 -0.353637 -0.426727 1.145821 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -10.451634 -0.060588 34.834375 18.617145 -13.282464 -27.722329 -13.907221 -34.050718 20.449547 2.551704 25.459710 6.512305 7.875654 -6.195252 6.751415 2.772063 2.543128 -13.484017 1.239191 -8.650662 2.479894 32.116082 22.490823 -22.449847 -0.040049 -36.059368 10.142911 13.298128 16.936235 21.335763 -0.686948 -5.994283 -3.124376 17.502007 -10.964334 6.024353 3.427452 4.326808 -12.141595 -1.004660 6.279686 14.063200 16.012333 -2.584667 28.230982 1.918496 23.144518 3.503274 -14.296710 -7.071194 -18.415314 36.553317 -23.385211 10.860400 0.590179 11.348628 -1.743814 -19.557866 -12.534605 -31.609084 -2.582709 8.499738 -15.883271 0.026397 -16.300181 9.312389 -2.691653 -6.174030 7.061338 3.461821 24.165364 8.487778 6.132751 -2.295384 -23.202269 6.587187 -6.108100 15.799719 12.986051 -8.870632 -9.652338 3.630441 -3.700736 -14.096740 10.889546 3.867835 1.158598 -2.763660 1.901007 1.933410 -8.581948 -5.780029 -6.615060 13.464918 -20.150142 10.392581 3.272090 -2.211020 -10.548640 -3.063642 -0.346810 -18.247386 7.054808 13.264382 5.261426 -3.885785 -11.261995 3.068644 -18.138416 -23.290764 5.383070 0.697628 -3.898995 19.965389 -18.418058 6.889368 5.694835 1.301844 -4.542552 23.449141 4.294934 14.383681 15.871816 29.366635 3.495104 -15.714914 -5.280397 6.301192 26.771803 20.408590 14.337912 -20.212648 -14.133176 -0.583041 2.340816 -33.423044 3.845771 20.900624 18.525834 13.447333 -26.095858 3.218195 -6.870094 31.020560 16.750877 9.322934 5.020695 -1.375441 -21.062361 24.452312 47.411781 -9.421863 21.356067 -7.284921 -8.373552 29.623568 -29.560709 17.112728 8.155629 2.895635 4.557850 -16.077015 -10.376398 20.601602 16.512161 15.597310 9.386881 6.488200 0.914624 -38.681257 -30.489263 -7.069562 19.150536 -3.188114 33.392715 -15.945092 -16.603017 -5.933931 23.360173 -6.150480 -11.592730 1.294533 -15.023754 13.512433 -37.932258 -27.831412 43.395490 42.973188 8.976381 7.124523 27.883939 26.239422 -13.187177 -8.029496 -6.423261 12.787732 3.287247 -10.492579 -1.015290 -1.941408 -23.621674 -16.950640 0.012187 6.592982 0.529848 -0.442086 -6.881203 14.558476 -23.837904 -7.543494 4.813822 -23.294136 -13.289434 0.724537 1.576575 1.573827 5.755206 -11.090690 1.442955 15.624618 -19.495770 1.615050 11.429767 16.841946 14.314289 24.144443 25.650755 3.822826 29.499642 10.835631 -11.369068 39.057646 -7.981532 3.044746 4.149941 10.658968 1.537397 8.195735 3.584431 -10.476079 -10.578200 -23.163944 14.465374 3.593468 20.152615 -16.063044 -27.758045 -19.304547 -9.501676 22.286628 14.379214 -6.583279 42.286067 -7.232259 5.351918 -53.320727 -0.637032 17.673377 1.132695 13.815571 12.729059 -11.478644 -39.086110 -9.736200 -5.482310 0.327699 -10.272502 -22.283495 -9.900099 -20.161085 23.924615 -21.181541 7.927120 20.518830 -0.349652 18.122811 -1.337273 -2.986668 -11.927993 -2.952420 6.837001 9.342099 -22.074009 27.118569 -6.198493 54.953296 -16.371862 17.398419 -17.380480 12.512175 -5.933559 -6.149633 0.054246 31.830435 22.383897 2.591144 0.291084 -0.633374 -12.019859 12.280196 -PE-benchmarks/box-stacking.cpp__main = 0.162516 0.328757 1.156417 -0.065106 -0.566912 -1.277334 -0.550197 -2.192936 0.726531 0.350507 1.025506 -0.199597 0.600843 -0.069901 -0.004689 0.595435 0.356315 -0.567701 0.476960 -0.516511 -0.573535 1.432131 -0.030501 0.509001 0.125830 -1.547206 0.676557 0.188244 0.808014 0.771849 0.289694 -0.209758 -0.287419 0.450813 0.044812 0.539334 0.354519 0.382071 -0.666540 0.530154 -0.199624 -0.215904 0.704199 -0.053410 0.939735 0.400818 0.375903 0.438849 -0.201892 -0.382195 -0.436995 0.800220 -0.667487 0.243819 -0.164279 -0.405447 -0.119728 -0.314514 -0.328555 0.215680 -0.465459 -0.475776 -0.573741 0.365953 -0.776398 0.412033 -0.746606 -0.401847 -0.095711 0.108970 0.758272 0.419066 0.134703 0.510326 -1.510841 0.207470 0.142506 0.374171 0.480452 -0.424817 0.036135 0.133762 -0.793170 -0.898518 0.878266 1.116114 0.287791 -0.200703 -0.536344 0.013764 -0.399547 -0.135113 0.498149 0.656988 -0.566034 0.034331 -0.535650 -0.263738 -0.740546 -1.550432 0.187942 -0.514977 0.550026 -0.142002 0.084728 -0.250825 -0.064198 0.174164 -0.411449 -0.919310 0.171224 -0.325667 0.272164 1.432151 -0.324830 -0.101743 -0.627751 -0.352325 -0.181289 0.592951 0.523275 0.223979 0.944411 0.957780 0.371579 -0.663473 -0.821734 0.412283 0.550485 0.418369 0.522709 -0.946666 -0.595827 0.199907 -0.386438 -1.364772 -0.465009 0.294966 0.599034 -0.577707 0.070570 0.172687 -0.468170 0.648462 0.805786 0.007608 0.221705 -0.057908 -0.698113 0.844690 1.457561 -0.242467 0.679876 -0.798010 -0.171566 0.807798 -0.634336 0.362825 0.303188 0.007170 -0.607154 -0.410878 0.030462 0.636329 0.226770 0.472749 0.122846 0.446716 -0.534313 -0.865803 -1.136312 0.077741 1.237572 -0.159802 0.916787 -0.861833 -0.423603 0.127496 1.018751 0.406007 -0.478737 0.463981 -0.704621 0.501246 -1.025786 -1.044714 1.403147 1.424107 0.721729 -0.042099 0.466753 0.957145 -1.326473 -0.623466 -0.425320 0.617434 -0.179421 -1.750929 -0.746238 0.155110 -0.875284 -0.356137 -0.230168 0.553320 0.506413 0.481517 0.525897 -0.084085 -0.550582 -0.578792 0.846221 -0.412753 -0.394744 0.140599 0.025212 -0.074827 0.422713 -0.445588 0.362744 0.538424 -0.575872 0.420091 0.677291 0.271703 -0.082144 1.323328 1.028621 -0.188063 0.690246 -0.096883 -0.299098 0.775432 -0.141496 0.401883 0.085965 0.169064 -0.207364 0.244853 0.649148 -0.401924 -0.990282 -0.815649 -0.097860 0.185898 0.532366 0.458129 -1.064010 -1.260171 -0.100256 0.277088 1.228229 0.227535 1.321639 -0.262078 0.530583 -1.348601 0.200309 0.181129 -0.063829 0.708285 0.202892 -0.411132 -0.229077 -0.296366 -0.921696 -1.161152 -0.338139 -0.758394 -0.565006 -0.634810 0.613860 -0.403827 -0.190272 0.441892 0.130600 0.688181 -0.138791 -0.125748 -0.909629 0.319836 1.071025 -0.214346 -0.644760 0.690483 0.103301 2.152045 -0.147117 0.426570 -0.149254 0.154380 -0.018729 -0.722554 -0.135080 1.124082 0.710505 0.137372 -0.211036 -0.232977 0.208189 0.387745 -PE-benchmarks/detect-cycle-in-a-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = -0.190463 0.133728 1.257446 0.344584 -0.623937 -1.634691 -0.524524 -2.098261 0.871996 0.435050 1.271753 0.118420 0.802396 -0.328718 0.149199 0.433836 0.307195 -0.516292 0.228120 -0.546992 -0.508622 1.492837 0.304550 -0.067300 0.095507 -1.339811 0.941518 0.522484 0.604105 1.029258 0.271443 -0.105256 -0.255992 0.649502 -0.206666 0.636000 0.077557 0.559018 -0.337703 0.175353 0.190510 -0.149499 0.851270 0.131024 1.244945 0.455452 0.705696 0.300718 -0.373422 -0.545387 -0.572718 0.839811 -1.012278 0.362504 -0.529398 -0.106095 0.148115 -0.413232 -0.231360 -0.717346 -0.144551 -0.287690 -0.956082 0.160444 -0.839813 0.363495 -0.454319 -0.572355 -0.198703 -0.073011 0.900504 0.270012 -0.117155 0.180575 -1.558279 -0.030828 0.060001 0.267160 0.758260 -0.330474 -0.460785 -0.178102 -0.779005 -0.926536 1.082913 0.677311 0.318355 0.215147 -0.524810 0.010139 -0.455651 -0.017515 0.470753 0.781011 -0.597657 0.117777 0.165294 -0.229401 -0.681284 -0.994430 0.436172 -0.638574 0.478023 0.172227 0.137989 -0.306369 -0.438318 0.085498 -0.840168 -1.030934 0.158467 -0.608223 0.190752 1.059625 -0.496824 -0.037994 -0.367325 -0.326129 0.191690 0.861477 0.598592 0.189151 1.098097 1.016099 0.326319 -0.922591 -0.718886 0.443326 0.840848 0.667107 0.327549 -0.964183 -0.641511 0.257628 -0.570045 -1.577515 -0.297449 0.635620 0.699155 -0.326661 -0.551899 0.645831 -0.479060 0.655105 1.093256 0.351615 0.235093 0.114575 -0.931481 0.774849 1.729152 -0.283532 0.812933 -0.504165 -0.379479 1.222461 -0.900372 0.391682 0.498315 -0.217113 -0.474615 -0.386455 -0.012422 0.861794 0.376970 0.693497 0.220427 0.542466 -0.502100 -1.117232 -1.406991 -0.156200 1.558408 0.280655 1.422191 -1.056361 -0.315646 0.136512 1.031399 0.076870 -0.586175 0.298864 -0.622598 0.696449 -1.704612 -1.200865 1.752822 1.342880 0.947999 0.098941 0.698793 0.985333 -0.753018 -0.445793 -0.403325 0.605818 0.062939 -1.181880 -0.305798 0.021816 -1.203169 -0.570215 -0.229293 0.480847 0.103380 0.096337 0.370351 -0.187058 -0.499520 -0.569442 0.403600 -0.632888 -0.429982 -0.056897 0.018349 -0.079945 0.201223 -0.363062 0.353095 0.437553 -0.693521 0.342265 0.628575 0.359932 0.339388 1.568077 1.274309 -0.520699 0.657187 -0.064412 -0.246828 1.189198 -0.225265 0.390486 0.265978 0.741112 0.276497 0.281020 0.776366 -0.523552 -0.570331 -1.054044 -0.019327 0.657362 0.741133 -0.002710 -0.856839 -1.525029 -0.153963 0.329575 1.499823 -0.195592 1.678486 -0.262881 0.625189 -1.692185 0.198749 0.355525 -0.206954 0.561228 0.350480 -0.536606 -0.666724 -0.448492 -0.757877 -0.894658 -0.285486 -0.521750 -0.592057 -0.617223 0.344575 -0.864639 -0.036060 0.483969 -0.077601 0.616799 -0.325330 0.056043 -0.724280 0.261525 0.891409 0.010910 -0.876803 0.874329 0.055016 2.382786 -0.277690 0.859055 -0.328675 0.724567 -0.348234 -0.690522 -0.236157 1.350073 0.948549 0.088995 0.083996 0.075203 0.196868 0.621834 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = -2.365601 0.916096 9.609395 5.652558 -5.449492 -8.392467 -4.103863 -13.468868 6.882679 1.623180 7.643428 1.508585 3.200897 -3.073922 0.852802 0.520727 2.008207 -3.200174 0.601066 -3.186558 -0.876269 9.317061 3.525029 -5.171764 0.255109 -9.690140 4.564831 3.571298 4.862052 4.766358 1.521098 -1.353224 -2.688627 5.017013 -2.141233 2.138699 1.910123 2.037450 -4.448613 -1.140782 1.562955 2.713480 5.688590 -0.343313 8.800458 0.054985 5.464502 1.840865 -4.250306 -1.811818 -3.467936 9.041021 -5.710672 3.572531 1.524168 1.014549 0.262360 -5.349928 -2.178311 -5.765203 -0.997134 -0.119003 -4.512679 0.507159 -4.845652 2.221093 -0.935004 -2.401836 1.474820 -0.054562 6.399090 1.462790 1.077716 -0.371963 -7.972181 1.181599 -0.504700 3.243741 4.871925 -0.576375 -1.060428 -0.507455 -2.939308 -5.090004 4.321998 3.360730 0.488962 0.300724 -1.309153 -0.207019 -1.332685 -2.731276 0.554578 4.375247 -5.819393 1.594825 -0.131624 -1.600251 -3.809968 -4.038634 1.416938 -4.565315 3.190486 2.180488 -0.280931 -0.954575 -1.251314 0.648713 -4.474624 -5.904640 1.879026 -1.546682 1.839568 7.785376 -3.855005 -0.335319 -1.060082 -1.335112 -1.231916 5.869946 2.366246 2.931277 5.880865 8.424234 2.109687 -5.293836 -3.307268 2.937913 5.805995 5.532749 3.246769 -6.999385 -3.622284 1.388026 -0.350098 -9.868291 -0.794246 4.062696 5.571640 1.621776 -5.186973 0.415191 -2.206889 7.312221 4.413588 2.317019 1.197980 0.383207 -5.718896 6.255571 11.473737 -1.542086 4.944051 -2.343999 -2.053335 6.340574 -6.919330 4.118443 2.208685 -0.141401 -0.588396 -3.679410 -1.387374 5.632324 2.772372 3.090923 0.933364 2.962323 -2.636444 -10.117486 -9.788419 -0.187792 7.346431 0.496602 9.448501 -5.765423 -4.714375 -0.903254 7.268953 -0.364563 -3.411428 2.394452 -5.172852 4.713115 -8.547423 -7.959572 11.870481 11.317816 3.631244 -0.008653 6.805998 5.544858 -5.941680 -3.895552 -2.808540 3.279580 1.231467 -5.147674 -0.812894 0.139633 -7.167047 -4.515974 0.289720 2.550202 2.304227 -0.335401 0.694101 1.896349 -4.880735 -3.662866 3.416736 -4.101060 -2.931718 0.091659 0.590448 0.611138 2.984967 -2.883957 -0.096760 3.066307 -4.430697 1.102276 3.476148 4.256707 1.887596 8.490101 7.271364 -0.156108 8.152051 1.954303 -3.232242 10.855966 -2.163498 1.999678 1.540024 2.437815 0.699976 2.049795 3.018465 -3.719594 -3.304553 -6.619046 1.496804 0.947241 6.096222 -5.371865 -7.532323 -7.940926 -2.309053 3.880458 4.345154 -1.243952 11.762866 -2.604969 1.843074 -13.932134 0.054844 5.161938 -0.440377 4.524720 2.769949 -4.312424 -8.487008 -2.561919 -4.230667 -2.839928 -2.523801 -4.829951 -3.641591 -5.162185 6.934058 -4.624449 1.312185 6.274809 -0.706272 4.359667 -2.552053 -0.003590 -3.377254 -0.925400 2.833589 0.651332 -6.833195 7.504545 -0.906530 16.626100 -3.288474 4.434880 -3.919769 3.630740 -2.211629 -3.909804 -0.850137 8.902655 6.168876 1.254700 -0.825325 0.153167 -3.027757 4.210928 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -1.297330 1.068339 6.522564 4.347517 -4.299202 -6.166542 -2.837206 -7.740623 3.625936 0.226316 4.859486 0.667165 1.673064 -1.632897 0.562884 -0.439612 1.446280 -1.482264 -0.146912 -2.386370 -1.979413 5.276249 2.249214 -4.449429 0.785548 -6.312343 3.986443 3.181837 2.344228 3.558122 0.654340 -0.579542 -1.992860 3.478063 -1.693441 0.591129 0.868365 1.054158 -2.542675 -0.159308 2.236018 1.956325 4.235857 -0.210331 4.577401 1.508881 3.253389 1.574335 -3.559735 -1.278763 -2.498927 5.251468 -3.503485 2.521964 0.333771 1.484137 1.103470 -4.128653 -1.319016 -3.897937 -0.380710 -0.075554 -3.025892 0.095741 -3.598789 1.158186 -0.431936 -2.348242 1.996428 -0.151271 3.991440 0.556655 -0.164888 -0.823814 -4.132854 0.651126 0.093979 2.891897 3.087621 -0.753634 -0.561469 0.152531 -2.523123 -3.020987 2.086976 0.853269 1.267651 0.026160 -0.417700 -1.053923 -0.112163 -1.361770 0.429865 2.665357 -3.132901 0.879944 -0.994860 -1.187892 -3.348948 -2.583393 0.913388 -2.629885 2.189769 2.211870 -1.669539 -0.504644 -0.427242 0.449589 -2.476169 -4.151874 0.528943 -1.510254 1.426780 5.228622 -2.123015 -0.900185 -0.517242 -1.355927 -0.704084 4.179522 1.177725 1.416742 4.328785 5.716326 0.993478 -3.421327 -2.281029 0.780641 3.465456 3.773011 2.895505 -4.592399 -2.709379 0.363248 -0.692878 -6.793288 0.247352 1.624261 3.978369 1.329927 -4.295702 1.571101 -2.253995 4.467841 2.284341 2.130310 0.912645 -0.269771 -3.996524 4.450521 7.634992 -1.327144 3.373703 -2.019282 -2.433540 4.599808 -3.297510 2.150840 1.716215 -0.786241 -0.031666 -2.204897 -0.706393 3.890838 1.570868 1.797799 2.138186 1.641941 -1.519124 -6.740104 -6.242570 0.613840 4.614403 0.390906 7.052047 -4.366457 -2.535107 -1.112982 5.399418 -1.244921 -2.113297 0.950752 -2.825732 2.905652 -5.604063 -5.470894 7.676969 6.894823 1.361521 0.415925 4.613335 3.220935 -3.038122 -2.216159 -2.432183 2.073807 1.530255 -2.129670 -0.137381 0.084152 -4.461041 -2.366337 0.617379 1.954188 1.939289 -1.563694 -0.911527 0.533691 -4.092478 -3.272322 1.938707 -3.523637 -1.056372 0.953290 -0.264219 0.104227 1.958655 -1.321020 -0.976891 0.996570 -2.724969 0.702690 1.876703 3.478201 1.455203 5.699994 4.510167 -0.290407 5.081399 1.942239 -2.238867 8.356600 -1.778184 1.534855 1.197649 2.975224 0.530225 1.609908 2.386738 -2.240528 -1.760459 -4.916602 1.369679 0.627702 3.338266 -4.777710 -3.686302 -6.159409 -2.007470 2.490263 3.527979 -1.119237 7.963544 -1.133710 0.567320 -8.976582 -0.303922 3.460258 -0.276188 2.847362 1.935067 -2.992623 -6.525053 -1.570953 -2.895308 -0.689280 -1.695088 -2.808254 -2.935191 -2.384459 3.583615 -2.496291 1.321124 5.017604 -0.660941 1.991599 -1.504767 -0.114268 -1.544428 -1.680714 2.015848 0.725348 -4.382098 5.425490 -0.347541 10.617877 -1.211568 3.409654 -2.752906 1.683283 -0.638303 -2.684463 -0.998549 5.703571 3.642842 0.917558 0.338638 0.753723 -1.821439 3.353624 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 1.297552 1.136404 2.046929 0.095070 -1.444712 -2.481003 -0.664543 -4.303583 1.442651 0.093532 1.076827 -0.132742 0.660262 -0.322968 -0.045702 1.511780 1.020329 0.064439 0.233218 -1.149535 -0.667630 1.806188 -1.114451 0.424577 0.644250 -2.450937 0.313327 1.124690 1.924981 0.166233 0.877918 -0.491401 -1.114703 0.665314 -0.130758 0.199944 0.987395 -0.136952 -2.830331 0.723608 -0.925493 0.388025 1.431624 -0.242569 1.450031 -0.038921 0.973980 1.371811 -0.087669 -0.038925 -0.820567 2.718117 0.287736 0.936711 0.514515 -0.651987 -0.603364 -0.837694 -0.112390 2.019408 -0.858300 -0.288422 -0.694349 0.318467 -1.096875 0.116595 -0.643334 -0.850424 0.301273 0.108578 1.008325 -0.165997 -0.309815 0.077055 -2.852756 -0.093340 0.268571 1.194568 0.953556 -0.063472 1.307093 -0.070425 -1.202419 -1.105760 1.066381 2.347384 0.317860 -0.181088 -1.600374 -0.790982 -0.442020 -0.922625 1.170292 0.445050 -1.820886 -0.196561 -1.917526 -0.646906 -1.673409 -2.536351 0.618964 -0.049679 1.047358 -1.782993 0.600628 0.131128 0.999866 0.225542 0.057255 -0.646004 0.215567 -0.007821 0.844124 3.484553 0.111123 -0.942729 -1.211749 -0.782856 -1.817106 0.786865 0.764691 0.013169 1.423197 1.727044 0.900893 -0.864043 -1.608802 0.675574 0.319293 1.222649 1.080434 -1.536921 -0.671558 0.456762 -0.458090 -2.410737 -0.435142 -0.088106 1.348176 -0.699335 0.989247 -1.137770 -0.831924 1.219223 -0.020471 -0.474795 0.458576 -0.283429 -0.910592 1.272657 2.237815 -0.129437 0.830286 -1.503469 0.486513 -0.351800 -0.295305 0.485058 0.268561 -0.567963 -0.784998 0.005013 -0.035196 0.763922 0.095434 -0.233484 -0.018399 0.866326 -1.953731 -1.446012 -2.120185 0.432219 1.059258 -0.779480 1.205890 -1.125026 -1.473347 -0.707764 1.799985 -0.041395 -0.466744 1.557968 -2.094069 0.960679 0.507295 -1.111680 2.151876 3.048993 0.805596 -0.842971 1.244550 0.866395 -3.343922 -1.602830 -0.363647 0.253395 0.301471 -3.648133 -1.152346 0.306018 -1.380822 -0.250206 0.047622 0.975929 0.861387 1.792649 2.020647 -0.173156 -1.145016 -1.398484 1.733214 -0.019528 0.364395 0.749757 0.086510 -0.315597 1.439591 -1.327145 -0.278638 1.071541 -0.786246 0.943565 0.638503 0.731813 -0.494635 1.856802 0.928958 0.692142 3.393991 0.047284 -1.307901 1.481125 -0.078871 1.146726 0.057405 -0.555471 -1.022507 0.500064 0.511821 -0.819328 -1.437669 -1.295435 -0.769006 -0.373435 1.014384 1.067668 -1.745367 -1.882223 -0.581430 -0.006388 0.930496 0.258749 1.657099 -0.948598 0.704430 -2.501306 0.305688 0.326657 -0.086168 1.014893 0.191989 -1.096543 -0.557089 0.137706 -1.975218 -2.844430 -0.299775 -1.361518 -1.147340 -1.321495 1.978751 -0.430549 -0.380187 1.577953 -0.073319 1.127514 -1.575151 0.040672 -0.744683 0.024683 2.053553 -0.615966 -1.410503 0.567759 0.218956 4.121384 0.418466 0.717399 -0.161584 -0.646820 0.380832 -1.792921 -0.640519 1.574711 0.993316 0.533581 -0.772019 -0.457901 -0.172599 0.753456 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/detect-cycle-in-a-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/detect-cycle-in-a-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/detect-cycle-in-a-graph.cpp___GLOBAL__sub_I_detect_cycle_in_a_graph.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = -3.101960 2.161200 17.702792 10.270372 -6.365829 -10.790608 -5.579116 -14.612810 7.821048 0.220098 9.923341 1.223699 2.103845 -1.829202 1.769309 -1.558673 0.273103 -4.867343 1.971944 -3.545540 0.089376 12.268822 9.002784 -12.520908 0.071213 -18.484978 10.633455 7.041449 8.161187 10.268442 -0.208935 -2.465049 -1.065911 9.444326 -5.003278 -1.118271 0.870053 2.084213 -4.713847 1.226799 4.219042 10.123529 6.517736 -0.981005 9.821076 4.627513 9.532877 2.198151 -5.973324 -1.061468 -7.743259 14.077628 -10.191674 4.935126 0.192220 5.366381 0.151029 -10.959329 -4.713280 -12.750984 0.044210 4.965244 -6.946857 0.953810 -10.526305 3.057239 -2.495982 -3.719032 5.110602 4.051813 9.848817 4.524086 2.455681 -4.000889 -8.880832 4.912920 -2.158155 8.124451 6.437145 -6.726636 -3.338625 4.247702 -2.670731 -6.709592 2.710553 1.860417 1.287573 -3.290791 5.393529 -2.446750 -2.987119 -2.647651 -4.563478 7.748213 -5.736404 5.970187 -3.804258 -0.239478 -4.956852 -1.793093 -1.046599 -9.290795 4.488093 8.034094 -1.245035 -1.095014 -1.571397 1.813281 -4.475712 -10.314739 0.337161 -1.003404 3.341274 10.564870 -5.996824 1.125642 0.988998 -0.034328 -1.194875 11.372809 0.389171 5.250856 9.627798 13.902071 0.323456 -6.898843 -2.332775 2.361656 8.004268 10.258921 8.135820 -11.707850 -6.656641 -3.287510 3.823963 -14.310386 5.117124 5.028259 6.098742 3.331336 -12.570658 3.097243 -4.312902 13.342402 7.364831 5.243002 2.970083 -0.686777 -7.425081 12.192477 21.841007 -3.942605 6.671096 -6.501017 -6.411322 13.146155 -10.154763 7.532143 2.718770 2.132032 3.392609 -8.476610 -2.950107 10.200471 5.507699 6.333502 10.267355 1.563475 3.415811 -17.008968 -10.649342 0.484433 6.940656 -2.675070 17.646673 -7.716739 -5.291856 -3.199622 10.038622 -0.573699 -2.424408 -0.669099 -5.351699 5.358988 -16.173832 -13.525967 15.663021 15.665159 0.579856 1.004958 10.577812 10.858383 -3.570392 -4.088507 -4.314682 6.181210 0.207640 -0.816282 0.689702 0.146350 -9.793338 -5.821820 2.400470 3.178614 6.300548 -4.860839 -9.490548 4.176756 -14.021628 -7.651572 3.632826 -11.177968 -4.896106 1.149857 -0.026620 0.951238 3.335701 -3.825527 -1.076655 6.277426 -6.415825 -0.474595 5.446760 8.975275 3.844058 9.505037 8.505604 3.351403 10.234069 8.267163 -4.095919 21.679267 -1.683748 0.825987 3.691285 5.029783 -0.200566 5.037792 1.404871 -4.911166 -4.950960 -12.404238 8.430554 0.035319 7.400127 -10.614648 -7.713686 -9.112223 -6.253008 10.213090 6.654273 -0.970214 20.081572 -0.546081 0.350044 -20.139214 -1.852019 8.096477 0.702017 8.399376 6.962782 -6.780202 -14.575347 -4.833654 -1.884621 3.310607 -5.639024 -9.360147 -6.871135 -4.493835 7.894478 -5.878788 5.248496 11.952928 -0.061616 4.373814 -1.775969 -0.954238 -3.785585 -4.448929 2.940398 4.602431 -11.012407 12.353759 -4.439497 22.661834 -7.624211 7.725286 -9.523569 2.845800 -1.005630 -1.507141 -0.667877 14.705083 6.228082 2.370157 1.184618 -0.131101 -5.844581 7.385685 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.289582 0.213889 0.964809 -0.225698 -0.430746 -1.071593 -0.401733 -2.259521 0.796463 0.366732 0.929757 -0.147911 0.607951 -0.269410 -0.010305 0.732567 0.334690 -0.477413 0.451879 -0.419743 -0.260072 1.309883 -0.329122 0.733648 0.089149 -1.373695 0.363170 0.136041 0.925110 0.487778 0.364817 -0.281624 -0.340899 0.246055 0.154186 0.605678 0.458466 0.279561 -0.847651 0.325734 -0.451151 -0.343475 0.529608 -0.178658 0.979409 -0.099052 0.426768 0.388820 0.012986 -0.302667 -0.430456 0.942103 -0.460615 0.177439 0.013304 -0.628793 -0.318108 -0.102797 -0.279312 0.511207 -0.465113 -0.495732 -0.459523 0.317174 -0.550173 0.382624 -0.635778 -0.229197 -0.134410 0.029216 0.632216 0.353306 0.222986 0.593565 -1.572446 0.110080 0.110224 0.249161 0.402928 -0.218153 0.317899 -0.042238 -0.607432 -0.722257 0.956767 1.300369 0.138257 -0.190801 -0.769687 0.190573 -0.434680 -0.197289 0.564815 0.430650 -0.762682 -0.088320 -0.601023 -0.219391 -0.523137 -1.493400 0.238533 -0.414876 0.464487 -0.395848 0.264710 -0.116893 0.078977 0.159537 -0.372413 -0.730380 0.184748 -0.179035 0.280680 1.443163 -0.313933 -0.118320 -0.683338 -0.241097 -0.360679 0.321472 0.504094 0.292586 0.746249 0.793725 0.510447 -0.623715 -0.850346 0.646493 0.518638 0.401892 0.263393 -0.802017 -0.395000 0.251915 -0.354857 -1.275112 -0.563539 0.256400 0.571525 -0.511954 0.353676 -0.207116 -0.298884 0.636434 0.659588 -0.216147 0.158357 0.117189 -0.591960 0.674460 1.155727 -0.130962 0.553738 -0.677904 0.176883 0.317912 -0.546217 0.269582 0.218869 0.093536 -0.523957 -0.342914 -0.064104 0.465455 0.175020 0.419539 -0.284749 0.533263 -0.707644 -0.787245 -1.056614 -0.020953 1.085263 -0.233557 0.536906 -0.678550 -0.576358 0.163419 0.902748 0.364493 -0.459481 0.616466 -0.896137 0.517803 -0.537982 -0.852151 1.225908 1.399751 0.738964 -0.114749 0.419385 0.880380 -1.638300 -0.514759 -0.281576 0.467399 -0.120051 -2.104374 -0.772607 0.131527 -0.790065 -0.409144 -0.187814 0.451198 0.256706 0.856741 0.958322 0.085401 -0.271622 -0.382593 1.005619 -0.165565 -0.310241 -0.006429 0.114408 0.010223 0.514269 -0.653475 0.448111 0.678861 -0.521455 0.464003 0.612029 0.108014 -0.145174 1.178744 0.879934 -0.067646 0.901592 -0.250631 -0.366555 0.358998 -0.019184 0.353179 0.021111 -0.202291 -0.263735 0.217794 0.490557 -0.435182 -0.964159 -0.683685 -0.404837 0.072827 0.599582 0.890927 -1.101058 -0.984942 -0.064569 0.180072 0.877050 0.284492 1.052717 -0.427970 0.526337 -1.187880 0.180028 0.131456 -0.079508 0.661133 0.055358 -0.291600 -0.064114 -0.202161 -0.844110 -1.463668 -0.286813 -0.724826 -0.470161 -0.896913 0.908728 -0.396269 -0.292077 0.198675 0.238974 0.789960 -0.299772 -0.051367 -0.845766 0.531174 0.887515 -0.218665 -0.633182 0.491848 0.134083 2.059844 -0.161082 0.218771 -0.102351 0.178459 -0.140104 -0.740856 -0.068541 0.938816 0.759523 0.186238 -0.462222 -0.313547 0.063596 0.303950 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp___GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/strongly-connected-components.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = -0.923962 0.405974 5.840504 2.231109 -2.947535 -5.322836 -2.413919 -9.436253 4.742135 1.435949 4.886772 0.920738 2.542069 -2.311487 0.382918 1.364319 1.403314 -2.417675 0.675623 -2.038505 -0.169238 6.634188 1.252618 -1.431332 0.124800 -6.849022 2.296188 1.825376 3.780885 2.903856 1.235596 -0.970027 -1.689589 2.649860 -0.834684 2.142802 1.555380 1.276315 -3.240777 -0.582125 0.202905 0.904272 3.344900 -0.419677 5.852740 -0.776523 3.389884 1.174068 -1.750435 -1.518928 -2.338930 5.836512 -3.299921 1.901642 0.829206 -0.251139 -0.412618 -2.614295 -1.349841 -2.230626 -1.051561 -0.486832 -2.756590 0.528122 -2.749951 1.610893 -0.962217 -1.144412 0.308612 -0.436337 3.899591 1.139780 0.970564 0.505729 -6.124712 0.627996 -0.286153 1.684699 2.909679 -0.106358 -0.436599 -0.647902 -1.980482 -3.358757 3.540906 3.584676 0.101339 0.149193 -1.953423 0.359175 -1.511220 -1.610725 0.961481 2.566958 -4.391357 0.381607 -0.310695 -1.031319 -2.223873 -3.348661 1.061008 -2.767341 1.851832 0.490105 0.542172 -0.656968 -0.709574 0.168126 -2.917717 -3.488923 1.298409 -0.940160 1.019032 5.531190 -2.501764 -0.103242 -1.442039 -0.767543 -1.085782 3.237991 1.637861 1.899565 3.840970 4.918906 1.875929 -3.456450 -2.542824 2.723663 3.860236 3.039230 1.571823 -4.395246 -2.067027 1.117435 -0.560403 -6.476560 -1.263882 2.623157 3.523486 0.430400 -2.060858 -0.173341 -1.131506 4.542803 3.107830 0.429553 0.736958 0.572331 -3.643990 3.795723 7.256391 -0.814747 3.122105 -2.008469 -0.576330 3.644585 -4.481947 2.487524 1.336243 0.161565 -1.064361 -2.211641 -0.685435 3.333002 1.407633 2.238310 -0.427613 2.204454 -2.004367 -6.046720 -6.483128 -0.614255 4.794269 0.161737 5.327489 -3.576095 -3.012149 -0.260623 4.661072 0.126295 -2.368293 2.114604 -3.917725 3.012680 -4.769441 -4.916647 7.740219 7.750279 2.792791 0.094620 4.161044 3.909347 -5.024194 -2.298823 -1.467550 2.116544 0.735625 -5.418718 -1.069015 0.236009 -4.579114 -3.155880 -0.275959 1.598795 0.980004 1.280678 2.152190 1.197269 -2.414155 -2.103765 2.944256 -2.048196 -1.963654 -0.265577 0.673608 0.224033 2.204275 -2.362147 0.679940 2.568855 -2.809200 1.143399 2.445626 1.989910 0.979243 5.322915 4.839129 -0.281360 5.410047 0.399732 -1.905030 5.389967 -1.106248 1.206276 0.738855 0.772428 0.254495 1.380615 1.751957 -2.425231 -2.464237 -4.022209 0.310493 0.534443 3.731255 -1.305886 -5.335602 -4.900001 -1.225744 2.076155 2.979988 -0.343707 7.176780 -2.136846 1.535095 -8.772591 0.323904 2.798455 -0.232903 2.854630 1.393982 -2.323470 -4.294688 -1.525859 -2.891435 -3.492874 -1.500180 -3.411827 -2.230012 -4.233651 5.122562 -3.315982 0.299637 3.170702 0.146802 3.439262 -1.727034 0.112734 -3.014962 0.560953 2.050924 0.186998 -3.934069 4.141198 -0.401438 10.422377 -2.188992 2.523365 -1.977363 2.664790 -1.607580 -3.253927 -0.414187 5.507786 4.087000 0.694695 -1.107546 -0.508889 -1.508658 2.569020 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = -0.136551 0.019307 1.134899 0.234881 -0.654200 -1.047805 -0.426649 -1.858618 1.047131 0.355915 0.806893 0.103078 0.622274 -0.863041 -0.139246 0.558119 0.479964 -0.265642 0.103654 -0.494829 -0.062082 1.092750 0.065110 -0.176098 0.335946 -1.393835 0.743612 -0.152284 0.637897 0.920126 0.427687 -0.169397 -0.401302 0.497844 0.670245 1.126593 0.624896 0.263819 -0.568768 0.117476 -0.141831 -0.333462 0.448860 0.191405 1.352372 -0.029911 0.252972 0.202946 -0.542447 -0.271234 -0.296233 0.660885 -0.900611 0.363866 0.006423 0.057454 -0.180386 -0.441139 -0.130657 -0.521568 -0.338373 -0.610792 -0.666944 0.210267 -0.685976 0.341912 -0.362548 -0.149411 -0.457593 -0.134737 0.557672 0.444918 0.178436 0.589383 -1.163775 -0.183800 0.072450 0.283994 0.785900 -0.219216 -0.135829 -0.589587 -0.560436 -0.763949 1.045064 0.532840 0.148077 0.231731 -0.317592 0.108532 -0.489654 -0.134191 0.515803 0.504628 -0.891614 -0.403295 -0.052127 -0.174609 -0.029666 -1.156950 0.284304 -0.493528 0.195243 -0.045882 -0.111224 0.023915 -0.135962 0.394139 -0.569761 -0.219179 0.470903 -0.229625 -0.048260 1.009888 -0.137544 -0.270239 -0.620733 -0.281819 0.187395 0.615413 0.195176 0.363999 0.808130 0.854472 0.734990 -0.664960 -0.624119 0.626334 0.636905 0.405320 0.302517 -0.790137 -0.468774 0.332654 -0.294447 -1.256838 -0.485055 0.130507 0.632975 0.096809 -0.326507 -0.281448 -0.261330 0.590605 0.502016 0.049119 0.006721 0.150092 -0.817175 0.560830 1.235551 -0.257140 0.478044 -0.400640 0.284367 0.361475 -0.651157 0.108928 -0.214731 -0.252410 -0.179028 -0.278526 -0.143168 0.642632 0.087166 0.251852 -0.469628 0.570203 -0.700322 -1.038846 -1.073738 -0.301906 1.325685 0.025161 0.776793 -0.807629 -0.345214 -0.297137 0.848851 0.201574 -0.254427 0.275516 -0.902881 0.616329 -0.830788 -1.042577 1.764411 1.291366 0.906852 0.056448 0.303260 0.793677 -1.261606 -0.276426 -0.254289 0.118819 0.038214 -1.399539 -0.663115 0.168085 -1.057263 -0.733760 0.023589 0.375300 0.173180 0.448619 0.671799 0.433680 0.060320 -0.496344 0.585198 -0.256373 -0.451393 -0.051556 0.156000 0.324407 0.464801 -0.441993 0.298528 0.534194 -0.380819 0.177340 0.533755 0.482174 0.220105 1.034196 1.210634 -0.111043 0.483202 -0.050468 -0.526100 0.581771 0.058115 0.450167 0.216840 -0.170079 0.280799 0.121822 0.690225 -0.505564 -0.377748 -0.759980 -0.516815 0.252961 0.781567 0.190768 -1.035291 -0.811543 -0.024749 0.188841 0.680939 -0.017777 1.187206 -0.315045 0.414484 -1.335140 0.072207 0.907588 -0.144893 0.475508 0.269157 -0.437247 -0.867042 -0.360517 -0.734299 -0.916688 -0.453854 0.038224 -0.410778 -0.487252 1.064326 -0.453397 -0.055590 0.436229 0.364042 0.914653 -0.270848 0.308279 -0.746630 0.291850 0.335788 -0.010796 -0.662069 0.509042 0.401851 1.784490 -0.178339 0.214334 -0.238097 0.377883 -0.337881 -0.706669 -0.238919 0.948167 0.930827 0.252497 -0.002665 -0.179000 -0.157177 0.763896 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = -1.104193 0.604943 6.213679 1.875715 -3.340837 -5.499828 -2.604691 -9.185007 4.194379 1.276599 5.239800 0.568228 2.375448 -2.075566 0.659123 1.164778 1.705203 -2.619478 0.610032 -2.322612 -0.353533 5.768573 1.230211 -1.326585 0.435426 -6.991196 2.151361 2.110203 3.248361 2.761819 1.203292 -1.036107 -2.206252 2.678720 -0.602105 2.135206 2.257867 0.985547 -3.160410 -0.163406 0.326001 1.083099 3.526998 -0.666971 5.654809 -0.256390 3.021007 1.490538 -2.502724 -1.792759 -2.094650 5.878140 -3.279166 1.842850 1.278744 -0.002988 -0.380321 -2.994586 -1.417748 -2.372544 -1.011903 -0.770314 -2.442934 0.594419 -2.421576 1.645664 -0.799733 -1.294414 0.868893 -0.572378 3.751499 0.898854 0.812358 1.293047 -5.212602 0.742834 0.090655 2.116396 2.834653 -0.605679 -0.142974 -0.447432 -1.948377 -3.269063 3.049285 3.280333 0.638680 -0.192535 -2.098231 0.617193 -1.123336 -1.651934 0.942265 2.385659 -4.453309 -0.035077 -0.570502 -1.374923 -2.894175 -3.497205 0.908326 -2.589995 1.927039 0.908654 -0.270764 -0.859364 -1.491811 0.294566 -3.240894 -3.403848 1.295090 -1.092104 1.056705 5.625361 -2.802007 -0.201293 -1.604492 -0.969759 -0.879966 3.197316 1.409904 1.773086 3.763539 5.249394 1.807434 -3.467038 -2.835018 2.139591 4.173405 3.136075 1.956173 -4.435503 -2.187533 0.986411 -1.208780 -6.515706 -1.127209 1.878180 3.820725 0.937064 -2.410379 -0.125797 -1.614451 4.760747 2.763221 0.841774 0.553507 0.303726 -3.981891 3.920913 6.836224 -1.168765 3.568618 -1.768609 -0.553537 3.115598 -4.119253 2.350114 1.840321 -0.155392 -0.981893 -2.160963 -1.148927 3.349761 1.940025 2.495984 -0.494640 2.232208 -1.870224 -6.121657 -6.701262 -0.294707 4.671598 -0.236764 5.075438 -3.837107 -3.276154 -0.643659 5.489770 -0.451228 -2.810550 1.869082 -3.709591 2.889759 -4.066329 -4.909247 7.885807 8.304847 2.498448 0.384274 4.419149 3.753088 -5.644093 -1.989765 -1.487082 2.093274 0.524452 -5.622542 -1.173539 0.460721 -4.362038 -2.960537 -0.364939 1.858729 0.877212 1.269865 2.012395 1.970707 -2.501743 -1.884839 2.708940 -2.094259 -1.973039 0.090518 0.464513 0.631428 2.303714 -2.619913 0.262193 2.519367 -3.287199 1.166757 2.490832 2.607369 1.460623 5.724301 4.420473 -0.100292 5.640874 0.443851 -2.187496 5.184744 -1.201654 1.419471 0.744808 0.931175 0.191553 1.310336 1.997101 -2.411523 -2.623870 -4.199473 0.105252 0.230807 3.708880 -1.309356 -5.540371 -5.271178 -1.134941 2.294555 3.006858 -0.569284 7.274890 -1.614347 1.178825 -8.671603 0.044529 2.733595 -0.328349 2.694687 1.387611 -2.343184 -5.257435 -1.445443 -3.300581 -3.503754 -1.312654 -3.005386 -2.182234 -4.191645 5.689462 -2.926656 0.256261 3.123721 0.479527 3.474430 -0.731974 -0.037852 -2.761837 0.316545 2.263857 0.207753 -3.946257 4.669268 -0.025346 10.780892 -1.779598 2.422887 -1.902882 2.111465 -0.832539 -2.991177 -0.538329 5.434681 4.404738 1.030468 -1.161570 -0.331547 -1.749058 2.837957 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = -0.190463 0.133728 1.257446 0.344584 -0.623937 -1.634691 -0.524524 -2.098261 0.871996 0.435050 1.271753 0.118420 0.802396 -0.328718 0.149199 0.433836 0.307195 -0.516292 0.228120 -0.546992 -0.508622 1.492837 0.304550 -0.067300 0.095507 -1.339811 0.941518 0.522484 0.604105 1.029258 0.271443 -0.105256 -0.255992 0.649502 -0.206666 0.636000 0.077557 0.559018 -0.337703 0.175353 0.190510 -0.149499 0.851270 0.131024 1.244945 0.455452 0.705696 0.300718 -0.373422 -0.545387 -0.572718 0.839811 -1.012278 0.362504 -0.529398 -0.106095 0.148115 -0.413232 -0.231360 -0.717346 -0.144551 -0.287690 -0.956082 0.160444 -0.839813 0.363495 -0.454319 -0.572355 -0.198703 -0.073011 0.900504 0.270012 -0.117155 0.180575 -1.558279 -0.030828 0.060001 0.267160 0.758260 -0.330474 -0.460785 -0.178102 -0.779005 -0.926536 1.082913 0.677311 0.318355 0.215147 -0.524810 0.010139 -0.455651 -0.017515 0.470753 0.781011 -0.597657 0.117777 0.165294 -0.229401 -0.681284 -0.994430 0.436172 -0.638574 0.478023 0.172227 0.137989 -0.306369 -0.438318 0.085498 -0.840168 -1.030934 0.158467 -0.608223 0.190752 1.059625 -0.496824 -0.037994 -0.367325 -0.326129 0.191690 0.861477 0.598592 0.189151 1.098097 1.016099 0.326319 -0.922591 -0.718886 0.443326 0.840848 0.667107 0.327549 -0.964183 -0.641511 0.257628 -0.570045 -1.577515 -0.297449 0.635620 0.699155 -0.326661 -0.551899 0.645831 -0.479060 0.655105 1.093256 0.351615 0.235093 0.114575 -0.931481 0.774849 1.729152 -0.283532 0.812933 -0.504165 -0.379479 1.222461 -0.900372 0.391682 0.498315 -0.217113 -0.474615 -0.386455 -0.012422 0.861794 0.376970 0.693497 0.220427 0.542466 -0.502100 -1.117232 -1.406991 -0.156200 1.558408 0.280655 1.422191 -1.056361 -0.315646 0.136512 1.031399 0.076870 -0.586175 0.298864 -0.622598 0.696449 -1.704612 -1.200865 1.752822 1.342880 0.947999 0.098941 0.698793 0.985333 -0.753018 -0.445793 -0.403325 0.605818 0.062939 -1.181880 -0.305798 0.021816 -1.203169 -0.570215 -0.229293 0.480847 0.103380 0.096337 0.370351 -0.187058 -0.499520 -0.569442 0.403600 -0.632888 -0.429982 -0.056897 0.018349 -0.079945 0.201223 -0.363062 0.353095 0.437553 -0.693521 0.342265 0.628575 0.359932 0.339388 1.568077 1.274309 -0.520699 0.657187 -0.064412 -0.246828 1.189198 -0.225265 0.390486 0.265978 0.741112 0.276497 0.281020 0.776366 -0.523552 -0.570331 -1.054044 -0.019327 0.657362 0.741133 -0.002710 -0.856839 -1.525029 -0.153963 0.329575 1.499823 -0.195592 1.678486 -0.262881 0.625189 -1.692185 0.198749 0.355525 -0.206954 0.561228 0.350480 -0.536606 -0.666724 -0.448492 -0.757877 -0.894658 -0.285486 -0.521750 -0.592057 -0.617223 0.344575 -0.864639 -0.036060 0.483969 -0.077601 0.616799 -0.325330 0.056043 -0.724280 0.261525 0.891409 0.010910 -0.876803 0.874329 0.055016 2.382786 -0.277690 0.859055 -0.328675 0.724567 -0.348234 -0.690522 -0.236157 1.350073 0.948549 0.088995 0.083996 0.075203 0.196868 0.621834 -PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = -1.092636 0.390322 5.964799 2.364994 -3.179817 -5.697939 -2.506788 -9.590077 4.801251 1.536180 5.094498 1.014169 2.734987 -2.382429 0.383993 1.267020 1.568898 -2.492249 0.604361 -2.254396 -0.400167 6.741392 1.364577 -1.579518 0.177402 -6.924321 2.670125 1.938458 3.621036 3.210100 1.355580 -0.847613 -1.832234 2.793340 -0.852140 2.274104 1.488092 1.416315 -3.115240 -0.550013 0.470450 0.847381 3.608020 -0.258571 6.041824 -0.466599 3.370237 1.260539 -1.948326 -1.738074 -2.293677 5.598940 -3.517091 1.951224 0.599691 -0.143881 -0.200067 -2.725098 -1.288420 -2.519070 -0.972881 -0.628699 -2.980579 0.563765 -2.926156 1.641477 -1.037879 -1.364561 0.192644 -0.654016 3.976431 1.071708 0.772822 0.457711 -6.233434 0.494852 -0.237108 1.667302 3.122077 -0.115303 -0.755122 -0.808406 -2.232570 -3.513157 3.622517 3.501923 0.214817 0.386879 -2.013871 0.249539 -1.487939 -1.534169 1.146000 2.700165 -4.355592 0.287535 -0.073652 -1.137940 -2.386051 -3.423101 1.274163 -2.758350 1.942398 0.608535 0.317688 -0.775453 -0.934555 0.085916 -3.145767 -3.560825 1.305186 -1.253854 1.139843 5.602775 -2.560108 -0.214199 -1.627530 -0.938946 -0.778015 3.463917 1.727746 1.783575 4.090957 5.043592 1.844394 -3.686421 -2.652384 2.675785 3.940048 3.067640 1.647585 -4.486237 -2.225392 1.207509 -0.836706 -6.646630 -1.320797 2.594915 3.640783 0.365700 -2.255393 0.192353 -1.325432 4.469086 3.326398 0.640753 0.772694 0.547744 -3.875332 3.840776 7.413733 -0.833478 3.257561 -2.040472 -0.808115 3.987233 -4.515995 2.464184 1.482536 -0.099501 -1.289078 -2.120885 -0.553780 3.464213 1.388182 2.343587 -0.320501 2.315299 -2.025124 -6.108168 -6.714571 -0.586747 5.171130 0.496977 5.655240 -3.888556 -2.792704 -0.255928 4.802025 0.162641 -2.506952 2.096501 -3.839131 3.106292 -5.220765 -5.080039 8.019745 7.801629 3.006627 0.142614 4.158888 3.902962 -4.841353 -2.298334 -1.552647 2.195768 0.764025 -5.282806 -0.936672 0.277349 -4.778473 -3.256771 -0.313011 1.756849 1.076890 0.943658 2.127412 0.951440 -2.370417 -2.341780 2.840280 -2.112338 -2.005330 -0.222105 0.619598 0.208508 2.093545 -2.203361 0.684039 2.405016 -2.809910 1.182360 2.510317 2.105490 1.082377 5.562195 5.013812 -0.608254 5.202110 0.332580 -1.867486 5.681699 -1.195149 1.380088 0.848025 1.174329 0.517195 1.337913 2.012942 -2.493091 -2.324198 -4.146110 0.287350 0.822856 3.825011 -1.630170 -5.306520 -5.363458 -1.148763 1.957159 3.400357 -0.513593 7.444374 -2.097494 1.614191 -8.879337 0.378475 2.890190 -0.299160 2.828471 1.483193 -2.462985 -4.338180 -1.613310 -3.132914 -3.397525 -1.459214 -3.225346 -2.359006 -4.016395 4.920296 -3.416078 0.280051 3.280053 -0.033910 3.399730 -1.712564 0.182174 -3.030284 0.460489 2.136410 0.195786 -4.013432 4.339329 -0.330464 10.553122 -2.040800 2.763405 -1.904419 2.911497 -1.674751 -3.446374 -0.575440 5.705380 4.188095 0.657672 -0.893943 -0.413297 -1.262980 2.711560 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = -2.328561 1.665988 12.642923 7.329911 -8.453927 -10.541211 -5.533130 -15.235548 6.917127 1.041171 8.590461 0.421187 1.440409 -3.954818 0.799963 0.704833 1.912145 -3.612378 0.081156 -4.435658 -3.606416 8.423023 4.046267 -7.439407 2.029342 -12.959440 7.776931 4.545715 4.985051 6.390434 2.230607 -1.972920 -3.547727 7.283799 -0.761216 4.441912 3.043500 1.567311 -5.186728 1.422983 2.857171 4.397612 7.419327 -0.124379 10.660943 3.480793 5.584133 3.251475 -8.404754 -0.941422 -4.815952 11.066759 -7.575899 4.942091 1.310422 2.952817 0.395107 -9.028125 -3.393505 -6.608793 -2.693925 -0.430575 -5.297192 0.527572 -7.292077 1.989964 -1.234081 -3.380350 3.694099 1.632942 8.027156 2.617660 0.390345 0.778786 -6.801902 2.063929 1.064860 6.007023 6.521339 -4.122814 0.329898 0.758430 -3.461229 -5.836081 4.319876 1.600724 2.822106 -0.775499 1.065357 -2.211335 -1.344793 -3.502589 0.731000 5.269362 -6.033130 0.924906 -3.038962 -2.370595 -5.911135 -5.908977 0.963850 -5.118503 4.761640 4.146400 -2.552621 -0.405919 -0.095511 2.310420 -4.398387 -5.957503 1.436482 -2.186002 3.734835 10.181480 -3.250629 -2.070395 -1.338535 -2.670168 -1.576188 7.288458 2.074122 2.708871 8.559734 11.704073 4.621942 -5.765083 -4.478448 0.835767 5.994951 7.985188 5.737244 -8.738549 -4.873946 0.291145 0.146788 -12.211403 0.345546 1.274831 6.920512 2.856338 -7.254481 0.543100 -3.734292 9.502809 3.215055 3.049768 1.885458 -0.412522 -7.476560 9.254005 14.778470 -2.070188 5.519367 -4.463560 -3.100962 6.325972 -6.588211 4.045843 3.271916 -1.994901 1.053898 -4.853532 -2.053810 6.956340 3.503935 2.002434 2.972769 3.936949 -3.199334 -12.459894 -10.426832 1.504862 8.027262 -1.251367 12.818187 -7.831563 -5.335354 -3.415136 10.308474 -0.638627 -2.679779 1.629650 -5.864358 5.432047 -9.016763 -10.159682 15.232479 14.703511 3.882469 -0.040647 8.372482 7.317524 -8.169237 -4.290824 -4.099988 2.623132 2.539529 -5.612245 -2.228610 0.686325 -8.133865 -5.234986 1.204334 3.535265 4.524348 -1.662495 -2.829797 3.035268 -7.663350 -5.410089 3.927071 -6.952021 -2.801300 2.035663 0.022273 1.436489 4.442866 -3.708137 -1.469886 2.622319 -5.272295 1.728682 4.177452 8.518271 2.250489 9.552112 8.828956 0.774988 10.628265 4.426131 -4.676044 14.026002 -1.823288 3.124323 2.995918 2.513053 1.049869 2.302220 4.008122 -4.766976 -3.374957 -8.907420 2.623627 0.684081 6.545866 -7.479986 -7.461868 -11.134097 -3.496616 5.376575 4.575702 -0.886479 14.544746 -0.931635 0.573700 -16.302745 -1.391076 7.314530 0.184334 6.063649 3.920877 -6.139457 -12.773632 -3.234832 -6.028389 -1.667409 -3.719094 -3.745308 -5.350689 -4.549040 8.982808 -2.684826 2.743060 10.230793 -0.311288 4.209334 -2.868545 0.069650 -3.355058 -3.524024 4.207688 1.460330 -8.698734 9.740179 -0.306977 21.200316 -2.856374 4.905836 -5.687074 1.550688 0.011633 -3.439368 -1.526668 10.664775 6.498456 2.851590 0.611625 0.747818 -4.550369 7.217408 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/strongly-connected-components.cpp__main = 1.180094 0.753940 1.392753 -0.260892 -0.807013 -1.996961 -0.379535 -3.184637 1.078090 0.194736 0.756244 -0.096543 0.649679 -0.040295 -0.045331 1.494789 0.791586 0.012067 0.277503 -0.912116 -0.436239 1.605411 -0.799730 0.755221 0.453995 -1.861856 0.112521 0.708771 1.620815 0.418383 0.663269 -0.376004 -0.597117 0.358371 -0.079529 0.283317 0.515029 -0.081896 -2.197759 0.804099 -0.929701 0.027529 1.072719 -0.065850 1.056218 0.037980 0.787562 0.990906 0.269188 -0.126119 -0.773561 1.878214 0.185414 0.592232 -0.114642 -0.617069 -0.612605 -0.290448 -0.125335 1.667232 -0.717195 -0.161044 -0.660553 0.299831 -0.933714 0.156935 -0.872481 -0.694651 -0.158550 0.053362 0.737433 0.033990 -0.268977 0.052064 -2.602531 -0.134089 0.118347 0.816822 0.621966 -0.190188 0.750670 -0.077966 -1.002832 -0.836643 0.968946 1.970491 0.163292 -0.055295 -1.344336 -0.635970 -0.629627 -0.418042 0.981781 0.304833 -1.300951 -0.032431 -1.355958 -0.429724 -1.117701 -2.073430 0.486211 0.013285 0.734456 -1.679080 0.900196 0.126339 0.669916 0.191170 0.030385 -0.537215 0.147804 0.101750 0.337308 2.618995 0.094974 -0.630003 -1.021799 -0.453337 -1.333521 0.588405 0.623558 -0.005359 1.015896 1.079771 0.670114 -0.668805 -1.135493 0.575499 0.205543 0.778494 0.804703 -0.837543 -0.588241 0.324187 -0.439737 -1.806454 -0.438920 0.177333 0.920506 -0.858378 1.047575 -0.794477 -0.653145 0.820598 0.300169 -0.519166 0.483431 -0.255838 -0.693596 0.863038 1.838621 -0.136813 0.672247 -1.377821 0.425580 -0.025776 -0.251760 0.362042 0.060181 -0.420627 -0.756971 0.074434 0.104680 0.545818 0.072458 -0.119199 0.002062 0.650793 -1.378812 -0.850611 -1.456341 0.042084 0.840887 -0.492127 0.759788 -0.759010 -0.878605 -0.457740 0.983762 0.235796 -0.320258 1.196619 -1.593354 0.616438 -0.169166 -0.794174 1.620397 2.277170 0.914213 -0.561890 0.684731 0.852145 -2.335174 -1.170313 -0.103090 0.283225 0.065262 -3.087529 -1.044884 0.195484 -1.077335 -0.183940 -0.107850 0.754055 0.503829 1.537781 1.778263 -0.389746 -0.822363 -1.051427 1.311931 -0.120647 0.180718 0.528502 0.068720 -0.358250 0.867245 -0.958145 0.149982 0.998470 -0.566972 0.785329 0.485540 0.362056 -0.401584 1.220520 0.881125 0.403939 2.313514 -0.173642 -0.957850 0.874573 -0.049161 0.873703 -0.041373 -0.451845 -0.819337 0.336038 0.327531 -0.535413 -1.132038 -0.808966 -0.573997 -0.012448 0.708843 1.442012 -1.378972 -1.301979 -0.242766 -0.142799 1.097730 0.279057 1.114798 -0.824916 0.824233 -1.714105 0.408337 -0.008173 0.035836 0.763032 0.165746 -0.742544 0.121488 0.130804 -1.490746 -2.180961 -0.197663 -1.176852 -0.831688 -0.912600 1.151558 -0.514331 -0.433247 0.862623 -0.157029 1.087481 -1.143084 -0.021274 -0.763365 0.313479 1.781411 -0.390489 -0.882814 0.112603 0.161233 2.878465 0.405246 0.589785 0.026900 -0.403810 0.215569 -1.404294 -0.522015 1.208340 0.751099 0.267152 -0.494698 -0.590431 0.348961 0.320694 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 0.327303 0.665291 2.620940 0.019245 -1.825021 -2.310971 -0.874841 -4.574674 2.012079 0.862025 1.618233 0.324106 1.225924 -1.217365 -0.460149 1.108209 0.895318 -0.704643 0.386916 -1.252237 -1.073506 2.143825 -0.421696 0.420916 0.699467 -3.110421 1.949758 0.015893 1.841919 1.543526 1.008499 -0.294810 -1.215917 1.244566 1.168770 1.475376 1.004240 0.717545 -1.513671 0.715670 -0.143570 -0.852861 1.404746 0.500915 2.500211 0.156528 0.255127 0.840832 -0.722702 -0.532749 -0.484970 1.236042 -1.474623 0.781959 0.063594 -0.387347 -0.601804 -0.862247 -0.064423 0.402941 -0.821824 -1.547832 -1.104546 0.586573 -1.606138 0.432836 -1.356743 -0.818107 -0.722670 -0.421563 1.171114 0.718576 0.216247 1.003459 -3.034315 -0.190534 0.518705 0.607047 1.745072 -0.162620 -0.064457 -0.723464 -1.542922 -1.879572 1.829037 2.010752 0.314000 0.114690 -1.025454 -0.262170 -0.682267 -0.348260 1.345354 1.399793 -2.102071 -0.585976 -1.312594 -0.660110 -0.913273 -3.365967 0.738080 -0.914960 1.062787 -0.724447 -0.638687 -0.211538 0.158468 0.343374 -0.579510 -0.762530 0.424876 -0.900592 0.882899 2.971905 -0.107789 -0.868523 -1.630345 -0.966048 0.024427 1.015778 0.723053 0.172333 2.306881 1.861980 1.425587 -1.522314 -1.525928 1.202835 0.594048 0.902748 0.817368 -1.953570 -0.893858 0.749103 -0.543988 -2.970273 -0.735800 -0.191569 1.104149 -0.759212 0.295981 -0.689827 -0.929455 0.852266 1.273906 -0.029395 0.400885 0.169631 -1.405765 1.275692 2.699296 -0.207782 0.912589 -1.396202 0.087311 1.044262 -1.301548 0.572191 -0.174614 -0.468449 -0.909788 -0.578525 -0.041232 1.410659 -0.375473 0.305080 -0.350440 1.027654 -1.541066 -1.859602 -2.289563 -0.100208 2.904525 0.231334 1.668692 -1.971783 -0.381146 -0.200125 2.109010 1.069209 -0.557173 1.179955 -1.559643 1.362120 -1.245343 -2.088997 2.950229 2.927821 1.406149 -0.369497 0.567413 1.317518 -3.067093 -1.367769 -0.823274 0.314699 -0.022916 -3.294511 -1.560323 0.502576 -2.044611 -0.829829 0.076400 0.963850 1.544576 0.741641 1.531013 0.423106 -0.205144 -1.841227 1.918451 -0.330860 -0.800782 0.193505 0.329843 0.232626 1.144147 -0.705438 0.236889 0.807797 -0.586441 0.809747 1.250629 0.798689 -0.403366 2.435572 1.913400 -0.473986 0.862797 -0.138476 -0.684185 1.498279 -0.197078 1.098794 0.687261 -0.094209 -0.075897 0.574525 1.459682 -1.148370 -1.157822 -1.589817 -1.024724 0.072007 1.297415 0.513273 -2.028677 -2.291796 -0.049082 0.113403 1.524473 0.276920 2.645784 -0.448960 0.947752 -2.479364 0.169640 1.253207 -0.236497 1.679196 0.588434 -1.199709 -0.465633 -0.795236 -1.930393 -2.014791 -0.555861 -0.131223 -1.145880 -0.712698 1.739365 -0.514053 -0.222647 0.980227 0.143604 1.634025 -1.050769 0.485286 -1.650130 0.539912 1.744363 -0.385006 -1.304463 1.318505 0.536519 3.816816 -0.090636 0.637985 -0.082249 0.279031 -0.153803 -1.706651 -0.710346 2.206447 1.334915 0.848538 -0.541422 -0.505407 0.044752 1.415582 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = -1.889451 -0.708601 3.351423 0.104309 -1.779273 -3.553520 -1.584255 -5.802523 2.616758 1.232638 4.215795 0.462397 2.255880 -2.161382 1.059964 1.499538 1.895535 -2.682079 0.816058 -1.569813 0.976684 3.842763 1.134824 0.554279 0.064803 -3.625417 -0.174482 0.716076 1.682327 1.894536 1.081236 -0.854152 -1.537714 0.925044 0.376841 2.873555 2.308305 0.651988 -2.130976 -0.320594 -1.040417 -0.753670 1.999406 -1.242695 4.653135 -1.417197 2.308679 0.825422 -2.155378 -2.032992 -1.317454 3.924140 -2.710515 0.618446 1.312601 -1.128940 -0.537525 -0.880365 -1.532672 -2.572819 -1.098986 -1.410086 -1.270919 0.607449 -0.769836 1.748559 -0.704875 -0.267773 0.046563 -0.677985 2.281632 1.206843 1.501511 2.926414 -3.231644 0.486456 0.263742 1.034584 1.327335 -0.348263 0.034730 -0.960416 -0.534561 -1.855599 2.555599 2.177166 0.547181 0.113624 -2.774284 2.555573 -0.979615 -0.903211 0.681139 0.558047 -3.220121 -0.778911 1.255522 -1.073606 -1.501912 -2.667574 0.550229 -1.512016 0.700029 0.824103 0.640595 -0.775858 -3.483224 0.384342 -3.704338 -2.247624 1.608489 -0.675038 -0.600056 3.017836 -3.334272 0.979906 -1.630019 0.174951 0.167334 1.587591 0.797015 2.199138 1.169532 3.280452 1.302085 -2.452284 -1.831432 1.467908 4.306626 1.409434 0.844180 -1.922122 -1.517382 1.162299 -2.034275 -3.848343 -2.279329 2.284000 2.940376 1.602068 -1.520977 -0.691202 -0.715626 3.933004 2.380813 0.193853 -0.162530 0.645665 -3.098113 2.429601 3.143189 -1.109792 3.311150 0.103645 0.815732 1.527547 -3.117802 1.215331 1.615899 -0.044391 -1.181013 -1.257706 -1.619165 1.627944 2.811169 2.403723 -2.598096 1.967547 -1.071890 -4.144671 -4.681927 -0.889009 3.582634 -0.188851 1.954616 -2.265323 -2.829315 0.081807 3.163798 -0.349268 -3.139551 1.057036 -2.677415 1.866008 -3.181739 -3.119362 6.080277 6.030599 2.760562 1.181763 2.590320 3.168082 -5.133899 -0.320103 -0.271542 1.625510 -0.653728 -5.772294 -1.547439 0.618658 -3.058372 -2.703118 -0.951726 1.351450 -0.896539 2.206752 2.843174 2.441477 -0.463571 0.740778 1.488049 -0.827848 -2.351588 -0.442169 0.452371 1.826267 1.150618 -2.252829 1.389614 2.162258 -3.275892 0.399783 1.551508 1.924080 1.942964 4.207678 3.601794 -0.084926 3.591561 -0.965984 -1.958126 1.102698 -0.615891 1.036354 -0.254526 -0.074060 0.804241 0.137514 1.779995 -1.487425 -2.152359 -2.249060 -0.978906 0.810884 3.239573 0.552432 -5.207968 -3.184455 0.470812 1.896794 1.970310 -0.832802 4.212967 -1.621941 0.900748 -5.797188 0.205020 1.221025 -0.107050 1.257627 0.522646 -0.879533 -3.493911 -0.947592 -2.643740 -3.141543 -0.612958 -1.603151 -0.575221 -3.720088 5.073150 -2.457564 -0.764190 0.402826 0.909300 3.769223 1.758392 -0.303129 -2.402609 1.553346 1.242508 0.301278 -2.068438 3.377230 0.682062 7.302498 -1.122896 0.472945 -0.835076 1.991573 -0.624156 -1.660885 0.061019 3.386880 4.415931 0.281664 -1.150506 -0.575124 -0.850238 1.566952 -PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.073968 0.215438 1.404606 0.254114 -1.000604 -1.559039 -0.614915 -2.371606 1.103620 0.344530 0.926769 -0.011355 0.569347 -0.824896 -0.129465 0.827503 0.521758 -0.370214 0.156543 -0.666084 -0.474485 1.341939 0.040221 -0.070770 0.430960 -1.715168 1.114760 -0.064212 0.776858 1.158663 0.603060 -0.296326 -0.481260 0.726393 0.856408 1.592905 0.619557 0.344379 -0.692922 0.477304 -0.152371 -0.413134 0.740064 0.212337 1.613230 0.401521 0.451697 0.435751 -0.813714 -0.242026 -0.576878 0.951744 -1.175537 0.486399 -0.107259 0.070103 -0.153860 -0.661202 -0.244624 -0.292982 -0.708472 -0.781971 -0.962493 0.293642 -1.091105 0.336119 -0.630401 -0.265699 -0.470267 0.049955 0.778038 0.550343 0.045699 0.759027 -1.464590 -0.170890 0.164104 0.531308 0.981350 -0.549078 -0.064008 -0.480512 -0.801492 -1.010282 1.204858 0.591256 0.378076 0.117357 -0.337881 -0.042193 -0.706429 -0.157694 0.668296 0.695494 -0.923292 -0.387812 -0.349057 -0.249531 -0.448759 -1.662591 0.360095 -0.544106 0.422798 -0.139345 -0.065641 -0.181899 -0.094454 0.389521 -0.605608 -0.380295 0.408913 -0.357985 0.114945 1.331650 -0.067040 -0.321972 -0.748272 -0.532809 0.156130 0.784843 0.425403 0.263348 1.108090 1.195220 1.140591 -0.786084 -0.911650 0.455456 0.665308 0.612314 0.528374 -0.971720 -0.644406 0.347997 -0.326798 -1.589039 -0.466212 0.169634 0.735050 0.061972 -0.271619 -0.284645 -0.419939 0.729799 0.505839 0.120267 0.128633 0.064313 -0.951742 0.858518 1.721894 -0.272588 0.604760 -0.719314 0.228767 0.657706 -0.765380 0.148941 -0.007189 -0.417199 -0.380756 -0.312274 -0.129661 0.786428 0.177889 0.196756 -0.188860 0.660505 -0.886863 -1.220219 -1.198648 -0.109094 1.676629 -0.081296 1.063611 -1.099724 -0.306521 -0.309593 1.071129 0.312606 -0.305796 0.316403 -1.050698 0.769966 -1.049339 -1.245186 2.162385 1.594100 1.050220 0.018650 0.381889 1.135262 -1.670471 -0.480564 -0.494821 0.231062 -0.048829 -1.752422 -0.839881 0.218034 -1.325861 -0.691409 -0.038559 0.572715 0.464388 0.531703 0.550333 0.283057 -0.181338 -0.766724 0.679970 -0.434141 -0.518372 0.126712 0.094172 0.272608 0.569468 -0.461443 0.324264 0.552867 -0.521256 0.345044 0.683858 0.680289 0.148343 1.369028 1.463024 -0.149939 0.748189 0.066573 -0.584606 0.820687 0.153780 0.662050 0.326696 -0.038058 0.297021 0.183634 0.922283 -0.628456 -0.632900 -0.972180 -0.486192 0.375134 0.888523 0.255568 -1.173770 -1.315239 -0.090472 0.316877 1.039044 0.016749 1.455298 -0.207455 0.566721 -1.662406 0.112531 0.967364 -0.108484 0.616785 0.323046 -0.631809 -0.789846 -0.435176 -1.001108 -1.180370 -0.519780 0.082589 -0.603903 -0.497057 1.055899 -0.389817 -0.134017 0.682751 0.271990 0.938509 -0.326764 0.318355 -0.892430 0.123320 0.846264 -0.073007 -0.829398 0.708658 0.506583 2.421510 -0.100207 0.363776 -0.254162 0.275521 -0.121177 -0.871129 -0.315901 1.248394 0.980374 0.286392 0.131972 -0.148064 -0.029743 0.926284 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.069018 -0.313090 2.366494 0.585827 -1.213151 -2.534454 -1.008294 -4.958251 2.804135 1.227334 2.224311 0.621792 1.918817 -1.822284 -0.462423 0.804712 0.890571 -1.336468 0.491451 -1.145703 -0.125219 4.210883 -0.115340 0.243725 -0.012591 -3.929474 1.821736 0.324469 2.265778 2.243899 0.921952 -0.202209 -0.798175 0.918456 0.025277 1.581187 0.417569 0.908936 -1.602132 -0.252501 0.216957 -0.472947 1.792336 -0.033086 2.946110 -0.702266 1.028814 0.413147 -0.129184 -1.192747 -0.961809 1.389100 -1.552838 0.602565 -0.490546 -0.757111 -0.253572 -0.443948 -0.465678 -0.272060 -0.482129 -0.801047 -1.445326 0.507456 -1.554852 0.936947 -1.169469 -0.624753 -0.690309 -1.126044 1.557120 0.915470 0.560799 0.120187 -4.071624 0.078599 -0.009748 0.197192 1.499831 0.556847 -0.559613 -0.937012 -1.559967 -1.729515 2.280444 2.739078 -0.257135 0.590771 -1.408396 -0.178674 -1.012022 -0.209665 1.348708 1.180924 -2.118364 -0.386097 -0.441929 -0.410465 -0.263737 -2.315534 0.902009 -1.164455 0.862418 -0.167213 0.068925 -0.093661 0.436657 -0.133931 -1.315173 -1.398227 0.602174 -0.940467 0.751190 3.346591 -0.793074 -0.602633 -1.891231 -0.438479 -0.192117 1.351065 0.705812 0.742042 2.285090 1.790873 1.311149 -2.141261 -1.478514 2.373205 1.487360 0.802342 0.284666 -1.857049 -0.897964 0.625150 -0.546781 -3.259906 -1.445009 0.720292 1.490016 -0.990761 0.025298 0.371224 -0.606420 1.680396 2.167204 -0.592359 0.579583 0.661351 -1.970150 1.671881 3.509483 0.040801 1.011149 -1.868575 -0.566701 2.175007 -1.770246 0.964405 0.043690 -0.026681 -1.212008 -0.922392 0.781953 1.479921 -0.574630 1.219244 -0.825761 1.395156 -1.003931 -2.356495 -3.197137 -0.548853 2.906903 1.102730 2.731902 -2.025775 -0.560858 0.240464 1.882989 1.146536 -0.937491 1.514399 -2.131198 1.496932 -3.190439 -2.646164 3.876736 3.510817 2.041182 0.150638 1.309638 1.836392 -2.162003 -0.892577 -0.676771 1.051486 0.731366 -3.575912 -0.602336 0.333741 -2.200152 -2.042517 -0.080704 0.789302 0.759881 0.471911 1.982107 -0.565966 -0.315021 -1.678076 2.423537 -0.831019 -0.852242 -0.390536 0.458409 -0.228421 1.148533 -0.889736 1.078685 1.043898 -0.445480 0.970953 1.215991 0.270794 -0.168341 1.867500 3.026377 -1.132755 1.450988 -0.463330 -0.508949 2.313124 -0.614404 0.596548 0.484523 0.173768 0.529099 0.590835 0.992453 -1.267035 -0.631955 -1.762018 -0.303629 0.763100 1.534844 -0.163216 -2.434877 -2.682700 -0.177821 -0.033868 2.097750 0.425184 3.495161 -1.570309 0.945360 -3.683619 0.389239 1.376286 0.122712 1.754960 0.503635 -0.941999 -0.740852 -0.832103 -1.762172 -1.820150 -0.875034 -1.726212 -1.314218 -1.804258 2.210622 -1.682252 -0.068554 1.262263 -0.092040 1.969795 -1.468100 0.344199 -2.245164 0.866215 0.404715 0.090892 -1.389116 1.492892 -0.155913 3.998317 -0.809323 1.124459 -0.453587 2.324900 -1.520089 -2.775793 -0.358131 2.590375 1.645756 0.169558 -0.450042 -0.752282 0.165213 1.207155 -PE-benchmarks/strongly-connected-components.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/strongly-connected-components.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = 0.192737 0.202784 0.279738 -0.031681 0.047784 -0.209471 -0.026216 -0.358388 0.103034 -0.022495 0.077260 -0.125920 0.105121 0.027922 -0.022431 0.105837 0.018276 0.121438 0.103078 -0.004490 0.005201 0.154977 -0.143808 0.033306 0.064580 -0.255399 0.030001 0.095707 0.244137 0.123904 -0.028054 -0.076004 -0.011022 0.057760 -0.106335 -0.108509 0.158245 0.023784 -0.283760 0.096072 -0.232555 0.123653 0.022604 -0.019904 0.031372 0.146747 -0.057301 0.106815 0.108774 0.046906 -0.043881 0.218951 0.060654 0.128419 -0.029918 -0.111939 -0.076114 0.019885 0.012906 0.062774 0.004300 0.078451 0.016803 0.012085 -0.168094 -0.013484 -0.052970 -0.140491 0.026454 0.074321 0.092638 0.063337 0.082331 -0.010211 -0.309318 0.076404 0.045822 0.144846 0.070425 -0.104219 0.183502 0.060817 -0.074843 -0.132798 0.127786 0.260051 0.088408 0.017881 -0.078095 -0.139919 -0.019977 -0.062460 0.085736 0.078825 0.031996 0.102419 -0.314097 0.057161 -0.009677 -0.342130 -0.025216 -0.059320 0.062750 -0.128356 0.222162 0.072132 0.207671 0.211943 0.117324 -0.103978 0.138018 0.051328 -0.057864 0.310210 0.065815 -0.077831 0.000370 -0.043797 -0.204254 0.130282 0.010463 0.032391 -0.035755 0.116511 0.090220 -0.051774 -0.109186 0.123896 -0.001889 0.139434 0.115248 -0.223378 -0.043494 0.004795 -0.089488 -0.274382 -0.000944 -0.013652 0.100835 -0.203331 -0.000364 0.011664 -0.130480 0.066789 0.009510 -0.028422 0.079718 -0.040043 -0.049693 0.106809 0.231219 -0.090532 0.068819 -0.114171 0.016706 -0.154631 0.073214 0.072919 -0.116084 -0.018187 0.121667 -0.055825 0.026448 0.136633 0.098271 0.052114 0.045513 0.020704 -0.286764 -0.179367 -0.105917 -0.017352 0.108118 -0.253277 0.139038 -0.025775 -0.240636 -0.082723 0.250295 -0.090138 0.070925 0.078080 -0.177877 0.086194 -0.036175 -0.156336 0.160777 0.255917 0.097417 -0.137303 0.046853 0.127345 -0.212120 -0.177017 -0.000773 -0.043485 -0.055807 -0.419640 -0.294374 -0.029914 -0.121829 0.046480 0.067448 0.041485 0.048568 0.303706 0.083315 -0.008899 -0.174807 -0.133349 0.141615 -0.101022 0.096548 0.088706 0.023789 -0.056607 0.136336 -0.235839 -0.040710 0.288678 -0.101184 0.072770 0.034842 0.031817 -0.063462 0.212053 0.040876 0.151706 0.247704 0.086459 -0.188720 0.279331 -0.007830 0.060397 -0.016855 -0.037507 -0.152590 0.104524 0.015175 -0.078228 -0.215315 -0.250221 -0.144544 -0.003237 0.031170 0.242507 -0.196691 -0.042256 -0.052260 -0.018896 0.144319 0.090626 0.191690 -0.051620 0.100795 -0.171351 0.035791 0.019834 -0.069998 0.122187 0.068909 -0.083938 -0.230015 0.019136 -0.152208 -0.369413 -0.143943 -0.295554 -0.027151 -0.125724 0.085650 0.005295 0.014160 0.161430 0.104144 0.114517 -0.204431 -0.021311 -0.143580 0.046937 0.201396 -0.099227 -0.171407 -0.060996 0.049218 0.414911 -0.021575 0.069172 -0.114192 -0.135674 0.039361 -0.070722 -0.058539 0.188343 0.070181 0.110734 -0.041193 -0.013093 -0.061189 0.060299 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.274445 0.141797 0.765939 -0.056370 -0.210120 -0.844576 -0.260903 -1.690274 0.726505 0.351984 0.661959 -0.052296 0.573592 -0.343815 -0.134993 0.448570 0.190199 -0.260192 0.221683 -0.312337 -0.186260 1.077512 -0.321729 0.354316 0.053250 -1.148729 0.476839 0.190931 0.702624 0.503345 0.267280 -0.085616 -0.167775 0.262497 -0.067481 0.411595 0.237427 0.306821 -0.532764 0.080329 -0.160808 -0.085644 0.426197 0.006660 0.762518 0.037597 0.229107 0.212973 0.147262 -0.254078 -0.233550 0.515193 -0.306865 0.161751 -0.245458 -0.354521 -0.134115 -0.125090 -0.065035 0.250706 -0.155971 -0.172880 -0.446409 0.171362 -0.478891 0.210886 -0.293394 -0.296301 -0.198225 -0.180352 0.442947 0.211217 0.036014 0.113193 -1.274693 0.017162 0.107148 0.047299 0.425160 -0.064212 0.055091 -0.185000 -0.528558 -0.573126 0.840299 1.036504 0.095141 0.160514 -0.495059 -0.117852 -0.329825 -0.091505 0.536511 0.437481 -0.463605 -0.109868 -0.322465 -0.128882 -0.271056 -0.909652 0.304890 -0.320860 0.338016 -0.255155 0.188634 0.028144 0.286565 0.089972 -0.246166 -0.430513 0.109844 -0.318556 0.346622 1.078266 -0.109554 -0.250504 -0.552136 -0.256748 -0.186921 0.348587 0.309635 0.081302 0.738282 0.476485 0.393782 -0.603716 -0.602863 0.632464 0.287390 0.323267 0.096339 -0.722932 -0.248069 0.165851 -0.297886 -1.059825 -0.387205 0.046642 0.360732 -0.606707 0.132577 0.201129 -0.223664 0.333469 0.586676 -0.188987 0.172643 0.161631 -0.473931 0.411524 0.978626 -0.037130 0.303809 -0.626903 -0.084235 0.302194 -0.340738 0.223574 0.086208 -0.089397 -0.356172 -0.222536 0.250842 0.450252 -0.117956 0.344961 -0.169495 0.407816 -0.546810 -0.547614 -0.858548 -0.106099 0.822945 0.037812 0.747741 -0.577546 -0.313652 0.078763 0.699203 0.223784 -0.170389 0.476660 -0.677760 0.446440 -0.569232 -0.730239 0.944761 0.949790 0.680632 -0.127057 0.351444 0.489982 -0.809414 -0.334460 -0.144387 0.259576 0.170278 -1.365087 -0.394538 0.046640 -0.636892 -0.388225 -0.111885 0.278927 0.130631 0.468341 0.713488 -0.261944 -0.154364 -0.505108 0.690232 -0.176818 -0.079572 -0.078515 0.142366 -0.177186 0.371901 -0.467029 0.273836 0.440100 -0.196956 0.404770 0.426533 0.002237 -0.124617 0.761529 0.730199 -0.276119 0.594296 -0.179926 -0.139350 0.478997 -0.050364 0.229399 0.145069 0.050978 -0.044717 0.219682 0.339823 -0.377128 -0.390837 -0.598988 -0.273847 0.240261 0.338490 0.514031 -0.591016 -0.788547 -0.132687 -0.089623 0.784314 0.195204 0.915851 -0.330117 0.430190 -0.897213 0.158800 0.173575 -0.108138 0.460122 0.129946 -0.311493 -0.142916 -0.176918 -0.601842 -1.112764 -0.239502 -0.554676 -0.422454 -0.581262 0.500302 -0.406046 -0.104674 0.314723 0.132522 0.430707 -0.581718 0.117731 -0.620968 0.332808 0.500025 -0.156798 -0.484533 0.192087 0.040159 1.388207 -0.151187 0.413299 -0.125450 0.426584 -0.278598 -0.726532 -0.157469 0.763460 0.439591 0.111619 -0.199283 -0.198269 0.107531 0.369842 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = -0.947690 -0.387454 2.102517 0.912176 -1.283459 -2.918991 -1.006796 -3.695728 1.760344 0.564431 2.625941 0.312516 1.477500 -1.601091 0.609257 0.969748 1.198069 -1.184562 0.107654 -1.135578 0.082130 2.667412 0.746284 -0.593706 0.146865 -2.127959 0.290645 1.119684 0.920640 1.299106 0.640882 -0.284668 -0.686538 0.839069 -0.442679 1.583835 0.930254 0.514475 -1.399242 -0.436381 -0.185527 -0.152663 1.617815 -0.646893 2.848353 -0.435601 1.990706 0.589395 -1.488273 -1.173816 -1.103247 2.665361 -1.635706 0.603930 0.083200 -0.384307 0.243478 -0.921771 -0.852421 -1.928034 -0.472714 -0.425500 -1.373687 0.109285 -0.827624 0.975934 0.088348 -0.741736 0.183472 -0.259417 1.581997 0.594147 0.290670 0.918751 -2.145518 0.068498 0.289473 0.757405 1.069222 -0.187431 0.019105 -0.808566 -0.670007 -1.113091 1.979445 0.899339 0.682328 0.631681 -1.517809 0.906573 -0.550110 -0.519560 0.666513 0.398180 -1.679088 -0.407184 1.110032 -0.664698 -1.293698 -1.225677 0.626303 -0.853857 0.537952 0.609985 0.457399 -0.080553 -1.672018 0.243646 -2.397134 -1.592706 0.627530 -0.795963 -0.154999 1.997000 -1.802213 0.245568 -0.782687 -0.043734 -0.103143 1.361104 0.570292 1.181587 1.321909 2.173417 0.586405 -1.755134 -1.191709 0.662339 2.635566 1.292400 0.677568 -1.416817 -1.169906 0.604406 -1.343815 -2.788028 -1.222036 1.449138 1.964664 0.785983 -1.552992 0.519160 -0.472731 2.421773 1.442012 0.218476 0.003630 0.335941 -2.096417 1.655268 2.437545 -0.697315 2.067115 -0.249708 0.000429 1.298796 -1.687804 0.573464 1.176218 -0.663393 -0.673167 -0.614898 -0.548089 1.209048 1.557901 1.218715 -1.061380 1.322601 -0.939714 -2.786575 -3.118689 -0.395335 2.209106 0.183004 2.348438 -1.698596 -1.784285 -0.162641 1.892840 -0.777177 -1.656236 0.580779 -1.912402 1.363202 -2.461816 -2.287048 4.158732 3.373929 1.933140 0.789963 2.032103 1.759940 -2.415114 -0.193164 -0.141776 0.936751 0.476835 -3.093278 -0.578304 0.224412 -2.242349 -1.771140 -0.497853 0.933673 -0.839869 0.930620 1.528405 0.471251 -0.736777 0.058608 0.591480 -0.909346 -0.877237 -0.130286 0.158803 0.781520 0.720315 -1.287460 0.631920 0.822760 -1.894310 0.342369 0.721562 1.459102 1.409631 2.764607 2.781964 -0.403876 2.850652 -0.371984 -1.253659 1.450169 -0.436610 0.797134 0.034926 0.714226 0.743229 0.108923 1.351510 -0.991898 -0.783762 -1.751137 -0.386972 1.114620 1.884396 -0.309860 -2.448074 -2.535348 -0.186001 0.984374 1.717779 -0.850725 2.864719 -1.181479 0.554523 -4.102660 0.178105 0.786358 -0.120076 0.680123 0.540403 -0.889099 -2.717873 -0.599722 -1.662370 -1.975273 -0.535309 -1.076565 -0.722647 -2.042667 2.573733 -1.919822 -0.252689 1.026170 0.275666 1.885627 0.280762 0.051537 -1.107384 0.545697 0.825728 0.274679 -1.540488 1.970701 0.321858 5.054565 -0.393422 0.981615 -0.868119 1.527790 -0.490570 -1.324086 -0.221607 2.315103 2.663951 -0.104285 -0.054367 0.006390 -0.365934 1.418537 -PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = -2.244996 -0.527362 4.079927 0.360674 -2.939108 -3.666865 -1.842012 -6.799885 3.101250 1.490909 4.550678 0.668575 2.470938 -2.786527 0.731845 1.207344 2.341470 -2.692924 0.935088 -1.872374 0.654968 3.897675 1.039344 0.463657 0.363985 -4.049449 0.947924 0.069035 1.939739 2.416302 1.516746 -1.062958 -2.481245 1.228053 1.709779 3.554514 2.773395 0.944152 -2.260534 -0.235262 -0.856901 -1.788892 2.243502 -1.043912 5.325058 -1.712282 1.865674 0.886743 -3.031452 -2.113464 -1.123114 3.471170 -3.502343 0.935472 2.009804 -1.258123 -0.752415 -0.861220 -1.345762 -2.746942 -1.328790 -2.872424 -1.313159 0.876087 -1.230889 1.829793 -1.495695 -0.274448 -0.291694 -1.034058 2.312656 1.436713 1.921838 3.777626 -3.615406 0.291691 0.435051 1.148521 1.961759 0.004079 0.106697 -1.516521 -1.001154 -2.416567 2.665289 2.187629 0.490681 -0.121681 -2.959422 2.852633 -0.766727 -0.878213 0.996567 0.931523 -4.022695 -1.115288 0.396747 -1.212205 -1.220811 -4.205080 0.631060 -1.885495 0.914210 0.892317 -0.675588 -1.000494 -3.595369 0.580114 -3.672338 -2.224276 1.960574 -0.916075 -0.405128 3.549049 -3.192861 0.513009 -2.256127 -0.171913 0.824941 1.514792 0.914724 2.356822 1.504172 3.735187 2.185933 -2.864108 -2.241739 1.926533 4.186141 1.411470 0.927126 -2.110972 -1.662655 1.540153 -2.102041 -4.434308 -2.503813 1.936965 3.235772 1.953241 -1.302685 -1.728820 -1.131867 3.911327 2.477483 0.662893 -0.215373 0.864718 -3.400376 2.500629 3.173702 -1.134888 3.285847 0.310801 1.100009 1.634950 -3.268694 1.204909 1.059627 0.079348 -1.228679 -1.543743 -2.069120 2.034923 2.466540 2.339464 -3.010218 2.199673 -1.623413 -4.770660 -5.043870 -0.739282 4.988347 0.231738 1.646508 -2.944549 -2.531041 0.225610 3.707037 0.347265 -3.450296 1.240964 -2.779851 2.276409 -3.364183 -3.700732 6.666509 6.440444 2.712244 0.992490 2.087823 3.338029 -6.392678 -0.779248 -1.042737 1.546885 -1.183546 -6.303419 -2.167135 1.032531 -3.577895 -2.787638 -0.440799 1.555278 0.189273 1.849068 3.061215 3.311400 0.216993 0.128011 2.341257 -0.593622 -2.907908 -0.467906 0.525654 2.528931 1.523725 -2.083792 1.294337 2.107217 -3.207016 0.333481 1.850145 2.176570 1.603140 5.011920 3.918189 -0.199353 2.625086 -0.929964 -2.324507 1.618467 -0.732499 1.369984 0.013251 -0.380785 0.949244 0.257565 2.620605 -1.892253 -2.564869 -2.587645 -1.904852 0.403272 3.835031 -0.036069 -5.908696 -3.683482 0.884449 1.886790 1.855817 -0.693283 4.856186 -1.566339 0.961234 -5.918956 0.018480 2.244699 -0.313064 2.029645 0.530755 -1.134147 -3.423436 -1.353279 -3.167940 -2.840585 -0.753975 -0.675661 -0.739959 -3.393754 5.607949 -1.930343 -0.829669 0.228704 0.920778 4.438295 1.912254 -0.052940 -2.761984 1.623177 1.303900 0.264193 -2.419859 4.257699 1.239833 7.919343 -0.995701 -0.066415 -0.684904 1.767215 -0.745143 -2.053110 -0.175040 3.788399 4.907080 1.021573 -1.512999 -0.562503 -1.192606 2.000276 -PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = -3.369590 -1.274173 4.185012 -0.562288 -2.788799 -4.019181 -2.083795 -7.757913 3.505614 2.228466 5.905391 1.030279 3.513476 -3.067599 1.261299 1.440069 2.888695 -4.238464 1.771319 -2.020808 1.501894 5.362396 1.583223 2.198074 -0.264436 -4.420748 0.294192 -0.444196 2.429012 3.126196 1.821315 -1.377048 -2.819299 0.781634 1.988371 4.448989 3.062670 1.322197 -2.397517 -0.441663 -1.531336 -3.077987 2.561444 -1.569035 6.350641 -2.894676 2.301184 0.759916 -3.000666 -3.287761 -1.601103 3.825369 -4.486546 0.458860 2.449038 -2.576685 -1.003721 0.292425 -1.961079 -3.457603 -1.729797 -3.832567 -1.169141 1.281368 -0.930071 2.709816 -2.783701 0.229447 -0.799181 -1.577193 2.804024 2.085904 3.252488 5.400854 -4.830167 0.742921 0.128916 0.869929 1.856764 0.430499 -0.373833 -1.619232 -0.771570 -2.843633 3.232444 3.083131 0.095027 -0.370680 -4.402653 4.588005 -1.285875 -0.714036 0.978246 0.677833 -4.831933 -0.962621 1.196354 -1.334219 -0.954475 -5.175055 0.549150 -2.373186 0.746811 1.275071 0.013979 -1.971624 -5.863658 0.119084 -5.165962 -3.285758 2.781584 -0.978704 -1.411566 3.818114 -5.034197 1.683823 -2.811144 0.535529 1.434620 1.483170 1.394955 3.402201 0.644550 4.042406 2.351567 -3.430171 -2.342333 2.818119 5.801263 0.949540 0.565348 -1.695309 -1.930719 2.094834 -2.875662 -4.805016 -3.689534 3.631451 3.823689 2.522202 -1.024258 -2.109127 -1.155862 4.800199 3.955794 0.558980 -0.189654 1.269267 -4.106726 2.917288 3.225900 -1.365649 4.423715 0.982556 1.452276 2.717862 -4.691277 1.709607 1.569241 0.956934 -2.042014 -1.992440 -2.786462 2.103868 3.600136 3.724760 -4.342817 2.668814 -1.214614 -5.514485 -6.065551 -1.264101 6.354429 0.566395 0.840010 -3.131879 -2.783878 1.429540 4.008639 1.008394 -5.097582 1.590693 -2.868872 2.487896 -5.246714 -4.135042 7.915508 7.830997 3.397677 1.615476 2.014595 4.845886 -7.845911 -0.636485 -1.130399 2.523105 -2.431621 -8.437807 -2.695342 1.258230 -4.005670 -3.602939 -0.982521 1.742164 -0.195821 2.566628 4.300453 4.221794 0.838969 1.211137 3.075839 -0.535460 -4.422283 -1.080390 0.680377 3.271238 1.315023 -2.366835 2.631983 3.099134 -4.302447 0.194810 2.251244 1.971366 2.108374 6.069921 4.724505 -0.560356 2.202994 -1.874857 -2.546821 1.022992 -1.188959 1.227639 -0.572634 -0.511110 1.352451 0.124544 2.893927 -2.092170 -3.822455 -2.650710 -2.283483 0.703311 4.784323 0.825034 -8.093050 -4.222486 1.942941 2.470654 2.521862 -0.752015 5.699355 -2.333354 1.221893 -6.696715 0.315958 2.037233 -0.209384 2.522754 0.352418 -0.596374 -2.723274 -1.804749 -3.648366 -3.078197 -0.595273 -1.512191 -0.215495 -4.835287 6.873428 -2.893699 -1.449245 -1.248744 1.003629 6.088542 3.721569 -0.663708 -4.159746 3.128926 1.320458 0.477781 -2.382320 5.612024 1.209815 8.805209 -1.693980 -0.647542 -0.421999 2.920281 -1.341067 -2.289807 0.331709 4.502284 6.353927 0.850399 -2.308985 -0.952917 -0.845769 1.421031 -PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/strongly-connected-components.cpp___GLOBAL__sub_I_strongly_connected_components.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/overlapping-subproblems-property.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = -0.119418 0.677680 1.803192 1.275849 -1.307985 -1.639110 -0.666062 -1.768629 0.530501 -0.249056 1.122534 -0.071696 0.194448 -0.117582 0.151805 -0.416962 0.360223 0.074567 -0.132403 -0.621141 -0.836734 0.572279 0.360647 -1.413372 0.375321 -1.209482 1.180507 1.072134 0.375792 0.737454 0.096289 -0.200574 -0.720409 0.937805 -0.488560 -0.345470 0.322299 0.170956 -0.723774 0.104255 0.576742 0.610857 1.100535 -0.058827 0.729258 0.817029 0.587743 0.586952 -1.115874 -0.090079 -0.497932 1.237499 -0.683595 0.772497 0.217896 0.437594 0.390234 -1.151918 -0.159418 -0.884369 0.042678 -0.063245 -0.600621 -0.043884 -1.020835 0.068534 -0.060388 -0.916100 0.862965 0.046958 0.871990 -0.079104 -0.220813 -0.257957 -0.632104 0.145865 0.213878 0.979327 0.777161 -0.361038 0.292400 0.194999 -0.687135 -0.640782 0.161767 -0.144084 0.629416 -0.075716 0.017949 -0.507190 0.420224 -0.368911 0.120017 0.602718 -0.444235 0.338695 -0.863635 -0.314279 -1.098606 -0.924484 0.200821 -0.517676 0.694988 0.550500 -0.823666 -0.017243 0.091385 0.318440 -0.259895 -1.077996 0.012533 -0.403704 0.566390 1.347339 -0.354261 -0.522030 0.023851 -0.531661 -0.249429 0.995306 0.245805 0.167357 0.906509 1.484842 0.192483 -0.805005 -0.642968 -0.217803 0.509405 1.165729 0.959487 -1.157860 -0.677921 -0.012032 -0.329975 -1.778862 0.436982 -0.034618 1.035160 0.387908 -1.227410 0.387244 -0.895037 0.910503 0.189082 0.923991 0.261359 -0.232922 -0.871062 1.033721 1.545371 -0.443329 0.850619 -0.350012 -0.688680 0.642716 -0.270877 0.394445 0.394546 -0.399756 0.352524 -0.461313 -0.344594 1.021260 0.518905 0.260677 0.929688 0.275069 -0.668269 -1.727757 -1.279998 0.507294 1.107038 -0.170332 1.598888 -1.141776 -0.726389 -0.397432 1.593397 -0.661692 -0.418036 0.100106 -0.510893 0.714927 -0.936561 -1.300674 1.494264 1.474631 -0.027830 -0.123911 0.985077 0.496736 -0.767086 -0.655743 -0.763975 0.305164 0.269901 -0.306516 -0.192386 -0.028413 -0.983013 -0.107265 0.454083 0.583258 0.733400 -0.599684 -0.591133 0.169116 -1.204106 -1.062989 0.399134 -0.931586 0.079330 0.539981 -0.220053 0.120789 0.506938 -0.344377 -0.710878 0.143948 -0.693266 0.150268 0.322166 1.100677 0.263156 1.698726 0.603965 0.149868 1.265361 0.760248 -0.785465 2.470453 -0.488307 0.556745 0.359684 0.991214 -0.096548 0.495040 0.751766 -0.572234 -0.563694 -1.390398 0.034402 -0.007299 0.758209 -1.331424 -0.631753 -1.619217 -0.569722 0.562518 0.786163 -0.358201 1.877681 0.024281 0.036190 -1.842545 -0.233262 0.845729 -0.247169 0.753158 0.522612 -0.895174 -1.864965 -0.297075 -0.850278 -0.037764 -0.387524 -0.475150 -0.760562 -0.197361 0.568852 -0.127315 0.392548 1.344285 -0.226809 0.174063 -0.419590 -0.055113 0.061619 -0.796527 0.795716 0.099760 -1.275579 1.442227 0.108276 2.772850 0.093309 0.824660 -0.776521 -0.233374 0.248053 -0.382564 -0.444201 1.384089 0.810539 0.512737 0.084724 0.439852 -0.595101 0.891861 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -0.487172 0.732958 4.204830 2.388346 -1.768828 -2.686354 -1.309451 -3.581274 1.821752 -0.206415 2.172995 0.369121 0.370685 -0.140974 0.554529 -0.156938 0.285903 -0.938288 0.298641 -0.816550 0.148700 2.659103 1.646419 -3.155951 0.176597 -4.194816 1.859898 1.844433 1.820422 2.012073 -0.149650 -0.745729 -0.575722 2.079962 -1.271357 -0.598269 0.879420 0.243544 -1.681171 0.142975 0.596412 2.352687 1.693924 -0.455995 2.242958 0.801872 2.216172 0.828877 -1.418119 -0.039885 -1.932843 3.762879 -1.882356 1.583203 0.307321 1.250595 -0.129870 -2.573602 -1.176163 -2.778591 -0.097545 1.258743 -1.181573 -0.096525 -2.075305 0.598187 0.140051 -1.034637 1.470268 1.049773 2.422872 0.841153 0.826845 -0.835978 -2.307730 0.962228 -0.546716 2.247596 1.312124 -1.417913 -0.330874 0.892501 -0.599769 -1.411401 0.347617 0.684262 0.329138 -0.815734 0.899557 -0.389571 -0.480184 -0.909474 -1.119284 1.619807 -1.519791 1.394517 -1.225852 0.053859 -1.359942 -0.591010 -0.323082 -1.872083 1.052327 1.455558 0.108112 -0.016117 0.038825 0.728216 -1.003114 -2.212060 0.500280 0.083565 0.230836 2.446672 -1.116995 0.111726 0.748293 -0.157372 -0.846438 2.471393 -0.139268 1.261238 1.834915 3.428662 0.282805 -1.472910 -0.674784 0.474568 2.030556 2.604150 2.044666 -2.783313 -1.336051 -0.509020 0.558079 -3.475419 1.319180 1.266747 1.940163 0.735787 -2.927992 0.191740 -1.209450 3.454162 1.226848 1.361389 0.642267 -0.197717 -1.807703 2.802870 5.140053 -0.909678 1.827958 -1.414119 -0.665572 2.278270 -2.074030 1.867484 0.476872 0.424410 0.966524 -1.844833 -1.097924 2.262964 1.763705 1.270431 2.072511 0.385790 -0.177980 -4.290895 -2.647960 -0.285332 1.670225 -1.007064 4.063260 -1.807957 -2.086284 -1.126439 2.515035 -0.842126 -0.675223 0.171844 -1.488993 1.383921 -3.148180 -2.984958 3.887901 4.161330 0.085327 0.181835 2.971627 2.120872 -1.400931 -1.364691 -0.755080 1.058481 0.216508 -0.691320 -0.201876 -0.049511 -2.358578 -1.307609 0.666828 0.751265 1.305182 -0.239878 -1.687056 1.595926 -3.338776 -1.635914 0.838041 -2.633204 -1.097400 0.687552 0.100363 0.202718 0.929543 -1.143872 -0.601656 1.819477 -1.747035 0.067842 1.154239 2.019904 0.846328 2.288333 2.004705 1.248235 3.334160 2.009612 -1.434611 5.149873 -0.598217 0.331974 0.735581 0.833228 -0.457190 1.150695 0.323380 -1.160634 -1.214760 -2.961746 1.754007 -0.423021 1.957245 -2.333817 -2.255069 -1.798827 -1.408032 2.377197 1.216249 -0.463605 4.491428 -0.269465 0.288796 -5.385632 -0.408980 1.929803 0.228751 1.515395 1.548446 -1.550978 -4.282384 -0.679275 -0.616966 0.041366 -1.330284 -2.502475 -1.434232 -1.574634 1.963423 -1.271476 1.006059 3.266694 -0.161259 1.410167 -0.922405 -0.341946 -0.681531 -1.104297 0.925613 0.887325 -2.604575 2.861626 -0.855671 6.178877 -1.534062 1.690140 -2.090544 0.319476 -0.051742 -0.417647 -0.155633 3.401530 1.445987 0.769137 0.168272 -0.123012 -1.683026 1.712576 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.464531 0.368953 0.961830 0.114898 -0.410768 -1.122366 -0.324635 -1.949856 0.760617 0.247430 0.700186 -0.132612 0.526613 -0.183104 -0.115160 0.604517 0.276382 -0.142638 0.293052 -0.370920 -0.479030 1.352643 -0.269515 0.308282 0.151514 -1.259207 0.538139 0.331190 0.949101 0.541895 0.233071 -0.178754 -0.128163 0.353290 -0.149743 0.245705 0.090331 0.293944 -0.840608 0.296020 -0.226402 -0.155383 0.643835 -0.017065 0.651706 0.141361 0.474238 0.320853 0.042390 -0.154337 -0.501928 0.854959 -0.286758 0.331385 -0.282090 -0.414029 -0.089566 -0.155107 -0.128290 0.469509 -0.328290 -0.194393 -0.539553 0.166237 -0.714008 0.180280 -0.534297 -0.448216 -0.076962 0.081531 0.572351 0.282593 -0.007133 -0.002339 -1.584267 0.121159 0.157741 0.297633 0.437028 -0.081608 0.244000 0.016269 -0.723313 -0.704808 0.891528 1.046577 0.197256 -0.025363 -0.578526 -0.315276 -0.348600 -0.090467 0.508456 0.504494 -0.549053 0.134545 -0.667430 -0.172409 -0.530703 -1.293895 0.190723 -0.391744 0.442182 -0.405617 0.269520 0.043753 0.408984 0.172099 -0.079494 -0.706342 0.057205 -0.237469 0.225480 1.377829 -0.031615 -0.312732 -0.491673 -0.241565 -0.460573 0.433516 0.410502 0.096428 0.870106 0.642660 0.445538 -0.561158 -0.624713 0.497697 0.240778 0.446307 0.335105 -0.728272 -0.401848 0.132869 -0.199332 -1.313032 -0.338206 0.259639 0.478873 -0.657681 0.212479 0.099037 -0.333565 0.484123 0.577476 -0.178347 0.311900 0.040216 -0.460091 0.605917 1.315725 -0.145938 0.382412 -0.842035 -0.184598 0.544632 -0.343682 0.311711 0.029664 -0.049079 -0.347275 -0.320351 0.220854 0.594636 -0.073773 0.163593 0.144022 0.345297 -0.652732 -0.712682 -1.002119 0.048013 0.863446 -0.062542 0.948049 -0.638412 -0.420389 0.042835 0.691638 0.219656 -0.183255 0.541771 -0.806145 0.474138 -0.827182 -0.906732 1.144672 1.099954 0.572361 -0.181851 0.446614 0.646803 -1.021515 -0.666620 -0.345588 0.380561 0.162721 -1.586639 -0.598951 0.083991 -0.785283 -0.207062 -0.066351 0.328963 0.374022 0.480843 0.652532 -0.435838 -0.548243 -0.637366 0.859820 -0.374558 -0.055936 0.092382 0.044452 -0.241291 0.530830 -0.436301 0.185353 0.416708 -0.354607 0.371335 0.371492 0.149951 -0.220937 0.991371 0.969791 -0.110887 0.883401 -0.021321 -0.347476 0.849511 -0.175094 0.258679 0.077171 0.093637 -0.261316 0.346300 0.462629 -0.379290 -0.696655 -0.759115 -0.131818 0.178283 0.325892 0.424717 -0.665587 -1.000707 -0.244820 0.025933 0.976457 0.260496 1.096652 -0.429827 0.471548 -1.219124 0.187329 0.127674 -0.027841 0.707823 0.165652 -0.459202 -0.085901 -0.190529 -0.724123 -1.067553 -0.293471 -0.791822 -0.559020 -0.582228 0.436510 -0.448906 -0.051351 0.533901 -0.003390 0.560715 -0.645445 -0.000964 -0.690993 0.269929 0.920757 -0.167686 -0.574057 0.310092 0.007563 1.857947 -0.080341 0.470952 -0.244974 0.128841 -0.112197 -0.823687 -0.219958 0.918539 0.498431 0.148200 -0.171285 -0.176351 0.109643 0.413935 -PE-benchmarks/overlapping-subproblems-property.cpp___GLOBAL__sub_I_overlapping_subproblems_property.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/count-1s-sorted-binary-array.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -1.442179 0.528668 8.142271 5.714950 -2.990858 -4.776611 -3.169390 -7.059818 4.336951 -0.072572 4.712328 0.074761 0.604038 -1.211076 0.117106 -1.503940 0.190236 -2.504622 0.843029 -1.702684 -0.342020 6.063234 4.184907 -6.843518 0.016112 -8.948404 4.938230 3.130984 3.600632 5.466480 -0.163840 -1.203166 -0.190037 4.626670 -2.577097 -0.807619 1.262918 0.637481 -2.818202 0.305262 2.051197 5.149545 4.426509 -0.438911 4.855786 2.054990 3.235743 1.057019 -3.445604 0.225065 -3.154302 6.139653 -4.559662 2.430320 0.346391 2.611588 0.663119 -5.883647 -2.627845 -6.109469 -0.443264 2.448982 -2.761667 0.347586 -4.753588 1.417980 -0.784898 -1.974352 2.933588 1.413644 4.619382 2.681676 1.552228 -1.952808 -4.034089 2.924654 -0.302319 3.761992 2.997600 -3.049282 -0.631555 2.080958 -1.427277 -2.807262 1.149542 0.762189 0.712936 -0.737919 3.184366 -1.917586 -0.641484 -1.431128 -1.620970 3.451645 -1.297865 2.652884 -1.927657 -0.621250 -2.046527 -1.238778 -0.552310 -3.962828 2.406441 3.886993 -1.291822 0.613345 0.550227 1.718836 -1.987153 -4.617499 0.939897 -0.616468 1.653954 5.614715 -2.424419 -0.658290 0.041503 -0.200173 -1.062554 5.384318 -0.573231 2.624160 3.675373 6.714144 0.189552 -3.510090 -1.013771 0.835091 3.540001 4.646072 4.127255 -5.107965 -3.018008 -1.628336 1.984501 -7.014186 1.448131 1.050943 3.067690 1.143373 -5.913462 1.705441 -2.349087 6.882344 3.078083 2.221496 1.499555 -0.429087 -4.172047 6.144676 9.649828 -1.620653 3.216602 -3.705150 -3.497554 5.110912 -4.190574 3.723639 0.052936 0.235411 2.392364 -3.979450 -0.362107 4.554006 2.071543 2.104600 3.801558 0.878768 1.209634 -7.932948 -5.399106 0.743997 3.449297 -0.978122 8.741090 -3.735485 -3.531477 -2.141918 4.711015 0.050371 -0.412992 0.180979 -2.897164 2.727852 -8.830494 -6.995543 8.050014 7.637439 1.247893 0.590775 4.698509 4.119310 -0.757003 -2.131066 -1.757050 2.524353 1.260831 -0.726984 -0.129971 -0.353703 -3.764447 -3.249457 1.610908 1.525589 3.268903 -3.353428 -4.365317 1.129657 -6.463031 -3.723677 2.330989 -6.112295 -2.168404 1.283640 -0.168721 0.329930 2.202899 -1.439934 -0.660302 2.374410 -2.463872 -0.152786 2.231270 4.784241 1.008645 3.394524 5.200468 1.430118 5.493840 4.194031 -2.177336 10.843998 -2.039463 0.691402 1.990854 1.660912 0.179008 1.987298 1.012720 -2.393640 -1.233176 -5.440822 4.180749 0.101768 3.808293 -6.442115 -4.335512 -4.412069 -2.833914 4.320916 2.426443 -0.052622 9.479017 -0.446950 -0.185743 -9.559439 -1.242482 4.701813 1.163418 4.485711 3.310429 -3.808256 -8.318815 -2.027142 -2.088495 2.564493 -3.302114 -4.944318 -3.269613 -1.920834 4.519512 -2.194359 3.007641 6.846726 -0.702796 1.961177 -1.695692 -0.679911 -1.854267 -3.070000 0.577365 1.757596 -4.815436 5.678786 -2.123456 10.749254 -3.131200 3.343887 -4.844544 1.825617 -0.652158 -0.682895 -0.419912 6.953396 2.669393 0.914210 0.517775 -0.417352 -3.048350 3.521927 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.245062 0.292060 1.344428 -0.022575 -0.642098 -1.432780 -0.525422 -2.730346 0.941720 0.422422 1.221710 -0.186152 0.781309 -0.213558 0.051950 0.795063 0.564903 -0.746016 0.661540 -0.583204 -0.390394 1.745337 -0.312606 0.589048 0.094000 -1.933449 0.877046 0.298411 0.993610 0.798041 0.523051 -0.259097 -0.346885 0.438004 0.119507 0.605668 0.560352 0.390085 -0.916353 0.455336 -0.360223 -0.200808 0.795987 -0.159711 1.134526 0.172918 0.735348 0.560596 -0.066861 -0.366934 -0.757729 1.114203 -0.708775 0.254291 -0.162900 -0.656897 -0.096453 -0.395402 -0.426920 0.391572 -0.560781 -0.484800 -0.694616 0.393784 -0.865017 0.523924 -0.753204 -0.328897 -0.074192 0.331529 0.890121 0.528304 0.311747 0.540354 -1.979797 0.231047 0.037200 0.418587 0.557203 -0.514478 0.155204 0.097030 -0.922019 -0.989805 1.160525 1.517089 0.243240 -0.331541 -0.669858 0.161473 -0.675586 -0.241038 0.475594 0.686871 -0.735090 0.016196 -0.651997 -0.237661 -0.787117 -1.685079 0.244785 -0.641834 0.589900 -0.129712 0.230598 -0.188619 -0.015954 0.162503 -0.580275 -0.987933 0.227927 -0.415736 0.368656 1.718871 -0.389045 -0.158285 -0.847690 -0.303998 -0.218277 0.630506 0.501201 0.391701 1.170376 1.177015 0.441547 -0.787020 -0.996072 0.700344 0.702506 0.567274 0.521450 -1.211314 -0.638243 0.175589 -0.386800 -1.549349 -0.498039 0.376459 0.746596 -0.724152 0.042009 0.068855 -0.469914 0.964619 1.009928 -0.027701 0.228187 0.158877 -0.761016 1.034074 1.742322 -0.218552 0.734550 -1.090176 0.146018 0.723188 -0.662105 0.364408 0.343160 0.155004 -0.732972 -0.519446 -0.060378 0.685907 0.363558 0.558256 0.132559 0.630733 -0.608395 -1.106736 -1.325243 0.054677 1.424159 -0.260513 1.179757 -1.031163 -0.616236 0.139618 0.983433 0.454111 -0.599675 0.648014 -0.986165 0.611995 -1.099963 -1.229067 1.677937 1.514805 0.794987 -0.112025 0.598212 1.129179 -1.794502 -0.687147 -0.414728 0.776589 -0.195206 -2.240006 -0.732099 0.243498 -1.124451 -0.604375 -0.213956 0.635008 0.657844 0.676854 0.735725 -0.054214 -0.691587 -0.624110 1.191249 -0.422796 -0.605284 0.076370 0.051273 0.049140 0.571134 -0.567145 0.549081 0.807241 -0.681503 0.357154 0.819667 0.327833 -0.141500 1.487655 1.275130 -0.024462 0.989738 -0.099016 -0.428171 0.801234 0.049033 0.373262 0.090131 -0.079690 -0.207012 0.276333 0.728435 -0.517456 -1.245670 -1.060440 -0.073829 0.108116 0.776421 0.641204 -1.100224 -1.403677 -0.191112 0.388526 1.437206 0.269506 1.552047 -0.413976 0.558225 -1.615298 0.190487 0.222884 0.004442 0.736487 0.217253 -0.476780 -0.016137 -0.274932 -1.048987 -1.548281 -0.403305 -0.929928 -0.812400 -0.967621 0.856999 -0.543095 -0.299843 0.637006 0.173296 0.870290 -0.286034 -0.122832 -0.989936 0.489293 1.117460 -0.143299 -0.841526 0.867632 -0.031217 2.727135 -0.279859 0.375744 -0.253450 0.266145 -0.150324 -0.865710 -0.092978 1.322056 0.804925 0.145731 -0.236967 -0.383332 0.171370 0.613452 -PE-benchmarks/count-1s-sorted-binary-array.cpp___GLOBAL__sub_I_count_1s_sorted_binary_array.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/bfs.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/bfs.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = -0.190463 0.133728 1.257446 0.344584 -0.623937 -1.634691 -0.524524 -2.098261 0.871996 0.435050 1.271753 0.118420 0.802396 -0.328718 0.149199 0.433836 0.307195 -0.516292 0.228120 -0.546992 -0.508622 1.492837 0.304550 -0.067300 0.095507 -1.339811 0.941518 0.522484 0.604105 1.029258 0.271443 -0.105256 -0.255992 0.649502 -0.206666 0.636000 0.077557 0.559018 -0.337703 0.175353 0.190510 -0.149499 0.851270 0.131024 1.244945 0.455452 0.705696 0.300718 -0.373422 -0.545387 -0.572718 0.839811 -1.012278 0.362504 -0.529398 -0.106095 0.148115 -0.413232 -0.231360 -0.717346 -0.144551 -0.287690 -0.956082 0.160444 -0.839813 0.363495 -0.454319 -0.572355 -0.198703 -0.073011 0.900504 0.270012 -0.117155 0.180575 -1.558279 -0.030828 0.060001 0.267160 0.758260 -0.330474 -0.460785 -0.178102 -0.779005 -0.926536 1.082913 0.677311 0.318355 0.215147 -0.524810 0.010139 -0.455651 -0.017515 0.470753 0.781011 -0.597657 0.117777 0.165294 -0.229401 -0.681284 -0.994430 0.436172 -0.638574 0.478023 0.172227 0.137989 -0.306369 -0.438318 0.085498 -0.840168 -1.030934 0.158467 -0.608223 0.190752 1.059625 -0.496824 -0.037994 -0.367325 -0.326129 0.191690 0.861477 0.598592 0.189151 1.098097 1.016099 0.326319 -0.922591 -0.718886 0.443326 0.840848 0.667107 0.327549 -0.964183 -0.641511 0.257628 -0.570045 -1.577515 -0.297449 0.635620 0.699155 -0.326661 -0.551899 0.645831 -0.479060 0.655105 1.093256 0.351615 0.235093 0.114575 -0.931481 0.774849 1.729152 -0.283532 0.812933 -0.504165 -0.379479 1.222461 -0.900372 0.391682 0.498315 -0.217113 -0.474615 -0.386455 -0.012422 0.861794 0.376970 0.693497 0.220427 0.542466 -0.502100 -1.117232 -1.406991 -0.156200 1.558408 0.280655 1.422191 -1.056361 -0.315646 0.136512 1.031399 0.076870 -0.586175 0.298864 -0.622598 0.696449 -1.704612 -1.200865 1.752822 1.342880 0.947999 0.098941 0.698793 0.985333 -0.753018 -0.445793 -0.403325 0.605818 0.062939 -1.181880 -0.305798 0.021816 -1.203169 -0.570215 -0.229293 0.480847 0.103380 0.096337 0.370351 -0.187058 -0.499520 -0.569442 0.403600 -0.632888 -0.429982 -0.056897 0.018349 -0.079945 0.201223 -0.363062 0.353095 0.437553 -0.693521 0.342265 0.628575 0.359932 0.339388 1.568077 1.274309 -0.520699 0.657187 -0.064412 -0.246828 1.189198 -0.225265 0.390486 0.265978 0.741112 0.276497 0.281020 0.776366 -0.523552 -0.570331 -1.054044 -0.019327 0.657362 0.741133 -0.002710 -0.856839 -1.525029 -0.153963 0.329575 1.499823 -0.195592 1.678486 -0.262881 0.625189 -1.692185 0.198749 0.355525 -0.206954 0.561228 0.350480 -0.536606 -0.666724 -0.448492 -0.757877 -0.894658 -0.285486 -0.521750 -0.592057 -0.617223 0.344575 -0.864639 -0.036060 0.483969 -0.077601 0.616799 -0.325330 0.056043 -0.724280 0.261525 0.891409 0.010910 -0.876803 0.874329 0.055016 2.382786 -0.277690 0.859055 -0.328675 0.724567 -0.348234 -0.690522 -0.236157 1.350073 0.948549 0.088995 0.083996 0.075203 0.196868 0.621834 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -0.942488 1.806780 11.100795 5.071169 -7.046822 -10.387211 -4.435345 -16.634964 7.779927 1.946479 8.103851 1.251226 3.127899 -3.815449 0.591985 2.717439 2.461734 -3.160841 0.604034 -4.240250 -2.149948 10.307698 2.097274 -3.571338 1.173586 -12.519135 5.342763 3.753020 6.505126 4.928170 2.675334 -2.029067 -3.539677 5.599182 -0.836145 4.192971 2.526887 1.724829 -6.050506 0.331474 1.088577 2.212577 6.404830 -0.311480 10.278215 0.454180 6.373605 2.747288 -4.964780 -1.892018 -5.088142 11.178040 -5.939383 4.385858 1.157156 0.603261 -0.458333 -5.853743 -2.166400 -3.480178 -2.752334 -1.159788 -5.106529 0.734366 -5.899666 2.272779 -1.822546 -2.753570 1.438807 0.619512 7.532591 1.729443 0.812262 1.081998 -9.846645 1.054339 -0.074081 4.435890 5.993240 -1.588854 0.104525 -0.710957 -3.864162 -6.098401 5.878051 4.720077 1.126152 -0.366357 -2.479690 -0.819407 -2.398299 -3.328563 1.617447 4.859157 -7.962821 0.666641 -2.323390 -2.062880 -5.194948 -6.716994 1.515304 -4.538299 3.656239 0.956841 -0.057404 -0.906047 -0.646781 0.597908 -4.377752 -5.572224 1.938573 -1.634482 2.649644 10.140528 -3.376288 -1.384641 -1.902909 -1.997580 -2.483661 6.105231 3.275483 2.685631 8.016815 9.675085 4.441215 -5.683659 -4.869744 3.051103 5.998775 6.562582 3.944263 -7.890556 -4.387517 1.477696 -0.420439 -11.816581 -0.710305 3.649235 6.908351 1.573425 -3.993856 -0.915711 -2.773801 8.312205 4.107809 1.458841 1.741506 0.259738 -6.673785 7.555409 13.892118 -1.549907 5.323993 -4.066995 -0.967978 6.071670 -7.287453 3.898344 2.765572 -0.721231 -1.173183 -3.890721 -2.028843 6.359204 2.590734 2.559823 1.110574 4.414673 -4.363624 -11.333397 -11.012033 -0.102546 8.253822 -0.721755 10.217024 -7.000266 -5.001845 -1.595870 8.889049 -0.272990 -3.699832 3.245154 -6.863585 5.334010 -7.366161 -8.849418 14.603139 14.525611 4.000327 -0.548013 7.506243 7.435653 -9.547183 -4.848922 -3.295495 2.895005 1.866644 -9.027514 -2.546026 0.834532 -8.281975 -5.232402 0.218948 3.123126 2.716658 1.442423 2.222324 2.479785 -5.398039 -4.780552 4.878336 -4.385591 -2.915881 0.809687 0.938760 0.743232 4.403545 -4.206171 0.046088 3.853438 -5.081053 2.101822 4.164359 5.446460 1.845031 9.809325 8.592037 0.274920 10.788972 2.111995 -4.244876 11.048402 -1.796677 2.751089 1.848402 1.647109 0.271081 2.661958 3.404514 -4.645032 -4.309250 -7.847762 0.905584 0.412550 6.242973 -3.300386 -8.260248 -10.016072 -2.802323 3.950022 4.720405 -0.890711 13.101779 -2.948289 1.928469 -15.846563 -0.065114 5.810586 -0.498131 5.365979 2.869753 -4.820177 -8.214827 -2.796616 -5.327531 -5.268911 -2.664676 -4.820954 -4.413276 -6.591206 8.576994 -4.599675 1.296743 7.155102 0.279497 5.321662 -3.735190 0.391363 -4.495147 -0.286572 4.909205 0.719939 -7.868910 7.940481 -0.340743 19.733447 -3.141667 4.556581 -3.942473 2.560702 -1.422799 -5.442606 -1.350660 9.953727 6.858249 2.193372 -1.062465 -0.036522 -3.163544 5.959179 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = -1.042018 -0.452544 1.379613 -0.041029 -0.823333 -1.196316 -0.666592 -2.231173 0.935770 0.681715 1.872026 0.156448 1.022427 -0.824855 0.328059 0.190274 0.690708 -1.273798 0.563537 -0.581452 0.333004 1.494643 0.603586 0.395252 -0.072797 -1.412939 0.460703 -0.091672 0.556467 1.242336 0.352562 -0.383686 -0.778694 0.323081 0.479494 1.249002 0.901768 0.527665 -0.441377 -0.018124 -0.255564 -0.824683 0.732326 -0.553789 1.897152 -0.453947 0.519718 0.188151 -1.024073 -0.998190 -0.290276 0.710589 -1.529683 0.158123 0.420039 -0.668026 -0.320401 -0.016143 -0.687851 -1.458264 -0.307359 -1.097125 -0.395529 0.404921 -0.463280 0.853708 -0.727513 -0.175384 -0.112573 -0.497273 0.868059 0.749301 0.915281 1.541257 -1.283353 0.270189 0.177002 0.252696 0.476386 -0.224550 -0.188976 -0.412728 -0.323828 -0.814537 0.856726 0.863583 0.192668 -0.114050 -0.971597 1.328932 -0.163156 -0.061790 0.265518 0.381731 -1.061827 -0.257630 0.226688 -0.311169 -0.252201 -1.554610 0.161912 -0.812484 0.379032 0.706754 -0.291808 -0.411850 -1.469840 0.308041 -1.511920 -1.175522 0.682177 -0.399384 -0.153454 1.067059 -1.402680 0.405574 -0.823001 0.062644 0.634071 0.498152 0.280837 0.999278 0.403721 1.281398 0.627774 -1.205061 -0.790922 0.778001 1.670104 0.400556 0.248508 -0.662505 -0.633389 0.455698 -0.989905 -1.536345 -1.035175 0.771793 1.127706 0.386074 -0.593230 -0.153342 -0.515053 1.474087 1.372313 0.333985 -0.064371 0.398796 -1.342659 0.947204 1.086647 -0.435778 1.292655 0.128214 0.160884 0.917626 -1.172673 0.491263 0.503139 0.255129 -0.474425 -0.758448 -0.688079 0.728972 1.095237 1.323519 -1.107158 0.788328 -0.302634 -1.711585 -1.645623 -0.426820 2.021922 0.235809 0.584283 -1.103278 -0.799573 0.393421 1.289051 0.380158 -1.397649 0.283753 -0.730917 0.753700 -1.927594 -1.468565 2.242500 2.264568 1.170457 0.596974 0.616552 1.360074 -1.914915 -0.020736 -0.341622 0.801859 -0.676709 -2.252124 -0.852631 0.328966 -1.212897 -1.105345 -0.227032 0.581305 0.004048 0.483681 0.823247 1.220186 0.120583 0.166696 0.854996 -0.454286 -1.245951 -0.289889 0.184667 0.995034 0.235788 -0.740435 0.809282 0.832897 -1.181109 0.206408 0.785251 0.598356 0.603294 1.766822 1.457871 -0.360800 0.315604 -0.480289 -0.653638 0.593094 -0.348001 0.383478 0.006531 0.061970 0.422343 0.034166 0.992835 -0.635824 -0.936812 -0.916618 -0.625721 0.374679 1.402797 0.050763 -2.239083 -1.339641 0.565455 0.729114 0.998534 -0.151157 1.855805 -0.475744 0.465287 -1.964248 -0.002449 0.588265 -0.073144 0.810038 0.193203 -0.214500 -1.196946 -0.540824 -1.067934 -0.794390 -0.364406 -0.447989 -0.173981 -1.150664 1.663756 -0.633735 -0.386702 -0.267295 0.328857 1.672449 1.046769 -0.195987 -1.157143 0.753592 0.322164 0.218594 -0.792154 1.649112 0.425704 2.710943 -0.449926 -0.062783 -0.224625 0.937455 -0.405046 -0.550608 0.080155 1.450839 1.807062 0.331986 -0.551090 -0.294582 -0.203777 0.477573 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.092188 0.092190 0.734847 0.101536 -0.374672 -1.077613 -0.327161 -1.750334 0.672803 0.341377 0.877432 -0.066103 0.651720 -0.397831 -0.017434 0.472834 0.296490 -0.308855 0.233141 -0.376344 -0.398992 1.150336 -0.171954 0.317123 0.045833 -0.926368 0.550561 0.258221 0.550415 0.546732 0.304530 -0.075180 -0.175826 0.282498 -0.061330 0.554545 0.140717 0.409653 -0.432620 0.053454 -0.083494 -0.361590 0.544643 -0.033305 0.830189 0.079436 0.471801 0.220756 -0.114139 -0.352790 -0.379082 0.582423 -0.540257 0.142383 -0.316267 -0.438002 0.072469 -0.102348 -0.140320 -0.003718 -0.217463 -0.384722 -0.617984 0.164461 -0.523308 0.312006 -0.357976 -0.375574 -0.178331 -0.054863 0.539208 0.253486 -0.003415 0.280314 -1.249550 -0.013402 0.156703 0.067174 0.464058 -0.088858 0.054528 -0.230807 -0.612957 -0.622218 1.016531 0.770173 0.251845 0.168038 -0.589868 0.065493 -0.319998 -0.038086 0.564614 0.417850 -0.430891 -0.078828 -0.093958 -0.184514 -0.452315 -1.024238 0.335318 -0.385008 0.350127 -0.066866 0.105450 -0.050079 -0.061052 0.068534 -0.515072 -0.698053 0.063948 -0.465063 0.244696 0.985497 -0.296877 -0.159936 -0.494995 -0.231454 -0.033516 0.381485 0.462988 0.186074 0.788749 0.595608 0.338070 -0.680409 -0.657053 0.479583 0.494424 0.373661 0.125520 -0.677564 -0.402059 0.224030 -0.458174 -1.149717 -0.472685 0.298507 0.474951 -0.438639 -0.073239 0.366510 -0.241717 0.397031 0.711771 -0.016193 0.128826 0.171393 -0.582769 0.490692 0.952555 -0.133825 0.499486 -0.469553 -0.123248 0.537557 -0.434237 0.132386 0.282100 -0.151072 -0.449880 -0.241806 0.108828 0.495375 0.091682 0.390154 -0.143045 0.481876 -0.580570 -0.693389 -0.964375 -0.015737 1.091793 0.128917 0.821873 -0.720399 -0.328110 0.241284 0.698481 0.120608 -0.384888 0.385270 -0.653040 0.514329 -0.873189 -0.867802 1.156408 0.831407 0.748555 0.007167 0.378698 0.638978 -0.896348 -0.302065 -0.263349 0.402052 0.144545 -1.405642 -0.424005 0.061882 -0.796856 -0.412495 -0.168274 0.368189 0.029239 0.349301 0.680438 -0.314919 -0.166009 -0.359224 0.607655 -0.251470 -0.182312 -0.098815 0.058983 -0.032973 0.303556 -0.386590 0.360216 0.284869 -0.393876 0.331413 0.415752 0.136540 0.056081 1.133234 0.978683 -0.410952 0.565365 -0.230634 -0.203036 0.484624 -0.085422 0.284414 0.104653 0.295958 0.085819 0.161801 0.628739 -0.388621 -0.534673 -0.688172 -0.325825 0.427756 0.452120 0.391946 -0.578879 -1.073709 -0.096261 0.042199 1.020725 0.028991 1.006062 -0.361277 0.431604 -1.027881 0.171374 0.142215 -0.161973 0.478805 0.125742 -0.318677 -0.181064 -0.274696 -0.663969 -1.073273 -0.227750 -0.438643 -0.443125 -0.591333 0.411480 -0.538456 -0.165389 0.220644 0.095461 0.475468 -0.330913 0.075736 -0.600622 0.395021 0.640395 -0.114610 -0.555968 0.467253 0.114868 1.712671 -0.073818 0.421490 -0.179984 0.471128 -0.263904 -0.667105 -0.145622 0.855348 0.685836 0.038850 -0.093316 -0.035964 0.178258 0.442483 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = -0.038151 0.046089 0.962025 0.138651 -0.446177 -1.382199 -0.411392 -2.010157 0.851804 0.401360 1.107783 0.013992 0.810307 -0.524569 0.071309 0.585566 0.465065 -0.446496 0.209807 -0.515747 -0.274272 1.405562 -0.026958 0.228127 0.082623 -1.176112 0.472179 0.378067 0.635655 0.719472 0.369813 -0.085577 -0.235740 0.366708 -0.133984 0.699831 0.264517 0.399213 -0.612115 0.031487 -0.132849 -0.256021 0.721743 -0.045357 1.126112 0.064078 0.636113 0.290595 -0.241198 -0.506494 -0.472387 0.877332 -0.652680 0.222720 -0.302833 -0.380218 0.080049 -0.218212 -0.210081 -0.263570 -0.247188 -0.314893 -0.724423 0.163685 -0.578679 0.383859 -0.333835 -0.425517 -0.200825 -0.154208 0.679988 0.278044 0.014020 0.323792 -1.452198 -0.010874 0.145022 0.170942 0.572524 -0.104118 -0.058950 -0.314424 -0.634074 -0.725351 1.141839 0.852811 0.284095 0.295400 -0.762088 0.108170 -0.416872 -0.099041 0.590849 0.428511 -0.630539 -0.123750 0.133067 -0.270641 -0.554870 -1.027543 0.392195 -0.420940 0.349598 -0.048965 0.261211 -0.087592 -0.342452 0.080729 -0.770328 -0.750135 0.213160 -0.494408 0.113979 1.154846 -0.507268 -0.102359 -0.580422 -0.207321 -0.038413 0.591166 0.455835 0.281540 0.837968 0.787074 0.373426 -0.819303 -0.691375 0.519956 0.796480 0.464566 0.227929 -0.765991 -0.516225 0.297138 -0.612980 -1.378233 -0.585678 0.483013 0.688187 -0.289027 -0.254937 0.393136 -0.302284 0.659390 0.839705 -0.009255 0.149447 0.158034 -0.811515 0.630415 1.228327 -0.231123 0.737783 -0.477233 -0.116355 0.671147 -0.634242 0.237323 0.370813 -0.260188 -0.512595 -0.247477 0.068297 0.614251 0.297826 0.513288 -0.266943 0.586618 -0.600051 -0.939255 -1.317572 -0.132810 1.214172 0.147551 1.052815 -0.837105 -0.492934 0.114142 0.863304 0.004955 -0.557596 0.431063 -0.826720 0.605446 -1.164756 -1.033116 1.633903 1.283288 0.964190 0.095264 0.597606 0.803100 -1.057958 -0.312610 -0.199414 0.466979 0.155339 -1.657642 -0.432110 0.085197 -1.006866 -0.607117 -0.254426 0.446133 -0.092830 0.462067 0.859098 -0.243333 -0.261593 -0.332698 0.561140 -0.341296 -0.296272 -0.082779 0.078298 0.026815 0.346084 -0.506568 0.396278 0.435062 -0.613747 0.320498 0.455539 0.323003 0.260384 1.309919 1.219841 -0.394467 0.893874 -0.269805 -0.364520 0.641276 -0.156961 0.366421 0.074453 0.357803 0.196169 0.160921 0.672345 -0.460307 -0.549557 -0.822730 -0.291272 0.551735 0.635991 0.342855 -0.904742 -1.268148 -0.078721 0.125006 1.184318 -0.100862 1.288947 -0.486101 0.484761 -1.472871 0.217175 0.228407 -0.140635 0.460476 0.210866 -0.421642 -0.507303 -0.299893 -0.852040 -1.205119 -0.238794 -0.568117 -0.471633 -0.788830 0.725507 -0.787522 -0.171266 0.356663 0.093528 0.714514 -0.240135 0.068795 -0.723996 0.423358 0.702073 -0.068529 -0.660336 0.611239 0.132338 2.106487 -0.125277 0.557252 -0.238057 0.644219 -0.298640 -0.812042 -0.198561 1.077627 0.955887 0.000115 -0.055857 -0.075188 0.170644 0.562003 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/bfs.cpp__main = 1.428540 0.804660 1.605138 -0.277082 -0.959840 -2.338500 -0.452898 -3.865918 1.377841 0.214058 0.877706 -0.069529 0.751669 -0.152694 -0.058100 1.856164 0.928766 -0.026679 0.335364 -1.066707 -0.417616 2.046561 -0.956387 0.904945 0.506753 -2.282948 0.032945 0.808826 2.038486 0.449705 0.806688 -0.491060 -0.698765 0.379290 -0.069635 0.394938 0.610897 -0.150925 -2.732235 0.895634 -1.160895 0.009410 1.259215 -0.160302 1.324213 -0.179208 1.066246 1.169314 0.365705 -0.123802 -1.019493 2.393588 0.231763 0.688286 -0.069227 -0.779263 -0.796881 -0.332434 -0.226771 2.068941 -0.927006 -0.183870 -0.788592 0.354708 -1.080089 0.239576 -1.034318 -0.732627 -0.173614 0.103889 0.915487 0.095726 -0.238416 0.066818 -3.176372 -0.154656 0.074760 0.993296 0.706055 -0.159939 0.978275 -0.109219 -1.140236 -0.941424 1.192688 2.400054 0.105550 -0.126921 -1.615296 -0.692800 -0.814978 -0.544297 1.149649 0.279208 -1.680347 -0.052500 -1.636250 -0.484020 -1.263287 -2.427599 0.559239 0.013615 0.853952 -2.047479 1.157226 0.196708 0.886167 0.199824 0.012496 -0.651640 0.170474 0.227357 0.379342 3.195492 0.082864 -0.709001 -1.214908 -0.464903 -1.725939 0.658277 0.744420 0.100642 1.193061 1.320232 0.828652 -0.777533 -1.359668 0.783185 0.315504 0.937905 0.930851 -0.969321 -0.682374 0.382653 -0.401427 -2.151096 -0.571859 0.292728 1.127410 -0.942587 1.316927 -1.098724 -0.683386 1.096128 0.324879 -0.745747 0.566330 -0.269957 -0.833059 1.092767 2.250750 -0.115902 0.781583 -1.686864 0.606591 -0.040701 -0.379158 0.433645 0.047117 -0.416332 -0.896624 0.055446 0.090695 0.591709 0.065837 -0.169617 -0.093534 0.822763 -1.644804 -1.085130 -1.749597 0.023465 0.944593 -0.622074 0.865268 -0.858051 -1.117356 -0.546591 1.112965 0.313249 -0.380945 1.486204 -2.032715 0.749045 -0.151088 -0.947272 1.998957 2.792811 1.085160 -0.629937 0.881144 1.099951 -2.916091 -1.373762 -0.099071 0.348056 0.152347 -3.806198 -1.241072 0.225278 -1.286883 -0.332660 -0.107606 0.881898 0.552558 1.943350 2.213386 -0.402676 -0.977387 -1.194451 1.678552 -0.136441 0.199210 0.600926 0.110084 -0.410815 1.093946 -1.190837 0.263845 1.233201 -0.661241 0.953621 0.582213 0.410284 -0.495118 1.367751 1.130174 0.546350 2.925371 -0.214903 -1.178312 0.981176 -0.028418 1.014160 -0.085654 -0.697034 -1.003558 0.382114 0.307543 -0.650198 -1.362845 -0.922632 -0.659481 -0.072520 0.901856 1.767618 -1.725308 -1.478711 -0.327623 -0.112222 1.170833 0.376417 1.303298 -1.113911 0.949386 -2.160646 0.481894 0.034803 0.110371 0.943800 0.162103 -0.832136 0.152389 0.162260 -1.723755 -2.621810 -0.289273 -1.506339 -0.991783 -1.234690 1.565033 -0.671348 -0.527723 1.043479 -0.160681 1.386547 -1.419893 -0.029220 -0.949309 0.427460 2.006439 -0.422270 -1.060461 0.144567 0.140804 3.483153 0.424031 0.626489 0.004044 -0.426412 0.179629 -1.722519 -0.546579 1.421413 0.921603 0.273616 -0.652000 -0.772981 0.344090 0.347551 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/bfs.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = 0.193053 0.250853 0.731634 0.029911 -0.289027 -0.954053 -0.185716 -1.293251 0.511862 0.190294 0.557183 -0.009252 0.497479 -0.229582 -0.001666 0.423295 0.337664 -0.057289 0.097604 -0.352684 -0.152893 0.748031 -0.166383 0.127376 0.132409 -0.736850 0.229964 0.341106 0.547982 0.422535 0.232789 -0.091709 -0.210133 0.256878 -0.151640 0.220537 0.223925 0.193699 -0.647635 0.109365 -0.255226 -0.037736 0.482780 0.021551 0.594107 0.138260 0.296042 0.283726 -0.060140 -0.227735 -0.257642 0.634091 -0.202691 0.263397 -0.171890 -0.240181 -0.041278 -0.085697 0.001856 0.018973 -0.118457 -0.086289 -0.356834 0.071223 -0.430112 0.094156 -0.227200 -0.422102 -0.139029 -0.131335 0.358782 0.097007 -0.023893 0.076032 -1.042873 -0.018182 0.138076 0.228887 0.405091 -0.028529 0.090726 -0.196042 -0.408519 -0.470502 0.604079 0.647448 0.207386 0.256468 -0.566609 -0.154939 -0.201696 -0.085422 0.422900 0.250027 -0.394052 -0.008081 -0.202770 -0.153539 -0.374564 -0.805882 0.236349 -0.161885 0.246103 -0.311381 0.296470 0.008576 -0.083555 0.126051 -0.263805 -0.339040 0.195713 -0.252712 0.029619 0.880558 -0.175547 -0.193022 -0.355334 -0.172436 -0.193535 0.389774 0.228401 0.052524 0.409893 0.443659 0.301885 -0.492806 -0.413485 0.300195 0.322676 0.356497 0.238691 -0.454560 -0.287452 0.185409 -0.426898 -0.945277 -0.245712 0.204946 0.426205 -0.282025 -0.024220 0.096348 -0.322709 0.345909 0.383253 -0.003254 0.191767 0.017054 -0.434893 0.314670 0.766135 -0.169798 0.438487 -0.322688 -0.035770 0.188449 -0.221054 0.213282 0.072450 -0.280256 -0.217781 -0.067638 0.068680 0.431300 0.175704 0.206571 -0.091450 0.294765 -0.559041 -0.567451 -0.796403 -0.082289 0.672131 -0.021738 0.610496 -0.468854 -0.378433 -0.062751 0.582096 -0.087732 -0.239103 0.339854 -0.555569 0.382832 -0.567828 -0.590555 0.952832 0.918035 0.548799 -0.110937 0.325987 0.378969 -0.714813 -0.374454 -0.062019 0.125008 0.028329 -1.180827 -0.408181 0.066354 -0.623590 -0.193008 -0.059979 0.274344 0.031446 0.452893 0.644765 -0.193191 -0.228008 -0.366958 0.349082 -0.180317 -0.036802 0.081069 0.072005 -0.042474 0.283225 -0.405118 0.064777 0.399644 -0.374364 0.227205 0.185803 0.232326 0.071259 0.808573 0.585560 -0.088869 0.717545 -0.092970 -0.370836 0.572905 -0.142050 0.304769 0.047639 0.200074 -0.031801 0.175474 0.356233 -0.315066 -0.350962 -0.564800 -0.323454 0.287497 0.335225 0.341152 -0.608661 -0.708258 -0.034809 -0.052965 0.682078 -0.057062 0.774131 -0.297974 0.352334 -0.868346 0.161654 0.105771 -0.120711 0.322675 0.190716 -0.366488 -0.326244 -0.117659 -0.630290 -0.856717 -0.115937 -0.416530 -0.257652 -0.394359 0.399810 -0.409187 -0.091737 0.307387 -0.012607 0.478275 -0.339969 0.072670 -0.399523 0.196351 0.626634 -0.114527 -0.439232 0.230931 0.124810 1.347984 0.050717 0.386669 -0.127364 0.173779 -0.041419 -0.555989 -0.262761 0.705277 0.516738 0.123257 -0.065043 -0.064823 0.106120 0.347598 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = -1.306114 -0.373486 3.792529 1.322474 -2.690278 -3.891458 -1.716328 -6.440292 3.359415 1.330066 3.734157 0.726524 2.328169 -2.751710 0.063920 0.929346 1.848752 -1.875225 0.384979 -1.872513 -0.228637 4.433844 0.738968 -0.724980 0.484807 -4.504142 2.181934 0.600051 1.970639 2.806600 1.331774 -0.457302 -1.760568 1.590101 0.757331 2.834515 1.567518 1.058391 -1.957437 -0.301529 0.295629 -0.826151 2.526061 -0.317800 4.639708 -0.673697 1.751463 0.795520 -2.250866 -1.717442 -1.144727 2.619814 -2.918658 1.144124 0.435428 -0.424999 -0.077115 -1.430881 -0.895955 -2.203408 -0.819337 -1.800144 -1.998715 0.602600 -1.903566 1.387812 -0.985599 -0.874337 -0.372093 -1.121726 2.242296 1.123390 0.738415 1.512928 -3.953460 -0.037849 0.374615 0.917771 2.224961 0.135468 -0.478636 -1.517182 -1.770480 -2.355675 2.828787 2.096391 0.451365 0.622512 -1.921753 0.849670 -0.840684 -0.619083 1.390729 1.413654 -3.186340 -0.953765 0.261577 -0.997856 -1.123811 -3.203159 1.058709 -1.672238 1.089566 0.713677 -0.798414 -0.345942 -1.354619 0.391106 -2.752497 -1.929382 1.191137 -1.341369 0.493877 3.794620 -1.812002 -0.476619 -2.198574 -0.661195 0.472949 2.028412 0.811737 1.460524 2.792301 3.318079 1.827071 -2.884400 -2.102243 2.001788 3.014985 1.528925 0.949919 -2.541052 -1.639001 1.100952 -1.461111 -4.490069 -1.934645 1.140476 2.748136 0.546656 -1.431032 -0.069678 -1.080249 3.038331 2.391387 0.331364 0.186683 0.710818 -3.176308 2.447202 4.158132 -0.664169 2.295146 -1.121530 -0.162823 2.404961 -2.558217 1.021561 0.676737 -0.544091 -1.234353 -1.257349 -0.387544 2.187172 0.813794 1.656785 -1.568180 2.022901 -1.546913 -4.101549 -4.738345 -0.540817 4.384475 1.015739 3.444222 -3.118918 -1.569991 -0.230150 3.195839 0.462695 -2.121567 1.295823 -2.768453 2.202270 -3.888661 -3.812982 6.198656 5.257579 2.725224 0.675307 2.192231 2.555981 -4.034262 -0.908080 -1.082304 1.327210 0.407551 -4.530398 -1.141690 0.702731 -3.481123 -2.746755 -0.175817 1.408805 0.610195 0.565600 2.202218 0.975720 -0.430850 -1.355094 2.220571 -1.117282 -1.713844 -0.258922 0.390227 1.098756 1.498419 -1.392149 0.908596 1.171067 -1.842052 0.696650 1.625686 1.779533 0.976863 3.860550 4.205794 -0.957295 2.449163 -0.431181 -1.586044 2.931930 -0.740856 1.276637 0.558781 0.454421 1.131075 0.467893 2.298146 -1.779163 -1.185095 -2.694670 -0.900261 0.970260 2.901107 -1.131434 -3.945732 -4.016952 -0.019276 0.936614 2.522774 -0.424405 4.914359 -1.573198 0.976381 -5.705727 0.149988 2.356025 -0.151070 1.924199 0.788624 -1.543162 -3.088835 -1.226066 -2.809885 -2.281876 -1.050374 -0.958995 -1.536634 -2.347360 3.924902 -2.037518 -0.196997 1.690845 0.291848 3.077130 -0.248868 0.413781 -2.373054 0.717541 0.906638 0.269266 -2.325759 3.167682 0.652030 6.860212 -0.751939 1.132344 -0.885248 2.330133 -1.237048 -2.832615 -0.581371 3.651683 3.510511 0.568589 -0.428309 -0.409181 -0.585086 2.324648 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/bfs.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.067164 0.179762 1.294961 0.271986 -0.920172 -1.447846 -0.518703 -2.186732 1.055829 0.382805 0.941779 0.080372 0.704240 -0.769994 -0.141610 0.664490 0.597683 -0.275521 0.120904 -0.689873 -0.436541 1.193595 0.056444 -0.121343 0.410737 -1.487752 1.017416 -0.018560 0.655963 1.053879 0.529355 -0.156792 -0.509056 0.640414 0.681999 1.173636 0.562003 0.367828 -0.630620 0.326832 -0.063700 -0.454174 0.697536 0.284387 1.430291 0.272288 0.328534 0.369727 -0.675762 -0.347230 -0.362395 0.665227 -1.030946 0.428935 -0.154811 0.040414 -0.081438 -0.525548 -0.102291 -0.413457 -0.424335 -0.784342 -0.860561 0.278108 -0.902765 0.343418 -0.558197 -0.392239 -0.512696 -0.106191 0.658843 0.425016 -0.005107 0.624292 -1.390328 -0.247998 0.159676 0.382241 0.941102 -0.320727 -0.191853 -0.587293 -0.839655 -0.947716 1.142271 0.581221 0.308234 0.258180 -0.424954 -0.015220 -0.501309 -0.095608 0.697085 0.648421 -0.897349 -0.401997 -0.145755 -0.280830 -0.368720 -1.505245 0.404465 -0.487652 0.363890 -0.150450 -0.229413 -0.083119 -0.231743 0.346282 -0.632236 -0.380956 0.386005 -0.437315 0.094235 1.234662 -0.114535 -0.375181 -0.750242 -0.459005 0.247534 0.740977 0.374230 0.231223 1.080249 1.017918 0.741566 -0.804634 -0.811275 0.490855 0.608432 0.499455 0.474650 -0.888992 -0.641704 0.380544 -0.457524 -1.489013 -0.474921 0.123980 0.703783 -0.057748 -0.283471 -0.142610 -0.458113 0.546422 0.622637 0.195012 0.080579 0.056018 -0.926554 0.661529 1.435196 -0.291813 0.612787 -0.542540 0.164235 0.603975 -0.666742 0.108217 -0.078603 -0.440540 -0.410969 -0.223787 -0.105289 0.757411 0.085759 0.230935 -0.242238 0.631043 -0.829231 -1.080512 -1.224593 -0.160926 1.634087 0.122962 0.969725 -1.068568 -0.247128 -0.257114 0.976899 0.271060 -0.346177 0.328313 -0.906778 0.703755 -1.038903 -1.183829 1.935921 1.368880 1.008634 0.015942 0.299150 0.853358 -1.383480 -0.452179 -0.380276 0.210876 -0.011269 -1.552803 -0.746055 0.225930 -1.232375 -0.650182 -0.015085 0.556616 0.365548 0.347086 0.704785 0.214175 -0.038092 -0.734867 0.610551 -0.306667 -0.451185 0.077600 0.093414 0.273738 0.458340 -0.362349 0.275853 0.431482 -0.448026 0.270844 0.615051 0.584663 0.197685 1.368811 1.337888 -0.264191 0.497138 -0.063156 -0.537362 0.775512 0.011584 0.645895 0.292551 0.092425 0.270698 0.139583 0.951589 -0.566259 -0.497024 -0.882749 -0.565318 0.390818 0.823607 0.171714 -1.028875 -1.223608 -0.018946 0.155732 1.043695 -0.084430 1.359658 -0.261053 0.539672 -1.431875 0.132490 0.859803 -0.193897 0.571484 0.329033 -0.588327 -0.721823 -0.426134 -0.979191 -1.026329 -0.416674 0.116501 -0.559156 -0.328010 0.858502 -0.474929 -0.123948 0.518173 0.216189 0.895960 -0.311486 0.323095 -0.771873 0.230808 0.739582 -0.083666 -0.760537 0.659228 0.469509 2.123911 0.014481 0.380135 -0.169755 0.305216 -0.211583 -0.842000 -0.379395 1.146735 0.980886 0.266430 0.080557 -0.126366 0.065739 0.852702 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/bfs.cpp__std::allocator >::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.069018 -0.313090 2.366494 0.585827 -1.213151 -2.534454 -1.008294 -4.958251 2.804135 1.227334 2.224311 0.621792 1.918817 -1.822284 -0.462423 0.804712 0.890571 -1.336468 0.491451 -1.145703 -0.125219 4.210883 -0.115340 0.243725 -0.012591 -3.929474 1.821736 0.324469 2.265778 2.243899 0.921952 -0.202209 -0.798175 0.918456 0.025277 1.581187 0.417569 0.908936 -1.602132 -0.252501 0.216957 -0.472947 1.792336 -0.033086 2.946110 -0.702266 1.028814 0.413147 -0.129184 -1.192747 -0.961809 1.389100 -1.552838 0.602565 -0.490546 -0.757111 -0.253572 -0.443948 -0.465678 -0.272060 -0.482129 -0.801047 -1.445326 0.507456 -1.554852 0.936947 -1.169469 -0.624753 -0.690309 -1.126044 1.557120 0.915470 0.560799 0.120187 -4.071624 0.078599 -0.009748 0.197192 1.499831 0.556847 -0.559613 -0.937012 -1.559967 -1.729515 2.280444 2.739078 -0.257135 0.590771 -1.408396 -0.178674 -1.012022 -0.209665 1.348708 1.180924 -2.118364 -0.386097 -0.441929 -0.410465 -0.263737 -2.315534 0.902009 -1.164455 0.862418 -0.167213 0.068925 -0.093661 0.436657 -0.133931 -1.315173 -1.398227 0.602174 -0.940467 0.751190 3.346591 -0.793074 -0.602633 -1.891231 -0.438479 -0.192117 1.351065 0.705812 0.742042 2.285090 1.790873 1.311149 -2.141261 -1.478514 2.373205 1.487360 0.802342 0.284666 -1.857049 -0.897964 0.625150 -0.546781 -3.259906 -1.445009 0.720292 1.490016 -0.990761 0.025298 0.371224 -0.606420 1.680396 2.167204 -0.592359 0.579583 0.661351 -1.970150 1.671881 3.509483 0.040801 1.011149 -1.868575 -0.566701 2.175007 -1.770246 0.964405 0.043690 -0.026681 -1.212008 -0.922392 0.781953 1.479921 -0.574630 1.219244 -0.825761 1.395156 -1.003931 -2.356495 -3.197137 -0.548853 2.906903 1.102730 2.731902 -2.025775 -0.560858 0.240464 1.882989 1.146536 -0.937491 1.514399 -2.131198 1.496932 -3.190439 -2.646164 3.876736 3.510817 2.041182 0.150638 1.309638 1.836392 -2.162003 -0.892577 -0.676771 1.051486 0.731366 -3.575912 -0.602336 0.333741 -2.200152 -2.042517 -0.080704 0.789302 0.759881 0.471911 1.982107 -0.565966 -0.315021 -1.678076 2.423537 -0.831019 -0.852242 -0.390536 0.458409 -0.228421 1.148533 -0.889736 1.078685 1.043898 -0.445480 0.970953 1.215991 0.270794 -0.168341 1.867500 3.026377 -1.132755 1.450988 -0.463330 -0.508949 2.313124 -0.614404 0.596548 0.484523 0.173768 0.529099 0.590835 0.992453 -1.267035 -0.631955 -1.762018 -0.303629 0.763100 1.534844 -0.163216 -2.434877 -2.682700 -0.177821 -0.033868 2.097750 0.425184 3.495161 -1.570309 0.945360 -3.683619 0.389239 1.376286 0.122712 1.754960 0.503635 -0.941999 -0.740852 -0.832103 -1.762172 -1.820150 -0.875034 -1.726212 -1.314218 -1.804258 2.210622 -1.682252 -0.068554 1.262263 -0.092040 1.969795 -1.468100 0.344199 -2.245164 0.866215 0.404715 0.090892 -1.389116 1.492892 -0.155913 3.998317 -0.809323 1.124459 -0.453587 2.324900 -1.520089 -2.775793 -0.358131 2.590375 1.645756 0.169558 -0.450042 -0.752282 0.165213 1.207155 -PE-benchmarks/bfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/bfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/bfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/bfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = -0.345645 -0.027933 2.738381 0.383469 -1.764539 -2.726311 -1.052035 -4.956999 2.625609 1.072772 2.282715 0.570688 1.755590 -1.836802 -0.224706 1.196403 1.348824 -1.177541 0.472027 -1.348967 -0.051334 3.430070 0.128919 0.244170 0.400278 -3.546573 1.476533 0.015798 2.110135 2.137622 1.112691 -0.504705 -1.240188 1.018128 0.989799 2.124140 1.100908 0.701830 -1.907665 0.154676 -0.349128 -0.971376 1.704697 0.029207 3.243151 -0.718978 1.019563 0.617617 -1.003471 -1.078264 -0.964093 1.867254 -1.909535 0.819010 0.222407 -0.581076 -0.539222 -0.540931 -0.457144 -0.626424 -0.875035 -1.464846 -1.341825 0.580750 -1.540216 0.901551 -1.420947 -0.529366 -0.856524 -0.820694 1.482510 0.991011 0.734331 1.192641 -3.674443 -0.087895 0.124797 0.667987 1.681233 0.226626 -0.280649 -1.146302 -1.395661 -1.862625 2.164855 2.140295 0.019172 0.349557 -1.641473 0.378749 -1.013805 -0.310149 1.226987 1.034420 -2.600902 -0.591879 -0.493405 -0.596033 -0.452637 -3.052014 0.698171 -1.130794 0.735543 -0.396211 -0.088782 -0.276199 -0.639683 0.272881 -1.499754 -1.101410 1.019467 -0.655867 0.075879 3.130762 -0.952172 -0.458946 -1.830153 -0.429782 0.065140 1.297005 0.668957 0.930732 1.830224 2.090785 1.689791 -1.940616 -1.500752 1.829610 1.739148 0.890372 0.665861 -1.560586 -1.090185 0.868365 -0.801435 -3.286870 -1.407271 0.870098 1.735660 0.007528 -0.075374 -0.824186 -0.813626 1.881707 1.728960 -0.129649 0.374511 0.454899 -2.041091 1.569953 3.128691 -0.391995 1.427821 -1.156643 0.279956 1.576372 -1.873642 0.834409 -0.146154 -0.225005 -0.991473 -0.814209 -0.209204 1.543522 0.193233 0.947688 -1.197752 1.383050 -1.353399 -2.656346 -3.178345 -0.588104 3.234064 0.584008 1.870181 -2.033100 -0.869085 -0.120856 2.017317 0.883987 -1.268701 1.259493 -2.177744 1.530022 -2.677624 -2.568075 4.303713 3.911215 1.986793 0.165770 1.042105 2.030025 -3.363200 -1.049334 -0.726761 0.778719 -0.073649 -4.089310 -1.346955 0.574766 -2.470468 -1.765518 -0.030613 0.950909 0.769625 0.998102 2.205300 0.674450 -0.064635 -1.263994 2.086586 -0.592713 -1.300483 -0.151393 0.416066 0.606001 1.210932 -1.033904 0.864118 1.318735 -1.093747 0.614518 1.192791 0.922846 0.235432 2.530762 2.928513 -0.476519 1.546727 -0.409485 -1.213572 1.833990 -0.469982 0.965099 0.336030 -0.234897 0.434954 0.466010 1.443154 -1.306358 -1.178122 -1.747400 -0.976052 0.483634 1.977425 0.212144 -3.141089 -2.468404 0.193725 0.395201 1.743011 0.072373 3.290516 -1.300771 0.994618 -3.713012 0.298551 1.674554 -0.037296 1.676997 0.545083 -1.054874 -1.191755 -0.878304 -2.066031 -1.911890 -0.741198 -0.831412 -1.007566 -1.655958 2.798367 -1.415006 -0.282230 0.858079 0.176199 2.617570 -0.525518 0.361519 -2.118031 0.923775 1.020721 0.058898 -1.492628 1.817487 0.495077 4.571864 -0.494259 0.572455 -0.354741 1.360635 -0.889955 -2.288977 -0.515242 2.604396 2.311051 0.560519 -0.576519 -0.691736 -0.132613 1.388997 -PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.341536 0.110004 1.149978 0.468971 -0.584096 -1.552526 -0.461418 -1.758873 0.689770 0.275098 1.229751 -0.005369 0.802610 -0.396290 0.259293 0.427761 0.600207 -0.605812 0.350618 -0.522146 -0.358348 1.424677 0.278302 -0.205802 0.053522 -1.213380 0.830359 0.570127 0.401284 0.936965 0.331348 -0.071168 -0.121243 0.567516 -0.216667 0.514007 0.294034 0.460435 -0.401661 0.103787 0.003219 -0.073979 0.866387 -0.049264 1.017377 0.434355 0.921020 0.367952 -0.539981 -0.492511 -0.766897 0.944768 -0.955286 0.293534 -0.403456 -0.250242 0.475215 -0.458958 -0.343565 -0.874311 -0.252707 -0.220089 -0.794819 0.127066 -0.757389 0.435608 -0.282893 -0.511591 -0.030354 0.331532 0.831067 0.472472 0.168820 0.305552 -1.302458 0.183650 0.096985 0.412856 0.634883 -0.449846 -0.271022 -0.087009 -0.683907 -0.832424 1.064293 0.460748 0.493976 0.163909 -0.441695 0.187586 -0.491704 -0.086164 0.219562 0.547419 -0.299171 0.111819 0.334370 -0.192014 -0.755408 -0.891721 0.205620 -0.605021 0.307648 0.509044 0.224681 -0.231808 -0.833005 0.119660 -1.034939 -0.964292 0.301446 -0.700771 -0.104048 0.878789 -0.659694 0.077402 -0.345145 -0.116155 0.270530 0.877293 0.324339 0.405330 0.865940 1.078898 0.119299 -0.787320 -0.549692 0.221513 1.042733 0.600534 0.504388 -0.931568 -0.724701 0.148350 -0.615734 -1.342231 -0.307700 0.759120 0.755670 -0.119193 -0.903532 0.742506 -0.437950 0.950698 1.024751 0.402817 0.154176 0.124920 -0.862644 0.913686 1.477070 -0.420673 0.946691 -0.465952 -0.182478 1.074811 -0.728891 0.294529 0.491565 -0.234532 -0.459315 -0.388932 -0.126406 0.768056 0.761609 0.610175 0.276997 0.489341 -0.292506 -1.236461 -1.312553 -0.000664 1.384669 0.047970 1.544937 -1.006220 -0.528319 0.091102 0.759490 -0.177285 -0.684539 0.149071 -0.600502 0.604095 -1.769889 -1.266858 1.914673 1.048851 0.770086 0.234900 0.692543 0.974904 -0.826886 -0.356396 -0.276274 0.658703 -0.060432 -1.251482 -0.325376 0.171344 -1.191412 -0.639157 -0.217808 0.502954 0.164482 0.080947 0.188389 -0.223980 -0.694579 -0.280655 0.301596 -0.674349 -0.618938 0.051035 -0.056285 0.233001 0.248539 -0.254559 0.348536 0.423506 -0.883617 -0.032419 0.444253 0.687372 0.505420 1.549485 1.447810 -0.235257 0.777174 0.066064 -0.428016 1.060338 -0.134523 0.305436 0.115463 0.665130 0.368829 0.177617 0.902717 -0.437868 -0.696126 -1.141260 0.143799 0.624162 0.722350 -0.243131 -0.743153 -1.441188 -0.150959 0.524236 1.488279 -0.334937 1.577187 -0.284995 0.316320 -1.702545 0.136384 0.270464 -0.062391 0.396698 0.417454 -0.526747 -0.706599 -0.406622 -0.793669 -0.802477 -0.315935 -0.555538 -0.541291 -0.635204 0.436484 -0.886499 -0.071647 0.681567 0.006287 0.669366 0.126145 -0.048792 -0.658188 0.244827 0.797587 0.085888 -0.736807 1.063767 -0.016356 2.446546 -0.250328 0.591348 -0.476627 0.588007 -0.127796 -0.519278 -0.164972 1.296584 0.946766 -0.075194 0.342196 0.086536 0.166452 0.847566 -PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/bfs.cpp___GLOBAL__sub_I_bfs.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/binomial-coefficient.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -1.848391 1.638425 11.643409 6.476977 -4.592523 -7.488477 -3.718277 -10.206381 4.981197 0.282082 6.895599 0.638412 1.572227 -1.480548 1.421274 -0.578654 0.090593 -2.818940 1.325714 -2.372012 -0.412521 7.532079 5.723473 -7.500318 0.400171 -11.350069 6.497971 4.962511 5.513401 5.994672 -0.094128 -1.791804 -1.238183 6.195972 -3.091238 -0.355586 0.375363 1.533891 -3.242536 1.359365 2.388484 6.159027 3.965894 -0.803833 6.610984 3.092038 6.301587 1.673823 -4.282834 -0.972083 -4.642576 9.657215 -6.643927 3.219324 0.494415 3.233062 -0.486608 -6.901328 -3.022219 -7.757073 0.260649 2.771061 -4.640820 0.860446 -6.780549 1.796854 -1.800442 -2.510567 3.582520 2.712517 6.431332 2.487527 1.004318 -2.079408 -5.587673 2.805603 -1.053990 5.221179 4.329876 -4.305254 -1.650810 2.726712 -1.605984 -4.497936 1.941722 1.277536 1.173574 -2.399403 2.714657 -1.516824 -1.546663 -1.772414 -2.424002 5.015910 -4.588216 3.488722 -2.946121 -0.322437 -3.803561 -1.767147 -0.445448 -5.985754 3.272919 4.747766 -0.820436 -0.959480 -1.262737 1.247961 -3.002998 -6.912517 -0.339783 -0.711979 2.575390 7.305843 -3.921679 0.709460 0.475632 -0.313843 -1.031782 7.034786 1.161973 3.056025 6.725956 9.113821 0.526410 -4.495424 -2.125733 1.377693 5.104341 7.088937 5.140841 -7.807642 -4.271911 -1.856648 1.962714 -9.785520 3.129379 2.801215 3.775799 2.324057 -7.639224 1.507759 -2.981397 8.293033 4.453133 3.492651 1.885337 -0.477444 -4.638076 7.823933 13.996442 -2.615328 4.354397 -3.362014 -4.196261 8.150511 -6.679894 4.649087 2.431373 1.076752 2.019078 -5.335225 -2.508337 6.557823 3.516319 4.199979 6.405167 1.239449 1.534680 -10.870331 -7.235845 0.674536 4.681361 -1.860629 10.951045 -5.114694 -3.662329 -1.904797 7.210564 -0.399083 -1.911096 -0.346182 -3.466628 3.647744 -9.261425 -8.555100 9.893790 10.493764 0.627451 0.384085 7.204090 7.051967 -3.692065 -2.883890 -3.191838 3.886140 -0.040705 -1.244315 0.110843 0.235628 -6.692950 -3.263350 1.242740 2.172271 3.671847 -2.375164 -5.808735 3.249572 -8.897435 -4.578734 2.307714 -6.716619 -2.595773 0.488255 -0.147064 0.613374 2.356698 -3.379638 -0.986056 3.749108 -4.607698 0.050609 3.689980 5.834389 2.628081 7.265383 5.049543 2.116308 7.053045 4.948601 -2.821079 13.645361 -0.770851 0.921565 2.354291 3.446918 -0.445498 3.197136 1.055450 -3.357066 -3.801155 -8.072612 4.455178 0.189566 4.860482 -5.968062 -5.037171 -6.216747 -4.132710 6.649425 4.341169 -0.533268 12.894111 -0.288818 0.658001 -12.982227 -1.164639 4.765099 -0.140561 5.864262 4.219881 -4.483484 -9.623810 -3.297043 -1.392648 1.260050 -3.302022 -5.596823 -4.416920 -3.140822 5.474412 -3.452057 3.013973 7.392182 0.074851 2.860118 -1.020938 -0.494145 -2.123560 -2.595516 2.545172 2.799439 -7.686573 8.140139 -2.360573 15.626137 -4.567862 5.119416 -5.975962 0.986109 -0.271642 -1.004436 -0.542147 9.412514 4.623957 2.104604 0.253932 0.395008 -4.075097 4.705650 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/binomial-coefficient.cpp__main = 0.467982 0.055354 1.525220 0.459984 -0.446068 -1.479958 -0.633309 -3.068035 1.732922 0.387005 1.035129 0.114822 0.801055 -0.853891 -0.255928 0.903706 0.244227 -0.609230 0.436192 -0.453253 -0.047819 2.875324 -0.044254 0.027492 0.002009 -2.712240 0.642591 0.341487 1.883526 1.100970 0.242168 -0.354902 -0.012683 0.598455 -0.312621 0.582731 0.229313 0.291285 -1.481368 0.084708 -0.292391 0.186572 0.930001 -0.253818 1.479257 -0.460133 0.994372 0.318297 0.206810 -0.257498 -1.019025 1.756810 -0.643582 0.484205 -0.242610 -0.424831 -0.339915 -0.434076 -0.547646 0.291733 -0.581553 0.080395 -0.780777 0.232575 -1.050010 0.549547 -0.602393 -0.285847 -0.079013 0.114067 1.138505 0.826359 0.504917 -0.184047 -2.616857 0.391922 -0.098168 0.551739 0.668069 0.015733 0.205844 -0.020003 -0.761318 -0.969695 1.402917 1.772574 -0.135666 -0.056870 -0.526331 -0.364641 -0.815954 -0.331504 0.500675 0.657284 -1.215002 0.162054 -0.787827 -0.041771 -0.267580 -1.388652 0.122617 -0.788003 0.504538 -0.333703 0.752203 0.197662 0.897729 0.180836 -0.392940 -1.050021 0.293220 -0.009414 0.176049 2.290715 -0.262544 -0.191202 -0.637787 -0.044361 -1.024078 0.886134 0.364871 0.650303 1.279171 1.263320 0.687777 -0.903680 -0.791484 1.302350 0.879708 0.728346 0.493578 -1.295328 -0.576900 0.097856 0.270398 -2.043494 -0.619212 0.698681 0.853582 -0.648200 0.080799 -0.032009 -0.156974 1.409354 0.964281 -0.735639 0.444159 0.163858 -0.962956 1.404416 2.662795 -0.077474 0.558973 -1.536017 -0.214822 1.199187 -1.155329 0.727746 -0.161964 0.239786 -0.363017 -0.761741 0.412929 0.870935 -0.204249 0.448985 -0.088674 0.645266 -0.656994 -1.621121 -1.746415 -0.243650 1.129583 -0.148845 1.821874 -0.847535 -0.900385 -0.111771 1.042048 0.473929 -0.171040 0.929722 -1.667115 0.832958 -1.636262 -1.647339 2.375879 2.315536 0.962643 0.045780 1.137061 1.443290 -1.496341 -0.806136 -0.305494 0.624017 0.624428 -2.468657 -0.706573 0.063935 -1.239694 -1.095590 0.002202 0.362077 0.410000 0.886337 0.917583 -0.332166 -0.955964 -0.899534 1.584471 -0.844068 -0.290265 -0.004376 0.263129 -0.391597 1.005523 -0.823841 0.585911 0.951603 -0.407549 0.599816 0.660991 0.239630 -0.200860 0.905851 1.959945 -0.006912 1.856502 0.165899 -0.505008 1.551769 -0.264468 0.208481 0.147274 -0.314081 -0.256718 0.525434 0.203836 -0.668410 -0.740212 -1.181090 0.288737 0.142683 0.739048 0.268532 -1.523700 -1.164150 -0.577145 0.394427 0.951072 0.520122 2.011830 -1.088066 0.486430 -2.676646 0.219213 0.693977 0.290713 1.222329 0.364533 -0.545432 -0.783907 -0.387805 -0.760020 -1.371871 -0.863030 -1.847054 -0.796692 -1.451952 1.559813 -1.090060 0.137699 1.231824 0.180234 1.221557 -1.223863 0.021753 -1.452661 0.451258 0.479599 0.018061 -0.897085 0.608067 -0.350551 2.861113 -0.739469 0.646482 -0.660060 0.867961 -0.650173 -1.477201 -0.003412 1.565859 0.781803 -0.008522 -0.298680 -0.568613 -0.222746 0.658677 -PE-benchmarks/binomial-coefficient.cpp___GLOBAL__sub_I_binomial_coefficient.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/tower-of-hanoi.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = 0.461770 0.172658 4.543717 2.081119 -1.684144 -3.572626 -1.608198 -6.894798 4.299337 0.650146 2.441988 0.680913 1.634961 -2.320334 -0.487815 1.307031 0.770446 -1.815610 0.886140 -1.179316 0.444970 6.649936 0.439927 -1.799865 0.109339 -7.401836 2.309030 1.498747 4.283112 2.962316 0.506307 -0.859950 -0.346262 2.129497 -1.008622 0.682359 1.109045 0.467773 -3.539260 -0.018501 -0.080222 1.980843 2.687007 -0.735436 3.760339 -0.738790 2.605298 1.035490 -0.257666 -0.487911 -2.491303 4.478525 -1.703241 1.723809 -0.071167 -0.070731 -0.432628 -2.251997 -1.428261 -0.640588 -1.063741 0.968818 -1.600293 0.350811 -2.746438 1.020760 -0.506526 -0.837581 0.578333 0.397266 2.897039 2.042450 1.499272 -1.155271 -5.682535 1.300928 -0.304019 2.005462 1.898138 -0.207409 0.015898 0.207068 -1.648334 -2.329142 2.369801 3.855519 -0.257059 -0.217099 -0.414003 -1.175886 -1.677457 -1.198997 0.298464 1.820910 -2.870247 0.408723 -1.834300 -0.040899 -0.842743 -2.240685 0.049918 -2.040429 1.265471 0.230690 1.223694 0.456263 1.903214 0.471951 -1.113087 -2.069532 1.022493 -0.336847 0.762315 5.384315 -0.674312 -0.544754 -1.372874 -0.132177 -2.149356 2.809688 -0.067781 1.513667 3.357345 3.786806 1.471239 -2.278836 -1.570839 2.857411 2.453485 2.255325 1.749974 -3.751199 -1.352485 -0.158091 0.994358 -4.955497 -0.666354 1.297517 2.316826 -0.962642 -1.186189 0.084957 -0.753383 4.409478 2.159720 -1.151965 1.137510 0.477479 -2.521173 3.930476 7.174788 -0.204343 1.362955 -3.873798 -0.762221 3.113142 -2.808476 2.302878 -0.381155 0.463981 -0.384220 -2.129311 0.890183 2.441754 -0.051456 1.166530 0.572662 1.356283 -0.820780 -4.733475 -4.598325 -0.449208 2.399201 -0.331304 5.876950 -2.443498 -2.455626 -1.204664 2.706684 0.684375 -0.349812 1.926649 -3.813491 2.098587 -4.319938 -4.347688 6.377463 6.163780 1.711564 0.247557 3.551735 3.023652 -2.988365 -2.012396 -0.651838 1.355229 1.596516 -4.543574 -0.833079 0.437304 -3.201591 -3.047193 0.434074 0.800749 1.863004 1.131505 0.826378 -0.276445 -3.190046 -2.625499 3.352244 -2.554408 -1.059843 0.413118 0.630278 -0.577448 2.652794 -1.736475 0.613946 2.278321 -1.134178 0.893992 1.537985 1.537235 -0.182446 1.751934 4.672374 0.608851 4.961521 1.375596 -1.403019 5.277095 -0.743100 0.381033 0.795135 -0.541215 -0.156682 1.451049 0.320714 -1.807252 -0.976885 -3.455901 1.836476 -0.033977 2.033699 -1.648389 -3.598460 -2.913151 -1.782372 1.525225 1.805292 0.841626 5.742992 -2.183489 0.531076 -7.498085 0.057156 2.348899 1.112653 2.746963 1.396396 -1.870916 -3.341935 -0.937853 -1.820500 -2.132425 -2.219590 -4.359179 -2.154299 -3.171992 4.139597 -2.505464 0.928580 4.539350 0.077293 2.787270 -3.009308 0.164999 -3.035395 -0.070330 0.492843 0.468918 -2.423176 2.251979 -1.320174 7.290631 -2.187587 1.790797 -2.088396 2.283856 -1.311015 -3.447450 -0.136163 4.193294 1.464447 0.174615 -0.184602 -1.324759 -1.317713 2.505189 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.149210 0.298079 0.637897 0.120698 -0.393298 -0.989612 -0.283497 -1.147075 0.294010 0.130374 0.589467 -0.165795 0.393482 0.074473 0.033141 0.256693 0.316667 -0.084369 0.186596 -0.378828 -0.571280 0.696761 -0.049201 0.088209 0.221069 -0.680693 0.593484 0.298633 0.251576 0.556640 0.181686 -0.003590 -0.189111 0.275872 -0.105326 0.162778 0.068436 0.220854 -0.355478 0.394250 0.022952 -0.068518 0.532696 0.125181 0.366752 0.620976 0.152871 0.348241 -0.170375 -0.236189 -0.219478 0.259996 -0.272178 0.250433 -0.365591 -0.136763 0.169669 -0.222458 -0.073513 0.053466 -0.130922 -0.235981 -0.459010 0.153314 -0.583631 0.133367 -0.417190 -0.438870 -0.029228 0.018229 0.397909 0.051196 -0.241104 0.029623 -0.842122 -0.024771 0.137329 0.250971 0.329380 -0.280329 -0.057688 0.057452 -0.667880 -0.520872 0.486521 0.435511 0.319885 0.053123 -0.324262 -0.294231 -0.136094 -0.012400 0.404275 0.386343 -0.092550 0.062033 -0.256264 -0.193963 -0.532216 -0.887404 0.245523 -0.174383 0.343254 -0.099972 -0.003113 -0.110243 0.065006 0.191358 -0.147410 -0.540496 0.076796 -0.299671 0.160023 0.814380 -0.009054 -0.257961 -0.386704 -0.327040 -0.031345 0.487518 0.336641 -0.053330 0.607285 0.521035 0.121709 -0.363552 -0.482544 0.068404 0.164179 0.268029 0.366797 -0.530241 -0.415454 0.136853 -0.437516 -0.781697 -0.225433 0.079442 0.419256 -0.473981 -0.089481 0.435905 -0.431454 0.151354 0.420514 0.158634 0.179452 -0.113341 -0.428840 0.418009 0.832938 -0.189918 0.355710 -0.492312 -0.284983 0.479354 -0.054116 0.061509 0.199799 -0.225828 -0.349468 -0.070280 0.177185 0.402983 0.123881 0.162756 0.321534 0.259732 -0.442293 -0.370410 -0.655568 0.135689 0.742276 0.036324 0.737975 -0.574083 -0.100235 -0.060629 0.570313 0.089556 -0.223017 0.196393 -0.310168 0.247163 -0.757845 -0.556426 0.769768 0.583348 0.472309 -0.112036 0.185169 0.400780 -0.443130 -0.394502 -0.321505 0.329801 -0.019133 -0.727523 -0.335618 0.044536 -0.560636 -0.065731 -0.100792 0.380876 0.337071 0.031533 0.165945 -0.426310 -0.436708 -0.503449 0.315531 -0.302401 -0.014534 0.209876 -0.132873 -0.148591 0.157201 -0.121352 0.084758 0.143687 -0.293616 0.206868 0.289730 0.229722 -0.042708 0.849067 0.563387 -0.195849 0.290385 -0.027751 -0.260854 0.733121 -0.110930 0.330735 0.042939 0.388648 -0.008243 0.116140 0.506029 -0.180951 -0.483790 -0.555527 -0.064493 0.312977 0.238115 0.052056 -0.321548 -0.985110 -0.074964 -0.041585 1.055361 0.038844 0.752352 -0.100235 0.343278 -0.645577 0.160459 0.053727 -0.103947 0.269326 0.120731 -0.342641 -0.148948 -0.085106 -0.688471 -0.581682 -0.163490 -0.315467 -0.444858 -0.072633 -0.048187 -0.179683 -0.081501 0.435096 -0.093596 0.202348 -0.197605 -0.072390 -0.352191 0.005450 0.750059 -0.154546 -0.422230 0.305401 0.138707 1.207906 0.161019 0.439246 -0.075306 0.015576 0.003829 -0.471519 -0.245410 0.606995 0.371006 0.055032 0.151939 0.033952 0.307953 0.270893 -PE-benchmarks/tower-of-hanoi.cpp___GLOBAL__sub_I_tower_of_hanoi.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/quicksort-on-singly-linked-list.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.735340 -0.297835 1.579153 1.223739 -1.260820 -2.425164 -0.823663 -2.842604 1.650331 0.641370 1.897683 0.513610 1.469555 -1.320953 0.008708 0.168092 0.936177 -0.775462 0.169439 -0.943545 -0.633288 2.925019 0.677200 -0.699729 0.101487 -1.954811 1.672174 0.592965 0.887386 2.012368 0.537907 0.042623 -0.504247 0.826341 -0.240863 1.053738 -0.158814 0.808535 -0.690126 -0.247479 0.682193 -0.609172 1.680435 0.099628 1.923150 0.116321 1.113270 0.291909 -0.950830 -1.081126 -0.936914 0.777660 -1.595148 0.599701 -0.748524 -0.266795 0.697584 -0.383333 -0.385442 -1.532940 -0.177740 -0.757101 -1.386293 0.172032 -1.341139 0.710222 -0.816832 -0.829987 -0.327846 -0.584538 1.246734 0.615856 0.110560 -0.050309 -2.417372 -0.031934 0.099707 0.352683 1.199200 0.359654 -0.778842 -0.716614 -1.302795 -1.251854 1.618902 0.616923 0.294778 0.715386 -0.886686 -0.144295 -0.458448 0.083827 0.806674 0.753962 -0.995941 0.000160 0.506731 -0.350127 -0.479237 -1.441648 0.648837 -0.858530 0.492744 0.660409 -0.224088 -0.255175 -0.605227 -0.024149 -1.468266 -1.508023 0.469397 -1.045657 -0.026118 1.782897 -0.853049 -0.280848 -0.928074 -0.222365 0.441958 1.383765 0.607229 0.626377 1.500233 1.499293 0.556888 -1.559289 -0.793886 0.990484 1.468570 0.663737 0.444704 -1.048225 -1.056198 0.505339 -0.828938 -2.305367 -0.966459 1.135766 1.372097 -0.107966 -1.030772 1.130454 -0.659236 1.209807 1.701656 0.290497 0.393185 0.307573 -1.688958 1.343713 2.454096 -0.320880 1.119025 -0.785541 -0.923933 2.375315 -1.230576 0.459560 0.331787 -0.413766 -0.780944 -0.563946 0.399420 1.245626 0.178825 0.860508 -0.082505 0.952799 -0.577847 -1.998050 -2.429253 -0.151386 2.519047 1.214881 2.512160 -1.716791 -0.199645 0.226432 1.193747 0.273307 -1.021582 0.531381 -1.098159 1.091645 -3.555177 -2.150897 3.287017 1.943856 1.446586 0.485146 0.940390 1.436436 -0.772932 -0.528297 -0.784022 0.945490 0.523064 -1.618408 -0.195893 0.214637 -1.894266 -1.390244 -0.015796 0.676952 0.400830 -0.594563 0.633900 -0.818952 -0.516235 -0.991364 1.000946 -1.059008 -0.689425 -0.104610 -0.052538 0.114600 0.469652 -0.081675 0.644858 0.131826 -0.716504 0.234649 0.528413 0.764790 0.500067 1.955144 2.669062 -1.103761 0.639678 -0.124658 -0.617945 2.386310 -0.728606 0.536084 0.264195 1.174724 0.988356 0.278417 1.352052 -0.800092 -0.352540 -1.553068 0.010531 1.204251 1.208777 -1.371232 -1.401723 -2.608383 -0.036346 0.211481 2.156533 -0.333010 2.763674 -1.053652 0.477242 -2.885887 0.269048 1.049784 0.008638 1.089098 0.507312 -0.802547 -1.101603 -0.775938 -1.329849 -0.330585 -0.622817 -0.833580 -0.907501 -0.750575 0.854132 -1.478676 0.102016 1.078693 -0.449130 1.283412 -0.389678 0.110557 -1.313500 0.297176 0.364859 0.296493 -1.072683 1.709789 0.037337 3.137780 -0.282591 1.030053 -0.577037 1.767304 -1.012148 -1.716988 -0.387732 1.981183 1.575845 -0.115095 0.469280 0.127154 0.330456 1.102457 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = -0.323181 0.112138 1.788609 1.056592 -1.026997 -1.626295 -0.750037 -2.394027 1.258637 0.207038 1.357048 0.147401 0.707108 -0.945026 0.014503 0.067087 0.568090 -0.448464 -0.012527 -0.667294 -0.115194 1.752634 0.377227 -1.119631 0.162505 -1.956446 0.768005 0.783903 0.855325 0.980957 0.220898 -0.132153 -0.543070 0.829823 -0.540490 0.358868 0.597793 0.326905 -1.060730 -0.275613 0.245976 0.571589 1.089664 -0.354837 1.555036 0.068728 0.813179 0.421728 -0.923816 -0.460582 -0.448929 1.472749 -0.786859 0.696339 0.191242 0.097588 0.115356 -0.959865 -0.405364 -1.097755 -0.078545 0.032870 -0.641256 0.044719 -0.863428 0.417278 0.215451 -0.705904 0.456398 -0.244655 1.009527 0.351475 0.244905 -0.106351 -1.333242 0.259486 0.227609 0.707276 0.791510 -0.007466 0.127340 -0.286687 -0.569970 -0.798550 0.790760 0.741364 0.352298 0.325983 -0.364098 -0.163405 0.027773 -0.477011 0.318466 0.565206 -0.924191 -0.077614 -0.200940 -0.286512 -0.689968 -0.821964 0.251121 -0.639283 0.553272 0.503277 -0.207953 0.191345 0.047602 0.305322 -0.821741 -0.903391 0.355789 -0.454763 0.369103 1.719096 -0.612980 -0.299215 -0.433643 -0.281961 -0.371531 1.060649 0.063816 0.575279 1.114339 1.518134 0.434452 -1.139003 -0.715114 0.574266 1.146660 0.970896 0.712979 -1.371629 -0.665159 0.170733 -0.412402 -1.955865 -0.390155 0.296668 1.193022 0.108090 -1.071909 0.424503 -0.513481 1.517524 0.630327 0.160937 0.170471 0.071686 -1.230416 1.228040 1.971176 -0.313462 0.934593 -0.603501 -0.501822 0.853438 -0.754405 0.628240 0.325011 -0.369049 -0.080885 -0.604444 0.058391 1.003824 0.418276 0.585906 -0.132978 0.610015 -0.657249 -1.974659 -1.911104 -0.043865 1.188884 0.076589 2.087804 -1.160932 -1.107957 -0.401896 1.533808 -0.374628 -0.544882 0.445857 -1.185141 0.904476 -1.413458 -1.696837 2.437741 2.284269 0.794712 0.202929 1.438971 0.758746 -1.107582 -0.503448 -0.305788 0.404116 0.595332 -1.348492 -0.299860 0.158944 -1.300301 -0.988130 0.131773 0.530297 0.253564 0.137138 0.323531 0.131703 -0.886147 -0.769434 0.699258 -0.803764 -0.205306 0.182625 0.159981 0.171096 0.740512 -0.758272 -0.147190 0.418923 -0.713613 0.337321 0.439628 0.946408 0.408362 1.370395 1.542355 -0.112064 1.775183 0.304318 -0.752872 2.053507 -0.456411 0.451297 0.276765 0.476537 0.182152 0.326529 0.641006 -0.705996 -0.226910 -1.370353 0.044732 0.295546 0.936389 -1.126004 -1.364197 -1.530098 -0.433990 0.455326 0.794015 -0.224231 2.187520 -0.635177 0.158096 -2.766176 -0.033876 0.917515 -0.020621 0.783490 0.544782 -0.815878 -2.216123 -0.353753 -1.011429 -0.825438 -0.627261 -1.034407 -0.684112 -0.920348 1.509299 -0.760472 0.234906 1.510238 0.057707 0.882091 -0.554991 0.094664 -0.655407 -0.259681 0.242019 0.109487 -1.115401 1.222540 0.012669 3.101994 -0.322606 0.803559 -0.751523 0.763776 -0.272703 -1.085455 -0.268067 1.608210 1.118660 0.213510 0.009252 -0.018093 -0.581418 1.066151 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = -0.741604 -0.135746 1.999127 1.478362 -1.555251 -2.003306 -0.913322 -2.757047 1.310508 0.107322 1.713889 0.280239 0.649648 -1.457652 0.111519 -0.265350 0.592350 -0.564306 -0.129448 -0.846416 -0.133019 1.501779 0.459657 -1.783143 0.318602 -2.110461 1.299095 1.169525 0.510145 1.187469 0.271742 -0.156895 -0.988413 1.124220 -0.402094 0.446929 0.934283 0.279989 -0.921104 -0.345965 0.624758 0.820815 1.336799 -0.564819 2.086121 0.204651 0.854870 0.613223 -1.547134 -0.559961 -0.271396 1.454590 -1.088922 0.904901 0.401297 0.277961 0.204726 -1.460821 -0.539262 -1.761038 0.096880 -0.211024 -0.728052 -0.004753 -0.968841 0.434271 0.603295 -0.866586 0.876960 -0.384521 1.146843 0.199697 0.039713 0.027871 -0.970277 0.130768 0.428408 0.971634 0.972942 -0.238437 0.201469 -0.480134 -0.629366 -0.744735 0.562468 0.504247 0.570844 0.389345 -0.279502 -0.049644 0.398029 -0.650955 0.381909 0.635462 -0.937436 -0.515865 -0.100543 -0.373172 -0.878528 -0.729305 0.521667 -0.642514 0.796140 0.977191 -0.779270 0.209917 0.069930 0.461771 -1.210258 -0.974777 0.340401 -0.727679 0.960510 1.821952 -0.668251 -0.431410 -0.661895 -0.508438 -0.108675 1.271527 -0.020265 0.601024 1.422638 2.145614 0.429023 -1.461494 -1.155148 0.481791 1.382214 1.366930 0.766481 -1.812280 -0.688601 0.172357 -0.733924 -2.148285 -0.418148 -0.153173 1.544748 0.383232 -1.515279 0.570572 -0.756903 1.912178 0.599234 0.401327 -0.030495 0.206847 -1.658601 1.675341 2.099290 -0.275807 1.018675 -0.505178 -0.518620 0.716468 -0.687270 0.493166 0.709880 -0.647409 0.004665 -0.614469 -0.086573 1.088460 0.640583 0.816138 -0.184274 0.888750 -0.805187 -2.383155 -2.187604 0.184978 1.596555 0.252527 2.585713 -1.609886 -1.364548 -0.671571 2.044900 -0.515120 -0.728143 0.393277 -1.290193 1.167699 -1.342874 -1.909461 2.823503 2.673009 1.000156 0.337842 1.771557 0.786521 -1.249287 -0.221700 -0.358803 0.371845 0.797278 -1.180377 -0.078421 0.201456 -1.493538 -1.389368 0.321744 0.706137 0.321318 -0.158417 0.003839 0.489044 -0.882054 -0.936774 0.629209 -0.918571 -0.126139 0.270025 0.087475 0.521085 0.804178 -0.903379 -0.289869 0.221909 -0.794892 0.483484 0.589246 1.319087 0.688868 1.569055 1.577922 -0.183273 2.080838 0.482962 -0.876345 2.459529 -0.301193 0.792459 0.660553 0.590843 0.549900 0.261715 0.892648 -0.906461 0.144507 -1.719533 -0.067961 0.423161 1.479550 -1.864769 -1.431885 -2.121424 -0.574029 0.678381 0.660084 -0.479088 2.561127 -0.444840 0.051369 -3.135009 -0.270275 1.234141 -0.072142 0.694224 0.534854 -1.001463 -3.142649 -0.376011 -1.268354 -0.859272 -0.787287 -0.620327 -0.928624 -0.859627 1.850455 -0.550103 0.308074 1.918680 0.051412 0.734788 -0.728324 0.207955 -0.399249 -0.715714 -0.096310 0.190646 -1.563146 1.648376 0.213567 3.711795 -0.269718 0.855264 -0.891094 0.982722 -0.354887 -1.080064 -0.221592 1.777335 1.353664 0.405191 0.042757 0.242648 -0.895481 1.482156 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = -3.826965 -1.631137 7.645975 7.019836 -6.410783 -9.416471 -3.943998 -11.273643 6.936658 1.885014 7.901597 2.354499 4.703581 -6.423254 0.189658 -0.854406 3.600085 -3.213975 -0.767318 -4.166395 -1.576583 10.302943 3.429244 -6.870212 0.711323 -8.911769 6.529166 3.978943 2.605135 7.081250 1.777196 0.337531 -3.026402 4.305554 -2.136374 3.494557 0.855444 2.433236 -3.105688 -2.244706 4.223105 0.890295 7.083169 -0.857316 8.955087 0.301239 4.911187 1.541483 -5.924914 -3.958606 -2.618882 4.511913 -5.965562 3.228779 -1.178292 1.062963 2.579719 -4.649475 -2.040901 -8.166530 0.204654 -1.355756 -5.136533 0.131616 -4.850440 2.605274 0.339443 -3.727618 1.216060 -2.959702 5.241868 1.608895 -0.101924 -1.395570 -6.980181 -0.027296 0.902173 2.342346 4.805754 1.130918 -2.349818 -3.068924 -4.238461 -4.049872 4.708440 1.731363 1.505659 3.068370 -2.064424 -0.765695 -0.057160 -1.105321 2.338169 2.901971 -4.648193 -1.141829 2.282605 -1.872959 -2.953208 -2.816878 2.754065 -3.203887 2.609506 4.239242 -2.933651 0.244911 -1.254484 0.273179 -6.274584 -5.154790 1.304076 -4.164831 2.187873 7.510893 -3.572060 -1.796467 -3.382164 -1.474177 0.990038 6.015341 0.888400 2.669054 7.206024 7.631386 1.874020 -6.904812 -3.493318 3.187478 6.598878 4.210381 2.590610 -5.779145 -3.962552 1.395796 -2.964623 -9.618749 -3.020223 2.371683 6.487903 1.018998 -6.553483 4.645547 -2.659425 7.064803 5.208470 1.557076 0.842084 1.211577 -7.621689 6.253646 10.310955 -1.021334 4.594643 -3.068697 -4.148478 8.065881 -4.469619 2.262321 2.427738 -2.609787 -1.992308 -2.571762 1.426383 5.108912 1.059505 3.448090 -0.661600 4.040388 -1.995193 -9.698121 -10.683020 -0.353756 8.294010 4.584811 12.331183 -7.474196 -2.741808 -1.247180 6.378544 -0.700280 -3.850212 1.884320 -5.160708 4.832585 -11.833888 -9.175779 13.816945 9.936887 5.339309 2.431407 6.715523 3.997596 -2.764627 -1.242287 -2.447395 3.085661 4.155254 -4.159240 0.960945 0.923214 -7.523256 -6.676455 0.461206 2.917497 1.271126 -3.285719 1.094660 -1.605967 -3.201076 -4.422368 3.093845 -4.598612 -1.810861 0.125353 0.102070 1.040072 2.549652 -1.394074 0.598647 -0.363452 -2.795292 1.361040 2.162278 4.797556 2.859129 6.827953 10.090958 -3.677402 5.850713 0.606419 -2.816629 11.230888 -2.893164 2.489833 1.967993 4.636574 4.081162 0.972776 4.757260 -3.616532 1.041705 -6.664077 1.016921 3.903647 5.505037 -9.229640 -5.515062 -10.522963 -1.490615 1.597227 6.285740 -2.169521 11.998979 -3.762458 0.763816 -14.125432 -0.051231 5.419318 0.299915 3.683430 2.525177 -4.144685 -9.777218 -2.533226 -5.357165 -0.943059 -2.843695 -3.110480 -4.288179 -3.198638 5.838257 -5.170818 1.240832 7.311555 -1.541357 4.243903 -2.422305 0.952350 -3.305242 -1.464939 -0.483610 1.695617 -5.284967 7.583329 -0.020681 14.198220 -1.191693 4.899860 -3.284943 7.348910 -3.523082 -6.835164 -1.649985 8.187034 6.251351 -0.050032 1.849393 0.627130 -1.119652 5.863312 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = -2.565995 -1.499114 6.137789 5.248835 -4.936418 -7.541069 -3.124767 -10.096954 6.116246 1.703278 6.396898 1.910765 3.961291 -5.545306 -0.004588 -0.024904 2.792048 -2.746539 -0.423542 -3.318423 -0.866994 8.919877 2.184132 -4.789292 0.419673 -7.766138 4.913758 3.016252 2.864510 5.513316 1.634993 0.046784 -2.414558 3.243668 -1.534844 3.204685 0.895105 1.912469 -3.116369 -1.926923 2.825525 0.464923 5.534534 -0.958580 7.650231 -0.625239 4.253298 1.255731 -4.133014 -3.103475 -2.377713 4.228442 -4.685997 2.438142 -0.857882 0.297966 1.498649 -3.472096 -1.794429 -5.659003 -0.133469 -1.154699 -4.192802 0.220391 -3.833783 2.308590 0.124621 -2.737598 0.749333 -2.351067 4.343536 1.535507 0.233339 -0.876692 -6.506312 -0.057145 0.583494 1.757831 3.838293 1.033702 -1.394847 -2.661702 -3.351832 -3.248752 4.360478 2.403425 0.880138 2.324022 -2.052215 -0.352691 -0.482564 -1.033525 2.190331 2.211570 -4.318700 -1.101283 1.400315 -1.402528 -2.128639 -2.670356 2.319496 -2.636663 2.166631 2.772413 -1.802759 0.440372 -0.404831 0.173709 -5.052952 -4.162666 1.005046 -3.070517 1.961123 6.722674 -2.883627 -1.449127 -3.037391 -1.066277 0.193842 4.542555 0.884727 2.425699 5.934356 6.166604 1.860499 -5.712559 -3.183190 3.320347 5.401104 3.479663 1.820721 -4.801107 -3.046372 1.175707 -2.148036 -8.064336 -2.761872 1.959091 5.231076 0.483005 -4.521354 3.100806 -1.843823 5.949937 4.299049 0.570332 0.684925 1.242203 -6.148700 5.152321 8.565437 -0.586038 3.612423 -2.902328 -2.745001 6.072702 -3.844490 1.842940 1.815882 -1.801813 -1.764999 -2.180492 1.145923 3.963890 0.599248 2.847834 -1.151837 3.573337 -2.001056 -7.934119 -8.705316 -0.526519 6.731962 3.407358 9.611065 -5.925782 -2.575781 -0.827498 5.150814 -0.226576 -3.029318 2.047438 -4.899000 4.083361 -9.028743 -7.458917 11.260417 8.485049 4.637522 1.854436 5.513820 3.590616 -3.207450 -1.013416 -1.752592 2.486605 3.523772 -4.756015 0.420541 0.708616 -6.149092 -5.753846 0.338007 2.357992 0.767933 -1.631976 1.874662 -1.124300 -2.322770 -3.521037 3.282503 -3.477020 -1.447440 -0.153240 0.353479 0.756653 2.378289 -1.686738 0.990614 0.256263 -2.140239 1.498252 1.989209 3.462667 2.003993 5.397223 8.350519 -2.843306 5.408586 0.188541 -2.297350 8.435471 -2.056562 2.002615 1.542797 2.925330 2.943837 0.821176 3.562242 -3.102817 0.552180 -5.305680 0.418739 2.958107 4.652116 -6.177357 -4.873099 -8.208354 -1.289102 1.242765 4.798027 -1.355153 9.589092 -3.521252 0.855266 -11.602229 0.048098 4.330098 0.313263 3.235421 1.873991 -3.164190 -7.428517 -2.005243 -4.309102 -1.826220 -2.471834 -3.022918 -3.531047 -3.376956 5.465167 -4.373815 0.737217 5.644172 -0.918695 3.847811 -2.548115 0.876845 -3.054068 -0.581188 -0.440363 1.299807 -4.389154 5.808968 -0.101901 11.905435 -1.179180 3.729136 -2.611571 6.131410 -3.167511 -5.872535 -1.126952 6.683898 5.156416 -0.042913 0.923425 0.039743 -0.990267 4.584774 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.249633 -0.325826 0.913022 0.681028 -0.329782 -1.084065 -0.368999 -1.614326 1.233650 0.407671 0.897565 0.370972 0.893601 -1.006922 -0.152773 0.055346 0.409303 -0.355365 0.016479 -0.398293 0.202527 1.865263 0.194788 -0.566040 0.003564 -1.495556 0.755691 0.270729 0.766616 1.181835 0.258690 0.065472 -0.172838 0.369380 -0.317518 0.516760 0.040973 0.331151 -0.603897 -0.437859 0.278671 0.100971 0.743261 0.037130 1.174537 -0.253822 0.469660 0.039900 -0.102708 -0.537546 -0.435451 0.509939 -0.604229 0.359172 -0.414049 -0.069178 0.179974 -0.220040 -0.178882 -0.832124 0.087969 0.021451 -0.650270 0.018293 -0.665688 0.382155 -0.156621 -0.295340 -0.221787 -0.581689 0.652714 0.343721 0.215324 -0.406318 -1.532547 -0.005561 -0.099159 0.089807 0.643535 0.385897 -0.427996 -0.538415 -0.540287 -0.572220 0.948151 0.716696 -0.121718 0.607531 -0.387996 -0.286657 -0.356979 -0.064159 0.446219 0.347996 -0.662675 -0.070623 0.246352 -0.040976 0.244316 -0.405065 0.382142 -0.465659 0.144450 0.271617 0.188811 0.152405 0.256895 0.071516 -0.646913 -0.533079 0.424314 -0.353504 -0.011057 1.165575 -0.339774 -0.266975 -0.567531 -0.027018 -0.030440 0.824686 0.073967 0.442228 0.741393 0.694971 0.402013 -0.879144 -0.333998 1.049221 0.784972 0.355148 0.074888 -0.731827 -0.381822 0.231801 -0.264120 -1.286470 -0.590892 0.463915 0.758871 -0.209028 -0.557686 0.590449 -0.193703 0.753932 0.867737 -0.212174 0.242789 0.297438 -0.944067 0.701232 1.543824 -0.052105 0.393425 -0.638150 -0.455477 1.005624 -0.630575 0.345212 -0.127480 -0.138921 -0.188882 -0.344531 0.502017 0.666290 -0.161229 0.531137 -0.333562 0.571003 -0.362750 -1.157702 -1.385240 -0.391475 1.057313 0.610899 1.549221 -0.744117 -0.264673 -0.114493 0.687129 0.118958 -0.274598 0.445806 -0.893690 0.609702 -1.814621 -1.178405 1.858934 1.323081 0.922027 0.187640 0.666355 0.715694 -0.227819 -0.169627 -0.181076 0.337256 0.614827 -0.953479 0.020701 0.009005 -0.975149 -1.076800 0.097499 0.205158 0.039541 -0.074053 0.552528 -0.455460 -0.239727 -0.651557 0.731262 -0.584285 -0.201545 -0.187785 0.143327 -0.125627 0.394871 -0.305294 0.387456 0.387700 -0.126116 0.216285 0.267712 0.235255 0.174266 0.550972 1.454251 -0.494059 0.622805 -0.048668 -0.360356 1.442997 -0.350663 0.142003 0.147805 0.299123 0.551353 0.202773 0.298821 -0.484585 0.127767 -0.864436 0.046382 0.584026 0.636824 -0.666002 -0.862280 -1.045271 -0.145158 -0.084087 0.908621 0.001808 1.578891 -0.830470 0.231428 -1.744201 0.156568 0.798014 0.071840 0.541185 0.310041 -0.395957 -0.933806 -0.308597 -0.600019 -0.360782 -0.522738 -0.862454 -0.496558 -0.700375 0.862435 -0.916420 0.192024 0.859135 -0.088752 0.775921 -0.727114 0.170247 -0.843109 0.203295 -0.374565 0.216184 -0.607794 0.564057 -0.133028 1.488192 -0.415636 0.632637 -0.434773 1.313311 -0.919680 -1.183509 -0.167122 1.054341 0.737634 -0.080260 0.198301 -0.144031 -0.029295 0.606988 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 1.262153 0.731349 1.852212 0.110632 -1.041425 -2.449993 -0.423820 -3.923037 1.737780 0.367266 0.948878 0.202988 1.006159 -0.607958 -0.260170 1.600343 0.918638 0.005335 0.191763 -1.050565 -0.342899 2.471800 -0.801213 0.480371 0.412573 -2.473474 0.374736 0.882861 2.283604 0.796835 0.785265 -0.433583 -0.654763 0.582896 -0.262146 0.372200 0.364305 0.114518 -2.679085 0.488688 -0.880607 -0.039853 1.474304 -0.050462 1.517504 -0.355383 1.151154 0.949673 0.273753 -0.247994 -1.063272 2.277573 0.003869 0.836545 -0.236007 -0.704385 -0.619963 -0.247463 -0.061997 1.505487 -0.728927 -0.100629 -0.898972 0.226801 -1.249860 0.146440 -0.941523 -0.957172 -0.338027 -0.259129 0.950375 0.237817 -0.098066 -0.297878 -3.503916 -0.107759 0.138377 0.880258 0.984336 0.322770 0.692278 -0.417696 -1.194640 -1.094528 1.381035 2.350871 0.052397 0.282661 -1.640626 -0.881264 -0.762523 -0.401214 1.186996 0.444236 -1.797116 0.026215 -1.481223 -0.421362 -1.004241 -2.341821 0.590729 -0.188279 0.806599 -1.828876 1.029680 0.275191 0.837367 0.086061 -0.081107 -0.665990 0.254896 -0.106384 0.326200 3.207123 0.000102 -0.815442 -1.202443 -0.391139 -1.507932 0.798870 0.616603 0.088521 1.349532 1.222267 1.053530 -1.121456 -1.165703 1.089272 0.407104 0.991449 0.785690 -0.972550 -0.650129 0.403872 -0.361889 -2.558028 -0.567024 0.469227 1.123276 -0.910880 1.007923 -0.822013 -0.713999 1.160319 0.620522 -0.685864 0.743501 -0.053722 -0.940638 1.024863 2.520590 -0.091413 0.769091 -1.653159 0.212579 0.431612 -0.578283 0.704501 -0.200107 -0.514430 -0.744762 -0.124861 0.343231 0.924973 -0.208999 -0.074302 -0.140808 0.793367 -1.583556 -1.421635 -2.092794 -0.131852 1.242010 -0.106732 1.431718 -1.057156 -0.989035 -0.433207 1.124365 0.271052 -0.332683 1.500078 -2.058963 0.969572 -0.931022 -1.366264 2.426440 2.900325 1.153748 -0.540329 0.997836 0.999649 -2.492144 -1.452826 -0.170029 0.257961 0.414464 -3.653704 -1.073323 0.266618 -1.538567 -0.516883 0.063721 0.711503 0.592458 1.553330 2.237638 -0.686035 -0.863063 -1.442352 1.719633 -0.336728 0.134616 0.431143 0.258622 -0.444535 1.185080 -1.087085 0.161678 1.108116 -0.572782 0.868336 0.430588 0.445826 -0.442621 1.414434 1.562633 0.201079 2.749335 -0.136730 -1.132045 1.599590 -0.354206 0.863936 0.084553 -0.302102 -0.676902 0.574631 0.427721 -0.850265 -0.945371 -1.168192 -0.629794 0.183997 0.868354 1.130314 -1.744920 -1.626790 -0.336025 -0.259862 1.211806 0.277653 1.818461 -1.292654 0.925249 -2.587240 0.469906 0.339395 0.116887 1.228376 0.372511 -1.033087 -0.076651 -0.100543 -1.665043 -2.231742 -0.335897 -1.558733 -0.963354 -1.200497 1.522397 -1.012969 -0.261658 1.197286 -0.367889 1.528834 -1.731976 0.199539 -1.104256 0.419699 1.724612 -0.263353 -1.091252 0.315285 0.024384 3.528988 0.248751 0.858789 -0.187765 0.145119 -0.115840 -2.057704 -0.693990 1.737085 0.967377 0.330195 -0.530719 -0.687364 0.236031 0.666783 -PE-benchmarks/quicksort-on-singly-linked-list.cpp___GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/biconnectivity.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = -0.349264 0.051233 1.930663 0.511415 -0.780114 -2.236520 -0.752641 -2.971027 1.423866 0.587195 1.803073 0.348140 1.075890 -0.527504 0.326070 0.766087 0.418050 -0.850163 0.255646 -0.746646 -0.188339 2.284854 0.680660 -0.292770 0.054993 -2.127612 0.849818 0.742418 1.103698 1.395691 0.345124 -0.259185 -0.326057 0.909654 -0.407342 0.929022 0.235985 0.618315 -0.774651 0.086853 0.077266 0.084801 1.112679 0.054293 2.016668 0.223842 1.296782 0.374900 -0.476706 -0.748864 -1.002915 1.807306 -1.423692 0.560035 -0.501295 0.017605 -0.080619 -0.678618 -0.495862 -1.251489 -0.251308 -0.064185 -1.296461 0.159430 -1.061281 0.601255 -0.485706 -0.609629 -0.240571 -0.072883 1.412217 0.429098 0.075129 0.219324 -2.297219 0.019211 -0.157233 0.531171 1.019790 -0.428016 -0.672859 -0.256087 -0.766973 -1.211046 1.450764 1.020638 0.209819 0.237481 -0.724083 0.196167 -0.821902 -0.179628 0.398763 0.978959 -1.251387 0.269942 0.386667 -0.266943 -0.813819 -1.027803 0.494767 -0.966717 0.560474 0.175899 0.601419 -0.377944 -0.764463 0.104341 -1.327659 -1.399192 0.368618 -0.484015 -0.030738 1.522144 -0.953915 0.200096 -0.299759 -0.223937 -0.009572 1.293232 0.722366 0.551835 1.337889 1.561469 0.482754 -1.267331 -0.848818 0.759691 1.518065 1.066259 0.515910 -1.319188 -0.884489 0.346560 -0.572982 -2.270874 -0.340576 1.247991 1.116674 -0.052407 -0.896227 0.483606 -0.520164 1.361464 1.480348 0.374531 0.325563 0.143709 -1.388583 1.195057 2.740021 -0.445956 1.308426 -0.619104 -0.279403 1.695958 -1.642655 0.785815 0.664104 -0.138952 -0.483411 -0.650347 -0.286726 1.225560 0.790517 1.063796 0.118925 0.764733 -0.594529 -1.899064 -2.121639 -0.531372 1.927810 0.175806 1.942750 -1.294380 -0.766815 0.009729 1.447677 -0.046461 -0.891436 0.461324 -1.112959 0.999263 -2.372511 -1.679381 2.756292 2.449751 1.319894 0.234215 1.329413 1.604245 -1.265793 -0.604345 -0.348173 0.831823 0.095220 -1.772332 -0.383137 -0.021074 -1.757350 -1.042572 -0.333641 0.604327 -0.127255 0.502130 0.668406 0.239361 -0.836678 -0.582698 0.521497 -0.965199 -0.770560 -0.135518 0.163195 -0.046168 0.311921 -0.762558 0.537265 0.992443 -1.159229 0.442638 0.891708 0.590634 0.684219 2.022993 1.834749 -0.395776 1.502736 -0.024101 -0.536878 1.706590 -0.320637 0.465582 0.276007 0.749571 0.278524 0.401835 0.728052 -0.763461 -0.813682 -1.442574 0.146275 0.755577 1.253604 0.090982 -1.659717 -1.771189 -0.265102 0.745767 1.742628 -0.354781 2.469104 -0.580854 0.868714 -2.901125 0.285930 0.657946 -0.186133 0.749189 0.581262 -0.710141 -1.376563 -0.597395 -0.883292 -1.239941 -0.445995 -1.075448 -0.718147 -1.287477 1.060933 -1.488627 -0.002970 0.756464 -0.034297 1.213557 -0.410228 0.028837 -1.067142 0.432947 1.048866 0.190322 -1.319629 1.283340 -0.066938 3.594870 -0.667179 1.196174 -0.591677 1.103625 -0.571495 -0.911469 -0.208344 2.012018 1.526904 0.104010 -0.028495 -0.080697 -0.008078 0.787765 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -5.214984 -0.219219 17.570416 10.990715 -8.967356 -14.863762 -7.235576 -20.211015 12.261251 2.314667 13.034226 4.326995 5.318259 -5.476714 1.861022 -0.017878 2.295173 -6.245139 0.037226 -5.290461 0.084577 17.918055 9.294562 -12.336073 0.277149 -19.168246 8.612274 6.687802 8.704292 11.624022 0.811762 -2.195977 -3.626305 9.200223 -4.955621 3.354310 1.689513 3.167317 -6.515444 -1.947882 5.008716 6.065538 9.733753 -0.817562 15.570143 0.492512 10.436680 2.228294 -7.386908 -4.162400 -7.684515 15.383971 -11.425043 6.598214 0.019509 4.785429 -0.049657 -9.745543 -5.023508 -14.800055 -0.529707 2.180722 -8.433668 0.072354 -9.139645 4.388252 -1.006144 -4.307924 2.848551 -0.915823 11.980357 3.447982 2.307153 -2.803432 -13.881112 2.039052 -2.341326 6.830463 7.989386 -1.752877 -5.117714 -0.555250 -4.286553 -7.974810 6.022807 3.948043 0.058220 0.409431 -0.101076 -0.652509 -3.038704 -3.248149 -0.984310 7.633240 -10.710173 3.693818 0.710997 -1.416676 -4.799640 -3.344340 1.778604 -8.707445 4.622162 6.029153 0.021430 -1.428420 -2.127589 1.105076 -8.611761 -11.042351 2.936969 -1.601476 1.048692 12.267650 -7.247331 0.720175 0.258571 -1.123852 -1.677834 11.847939 2.382665 6.117369 10.465457 15.084044 3.108991 -9.661232 -4.228505 5.550920 12.035830 10.062859 6.254352 -11.568784 -6.716716 0.993355 0.283504 -17.778878 0.418468 8.566878 10.291062 4.091677 -11.912367 2.629129 -4.124406 14.555650 8.906221 4.223972 2.633869 0.421543 -11.496457 12.138570 24.123073 -3.086514 9.138574 -5.122011 -5.120331 15.277027 -13.427572 8.182092 3.422519 0.482880 0.543719 -7.520329 -2.517232 10.674731 5.160129 7.294272 3.568188 4.556530 -1.909812 -19.590555 -16.999627 -3.076535 12.215442 1.825195 19.139853 -10.124434 -7.096559 -2.839607 12.395063 -1.427986 -5.620167 2.584291 -8.513514 7.987874 -19.607528 -14.986222 22.608520 21.623116 5.805544 2.606745 13.765025 11.292122 -6.311224 -5.056831 -4.278450 5.992388 3.487434 -5.506289 0.307361 -0.375886 -12.948230 -9.708355 1.040713 3.785144 2.732253 -2.034460 -1.820210 4.597610 -10.232589 -7.074733 4.683231 -10.530525 -5.649880 0.294262 1.133206 0.252364 3.876229 -4.618339 0.415308 6.039423 -7.428831 2.081838 5.955975 7.493083 5.147850 12.162223 14.014931 -0.607211 13.520734 4.735667 -5.294190 22.137729 -4.563173 2.488657 3.246328 5.760730 2.118031 4.153835 3.359320 -6.247080 -3.162506 -12.273452 5.765082 2.329082 10.604117 -11.639652 -13.370361 -12.628209 -4.505851 8.303204 8.018795 -2.832832 22.542714 -4.767732 3.014921 -27.394576 -0.187266 10.326013 0.387747 7.660560 5.986443 -6.743985 -18.697800 -4.796000 -4.748208 -0.720663 -5.580901 -10.177918 -6.361461 -8.927376 11.364800 -9.896628 3.761209 12.187617 -1.599618 8.714747 -4.506269 -0.198553 -6.401565 -2.266850 2.145923 3.824480 -11.596157 13.709672 -2.676454 27.856966 -7.212706 9.328609 -7.794210 8.745954 -5.051793 -6.872323 -1.008981 16.414018 10.475774 1.735913 0.346686 -0.229882 -5.432526 7.365011 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/biconnectivity.cpp__Graph::isBC() = -1.263451 1.061542 10.623185 5.334627 -6.536429 -7.586981 -3.996849 -12.979805 6.089232 0.736282 7.761986 1.609384 2.340337 -2.642379 1.032308 0.770135 1.282063 -3.298506 0.520985 -3.353232 -2.943648 7.480152 4.896207 -5.681476 1.698202 -10.679948 5.858982 3.256093 5.268369 5.444948 1.033240 -1.274504 -2.439166 5.512191 -1.116009 0.908333 1.138997 1.380970 -4.643807 0.666366 2.731184 1.559074 5.737171 0.156512 8.108324 0.814959 4.613159 2.235354 -4.911433 -0.782832 -4.748031 9.569901 -6.388913 3.700344 0.723762 2.244755 -0.307121 -6.345584 -3.160770 -6.150681 -1.449551 -0.836386 -3.756738 0.909157 -5.591829 2.483161 -2.066468 -2.775859 2.544303 1.591517 6.890157 2.581886 1.304101 0.344780 -6.920695 1.630742 0.436550 4.451848 5.057204 -2.176237 -0.447940 0.710813 -2.980833 -4.987335 4.454567 2.040836 0.900869 -1.643954 0.904996 -1.290074 -0.675094 -2.450752 -0.361417 4.751310 -6.906630 2.379167 -2.184461 -1.622519 -4.117745 -5.353075 0.459462 -5.051672 3.814031 3.324394 -1.893536 -0.156029 -0.163252 2.146395 -3.582312 -6.747298 0.381317 -0.987120 1.490324 8.579552 -3.242018 -1.009446 -0.360618 -0.946528 -1.653540 5.740913 1.516164 3.616480 7.691786 9.748886 1.397256 -4.083026 -2.458620 2.127003 5.266780 6.364706 4.569203 -7.440052 -4.202527 1.199862 0.768914 -10.538387 0.144355 2.552071 5.640939 1.624171 -6.115665 0.063963 -2.637372 7.508320 4.497341 2.645396 1.595993 -0.388098 -5.536905 7.982318 13.100076 -2.304208 4.903279 -3.353654 -2.881588 7.001649 -7.009300 3.639796 1.619033 -0.143641 0.492388 -4.777780 -2.341484 6.027730 2.897620 2.139628 2.571190 2.648699 -2.247169 -10.708875 -8.367326 -0.317042 6.535067 -0.483471 10.533771 -5.913172 -4.060287 -2.174104 8.248724 0.355082 -2.626658 1.794289 -4.933224 4.333026 -8.664652 -8.586584 11.774737 11.282067 3.165033 0.794400 6.845881 6.555969 -6.228863 -4.267303 -3.326489 2.975301 2.297319 -4.833678 -2.514564 0.057049 -7.363361 -3.886000 1.054442 2.782749 4.293902 -1.020935 -1.292044 3.278992 -6.903421 -3.834000 4.101952 -6.362463 -3.486454 1.020564 -0.090680 0.965530 3.064013 -2.471583 -0.461832 2.283435 -4.534974 1.072623 3.695119 6.268909 1.258627 8.365724 7.605996 0.663685 6.504096 3.123248 -3.848579 11.028784 -2.297924 1.701014 1.905028 1.641730 -0.291552 2.145409 3.368880 -3.779862 -3.743719 -7.453743 2.550087 -0.074182 5.530853 -5.367427 -6.520069 -7.902931 -3.300288 5.273768 4.422274 -0.042363 12.470803 -1.581139 0.234784 -13.696506 -0.841257 5.078917 0.095285 5.896556 3.413979 -4.543502 -9.086799 -3.091939 -3.986703 -0.362540 -3.307651 -4.331377 -4.550132 -4.073480 7.384974 -3.514197 2.337094 7.216876 -0.677614 4.829565 -2.162088 -0.776472 -3.810881 -0.699150 3.215869 1.393604 -6.579135 8.520430 -0.961479 17.125390 -3.092038 4.004269 -5.098749 1.250664 -0.723206 -1.802617 -0.723859 8.993206 5.905194 2.414684 0.044192 0.010082 -3.565586 4.665633 -PE-benchmarks/biconnectivity.cpp__main = 4.090444 3.143693 7.193861 0.907073 -5.897408 -8.806331 -2.771697 -16.982465 5.977784 0.000952 3.894361 0.262208 1.714082 -3.265148 -0.459675 5.615659 2.876211 -0.600427 0.886681 -4.015067 -1.837529 6.979230 -4.235166 0.934955 1.923428 -10.093509 1.666583 4.219526 7.477354 0.202482 3.388606 -2.215715 -4.372524 3.191976 0.429795 1.303446 4.232635 -0.785224 -10.073557 1.984085 -2.987308 1.830796 5.082413 -1.624093 6.814272 -1.806813 4.326789 4.900743 -0.775163 0.258547 -3.413044 11.229100 0.211618 3.272178 3.287315 -2.423883 -2.637989 -4.009121 -1.002311 7.262927 -3.695532 -1.632347 -2.413152 1.075966 -3.712520 0.757070 -1.605327 -2.201587 1.739460 1.155182 4.148205 -0.254522 -0.532164 1.127193 -9.911937 -0.070519 0.889933 4.957342 3.854711 -0.322569 5.482795 -0.594192 -3.640048 -3.864833 3.824014 8.626292 0.744428 -1.140644 -5.229582 -2.063147 -1.760322 -4.158757 4.028931 1.756359 -7.491334 -1.955447 -6.918051 -2.083009 -5.884057 -8.745553 2.310830 -0.654129 4.038396 -5.731615 1.820394 0.312842 4.043588 0.165033 -0.783568 -2.257578 0.567579 -0.141926 4.379381 12.860208 0.119981 -2.788149 -4.535965 -2.741180 -6.849737 2.806498 2.833943 0.735174 5.731002 7.812672 3.381966 -3.476917 -6.836392 3.005585 1.755961 5.228349 3.552133 -6.886336 -2.052316 1.466726 -0.593566 -8.805034 -1.529145 -0.649005 4.874235 -1.183377 3.799428 -5.419662 -2.331618 5.830372 -0.368155 -2.492342 0.988080 -0.503718 -3.680318 6.389703 8.702710 0.099300 2.816040 -5.471533 2.733815 -1.413987 -2.639920 1.802850 1.557886 -1.787642 -2.750848 -0.401175 -0.883849 2.649522 0.088404 -0.546116 -0.482166 3.627620 -6.938175 -6.323273 -7.857389 2.288170 4.415881 -3.108829 4.717418 -4.440097 -6.275300 -2.347302 7.283773 0.242396 -1.700726 6.094825 -8.433187 4.320190 3.384691 -4.323440 8.689958 11.974897 2.696879 -2.697035 5.426500 4.382307 -13.596518 -5.225516 -1.092144 0.797370 1.819189 -13.842680 -3.784454 1.234874 -4.960793 -2.501611 0.685966 3.414938 3.183539 7.058037 7.175095 0.933832 -3.643627 -4.924463 7.029391 0.105740 1.030788 2.316593 0.752233 -0.509674 5.974315 -5.323561 -0.775378 3.881738 -2.609666 3.871087 2.820009 2.822974 -1.284903 6.257542 3.678438 2.862298 14.043041 0.962254 -4.265304 4.815698 0.722397 4.543735 1.411940 -3.244280 -3.413550 1.910860 1.442626 -3.541021 -4.734814 -5.127834 -2.629968 -1.969112 5.054837 3.308977 -6.851097 -6.914283 -3.096410 1.476797 0.995859 0.767557 6.406233 -3.435396 1.872714 -10.053039 0.583440 2.232064 -0.119056 4.006741 0.579900 -3.853390 -2.978331 -0.108074 -6.419212 -10.945346 -1.722251 -4.617921 -4.392641 -6.036745 9.411520 -1.707061 -1.008229 6.212540 0.397339 3.850641 -6.797670 0.582810 -2.958968 -0.208966 5.855271 -2.094466 -5.925171 2.967742 0.477214 15.801793 0.281151 1.832474 -1.101131 -1.608586 0.860877 -6.336986 -1.072700 5.940102 3.619760 2.104984 -3.678729 -1.371123 -2.041388 3.598974 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/biconnectivity.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/biconnectivity.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/biconnectivity.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/biconnectivity.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/biconnectivity.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/biconnectivity.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/biconnectivity.cpp___GLOBAL__sub_I_biconnectivity.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/find-parity.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-parity.cpp__getParity(unsigned int) = -0.067002 0.571971 2.321027 1.575396 -1.509161 -1.727663 -0.808328 -1.852601 0.718898 -0.051877 1.127558 -0.133783 0.310730 -0.136396 -0.038760 -0.256311 0.461646 -0.140834 0.489681 -0.658580 -1.086688 1.346226 0.697882 -1.854048 0.315285 -1.981146 1.821707 1.185293 0.727725 1.469773 0.124032 -0.040473 -0.309991 1.262595 -0.519837 -0.554981 0.189550 0.500591 -0.889532 0.695110 0.710255 1.112286 1.283536 -0.389840 0.996267 1.317591 0.734979 0.581042 -1.359652 0.051395 -0.794050 1.095132 -1.076371 0.837374 -0.374628 0.446917 0.203324 -1.533983 -0.527812 -1.430774 -0.230973 0.360218 -0.745956 0.268401 -1.505973 0.236828 0.006238 -1.243688 1.137325 0.900412 1.144111 0.495999 0.132328 -0.218659 -1.082385 0.673483 0.465717 1.256117 0.967039 -1.103988 0.208080 0.539881 -0.765789 -0.898518 0.265256 0.101652 0.627981 -0.428492 0.691636 -0.870067 0.452112 -0.368744 -0.451775 1.186438 -0.076944 0.864677 -1.375164 -0.298477 -0.969458 -1.122214 -0.121273 -0.860341 0.845060 1.073420 -0.695331 0.219086 0.184193 0.720585 -0.348797 -1.207186 0.014581 -0.642694 0.610877 1.719376 -0.060816 -0.681130 -0.192367 -0.322326 -0.223819 1.467292 -0.111275 0.403894 1.498213 1.965699 0.015370 -1.181638 -0.699901 -0.361187 0.583205 1.442919 1.521476 -1.478540 -1.136430 -0.626169 0.026805 -1.907996 0.527611 -0.299994 0.807491 -0.541365 -1.379345 0.567329 -1.140541 1.748028 0.785742 0.865626 0.481494 -0.189749 -0.992804 1.806422 2.532783 -0.626644 0.783967 -0.876211 -1.190196 1.246495 -0.469865 0.725071 0.232796 -0.281296 0.185293 -0.967572 -0.075563 1.310418 0.496401 0.607952 1.360572 0.415780 -0.225749 -2.006029 -1.239374 0.496101 1.226256 -0.249351 3.119424 -1.510162 -1.068212 -0.360669 1.161681 -0.106206 -0.164515 -0.112035 -0.676388 0.836956 -2.191446 -2.094423 2.321322 1.574404 0.112293 0.160014 1.085702 0.565838 -0.429130 -0.981637 -0.695709 0.627152 0.321584 -0.353410 -0.326233 0.396360 -1.222692 -0.419939 0.454026 0.662705 1.189173 -0.990791 -1.351925 0.048657 -1.936011 -1.334267 0.680915 -1.724542 -0.506387 0.612552 -0.191022 0.504961 0.595078 -0.375552 -0.572223 -0.105562 -0.669602 0.025627 0.463968 1.365279 0.016994 1.100799 2.002634 0.265696 1.128894 1.190109 -0.766038 3.068038 -0.580148 0.412565 0.569191 0.848098 -0.032051 0.389395 1.079242 -0.661667 -0.525656 -1.794167 0.775293 0.219652 0.874006 -2.063028 -0.666719 -1.681199 -0.749703 0.989396 1.074876 -0.155455 2.580333 0.103904 0.140822 -2.542184 -0.346048 0.991737 0.281232 1.261670 0.884516 -1.215082 -2.130817 -0.519041 -0.926092 0.327835 -0.821469 -0.986369 -0.899280 0.028938 0.270843 0.120333 0.550548 2.261324 -0.444396 0.202619 -0.466892 -0.233992 -0.023140 -0.894836 0.769919 0.365776 -1.351959 1.606315 -0.271009 3.345795 -0.238665 0.956489 -1.016579 -0.156409 0.454340 -0.155447 -0.402703 1.977716 0.561366 0.663427 0.517508 0.266381 -0.576747 1.446270 -PE-benchmarks/find-parity.cpp__main = 0.757051 0.123564 1.570215 0.345562 -0.637556 -1.153396 -0.616255 -2.997254 1.287270 0.284511 1.151320 -0.131511 0.603995 -0.417644 -0.225422 1.010106 0.091732 -0.505380 0.536010 -0.435810 -0.340573 2.113224 0.151216 0.171584 -0.011297 -2.314079 0.759010 0.391728 1.707275 0.954361 0.334652 -0.459350 0.068357 0.551362 -0.332390 0.385906 -0.033570 0.437397 -1.440133 0.394809 -0.248813 -0.136495 0.805060 -0.459663 1.337004 -0.293596 0.893148 0.305967 -0.057626 0.082332 -1.122117 1.818819 -0.776775 0.329084 -0.334931 -0.346737 -0.480823 -0.393272 -0.707674 0.235044 -0.624197 0.041817 -0.658871 0.531117 -1.096447 0.544582 -0.709837 -0.481193 0.096976 0.530028 1.055698 0.890579 0.458104 0.166407 -2.195687 0.471108 0.121719 0.570211 0.541460 -0.443032 0.625784 0.125709 -0.636214 -0.853188 1.369755 1.665262 0.003538 -0.387821 -0.243249 -0.277566 -0.483743 -0.134541 0.370440 0.733617 -1.020370 0.358794 -1.137296 -0.005059 -0.482872 -1.501214 0.012786 -0.823654 0.743062 -0.209359 0.364588 0.359490 0.779381 0.451218 -0.300621 -1.148542 -0.218819 -0.119400 0.380633 2.197188 -0.253358 -0.357051 -0.598521 -0.021603 -0.903492 0.528144 0.354384 0.715816 1.389300 1.239006 0.569692 -0.855679 -0.834490 0.981124 0.591551 0.988336 0.602040 -0.964955 -0.658247 -0.064702 0.267463 -2.012556 -0.507091 0.212659 0.488649 -0.777518 0.248738 -0.304884 -0.320691 1.480986 0.888151 -0.165267 0.443065 0.135636 -0.658031 1.398567 2.289562 -0.203869 0.575998 -1.222637 -0.318224 0.840815 -0.850848 0.709484 -0.071781 0.024066 -0.375720 -0.929324 0.084447 0.850038 -0.038562 0.468043 0.055000 0.519875 -0.609200 -1.365447 -1.199252 -0.104988 0.894033 -0.235302 1.668349 -0.816808 -1.006069 0.037647 1.001392 0.688487 -0.165709 0.739906 -1.492810 0.758717 -1.470639 -1.645555 1.816458 1.797825 1.127630 0.002127 1.015905 1.316953 -1.547771 -0.881446 -0.303494 0.728215 0.493676 -2.474185 -0.895232 0.200507 -1.093341 -0.694965 0.066727 0.479483 0.413413 0.829167 0.816324 -0.165305 -1.017722 -0.504800 1.448642 -1.049925 -0.374424 -0.009977 0.191854 -0.231716 0.799836 -0.990034 0.544120 0.686298 -0.469030 0.630893 0.678732 0.489857 -0.356104 0.949145 1.808916 0.108407 1.563398 0.175447 -0.516226 1.127541 -0.191409 0.179962 0.234216 -0.471785 -0.595445 0.327525 0.493850 -0.751438 -0.813277 -1.159862 0.110962 0.215892 0.696363 0.619300 -1.087413 -0.942206 -0.644990 0.621301 0.987370 0.751313 1.832194 -0.719867 0.340210 -2.100629 0.110713 0.346526 0.133439 1.331795 0.373844 -0.626472 -0.567783 -0.472873 -0.745993 -1.093286 -0.712751 -1.565996 -0.972817 -1.152139 1.310814 -0.699573 0.137927 0.990813 -0.006369 1.011786 -0.992544 -0.106173 -1.081819 0.453476 0.683906 0.080061 -0.933467 0.680248 -0.240133 3.092517 -0.478208 0.502725 -0.839725 0.321534 -0.254253 -0.844414 -0.022851 1.569526 0.783748 0.340763 -0.334356 -0.524469 -0.263509 0.488583 -PE-benchmarks/find-parity.cpp___GLOBAL__sub_I_find_parity.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.558358 0.039128 3.319585 1.904943 -1.994635 -2.503863 -1.367616 -3.436907 1.346796 -0.035368 2.208353 0.011381 0.047947 -0.475188 0.346768 -0.161328 -0.132760 -1.016590 0.247663 -0.867082 -0.502410 2.039893 1.608199 -2.595231 0.441979 -3.499309 1.995365 1.630835 1.111804 2.026482 -0.527802 -0.721900 -0.710807 1.882036 -0.775025 0.020800 0.803678 0.338536 -0.984153 0.787044 0.890226 1.548178 1.633333 -1.026627 2.491835 1.173040 1.478601 0.783688 -2.083088 -0.266406 -0.722778 2.169009 -1.941031 1.426192 -0.075928 0.951680 -0.583422 -2.357154 -1.445308 -2.596465 -0.017947 0.351803 -1.079611 0.121250 -1.907207 0.592783 0.329046 -1.400194 1.650855 0.475694 1.983210 0.864738 0.031774 -0.190930 -1.397075 0.694320 0.476006 1.896250 0.715593 -1.822188 0.050013 0.665324 -0.844980 -0.998536 -0.017247 0.727581 0.808081 -0.796111 0.753916 -0.129987 0.475147 -0.495328 -0.436056 1.565109 -0.951115 0.352859 -1.225658 -0.208985 -1.577962 -1.085644 0.009020 -1.411738 1.574352 1.392959 -0.906973 0.371325 0.775413 1.281780 -0.960769 -2.236300 -0.206399 -0.178690 1.413905 2.299898 -0.566163 -0.173120 -0.067198 -0.551883 -0.522152 1.759147 -0.147229 0.808005 2.454636 3.284304 0.387447 -1.732315 -1.438692 0.016984 1.617591 2.351974 1.724241 -2.445989 -1.159012 -0.542365 -0.176881 -3.103059 0.346743 -0.056685 1.782020 -0.217368 -2.061570 0.686056 -1.307972 3.222584 1.223350 0.836332 0.265052 -0.092253 -2.056959 2.774465 4.255678 -0.587219 1.357447 -1.603960 -1.050262 1.946035 -1.194783 1.264947 0.973579 -0.047722 0.496958 -1.675827 -0.460721 1.761768 1.264409 1.321458 1.212103 0.657454 -0.306697 -3.331394 -2.250839 -0.033231 1.726570 -0.300385 3.841209 -2.060991 -1.897839 -1.154023 2.437227 -0.054350 -0.568851 0.066673 -1.411351 1.280346 -2.757091 -2.849280 3.212766 4.070480 1.052468 0.703148 2.739380 1.537975 -1.101834 -0.601274 -0.634389 1.006311 0.593573 -0.932646 -0.537151 0.090809 -1.941873 -1.322509 0.367978 0.914962 0.976158 -0.384194 -1.646953 1.310006 -2.630852 -1.523279 0.745147 -2.429793 -0.471369 0.704916 -0.003387 0.420862 0.738777 -1.282836 -0.277504 0.629625 -1.310111 0.967836 1.290540 1.730925 0.640283 1.719393 2.090739 0.293353 2.659345 1.327685 -0.942961 3.963367 -0.417946 0.798177 1.131254 0.666216 -0.285683 0.704919 0.852200 -1.008697 -0.204228 -2.316978 1.215150 0.168391 1.833644 -2.211337 -1.951697 -2.323738 -1.084742 1.883384 1.185660 -0.095907 3.709050 0.129437 0.627030 -4.690245 -0.585532 1.178369 0.371044 1.479059 0.965559 -1.386563 -4.482749 -0.448957 -1.027053 -0.353117 -1.422607 -1.526116 -1.507532 -0.728956 1.460253 -0.296122 0.633317 2.713121 -0.074344 1.063813 -0.908513 -0.220218 -0.474959 -1.377538 0.849224 0.633025 -2.209012 2.091642 -0.056854 5.594863 -0.724256 1.428861 -1.515771 0.418172 0.125015 -0.514257 -0.066484 2.719649 1.335249 0.816275 -0.029046 -0.173946 -1.243991 1.496712 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.305812 1.113434 4.002169 2.470720 -2.402826 -3.063020 -1.567060 -4.035471 1.633295 -0.241435 2.420095 -0.034860 0.425688 -0.434117 0.149549 -0.685325 0.529055 -0.484092 -0.148257 -1.215897 -1.279987 2.058778 0.999403 -2.788227 0.553736 -3.624855 2.280371 1.927343 1.296305 1.695413 0.120469 -0.455678 -1.189942 2.065112 -1.070835 -0.398647 0.777309 0.362148 -1.512919 0.112820 1.240431 1.668101 2.218142 -0.217130 1.976425 1.266071 1.333293 0.981839 -2.040628 -0.270995 -1.119610 2.924440 -1.592070 1.473513 0.578302 1.078302 0.462184 -2.671958 -0.622670 -1.797684 -0.100177 0.250826 -1.245022 0.025911 -2.060503 0.375976 -0.059589 -1.500242 1.704551 0.017415 2.041826 0.213405 -0.077570 -0.575824 -1.650855 0.643053 0.251418 1.915775 1.559319 -0.771299 0.279638 0.552478 -1.264530 -1.490123 0.529293 0.368205 0.926666 -0.315739 0.273793 -0.940309 0.462097 -0.880198 0.020061 1.526766 -1.374569 0.627607 -1.613153 -0.646208 -2.074754 -1.570029 0.223329 -1.419156 1.413233 1.289758 -1.482923 -0.017255 0.367516 0.495087 -0.659268 -2.199896 0.079657 -0.658605 1.247654 3.044734 -0.939518 -0.826561 -0.085580 -0.946710 -0.702188 2.186258 0.329778 0.591854 2.269931 3.193184 0.504364 -1.765020 -1.245781 0.024575 1.377114 2.317156 1.969221 -2.739047 -1.369862 -0.148059 -0.150427 -3.856722 0.727243 0.061207 2.065460 0.714701 -2.494718 0.703554 -1.519331 2.417666 0.728533 1.407592 0.561707 -0.383001 -1.926022 2.453332 3.950252 -0.822971 1.758355 -1.257673 -1.511343 1.832096 -1.281716 1.268479 0.749080 -0.422744 0.596585 -1.359017 -0.488805 2.236452 0.793886 0.803313 1.692065 0.572643 -0.844622 -3.784477 -3.010317 0.704090 2.047532 -0.389122 3.718192 -2.323814 -1.638573 -0.874978 3.380320 -0.964585 -0.790017 0.388686 -1.367760 1.501811 -2.207281 -2.997528 3.544972 3.808278 0.093837 -0.035801 2.507826 1.349629 -1.650576 -1.313376 -1.427375 0.880380 0.793197 -0.856918 -0.266463 -0.030401 -2.044845 -0.756498 0.693452 1.076850 1.520362 -1.054391 -1.127755 0.581387 -2.664758 -2.192337 1.151769 -2.102811 -0.208394 0.871165 -0.188662 0.034145 1.257450 -0.888991 -1.203518 0.595351 -1.370274 0.429561 0.986410 2.137259 0.509955 3.030315 1.707151 0.311968 2.950496 1.568129 -1.308152 5.005942 -1.041624 0.849039 0.805226 1.620542 -0.277161 1.148469 1.131423 -1.230748 -1.066619 -2.813608 0.731140 -0.247356 1.560444 -2.713881 -1.791491 -3.081394 -1.386475 1.434144 1.438253 -0.419452 4.314508 -0.134285 0.086622 -4.551096 -0.469404 1.962631 -0.210651 1.755067 1.193648 -1.818123 -4.051507 -0.736631 -1.539345 -0.174477 -0.979807 -1.613790 -1.660611 -1.010578 1.936388 -0.640477 0.974295 3.025215 -0.203120 0.654670 -0.943596 -0.121962 -0.434651 -1.481925 1.284126 0.320437 -2.516216 2.948243 -0.160520 5.757619 -0.498923 1.813494 -1.731222 0.062220 0.241198 -1.070770 -0.664303 3.100456 1.615206 0.899603 -0.051607 0.420441 -1.441034 1.901950 -PE-benchmarks/the-knights-tour.cpp__solveKT() = -0.540178 1.708589 6.067474 2.644306 -4.588265 -5.937500 -2.681442 -8.376330 2.533404 0.093307 4.883754 -0.351690 1.246500 -0.812312 0.834520 0.526992 1.860270 -1.493671 0.343806 -2.588225 -2.514194 3.462949 0.878317 -2.134463 1.113890 -5.252149 2.827995 2.970765 1.954607 1.952811 1.077774 -1.003723 -2.679975 2.804282 -0.659909 0.871015 2.036689 0.705699 -3.115814 0.873103 0.795455 0.910622 3.876611 -0.913002 4.125560 1.465108 2.852532 2.283539 -3.775135 -1.043188 -1.898003 5.425890 -2.741155 2.075687 1.434549 0.202240 0.390652 -3.726955 -1.343815 -1.467030 -1.171373 -1.312879 -2.316220 0.560002 -2.907202 1.083727 -0.789898 -2.300046 2.334712 0.314616 3.390402 0.263032 -0.312044 1.228984 -3.425686 0.604014 0.895734 2.968583 2.403064 -1.449315 1.281676 0.484079 -2.507980 -2.776115 1.853488 1.651503 1.965042 -0.937387 -1.615043 0.032780 0.347740 -1.630047 0.965786 2.092194 -3.127909 0.115055 -2.187138 -1.771671 -4.659854 -4.389619 0.882448 -1.929921 2.627009 1.018209 -2.036404 -0.588982 -0.972426 0.720366 -2.149002 -3.902227 0.169270 -1.395711 2.102515 5.593978 -2.151730 -1.004028 -1.335217 -1.732555 -1.084871 2.851838 1.539684 1.108341 3.931016 5.565353 1.192381 -3.035618 -3.245619 -0.150270 2.955967 3.563466 3.038794 -4.218168 -2.542456 0.553182 -1.584395 -6.338157 -0.267756 0.558303 3.868171 1.029307 -2.617417 0.121218 -2.476551 4.180735 1.463909 1.981223 0.483037 -0.435427 -3.435854 3.983046 5.581853 -1.409362 3.608594 -1.665009 -1.056822 2.259497 -2.193516 1.489797 2.395689 -0.905442 -0.700544 -1.732525 -1.581624 3.092830 2.246415 1.390277 1.250238 1.784498 -2.328845 -5.735059 -5.598704 1.411024 4.317531 -0.823171 4.769443 -4.201528 -3.230994 -0.851057 5.597917 -1.162749 -2.658171 1.259455 -2.885254 2.607350 -2.576844 -4.574682 6.328628 6.786340 1.245604 0.010185 3.940287 2.716672 -5.701924 -2.268231 -2.297068 1.972671 0.392010 -4.425390 -1.452048 0.494763 -3.862056 -1.247715 0.139422 2.481566 1.948870 0.067510 0.431668 1.392287 -3.503832 -2.443982 2.283046 -2.234750 -0.912562 1.323420 -0.383759 0.892031 2.179747 -2.019727 -1.023561 1.037326 -3.329769 1.050415 2.074157 3.512095 1.006125 6.533555 3.233945 0.364454 5.574178 1.105772 -2.567474 5.689702 -1.160993 2.124317 0.782991 1.893517 -0.571656 1.241668 2.961633 -2.067951 -3.144469 -4.230103 -0.184416 -0.130335 3.286238 -2.192322 -3.954790 -6.113682 -1.485771 2.384650 3.138243 -0.834189 6.381368 -0.553470 0.787695 -7.407461 -0.381399 2.082296 -0.538728 2.603048 1.205243 -2.765393 -5.173646 -1.033203 -3.843327 -2.788257 -1.013657 -1.883751 -2.742283 -2.479762 4.033240 -1.149756 0.168996 3.636963 -0.043324 2.006420 -0.302349 -0.396132 -1.059517 -1.208804 3.771882 -0.085032 -4.122017 5.081413 0.598320 11.090172 -0.024308 2.240207 -1.880530 -0.334172 0.890905 -2.064828 -1.013150 4.945219 3.894249 1.362030 -0.822344 0.468571 -1.609780 2.917866 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.053907 0.882084 9.021326 6.036593 -5.033286 -7.946812 -3.943295 -9.512938 5.188796 0.315288 6.314009 1.199770 2.062173 -2.040547 0.512086 -1.210024 1.051867 -2.673034 -0.095900 -2.934801 -2.274014 7.839905 4.134232 -6.651602 0.754752 -9.879918 6.191144 3.995934 3.457571 6.265838 0.236232 -0.835228 -1.879813 5.125454 -2.437457 0.661733 0.651016 1.348167 -2.525518 0.057038 3.776832 3.480979 5.711888 0.136767 6.186229 2.577466 4.007123 1.663267 -4.282059 -1.763835 -3.655709 6.355675 -5.545832 3.203286 -0.438186 3.024642 1.453721 -5.947647 -2.130274 -6.432363 -0.298320 0.782393 -4.192536 0.183790 -5.353087 1.711375 -1.011482 -2.888079 2.489606 -0.360698 5.688700 1.538563 0.123546 -1.769649 -5.583838 1.328134 -0.419088 3.959239 4.186099 -1.756288 -2.180322 0.795685 -3.230300 -4.040264 2.394374 0.842894 1.256002 -0.037529 0.898933 -1.933453 -0.624737 -1.350527 -0.079460 4.061187 -3.654196 1.631810 -1.134959 -1.116778 -3.601949 -2.492218 0.864202 -4.018719 2.768147 3.866223 -2.140955 -0.846733 -0.277543 0.536448 -3.315332 -5.779742 0.746192 -1.780823 1.750991 6.609699 -2.911876 -0.823537 -0.319765 -1.527854 -0.503723 6.367117 1.087902 1.998704 5.918317 7.775703 0.995621 -4.633228 -2.458358 1.311663 4.826624 4.994795 4.091329 -6.246991 -3.711246 -0.144977 -0.015533 -9.144330 0.962573 2.264265 4.944772 1.732159 -6.545841 3.000276 -3.050678 6.243766 3.866611 2.819964 1.569153 -0.484978 -5.666898 6.599615 11.641765 -1.748435 4.372541 -3.611304 -4.158601 7.794331 -5.322490 3.376971 1.766564 -0.581286 0.496351 -3.481021 -0.421290 5.526009 1.715288 3.031350 3.871055 1.878628 -0.585355 -9.272425 -8.024571 0.330560 6.152774 0.755148 10.309514 -5.844462 -2.601399 -1.708603 7.056739 -0.990650 -2.234674 0.792625 -3.349696 3.740733 -9.581496 -7.776590 10.563883 9.498451 1.791614 1.139657 6.095827 5.077794 -2.105582 -2.453912 -3.183011 3.032438 2.177349 -1.501464 0.337470 -0.267950 -5.732348 -3.797176 1.002270 2.337595 2.940641 -3.283281 -2.868844 0.626512 -6.068680 -5.008441 2.488793 -6.001389 -1.844476 1.237948 -0.386607 -0.390536 2.254067 -1.227436 -0.864001 1.728782 -3.149558 0.919836 2.849563 4.549480 2.063916 6.447713 6.391291 -0.622654 5.763434 3.329794 -2.266465 12.258639 -2.621117 1.657145 2.077848 4.333780 1.109491 2.501218 2.455288 -2.953009 -1.614010 -6.673654 3.352788 1.037665 4.333140 -7.086336 -4.943401 -7.842167 -2.966000 3.849860 4.897751 -1.179310 11.423282 -1.162695 0.670461 -12.234539 -0.598904 5.254052 0.185942 4.133758 3.091426 -3.869207 -9.104578 -2.484453 -3.025656 0.876318 -2.855374 -4.434232 -3.941186 -2.877184 4.381048 -3.691686 2.511903 7.035672 -0.948900 2.542031 -2.177837 -0.216649 -2.690810 -2.595437 1.735793 1.598299 -5.634542 7.312193 -1.160362 12.997683 -2.591985 5.018516 -4.123810 3.205432 -1.393137 -3.324034 -1.073540 8.036744 4.235771 0.914762 0.946016 0.625281 -2.274407 4.365050 -PE-benchmarks/the-knights-tour.cpp__main = 0.203706 0.282755 0.404920 0.004440 -0.117241 -0.457206 -0.118318 -0.667745 0.124807 0.074459 0.297716 -0.199849 0.226566 0.102226 -0.032608 0.152223 0.120781 0.056601 0.149317 -0.133011 -0.320368 0.327041 -0.151244 0.144994 0.096101 -0.336002 0.281421 0.128700 0.216696 0.233704 0.061239 -0.023188 -0.050398 0.125750 -0.110469 0.001510 0.067305 0.183633 -0.224972 0.190501 -0.108184 -0.069727 0.186002 0.047433 0.098252 0.349680 0.015270 0.147597 -0.003340 -0.060412 -0.086930 0.157845 -0.085320 0.128915 -0.186609 -0.185158 0.042941 -0.022456 0.012112 0.114221 -0.046117 -0.109689 -0.185407 0.075496 -0.319121 0.047605 -0.219284 -0.286708 -0.017417 0.064426 0.182986 0.057274 -0.050686 0.043582 -0.497385 0.050441 0.124976 0.104445 0.153236 -0.148718 0.118013 0.056142 -0.339113 -0.311129 0.331960 0.329023 0.214217 0.018599 -0.182947 -0.161023 -0.037651 0.004807 0.231457 0.250663 0.023343 0.110561 -0.315019 -0.058511 -0.253523 -0.629267 0.070644 -0.151689 0.191685 -0.091107 0.039378 0.011322 0.135410 0.179522 0.042781 -0.325031 0.040012 -0.157490 0.067944 0.453913 0.028099 -0.165328 -0.146089 -0.173945 -0.070520 0.187658 0.180031 -0.021160 0.271529 0.195043 0.114886 -0.200232 -0.257721 0.079059 -0.002555 0.158377 0.174917 -0.332486 -0.190582 0.054797 -0.243980 -0.490403 -0.094815 0.010758 0.164827 -0.381086 -0.010335 0.229547 -0.234318 0.014050 0.214159 0.088069 0.113959 -0.044890 -0.134693 0.144402 0.368898 -0.141009 0.179047 -0.234932 -0.142305 0.107957 0.054266 0.061700 0.027797 -0.076396 -0.090721 -0.100342 0.085921 0.268940 0.059558 0.092920 0.168424 0.083275 -0.350179 -0.205201 -0.278850 0.067373 0.392291 -0.105644 0.330316 -0.257716 -0.140975 0.053170 0.357353 -0.001118 -0.054273 0.108107 -0.165925 0.144629 -0.297554 -0.338527 0.290886 0.242313 0.210782 -0.146104 0.050885 0.175996 -0.301252 -0.279633 -0.175724 0.134218 -0.057721 -0.530625 -0.339942 0.010274 -0.282909 0.088169 -0.024051 0.168873 0.170725 0.152713 0.133642 -0.221188 -0.226815 -0.266079 0.227103 -0.147211 0.039671 0.082979 -0.023134 -0.094199 0.117068 -0.166221 -0.001408 0.157852 -0.164811 0.122384 0.138092 0.056727 -0.095339 0.545493 0.241845 -0.068747 0.132051 -0.007441 -0.155217 0.377454 -0.061329 0.124158 0.006127 0.196926 -0.137925 0.122641 0.286883 -0.110405 -0.382847 -0.353268 -0.166900 0.120889 0.044276 0.223952 -0.152789 -0.416824 -0.047552 -0.063550 0.557725 0.088060 0.388830 -0.031488 0.224001 -0.259224 0.093199 -0.023659 -0.136029 0.216442 0.083003 -0.184391 -0.069373 -0.054411 -0.338893 -0.479691 -0.104777 -0.254285 -0.199675 -0.074784 -0.087517 -0.039418 -0.043201 0.161677 0.039923 0.098307 -0.154949 -0.036985 -0.206646 0.082622 0.498878 -0.142095 -0.246794 0.086795 0.099719 0.712572 0.075349 0.210960 -0.085638 -0.113591 0.051633 -0.197310 -0.139600 0.347624 0.183158 0.112016 0.004615 0.026501 0.113136 0.143650 -PE-benchmarks/coin-change.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -2.721144 2.071130 14.492184 8.708335 -6.776594 -10.257003 -4.993044 -13.416379 6.312504 0.095074 8.905975 0.967609 2.037160 -2.498242 1.593670 -1.104154 0.701170 -3.631620 1.359867 -3.452072 -1.420449 9.485122 6.671261 -9.994227 0.775807 -14.338199 8.997896 6.590002 6.166262 7.721086 0.256564 -2.002192 -2.178417 8.121982 -3.589277 -0.378795 1.003192 1.918953 -3.965226 1.417922 3.696064 7.428510 5.961105 -0.909560 8.580415 4.166489 7.679792 2.513697 -6.236051 -1.384241 -5.778641 11.756483 -8.396645 4.372832 0.817543 4.055556 0.387250 -9.231510 -3.653933 -9.801586 0.065222 2.609270 -5.835345 0.865088 -8.519673 2.220172 -1.771542 -3.568452 4.805063 3.088221 8.165060 2.804032 0.962722 -2.353986 -6.836170 3.299047 -0.874495 6.891743 5.818884 -5.053985 -1.907301 2.929413 -2.754549 -5.841599 2.454442 1.260484 1.989415 -2.478514 3.050082 -2.086684 -1.452024 -2.481845 -2.478980 6.363977 -5.463578 3.549319 -3.385095 -0.775609 -5.449428 -2.781293 -0.115269 -7.200565 4.316598 6.373250 -2.010750 -1.317135 -1.597543 1.364453 -4.275147 -8.586673 -0.096977 -1.803230 3.599586 9.358786 -4.756178 0.336196 0.115849 -1.020369 -0.896440 9.120097 1.401951 3.597880 8.797110 12.114232 0.690988 -6.000760 -3.295228 1.346529 6.530505 8.914136 6.637139 -10.305335 -5.470172 -1.936362 1.705676 -12.537491 3.544353 3.077591 5.443586 3.141158 -9.915208 2.403134 -4.162653 10.503303 5.387033 4.658596 2.145518 -0.590104 -6.404432 10.356370 17.358571 -3.209359 5.770578 -4.357752 -5.248294 10.207629 -8.074669 5.508051 3.343445 0.544149 2.058264 -6.321490 -2.899618 8.338521 4.334110 4.994312 7.963009 1.877346 1.203976 -13.952294 -9.769098 1.495420 6.900010 -1.740064 14.569200 -7.325794 -4.761597 -2.517381 9.678258 -0.946890 -2.766990 -0.140219 -4.430399 4.987014 -11.620892 -11.049490 13.373860 13.222253 0.909747 0.617733 9.198624 8.553923 -4.837716 -3.707625 -4.265084 4.771572 0.560364 -1.680701 0.289834 0.449671 -8.570912 -4.502931 1.772487 3.081556 5.110398 -3.578961 -7.031632 3.567318 -10.867064 -6.232252 2.996951 -8.404262 -3.189676 1.116306 -0.362986 0.957566 3.259138 -3.663663 -1.656337 3.939380 -5.729655 0.133123 4.520358 7.763117 3.453782 9.616036 6.946868 2.157884 9.206018 6.355981 -3.675818 17.571995 -1.225590 1.769543 3.355417 4.846606 0.080165 3.926450 2.263999 -4.380384 -4.359925 -10.570343 5.408212 0.409207 6.542962 -8.901827 -6.277792 -9.211525 -5.286072 8.141579 5.622931 -1.239088 16.538733 -0.303358 0.520988 -16.759944 -1.519718 6.500838 -0.171958 6.963095 5.209604 -5.970415 -12.675858 -4.132193 -2.640432 1.290517 -4.170070 -6.394189 -5.901552 -3.826862 6.948963 -4.256415 3.827273 10.113248 -0.231096 3.259503 -1.691434 -0.494098 -2.631450 -3.877609 3.144638 3.159542 -9.746979 10.905977 -2.586203 20.211803 -5.202151 6.430337 -7.359036 1.616422 -0.334818 -1.888980 -0.783642 11.965941 5.885104 2.578613 0.695684 1.016805 -5.019518 6.734091 -PE-benchmarks/coin-change.cpp__main = 0.049988 0.266479 1.353997 0.061331 -0.741618 -1.636164 -0.692987 -2.640921 0.944573 0.477960 1.341460 -0.159591 0.799933 -0.208423 0.009783 0.621392 0.453310 -0.751884 0.530971 -0.657933 -0.766284 1.854947 0.055322 0.485593 0.167128 -1.877104 1.025034 0.278071 0.858162 1.072249 0.369788 -0.180794 -0.344303 0.585222 0.051065 0.747752 0.310641 0.511086 -0.635571 0.574215 -0.012333 -0.298123 0.962759 0.001245 1.220675 0.525249 0.499963 0.490220 -0.327231 -0.557431 -0.540240 0.812893 -0.923059 0.303282 -0.341054 -0.417625 0.018130 -0.441115 -0.397240 0.062502 -0.498880 -0.616582 -0.832905 0.421852 -0.977759 0.512877 -0.881919 -0.487928 -0.133155 0.028040 0.947285 0.478788 0.038644 0.511496 -1.827757 0.182243 0.174376 0.371631 0.645383 -0.466036 -0.155440 0.088241 -1.061548 -1.109166 1.138210 1.237051 0.353485 -0.146031 -0.641819 -0.022308 -0.494607 -0.107365 0.639805 0.843205 -0.666457 -0.015359 -0.412397 -0.356744 -0.882312 -1.739448 0.330284 -0.648359 0.659955 -0.009518 -0.021013 -0.340787 -0.115425 0.160446 -0.624390 -1.156235 0.181444 -0.534375 0.392302 1.669354 -0.399126 -0.161820 -0.833276 -0.452590 -0.047825 0.802874 0.658729 0.235058 1.305896 1.185565 0.427575 -0.872389 -1.000530 0.526601 0.727570 0.489426 0.558314 -1.160210 -0.749432 0.264564 -0.520558 -1.665430 -0.630068 0.377519 0.769459 -0.692925 -0.054119 0.448076 -0.562793 0.762368 1.104910 0.048742 0.260697 0.001674 -0.948639 1.055599 1.849119 -0.264175 0.795363 -1.003278 -0.358549 1.213492 -0.806602 0.385988 0.441356 -0.040247 -0.806792 -0.486967 0.151230 0.802025 0.197616 0.615500 0.172864 0.606806 -0.559722 -1.040505 -1.500606 0.098997 1.620169 0.060381 1.339286 -1.160404 -0.368797 0.156731 1.205265 0.526426 -0.625910 0.533814 -0.819149 0.633253 -1.536028 -1.329497 1.827905 1.641871 0.972222 0.030227 0.593488 1.160275 -1.386560 -0.666030 -0.589641 0.824618 -0.079956 -1.904980 -0.704627 0.177998 -1.133300 -0.554994 -0.308670 0.667352 0.603378 0.304713 0.550206 -0.277591 -0.646347 -0.744495 0.983500 -0.566146 -0.497456 0.112222 -0.027763 -0.114809 0.475077 -0.405528 0.493370 0.489009 -0.659099 0.483062 0.833191 0.344962 -0.037779 1.607763 1.415580 -0.420938 0.695234 -0.146277 -0.286465 1.046183 -0.204091 0.477154 0.157805 0.361290 -0.022269 0.281279 0.878083 -0.494695 -1.037103 -1.026632 -0.005026 0.382695 0.683751 0.269926 -1.164786 -1.749392 -0.140530 0.301514 1.664454 0.221552 1.718640 -0.332138 0.629382 -1.704185 0.233704 0.282902 -0.054788 0.823125 0.228967 -0.527521 -0.287273 -0.398112 -1.137502 -1.243314 -0.409076 -0.807615 -0.776442 -0.714867 0.654949 -0.587640 -0.182459 0.603037 0.072095 0.770365 -0.196586 -0.117240 -1.103404 0.340613 1.175320 -0.199162 -0.788664 0.908983 0.103610 2.561004 -0.201628 0.626310 -0.195930 0.439184 -0.178682 -0.972988 -0.181820 1.372530 0.894220 0.093316 -0.120841 -0.206992 0.318647 0.558811 -PE-benchmarks/coin-change.cpp___GLOBAL__sub_I_coin_change.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/magic-square.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/magic-square.cpp__generateSquare(int) = -1.619568 2.718589 16.578815 11.516612 -9.078520 -11.824501 -5.410199 -15.739757 7.995061 -0.719425 8.926203 0.729675 1.956921 -4.540006 0.673606 -1.265591 1.549419 -2.572932 1.275151 -4.333320 -1.962550 12.215947 6.936235 -12.527152 1.197207 -16.844297 10.695102 7.833000 9.057307 8.966750 0.419264 -2.383895 -2.750418 8.949920 -4.309776 -1.537070 0.350198 1.563109 -7.539766 1.811854 3.720495 8.178606 7.746351 -2.376617 8.936044 3.756433 9.361513 3.423454 -7.540890 -0.880460 -6.783899 13.681929 -8.026561 5.708417 1.482649 3.156791 0.457398 -9.868327 -3.954608 -9.035426 -0.572643 2.370039 -6.340129 1.174078 -11.015987 2.240260 -2.859404 -5.044928 6.247629 3.302379 8.509878 3.858866 1.366788 -4.326307 -8.977481 4.421443 0.123655 8.769660 6.497805 -4.060862 0.667535 3.098926 -3.773509 -6.156119 2.264978 1.751699 2.333743 -2.785928 3.185052 -4.161498 -0.645505 -2.920869 -2.064450 5.936062 -6.473073 4.177952 -7.058904 -1.081124 -6.234209 -5.087478 -0.398330 -7.365692 5.225564 5.611118 -3.270593 0.271706 1.099070 1.778236 -2.823272 -9.839386 -0.702957 -1.680029 5.062723 13.952863 -4.120354 -1.270309 -1.343660 -0.679565 -3.465455 9.927188 0.675067 4.573741 10.106980 13.668508 1.426342 -7.112542 -3.704938 2.000728 6.303215 9.990708 8.431139 -10.794995 -6.605615 -2.850260 3.263231 -14.907234 3.233862 2.632429 6.635132 2.900399 -9.522022 2.037266 -4.919674 12.942450 4.742446 3.201128 2.981306 -1.002105 -7.314659 12.379894 19.891235 -3.128748 5.365176 -6.803484 -7.071750 11.461721 -6.905794 6.030818 2.050895 0.223090 2.616921 -7.101231 -1.616107 9.205552 3.178205 3.673289 9.206632 2.161975 1.109264 -16.667389 -11.240917 3.035758 6.613246 -1.771445 17.028960 -8.121703 -5.345225 -3.634401 9.983198 -0.382630 -2.031599 0.525548 -6.976532 5.707708 -13.252614 -13.598781 15.722581 15.643349 0.307308 0.769604 10.062807 9.087565 -6.018829 -5.130062 -5.173181 4.919968 1.790985 -3.797319 -0.548557 1.205268 -9.744480 -4.921248 3.551171 3.710876 7.570158 -4.517525 -7.447925 1.648267 -13.269777 -8.971946 5.419020 -9.481257 -1.973134 2.524827 -0.388953 1.271687 5.520850 -4.144797 -2.178861 3.157958 -5.230914 0.227803 3.694706 9.676628 2.113880 9.565824 8.499386 3.064831 12.071483 7.667672 -5.497127 22.210837 -2.156435 2.339114 3.540133 4.487196 -0.484388 4.758292 2.541953 -5.272098 -3.817189 -12.210750 5.559709 -0.019362 6.576278 -12.260302 -7.275952 -11.012807 -6.269674 8.177999 5.151426 -0.282075 18.813313 -2.215744 -0.737780 -19.792672 -2.045282 7.567988 0.888977 10.350597 5.940886 -7.616883 -13.847464 -4.446634 -4.022818 2.662023 -5.946438 -8.328907 -7.266296 -2.718146 9.032502 -4.051139 4.767472 13.100454 -0.797274 4.320685 -3.354351 -0.282386 -3.192764 -5.361833 3.102367 3.709381 -10.649367 11.819719 -3.076044 22.867153 -4.462193 6.633987 -8.784508 1.131982 0.243559 -4.251817 -1.686778 13.505012 5.977200 2.772438 0.803929 0.492157 -5.888630 8.234705 -PE-benchmarks/magic-square.cpp__main = 0.149606 0.326035 0.653943 0.123126 -0.355725 -0.908579 -0.244531 -1.074238 0.297731 0.159547 0.542638 -0.140321 0.401115 0.038514 -0.021465 0.197530 0.262654 -0.046763 0.160621 -0.331577 -0.555475 0.650221 -0.067487 0.071166 0.182912 -0.637007 0.620413 0.290437 0.280827 0.538765 0.151410 0.002276 -0.154825 0.306341 -0.129727 0.115163 0.028770 0.280384 -0.286263 0.316473 0.048537 -0.085649 0.506293 0.150373 0.332932 0.588245 0.107500 0.275536 -0.152406 -0.216706 -0.172799 0.188511 -0.280650 0.247822 -0.369913 -0.136983 0.172893 -0.169224 0.003285 0.001586 -0.076140 -0.209891 -0.421233 0.123083 -0.563986 0.076518 -0.372946 -0.475584 -0.067704 -0.030754 0.346582 0.066872 -0.206065 -0.010488 -0.824076 0.002031 0.179221 0.189868 0.359079 -0.200239 -0.080093 0.014570 -0.626748 -0.532270 0.486885 0.425089 0.316288 0.119202 -0.307891 -0.311405 -0.097534 0.029772 0.389936 0.428853 -0.065724 0.082492 -0.263553 -0.168772 -0.478289 -0.861435 0.220359 -0.208293 0.324511 -0.077108 -0.041840 -0.094858 0.045174 0.160042 -0.112668 -0.492366 0.062395 -0.371628 0.170642 0.731214 0.001897 -0.268606 -0.341582 -0.314078 0.029135 0.441187 0.297151 -0.098612 0.596395 0.428557 0.161478 -0.400990 -0.419355 0.093079 0.108053 0.260552 0.305812 -0.506665 -0.362451 0.120421 -0.414276 -0.803998 -0.171728 0.058670 0.334159 -0.494510 -0.103202 0.458891 -0.420155 0.096405 0.443736 0.181793 0.199529 -0.067916 -0.372837 0.333305 0.765724 -0.179422 0.318914 -0.436217 -0.338289 0.482116 -0.062490 0.115331 0.137424 -0.236402 -0.290472 -0.099153 0.205908 0.451067 0.050827 0.168925 0.311840 0.201521 -0.413807 -0.359823 -0.629856 0.114099 0.747091 0.098413 0.747031 -0.562821 -0.068429 0.002269 0.547901 0.075658 -0.176692 0.182109 -0.250652 0.270601 -0.772891 -0.583089 0.706251 0.513085 0.427041 -0.124407 0.157652 0.313953 -0.338756 -0.404760 -0.307544 0.270212 -0.010955 -0.664030 -0.322580 0.055012 -0.541734 -0.015115 -0.071324 0.312492 0.332667 -0.020651 0.157142 -0.445970 -0.365785 -0.521893 0.286892 -0.292815 -0.013367 0.157720 -0.084702 -0.154155 0.160509 -0.105767 0.023976 0.112459 -0.254861 0.188875 0.244089 0.193987 -0.052956 0.830263 0.540027 -0.252007 0.193074 -0.009577 -0.193498 0.744200 -0.157260 0.276622 0.094996 0.449189 0.005192 0.170136 0.511168 -0.205992 -0.396008 -0.565037 -0.097175 0.319771 0.171097 0.012437 -0.261108 -0.914768 -0.065984 -0.080153 0.986110 0.026559 0.765863 -0.062380 0.335650 -0.593197 0.142163 0.055907 -0.130887 0.319154 0.158301 -0.366350 -0.128045 -0.134626 -0.616073 -0.525634 -0.130725 -0.268120 -0.391442 -0.031662 -0.120587 -0.190606 -0.033085 0.377323 -0.104987 0.173540 -0.243095 -0.014504 -0.343246 0.016844 0.725256 -0.151072 -0.384783 0.280217 0.122732 1.110260 0.125469 0.453259 -0.091983 0.056242 0.008358 -0.456138 -0.271446 0.619392 0.318433 0.100443 0.130937 0.060742 0.273501 0.315630 -PE-benchmarks/magic-square.cpp___GLOBAL__sub_I_magic_square.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/detect-cycle-undirected-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = -0.349264 0.051233 1.930663 0.511415 -0.780114 -2.236520 -0.752641 -2.971027 1.423866 0.587195 1.803073 0.348140 1.075890 -0.527504 0.326070 0.766087 0.418050 -0.850163 0.255646 -0.746646 -0.188339 2.284854 0.680660 -0.292770 0.054993 -2.127612 0.849818 0.742418 1.103698 1.395691 0.345124 -0.259185 -0.326057 0.909654 -0.407342 0.929022 0.235985 0.618315 -0.774651 0.086853 0.077266 0.084801 1.112679 0.054293 2.016668 0.223842 1.296782 0.374900 -0.476706 -0.748864 -1.002915 1.807306 -1.423692 0.560035 -0.501295 0.017605 -0.080619 -0.678618 -0.495862 -1.251489 -0.251308 -0.064185 -1.296461 0.159430 -1.061281 0.601255 -0.485706 -0.609629 -0.240571 -0.072883 1.412217 0.429098 0.075129 0.219324 -2.297219 0.019211 -0.157233 0.531171 1.019790 -0.428016 -0.672859 -0.256087 -0.766973 -1.211046 1.450764 1.020638 0.209819 0.237481 -0.724083 0.196167 -0.821902 -0.179628 0.398763 0.978959 -1.251387 0.269942 0.386667 -0.266943 -0.813819 -1.027803 0.494767 -0.966717 0.560474 0.175899 0.601419 -0.377944 -0.764463 0.104341 -1.327659 -1.399192 0.368618 -0.484015 -0.030738 1.522144 -0.953915 0.200096 -0.299759 -0.223937 -0.009572 1.293232 0.722366 0.551835 1.337889 1.561469 0.482754 -1.267331 -0.848818 0.759691 1.518065 1.066259 0.515910 -1.319188 -0.884489 0.346560 -0.572982 -2.270874 -0.340576 1.247991 1.116674 -0.052407 -0.896227 0.483606 -0.520164 1.361464 1.480348 0.374531 0.325563 0.143709 -1.388583 1.195057 2.740021 -0.445956 1.308426 -0.619104 -0.279403 1.695958 -1.642655 0.785815 0.664104 -0.138952 -0.483411 -0.650347 -0.286726 1.225560 0.790517 1.063796 0.118925 0.764733 -0.594529 -1.899064 -2.121639 -0.531372 1.927810 0.175806 1.942750 -1.294380 -0.766815 0.009729 1.447677 -0.046461 -0.891436 0.461324 -1.112959 0.999263 -2.372511 -1.679381 2.756292 2.449751 1.319894 0.234215 1.329413 1.604245 -1.265793 -0.604345 -0.348173 0.831823 0.095220 -1.772332 -0.383137 -0.021074 -1.757350 -1.042572 -0.333641 0.604327 -0.127255 0.502130 0.668406 0.239361 -0.836678 -0.582698 0.521497 -0.965199 -0.770560 -0.135518 0.163195 -0.046168 0.311921 -0.762558 0.537265 0.992443 -1.159229 0.442638 0.891708 0.590634 0.684219 2.022993 1.834749 -0.395776 1.502736 -0.024101 -0.536878 1.706590 -0.320637 0.465582 0.276007 0.749571 0.278524 0.401835 0.728052 -0.763461 -0.813682 -1.442574 0.146275 0.755577 1.253604 0.090982 -1.659717 -1.771189 -0.265102 0.745767 1.742628 -0.354781 2.469104 -0.580854 0.868714 -2.901125 0.285930 0.657946 -0.186133 0.749189 0.581262 -0.710141 -1.376563 -0.597395 -0.883292 -1.239941 -0.445995 -1.075448 -0.718147 -1.287477 1.060933 -1.488627 -0.002970 0.756464 -0.034297 1.213557 -0.410228 0.028837 -1.067142 0.432947 1.048866 0.190322 -1.319629 1.283340 -0.066938 3.594870 -0.667179 1.196174 -0.591677 1.103625 -0.571495 -0.911469 -0.208344 2.012018 1.526904 0.104010 -0.028495 -0.080697 -0.008078 0.787765 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = -1.336764 1.175556 7.428499 3.788823 -4.822387 -6.866900 -3.226695 -11.092895 5.140363 1.200032 5.894236 0.870494 2.596398 -2.657985 0.445351 0.646399 1.909129 -2.356353 0.474878 -2.725843 -1.576096 7.047319 1.559763 -3.115796 0.615255 -7.772159 3.909688 2.972970 3.703772 3.307298 1.375685 -0.969644 -2.662032 3.778535 -1.189279 1.780455 1.885326 1.597154 -3.634770 -0.467866 1.256735 1.481313 4.657042 -0.535818 6.511674 0.296032 3.762196 1.885097 -3.450290 -1.630806 -2.371221 6.556078 -3.899390 2.825432 1.330163 0.216388 0.377547 -4.036801 -1.375969 -3.004522 -1.017403 -0.962712 -3.248795 0.522405 -3.689208 1.509148 -0.662826 -2.181092 1.398081 -0.342672 4.612321 0.881616 0.470338 0.209167 -6.204797 0.767769 0.330239 2.596300 3.776279 -0.198765 -0.125501 -0.494705 -2.912792 -4.143246 3.459361 3.257213 0.958045 0.091536 -1.895753 -0.280617 -0.657445 -2.134452 1.180799 3.336107 -4.683687 0.354427 -1.036710 -1.547760 -3.759012 -4.287505 1.329606 -3.143628 2.709692 1.311745 -1.028965 -0.837308 -0.563458 0.359725 -3.153474 -4.352516 1.183771 -1.863473 2.119799 6.789813 -2.492457 -0.830765 -1.634669 -1.637603 -1.101323 4.154099 1.888468 1.710880 5.221306 6.514940 2.018403 -4.200981 -3.348193 2.196784 4.151904 4.057656 2.537697 -5.789191 -2.710702 1.216248 -0.964151 -7.930301 -1.003532 2.153986 4.487038 0.655339 -3.237372 0.477941 -2.037553 5.303941 3.035294 1.420654 0.821008 0.343393 -4.449490 4.876209 8.466463 -1.058451 3.676907 -2.270066 -1.591005 4.432207 -4.491511 2.768413 2.011171 -0.517328 -1.153213 -2.543721 -0.720295 4.253409 1.589709 2.198059 0.528794 2.459425 -2.669646 -7.490878 -7.928640 0.433261 5.946609 0.414715 7.372271 -4.984950 -3.582434 -0.687300 6.293640 -0.402197 -2.815842 2.226181 -4.198714 3.754252 -5.296895 -6.195106 9.161938 8.852797 2.614079 -0.047031 5.269015 3.852474 -5.693451 -3.153385 -2.481946 2.399963 1.214293 -5.142327 -0.988642 0.532540 -5.516931 -3.145150 0.118529 2.221526 2.203561 0.152327 1.252357 1.005112 -3.531150 -3.275702 3.193948 -2.647636 -1.751960 0.420106 0.365712 0.389704 2.912812 -2.325140 -0.404754 1.830943 -3.327847 1.264403 2.690171 3.230148 1.099661 7.045499 5.514411 -0.431716 6.464432 1.194401 -2.419342 7.887282 -1.624187 1.867035 1.278113 1.949147 0.410726 1.746718 2.931253 -2.962140 -2.640865 -5.390517 0.501775 0.498118 4.273157 -3.817172 -5.536186 -7.041240 -1.838915 2.488246 3.660782 -0.770413 8.974032 -1.898626 1.283525 -10.605505 0.000208 3.579674 -0.456806 3.548562 1.782313 -3.393175 -6.179373 -1.837083 -3.978872 -3.417928 -1.783125 -3.297548 -3.112228 -3.944348 5.464742 -3.103634 0.716302 4.997379 -0.271062 3.182096 -2.153747 0.174030 -2.782918 -0.680489 2.820478 0.004974 -5.033611 5.748230 -0.208190 13.057873 -1.883237 3.312974 -2.551639 2.417470 -1.126933 -3.892112 -0.931425 6.654006 4.574156 1.191672 -0.814941 0.252581 -2.146575 3.812515 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -1.420759 1.321312 6.321906 4.447670 -4.091220 -5.475556 -2.730550 -7.133641 3.329128 -0.034290 4.432823 0.403053 1.244157 -1.566940 0.448140 -1.077808 1.324043 -1.268540 -0.246093 -2.174322 -1.744388 4.263930 2.082704 -4.812222 0.804304 -5.896664 3.739899 3.120637 1.929791 2.973853 0.523429 -0.590437 -2.059851 3.519115 -1.679059 0.073926 1.392475 0.733293 -2.398786 -0.387283 2.106289 2.705333 4.051218 -0.194006 4.170320 1.675469 2.579767 1.611821 -3.677275 -0.869654 -1.750285 4.933750 -3.012711 2.567060 1.167422 1.637555 1.273778 -4.475223 -1.037453 -3.772488 -0.232224 0.143943 -2.367299 0.052121 -3.299875 0.831844 0.100452 -2.190469 2.377248 -0.202124 3.625863 0.362591 -0.103730 -0.878632 -3.017318 0.895900 0.306427 2.839809 2.972733 -0.777165 -0.156481 0.322912 -2.184405 -2.773737 1.421742 0.575364 1.336326 0.142694 0.016544 -1.281672 0.495598 -1.791594 0.193451 2.522530 -2.512962 0.719844 -1.057020 -1.248547 -3.303713 -2.271876 0.718982 -2.341747 2.151257 2.354169 -2.007976 -0.396324 -0.199770 0.591767 -2.007697 -3.528811 0.773870 -1.394205 1.850301 4.855186 -1.914401 -1.079009 -0.487578 -1.475608 -0.745105 4.049475 0.791594 1.168185 3.793236 5.572911 0.803991 -3.045343 -2.031181 0.382193 2.994470 3.656545 2.940225 -4.695910 -2.371511 0.353692 -0.502166 -6.160970 0.404868 0.924503 3.795415 1.561235 -4.480874 1.418494 -2.168205 4.240031 1.594667 2.173456 0.728277 -0.392406 -3.597352 4.229108 6.622794 -1.245370 3.027568 -1.698100 -2.386019 3.545491 -2.834202 2.062506 1.507425 -0.905573 0.371533 -1.998148 -0.551071 3.634892 1.572255 1.401020 2.017082 1.393399 -1.456925 -6.433730 -5.814012 1.070635 3.922028 0.020180 6.646426 -4.015936 -2.744056 -1.445502 5.397574 -1.462360 -1.766808 0.836058 -2.558588 2.700312 -4.472698 -5.023591 6.938717 6.532824 0.977297 0.088660 4.313297 2.488640 -2.668848 -2.145319 -2.282330 1.647673 1.369321 -1.471062 -0.047454 0.036282 -3.887801 -2.046608 0.801180 1.811164 2.288072 -1.872189 -1.390963 0.603758 -4.003190 -3.240853 1.612072 -3.124095 -0.761747 1.136721 -0.290847 0.310086 2.115069 -1.209611 -1.580535 0.831892 -2.511337 0.434274 1.660062 3.690887 1.258380 5.288472 3.619521 0.136501 5.047132 2.249049 -2.209184 8.214347 -1.724154 1.545424 1.224111 2.720816 0.509495 1.585138 2.184166 -2.136848 -1.458859 -4.638413 1.331486 0.201570 3.113533 -5.389644 -3.470312 -5.753908 -2.080619 2.320652 2.608223 -1.081913 7.412819 -0.717542 0.127773 -8.227623 -0.567058 3.502106 -0.294860 2.568164 1.890874 -3.107638 -6.758659 -1.339177 -2.949491 -0.516928 -1.628790 -2.433571 -2.619288 -1.979665 3.741473 -1.770308 1.484905 5.188064 -0.490240 1.378463 -1.414243 -0.065560 -1.106667 -2.280798 1.691728 0.388789 -4.205612 5.116894 -0.278073 9.750824 -1.150767 3.055719 -2.806990 1.187972 -0.274857 -2.247108 -1.025096 5.236837 3.190047 0.975278 0.231268 0.864186 -2.243259 3.379393 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 1.710934 1.393134 3.063376 0.362272 -2.455912 -3.831615 -1.170230 -7.140641 2.431034 0.035787 1.735611 0.011804 0.828020 -1.264439 -0.175119 2.312891 1.244275 -0.202189 0.420993 -1.709660 -0.931060 2.903121 -1.784176 0.442571 0.845554 -4.159026 0.861717 1.786014 3.029268 0.233106 1.415488 -0.883103 -1.827300 1.341922 0.141228 0.548590 1.745824 -0.221364 -4.121519 0.914587 -1.231679 0.679581 2.155864 -0.602314 2.797877 -0.475953 1.712129 2.079792 -0.339328 0.039477 -1.385480 4.510949 0.024458 1.380011 1.184967 -1.061008 -0.995494 -1.620531 -0.378952 2.928463 -1.480704 -0.756919 -1.087171 0.475501 -1.659969 0.324490 -0.759078 -1.056605 0.672860 0.464655 1.749541 -0.112497 -0.296519 0.497255 -4.200068 -0.059414 0.428114 2.039276 1.649556 -0.234261 2.223566 -0.243708 -1.664516 -1.703673 1.694114 3.582584 0.439615 -0.406757 -2.213874 -0.909795 -0.709277 -1.657547 1.780568 0.815668 -2.949465 -0.767618 -2.883549 -0.875767 -2.507492 -3.833015 1.021311 -0.295933 1.724217 -2.340091 0.725173 0.100625 1.643822 0.163433 -0.336973 -1.060317 0.260252 -0.180084 1.812548 5.369690 0.068818 -1.220637 -1.925889 -1.225436 -2.720575 1.246714 1.252082 0.251660 2.427762 3.248636 1.392586 -1.508151 -2.910947 1.218182 0.709176 2.179941 1.510005 -2.927359 -0.933015 0.642003 -0.449021 -3.757634 -0.672443 -0.287344 2.061545 -0.669851 1.496144 -2.000817 -1.095645 2.296242 -0.036529 -0.907556 0.440757 -0.229924 -1.580713 2.627559 3.636719 -0.028455 1.231156 -2.279491 1.029265 -0.532332 -0.987866 0.698449 0.680658 -0.818529 -1.182509 -0.151849 -0.309814 1.178018 0.097639 -0.156446 -0.106688 1.533029 -2.997592 -2.611176 -3.288910 0.969387 2.033970 -1.266931 2.052215 -1.948701 -2.549488 -0.929133 3.122044 0.083727 -0.735655 2.483762 -3.438847 1.810163 1.196870 -1.875753 3.634095 4.887907 1.235494 -1.157575 2.162470 1.837757 -5.582995 -2.204871 -0.527366 0.377910 0.680446 -5.795501 -1.670633 0.496262 -2.146616 -0.964741 0.261216 1.491107 1.352026 2.876208 2.940836 0.237268 -1.537716 -2.122524 2.886619 -0.013160 0.452834 0.991882 0.260416 -0.235402 2.416591 -2.197715 -0.299834 1.616630 -1.131588 1.623379 1.208033 1.175355 -0.537101 2.828267 1.568020 1.073630 5.647426 0.358125 -1.796581 2.120653 0.278962 1.941206 0.580027 -1.148067 -1.376411 0.794053 0.769298 -1.478154 -2.068240 -2.242717 -1.191359 -0.666950 2.080685 1.432231 -2.798219 -3.058897 -1.234168 0.527914 0.746113 0.310136 2.747525 -1.367509 0.875665 -4.102379 0.286348 0.876924 -0.143174 1.663498 0.262206 -1.637739 -1.227591 -0.060079 -2.797757 -4.645238 -0.732895 -1.899043 -1.868136 -2.401757 3.674822 -0.685218 -0.455917 2.561150 0.157437 1.562870 -2.792521 0.225358 -1.259099 -0.059822 2.607958 -0.924182 -2.518965 1.244868 0.284698 6.688247 0.210733 0.855755 -0.449893 -0.686395 0.365325 -2.638436 -0.525395 2.547093 1.561021 0.893884 -1.429416 -0.498598 -0.706332 1.517481 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/detect-cycle-undirected-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/detect-cycle-undirected-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/detect-cycle-undirected-graph.cpp___GLOBAL__sub_I_detect_cycle_undirected_graph.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/channel-assignment.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -2.298772 0.482805 7.612338 5.299020 -4.208001 -6.225302 -3.178950 -8.000950 4.559545 0.558240 5.349800 1.367670 1.748436 -1.881673 0.714382 -1.030997 0.879310 -2.158514 -0.206703 -2.277002 -0.738132 6.322694 3.904624 -6.267163 0.426760 -7.664432 4.407392 3.264914 2.779299 4.708162 0.120566 -0.744807 -1.805854 4.279067 -2.342184 0.594100 0.952081 1.257679 -2.269492 -0.650123 2.738079 3.404895 4.293997 -0.198649 5.959021 1.526628 3.672801 1.231037 -3.801444 -1.413906 -2.460883 5.743313 -4.558944 3.090489 0.274180 2.560164 0.588328 -4.939218 -1.825549 -6.518393 0.179862 1.003211 -3.306211 -0.028759 -4.078769 1.440014 0.140613 -2.325619 1.981364 -0.334598 4.856302 1.012945 0.386671 -1.605623 -4.533157 0.948243 -0.521434 3.106734 3.427622 -1.189653 -1.915168 0.142673 -2.071610 -3.297265 1.714971 0.910109 0.626950 0.229649 0.733610 -0.984322 -0.277995 -1.617358 -0.505489 3.483732 -3.469727 1.515847 -0.103497 -0.769185 -2.623749 -1.312951 0.770197 -3.454363 2.306211 3.131645 -1.169435 -0.500423 -0.358986 0.812130 -3.065019 -4.523011 1.064592 -1.042050 1.368757 4.958963 -2.531779 -0.295237 0.200228 -1.093623 -0.456920 5.219849 0.764980 1.994262 4.618185 6.598479 0.927878 -3.937590 -1.866771 1.429410 4.378484 4.472811 3.087271 -5.382095 -2.836718 0.248430 -0.057194 -7.255113 0.680476 2.454633 4.337132 1.560437 -5.753874 1.874660 -2.207708 5.722879 3.141126 2.490127 1.003786 -0.151645 -4.693332 5.122719 9.616300 -1.351546 3.595075 -2.092304 -2.832831 5.920877 -4.719160 3.213130 1.616232 -0.299275 0.590643 -3.004351 -0.762506 4.573851 2.139161 2.713491 2.348785 1.663538 -0.901157 -8.083525 -6.824695 -0.458679 4.899787 0.656178 8.562604 -4.529193 -2.934999 -1.659610 5.682355 -0.997771 -2.010673 0.700799 -2.998532 3.253026 -7.610105 -6.242654 8.808893 8.481747 1.979605 0.761245 5.690217 3.837620 -1.800768 -2.207286 -2.125565 2.281560 1.548841 -0.853918 0.382868 -0.204433 -5.137979 -3.480188 0.752982 1.765441 1.938092 -2.018383 -2.113300 1.556176 -4.775509 -3.596267 1.447889 -4.512108 -1.770684 0.667664 0.148343 0.121732 1.632758 -1.583074 -0.809232 1.806279 -2.891488 0.770760 2.406748 3.666447 1.972402 5.266692 5.101266 -0.200749 5.355192 2.589052 -2.177142 10.226772 -1.981545 1.317656 1.682429 3.096925 0.922829 1.784742 1.771387 -2.550626 -0.965099 -5.379972 2.578197 0.828602 4.165643 -6.379817 -4.774844 -5.813176 -2.197908 3.302183 3.329387 -1.313296 9.437252 -1.169753 0.908816 -10.936331 -0.421991 4.430755 -0.038852 3.012754 2.622226 -3.274778 -8.641101 -1.829181 -2.318864 0.206809 -2.372743 -3.655203 -2.892780 -2.657677 4.010236 -3.136202 1.891537 5.934184 -0.815298 2.533158 -2.001219 -0.064989 -1.877981 -2.172255 1.040272 1.298442 -5.066952 5.853743 -0.914142 11.496550 -2.531319 4.145154 -3.441646 2.947776 -1.522955 -2.482169 -0.743976 6.729156 3.867300 0.961137 0.541044 0.438931 -2.509896 3.449578 -PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = -0.064399 1.152940 7.572556 3.377751 -3.807879 -6.427813 -3.176899 -10.149977 4.464111 -0.088495 5.540222 -0.142708 1.457068 -1.824749 0.399104 0.427454 1.228250 -2.410759 0.419797 -2.569547 -1.498347 5.984868 1.164357 -2.879594 0.881193 -9.025284 3.316232 3.236167 3.997756 3.545708 0.898392 -1.531825 -2.035853 3.334546 -1.090652 0.987507 2.246819 0.040957 -4.151593 0.395147 1.054044 2.430189 4.546810 -0.894230 5.106724 0.453251 3.499037 2.043362 -2.744079 -0.903534 -3.452639 7.405320 -3.384711 1.994863 1.363334 0.886988 0.167611 -4.867934 -2.058207 -1.523265 -1.530192 0.095267 -2.785910 0.545615 -3.734665 1.636329 -1.338563 -1.579766 2.820010 -0.081412 4.470399 1.344299 0.584417 0.387075 -5.091883 1.410134 0.008183 3.574060 2.860761 -1.786383 1.188262 1.057766 -2.425858 -2.866020 2.739448 2.620372 1.224489 -1.135281 -0.842601 -0.771670 -0.764335 -1.917178 0.693752 2.227369 -4.074447 0.402689 -3.081166 -1.528346 -3.757028 -4.000916 0.622121 -2.838764 2.532572 1.561010 -1.413531 -0.103058 0.466295 0.585763 -2.211881 -4.611605 0.455797 -0.590306 2.188831 7.498010 -2.919525 -1.131921 -1.581307 -1.204441 -2.323753 4.034322 1.095633 2.121509 4.405348 6.607175 1.527575 -3.588470 -3.191194 1.375939 3.911962 4.258026 3.443315 -5.241940 -2.719202 -0.127648 -0.059851 -8.244858 -0.003075 0.749776 4.499860 1.772123 -3.524175 0.153464 -2.254188 5.778928 2.165986 0.948487 1.074609 -0.250509 -4.385421 5.703037 8.383938 -1.481838 3.972892 -3.747386 -1.562157 3.240898 -3.780036 2.201534 1.512686 -0.070741 0.456077 -2.759808 -1.121166 3.851099 1.609605 2.040983 1.629003 2.140812 -1.535103 -7.653658 -6.755127 1.013842 4.259587 -1.512476 6.219570 -4.440458 -3.831609 -1.458685 6.673156 -1.086387 -2.150398 1.802613 -4.450944 3.100160 -4.289437 -6.039397 8.342305 9.109594 1.300856 0.436080 4.870741 4.597179 -5.850707 -1.811990 -2.417558 2.420676 1.673772 -5.665060 -1.188191 -0.243381 -4.098238 -2.908726 0.681941 2.333864 2.052609 -0.122562 0.202702 1.445648 -4.825167 -3.506964 4.095341 -4.008615 -1.100629 1.161573 -0.305648 0.199968 3.235029 -2.654507 -0.439968 2.673068 -3.176586 1.236305 2.670766 3.899883 1.025425 5.915014 4.509324 0.959398 7.422061 2.112434 -2.788214 7.559168 -1.545863 1.703929 1.033805 1.301214 -0.578475 2.251082 1.713070 -2.642214 -3.305269 -5.218490 1.148408 -0.611220 3.928086 -1.952828 -5.189703 -6.216048 -2.793995 3.280376 2.955363 -0.026835 8.472439 -1.476609 0.395754 -9.514790 -0.756912 3.767439 0.239818 3.795604 1.753565 -2.955371 -6.489689 -1.462195 -3.525800 -2.303126 -2.190198 -4.344382 -3.452875 -4.481144 6.636316 -2.376932 1.270713 4.845771 0.632285 2.704269 -1.562748 -0.443473 -2.421742 -1.178839 2.455205 0.748629 -4.844482 5.672136 -0.484383 12.001952 -1.688868 2.818700 -3.363383 1.012922 -0.286168 -2.887391 -0.642694 6.237405 4.262395 1.065942 -1.240692 -0.427286 -2.559460 3.426912 -PE-benchmarks/channel-assignment.cpp__main = -0.428382 0.366424 1.800386 0.341930 -2.008557 -3.716598 -1.061676 -4.462206 1.047847 0.516301 2.904888 -0.223881 1.508133 -0.537804 0.853777 1.793905 1.642092 -1.038950 0.714536 -1.440371 -1.617036 2.555778 0.354457 1.120143 0.358650 -1.113064 0.587400 0.935459 0.885170 0.982961 1.033298 -0.519927 -0.910756 0.604910 0.284070 1.789522 0.410407 0.822732 -1.547951 0.716859 -0.658952 -2.044364 1.974018 -0.491792 2.206753 0.119812 2.378917 1.045967 -1.714121 -1.167652 -1.700189 2.636871 -1.888681 0.439228 -0.164291 -1.452706 0.479390 -0.167956 -0.852552 -0.324256 -1.340160 -1.970896 -1.775416 0.491978 -1.229286 1.078980 -1.607635 -1.055239 -0.115401 0.647745 1.649491 0.605270 -0.065666 2.015552 -2.834808 -0.078899 0.536066 0.918830 0.996398 -0.481662 0.602547 -0.350315 -1.586658 -1.601730 2.450122 0.824260 1.229197 -0.237728 -2.428751 1.252005 -0.732266 -0.145472 1.168646 0.485224 -1.602200 0.023085 0.248846 -1.002718 -2.468499 -3.461110 0.639059 -0.821396 0.933731 -0.198525 0.267637 -0.752106 -2.413125 0.112280 -2.218673 -2.611949 0.198203 -1.018478 -0.366625 2.307342 -1.763824 0.268359 -1.028096 -0.288109 0.001332 0.879905 1.743202 0.953114 1.486422 2.208535 0.657378 -1.508440 -1.763694 -0.117600 2.187355 1.102822 0.982199 -0.869773 -1.701859 0.905554 -1.802800 -2.921613 -1.435089 2.076981 1.929121 0.389263 -0.357406 0.046271 -0.889442 1.725844 1.679313 0.684062 0.160929 0.013980 -1.745173 1.595468 1.982834 -0.962113 2.430517 -0.236263 0.295946 1.749816 -1.485156 0.122215 1.589573 -0.516894 -1.602664 -0.449786 -1.159811 1.137973 1.871292 0.765242 -0.360824 1.332054 -1.533926 -2.253521 -2.836077 0.448239 3.247159 0.029819 1.232904 -2.020075 -1.288115 0.818103 1.592137 -0.195958 -2.307127 0.708067 -1.579800 1.258532 -2.563906 -2.124829 3.710918 2.488445 1.711867 0.476439 1.071125 2.313359 -3.867766 -1.024002 -1.041082 1.566026 -0.601643 -4.333230 -1.619457 0.464991 -2.461917 -0.625955 -0.775170 1.452645 -0.113719 1.122686 1.974155 -0.016827 -0.775656 0.165002 1.076755 -0.610509 -1.174118 0.178364 -0.329821 0.943783 0.580390 -0.783483 0.995938 0.451150 -2.452947 0.315847 0.856035 1.358048 0.952885 4.376647 2.864821 -0.528382 2.138352 -0.787975 -1.464178 0.723246 -0.398095 1.205096 -0.353435 1.021016 0.118068 0.057318 2.507258 -0.827861 -2.647589 -1.647777 -1.054753 1.142733 1.849369 0.997734 -2.311417 -3.530590 0.235972 1.067472 2.939156 -0.723339 2.381302 -1.009641 1.049133 -3.199289 0.491363 -0.110529 -0.365410 1.152750 0.144408 -0.834087 -0.358894 -0.747748 -2.288764 -2.436517 -0.099742 -0.551808 -0.932205 -1.622730 1.396352 -1.581761 -0.974721 -0.088653 -0.087227 2.014380 1.162069 -0.406325 -1.227604 1.155011 3.018804 -0.157731 -1.527819 2.472414 0.788426 5.877689 0.508652 0.542435 -0.322350 0.145695 0.279486 -1.110959 -0.347753 2.295600 3.014613 -0.006130 -0.258875 0.266289 0.626531 0.955390 -PE-benchmarks/channel-assignment.cpp___GLOBAL__sub_I_channel_assignment.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/longest-palindrome-substring.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.131087 0.608062 2.473411 1.516737 -1.414713 -2.053200 -0.979960 -2.766779 1.290721 0.008053 1.489388 0.073926 0.473245 -0.485513 -0.059949 -0.374100 0.235349 -0.373804 0.044450 -0.726023 -0.901882 1.815249 0.555157 -1.601949 0.339998 -2.609467 1.864447 1.154427 1.040313 1.454960 0.050091 -0.263689 -0.621437 1.379336 -0.604751 -0.137700 0.309551 0.375594 -0.857431 0.166840 0.868473 0.937409 1.512599 0.007927 1.342621 0.886788 0.704981 0.584684 -1.031319 -0.244166 -0.726400 1.487729 -1.124230 0.969994 -0.022893 0.567502 0.360017 -1.523415 -0.341588 -1.067530 -0.047561 0.085781 -0.909037 0.070666 -1.513254 0.217707 -0.252715 -0.978453 0.808533 -0.065157 1.326306 0.324049 -0.064686 -0.539270 -1.517949 0.398408 0.182068 1.080853 1.127941 -0.430225 -0.100021 0.293678 -1.039972 -1.128757 0.568433 0.526160 0.508427 -0.059839 0.158587 -0.840531 0.108280 -0.412981 0.200590 1.155844 -0.758411 0.370106 -1.028997 -0.297580 -1.076135 -1.182245 0.231791 -0.959332 0.905661 0.756774 -0.790381 -0.075813 0.536099 0.319247 -0.380884 -1.410395 0.120377 -0.593771 0.850741 2.071085 -0.336653 -0.602617 -0.255890 -0.638169 -0.349004 1.511951 0.262695 0.241997 1.665018 1.975529 0.421497 -1.194987 -0.857402 0.354448 0.782513 1.367550 1.100257 -1.842480 -0.845115 -0.075199 -0.058483 -2.518217 0.299562 0.040694 1.200742 -0.022414 -1.378472 0.747297 -0.974395 1.387909 0.766565 0.673712 0.470993 -0.121247 -1.291503 1.663482 2.841480 -0.385400 0.885297 -1.141356 -1.154679 1.550709 -0.885723 0.816534 0.289527 -0.253805 0.208143 -0.873242 0.105843 1.472415 0.153551 0.575088 1.119820 0.432492 -0.536817 -2.262266 -1.999113 0.399678 1.593324 0.044544 2.714188 -1.581766 -0.771893 -0.491867 2.046393 -0.230837 -0.334758 0.364368 -0.922233 1.023074 -1.954106 -2.042137 2.417756 2.337948 0.329417 -0.024180 1.441569 1.001917 -0.756035 -0.900950 -0.960862 0.600178 0.607719 -0.676489 -0.178013 -0.002988 -1.396164 -0.642412 0.437769 0.613690 1.139841 -0.766499 -0.716531 -0.090510 -1.624452 -1.644912 0.931326 -1.435502 -0.122288 0.486256 -0.120389 -0.203198 0.870297 -0.425520 -0.520288 0.365206 -0.649034 0.378490 0.693983 1.130202 0.144399 1.774667 1.418265 -0.084759 1.535501 0.976327 -0.618918 3.341289 -0.669505 0.515652 0.647394 1.045052 0.038564 0.802959 0.768882 -0.835651 -0.490084 -1.896562 0.575349 0.090503 0.917002 -1.752198 -1.058581 -2.152257 -0.874018 0.727456 1.223167 -0.070201 2.903645 -0.168522 0.166715 -2.888848 -0.227452 1.262321 -0.040726 1.273661 0.743722 -1.159748 -2.237117 -0.562589 -1.006749 -0.147088 -0.781195 -1.116676 -1.131777 -0.553710 0.973982 -0.539916 0.674439 2.015492 -0.213026 0.432166 -1.000459 0.020269 -0.633952 -0.820968 0.727965 0.148102 -1.519855 1.689296 -0.182959 3.466456 -0.460603 1.259740 -1.058039 0.438128 -0.134984 -0.998537 -0.433919 2.032356 0.831753 0.489333 0.111220 0.230966 -0.674091 1.274359 -PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = -1.390477 3.896551 20.379268 12.891217 -10.049681 -14.405266 -6.754218 -20.090103 9.823517 0.027464 11.363811 1.301442 2.086648 -2.291837 1.149404 -1.165310 0.936465 -3.938610 1.239332 -5.410317 -3.153032 13.603483 8.140083 -13.660883 1.460390 -21.267187 12.865847 8.496311 10.188757 10.436787 0.707653 -3.232452 -3.208467 11.180238 -4.778492 -1.384032 0.952347 1.839702 -7.501950 2.227023 5.030355 10.131457 9.261857 0.112997 11.331982 5.288629 10.445478 3.821889 -7.662870 -0.746126 -8.861254 16.568137 -10.623962 6.972601 0.587424 5.656675 0.257174 -12.756527 -4.334359 -10.506161 -0.832238 3.574569 -7.836794 0.997936 -12.592333 2.842401 -3.898708 -5.509809 6.231254 4.212443 12.004640 4.101725 1.275255 -4.420445 -11.629648 4.339553 -1.889735 9.869574 8.603836 -6.596421 -1.829852 4.118383 -5.107368 -8.162184 3.586412 2.534589 1.929240 -3.498489 4.590536 -5.048568 -2.094973 -3.936504 -2.670378 8.745058 -8.273593 5.806902 -7.316580 -1.109455 -7.295867 -5.686103 -0.372284 -9.472943 6.428734 6.463022 -2.931195 -0.530776 1.041422 1.931296 -3.726276 -11.592167 0.128685 -1.077137 5.427197 14.888372 -5.159347 -1.693214 0.435140 -1.686533 -3.406495 12.375814 2.343829 4.541357 12.789717 16.532012 1.794399 -7.907997 -4.281556 2.251259 7.239090 12.620368 10.016727 -13.375480 -7.823858 -2.492563 4.002162 -18.181734 5.686576 4.108428 8.488768 3.364124 -12.089296 1.796264 -6.106864 13.999630 6.838958 5.874096 4.066740 -1.532495 -8.802721 14.130761 25.070278 -3.849182 7.369300 -8.300249 -6.560704 13.464322 -10.619990 7.640817 2.764340 0.914218 3.428837 -8.669886 -3.528813 11.671994 4.329626 4.661587 11.896771 3.102914 -0.119907 -19.609517 -13.262109 1.883650 9.322077 -2.663771 19.476183 -10.186973 -5.962584 -4.222454 12.787556 -0.528041 -2.641406 1.200083 -7.104542 6.693574 -16.073339 -15.319248 18.478208 19.354463 0.934138 -0.567882 11.876816 11.735897 -6.833141 -6.921741 -6.287757 5.756549 1.772153 -3.419800 -0.896825 0.185679 -11.515377 -6.108715 3.631978 4.420104 8.830363 -5.535321 -8.736153 3.723282 -15.546683 -10.887201 6.164992 -12.167757 -3.699048 2.648470 -0.356768 0.313682 5.237478 -4.336995 -2.537672 6.014594 -6.652736 0.800875 6.227011 10.831612 2.946701 12.759282 9.705021 3.525547 13.579218 9.405453 -5.945659 26.096970 -2.839437 2.737923 4.478047 5.703982 -1.429571 6.024773 2.668279 -6.356514 -6.272455 -14.147011 7.605925 -0.813640 8.507938 -11.739160 -8.541502 -13.003639 -7.510199 9.839705 7.195775 -0.705768 22.780165 -1.394236 0.788807 -23.008756 -2.182812 10.092233 0.244781 10.774445 7.433389 -8.663509 -15.669987 -5.329582 -4.294045 2.605702 -6.054194 -9.825508 -8.644368 -4.869737 9.062155 -5.384806 5.819286 14.610195 -1.007734 4.913597 -5.231289 -0.656589 -3.913974 -5.477780 5.585058 4.299469 -13.721446 14.395664 -4.012078 27.985057 -6.346826 8.724508 -10.236798 0.792332 -0.761755 -3.666675 -1.993185 16.727346 7.224210 3.933403 0.567146 0.279697 -6.512763 8.981257 -PE-benchmarks/longest-palindrome-substring.cpp__main = 1.037489 1.706200 4.095141 1.324841 -4.046576 -4.708594 -1.461123 -7.408803 2.846072 0.941560 2.055175 0.366433 0.873540 -2.176757 -0.553697 2.780760 1.225832 -0.234068 -0.277763 -2.332349 -3.671124 2.591769 -0.634842 -0.165240 1.962519 -4.771554 3.415383 0.610330 2.648000 1.543002 2.114315 -0.561859 -1.694212 2.694072 1.844813 2.823834 0.882443 0.684771 -2.904588 1.800231 0.204806 -0.845637 2.624256 1.294935 4.043467 1.344201 1.906930 1.746016 -2.436442 0.142803 -2.288973 3.891941 -2.334581 2.134061 -0.602610 -0.132737 -0.410337 -2.269577 -0.104273 0.908759 -2.305759 -2.459924 -2.192990 0.311636 -3.145431 0.332816 -1.799773 -2.025147 -0.506448 1.635678 2.917319 1.262095 -0.517199 1.204928 -4.155272 -0.147690 1.036504 2.102044 3.531248 -1.168268 0.883266 -0.819703 -2.533298 -3.030045 3.548604 1.329676 1.324669 -0.094148 -0.708239 -1.696730 -1.623386 -1.514371 2.265069 2.031567 -3.458225 -0.724927 -2.456995 -1.103761 -2.683391 -5.173742 0.780571 -1.216509 1.904345 -1.108136 -0.683473 0.450090 0.933975 0.638229 -0.675476 -1.085793 0.467749 -1.140356 1.543882 4.961571 0.526712 -1.961373 -0.974566 -1.463108 -1.250082 1.823339 1.935055 -0.024360 4.853711 3.778803 2.868615 -1.529823 -2.319673 0.530040 0.592915 2.561815 2.194827 -3.256240 -2.132418 0.999685 -0.043272 -4.886160 -0.121013 0.099267 2.324356 -0.548909 -0.149114 -0.866149 -1.114365 1.547251 0.670345 -0.348417 1.109992 -0.397346 -2.296679 2.989877 5.474626 -0.488296 1.258037 -2.620557 0.551271 1.747960 -1.828117 0.267466 0.495828 -1.700706 -0.683080 -0.875229 -0.762612 2.392730 0.004442 -1.208926 0.957224 2.251556 -3.593234 -3.760074 -3.292739 0.606789 3.838244 -0.704181 3.744192 -3.242877 -0.677235 -1.466940 3.564263 0.667807 -0.257572 1.655354 -2.955038 2.109621 -1.179576 -3.352209 5.931301 4.988956 1.842174 -1.174875 1.721364 2.946698 -5.372973 -2.994278 -1.704751 -0.372281 1.320929 -5.131162 -3.114122 0.887615 -3.599017 -1.431427 0.457530 1.512321 2.679334 1.278589 1.258951 0.261761 -1.498804 -3.033329 2.347370 -1.283396 -0.510771 1.181379 0.570857 0.447604 2.276135 -1.180839 -0.274853 0.499658 -1.248107 1.231078 1.773284 3.160272 0.010974 4.385865 3.512513 -0.198990 3.675847 0.961176 -1.932699 3.329713 0.199060 2.035395 1.434025 0.092765 -0.345103 0.883620 2.431184 -2.038781 -1.891611 -2.984973 -0.696943 0.005040 1.444362 0.144168 -1.780237 -4.760084 -0.959812 0.481464 1.666922 -0.057304 4.157318 -0.545920 0.562076 -4.669514 -0.103499 2.261869 -0.338049 2.747927 1.345411 -2.440075 -1.470794 -1.492534 -3.046070 -3.086406 -1.087853 0.528731 -2.126077 -0.827965 2.598285 -0.719635 0.319917 3.145549 0.195080 1.931332 -2.877746 1.045470 -2.087606 0.129022 3.966917 -0.155409 -2.874339 2.524834 0.633531 7.799015 0.480904 1.104421 -1.018952 -1.372049 0.594701 -2.203721 -1.394173 3.412696 1.872761 1.575320 0.328084 0.103285 -0.100230 3.563763 -PE-benchmarks/longest-palindrome-substring.cpp___GLOBAL__sub_I_longest_palindrome_substring.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -3.288770 2.985144 18.135971 11.422238 -8.621340 -12.989542 -5.963194 -16.075338 7.733437 -0.177485 10.897843 1.323060 2.449379 -3.079820 2.346226 -1.235546 0.766097 -3.505823 1.207481 -4.252134 -1.652159 11.640368 9.377200 -12.794974 0.969360 -16.507029 10.018061 8.437875 8.445929 8.998380 -0.107752 -2.801489 -2.705345 9.925947 -5.009971 -0.690197 0.030358 2.276504 -5.685439 1.654739 4.162474 8.881537 7.054329 -1.421880 10.298986 4.718714 10.640708 2.959210 -8.104010 -1.782510 -7.331827 15.693082 -10.406517 5.637072 1.420800 5.031875 0.036006 -10.724819 -4.305937 -12.469751 0.289687 3.439157 -7.472302 1.039504 -10.905440 2.616613 -2.787183 -4.739865 6.008722 3.822611 10.105223 3.373989 0.967038 -3.421261 -8.304968 3.978009 -1.182827 8.764252 7.173450 -5.562666 -1.904977 3.600466 -2.843769 -6.994474 2.851294 0.486952 2.435754 -3.158475 3.396040 -2.688511 -1.370676 -3.009871 -3.327751 7.214878 -7.726208 5.315825 -4.504555 -0.890269 -6.931229 -3.482851 -0.466983 -8.872186 5.213588 7.209094 -2.015079 -1.623210 -2.578368 1.523399 -4.869875 -11.288078 -0.715097 -1.317404 3.931757 11.758726 -6.437045 0.885112 0.968081 -0.648527 -1.994370 11.140322 2.306297 4.742765 10.446337 14.681097 0.934271 -7.244848 -3.386002 1.272316 8.218796 11.396152 8.487663 -11.748135 -7.104228 -2.317243 2.586665 -15.864481 4.778330 5.108480 6.823428 5.115423 -12.402349 2.295751 -4.887073 12.942947 6.183862 5.766500 2.927947 -1.209977 -7.557785 12.377477 21.409448 -4.296710 7.293536 -4.382960 -7.018615 13.259121 -10.312627 6.882459 4.160621 0.774410 3.037436 -7.803510 -4.154935 10.421845 5.664469 5.818021 10.060446 2.049635 1.518318 -17.940920 -11.985127 1.831914 7.737692 -2.339924 17.124188 -8.429637 -5.718591 -2.944841 11.601764 -1.702189 -3.600330 -0.563641 -5.729185 6.079168 -14.366644 -13.599821 16.305790 16.733492 0.555639 0.846903 11.502248 10.903795 -6.187163 -4.827211 -5.597709 5.772573 0.306474 -1.948193 0.080484 0.469565 -11.017085 -4.724496 2.337429 3.726513 5.755271 -4.251270 -8.794561 4.469223 -13.893072 -7.516211 3.238001 -10.254522 -3.315461 1.262798 -0.504696 1.400081 3.974866 -4.906736 -2.370005 4.685268 -7.576187 -0.027099 4.959872 9.981757 4.632181 12.651141 8.057064 3.018917 11.897761 7.857982 -5.244983 22.434514 -1.842616 2.173665 3.486815 6.666374 -0.398886 5.098447 2.496249 -5.430193 -5.769457 -12.833950 6.126339 0.632141 7.745235 -11.034843 -8.068619 -11.055661 -6.496723 10.244963 6.469257 -1.752282 20.288930 -1.046560 0.603941 -21.179762 -1.824259 7.681893 -0.520012 9.465231 6.593212 -7.410715 -15.728212 -5.331473 -2.702908 2.438342 -4.996882 -8.084863 -6.674326 -4.367130 8.704272 -5.578303 4.721531 11.678758 -0.362378 4.556254 -1.383235 -0.567646 -2.840852 -4.661989 4.441736 4.300128 -12.260640 13.586130 -3.038659 25.145455 -6.084552 8.100708 -9.430591 1.135609 0.050374 -2.255588 -1.350423 14.841872 8.023322 3.186086 0.651029 1.538190 -6.486812 7.743565 -PE-benchmarks/egg-dropping-puzzle.cpp__main = 0.037118 0.274013 1.242467 0.522374 -0.483757 -1.297791 -0.614273 -1.682036 0.838864 0.195771 0.818348 -0.067336 0.507458 -0.133409 -0.108805 0.246572 0.201052 -0.453870 0.315321 -0.436136 -0.608069 1.790885 0.440779 -0.366697 0.113666 -1.813331 0.993747 0.337291 0.809169 1.189144 0.011252 -0.068882 0.041881 0.704006 -0.370623 0.206745 0.005439 0.368943 -0.507908 0.437687 0.250563 0.331112 0.844673 0.104880 0.773830 0.744413 0.392940 0.312050 -0.261210 -0.312602 -0.543405 0.680368 -0.729888 0.425394 -0.503253 0.116325 0.199272 -0.598448 -0.358595 -0.417917 -0.271528 0.045348 -0.657024 0.217842 -1.031631 0.343012 -0.537998 -0.523910 0.020746 0.174788 0.866153 0.546661 0.085535 -0.224617 -1.396500 0.357904 0.040343 0.533759 0.553930 -0.409114 -0.374767 0.278438 -0.810799 -0.893448 0.695308 0.690198 0.256607 0.006080 0.058905 -0.543861 -0.370798 -0.072932 0.233780 0.790887 -0.257254 0.293175 -0.339953 -0.098596 -0.534878 -0.976228 0.036191 -0.609756 0.450030 0.269246 0.119306 -0.137825 0.255434 0.211571 -0.299646 -0.946013 0.200021 -0.317357 0.093044 1.296283 -0.140472 -0.125086 -0.297360 -0.272809 -0.209243 1.028505 0.262664 0.210619 1.049097 1.023457 0.153801 -0.605985 -0.458775 0.337240 0.550019 0.468647 0.723944 -1.049685 -0.686058 -0.004845 -0.044526 -1.356167 -0.200611 0.410096 0.573716 -0.552829 -0.500743 0.752412 -0.462945 0.754775 0.824262 0.035977 0.361418 -0.203063 -0.771861 1.084040 2.016871 -0.269883 0.551721 -1.046582 -0.743544 1.457882 -0.718618 0.526358 0.070435 -0.073268 -0.330195 -0.514350 0.415630 0.819197 0.035834 0.396667 0.665603 0.249346 -0.178957 -1.051319 -1.154108 0.046883 1.011097 0.028540 1.730966 -0.844043 -0.259091 -0.149400 0.889721 0.290716 -0.141554 0.244780 -0.596077 0.464763 -1.811955 -1.279689 1.671720 1.337626 0.592036 0.109535 0.680682 0.953929 -0.298428 -0.642164 -0.442904 0.597623 0.209217 -0.829747 -0.402883 0.059159 -0.891860 -0.504358 -0.064018 0.410534 0.657946 -0.137290 -0.242018 -0.518560 -1.019695 -0.880234 0.591292 -0.916697 -0.266736 0.273655 -0.039423 -0.361604 0.399776 -0.139887 0.175945 0.337511 -0.361856 0.272030 0.502066 0.432174 0.011194 0.885352 1.340135 -0.234168 0.631557 0.352376 -0.212846 1.670723 -0.348203 0.251226 0.204485 0.536851 0.003979 0.347473 0.463278 -0.338804 -0.494366 -0.988443 0.599668 0.353168 0.328212 -0.561825 -0.790275 -1.236990 -0.365121 0.341754 1.283519 0.179358 1.646917 -0.286562 0.322006 -1.742786 0.165259 0.469682 0.126780 0.741514 0.457459 -0.537723 -0.798682 -0.369196 -0.654847 -0.356927 -0.596223 -1.069387 -0.627294 -0.334721 0.301954 -0.597040 0.241004 1.128398 -0.067340 0.488317 -0.435135 -0.113369 -0.934088 -0.111442 0.644495 -0.025689 -0.590287 0.677597 -0.182948 1.857216 -0.354384 0.765364 -0.459456 0.442057 -0.166363 -0.799638 -0.160038 1.233019 0.400541 -0.053075 0.306520 -0.117986 0.155065 0.551521 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -4.785180 3.193967 25.774483 16.451305 -10.815858 -16.014314 -9.037274 -21.995083 11.359007 0.012456 15.268789 1.958620 2.084845 -2.132285 3.008869 -2.827009 -0.103350 -5.890647 1.754405 -5.244253 -0.912522 15.467201 13.972267 -19.719849 0.512919 -23.567418 13.134423 10.836399 11.112448 13.117250 -0.409169 -4.248395 -2.991267 14.112490 -7.757270 -1.777253 1.525529 2.894105 -7.750834 1.350661 6.044875 14.311473 10.121120 -1.238700 15.353910 5.784627 13.327137 3.331768 -10.854893 -0.715239 -10.246430 22.372091 -14.908647 7.770216 2.184010 8.943177 -0.943993 -16.617257 -7.242304 -19.250844 0.390202 6.927531 -9.869523 0.926397 -14.054015 3.962254 -2.751571 -5.824765 8.633883 5.459038 14.940608 4.961951 2.669429 -5.041894 -11.453647 6.084489 -2.913923 11.946021 9.642040 -8.893718 -3.239472 5.796071 -2.749391 -9.016499 3.083038 0.885942 1.815946 -4.520965 7.411839 -3.387076 -2.237179 -4.559514 -5.904482 10.902510 -9.518045 8.989340 -5.720195 -1.097606 -7.834101 -2.595353 -1.037777 -13.011088 7.558794 10.677238 -2.463184 -1.086210 -2.117079 3.583270 -6.900147 -15.357863 0.352023 -0.405867 4.631731 15.127994 -9.017547 0.918382 3.220854 -0.796281 -2.938246 15.638292 2.181550 7.463780 12.583758 20.803052 0.960604 -10.085584 -3.858690 2.046238 11.432902 16.451550 11.736995 -16.007768 -9.216811 -3.703351 5.077145 -21.750048 7.484332 6.525539 9.140716 6.903065 -18.035906 1.717686 -6.806315 19.139002 8.799662 9.503451 4.190022 -1.557508 -10.982693 17.030480 30.153224 -5.707007 10.658913 -6.043953 -8.855328 16.620411 -15.468470 11.251853 4.290205 1.909822 6.600696 -11.965530 -6.554345 14.520564 8.527454 8.250958 13.135380 2.540390 2.157436 -24.978708 -15.993556 1.092383 10.705263 -3.819010 23.548371 -10.996417 -10.003111 -4.786163 16.085314 -1.805471 -3.933625 -0.414698 -7.422761 8.568353 -21.587413 -18.841134 22.112946 23.779419 1.589644 0.538811 16.410843 14.345462 -6.739186 -7.064439 -6.736839 7.832108 1.047872 -0.416914 0.449743 -0.780459 -13.825095 -7.456992 3.882221 4.704024 7.509940 -6.675259 -12.990173 8.770651 -19.325007 -9.593204 4.642361 -16.117939 -6.197154 1.797892 -0.251463 1.434871 4.687012 -6.841966 -3.255783 8.263247 -10.099366 0.154061 7.738673 13.487765 5.772024 15.329371 11.646379 5.124395 17.061804 11.896400 -7.119924 31.829531 -3.677349 2.392879 5.424687 7.264769 -1.386751 6.420425 2.232583 -7.477126 -7.544343 -16.853880 10.166231 -0.213093 12.440309 -15.639827 -12.610478 -12.641517 -8.840179 15.079593 7.322097 -2.165829 28.434714 -0.685967 1.534325 -29.578136 -2.935836 12.727294 0.047874 12.631366 9.676706 -10.391384 -24.682877 -6.902594 -3.282982 5.446647 -7.397087 -12.761767 -9.252159 -7.289150 12.626011 -7.383175 7.510888 17.219376 -1.620247 6.384868 -3.376467 -1.677182 -3.233451 -7.428829 4.637211 6.223074 -17.608120 18.978464 -5.388175 35.716881 -9.805946 11.248250 -13.812728 2.368258 -1.270350 -0.563846 -1.046900 21.185047 10.703025 4.981156 -0.000304 1.010266 -10.435874 9.171260 -PE-benchmarks/palindrome-partitioning.cpp__main = 0.233485 0.312123 0.919544 -0.209732 -0.392724 -0.946018 -0.388664 -1.832559 0.561417 0.275335 0.786269 -0.205981 0.472284 -0.038382 0.002575 0.575073 0.288997 -0.407035 0.419060 -0.380918 -0.338630 1.031521 -0.180252 0.589900 0.097596 -1.188056 0.354075 0.111779 0.729112 0.474820 0.258842 -0.231618 -0.277763 0.277068 0.091083 0.423969 0.413483 0.261790 -0.673584 0.421354 -0.373613 -0.213558 0.461238 -0.111130 0.741330 0.181608 0.268062 0.374818 -0.066873 -0.255845 -0.323269 0.752902 -0.424753 0.174118 0.001318 -0.455427 -0.242062 -0.150587 -0.244325 0.360681 -0.403691 -0.403074 -0.356123 0.302740 -0.538432 0.317601 -0.597494 -0.277810 -0.083689 0.100233 0.557674 0.319245 0.192049 0.539633 -1.242815 0.166410 0.120307 0.300010 0.336855 -0.326931 0.217947 0.090773 -0.547683 -0.679735 0.705247 1.035969 0.205948 -0.210440 -0.546558 0.108384 -0.320599 -0.156337 0.422557 0.448037 -0.521671 0.006660 -0.573391 -0.195870 -0.557376 -1.354103 0.129615 -0.373805 0.430250 -0.274906 0.175733 -0.163020 -0.027821 0.182061 -0.268326 -0.671284 0.175244 -0.163525 0.194649 1.198702 -0.268993 -0.071376 -0.514503 -0.255455 -0.257757 0.354164 0.417607 0.211474 0.613737 0.717168 0.364052 -0.497812 -0.695607 0.387627 0.411066 0.339680 0.377557 -0.727199 -0.409360 0.183538 -0.331900 -1.080200 -0.392257 0.201319 0.468586 -0.463130 0.216519 -0.092487 -0.354375 0.517720 0.555876 -0.058639 0.157375 -0.024991 -0.490808 0.602978 1.019707 -0.192147 0.544108 -0.568162 0.056119 0.352394 -0.449253 0.282563 0.201496 0.051716 -0.440559 -0.310705 -0.078672 0.453018 0.239745 0.368592 -0.057399 0.366008 -0.554260 -0.671280 -0.847652 0.031891 0.929474 -0.289783 0.485998 -0.597104 -0.469926 0.116635 0.839826 0.295102 -0.386940 0.435052 -0.634701 0.398462 -0.521916 -0.749435 1.014775 1.200378 0.562531 -0.109851 0.330963 0.752221 -1.320886 -0.516013 -0.272034 0.421897 -0.237678 -1.673976 -0.738008 0.127334 -0.654487 -0.226488 -0.172921 0.431754 0.337784 0.663631 0.622375 0.095114 -0.354784 -0.375520 0.750838 -0.208792 -0.294362 0.097562 0.069833 -0.003298 0.382845 -0.508904 0.294872 0.580877 -0.498454 0.367051 0.537936 0.164696 -0.111569 1.077466 0.680350 -0.020234 0.670191 -0.134159 -0.314561 0.425850 -0.055628 0.329224 0.016171 -0.049883 -0.295223 0.194917 0.459065 -0.334675 -0.911460 -0.613630 -0.270927 0.043206 0.446766 0.688026 -0.957706 -0.852778 -0.036666 0.203597 0.837740 0.226295 0.934415 -0.234315 0.454098 -0.982649 0.162987 0.084345 -0.090319 0.564818 0.117337 -0.283759 -0.128459 -0.185912 -0.750931 -1.161840 -0.244812 -0.635114 -0.381305 -0.624675 0.632153 -0.256445 -0.229360 0.219047 0.196073 0.627517 -0.110848 -0.104522 -0.720438 0.363071 0.911466 -0.222848 -0.527238 0.469127 0.134355 1.765886 -0.098592 0.222754 -0.083896 -0.012128 0.037647 -0.531352 -0.089811 0.852356 0.603753 0.182992 -0.329091 -0.243266 0.100364 0.244167 -PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = -1.442956 0.910500 6.498941 4.150419 -3.650040 -5.239598 -2.557275 -6.000227 2.953758 -0.254444 3.859907 0.434435 0.544752 -1.570533 0.328796 -1.018299 0.687194 -1.849683 0.283115 -1.847963 -0.943804 4.728237 2.757384 -5.452036 0.507896 -7.407190 4.497186 3.127037 2.510031 4.160798 0.231866 -0.741001 -1.098349 3.873068 -1.632312 -0.480367 1.332458 0.591880 -1.951583 0.385714 2.100783 3.682489 3.706801 -0.535198 3.988564 2.078383 2.909503 1.365857 -3.365501 -0.566423 -2.211715 4.617477 -3.617270 2.305833 0.687616 1.817565 1.107663 -4.741377 -1.635168 -4.696476 -0.185191 0.936993 -2.244744 -0.023878 -3.773161 0.970263 0.261975 -2.008426 2.848028 0.872284 3.694936 1.504020 0.688886 -1.079939 -2.917295 1.708802 0.141292 3.579020 2.669367 -2.033725 -0.676008 1.029567 -1.607617 -2.655157 0.645141 0.528158 1.166284 -0.471572 1.563475 -1.459708 0.152735 -1.431477 -0.978389 2.837211 -1.476192 1.094378 -1.325251 -0.680013 -2.592265 -1.663312 -0.085632 -2.780801 1.941442 3.453689 -1.928453 -0.213777 -0.112319 0.815014 -2.116919 -3.704084 0.752731 -1.343491 1.119267 4.169294 -1.792655 -0.221278 -0.195938 -0.791830 -0.432602 4.435120 -0.125236 1.686695 3.458182 5.944198 0.086065 -2.888008 -1.657013 0.289865 3.175802 3.848200 3.352446 -4.834833 -2.398635 -0.456035 0.349108 -5.766646 1.301862 0.928234 3.462547 1.168936 -4.907146 1.776093 -2.370172 5.359150 2.153982 2.000802 0.842324 -0.406348 -3.648779 5.332279 8.193683 -1.411951 2.881008 -2.541690 -2.571983 4.602048 -3.025501 2.461867 0.974232 -0.396984 0.874981 -2.694596 -0.633069 3.985880 1.993263 1.965605 3.385814 0.914918 0.095737 -6.748696 -4.923910 0.782200 3.707717 -0.697538 7.870036 -4.147427 -2.284373 -1.810148 4.649215 -0.844310 -1.071553 0.493234 -2.113881 2.547122 -5.751052 -5.685120 7.560498 6.686684 0.869582 0.674976 4.141442 3.424303 -1.530781 -1.725441 -1.990655 1.844708 1.361624 -0.904700 -0.371760 -0.078412 -3.902347 -2.960894 1.238002 1.351122 2.835733 -2.124397 -3.144402 0.807698 -4.881470 -3.387934 1.542386 -4.348337 -1.390760 1.366854 -0.245070 0.600231 1.881829 -0.928018 -1.174859 1.369636 -2.298968 -0.125207 1.721871 3.711039 1.748079 3.828585 4.083275 0.796092 4.571714 3.531079 -1.842475 8.859407 -1.108202 1.134862 1.807957 2.146344 0.700057 1.756540 1.634623 -2.030667 -0.876818 -4.888001 2.845066 0.065054 3.047234 -5.600426 -3.049924 -4.771238 -2.250052 3.266138 2.358695 -0.756140 7.810330 -0.186408 -0.259920 -8.490694 -0.778512 3.610396 0.630211 2.535507 2.435885 -2.817160 -7.116775 -1.552315 -1.877046 0.658355 -2.117808 -3.112656 -2.775201 -1.823632 3.473016 -1.675503 2.013732 5.979099 -0.346451 1.524997 -1.404358 -0.371704 -1.522879 -2.570867 1.023177 0.968157 -3.787961 5.154117 -0.839900 8.960823 -2.123315 2.866413 -3.271258 1.304775 -0.042250 -1.435299 -0.536676 5.396213 2.374470 0.843496 0.897377 0.313084 -2.276256 3.777005 -PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = -0.804876 -0.030094 2.902406 1.737769 -1.255265 -2.551820 -1.061102 -3.114976 1.817352 0.446630 2.021574 0.620328 0.852022 -0.633736 -0.009966 -0.056517 0.380323 -0.862434 0.085343 -0.887901 -0.156290 3.086848 1.325315 -2.013032 0.322793 -3.309503 1.847909 1.145935 1.255249 2.306822 0.177792 0.141287 -0.408286 1.493039 -0.691900 0.402704 0.350072 0.766755 -0.938063 0.127115 1.090598 1.208060 1.495673 0.093821 2.471948 0.677816 1.223435 0.394815 -0.931631 -0.570794 -0.855994 1.678936 -1.863631 1.073209 -0.418991 0.703395 -0.048086 -1.702827 -0.752461 -2.373238 -0.036902 0.580242 -1.225350 0.064941 -1.685851 0.688628 -0.093245 -0.742240 0.539515 -0.282166 1.901457 0.614306 0.197236 -0.390326 -2.404764 0.400760 -0.098575 1.091301 1.413189 -0.705941 -1.071192 -0.065749 -0.927827 -1.403775 0.877912 0.740649 0.154656 0.208947 0.217379 -0.635144 -0.232293 -0.488097 -0.192575 1.442517 -1.054901 0.740461 -0.063212 -0.245264 -0.357878 -0.673674 0.384043 -1.290557 0.731537 1.056907 -0.006146 -0.154026 0.144102 0.315594 -1.127514 -1.800638 0.540550 -0.389981 0.218033 2.298483 -0.822826 -0.151676 -0.136799 -0.233289 -0.064573 2.180219 0.254521 0.851650 1.826386 2.397429 0.291895 -1.764007 -0.774764 0.711963 1.718740 1.549537 1.243925 -1.842629 -1.140338 -0.030880 -0.057584 -2.811518 -0.105309 1.015593 1.600824 -0.028366 -1.846392 0.892636 -0.958035 2.168159 1.652635 0.424027 0.463609 0.064006 -1.800429 2.186362 4.065432 -0.673815 1.301639 -1.012220 -1.244656 2.628175 -1.804281 1.091728 0.511233 -0.022894 -0.063059 -1.148635 -0.039514 1.806278 0.493575 1.529029 0.881358 0.765038 -0.318486 -2.973361 -2.601714 -0.489966 2.086128 0.519470 3.567697 -1.735987 -0.984971 -0.444944 1.954332 -0.218759 -0.652638 0.276526 -1.476677 1.235718 -3.614847 -2.666208 3.680570 3.246528 1.174305 0.554464 1.824075 1.526569 -0.429916 -0.705591 -0.663318 1.014374 0.538101 -0.857844 -0.059988 0.047223 -2.006283 -1.649032 0.179306 0.560514 0.709880 -0.562555 -0.538880 0.236001 -1.820636 -1.423615 0.764421 -1.947235 -0.835122 0.068020 0.177871 -0.097210 0.355791 -0.465462 0.076747 0.757902 -0.973211 0.350564 0.935748 1.034288 0.667905 1.680135 2.526575 -0.168638 1.608901 0.850655 -0.766685 3.712181 -0.755929 0.241396 0.595609 1.163094 0.532172 0.618433 0.776612 -0.965745 -0.353106 -2.235651 1.029760 0.805151 1.609360 -1.996890 -1.910620 -2.151592 -0.746266 1.165272 1.676492 -0.370483 3.743416 -0.613680 0.544345 -4.156117 0.081219 1.697121 0.155037 1.183461 0.875490 -1.173211 -3.268739 -0.761547 -1.097777 -0.168938 -1.129346 -1.680572 -0.975584 -0.891534 1.393585 -1.444443 0.713872 2.166231 -0.401370 1.055048 -0.866408 -0.086603 -1.192923 -0.401176 0.247579 0.449763 -1.702813 1.782295 -0.478269 4.215774 -1.115413 1.611411 -1.221852 1.300748 -0.849708 -1.002566 -0.291577 2.576051 1.534143 0.316903 0.491453 -0.066707 -0.532182 1.494939 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.216197 0.185083 2.028097 0.856054 -0.970578 -1.987935 -0.759148 -2.821497 1.507418 0.562305 1.438209 0.312433 1.018102 -0.687250 -0.085590 0.244873 0.347614 -0.666464 0.412891 -0.740279 -0.411982 2.623507 0.755065 -0.598731 0.138726 -2.632270 1.731509 0.556113 1.443996 1.853843 0.236016 -0.163945 -0.378166 1.074366 -0.307785 0.529713 -0.160645 0.651195 -0.787837 0.430832 0.430421 0.351478 1.145669 0.142281 1.654595 0.644951 0.823881 0.395380 -0.430739 -0.713252 -0.682549 0.984306 -1.335539 0.696742 -0.544912 0.058162 -0.053794 -0.670869 -0.367431 -0.946886 -0.081328 -0.167694 -1.145774 0.391165 -1.644066 0.477931 -1.024384 -0.706523 -0.173049 -0.186392 1.248832 0.622605 0.081530 -0.389655 -2.333299 0.256563 -0.071485 0.619925 1.090118 -0.275427 -0.791144 -0.018304 -1.082489 -1.356908 0.990974 1.147044 0.079686 0.080237 -0.226605 -0.608933 -0.537959 -0.084858 0.396833 1.173668 -1.049121 0.330991 -0.466538 -0.124539 -0.484693 -1.374036 0.346307 -1.015519 0.717980 0.291489 0.037269 -0.353021 0.125981 0.122360 -0.614657 -1.344577 0.222812 -0.500371 0.495962 2.050754 -0.406677 -0.158776 -0.774796 -0.320437 -0.011608 1.476905 0.549243 0.345175 1.724525 1.552469 0.493618 -1.210712 -0.761661 0.992222 0.864974 0.868252 0.743888 -1.509789 -0.925990 0.130855 -0.114962 -2.145574 -0.297443 0.685544 0.885938 -0.565629 -0.617048 0.694670 -0.703814 1.134996 1.466499 0.118186 0.545376 0.011119 -1.215020 1.456395 3.045952 -0.262037 0.664135 -1.210303 -1.028176 2.265381 -1.282465 0.817259 0.200727 0.013785 -0.532142 -0.778803 0.401635 1.310543 -0.028357 0.870831 0.730740 0.581181 -0.211703 -1.767391 -1.896227 -0.104160 1.778725 0.492058 2.379257 -1.355934 -0.095796 -0.106710 1.332832 0.737423 -0.457026 0.449906 -0.962815 0.845584 -2.725766 -1.865470 2.476785 2.279495 0.994123 0.047779 0.966345 1.527440 -0.727097 -0.843175 -0.746684 0.872636 0.056593 -1.239892 -0.314863 0.206506 -1.650924 -0.943918 0.038594 0.574986 1.006139 -0.286358 -0.129320 -0.398805 -1.134189 -1.447194 1.005358 -1.038066 -0.485099 0.020425 0.059636 -0.243611 0.525667 -0.408658 0.379646 0.614062 -0.506790 0.422651 0.837044 0.576085 0.085047 1.468539 1.706700 -0.463779 0.679564 0.322479 -0.384606 2.655368 -0.340127 0.434451 0.436861 0.754004 0.263953 0.562856 0.598038 -0.739729 -0.586795 -1.520120 0.456191 0.616152 0.869695 -0.911008 -1.346030 -1.944284 -0.365161 0.440789 1.754845 0.199187 2.696542 -0.578343 0.604812 -2.592749 0.204522 0.857993 0.009638 1.332424 0.652507 -0.855236 -0.895971 -0.698165 -0.914059 -0.383563 -0.740164 -1.186709 -0.958768 -0.457561 0.728781 -0.940405 0.270269 1.289229 -0.216403 0.977093 -0.705819 0.067976 -1.295164 -0.000514 0.666652 0.207513 -1.214067 1.203313 -0.225460 2.781509 -0.649393 1.137849 -0.607816 0.969226 -0.616258 -1.376186 -0.322984 1.956268 0.911039 0.198699 0.181262 -0.165743 0.102413 0.830940 -PE-benchmarks/dfa-based-division.cpp__main = 0.129450 0.710394 2.093044 0.976766 -1.286824 -1.856227 -0.940688 -2.776833 1.021016 0.177608 1.340635 -0.261370 0.489618 -0.183288 -0.132634 0.119500 0.385445 -0.427552 0.281060 -0.733682 -1.180995 1.865127 0.298012 -0.795524 0.330496 -2.330662 1.515728 0.827293 0.957377 1.103049 0.100766 -0.160710 -0.429030 1.128151 -0.512322 0.060257 0.315659 0.530665 -0.869709 0.521740 0.490819 0.519783 1.318197 -0.127239 1.117696 1.040475 0.595029 0.621296 -0.930486 -0.276181 -0.471143 1.184133 -0.850008 0.798012 -0.144468 0.118968 0.228637 -1.205999 -0.392189 -0.346453 -0.307748 -0.175399 -0.810760 0.254804 -1.370384 0.292219 -0.345599 -1.017880 0.584827 0.201609 1.136462 0.420958 -0.111682 -0.200511 -1.551819 0.465617 0.445730 0.873233 0.808549 -0.511054 0.118418 0.363493 -1.202527 -1.223331 0.739350 0.967235 0.657991 -0.182561 -0.083964 -0.677578 0.064102 -0.339344 0.389538 1.182823 -0.564223 0.225264 -1.016887 -0.402050 -1.356617 -1.640020 0.138837 -0.826231 0.974371 0.399839 -0.627386 -0.022214 0.546459 0.391793 -0.248315 -1.341529 -0.015349 -0.661625 0.839819 2.062690 -0.128932 -0.547278 -0.516122 -0.698005 -0.405160 1.159720 0.363880 0.125503 1.824580 1.672207 0.389934 -1.034727 -0.982242 0.175808 0.559033 1.004013 1.108721 -1.732149 -0.888454 -0.003669 -0.251141 -2.185115 -0.142010 -0.019397 0.973403 -0.698776 -0.737694 0.772655 -0.847105 1.190485 0.779369 0.358742 0.380728 -0.211248 -1.029374 1.446923 2.461560 -0.369170 0.797941 -1.286477 -1.019854 1.416421 -0.589119 0.714303 0.408954 -0.272547 -0.362892 -0.786948 0.323733 1.246707 0.081880 0.390225 0.884878 0.379269 -0.621513 -1.667561 -1.794063 0.455143 1.398037 -0.033747 2.458838 -1.459065 -0.758279 -0.286839 1.699286 0.100551 -0.339190 0.438931 -0.893030 0.815582 -1.587859 -1.882401 2.090611 2.027780 0.550456 -0.053508 1.269217 0.785055 -1.044863 -1.066351 -0.835596 0.726437 0.411645 -1.193945 -0.579168 0.227306 -1.287239 -0.378262 0.045465 0.702350 1.147811 -0.281719 -0.302417 -0.411088 -1.490584 -1.372685 0.934256 -1.061542 -0.133799 0.500128 -0.057652 -0.245095 0.821361 -0.438242 -0.331134 0.123862 -0.639261 0.498183 0.710322 0.886550 -0.101671 1.718630 1.533988 -0.217171 1.355579 0.555855 -0.464146 2.463659 -0.513539 0.512209 0.442865 0.796027 -0.259860 0.572466 0.979186 -0.624977 -0.742573 -1.548598 0.464131 0.140298 0.552189 -1.148547 -0.957873 -2.059163 -0.661649 0.480203 1.492293 0.158321 2.383809 -0.163078 0.370821 -2.558687 -0.007889 0.633625 -0.012321 1.158248 0.571356 -1.051637 -1.556826 -0.424614 -1.202752 -0.815718 -0.651326 -1.093485 -1.095123 -0.407715 0.636041 -0.351554 0.303399 1.775808 -0.102838 0.458432 -0.702432 -0.075855 -0.776906 -0.533026 1.245829 -0.167104 -1.132102 1.235729 -0.031706 3.333748 -0.171884 1.057759 -0.687729 0.115028 0.180017 -1.082315 -0.398758 1.760555 0.672180 0.345824 0.091032 0.025693 -0.243445 1.089169 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = -1.058188 1.387881 7.406535 4.700531 -4.327619 -6.342496 -2.898018 -7.687734 3.435308 -0.051535 4.814323 0.473273 1.301988 -1.175690 0.525355 -0.442171 1.084926 -1.782027 0.437683 -2.265285 -2.196629 5.315570 2.602790 -5.035380 0.665104 -7.263376 5.059772 3.677900 2.812883 4.292791 0.450803 -0.918291 -1.420825 4.240042 -1.805701 -0.180251 0.836429 1.163222 -2.479935 0.617989 2.240135 2.668629 4.524139 -0.208027 4.333167 2.303789 3.642917 1.693054 -3.700199 -0.710058 -3.364869 5.719477 -4.208855 2.559264 -0.127868 1.806426 1.174993 -4.742381 -1.720334 -4.413263 -0.552945 0.548891 -3.112608 0.151018 -4.341115 1.048039 -0.852158 -2.691100 2.394136 1.192517 4.306368 1.413243 0.300933 -0.960946 -4.390426 1.444968 0.125199 3.696404 3.285848 -2.034944 -0.613028 1.101760 -2.488163 -3.263974 1.821896 0.716345 1.604399 -0.640015 0.712357 -1.385686 -0.493226 -1.075569 -0.345065 3.267098 -2.392980 1.599054 -1.923818 -0.857830 -3.598487 -2.745646 0.288014 -3.272039 2.454670 2.914896 -1.624052 -0.491284 -0.658272 0.728931 -2.456349 -4.595289 0.299123 -1.823262 1.458304 5.286484 -2.116737 -0.749613 -0.129391 -1.115303 -0.494734 4.645995 0.767355 1.489315 4.601425 6.376116 0.698056 -3.534411 -2.149094 0.319684 3.369849 4.463223 3.645956 -5.005621 -3.001553 -0.571261 -0.043593 -7.262170 1.345084 1.451154 3.453350 1.093176 -4.892655 1.698080 -2.771774 5.275232 2.805038 2.754189 1.307251 -0.335052 -3.893870 5.364543 8.724372 -1.638416 3.582694 -2.745892 -2.697502 5.218754 -3.627932 2.718264 1.454539 -0.625665 0.609693 -2.902011 -1.066869 4.449341 1.998546 2.001914 3.771467 1.199272 -0.616709 -7.242793 -5.824481 1.043317 4.844887 -0.219955 8.094674 -4.653289 -2.768489 -1.174261 5.271052 -0.958577 -1.698923 0.560510 -2.476161 3.026243 -6.872886 -6.238035 7.877444 6.744319 0.861172 0.428195 4.679877 3.812134 -2.726288 -2.528218 -2.445140 2.331685 1.091371 -1.891796 -0.331479 0.240955 -4.532567 -2.211503 1.030560 1.931453 2.845850 -2.153711 -2.507512 0.750838 -5.301777 -3.640636 2.039954 -4.728153 -1.634571 1.290385 -0.399832 0.236034 2.026521 -1.205820 -1.102062 1.418718 -2.996297 0.344751 2.040710 4.159831 1.486496 5.653428 4.896496 0.366618 5.114122 3.115303 -2.140551 9.364302 -1.659292 1.391233 1.820239 3.082097 0.206600 2.010297 2.449931 -2.399684 -2.121456 -5.702068 2.394150 0.512161 3.468017 -5.003279 -3.333775 -6.002463 -2.468316 3.560745 3.739827 -1.025047 8.759882 -0.381289 0.417325 -9.129683 -0.659061 3.555115 0.107585 3.549513 2.610522 -3.442064 -6.635578 -2.016891 -2.543572 0.285933 -2.030013 -3.211908 -3.304516 -2.038827 3.056061 -2.425913 1.859071 5.726363 -0.901396 1.869845 -1.543518 -0.289627 -1.537520 -2.123290 2.501391 1.156401 -4.716578 6.061021 -0.962342 11.450748 -1.700036 3.485095 -3.498809 1.138102 -0.018001 -1.779102 -0.883287 6.498905 3.132157 1.245293 0.644461 0.711970 -2.007692 3.906057 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.122947 0.258727 0.887109 0.273224 -0.184674 -0.918388 -0.346919 -1.116750 0.473901 0.010743 0.613653 -0.150900 0.293923 -0.049134 -0.048870 0.035234 -0.020137 -0.254705 0.222201 -0.227661 -0.488895 0.884174 0.130893 -0.107716 0.112308 -1.193129 0.802523 0.346587 0.527199 0.846875 -0.016674 -0.165434 0.039697 0.480610 -0.138091 0.053254 0.042127 0.146065 -0.218039 0.321426 0.166866 0.185759 0.591992 0.162055 0.359975 0.560000 0.162015 0.205316 -0.064482 -0.119027 -0.487073 0.464403 -0.561691 0.180526 -0.352040 0.068426 0.236032 -0.414223 -0.153691 -0.184670 -0.162765 0.009912 -0.438174 0.117453 -0.715453 0.144158 -0.524599 -0.315064 0.117055 0.074208 0.540091 0.362013 0.010058 -0.024919 -0.827200 0.251615 0.041462 0.369624 0.425153 -0.455237 -0.123025 0.302429 -0.521982 -0.517044 0.510185 0.292537 0.280759 -0.047197 0.043616 -0.387560 -0.240670 0.029194 0.188908 0.470661 -0.008330 0.217324 -0.445229 -0.065661 -0.350337 -0.759730 0.044669 -0.421472 0.280907 0.247454 -0.036102 -0.140340 0.108924 0.136713 -0.139179 -0.711348 0.082055 -0.251774 0.150761 0.821864 -0.187587 -0.156604 -0.181283 -0.187350 -0.067294 0.659851 0.212520 0.069576 0.545162 0.655864 0.118824 -0.402489 -0.340857 0.152571 0.293307 0.406170 0.425609 -0.652815 -0.396080 -0.099494 -0.053627 -1.055658 0.065193 0.099861 0.338048 -0.181863 -0.437222 0.539221 -0.405664 0.347822 0.548812 0.155903 0.288070 -0.083727 -0.491103 0.721316 1.170763 -0.244669 0.409210 -0.693689 -0.493408 0.748643 -0.427887 0.220988 0.006790 -0.036597 0.065088 -0.332531 0.154291 0.579978 0.054026 0.322403 0.598442 0.157942 -0.094801 -0.712810 -0.647902 0.182466 0.772710 -0.143860 0.913716 -0.583332 -0.120744 -0.036495 0.749548 0.045857 -0.061954 0.096053 -0.318023 0.332729 -1.132570 -0.828392 0.942419 0.732464 0.246986 0.035375 0.215279 0.746088 -0.210621 -0.244104 -0.396026 0.350707 0.083495 -0.645224 -0.292105 -0.119456 -0.469318 -0.200100 0.072410 0.246581 0.402019 -0.245841 -0.282458 -0.323650 -0.664340 -0.635979 0.471004 -0.741249 -0.107324 0.177863 -0.151331 -0.211418 0.297762 -0.096750 0.092949 0.363248 -0.288715 0.129667 0.347294 0.338362 0.033586 0.773599 0.654481 -0.097388 0.320029 0.349762 -0.133256 1.074951 -0.231886 0.173312 0.203619 0.471708 0.038275 0.401272 0.322499 -0.282993 -0.466458 -0.771910 0.250759 0.204208 0.245536 -0.030854 -0.383366 -0.891869 -0.332798 0.294910 0.859497 0.128080 1.098212 -0.001865 0.152420 -0.788418 -0.029953 0.349557 0.012716 0.570165 0.282647 -0.348745 -0.396285 -0.303320 -0.397579 -0.157072 -0.367829 -0.585899 -0.413409 -0.274001 0.193573 -0.326764 0.250568 0.480291 0.060029 0.155309 -0.268518 -0.065228 -0.547396 -0.058615 0.507069 0.023750 -0.476868 0.525695 -0.083525 1.126513 -0.243276 0.479247 -0.437620 0.175995 -0.059626 -0.301304 -0.135273 0.821343 0.307855 0.051979 0.092794 0.031327 0.045688 0.410151 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.191178 0.374062 1.001698 0.301929 -0.492712 -1.193826 -0.483165 -1.642952 0.584977 0.209196 0.775952 -0.196412 0.471130 0.015861 -0.081973 0.338012 0.224604 -0.290411 0.321782 -0.409147 -0.794499 1.354499 0.122097 0.026624 0.139973 -1.293686 0.896635 0.304287 0.626401 0.832494 0.111933 -0.063337 -0.035228 0.526420 -0.223870 0.222551 -0.030982 0.410302 -0.415212 0.462193 0.133260 -0.041142 0.718283 0.101599 0.564060 0.697554 0.352379 0.316032 -0.214646 -0.252325 -0.445598 0.514832 -0.578211 0.311002 -0.478889 -0.139125 0.188301 -0.378098 -0.219991 -0.009023 -0.284488 -0.214021 -0.635476 0.222653 -0.875322 0.262013 -0.584535 -0.542313 -0.019925 0.199895 0.677917 0.365888 -0.076983 -0.019746 -1.263074 0.212765 0.156525 0.357417 0.462107 -0.362919 -0.125542 0.210985 -0.846341 -0.811175 0.753586 0.669997 0.351219 -0.054128 -0.177792 -0.387461 -0.278619 -0.005339 0.380141 0.705070 -0.190761 0.225188 -0.438118 -0.170953 -0.669294 -1.177510 0.126485 -0.494489 0.481362 0.059252 -0.011404 -0.133049 0.198906 0.176181 -0.197545 -0.903681 0.025097 -0.403660 0.224440 1.142374 -0.071545 -0.211775 -0.359754 -0.342193 -0.130870 0.690033 0.418709 0.065466 1.004204 0.784633 0.194428 -0.548374 -0.563175 0.206075 0.308193 0.399564 0.545536 -0.859370 -0.594183 0.058031 -0.220309 -1.218216 -0.229989 0.272849 0.450565 -0.656711 -0.202379 0.620782 -0.447224 0.430089 0.721751 0.107651 0.294834 -0.131058 -0.560734 0.770947 1.479945 -0.239244 0.477584 -0.855228 -0.557270 1.072987 -0.434086 0.316924 0.179007 -0.101403 -0.420333 -0.384193 0.293972 0.684149 0.012111 0.275606 0.564221 0.253008 -0.366693 -0.730651 -0.933425 0.167845 1.014783 0.028874 1.270667 -0.795478 -0.180751 0.063916 0.764089 0.270051 -0.200532 0.264388 -0.475619 0.409808 -1.315226 -1.039191 1.206671 0.902573 0.524946 -0.027411 0.428648 0.726290 -0.522763 -0.621383 -0.488315 0.550488 0.089383 -0.962099 -0.483848 0.076122 -0.785101 -0.202616 -0.117813 0.422690 0.571816 -0.034313 0.012142 -0.557634 -0.752820 -0.734665 0.585620 -0.623567 -0.170733 0.204263 -0.073623 -0.284137 0.327116 -0.137754 0.160039 0.188126 -0.356397 0.291402 0.457430 0.283854 -0.097957 1.067552 1.061008 -0.301294 0.438401 0.136452 -0.172207 1.162511 -0.240051 0.275914 0.152182 0.517265 -0.102600 0.293445 0.624187 -0.294149 -0.657167 -0.828785 0.227347 0.326541 0.243214 -0.119745 -0.510933 -1.222883 -0.260574 0.174524 1.292816 0.174126 1.267161 -0.176565 0.403367 -1.216713 0.175558 0.191195 -0.026469 0.656477 0.287057 -0.474170 -0.289183 -0.301946 -0.686276 -0.616152 -0.375291 -0.717029 -0.604200 -0.241657 0.036909 -0.398142 0.050550 0.709440 -0.060289 0.334235 -0.347433 -0.090987 -0.705914 0.033555 0.919837 -0.138410 -0.538000 0.546820 -0.022611 1.738270 -0.097728 0.620156 -0.283894 0.170543 -0.033847 -0.658911 -0.202184 1.005404 0.401537 0.033116 0.156822 -0.033935 0.264582 0.452337 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = -3.226876 1.509506 14.583951 9.643825 -7.181595 -10.353638 -5.679818 -12.448418 7.381963 -0.117600 8.729260 2.079247 1.840233 -2.446599 1.072789 -2.519667 0.752207 -3.398813 -0.602439 -3.666166 -1.420739 10.077573 7.343641 -12.193788 0.933650 -14.503606 7.664522 6.407607 5.591207 8.622003 -0.599238 -1.783096 -2.669200 8.008686 -4.620802 -0.596124 1.514326 1.439566 -4.410123 -0.405198 5.200977 7.341747 7.585413 -0.506218 9.097231 3.119969 6.138849 2.039345 -6.884348 -1.624916 -5.274254 11.198097 -7.856327 5.343428 0.703790 5.909526 0.729675 -9.543933 -3.510147 -11.518518 0.312872 3.261917 -5.146058 -0.313526 -7.416804 2.042669 -0.012178 -4.222831 4.897241 -0.047513 8.411480 2.219755 1.120238 -3.385946 -6.900313 2.677653 -0.951718 6.828367 5.769968 -2.895562 -2.711445 1.802037 -2.762353 -5.172309 1.649008 0.470880 1.369712 -0.649636 2.726498 -2.668931 -0.222834 -2.428799 -2.022872 5.870276 -5.906780 3.538223 -2.457658 -1.126250 -4.627380 -1.646843 0.153684 -6.353349 3.926575 6.182387 -2.742329 -0.468219 -0.362176 1.610715 -4.308422 -8.030222 1.252381 -1.185322 1.887329 9.025010 -4.627742 -0.649997 1.491162 -1.454075 -1.673062 9.357838 0.287718 3.590947 7.406590 11.725035 1.418978 -6.551022 -2.436535 1.537480 7.349624 8.473468 6.551089 -9.002177 -4.977446 -1.075788 1.191071 -13.464679 3.149195 3.308275 7.072847 4.027187 -10.858314 2.690234 -4.487063 10.751256 4.641208 4.847833 2.382342 -0.923601 -7.971465 9.638189 17.538784 -2.952016 6.608635 -4.149076 -5.874072 10.311739 -8.167729 6.337884 1.996245 -0.328739 3.148599 -6.022588 -2.061703 8.540962 3.648973 4.628164 5.915613 1.823710 -0.182441 -14.877594 -11.280266 -0.328502 7.190933 -0.184550 15.079952 -7.523352 -5.515673 -3.622181 10.628912 -2.619953 -2.708212 0.534498 -4.744959 5.457266 -13.258300 -11.399303 15.038455 15.421164 1.416527 1.596015 10.361475 6.930556 -2.684315 -3.770326 -3.882304 3.640598 3.018404 -0.499340 0.665079 -0.569468 -8.007831 -5.243900 2.287579 2.706988 3.777630 -4.367167 -5.676244 3.767781 -10.011548 -6.726337 2.729999 -9.633372 -2.801397 1.960076 -0.035659 -0.083796 3.313066 -2.975702 -2.659201 3.601494 -5.160433 0.977491 3.749109 7.461155 3.607525 8.337403 8.228374 1.045551 10.139784 6.284696 -4.081220 19.413827 -4.162982 1.805662 3.242009 5.586181 0.540585 4.006943 2.039911 -4.426446 -1.783421 -9.943661 5.652779 0.260706 6.665006 -11.417358 -8.088361 -8.987341 -4.727066 6.975194 4.624716 -2.055155 17.139144 -1.260204 0.574837 -19.182398 -1.545431 8.391735 0.433009 6.304306 5.314095 -5.953291 -16.767164 -3.478891 -3.090871 2.901321 -4.339499 -7.354745 -5.118273 -4.561473 7.613616 -5.068825 4.641849 11.152878 -1.373026 4.199029 -3.195805 -0.501282 -2.807567 -4.831322 1.637869 3.175553 -8.858651 10.934502 -2.248840 19.794879 -4.716266 7.343821 -7.118222 3.683607 -1.373114 -3.220904 -1.362505 12.121605 6.156988 2.400458 0.746331 0.755599 -5.598051 6.237719 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.327145 0.212609 1.286652 -0.087186 -0.631433 -1.500272 -0.573411 -2.951260 1.142872 0.481000 1.236595 -0.137736 0.798411 -0.419302 -0.053957 0.903837 0.402520 -0.696057 0.560766 -0.564821 -0.459271 1.966887 -0.262690 0.758074 0.120726 -1.948786 0.657389 0.211185 1.227849 0.787209 0.451945 -0.331263 -0.366672 0.406357 0.117109 0.817309 0.423143 0.417124 -1.039142 0.412857 -0.382115 -0.398808 0.814784 -0.184829 1.311008 -0.050699 0.676378 0.479920 -0.044154 -0.434138 -0.660582 1.212155 -0.702078 0.279203 -0.128890 -0.692995 -0.281367 -0.255415 -0.424487 0.533751 -0.626150 -0.590477 -0.739340 0.401700 -0.842502 0.506860 -0.828804 -0.335257 -0.162322 0.025767 0.917831 0.526358 0.231976 0.580607 -2.123330 0.161601 0.113044 0.346323 0.566340 -0.235191 0.245455 -0.018623 -0.910527 -0.991951 1.296749 1.611853 0.180918 -0.230113 -0.890216 0.119974 -0.612860 -0.223232 0.715762 0.645529 -0.998838 -0.075799 -0.679340 -0.294406 -0.709772 -1.837637 0.321782 -0.605527 0.630766 -0.388106 0.279656 -0.159405 0.180151 0.161847 -0.504676 -1.048094 0.193598 -0.310205 0.400721 1.915914 -0.396847 -0.169330 -0.892835 -0.322644 -0.445993 0.544819 0.663654 0.363559 1.181114 1.082947 0.658477 -0.848519 -1.074495 0.843059 0.727788 0.529718 0.378855 -1.085864 -0.572972 0.294663 -0.350482 -1.755996 -0.744234 0.420041 0.764321 -0.675466 0.323735 -0.064522 -0.377501 0.885008 0.958010 -0.290908 0.277438 0.160634 -0.823395 0.972438 1.784999 -0.148921 0.696311 -1.042269 0.009709 0.771531 -0.806086 0.411861 0.300085 0.125549 -0.718358 -0.526483 0.063553 0.679384 0.116613 0.523018 -0.201306 0.700831 -0.798247 -1.093814 -1.497784 -0.003979 1.444790 -0.137280 1.037859 -0.988092 -0.633421 0.179310 1.133723 0.524822 -0.560314 0.763786 -1.179272 0.686605 -1.052234 -1.243889 1.787434 1.830758 0.981079 -0.060047 0.652342 1.182232 -1.911775 -0.695151 -0.467946 0.693600 0.015103 -2.535717 -0.862744 0.161904 -1.114897 -0.637527 -0.249223 0.578633 0.423834 0.865718 1.085542 -0.106094 -0.494232 -0.605194 1.306024 -0.374959 -0.424806 0.005756 0.123060 -0.086863 0.686002 -0.717108 0.606064 0.740239 -0.643552 0.579735 0.811824 0.184503 -0.193304 1.500160 1.389432 -0.208551 1.155774 -0.266920 -0.426565 0.719027 -0.104128 0.403477 0.058488 -0.098294 -0.217625 0.307028 0.670686 -0.576617 -1.145498 -0.937585 -0.261295 0.197466 0.737230 0.829336 -1.360386 -1.453935 -0.187275 0.254612 1.281062 0.388605 1.548835 -0.606848 0.664589 -1.782233 0.244756 0.258664 -0.012549 0.905338 0.111114 -0.436483 -0.126170 -0.332436 -1.087959 -1.681059 -0.439688 -1.017565 -0.713904 -1.123821 1.107504 -0.636429 -0.270133 0.465762 0.204891 0.991335 -0.482263 -0.049095 -1.154909 0.591420 1.094844 -0.213554 -0.828990 0.715384 0.074142 2.716926 -0.264748 0.417990 -0.204788 0.416838 -0.285984 -1.094932 -0.092337 1.297105 0.943886 0.143210 -0.449419 -0.398901 0.109711 0.478263 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp___GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/eulerian-path-and-circuit.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = -0.349264 0.051233 1.930663 0.511415 -0.780114 -2.236520 -0.752641 -2.971027 1.423866 0.587195 1.803073 0.348140 1.075890 -0.527504 0.326070 0.766087 0.418050 -0.850163 0.255646 -0.746646 -0.188339 2.284854 0.680660 -0.292770 0.054993 -2.127612 0.849818 0.742418 1.103698 1.395691 0.345124 -0.259185 -0.326057 0.909654 -0.407342 0.929022 0.235985 0.618315 -0.774651 0.086853 0.077266 0.084801 1.112679 0.054293 2.016668 0.223842 1.296782 0.374900 -0.476706 -0.748864 -1.002915 1.807306 -1.423692 0.560035 -0.501295 0.017605 -0.080619 -0.678618 -0.495862 -1.251489 -0.251308 -0.064185 -1.296461 0.159430 -1.061281 0.601255 -0.485706 -0.609629 -0.240571 -0.072883 1.412217 0.429098 0.075129 0.219324 -2.297219 0.019211 -0.157233 0.531171 1.019790 -0.428016 -0.672859 -0.256087 -0.766973 -1.211046 1.450764 1.020638 0.209819 0.237481 -0.724083 0.196167 -0.821902 -0.179628 0.398763 0.978959 -1.251387 0.269942 0.386667 -0.266943 -0.813819 -1.027803 0.494767 -0.966717 0.560474 0.175899 0.601419 -0.377944 -0.764463 0.104341 -1.327659 -1.399192 0.368618 -0.484015 -0.030738 1.522144 -0.953915 0.200096 -0.299759 -0.223937 -0.009572 1.293232 0.722366 0.551835 1.337889 1.561469 0.482754 -1.267331 -0.848818 0.759691 1.518065 1.066259 0.515910 -1.319188 -0.884489 0.346560 -0.572982 -2.270874 -0.340576 1.247991 1.116674 -0.052407 -0.896227 0.483606 -0.520164 1.361464 1.480348 0.374531 0.325563 0.143709 -1.388583 1.195057 2.740021 -0.445956 1.308426 -0.619104 -0.279403 1.695958 -1.642655 0.785815 0.664104 -0.138952 -0.483411 -0.650347 -0.286726 1.225560 0.790517 1.063796 0.118925 0.764733 -0.594529 -1.899064 -2.121639 -0.531372 1.927810 0.175806 1.942750 -1.294380 -0.766815 0.009729 1.447677 -0.046461 -0.891436 0.461324 -1.112959 0.999263 -2.372511 -1.679381 2.756292 2.449751 1.319894 0.234215 1.329413 1.604245 -1.265793 -0.604345 -0.348173 0.831823 0.095220 -1.772332 -0.383137 -0.021074 -1.757350 -1.042572 -0.333641 0.604327 -0.127255 0.502130 0.668406 0.239361 -0.836678 -0.582698 0.521497 -0.965199 -0.770560 -0.135518 0.163195 -0.046168 0.311921 -0.762558 0.537265 0.992443 -1.159229 0.442638 0.891708 0.590634 0.684219 2.022993 1.834749 -0.395776 1.502736 -0.024101 -0.536878 1.706590 -0.320637 0.465582 0.276007 0.749571 0.278524 0.401835 0.728052 -0.763461 -0.813682 -1.442574 0.146275 0.755577 1.253604 0.090982 -1.659717 -1.771189 -0.265102 0.745767 1.742628 -0.354781 2.469104 -0.580854 0.868714 -2.901125 0.285930 0.657946 -0.186133 0.749189 0.581262 -0.710141 -1.376563 -0.597395 -0.883292 -1.239941 -0.445995 -1.075448 -0.718147 -1.287477 1.060933 -1.488627 -0.002970 0.756464 -0.034297 1.213557 -0.410228 0.028837 -1.067142 0.432947 1.048866 0.190322 -1.319629 1.283340 -0.066938 3.594870 -0.667179 1.196174 -0.591677 1.103625 -0.571495 -0.911469 -0.208344 2.012018 1.526904 0.104010 -0.028495 -0.080697 -0.008078 0.787765 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = -1.037346 0.482882 5.543131 2.126897 -2.900535 -5.102891 -2.297392 -8.766774 4.266600 1.351802 4.719908 0.823234 2.389742 -2.013683 0.460380 1.127178 1.376802 -2.253986 0.604262 -1.974815 -0.339240 5.921748 1.266153 -1.417773 0.168865 -6.182901 2.290794 1.788926 3.256562 2.716745 1.182870 -0.861564 -1.708325 2.555861 -0.772311 1.991933 1.486312 1.274229 -2.821429 -0.501719 0.319293 0.819693 3.183344 -0.303773 5.467421 -0.435900 3.104460 1.146925 -1.865365 -1.491647 -2.073398 5.327849 -3.201719 1.810448 0.793766 -0.156097 -0.244957 -2.535534 -1.196043 -2.335464 -0.899615 -0.579176 -2.632217 0.497569 -2.588572 1.472671 -0.886240 -1.181719 0.328974 -0.439577 3.653328 0.921858 0.764385 0.578282 -5.511980 0.526007 -0.203993 1.569118 2.790892 -0.203900 -0.523716 -0.603545 -1.921239 -3.211935 3.240922 3.130565 0.246361 0.170567 -1.836652 0.397069 -1.283164 -1.495629 0.897957 2.499136 -3.994184 0.368845 -0.143985 -1.055647 -2.282421 -3.164254 1.065664 -2.599350 1.789642 0.612158 0.283036 -0.756552 -0.973266 0.167332 -2.826027 -3.331870 1.214841 -1.042391 1.014637 5.001003 -2.418047 -0.100145 -1.315218 -0.843499 -0.748466 3.088819 1.616178 1.677738 3.615629 4.657241 1.688532 -3.273321 -2.416875 2.325422 3.619011 2.883872 1.512747 -4.152521 -1.998223 1.107808 -0.746021 -6.053579 -1.111191 2.425270 3.339011 0.484992 -2.135485 -0.003940 -1.195918 4.128328 2.939094 0.721402 0.647267 0.494420 -3.442585 3.472146 6.648281 -0.847539 3.036876 -1.655861 -0.619898 3.432766 -4.148399 2.287850 1.437426 0.041187 -1.028886 -2.021425 -0.761782 3.187934 1.495870 2.155281 -0.279618 2.050683 -1.898948 -5.642373 -6.091955 -0.488095 4.659794 0.213636 4.977020 -3.470566 -2.748294 -0.208147 4.495498 0.008765 -2.358666 1.853277 -3.447849 2.823122 -4.489204 -4.576416 7.183259 7.140383 2.599333 0.055936 3.846162 3.569374 -4.637234 -2.157288 -1.475736 2.016546 0.527746 -4.809074 -0.950596 0.226070 -4.335897 -2.811332 -0.301341 1.575001 0.957591 0.982221 1.852142 1.179047 -2.239822 -1.959624 2.525947 -1.887634 -1.885637 -0.217424 0.558380 0.300921 1.929014 -2.123580 0.513664 2.294681 -2.757781 1.006305 2.322374 1.967257 1.026468 5.285923 4.385098 -0.351561 4.854958 0.362115 -1.782518 5.114174 -1.059921 1.209468 0.721957 1.007321 0.330013 1.264598 1.842609 -2.265893 -2.368952 -3.819989 0.219390 0.576493 3.538196 -1.394145 -4.917578 -4.795280 -1.075752 1.959503 2.972946 -0.486918 6.764923 -1.791541 1.471100 -8.093782 0.289361 2.591849 -0.361021 2.569387 1.324077 -2.243961 -4.092220 -1.452639 -2.807913 -3.201467 -1.285881 -2.918121 -2.092117 -3.782821 4.574805 -3.015968 0.252774 2.892642 0.078965 3.085011 -1.391235 0.087959 -2.666700 0.421521 2.110453 0.134783 -3.761810 4.043952 -0.262162 9.844592 -1.939268 2.442604 -1.809719 2.395999 -1.393233 -2.889115 -0.469767 5.191829 3.921127 0.718399 -0.967964 -0.302847 -1.364670 2.448748 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -1.530977 2.105687 10.770843 7.257732 -7.441572 -9.490416 -4.576070 -12.241189 5.114576 -0.108738 7.548267 0.264118 1.669685 -2.284025 0.924168 -0.464002 2.270690 -1.955678 0.012904 -3.767918 -3.501018 7.025291 3.645427 -7.571832 1.440426 -9.212757 5.685185 5.717507 3.902121 4.736787 0.785735 -1.510832 -3.105575 5.836156 -2.852039 0.132911 1.914578 1.435493 -5.088363 0.522272 2.693930 3.489213 7.022367 -1.375008 7.029861 2.457663 5.434390 2.876208 -6.998611 -1.013943 -3.667692 9.264599 -5.315263 4.179245 1.380604 2.123314 1.158696 -7.074656 -2.602752 -5.841817 -0.959988 0.126073 -4.218443 0.235569 -5.703217 1.445577 -0.333232 -4.482176 4.379704 0.969834 6.034298 1.390506 -0.163237 -0.810035 -5.580840 1.801407 1.329726 5.417501 4.468919 -2.042548 1.122702 0.961558 -3.434599 -4.322098 2.502263 1.124605 2.842245 -0.645386 -0.291676 -1.620973 0.865654 -2.313000 0.322617 3.919713 -4.397959 1.599036 -3.037375 -2.200266 -6.316660 -4.791995 0.734801 -3.990281 4.183857 3.303336 -3.189186 0.145745 -0.617305 1.744822 -3.520428 -6.635407 0.196260 -2.306744 2.923855 8.786249 -3.232354 -1.781387 -0.733153 -1.955984 -1.956488 5.923340 1.343374 2.265441 6.648209 9.540337 1.542601 -5.435664 -3.761625 -0.135753 5.053870 6.824450 5.452250 -6.823152 -4.358070 -0.187132 -0.883814 -10.963541 0.642848 1.379847 5.898484 2.049774 -6.484794 1.332800 -3.978641 8.246883 2.795628 3.649347 1.474055 -0.653729 -5.986367 7.407381 11.189275 -2.332893 5.495313 -3.041389 -3.806812 5.719362 -4.358692 3.683993 2.681413 -1.795146 0.771141 -3.865385 -1.687688 6.037038 3.142343 2.100981 3.306913 2.267790 -2.396511 -10.743672 -9.402631 2.042319 6.430654 -0.303218 11.061529 -6.757346 -5.599345 -2.222817 8.325470 -2.013118 -2.998754 1.379142 -4.678507 4.670948 -8.020111 -9.050650 11.607527 11.163465 1.978784 0.519196 7.653288 4.278780 -5.824807 -3.918764 -3.528549 2.974374 2.242376 -4.137637 -1.186043 0.601961 -6.635635 -2.862855 1.335720 3.231105 3.336783 -2.269196 -1.994047 1.453510 -7.306164 -4.625398 3.099900 -5.923920 -1.357072 2.154089 -0.542619 1.066743 3.674006 -2.841774 -2.367534 1.047986 -4.874537 1.118382 2.553327 6.778609 2.070895 8.977215 7.148633 0.617394 9.571089 3.687156 -4.197581 13.031048 -2.910766 2.765175 2.129373 3.908019 -0.226522 2.356396 4.223896 -3.635122 -2.878017 -7.689702 1.913974 0.609823 5.375709 -7.703091 -5.858403 -9.322042 -3.289154 4.590053 4.394060 -1.604571 12.154641 -1.256317 0.611549 -14.159205 -1.112179 4.823396 -0.022696 5.403204 3.234683 -5.448860 -11.406886 -2.359250 -5.088583 -0.828979 -2.678592 -4.261837 -4.648327 -3.190020 6.162755 -2.777931 2.147120 8.440645 -1.311766 3.209679 -2.010894 -0.380775 -1.393372 -3.537465 4.136393 1.085733 -7.124581 8.707621 -0.349618 18.347149 -1.118891 4.736592 -4.870591 0.854600 0.663645 -3.143878 -1.736874 9.083651 5.745898 2.123424 -0.020718 1.112657 -3.730645 5.517836 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = 0.231412 0.288353 0.904436 0.217265 -0.512027 -0.854786 -0.291006 -1.375924 0.707381 0.123293 0.345739 -0.059082 0.291896 -0.486351 -0.204979 0.589942 0.253481 0.090998 0.029914 -0.360034 -0.326251 0.640595 -0.068622 -0.235032 0.379262 -1.043821 0.665325 -0.059693 0.543552 0.603429 0.267367 -0.148338 -0.177343 0.495270 0.522843 0.725616 0.418132 0.165682 -0.499795 0.315682 -0.163171 -0.140347 0.288571 0.276763 0.810809 0.291279 0.153320 0.233718 -0.359032 0.049874 -0.254317 0.563410 -0.568201 0.360453 -0.137351 0.194835 -0.144172 -0.467084 0.000277 -0.104955 -0.326381 -0.355913 -0.566529 0.137793 -0.674081 0.110808 -0.242471 -0.254847 -0.358631 0.183655 0.385266 0.335345 -0.058765 0.295175 -0.848438 -0.176157 0.122122 0.352597 0.645803 -0.372328 0.039285 -0.344581 -0.523089 -0.610926 0.795019 0.317788 0.246891 0.142702 -0.020023 -0.233339 -0.396382 -0.098644 0.430076 0.484724 -0.514446 -0.244128 -0.327403 -0.086627 -0.165795 -0.999789 0.165861 -0.321639 0.203658 -0.259898 -0.038959 0.127910 0.229467 0.414354 -0.129155 -0.065459 0.221407 -0.137188 0.027285 0.794286 0.245013 -0.354089 -0.326188 -0.341187 -0.036211 0.488928 0.162375 0.082617 0.750494 0.623536 0.558250 -0.367733 -0.497874 0.257198 0.176096 0.412156 0.394373 -0.675670 -0.381941 0.152201 -0.067618 -0.975712 -0.122023 -0.085060 0.325997 -0.105622 -0.171230 -0.231868 -0.235311 0.266760 0.154745 0.053841 0.053788 -0.038957 -0.454643 0.400912 1.030532 -0.217728 0.232970 -0.484222 0.225450 0.139476 -0.321668 0.021457 -0.298346 -0.344040 -0.034834 -0.142090 -0.047505 0.515019 -0.069469 -0.089373 -0.005794 0.315824 -0.683523 -0.658481 -0.584133 -0.108284 0.868209 -0.201986 0.650830 -0.577445 -0.236661 -0.378840 0.587014 0.089089 0.119550 0.156413 -0.696343 0.445005 -0.343409 -0.751842 1.159889 0.753541 0.579813 -0.104295 0.158368 0.497092 -0.875519 -0.374263 -0.192176 -0.066186 0.095782 -0.958412 -0.649840 0.099882 -0.776719 -0.297417 0.084506 0.292248 0.252243 0.403838 0.336397 0.157999 -0.129979 -0.580866 0.344974 -0.239667 -0.121269 0.132769 0.089492 0.090548 0.408761 -0.308037 0.043390 0.343971 -0.183653 0.179427 0.368510 0.402613 0.049643 0.754799 0.828042 0.046411 0.472484 0.157592 -0.388379 0.488694 0.147986 0.418484 0.251320 -0.116966 0.008317 0.156022 0.539660 -0.354458 -0.289591 -0.605377 -0.373378 0.145631 0.398192 0.302653 -0.481400 -0.511925 -0.194713 0.109133 0.501025 0.032415 0.737595 -0.074200 0.360854 -0.859199 0.055874 0.643972 -0.144290 0.367766 0.272824 -0.435554 -0.612715 -0.243956 -0.496025 -0.811089 -0.396514 0.114159 -0.372223 -0.112962 0.499007 -0.201594 0.018914 0.508727 0.295473 0.479995 -0.499810 0.316992 -0.434205 0.056891 0.554620 -0.112914 -0.510038 0.123900 0.339417 1.348149 0.009405 0.242979 -0.216557 -0.100590 -0.018542 -0.444191 -0.280703 0.674085 0.456308 0.231807 0.122671 -0.089458 -0.085971 0.654111 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = -0.256955 1.193750 5.660972 3.545781 -4.004867 -4.367983 -2.390290 -6.010179 2.064994 -0.364811 3.770080 -0.316705 0.491109 -0.694007 0.279564 -0.455825 0.860321 -0.847717 0.158880 -1.838937 -2.457529 2.764387 1.682169 -3.860630 0.941361 -4.815891 3.491940 3.055923 1.798361 2.467188 0.334021 -0.654750 -1.493879 2.877771 -1.241448 -0.481998 0.808689 0.817206 -2.556290 0.907632 1.736705 1.890918 3.384346 -0.914769 3.103678 1.781618 2.079561 1.510904 -3.736535 -0.049334 -1.811599 4.301204 -2.629107 1.987915 0.533389 1.204021 0.444131 -3.876937 -1.415461 -2.706646 -0.584551 0.212587 -1.748428 0.503468 -3.071545 0.668037 -0.150457 -2.461425 2.985236 0.952404 2.897596 0.801377 -0.176723 -0.065246 -2.280937 1.183800 1.057952 2.964528 2.151491 -1.842811 1.210632 0.959783 -1.766432 -2.014544 0.919208 0.426777 1.689437 -0.911615 0.531130 -1.306072 1.136138 -1.110065 -0.071735 2.105677 -1.687706 1.007619 -2.735686 -1.069470 -3.180583 -2.688620 0.200375 -2.101152 2.456808 2.087303 -2.389816 0.345720 0.364136 1.345673 -1.156615 -3.421499 -0.444354 -1.231105 1.915339 4.871189 -1.217112 -1.485113 -0.574780 -1.110244 -1.070599 2.781290 0.328380 1.125728 3.615416 4.932878 0.580781 -2.742143 -2.084650 -0.435344 1.954927 3.701685 3.202742 -3.305977 -2.233460 -0.621422 -0.281012 -5.499695 0.493065 -0.550343 2.610020 0.539932 -3.028557 0.597228 -2.353807 4.217649 1.125490 2.109018 0.774100 -0.447286 -2.678598 4.086396 5.449895 -1.407485 2.497699 -1.643930 -2.410525 2.312779 -1.417574 1.722818 1.347851 -1.032694 0.545793 -2.219728 -0.847922 3.031870 1.314099 1.169935 2.147507 0.976382 -1.187733 -5.148621 -4.041689 1.368721 2.812110 -0.418158 5.931706 -3.532314 -2.972967 -1.113653 4.392715 -0.931786 -1.159844 0.418622 -2.251878 2.194115 -3.682055 -4.705894 5.277127 5.064429 0.887694 0.391500 3.672312 1.837182 -2.846677 -1.974662 -1.990182 1.563271 1.253942 -1.962247 -0.742152 0.477980 -2.910534 -1.040931 0.957287 1.775477 2.142837 -1.512728 -1.677268 0.671664 -4.111231 -2.431622 1.839039 -3.597532 -0.531620 1.246929 -0.502514 0.662352 1.861047 -1.464683 -1.511684 0.089381 -2.185088 0.667462 1.334673 3.586282 0.577283 4.087512 3.507072 0.580951 4.330468 2.222047 -2.101163 6.524680 -1.448905 1.298522 1.239558 1.747225 -0.527972 1.110531 2.443745 -1.879957 -1.493503 -4.146565 1.018968 0.161054 2.469901 -3.886670 -2.324951 -4.612981 -2.034235 2.533313 2.192447 -0.222858 6.124573 -0.088592 -0.003951 -6.411875 -0.851552 2.330110 0.045914 2.956628 1.606831 -2.843001 -6.022312 -1.256568 -2.754579 -0.009198 -1.529334 -2.084329 -2.681775 -1.074275 2.899982 -0.475802 1.304524 4.505343 -0.725755 1.029658 -1.053206 -0.459413 -0.312566 -2.081309 2.034640 0.611743 -3.582780 4.341530 -0.119549 9.132763 -0.304549 2.224110 -2.762071 -0.381586 0.869321 -0.907084 -0.905885 4.548401 2.536373 1.621028 0.036704 0.575887 -2.080430 2.933879 -PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = 0.143921 0.644997 2.291287 1.199776 -1.651929 -1.716934 -0.885027 -3.268112 1.236497 0.091280 1.420670 -0.138629 0.398695 -0.821092 -0.135023 -0.072449 0.437168 -0.208946 0.021654 -0.744419 -0.706243 1.327206 -0.220021 -1.207705 0.405434 -2.257308 1.304635 1.153910 1.014245 0.533077 0.244011 -0.307752 -1.022503 1.101691 -0.440454 -0.012336 0.917232 0.340405 -1.336091 -0.024664 0.363992 0.764942 1.262355 -0.578749 1.521621 0.304332 0.648073 0.755299 -1.186206 -0.114781 -0.169809 1.632405 -0.545268 0.987689 0.630856 -0.015303 -0.082621 -1.416100 -0.292613 -0.266276 -0.101783 -0.226982 -0.532700 0.108460 -1.057143 0.150493 0.392078 -1.028688 1.050110 -0.121540 1.014178 0.109825 -0.040021 -0.119035 -1.290100 0.297092 0.642655 0.934476 0.887578 -0.163970 0.891518 -0.049828 -0.884628 -0.929219 0.556231 1.198688 0.623255 -0.112928 -0.373590 -0.425166 0.537401 -0.752888 0.507003 0.891647 -1.047310 -0.215849 -1.411321 -0.457910 -1.332672 -1.506665 0.342838 -0.660247 1.107465 0.287038 -1.000394 0.346134 0.968853 0.508019 -0.259364 -0.991583 -0.025988 -0.631771 1.462893 2.398067 -0.123887 -0.867992 -0.664313 -0.799838 -0.751166 0.832017 0.152385 0.212879 1.774149 1.895716 0.707520 -1.276068 -1.312706 0.463268 0.601896 1.408528 0.886128 -1.969338 -0.551453 0.070956 -0.363374 -2.388719 -0.146382 -0.629056 1.246687 -0.366922 -0.727981 0.123687 -0.821217 1.546700 0.255422 0.288866 0.163382 0.111759 -1.113674 1.386441 2.015238 -0.160504 0.687450 -0.956319 -0.561718 0.250762 -0.257952 0.640068 0.490295 -0.409294 -0.019721 -0.749132 0.045133 1.134224 0.102660 0.357009 0.156215 0.642277 -1.181446 -2.067522 -2.006420 0.523605 1.262136 -0.168421 2.305519 -1.521382 -1.441801 -0.544146 2.151078 -0.317007 -0.388509 0.726290 -1.357672 1.111612 -0.322836 -1.846050 2.033356 2.506236 0.487987 -0.222545 1.681720 0.319234 -1.838299 -0.919013 -0.673937 0.304625 0.750819 -1.603910 -0.492835 0.281730 -1.297639 -0.570544 0.369140 0.684547 0.935515 0.128964 0.188361 0.248242 -1.171063 -1.348634 1.199203 -0.674386 0.205432 0.438257 0.128268 0.138579 1.218900 -1.036923 -0.702549 0.187073 -0.617599 0.702763 0.653134 1.041583 -0.120485 1.763216 1.138006 0.065620 2.252879 0.553296 -0.774292 2.418425 -0.380508 0.669363 0.604241 0.323081 -0.320629 0.579685 0.899619 -0.916547 -0.405130 -1.681197 -0.220866 -0.228619 0.932687 -1.278209 -1.130149 -1.966379 -0.783276 0.411980 0.575715 0.055842 2.357553 -0.292022 0.177442 -2.805970 -0.298959 0.889755 -0.147181 1.160821 0.438819 -1.165391 -2.381629 -0.245912 -1.348366 -1.396107 -0.649609 -0.849774 -1.107912 -0.796528 1.576848 -0.040078 0.256193 1.964843 0.075343 0.500461 -1.205579 0.189927 -0.320207 -0.722381 0.786488 -0.192687 -1.515724 1.329059 0.153066 3.920398 -0.077202 0.842998 -0.792245 0.095806 0.151298 -1.200141 -0.433934 1.699552 0.874849 0.740456 -0.425317 0.073761 -1.012025 1.379038 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 2.134066 4.430579 9.130712 1.319855 -10.694283 -13.445620 -4.157078 -17.133954 5.124995 0.124410 3.144276 -0.476322 -0.556704 -4.438107 0.196088 8.925687 3.586880 -0.898101 -1.141188 -5.747237 -7.259226 4.987336 -2.717248 0.303834 5.468847 -10.696503 6.746767 1.809572 5.555004 4.513152 7.206286 -3.238427 -5.251452 5.739735 7.192597 13.361163 3.782879 -0.743607 -9.192876 6.988472 -2.272592 -0.572570 7.136293 1.198802 11.037447 5.930555 5.686298 6.870572 -7.594082 1.722306 -7.733530 13.027050 -4.922484 5.512786 0.429865 0.842617 -2.241205 -7.185085 -2.262664 5.802503 -9.628866 -4.824137 -6.460684 0.845039 -9.296119 -0.357406 -4.637285 -2.187081 -0.300614 3.736114 6.503378 1.762367 -2.445991 4.268607 -8.978720 -1.273802 1.940111 7.723541 7.404809 -5.821665 4.565926 -0.844787 -4.541800 -5.727264 5.960222 2.306978 4.105705 -1.588873 -2.301756 -4.499753 -6.461668 -4.447788 5.219075 2.542021 -7.642374 -2.284746 -8.256689 -2.772973 -8.226028 -12.661324 2.880725 -0.252237 4.980450 -5.020942 2.308789 -1.482232 3.439660 1.703001 -0.860793 -0.122486 1.617691 -0.292978 3.177654 12.328376 2.193630 -3.798206 -3.832731 -5.413415 -4.442935 4.577252 4.608686 -0.692609 7.912341 10.582721 12.992383 -2.477029 -7.110162 -1.107238 1.704204 6.871077 5.894064 -6.228726 -4.026976 2.497844 -0.428845 -10.297146 -0.454548 -0.118048 6.171443 2.316188 1.100551 -5.898185 -2.801281 5.401257 -3.165974 -1.402795 2.960895 -1.522348 -5.179488 8.130529 13.750022 -0.448437 2.900102 -7.461866 3.582193 1.553962 -2.687162 0.004972 3.038197 -5.344460 -2.115027 -0.114831 -1.995556 3.652280 2.969465 -3.967544 1.930864 5.248530 -9.578110 -8.383462 -5.867767 2.482184 7.409420 -4.726199 6.889453 -6.780885 -2.152053 -5.752382 8.411721 0.682724 -0.811402 3.610129 -8.719665 4.938990 0.232584 -4.925249 14.916104 14.126960 4.838902 -2.920757 4.166001 8.881364 -17.019292 -5.969839 -4.740880 -1.134984 0.959667 -13.788267 -6.473551 1.502656 -8.745414 -2.323356 0.309489 4.670930 6.720697 6.964393 2.042792 1.268362 -4.839616 -6.991374 4.484161 -2.841459 -0.887215 4.752642 0.181057 1.132322 5.615955 -4.100329 -0.643109 3.093988 -3.905500 4.013493 3.755206 8.438334 -0.920703 8.126144 6.470044 2.503754 13.409962 2.956935 -6.524677 6.578337 3.617988 6.528827 2.484772 -2.097905 0.252257 1.176907 4.036851 -4.650189 -5.779388 -6.046958 -2.176510 0.336008 5.250924 2.458923 -6.812603 -11.655390 -1.941411 2.106546 3.776919 0.222918 7.594036 -0.336228 2.313477 -11.976720 0.216386 5.602176 0.855802 3.479493 1.720247 -6.054087 -3.358979 -0.969483 -8.949201 -9.904213 -2.410154 2.241334 -5.149405 -3.431772 9.000733 1.288009 -1.524810 9.426054 -0.686641 4.470448 -5.141844 1.903922 -3.826451 -3.401356 10.554948 -0.643402 -6.691544 5.055786 3.481337 19.946550 2.366750 2.181162 -1.374664 -4.220728 3.930269 -5.816465 -2.960843 7.411765 4.165231 3.107908 2.138491 -0.322172 -0.303853 6.817283 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = -0.485601 -0.008910 2.341053 0.803955 -1.728138 -2.051420 -0.894892 -3.482611 1.320466 0.265740 1.893401 0.175449 0.618740 -1.318538 0.130350 0.312596 0.490602 -0.875199 0.236798 -0.882434 -0.026636 1.451636 0.317772 -0.845597 0.202356 -2.307468 0.979390 1.009922 1.142299 1.076358 0.261703 -0.661988 -1.152540 1.130104 0.044897 0.680577 1.274716 0.383638 -1.332799 0.078501 -0.112521 0.165062 1.307296 -1.001712 2.437454 -0.230029 1.063043 0.718066 -1.600028 -0.515144 -0.381968 1.874596 -1.419986 0.825773 0.707751 -0.322426 -0.580683 -1.060117 -0.748950 -1.305059 -0.309104 -0.679657 -0.526235 0.212161 -0.990504 0.529601 0.093900 -1.003583 0.748441 -0.176077 1.205651 0.672032 0.536082 0.985809 -1.496717 0.351350 0.673188 1.148820 0.863199 -0.552528 0.729173 -0.395784 -0.478913 -0.861688 0.591678 1.182615 0.635863 -0.110539 -0.727187 0.654468 0.358589 -0.542901 0.399370 0.680954 -1.350731 -0.478866 -0.879955 -0.369270 -1.145552 -1.811490 0.293552 -0.805500 1.073044 0.465004 -0.634972 0.155057 -0.345046 0.583264 -1.296256 -1.261563 0.230013 -0.598728 1.034794 2.154177 -0.967285 -0.163859 -0.786914 -0.374974 -0.269713 0.790516 0.086967 0.775380 1.341539 2.307653 0.833861 -1.727568 -1.482278 0.523150 1.519589 1.573246 0.867563 -1.619633 -0.690744 0.129605 -0.808927 -2.593705 -0.462449 -0.046539 1.465469 0.233704 -0.817637 -0.362104 -0.921131 2.379630 0.873684 0.334826 0.029266 0.304363 -1.639267 1.768976 2.068073 -0.338470 1.347463 -0.513996 0.043502 0.480439 -0.991743 0.787409 0.714372 -0.387077 -0.085233 -0.917707 -0.668125 1.144579 1.011999 1.058909 -0.565809 0.912870 -0.967442 -2.641572 -2.110249 0.065995 2.001449 -0.132823 1.882395 -1.693228 -1.785361 -0.307414 2.115254 -0.109714 -1.005222 0.603522 -1.518963 1.356003 -1.175840 -2.126662 2.812156 3.398088 1.126562 0.413544 1.696325 1.134694 -2.488292 -0.421397 -0.233315 0.416871 0.111266 -2.696837 -0.961400 0.412840 -1.603573 -1.194396 0.271561 0.817887 0.374272 0.717250 0.580356 1.311929 -0.706482 -0.748239 1.075263 -0.862209 -0.540922 0.246807 0.320424 0.962271 0.924353 -1.402641 -0.012333 0.711333 -1.210505 0.791111 0.831932 1.283363 0.565850 1.999658 1.581028 0.036419 2.318769 0.300406 -0.983957 1.827029 -0.274981 0.943743 0.739415 0.104805 -0.031868 0.396106 1.084977 -1.122999 -0.427741 -1.684560 -0.632477 0.170105 1.755386 -0.630470 -2.234643 -1.904291 -0.261546 1.045039 0.397344 -0.300627 2.557445 -0.358451 0.429092 -3.246866 -0.340147 0.864390 -0.021537 1.269884 0.542145 -0.978084 -2.755398 -0.521479 -1.379067 -1.490959 -0.732560 -0.671034 -0.710947 -1.160274 2.211688 -0.398630 -0.062843 1.127789 0.212128 1.435348 -0.408437 0.163034 -0.671403 -0.220974 0.697342 0.155956 -1.606539 1.824344 0.419992 4.524355 -0.241257 0.423886 -0.750953 0.535593 0.114417 -0.856600 -0.148614 2.112802 1.649444 0.792916 -0.712288 -0.164116 -0.946323 1.331099 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = 0.193053 0.250853 0.731634 0.029911 -0.289027 -0.954053 -0.185716 -1.293251 0.511862 0.190294 0.557183 -0.009252 0.497479 -0.229582 -0.001666 0.423295 0.337664 -0.057289 0.097604 -0.352684 -0.152893 0.748031 -0.166383 0.127376 0.132409 -0.736850 0.229964 0.341106 0.547982 0.422535 0.232789 -0.091709 -0.210133 0.256878 -0.151640 0.220537 0.223925 0.193699 -0.647635 0.109365 -0.255226 -0.037736 0.482780 0.021551 0.594107 0.138260 0.296042 0.283726 -0.060140 -0.227735 -0.257642 0.634091 -0.202691 0.263397 -0.171890 -0.240181 -0.041278 -0.085697 0.001856 0.018973 -0.118457 -0.086289 -0.356834 0.071223 -0.430112 0.094156 -0.227200 -0.422102 -0.139029 -0.131335 0.358782 0.097007 -0.023893 0.076032 -1.042873 -0.018182 0.138076 0.228887 0.405091 -0.028529 0.090726 -0.196042 -0.408519 -0.470502 0.604079 0.647448 0.207386 0.256468 -0.566609 -0.154939 -0.201696 -0.085422 0.422900 0.250027 -0.394052 -0.008081 -0.202770 -0.153539 -0.374564 -0.805882 0.236349 -0.161885 0.246103 -0.311381 0.296470 0.008576 -0.083555 0.126051 -0.263805 -0.339040 0.195713 -0.252712 0.029619 0.880558 -0.175547 -0.193022 -0.355334 -0.172436 -0.193535 0.389774 0.228401 0.052524 0.409893 0.443659 0.301885 -0.492806 -0.413485 0.300195 0.322676 0.356497 0.238691 -0.454560 -0.287452 0.185409 -0.426898 -0.945277 -0.245712 0.204946 0.426205 -0.282025 -0.024220 0.096348 -0.322709 0.345909 0.383253 -0.003254 0.191767 0.017054 -0.434893 0.314670 0.766135 -0.169798 0.438487 -0.322688 -0.035770 0.188449 -0.221054 0.213282 0.072450 -0.280256 -0.217781 -0.067638 0.068680 0.431300 0.175704 0.206571 -0.091450 0.294765 -0.559041 -0.567451 -0.796403 -0.082289 0.672131 -0.021738 0.610496 -0.468854 -0.378433 -0.062751 0.582096 -0.087732 -0.239103 0.339854 -0.555569 0.382832 -0.567828 -0.590555 0.952832 0.918035 0.548799 -0.110937 0.325987 0.378969 -0.714813 -0.374454 -0.062019 0.125008 0.028329 -1.180827 -0.408181 0.066354 -0.623590 -0.193008 -0.059979 0.274344 0.031446 0.452893 0.644765 -0.193191 -0.228008 -0.366958 0.349082 -0.180317 -0.036802 0.081069 0.072005 -0.042474 0.283225 -0.405118 0.064777 0.399644 -0.374364 0.227205 0.185803 0.232326 0.071259 0.808573 0.585560 -0.088869 0.717545 -0.092970 -0.370836 0.572905 -0.142050 0.304769 0.047639 0.200074 -0.031801 0.175474 0.356233 -0.315066 -0.350962 -0.564800 -0.323454 0.287497 0.335225 0.341152 -0.608661 -0.708258 -0.034809 -0.052965 0.682078 -0.057062 0.774131 -0.297974 0.352334 -0.868346 0.161654 0.105771 -0.120711 0.322675 0.190716 -0.366488 -0.326244 -0.117659 -0.630290 -0.856717 -0.115937 -0.416530 -0.257652 -0.394359 0.399810 -0.409187 -0.091737 0.307387 -0.012607 0.478275 -0.339969 0.072670 -0.399523 0.196351 0.626634 -0.114527 -0.439232 0.230931 0.124810 1.347984 0.050717 0.386669 -0.127364 0.173779 -0.041419 -0.555989 -0.262761 0.705277 0.516738 0.123257 -0.065043 -0.064823 0.106120 0.347598 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = -1.306114 -0.373486 3.792529 1.322474 -2.690278 -3.891458 -1.716328 -6.440292 3.359415 1.330066 3.734157 0.726524 2.328169 -2.751710 0.063920 0.929346 1.848752 -1.875225 0.384979 -1.872513 -0.228637 4.433844 0.738968 -0.724980 0.484807 -4.504142 2.181934 0.600051 1.970639 2.806600 1.331774 -0.457302 -1.760568 1.590101 0.757331 2.834515 1.567518 1.058391 -1.957437 -0.301529 0.295629 -0.826151 2.526061 -0.317800 4.639708 -0.673697 1.751463 0.795520 -2.250866 -1.717442 -1.144727 2.619814 -2.918658 1.144124 0.435428 -0.424999 -0.077115 -1.430881 -0.895955 -2.203408 -0.819337 -1.800144 -1.998715 0.602600 -1.903566 1.387812 -0.985599 -0.874337 -0.372093 -1.121726 2.242296 1.123390 0.738415 1.512928 -3.953460 -0.037849 0.374615 0.917771 2.224961 0.135468 -0.478636 -1.517182 -1.770480 -2.355675 2.828787 2.096391 0.451365 0.622512 -1.921753 0.849670 -0.840684 -0.619083 1.390729 1.413654 -3.186340 -0.953765 0.261577 -0.997856 -1.123811 -3.203159 1.058709 -1.672238 1.089566 0.713677 -0.798414 -0.345942 -1.354619 0.391106 -2.752497 -1.929382 1.191137 -1.341369 0.493877 3.794620 -1.812002 -0.476619 -2.198574 -0.661195 0.472949 2.028412 0.811737 1.460524 2.792301 3.318079 1.827071 -2.884400 -2.102243 2.001788 3.014985 1.528925 0.949919 -2.541052 -1.639001 1.100952 -1.461111 -4.490069 -1.934645 1.140476 2.748136 0.546656 -1.431032 -0.069678 -1.080249 3.038331 2.391387 0.331364 0.186683 0.710818 -3.176308 2.447202 4.158132 -0.664169 2.295146 -1.121530 -0.162823 2.404961 -2.558217 1.021561 0.676737 -0.544091 -1.234353 -1.257349 -0.387544 2.187172 0.813794 1.656785 -1.568180 2.022901 -1.546913 -4.101549 -4.738345 -0.540817 4.384475 1.015739 3.444222 -3.118918 -1.569991 -0.230150 3.195839 0.462695 -2.121567 1.295823 -2.768453 2.202270 -3.888661 -3.812982 6.198656 5.257579 2.725224 0.675307 2.192231 2.555981 -4.034262 -0.908080 -1.082304 1.327210 0.407551 -4.530398 -1.141690 0.702731 -3.481123 -2.746755 -0.175817 1.408805 0.610195 0.565600 2.202218 0.975720 -0.430850 -1.355094 2.220571 -1.117282 -1.713844 -0.258922 0.390227 1.098756 1.498419 -1.392149 0.908596 1.171067 -1.842052 0.696650 1.625686 1.779533 0.976863 3.860550 4.205794 -0.957295 2.449163 -0.431181 -1.586044 2.931930 -0.740856 1.276637 0.558781 0.454421 1.131075 0.467893 2.298146 -1.779163 -1.185095 -2.694670 -0.900261 0.970260 2.901107 -1.131434 -3.945732 -4.016952 -0.019276 0.936614 2.522774 -0.424405 4.914359 -1.573198 0.976381 -5.705727 0.149988 2.356025 -0.151070 1.924199 0.788624 -1.543162 -3.088835 -1.226066 -2.809885 -2.281876 -1.050374 -0.958995 -1.536634 -2.347360 3.924902 -2.037518 -0.196997 1.690845 0.291848 3.077130 -0.248868 0.413781 -2.373054 0.717541 0.906638 0.269266 -2.325759 3.167682 0.652030 6.860212 -0.751939 1.132344 -0.885248 2.330133 -1.237048 -2.832615 -0.581371 3.651683 3.510511 0.568589 -0.428309 -0.409181 -0.585086 2.324648 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.067164 0.179762 1.294961 0.271986 -0.920172 -1.447846 -0.518703 -2.186732 1.055829 0.382805 0.941779 0.080372 0.704240 -0.769994 -0.141610 0.664490 0.597683 -0.275521 0.120904 -0.689873 -0.436541 1.193595 0.056444 -0.121343 0.410737 -1.487752 1.017416 -0.018560 0.655963 1.053879 0.529355 -0.156792 -0.509056 0.640414 0.681999 1.173636 0.562003 0.367828 -0.630620 0.326832 -0.063700 -0.454174 0.697536 0.284387 1.430291 0.272288 0.328534 0.369727 -0.675762 -0.347230 -0.362395 0.665227 -1.030946 0.428935 -0.154811 0.040414 -0.081438 -0.525548 -0.102291 -0.413457 -0.424335 -0.784342 -0.860561 0.278108 -0.902765 0.343418 -0.558197 -0.392239 -0.512696 -0.106191 0.658843 0.425016 -0.005107 0.624292 -1.390328 -0.247998 0.159676 0.382241 0.941102 -0.320727 -0.191853 -0.587293 -0.839655 -0.947716 1.142271 0.581221 0.308234 0.258180 -0.424954 -0.015220 -0.501309 -0.095608 0.697085 0.648421 -0.897349 -0.401997 -0.145755 -0.280830 -0.368720 -1.505245 0.404465 -0.487652 0.363890 -0.150450 -0.229413 -0.083119 -0.231743 0.346282 -0.632236 -0.380956 0.386005 -0.437315 0.094235 1.234662 -0.114535 -0.375181 -0.750242 -0.459005 0.247534 0.740977 0.374230 0.231223 1.080249 1.017918 0.741566 -0.804634 -0.811275 0.490855 0.608432 0.499455 0.474650 -0.888992 -0.641704 0.380544 -0.457524 -1.489013 -0.474921 0.123980 0.703783 -0.057748 -0.283471 -0.142610 -0.458113 0.546422 0.622637 0.195012 0.080579 0.056018 -0.926554 0.661529 1.435196 -0.291813 0.612787 -0.542540 0.164235 0.603975 -0.666742 0.108217 -0.078603 -0.440540 -0.410969 -0.223787 -0.105289 0.757411 0.085759 0.230935 -0.242238 0.631043 -0.829231 -1.080512 -1.224593 -0.160926 1.634087 0.122962 0.969725 -1.068568 -0.247128 -0.257114 0.976899 0.271060 -0.346177 0.328313 -0.906778 0.703755 -1.038903 -1.183829 1.935921 1.368880 1.008634 0.015942 0.299150 0.853358 -1.383480 -0.452179 -0.380276 0.210876 -0.011269 -1.552803 -0.746055 0.225930 -1.232375 -0.650182 -0.015085 0.556616 0.365548 0.347086 0.704785 0.214175 -0.038092 -0.734867 0.610551 -0.306667 -0.451185 0.077600 0.093414 0.273738 0.458340 -0.362349 0.275853 0.431482 -0.448026 0.270844 0.615051 0.584663 0.197685 1.368811 1.337888 -0.264191 0.497138 -0.063156 -0.537362 0.775512 0.011584 0.645895 0.292551 0.092425 0.270698 0.139583 0.951589 -0.566259 -0.497024 -0.882749 -0.565318 0.390818 0.823607 0.171714 -1.028875 -1.223608 -0.018946 0.155732 1.043695 -0.084430 1.359658 -0.261053 0.539672 -1.431875 0.132490 0.859803 -0.193897 0.571484 0.329033 -0.588327 -0.721823 -0.426134 -0.979191 -1.026329 -0.416674 0.116501 -0.559156 -0.328010 0.858502 -0.474929 -0.123948 0.518173 0.216189 0.895960 -0.311486 0.323095 -0.771873 0.230808 0.739582 -0.083666 -0.760537 0.659228 0.469509 2.123911 0.014481 0.380135 -0.169755 0.305216 -0.211583 -0.842000 -0.379395 1.146735 0.980886 0.266430 0.080557 -0.126366 0.065739 0.852702 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.069018 -0.313090 2.366494 0.585827 -1.213151 -2.534454 -1.008294 -4.958251 2.804135 1.227334 2.224311 0.621792 1.918817 -1.822284 -0.462423 0.804712 0.890571 -1.336468 0.491451 -1.145703 -0.125219 4.210883 -0.115340 0.243725 -0.012591 -3.929474 1.821736 0.324469 2.265778 2.243899 0.921952 -0.202209 -0.798175 0.918456 0.025277 1.581187 0.417569 0.908936 -1.602132 -0.252501 0.216957 -0.472947 1.792336 -0.033086 2.946110 -0.702266 1.028814 0.413147 -0.129184 -1.192747 -0.961809 1.389100 -1.552838 0.602565 -0.490546 -0.757111 -0.253572 -0.443948 -0.465678 -0.272060 -0.482129 -0.801047 -1.445326 0.507456 -1.554852 0.936947 -1.169469 -0.624753 -0.690309 -1.126044 1.557120 0.915470 0.560799 0.120187 -4.071624 0.078599 -0.009748 0.197192 1.499831 0.556847 -0.559613 -0.937012 -1.559967 -1.729515 2.280444 2.739078 -0.257135 0.590771 -1.408396 -0.178674 -1.012022 -0.209665 1.348708 1.180924 -2.118364 -0.386097 -0.441929 -0.410465 -0.263737 -2.315534 0.902009 -1.164455 0.862418 -0.167213 0.068925 -0.093661 0.436657 -0.133931 -1.315173 -1.398227 0.602174 -0.940467 0.751190 3.346591 -0.793074 -0.602633 -1.891231 -0.438479 -0.192117 1.351065 0.705812 0.742042 2.285090 1.790873 1.311149 -2.141261 -1.478514 2.373205 1.487360 0.802342 0.284666 -1.857049 -0.897964 0.625150 -0.546781 -3.259906 -1.445009 0.720292 1.490016 -0.990761 0.025298 0.371224 -0.606420 1.680396 2.167204 -0.592359 0.579583 0.661351 -1.970150 1.671881 3.509483 0.040801 1.011149 -1.868575 -0.566701 2.175007 -1.770246 0.964405 0.043690 -0.026681 -1.212008 -0.922392 0.781953 1.479921 -0.574630 1.219244 -0.825761 1.395156 -1.003931 -2.356495 -3.197137 -0.548853 2.906903 1.102730 2.731902 -2.025775 -0.560858 0.240464 1.882989 1.146536 -0.937491 1.514399 -2.131198 1.496932 -3.190439 -2.646164 3.876736 3.510817 2.041182 0.150638 1.309638 1.836392 -2.162003 -0.892577 -0.676771 1.051486 0.731366 -3.575912 -0.602336 0.333741 -2.200152 -2.042517 -0.080704 0.789302 0.759881 0.471911 1.982107 -0.565966 -0.315021 -1.678076 2.423537 -0.831019 -0.852242 -0.390536 0.458409 -0.228421 1.148533 -0.889736 1.078685 1.043898 -0.445480 0.970953 1.215991 0.270794 -0.168341 1.867500 3.026377 -1.132755 1.450988 -0.463330 -0.508949 2.313124 -0.614404 0.596548 0.484523 0.173768 0.529099 0.590835 0.992453 -1.267035 -0.631955 -1.762018 -0.303629 0.763100 1.534844 -0.163216 -2.434877 -2.682700 -0.177821 -0.033868 2.097750 0.425184 3.495161 -1.570309 0.945360 -3.683619 0.389239 1.376286 0.122712 1.754960 0.503635 -0.941999 -0.740852 -0.832103 -1.762172 -1.820150 -0.875034 -1.726212 -1.314218 -1.804258 2.210622 -1.682252 -0.068554 1.262263 -0.092040 1.969795 -1.468100 0.344199 -2.245164 0.866215 0.404715 0.090892 -1.389116 1.492892 -0.155913 3.998317 -0.809323 1.124459 -0.453587 2.324900 -1.520089 -2.775793 -0.358131 2.590375 1.645756 0.169558 -0.450042 -0.752282 0.165213 1.207155 -PE-benchmarks/eulerian-path-and-circuit.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.336518 -0.067236 0.736178 0.074332 -0.179702 -1.009437 -0.361848 -1.225901 0.517390 0.248244 0.964758 -0.044424 0.593438 -0.357742 0.250592 0.383362 0.356364 -0.485088 0.186792 -0.330523 0.002583 0.938946 0.271947 0.047203 0.049500 -0.805226 0.108131 0.285777 0.242200 0.583709 0.166033 -0.069145 -0.093735 0.270604 -0.164938 0.598232 0.387381 0.239855 -0.299863 0.007313 -0.166573 -0.005343 0.437219 -0.107554 0.904546 0.159172 0.483934 0.189979 -0.350738 -0.462370 -0.331448 0.785674 -0.610150 0.132715 -0.126724 -0.155367 0.127711 -0.265959 -0.299226 -0.727267 -0.153019 -0.105441 -0.474980 0.101945 -0.309709 0.379730 -0.074196 -0.204863 -0.048316 -0.013056 0.571293 0.260674 0.122709 0.451238 -0.740516 0.089594 0.074866 0.199472 0.343271 -0.305721 -0.153411 -0.140737 -0.263378 -0.498504 0.796971 0.381866 0.305011 0.217690 -0.471349 0.324801 -0.320212 -0.132301 0.234211 0.255289 -0.340384 -0.085375 0.502782 -0.192491 -0.407770 -0.497943 0.181779 -0.358150 0.134288 0.288578 0.346734 -0.151462 -0.701201 0.181489 -0.835912 -0.602837 0.340906 -0.288698 -0.200165 0.574935 -0.639094 0.196996 -0.246006 -0.042447 0.097366 0.580024 0.248116 0.381391 0.370243 0.689519 0.120366 -0.521360 -0.405062 0.218135 0.933980 0.343025 0.235820 -0.602309 -0.440667 0.216275 -0.578606 -0.898197 -0.464687 0.541141 0.605409 0.098540 -0.597661 0.431225 -0.185570 0.677274 0.629668 0.104738 -0.002481 0.059170 -0.707568 0.552854 0.869496 -0.339605 0.761498 -0.089067 -0.038607 0.481186 -0.611203 0.182614 0.425156 -0.180504 -0.259910 -0.214646 -0.140855 0.443010 0.657654 0.567449 -0.286663 0.419169 -0.286780 -0.819069 -1.010103 -0.190575 0.822400 -0.099661 0.778424 -0.533887 -0.565634 -0.014873 0.740864 -0.245363 -0.550549 0.098930 -0.530335 0.393098 -0.973367 -0.754952 1.392196 1.069711 0.775894 0.246947 0.564473 0.750176 -0.716355 -0.038555 -0.034847 0.396144 -0.024197 -1.098637 -0.324923 0.017300 -0.742278 -0.555732 -0.311118 0.327755 -0.343046 0.421976 0.427445 0.123086 -0.285636 0.102101 0.088327 -0.354803 -0.368835 -0.062513 0.024617 0.182486 0.148252 -0.457172 0.329970 0.461466 -0.731592 0.087821 0.350377 0.415607 0.523305 1.050830 0.914379 -0.157716 0.738155 -0.167454 -0.353543 0.381075 -0.089994 0.233995 -0.045508 0.314705 0.274972 0.033826 0.468131 -0.275240 -0.462183 -0.648703 -0.086330 0.477851 0.560085 0.197085 -0.863727 -0.848410 -0.020510 0.345347 0.881031 -0.230837 0.983848 -0.272599 0.281719 -1.232211 0.136659 0.169349 -0.118841 0.127085 0.195946 -0.232797 -0.880650 -0.215258 -0.583963 -0.862410 -0.217464 -0.458185 -0.195135 -0.720816 0.721831 -0.677604 -0.109098 0.247072 0.252420 0.591181 0.265153 -0.059194 -0.548930 0.315192 0.415691 -0.002133 -0.491591 0.563330 0.138549 1.639368 -0.234885 0.386222 -0.281226 0.503348 -0.161141 -0.323609 -0.040440 0.801761 0.910596 -0.087208 0.059350 0.015860 0.016929 0.422911 -PE-benchmarks/eulerian-path-and-circuit.cpp___GLOBAL__sub_I_eulerian_path_and_circuit.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -2.939244 2.646933 17.075330 10.750914 -8.253982 -11.958699 -6.322213 -14.305973 7.751603 -0.571022 9.452555 2.058338 1.301882 -1.403857 1.302432 -1.923930 1.251592 -3.391605 0.105444 -4.393151 -2.355932 11.863010 8.217683 -13.784453 0.635556 -16.654943 10.640558 7.324589 6.745418 10.340542 0.227159 -1.818980 -2.119160 9.203771 -5.041175 -1.136680 0.994944 2.032446 -5.512374 -0.126333 6.123276 7.978291 8.710888 -0.201241 9.753007 3.870919 8.218941 2.340370 -7.530832 -0.692759 -8.110688 13.887904 -9.353096 5.813829 -0.026871 6.200934 1.955985 -11.000090 -3.783679 -12.578575 -1.004641 3.424737 -7.384287 -0.250391 -9.566637 2.629973 -1.874797 -4.889305 4.808851 1.937278 9.371331 2.886138 1.208451 -3.908706 -9.148505 3.595470 -1.364564 8.703354 7.104934 -4.207778 -2.746198 2.771295 -3.833768 -6.565019 2.888478 0.121984 1.695662 -1.587593 3.821767 -2.808641 -2.212809 -2.263384 -2.935394 7.140163 -5.666040 5.851327 -3.074867 -1.550064 -5.540813 -2.514025 0.161400 -7.985947 4.205247 6.869614 -3.250813 -1.106568 -1.524357 1.709060 -4.347234 -9.994259 1.177155 -1.893411 1.922101 10.671073 -5.267772 -0.354614 1.709189 -1.128013 -1.577233 11.367215 0.252378 4.862877 8.004124 13.705246 0.871483 -7.355891 -2.616043 1.406936 8.082778 9.577377 7.864489 -9.615157 -6.796713 -2.361721 2.825431 -14.632188 4.500293 5.475626 7.612083 4.587521 -11.627463 2.543533 -4.903305 12.428500 5.850463 6.117958 2.721570 -1.222320 -9.000625 11.124391 20.280292 -3.779068 7.578286 -5.750773 -6.833448 12.420720 -9.107203 7.350789 2.108803 0.205309 3.489547 -7.265300 -2.485231 10.345877 4.654170 4.666417 8.685343 1.635174 1.133493 -16.611647 -12.014668 0.801955 8.515649 -1.027370 17.170321 -8.287073 -5.627571 -3.307590 11.109512 -2.468275 -2.697716 0.089669 -5.659039 6.192336 -16.459882 -13.461016 16.991813 15.566682 0.258363 1.186011 10.324677 9.597459 -3.057744 -4.774611 -4.632778 5.334121 2.510500 -0.111803 0.779465 -0.245341 -8.928486 -5.279684 3.351346 3.469289 5.065226 -5.975179 -6.706619 3.067794 -12.471552 -7.996539 3.585780 -11.364785 -4.290092 2.686061 -0.343763 0.293964 3.708493 -2.007939 -2.175890 4.827040 -6.088806 0.182892 4.034746 9.030009 3.891758 9.823865 9.976672 2.081955 11.315139 8.073184 -4.769295 22.209015 -4.400442 1.632034 3.631363 5.842474 0.466203 4.761318 3.161351 -4.857469 -3.401162 -12.432348 7.371058 0.168920 7.744357 -12.628677 -8.242835 -10.901174 -5.451771 9.002131 6.376034 -2.581959 19.946799 -1.186041 -0.343742 -20.774174 -1.555186 9.738968 0.619739 7.563985 6.437905 -6.892169 -16.468597 -4.426060 -3.439266 4.325812 -5.209229 -8.396735 -6.980968 -4.217689 7.652188 -6.896863 6.098908 12.163440 -1.477011 4.347465 -3.097379 -1.014429 -3.526991 -5.365313 3.461782 3.593022 -10.325880 12.729186 -3.438521 22.950597 -5.896140 8.185449 -8.727338 4.121594 -1.176457 -2.624600 -1.569913 14.600075 6.856974 2.176665 1.263605 1.147046 -5.765039 7.323243 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = -0.109216 0.021243 1.180119 0.587782 -0.296381 -1.064571 -0.537932 -1.481986 1.034470 0.236067 0.724312 0.139894 0.575696 -0.476525 -0.164336 0.108998 0.167835 -0.473955 0.193729 -0.352131 -0.094748 1.855469 0.479955 -0.604823 0.015860 -1.895714 0.812030 0.264853 0.878238 1.246560 -0.004984 -0.038859 0.050720 0.638443 -0.424492 0.240522 0.094893 0.292855 -0.548831 0.082583 0.242330 0.527653 0.723320 0.060859 0.935746 0.359564 0.337534 0.168145 -0.137879 -0.350981 -0.469278 0.673922 -0.675674 0.410091 -0.396395 0.207087 0.105531 -0.542882 -0.335543 -0.732509 -0.110145 0.263560 -0.529813 0.131697 -0.873036 0.357820 -0.282967 -0.369574 -0.045886 -0.090405 0.804360 0.568442 0.291271 -0.370590 -1.352081 0.339358 -0.083917 0.437610 0.568081 -0.162952 -0.477818 0.047583 -0.543558 -0.740890 0.642270 0.709154 0.028037 0.234414 0.111971 -0.495409 -0.388119 -0.123399 0.159659 0.633774 -0.380646 0.193330 -0.113515 0.015064 -0.096816 -0.543356 0.042226 -0.583266 0.274342 0.351437 0.260176 -0.010445 0.305912 0.175669 -0.395836 -0.683431 0.373642 -0.210997 -0.024905 1.199585 -0.223283 -0.078173 -0.270414 -0.113390 -0.217029 1.040044 0.033342 0.354922 0.816809 0.922054 0.199031 -0.654554 -0.283860 0.643194 0.690995 0.426126 0.546680 -0.990393 -0.531798 0.004144 0.049051 -1.264724 -0.241292 0.422610 0.585930 -0.351480 -0.630224 0.662726 -0.314068 0.874076 0.785793 -0.125477 0.325270 -0.071840 -0.831347 1.017277 1.965090 -0.182870 0.471382 -0.918136 -0.658357 1.311220 -0.806835 0.590243 -0.115273 -0.046424 -0.141996 -0.509153 0.473611 0.765921 -0.030271 0.493642 0.315417 0.285281 -0.095417 -1.169168 -1.181135 -0.208367 0.852510 0.122552 1.727363 -0.698968 -0.327538 -0.252870 0.834377 0.212249 -0.068900 0.270897 -0.700884 0.493573 -1.814368 -1.248899 1.777461 1.487176 0.648486 0.185159 0.761166 0.897770 -0.104082 -0.435915 -0.219876 0.426810 0.367904 -0.729578 -0.218981 0.018969 -0.840750 -0.806625 0.037934 0.263812 0.426019 -0.071746 -0.118159 -0.348106 -0.808415 -0.800027 0.572754 -0.877294 -0.269400 0.129668 0.099860 -0.313546 0.412000 -0.241248 0.213024 0.488066 -0.224945 0.235784 0.410758 0.377572 0.109938 0.509493 1.331966 -0.207607 0.700237 0.344854 -0.226535 1.688909 -0.361053 0.147612 0.214547 0.361587 0.180940 0.318473 0.186715 -0.384379 -0.130267 -0.931648 0.573550 0.352125 0.401521 -0.710198 -0.929710 -0.914931 -0.330853 0.278676 0.916486 0.138827 1.657743 -0.467177 0.206132 -1.848022 0.131945 0.694511 0.178942 0.659980 0.496464 -0.457289 -1.112635 -0.355664 -0.488958 -0.223308 -0.663045 -1.162069 -0.479071 -0.501762 0.649386 -0.734707 0.330610 1.164510 -0.006117 0.615175 -0.570169 -0.005992 -0.966825 -0.072238 0.052001 0.102488 -0.546883 0.586756 -0.265705 1.560464 -0.547170 0.713154 -0.519972 0.816527 -0.442380 -0.881061 -0.100411 1.187997 0.405613 -0.084687 0.281424 -0.204389 -0.035642 0.558475 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = -0.227988 0.505535 2.527064 1.474818 -1.447812 -2.210975 -1.023650 -3.050338 1.404032 0.116650 1.732136 0.094534 0.644024 -0.642984 0.000632 -0.232538 0.363719 -0.507426 0.041154 -0.817060 -0.828163 1.962180 0.544920 -1.474794 0.297623 -2.641961 1.752188 1.159863 1.048107 1.450627 0.174442 -0.254734 -0.676096 1.344642 -0.597575 0.118214 0.400685 0.447452 -0.915819 0.035448 0.795325 0.782860 1.553962 -0.057159 1.603320 0.714683 0.890392 0.578850 -1.101463 -0.388740 -0.788269 1.675989 -1.250322 0.907052 0.001953 0.442365 0.353310 -1.500758 -0.395304 -1.172528 -0.093295 -0.015271 -1.031035 0.089395 -1.458574 0.348204 -0.222520 -0.973603 0.734402 -0.142201 1.405364 0.339645 -0.023159 -0.336777 -1.655775 0.347019 0.188054 1.010318 1.177815 -0.387939 -0.082706 0.122318 -1.040310 -1.176000 0.830171 0.625433 0.536330 0.036371 -0.063292 -0.601797 0.022413 -0.438360 0.306719 1.123145 -0.936716 0.262850 -0.792269 -0.375693 -1.149738 -1.240894 0.329068 -1.009270 0.905769 0.777142 -0.736536 -0.075787 0.266949 0.269231 -0.669264 -1.498066 0.147483 -0.682279 0.822742 2.139229 -0.580785 -0.538573 -0.359713 -0.614638 -0.286080 1.505988 0.352005 0.376496 1.724856 2.041392 0.472933 -1.359266 -0.962213 0.445344 1.031250 1.402841 1.043355 -1.879878 -0.912243 0.023323 -0.238267 -2.679965 0.114064 0.189859 1.326302 0.075716 -1.444621 0.751391 -0.929293 1.517960 0.909555 0.668461 0.414123 -0.037891 -1.431697 1.667935 2.839375 -0.428587 1.084734 -1.048660 -1.041044 1.546099 -1.034451 0.804018 0.445560 -0.301375 0.079086 -0.885053 0.006712 1.505005 0.295195 0.708082 0.850837 0.581824 -0.625486 -2.411110 -2.212948 0.307170 1.773702 0.085211 2.710572 -1.683317 -0.900808 -0.387596 2.143659 -0.304251 -0.540611 0.422111 -1.072019 1.119999 -2.018133 -2.156360 2.675323 2.512674 0.539087 0.055559 1.551688 1.113499 -1.042386 -0.819770 -0.911429 0.681154 0.623519 -1.023560 -0.214817 0.013860 -1.553114 -0.810832 0.324443 0.693244 0.908507 -0.592138 -0.386804 -0.006282 -1.495094 -1.499733 0.963451 -1.373522 -0.236198 0.368420 -0.063269 -0.087151 0.861560 -0.564657 -0.382520 0.433416 -0.806762 0.409153 0.760675 1.169936 0.295391 2.026964 1.607759 -0.191974 1.708679 0.786261 -0.681261 3.158720 -0.653592 0.560596 0.600783 1.069149 0.116793 0.744733 0.891432 -0.903714 -0.583506 -1.934116 0.402095 0.208883 1.077610 -1.553609 -1.245365 -2.287706 -0.816473 0.756377 1.345347 -0.171948 3.011063 -0.296821 0.241547 -3.090768 -0.178749 1.264932 -0.106935 1.249173 0.741280 -1.157957 -2.311524 -0.609556 -1.119312 -0.441312 -0.743709 -1.121228 -1.142758 -0.800323 1.221461 -0.735024 0.556904 1.883306 -0.130096 0.600957 -0.869459 0.045955 -0.700020 -0.630859 0.766179 0.166429 -1.601532 1.814993 -0.120286 3.798505 -0.466320 1.279643 -1.056912 0.618420 -0.216762 -1.077531 -0.424275 2.157661 1.121436 0.448099 0.041081 0.205848 -0.655742 1.335465 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.243428 0.282595 1.915070 -0.004134 -0.876321 -2.276675 -0.788747 -3.691859 1.586521 0.543014 1.625197 0.053301 1.081729 -0.626947 0.087133 1.294706 0.769239 -0.905080 0.513779 -0.929234 -0.255816 2.603703 -0.002547 0.554021 0.202369 -2.657714 0.472753 0.557665 1.665126 1.149267 0.582037 -0.425035 -0.499353 0.695904 -0.073183 0.995816 0.701985 0.341843 -1.694179 0.495722 -0.603815 -0.085150 1.287630 -0.222496 1.947944 -0.072854 1.095317 0.736134 -0.270966 -0.654633 -0.962304 2.083431 -0.898400 0.523504 -0.069876 -0.568026 -0.379399 -0.535943 -0.557380 0.212509 -0.787538 -0.371654 -0.943369 0.413000 -1.071002 0.632989 -0.874066 -0.552789 -0.208028 -0.038339 1.268817 0.635253 0.299234 0.614711 -2.765920 0.223173 0.098832 0.749323 0.870787 -0.323180 0.132388 -0.138168 -0.967524 -1.270935 1.515566 1.925211 0.242750 0.002092 -1.246096 0.053439 -0.853242 -0.400829 0.783395 0.694745 -1.505314 -0.087204 -0.492746 -0.451857 -1.051015 -2.041687 0.382075 -0.660452 0.700309 -0.581598 0.744693 -0.216415 -0.301311 0.166020 -0.956906 -1.165773 0.479704 -0.296127 0.124194 2.517680 -0.756910 -0.079683 -1.021134 -0.286321 -0.701018 1.044201 0.661166 0.551646 1.311772 1.620749 0.741698 -1.158476 -1.183225 0.898504 1.297508 0.847160 0.784354 -1.327663 -0.877230 0.406053 -0.565810 -2.367145 -0.842775 0.825391 1.215159 -0.420169 0.091903 -0.198694 -0.574023 1.550451 1.158088 -0.328743 0.389042 0.004291 -1.313739 1.419017 2.568049 -0.357607 1.247392 -1.214051 0.074447 1.078409 -1.303767 0.729004 0.398171 -0.173052 -0.862872 -0.516949 -0.044096 0.981587 0.524715 0.689941 -0.320719 0.877802 -0.929313 -1.725608 -2.248964 -0.203258 1.697906 -0.241853 1.561767 -1.239131 -1.089280 -0.142704 1.519570 0.309683 -0.851772 0.980086 -1.670295 0.946514 -1.609707 -1.661155 2.873664 2.998387 1.376103 0.052285 1.176681 1.618772 -2.417774 -0.916344 -0.279020 0.780651 0.014104 -3.295549 -1.033182 0.247159 -1.590649 -0.977399 -0.359042 0.795901 0.300595 1.268599 1.504972 0.044647 -0.853074 -0.729605 1.311117 -0.617163 -0.612060 0.174431 0.191507 -0.026612 0.879510 -1.029202 0.599052 1.160941 -1.099381 0.648691 0.879232 0.642127 0.180864 1.871353 1.905259 -0.032145 2.147408 -0.204901 -0.822052 1.215752 -0.275280 0.694824 0.056894 -0.042857 -0.203296 0.384356 0.712979 -0.772850 -1.240464 -1.288177 -0.191338 0.361346 1.143129 0.816838 -2.161046 -1.831546 -0.208297 0.494781 1.534573 0.119512 2.198153 -0.907123 0.798306 -2.863388 0.353203 0.441825 0.070599 1.033855 0.390831 -0.744330 -0.814339 -0.393063 -1.506381 -2.047268 -0.505490 -1.451622 -0.789453 -1.527780 1.822533 -1.176511 -0.278308 0.891461 0.149896 1.577287 -0.472179 -0.060629 -1.466158 0.599551 1.425665 -0.157979 -1.089249 1.018988 0.068815 3.746903 -0.340427 0.738327 -0.348201 0.599588 -0.196177 -1.459797 -0.254100 1.902487 1.441621 0.109652 -0.422297 -0.540439 0.102495 0.741308 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp___GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/rotate-bits-of-an-integer.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 0.957011 -0.104451 2.887485 0.745442 -0.572305 -2.329138 -1.200151 -5.786489 3.562358 0.751141 1.739003 0.351730 1.335851 -1.779022 -0.584503 1.864833 0.243805 -1.410057 0.832707 -0.698650 0.470316 5.753401 -0.001651 0.078453 -0.177190 -5.641874 0.749308 0.439708 3.987613 1.901972 0.361730 -0.793800 0.170069 1.096221 -0.603219 1.152053 0.559182 0.359354 -3.015643 -0.010101 -0.725389 0.692978 1.552357 -0.672114 2.968805 -1.490737 2.012336 0.441368 0.667400 -0.352270 -2.021359 3.772513 -1.110092 0.825409 -0.129299 -0.701353 -1.040730 -0.918487 -1.221428 0.752999 -1.251767 0.527234 -1.266062 0.440090 -1.773621 1.119355 -0.963226 -0.154949 -0.118093 0.260929 2.195055 1.781989 1.332264 -0.401444 -5.003700 0.962002 -0.387434 1.056513 1.113643 0.128204 0.450561 0.056010 -1.056258 -1.702730 2.563984 3.700362 -0.631036 -0.294512 -0.804976 -0.562127 -1.763217 -0.794412 0.668150 1.163484 -2.679492 0.281178 -1.539659 0.024774 -0.218403 -2.212649 -0.005791 -1.579362 0.838195 -0.721703 1.737364 0.500218 1.935358 0.223269 -0.681808 -1.766324 0.589592 0.370793 0.275699 4.418818 -0.585380 -0.136849 -1.110889 0.165710 -2.336250 1.572029 0.458501 1.466320 2.342432 2.376266 1.371665 -1.599630 -1.318700 2.760515 1.806904 1.338630 0.884766 -2.467476 -0.919651 0.053789 1.074375 -3.774289 -1.149257 1.409964 1.498487 -1.041332 0.334351 -0.557927 0.048249 3.074126 1.722165 -1.849512 0.821933 0.360512 -1.736650 2.788944 5.285062 -0.017132 0.950986 -3.105482 -0.189063 2.213831 -2.586795 1.651104 -0.493453 0.785940 -0.559832 -1.640317 0.758241 1.546141 -0.537748 0.855192 -0.441078 1.153608 -0.923162 -3.189477 -3.295000 -0.701804 1.636747 -0.517249 3.350033 -1.310723 -1.945255 -0.326204 1.847642 1.039150 -0.161484 1.901839 -3.426877 1.538083 -2.786229 -3.084082 4.558078 4.836789 1.695227 0.194240 2.443931 2.857327 -2.989985 -1.460104 -0.319371 1.137121 1.339484 -4.827809 -1.266607 0.114016 -2.171384 -2.366177 -0.017600 0.493826 0.661272 2.045563 1.868882 -0.231556 -1.860038 -1.542668 3.204458 -1.591485 -0.687360 -0.135673 0.723695 -0.806568 2.092788 -1.768058 1.205377 2.086736 -0.669074 1.179416 1.304269 0.341227 -0.428151 1.108542 3.746168 0.287932 3.993683 0.397036 -0.850252 2.678264 -0.452318 0.160930 0.258155 -1.182023 -0.695419 1.052027 -0.153620 -1.265198 -1.268765 -2.029605 0.888647 -0.102199 1.384517 0.673273 -3.214298 -1.600421 -1.246513 0.978199 1.131488 1.190900 3.766395 -2.253985 0.794809 -5.417437 0.361936 1.446371 0.806299 2.399906 0.716173 -0.904241 -1.627280 -0.718606 -1.091695 -2.590894 -1.741310 -3.928443 -1.393186 -3.209473 3.643902 -2.217897 0.367866 2.419802 0.545009 2.537910 -2.440308 0.047067 -2.951393 0.944803 0.479232 0.148546 -1.556910 0.997557 -0.951574 5.217304 -1.839954 1.066241 -1.341364 1.800325 -1.332570 -2.829912 0.239347 2.919054 1.335057 -0.092547 -0.852771 -1.443219 -0.762978 1.150632 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = -0.334172 0.425764 1.593547 0.732105 -0.455941 -1.434588 -0.454079 -1.550561 0.675409 0.149289 0.960009 -0.105800 0.297224 -0.040408 -0.201768 -0.039832 0.228430 -0.631583 0.534924 -0.408577 -0.311147 1.775646 0.575802 -0.792705 0.259091 -2.040764 1.638477 0.578717 0.769240 1.457518 0.268742 0.023720 0.149074 0.912670 -0.373816 0.085095 0.275319 0.529252 -0.180464 0.433511 0.451151 0.735556 0.878673 0.248811 0.994242 0.929264 0.592750 0.415340 -0.334158 -0.033523 -0.540480 0.304146 -1.213043 0.332508 -0.380393 0.091688 0.291699 -0.946763 -0.436819 -0.993618 0.023908 0.313243 -0.774663 0.117487 -1.213853 0.365452 -0.308037 -0.380644 0.265717 0.275183 0.987733 0.699339 0.255869 -0.230405 -1.177600 0.468703 0.059064 0.544221 0.778048 -0.847119 -0.556900 0.311054 -0.558684 -1.073501 0.564676 0.702209 0.237469 0.038850 0.569074 -0.589547 -0.231199 -0.279206 -0.195127 1.071742 0.286884 0.608898 -0.221179 -0.080790 -0.270796 -0.725827 -0.072820 -0.747147 0.296123 1.003271 -0.136257 -0.106763 0.100618 0.135663 -0.483596 -1.202143 0.214537 -0.566526 0.136621 1.010771 -0.325881 0.015238 -0.174884 -0.080605 0.306362 1.406364 0.082639 0.426129 0.982434 1.192468 -0.219750 -0.749291 -0.415752 0.172921 0.664490 0.812805 0.740047 -1.215377 -0.702025 -0.164538 0.296469 -1.362540 0.193346 0.351159 0.694803 -0.639749 -1.103877 0.870514 -0.670945 1.125329 1.208555 0.456666 0.300256 0.032147 -0.826716 1.438016 2.600472 -0.375025 0.599138 -1.005685 -0.961309 1.690685 -0.792094 0.608636 0.024037 0.046450 -0.223461 -0.741523 0.093009 1.161340 0.339886 0.893761 1.266508 0.263238 0.218584 -1.420913 -1.206018 0.116385 1.287133 -0.015683 2.102469 -0.952463 -0.017318 -0.171659 0.817558 0.176748 -0.006510 0.114854 -0.430700 0.765941 -2.201358 -1.735443 1.974347 1.161212 0.557347 0.004413 0.384417 1.105540 0.127727 -0.544185 -0.706924 0.687106 0.120725 -0.222924 -0.293495 -0.081886 -1.085189 -0.898223 0.206431 0.187447 0.987887 -0.665565 -0.980007 -0.538979 -1.279873 -0.845724 0.441127 -1.205701 -0.514181 0.312929 -0.022293 -0.041092 -0.015977 0.223904 0.215109 0.393562 -0.432900 -0.220359 0.575713 0.634641 0.412670 1.074804 1.294926 -0.079021 0.174645 0.866328 -0.164703 2.153350 -0.148546 -0.031400 0.665138 0.659272 0.430087 0.420459 0.649805 -0.502886 -0.259077 -1.315544 0.888736 0.400397 0.624020 -0.909841 -0.318309 -1.189825 -0.407226 0.687499 1.384252 0.076045 2.035868 0.027838 -0.060151 -1.728690 0.048786 0.777368 0.094507 0.637084 0.550594 -0.662604 -1.040764 -0.458659 -0.389045 0.093649 -0.631624 -0.983076 -0.733324 -0.276132 0.184904 -0.553852 0.481737 1.422267 -0.124090 0.389298 -0.336964 -0.136086 -1.068962 -0.243983 0.424687 0.149878 -0.795381 0.936524 -0.304378 2.085557 -0.790650 0.728770 -0.654541 0.427501 -0.281067 -0.272052 -0.183229 1.224531 0.481181 0.016612 0.567801 -0.009935 0.017418 1.041036 -PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = -0.334172 0.425764 1.593547 0.732105 -0.455941 -1.434588 -0.454079 -1.550561 0.675409 0.149289 0.960009 -0.105800 0.297224 -0.040408 -0.201768 -0.039832 0.228430 -0.631583 0.534924 -0.408577 -0.311147 1.775646 0.575802 -0.792705 0.259091 -2.040764 1.638477 0.578717 0.769240 1.457518 0.268742 0.023720 0.149074 0.912670 -0.373816 0.085095 0.275319 0.529252 -0.180464 0.433511 0.451151 0.735556 0.878673 0.248811 0.994242 0.929264 0.592750 0.415340 -0.334158 -0.033523 -0.540480 0.304146 -1.213043 0.332508 -0.380393 0.091688 0.291699 -0.946763 -0.436819 -0.993618 0.023908 0.313243 -0.774663 0.117487 -1.213853 0.365452 -0.308037 -0.380644 0.265717 0.275183 0.987733 0.699339 0.255869 -0.230405 -1.177600 0.468703 0.059064 0.544221 0.778048 -0.847119 -0.556900 0.311054 -0.558684 -1.073501 0.564676 0.702209 0.237469 0.038850 0.569074 -0.589547 -0.231199 -0.279206 -0.195127 1.071742 0.286884 0.608898 -0.221179 -0.080790 -0.270796 -0.725827 -0.072820 -0.747147 0.296123 1.003271 -0.136257 -0.106763 0.100618 0.135663 -0.483596 -1.202143 0.214537 -0.566526 0.136621 1.010771 -0.325881 0.015238 -0.174884 -0.080605 0.306362 1.406364 0.082639 0.426129 0.982434 1.192468 -0.219750 -0.749291 -0.415752 0.172921 0.664490 0.812805 0.740047 -1.215377 -0.702025 -0.164538 0.296469 -1.362540 0.193346 0.351159 0.694803 -0.639749 -1.103877 0.870514 -0.670945 1.125329 1.208555 0.456666 0.300256 0.032147 -0.826716 1.438016 2.600472 -0.375025 0.599138 -1.005685 -0.961309 1.690685 -0.792094 0.608636 0.024037 0.046450 -0.223461 -0.741523 0.093009 1.161340 0.339886 0.893761 1.266508 0.263238 0.218584 -1.420913 -1.206018 0.116385 1.287133 -0.015683 2.102469 -0.952463 -0.017318 -0.171659 0.817558 0.176748 -0.006510 0.114854 -0.430700 0.765941 -2.201358 -1.735443 1.974347 1.161212 0.557347 0.004413 0.384417 1.105540 0.127727 -0.544185 -0.706924 0.687106 0.120725 -0.222924 -0.293495 -0.081886 -1.085189 -0.898223 0.206431 0.187447 0.987887 -0.665565 -0.980007 -0.538979 -1.279873 -0.845724 0.441127 -1.205701 -0.514181 0.312929 -0.022293 -0.041092 -0.015977 0.223904 0.215109 0.393562 -0.432900 -0.220359 0.575713 0.634641 0.412670 1.074804 1.294926 -0.079021 0.174645 0.866328 -0.164703 2.153350 -0.148546 -0.031400 0.665138 0.659272 0.430087 0.420459 0.649805 -0.502886 -0.259077 -1.315544 0.888736 0.400397 0.624020 -0.909841 -0.318309 -1.189825 -0.407226 0.687499 1.384252 0.076045 2.035868 0.027838 -0.060151 -1.728690 0.048786 0.777368 0.094507 0.637084 0.550594 -0.662604 -1.040764 -0.458659 -0.389045 0.093649 -0.631624 -0.983076 -0.733324 -0.276132 0.184904 -0.553852 0.481737 1.422267 -0.124090 0.389298 -0.336964 -0.136086 -1.068962 -0.243983 0.424687 0.149878 -0.795381 0.936524 -0.304378 2.085557 -0.790650 0.728770 -0.654541 0.427501 -0.281067 -0.272052 -0.183229 1.224531 0.481181 0.016612 0.567801 -0.009935 0.017418 1.041036 -PE-benchmarks/rotate-bits-of-an-integer.cpp___GLOBAL__sub_I_rotate_bits_of_an_integer.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/union-find.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/union-find.cpp__createGraph(int, int) = -0.709781 -0.206440 2.989147 1.143074 -1.933968 -2.967063 -1.095440 -4.762392 2.480537 0.772426 2.834782 0.850797 1.770459 -1.740935 0.341028 0.917668 0.971642 -1.448317 0.562693 -1.269998 -0.556571 3.829289 1.580198 -0.579258 0.470247 -3.628642 1.900838 0.500693 2.255818 2.511155 0.658575 -0.371445 -0.791012 1.354164 0.215465 1.301282 0.022555 0.704605 -1.705617 0.278248 0.356538 -0.786505 1.901957 0.036380 3.130712 -0.331183 1.791936 0.639306 -1.198495 -1.096565 -1.764359 2.618297 -2.445888 1.014308 -0.238821 -0.297908 -0.120815 -0.844969 -1.014956 -1.921014 -0.685766 -1.161013 -1.483420 0.591786 -2.057742 1.217841 -1.724962 -0.688723 -0.217184 0.065345 2.212943 1.326081 0.770462 0.628794 -3.517371 0.343327 0.071528 1.058731 1.744982 -0.121137 -0.639814 -0.438498 -1.324629 -1.976699 2.326134 1.291768 0.061432 -0.162661 -0.837083 -0.001401 -0.831683 -0.425923 0.428798 1.258609 -2.767279 0.433494 -0.081825 -0.432655 -0.746447 -2.680162 0.366968 -1.642236 0.911396 0.696988 0.165136 -0.422629 -0.797095 0.435020 -1.751835 -2.386466 0.536832 -0.460915 -0.189884 3.136597 -1.404651 0.054705 -1.047922 0.105501 -0.128943 1.900663 0.830535 1.511167 2.480469 2.912825 0.795397 -1.559086 -0.883104 1.593269 2.245201 1.433544 1.063830 -2.024527 -1.573406 0.899358 -0.297375 -3.463268 -1.104693 1.839728 2.072727 0.282934 -1.316400 0.129657 -0.680432 2.359461 2.364494 0.082019 0.591454 0.178327 -2.095277 2.647889 4.424123 -0.736978 1.635544 -1.193222 -0.737444 3.216798 -2.659556 0.926563 0.384739 0.125327 -0.793830 -1.376842 -0.393509 1.873688 0.874732 1.077172 -0.004763 1.307875 -0.753319 -3.449015 -3.174626 -0.538901 2.940375 0.538704 3.191174 -2.012950 -0.678223 -0.177811 2.166586 0.877635 -1.422347 0.845985 -2.028285 1.440003 -4.125216 -2.970790 4.739358 3.929934 1.899193 0.627588 1.649818 3.047915 -2.549724 -1.222979 -1.089545 1.319433 0.264670 -3.177211 -1.248116 0.326210 -3.002752 -1.874894 -0.001010 0.969507 1.241821 0.256998 0.747536 0.454036 -1.544409 -1.067335 1.820158 -1.685237 -1.556129 -0.114643 0.038316 0.572614 0.956246 -0.727248 0.989356 0.973885 -1.581277 0.299675 1.185432 1.664152 0.523233 2.978967 3.361463 -0.377350 1.327346 0.156234 -1.387139 3.008945 -0.625712 0.616458 0.230562 0.409532 0.549255 0.567351 1.399608 -1.282812 -1.480657 -2.386795 0.267267 0.744134 1.961399 -1.004853 -2.831136 -3.084081 -0.413382 1.318265 2.326976 0.145827 4.172359 -1.397289 0.371734 -4.589373 0.179345 1.370633 0.119068 2.140788 0.886606 -1.142132 -1.577656 -1.239182 -1.653084 -0.645185 -1.156629 -1.493168 -1.271780 -1.558946 2.613556 -1.864524 0.235830 1.480643 -0.104913 2.613060 -0.193309 -0.185275 -2.380151 0.939853 0.955098 0.514795 -1.794347 2.668707 -0.073760 5.248051 -1.058628 0.981564 -1.248796 1.308097 -0.900778 -1.571435 -0.193766 2.998055 2.536150 0.369847 0.145806 -0.278973 -0.264734 1.411531 -PE-benchmarks/union-find.cpp__find(int*, int) = -0.689229 0.195561 2.723863 1.671123 -1.362889 -2.272394 -1.123029 -2.883930 1.686096 0.330711 1.836428 0.453661 0.809034 -0.733684 0.121083 -0.217766 0.298735 -0.773288 0.050461 -0.780344 -0.355816 2.588755 1.276250 -1.994768 0.167527 -2.967250 1.736688 1.088699 1.141906 1.943046 -0.022396 -0.190879 -0.500971 1.531328 -0.865449 0.269599 0.271773 0.622617 -0.774301 -0.056749 0.932937 1.104723 1.505951 -0.037634 2.081333 0.745940 1.095865 0.415269 -1.175311 -0.616725 -0.821426 1.741665 -1.609646 1.106479 -0.262341 0.793971 0.192011 -1.545148 -0.615392 -2.262446 0.091715 0.351176 -1.175712 0.041973 -1.561172 0.503260 -0.029904 -0.957674 0.497130 -0.146589 1.685682 0.528051 0.179870 -0.614212 -1.921413 0.390299 -0.062590 1.047291 1.241563 -0.417829 -0.832071 0.031100 -0.882463 -1.339480 0.780986 0.630161 0.283260 0.197677 0.197059 -0.505140 -0.209657 -0.403531 -0.021535 1.381438 -1.104399 0.491458 -0.117622 -0.180245 -0.815641 -0.683544 0.255831 -1.261478 0.801996 1.064836 -0.260785 -0.172421 0.017298 0.370165 -1.036049 -1.578738 0.426022 -0.550639 0.380271 1.881835 -0.700073 -0.135211 -0.048475 -0.423834 -0.108284 1.914368 0.221634 0.608153 1.782857 2.219518 0.404827 -1.463011 -0.707096 0.697744 1.507665 1.454450 1.068270 -2.003902 -1.022062 0.058370 -0.144986 -2.656912 0.093514 0.805437 1.418502 0.063794 -1.872895 0.976490 -0.848836 1.928431 1.309664 0.702857 0.438694 -0.031527 -1.701293 1.837868 3.632792 -0.469388 1.189410 -0.964903 -1.187811 2.332738 -1.597760 1.199249 0.443653 -0.172291 0.054797 -1.093754 0.042434 1.699383 0.556204 1.070452 0.833731 0.565069 -0.347090 -2.727125 -2.475491 -0.272624 1.875069 0.337717 3.337520 -1.662942 -0.932777 -0.549933 2.033568 -0.182287 -0.589148 0.278631 -1.064362 1.170561 -3.025422 -2.371433 3.260695 3.010853 0.896635 0.312111 1.982114 1.399791 -0.489045 -0.864111 -0.705327 0.805822 0.594053 -0.545377 -0.031955 0.025259 -1.884221 -1.259485 0.196538 0.588918 0.717110 -0.563779 -0.676690 0.259913 -1.673344 -1.393377 0.584629 -1.678034 -0.592994 0.239128 0.110495 -0.145062 0.620621 -0.584407 -0.172819 0.654141 -0.926281 0.386870 0.860987 1.138346 0.614243 1.775325 2.076714 -0.277369 1.665890 0.850474 -0.639758 3.663955 -0.731454 0.425813 0.646920 1.155526 0.364636 0.666797 0.689283 -0.905118 -0.241499 -2.031833 0.933497 0.488637 1.264042 -2.120728 -1.667410 -2.099973 -0.717766 0.999473 1.499738 -0.320619 3.460023 -0.444991 0.425753 -3.918036 -0.043509 1.456837 0.011281 1.157354 0.972533 -1.145307 -3.006127 -0.702729 -0.870072 -0.130432 -0.944967 -1.465191 -1.035563 -0.870959 1.193154 -1.197692 0.676014 2.203124 -0.255147 0.982165 -0.871027 0.023513 -0.981210 -0.614128 0.416217 0.384122 -1.650663 1.866700 -0.318912 4.000211 -0.928395 1.574314 -1.144946 1.222954 -0.577180 -1.132096 -0.306359 2.453027 1.222552 0.327483 0.335212 0.106884 -0.675516 1.303928 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.468309 0.243376 2.690802 1.615325 -1.493600 -2.632961 -1.214640 -3.376279 1.835828 0.463284 1.934939 0.325332 0.990869 -0.821835 -0.081338 0.019694 0.333667 -0.920385 0.257546 -0.903927 -0.985609 3.188864 1.124972 -1.548127 0.189038 -3.287998 2.268233 1.060726 1.370816 2.266196 0.036319 -0.183375 -0.336506 1.640084 -0.730546 0.474207 -0.002893 0.847117 -0.735344 0.272422 1.029439 0.635873 1.858198 0.036683 2.074797 0.999250 1.138935 0.480497 -1.140528 -0.704816 -0.971989 1.427852 -1.829473 1.045638 -0.721962 0.485545 0.409488 -1.427801 -0.635470 -1.786837 -0.168207 -0.011808 -1.434016 0.200897 -1.906389 0.557616 -0.504738 -1.182778 0.299258 -0.048762 1.752932 0.846473 0.053210 -0.554426 -2.455184 0.472421 0.186003 0.982950 1.350740 -0.483648 -0.857952 0.092923 -1.395305 -1.623628 1.198981 0.926412 0.480870 0.200624 0.056276 -0.733049 -0.346267 -0.174889 0.329394 1.603543 -0.928677 0.422614 -0.333579 -0.260045 -1.076204 -1.388310 0.314361 -1.333346 0.989641 0.965214 -0.397596 -0.227987 0.189642 0.297655 -1.028782 -1.875219 0.229010 -0.940811 0.614131 2.258823 -0.524928 -0.309391 -0.443031 -0.554627 -0.033271 1.942640 0.433192 0.435485 2.318913 2.260300 0.493905 -1.640877 -0.955772 0.725739 1.370175 1.353648 1.140047 -2.074827 -1.208063 0.034273 -0.201048 -2.957578 -0.178986 0.757348 1.328379 -0.522146 -1.538939 1.385537 -0.954439 1.822952 1.699045 0.512146 0.588555 -0.009616 -1.780899 2.072479 3.918753 -0.416606 1.145894 -1.547260 -1.511760 2.915103 -1.611160 1.134157 0.427368 -0.277342 -0.383557 -1.143950 0.478010 1.801113 0.171624 1.000022 1.046850 0.648552 -0.347576 -2.587230 -2.627696 -0.006344 2.328176 0.629531 3.734119 -2.001922 -0.640305 -0.290904 1.938666 0.279506 -0.552713 0.428256 -1.158528 1.262569 -3.663991 -2.731651 3.505079 2.857796 1.150484 0.391767 1.787156 1.585880 -0.512958 -1.030993 -0.935536 1.046939 0.699805 -1.074772 -0.260410 0.147394 -2.032795 -1.249255 0.090370 0.716005 1.074362 -0.781265 -0.593747 -0.506874 -1.742724 -1.725267 0.962372 -1.839136 -0.604382 0.293114 0.012669 -0.322070 0.770377 -0.341691 0.084870 0.352944 -0.815988 0.542034 0.956832 1.080405 0.363322 1.981949 2.668636 -0.708366 1.392321 0.761744 -0.417272 3.681675 -0.814221 0.522650 0.767719 1.360617 0.425243 0.754780 1.115864 -0.956536 -0.340679 -2.149596 1.006933 0.780133 1.103189 -2.025630 -1.500792 -2.697700 -0.748234 0.855538 2.113930 -0.093947 3.650089 -0.493442 0.556744 -3.928118 0.033220 1.270939 0.142184 1.529927 0.955534 -1.263478 -2.330778 -0.880278 -1.143886 -0.281098 -1.039206 -1.504065 -1.277572 -0.688389 0.823748 -1.281938 0.620439 2.228175 -0.372649 0.973464 -1.037736 0.060239 -1.363510 -0.485963 0.844422 0.261552 -1.518370 1.875781 -0.317418 4.142620 -0.790682 1.664454 -1.080838 1.369650 -0.552438 -1.524918 -0.392255 2.627462 1.110564 0.185721 0.466825 0.057131 -0.214514 1.471569 -PE-benchmarks/union-find.cpp__isCycle(Graph*) = -2.179516 -0.257348 7.924863 3.877044 -3.579573 -6.067367 -3.073121 -9.208749 5.478916 1.168565 6.036320 1.494766 2.744936 -3.156369 0.813152 0.460392 1.393158 -3.275148 0.473445 -2.477436 0.220397 8.056642 4.265503 -4.419113 0.737030 -9.563711 3.605650 2.363413 4.281174 5.319189 0.466067 -0.736290 -1.420810 3.846794 -1.560559 1.798048 1.118208 0.994227 -3.292588 -0.087813 1.725374 2.703232 3.941273 -0.444692 6.923701 0.390047 3.894751 1.179340 -3.182414 -2.126207 -3.008843 6.766526 -4.754638 2.679572 0.364507 1.746493 -0.276250 -4.393337 -2.486786 -6.026302 -0.473346 0.616582 -3.105517 0.677684 -4.197256 2.242826 -1.022207 -1.411878 1.352000 -0.298893 5.092537 2.131038 1.302721 -0.531108 -5.728455 1.460692 -0.368992 3.025669 3.402089 -1.174144 -1.935695 0.045990 -1.882850 -3.787115 3.189150 2.430359 0.212438 -0.161118 -0.063988 -0.633890 -1.319229 -1.721578 -0.407168 3.220421 -5.266819 0.961417 0.233357 -0.932312 -2.003576 -2.299110 0.418666 -3.847718 1.959539 2.960806 0.032366 -0.462055 -0.962294 1.055974 -3.570067 -4.556573 1.355126 -0.522995 0.501216 6.384306 -3.281999 0.274003 -1.194114 -0.172241 -0.875526 5.355413 0.556059 3.048608 5.315120 6.873297 1.202965 -3.670183 -1.652407 2.735445 5.390759 3.931959 3.089655 -5.726299 -3.157262 0.661536 0.070574 -7.639604 -0.925298 2.989646 4.647738 1.523353 -5.137426 1.295730 -1.558908 6.593591 4.076220 0.680534 1.062932 -0.002634 -4.973811 6.051666 10.763812 -1.727090 3.758198 -2.873848 -2.593485 6.543625 -5.768490 3.201550 1.387212 0.229533 -0.186123 -3.459929 -0.562572 4.585786 2.219181 3.082047 0.992754 2.180482 -0.287344 -8.376682 -7.615586 -1.251309 4.407180 0.238440 8.763809 -4.200687 -2.947380 -1.982763 5.888129 0.084528 -2.418993 1.111935 -4.246048 3.035409 -8.131186 -6.737873 10.429367 10.207887 3.126237 1.414858 5.873262 5.551801 -3.620984 -1.978101 -1.784727 2.770214 1.483118 -3.768313 -0.716132 0.268844 -5.821758 -4.548596 0.021228 1.790600 1.894209 -0.334879 -0.648716 1.921296 -5.002090 -2.807525 2.542406 -4.492965 -2.611819 0.110215 0.343460 0.512463 2.256539 -2.413876 0.485845 2.632162 -3.458057 0.637975 2.745232 4.117429 2.090025 5.095301 6.355908 0.146275 5.493261 1.757502 -2.688832 8.788820 -1.559048 0.948776 0.991274 1.533014 1.015129 1.685843 1.391601 -2.632705 -1.772931 -5.542852 2.695253 0.884084 4.152354 -4.637336 -6.204821 -5.798290 -2.132774 3.626225 3.850436 -0.271158 10.065218 -2.240409 0.541418 -11.891025 -0.143727 4.054663 0.438493 3.672501 2.586890 -3.003570 -7.950380 -2.135384 -2.794659 -0.789620 -2.771185 -4.590910 -2.986377 -3.924867 6.590608 -4.000681 1.682376 5.653870 0.267462 4.362381 -0.890850 -0.334564 -3.904790 -0.396958 0.736915 1.528394 -4.589644 5.658774 -0.962638 11.681473 -3.357937 3.582459 -3.631189 3.290573 -1.762269 -3.200771 -0.367680 6.909084 4.865336 0.710709 0.385327 -0.590392 -2.332396 3.649307 -PE-benchmarks/union-find.cpp__main = -2.257467 -1.035416 4.717793 2.226767 -2.910335 -6.926956 -2.494890 -8.976225 4.345224 1.590907 6.551132 0.627766 3.684664 -3.460941 1.498332 2.524120 3.038173 -3.111840 0.564371 -2.625884 -0.400060 7.521512 1.993486 -0.772908 0.394750 -5.210786 0.925556 2.303237 2.297502 3.256718 1.608903 -0.515249 -1.145811 1.770332 -0.961064 4.050225 1.375754 1.363750 -3.039711 -0.844905 -0.073171 -1.053658 4.091601 -1.206658 6.434629 -1.148518 5.145385 1.075299 -3.346633 -2.944820 -3.214957 6.285835 -3.969078 1.311698 -0.226258 -1.140158 1.048810 -1.990138 -2.197577 -3.984121 -1.501326 -1.296682 -3.759272 0.342306 -2.128095 2.510923 -0.654005 -1.282601 0.265715 -0.395203 3.933343 1.479805 0.455089 1.926019 -5.744130 0.293505 0.478087 1.449053 2.348031 -0.126408 -0.383285 -1.519480 -2.205432 -2.999750 5.374374 2.173760 1.423152 1.060511 -3.897832 2.007217 -1.867441 -0.945699 1.510971 1.230125 -4.235086 -0.576209 2.977043 -1.838057 -3.140758 -3.170730 1.386330 -2.423368 1.150275 1.570686 1.130920 -0.464284 -3.942359 0.351183 -5.538948 -4.402370 1.364742 -1.841344 -0.822571 4.791418 -4.273901 0.631470 -2.124148 0.086407 -0.144983 3.267210 1.803545 2.875044 3.716648 4.929233 1.431826 -3.857766 -2.613156 1.705714 6.209031 2.541322 1.410963 -3.138665 -3.007805 1.539552 -2.857911 -6.605955 -3.428262 4.262061 4.706216 1.651162 -3.364789 1.528058 -0.814692 5.548464 4.000240 0.246477 0.178983 0.894198 -4.834445 3.999944 6.320003 -1.771136 4.761625 -1.169019 -0.459668 4.341212 -4.333996 1.316554 2.803250 -0.918181 -2.093778 -1.750650 -0.965671 3.021638 3.264787 2.669553 -2.149216 3.086139 -1.737082 -6.225205 -7.848291 -0.829759 5.310019 0.948563 5.867334 -4.023575 -3.634382 0.011865 3.955231 -1.268918 -4.186025 1.482897 -4.481385 2.954059 -7.014263 -5.555013 10.120690 7.530920 4.533582 1.940269 4.678519 4.652547 -5.621927 -0.764574 -1.091493 3.076540 1.281857 -7.200449 -1.146717 0.529804 -5.475204 -4.130332 -1.624508 2.071450 -1.649896 1.595632 3.650574 0.231870 -2.151056 0.304058 1.910357 -2.373264 -2.485796 -0.609776 0.037609 1.451467 1.790303 -2.409850 1.953841 1.554376 -4.599497 0.432419 1.782210 3.179477 3.070911 6.720036 7.517184 -1.244880 6.194557 -1.144758 -2.828648 3.388093 -1.262344 1.377431 -0.344790 1.730093 1.868458 0.395491 3.428609 -2.051832 -2.600910 -4.050078 -0.057111 2.687291 4.227872 -0.917858 -5.547891 -6.604061 -0.565068 2.352261 5.134227 -1.592586 7.058139 -3.171796 1.422532 -9.950539 0.669860 1.715035 -0.023044 1.834043 0.963699 -2.049146 -5.121997 -1.513223 -3.963982 -4.202865 -1.134564 -2.882926 -2.195561 -5.140743 5.783406 -5.036030 -0.497518 2.341848 0.441712 4.592860 1.052996 -0.279766 -3.181943 1.714210 2.349072 0.738549 -3.390542 4.784742 0.460802 11.855938 -1.254548 2.438962 -2.086138 3.819501 -1.608973 -3.555233 -0.377215 5.355888 6.504676 -0.623041 0.051298 -0.014392 -0.453006 3.226441 -PE-benchmarks/union-find.cpp___GLOBAL__sub_I_union_find.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = -1.501278 0.827651 7.498062 5.356478 -4.302739 -5.747110 -2.975507 -7.026676 3.837431 -0.053812 4.655753 0.577048 1.314179 -1.848657 0.100819 -1.714387 1.145147 -1.979589 -0.015902 -2.298151 -1.570468 5.615532 2.805768 -6.347648 0.763374 -8.262139 5.553018 3.539791 2.482118 4.954798 0.027818 -0.590579 -1.591875 4.203723 -2.083259 -0.422877 1.199182 0.853284 -2.247329 0.033662 3.109329 3.637355 4.721357 -0.502935 4.375938 2.396303 2.818333 1.540124 -3.926161 -1.005877 -2.410955 4.340509 -3.858765 2.829304 -0.050629 2.410069 1.385768 -5.284799 -1.726646 -5.206719 0.080152 1.008540 -2.599951 0.061215 -4.388217 1.063677 0.077940 -2.750134 2.891428 -0.111112 4.060995 1.519706 0.418641 -1.915360 -3.693322 1.593149 0.315761 3.505502 3.011682 -1.678927 -1.010999 0.845754 -2.615842 -2.872763 1.023827 0.840933 1.422489 -0.142343 1.373053 -1.958937 0.355781 -1.201094 -0.488347 3.132614 -2.071543 1.000023 -1.893825 -0.813832 -2.947395 -1.891218 0.277232 -3.030521 2.403526 3.752952 -2.684217 0.169865 0.684556 0.978550 -2.097489 -4.043255 0.507351 -1.779537 2.165231 5.487858 -1.754572 -1.378088 -0.720733 -1.267314 -0.389404 4.908573 -0.398213 1.476755 4.988330 6.341213 0.704059 -3.800409 -1.873009 0.764516 3.345394 4.112389 3.737235 -5.331771 -2.768786 -0.720740 -0.023606 -7.094171 0.998308 0.366972 3.957867 0.735462 -5.718433 2.734935 -2.816876 5.657425 2.694065 2.259670 1.212230 -0.206735 -4.347705 5.506708 8.869045 -1.326408 3.045611 -3.582678 -3.508893 5.336737 -2.846553 2.700028 0.992367 -0.674824 0.816902 -3.011652 0.181011 4.394624 1.268115 2.128196 3.355047 1.254112 -0.124652 -7.541922 -6.079761 0.711406 4.186333 0.482918 9.236711 -4.872625 -2.525793 -2.055416 5.387484 -0.922386 -1.322008 0.505711 -2.651076 2.854765 -7.298319 -6.624330 8.110130 7.352358 0.973171 0.926705 5.044703 2.911326 -1.261793 -1.858019 -2.298620 2.131188 1.994601 -0.847363 0.343499 0.259058 -4.303403 -2.995224 1.324917 1.839976 3.343540 -3.275560 -3.202355 0.267839 -5.440132 -4.516421 2.222967 -5.028407 -1.204641 1.470550 -0.331089 0.175899 2.237493 -0.950024 -1.401406 0.933764 -2.132059 0.482848 1.925747 4.278085 1.219397 4.265510 5.019878 -0.012939 4.667945 3.253741 -2.002321 10.450475 -2.055456 1.210513 1.964840 3.105014 0.779375 2.055519 2.117272 -2.359024 -0.504958 -5.638650 3.010420 0.383522 3.135639 -7.118808 -3.278768 -6.102675 -2.566645 2.887165 3.459847 -0.707925 9.164386 -0.575803 -0.100264 -9.714233 -1.013885 4.161407 0.628857 3.362240 2.678184 -3.524198 -8.031154 -1.623111 -2.722935 1.133397 -2.540769 -3.477958 -3.468298 -1.545011 3.427828 -1.937617 2.238405 6.862833 -0.797213 1.727820 -1.919971 -0.102797 -1.602791 -3.009833 0.849589 1.393644 -4.276247 5.763396 -1.008215 10.273399 -1.720964 3.652689 -3.610880 2.133479 -0.496415 -2.713510 -1.063990 6.287395 2.597586 1.025168 1.087136 0.240898 -2.256412 4.291467 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.041730 0.179756 0.952195 0.419518 -0.494673 -1.202790 -0.487182 -1.509125 0.685565 0.261658 0.790912 -0.015664 0.568342 -0.253047 -0.108984 0.156474 0.200542 -0.367659 0.228497 -0.423671 -0.650946 1.376313 0.234358 -0.204778 0.077993 -1.311634 1.055952 0.308853 0.516076 1.022747 0.122762 0.005143 -0.080095 0.587478 -0.217790 0.325398 -0.030181 0.457714 -0.233044 0.272506 0.317423 0.019090 0.745854 0.152497 0.740635 0.660878 0.281574 0.260872 -0.262569 -0.368834 -0.362266 0.294515 -0.738979 0.292023 -0.549356 -0.018796 0.281858 -0.401393 -0.183001 -0.415923 -0.143379 -0.202726 -0.665519 0.193579 -0.857371 0.285042 -0.450959 -0.544718 -0.114731 -0.004788 0.675717 0.385238 -0.044648 -0.076036 -1.177387 0.137129 0.116530 0.276019 0.587185 -0.280090 -0.379278 0.011702 -0.784184 -0.779977 0.736351 0.539402 0.294745 0.181848 -0.082764 -0.366155 -0.261105 0.021194 0.408240 0.688584 -0.145791 0.100990 -0.143722 -0.112771 -0.474349 -0.912521 0.228945 -0.479877 0.417911 0.260169 -0.089796 -0.169650 0.079842 0.094773 -0.413279 -0.796542 0.102539 -0.548044 0.260685 1.002897 -0.136676 -0.187158 -0.373832 -0.340696 0.095585 0.796498 0.344729 0.077197 0.976776 0.799921 0.162283 -0.673979 -0.525227 0.325529 0.437230 0.391801 0.446577 -0.878813 -0.565998 0.085294 -0.274924 -1.177837 -0.235945 0.244079 0.451258 -0.548968 -0.419929 0.815487 -0.438199 0.422998 0.812212 0.156428 0.259376 -0.052458 -0.702142 0.781483 1.474515 -0.166763 0.465564 -0.744769 -0.633163 1.197503 -0.538556 0.303494 0.177068 -0.215647 -0.413382 -0.332893 0.376436 0.681237 -0.034746 0.413139 0.453002 0.324463 -0.283596 -0.806846 -0.973905 0.079944 1.164738 0.257779 1.417038 -0.875917 -0.062649 0.057425 0.786915 0.264312 -0.203080 0.212458 -0.423110 0.484799 -1.537621 -1.084831 1.348193 0.885980 0.639836 0.082610 0.430169 0.712293 -0.230493 -0.438682 -0.404150 0.474751 0.182724 -0.724298 -0.282974 0.062147 -0.816854 -0.440243 -0.060707 0.402264 0.480458 -0.232916 -0.064830 -0.562500 -0.559432 -0.780060 0.464850 -0.643605 -0.201513 0.133271 -0.032274 -0.243704 0.245707 -0.063720 0.212205 0.140685 -0.246514 0.292494 0.452507 0.292340 0.036915 0.957840 1.115251 -0.496159 0.259634 0.138798 -0.068480 1.269781 -0.254409 0.306228 0.271086 0.658369 0.193679 0.241326 0.617018 -0.356669 -0.317449 -0.854986 0.215580 0.499665 0.327253 -0.415460 -0.497325 -1.259158 -0.208878 0.133543 1.236910 0.044378 1.361663 -0.183687 0.336496 -1.237705 0.147198 0.366964 -0.035730 0.588568 0.348296 -0.453383 -0.487341 -0.380714 -0.628469 -0.426316 -0.421584 -0.585650 -0.540622 -0.171540 0.052854 -0.499654 0.103776 0.739602 -0.097468 0.303295 -0.408616 0.029621 -0.716695 -0.012193 0.553705 -0.061129 -0.535932 0.624745 -0.039653 1.541532 -0.166405 0.677218 -0.285364 0.548798 -0.227209 -0.712218 -0.203654 1.045990 0.394294 -0.023424 0.278376 0.023730 0.273487 0.534345 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.162516 0.328757 1.156417 -0.065106 -0.566912 -1.277334 -0.550197 -2.192936 0.726531 0.350507 1.025506 -0.199597 0.600843 -0.069901 -0.004689 0.595435 0.356315 -0.567701 0.476960 -0.516511 -0.573535 1.432131 -0.030501 0.509001 0.125830 -1.547206 0.676557 0.188244 0.808014 0.771849 0.289694 -0.209758 -0.287419 0.450813 0.044812 0.539334 0.354519 0.382071 -0.666540 0.530154 -0.199624 -0.215904 0.704199 -0.053410 0.939735 0.400818 0.375903 0.438849 -0.201892 -0.382195 -0.436995 0.800220 -0.667487 0.243819 -0.164279 -0.405447 -0.119728 -0.314514 -0.328555 0.215680 -0.465459 -0.475776 -0.573741 0.365953 -0.776398 0.412033 -0.746606 -0.401847 -0.095711 0.108970 0.758272 0.419066 0.134703 0.510326 -1.510841 0.207470 0.142506 0.374171 0.480452 -0.424817 0.036135 0.133762 -0.793170 -0.898518 0.878266 1.116114 0.287791 -0.200703 -0.536344 0.013764 -0.399547 -0.135113 0.498149 0.656988 -0.566034 0.034331 -0.535650 -0.263738 -0.740546 -1.550432 0.187942 -0.514977 0.550026 -0.142002 0.084728 -0.250825 -0.064198 0.174164 -0.411449 -0.919310 0.171224 -0.325667 0.272164 1.432151 -0.324830 -0.101743 -0.627751 -0.352325 -0.181289 0.592951 0.523275 0.223979 0.944411 0.957780 0.371579 -0.663473 -0.821734 0.412283 0.550485 0.418369 0.522709 -0.946666 -0.595827 0.199907 -0.386438 -1.364772 -0.465009 0.294966 0.599034 -0.577707 0.070570 0.172687 -0.468170 0.648462 0.805786 0.007608 0.221705 -0.057908 -0.698113 0.844690 1.457561 -0.242467 0.679876 -0.798010 -0.171566 0.807798 -0.634336 0.362825 0.303188 0.007170 -0.607154 -0.410878 0.030462 0.636329 0.226770 0.472749 0.122846 0.446716 -0.534313 -0.865803 -1.136312 0.077741 1.237572 -0.159802 0.916787 -0.861833 -0.423603 0.127496 1.018751 0.406007 -0.478737 0.463981 -0.704621 0.501246 -1.025786 -1.044714 1.403147 1.424107 0.721729 -0.042099 0.466753 0.957145 -1.326473 -0.623466 -0.425320 0.617434 -0.179421 -1.750929 -0.746238 0.155110 -0.875284 -0.356137 -0.230168 0.553320 0.506413 0.481517 0.525897 -0.084085 -0.550582 -0.578792 0.846221 -0.412753 -0.394744 0.140599 0.025212 -0.074827 0.422713 -0.445588 0.362744 0.538424 -0.575872 0.420091 0.677291 0.271703 -0.082144 1.323328 1.028621 -0.188063 0.690246 -0.096883 -0.299098 0.775432 -0.141496 0.401883 0.085965 0.169064 -0.207364 0.244853 0.649148 -0.401924 -0.990282 -0.815649 -0.097860 0.185898 0.532366 0.458129 -1.064010 -1.260171 -0.100256 0.277088 1.228229 0.227535 1.321639 -0.262078 0.530583 -1.348601 0.200309 0.181129 -0.063829 0.708285 0.202892 -0.411132 -0.229077 -0.296366 -0.921696 -1.161152 -0.338139 -0.758394 -0.565006 -0.634810 0.613860 -0.403827 -0.190272 0.441892 0.130600 0.688181 -0.138791 -0.125748 -0.909629 0.319836 1.071025 -0.214346 -0.644760 0.690483 0.103301 2.152045 -0.147117 0.426570 -0.149254 0.154380 -0.018729 -0.722554 -0.135080 1.124082 0.710505 0.137372 -0.211036 -0.232977 0.208189 0.387745 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = -3.209994 -1.886966 5.809719 4.951601 -4.193892 -7.480865 -2.965969 -9.092296 5.935568 1.506778 6.504440 2.031002 4.039944 -5.549377 0.684518 0.475117 3.135277 -2.954461 -0.423722 -3.114485 0.274772 8.958059 2.972417 -4.715607 0.343880 -7.119828 3.168319 2.941632 2.699613 5.334806 1.477849 -0.084645 -1.945948 2.839838 -1.728514 3.467203 1.152136 1.450836 -3.399410 -2.173077 1.973984 0.603346 5.233650 -1.154108 7.694799 -1.255532 4.875373 1.060100 -4.231762 -3.290018 -2.887448 5.391626 -4.627780 2.318952 -0.482440 0.369606 1.529633 -3.148048 -2.144543 -6.694370 -0.332271 -0.583109 -3.962569 -0.010280 -3.212051 2.522985 0.336604 -2.125004 0.674077 -2.007587 4.395107 1.678855 0.738921 -0.386994 -6.115584 0.137915 0.215453 1.991351 3.458227 1.016541 -1.520854 -2.606885 -2.460686 -2.931577 4.446086 1.687834 0.799100 2.437743 -2.473216 0.427272 -0.971221 -1.151135 1.526708 1.454691 -4.534523 -0.849493 2.827658 -1.369543 -1.819749 -1.810743 1.862867 -2.549882 1.383420 2.925192 -0.331593 0.272517 -2.115859 0.297415 -5.800463 -4.063295 1.751715 -2.335757 0.133812 5.890486 -3.844382 -0.423783 -2.381110 -0.173176 0.042007 4.725012 0.651106 3.152609 4.544235 6.041578 1.569717 -5.161665 -2.402729 2.979793 6.533809 3.260090 1.838701 -4.053134 -3.126665 1.326853 -2.305175 -7.557694 -3.026391 3.410998 5.547071 1.917491 -5.154615 2.634565 -1.395530 6.604416 4.157886 0.426667 0.518532 1.088212 -6.214672 5.108108 8.274354 -1.143025 4.310438 -1.930033 -2.062872 5.885616 -4.461286 1.917745 1.870117 -1.647848 -1.376939 -2.049976 0.367198 3.745434 1.990540 2.989602 -1.845929 3.459856 -1.573047 -8.187109 -8.876471 -1.121954 6.033717 2.762489 8.938938 -5.116551 -3.270866 -1.098909 4.689458 -1.133038 -3.547145 1.652025 -5.011407 3.787268 -9.405374 -7.067304 11.997582 8.934928 4.746574 2.357475 5.755015 4.241959 -3.406663 -0.614190 -1.160291 2.519241 3.059262 -5.071410 0.300604 0.578610 -6.154635 -6.000724 -0.083733 2.102519 -0.524680 -0.719383 2.236148 -0.317403 -2.456542 -1.980637 2.394017 -3.552353 -1.979980 -0.276104 0.311802 1.258349 2.153539 -1.960211 1.291202 0.971666 -3.165444 0.754338 1.550259 3.900152 3.074286 5.352337 8.590038 -2.030982 6.241117 0.052032 -2.983295 7.646828 -2.094835 1.718668 0.767949 2.589405 3.187218 0.566026 3.109391 -2.796135 0.174586 -5.060620 0.682649 3.127959 4.918530 -5.642905 -5.778959 -7.401939 -0.998334 1.910858 4.478638 -1.909554 9.237478 -3.944712 0.645972 -12.140247 0.215444 4.138521 0.476221 2.568860 1.881217 -2.799858 -8.177986 -1.872676 -4.033169 -1.694349 -2.320475 -3.426835 -2.772705 -4.242865 6.416550 -5.245243 0.684322 5.161967 -0.577767 4.680158 -1.141164 0.478253 -3.210281 -0.047557 -0.646307 1.601629 -4.105048 5.816506 -0.103151 11.894878 -1.572739 3.380926 -2.852377 6.123782 -3.083241 -5.237591 -0.807226 6.470856 6.023198 -0.501916 1.079076 0.045054 -1.219343 4.292451 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -0.589581 -0.393878 2.753335 2.218079 -2.138677 -3.170790 -1.245664 -4.703796 2.713412 0.700851 2.552369 0.706105 1.646868 -2.341031 -0.221464 0.084301 1.062225 -0.874258 -0.112648 -1.348383 -0.486351 3.853016 0.496459 -1.900610 0.209256 -3.468710 2.249033 1.321298 1.640759 2.252660 0.679167 -0.096577 -1.063604 1.379473 -0.665038 1.111195 0.348409 0.852388 -1.670396 -0.754405 1.021118 0.126178 2.328709 -0.473778 3.115730 -0.365813 1.736288 0.583228 -1.489227 -1.081612 -1.020538 1.842205 -1.766471 1.147114 -0.392834 -0.121172 0.403653 -1.323260 -0.648073 -1.806412 -0.064260 -0.512244 -1.711417 0.095967 -1.799992 0.851728 -0.058772 -1.339086 0.349841 -0.948214 1.795741 0.693516 0.134636 -0.553989 -3.179475 0.003631 0.352140 0.786647 1.647169 0.538442 -0.168244 -1.108252 -1.554936 -1.413155 1.904566 1.447681 0.343833 0.884102 -0.928125 -0.412195 -0.120502 -0.434290 1.093776 1.019366 -1.878323 -0.363877 -0.193546 -0.495018 -0.848131 -1.610683 0.971137 -1.138919 1.089481 0.790530 -0.769129 0.427691 0.564157 0.201135 -1.691929 -1.796145 0.288324 -1.241231 1.109282 3.278673 -0.875182 -0.915049 -1.361646 -0.535431 -0.279482 1.744210 0.392526 0.928859 2.658717 2.556866 1.024323 -2.493986 -1.512779 1.651263 1.896014 1.617342 0.755080 -2.141819 -1.184350 0.425341 -0.759705 -3.689506 -1.080123 0.560246 2.135025 -0.261323 -1.494140 1.079340 -0.862904 2.441422 1.734815 0.076463 0.426737 0.593351 -2.445870 2.157773 3.729274 -0.137345 1.299584 -1.540530 -1.131802 2.292555 -1.358119 0.830970 0.490910 -0.686603 -0.618361 -1.016862 0.623110 1.750043 -0.081305 1.051007 -0.404016 1.490518 -1.207625 -3.381148 -3.581677 -0.145745 2.870912 1.332984 4.071104 -2.517529 -1.192692 -0.304977 2.227793 0.055680 -1.018279 1.105495 -2.290346 1.829421 -3.549950 -3.263349 4.528950 3.612979 1.881570 0.518440 2.266174 1.406080 -1.608092 -0.704289 -0.817995 0.919164 1.589789 -2.452126 -0.102499 0.306878 -2.606833 -2.242156 0.369027 0.964569 0.591276 -0.461509 0.973762 -0.629740 -1.037641 -1.848282 1.844993 -1.460439 -0.353139 -0.018902 0.229629 0.176218 1.244020 -0.899892 0.323259 0.205173 -0.694632 0.850103 0.833464 1.283416 0.433087 2.268755 3.462044 -1.116470 2.436587 0.167117 -1.025954 3.782745 -0.863818 0.859013 0.751126 1.027693 0.890609 0.532821 1.483674 -1.426647 0.135583 -2.366410 -0.081233 1.068738 1.872292 -2.309022 -1.979786 -3.398148 -0.658117 0.331195 1.923874 -0.285130 4.072324 -1.569067 0.479040 -4.839445 -0.005202 1.802171 0.111929 1.712884 0.778845 -1.432826 -2.911923 -0.811928 -1.855746 -1.084187 -1.156520 -1.486875 -1.615857 -1.418362 2.220469 -1.634496 0.323089 2.473654 -0.407202 1.632626 -1.685485 0.453252 -1.314379 -0.220766 0.002457 0.446986 -1.975345 2.243099 -0.048867 5.256723 -0.416455 1.548673 -1.148838 2.357097 -1.316792 -2.670643 -0.557764 2.893418 1.980251 0.215419 0.161051 -0.083741 -0.507230 1.950786 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = -2.197833 -1.170226 3.792497 2.662101 -2.581245 -4.827595 -2.024065 -6.168164 3.519601 1.089773 4.514761 0.975970 2.545219 -3.354260 0.539268 0.342169 1.833877 -2.248936 -0.019220 -2.004661 -0.055053 5.315097 1.720765 -2.501143 0.306821 -4.748103 2.307239 1.856082 1.295748 3.381208 0.987191 -0.035567 -1.326274 1.939960 -0.833398 2.490038 1.157975 1.036497 -1.591982 -1.030315 1.299036 0.488429 3.173158 -0.700168 5.112146 -0.226839 2.752004 0.766914 -2.785044 -2.212077 -1.509579 3.202752 -3.158658 1.319703 -0.255462 0.187172 0.943967 -2.325639 -1.445078 -4.245894 -0.228683 -0.647122 -2.566542 0.165138 -1.985624 1.672869 0.274367 -1.249728 0.537004 -1.186156 2.852429 0.946112 0.239704 0.376002 -3.518936 0.120763 0.335647 1.182462 2.179046 -0.034321 -1.047967 -1.463294 -1.693370 -2.069114 2.921243 1.307336 0.804385 1.355764 -1.545605 0.572139 -0.620132 -0.801204 1.079812 1.319385 -2.608731 -0.925887 1.979150 -1.036403 -1.522961 -1.361346 1.345818 -1.764477 1.087022 2.169416 -0.485913 -0.104283 -1.584980 0.318450 -3.897820 -2.669283 1.077152 -1.785472 0.603035 3.593388 -2.513494 -0.164803 -1.814571 -0.448804 0.483983 3.049913 0.586413 1.822583 3.226296 4.081201 0.911283 -3.334970 -2.013109 1.703659 4.171603 2.100605 1.104478 -3.150753 -1.982524 0.857977 -1.868108 -4.766854 -2.059939 1.695274 3.464866 0.968653 -3.312374 1.995210 -1.005163 4.076309 2.841768 0.428508 0.092699 0.739919 -4.033426 3.393580 5.162983 -0.816351 2.838467 -1.225488 -1.239032 3.494168 -2.860009 1.083256 1.727585 -1.060254 -1.102768 -1.341835 0.121185 2.423152 1.498788 2.278749 -1.132795 2.310601 -0.979730 -4.937502 -5.655533 -0.525185 4.136698 1.522568 5.667897 -3.494234 -2.144331 -0.634092 3.523109 -0.601788 -2.413781 0.932296 -2.969475 2.403050 -5.514028 -4.425276 7.463287 5.702217 3.275370 1.448798 3.623984 2.836432 -2.451848 -0.157394 -0.788228 1.802433 1.670276 -3.348271 0.107617 0.361499 -3.858171 -3.817480 -0.375883 1.494811 -0.332798 -0.343079 1.257491 0.106879 -1.468029 -1.136398 1.364672 -2.130833 -1.390101 -0.256578 0.148474 0.883017 1.260105 -1.427010 0.906046 0.686933 -2.216211 0.634883 1.440139 2.434248 2.079522 3.791689 5.186681 -1.418673 3.748553 -0.102452 -1.612431 4.301202 -0.965435 1.234473 0.703968 1.674773 2.097632 0.319341 2.200083 -1.769850 -0.173899 -3.350100 0.376298 2.028036 3.268018 -3.097368 -3.633071 -5.071079 -0.693873 1.391697 3.188766 -1.169501 5.917535 -1.931564 0.596408 -7.379133 0.099881 2.429486 0.067268 1.349757 1.069782 -1.768349 -5.256016 -1.206105 -2.773774 -1.807160 -1.413674 -1.810970 -1.934212 -2.783054 4.061544 -3.052571 0.308459 3.080765 0.025526 2.604578 -0.438169 0.252926 -2.085993 -0.021102 -0.086160 0.768210 -2.789357 3.702705 0.158554 7.774755 -1.117221 2.188114 -1.697832 3.778569 -1.817424 -3.002200 -0.356797 4.112553 3.916909 -0.193490 0.539558 0.147520 -0.720822 2.875370 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -1.822985 -0.851044 3.528547 3.117200 -3.037794 -4.880079 -1.782356 -5.756623 3.636961 1.020962 3.869752 1.389013 2.730665 -3.250270 0.161112 0.059324 2.171632 -1.542875 -0.092264 -2.077084 -0.508313 5.752430 1.627428 -2.585987 0.299258 -4.195558 2.841554 1.572807 1.838970 3.788409 1.125043 -0.002724 -1.513227 1.759146 -0.683749 1.955880 0.215568 1.156266 -2.120376 -1.021778 1.427683 -0.439193 3.571472 -0.279043 4.391150 -0.475208 2.612031 0.761660 -2.523890 -2.124602 -1.839952 2.458395 -2.973584 1.552657 -0.615769 -0.098667 1.180177 -1.377314 -0.983499 -3.655152 -0.246654 -1.125193 -2.520449 0.142319 -2.466358 1.438176 -0.839416 -1.594730 -0.022811 -1.454290 2.604622 1.024535 0.415019 -0.352916 -4.442547 -0.073688 0.122570 1.191251 2.425720 1.065686 -1.173988 -1.693495 -2.144343 -2.143694 2.684104 1.041594 0.412595 1.506800 -1.759820 -0.191827 -0.534424 -0.365282 1.313258 1.062287 -2.702817 -0.263685 1.057823 -0.806436 -0.958748 -2.171965 1.280270 -1.537446 0.974705 1.475975 -0.623687 -0.161179 -1.135874 0.016248 -3.178777 -2.691076 1.146326 -1.709068 0.025897 3.945453 -1.991441 -0.634812 -1.802677 -0.304813 0.359687 2.926971 0.727457 1.652608 2.814504 3.559794 1.175595 -3.249424 -1.527286 2.019886 3.447067 1.733688 1.154085 -2.202949 -2.051310 1.016577 -1.511406 -4.744036 -1.876584 2.151111 3.344208 0.750466 -2.576104 1.577907 -1.286720 3.390582 2.808000 0.510536 0.633735 0.605180 -3.743368 3.025191 5.073196 -0.603240 2.428139 -1.330414 -1.587169 4.239713 -2.511866 1.109316 0.711977 -0.991376 -1.163207 -1.141170 0.469603 2.445174 0.689379 1.630258 -0.678742 2.074044 -1.224584 -4.822487 -5.360526 -0.396640 4.530837 2.307368 5.319664 -3.425633 -1.172848 -0.267496 2.718985 -0.031382 -2.215483 1.196800 -2.741530 2.355916 -6.562793 -4.401991 7.225448 5.006686 2.741161 1.132943 2.736935 2.663145 -2.002590 -0.930265 -1.303447 1.619082 1.487506 -3.121694 -0.037386 0.509282 -3.896443 -3.314749 0.282723 1.394400 0.631399 -1.057245 1.370344 -0.832206 -1.264453 -1.919489 1.986137 -2.126325 -1.265779 -0.016506 0.017073 0.635753 1.277176 -0.575977 0.836576 0.347983 -1.591143 0.426816 0.867408 2.160494 1.338519 3.576626 5.314118 -1.628884 2.650983 0.025121 -1.843100 5.373684 -1.568311 1.224673 0.512976 1.936367 2.017035 0.461118 2.339308 -1.766422 -0.189702 -3.189048 0.087480 2.014528 2.939401 -3.797506 -3.431092 -5.074237 -0.252008 0.707730 3.307947 -0.989193 5.818484 -2.491635 0.525013 -6.877734 0.285514 2.682737 0.227459 2.074901 1.118274 -1.797506 -3.777984 -1.341345 -2.788636 -0.404322 -1.366169 -1.854047 -1.819648 -1.901515 3.080099 -2.978895 0.370885 2.970277 -0.933732 2.941107 -0.886575 0.274459 -2.242883 0.041743 -0.049702 0.873536 -2.460788 3.832766 0.034419 6.923084 -0.593954 1.980592 -1.431035 3.637753 -2.028325 -3.642733 -0.769273 4.072551 3.495781 -0.114980 0.784212 0.158019 -0.182666 2.467263 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = -0.854300 -0.454427 3.617760 2.483205 -2.447314 -3.833745 -1.639416 -6.049928 3.484138 0.751679 3.291320 0.818964 1.937329 -2.983294 0.010846 0.462900 1.416994 -1.325824 -0.086078 -1.605025 0.020263 4.775863 0.663999 -2.224083 0.253112 -4.568234 1.819191 1.685433 2.217994 2.299681 0.859625 -0.314189 -1.343440 1.649616 -0.863879 1.512990 1.077943 0.723218 -2.542321 -1.064427 0.691983 0.645467 2.691861 -0.878315 4.147959 -0.940523 2.411629 0.826188 -1.875999 -1.279375 -1.397961 3.443191 -1.986826 1.424691 0.299027 -0.138925 0.236678 -1.900979 -1.023534 -2.198067 -0.338512 -0.311166 -1.850113 0.096158 -1.832012 1.161124 0.300101 -1.221986 0.700122 -0.914405 2.373260 0.848063 0.521570 -0.245252 -3.744888 0.225081 0.303882 1.237037 1.929896 0.572335 0.168362 -1.209951 -1.414089 -1.706041 2.391045 1.994777 0.362932 0.884989 -1.379369 -0.067233 -0.356721 -1.024468 1.067004 1.016370 -2.805225 -0.548995 0.001138 -0.701673 -1.198490 -1.729012 0.977178 -1.421865 1.165720 0.909775 -0.345406 0.454526 0.216951 0.301669 -2.345129 -2.061191 0.723414 -1.097655 0.983910 4.164413 -1.528924 -0.715197 -1.490396 -0.445475 -0.847382 2.211756 0.397374 1.517875 2.853195 3.443168 1.270781 -2.834977 -1.835762 2.026271 2.915959 2.113376 1.047697 -2.857705 -1.408611 0.609310 -0.832338 -4.536762 -1.431996 1.014770 2.879046 0.385168 -1.982159 0.672753 -0.799238 3.610614 1.780503 -0.145342 0.342781 0.656025 -3.059392 2.871753 4.635685 -0.347650 1.950997 -1.588553 -0.830368 2.238545 -2.102989 1.204931 0.792389 -0.689574 -0.600239 -1.297230 0.264080 2.064227 0.523547 1.363133 -1.002160 1.886711 -1.529581 -4.521736 -4.758285 -0.290029 3.074012 0.865757 4.723951 -2.788366 -2.297969 -0.671986 3.104524 -0.424808 -1.488687 1.450192 -3.226600 2.264148 -3.562159 -3.885195 6.014646 5.270325 2.255299 0.670969 3.310819 2.039219 -2.902901 -0.856132 -0.723389 1.094217 1.833986 -3.658742 -0.290532 0.369346 -3.200860 -2.958831 0.242401 1.156356 0.265402 0.350900 1.596924 0.055786 -1.470495 -1.636228 2.172709 -1.622183 -0.618154 -0.019011 0.402723 0.436515 1.828929 -1.662220 0.327511 0.836924 -1.419345 0.904856 1.078097 1.861134 0.901765 2.932608 4.160319 -0.666379 4.196671 0.237327 -1.622666 4.207491 -0.933057 1.009157 0.637856 0.690470 0.889131 0.631590 1.465785 -1.765425 -0.246610 -2.942863 -0.043994 0.915879 2.554923 -2.388448 -3.189232 -3.811490 -0.945896 0.898916 1.795233 -0.458576 5.008219 -2.097766 0.415519 -6.580131 -0.024796 2.266585 0.161192 1.883117 0.933453 -1.689716 -4.331065 -0.881545 -2.307652 -2.003256 -1.419293 -2.235290 -1.757974 -2.634151 3.983842 -2.264759 0.359102 3.154522 -0.022455 2.375351 -1.670870 0.411472 -1.740811 -0.113544 -0.005071 0.473986 -2.550103 2.860483 -0.092004 7.071534 -0.886370 1.705700 -1.586631 2.680055 -1.415644 -3.096807 -0.458423 3.583624 2.850942 0.226519 -0.151032 -0.215233 -1.194608 2.433651 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 1.154849 0.708459 1.729820 0.316615 -1.193173 -2.545896 -0.445193 -3.781732 1.622192 0.305223 0.978910 0.202503 0.998359 -0.598890 -0.224488 1.491124 0.960546 0.071448 0.170493 -1.073807 -0.590056 2.435321 -0.694838 0.344192 0.416640 -2.198884 0.560423 0.907841 2.098058 0.850895 0.784402 -0.385690 -0.661711 0.587208 -0.252812 0.362873 0.181890 0.182626 -2.531804 0.487999 -0.712049 -0.248014 1.548608 -0.028653 1.415042 -0.237338 1.234340 0.948528 0.095714 -0.270685 -1.130330 2.114182 -0.121790 0.832103 -0.351977 -0.715131 -0.406723 -0.208207 -0.072884 1.348126 -0.722898 -0.274567 -1.001048 0.210516 -1.321723 0.176793 -1.020210 -1.042879 -0.312255 -0.165624 0.963948 0.234968 -0.177796 -0.307396 -3.394270 -0.161140 0.158468 0.889773 0.998151 0.340246 0.663463 -0.430365 -1.297021 -1.080866 1.386622 2.030324 0.147631 0.282851 -1.582199 -0.873517 -0.680515 -0.318706 1.200298 0.417717 -1.649182 0.088073 -1.404084 -0.417104 -1.068776 -2.387121 0.611296 -0.187088 0.816363 -1.670675 0.852361 0.233195 0.744545 0.062149 -0.152185 -0.832159 0.171930 -0.211930 0.293533 3.080741 -0.001653 -0.822255 -1.127978 -0.401457 -1.367711 0.809336 0.709579 0.102063 1.370104 1.250394 0.964783 -1.122279 -1.160151 0.938828 0.403722 0.986253 0.811457 -0.881282 -0.745520 0.414432 -0.415048 -2.510396 -0.553314 0.565785 1.148203 -0.843724 0.879076 -0.642410 -0.753056 1.072656 0.646861 -0.521679 0.730105 -0.079786 -0.959058 1.048707 2.436875 -0.113197 0.791434 -1.560530 0.098544 0.643299 -0.519056 0.581757 -0.130584 -0.564453 -0.784232 -0.101975 0.315023 0.918052 -0.178925 -0.124741 0.019990 0.797827 -1.586531 -1.437149 -2.021296 0.001568 1.405966 0.036437 1.478604 -1.143211 -0.848050 -0.314556 1.031679 0.252814 -0.394959 1.394219 -1.933796 0.972326 -1.164103 -1.406317 2.415543 2.598248 1.099443 -0.475740 0.906608 1.017865 -2.343387 -1.440085 -0.312365 0.325130 0.423383 -3.421555 -1.029813 0.267464 -1.579893 -0.467442 0.113178 0.761334 0.647573 1.275814 2.041485 -0.843642 -0.869023 -1.444416 1.653299 -0.401749 0.140295 0.464522 0.154819 -0.390211 1.090202 -0.890556 0.177104 0.871172 -0.567050 0.802546 0.370409 0.502054 -0.402004 1.560008 1.659483 0.067550 2.522747 -0.108988 -1.133046 1.718787 -0.388128 0.901202 0.081551 -0.070761 -0.572549 0.519399 0.626238 -0.819646 -0.963831 -1.190084 -0.631871 0.309500 0.874179 0.858170 -1.558219 -1.812794 -0.311224 -0.239001 1.359222 0.184074 1.800763 -1.276838 0.876572 -2.506391 0.464207 0.342108 0.090075 1.243850 0.359342 -1.020624 -0.001821 -0.156721 -1.654137 -1.977461 -0.345083 -1.407373 -0.993304 -1.005461 1.239075 -0.992708 -0.267600 1.175607 -0.484456 1.435929 -1.627266 0.172067 -1.012976 0.361160 1.740973 -0.224532 -1.101421 0.484138 0.062233 3.534162 0.376868 0.848210 -0.201304 0.133429 -0.118686 -2.002204 -0.700747 1.717772 0.994846 0.275782 -0.369491 -0.525560 0.335379 0.672351 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp___GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/trie-suffixes.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.087759 0.902240 6.269595 2.489243 -4.331377 -6.178523 -2.352678 -9.546320 4.247203 1.238892 4.586305 0.783349 1.734186 -2.310244 0.300708 2.373056 1.480015 -1.710516 0.103350 -2.824871 -2.100278 5.093407 1.202383 -1.606765 1.397307 -7.204048 3.197677 1.843414 3.603419 2.863948 1.544178 -1.037035 -1.991256 3.253127 0.268093 2.462057 1.479026 0.848949 -3.615094 1.072918 0.530426 0.431487 3.538978 0.338602 5.960530 0.465099 3.568210 1.710655 -3.095528 -1.028764 -3.016171 6.085273 -3.673371 2.551695 -0.203361 0.293492 -0.650310 -3.228374 -1.275506 -1.996137 -1.697324 -1.406615 -2.861758 0.391220 -3.432388 1.443867 -1.529645 -2.168523 0.476223 1.031536 4.444378 1.598273 0.228104 1.197291 -5.624398 0.383547 0.325337 2.809615 3.601180 -1.588434 0.077182 -0.573569 -2.507010 -3.478011 3.785038 2.270079 1.046724 -0.316598 -1.202732 -0.496310 -1.556757 -1.732474 1.419533 2.570995 -4.832429 -0.099086 -1.455096 -1.250767 -3.045187 -4.520598 0.756775 -2.517189 2.221697 0.234902 -0.384265 0.256465 -0.452935 0.879583 -2.551999 -3.181875 0.904882 -0.849376 1.287276 6.083541 -1.676856 -1.098792 -0.923511 -0.909614 -1.436548 3.236892 1.860572 1.517666 5.346125 5.613897 2.157555 -3.009828 -2.758944 1.401540 3.245231 3.803848 2.779649 -4.254420 -2.922595 0.810120 -0.456804 -6.922303 -0.383665 1.725238 4.048743 0.469366 -2.076765 -0.492501 -1.696463 4.463607 2.495371 0.463908 1.045670 -0.163602 -4.098368 4.462416 8.072644 -1.170321 3.153096 -2.686895 0.031596 3.354743 -3.834049 1.651200 1.415604 -0.879843 -0.471865 -2.161843 -1.646816 3.578985 1.591832 0.931383 0.743927 2.832870 -2.879957 -6.411488 -5.919644 -0.354097 4.868260 -0.592732 5.594726 -4.176095 -2.536252 -1.532646 5.022405 0.046140 -1.836790 1.773211 -3.971372 2.837002 -4.165899 -5.215354 8.555359 8.434718 2.748748 -0.145350 4.043730 4.514872 -5.904273 -2.746854 -1.575074 1.152561 1.330389 -5.965109 -2.612702 0.668468 -4.840123 -3.150853 0.230311 1.972596 1.623453 1.150580 1.411175 1.784002 -2.984467 -2.738810 2.771141 -2.802710 -1.584193 0.802424 0.613615 0.791716 2.360054 -2.354253 0.298660 2.035455 -2.930817 1.353711 2.591387 3.792869 1.416552 5.833639 5.110383 0.094605 5.841936 1.089127 -2.726640 5.652078 -0.792826 1.951891 1.293484 0.645276 -0.247139 1.288510 2.352463 -2.607105 -2.410166 -4.391435 0.298944 0.273107 3.320707 -0.832154 -4.306172 -5.788179 -1.366145 2.172985 2.752936 -0.550656 7.132652 -1.501496 1.036947 -8.533395 -0.188801 3.068089 -0.244817 3.337256 1.884493 -2.720304 -4.783678 -1.818236 -3.328310 -2.983842 -1.668522 -1.934927 -2.674763 -2.967400 4.679519 -2.585629 0.709597 3.779274 0.427724 3.564897 -2.234515 0.378632 -2.729486 0.360765 3.541471 0.695181 -4.413243 4.403055 0.077451 11.461509 -1.000215 2.208032 -2.187040 0.377297 -0.424780 -2.625690 -1.031369 5.502265 4.045159 1.528229 -0.384859 -0.296356 -1.199140 3.796267 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = -0.226765 0.677277 2.527304 1.473306 -1.986977 -2.744528 -1.010557 -3.449343 1.244255 0.055090 2.004954 0.089673 0.788422 -0.614035 0.217508 0.088466 0.851318 -0.343135 0.051111 -1.095724 -1.120401 1.785375 0.425298 -1.155861 0.400773 -2.009797 1.523538 1.290488 1.028000 1.233126 0.477172 -0.381167 -1.069626 1.206235 -0.376914 0.265405 0.423143 0.477074 -1.377988 0.124063 0.456546 0.011938 1.818417 -0.201924 1.677651 0.496216 1.325435 0.828394 -1.516946 -0.498089 -1.047737 2.067158 -1.328421 0.963747 0.209481 -0.017073 0.390262 -1.175946 -0.383387 -0.956123 -0.347260 -0.638716 -1.148618 0.114293 -1.480915 0.415147 -0.605648 -1.220429 0.693868 -0.035692 1.425070 0.223658 -0.055291 0.177819 -1.912801 0.148338 0.315847 1.204206 1.240119 -0.199057 0.370793 -0.102165 -1.190213 -1.213494 0.984998 0.446161 0.763609 -0.029322 -0.766437 -0.229631 0.122087 -0.421422 0.545694 0.828568 -1.257452 0.292359 -0.931575 -0.576610 -1.600230 -2.011481 0.439201 -0.865814 1.001650 0.408866 -0.774329 -0.178973 -0.399252 0.224788 -0.929635 -1.789375 0.133407 -0.745594 0.572351 2.353938 -0.882901 -0.543430 -0.468080 -0.587220 -0.315637 1.300745 0.692867 0.512150 1.520193 2.187353 0.607998 -1.483088 -1.177692 0.175517 1.196315 1.517801 1.173200 -1.500197 -1.131667 0.282428 -0.693654 -2.911460 -0.061826 0.585692 1.642422 0.435630 -1.202538 0.243645 -1.136748 1.591578 0.854003 0.938125 0.409973 -0.087519 -1.508015 1.595878 2.456829 -0.593830 1.501726 -0.634117 -0.661986 1.374480 -0.937923 0.634806 0.653087 -0.486721 -0.154571 -0.715824 -0.520652 1.484802 0.755244 0.556157 0.642042 0.746878 -1.115384 -2.624813 -2.376689 0.497202 2.231924 0.089337 2.190167 -1.854123 -1.074933 -0.131788 2.122860 -0.487174 -1.064630 0.539687 -1.202461 1.246881 -1.960413 -2.162534 2.889799 2.588043 0.564911 0.018353 1.412933 1.240731 -1.987367 -1.049107 -1.071926 0.743998 0.260820 -1.822261 -0.614341 0.167196 -1.836691 -0.563801 0.344126 0.960150 0.850179 -0.287936 0.235851 0.144621 -1.325886 -1.282838 1.068025 -1.143998 -0.345831 0.484904 -0.162896 0.339226 0.850674 -0.623194 -0.356160 0.374090 -1.248210 0.348309 0.620214 1.425085 0.418517 2.839618 1.695494 -0.123551 1.975009 0.530363 -1.180574 2.967897 -0.726380 0.880382 0.377055 1.170252 -0.007638 0.625950 1.401135 -0.979988 -1.152688 -1.954988 -0.278161 0.288245 1.405145 -1.208689 -1.558966 -2.687277 -0.511531 0.793140 1.524667 -0.466936 2.905279 -0.509393 0.362627 -3.132746 -0.089436 1.080486 -0.260444 1.368710 0.643715 -1.221456 -1.963586 -0.627910 -1.540862 -0.700531 -0.502767 -0.829307 -1.098269 -0.836209 1.298329 -0.762377 0.189148 1.451472 -0.331760 1.005410 -0.428327 -0.044196 -0.543292 -0.390067 1.430365 0.131581 -1.768390 2.249122 0.215287 4.576945 0.062725 1.034929 -0.902472 0.188161 0.067339 -1.091762 -0.573343 2.275227 1.695396 0.569969 -0.124519 0.345342 -0.498100 1.277224 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.179190 0.433119 4.558581 2.216331 -3.358600 -4.685713 -1.858988 -7.485771 3.302139 1.112951 3.770429 0.453441 1.424119 -1.923397 0.222221 1.561451 1.191283 -1.328621 0.090667 -2.212183 -1.321959 4.155712 0.692126 -1.372198 0.789483 -5.488473 2.515406 1.669911 2.507485 1.889928 1.139119 -0.648739 -1.658795 2.330392 -0.301603 1.856756 1.222599 0.854169 -2.595251 0.414810 0.602953 0.657373 2.634912 -0.046444 4.694528 0.260638 2.747836 1.276461 -2.516775 -1.097786 -1.849379 4.288448 -2.567845 2.003125 -0.144987 -0.015800 -0.233474 -2.426296 -0.912673 -1.658768 -0.941735 -0.934296 -2.132192 0.319422 -2.385446 1.238629 -0.554195 -1.709078 0.610566 0.529613 3.392799 0.940767 0.027744 0.818704 -4.193777 0.208379 0.304318 1.882203 2.627978 -1.085018 0.131041 -0.700293 -2.037325 -2.608915 2.864803 2.134891 0.864540 0.072760 -1.126434 -0.258254 -0.768690 -1.421783 1.250241 1.977469 -3.477686 -0.412342 -0.707757 -0.920355 -2.346085 -3.077215 0.766858 -1.862771 1.771269 0.448243 -0.495462 0.275334 -0.137324 0.623912 -2.202471 -2.392742 0.641929 -0.978939 1.565096 4.655476 -1.276362 -1.026624 -0.998767 -0.861816 -1.033506 2.415700 1.454766 1.136746 4.332050 4.245191 1.500318 -2.604435 -2.465438 1.280008 2.618034 2.965030 1.843480 -3.386296 -2.165437 0.605611 -0.683904 -5.070489 -0.653892 1.082617 3.341707 0.036896 -1.555112 0.078379 -1.333666 3.637321 1.977379 0.417871 0.539147 0.072167 -3.316150 3.308314 5.888316 -0.647714 2.296458 -1.933108 -0.101359 2.213889 -2.597245 1.219925 1.553997 -0.810871 -0.728593 -1.613965 -0.952927 2.639260 1.056344 0.958186 0.233272 2.470168 -2.358327 -4.760536 -4.868741 -0.197892 3.693627 -0.108421 4.645413 -3.364864 -2.204205 -0.978622 3.884422 -0.073745 -1.587999 1.436455 -3.100448 2.195872 -2.992482 -4.032089 6.507613 6.492736 2.463230 -0.130853 3.462688 3.146673 -4.275660 -1.914564 -0.991389 1.019891 1.300575 -4.452011 -1.612689 0.676794 -3.637152 -2.831828 0.084439 1.584462 0.812365 0.732936 1.332342 1.012691 -2.103214 -1.957033 2.079575 -1.873573 -0.911962 0.453957 0.524389 0.529961 1.813966 -2.011235 0.290219 1.361291 -2.122562 1.264497 1.946770 2.689500 1.172207 4.437167 4.009077 -0.228871 4.754675 0.571125 -1.955467 4.376459 -0.644195 1.476924 0.967263 0.569772 0.032676 0.774259 1.868577 -2.051782 -1.373881 -3.482527 0.122406 0.471227 2.545431 -1.076021 -3.034758 -4.812670 -1.062099 1.367905 2.255627 -0.427056 5.529669 -1.380138 0.740579 -6.674532 -0.106087 2.242777 -0.384089 2.260792 1.264194 -1.978488 -4.055234 -1.249001 -2.674826 -2.688056 -1.273869 -1.703072 -2.170211 -2.425351 3.471886 -2.009847 0.519541 3.081402 0.477119 2.469298 -1.974302 0.320461 -1.914336 0.242307 2.248280 0.397797 -3.571906 3.201458 0.073270 8.982165 -0.818957 1.819279 -1.636652 0.853027 -0.655991 -2.439326 -0.726465 4.151887 3.119398 1.074249 -0.308618 -0.089601 -1.048751 3.034521 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.590227 1.095375 5.995661 2.009000 -4.055364 -5.570401 -2.307490 -11.530572 5.042618 1.867363 4.757274 0.171558 2.346174 -2.925731 -0.508276 2.274863 1.770493 -2.167838 0.901976 -2.701846 -1.753586 6.352375 -0.795813 0.043434 0.753587 -8.134375 3.580160 1.589673 4.394846 1.997997 2.102037 -1.048158 -2.255100 2.826180 0.236536 2.507558 2.179854 1.353151 -4.039006 0.306524 -0.064432 0.325170 3.657269 -0.144564 5.956227 -0.534352 3.015689 1.778049 -2.120769 -1.164443 -2.123408 5.391745 -2.757303 2.243643 0.718475 -1.458176 -0.371198 -2.757278 -0.790483 0.546569 -1.869437 -1.876536 -2.387054 0.890413 -3.148006 1.438230 -1.404402 -1.793852 0.374923 0.298397 3.984618 1.585248 0.722186 1.397897 -6.775009 0.762955 0.736091 1.777987 3.516817 -0.511457 1.081600 -0.876155 -3.219632 -3.963386 4.477409 4.975140 0.825552 -0.085814 -2.342049 -0.457134 -1.283214 -2.126679 2.288193 2.862031 -4.666038 -0.899598 -2.220836 -1.435955 -3.059991 -5.741140 1.070484 -2.526045 2.575055 -0.341082 -0.751515 0.215418 0.768611 0.366010 -2.078946 -2.777280 1.021923 -1.803329 3.014497 7.318624 -1.355805 -1.859613 -2.850623 -1.437534 -1.658127 2.512111 1.979815 1.153446 5.895425 5.083058 2.712265 -3.560780 -3.709542 2.790796 2.594725 3.228368 1.906983 -5.005630 -2.273835 1.065839 -0.546112 -6.979073 -1.697472 0.716385 3.788935 -1.162578 -0.413299 -0.599122 -1.497071 4.311957 2.788020 -0.407753 0.902629 0.691581 -3.585911 4.085746 7.046218 -0.358615 2.388220 -3.519202 0.089765 2.151847 -3.227950 1.825434 1.312478 -0.497222 -1.736987 -2.233237 -0.266466 3.347984 0.146481 0.948501 -0.430218 3.182453 -3.363952 -5.654931 -6.654046 0.459195 5.119843 -0.163783 5.627910 -4.489262 -2.887781 -0.508273 5.049945 1.019298 -1.870612 2.973472 -4.628929 3.065230 -2.903789 -5.395133 7.993402 8.149425 3.100447 -0.902863 3.731806 3.638351 -7.023689 -3.169591 -1.680798 1.509124 1.376757 -7.921088 -2.547826 1.178271 -4.553211 -3.376653 0.033927 1.992794 2.397802 1.522642 3.197002 0.310599 -2.140136 -3.127907 4.501040 -1.427726 -1.363679 0.266317 0.930544 0.466259 3.424412 -2.623912 0.544382 2.003989 -2.263836 1.701496 2.780711 2.699424 -0.011015 5.887656 5.229383 -0.373421 5.976383 0.289694 -2.110090 4.797317 -0.758403 1.700780 1.200894 -0.217777 -0.315203 1.445712 2.675032 -2.938321 -2.656609 -4.418662 -0.471093 -0.049095 3.009285 -0.388256 -4.294243 -6.396085 -1.442110 1.034556 2.857093 0.548271 7.109612 -2.092673 1.082484 -8.015711 -0.007455 2.688052 -0.317848 3.686398 1.258917 -2.804033 -2.805158 -1.672640 -4.231753 -5.087396 -1.545227 -2.618169 -3.035247 -3.786016 5.297230 -2.246417 0.300451 3.736844 0.802899 3.213894 -3.160619 0.637529 -3.378606 0.887436 3.340880 -0.367439 -4.231717 3.794646 -0.078577 11.371187 -1.294123 1.769380 -1.784025 1.262792 -0.949596 -4.236298 -0.957352 5.410479 3.506443 1.425232 -1.418254 -0.788056 -1.287504 4.054925 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/trie-suffixes.cpp__main = 4.000125 6.409735 13.509079 3.419493 -14.297640 -15.631228 -4.510961 -24.863260 9.319690 2.024730 5.310323 1.940405 2.653519 -8.369904 -1.896730 10.290056 4.548298 -0.018436 -1.755955 -7.445028 -12.809250 6.739515 -3.223410 -0.784147 7.560618 -13.694056 9.874182 1.907276 8.970802 4.103386 8.102973 -2.125918 -6.474362 8.800947 7.892443 10.123646 3.471250 1.555665 -11.518635 5.688942 -0.526532 -4.481073 9.007804 3.460394 13.430041 3.085204 6.938456 6.661994 -7.722847 2.055603 -8.196840 15.026322 -7.055839 6.701355 -0.175271 -0.362807 -2.752701 -8.076904 -0.626548 5.347475 -8.924707 -9.081988 -7.731871 0.717172 -10.370620 0.054106 -5.501186 -6.636632 -1.846735 5.128868 8.456994 3.712109 -1.900523 3.757308 -13.473851 -1.389453 4.127872 7.388749 11.615043 -2.141831 5.060626 -3.237830 -7.544234 -9.118843 11.677751 3.831923 4.256700 -0.968252 -3.072700 -5.205471 -5.962567 -5.483569 7.930000 5.528820 -12.936119 -2.580387 -9.958808 -4.300089 -9.858551 -17.918443 3.424292 -2.939746 6.675565 -5.924445 -2.085864 1.853057 4.098538 1.936672 -1.315823 -2.783615 0.653872 -3.229247 4.827428 17.129660 2.320850 -6.303181 -3.315518 -5.267362 -5.342826 4.798918 6.026644 -0.282274 15.103544 12.562507 10.999662 -4.605748 -7.706408 1.408400 1.210990 8.456814 7.231952 -10.900477 -6.076915 4.102251 0.225741 -16.959521 -0.203830 -0.325994 6.504849 -0.789300 0.194179 -5.506026 -2.758961 4.213157 -0.028976 -2.101517 3.840529 -1.019621 -6.231657 9.275902 17.024509 -1.443046 3.947352 -8.379696 2.981575 4.552436 -5.571925 0.453613 0.729805 -6.022834 -1.865422 -2.036581 -2.942594 7.020446 0.104163 -5.466815 1.946750 6.486951 -13.033941 -12.645113 -9.754611 2.484352 12.144755 -3.057995 10.882214 -10.201199 -2.696199 -5.548480 11.759089 1.577094 -0.281549 6.172110 -11.003989 7.775065 -0.367747 -10.131785 18.544062 15.228559 4.811190 -3.880690 5.447240 8.004677 -20.731665 -10.151177 -6.259602 -2.348108 4.647766 -18.059487 -10.408157 2.384931 -12.453728 -2.649928 1.762557 5.070624 9.811871 6.608974 5.496268 1.785545 -4.289429 -10.314963 8.184660 -2.978175 -1.411546 4.240784 2.012347 2.050557 8.207379 -4.134193 -2.022314 0.822602 -3.939326 4.130547 5.515906 10.359899 -1.359799 14.345965 10.499443 0.053336 13.331502 2.936896 -6.907542 9.056448 1.819554 7.403258 4.809207 -0.554641 -1.869325 2.938367 8.233179 -6.756150 -7.046748 -8.607309 -4.123838 -1.000514 5.339569 1.634987 -6.652261 -14.025471 -3.434174 1.669659 3.537213 -0.532555 11.856086 -1.586623 2.368225 -15.422889 -0.345653 7.211898 -0.468520 9.127542 4.052438 -8.777167 -3.915994 -4.362236 -10.346560 -11.921385 -3.215867 3.601361 -6.881225 -2.799798 10.485483 -1.322397 -0.429657 10.526785 -0.594525 6.590910 -9.722692 4.285230 -5.652281 -0.481103 13.912729 -0.962121 -8.675859 8.421498 2.820002 26.031566 3.310170 3.080297 -2.614206 -5.820014 3.356723 -6.980502 -4.880656 10.600435 5.947633 5.300514 0.413327 -0.086974 -0.675851 11.123998 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = 0.357548 1.091249 4.061806 1.787611 -2.726667 -3.771841 -1.449921 -5.664495 2.363250 0.647042 2.579903 0.208415 0.735507 -0.804498 -0.022093 0.991591 0.720323 -0.661737 -0.018623 -1.835623 -1.585640 2.712277 0.486061 -1.254517 0.870021 -4.768639 2.485582 1.425072 2.142952 1.597512 0.811185 -0.552587 -1.322399 2.214728 -0.271033 0.772729 0.863834 0.490485 -2.070506 0.899646 0.678005 1.145126 2.169834 0.615680 3.123844 1.120310 1.628263 1.184866 -1.856159 -0.537982 -1.499418 3.302663 -1.828244 1.829029 -0.230110 0.518991 -0.094837 -2.257768 -0.333933 -0.883243 -0.733826 -0.449603 -1.490238 0.247401 -2.268940 0.610560 -0.869454 -1.601062 0.576345 0.615580 2.730572 0.606163 -0.206693 0.292026 -3.187785 0.319439 0.151147 1.885243 2.373994 -1.264446 -0.056055 -0.041922 -1.814580 -2.276999 1.797766 1.447856 0.789497 -0.088068 -0.346604 -1.138771 -0.546311 -1.165711 0.890030 1.893696 -2.493827 0.020085 -1.395606 -0.708270 -2.040721 -2.684424 0.388292 -1.448442 1.498137 0.156938 -0.629244 0.090395 0.205329 0.483269 -0.966922 -1.672983 0.543527 -0.668588 1.365278 3.850620 -0.591138 -1.198349 -0.502446 -0.940391 -0.960458 2.233471 1.156797 0.385935 3.486890 3.349207 1.112954 -1.748960 -1.741573 0.578218 1.360556 2.481537 1.964750 -2.785427 -1.804008 0.252979 -0.160612 -4.089047 0.328419 0.423480 2.487448 -0.029492 -1.203276 0.018858 -1.487459 2.397205 1.254657 0.669339 0.770109 -0.433041 -2.395717 2.636058 4.980322 -0.630369 1.674559 -1.848773 -0.379527 1.727615 -1.887017 1.114907 0.890459 -0.776946 -0.162941 -1.222046 -0.759352 2.373973 0.557557 0.368784 1.328432 1.641980 -1.824593 -3.623275 -3.534633 0.148098 2.700878 -0.486242 3.650372 -2.646362 -1.308985 -1.124563 3.371528 -0.078704 -0.791388 1.019765 -2.005576 1.537757 -2.139062 -3.044752 4.787542 5.170758 1.324424 -0.624641 2.394778 2.469690 -2.957585 -2.011791 -1.003783 0.512885 0.825046 -2.903475 -1.439836 0.471439 -2.589423 -1.681749 0.392974 1.238901 1.420797 0.057846 0.315959 0.673939 -2.161530 -2.296504 1.549619 -1.758418 -0.480088 0.842780 0.297383 0.027817 1.482565 -1.298260 -0.374529 1.247846 -1.484719 0.905296 1.530282 2.396955 0.692135 3.485578 2.473191 0.185780 3.527022 1.094058 -1.556754 4.296097 -0.688914 1.245608 0.955356 0.738277 -0.357716 0.969802 1.229680 -1.610428 -1.246425 -2.940384 0.438231 -0.039651 1.572833 -0.945355 -2.015955 -3.824496 -1.057058 0.995807 1.731960 -0.218967 4.509881 -0.567489 0.420645 -4.731880 -0.182255 2.003165 -0.409480 1.979798 1.302364 -1.816441 -2.980725 -1.056580 -2.097848 -1.466608 -0.933432 -1.317217 -1.789962 -1.295004 2.179205 -1.196349 0.870872 2.764847 0.272247 1.492754 -1.901545 0.219002 -1.423488 -0.266964 2.343660 0.239989 -2.929206 2.466396 -0.078481 6.647383 -0.557853 1.648406 -1.381927 -0.223535 -0.045675 -1.675307 -0.891594 3.371806 1.902774 1.187475 -0.107503 0.047608 -0.785990 2.495912 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/trie-suffixes.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/trie-suffixes.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/trie-suffixes.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/trie-suffixes.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/trie-suffixes.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/trie-suffixes.cpp___GLOBAL__sub_I_trie_suffixes.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.028157 0.998493 4.557762 3.083510 -2.971324 -4.050451 -1.965845 -5.186205 2.180729 0.203069 3.311426 0.186871 0.894952 -0.669781 0.311453 -0.782537 0.609397 -1.026537 0.024798 -1.533445 -1.763827 2.977607 1.726259 -3.234103 0.503884 -4.071613 3.342094 2.177728 1.215588 2.448471 0.212969 -0.440615 -1.311366 2.728457 -1.145894 0.123236 0.631059 0.940544 -1.067180 0.119689 1.751053 1.602717 2.900757 0.038073 3.010231 1.861698 1.792364 1.082479 -2.647218 -0.650507 -1.115993 2.858157 -2.657228 1.813678 0.202036 1.152488 0.867050 -3.114531 -0.754660 -2.962355 -0.066794 -0.131018 -2.007113 0.159011 -2.686945 0.590733 -0.234875 -1.893332 1.447052 0.030700 2.698283 0.408877 -0.333283 -0.567077 -2.310572 0.588065 0.342583 1.826078 2.158462 -1.070929 -0.556611 0.369076 -1.889400 -2.217955 1.072704 0.421725 1.114566 -0.015649 0.293969 -0.870652 0.364744 -0.932968 0.166591 2.355047 -1.354251 0.756529 -0.747074 -0.821475 -2.561982 -1.941308 0.604271 -1.913029 1.840637 1.788933 -1.649808 -0.452715 -0.147896 0.534208 -1.438358 -2.938390 0.229936 -1.301496 1.699477 3.132336 -1.178737 -0.718195 -0.272136 -1.263208 -0.005444 2.878201 0.839442 0.552234 3.207971 3.970131 0.515122 -2.372158 -1.621570 0.093904 1.891798 2.708860 2.063735 -3.434852 -1.814733 0.176069 -0.477909 -4.477277 0.454306 0.659930 2.431329 0.394468 -3.176851 1.539508 -1.746796 2.735410 1.717910 1.935567 0.591368 -0.239823 -2.537060 2.950321 4.972923 -0.867714 2.100395 -1.380427 -1.998693 3.143798 -2.098443 1.519211 1.281562 -0.588643 0.044318 -1.595397 -0.300046 2.773590 1.102987 1.235807 1.954394 0.937648 -0.938487 -4.353098 -3.868886 0.727262 3.349992 0.322597 4.960894 -3.157264 -1.528335 -0.686911 3.691505 -0.540273 -1.207050 0.402615 -1.419830 1.956541 -3.909782 -3.739641 4.592796 4.247764 0.976460 0.073234 2.830360 1.812450 -1.374192 -1.610438 -1.797287 1.416983 0.670873 -0.688052 -0.137794 -0.008019 -2.929684 -1.221457 0.429911 1.376345 1.880262 -1.747561 -1.501894 0.206177 -2.881009 -2.562794 0.956958 -2.453205 -0.714565 0.726978 -0.242514 0.124307 1.112061 -0.627446 -0.904116 0.397502 -1.740154 0.523823 1.494072 2.380512 0.760128 4.058485 2.649066 -0.399525 2.724717 1.556984 -1.135319 5.930336 -1.171829 1.151769 1.181100 2.400428 0.364605 1.171497 1.942572 -1.534302 -1.053823 -3.339978 1.062612 0.498585 2.173044 -3.730389 -2.127209 -4.387565 -1.374895 1.678692 2.520439 -0.707454 5.392490 -0.047388 0.563160 -5.566289 -0.373824 2.184606 -0.315976 1.982321 1.418296 -2.285346 -4.327154 -1.120599 -2.007143 -0.291353 -1.161863 -1.419557 -1.994475 -0.863341 1.547805 -1.109168 0.961399 3.363220 -0.552600 0.738124 -1.068954 -0.022796 -0.773773 -1.621969 1.770402 0.242406 -3.063784 3.607945 -0.150456 7.050888 -0.786515 2.439055 -1.887773 0.883735 -0.172577 -1.317448 -0.776107 3.929651 2.091874 0.777180 0.289156 0.663752 -1.154753 2.317960 -PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = -1.134375 0.927418 6.151263 4.664771 -4.238172 -5.497801 -2.780997 -6.627017 3.387138 0.006790 4.053184 0.605230 1.257537 -1.815654 0.086806 -1.062674 1.159699 -1.194591 -0.123881 -2.182745 -2.176005 4.888839 2.259479 -5.106202 0.830087 -6.237745 4.604260 3.132658 2.208806 3.896005 0.384476 -0.442237 -1.754166 3.614763 -1.698050 -0.009799 0.654596 0.960427 -2.365511 0.174331 2.617743 2.437892 4.270369 -0.203839 3.970484 1.959616 2.359412 1.543157 -3.659110 -0.896753 -2.029093 4.094964 -3.259312 2.482978 0.062031 1.827810 1.242541 -4.227372 -1.291128 -3.882311 -0.143997 0.210886 -2.580632 0.152152 -3.743202 0.833880 -0.364085 -2.540568 2.220090 -0.072114 3.525498 0.873343 -0.152892 -1.409865 -3.449732 0.928408 0.433447 2.994046 3.013145 -0.819973 -0.499838 0.422688 -2.414183 -2.696422 1.320221 0.519362 1.298971 0.120745 0.522639 -1.902065 0.344168 -1.105864 0.381722 2.553724 -2.189887 0.784606 -1.631129 -0.958992 -2.805561 -2.239132 0.657575 -2.333829 2.226805 2.508213 -2.256164 -0.140453 0.454114 0.718990 -1.891698 -3.582188 0.357140 -1.710283 1.788024 5.216342 -1.339417 -1.361842 -0.655298 -1.372266 -0.665843 4.147525 0.555322 1.061914 4.173900 5.473482 0.758905 -3.228954 -2.002249 0.597460 2.721539 3.571015 3.063054 -4.333221 -2.518956 -0.175762 -0.236522 -6.215697 0.459001 0.425321 3.310967 0.797891 -4.099200 1.883465 -2.443699 4.240804 1.894711 1.975195 1.058740 -0.392683 -3.792089 4.588074 7.269537 -1.023783 2.634639 -2.376469 -3.138445 4.470044 -2.564592 2.097577 1.055823 -1.126620 0.342829 -2.142730 0.048553 3.625967 0.757754 1.409337 2.494874 1.323861 -0.985348 -6.130261 -5.530140 1.132241 4.104707 0.655026 7.460701 -4.200688 -2.167765 -1.465275 4.984609 -0.690819 -1.258328 0.751890 -2.398769 2.709780 -5.798044 -5.457128 7.072158 6.131462 1.103340 0.397876 4.190592 2.582684 -1.847517 -2.127971 -2.312855 1.676148 1.885600 -1.129284 0.053227 0.270642 -3.781225 -2.248814 1.129086 1.754735 2.581461 -2.484291 -1.972881 -0.075320 -4.166839 -3.686825 1.990220 -3.825131 -0.598591 1.310775 -0.409575 -0.078674 2.086525 -0.905002 -1.281962 0.336938 -1.867111 0.683913 1.517459 3.616623 0.973301 4.375684 4.429658 -0.329470 4.343478 2.482558 -1.891776 8.820029 -1.880009 1.504050 1.579130 2.798832 0.653750 1.460889 2.184610 -2.117550 -0.758201 -4.732973 1.767241 0.665241 2.812232 -5.865353 -2.919047 -5.760050 -2.043821 2.185882 2.973308 -0.727538 7.627787 -0.810833 0.024426 -8.120526 -0.591616 3.597397 0.144098 3.163985 2.043698 -3.070367 -6.660449 -1.578200 -2.764124 0.636862 -1.989631 -2.650959 -2.935124 -1.288288 3.054027 -1.756952 1.762708 5.743002 -1.029790 1.434648 -1.951663 -0.011545 -1.337339 -2.418828 1.158093 0.766306 -3.936721 5.069102 -0.557477 9.304088 -0.973832 3.185557 -2.791319 1.603248 -0.446188 -2.595966 -1.067184 5.306021 2.599762 0.968582 0.759706 0.773964 -1.813336 3.386300 -PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = -0.108801 1.128631 3.875821 2.126249 -2.858289 -3.791247 -1.757525 -5.096583 1.670425 0.127294 2.891185 -0.258604 0.808275 -0.528913 0.252798 0.231263 0.978497 -0.668736 0.281755 -1.550449 -2.101455 2.536852 0.682545 -1.827802 0.678846 -3.347087 2.479729 2.049100 1.343886 1.629662 0.599127 -0.428699 -1.271045 2.057531 -0.803629 0.275647 0.696554 0.798948 -1.814527 0.722687 0.898439 0.762554 2.600474 -0.318352 2.391239 1.442230 1.681168 1.318805 -2.364054 -0.458746 -1.279751 3.063325 -1.849107 1.344219 0.165058 0.349857 0.520019 -2.431675 -0.817975 -1.128852 -0.551041 -0.494601 -1.767910 0.345077 -2.213019 0.539781 -0.571596 -1.813035 1.391309 0.524190 2.146988 0.360546 -0.422891 0.090159 -2.384236 0.491941 0.711504 1.827146 1.745057 -0.952947 0.588004 0.443897 -1.790029 -1.911983 1.369036 0.900192 1.339296 -0.371827 -0.474728 -0.700617 0.149657 -0.725202 0.718426 1.664548 -1.448674 0.383759 -1.520057 -0.985418 -2.781229 -2.608885 0.542382 -1.382986 1.776033 0.845872 -1.360921 -0.160201 -0.109095 0.601988 -1.164650 -2.546566 -0.159527 -1.293358 1.427927 3.631354 -0.887448 -0.931472 -0.726265 -1.150917 -0.609107 2.033336 0.980385 0.464983 2.870244 3.404688 0.612857 -2.012772 -1.927790 -0.087028 1.475806 2.353557 1.978421 -2.738551 -1.722958 0.031597 -0.728619 -4.117483 0.006105 0.070017 1.956696 -0.016260 -1.710327 0.719323 -1.668804 2.407266 1.113478 1.362750 0.555007 -0.295801 -2.099660 2.605193 3.929629 -0.817178 1.969086 -1.351016 -1.424768 1.953867 -1.250602 1.064909 1.247822 -0.853881 -0.317056 -1.221986 -0.454927 2.156325 0.857021 0.719395 1.372274 0.971113 -1.294773 -3.360430 -3.418646 1.131003 2.803443 -0.162907 3.899305 -2.745492 -1.788756 -0.488596 3.328436 -0.417849 -1.142451 0.690809 -1.615010 1.716435 -2.494884 -3.244915 3.955588 3.626749 0.893040 -0.128970 2.455092 1.554526 -2.713447 -1.695594 -1.555889 1.251705 0.682342 -2.134154 -0.751059 0.355519 -2.438785 -0.682383 0.256475 1.459671 1.450666 -0.589949 -0.329842 0.049767 -2.501109 -1.864521 1.434436 -1.858234 -0.347231 0.860497 -0.321703 0.127604 1.383074 -1.042840 -0.735942 0.219253 -1.722560 0.672594 1.184803 2.229494 0.414474 3.846003 2.563514 -0.106135 3.158513 1.009760 -1.330916 4.270463 -0.857651 1.232741 0.783520 1.543943 -0.268528 0.773651 1.993179 -1.314677 -1.615539 -2.887032 0.275251 0.345426 1.748682 -1.955640 -1.787571 -3.944167 -1.136475 1.348237 2.370676 -0.360625 4.287457 -0.262200 0.476587 -4.549019 -0.211481 1.381325 -0.275289 2.021283 0.993307 -1.989828 -3.280433 -0.883999 -2.304878 -1.144209 -0.824447 -1.339071 -2.001490 -1.031255 1.787008 -0.783519 0.468466 2.905107 -0.426486 0.890016 -0.803312 -0.150379 -0.642733 -1.015981 2.281831 -0.009339 -2.627892 3.073941 0.082924 6.938809 -0.017100 1.797694 -1.412224 -0.028399 0.454897 -1.341442 -0.768602 3.280811 2.004259 0.854442 -0.048488 0.511851 -0.845672 2.000988 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.060164 0.724513 2.506367 1.366170 -1.273921 -1.861280 -0.946958 -2.726030 1.212082 -0.055373 1.387401 -0.052882 0.382752 -0.309559 -0.061480 -0.139915 0.295317 -0.310515 0.036406 -0.703304 -0.683346 1.735651 0.510373 -1.451647 0.248479 -2.548892 1.275638 1.029003 1.212630 1.135311 0.060082 -0.313686 -0.530692 1.237077 -0.733581 -0.206243 0.439094 0.298590 -1.187410 0.102429 0.495845 0.978373 1.303846 -0.152923 1.247449 0.638326 0.851979 0.554313 -0.941953 -0.140306 -0.795579 1.934856 -0.918163 0.885116 0.226438 0.471621 0.112880 -1.441447 -0.412172 -0.833947 -0.182805 0.257578 -0.750964 0.066746 -1.356144 0.299201 -0.180477 -0.927695 0.831330 0.095170 1.303516 0.366763 0.173444 -0.402090 -1.489679 0.521466 0.118903 1.157866 0.947075 -0.398208 0.229353 0.336845 -0.798037 -1.034110 0.562612 0.645985 0.461187 -0.158206 0.118008 -0.666369 0.069149 -0.515195 0.084270 0.993639 -0.912593 0.478478 -1.163419 -0.289378 -1.116019 -1.204248 0.034132 -0.951826 0.844984 0.547061 -0.525509 0.091928 0.459388 0.324946 -0.300793 -1.370804 0.118279 -0.311002 0.602835 2.121514 -0.512277 -0.466944 -0.088094 -0.485543 -0.672281 1.343858 0.198494 0.455862 1.408748 1.874599 0.411957 -1.111184 -0.740501 0.289050 0.827985 1.358929 1.224816 -1.731612 -0.856483 -0.102897 0.053036 -2.504230 0.323669 0.202729 1.184685 0.126148 -1.266580 0.362874 -0.842864 1.550834 0.573984 0.561684 0.449464 -0.241905 -1.133214 1.554735 2.685854 -0.488069 1.052453 -1.027434 -0.891164 1.230678 -0.911591 0.929970 0.227439 -0.162216 0.294731 -0.928703 -0.123073 1.423935 0.336975 0.489152 0.955088 0.329394 -0.592338 -2.355422 -1.870822 0.281282 1.241897 -0.340820 2.352299 -1.335746 -1.084240 -0.454002 1.987377 -0.411221 -0.344215 0.392015 -1.055121 0.950857 -1.525653 -1.982283 2.319030 2.502606 0.188306 -0.056910 1.540968 0.991837 -1.123770 -0.977080 -0.766821 0.547433 0.502600 -1.017240 -0.426139 0.007295 -1.311518 -0.533847 0.396334 0.618424 0.941335 -0.275040 -0.418318 0.198978 -1.667504 -1.407905 0.946704 -1.322417 -0.153480 0.492357 0.026568 -0.133578 0.880272 -0.674415 -0.573559 0.588016 -0.772496 0.357703 0.617551 1.145845 0.163286 1.742466 1.297505 0.209745 1.937186 0.922383 -0.792312 3.048331 -0.652382 0.449212 0.442299 0.802972 -0.352004 0.763370 0.584221 -0.779527 -0.765789 -1.741227 0.453174 -0.143179 0.849364 -1.297103 -1.295468 -1.700277 -0.854572 0.810716 0.924745 -0.059588 2.703675 -0.301046 0.168823 -2.960541 -0.160675 1.159056 -0.060806 1.262299 0.799763 -1.091578 -2.306803 -0.493249 -0.915955 -0.397273 -0.731864 -1.407064 -0.981166 -0.794841 1.266414 -0.558797 0.575742 1.884135 -0.045277 0.626755 -0.794739 -0.064581 -0.597120 -0.669245 0.851546 0.139760 -1.467385 1.597800 -0.194597 3.603169 -0.432294 1.105326 -1.078666 0.110439 0.076061 -0.862717 -0.371163 2.023950 0.920888 0.496296 -0.089838 0.047789 -0.797011 1.113441 -PE-benchmarks/m-coloring-problem.cpp__main = 0.033107 0.270718 1.033388 -0.073344 -0.539816 -1.203348 -0.508416 -1.938483 0.596589 0.366113 1.025746 -0.190268 0.613397 -0.046572 0.030148 0.450371 0.387130 -0.542021 0.420295 -0.511563 -0.569212 1.205893 -0.004341 0.465573 0.138427 -1.307821 0.706308 0.165588 0.556114 0.767117 0.300702 -0.125889 -0.321902 0.397632 0.065673 0.549023 0.334878 0.395966 -0.462211 0.476062 -0.093088 -0.249180 0.657838 0.007865 0.870739 0.491362 0.254477 0.398476 -0.260623 -0.442980 -0.305781 0.537869 -0.660062 0.201134 -0.203190 -0.351519 -0.020421 -0.286728 -0.264911 0.048921 -0.350624 -0.516848 -0.558908 0.345221 -0.696130 0.386491 -0.679579 -0.394318 -0.117248 -0.009027 0.664538 0.310095 0.046309 0.515039 -1.281206 0.127267 0.155356 0.269521 0.458775 -0.406389 -0.083932 0.064897 -0.776916 -0.836039 0.802679 0.935430 0.314476 -0.108502 -0.521070 0.050964 -0.316476 -0.082519 0.500650 0.620483 -0.440656 -0.024952 -0.337070 -0.287034 -0.691117 -1.394847 0.248755 -0.454521 0.499900 -0.026552 -0.046499 -0.282063 -0.200449 0.161711 -0.457367 -0.836713 0.178098 -0.403780 0.270697 1.210587 -0.336860 -0.116031 -0.640582 -0.377817 0.031997 0.568149 0.495934 0.162362 0.873086 0.849415 0.307089 -0.646655 -0.768533 0.334578 0.518573 0.334560 0.442393 -0.858715 -0.565159 0.229412 -0.519183 -1.206102 -0.475341 0.220171 0.574193 -0.531236 -0.029286 0.311799 -0.482854 0.493906 0.798012 0.120518 0.169492 -0.037575 -0.686681 0.701568 1.222223 -0.244872 0.652875 -0.637410 -0.211970 0.753574 -0.516149 0.268123 0.355361 -0.056915 -0.610731 -0.327371 0.040681 0.587743 0.248266 0.498376 0.087539 0.438400 -0.477905 -0.729399 -1.059057 0.068969 1.231275 -0.034359 0.838013 -0.853528 -0.291182 0.138473 0.969864 0.356649 -0.516074 0.365558 -0.534767 0.441635 -1.015853 -0.934609 1.264105 1.211304 0.725960 -0.025288 0.360569 0.816698 -1.116138 -0.496623 -0.419301 0.592237 -0.210010 -1.473362 -0.618791 0.144813 -0.814688 -0.324648 -0.250898 0.542636 0.442580 0.304314 0.454441 -0.106036 -0.416173 -0.516750 0.678470 -0.344321 -0.385105 0.105390 -0.013543 -0.027947 0.292399 -0.347424 0.337042 0.423245 -0.539122 0.357151 0.636662 0.258591 -0.020675 1.292993 0.905999 -0.291175 0.424005 -0.166224 -0.251180 0.689539 -0.134508 0.395445 0.079497 0.286619 -0.066973 0.173922 0.692010 -0.352677 -0.873606 -0.744170 -0.145975 0.265630 0.504628 0.342033 -0.918475 -1.268896 -0.014417 0.185995 1.274115 0.143948 1.217757 -0.172529 0.504187 -1.123018 0.192593 0.159844 -0.120408 0.555183 0.169948 -0.376098 -0.210503 -0.269738 -0.915844 -1.023315 -0.254279 -0.542208 -0.527883 -0.488207 0.452848 -0.339868 -0.205848 0.339820 0.099865 0.573581 -0.002193 -0.114198 -0.788744 0.282430 0.969184 -0.201027 -0.588597 0.673169 0.163524 1.898666 -0.071090 0.425006 -0.081715 0.203265 -0.046002 -0.643358 -0.163035 1.009756 0.705631 0.125032 -0.127134 -0.151962 0.272392 0.366213 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = -1.481349 -0.363301 4.670804 0.504992 -2.861622 -4.664843 -2.415741 -7.633554 2.462607 0.816351 5.421935 -0.172684 1.877249 -1.463142 1.445611 2.421850 1.527665 -3.306779 1.526352 -1.925120 -0.482324 4.193132 2.354691 0.346507 0.319403 -4.901046 0.920440 1.626480 2.068077 2.557551 1.079108 -1.462559 -1.164394 1.896615 0.134591 2.816991 1.995455 0.956303 -2.523566 1.262809 -0.772152 -0.675027 2.788916 -1.835872 5.399341 -0.171713 3.163927 1.420933 -3.391685 -1.435658 -2.577166 5.814991 -4.000518 0.854319 0.931296 -0.647678 -0.510799 -2.088100 -2.720535 -3.132121 -1.973313 -1.396531 -1.833843 1.407942 -1.912458 2.117886 -1.299032 -0.898895 1.009986 1.328818 3.389587 2.032740 1.284437 3.823233 -3.409324 1.224161 0.800752 2.262844 1.562893 -2.478973 0.757519 0.226709 -0.978476 -2.538125 3.121537 2.280097 1.399724 -1.167771 -1.977873 2.421226 -0.920532 -0.920940 0.291018 1.547098 -3.120963 -0.202027 0.461879 -1.183178 -3.211242 -3.725138 0.181521 -2.270168 1.740826 1.587584 0.352798 -0.941735 -3.825467 1.225990 -4.211201 -3.753665 0.694665 -1.034368 -0.047718 4.071200 -3.569802 1.045790 -1.541798 0.003016 -0.166735 2.186524 1.249664 2.642838 2.651056 5.115744 0.949004 -2.589806 -2.701861 0.511583 4.789118 2.827048 2.114189 -2.710968 -2.522388 0.666795 -1.804728 -5.088400 -2.114791 2.035296 2.951449 1.412311 -1.910004 -0.684967 -1.382180 5.545075 2.833294 1.280070 0.001381 0.208645 -3.413510 4.435142 5.013951 -1.773328 4.124148 -0.450527 0.142484 2.478949 -3.808716 1.636454 2.509376 -0.500704 -1.539844 -2.177582 -2.351674 2.306480 3.846758 2.773959 -1.181602 2.035848 -0.933788 -4.923462 -4.930615 -0.065188 4.009650 -0.996256 3.716590 -3.094673 -3.881576 -0.109141 4.178521 0.145571 -3.414963 0.776435 -3.155786 2.247563 -4.369094 -4.355662 7.171406 6.748090 3.605123 1.490467 3.594601 4.624798 -6.108310 -1.059048 -0.760251 2.688181 -0.682832 -6.767629 -2.341269 0.912814 -3.725616 -2.567455 -1.118691 2.073201 -0.334843 2.259119 1.786579 2.681874 -2.344568 1.119313 1.510855 -2.483829 -2.907998 0.100767 -0.010913 1.929393 1.407860 -2.829080 1.537425 1.971829 -4.395139 0.680468 2.296510 3.362765 2.121832 5.443980 4.900989 0.493428 4.820970 -0.119374 -2.260570 1.681735 -0.457077 1.423742 0.256009 -0.095581 0.136013 0.118664 2.831627 -1.948620 -3.128537 -3.444300 -0.007523 1.210136 3.861574 0.649013 -5.280675 -4.373911 -0.568396 3.731470 3.102334 -0.356421 5.549446 -0.894476 0.740299 -7.069916 -0.028090 0.836557 -0.044044 2.075513 0.880063 -1.611650 -4.421512 -1.519701 -3.192454 -3.225820 -1.100602 -2.112094 -1.688335 -3.891369 5.408211 -2.436379 -0.406772 1.470737 0.694287 3.695541 1.992678 -0.890027 -2.599579 1.142560 2.700674 0.364031 -2.990816 4.525704 0.636519 10.520932 -1.296444 0.883924 -1.967270 0.968837 0.413649 -0.714110 0.276229 4.637653 4.973329 0.727142 -0.875077 -0.330605 -1.130749 2.045254 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -6.161381 3.322911 28.782995 14.875979 -15.723329 -25.638503 -11.482081 -32.706719 14.548471 1.547195 21.778770 2.680645 5.731895 -4.959025 5.346821 4.036029 4.462329 -9.436864 1.602287 -9.277574 -4.080181 21.983806 13.255728 -15.320556 1.954176 -27.540513 11.357355 12.786387 12.196184 13.701399 2.279084 -4.950241 -5.654136 14.917683 -6.413828 4.896047 4.838294 3.959683 -11.371293 1.862640 4.363990 8.756077 14.862717 -2.406673 22.249246 4.231119 19.128761 5.990077 -14.974901 -4.850073 -14.502479 30.039066 -17.882486 9.517402 1.918061 5.670983 0.452693 -16.991779 -8.705573 -19.523104 -4.168347 1.653352 -13.134962 0.839968 -14.051522 6.657725 -2.931706 -7.699446 7.512517 5.602011 19.151631 5.435446 2.388377 1.804965 -18.200514 4.763738 -1.363406 14.114547 11.975953 -8.788101 -2.441990 2.805113 -6.360167 -12.859142 10.120649 3.730390 4.971965 -3.418694 -1.208435 1.352221 -5.058579 -6.024169 -2.077185 11.275658 -15.701224 5.792448 -1.375760 -4.150720 -14.797347 -9.429743 1.060148 -13.507443 8.280078 8.967286 -0.269643 -3.032389 -9.479798 2.634226 -14.095004 -19.042595 2.705524 -3.200727 1.863849 19.485383 -13.321340 2.145854 1.478497 -1.839679 -3.737304 17.288520 5.692756 9.439939 16.382120 25.638751 3.537577 -13.256680 -8.609283 1.835976 19.160137 17.959357 13.095382 -18.112060 -12.636916 0.033174 -0.942275 -28.293767 2.656794 12.803492 15.990412 9.107999 -18.353088 1.812796 -7.812052 24.034003 11.623341 8.885650 3.403151 -1.409051 -16.763633 20.300430 35.131782 -7.691684 17.579524 -6.386304 -5.072472 19.501722 -19.744997 11.221672 9.442411 -0.690843 1.163660 -11.610223 -9.742586 16.578838 13.663533 9.746761 8.980940 6.980745 -3.463022 -30.407023 -25.225455 -0.449219 18.059009 -3.953785 26.396595 -16.012910 -14.248363 -4.322928 21.074649 -5.412015 -10.560478 2.192586 -12.644872 11.722433 -24.213838 -22.794405 34.512639 33.252214 6.758012 3.301892 21.381516 19.720383 -17.623627 -8.811334 -6.969489 9.931237 2.003240 -13.595870 -3.690786 0.589689 -19.784475 -11.247333 0.302608 7.801205 3.627262 -0.021626 -3.559687 10.166038 -19.067390 -7.470613 5.398227 -16.174811 -9.236981 2.805386 0.378027 3.299529 6.738347 -9.240842 -0.686520 9.765056 -16.922037 1.847258 9.600343 16.384511 10.301519 25.335672 19.605076 3.250593 26.100568 8.340653 -10.560817 29.715014 -5.076864 5.408494 4.290790 8.915829 0.024370 6.307425 7.857465 -9.454612 -11.415469 -20.506207 7.705667 2.127619 16.282268 -11.538440 -19.652252 -21.511343 -8.004541 17.029374 12.963441 -5.778504 33.306129 -4.013462 3.618177 -40.396405 -1.191285 12.389225 -0.777199 11.993292 9.402715 -11.328783 -28.244389 -7.857292 -9.114449 -4.897586 -6.989096 -13.452205 -10.312875 -14.188128 18.474055 -13.770443 4.874304 17.039659 0.070001 12.487662 -1.423436 -1.866056 -7.640015 -3.113182 11.901908 5.137893 -19.668088 23.533193 -2.660142 49.956446 -8.807835 12.722019 -13.056234 4.615967 -0.629885 -5.234449 -1.651516 25.710836 18.466120 4.030953 -0.480393 1.426926 -8.962540 13.341617 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = -0.238433 -0.068491 1.361659 0.427945 -0.813849 -2.067126 -0.701194 -2.880926 1.304513 0.667968 1.676940 0.127222 1.224005 -0.837850 0.015630 0.621459 0.651103 -0.796881 0.267203 -0.827334 -0.656077 2.253655 0.145780 0.130038 0.083718 -1.839783 1.170159 0.503873 0.775227 1.321712 0.557212 0.007042 -0.344978 0.656229 -0.169752 1.114048 0.149597 0.720640 -0.562194 0.033682 0.256945 -0.437309 1.210063 0.069119 1.704135 0.282286 0.883501 0.366955 -0.474211 -0.862372 -0.660347 0.869103 -1.198672 0.295248 -0.669690 -0.394614 0.332344 -0.444568 -0.317680 -0.596148 -0.305181 -0.585923 -1.238630 0.282523 -0.991146 0.620469 -0.577595 -0.668490 -0.354097 -0.346579 1.051862 0.439302 -0.100418 0.311789 -2.093898 -0.060884 0.188102 0.145229 0.942246 -0.121842 -0.450505 -0.494683 -1.135540 -1.142497 1.666204 1.095209 0.390299 0.493623 -0.894836 0.036141 -0.592831 -0.031897 0.905551 0.798211 -0.826503 -0.222568 0.364065 -0.417862 -0.806410 -1.393114 0.672819 -0.690063 0.574880 0.207954 0.012005 -0.224250 -0.449764 -0.030758 -1.221680 -1.193808 0.194218 -0.957743 0.376693 1.632768 -0.692373 -0.221266 -0.950709 -0.413652 0.239873 0.993001 0.713260 0.334031 1.553321 1.205202 0.470003 -1.318222 -1.025231 0.774459 1.133385 0.607900 0.328608 -1.188695 -0.843627 0.417225 -0.843271 -2.006196 -0.864565 0.642312 0.971623 -0.525124 -0.515920 0.952865 -0.478705 0.865199 1.439967 0.090924 0.235948 0.247960 -1.301807 1.013236 1.978166 -0.247398 1.002273 -0.858691 -0.504531 1.516879 -1.021454 0.325835 0.607445 -0.412045 -0.934481 -0.400087 0.322377 0.958421 0.172080 0.803875 -0.173338 0.888485 -0.661176 -1.347564 -1.975720 -0.120369 2.009823 0.615618 1.879355 -1.451610 -0.349219 0.259211 1.227009 0.251094 -0.814531 0.573469 -1.044836 0.905807 -2.169564 -1.654109 2.464768 1.687273 1.441507 0.248043 0.839511 1.167822 -1.131412 -0.404067 -0.464151 0.826922 0.373840 -1.951464 -0.363841 0.145035 -1.518273 -1.029805 -0.363767 0.700350 0.096827 0.109898 0.950877 -0.639044 -0.363678 -0.734663 0.833375 -0.621335 -0.501165 -0.149349 0.057245 -0.060146 0.404174 -0.420980 0.643717 0.319286 -0.689325 0.490002 0.751821 0.446744 0.342965 1.851164 1.984681 -0.939891 0.863988 -0.370683 -0.287308 1.202266 -0.300665 0.539003 0.256633 0.813107 0.527435 0.211473 1.122416 -0.675932 -0.577440 -1.212126 -0.182813 0.958534 0.904603 -0.040012 -1.103156 -2.157162 -0.135400 0.133215 1.973507 -0.152665 2.076762 -0.652421 0.674874 -2.165321 0.308369 0.481982 -0.157224 0.731463 0.346433 -0.649687 -0.622047 -0.560793 -1.226916 -1.345598 -0.389613 -0.688289 -0.847313 -0.893547 0.772167 -1.174658 -0.169373 0.656428 -0.034117 0.873917 -0.397491 0.145752 -1.103447 0.474101 0.848079 -0.028419 -0.930214 1.072986 0.112595 2.873271 -0.198595 0.963311 -0.313498 1.258252 -0.611530 -1.332443 -0.305916 1.637499 1.273459 -0.098191 0.127401 -0.054609 0.423355 0.894413 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = -2.757755 -0.924503 4.137385 0.694018 -3.058213 -3.932990 -2.060428 -7.082654 3.382601 1.817664 5.082061 0.991906 2.983450 -2.990160 0.665059 0.464635 2.366560 -3.285767 1.093674 -2.001678 0.574160 4.886448 1.318170 0.359482 -0.028923 -4.541602 1.699273 0.244122 1.975166 3.181421 1.514496 -0.840056 -2.645852 1.299942 1.150269 3.338528 2.348903 1.337958 -1.938899 -0.574238 -0.144473 -1.784525 2.767155 -1.130750 5.570226 -1.654960 1.789915 0.827234 -2.917968 -2.737930 -1.093235 2.772115 -3.861496 0.854809 1.628604 -1.520462 -0.358315 -0.666050 -1.474396 -3.324089 -0.985114 -2.961378 -1.403031 0.977433 -1.456342 2.108825 -1.803123 -0.503866 -0.240119 -1.710181 2.591424 1.528383 2.137617 3.369441 -4.154676 0.489244 0.324970 0.891310 2.079041 0.451463 -0.560830 -1.517050 -1.308440 -2.603965 2.604883 2.554778 0.277589 0.126582 -3.048570 2.768113 -0.584642 -0.715762 1.126584 1.124419 -3.845467 -0.952145 0.610120 -1.172876 -1.074949 -4.117807 0.872045 -2.081985 1.111191 1.556035 -1.025905 -1.307963 -3.619532 0.141891 -4.102649 -2.854822 1.993643 -1.450390 -0.022752 3.898376 -3.620949 0.550804 -2.598129 -0.189567 1.224409 1.853837 1.026387 2.457613 1.748805 3.922088 1.950121 -3.441060 -2.313514 2.496539 4.508114 1.289397 0.776520 -2.333816 -1.779450 1.589851 -2.343741 -4.692250 -2.799131 2.147845 3.448504 1.508592 -1.534439 -0.694295 -1.369118 4.052942 3.337682 0.729650 -0.009342 1.054948 -3.860107 2.880010 3.637152 -0.898787 3.406288 0.063340 0.183453 2.853549 -3.566143 1.501098 1.353992 0.258853 -1.678211 -1.763219 -1.490644 2.219338 2.204677 3.040493 -2.879807 2.385125 -1.235388 -5.082780 -5.570607 -0.698814 5.664896 1.143892 2.469817 -3.415567 -2.115675 0.763404 3.984694 0.826583 -3.841069 1.434765 -2.547732 2.447511 -4.893858 -4.172094 7.036549 6.702196 2.919676 1.217524 2.243498 3.558435 -5.663965 -0.724445 -1.307092 2.053836 -1.021110 -6.038823 -1.631499 1.042941 -3.693925 -3.317162 -0.391654 1.665565 0.577443 0.949864 2.810471 2.641313 0.191975 -0.319452 2.770931 -0.925701 -3.098354 -0.628917 0.507357 2.276251 1.353413 -1.759079 1.625678 1.910091 -2.974815 0.520201 2.000190 1.929206 1.492814 5.050297 4.314281 -1.041145 1.979406 -1.059407 -1.943110 2.661477 -1.211469 1.281769 0.151924 0.353194 1.437416 0.300959 2.699322 -2.038043 -2.295801 -2.855980 -1.518607 0.815479 3.971138 -1.134463 -6.111102 -4.526742 1.051154 1.700953 2.514750 -0.636209 5.722349 -1.871492 0.896572 -6.318868 0.089033 2.356230 -0.196264 2.387752 0.607352 -1.101702 -3.281906 -1.591887 -3.356560 -2.190796 -0.875919 -1.301006 -0.927839 -3.431817 5.360196 -2.237668 -0.737411 0.441516 0.432204 4.427705 1.819864 -0.205369 -3.220571 1.618126 0.709768 0.423954 -2.487213 4.952732 0.853768 7.878629 -1.257013 0.298239 -0.668358 2.967555 -1.405671 -2.659359 -0.102720 4.254453 4.885889 0.826445 -1.406704 -0.533904 -0.835910 1.899461 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = -1.031596 -0.014012 3.062952 0.238062 -2.262855 -2.439598 -1.184258 -4.963907 2.480966 1.202379 2.654490 0.740420 1.812464 -2.013898 -0.107457 0.659798 1.475696 -1.538796 0.644450 -1.382617 -0.281701 2.880697 0.376179 0.299700 0.543457 -3.366473 1.902853 -0.388756 1.836726 2.284858 1.169511 -0.479002 -1.791988 1.173711 1.670783 2.221287 1.513915 0.872836 -1.524124 0.207312 -0.156625 -1.538497 1.662944 0.118173 3.514772 -0.750818 0.458225 0.645471 -1.613243 -1.258814 -0.621846 1.413744 -2.452843 0.828964 0.833713 -0.714990 -0.601271 -0.571105 -0.503586 -1.248019 -0.863485 -2.364295 -0.982875 0.700840 -1.499566 1.011167 -1.780945 -0.422025 -0.752004 -0.951020 1.512220 1.139608 1.218365 2.033855 -3.218215 0.020995 0.372664 0.651837 1.890917 0.273745 -0.404522 -1.123691 -1.285768 -2.102088 1.960235 1.808823 0.100042 0.049395 -1.586549 0.938025 -0.630080 -0.384933 1.075825 1.209652 -2.862734 -0.678871 -0.634816 -0.752786 -0.379388 -3.738224 0.612723 -1.400003 0.835046 0.226625 -0.948943 -0.632784 -1.336392 0.421925 -1.688834 -1.283590 1.257715 -0.877841 0.091988 2.971612 -1.295075 -0.308847 -1.901672 -0.503287 0.747852 1.224443 0.639020 1.158581 1.734448 2.438121 1.751245 -1.975581 -1.448347 1.774443 1.904222 0.772553 0.699870 -1.819327 -1.117900 1.162613 -1.007359 -3.305800 -1.488588 0.725143 1.889261 0.414080 -0.395147 -1.130414 -1.014232 1.805899 1.943990 0.273293 0.216280 0.533996 -2.179112 1.687108 2.769386 -0.506397 1.636907 -0.562870 0.288918 1.667733 -2.153050 0.826296 -0.111604 0.020409 -0.888563 -1.053991 -0.767846 1.669289 0.496459 1.130714 -1.454525 1.395190 -1.327613 -2.999199 -3.205407 -0.486599 3.969924 0.633719 1.524113 -2.285423 -0.725920 0.103304 2.566557 1.185193 -1.671803 1.124370 -1.689769 1.646164 -2.667196 -2.716394 4.330495 4.054005 1.740727 0.212271 0.739104 2.159666 -3.960573 -1.119154 -1.112401 0.754753 -0.631718 -3.955642 -1.758006 0.729094 -2.574370 -1.692048 0.118102 1.030733 1.438949 0.640723 1.807844 1.662645 0.223344 -1.187198 2.274822 -0.485656 -1.888606 -0.174101 0.384741 1.244549 1.168217 -0.830795 0.741199 1.230686 -1.340460 0.391998 1.396867 1.226006 0.218605 3.161049 2.703956 -0.520960 0.496598 -0.405665 -1.264398 1.851036 -0.592231 1.031783 0.410161 -0.226395 0.601862 0.450881 1.870325 -1.389673 -1.588871 -1.910510 -1.325702 0.129076 2.292100 -0.302551 -3.618747 -2.690128 0.604565 0.702247 1.545766 0.005279 3.611455 -0.941911 0.775609 -3.533992 0.067176 1.977631 -0.180630 2.015992 0.578684 -1.034160 -1.366588 -1.152630 -2.269395 -1.426212 -0.708805 -0.190169 -0.852719 -1.464896 3.114347 -0.943156 -0.314086 0.551567 0.284011 2.902947 0.291425 0.217239 -2.332418 1.052787 1.021331 0.020034 -1.544495 2.685182 0.756698 4.669532 -0.613850 0.111414 -0.252770 1.097916 -0.715151 -1.830604 -0.445865 2.730891 2.639572 0.993681 -0.832093 -0.522839 -0.416261 1.520227 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = 0.514001 4.201604 17.970176 10.742772 -11.027898 -13.974883 -6.428854 -20.119098 9.696231 -0.284342 8.992601 1.878504 1.250583 -2.806368 -0.330708 0.109234 1.074071 -2.556000 -0.512709 -5.727236 -5.801824 11.630934 4.942754 -11.372111 3.011855 -19.750102 11.776207 6.554454 9.435952 9.351095 1.454337 -2.998474 -4.381000 10.125998 -1.991491 -0.001162 1.746957 0.854285 -8.344954 2.462388 4.988366 6.485970 9.886318 1.154599 10.841110 4.140313 7.611339 4.237112 -7.049796 0.222254 -8.212496 14.629830 -8.655036 7.270566 0.320641 5.282198 -0.495306 -11.597529 -3.285589 -6.005073 -2.575782 0.647120 -6.690485 0.228729 -11.219416 1.940280 -3.739793 -5.841932 4.866013 2.345378 10.903140 3.280527 0.414670 -3.252229 -11.754054 2.522417 -0.789265 9.430803 8.525831 -4.468992 -0.234201 2.348748 -6.047994 -7.372016 3.831051 2.621735 1.737569 -2.657849 3.010874 -5.855675 -1.727278 -4.003430 0.108646 7.568688 -9.008112 3.660706 -9.025754 -1.765741 -7.008484 -8.283012 0.598061 -7.041544 6.389110 2.988669 -3.942227 0.593478 4.406561 1.970676 -1.910018 -9.209231 0.619192 -0.569355 4.926104 15.217503 -2.394020 -3.805622 0.236165 -3.079486 -4.751140 10.177533 2.381947 3.019932 12.191366 15.085187 3.967883 -6.953943 -4.968663 2.140509 5.064930 10.988013 9.197337 -11.797026 -6.611162 -0.802680 3.265405 -17.775561 4.530575 2.092348 8.814266 2.336381 -8.474398 -0.165036 -5.799033 11.120206 4.298554 3.797371 4.082102 -1.834860 -8.712633 12.688551 22.764481 -2.719962 6.321632 -9.089750 -4.468660 10.822507 -8.611741 5.996768 0.985583 -0.544786 3.048802 -6.775223 -2.691263 10.200408 1.912184 1.833152 9.159753 3.539658 -3.977193 -17.638275 -12.164188 1.357550 9.832561 -2.025655 16.594478 -10.057965 -5.076509 -5.059798 12.990065 -0.473751 -1.514863 3.007817 -7.766915 6.779960 -12.113770 -13.490916 17.738526 18.982753 1.153477 -0.951288 10.192540 9.725648 -8.313307 -7.464330 -6.271756 3.122939 3.992574 -5.716669 -2.895489 -0.280752 -10.175347 -5.319230 4.088908 4.269832 9.040807 -3.534852 -4.988761 3.353525 -12.271262 -11.837803 7.376995 -10.759537 -2.296400 3.949565 0.090782 -0.497683 5.893393 -3.346850 -3.044874 4.566517 -4.607963 2.603450 5.683308 9.488836 1.089901 11.174671 9.398405 2.284005 13.243763 8.177069 -5.940169 22.950540 -3.420204 3.904431 4.730694 4.074633 -2.044899 5.645268 3.216763 -6.112735 -4.942507 -12.021219 5.101073 -1.937210 7.584982 -9.494837 -8.534335 -12.678940 -6.508300 6.990897 5.104170 -0.429595 19.642571 -1.608258 1.107170 -21.078663 -1.963567 10.467413 0.633360 9.881838 6.122357 -8.057545 -14.182576 -4.245729 -5.515059 0.625852 -5.648102 -7.424073 -8.015143 -4.422933 8.919163 -3.815616 4.963837 13.830530 -1.550295 5.042889 -8.034729 0.149678 -4.254037 -5.210149 6.255619 2.885395 -11.689372 12.387922 -2.219278 25.489513 -3.554283 7.381224 -7.872969 -0.224826 -0.500956 -5.095380 -2.581481 14.517060 5.959217 4.339790 -0.031782 -0.179047 -5.323860 8.400359 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = -1.280455 0.021887 1.854335 0.458144 -0.755687 -0.979214 -0.682743 -2.351843 1.026715 0.540422 1.905836 -0.162770 0.924106 -0.491229 0.021534 -0.158833 0.812760 -1.207024 0.787794 -0.462951 0.730670 1.653399 0.512866 0.029142 0.013840 -1.735885 0.909013 0.045218 0.691062 1.206233 0.497486 0.126093 -0.586475 0.477974 0.480074 0.898317 0.763252 0.703475 -0.484718 -0.081508 -0.155503 -0.753696 0.591430 -0.113505 1.898928 -0.132427 0.614503 0.037365 -0.909265 -0.730757 -1.069042 1.007680 -1.598673 -0.068515 0.125955 -0.886669 0.043674 -0.215364 -0.636770 -1.758119 -0.360815 -0.976989 -0.365457 0.458488 -0.764491 1.188907 -0.691401 0.121456 -0.283462 -0.214116 1.056022 0.928055 1.187586 1.567709 -1.584081 0.636388 -0.014803 0.406617 0.756426 -0.285810 -0.184272 0.087722 -0.365036 -1.078175 1.059587 0.980791 0.294476 -0.128688 -0.508501 1.023002 -0.592194 -0.267018 -0.153273 0.757610 -1.161032 0.230835 0.092606 -0.304099 -0.291630 -1.226784 0.148035 -1.040226 0.307508 0.990427 -0.470144 -0.372414 -1.496476 0.147422 -1.284981 -1.316083 0.799705 -0.794850 -0.147882 1.292718 -1.477274 0.410710 -0.869010 0.175632 0.679746 0.872770 -0.103127 1.293285 0.052469 1.428666 0.483812 -0.953748 -0.634219 1.122016 1.468038 0.428087 0.332083 -0.871020 -0.752818 0.045527 -0.516268 -1.339825 -0.969314 0.947145 1.225284 0.432984 -1.023367 0.015934 -0.557047 1.598063 1.441936 0.441588 -0.015771 0.663228 -1.394521 1.096343 1.629570 -0.445053 1.209253 0.105262 0.354051 1.119214 -1.361184 0.748318 0.409490 0.470041 -0.346267 -0.901882 -0.960558 0.777931 1.198484 1.078579 -0.390587 0.701965 0.028079 -2.061965 -1.856735 -0.528758 2.187220 -0.038936 0.748565 -1.188324 -0.631316 0.350423 1.481689 0.546491 -1.189286 0.193427 -0.654141 0.774118 -2.020134 -1.730121 2.083333 2.090872 0.669676 0.615744 0.562111 1.511693 -1.732604 -0.415400 -0.343228 1.072593 -1.075144 -1.684846 -0.809337 0.187726 -1.114329 -1.464784 -0.073996 0.568527 0.300761 0.424425 0.814803 1.098520 0.051340 -0.159776 0.514718 -0.606068 -1.724026 -0.118358 0.101704 0.961607 0.286925 -0.747450 0.882120 1.159360 -1.112182 -0.111559 0.747473 0.365016 0.286742 1.519924 1.630880 -0.084413 0.168758 -0.101773 -0.705173 1.328924 -0.021130 0.461319 0.001674 -0.297451 0.592084 0.187526 0.810754 -0.732004 -1.116980 -1.393047 -0.211341 0.098510 1.521373 -0.485448 -2.180305 -1.330159 0.475839 1.261381 0.762414 -0.112084 2.300638 -0.361279 -0.026594 -2.099009 0.000583 1.215205 -0.199633 0.924803 0.377114 -0.433761 -1.090392 -0.561355 -1.015794 -0.390905 -0.704075 -0.860663 -0.507462 -0.966424 1.744752 -0.760257 -0.124550 0.110220 0.559445 1.361964 0.949629 -0.245878 -1.194194 0.446103 0.289128 0.319189 -0.979432 1.881440 -0.077326 2.559711 -0.945569 -0.083993 -0.423763 1.055645 -0.429152 -0.504703 0.231392 2.024523 1.498212 0.278730 -0.519371 -0.450853 -0.278052 0.713660 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = -0.315352 0.152578 2.743691 1.319663 -2.140340 -2.907977 -1.191351 -4.532162 2.403488 1.210553 2.177677 0.555918 1.283924 -1.522520 -0.431188 0.624904 0.769016 -1.098001 0.252669 -1.561378 -1.313786 3.297205 0.551719 -0.450520 0.495548 -4.235638 2.915813 0.304230 1.732896 2.301570 0.854368 -0.142598 -0.973202 1.708659 0.371486 1.471012 0.355367 0.906824 -0.998128 0.624004 0.955954 0.000000 1.889130 0.874363 2.976288 0.753472 0.757602 0.600275 -1.446211 -1.097516 -0.964997 1.050657 -2.140678 1.282564 -0.882948 -0.024038 0.280121 -1.083729 -0.176345 -1.241475 -0.584822 -1.218638 -1.262391 0.453820 -2.003390 0.834685 -1.390378 -1.161158 -0.502846 -0.038104 2.184557 1.131418 0.250804 0.532595 -3.163889 0.245327 0.152798 0.879792 2.242138 -0.541654 -1.062469 -0.647645 -1.893062 -2.244320 2.007324 1.418491 0.357367 0.502828 -0.362314 -0.867135 -0.726736 -0.510388 1.191843 1.709615 -1.847453 -0.438012 -0.367042 -0.415281 -0.700412 -2.578647 0.441091 -1.316199 0.975706 0.578642 -0.757638 -0.172944 -0.121182 0.158700 -1.291572 -1.207475 0.898578 -1.168564 0.925927 2.995046 -0.426209 -0.986946 -1.132543 -0.636798 0.216064 1.920215 0.977685 0.378005 3.103768 2.402008 1.093027 -1.717032 -1.326342 1.290505 1.257659 1.244185 1.130178 -2.045352 -1.569596 0.488808 -0.326053 -3.023544 -0.624050 0.530611 1.912180 -0.615254 -0.680987 0.738266 -1.117445 1.597460 1.963407 0.136820 0.669999 -0.015071 -2.336008 2.194047 4.082609 -0.219950 1.033743 -1.706618 -0.664736 2.544449 -1.853698 0.770551 0.347740 -0.617140 -0.857310 -1.018634 0.160141 1.908752 -0.269552 0.597945 0.482108 1.693778 -1.172941 -2.651247 -3.068225 -0.146322 3.195097 0.795189 3.316520 -2.484310 -0.036704 -0.406582 2.309637 1.086010 -0.739590 0.912319 -1.408901 1.271754 -3.431906 -2.850290 4.564810 3.911768 1.843575 -0.177184 1.248163 2.386692 -1.722643 -1.445983 -0.895463 0.569586 0.660825 -2.541651 -1.226127 0.719490 -2.248904 -2.221870 0.249954 0.918826 1.483825 -0.614809 0.463517 -0.195301 -0.818921 -2.026330 1.643294 -1.367872 -0.903246 0.305394 0.373293 0.083532 1.059696 -0.396053 0.574013 0.661622 -0.648116 0.705932 1.337160 1.599469 0.465820 2.460723 3.034844 -0.954424 1.118005 0.418780 -0.760821 3.384326 -0.735818 0.917510 0.911100 0.682780 0.679700 0.545242 1.407282 -1.375560 -0.423076 -2.295769 0.355916 0.668974 1.169632 -1.346147 -1.709435 -3.611336 -0.222618 0.245736 1.988801 0.066840 3.959381 -0.821024 0.278320 -3.547595 0.034297 1.935991 -0.157839 1.882494 1.027281 -1.206421 -1.511872 -1.305953 -1.873601 -0.611258 -0.986056 -0.780979 -1.324654 -0.657998 1.408057 -1.289208 0.692999 1.925084 0.137589 1.604719 -1.457730 0.377150 -2.201920 0.406039 1.076349 0.259910 -1.879293 2.072828 -0.071175 4.331516 -0.684844 1.071329 -0.766316 1.111843 -0.913633 -2.122337 -0.664751 2.751276 1.452591 0.667025 0.351962 -0.089369 0.125427 2.183906 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = -0.738638 -0.193371 1.128330 0.171180 -0.588437 -1.229200 -0.567933 -1.822773 0.881704 0.543344 1.407281 0.172603 0.935391 -0.705995 0.152156 0.107011 0.505001 -0.877423 0.362299 -0.489467 -0.065610 1.468037 0.433376 0.105526 -0.010831 -1.306659 0.761569 0.111717 0.438635 1.164150 0.300997 -0.124684 -0.450726 0.465725 0.153280 0.902737 0.468875 0.530472 -0.198812 -0.038722 0.088519 -0.401365 0.753574 -0.082753 1.407983 0.050436 0.347351 0.172172 -0.639023 -0.796334 -0.296286 0.466785 -1.186169 0.205978 -0.029996 -0.322475 0.139926 -0.183033 -0.336530 -1.140530 -0.160642 -0.668882 -0.553708 0.265991 -0.568797 0.551729 -0.525207 -0.265657 -0.219084 -0.389365 0.756718 0.496263 0.434452 0.763967 -1.197565 0.155447 0.115765 0.148903 0.653467 -0.108205 -0.475320 -0.328205 -0.517095 -0.860590 0.918767 0.624825 0.222081 0.220711 -0.645513 0.526620 -0.283331 -0.041019 0.372455 0.534547 -0.633135 -0.160058 0.390299 -0.240088 -0.274443 -1.081127 0.274718 -0.654356 0.277887 0.595339 -0.136065 -0.430933 -0.981263 0.101921 -1.137350 -0.885036 0.551764 -0.609260 -0.061103 0.891569 -0.877273 0.167435 -0.620900 -0.129296 0.552253 0.734104 0.342297 0.515943 0.604190 0.989700 0.401358 -0.947377 -0.598446 0.636807 1.183002 0.320157 0.203246 -0.793961 -0.561601 0.381052 -0.738118 -1.315583 -0.711783 0.616090 0.802819 0.085609 -0.643685 0.442090 -0.425130 0.853079 1.149661 0.281084 0.062395 0.249198 -1.071919 0.794650 1.193901 -0.311757 0.908347 -0.112015 -0.248747 1.092466 -0.984884 0.380046 0.376222 -0.040321 -0.476040 -0.468454 -0.139143 0.726755 0.554379 0.945305 -0.470115 0.597668 -0.268304 -1.240816 -1.468602 -0.209842 1.700682 0.368229 1.025681 -0.996583 -0.371159 0.258544 1.102076 0.221668 -0.890639 0.235158 -0.521521 0.654029 -1.808460 -1.237023 1.942352 1.528353 0.967086 0.347103 0.499221 1.055799 -0.997400 -0.162284 -0.369820 0.615474 -0.245460 -1.405474 -0.425105 0.186311 -1.055435 -0.865566 -0.204248 0.434287 0.113801 0.068357 0.470598 0.300779 -0.053045 -0.199002 0.535496 -0.459660 -0.792623 -0.184268 0.076394 0.389529 0.234802 -0.347524 0.520563 0.499804 -0.769112 0.136593 0.592073 0.445062 0.464638 1.455132 1.314067 -0.525812 0.196291 -0.232909 -0.321500 0.877843 -0.323977 0.312614 0.126077 0.467207 0.561837 0.132603 0.831296 -0.519004 -0.557113 -0.931427 -0.237089 0.548214 0.899249 -0.280060 -1.387921 -1.379976 0.222767 0.392097 1.161504 -0.174242 1.673664 -0.347302 0.347652 -1.589491 0.099700 0.558943 -0.126753 0.583119 0.261641 -0.323827 -0.864500 -0.519849 -0.862991 -0.618243 -0.322134 -0.397048 -0.281807 -0.756037 0.951575 -0.739922 -0.105999 0.177974 0.140824 0.973869 0.396284 -0.027463 -1.005108 0.450381 0.303870 0.057786 -0.647755 1.191570 0.196885 2.001637 -0.418912 0.351252 -0.246068 0.978841 -0.449781 -0.674478 -0.072580 1.239355 1.197174 0.103253 -0.078166 -0.013503 0.026388 0.593456 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = 0.150714 0.548867 2.404062 1.368320 -1.315935 -1.939731 -0.882484 -3.094198 1.470142 0.006713 1.418159 0.063025 0.477685 -0.641232 -0.103615 -0.071909 0.243978 -0.328950 0.076669 -0.670834 -0.602855 1.947861 0.251491 -1.322179 0.309167 -2.691549 1.456342 1.066035 1.375541 1.172934 0.160531 -0.389886 -0.657828 1.163199 -0.553678 -0.049649 0.434733 0.260834 -1.301749 0.030710 0.490669 0.843238 1.365856 -0.183685 1.428859 0.339814 0.896655 0.597614 -0.760598 -0.144967 -0.856087 1.908991 -0.876679 0.935647 0.188875 0.296805 0.060579 -1.361792 -0.405900 -0.569694 -0.193522 0.108739 -0.836023 0.068461 -1.382309 0.256746 -0.223029 -0.814283 0.793503 -0.065960 1.314939 0.345672 0.110876 -0.462753 -1.812306 0.365444 0.091672 1.069888 1.014224 -0.222483 0.307520 0.201464 -0.917384 -1.004628 0.728746 0.906837 0.334917 -0.166888 -0.097441 -0.691484 -0.020494 -0.544718 0.283054 0.935623 -1.106213 0.310492 -1.280660 -0.263660 -0.933014 -1.287913 0.232451 -0.902724 0.882462 0.372286 -0.490318 0.119919 0.837276 0.334695 -0.266802 -1.328533 0.135608 -0.325153 0.834676 2.360296 -0.358017 -0.616815 -0.347545 -0.515451 -0.769413 1.272608 0.279824 0.407206 1.546551 1.891894 0.622713 -1.157760 -0.943702 0.650545 0.800977 1.387622 0.965176 -1.768649 -0.710549 -0.031951 0.084037 -2.594341 0.143163 0.096451 1.247454 -0.002506 -1.004673 0.237900 -0.794539 1.526045 0.610179 0.333030 0.477552 -0.000503 -1.186853 1.589217 2.790458 -0.292621 0.822304 -1.204333 -0.775347 1.106538 -0.855756 0.819763 0.177742 -0.080556 0.256523 -0.902932 0.010185 1.334238 0.107374 0.475672 0.745468 0.545354 -0.783826 -2.314277 -2.008046 0.289489 1.388968 -0.177025 2.397361 -1.408457 -1.043553 -0.492845 1.980743 -0.234728 -0.303956 0.595155 -1.300391 1.043929 -1.466156 -1.945915 2.393891 2.553872 0.356164 -0.114287 1.513027 1.039306 -1.322209 -0.928786 -0.847433 0.514619 0.697071 -1.317410 -0.341677 -0.022135 -1.384024 -0.738223 0.470216 0.570305 0.959826 -0.191071 -0.155600 0.080541 -1.509268 -1.495558 1.265883 -1.239497 -0.054912 0.400493 0.013118 -0.176338 1.056211 -0.742255 -0.387690 0.623572 -0.648263 0.474048 0.689256 0.985629 -0.011020 1.676079 1.399951 0.146006 2.021785 0.820355 -0.806202 3.009394 -0.560364 0.456809 0.492712 0.570385 -0.185653 0.787906 0.559231 -0.888135 -0.664310 -1.782031 0.331608 -0.104508 0.985166 -1.176073 -1.283940 -1.877922 -0.910726 0.671736 0.904211 0.103854 2.724626 -0.475571 0.213048 -2.986772 -0.189267 1.235596 0.003577 1.315962 0.614561 -1.057761 -2.083440 -0.460618 -1.005677 -0.603553 -0.811623 -1.369820 -1.105219 -0.975436 1.452451 -0.578204 0.553266 1.903614 -0.074909 0.672508 -1.222235 0.044185 -0.679381 -0.571335 0.664275 0.136384 -1.569154 1.504309 -0.200391 3.658451 -0.482902 1.052655 -1.049648 0.380003 -0.242916 -1.136484 -0.341797 1.950029 0.922194 0.512759 -0.200753 0.008477 -0.848317 1.153351 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 2.949000 5.488940 11.224372 3.768153 -11.181566 -12.262610 -3.651871 -19.642660 7.590718 1.673293 4.536792 1.550777 2.256707 -6.055779 -1.656853 7.232249 3.637566 0.163636 -1.293019 -6.028792 -10.491130 5.461383 -1.509031 -1.692371 5.837956 -10.944560 8.132244 1.683160 7.164181 3.380804 5.776418 -1.462861 -4.682645 7.601273 5.333614 6.113354 2.512972 1.353800 -8.920446 4.229691 0.004315 -2.836217 7.555297 3.371971 10.230109 2.790244 5.313432 4.980921 -6.236612 1.761518 -5.922304 11.479122 -5.806115 5.606670 -0.100157 -0.032382 -1.573781 -6.725520 -0.119894 3.043277 -6.376471 -6.866595 -5.823880 0.551780 -8.404583 0.150691 -4.550273 -5.983316 -1.346956 4.441447 6.999510 3.236348 -1.375666 2.225468 -10.548170 -0.475605 3.353309 5.798528 9.468800 -1.712391 3.446676 -2.247196 -6.332119 -7.652628 9.070478 2.649606 3.320472 -0.383012 -1.667242 -4.714294 -3.884815 -4.509289 5.778815 5.043095 -9.606991 -1.236319 -7.322775 -3.537102 -7.913577 -14.255144 2.204871 -2.826584 5.399893 -4.150879 -2.196250 1.862078 2.860842 1.759351 -0.935284 -2.893484 0.771959 -2.607243 3.841487 13.395782 1.612377 -5.157148 -2.106292 -3.830019 -4.067573 4.443379 4.634213 -0.130983 12.272310 10.196964 7.128397 -3.682733 -5.353549 0.711216 0.699823 6.816772 6.441197 -9.003688 -5.365835 3.212113 0.514959 -13.555498 0.223030 0.158766 5.290284 -1.022985 -0.799568 -3.539810 -2.428738 3.371359 0.785466 -1.074272 3.114403 -1.317002 -4.991032 7.589674 13.552519 -1.597402 3.407802 -6.590271 1.569736 4.391807 -4.906414 0.761998 0.001666 -4.696389 -1.113372 -1.911093 -2.146478 6.199244 0.119194 -4.521370 2.408934 4.792295 -9.842846 -10.446437 -8.035202 2.183192 9.702820 -2.136783 9.301509 -8.152335 -2.245990 -4.409471 9.087469 1.411484 -0.075926 4.794508 -8.243497 6.049462 -1.753513 -8.702848 14.646955 11.904974 3.675296 -3.297656 4.134318 6.034362 -14.819137 -8.702660 -4.888637 -1.632713 3.519040 -13.218452 -8.497828 1.815767 -9.836597 -1.936189 1.650156 4.004414 8.525824 3.658375 3.464055 0.909610 -4.111847 -8.654663 6.225713 -2.832149 -1.278561 3.491604 1.506001 1.726475 6.363725 -2.561455 -2.086433 0.366153 -3.172849 2.667967 4.298124 8.737465 -0.898467 11.839122 8.510612 0.045812 9.952084 2.919188 -5.449549 8.613169 0.556879 5.865442 3.963896 0.266248 -1.839279 2.633601 6.890797 -5.250570 -5.529841 -7.016118 -2.504610 -0.897229 4.135617 -0.322650 -5.140696 -11.255001 -2.870326 1.437798 2.907575 -0.681863 10.036384 -1.169166 1.673485 -12.261558 -0.424252 5.807650 -0.470633 7.891991 3.877699 -7.492026 -3.423699 -3.790017 -8.212319 -8.130631 -2.682959 2.426886 -5.381523 -1.262446 7.467774 -1.341130 0.314547 8.558335 -0.676751 5.044456 -7.676225 3.168756 -4.483922 -0.620374 11.359641 -0.864825 -7.025836 6.981438 1.771970 20.469676 2.424581 2.714409 -2.649182 -5.032345 2.662634 -4.969519 -4.141634 8.871507 4.710789 4.133121 0.404939 0.054352 -0.448884 8.991496 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = -1.389956 -0.302820 5.402053 1.405460 -4.370844 -5.638963 -2.387465 -10.353840 5.074666 2.556896 5.385049 1.314294 3.304943 -3.994084 -0.117341 2.258317 2.459987 -3.047641 0.913598 -2.945474 -1.516158 6.727231 0.785920 0.720140 0.865071 -7.230828 3.622634 0.026606 3.769767 3.801993 2.424492 -0.848887 -2.614532 2.449231 1.950280 4.403137 1.762775 1.681195 -3.105299 0.384153 0.242653 -2.317533 3.629918 0.286761 7.005748 -1.281676 2.721565 1.162382 -3.060312 -2.406112 -2.532783 4.083210 -4.660715 1.791004 0.179923 -1.610580 -0.509762 -1.300922 -1.200797 -2.044730 -2.071353 -3.870808 -2.566002 1.041079 -3.007817 2.278820 -3.092274 -1.335978 -1.125407 -0.412354 4.086226 2.446857 1.688220 3.149357 -6.797932 0.367426 0.450223 1.438003 3.857315 0.043645 -0.605830 -1.920609 -2.851839 -4.103374 4.963601 3.382827 0.399643 0.198085 -2.849080 1.094147 -1.942333 -1.215186 2.385286 2.296973 -5.509255 -1.136591 -0.496661 -1.380530 -1.568007 -6.263718 1.053484 -2.775945 1.750158 0.591818 -0.947689 -0.539175 -2.045917 0.250479 -3.796647 -3.112830 1.975997 -1.761875 0.678673 6.217713 -2.593517 -0.775313 -2.808136 -0.533992 0.252219 2.590423 2.170555 2.223726 4.847404 5.003453 3.022443 -3.710039 -2.980838 3.239885 4.014601 2.192716 1.534572 -3.593241 -2.826068 1.845252 -1.390632 -6.642016 -2.693452 2.352664 4.135715 0.319220 -0.862725 -0.810940 -1.407845 4.103591 3.978141 -0.230024 0.804917 0.840218 -4.615441 4.132346 6.780644 -0.820453 3.178542 -2.057620 0.401113 4.174722 -4.523758 1.415854 0.957857 -0.286754 -1.995034 -2.243632 -1.268684 3.306997 0.971424 1.797332 -1.852854 3.579727 -2.798369 -6.170936 -6.691048 -0.710798 7.003037 1.105693 4.437445 -4.610812 -1.548041 0.111497 4.730302 1.870706 -3.102230 2.408686 -3.956314 3.076484 -5.803727 -5.636267 9.549256 8.350671 3.839534 0.344544 2.636565 5.191581 -7.173173 -2.394034 -1.955181 1.690911 0.408145 -8.170603 -3.181949 1.409472 -5.113759 -4.323288 -0.081976 1.968524 1.906594 1.204474 3.475054 1.741390 -0.483988 -2.086591 4.258994 -1.688710 -3.049315 -0.291078 0.941698 1.742688 2.429326 -1.850146 1.967064 1.966746 -2.707583 1.136798 2.811221 2.955365 1.137346 6.231290 6.429688 -1.423317 3.174203 -0.555956 -2.390650 4.080009 -1.086012 1.797809 0.911234 0.029631 1.076005 0.815919 3.364143 -2.849077 -2.782774 -3.983519 -1.144548 0.822354 3.833933 -0.543317 -5.776812 -6.446466 0.295022 1.381576 3.297763 -0.124918 7.368757 -2.509412 1.049932 -7.884811 0.173244 3.418789 -0.215187 3.956149 1.297912 -2.004608 -2.590812 -2.488136 -4.137509 -3.149009 -1.546914 -1.330100 -2.132137 -3.524361 5.678617 -3.002126 -0.100745 1.901493 0.624032 5.098489 -0.797120 0.471622 -4.631080 2.287308 2.396088 0.537230 -3.584900 5.210079 0.550342 10.372661 -1.307477 0.853680 -1.215840 2.337112 -1.785305 -3.944418 -0.721717 5.463791 5.001348 1.343204 -0.951008 -0.714862 -0.370305 3.625023 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.112750 0.200779 0.672668 0.567893 -0.905693 -1.735951 -0.367156 -1.603191 0.458403 0.088252 0.974049 0.046966 0.681297 -0.439507 0.202614 0.556008 0.622537 -0.065534 0.082243 -0.609933 -0.834166 1.034337 0.152418 -0.074208 0.108705 -0.235938 0.564411 0.584446 0.339632 0.592438 0.383939 -0.098656 -0.309207 0.388724 -0.132752 0.512211 -0.112015 0.454713 -0.613215 0.092815 -0.058194 -0.784319 0.914036 -0.067115 0.786315 0.241894 0.999812 0.425522 -0.704244 -0.417800 -0.737928 0.866768 -0.808101 0.278590 -0.416863 -0.468114 0.466740 -0.013897 -0.157803 -0.449041 -0.345745 -0.682699 -0.848207 0.065565 -0.703056 0.333490 -0.500576 -0.784318 -0.144241 0.244231 0.648696 0.249531 -0.131706 0.389642 -1.198369 -0.155995 0.242987 0.420188 0.625460 -0.024680 0.171912 -0.377005 -0.715510 -0.611227 1.021966 -0.004083 0.588925 0.316138 -0.778769 0.137061 -0.177919 0.040413 0.612019 0.167291 -0.357292 0.098678 0.123026 -0.237625 -0.885160 -1.277805 0.360289 -0.247102 0.361440 -0.035966 0.095407 -0.163471 -0.779845 -0.006648 -0.893680 -1.033868 0.012424 -0.643563 -0.143948 0.878085 -0.534108 -0.058740 -0.208263 -0.161473 0.036515 0.515186 0.680680 0.286176 0.593873 0.847349 0.179770 -0.755937 -0.632139 -0.067389 0.757079 0.588299 0.434956 -0.333894 -0.738195 0.326134 -0.741379 -1.283909 -0.357030 0.836025 0.719130 0.088370 -0.405592 0.414535 -0.448268 0.508991 0.635501 0.416871 0.162810 -0.036375 -0.737908 0.623974 0.845429 -0.331541 0.917537 -0.050425 -0.127704 0.877632 -0.462442 -0.012760 0.482701 -0.558905 -0.515799 -0.046821 -0.251118 0.542258 0.578593 0.198587 0.124170 0.514259 -0.799826 -1.041806 -1.019677 0.240236 1.481398 0.241793 0.858231 -0.918919 -0.363232 0.355462 0.555674 -0.275607 -0.697783 0.210922 -0.596165 0.649571 -1.363656 -1.000498 1.559523 0.650726 0.686879 0.179564 0.369774 0.798513 -0.998871 -0.438795 -0.368622 0.402487 0.021981 -1.402838 -0.547904 0.131580 -1.091484 -0.259543 -0.047403 0.584639 -0.058473 0.162448 0.600316 -0.468971 -0.279387 -0.254007 0.264032 -0.392374 -0.194259 0.162397 -0.122714 0.264623 0.160612 -0.153699 0.263241 -0.028378 -0.744959 0.153759 0.124817 0.597597 0.428753 1.748966 1.258357 -0.446278 0.772009 -0.121649 -0.569097 0.819562 -0.244502 0.599627 0.031157 0.862530 0.224992 0.037475 1.113239 -0.419498 -0.664301 -0.829692 -0.541767 0.780641 0.655444 -0.024243 -0.572780 -1.506204 0.027013 0.239282 1.215882 -0.496776 1.020062 -0.468872 0.357063 -1.256223 0.216027 0.100167 -0.229753 0.519254 0.248981 -0.440519 -0.316169 -0.409965 -0.823097 -0.721404 -0.159994 -0.165724 -0.344376 -0.285613 0.096047 -0.740604 -0.261153 0.202274 -0.256565 0.608532 0.009373 0.039653 -0.342766 0.276072 1.037827 -0.018534 -0.679444 0.980813 0.289499 2.277436 0.386620 0.423852 -0.241159 0.245157 0.028612 -0.547367 -0.294924 1.041590 1.032036 -0.059444 0.239751 0.336926 0.366794 0.534382 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.342139 -0.117189 4.022139 1.357597 -1.885333 -2.974641 -1.563228 -5.863727 3.027366 1.194477 3.447860 0.226616 1.950039 -1.799916 -0.229641 0.240853 1.344821 -2.129739 0.942834 -1.473843 0.749790 4.508314 0.894589 -0.783602 0.216468 -5.163562 2.386506 0.784138 2.308756 2.813309 0.980224 0.030288 -1.236162 1.540076 0.106917 1.716321 1.129652 1.074383 -1.814637 0.055218 0.303114 0.178874 1.906735 -0.319395 4.170700 -0.011762 1.547820 0.609486 -1.372912 -1.508485 -1.497666 2.384339 -2.578902 0.630749 -0.051670 -0.726945 -0.302104 -1.459214 -1.143622 -2.250170 -0.479880 -0.874929 -1.485017 0.883910 -2.208206 1.759835 -1.049019 -0.498109 -0.180261 -0.878612 2.307157 1.424693 1.149445 1.025415 -3.944656 0.802197 0.030338 1.016442 1.836995 -0.420965 -0.631843 -0.252071 -1.404330 -2.231516 2.091147 2.840317 0.242214 0.148569 -0.886416 0.356085 -1.055132 -0.750374 0.512475 1.740525 -2.751081 -0.160078 -0.368237 -0.678615 -0.926261 -2.213077 0.775916 -1.817181 1.199513 1.081941 -0.636302 -0.265859 -0.738554 0.197682 -2.039728 -2.194492 0.908896 -1.285789 1.117661 4.077703 -1.879795 -0.110293 -2.297185 -0.311220 0.200247 2.311153 0.136205 1.685775 2.314717 3.245238 1.122070 -2.466822 -1.764973 2.449315 2.495478 1.440602 1.093529 -2.771246 -1.554048 0.161921 -0.619835 -3.694383 -1.634978 0.911396 2.396050 -0.204793 -1.492569 0.509454 -1.103000 3.292302 2.654432 -0.027226 0.373745 0.820074 -2.917375 2.766406 4.836071 -0.426908 1.803857 -1.634011 -0.491943 2.780310 -2.516393 1.559180 0.785851 0.213122 -1.103363 -1.593975 -0.211086 1.917189 0.826601 1.901706 -0.360808 1.655470 -0.280244 -3.989822 -4.244271 -0.695446 3.515680 0.490803 3.536198 -2.722644 -1.186184 -0.271380 3.118960 1.256510 -1.595435 1.074870 -2.341255 1.757166 -3.907038 -3.708912 4.943140 5.244782 2.029882 0.735626 2.169583 2.691807 -2.967082 -0.975802 -0.717538 1.825515 -0.292848 -3.476237 -0.817131 0.494996 -2.764814 -3.041259 -0.108894 1.299657 1.132482 0.466186 1.358841 0.748986 -1.026651 -1.809228 1.889288 -1.402426 -1.932735 -0.093502 0.365264 0.711854 1.214667 -1.628474 1.203345 1.736255 -1.381758 0.696015 1.735155 1.102869 0.306770 2.480431 3.479317 -0.526480 1.979115 0.013495 -1.136816 3.743263 -0.212455 1.076904 0.561033 -0.100980 0.860486 0.621857 1.141853 -1.632064 -1.118273 -2.804988 0.221749 0.534048 2.585255 -1.472802 -3.757604 -3.397835 -0.150385 1.488179 2.070208 0.194469 5.091537 -1.263712 0.455724 -5.315958 0.103461 2.263776 0.026274 2.117044 0.968198 -1.450813 -2.617390 -1.006441 -2.300481 -1.481327 -1.517879 -2.226818 -1.789644 -1.880351 3.628614 -1.690729 0.070581 2.022243 0.536040 2.407746 -0.275659 0.051993 -2.407498 0.212981 0.437607 0.519101 -2.276768 2.880971 -0.339425 5.660382 -1.529495 1.144812 -0.998897 2.433876 -1.177016 -2.520437 -0.123465 3.986498 2.438166 0.393174 -0.588415 -1.045649 -0.456118 1.843252 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(int (*)(suffix, suffix)) = -0.007080 -0.002302 0.849245 -0.003270 -0.203875 -0.986718 -0.342549 -1.681007 0.784152 0.402589 0.884447 -0.000242 0.687693 -0.446219 -0.013493 0.410991 0.291625 -0.443554 0.203173 -0.377398 -0.059566 1.194283 -0.086732 0.218895 0.053928 -1.235958 0.434204 0.229820 0.565694 0.672223 0.276152 -0.043933 -0.176235 0.303642 -0.115046 0.581530 0.334923 0.314917 -0.444991 0.013723 -0.095391 0.005132 0.495975 -0.000595 0.979813 0.086276 0.302593 0.203772 -0.024103 -0.427517 -0.245272 0.590060 -0.480188 0.162206 -0.249951 -0.245531 -0.037053 -0.241737 -0.160690 -0.200271 -0.120437 -0.130869 -0.524442 0.167687 -0.455880 0.315559 -0.203742 -0.260898 -0.192479 -0.262591 0.543127 0.232524 0.057500 0.205481 -1.202289 0.023411 0.077407 0.061547 0.464578 -0.137700 -0.153869 -0.238983 -0.490262 -0.610738 0.906097 0.923610 0.137188 0.268127 -0.520130 0.022470 -0.377878 -0.115854 0.485411 0.436601 -0.495635 -0.172796 0.078996 -0.184286 -0.289118 -0.731368 0.338806 -0.372073 0.280819 -0.012241 0.229806 -0.046838 -0.069606 0.108126 -0.552543 -0.486496 0.246052 -0.370494 0.206660 0.994991 -0.345266 -0.120519 -0.566134 -0.216257 -0.019797 0.530898 0.277811 0.198587 0.722928 0.609353 0.328758 -0.679093 -0.578268 0.609678 0.605516 0.332082 0.128969 -0.783897 -0.339606 0.217015 -0.457616 -1.100222 -0.499939 0.202702 0.515124 -0.400540 -0.188855 0.384171 -0.228970 0.510797 0.721174 -0.111025 0.116608 0.166646 -0.677148 0.508507 1.091798 -0.133263 0.499477 -0.515958 -0.124985 0.463173 -0.514751 0.247205 0.231256 -0.147542 -0.388583 -0.236640 0.198509 0.505205 0.119317 0.524694 -0.285228 0.486672 -0.436814 -0.705333 -1.077529 -0.211214 0.918093 0.090328 0.923344 -0.654075 -0.386446 0.005986 0.812567 0.104454 -0.345900 0.387663 -0.688421 0.471628 -0.873525 -0.829006 1.281960 1.161629 0.855725 0.031986 0.498932 0.623077 -0.757395 -0.194934 -0.096941 0.353117 0.162228 -1.315211 -0.303932 0.038766 -0.754615 -0.598191 -0.221387 0.324390 -0.045177 0.415522 0.680990 -0.153173 -0.182718 -0.361755 0.518620 -0.267777 -0.226742 -0.115322 0.125075 -0.077296 0.303347 -0.491216 0.347303 0.491735 -0.378505 0.330576 0.472835 0.153272 0.134925 0.872493 0.906563 -0.328253 0.654727 -0.225813 -0.196890 0.529945 -0.083145 0.246404 0.109986 0.171784 0.170670 0.155117 0.390917 -0.383973 -0.347396 -0.671460 -0.174807 0.393033 0.483396 0.340161 -0.779863 -0.926931 -0.090490 0.026716 0.937630 0.045695 1.105251 -0.355160 0.415746 -1.163642 0.170307 0.256734 -0.106136 0.336138 0.178644 -0.319980 -0.499038 -0.209009 -0.677441 -1.078788 -0.256092 -0.565779 -0.405404 -0.699957 0.690445 -0.590566 -0.095934 0.368988 0.181564 0.540417 -0.327712 0.084271 -0.688086 0.339859 0.392790 -0.084909 -0.528261 0.354870 0.062398 1.546139 -0.242385 0.498437 -0.181128 0.653903 -0.356098 -0.718899 -0.137068 0.870009 0.670520 0.022691 -0.088792 -0.167709 0.099838 0.450063 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -2.012327 -0.194316 5.960259 2.510015 -3.544453 -5.049030 -2.638690 -8.718157 4.488960 1.505847 5.262587 0.626584 2.773411 -2.702490 -0.277925 -0.117586 2.106310 -3.157660 0.971967 -2.484252 -0.021357 6.556131 1.338613 -1.767279 0.452387 -7.604880 4.117233 1.456392 2.934365 4.537909 1.456404 -0.146206 -2.241981 2.538387 0.154197 2.394689 1.752434 1.440310 -2.540853 -0.051777 1.268559 0.104679 3.805107 -0.347710 6.010200 0.155559 2.070033 1.174907 -2.638054 -2.254852 -2.209390 3.257287 -4.006547 1.283913 0.001465 -0.502551 0.214085 -2.629157 -1.640136 -3.358927 -0.829912 -1.637968 -2.350311 1.053940 -3.280383 2.335200 -1.568895 -1.199629 0.205281 -1.649685 3.546321 1.842370 1.362052 1.307793 -5.620353 0.920062 0.180238 1.745187 2.936983 -0.406234 -1.017964 -0.539243 -2.582990 -3.247704 2.857805 3.451856 0.553385 0.339837 -1.376108 0.261446 -1.057279 -1.002031 1.102116 2.498127 -3.777882 -0.392919 -0.689300 -1.237931 -1.781116 -3.627659 1.307834 -2.515233 1.952883 1.891300 -1.794646 -0.540678 -0.970828 0.205255 -3.202096 -3.442859 1.379343 -2.147820 1.681703 6.037732 -2.674776 -0.693805 -3.179797 -0.910285 0.428797 3.554191 0.395509 2.165182 3.684592 5.151401 1.706160 -3.933447 -2.782004 3.057021 3.786597 2.276276 1.878027 -4.036292 -2.396316 0.489022 -1.227463 -6.017747 -2.128073 1.074101 3.922861 0.080960 -2.557825 1.038661 -2.066551 4.756248 3.761270 0.568739 0.664070 0.959127 -4.689899 4.328274 7.060712 -0.641583 3.011034 -2.603954 -1.206270 4.392999 -3.576270 2.140598 1.134651 -0.130179 -1.518576 -2.231317 -0.164162 3.052318 1.002087 2.659252 -0.339866 2.506119 -0.829760 -6.124143 -6.571474 -0.523513 5.823893 1.242625 5.697429 -4.595547 -1.733906 -0.458368 4.989899 1.372916 -2.576707 1.715872 -3.291330 2.842561 -6.350931 -5.697856 7.874619 7.715414 2.857553 1.143503 3.286665 3.730827 -4.150262 -1.482942 -1.597160 2.576816 0.285785 -4.799468 -0.936709 0.629884 -4.108425 -4.290363 0.154278 2.099139 2.054405 -0.403894 1.611350 0.817140 -1.689403 -3.086053 3.143388 -2.564847 -2.634983 0.266150 0.246394 0.902729 1.930579 -1.702685 1.280685 1.946299 -2.013022 1.107149 2.498733 2.125250 0.564327 4.192294 5.437973 -1.175993 3.003106 0.306621 -1.729091 6.222133 -1.117870 1.768989 1.071416 0.717986 1.465237 1.020641 2.312020 -2.481666 -1.438848 -4.271853 0.399380 0.820883 3.959807 -3.156978 -5.391375 -5.905708 -0.369492 1.983599 3.412232 -0.066702 7.834710 -1.761552 0.615001 -8.098320 -0.048908 3.720640 0.194487 3.150276 1.427730 -2.319202 -4.388353 -1.570552 -3.786327 -1.521577 -2.095514 -2.906587 -2.800362 -2.713436 5.078229 -2.434744 0.335445 3.438381 0.136976 3.391108 -0.683271 0.030380 -3.363474 -0.163645 0.734245 0.722248 -3.400945 4.995687 -0.280189 8.821838 -1.734307 1.951253 -1.535189 3.672120 -1.720071 -3.901925 -0.474144 5.894424 3.709621 0.643830 -0.601268 -1.070409 -0.701763 2.960672 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__lg(long) = 0.105240 0.392224 0.856599 0.442838 -0.105344 -0.542645 -0.152057 -1.091592 0.382257 0.039500 0.440369 -0.175539 0.158601 0.292828 0.052875 0.028938 0.011462 -0.155908 0.369914 -0.089068 -0.023365 0.564108 0.131976 -0.344698 -0.074268 -0.815389 0.625403 0.243616 0.479577 0.416705 0.050990 -0.234860 0.076893 0.450168 -0.233227 -0.271835 0.219417 0.162246 -0.327063 0.103120 -0.227499 0.491533 0.314141 0.115574 0.334697 0.419476 0.438429 0.212840 0.081335 0.226144 -0.386744 0.631413 -0.413209 0.310764 -0.040577 -0.085709 0.059059 -0.427323 -0.131337 -0.266865 -0.087745 0.230177 -0.295566 0.079307 -0.666839 0.112983 -0.272200 -0.244022 0.070719 0.544003 0.552608 0.321904 0.260199 -0.186232 -0.828393 0.308737 -0.176287 0.299775 0.317048 -0.578771 -0.003081 0.315426 -0.338509 -0.477649 0.295270 0.437210 0.060399 -0.178797 0.319813 -0.184226 -0.236406 -0.251468 -0.224658 0.571615 0.155498 0.591376 -0.378123 0.096576 -0.260773 -0.576178 -0.080717 -0.500082 0.330995 0.110266 0.319756 -0.004853 0.209693 0.281087 0.006600 -0.588863 0.227514 0.022372 0.211109 0.470157 -0.090899 -0.038617 0.079128 -0.072411 -0.095937 0.526864 0.136982 0.192220 0.348821 0.655870 0.000234 -0.243773 -0.156095 0.154232 0.088693 0.557039 0.418535 -0.745885 -0.294452 -0.049214 0.197263 -0.652637 0.302590 0.384247 0.261557 -0.366762 -0.496986 0.119852 -0.254708 0.481687 0.506316 0.373994 0.212408 -0.004093 -0.113508 0.496852 0.978570 -0.186203 0.261475 -0.504701 0.034998 0.305559 -0.369978 0.363390 -0.077310 0.260969 0.149434 -0.405066 -0.099547 0.503659 0.459531 0.160766 0.690543 0.061556 -0.204006 -0.738985 -0.263455 0.055985 0.543658 -0.397861 0.723935 -0.334009 -0.376903 -0.026328 0.229209 0.132249 0.020533 0.108735 -0.272146 0.251021 -0.837098 -0.589147 0.471676 0.416014 0.171296 -0.330085 0.151705 0.483697 -0.197120 -0.529063 -0.192603 0.318956 -0.370423 -0.346877 -0.309563 -0.110437 -0.542818 -0.080914 0.137394 0.200137 0.664227 -0.058223 -0.427678 -0.034409 -0.758335 -0.503742 0.296896 -0.466116 -0.342496 0.095689 0.006211 0.043306 0.113031 -0.117105 0.047221 0.634875 -0.320183 -0.087430 0.374105 0.262523 -0.158915 0.693749 0.298074 0.345684 0.364120 0.450557 -0.257207 1.050358 0.049433 0.075798 0.142743 0.089606 -0.225951 0.293390 0.207950 -0.245025 -0.671180 -0.620278 0.294734 -0.047560 0.427080 -0.102737 -0.337414 -0.366750 -0.266550 0.374331 0.554190 0.090211 0.810859 0.061824 0.306552 -0.647942 -0.006509 0.225016 -0.023087 0.363393 0.353598 -0.420545 -0.081306 -0.118890 -0.234711 -0.323280 -0.330315 -0.578527 -0.321778 -0.160210 -0.097376 -0.103664 0.079385 0.497264 -0.045645 0.129997 -0.359980 -0.105256 -0.198388 -0.117445 0.618551 -0.038101 -0.639301 0.367361 -0.234443 1.314559 -0.365869 0.268636 -0.478383 -0.142316 -0.056496 0.131808 -0.047561 0.784699 0.135176 0.117988 0.027983 -0.125135 -0.096096 0.244636 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.823754 -0.218237 4.811895 1.096646 -2.492298 -3.828311 -2.025758 -7.457124 3.683204 1.616139 4.535354 0.422078 2.559632 -2.169116 -0.051321 0.484884 1.989040 -2.930845 1.073994 -1.979832 0.797401 5.236223 0.788242 -0.354851 0.291221 -6.063269 2.433850 0.831582 2.457521 3.241105 1.458323 -0.111669 -1.939501 1.707157 0.451134 2.510103 2.033229 1.245070 -2.252485 -0.104813 0.192233 -0.256724 2.640768 -0.406833 5.363537 -0.405093 1.633073 0.901446 -1.884765 -2.072629 -1.653529 3.001272 -3.132371 0.778128 0.386479 -1.002542 -0.332397 -1.698807 -1.355071 -2.561817 -0.832069 -1.536415 -1.657258 1.014438 -2.142604 2.123478 -1.197647 -0.542308 -0.295170 -1.473763 2.786693 1.475395 1.492854 2.002184 -4.813108 0.746108 0.125044 1.111013 2.261919 -0.288908 -0.737144 -0.648817 -1.738763 -2.765345 2.677691 3.595489 0.323245 0.295648 -1.857520 1.059283 -1.244428 -0.994188 0.935143 1.944589 -3.585018 -0.580107 -0.054664 -1.135747 -1.369602 -3.082988 1.120789 -2.025401 1.406009 1.134027 -0.826839 -0.612434 -1.650379 0.171424 -2.981269 -2.487542 1.538544 -1.677531 1.008898 4.806923 -2.621127 -0.131442 -2.894116 -0.566644 0.461482 2.582512 0.337593 1.999985 2.507382 3.965414 1.603647 -3.137626 -2.368900 2.865701 3.452956 1.582846 1.165896 -3.198327 -1.786128 0.682057 -1.415421 -4.631949 -2.308005 1.183853 3.218381 0.088561 -1.616146 0.203575 -1.452465 3.987553 3.202500 0.196084 0.305611 1.042673 -3.786178 3.129195 5.288004 -0.584816 2.691914 -1.574341 -0.103323 2.853825 -3.176251 1.856126 1.138241 0.085003 -1.594488 -1.728131 -0.590844 2.266966 1.361270 2.459005 -1.310009 2.212907 -0.832969 -4.773447 -5.575615 -0.949209 4.753568 0.672141 3.770783 -3.472010 -1.808963 -0.212075 4.136584 1.192279 -2.521694 1.586222 -2.848101 2.269815 -4.451350 -4.316122 6.401699 6.751914 2.741669 0.896378 2.646240 3.137358 -4.402880 -1.168096 -0.842819 2.133035 -0.436030 -4.983729 -1.157385 0.646569 -3.363749 -3.667520 -0.368967 1.692061 1.049141 0.933435 2.515480 1.435265 -0.713772 -1.723427 2.399589 -1.406272 -2.654379 -0.112240 0.487045 1.082128 1.508851 -1.980464 1.442296 2.253091 -2.094516 0.891200 2.206548 1.407043 0.607795 3.581746 4.264155 -0.756729 2.634821 -0.419639 -1.522321 3.790144 -0.583691 1.431018 0.549256 -0.154261 1.135025 0.615197 1.765142 -2.026615 -1.613038 -3.246290 -0.231239 0.565947 3.462883 -1.287592 -5.167254 -4.361491 0.187657 1.667274 2.604253 -0.075174 6.075705 -1.537818 0.748060 -6.513959 0.178932 2.718286 -0.044167 2.213370 0.970549 -1.666058 -3.293038 -1.141796 -3.282693 -2.405336 -1.441695 -2.351219 -1.948502 -2.876557 4.877176 -2.178413 -0.213838 2.029502 0.595137 3.307363 0.064612 -0.017535 -3.025508 0.608737 0.836352 0.378733 -2.654982 3.808692 -0.045268 7.329069 -1.639964 1.223296 -0.871043 3.054845 -1.383927 -3.087312 -0.215634 4.760086 3.473812 0.579839 -1.030129 -1.216500 -0.556750 2.202516 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.569561 -0.250369 1.975771 0.433848 -1.236584 -2.519370 -1.011282 -3.829512 1.927109 0.971944 2.162830 0.436197 1.635623 -1.254330 -0.070707 0.555579 0.938689 -1.349525 0.424136 -1.178499 -0.417284 3.071039 0.337941 0.123446 0.072273 -2.923295 1.641167 0.371883 1.204846 2.077598 0.799870 -0.074554 -0.826708 0.892288 0.101431 1.526747 0.517536 0.823434 -0.896625 0.088808 0.340379 -0.429495 1.625445 0.065356 2.546249 0.144007 0.773536 0.555474 -0.646049 -1.284592 -0.669563 0.912946 -1.692548 0.439051 -0.490104 -0.414583 0.113481 -0.591280 -0.487420 -0.929301 -0.399585 -0.923536 -1.328291 0.522404 -1.319009 0.904666 -1.007571 -0.684358 -0.557174 -0.849080 1.394439 0.683141 0.270204 0.586086 -2.835945 -0.020646 0.064456 0.306515 1.317347 -0.040694 -0.840631 -0.709475 -1.371937 -1.530994 1.738811 1.709579 0.168264 0.552118 -1.104234 0.136439 -0.740796 -0.139934 1.105047 1.014209 -1.402849 -0.428032 0.238749 -0.495919 -0.676772 -1.914328 0.846087 -0.883760 0.755255 0.281209 -0.165694 -0.475120 -0.621183 -0.091281 -1.621950 -1.332437 0.596126 -1.059622 0.505566 2.394159 -0.995694 -0.247494 -1.515639 -0.534800 0.408777 1.410688 0.726555 0.573650 1.801125 1.767909 0.750285 -1.801051 -1.331180 1.366813 1.591587 0.666921 0.516983 -1.572110 -1.044375 0.618375 -0.993770 -2.543822 -1.188923 0.686254 1.385712 -0.509877 -0.508787 0.769428 -0.772650 1.348837 1.912372 0.058597 0.330422 0.302710 -1.904054 1.493571 2.737277 -0.198528 1.287320 -1.143192 -0.551899 2.055574 -1.551440 0.640700 0.548472 -0.355580 -1.259495 -0.573561 0.369503 1.216010 0.157857 1.255237 -0.487541 1.215742 -0.706206 -1.957835 -2.667960 -0.312355 2.788230 0.897075 2.256213 -1.936550 -0.348788 0.185394 1.798319 0.750297 -1.164157 0.886894 -1.364157 1.196306 -2.940623 -2.154873 3.414892 2.844967 1.859565 0.343020 1.015123 1.663139 -1.677782 -0.550995 -0.581287 1.027723 0.192574 -2.614597 -0.486833 0.311298 -1.920993 -1.656666 -0.290580 0.958742 0.540939 0.114257 1.246784 -0.292615 -0.277777 -1.186552 1.378620 -0.744999 -0.933482 -0.126201 0.185476 0.071399 0.571149 -0.542687 0.912360 0.722236 -0.747491 0.693873 1.133634 0.584988 0.328977 2.073953 2.422423 -1.104965 0.873455 -0.439826 -0.433546 1.844745 -0.475276 0.796122 0.393481 0.706967 0.748222 0.241763 1.221023 -0.972634 -0.645913 -1.507775 -0.249627 0.970250 1.443880 -0.361689 -2.093625 -2.675031 0.078876 0.201973 2.218135 -0.073789 2.926250 -0.915594 0.794282 -2.938008 0.350693 1.035832 -0.054857 1.098826 0.495995 -0.779486 -0.940657 -0.754454 -1.719743 -1.379665 -0.613582 -0.977451 -1.001093 -1.157282 1.536390 -1.354518 -0.220780 0.923570 -0.096167 1.503372 -0.410745 0.162347 -1.725172 0.555392 0.644335 0.033197 -1.192264 1.653337 0.123892 3.478076 -0.421769 1.023891 -0.236746 1.834055 -0.954033 -1.932222 -0.349924 2.242306 1.633408 0.021481 -0.036354 -0.357752 0.443429 1.023275 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.977180 -0.732809 4.080381 1.035271 -1.688872 -3.601651 -1.838427 -6.619642 3.586099 1.624071 4.378555 0.367819 2.555689 -2.241654 0.027094 0.860465 1.612360 -3.021430 1.077515 -1.676510 0.935598 5.660971 1.196389 -0.214262 -0.107428 -5.603167 2.247075 0.589539 2.218361 3.468035 1.380724 0.173958 -0.965156 1.468357 0.186825 2.872533 1.348822 1.399866 -1.578368 -0.334877 0.272620 -0.536254 2.274680 -0.271429 5.191852 -0.457944 2.144457 0.411884 -1.384461 -2.045585 -2.210056 3.000796 -3.335956 0.314517 -0.457413 -1.171389 0.105119 -1.343303 -1.466455 -3.126646 -0.997621 -1.327323 -2.215317 0.894261 -2.015903 2.400871 -1.200234 -0.193595 -0.783016 -1.044222 2.753356 1.677347 1.456646 1.853322 -4.850060 0.800461 -0.122693 0.677508 2.106300 -0.451884 -1.107034 -0.697548 -1.531632 -2.607136 3.356252 2.947290 0.215052 0.578868 -1.476661 1.361603 -2.029441 -0.618378 0.811724 1.867056 -2.963832 -0.248755 1.176452 -1.006603 -1.037018 -2.231082 1.182767 -2.185895 0.901428 1.325211 -0.146936 -0.563072 -2.075603 -0.098256 -3.346419 -2.772021 1.430850 -1.756484 0.390046 4.022727 -2.796600 0.412166 -2.439086 -0.086013 0.701808 2.626776 0.430714 2.383161 2.169833 3.429447 1.161169 -2.986034 -1.962082 2.865095 3.776072 1.208605 0.716415 -2.765090 -1.943577 0.456873 -1.031194 -4.153860 -2.438683 2.094546 2.834691 0.136193 -1.791180 1.080229 -0.848834 3.819181 3.559335 -0.152326 0.149457 1.112694 -3.797254 2.932360 5.351661 -0.628524 2.665999 -1.536786 -0.212691 3.519828 -3.459042 1.643527 1.179951 0.234303 -1.570330 -1.679390 -0.427815 2.100790 1.466662 2.498943 -1.073806 2.158631 -0.166890 -4.450790 -5.188439 -1.278203 4.592295 0.710807 3.637837 -3.023474 -1.360079 0.200209 3.315362 1.108360 -2.285097 1.122573 -2.766630 2.080185 -5.302734 -4.215203 6.425753 5.732566 2.953413 1.387970 2.324021 3.637813 -3.285545 -0.663978 -0.504115 2.383805 -0.194488 -4.519492 -0.851102 0.287541 -3.247473 -3.949731 -0.661668 1.474603 0.111938 0.821961 2.421512 0.809635 -0.564152 -1.140820 1.770864 -1.595285 -2.876441 -0.410527 0.557395 0.843206 1.045361 -1.635694 2.275386 2.154359 -2.001598 0.596872 2.058723 1.038067 0.933860 3.179230 4.632356 -1.119732 2.324284 -0.643526 -1.071132 3.129355 -0.444393 1.019468 0.444273 0.041936 1.631390 0.444043 1.568045 -1.789899 -1.267932 -3.067757 0.244130 1.169240 3.199454 -0.868532 -4.684179 -4.003497 0.145724 1.874739 2.906260 -0.257996 5.733034 -1.686083 0.657721 -6.182902 0.394827 2.483031 -0.004528 1.978762 0.995209 -1.333842 -2.753646 -1.319613 -2.583930 -2.111555 -1.659440 -2.459130 -1.818776 -2.831160 4.338603 -3.019231 -0.070246 1.458542 0.809145 3.015503 0.252230 -0.036446 -3.224216 1.080244 0.520077 0.597214 -2.295748 3.335092 -0.399477 6.573625 -2.021341 1.412143 -1.021795 3.800284 -1.802099 -2.594099 0.106843 4.563633 3.411680 -0.158100 -0.553911 -1.110098 -0.090327 2.086736 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.909336 0.010353 3.307457 2.162775 -2.522883 -3.773730 -1.599732 -5.285878 2.807544 0.774423 2.932902 0.707243 1.841184 -2.331700 -0.116946 -0.034368 1.352420 -1.148318 -0.166579 -1.716323 -0.830555 3.754308 0.490969 -2.021619 0.378188 -3.991131 2.596008 1.604318 1.348045 2.313883 0.965312 0.065545 -1.516543 1.817531 -0.676329 1.280547 0.896679 0.936196 -1.582575 -0.630908 1.262780 0.700490 2.660676 -0.151557 3.518809 0.365518 1.418697 0.987067 -1.834929 -1.361508 -0.746393 2.061182 -1.912995 1.281367 -0.050404 0.225567 0.753410 -2.009314 -0.461876 -1.973405 -0.081661 -0.601969 -1.823086 0.237110 -1.884815 0.822875 0.125831 -1.465296 0.400327 -1.129783 2.018341 0.352987 -0.120437 -0.304785 -3.003080 -0.046492 0.421959 0.957703 2.166214 0.337095 -0.528928 -1.101646 -1.798473 -1.905473 1.945388 1.556250 0.627750 1.132437 -1.031455 -0.574737 -0.126697 -0.829723 1.332718 1.384362 -1.970846 -0.703505 0.166271 -0.821867 -1.520999 -1.703267 1.263313 -1.111612 1.251171 0.985577 -1.053336 -0.111268 -0.057813 -0.006143 -2.051668 -1.633962 0.598992 -1.746809 1.446795 3.572028 -1.062220 -0.972923 -1.602943 -1.080804 0.006545 2.327162 0.605936 0.630623 2.965179 3.060514 0.914318 -2.634115 -1.856080 1.434699 2.145370 1.736299 1.070589 -2.918025 -1.386230 0.689606 -1.177759 -3.923297 -1.039476 0.288977 2.360840 -0.056022 -1.909935 1.422322 -1.164289 2.346102 1.663983 0.468482 0.336241 0.348409 -2.766403 2.376355 3.966293 -0.242971 1.669300 -1.380470 -1.307675 2.333989 -1.650181 0.928957 0.987272 -1.170185 -1.021634 -0.772348 0.615995 1.970499 0.122324 1.229714 -0.239488 1.633569 -1.385716 -3.534430 -4.217446 0.165892 3.289299 1.211212 4.506421 -2.972227 -1.252217 -0.540695 3.183724 -0.224239 -1.297955 1.153812 -2.184752 2.011920 -3.165942 -3.331050 5.068949 4.131813 1.980367 0.313049 2.537644 1.415382 -1.946591 -0.924262 -0.937463 0.937304 1.444394 -2.349256 0.067906 0.403334 -2.819217 -2.297032 0.150792 1.294246 0.852116 -0.554693 0.948805 -0.550533 -1.111474 -2.128528 1.513963 -1.240313 -0.423916 0.215999 0.189193 0.088729 1.356912 -0.906767 -0.061626 0.257898 -0.971535 0.863842 1.138967 1.662815 0.702033 2.995017 3.244033 -1.211414 2.736730 0.232614 -0.976109 4.106474 -0.863634 1.240730 0.898873 1.518196 1.156338 0.522320 1.742891 -1.575679 -0.011199 -2.731614 -0.076702 1.096971 2.017434 -2.710660 -2.250322 -4.146093 -0.745627 0.370518 2.278123 -0.620115 4.573886 -1.228788 0.410865 -5.133323 0.063827 2.059873 -0.195349 1.435569 0.946381 -1.734778 -3.446197 -0.915613 -2.427452 -1.606171 -1.011515 -1.244542 -1.739590 -1.449749 2.582554 -1.695751 0.334024 2.976481 -0.310528 1.342659 -1.516111 0.536687 -1.403135 -0.537213 0.365735 0.078725 -2.255264 2.688725 0.071802 5.753028 -0.419093 1.959029 -1.025582 2.382002 -1.065696 -2.850631 -0.774764 3.245577 2.124986 0.244932 0.292619 0.201454 -0.501786 2.352263 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.731227 0.389771 2.552347 1.782762 -1.492294 -2.154876 -0.949607 -3.301011 1.576359 0.330014 1.997318 -0.089463 0.954217 -0.881418 -0.286580 -0.258061 0.862577 -0.638137 0.199448 -0.926191 -0.189043 2.272688 0.370536 -1.552878 0.319190 -2.543064 1.988135 1.180841 0.896261 1.479506 0.549073 0.424983 -0.613445 1.216166 -0.462359 0.435875 0.343712 0.833199 -0.955324 -0.230974 0.747922 0.219072 1.457187 0.066762 2.146450 0.678313 1.168518 0.409140 -1.228949 -0.550344 -1.253353 1.465567 -1.433304 0.532746 -0.601075 -0.215159 0.618322 -1.305703 -0.448272 -1.774761 -0.080938 -0.301236 -1.147619 0.203266 -1.547320 0.914345 0.079093 -0.876002 0.192289 -0.256226 1.430271 0.603032 0.181189 0.039379 -2.091962 0.393890 0.280455 0.797620 1.349170 -0.247129 -0.120657 -0.095270 -1.140855 -1.294139 1.358350 0.995322 0.718994 0.510302 -0.135116 -0.385596 -0.330838 -0.469205 0.314649 1.223257 -1.101068 0.177368 -0.194946 -0.472521 -1.123494 -0.944443 0.657170 -0.986779 0.851830 0.959587 -0.903378 0.221152 -0.113156 0.147753 -1.085093 -1.485949 0.215294 -1.424084 0.928131 2.290463 -0.812366 -0.537906 -0.953383 -0.448094 0.120293 1.597236 -0.085534 0.785390 1.550681 2.038336 0.413511 -1.529168 -1.054364 0.970347 1.161286 1.256940 0.836943 -1.787910 -1.068329 -0.163474 -0.454972 -2.368145 -0.573157 0.340517 1.565157 -0.215574 -1.675062 1.148986 -0.884882 1.803106 1.307995 0.527043 0.253444 0.514753 -1.793978 1.604601 2.935730 -0.295260 1.099904 -0.925113 -0.603731 1.630732 -0.993978 0.805460 0.620605 -0.475859 -0.377988 -0.811717 -0.057934 1.303356 0.491485 0.651000 0.596056 0.895329 -0.483982 -2.598030 -2.585793 -0.121269 2.232844 0.421737 2.904796 -1.976875 -0.762858 -0.293879 1.971493 0.047839 -0.651427 0.435692 -1.245559 1.237171 -2.383781 -2.502490 2.815114 2.371799 0.900998 0.432144 1.523629 1.019868 -0.995552 -0.802560 -0.498383 0.957832 0.362507 -1.102040 -0.215229 0.107755 -1.699071 -1.644953 0.205878 0.852729 0.637081 -0.345295 0.437048 -0.317307 -0.889224 -1.494206 0.520856 -1.188320 -0.781153 0.311987 0.015540 0.254022 0.692551 -0.729506 0.176104 0.441174 -0.713399 0.334004 0.683955 0.859606 0.180742 1.701369 2.311838 -0.512568 1.455121 0.444469 -0.731505 3.122239 -0.201411 0.857353 0.576093 0.637167 0.690000 0.445641 1.105420 -1.041598 -0.230408 -2.138738 0.264552 0.561801 1.408600 -1.892031 -1.304271 -2.498223 -0.442259 0.899563 1.370507 -0.328785 3.203539 -0.512893 -0.009495 -3.310035 -0.035768 1.568353 -0.197146 1.116216 0.788731 -1.288411 -2.164648 -0.549332 -1.417466 -0.594746 -1.006359 -1.149869 -1.420469 -0.554314 1.334818 -1.019888 0.334331 1.921716 0.045816 0.669463 -0.788665 0.191643 -0.736152 -0.589779 0.505909 0.305093 -1.595983 1.850303 -0.303323 3.765467 -0.549364 1.139949 -0.901086 1.383301 -0.468873 -1.412452 -0.322182 2.650328 1.158600 0.193491 0.171479 -0.142230 -0.290081 1.614379 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -2.280786 0.751563 7.605217 2.744766 -3.792218 -4.630263 -2.926612 -9.501296 4.476235 1.376765 5.747892 -0.221629 2.315890 -1.751785 -0.492126 -0.452126 2.131794 -3.658218 1.789639 -2.352262 0.435480 6.745121 1.439755 -2.039050 0.471227 -9.027917 4.968145 1.556979 3.433058 4.697083 1.515626 0.068057 -2.126324 3.053812 0.300269 1.749204 2.337396 1.716971 -2.742319 0.501339 1.097561 0.578957 3.667033 -0.385772 6.195165 0.888489 2.230643 1.185637 -2.903446 -1.733326 -3.140163 4.207242 -4.360725 1.220684 0.322908 -0.998832 0.169066 -3.341125 -1.974520 -3.811933 -1.285992 -1.684481 -2.140888 1.371153 -3.905675 2.837645 -1.796690 -0.903806 0.581708 -0.731693 3.977115 2.391927 2.267807 1.971693 -6.103002 2.116137 0.233547 2.391273 3.094137 -1.375699 -0.533737 0.759314 -2.633487 -3.953254 2.738831 4.127478 0.857749 -0.672995 -0.525795 0.495319 -1.562339 -1.380436 0.074228 3.542397 -3.859084 0.548238 -1.810018 -1.425497 -2.467386 -4.086389 0.851313 -3.401152 2.234551 2.487496 -2.464249 -0.578510 -1.204506 0.417119 -2.734535 -4.167060 1.602539 -2.514339 2.019408 6.785399 -2.962132 -0.495838 -3.279328 -0.812792 0.442784 3.991784 -0.318143 2.874398 3.510461 5.916975 1.671806 -3.856080 -2.866195 3.251778 3.768024 2.552754 2.494203 -4.897465 -2.772496 -0.357041 -0.413123 -6.263105 -1.799532 1.135576 4.128577 -0.127236 -3.034491 0.875050 -2.465255 5.864686 4.074608 0.909535 0.650179 1.165703 -4.881050 4.967702 8.321022 -0.971779 3.265056 -3.068402 -0.956216 4.648875 -3.837313 3.030000 1.127285 0.759672 -1.150313 -3.157699 -0.994898 3.567008 1.789584 2.753504 0.978942 2.184701 -0.017651 -7.119089 -6.964786 -0.507084 6.142763 0.081177 5.985373 -4.864177 -2.129323 -0.563910 5.747658 1.814671 -2.522448 1.465244 -3.251993 2.886230 -6.498031 -6.554638 7.900905 8.443902 1.946726 1.183337 3.492290 4.259601 -4.807495 -2.351945 -1.781289 3.319865 -0.902825 -4.771076 -1.497535 0.695529 -4.108923 -4.439963 0.326557 2.255285 3.171501 -0.292307 1.014894 1.732103 -2.570901 -3.553617 3.113534 -3.066532 -3.874373 0.748979 0.344305 1.260848 2.260432 -2.060911 1.320554 2.848459 -2.508582 0.653119 2.951098 2.244828 -0.024378 4.368873 5.406974 -0.188948 3.180873 1.063522 -1.917270 7.413716 -0.833943 1.664192 1.237575 -0.119219 1.032635 1.514709 2.240321 -2.710593 -2.366512 -5.322314 1.265354 -0.268345 4.279603 -3.721931 -6.133047 -5.898340 -0.528883 3.394849 3.185678 0.285159 9.069626 -1.098292 0.085640 -8.829698 -0.306599 4.353473 0.182533 3.906227 1.864192 -2.866369 -4.709578 -1.677516 -3.926451 -1.265926 -2.743078 -3.754271 -3.439698 -2.610724 5.676328 -2.182497 0.743772 4.023863 0.768612 3.349134 -0.181391 -0.401991 -3.704107 -0.627227 1.501514 0.805947 -3.879931 5.771147 -0.951128 9.922565 -2.723217 1.807877 -2.027393 3.132574 -1.058196 -3.263045 -0.177707 7.102729 3.469526 1.070739 -1.082131 -1.583929 -1.290441 3.545798 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = -1.569387 -0.596364 3.663585 -0.072814 -1.927725 -2.968289 -1.876599 -5.975531 2.884698 1.696280 3.788460 0.503293 2.227587 -1.519363 0.125116 0.539879 1.348939 -3.126674 1.355220 -1.610605 0.174636 4.726207 1.158702 0.812499 -0.000737 -5.364445 2.144029 -0.215544 2.119837 3.457045 0.896586 -0.645954 -1.611721 1.311486 0.927456 2.537855 1.737750 1.070582 -1.316132 0.662825 0.084492 -0.691360 2.185435 -0.520417 4.322775 -0.223904 0.653780 0.741972 -1.454003 -2.118145 -0.716553 1.459368 -3.126867 0.605821 0.464549 -0.799935 -0.784430 -0.910003 -1.430148 -1.860500 -0.921965 -1.876834 -1.194190 1.209296 -1.801156 1.788536 -2.170942 -0.338800 -0.459360 -1.268743 2.292114 1.662922 1.593733 2.242112 -4.002831 0.744801 0.054762 0.753930 1.520666 -0.641028 -1.236147 -0.374266 -1.576151 -2.478321 1.845792 3.171445 -0.062263 -0.381554 -1.548885 1.357558 -0.965724 -0.349175 0.861219 1.731201 -2.652349 -0.560652 -0.309605 -0.780138 -0.739513 -3.580417 0.541128 -1.892266 1.232500 1.013895 -0.654544 -1.142652 -1.605273 0.304046 -2.545567 -2.351910 1.438972 -0.880893 0.503644 3.725601 -2.166593 0.300457 -2.485773 -0.488437 0.829783 1.944837 0.706693 1.575013 2.226674 3.232762 1.406226 -2.628724 -2.001881 2.281739 2.995804 0.795741 1.058896 -2.478729 -1.554155 0.847404 -1.293292 -3.748967 -2.072072 1.072906 2.332088 -0.335786 -0.612908 -0.007743 -1.321702 3.086399 3.223213 0.110299 0.315718 0.477163 -3.101348 2.800854 4.300788 -0.551011 2.284330 -1.595966 -0.448551 3.184659 -2.994705 1.561473 0.737934 0.619323 -1.711410 -1.695879 -0.272868 1.912649 0.983699 2.654842 -1.328134 1.692102 -0.347081 -3.487980 -4.147799 -0.746713 4.345072 0.742820 2.622326 -2.800207 -1.047858 0.288331 3.237011 1.940283 -2.370486 1.270279 -1.905730 1.642233 -4.624243 -3.485700 5.329341 5.779099 2.586787 0.844997 1.614459 3.216712 -3.721492 -0.829296 -1.067719 2.043344 -0.922840 -4.620311 -1.450120 0.753687 -2.688138 -2.699195 -0.537013 1.433007 1.441811 0.543011 1.451967 1.596639 -0.577527 -1.270183 2.692092 -1.309915 -2.537913 -0.245710 0.391940 0.882980 1.004219 -1.208721 1.671165 1.922198 -1.729522 0.945543 2.288880 1.025699 0.444403 3.065826 3.478298 -0.936515 0.874873 -0.594401 -0.837867 2.555147 -0.842544 0.957969 0.430799 -0.029371 0.664984 0.460594 1.620715 -1.443825 -1.854700 -2.203558 -0.091907 0.464443 2.716871 -0.460135 -4.861132 -3.524607 0.608907 1.264827 2.778012 0.428539 4.894750 -1.079915 1.152661 -4.891116 0.208388 1.782092 0.258587 2.189227 0.654706 -0.889136 -1.987648 -1.188044 -2.644756 -1.681691 -1.121892 -1.873210 -1.228633 -2.322729 3.632669 -1.455969 -0.425878 0.909956 0.390628 3.296713 0.875377 -0.370406 -3.335058 1.082918 0.849163 0.198804 -1.734618 3.268390 0.271627 5.602124 -1.405257 0.683569 -0.339068 2.370765 -1.168948 -2.389994 -0.014589 3.594024 2.933943 0.554317 -0.982637 -1.180183 -0.009648 1.172569 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.717179 -0.309323 4.773666 0.516667 -2.530672 -3.475792 -2.106256 -7.996666 4.020604 2.045684 4.479729 0.558829 2.837789 -1.996914 -0.459306 0.444342 1.923991 -3.437905 1.751518 -1.939274 0.646764 6.220149 0.681845 0.831613 0.092660 -6.843938 3.230200 -0.177572 3.184804 4.055304 1.605791 -0.284434 -2.086950 1.544818 1.306518 2.804421 1.757842 1.519687 -2.187156 0.412547 0.136095 -1.259788 2.655645 -0.155010 5.370680 -0.665857 1.011946 0.782596 -1.291448 -2.278992 -1.763191 2.023931 -3.581494 0.575984 0.258259 -1.607851 -0.735416 -0.913515 -1.434987 -1.748341 -1.196832 -2.481917 -1.528422 1.497453 -2.563472 2.410958 -2.820312 -0.172953 -1.006361 -1.701869 2.847534 2.050437 2.179684 2.452109 -5.947931 0.935018 -0.192361 0.873134 2.313084 -0.051420 -1.188492 -0.462442 -2.206307 -3.227720 2.719059 4.461529 -0.289491 -0.279630 -1.928784 1.125231 -1.648613 -0.616461 1.119464 2.283610 -3.844148 -0.349502 -1.011594 -0.929602 -0.629113 -4.413403 0.980774 -2.358786 1.500265 0.849795 -1.041208 -1.117580 -1.280031 -0.020010 -2.601177 -2.810503 1.778723 -1.521482 0.919760 5.347342 -2.439537 -0.101752 -3.520320 -0.532312 0.769126 2.434841 0.629914 2.124273 2.515587 3.837273 2.006778 -3.168041 -2.476748 3.760201 3.090774 0.968353 1.021648 -3.019780 -1.814245 0.812158 -1.010310 -4.622271 -2.669610 1.355264 2.975363 -0.608794 -0.452089 -0.335298 -1.607583 3.635194 3.926898 -0.097024 0.599445 1.141774 -3.739023 3.295116 5.685842 -0.330395 2.353473 -2.176532 -0.156875 3.812391 -3.583258 2.060817 0.466220 0.958176 -2.105427 -2.072695 -0.362861 2.294658 0.625900 2.695549 -1.265166 2.218054 -0.617480 -4.554348 -5.382900 -1.016987 5.665339 1.082381 3.169511 -3.584573 -0.897163 0.473229 3.941896 2.809141 -2.584330 1.962034 -2.654565 2.197649 -5.465736 -4.464407 6.271171 6.801108 2.705194 0.756180 1.709422 3.844999 -4.776082 -1.609732 -1.416673 2.556689 -1.187826 -5.657153 -1.678670 0.830925 -3.296911 -3.752279 -0.202288 1.702151 2.229701 0.745330 2.644390 1.420000 -0.294596 -2.274928 3.640307 -1.382535 -3.310068 -0.265261 0.528897 0.930246 1.528055 -1.509648 2.203914 2.598026 -1.602997 1.037310 2.630966 0.680800 -0.265176 3.379191 4.481514 -1.064460 1.004118 -0.611644 -1.200565 3.904974 -0.726837 1.303250 0.531738 -0.668146 0.968421 0.756000 1.781643 -2.059940 -2.307451 -3.072745 -0.272522 0.250214 3.498718 -0.879223 -5.787858 -4.393331 0.702198 1.499789 2.966922 0.761041 6.326093 -1.725596 1.007768 -5.980153 0.346138 2.970608 0.184696 3.052801 0.805741 -1.337586 -1.524619 -1.444744 -3.344241 -1.868776 -1.652345 -2.661120 -1.996124 -2.738865 4.649527 -1.921562 -0.374371 1.402278 0.420198 3.879498 0.134842 -0.232699 -4.107043 1.235088 0.810672 0.332424 -2.387568 4.054607 -0.176863 6.629679 -1.955107 0.697512 -0.427044 3.258116 -1.883869 -3.551532 -0.020891 4.897068 3.207662 0.740959 -1.430263 -1.741901 -0.026199 1.630669 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(suffix&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = -2.799074 0.281151 11.643594 4.678903 -6.135687 -9.159545 -4.421232 -14.411219 7.558805 1.687935 8.493426 1.180186 4.083470 -4.430081 0.413536 0.693741 3.251017 -5.729953 2.379612 -3.991294 -0.167899 12.155496 3.485824 -4.184458 0.255314 -14.773871 7.293220 3.275481 6.593016 8.373201 1.975775 -1.489842 -2.767992 5.274826 -0.358771 2.549873 3.158625 1.886345 -5.391976 0.890798 1.305888 2.626021 6.761470 -1.597689 9.306537 0.538086 5.536822 2.534834 -4.558112 -2.944171 -5.037681 8.363254 -7.095149 3.161720 1.165002 -0.482589 0.341290 -5.486001 -3.270828 -6.048896 -2.360656 -1.193327 -4.121223 1.699499 -6.630416 3.359899 -3.337341 -2.250791 1.937562 0.258710 6.521866 4.145716 3.506878 1.318473 -10.084589 3.235454 0.005377 4.804130 5.040910 -2.314216 -1.157383 0.477864 -3.840029 -5.942180 4.103086 4.971432 0.930317 -1.157055 -1.100997 0.242271 -2.461743 -2.055789 -0.093880 4.418062 -5.733977 1.093092 -2.585658 -1.623433 -3.630196 -6.625894 0.533974 -5.528713 3.094021 3.751171 -1.355394 -1.323499 -2.521590 0.526476 -5.070644 -6.726305 2.613283 -2.514671 1.662799 10.754073 -4.811561 -0.186715 -3.999763 -0.442908 -0.348993 6.989655 0.335423 4.459769 6.515734 9.926871 2.319088 -6.563451 -3.803819 3.963756 7.290803 4.866387 5.013747 -7.636170 -4.823296 -0.192547 -0.199263 -11.064115 -1.511634 3.471231 6.264483 1.019982 -5.147986 1.088093 -3.532459 10.295458 6.390536 0.950048 1.605767 0.612108 -7.269423 9.074937 14.086570 -2.237520 5.664287 -5.525285 -2.593230 8.706119 -6.776947 4.637033 1.451847 0.858963 -1.406506 -4.967783 -0.910997 6.359298 3.144261 4.740389 2.106152 3.230797 0.128855 -12.069166 -10.696053 0.030544 8.654685 -0.008540 11.331002 -7.237671 -4.095900 -1.098741 7.540348 1.289582 -4.094496 2.108068 -6.067783 4.673564 -12.263036 -10.557959 15.096378 13.744049 3.277534 1.990406 6.237014 7.983911 -7.507263 -3.329080 -2.974522 4.725866 -0.212645 -8.742167 -1.836560 1.625528 -7.777301 -6.325004 0.782695 3.339676 5.088937 -0.943948 -0.297441 1.975393 -6.420436 -5.270279 5.886711 -5.881325 -5.134316 0.982703 0.534366 2.099667 4.056192 -2.548946 1.567142 4.261835 -4.748558 0.361849 4.074505 5.598996 1.631247 7.701352 9.236671 0.535751 7.175556 2.615195 -3.671283 12.288524 -2.253206 1.843912 1.858255 1.551213 1.424253 2.746778 3.555820 -4.192503 -3.874697 -8.598430 2.823624 0.518180 6.454416 -6.005892 -9.581459 -9.375057 -1.962282 5.313541 5.862648 -0.172185 14.529640 -2.824909 0.639101 -15.376978 -0.504555 5.790297 1.356527 6.608183 3.585473 -4.558545 -7.902724 -3.397060 -5.570671 -1.630366 -4.104914 -6.320046 -4.595463 -4.855121 9.087736 -4.725122 1.534345 7.195734 0.165807 6.376297 -0.371887 -0.618026 -6.118194 -0.415650 2.382111 1.868402 -6.140788 9.360814 -1.546039 17.061675 -4.088651 3.449365 -4.361435 4.398817 -1.442160 -5.043752 -0.711351 10.695881 6.173512 1.219894 -0.369129 -1.611171 -2.289574 6.260218 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter&>(__gnu_cxx::__ops::_Iter_comp_iter&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.259004 -0.083108 0.934766 0.439196 -0.567802 -1.498987 -0.462710 -1.920245 0.900931 0.409680 1.222537 0.104386 0.904795 -0.677940 0.080781 0.396802 0.530278 -0.458995 0.157866 -0.548984 -0.378239 1.583617 0.170890 -0.056979 0.064015 -1.098805 0.718886 0.403209 0.507530 0.940367 0.365861 -0.003214 -0.231098 0.413673 -0.184878 0.746534 0.088410 0.494106 -0.458789 -0.098745 0.125223 -0.368547 0.849671 -0.005318 1.173154 0.107017 0.725685 0.225323 -0.427229 -0.612822 -0.540532 0.712579 -0.848917 0.252357 -0.446882 -0.320945 0.317580 -0.222647 -0.234992 -0.658847 -0.170240 -0.404307 -0.861591 0.125397 -0.676756 0.449329 -0.354641 -0.489282 -0.204478 -0.210436 0.742855 0.315210 -0.005897 0.209612 -1.438892 -0.043492 0.129522 0.145169 0.648609 0.003915 -0.237901 -0.410109 -0.728875 -0.749174 1.207349 0.578608 0.311335 0.413740 -0.692262 0.085855 -0.369026 -0.017501 0.589202 0.442134 -0.560508 -0.083977 0.352792 -0.258569 -0.486285 -0.946399 0.435629 -0.489727 0.321096 0.230774 0.095177 -0.104400 -0.436091 0.051422 -0.933167 -0.904519 0.220573 -0.630879 0.044372 1.068659 -0.574636 -0.112871 -0.554011 -0.180608 0.157857 0.714386 0.473288 0.357659 0.907224 0.848290 0.322917 -0.916266 -0.635438 0.529071 0.913797 0.458583 0.216746 -0.740898 -0.613584 0.321263 -0.662145 -1.423523 -0.638114 0.629561 0.781418 -0.188652 -0.529482 0.674957 -0.324166 0.677779 0.980249 0.116107 0.153900 0.195675 -0.943311 0.704194 1.312664 -0.251594 0.776177 -0.423593 -0.325057 1.026124 -0.683388 0.193376 0.389637 -0.302134 -0.521098 -0.284633 0.133294 0.689787 0.285355 0.561211 -0.195554 0.629255 -0.534513 -1.083398 -1.418094 -0.113269 1.426623 0.418937 1.315217 -0.969027 -0.357865 0.183849 0.824502 -0.009622 -0.634228 0.342835 -0.764908 0.655844 -1.663463 -1.198970 1.845006 1.149547 1.007347 0.220696 0.608429 0.861949 -0.788119 -0.254343 -0.324384 0.555232 0.267855 -1.383105 -0.290786 0.080097 -1.126151 -0.740416 -0.196858 0.459301 -0.071189 0.100612 0.673442 -0.415819 -0.266966 -0.378368 0.522933 -0.487909 -0.345032 -0.117572 0.014098 0.067302 0.278328 -0.323930 0.441531 0.241758 -0.592574 0.235845 0.405222 0.399792 0.360373 1.393176 1.479417 -0.597259 0.677229 -0.237926 -0.368501 0.942087 -0.258838 0.354677 0.096340 0.617674 0.435623 0.132386 0.832144 -0.473142 -0.432665 -0.917442 -0.207575 0.741669 0.697766 -0.131539 -0.821502 -1.493817 -0.063858 0.133031 1.368006 -0.204330 1.475201 -0.562064 0.421216 -1.612188 0.211238 0.375045 -0.133149 0.499760 0.249680 -0.442734 -0.631323 -0.394213 -0.846534 -0.866747 -0.303106 -0.514727 -0.523429 -0.682047 0.587605 -0.903562 -0.098339 0.450386 -0.025665 0.710735 -0.190717 0.073521 -0.736367 0.366553 0.517484 0.039483 -0.694559 0.826053 0.117443 2.132360 -0.126203 0.630447 -0.320121 0.891467 -0.467422 -0.886758 -0.209113 1.154337 1.048021 -0.076888 0.147962 0.056496 0.218125 0.648929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__push_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_val&) = -1.686828 0.273971 5.875220 2.460054 -4.052606 -5.374292 -2.486753 -8.352621 4.014549 1.049886 4.676621 0.745977 2.271561 -2.712797 0.144112 0.593593 1.903855 -2.827846 1.248317 -2.297072 -0.848035 6.461794 1.466991 -1.947812 0.175144 -7.124343 4.424184 1.724496 3.114994 4.409265 1.411943 -0.711203 -1.983326 2.953231 0.095849 1.743899 1.757153 1.431087 -2.680201 0.418913 0.853689 0.282549 4.002230 -0.827004 5.343000 0.363871 2.787424 1.554734 -2.891721 -1.640782 -2.522756 4.149104 -3.853541 1.945561 0.592517 -0.876021 0.560796 -2.521103 -1.510980 -3.152709 -1.477639 -1.976824 -2.498927 0.833602 -3.476148 1.713645 -1.826923 -1.570728 0.591912 0.013795 3.402674 1.796199 1.556637 1.144542 -5.732984 1.339339 0.479735 2.417264 3.009184 -0.670005 -0.355702 -0.335964 -2.564527 -3.557187 2.559667 2.664692 0.748103 -0.257029 -1.290453 0.513377 -1.269195 -0.991447 0.769818 2.645491 -2.962444 0.214397 -1.054996 -1.125637 -2.462827 -4.421408 0.871118 -2.755431 1.842378 1.546710 -1.214392 -0.972063 -1.497256 0.201666 -3.016409 -3.735297 1.561183 -2.147843 1.134208 5.700167 -2.161679 -0.273433 -2.283373 -0.736185 0.174665 3.496864 0.713561 2.158047 3.513999 5.370474 1.543987 -3.733795 -2.695502 2.154705 3.813277 2.448712 2.168239 -4.180040 -2.608250 0.435162 -0.712021 -5.952028 -1.324129 1.960619 3.481785 0.187211 -2.048303 0.709562 -2.085976 5.089047 3.351199 0.717791 0.598038 0.477713 -4.247382 4.636193 7.143079 -0.899433 3.026777 -2.523225 -1.199016 4.661010 -3.372564 2.285902 0.991250 -0.022704 -1.295182 -2.302815 -0.499354 3.383210 1.620684 2.253355 0.774672 1.988147 -0.816812 -6.187389 -6.088990 0.348939 5.851482 0.558654 5.800889 -4.239645 -2.066419 -0.221754 4.359707 0.907818 -2.453441 1.411327 -3.182124 2.900822 -6.396490 -5.594472 8.267567 7.024339 2.145083 0.854163 3.085883 4.154833 -4.398914 -2.260579 -1.782380 2.412370 -0.049283 -5.068079 -1.292122 0.972283 -4.385890 -3.269159 0.447198 1.943060 2.704578 -0.329236 0.659331 0.838160 -2.560131 -2.806435 3.009648 -2.532659 -2.722194 0.743522 0.402363 1.089779 2.233886 -1.166720 1.002559 1.719422 -2.528287 0.488597 2.155189 2.742626 0.705849 4.886067 5.055770 -0.407699 3.749148 0.971864 -1.846470 6.384691 -1.319974 1.441351 1.329375 0.994380 1.139777 1.267232 2.691891 -2.414551 -1.805052 -4.755065 0.715155 0.589436 3.713995 -3.477236 -5.200093 -5.861130 -0.642736 2.509417 3.332158 -0.447577 7.673850 -1.473914 0.475211 -8.118257 -0.068525 3.032261 0.323782 3.557367 1.630574 -2.558726 -3.883424 -1.887591 -3.452679 -1.537968 -2.143859 -2.561488 -2.564977 -2.281036 4.399939 -2.599783 0.623223 3.640486 -0.206894 3.296063 -0.701021 -0.122672 -3.414785 -0.146182 1.766982 0.421114 -3.389044 5.146107 -0.381984 9.769016 -1.756154 1.844153 -1.824507 2.701093 -0.885127 -3.013273 -0.438302 5.691616 3.425047 0.748112 -0.269706 -0.282518 -0.944751 3.495905 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(int (*&)(suffix, suffix)) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = -1.569387 -0.596364 3.663585 -0.072814 -1.927725 -2.968289 -1.876599 -5.975531 2.884698 1.696280 3.788460 0.503293 2.227587 -1.519363 0.125116 0.539879 1.348939 -3.126674 1.355220 -1.610605 0.174636 4.726207 1.158702 0.812499 -0.000737 -5.364445 2.144029 -0.215544 2.119837 3.457045 0.896586 -0.645954 -1.611721 1.311486 0.927456 2.537855 1.737750 1.070582 -1.316132 0.662825 0.084492 -0.691360 2.185435 -0.520417 4.322775 -0.223904 0.653780 0.741972 -1.454003 -2.118145 -0.716553 1.459368 -3.126867 0.605821 0.464549 -0.799935 -0.784430 -0.910003 -1.430148 -1.860500 -0.921965 -1.876834 -1.194190 1.209296 -1.801156 1.788536 -2.170942 -0.338800 -0.459360 -1.268743 2.292114 1.662922 1.593733 2.242112 -4.002831 0.744801 0.054762 0.753930 1.520666 -0.641028 -1.236147 -0.374266 -1.576151 -2.478321 1.845792 3.171445 -0.062263 -0.381554 -1.548885 1.357558 -0.965724 -0.349175 0.861219 1.731201 -2.652349 -0.560652 -0.309605 -0.780138 -0.739513 -3.580417 0.541128 -1.892266 1.232500 1.013895 -0.654544 -1.142652 -1.605273 0.304046 -2.545567 -2.351910 1.438972 -0.880893 0.503644 3.725601 -2.166593 0.300457 -2.485773 -0.488437 0.829783 1.944837 0.706693 1.575013 2.226674 3.232762 1.406226 -2.628724 -2.001881 2.281739 2.995804 0.795741 1.058896 -2.478729 -1.554155 0.847404 -1.293292 -3.748967 -2.072072 1.072906 2.332088 -0.335786 -0.612908 -0.007743 -1.321702 3.086399 3.223213 0.110299 0.315718 0.477163 -3.101348 2.800854 4.300788 -0.551011 2.284330 -1.595966 -0.448551 3.184659 -2.994705 1.561473 0.737934 0.619323 -1.711410 -1.695879 -0.272868 1.912649 0.983699 2.654842 -1.328134 1.692102 -0.347081 -3.487980 -4.147799 -0.746713 4.345072 0.742820 2.622326 -2.800207 -1.047858 0.288331 3.237011 1.940283 -2.370486 1.270279 -1.905730 1.642233 -4.624243 -3.485700 5.329341 5.779099 2.586787 0.844997 1.614459 3.216712 -3.721492 -0.829296 -1.067719 2.043344 -0.922840 -4.620311 -1.450120 0.753687 -2.688138 -2.699195 -0.537013 1.433007 1.441811 0.543011 1.451967 1.596639 -0.577527 -1.270183 2.692092 -1.309915 -2.537913 -0.245710 0.391940 0.882980 1.004219 -1.208721 1.671165 1.922198 -1.729522 0.945543 2.288880 1.025699 0.444403 3.065826 3.478298 -0.936515 0.874873 -0.594401 -0.837867 2.555147 -0.842544 0.957969 0.430799 -0.029371 0.664984 0.460594 1.620715 -1.443825 -1.854700 -2.203558 -0.091907 0.464443 2.716871 -0.460135 -4.861132 -3.524607 0.608907 1.264827 2.778012 0.428539 4.894750 -1.079915 1.152661 -4.891116 0.208388 1.782092 0.258587 2.189227 0.654706 -0.889136 -1.987648 -1.188044 -2.644756 -1.681691 -1.121892 -1.873210 -1.228633 -2.322729 3.632669 -1.455969 -0.425878 0.909956 0.390628 3.296713 0.875377 -0.370406 -3.335058 1.082918 0.849163 0.198804 -1.734618 3.268390 0.271627 5.602124 -1.405257 0.683569 -0.339068 2.370765 -1.168948 -2.389994 -0.014589 3.594024 2.933943 0.554317 -0.982637 -1.180183 -0.009648 1.172569 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__move_median_to_first >(suffix*, suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.366455 0.385513 6.424112 4.061513 -4.241338 -5.841990 -2.818731 -9.455530 5.825414 1.010721 4.375843 1.734633 2.896686 -4.772574 -0.463611 -0.499279 2.476627 -1.667849 -0.689115 -2.796690 0.078243 6.729693 0.309779 -4.607792 0.871883 -8.369719 3.677047 2.989445 3.252689 3.357095 1.786502 0.046668 -3.193756 3.315423 -1.457305 1.413412 2.636553 0.692745 -4.170279 -1.887013 1.909640 3.397799 4.493115 -0.238169 6.305681 -0.444983 1.865846 1.941971 -2.631843 -1.884383 -0.995949 5.026902 -1.935955 2.871697 1.710739 1.103417 0.874939 -4.337636 -0.441904 -2.724160 0.030073 0.180066 -2.184855 0.148941 -2.822711 0.944013 1.241229 -1.717999 1.318001 -2.531769 3.428029 -0.003526 0.314996 -1.582882 -5.170282 0.178229 0.227411 2.177804 4.076726 1.664686 -0.469096 -1.878938 -2.383704 -3.208619 2.573829 3.537850 0.188479 2.096187 -1.724738 -1.956133 -0.187359 -2.689098 1.922128 2.094047 -4.601958 -1.485470 -0.386621 -1.379659 -1.900544 -1.870398 2.006541 -1.643112 1.804983 1.202380 -1.286719 -0.015653 1.184948 -0.115091 -2.687865 -1.378804 2.064284 -2.107499 2.490431 7.243040 -1.424248 -2.068363 -2.802147 -1.868202 -1.435573 4.513015 0.264100 1.141221 4.487049 5.593264 1.952049 -4.008338 -2.827832 3.451567 3.607248 3.111346 1.927567 -5.877762 -1.711875 1.332331 -1.011655 -6.659597 -1.508536 -0.079179 4.454099 0.810645 -3.191463 0.979334 -1.701348 4.609693 1.450353 -0.040118 0.619499 0.510316 -4.651254 4.360038 7.364098 -0.096686 2.300632 -2.474412 -1.874301 2.648727 -2.986950 2.229854 0.863124 -1.822998 -0.964654 -1.182360 1.292387 3.361014 -0.353431 1.616779 -0.988788 2.707203 -2.670173 -6.631931 -8.088007 0.229622 4.238588 1.319705 8.035161 -4.452086 -3.105086 -2.324103 6.398812 -0.995609 -1.673525 2.739557 -4.615339 3.527277 -3.401512 -5.286812 9.232407 8.800508 2.604376 -0.232177 5.291468 2.019857 -4.004392 -2.149979 -1.328070 0.787376 3.149977 -3.870966 0.711119 0.688878 -4.506975 -4.430842 0.828797 1.760664 1.927338 -0.199812 2.052768 -0.133357 -2.285354 -4.099507 3.125059 -1.612612 -0.214986 0.639000 0.669673 -0.266229 3.549112 -2.199880 -1.219523 1.363440 -1.316866 1.278361 1.701793 3.096878 0.892147 3.968775 4.732504 -0.618030 6.778167 1.164055 -2.290305 8.183935 -1.585682 1.930899 1.423152 1.235255 1.751175 1.270167 1.451171 -2.912032 0.453485 -4.931660 0.291074 0.472399 3.557440 -5.765415 -4.812708 -6.240511 -1.940031 0.508052 1.932111 -0.786723 8.259258 -2.713664 -0.148210 -9.906528 -0.066834 4.766573 -0.111549 2.310557 1.691477 -3.250281 -7.486017 -1.129918 -4.230868 -2.961764 -1.946870 -3.150960 -2.902424 -3.552498 6.947832 -2.884521 1.300591 6.897653 -0.243963 2.457225 -3.873136 1.089860 -2.571646 -1.631053 -0.777071 -0.096214 -4.140546 4.337386 -0.404604 9.599672 -1.581691 3.318759 -2.092352 4.077197 -2.134074 -5.733760 -1.327175 5.417179 3.224849 0.736792 -0.023418 0.104060 -2.454319 4.365368 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.361931 0.186918 4.148144 3.125057 -3.531804 -4.920287 -2.007457 -6.525995 3.380974 0.686699 3.756923 0.934080 2.205365 -3.117911 0.104299 -0.039537 1.943570 -1.168614 -0.363813 -2.143637 -1.119439 4.428000 0.713850 -2.892812 0.515639 -4.312865 2.838815 2.309871 1.578559 2.403467 1.250645 -0.025907 -2.063032 2.294388 -0.923536 1.463660 1.173908 1.091134 -2.269401 -1.097465 1.434336 0.682562 3.453853 -0.407508 4.330944 0.096417 2.287158 1.304183 -2.847678 -1.589847 -1.200434 3.325880 -2.369616 1.760979 0.472097 0.166991 1.218895 -2.505861 -0.550954 -2.722701 -0.222494 -0.907626 -2.214830 0.099853 -2.182633 0.959548 0.395009 -1.894382 0.826607 -1.082868 2.551086 0.313980 -0.061342 -0.191673 -3.442037 -0.033435 0.637738 1.475255 2.771112 0.747095 -0.143253 -1.461092 -2.024090 -2.302800 2.443941 1.320506 1.011472 1.395614 -1.596691 -0.446822 0.066986 -1.242280 1.511467 1.411780 -2.675702 -0.759098 0.335654 -1.117456 -2.235408 -2.167514 1.443168 -1.353987 1.455498 1.333448 -1.310231 -0.173847 -0.685167 -0.053880 -2.791190 -2.189363 0.816874 -2.183268 1.429628 4.320450 -1.637179 -1.070339 -1.604447 -1.176402 -0.185893 2.820365 0.852403 1.008156 3.333715 4.012807 1.144085 -3.195174 -2.212493 1.415484 2.983150 2.394137 1.428426 -3.461720 -1.800481 0.987998 -1.542319 -4.983430 -1.213297 0.834048 3.199925 0.771732 -2.717932 1.393111 -1.395883 3.195966 1.687757 0.848512 0.321214 0.403730 -3.410735 3.002447 4.577046 -0.498923 2.390253 -1.055120 -1.415463 2.680596 -2.124216 1.108110 1.399494 -1.598387 -1.048276 -0.918105 0.218349 2.485507 0.654553 1.284874 -0.410201 2.010334 -1.999671 -4.851231 -5.468277 0.492143 4.103906 1.314845 5.460906 -3.657292 -2.040745 -0.611132 4.029991 -0.953438 -1.936923 1.366958 -2.821867 2.655328 -3.639499 -4.181918 6.612078 5.125166 2.120920 0.427226 3.406660 1.774749 -2.977689 -1.310953 -1.285884 1.065569 1.783854 -3.042521 0.002113 0.571467 -3.671594 -2.678149 0.311687 1.599415 0.828765 -0.559961 1.286909 -0.405456 -1.468680 -2.213893 1.679735 -1.453626 -0.521292 0.352857 0.157888 0.505356 1.879296 -1.191621 -0.414538 0.151462 -1.695307 0.756358 1.075433 2.519365 1.230919 4.338338 4.114508 -1.184051 4.086061 0.446466 -1.668917 5.206743 -1.205616 1.601895 0.939155 2.038853 1.442352 0.653926 2.437245 -2.020409 -0.283553 -3.578299 -0.352385 1.275776 2.702390 -3.771850 -2.924861 -5.278696 -0.980402 0.786573 2.453797 -1.201517 5.679902 -1.692119 0.223767 -6.771973 -0.006382 2.613212 -0.362648 1.816896 1.174319 -2.257698 -4.747706 -1.206086 -3.048205 -1.946297 -1.133384 -1.381368 -1.979071 -2.030070 3.586395 -2.273071 0.438781 3.724753 -0.426281 1.814783 -1.546162 0.626163 -1.448732 -0.722836 0.634318 0.118401 -2.983747 3.844668 0.206335 7.843568 -0.390983 2.250077 -1.510324 2.617661 -1.035642 -3.351280 -0.974778 4.069052 3.083652 0.363349 0.324269 0.664676 -1.050464 3.141717 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = 0.019261 0.125719 0.697693 0.244655 -0.381549 -0.984008 -0.276483 -1.248286 0.564040 0.266194 0.626788 0.049101 0.574514 -0.323231 -0.099420 0.148194 0.278019 -0.156773 0.089152 -0.385521 -0.372968 0.917838 -0.038014 -0.078054 0.089555 -0.851121 0.740324 0.278934 0.380295 0.729703 0.227071 0.041829 -0.206766 0.358759 -0.144308 0.293417 0.045703 0.355723 -0.296691 0.069280 0.150895 -0.080367 0.570264 0.148065 0.638411 0.372838 0.164193 0.221798 -0.130527 -0.342256 -0.185363 0.166384 -0.443518 0.230393 -0.420491 -0.123336 0.177086 -0.170645 0.003879 -0.254610 -0.006969 -0.208904 -0.508496 0.113550 -0.585596 0.165317 -0.285387 -0.480311 -0.199323 -0.247974 0.414378 0.144886 -0.098490 -0.062659 -1.005884 -0.058101 0.118337 0.107930 0.514022 -0.035010 -0.232402 -0.243152 -0.602462 -0.552413 0.636262 0.517029 0.204931 0.350966 -0.317020 -0.271141 -0.162805 0.021075 0.491179 0.423509 -0.203241 -0.044859 -0.071881 -0.120600 -0.283979 -0.733223 0.340108 -0.251372 0.298637 0.012630 -0.042943 -0.058567 0.040137 0.055102 -0.345141 -0.449617 0.128577 -0.488479 0.232890 0.819651 -0.106058 -0.275010 -0.434233 -0.293413 0.113751 0.531650 0.265750 0.002177 0.669725 0.490561 0.224084 -0.620846 -0.453686 0.377824 0.287823 0.297428 0.205957 -0.591646 -0.359326 0.169968 -0.424327 -0.942869 -0.263090 0.095463 0.392934 -0.446189 -0.218060 0.547277 -0.372714 0.203725 0.594690 0.112581 0.193596 0.052432 -0.555434 0.398552 0.910900 -0.089846 0.348335 -0.446670 -0.358583 0.621490 -0.252872 0.159254 0.104284 -0.305551 -0.334600 -0.113567 0.302476 0.494728 -0.058453 0.315990 0.096854 0.340881 -0.428232 -0.563448 -0.798278 -0.023659 0.952569 0.310827 0.943238 -0.682359 -0.051074 0.042563 0.617008 0.118244 -0.200318 0.261984 -0.393327 0.418839 -1.010854 -0.749103 0.996781 0.682023 0.614780 -0.031938 0.250908 0.387456 -0.280779 -0.291249 -0.220845 0.234062 0.158551 -0.747385 -0.203001 0.054048 -0.665510 -0.345722 -0.015209 0.318789 0.228489 -0.051821 0.315055 -0.459794 -0.178918 -0.614173 0.371947 -0.308987 -0.062193 0.040084 0.024373 -0.136545 0.175220 -0.147813 0.146009 0.156283 -0.151109 0.263876 0.282927 0.171602 0.026646 0.779734 0.747426 -0.448300 0.221643 -0.060247 -0.141214 0.866095 -0.180152 0.307038 0.196132 0.489885 0.215818 0.149598 0.497809 -0.330753 -0.148299 -0.633186 -0.171881 0.463158 0.312173 -0.131768 -0.385846 -0.975607 -0.049484 -0.130124 0.942045 -0.038959 0.968685 -0.227964 0.324744 -0.814748 0.149707 0.272765 -0.127783 0.369493 0.230780 -0.369245 -0.297770 -0.235069 -0.606610 -0.536130 -0.219382 -0.312140 -0.389353 -0.149318 0.090199 -0.392292 -0.012523 0.435696 -0.108507 0.283689 -0.429776 0.123886 -0.462734 0.081608 0.390689 -0.071299 -0.446285 0.375543 0.075442 1.155655 0.017409 0.520990 -0.124459 0.498121 -0.256790 -0.665467 -0.264895 0.771080 0.395724 0.049391 0.149823 0.019710 0.254746 0.419296 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(suffix&, suffix&) = -0.540930 -0.260254 2.048657 0.108539 -1.359361 -1.595175 -0.869087 -3.864684 2.070084 1.065713 1.885974 0.597570 1.538077 -1.336368 -0.326523 0.115004 0.963037 -1.344419 0.731895 -0.934825 0.239716 2.983010 0.002613 0.565352 0.012881 -3.095027 1.588992 -0.324724 1.771472 2.060498 0.824133 -0.388533 -1.370643 0.556471 0.793200 1.263306 0.844699 0.656951 -1.329769 0.028816 -0.025609 -0.854921 1.342891 -0.166181 2.415179 -0.804493 0.095479 0.427441 -0.424612 -1.148797 -0.394339 0.506387 -1.452691 0.519777 0.423493 -0.900078 -0.590134 0.050018 -0.428696 -0.365156 -0.422563 -1.482826 -0.529742 0.673196 -1.180021 0.859744 -1.663207 -0.226256 -0.562778 -1.275402 1.104502 0.818560 1.134488 0.926093 -3.087607 0.190829 -0.082397 0.285885 1.126785 0.596441 -0.431278 -0.689561 -1.120450 -1.443400 1.089202 2.278967 -0.465582 -0.022371 -1.310055 0.400931 -0.455522 -0.181147 0.910949 0.819044 -1.945663 -0.326957 -1.012973 -0.305997 0.232819 -2.650395 0.523547 -0.954218 0.702682 -0.011928 -0.539994 -0.503390 -0.099199 0.032489 -0.952114 -1.083953 1.005443 -0.474252 0.404067 2.754503 -0.849893 -0.369437 -1.833767 -0.313870 0.257884 0.877508 0.445368 0.843224 1.101480 1.571735 1.308378 -1.655880 -1.199791 2.127476 1.200618 0.321933 0.275637 -1.221527 -0.632320 0.713581 -0.600788 -2.325773 -1.321876 0.433427 1.372288 -0.432003 0.391864 -0.625416 -0.851849 1.384777 1.717300 -0.185855 0.408260 0.531792 -1.643579 1.331833 2.289134 0.017180 0.845100 -0.997100 -0.141674 1.534414 -1.370671 0.873504 -0.266917 0.475544 -0.929352 -0.871836 0.104662 1.087857 -0.195635 1.248771 -1.075985 1.089331 -0.778402 -2.025779 -2.411356 -0.411154 2.821373 0.874597 1.191606 -1.611819 -0.295816 0.339977 1.770496 1.496050 -1.197125 1.238718 -1.339597 1.104291 -2.520119 -1.956873 2.907956 3.230602 1.322782 0.035288 0.475482 1.626985 -2.455016 -0.851835 -0.859888 0.862980 -0.424762 -3.094698 -0.910973 0.516046 -1.579884 -1.551308 0.242010 0.705364 1.354785 0.318822 1.513091 0.628904 0.202572 -1.310541 2.401602 -0.391405 -1.218071 -0.221554 0.351423 0.418681 0.883863 -0.626509 0.917953 1.175323 -0.430258 0.629327 1.105370 0.204496 -0.391119 1.577212 1.873484 -0.615121 0.172251 -0.427223 -0.700742 1.953434 -0.639184 0.568338 0.250205 -0.346751 0.353891 0.399986 0.854486 -1.042240 -1.002683 -1.286645 -0.733259 0.050271 1.610501 -0.359359 -2.864875 -1.989955 0.534855 0.069658 1.276645 0.545752 2.832284 -1.132756 0.642158 -2.504394 0.178239 1.428431 0.103300 1.695652 0.241971 -0.525269 -0.382187 -0.686627 -1.683448 -0.844785 -0.678017 -1.113400 -0.748998 -1.266540 2.188630 -0.656543 -0.244341 0.487635 -0.099051 2.136785 -0.340264 0.000648 -2.063549 0.800104 0.086780 0.065025 -1.071875 1.807257 0.162794 2.885165 -0.639409 0.129582 -0.021707 1.516510 -1.166373 -2.069702 -0.189740 2.013181 1.521904 0.621669 -0.851538 -0.763840 -0.053356 0.575907 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.173946 -0.613428 6.150161 2.321770 -4.147102 -5.651056 -2.880893 -10.292344 5.354680 2.058012 6.016104 1.238744 3.538100 -4.242142 0.085715 0.337926 2.636052 -3.341697 0.586507 -2.815518 0.066592 7.115211 0.839506 -1.588136 0.429984 -7.799045 3.421453 1.628370 3.119063 3.997306 1.897822 -0.549490 -3.191470 2.509575 0.050119 3.274226 2.712808 1.488539 -3.212504 -1.053625 1.040570 0.211805 4.182373 -1.033937 7.143282 -1.213134 2.321551 1.433258 -3.129453 -2.846265 -1.231683 4.127442 -3.747513 1.883637 1.388147 -0.701562 -0.069528 -2.729522 -1.461728 -3.141620 -0.701418 -2.018523 -2.447572 0.891708 -2.625318 2.067774 -0.750831 -1.331567 0.527389 -2.466270 3.597092 1.195521 1.285635 1.463340 -5.886694 0.414227 0.539453 1.391827 3.241496 0.732028 -0.567686 -1.849102 -2.535602 -3.465405 3.496535 4.195194 0.362226 0.855301 -2.938814 0.941203 -0.588298 -1.584083 1.957189 2.219695 -4.926042 -1.486006 -0.080263 -1.620704 -1.933292 -4.077229 1.767433 -2.495786 2.048006 1.613344 -1.653455 -0.579853 -1.131818 0.217828 -4.018969 -3.062714 1.824401 -2.191099 1.969168 6.633959 -2.986841 -0.930964 -3.632672 -1.245705 0.134954 3.293035 0.966901 2.143687 4.435897 5.466607 2.460072 -4.680678 -3.424883 3.622751 4.670230 2.521062 1.369030 -4.777344 -2.129781 1.560948 -2.146806 -6.936179 -2.937785 1.032493 4.520684 0.456420 -2.313100 0.431994 -1.779775 5.151809 3.552611 0.246019 0.339147 1.221369 -5.035571 4.208505 6.615819 -0.558239 3.327112 -2.037480 -1.038833 3.525256 -3.759174 2.095288 1.591074 -0.520060 -1.928794 -2.131060 -0.002189 3.310504 0.935364 3.064796 -2.392057 3.160080 -2.113475 -6.575440 -7.923320 -0.463965 6.114932 1.677545 6.134893 -4.882393 -2.900341 -0.477272 5.869798 0.614129 -3.380346 2.500364 -4.270079 3.448612 -5.345814 -5.842504 9.236812 9.008926 3.756272 0.794460 4.321188 3.418196 -5.907558 -1.447581 -1.695829 2.218375 1.203007 -6.462260 -0.818809 1.029488 -4.904338 -4.561740 -0.126159 2.130806 1.415428 0.459349 3.060030 1.354473 -1.189001 -2.533008 3.940451 -1.665913 -2.192898 -0.327709 0.689148 1.198955 2.689770 -2.466237 0.876443 1.807062 -2.531449 1.436715 2.634931 2.553860 1.104696 5.431684 5.741388 -1.464743 4.601964 -0.457458 -2.138036 5.640116 -1.490340 1.746832 0.990015 0.767649 1.635152 0.918369 2.784347 -2.868433 -1.394102 -4.405908 -0.726398 0.924670 4.425153 -3.100015 -6.264606 -6.580848 -0.429023 1.283828 3.377283 -0.367766 8.227816 -2.566766 0.996761 -9.369049 0.016171 3.652660 -0.086650 3.023684 1.124663 -2.453115 -5.562727 -1.598300 -4.518868 -3.495644 -1.650397 -2.604081 -2.641157 -4.198700 6.806600 -2.863294 0.005277 3.667882 0.250869 4.168918 -1.035847 0.400735 -3.577203 0.443394 0.473907 0.283909 -3.844630 5.264774 0.362534 10.618656 -1.628629 2.125068 -1.488096 4.245773 -2.191811 -4.907575 -0.715015 5.732126 4.917444 0.955500 -1.142925 -0.664116 -1.524569 3.513015 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.999446 0.013669 3.183672 1.141838 -2.390865 -3.735978 -1.578436 -5.698747 2.408595 1.128898 3.523603 0.301016 2.029419 -1.784549 0.205956 0.552473 1.506106 -1.661396 0.384263 -1.711283 -1.037477 3.581300 0.394170 -0.388942 0.324844 -3.534303 2.171947 1.146694 1.230453 2.093945 1.111383 -0.172017 -1.523098 1.443901 -0.069540 1.923609 1.064609 1.175905 -1.305226 -0.135471 0.645641 -0.510557 2.458994 -0.331148 3.581390 0.232143 1.534152 0.917859 -1.905808 -1.629201 -0.821020 2.026468 -2.292774 0.878653 0.037348 -0.588091 0.443016 -1.394236 -0.685023 -1.540481 -0.512048 -1.461630 -1.857594 0.536595 -1.647665 1.105258 -0.666672 -1.238047 0.115166 -0.904300 1.994759 0.555242 0.066932 1.056507 -3.191227 0.039012 0.608314 0.655002 1.824766 -0.072092 -0.342802 -0.913520 -1.881143 -2.115781 2.400273 1.907519 0.842033 0.545674 -1.797842 0.518947 -0.367045 -0.540990 1.408472 1.447694 -2.113532 -0.692038 0.242160 -1.079482 -1.908877 -2.750699 1.162245 -1.340974 1.321098 0.825979 -0.993426 -0.505575 -1.179351 0.075312 -2.389702 -2.164094 0.539503 -1.775905 1.164582 3.318377 -1.623152 -0.524439 -1.899997 -0.955067 0.468190 1.763810 1.074851 0.802251 2.845346 2.883929 1.100794 -2.629252 -2.133710 1.243856 2.390658 1.444708 0.865963 -2.535707 -1.506525 0.884708 -1.726366 -3.933316 -1.556603 0.724769 2.307601 -0.170252 -1.324164 1.016216 -1.173656 2.275007 2.225290 0.606230 0.201957 0.505474 -2.657690 2.113693 3.383682 -0.529930 2.113296 -1.056041 -0.793216 2.258157 -1.846087 0.815430 1.417518 -0.718696 -1.496998 -0.962174 -0.030851 1.904224 0.748443 1.586914 -0.717500 1.716079 -1.357426 -3.195309 -4.168191 0.093413 3.811267 0.996471 3.418519 -2.989517 -1.285366 0.177628 3.089372 0.169141 -2.012472 1.116616 -1.982660 1.878761 -3.202494 -3.236292 4.819946 4.065599 2.256881 0.432639 2.080736 1.853772 -3.096511 -0.874455 -1.126406 1.461264 0.486845 -3.572386 -0.656479 0.543179 -2.876956 -1.926788 -0.425255 1.443400 0.611657 0.051410 1.603633 0.002974 -0.732614 -1.322085 1.690921 -0.953147 -1.109560 -0.092995 0.130902 0.564482 1.116805 -1.079755 0.544431 0.503350 -1.673217 0.822993 1.475053 1.444484 0.755835 3.889450 3.290901 -1.304016 2.145760 -0.475783 -0.972283 2.688159 -0.736678 1.181901 0.560688 1.288447 0.892487 0.428068 2.284772 -1.469697 -1.168296 -2.484013 -0.594003 1.099301 2.179873 -1.146979 -2.723348 -4.280944 -0.207458 0.631632 2.898792 -0.478888 4.291293 -1.018797 0.889624 -4.633548 0.185734 1.339071 -0.356242 1.519351 0.615126 -1.461484 -2.346792 -0.994192 -2.677889 -2.329537 -0.628715 -0.924124 -1.599142 -1.828436 2.525715 -1.633515 -0.263861 1.578491 0.000816 1.835654 -0.249411 0.199131 -1.707959 0.360718 1.427014 -0.052032 -2.107967 2.879861 0.454279 6.201787 -0.340181 1.485667 -0.675425 1.945054 -0.756372 -2.393742 -0.603265 3.203387 2.791065 0.370233 -0.267846 0.027433 -0.122407 1.994353 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = -1.146639 -0.248739 3.501547 1.457983 -2.855689 -3.720336 -1.650422 -6.402152 3.411102 1.279632 3.378712 1.071431 2.449863 -2.648418 -0.193895 0.297814 1.854180 -1.796587 0.571530 -1.821164 -0.308257 4.924938 0.417877 -0.516243 0.166082 -4.516321 2.555824 0.596922 2.434780 2.955711 1.391165 -0.425945 -2.113088 1.411131 0.461493 1.960841 1.083938 1.092502 -2.320009 -0.455815 0.480155 -0.929364 2.817295 -0.333780 4.117330 -0.988136 1.378450 0.932681 -1.641744 -1.807360 -1.187555 2.072789 -2.506698 1.173859 0.569285 -0.953387 0.040318 -0.772260 -0.697833 -1.442993 -0.694476 -1.988101 -1.544599 0.676899 -2.034941 1.312229 -1.684756 -0.950829 -0.341590 -1.512031 2.173450 1.015199 1.140312 0.934515 -4.582615 0.134038 0.100125 0.921279 2.246132 1.051270 -0.461466 -1.335162 -1.920193 -2.344538 2.231445 2.540858 -0.061787 0.534646 -2.114222 0.354515 -0.574432 -0.619557 1.507714 1.211059 -3.121838 -0.527090 -0.660577 -0.758346 -0.731802 -3.569017 1.065258 -1.472532 1.183808 0.446162 -0.867108 -0.661028 -0.730954 -0.150220 -2.262579 -2.108442 1.306209 -1.328338 0.648283 4.385472 -1.664971 -0.630826 -2.345316 -0.615281 0.144027 1.968373 0.952127 1.375846 2.306906 3.168526 1.723108 -2.872507 -1.992699 2.580525 2.556345 1.247134 0.849428 -2.325104 -1.462177 1.176752 -1.171162 -4.287325 -1.857934 1.236262 2.684743 0.170338 -0.657968 -0.193369 -1.304751 2.706104 2.416525 0.151504 0.553338 0.662982 -2.994481 2.564970 4.075156 -0.227831 1.937079 -1.271645 -0.602289 2.862973 -2.417255 1.251946 0.333867 -0.174214 -1.456875 -1.177456 0.027660 2.026481 0.191887 1.636576 -1.235328 1.911122 -1.566976 -4.029838 -4.615361 -0.165549 4.556667 1.466797 3.233600 -3.032860 -1.070072 0.274648 3.116566 1.054708 -2.125896 1.775997 -2.508896 2.182313 -4.216383 -3.616194 5.736705 5.119768 2.129559 0.322078 1.790391 2.548118 -3.775103 -1.419945 -1.413489 1.365941 0.259940 -4.445162 -0.938042 0.761754 -3.140284 -2.622689 0.333862 1.354326 1.547943 0.129128 2.176885 0.360325 -0.356336 -1.981859 3.032518 -0.972980 -1.536518 -0.096428 0.358617 0.702320 1.598181 -0.956110 0.890721 1.136948 -1.249714 0.802278 1.400214 1.275880 0.240738 3.472356 3.766541 -1.099129 1.903439 -0.294034 -1.460430 3.899165 -1.163505 1.221218 0.497813 0.545043 0.986896 0.604070 1.940233 -1.820113 -1.269843 -2.650874 -0.882009 0.679771 2.750668 -1.828244 -4.057414 -4.160192 0.193375 0.509350 2.285137 -0.089009 5.004691 -2.004024 0.693338 -5.299999 0.249961 2.414613 0.001061 2.458525 0.689435 -1.368289 -1.998215 -1.256874 -2.839293 -1.478360 -1.072025 -1.638325 -1.458960 -2.146618 3.595000 -1.827012 -0.134760 1.799497 -0.387454 3.015250 -0.768256 0.208961 -2.669093 0.673148 0.454832 0.184174 -2.205905 3.507494 0.222397 6.112178 -0.733447 0.935803 -0.630517 2.566903 -1.575922 -3.395986 -0.534939 3.634677 2.919473 0.607055 -0.645294 -0.413678 -0.357292 1.776419 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Val_comp_iter __gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter) = 0.031516 0.077289 0.845413 -0.145908 -0.246801 -1.102967 -0.357490 -1.830979 0.681323 0.383661 0.985166 -0.104444 0.671334 -0.346864 0.094594 0.624018 0.332703 -0.479718 0.266572 -0.408168 -0.168331 1.089053 -0.134805 0.466808 0.065119 -1.090904 0.261219 0.271968 0.541610 0.494716 0.317354 -0.115860 -0.188929 0.276677 -0.058001 0.677777 0.414320 0.322857 -0.498173 0.117080 -0.276149 -0.158288 0.486493 -0.080598 1.000442 0.085176 0.455715 0.276826 -0.099474 -0.419900 -0.322660 0.822043 -0.517343 0.113200 -0.176712 -0.388285 -0.068000 -0.214560 -0.211063 -0.059418 -0.258876 -0.253296 -0.558849 0.199075 -0.402220 0.351210 -0.247517 -0.276406 -0.168932 -0.080874 0.576521 0.237626 0.037987 0.486783 -1.190451 0.025464 0.142463 0.107195 0.427390 -0.270380 0.024519 -0.189106 -0.479860 -0.636006 1.016820 0.931482 0.266653 0.157311 -0.684765 0.228131 -0.415897 -0.143975 0.515161 0.403348 -0.532953 -0.181529 0.087778 -0.251991 -0.538963 -0.927097 0.325800 -0.367434 0.321431 -0.103691 0.312656 -0.108253 -0.323583 0.115995 -0.658611 -0.599652 0.192743 -0.380530 0.174341 0.988410 -0.465222 -0.019440 -0.535403 -0.217676 -0.062662 0.440576 0.413710 0.227241 0.704140 0.667260 0.323554 -0.658823 -0.688396 0.447682 0.695234 0.388459 0.169333 -0.763621 -0.396238 0.251068 -0.568738 -1.144825 -0.532983 0.308018 0.536112 -0.332846 -0.120126 0.267730 -0.225141 0.555970 0.705724 -0.063593 0.068338 0.138767 -0.654189 0.513896 0.981391 -0.209487 0.656760 -0.412248 0.044705 0.343558 -0.559105 0.199964 0.408325 -0.167271 -0.473787 -0.218754 -0.008501 0.474792 0.341427 0.521963 -0.330167 0.518094 -0.536112 -0.706965 -1.082834 -0.140393 0.974490 -0.089953 0.735075 -0.665006 -0.535973 0.098800 0.850647 0.015854 -0.483768 0.384501 -0.725514 0.489121 -0.678775 -0.800714 1.282503 1.176988 0.880490 0.040778 0.515363 0.713224 -1.114169 -0.220805 -0.090932 0.407340 0.023980 -1.630303 -0.474723 0.059108 -0.795296 -0.489161 -0.335344 0.400484 -0.168210 0.657937 0.833597 -0.033663 -0.188990 -0.170201 0.474249 -0.195816 -0.280722 -0.100831 0.105892 0.026430 0.302757 -0.593415 0.388430 0.529809 -0.596599 0.341872 0.512371 0.210786 0.215633 1.160942 0.895471 -0.260294 0.842441 -0.308399 -0.256595 0.234760 -0.016326 0.313163 0.047683 0.156893 0.061752 0.125771 0.520035 -0.382630 -0.608124 -0.665933 -0.310480 0.390594 0.535251 0.692470 -0.850967 -0.986424 -0.068928 0.150514 0.990353 -0.017050 1.009208 -0.310358 0.480705 -1.154993 0.188818 0.078736 -0.167457 0.315538 0.135626 -0.306073 -0.413166 -0.212468 -0.745074 -1.377670 -0.180028 -0.503136 -0.374279 -0.816810 0.739525 -0.606935 -0.229576 0.181185 0.263695 0.588957 -0.126324 0.037550 -0.655369 0.458877 0.717749 -0.150733 -0.565473 0.415222 0.152002 1.844731 -0.164090 0.433433 -0.153597 0.451199 -0.172622 -0.584755 -0.114669 0.885186 0.824631 0.026925 -0.186644 -0.137088 0.123084 0.435777 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix const*, suffix const*, suffix*) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = -1.569387 -0.596364 3.663585 -0.072814 -1.927725 -2.968289 -1.876599 -5.975531 2.884698 1.696280 3.788460 0.503293 2.227587 -1.519363 0.125116 0.539879 1.348939 -3.126674 1.355220 -1.610605 0.174636 4.726207 1.158702 0.812499 -0.000737 -5.364445 2.144029 -0.215544 2.119837 3.457045 0.896586 -0.645954 -1.611721 1.311486 0.927456 2.537855 1.737750 1.070582 -1.316132 0.662825 0.084492 -0.691360 2.185435 -0.520417 4.322775 -0.223904 0.653780 0.741972 -1.454003 -2.118145 -0.716553 1.459368 -3.126867 0.605821 0.464549 -0.799935 -0.784430 -0.910003 -1.430148 -1.860500 -0.921965 -1.876834 -1.194190 1.209296 -1.801156 1.788536 -2.170942 -0.338800 -0.459360 -1.268743 2.292114 1.662922 1.593733 2.242112 -4.002831 0.744801 0.054762 0.753930 1.520666 -0.641028 -1.236147 -0.374266 -1.576151 -2.478321 1.845792 3.171445 -0.062263 -0.381554 -1.548885 1.357558 -0.965724 -0.349175 0.861219 1.731201 -2.652349 -0.560652 -0.309605 -0.780138 -0.739513 -3.580417 0.541128 -1.892266 1.232500 1.013895 -0.654544 -1.142652 -1.605273 0.304046 -2.545567 -2.351910 1.438972 -0.880893 0.503644 3.725601 -2.166593 0.300457 -2.485773 -0.488437 0.829783 1.944837 0.706693 1.575013 2.226674 3.232762 1.406226 -2.628724 -2.001881 2.281739 2.995804 0.795741 1.058896 -2.478729 -1.554155 0.847404 -1.293292 -3.748967 -2.072072 1.072906 2.332088 -0.335786 -0.612908 -0.007743 -1.321702 3.086399 3.223213 0.110299 0.315718 0.477163 -3.101348 2.800854 4.300788 -0.551011 2.284330 -1.595966 -0.448551 3.184659 -2.994705 1.561473 0.737934 0.619323 -1.711410 -1.695879 -0.272868 1.912649 0.983699 2.654842 -1.328134 1.692102 -0.347081 -3.487980 -4.147799 -0.746713 4.345072 0.742820 2.622326 -2.800207 -1.047858 0.288331 3.237011 1.940283 -2.370486 1.270279 -1.905730 1.642233 -4.624243 -3.485700 5.329341 5.779099 2.586787 0.844997 1.614459 3.216712 -3.721492 -0.829296 -1.067719 2.043344 -0.922840 -4.620311 -1.450120 0.753687 -2.688138 -2.699195 -0.537013 1.433007 1.441811 0.543011 1.451967 1.596639 -0.577527 -1.270183 2.692092 -1.309915 -2.537913 -0.245710 0.391940 0.882980 1.004219 -1.208721 1.671165 1.922198 -1.729522 0.945543 2.288880 1.025699 0.444403 3.065826 3.478298 -0.936515 0.874873 -0.594401 -0.837867 2.555147 -0.842544 0.957969 0.430799 -0.029371 0.664984 0.460594 1.620715 -1.443825 -1.854700 -2.203558 -0.091907 0.464443 2.716871 -0.460135 -4.861132 -3.524607 0.608907 1.264827 2.778012 0.428539 4.894750 -1.079915 1.152661 -4.891116 0.208388 1.782092 0.258587 2.189227 0.654706 -0.889136 -1.987648 -1.188044 -2.644756 -1.681691 -1.121892 -1.873210 -1.228633 -2.322729 3.632669 -1.455969 -0.425878 0.909956 0.390628 3.296713 0.875377 -0.370406 -3.335058 1.082918 0.849163 0.198804 -1.734618 3.268390 0.271627 5.602124 -1.405257 0.683569 -0.339068 2.370765 -1.168948 -2.389994 -0.014589 3.594024 2.933943 0.554317 -0.982637 -1.180183 -0.009648 1.172569 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.259004 -0.083108 0.934766 0.439196 -0.567802 -1.498987 -0.462710 -1.920245 0.900931 0.409680 1.222537 0.104386 0.904795 -0.677940 0.080781 0.396802 0.530278 -0.458995 0.157866 -0.548984 -0.378239 1.583617 0.170890 -0.056979 0.064015 -1.098805 0.718886 0.403209 0.507530 0.940367 0.365861 -0.003214 -0.231098 0.413673 -0.184878 0.746534 0.088410 0.494106 -0.458789 -0.098745 0.125223 -0.368547 0.849671 -0.005318 1.173154 0.107017 0.725685 0.225323 -0.427229 -0.612822 -0.540532 0.712579 -0.848917 0.252357 -0.446882 -0.320945 0.317580 -0.222647 -0.234992 -0.658847 -0.170240 -0.404307 -0.861591 0.125397 -0.676756 0.449329 -0.354641 -0.489282 -0.204478 -0.210436 0.742855 0.315210 -0.005897 0.209612 -1.438892 -0.043492 0.129522 0.145169 0.648609 0.003915 -0.237901 -0.410109 -0.728875 -0.749174 1.207349 0.578608 0.311335 0.413740 -0.692262 0.085855 -0.369026 -0.017501 0.589202 0.442134 -0.560508 -0.083977 0.352792 -0.258569 -0.486285 -0.946399 0.435629 -0.489727 0.321096 0.230774 0.095177 -0.104400 -0.436091 0.051422 -0.933167 -0.904519 0.220573 -0.630879 0.044372 1.068659 -0.574636 -0.112871 -0.554011 -0.180608 0.157857 0.714386 0.473288 0.357659 0.907224 0.848290 0.322917 -0.916266 -0.635438 0.529071 0.913797 0.458583 0.216746 -0.740898 -0.613584 0.321263 -0.662145 -1.423523 -0.638114 0.629561 0.781418 -0.188652 -0.529482 0.674957 -0.324166 0.677779 0.980249 0.116107 0.153900 0.195675 -0.943311 0.704194 1.312664 -0.251594 0.776177 -0.423593 -0.325057 1.026124 -0.683388 0.193376 0.389637 -0.302134 -0.521098 -0.284633 0.133294 0.689787 0.285355 0.561211 -0.195554 0.629255 -0.534513 -1.083398 -1.418094 -0.113269 1.426623 0.418937 1.315217 -0.969027 -0.357865 0.183849 0.824502 -0.009622 -0.634228 0.342835 -0.764908 0.655844 -1.663463 -1.198970 1.845006 1.149547 1.007347 0.220696 0.608429 0.861949 -0.788119 -0.254343 -0.324384 0.555232 0.267855 -1.383105 -0.290786 0.080097 -1.126151 -0.740416 -0.196858 0.459301 -0.071189 0.100612 0.673442 -0.415819 -0.266966 -0.378368 0.522933 -0.487909 -0.345032 -0.117572 0.014098 0.067302 0.278328 -0.323930 0.441531 0.241758 -0.592574 0.235845 0.405222 0.399792 0.360373 1.393176 1.479417 -0.597259 0.677229 -0.237926 -0.368501 0.942087 -0.258838 0.354677 0.096340 0.617674 0.435623 0.132386 0.832144 -0.473142 -0.432665 -0.917442 -0.207575 0.741669 0.697766 -0.131539 -0.821502 -1.493817 -0.063858 0.133031 1.368006 -0.204330 1.475201 -0.562064 0.421216 -1.612188 0.211238 0.375045 -0.133149 0.499760 0.249680 -0.442734 -0.631323 -0.394213 -0.846534 -0.866747 -0.303106 -0.514727 -0.523429 -0.682047 0.587605 -0.903562 -0.098339 0.450386 -0.025665 0.710735 -0.190717 0.073521 -0.736367 0.366553 0.517484 0.039483 -0.694559 0.826053 0.117443 2.132360 -0.126203 0.630447 -0.320121 0.891467 -0.467422 -0.886758 -0.209113 1.154337 1.048021 -0.076888 0.147962 0.056496 0.218125 0.648929 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.070237 0.068551 0.759030 0.394328 -0.560074 -1.286945 -0.361903 -1.618929 0.676811 0.307331 0.921155 0.043813 0.721667 -0.476392 -0.011290 0.303420 0.406582 -0.240535 0.138493 -0.466725 -0.545317 1.228754 0.023827 -0.018402 0.072737 -0.820168 0.787783 0.355272 0.436272 0.772289 0.310655 0.003684 -0.218728 0.375644 -0.137734 0.506483 -0.030047 0.472283 -0.371554 0.005133 0.144008 -0.407818 0.734302 0.055019 0.830971 0.236508 0.529543 0.232052 -0.323896 -0.440176 -0.429852 0.435663 -0.676252 0.231464 -0.466845 -0.318376 0.302094 -0.126951 -0.105372 -0.358453 -0.137117 -0.433533 -0.731814 0.117860 -0.664890 0.305546 -0.397132 -0.542135 -0.194827 -0.125341 0.576657 0.240529 -0.082651 0.110893 -1.246019 -0.069203 0.163577 0.129363 0.581055 0.008874 -0.130953 -0.322542 -0.727016 -0.656533 0.977023 0.471100 0.315461 0.332308 -0.539510 -0.071132 -0.236975 0.040671 0.579792 0.423446 -0.349502 -0.017434 0.053978 -0.189698 -0.466730 -0.986246 0.386125 -0.377017 0.344521 0.094390 -0.036061 -0.083104 -0.193700 0.033466 -0.620418 -0.782846 0.083523 -0.606964 0.157649 0.939408 -0.316152 -0.213649 -0.458552 -0.244609 0.128945 0.548311 0.462108 0.173662 0.821385 0.662552 0.278156 -0.769214 -0.583954 0.388400 0.545264 0.398795 0.209627 -0.613106 -0.517682 0.249123 -0.543515 -1.207944 -0.436975 0.410415 0.567090 -0.336470 -0.315963 0.602286 -0.354813 0.383869 0.782768 0.161760 0.179857 0.126427 -0.702183 0.542466 1.042160 -0.171001 0.562261 -0.411929 -0.340952 0.860999 -0.427873 0.118905 0.272382 -0.305607 -0.458498 -0.201683 0.173044 0.587342 0.099634 0.371331 0.021742 0.482670 -0.553250 -0.817451 -1.051609 0.029274 1.276446 0.384176 1.078492 -0.858855 -0.175302 0.230855 0.663712 0.062389 -0.436767 0.301213 -0.561427 0.558692 -1.336990 -0.993435 1.358118 0.750674 0.757479 0.081970 0.369552 0.632653 -0.603926 -0.326362 -0.355818 0.419115 0.204361 -1.110460 -0.306930 0.078630 -0.916951 -0.450221 -0.079478 0.410944 0.115858 -0.008715 0.493972 -0.518679 -0.214587 -0.495005 0.491957 -0.390295 -0.181397 -0.030491 -0.013810 -0.012460 0.226879 -0.183558 0.300227 0.095587 -0.379527 0.250279 0.315533 0.277331 0.154088 1.216825 1.149482 -0.564129 0.404755 -0.151497 -0.257931 0.881430 -0.220633 0.349862 0.143569 0.615866 0.283295 0.144334 0.783887 -0.404272 -0.384121 -0.783670 -0.265237 0.619775 0.489332 -0.105761 -0.503182 -1.308101 -0.059557 0.009195 1.196573 -0.129996 1.172348 -0.398072 0.380909 -1.145588 0.181006 0.266645 -0.158385 0.505960 0.213779 -0.405338 -0.305560 -0.347485 -0.719836 -0.698681 -0.247073 -0.349865 -0.475252 -0.361371 0.199420 -0.621872 -0.090158 0.368869 -0.110137 0.464738 -0.311847 0.094436 -0.555819 0.251662 0.577889 -0.030758 -0.584275 0.656989 0.122678 1.727274 0.029887 0.537245 -0.221718 0.603407 -0.316009 -0.750215 -0.241281 0.955378 0.729531 -0.005669 0.146630 0.103975 0.275645 0.530323 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.030353 0.189934 0.811661 0.290321 -0.571219 -1.264494 -0.372125 -1.593613 0.619097 0.345174 0.817096 0.015365 0.683564 -0.316981 -0.116658 0.215494 0.332855 -0.234936 0.140450 -0.507670 -0.699801 1.102806 -0.050708 0.021440 0.106113 -0.959369 1.032589 0.338017 0.394128 0.852836 0.308569 0.059888 -0.255547 0.465304 -0.115177 0.419354 -0.035756 0.511839 -0.243211 0.170800 0.268124 -0.273088 0.748409 0.201161 0.751317 0.549994 0.256462 0.287774 -0.234127 -0.430700 -0.253340 0.128905 -0.636919 0.235148 -0.576636 -0.200802 0.285015 -0.217142 -0.002015 -0.204336 -0.078068 -0.414362 -0.712859 0.179626 -0.752332 0.219804 -0.447940 -0.632581 -0.254409 -0.221506 0.523858 0.180332 -0.211034 0.014120 -1.216647 -0.090182 0.197152 0.097848 0.638211 -0.099522 -0.289365 -0.259101 -0.848712 -0.729486 0.838609 0.586806 0.327513 0.353511 -0.399456 -0.286308 -0.196783 0.076500 0.650857 0.589499 -0.211391 -0.058363 -0.096150 -0.201168 -0.522057 -1.029710 0.444508 -0.333577 0.438141 0.034168 -0.198564 -0.144256 -0.023246 0.002567 -0.453528 -0.664941 0.026716 -0.714724 0.396364 0.976605 -0.127491 -0.340299 -0.558733 -0.426411 0.227859 0.598165 0.449974 -0.057162 0.974834 0.617451 0.253320 -0.781158 -0.636940 0.350869 0.307119 0.357953 0.262471 -0.722008 -0.496324 0.211413 -0.543482 -1.169541 -0.323201 0.116653 0.436468 -0.609383 -0.211419 0.739822 -0.474516 0.172777 0.792599 0.213603 0.227568 0.056108 -0.658527 0.493023 1.082871 -0.104315 0.446432 -0.573856 -0.487482 0.896446 -0.326758 0.146016 0.248161 -0.384616 -0.546763 -0.145731 0.350709 0.609104 -0.104635 0.363876 0.227615 0.424161 -0.509427 -0.621666 -0.953850 0.084654 1.290374 0.445450 1.144972 -0.933011 0.039874 0.183688 0.733553 0.226741 -0.301380 0.305849 -0.407187 0.520113 -1.258890 -0.939464 1.156512 0.683108 0.735706 -0.025938 0.257595 0.483367 -0.390445 -0.387858 -0.374678 0.377447 0.164493 -0.900129 -0.257346 0.093535 -0.833512 -0.340844 -0.075289 0.447724 0.354411 -0.174188 0.345916 -0.654577 -0.210483 -0.768734 0.465243 -0.363876 -0.111270 0.048737 -0.013563 -0.169094 0.178784 -0.083367 0.208316 0.039140 -0.198573 0.347863 0.398911 0.198178 0.002792 1.107746 0.955671 -0.669783 0.147107 -0.114135 -0.079111 0.967534 -0.208790 0.407535 0.272165 0.712532 0.252173 0.174290 0.765536 -0.396979 -0.271975 -0.758338 -0.208170 0.601195 0.356438 -0.140715 -0.351740 -1.355501 -0.062530 -0.135061 1.289556 -0.054188 1.165608 -0.200521 0.434539 -0.915634 0.188322 0.247913 -0.181870 0.494208 0.253955 -0.462658 -0.145107 -0.338724 -0.765996 -0.663309 -0.216269 -0.253468 -0.539595 -0.099599 -0.065599 -0.450088 -0.067046 0.443880 -0.173751 0.262345 -0.455227 0.144023 -0.542170 0.110918 0.664133 -0.118851 -0.538186 0.542412 0.115070 1.473798 0.093749 0.648902 -0.102007 0.553980 -0.245659 -0.787276 -0.328943 0.950461 0.476697 0.045977 0.189916 0.073018 0.416272 0.522101 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = -1.082252 0.372134 3.639421 0.659352 -1.898151 -3.152623 -1.311144 -5.599485 2.445959 0.908815 3.310736 -0.028143 1.690087 -1.505269 0.205393 1.495750 1.662511 -1.650404 0.757097 -1.443445 0.001813 3.162593 0.548694 0.018526 0.735262 -3.563634 1.279646 0.538691 1.773425 1.739071 1.232512 -0.052821 -0.978444 1.370425 0.993951 2.356715 1.530945 0.917395 -1.846338 0.314795 -0.571780 -1.145718 1.615915 0.132642 3.939293 -0.193906 1.909383 0.686233 -1.787058 -0.998886 -1.997888 3.363054 -2.587979 0.501086 0.101022 -0.875188 -0.159173 -1.349621 -0.974860 -1.795405 -1.253546 -1.549407 -1.631938 0.592172 -1.633094 1.583311 -0.947773 -0.350501 -0.564285 0.166662 2.127409 1.350479 0.899051 2.347172 -3.446089 0.365087 0.410412 1.073290 1.902575 -0.752131 0.042643 -0.452227 -1.194783 -2.237765 3.035202 1.800538 0.907180 0.092677 -1.458728 1.110342 -1.487682 -0.760442 0.626905 1.442710 -2.964605 -0.269262 0.305412 -1.054658 -1.615481 -2.923569 0.666636 -1.628082 0.837906 0.445858 -0.099328 -0.250566 -2.107911 0.528067 -2.298198 -1.940207 0.956681 -1.244166 -0.109080 3.104067 -1.955133 0.151626 -1.573338 -0.231946 0.263547 1.763366 0.497947 1.690106 1.854317 2.995410 1.242456 -1.785886 -1.587829 1.295652 2.602999 1.416129 1.090151 -2.238611 -1.641874 0.610832 -0.997994 -3.579226 -1.586090 1.523057 2.327831 0.681256 -1.499606 -0.423110 -0.765171 2.746217 2.095071 0.272577 0.049204 0.667573 -2.509671 2.145155 3.764992 -0.980889 2.394325 -0.685891 0.836725 1.641905 -2.620687 0.923905 0.842615 -0.256061 -0.891212 -1.151591 -1.430899 1.733682 1.743928 0.967519 -0.804942 1.571812 -1.119390 -3.615559 -3.869772 -0.745469 3.656142 -0.404904 2.254890 -2.402868 -1.649510 -0.242426 2.795001 0.286482 -1.760981 0.820703 -2.285977 1.747359 -2.600447 -3.190820 4.911955 4.345595 1.979897 0.697902 1.719249 2.692365 -4.304964 -1.123361 -0.547648 1.343650 -0.577043 -4.283203 -1.863526 0.380478 -2.923366 -2.197156 -0.536182 1.291792 0.252280 1.599183 2.239826 1.473487 -0.622287 -0.581352 1.120471 -0.988385 -2.249210 0.014905 0.220133 1.288225 1.146742 -1.582127 1.041969 1.686370 -2.326406 0.197936 1.458393 1.564837 0.842850 3.664170 3.591815 -0.018172 2.361075 -0.273920 -1.609917 1.660624 0.079435 1.268039 0.178170 -0.356737 0.608403 0.426233 1.911890 -1.407992 -2.074860 -2.546557 -0.630111 0.463036 2.595825 0.361263 -3.528844 -2.994563 0.021514 1.876391 1.953637 -0.477070 3.983440 -0.888269 0.628559 -4.742943 0.189442 1.797969 -0.330304 1.547058 0.830408 -1.413595 -2.254538 -0.989016 -2.345012 -2.520816 -0.979192 -0.936723 -1.370362 -2.125902 3.571329 -1.890855 -0.323898 1.034960 0.969119 2.654223 0.572576 0.063739 -2.030003 0.932965 2.018480 0.170358 -2.016826 2.670363 0.353610 6.272651 -0.986445 0.639908 -0.860981 1.042440 -0.227884 -1.361170 -0.217388 3.549353 3.117833 0.431561 -0.582679 -0.635032 -0.429731 2.074975 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = 0.019261 0.125719 0.697693 0.244655 -0.381549 -0.984008 -0.276483 -1.248286 0.564040 0.266194 0.626788 0.049101 0.574514 -0.323231 -0.099420 0.148194 0.278019 -0.156773 0.089152 -0.385521 -0.372968 0.917838 -0.038014 -0.078054 0.089555 -0.851121 0.740324 0.278934 0.380295 0.729703 0.227071 0.041829 -0.206766 0.358759 -0.144308 0.293417 0.045703 0.355723 -0.296691 0.069280 0.150895 -0.080367 0.570264 0.148065 0.638411 0.372838 0.164193 0.221798 -0.130527 -0.342256 -0.185363 0.166384 -0.443518 0.230393 -0.420491 -0.123336 0.177086 -0.170645 0.003879 -0.254610 -0.006969 -0.208904 -0.508496 0.113550 -0.585596 0.165317 -0.285387 -0.480311 -0.199323 -0.247974 0.414378 0.144886 -0.098490 -0.062659 -1.005884 -0.058101 0.118337 0.107930 0.514022 -0.035010 -0.232402 -0.243152 -0.602462 -0.552413 0.636262 0.517029 0.204931 0.350966 -0.317020 -0.271141 -0.162805 0.021075 0.491179 0.423509 -0.203241 -0.044859 -0.071881 -0.120600 -0.283979 -0.733223 0.340108 -0.251372 0.298637 0.012630 -0.042943 -0.058567 0.040137 0.055102 -0.345141 -0.449617 0.128577 -0.488479 0.232890 0.819651 -0.106058 -0.275010 -0.434233 -0.293413 0.113751 0.531650 0.265750 0.002177 0.669725 0.490561 0.224084 -0.620846 -0.453686 0.377824 0.287823 0.297428 0.205957 -0.591646 -0.359326 0.169968 -0.424327 -0.942869 -0.263090 0.095463 0.392934 -0.446189 -0.218060 0.547277 -0.372714 0.203725 0.594690 0.112581 0.193596 0.052432 -0.555434 0.398552 0.910900 -0.089846 0.348335 -0.446670 -0.358583 0.621490 -0.252872 0.159254 0.104284 -0.305551 -0.334600 -0.113567 0.302476 0.494728 -0.058453 0.315990 0.096854 0.340881 -0.428232 -0.563448 -0.798278 -0.023659 0.952569 0.310827 0.943238 -0.682359 -0.051074 0.042563 0.617008 0.118244 -0.200318 0.261984 -0.393327 0.418839 -1.010854 -0.749103 0.996781 0.682023 0.614780 -0.031938 0.250908 0.387456 -0.280779 -0.291249 -0.220845 0.234062 0.158551 -0.747385 -0.203001 0.054048 -0.665510 -0.345722 -0.015209 0.318789 0.228489 -0.051821 0.315055 -0.459794 -0.178918 -0.614173 0.371947 -0.308987 -0.062193 0.040084 0.024373 -0.136545 0.175220 -0.147813 0.146009 0.156283 -0.151109 0.263876 0.282927 0.171602 0.026646 0.779734 0.747426 -0.448300 0.221643 -0.060247 -0.141214 0.866095 -0.180152 0.307038 0.196132 0.489885 0.215818 0.149598 0.497809 -0.330753 -0.148299 -0.633186 -0.171881 0.463158 0.312173 -0.131768 -0.385846 -0.975607 -0.049484 -0.130124 0.942045 -0.038959 0.968685 -0.227964 0.324744 -0.814748 0.149707 0.272765 -0.127783 0.369493 0.230780 -0.369245 -0.297770 -0.235069 -0.606610 -0.536130 -0.219382 -0.312140 -0.389353 -0.149318 0.090199 -0.392292 -0.012523 0.435696 -0.108507 0.283689 -0.429776 0.123886 -0.462734 0.081608 0.390689 -0.071299 -0.446285 0.375543 0.075442 1.155655 0.017409 0.520990 -0.124459 0.498121 -0.256790 -0.665467 -0.264895 0.771080 0.395724 0.049391 0.149823 0.019710 0.254746 0.419296 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.090541 0.270732 0.382123 0.062679 -0.315466 -0.697609 -0.175381 -0.799082 0.100092 0.148167 0.430384 -0.159643 0.334429 0.026885 -0.045459 0.096590 0.134505 -0.008436 0.139176 -0.243890 -0.642856 0.301227 -0.146141 0.172597 0.085465 -0.241432 0.662620 0.190336 0.046219 0.369869 0.146257 0.037409 -0.143637 0.239262 -0.025189 0.155722 -0.028598 0.365064 0.027615 0.225485 0.110331 -0.299313 0.330912 0.144577 0.207571 0.572979 0.010516 0.198350 -0.149019 -0.183000 -0.051775 -0.120389 -0.345228 0.087492 -0.383851 -0.212666 0.230130 -0.038068 0.073797 -0.012609 -0.025914 -0.376607 -0.374609 0.123966 -0.428218 0.070501 -0.301221 -0.456532 -0.127981 0.014438 0.220865 0.051269 -0.205089 0.151712 -0.510657 -0.068533 0.214828 0.023958 0.323629 -0.204539 -0.050254 -0.065157 -0.534084 -0.423892 0.457082 0.218654 0.353688 0.138084 -0.201995 -0.131800 -0.005980 0.101386 0.418499 0.374249 0.144041 0.008946 -0.176980 -0.103793 -0.424102 -0.779036 0.245323 -0.161941 0.295695 0.023800 -0.219568 -0.130755 -0.054089 0.067478 -0.161684 -0.440494 -0.069207 -0.500227 0.287880 0.403014 0.010859 -0.214273 -0.241517 -0.336720 0.235701 0.235475 0.352101 -0.147173 0.500016 0.267616 0.085598 -0.379033 -0.427422 0.006252 0.005580 0.193056 0.148528 -0.402204 -0.283291 0.110825 -0.437270 -0.580132 -0.104166 -0.049903 0.137723 -0.479924 -0.083529 0.529055 -0.344637 -0.149012 0.396809 0.285471 0.098383 -0.011768 -0.245798 0.161933 0.342403 -0.101344 0.237410 -0.200958 -0.275847 0.353059 0.012560 -0.037041 0.211742 -0.260855 -0.306735 -0.033718 0.133061 0.315387 0.006058 0.177774 0.272937 0.179688 -0.400021 -0.183428 -0.317058 0.192485 0.805297 0.145888 0.464828 -0.528981 0.079137 0.234108 0.434934 0.085421 -0.148311 0.072518 -0.039913 0.255097 -0.514843 -0.442284 0.345083 0.040165 0.338773 -0.101771 -0.049044 0.183529 -0.213028 -0.242939 -0.280263 0.189503 -0.066910 -0.457176 -0.281248 0.041994 -0.397820 0.071377 -0.049378 0.289960 0.236938 -0.109971 0.073841 -0.416465 -0.072734 -0.404504 0.161207 -0.139858 0.011338 0.071115 -0.067052 -0.074580 0.013176 -0.008718 0.060589 -0.060783 -0.132139 0.199067 0.225129 0.065586 -0.048405 0.828792 0.334281 -0.414461 -0.165620 -0.073859 0.009726 0.402279 -0.054967 0.270448 0.161136 0.538835 0.062300 0.084745 0.590681 -0.182740 -0.309443 -0.432009 -0.288429 0.361225 0.093126 0.108425 0.017793 -0.790326 0.005759 -0.114674 0.837602 -0.037270 0.481230 0.093022 0.286621 -0.145508 0.101450 -0.033548 -0.238703 0.242282 0.105136 -0.233549 0.092417 -0.188374 -0.438035 -0.484187 -0.067883 0.043747 -0.268599 0.133641 -0.391940 -0.056202 -0.108845 0.070545 -0.060375 -0.047739 -0.160095 0.060685 -0.185899 0.068200 0.622658 -0.180705 -0.299568 0.266331 0.179211 0.789273 0.203668 0.320131 -0.001718 0.050033 0.035598 -0.236113 -0.212297 0.454239 0.200976 0.090678 0.119783 0.175531 0.325008 0.253197 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.396132 0.096290 1.631455 0.726667 -1.168485 -1.706439 -0.731830 -2.453816 1.083232 0.419217 1.444885 0.145914 0.821365 -0.781828 -0.037684 -0.033734 0.506789 -0.615846 0.164091 -0.743234 -0.549247 1.555259 0.264030 -0.590984 0.191200 -1.804264 1.397795 0.620216 0.618259 1.257430 0.312055 -0.107414 -0.709255 0.849972 -0.118413 0.568164 0.455645 0.555762 -0.549938 0.074588 0.463278 0.038077 1.177530 -0.132545 1.536476 0.454759 0.439154 0.466192 -0.907585 -0.636635 -0.236590 0.604163 -1.090243 0.567953 -0.137720 -0.072429 0.175808 -0.737939 -0.279370 -0.942671 -0.057842 -0.536202 -0.752701 0.229642 -0.999796 0.385005 -0.272878 -0.804717 0.159688 -0.433270 0.906895 0.352163 0.039014 0.202384 -1.409061 0.092077 0.351200 0.462085 0.892734 -0.184674 -0.225275 -0.313346 -0.914558 -0.964730 0.779670 0.812503 0.430797 0.269434 -0.452585 -0.094700 0.048728 -0.183564 0.581915 0.802880 -0.680521 -0.211208 -0.274150 -0.336690 -0.749443 -1.289755 0.468524 -0.621849 0.715634 0.491500 -0.637439 -0.139218 -0.120354 0.216081 -0.849104 -0.981708 0.230908 -0.833880 0.716269 1.580449 -0.463330 -0.394587 -0.778190 -0.531420 0.220086 0.951328 0.301970 0.241763 1.347509 1.412749 0.484034 -1.260087 -0.957589 0.554210 0.882170 0.789543 0.552352 -1.286772 -0.671689 0.244023 -0.695481 -1.862935 -0.458168 0.024757 0.992911 -0.329873 -0.738758 0.665425 -0.753383 1.035054 0.993081 0.382018 0.194513 0.161045 -1.246781 1.097549 1.769403 -0.195892 0.805415 -0.669246 -0.631337 1.134401 -0.660002 0.462187 0.436694 -0.394426 -0.454403 -0.510961 0.174848 0.972751 0.203903 0.744294 0.009626 0.676111 -0.603750 -1.550301 -1.735122 0.088585 1.783434 0.485800 1.884316 -1.447388 -0.507086 -0.089694 1.493000 0.170353 -0.645884 0.422631 -0.794111 0.891784 -1.707831 -1.617329 2.108521 1.879310 0.956189 0.167808 0.916665 0.741326 -0.968314 -0.464110 -0.534963 0.529779 0.255095 -1.286164 -0.328291 0.233919 -1.274732 -0.828182 0.060016 0.640365 0.601836 -0.261016 0.221945 -0.074595 -0.520916 -1.002788 0.765420 -0.695186 -0.346336 0.139054 0.047734 0.172037 0.513975 -0.430781 0.079789 0.200897 -0.548999 0.471589 0.658357 0.701938 0.205690 1.558288 1.411210 -0.593152 0.766579 0.090139 -0.396527 1.824271 -0.407947 0.594885 0.477556 0.719259 0.385063 0.296868 1.001810 -0.720581 -0.242429 -1.294025 -0.154490 0.506804 0.920949 -0.950950 -1.130814 -1.932895 -0.155737 0.251888 1.271414 -0.134658 2.118705 -0.292082 0.377363 -2.098825 -0.021847 0.743387 -0.106023 0.855743 0.422823 -0.768888 -1.389346 -0.469011 -1.170998 -0.720865 -0.490930 -0.477301 -0.758683 -0.450876 0.837682 -0.499548 0.058249 1.040458 -0.115536 0.702092 -0.443210 0.142726 -0.739812 -0.159395 0.523498 0.005189 -1.015221 1.276079 0.177393 2.722269 -0.135368 0.776202 -0.401963 0.849684 -0.298148 -1.074732 -0.353701 1.562188 0.973024 0.304180 0.017872 0.034742 -0.101383 0.975315 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -4.563007 -1.780995 8.634774 3.134732 -6.439448 -9.184403 -4.353050 -16.168947 8.561204 3.832486 10.025752 2.344600 6.604818 -6.448121 0.064517 1.823959 4.607104 -6.577664 2.655450 -4.224705 0.074073 14.048531 2.838670 0.464704 -0.468134 -11.113860 5.636040 0.530370 6.336433 8.076878 3.342086 -1.177499 -3.883679 3.223118 1.916066 6.835268 2.060229 3.662157 -4.702967 -1.010348 0.480168 -5.024647 6.670583 -1.341968 11.540399 -3.536117 5.546477 1.233355 -4.685081 -5.231584 -5.122226 6.133734 -8.888059 1.508829 0.475100 -3.825052 0.069070 -0.817285 -3.253211 -5.832977 -2.924412 -6.027701 -4.568709 2.134696 -5.004934 5.105160 -5.504022 -1.400902 -1.949954 -2.471658 6.352274 4.706881 4.536201 5.161234 -12.321005 1.340071 -0.032376 1.953549 5.144359 1.605290 -1.805792 -2.786857 -4.216370 -6.256584 7.376449 6.022541 0.097262 0.501996 -5.470276 3.837318 -3.097149 -0.694270 2.669498 3.242757 -8.285943 -0.466188 0.423592 -1.837696 -1.905825 -9.227627 1.898932 -5.089789 2.497600 2.546902 -1.313310 -2.246343 -5.509245 -0.713825 -7.988098 -7.431818 3.186761 -3.693155 -0.195334 9.713185 -6.713210 0.786935 -5.479493 0.086195 1.681602 4.658826 2.633221 5.487994 5.098814 8.217565 4.097524 -7.458822 -4.618192 6.590011 8.658015 2.782989 1.828263 -4.703098 -4.552725 2.521075 -2.801196 -10.805042 -5.800035 6.218722 6.788752 1.488572 -2.487818 -0.327852 -2.507707 8.467197 8.454533 0.473025 1.100488 2.475236 -8.165334 7.093687 10.893565 -1.307022 6.460242 -2.465182 -0.569246 9.678331 -8.667052 3.607115 1.724835 0.942432 -4.281491 -4.234062 -1.747611 5.137530 2.557266 5.364699 -3.629536 5.007932 -2.099660 -11.215903 -11.886946 -1.566440 13.008911 3.541423 7.253466 -7.754120 -2.788005 2.577299 6.800483 3.578047 -6.829792 3.632216 -6.191826 5.575051 -13.937320 -10.326019 15.647968 12.960765 6.060210 2.878045 4.408716 8.929739 -10.352101 -2.831737 -3.281777 5.272695 -1.042645 -12.743422 -3.398716 1.896196 -8.459084 -7.880845 -0.326328 3.440733 2.326855 1.094633 6.018708 2.138754 -0.417844 -2.689242 7.049590 -3.416024 -6.764274 -1.250411 0.978778 3.156234 3.095164 -2.513429 4.804660 3.605283 -4.867406 1.366074 4.036080 2.950838 1.789634 9.692824 12.005255 -3.253524 3.760747 -1.524644 -3.375473 7.819742 -2.607974 2.588868 0.704885 1.020335 3.053200 1.253264 5.666396 -4.545510 -4.732469 -6.646290 -1.556877 2.543496 7.889976 -2.957552 -11.718675 -10.269592 1.389476 3.742654 6.510215 -0.536764 13.188063 -5.271296 1.944329 -14.422905 0.809032 5.688704 0.308290 6.814529 1.853988 -2.690645 -4.049335 -4.156517 -6.300701 -3.230211 -3.030991 -4.694149 -3.196783 -6.632556 9.484212 -6.398436 -0.938016 1.963903 -0.076918 9.253146 1.237772 -0.161548 -8.054767 3.653065 1.796168 1.471672 -5.157961 10.284772 0.147002 16.484136 -3.257380 1.443910 -1.945827 7.671509 -4.146421 -7.244153 -0.079512 10.354973 9.007421 0.647114 -1.984075 -1.747949 -0.253685 4.154672 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 0.879066 1.028690 4.239337 1.940343 -2.253491 -3.263775 -1.487951 -5.763604 2.555659 -0.069446 2.107968 -0.220830 0.467290 -1.038271 -0.450775 0.803130 0.221418 -0.862951 0.718258 -1.131431 -1.099223 3.865098 0.245484 -1.756716 0.362810 -5.347679 2.711457 1.789605 3.131517 2.015507 -0.039905 -1.001165 -0.511857 2.320280 -0.553337 -0.054830 0.962638 0.544169 -2.422902 0.869137 0.201293 1.244633 2.333271 -0.707973 2.489257 0.568316 1.871572 1.132436 -1.328793 0.110622 -1.618642 3.387595 -1.749078 1.528982 0.144874 0.145954 -0.298823 -2.428411 -1.017802 -0.165597 -0.926988 0.196086 -1.358541 0.363662 -2.685571 0.496219 -0.568496 -1.486175 1.286186 0.899307 2.158854 1.492578 0.488739 -0.255094 -3.639784 1.065451 0.664641 2.193921 1.502458 -1.295619 0.951887 0.684673 -1.730441 -1.956462 1.335591 2.383675 0.908027 -0.732046 0.076171 -1.036162 -0.212527 -0.622455 0.248950 2.035565 -1.644328 0.349033 -2.828259 -0.300975 -2.027883 -3.165016 -0.094189 -1.802249 1.778547 0.291213 -0.534758 0.356839 1.585821 0.833004 -0.371578 -2.311830 -0.258530 -0.757769 1.720832 4.228725 -0.195393 -0.874187 -0.988247 -0.824836 -1.465885 1.960451 0.127031 0.703966 3.315524 3.543190 1.045812 -2.118871 -1.941211 0.765128 1.192185 2.560560 2.072505 -3.214754 -1.318125 -0.565036 0.547206 -4.552378 0.255095 -0.067948 1.696136 -0.789633 -0.995477 -0.083864 -1.434037 3.420377 1.439787 0.197692 0.710532 -0.010373 -1.829793 3.306241 5.228633 -0.485555 1.384221 -3.060730 -0.970534 1.993951 -1.690191 1.656212 0.088763 -0.121439 0.008039 -1.862082 0.122730 2.362180 0.012901 0.614384 1.615432 0.678289 -0.923892 -3.782517 -3.142265 0.674470 2.456632 -0.697821 4.490133 -2.571941 -2.207399 -0.669012 2.692175 0.337489 -0.178199 1.092356 -2.512134 1.896063 -2.618025 -3.846224 4.154210 4.474721 0.819781 0.105086 2.606669 2.068331 -2.777204 -1.787140 -0.966043 1.083672 0.867380 -3.355872 -1.359498 0.413161 -2.447414 -1.204219 0.645249 1.068384 2.052816 0.203521 -0.334622 0.067854 -3.066626 -2.662450 2.520889 -2.364471 -0.424422 0.867130 0.089612 -0.156830 2.129676 -1.338042 -0.391792 1.133130 -1.175843 1.032925 1.256277 1.720452 -0.273017 2.541684 3.175462 0.605255 3.803131 1.678625 -1.035479 4.377773 -0.646392 0.914990 1.221341 0.248876 -0.883341 1.514026 1.252844 -1.519432 -1.182569 -3.203561 0.858514 -0.239744 1.647147 -1.223860 -2.179148 -2.949425 -1.771557 1.761957 1.570924 0.546944 4.557532 -0.561280 0.640082 -5.377016 -0.380563 1.542074 0.453889 2.745109 1.230983 -1.992003 -3.013298 -0.904200 -1.596521 -1.651422 -1.644899 -2.545078 -2.087957 -1.495314 2.222858 -0.903102 0.827232 3.340225 0.159351 1.468804 -2.179653 0.077875 -1.538951 -0.838308 1.947769 0.048037 -2.366115 2.093755 -0.369869 6.772186 -1.034473 1.495626 -1.837309 0.220053 0.356885 -1.851554 -0.374571 3.637703 1.134612 0.845347 -0.483714 -0.505816 -1.332550 2.376690 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::difference_type __gnu_cxx::operator- > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.307418 0.259597 1.526348 0.861583 -0.358252 -0.963210 -0.448924 -2.105523 1.081798 0.314485 1.179022 -0.281061 0.659177 -0.331547 -0.356656 0.025913 0.400078 -0.469289 0.430009 -0.321235 0.280435 1.775833 0.042091 -0.458314 0.099427 -1.788151 1.147225 0.460206 0.873651 0.944359 0.336343 0.400833 0.052002 0.551044 -0.214266 0.313469 0.035335 0.620939 -0.565151 -0.119687 0.175686 -0.103518 0.557373 0.211270 1.245442 0.270820 0.745270 -0.022932 -0.167249 -0.218724 -1.196326 0.942716 -0.862283 0.021707 -0.752551 -0.516391 0.280333 -0.477922 -0.332525 -0.875569 -0.157702 -0.071876 -0.698164 0.201529 -0.989527 0.799810 -0.192531 -0.174014 -0.243841 0.015792 0.909497 0.666662 0.402468 0.136722 -1.780254 0.451965 -0.021325 0.284263 0.730601 -0.224257 -0.091493 0.187558 -0.655280 -0.874349 1.245850 1.051954 0.286556 0.213617 0.005019 -0.204642 -0.715748 -0.191706 0.048450 0.888335 -0.690975 0.394647 -0.171236 -0.149308 -0.332430 -0.546667 0.308976 -0.804856 0.363959 0.492145 -0.145658 0.233737 0.099973 0.083943 -0.481135 -1.019595 0.185993 -0.818225 0.336511 1.428468 -0.514387 -0.175235 -0.651283 -0.015219 0.015926 0.927346 -0.158457 0.713883 0.712492 0.981204 0.284312 -0.750130 -0.513514 1.068094 0.593925 0.570572 0.282162 -1.018494 -0.600722 -0.299297 0.030845 -1.300416 -0.531574 0.482339 0.796616 -0.463169 -0.821251 0.715907 -0.329283 1.050719 1.095950 0.003613 0.218840 0.562052 -0.969521 0.908137 2.036315 -0.161048 0.516776 -0.784797 -0.123090 1.070326 -0.774393 0.588813 0.146066 0.128120 -0.201250 -0.669227 -0.033744 0.734848 0.223486 0.415304 0.431771 0.509320 -0.079833 -1.473491 -1.476137 -0.402317 1.339607 0.055058 1.552879 -0.990824 -0.338261 0.024274 0.978293 0.383236 -0.205339 0.302429 -0.831356 0.655197 -1.665115 -1.568080 1.483038 1.243642 0.552228 0.292330 0.693294 0.919557 -0.549211 -0.540817 -0.187024 0.800482 -0.008173 -0.914937 -0.320140 -0.078975 -0.915465 -1.200895 0.027806 0.366880 0.267437 0.156892 0.569970 -0.321856 -0.434585 -0.823549 0.421189 -0.787022 -0.775316 0.001979 0.062557 0.008868 0.390885 -0.567587 0.569126 0.699712 -0.343130 0.132294 0.482305 0.034387 -0.159832 0.710353 1.621564 -0.232704 0.608245 0.189314 -0.330386 1.671420 0.116955 0.315458 0.214718 -0.091130 0.364074 0.359570 0.410398 -0.596345 -0.413637 -1.329082 0.319528 0.277290 0.787818 -0.515440 -0.821005 -1.158044 -0.236242 0.690493 0.881116 0.122164 1.941834 -0.417579 0.010667 -1.844667 0.093626 0.985708 -0.101724 0.777469 0.444884 -0.641634 -0.726802 -0.329534 -0.641085 -0.497297 -0.802857 -1.164867 -0.928186 -0.555919 0.796253 -0.826216 0.210678 0.893231 0.317429 0.473497 -0.547964 0.038600 -0.783393 0.007674 0.286035 0.243314 -0.872586 0.825142 -0.465129 1.964148 -0.755907 0.564259 -0.593830 1.030714 -0.531509 -0.825972 0.027301 1.733501 0.562916 -0.003287 -0.033771 -0.410556 -0.034069 0.829374 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.387695 0.105563 1.522937 0.750559 -1.193261 -1.533201 -0.719168 -2.430913 0.937121 0.170452 1.291469 0.089724 0.516478 -0.892990 -0.006548 -0.038706 0.340843 -0.537950 0.212376 -0.606850 -0.433917 1.233434 0.137608 -0.693262 0.221478 -1.734708 1.267551 0.667414 0.582110 0.965689 0.256299 -0.233592 -0.767868 0.883959 0.022326 0.408545 0.686368 0.357359 -0.598594 0.098180 0.325359 0.240016 0.985920 -0.314762 1.488271 0.311333 0.439627 0.522536 -0.974870 -0.396187 -0.246836 0.913259 -0.968264 0.600211 0.275265 -0.097410 0.063473 -0.883969 -0.369531 -0.810032 -0.147346 -0.568260 -0.531086 0.177597 -0.878372 0.338562 -0.087285 -0.614988 0.465931 -0.104152 0.890834 0.295504 0.126668 0.385770 -1.043687 0.184919 0.360394 0.709985 0.791593 -0.325701 0.179844 -0.172725 -0.685543 -0.823310 0.542568 0.689730 0.448632 0.016216 -0.306942 0.009002 0.156269 -0.400285 0.423622 0.712178 -0.650826 -0.330495 -0.493913 -0.256371 -0.739879 -1.245145 0.352173 -0.604156 0.720647 0.550994 -0.612256 -0.125184 0.056009 0.301236 -0.759855 -0.909345 0.249738 -0.637669 0.816916 1.514685 -0.392279 -0.280864 -0.644874 -0.498656 0.012208 0.865334 0.253193 0.337390 1.145901 1.625404 0.435883 -1.056917 -1.078492 0.435690 0.827040 0.924882 0.562447 -1.461022 -0.537885 0.170845 -0.519063 -1.669318 -0.342127 -0.126542 0.979249 -0.033259 -0.667828 0.277593 -0.671175 1.191312 0.634842 0.295754 0.044204 0.140513 -1.124300 1.330843 1.614683 -0.185908 0.710968 -0.524321 -0.333035 0.689422 -0.635312 0.385827 0.490888 -0.292121 -0.217088 -0.531064 -0.103825 0.856092 0.352686 0.656639 0.045183 0.636442 -0.688213 -1.609139 -1.521566 0.324316 1.596545 0.091697 1.668910 -1.293583 -0.824643 -0.186155 1.623273 0.045445 -0.564802 0.398547 -0.846241 0.894845 -1.001670 -1.433526 1.948385 1.887701 0.702757 0.095287 0.980573 0.858513 -1.297520 -0.411720 -0.496611 0.406231 0.222993 -1.309813 -0.406072 0.214553 -1.097647 -0.831603 0.208426 0.580313 0.627137 0.007660 0.039538 0.349706 -0.567260 -0.832918 0.779815 -0.607598 -0.252323 0.207127 0.044215 0.327165 0.650646 -0.594455 -0.051925 0.278276 -0.589178 0.452214 0.642854 0.769730 0.249504 1.449273 1.120200 -0.195452 1.146859 0.334662 -0.490561 1.660360 -0.154619 0.643228 0.558361 0.365672 0.240132 0.300808 0.833744 -0.707482 -0.359064 -1.335209 -0.182721 0.217566 1.071284 -0.912157 -1.153824 -1.729635 -0.347846 0.544471 0.697019 -0.121772 1.918950 -0.168895 0.194315 -2.008265 -0.144043 0.801658 -0.117303 0.777008 0.325989 -0.695795 -1.644950 -0.419183 -1.023430 -0.874341 -0.589786 -0.425138 -0.715784 -0.601717 1.158532 -0.257732 0.125420 1.129164 0.085000 0.551489 -0.520249 0.095611 -0.606926 -0.308425 0.360549 -0.053453 -1.158587 1.287999 0.205441 2.792303 -0.251995 0.489131 -0.512685 0.512502 -0.173741 -0.781279 -0.106666 1.393498 0.908240 0.422957 -0.162005 0.163392 -0.474175 1.010581 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.267473 -0.126391 1.125155 0.407015 -0.681668 -1.653704 -0.680184 -2.431139 1.125564 0.684459 1.422878 0.088954 1.078682 -0.702697 -0.158918 0.231606 0.376708 -0.802275 0.274129 -0.696078 -0.799366 1.982136 0.116807 0.058621 0.022124 -1.802055 1.590499 0.290558 0.489909 1.408839 0.450830 0.149709 -0.282267 0.662548 -0.091388 0.996726 0.022251 0.791426 -0.027098 0.079451 0.619538 -0.320133 1.009354 0.230562 1.441363 0.603257 0.396622 0.258095 -0.313523 -0.807785 -0.344307 0.091659 -1.199252 0.166781 -0.838771 -0.213174 0.410390 -0.491605 -0.226643 -0.585809 -0.119600 -0.600341 -1.142625 0.340778 -0.991068 0.569263 -0.548822 -0.596260 -0.389446 -0.438195 0.904195 0.406871 -0.179669 0.146078 -1.704645 -0.078348 0.150303 -0.070202 0.890860 -0.225764 -0.725885 -0.397630 -1.179539 -1.076108 1.402844 0.985770 0.307733 0.464724 -0.409230 -0.141424 -0.467930 0.072813 0.878562 0.953812 -0.413945 -0.279487 0.295867 -0.297986 -0.565218 -1.142068 0.691934 -0.672008 0.590653 0.454772 -0.383008 -0.270699 -0.059020 -0.079353 -0.981889 -1.036488 0.064795 -1.062656 0.713122 1.344089 -0.391618 -0.321262 -0.952226 -0.576276 0.529886 0.946410 0.634943 0.123059 1.645800 1.010467 0.322550 -1.222392 -0.981647 0.790477 0.768160 0.414641 0.213536 -1.269653 -0.719247 0.302619 -0.681582 -1.640288 -0.712157 0.195603 0.668618 -0.840863 -0.502555 1.300273 -0.468805 0.450055 1.426407 0.151531 0.193780 0.243388 -1.155937 0.897041 1.795946 -0.067401 0.645498 -0.963711 -0.759075 1.599576 -0.828200 0.220834 0.529629 -0.336295 -0.938590 -0.384761 0.602755 0.846375 -0.222393 0.828394 0.082859 0.777073 -0.426147 -0.977481 -1.556962 -0.033460 1.947291 0.783439 1.870129 -1.432465 0.101146 0.326279 1.149830 0.548274 -0.534254 0.429806 -0.661102 0.768167 -2.060748 -1.491633 1.913601 1.137846 1.286472 0.198796 0.554535 0.926711 -0.483105 -0.252131 -0.533216 0.781166 0.410080 -1.196814 -0.123951 0.095735 -1.223683 -0.973979 -0.284247 0.636921 0.373529 -0.374817 0.429628 -0.807163 -0.212659 -0.973477 0.776047 -0.591699 -0.402199 -0.172090 0.032844 -0.246346 0.227412 -0.129237 0.625885 0.078550 -0.233351 0.549616 0.841164 0.183815 0.110104 1.440946 1.662756 -1.182564 0.086558 -0.292046 0.135375 1.206205 -0.212439 0.452227 0.433122 0.908550 0.618931 0.171094 1.022994 -0.580177 -0.278708 -1.059593 -0.011443 0.913328 0.650667 -0.326582 -0.631853 -2.020182 -0.148912 -0.042253 1.927431 0.017789 1.888172 -0.347073 0.590595 -1.564870 0.243693 0.534103 -0.173075 0.646742 0.314815 -0.525130 -0.379490 -0.565684 -0.999104 -0.964088 -0.444307 -0.467808 -0.873134 -0.457722 0.257942 -0.828147 -0.077557 0.662402 -0.043152 0.406506 -0.534747 0.199541 -1.024115 0.277922 0.495534 -0.069604 -0.768657 0.906873 0.040706 2.067348 -0.231818 0.959715 -0.190697 1.346896 -0.716913 -1.213434 -0.251441 1.403793 0.784889 -0.111754 0.259740 -0.023547 0.541559 0.787724 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.104419 0.043096 0.436021 0.072335 -0.157054 -0.657327 -0.193197 -0.783841 0.284801 0.158907 0.529337 -0.049406 0.404618 -0.205792 0.058662 0.143611 0.197111 -0.160496 0.106076 -0.219800 -0.152927 0.489185 0.016607 0.023940 0.048074 -0.435303 0.310820 0.181042 0.120208 0.425201 0.130363 0.003923 -0.119225 0.182184 -0.091305 0.288377 0.180255 0.226083 -0.136083 0.026479 -0.032320 -0.065859 0.275317 0.019764 0.467506 0.258619 0.134221 0.149835 -0.146605 -0.265929 -0.113191 0.215805 -0.348173 0.096751 -0.209034 -0.137417 0.127693 -0.097755 -0.066495 -0.355157 -0.009049 -0.153692 -0.310134 0.075962 -0.286820 0.179300 -0.101099 -0.258202 -0.092450 -0.075619 0.297692 0.111291 -0.001409 0.190674 -0.508231 -0.020246 0.086518 0.074141 0.283597 -0.161405 -0.092534 -0.147692 -0.286395 -0.335086 0.485129 0.259592 0.221611 0.217856 -0.252070 0.047332 -0.118025 -0.025864 0.283916 0.212724 -0.064790 -0.058094 0.135606 -0.077013 -0.211253 -0.450875 0.199742 -0.179809 0.143077 0.124656 0.080939 -0.071763 -0.225228 0.121465 -0.393941 -0.351350 0.164125 -0.294864 0.027851 0.403492 -0.229902 -0.036234 -0.207572 -0.145478 0.128798 0.347443 0.192755 0.111990 0.281256 0.362979 0.089263 -0.376748 -0.321642 0.179624 0.374316 0.211189 0.120027 -0.413546 -0.256332 0.140634 -0.421218 -0.572682 -0.235765 0.151144 0.311544 -0.158745 -0.295707 0.394706 -0.211821 0.194816 0.387895 0.130015 0.034696 0.039252 -0.403853 0.266731 0.465921 -0.150435 0.364892 -0.097149 -0.107636 0.254308 -0.197347 0.043945 0.193810 -0.195244 -0.177338 -0.071950 0.035431 0.286016 0.240967 0.321972 -0.070681 0.263137 -0.316857 -0.418715 -0.513795 -0.049193 0.643929 0.029805 0.497895 -0.402461 -0.199520 0.048617 0.487085 -0.082529 -0.239927 0.080167 -0.253541 0.269130 -0.580795 -0.463902 0.697297 0.456257 0.478078 0.041800 0.189233 0.350664 -0.314258 -0.070439 -0.077490 0.173514 -0.004483 -0.607856 -0.220737 0.003712 -0.445903 -0.256913 -0.092436 0.233468 -0.074206 0.147376 0.225643 -0.108316 -0.086394 -0.151231 0.109182 -0.183271 -0.100305 -0.006922 0.006520 0.039833 0.059985 -0.218667 0.162234 0.212942 -0.283416 0.127905 0.212995 0.167112 0.186447 0.674449 0.463296 -0.227479 0.215814 -0.095660 -0.159080 0.363767 -0.045936 0.208298 0.052912 0.311308 0.175581 0.031876 0.366688 -0.198342 -0.227026 -0.440421 -0.206779 0.351476 0.280799 0.104710 -0.354040 -0.599150 0.009781 0.032142 0.636980 -0.106132 0.582233 -0.110823 0.212306 -0.526652 0.095309 0.116585 -0.154353 0.118524 0.128160 -0.167446 -0.394445 -0.141766 -0.402385 -0.542012 -0.151977 -0.189798 -0.162428 -0.237089 0.171194 -0.286319 -0.077025 0.157954 0.089843 0.224238 -0.039710 0.030509 -0.294325 0.150031 0.273291 -0.063763 -0.330956 0.287822 0.130187 0.900222 -0.020375 0.277450 -0.116985 0.293787 -0.127207 -0.256943 -0.105107 0.491147 0.429740 0.006846 0.084910 0.066807 0.116388 0.262905 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.276677 -0.039513 0.756385 0.496314 -0.528501 -1.264941 -0.385675 -1.384018 0.673813 0.316224 0.942593 0.117681 0.752385 -0.527698 0.010131 0.112635 0.425620 -0.296585 0.078597 -0.475272 -0.447779 1.220709 0.209329 -0.258491 0.072181 -0.840606 0.866089 0.349118 0.275756 0.945883 0.271322 0.084780 -0.214656 0.411257 -0.190251 0.508270 -0.031477 0.465498 -0.213573 -0.061212 0.309196 -0.254967 0.751137 0.117934 0.866860 0.350482 0.428397 0.189688 -0.405909 -0.531099 -0.347541 0.256081 -0.744665 0.245974 -0.517938 -0.136724 0.406886 -0.209340 -0.111030 -0.729659 -0.015802 -0.344920 -0.727756 0.094724 -0.662776 0.320503 -0.306837 -0.525403 -0.196028 -0.255891 0.577041 0.221944 -0.089786 0.013171 -1.083096 -0.076837 0.118337 0.112884 0.605290 0.004204 -0.375633 -0.357681 -0.692991 -0.635190 0.872296 0.300517 0.294839 0.454614 -0.405888 -0.112133 -0.199994 0.059469 0.509112 0.429849 -0.257371 -0.042724 0.301642 -0.176815 -0.350093 -0.730020 0.401791 -0.374194 0.278729 0.314837 -0.101933 -0.116731 -0.301687 0.038708 -0.717387 -0.721415 0.177860 -0.641926 0.090485 0.794798 -0.362645 -0.184592 -0.440186 -0.235409 0.303044 0.692746 0.356743 0.184621 0.772506 0.673599 0.193353 -0.781200 -0.478554 0.376277 0.634265 0.349528 0.218516 -0.620312 -0.532952 0.247190 -0.588369 -1.118250 -0.432618 0.404243 0.603824 -0.238058 -0.565000 0.807213 -0.377358 0.391656 0.826250 0.238833 0.160935 0.110758 -0.796315 0.555890 1.075285 -0.188725 0.572329 -0.347007 -0.474493 0.999223 -0.451951 0.128921 0.270269 -0.355625 -0.417006 -0.183254 0.244092 0.606279 0.132991 0.457489 0.037126 0.472522 -0.402974 -0.841380 -1.084695 -0.039979 1.268306 0.509453 1.229868 -0.874833 -0.082050 0.135174 0.677641 0.023363 -0.444614 0.192986 -0.451802 0.526559 -1.575422 -1.003579 1.451600 0.755398 0.795254 0.167253 0.389385 0.606026 -0.281423 -0.209909 -0.327093 0.417485 0.233689 -0.766717 -0.139001 0.059852 -0.909735 -0.569604 -0.073310 0.394183 0.095090 -0.237405 0.295437 -0.521094 -0.213616 -0.505748 0.327042 -0.468427 -0.219760 -0.031004 -0.035465 -0.004314 0.132895 -0.086460 0.282478 0.055101 -0.345506 0.177653 0.297223 0.338379 0.270132 1.095390 1.166424 -0.633678 0.235092 -0.112876 -0.230333 1.049643 -0.267721 0.331080 0.163252 0.743214 0.476976 0.100417 0.746295 -0.377352 -0.186043 -0.792020 -0.127191 0.712820 0.504093 -0.442897 -0.497318 -1.323880 -0.025991 0.001717 1.237811 -0.210966 1.258344 -0.363521 0.313832 -1.183041 0.168142 0.384603 -0.138339 0.395376 0.266035 -0.402080 -0.541736 -0.354482 -0.698270 -0.431231 -0.273679 -0.309859 -0.449676 -0.261301 0.170930 -0.657362 -0.010507 0.476276 -0.144398 0.427179 -0.219100 0.094794 -0.549021 0.141758 0.338377 0.038922 -0.554256 0.705064 0.102732 1.533367 -0.022414 0.608284 -0.241960 0.788048 -0.409540 -0.741382 -0.248163 0.954859 0.724159 -0.061104 0.305382 0.142964 0.285090 0.558383 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.267473 -0.126391 1.125155 0.407015 -0.681668 -1.653704 -0.680184 -2.431139 1.125564 0.684459 1.422878 0.088954 1.078682 -0.702697 -0.158918 0.231606 0.376708 -0.802275 0.274129 -0.696078 -0.799366 1.982136 0.116807 0.058621 0.022124 -1.802055 1.590499 0.290558 0.489909 1.408839 0.450830 0.149709 -0.282267 0.662548 -0.091388 0.996726 0.022251 0.791426 -0.027098 0.079451 0.619538 -0.320133 1.009354 0.230562 1.441363 0.603257 0.396622 0.258095 -0.313523 -0.807785 -0.344307 0.091659 -1.199252 0.166781 -0.838771 -0.213174 0.410390 -0.491605 -0.226643 -0.585809 -0.119600 -0.600341 -1.142625 0.340778 -0.991068 0.569263 -0.548822 -0.596260 -0.389446 -0.438195 0.904195 0.406871 -0.179669 0.146078 -1.704645 -0.078348 0.150303 -0.070202 0.890860 -0.225764 -0.725885 -0.397630 -1.179539 -1.076108 1.402844 0.985770 0.307733 0.464724 -0.409230 -0.141424 -0.467930 0.072813 0.878562 0.953812 -0.413945 -0.279487 0.295867 -0.297986 -0.565218 -1.142068 0.691934 -0.672008 0.590653 0.454772 -0.383008 -0.270699 -0.059020 -0.079353 -0.981889 -1.036488 0.064795 -1.062656 0.713122 1.344089 -0.391618 -0.321262 -0.952226 -0.576276 0.529886 0.946410 0.634943 0.123059 1.645800 1.010467 0.322550 -1.222392 -0.981647 0.790477 0.768160 0.414641 0.213536 -1.269653 -0.719247 0.302619 -0.681582 -1.640288 -0.712157 0.195603 0.668618 -0.840863 -0.502555 1.300273 -0.468805 0.450055 1.426407 0.151531 0.193780 0.243388 -1.155937 0.897041 1.795946 -0.067401 0.645498 -0.963711 -0.759075 1.599576 -0.828200 0.220834 0.529629 -0.336295 -0.938590 -0.384761 0.602755 0.846375 -0.222393 0.828394 0.082859 0.777073 -0.426147 -0.977481 -1.556962 -0.033460 1.947291 0.783439 1.870129 -1.432465 0.101146 0.326279 1.149830 0.548274 -0.534254 0.429806 -0.661102 0.768167 -2.060748 -1.491633 1.913601 1.137846 1.286472 0.198796 0.554535 0.926711 -0.483105 -0.252131 -0.533216 0.781166 0.410080 -1.196814 -0.123951 0.095735 -1.223683 -0.973979 -0.284247 0.636921 0.373529 -0.374817 0.429628 -0.807163 -0.212659 -0.973477 0.776047 -0.591699 -0.402199 -0.172090 0.032844 -0.246346 0.227412 -0.129237 0.625885 0.078550 -0.233351 0.549616 0.841164 0.183815 0.110104 1.440946 1.662756 -1.182564 0.086558 -0.292046 0.135375 1.206205 -0.212439 0.452227 0.433122 0.908550 0.618931 0.171094 1.022994 -0.580177 -0.278708 -1.059593 -0.011443 0.913328 0.650667 -0.326582 -0.631853 -2.020182 -0.148912 -0.042253 1.927431 0.017789 1.888172 -0.347073 0.590595 -1.564870 0.243693 0.534103 -0.173075 0.646742 0.314815 -0.525130 -0.379490 -0.565684 -0.999104 -0.964088 -0.444307 -0.467808 -0.873134 -0.457722 0.257942 -0.828147 -0.077557 0.662402 -0.043152 0.406506 -0.534747 0.199541 -1.024115 0.277922 0.495534 -0.069604 -0.768657 0.906873 0.040706 2.067348 -0.231818 0.959715 -0.190697 1.346896 -0.716913 -1.213434 -0.251441 1.403793 0.784889 -0.111754 0.259740 -0.023547 0.541559 0.787724 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.048622 -0.140625 1.307432 0.537912 -0.774423 -1.842417 -0.665646 -3.149837 1.592577 0.705144 1.479414 0.200224 1.212051 -1.058515 -0.250433 0.599499 0.473485 -0.716798 0.300555 -0.723157 -0.599226 2.615970 -0.121029 0.143637 -0.007285 -2.164876 1.387727 0.363678 1.163575 1.345654 0.564190 -0.024854 -0.304188 0.615628 -0.132982 1.049828 0.006196 0.741218 -0.725501 -0.109469 0.305381 -0.479544 1.147987 0.032248 1.698674 -0.073023 0.851042 0.277385 -0.131422 -0.712155 -0.724996 0.789905 -1.095139 0.291033 -0.710032 -0.532059 0.172571 -0.334956 -0.298606 -0.159744 -0.316554 -0.582433 -1.221494 0.295406 -1.086131 0.630192 -0.662127 -0.581727 -0.405750 -0.391653 1.049942 0.557963 0.040962 0.033914 -2.464572 -0.045552 0.095219 0.047516 0.960446 0.130319 -0.295981 -0.549945 -1.198542 -1.115409 1.759365 1.451916 0.125500 0.426485 -0.772860 -0.164912 -0.653876 -0.037774 1.001956 0.831495 -0.959440 -0.204147 -0.098032 -0.260801 -0.468344 -1.487301 0.678753 -0.756489 0.622963 0.040463 -0.019179 -0.028751 0.328910 -0.084227 -0.928891 -1.168964 0.088842 -0.856248 0.626544 1.951414 -0.414991 -0.414391 -1.049129 -0.400859 -0.032201 0.865986 0.697914 0.374987 1.726294 1.134598 0.635700 -1.364898 -1.084921 1.234488 0.881422 0.600306 0.176602 -1.282022 -0.709832 0.350243 -0.464090 -2.090725 -0.876480 0.484843 0.863325 -0.838794 -0.171160 0.792990 -0.349330 0.828768 1.436477 -0.228238 0.316238 0.388561 -1.211880 1.072695 2.177434 -0.008731 0.666516 -1.223365 -0.520990 1.533356 -0.996655 0.356372 0.303456 -0.193818 -0.887270 -0.524886 0.575790 0.930064 -0.353266 0.708174 -0.198749 0.928067 -0.758454 -1.371637 -1.883873 -0.130617 1.993626 0.709312 1.955079 -1.419181 -0.264699 0.350360 1.134770 0.575101 -0.538289 0.811861 -1.267719 0.977432 -2.092134 -1.743511 2.336222 1.630708 1.371382 0.132210 0.799122 1.173456 -1.138858 -0.494923 -0.531109 0.775481 0.654132 -2.090974 -0.353825 0.119537 -1.464304 -1.171106 -0.150933 0.600269 0.323103 0.130316 1.049932 -0.820949 -0.295563 -1.042027 1.350029 -0.618155 -0.360325 -0.245029 0.162969 -0.259713 0.600089 -0.441435 0.747499 0.340913 -0.285745 0.663660 0.787593 0.156900 -0.039136 1.511440 2.076406 -0.989068 0.840700 -0.308531 -0.164443 1.364756 -0.269598 0.432921 0.354922 0.514780 0.394503 0.314473 0.934971 -0.755557 -0.471227 -1.205278 -0.189050 0.788024 0.842940 -0.020815 -1.003950 -2.003900 -0.276944 -0.022309 1.744338 0.170771 2.106972 -0.875118 0.656607 -2.160182 0.285992 0.658031 -0.060719 1.020273 0.299328 -0.598275 -0.337833 -0.582052 -1.067488 -1.352827 -0.583415 -0.948995 -0.972171 -0.983830 0.843445 -1.116011 -0.092739 0.790869 -0.042452 0.868176 -1.007801 0.246256 -1.254278 0.534926 0.524068 -0.013673 -0.947754 0.919803 -0.057749 2.723181 -0.338440 0.892740 -0.357231 1.432451 -0.908619 -1.622195 -0.229896 1.619522 1.006915 -0.060325 -0.022749 -0.217960 0.328919 0.853765 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.073768 0.364120 3.127960 1.742491 -1.690556 -2.329673 -1.209708 -3.832841 1.805015 0.627628 2.429448 -0.116140 1.183214 -0.927083 -0.326393 -0.355417 0.790730 -1.196118 0.670153 -1.033095 -0.271698 3.025293 0.975255 -1.330010 0.232430 -3.426093 2.698448 0.909176 1.343990 2.228452 0.473766 0.297643 -0.654207 1.541664 -0.213673 0.717937 0.206822 1.147572 -0.755456 0.274549 0.860965 0.148306 1.514688 0.025963 2.550178 1.058878 1.171002 0.393435 -1.442856 -0.895757 -1.236627 1.253951 -2.196538 0.523255 -0.619604 -0.312053 0.394297 -1.326883 -0.708730 -2.193374 -0.158133 -0.652363 -1.312412 0.610748 -2.148649 1.199341 -0.755238 -0.872340 0.055698 -0.175831 1.740003 1.133002 0.505680 0.346076 -2.487338 0.767597 0.270781 0.910806 1.513438 -0.625976 -0.596959 0.211892 -1.359160 -1.809134 1.378785 1.325929 0.689824 0.107711 0.092667 -0.279487 -0.466688 -0.332181 0.169735 1.730038 -1.288681 0.336503 -0.481012 -0.429730 -1.122402 -1.601045 0.472657 -1.517898 1.087323 1.375565 -1.155815 -0.191446 -0.437290 0.166821 -1.220145 -2.052327 0.212480 -1.512604 1.155279 2.705892 -1.091418 -0.235237 -1.325838 -0.420309 0.508083 1.950504 0.082507 0.982984 2.052026 2.470163 0.484186 -1.791748 -1.188023 1.221400 1.381511 1.258122 1.120748 -2.190511 -1.409893 -0.251878 -0.303092 -2.710884 -0.704279 0.534120 1.536919 -0.421829 -1.730765 1.309530 -1.087904 2.119837 2.019565 0.569109 0.382023 0.463947 -2.013666 2.142286 3.754275 -0.419101 1.200600 -1.239067 -1.095584 2.766291 -1.591659 1.127691 0.699663 -0.068125 -0.675104 -1.297769 -0.023821 1.667754 0.504040 1.172762 0.969921 0.905306 0.058651 -2.987456 -2.817275 -0.053513 2.803491 0.531103 3.283545 -2.310124 -0.411406 -0.048376 2.250391 0.891156 -0.869806 0.311185 -1.154959 1.292705 -3.444052 -3.074670 3.245169 2.960771 1.040617 0.588148 1.467328 1.766686 -1.185398 -0.956675 -0.885548 1.474146 -0.243658 -1.316744 -0.484357 0.341225 -2.051044 -1.837137 0.126838 1.012906 1.345879 -0.661815 -0.151389 -0.134826 -1.200376 -1.839894 0.870614 -1.472990 -1.281369 0.199630 0.023721 0.397682 0.690516 -0.714096 0.526625 0.605553 -0.857244 0.355063 1.127831 0.966597 0.125653 2.049431 2.628099 -0.675828 0.760909 0.533794 -0.579427 3.697710 -0.186226 0.859967 0.705288 0.780345 0.724575 0.603943 1.267405 -1.165914 -0.667579 -2.435617 0.569570 0.630868 1.546620 -2.171660 -1.850236 -2.920532 -0.342151 1.283298 1.887403 0.007805 3.986857 -0.411132 0.123157 -3.688030 -0.034698 1.684291 -0.132647 1.794411 0.980107 -1.366703 -1.960638 -0.956332 -1.499675 -0.247732 -1.272248 -1.385384 -1.563031 -0.378303 1.426310 -0.994283 0.365118 1.871177 0.157530 1.020112 -0.266649 0.069431 -1.397887 -0.472854 0.673679 0.428614 -1.764946 2.371949 -0.379979 4.071709 -0.960497 1.166224 -0.982305 1.505267 -0.503303 -1.544779 -0.232996 3.181703 1.329739 0.297941 0.117125 -0.325680 -0.155017 1.658791 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = 0.514534 0.520467 1.798368 0.465892 -0.861144 -1.626166 -0.542184 -2.530503 1.167647 0.180119 0.922344 -0.081051 0.494212 -0.353182 -0.220352 0.568745 0.317172 -0.162778 0.246381 -0.657312 -0.380682 1.628498 -0.038986 -0.456866 0.272177 -2.089906 1.067714 0.707570 1.327503 0.986764 0.046993 -0.287657 -0.321496 0.886212 -0.179840 0.221775 0.467004 0.360366 -1.084891 0.490812 -0.107054 0.342560 0.972452 0.011205 1.173112 0.453318 0.415459 0.551758 -0.430661 -0.213870 -0.272494 1.007511 -0.593708 0.703938 -0.209881 0.078428 -0.188678 -0.804072 -0.133808 0.030733 -0.222037 0.048263 -0.709556 0.231362 -1.146910 0.113019 -0.314144 -0.754280 0.067879 -0.148395 0.706594 0.387357 -0.125391 -0.068580 -1.872027 0.055239 0.383733 0.679945 0.762856 -0.448360 0.074446 -0.079804 -0.956344 -0.991999 0.733995 1.316967 0.437270 0.184849 -0.417655 -0.581723 -0.076460 -0.059987 0.491092 0.945071 -0.764338 -0.052893 -0.879190 -0.246731 -0.793281 -1.595157 0.275444 -0.560817 0.716248 -0.393318 -0.032382 0.047159 0.496564 0.468615 -0.135383 -0.666186 0.001714 -0.485633 0.624692 1.808894 0.099137 -0.559113 -0.809687 -0.593746 -0.382449 0.905270 0.119034 0.001302 1.410277 1.189677 0.547641 -1.036813 -0.903478 0.392177 0.394044 0.912250 0.745499 -1.188093 -0.540472 0.013781 -0.249154 -1.943382 -0.178180 -0.143188 0.732279 -0.655399 -0.115368 -0.008444 -0.799792 1.045376 0.741952 0.148849 0.275596 -0.036226 -0.848888 0.916983 2.035137 -0.196345 0.601571 -1.187260 -0.415645 0.605129 -0.544618 0.644162 -0.066141 -0.426269 -0.319696 -0.437038 0.321206 1.014091 -0.183457 0.239101 0.336054 0.352890 -0.677724 -1.151522 -1.525170 -0.004472 1.250797 0.002156 1.740129 -1.132851 -0.733507 -0.337247 1.079036 0.213281 -0.087443 0.531675 -1.038560 0.798285 -1.150690 -1.473193 1.728329 1.941710 0.870945 -0.072626 0.847796 0.605131 -1.073776 -0.794143 -0.205561 0.334183 0.205159 -1.592718 -0.675521 0.208296 -1.177798 -0.378043 0.064883 0.550526 0.598372 0.264061 0.479534 -0.252910 -0.950274 -1.227418 0.852259 -0.691490 -0.052252 0.339512 0.023374 -0.233388 0.759346 -0.589618 -0.129058 0.563609 -0.468067 0.573800 0.475082 0.505710 -0.151383 1.196680 1.324306 0.006155 1.295256 0.288111 -0.447934 1.586001 -0.358360 0.591663 0.410242 0.210511 -0.218202 0.535133 0.678350 -0.622389 -0.298246 -1.266558 -0.119823 0.278741 0.651290 -0.045947 -1.008780 -1.340543 -0.442639 0.252427 1.181813 0.183032 1.801643 -0.292444 0.671259 -2.052883 0.088690 0.510042 -0.015479 0.929640 0.478942 -0.900958 -1.083198 -0.263737 -1.008429 -1.109872 -0.499161 -0.850581 -0.832672 -0.397245 0.636911 -0.474250 0.160862 1.158739 0.032153 0.766561 -0.968854 0.157934 -0.704866 -0.154866 1.123611 -0.232600 -0.887586 0.358895 0.169014 2.637373 -0.190737 0.877859 -0.413212 0.251046 0.107883 -1.102015 -0.470340 1.525756 0.610538 0.346345 -0.142813 -0.275590 -0.206602 0.905906 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = 0.063443 0.367375 2.114166 0.951162 -1.716976 -2.627909 -0.858121 -3.765417 1.682693 0.935853 1.793400 0.196309 0.917930 -1.007231 -0.191299 0.974255 0.650882 -0.611686 0.085877 -1.361038 -1.431284 2.179717 0.191701 -0.104398 0.589359 -3.056061 2.101681 0.500934 1.186988 1.347163 0.783274 -0.088090 -0.675920 1.370434 0.209365 1.243310 0.293803 0.684207 -0.837952 0.699939 0.582648 0.005306 1.445326 0.846111 2.293037 0.906963 0.870510 0.605335 -1.258535 -0.763762 -0.869370 1.212612 -1.521440 1.077561 -0.931481 -0.078505 0.340717 -0.966950 -0.002839 -0.684378 -0.567481 -0.933466 -1.161801 0.274351 -1.514436 0.567736 -0.911032 -1.122249 -0.354637 0.391505 1.806477 0.706735 -0.246716 0.583889 -2.384406 0.050582 0.292398 0.744551 1.845237 -0.790803 -0.571980 -0.516624 -1.605325 -1.815173 1.947960 0.983538 0.650063 0.473170 -0.468469 -0.761637 -0.647982 -0.513878 1.136838 1.354457 -1.411998 -0.452163 -0.101062 -0.481526 -1.066269 -2.120596 0.422630 -0.923677 0.821961 0.210776 -0.401612 0.007312 -0.273080 0.218446 -1.057541 -0.903883 0.556327 -1.026785 0.826539 2.302479 -0.258198 -0.919221 -0.743753 -0.598566 0.014733 1.450654 1.044184 0.085380 2.750435 1.876457 0.804202 -1.227503 -1.203760 0.581165 0.907786 1.206428 0.968324 -1.635889 -1.372659 0.406766 -0.486271 -2.433915 -0.402214 0.401235 1.594464 -0.552714 -0.520834 0.695531 -0.875809 1.115465 1.386909 0.166466 0.485286 -0.123872 -1.791089 1.611535 3.105911 -0.305666 0.932386 -1.287984 -0.266666 1.558014 -1.265092 0.355826 0.642026 -0.845731 -0.714812 -0.620735 -0.081565 1.511458 0.027636 0.187185 0.530365 1.501235 -1.302920 -1.908134 -2.429853 -0.006491 2.371475 0.312756 2.589393 -1.986994 -0.196933 -0.448633 1.861005 0.460419 -0.574182 0.673603 -1.182682 0.955570 -2.160408 -2.113744 3.601969 2.992815 1.619583 -0.331221 1.078954 1.867768 -1.632542 -1.216049 -0.580408 0.318978 0.654165 -2.297550 -1.194247 0.572321 -1.849303 -1.574152 -0.005743 0.814362 0.795692 -0.184564 0.599808 -0.305030 -0.760161 -1.390974 0.958839 -0.980188 -0.473438 0.333336 0.256066 0.064813 0.832001 -0.498383 0.348341 0.453938 -0.788739 0.589060 1.041253 1.518730 0.607272 2.399300 2.346719 -0.672051 1.424596 0.248936 -0.741016 2.254842 -0.401728 0.863188 0.684919 0.644920 0.402572 0.376206 1.303328 -1.075358 -0.495053 -1.881902 0.136500 0.665978 0.773898 -0.441579 -0.921971 -3.116809 -0.311534 0.138851 1.771695 -0.135947 2.893902 -0.512222 0.285330 -2.657740 0.057826 1.193475 -0.351543 1.242995 0.801433 -1.055708 -1.152965 -0.970544 -1.626558 -1.110425 -0.586232 -0.333903 -1.126313 -0.533392 0.888795 -1.084129 0.493478 1.455354 0.298285 1.054924 -1.244729 0.354791 -1.476815 0.429886 1.547689 0.089302 -1.656057 1.394329 0.092609 3.894908 -0.267375 0.973863 -0.641460 0.371001 -0.401640 -1.465667 -0.672853 2.090299 1.283726 0.554049 0.380187 0.132174 0.213040 1.974504 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = -1.119578 -0.373749 1.882876 0.391640 -1.474974 -2.073915 -0.999367 -3.589618 1.720001 0.967169 2.364298 0.470829 1.600663 -1.375959 0.099209 0.236182 1.010496 -1.519464 0.711922 -0.946666 -0.237860 2.839792 0.556681 0.418925 -0.070159 -2.313423 1.495105 -0.037108 1.150809 1.969707 0.728928 -0.356644 -1.097119 0.692374 0.638120 1.615673 0.656931 0.916358 -0.735834 -0.061032 0.123824 -1.289757 1.458582 -0.275805 2.500094 -0.497830 0.757217 0.355881 -1.119911 -1.331969 -0.708824 0.811582 -2.092656 0.369992 0.202224 -0.919399 0.024576 -0.031829 -0.626977 -1.346675 -0.533700 -1.704474 -0.925478 0.571552 -1.096739 1.046459 -1.440915 -0.399386 -0.451485 -0.719818 1.317377 0.958998 0.980077 1.443383 -2.548179 0.213631 0.119067 0.308901 1.156095 0.238150 -0.519108 -0.680951 -1.059077 -1.496296 1.537739 1.321644 0.114599 0.074085 -1.347712 1.003680 -0.463935 -0.054355 0.782215 0.797896 -1.570586 -0.249467 0.016763 -0.413451 -0.373151 -2.484481 0.480013 -1.131543 0.617968 0.685892 -0.530809 -0.750240 -1.380489 -0.012539 -1.801573 -1.674081 0.843243 -0.920669 0.036322 2.014776 -1.446922 0.136566 -1.335072 -0.184467 0.747454 0.979436 0.758696 1.041884 1.111578 1.791186 0.965214 -1.724931 -1.189429 1.404317 1.872743 0.501568 0.331392 -1.139305 -0.976483 0.748953 -1.014870 -2.384712 -1.353192 1.135826 1.462329 0.160284 -0.476705 0.063586 -0.756636 1.549645 1.975276 0.338352 0.193967 0.511260 -1.819334 1.467316 2.064912 -0.335082 1.442161 -0.357298 -0.240155 2.033991 -1.744963 0.660892 0.432997 0.198654 -1.023936 -0.897309 -0.357968 1.175760 0.614015 1.438777 -0.937357 1.137742 -0.640513 -2.288853 -2.529745 -0.214081 3.237741 0.861011 1.408180 -1.824739 -0.484738 0.720771 1.740123 0.889909 -1.664447 0.741540 -1.098456 1.224555 -3.101129 -2.203333 3.334823 2.739625 1.472890 0.514684 0.673267 1.952450 -2.364696 -0.560227 -0.922912 1.141790 -0.498822 -2.906604 -0.909009 0.477829 -1.870008 -1.522431 -0.093507 0.825842 0.687864 0.110951 1.165870 0.600338 0.107856 -0.587497 1.646194 -0.634474 -1.481672 -0.312618 0.162248 0.792496 0.590704 -0.481837 1.050578 0.773600 -1.120547 0.348472 1.037274 0.631234 0.392531 2.514499 2.386616 -0.907885 0.235143 -0.471895 -0.673405 1.604108 -0.637194 0.616808 0.194168 0.452122 0.750397 0.245449 1.522295 -0.999437 -1.219545 -1.486999 -0.676662 0.644187 1.740080 -0.520187 -2.637031 -2.476289 0.519069 0.626535 1.755436 -0.075866 2.888121 -0.928282 0.588455 -2.761321 0.163724 1.134896 -0.090140 1.482346 0.314082 -0.507919 -0.803192 -0.967434 -1.578923 -0.850842 -0.580724 -0.704036 -0.594921 -1.322748 1.845899 -1.118880 -0.326199 0.149849 0.004870 2.013414 0.521384 -0.069954 -1.870589 0.921863 0.509381 0.150503 -1.147402 2.360548 0.323659 3.581218 -0.585495 0.246798 -0.267285 1.595579 -0.899439 -1.500150 -0.085905 2.168590 2.084656 0.320326 -0.467984 -0.207839 0.047039 0.850661 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator(std::allocator const&) = -0.275624 0.045667 0.884089 0.202183 -0.629621 -0.897811 -0.366093 -1.441240 0.690945 0.417296 0.812308 0.184720 0.713634 -0.472123 -0.152536 -0.115888 0.389929 -0.390769 0.237799 -0.434495 -0.260235 1.052587 0.052887 0.031307 0.038193 -1.042860 1.008993 0.021391 0.480766 1.017231 0.301818 -0.040010 -0.529161 0.377566 0.181901 0.418578 0.201804 0.462484 -0.272839 0.050570 0.199749 -0.378500 0.647282 0.104400 0.864072 0.180116 -0.070909 0.201135 -0.313589 -0.521739 -0.074923 -0.115491 -0.731813 0.253685 -0.141375 -0.278398 0.058214 -0.003862 -0.024974 -0.470937 -0.014841 -0.645861 -0.355727 0.241392 -0.649498 0.273818 -0.640409 -0.411517 -0.284270 -0.515875 0.442007 0.284291 0.259891 0.271988 -1.148599 0.015682 0.100913 0.096709 0.612984 0.140056 -0.348034 -0.331299 -0.632229 -0.696825 0.497683 0.646267 0.065272 0.232351 -0.422321 -0.023054 -0.055452 0.056090 0.486421 0.488261 -0.416420 -0.076308 -0.289831 -0.115463 -0.057138 -1.145187 0.306555 -0.392923 0.340740 0.178034 -0.394921 -0.258060 -0.176735 0.037073 -0.440483 -0.538512 0.349193 -0.531410 0.224472 0.954067 -0.277182 -0.245821 -0.653628 -0.287204 0.396401 0.509729 0.250271 0.155105 0.552567 0.618919 0.421171 -0.789534 -0.505472 0.651756 0.396387 0.192109 0.177870 -0.579418 -0.365521 0.287407 -0.488486 -1.033654 -0.408262 0.105542 0.501990 -0.333540 -0.133657 0.274240 -0.529316 0.301605 0.800821 0.233415 0.203160 0.152003 -0.705244 0.476604 0.885976 -0.067818 0.404830 -0.308732 -0.351851 0.813233 -0.417635 0.286425 -0.029135 -0.090449 -0.389923 -0.274967 0.164344 0.582132 -0.062526 0.542721 -0.131362 0.397356 -0.396063 -0.793522 -0.932372 -0.051771 1.417179 0.512666 0.760863 -0.843785 0.061935 0.221208 0.806212 0.466197 -0.444343 0.332770 -0.305493 0.506170 -1.333144 -0.913286 1.160638 0.974861 0.590384 -0.002583 0.080352 0.543025 -0.579408 -0.366028 -0.422962 0.314519 -0.175231 -0.932885 -0.347853 0.189955 -0.732669 -0.474098 0.126452 0.355589 0.590949 -0.202106 0.339510 -0.079440 0.071362 -0.713203 0.700179 -0.269350 -0.387351 -0.018836 0.073226 0.113943 0.207175 -0.088679 0.244111 0.264851 -0.158463 0.240409 0.400203 0.157892 -0.070850 0.921088 0.776192 -0.525992 -0.262323 -0.105222 -0.193027 1.078764 -0.323806 0.330967 0.228781 0.396307 0.306843 0.174182 0.631423 -0.443746 -0.291476 -0.695624 -0.370493 0.323537 0.543467 -0.394207 -0.850296 -1.085290 0.229809 -0.087275 0.880087 0.045660 1.252916 -0.258050 0.304333 -0.853395 0.095406 0.541525 -0.122824 0.653700 0.222532 -0.330261 -0.235892 -0.378075 -0.745192 -0.248912 -0.260932 -0.239118 -0.322113 -0.145118 0.332102 -0.253651 -0.051132 0.249150 -0.150708 0.608365 -0.169163 0.078348 -0.726768 0.188376 0.214893 -0.029186 -0.482985 0.791170 0.153605 1.182608 -0.084944 0.280239 -0.031537 0.636593 -0.389745 -0.775185 -0.235231 0.930500 0.559914 0.254523 -0.060774 -0.054491 0.177773 0.380130 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = -0.124439 0.143665 1.027961 0.186199 -0.707372 -1.060255 -0.368678 -1.710330 0.812299 0.426675 0.820170 0.212762 0.758120 -0.496458 -0.185294 0.034423 0.457078 -0.345047 0.232975 -0.508838 -0.262209 1.191042 -0.037113 0.077731 0.074305 -1.205375 0.973246 0.102349 0.702935 1.021092 0.358230 -0.092091 -0.580614 0.420632 0.156812 0.393928 0.228108 0.443948 -0.540107 0.095209 0.084978 -0.363707 0.754603 0.099603 0.942701 0.116079 0.019917 0.280176 -0.269283 -0.502005 -0.156505 0.104551 -0.670912 0.333568 -0.123449 -0.329604 -0.031268 -0.003078 0.000919 -0.279811 -0.080101 -0.618043 -0.384132 0.244291 -0.727880 0.240997 -0.705920 -0.496863 -0.312511 -0.532980 0.482607 0.287542 0.255840 0.223178 -1.423652 0.011962 0.118972 0.186229 0.682033 0.198284 -0.252552 -0.360933 -0.691642 -0.762347 0.557193 0.841799 0.055475 0.252100 -0.569471 -0.120700 -0.104274 0.019484 0.563756 0.499801 -0.584038 -0.058302 -0.464267 -0.146184 -0.141631 -1.326777 0.329516 -0.377642 0.397408 -0.046980 -0.280331 -0.220590 -0.101964 0.031113 -0.389363 -0.534611 0.362198 -0.508817 0.233718 1.206691 -0.251860 -0.318229 -0.725057 -0.303561 0.224380 0.537099 0.274943 0.133285 0.617140 0.677517 0.521553 -0.853051 -0.564389 0.714915 0.380317 0.274199 0.247649 -0.606880 -0.388150 0.309351 -0.483562 -1.221772 -0.408521 0.133988 0.560834 -0.390096 0.006078 0.117824 -0.584577 0.386636 0.794257 0.162390 0.279817 0.133628 -0.730773 0.519344 1.048575 -0.068983 0.447459 -0.427358 -0.304209 0.785843 -0.443627 0.367732 -0.085470 -0.141419 -0.420227 -0.266534 0.176145 0.646054 -0.093655 0.486122 -0.139527 0.423242 -0.525540 -0.881668 -1.066588 -0.063730 1.444410 0.478784 0.816202 -0.883961 -0.030095 0.166844 0.857670 0.469874 -0.441539 0.467560 -0.468511 0.572098 -1.320418 -0.979833 1.300934 1.214902 0.630926 -0.073529 0.151773 0.574053 -0.793037 -0.516099 -0.406474 0.285905 -0.156387 -1.234760 -0.446564 0.221146 -0.824955 -0.458754 0.149802 0.388070 0.644688 -0.036521 0.550668 -0.116625 0.004132 -0.830029 0.825276 -0.268216 -0.354142 0.034008 0.109833 0.073841 0.318257 -0.184471 0.206706 0.363408 -0.196784 0.303688 0.393687 0.193319 -0.126088 0.986809 0.840986 -0.457373 0.005755 -0.098506 -0.296971 1.184468 -0.362565 0.395969 0.233663 0.337346 0.201807 0.237867 0.623934 -0.508588 -0.349801 -0.757710 -0.434980 0.294744 0.582432 -0.269428 -0.987310 -1.141346 0.205153 -0.120807 0.890365 0.065316 1.346401 -0.357831 0.371934 -1.031956 0.129700 0.544559 -0.103489 0.759355 0.258959 -0.424739 -0.206009 -0.371182 -0.857664 -0.414734 -0.255386 -0.357489 -0.367671 -0.223921 0.455985 -0.318197 -0.065749 0.330905 -0.201683 0.737701 -0.332391 0.104866 -0.783023 0.209661 0.383806 -0.054994 -0.543626 0.772372 0.148836 1.418491 -0.045205 0.330863 -0.033932 0.582365 -0.346982 -0.927756 -0.308571 1.046230 0.599037 0.304715 -0.133807 -0.124275 0.177852 0.419430 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = -1.737762 -0.545182 2.462877 0.505463 -1.853046 -3.333178 -1.351199 -4.691214 2.066428 1.055275 3.537000 0.496963 2.107986 -1.793859 0.766055 1.067933 1.644421 -2.105306 0.822391 -1.348582 -0.131291 3.650541 1.171483 0.556367 -0.052347 -2.458728 0.766854 0.427507 1.297527 2.084707 0.958915 -0.605335 -1.164686 0.851842 0.505803 2.457321 1.063018 1.008521 -1.299799 -0.155159 -0.407266 -1.703503 1.996693 -0.697758 3.544269 -0.866079 2.072525 0.576432 -1.976596 -1.831995 -1.484071 2.528915 -2.850933 0.451003 0.446088 -1.235476 0.201407 -0.205215 -1.153990 -2.312017 -1.033350 -1.940206 -1.465381 0.561010 -1.101298 1.540646 -1.441835 -0.515715 -0.368269 -0.330316 1.974480 1.261513 1.198113 2.417672 -3.079228 0.317529 0.227135 0.737288 1.361289 -0.012504 -0.335269 -0.871384 -0.993747 -1.836928 2.466074 1.181468 0.595645 0.152961 -2.285716 1.990549 -0.869506 -0.263746 0.788063 0.630991 -2.289437 -0.274814 1.065035 -0.780589 -1.235425 -2.913657 0.496126 -1.435995 0.597056 0.930011 0.172315 -0.998655 -3.202456 0.046780 -3.197314 -2.496497 1.165694 -1.059975 -0.761807 2.293192 -2.699981 0.808271 -1.258225 0.142682 0.700579 1.377424 1.150868 1.774433 1.118172 2.633738 1.020621 -2.144083 -1.466012 1.117089 3.414091 0.975006 0.665565 -1.254537 -1.580296 1.069870 -1.718538 -3.273180 -1.911117 2.478105 2.298122 1.181885 -1.243727 -0.028947 -0.751549 2.734616 2.473263 0.548534 0.056703 0.523829 -2.560716 2.069783 2.632563 -0.932238 2.742965 0.141781 0.184644 2.478900 -2.726077 0.812200 1.235966 -0.042809 -1.314721 -1.064961 -1.216134 1.511641 2.051505 1.890451 -1.541341 1.591007 -0.883073 -3.412473 -3.729430 -0.382340 3.954865 0.536015 1.761591 -2.226035 -1.527086 0.819982 2.222676 0.134637 -2.742776 0.730680 -1.790357 1.648669 -4.001077 -2.895559 5.138047 4.001088 2.184069 1.084580 1.518484 2.974927 -3.790613 -0.533323 -0.832393 1.643246 -0.711602 -4.477035 -1.374001 0.574887 -2.780510 -2.034971 -0.623428 1.196957 -0.257196 0.957341 1.976498 1.183068 -0.227087 0.337292 1.385607 -0.924275 -2.146450 -0.387460 0.132459 1.469671 0.718296 -1.057903 1.441894 1.197344 -2.566812 0.155042 1.158265 1.472968 1.485791 4.054316 3.572454 -0.754638 1.758102 -0.767910 -1.418844 1.390793 -0.764193 0.899050 -0.153761 0.737957 0.998871 0.139525 2.186668 -1.231696 -2.041464 -2.009868 -0.862581 1.170914 2.586021 -0.085070 -3.864358 -3.304679 0.599017 1.497541 2.392760 -0.777196 3.661047 -1.406393 0.779337 -4.451717 0.304630 1.044555 -0.159834 1.497262 0.460604 -0.695226 -1.843289 -1.223015 -2.139485 -1.774675 -0.548343 -1.013788 -0.530477 -2.461274 3.051198 -2.209705 -0.632471 -0.004987 0.264002 3.040845 1.586983 -0.275279 -2.227244 1.471582 1.314849 0.302185 -1.623015 3.322272 0.571489 5.890189 -0.709243 0.380890 -0.636947 1.835868 -0.704822 -1.486560 -0.016477 2.969447 3.632812 0.080593 -0.513501 -0.064376 -0.086460 1.273571 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.098921 0.085255 0.985878 0.452245 -0.706275 -1.536018 -0.553773 -2.031453 0.862613 0.444738 1.097216 0.042420 0.824268 -0.491363 -0.127654 0.237421 0.307628 -0.489748 0.246116 -0.579747 -0.893612 1.615957 0.095850 -0.021233 0.073873 -1.375058 1.405401 0.368662 0.500322 1.158536 0.321549 0.050491 -0.227065 0.631422 -0.102672 0.645402 -0.090582 0.660650 -0.149215 0.204780 0.465542 -0.341072 0.944387 0.196355 1.042008 0.629293 0.415829 0.300432 -0.336904 -0.557118 -0.409370 0.181856 -0.987321 0.249663 -0.735158 -0.215423 0.404128 -0.365059 -0.151203 -0.391053 -0.163915 -0.544985 -0.955968 0.253817 -0.962501 0.379564 -0.574941 -0.659876 -0.264802 -0.162156 0.769006 0.371785 -0.188587 0.063039 -1.497594 -0.032057 0.196637 0.114364 0.782273 -0.207120 -0.456119 -0.231335 -1.056923 -0.936519 1.114820 0.692628 0.369752 0.319145 -0.347357 -0.260680 -0.327211 0.088663 0.723583 0.800630 -0.266608 -0.073958 -0.009968 -0.216678 -0.616458 -1.192238 0.504002 -0.541362 0.545590 0.269845 -0.286929 -0.240722 -0.011736 -0.019682 -0.687986 -0.976829 0.006678 -0.888864 0.528986 1.183207 -0.215139 -0.305256 -0.660054 -0.486263 0.318510 0.802485 0.588630 0.038086 1.339951 0.900693 0.274821 -0.966830 -0.814948 0.493705 0.532976 0.447109 0.309179 -1.002094 -0.654437 0.218256 -0.526507 -1.451826 -0.450338 0.241720 0.547551 -0.711192 -0.372578 1.025703 -0.495062 0.356860 1.105315 0.211791 0.245051 0.114322 -0.896306 0.813619 1.549748 -0.101922 0.545689 -0.814112 -0.676053 1.395754 -0.622288 0.193791 0.378391 -0.337430 -0.713018 -0.310830 0.449385 0.758053 -0.145502 0.541859 0.322314 0.567422 -0.469042 -0.868654 -1.238437 0.128623 1.679902 0.578548 1.592001 -1.209917 0.059744 0.279915 0.917931 0.400765 -0.393796 0.344446 -0.532721 0.671770 -1.784320 -1.283134 1.583901 0.868516 0.936700 0.107244 0.416007 0.800725 -0.439150 -0.406741 -0.539348 0.609856 0.283305 -1.039488 -0.250103 0.098761 -1.060421 -0.602878 -0.132346 0.541249 0.461828 -0.331116 0.230782 -0.784995 -0.342632 -0.903727 0.645926 -0.584326 -0.253526 0.003037 -0.040604 -0.215607 0.250406 -0.045617 0.404436 0.006350 -0.253005 0.431755 0.600903 0.242850 0.042222 1.347845 1.399995 -0.888256 0.152246 -0.084105 0.015868 1.224437 -0.236462 0.439737 0.377982 0.859656 0.403701 0.219733 0.956289 -0.495461 -0.340601 -0.981677 -0.025928 0.755712 0.497760 -0.337692 -0.460298 -1.759497 -0.165716 0.019177 1.621991 -0.010092 1.572582 -0.260142 0.484765 -1.316209 0.191283 0.385545 -0.139537 0.680263 0.299369 -0.517422 -0.253228 -0.500818 -0.848089 -0.715741 -0.390638 -0.394732 -0.720684 -0.234134 0.007636 -0.643179 -0.027423 0.620161 -0.153842 0.324826 -0.527752 0.144635 -0.804906 0.147863 0.677571 -0.090872 -0.678136 0.807925 0.050440 1.891709 -0.079991 0.796282 -0.213798 0.869234 -0.419854 -0.965305 -0.272093 1.218966 0.599886 -0.036821 0.266128 0.088765 0.461390 0.684219 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.103952 0.087698 0.988399 0.440981 -0.695270 -1.534866 -0.554111 -2.026960 0.845727 0.447643 1.124947 0.018000 0.825613 -0.454497 -0.104264 0.236204 0.331886 -0.490521 0.255949 -0.579697 -0.894898 1.613406 0.098954 -0.004965 0.098702 -1.366137 1.387062 0.369542 0.474006 1.154106 0.321243 0.057064 -0.226495 0.609828 -0.104696 0.642733 -0.086297 0.645495 -0.149302 0.224314 0.463650 -0.336824 0.946009 0.199339 1.022624 0.647917 0.411122 0.300477 -0.345041 -0.564886 -0.406216 0.183886 -0.960816 0.257413 -0.732427 -0.215701 0.413048 -0.372314 -0.160238 -0.381881 -0.161064 -0.541914 -0.958449 0.253358 -0.955579 0.379010 -0.584769 -0.640845 -0.242074 -0.167334 0.766006 0.345774 -0.214648 0.059388 -1.488145 -0.031485 0.198112 0.110437 0.755770 -0.217397 -0.456355 -0.206123 -1.073930 -0.937092 1.114631 0.692895 0.376319 0.296233 -0.373056 -0.261933 -0.326092 0.088260 0.712677 0.800682 -0.269574 -0.066776 0.002959 -0.240157 -0.628759 -1.192721 0.503076 -0.542696 0.541528 0.276215 -0.287668 -0.240449 -0.012994 0.007261 -0.671671 -0.988365 0.017057 -0.867912 0.508724 1.182748 -0.215079 -0.313679 -0.679998 -0.484827 0.320057 0.805520 0.588097 0.037354 1.343071 0.895004 0.273425 -0.943375 -0.810020 0.479734 0.532186 0.430730 0.308612 -0.996041 -0.657968 0.224620 -0.549781 -1.440750 -0.477669 0.245554 0.572890 -0.714515 -0.375986 1.032516 -0.499194 0.356208 1.106060 0.212852 0.242117 0.113732 -0.894955 0.804314 1.547168 -0.122453 0.546291 -0.821098 -0.681702 1.383753 -0.591219 0.182573 0.390492 -0.316978 -0.712519 -0.313760 0.449457 0.759464 -0.124157 0.537599 0.321106 0.566681 -0.461768 -0.844625 -1.261184 0.126641 1.652037 0.574072 1.590906 -1.199710 0.054289 0.256310 0.917495 0.392841 -0.414020 0.339314 -0.528551 0.645803 -1.791790 -1.267803 1.580017 0.873633 0.941427 0.100523 0.419094 0.795917 -0.447238 -0.407194 -0.561506 0.638441 0.275703 -1.029872 -0.244471 0.095530 -1.059837 -0.586533 -0.156410 0.539958 0.461469 -0.339375 0.230523 -0.788948 -0.373427 -0.879653 0.645176 -0.586835 -0.256830 0.002725 -0.064390 -0.215853 0.250380 -0.045680 0.402049 0.006348 -0.280229 0.410494 0.601955 0.249122 0.040925 1.356795 1.400458 -0.868166 0.150258 -0.100903 -0.010452 1.218474 -0.239615 0.424242 0.345591 0.846163 0.401914 0.217963 0.959098 -0.474156 -0.377148 -0.978715 -0.002734 0.747054 0.496596 -0.337601 -0.461037 -1.779942 -0.163987 0.013990 1.669617 0.003760 1.573006 -0.260350 0.492134 -1.318239 0.195139 0.367937 -0.135585 0.656496 0.276548 -0.519604 -0.251759 -0.473991 -0.875183 -0.717487 -0.376612 -0.400504 -0.742596 -0.247456 0.012619 -0.633315 -0.029040 0.625342 -0.150546 0.329794 -0.486393 0.114462 -0.800574 0.147815 0.701357 -0.091179 -0.677613 0.797023 0.059926 1.900252 -0.076528 0.799582 -0.213827 0.844127 -0.421102 -0.964335 -0.274387 1.197505 0.626164 -0.035931 0.269240 0.087772 0.462448 0.675400 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = -0.110013 0.021039 0.871910 0.406578 -0.516605 -1.255532 -0.458132 -1.686125 0.807557 0.365758 0.906908 0.076155 0.715218 -0.497613 -0.110416 0.170121 0.252791 -0.411585 0.194818 -0.457598 -0.566779 1.430989 0.108544 -0.120727 0.057314 -1.266809 1.113136 0.309579 0.486488 1.035403 0.240051 0.032432 -0.178284 0.524877 -0.131803 0.519465 -0.009123 0.504534 -0.202695 0.103260 0.348313 -0.148351 0.766243 0.143259 0.929103 0.452137 0.323561 0.234455 -0.233304 -0.468674 -0.341393 0.219336 -0.793921 0.244908 -0.579012 -0.137956 0.296199 -0.318561 -0.145310 -0.441328 -0.092816 -0.339527 -0.751605 0.187741 -0.795766 0.325077 -0.412389 -0.507606 -0.209717 -0.188624 0.659526 0.336339 -0.076043 -0.013740 -1.286832 0.000000 0.117822 0.124447 0.658084 -0.142608 -0.399157 -0.215386 -0.810672 -0.759445 0.912473 0.622851 0.247170 0.316600 -0.264921 -0.245514 -0.293234 0.033239 0.563904 0.634640 -0.258458 -0.060454 0.014301 -0.136110 -0.378381 -0.895751 0.399602 -0.459157 0.406086 0.248308 -0.131308 -0.155033 0.051647 0.032853 -0.579599 -0.761505 0.108539 -0.662619 0.365511 1.026253 -0.193706 -0.239967 -0.535554 -0.353265 0.204402 0.735970 0.404406 0.097425 1.034843 0.773803 0.245584 -0.806519 -0.631693 0.520660 0.513680 0.386583 0.252664 -0.871732 -0.517439 0.176812 -0.407352 -1.225154 -0.390228 0.220531 0.504017 -0.547998 -0.379219 0.833158 -0.393259 0.387809 0.907406 0.110768 0.211079 0.110646 -0.793214 0.719148 1.377777 -0.087453 0.447592 -0.686927 -0.547154 1.120798 -0.548402 0.207029 0.234513 -0.258365 -0.500856 -0.278666 0.401151 0.643677 -0.099320 0.493973 0.191552 0.484141 -0.387846 -0.810436 -1.082865 0.020310 1.342096 0.443924 1.390267 -0.959265 -0.031204 0.138791 0.801386 0.292269 -0.292733 0.300581 -0.518860 0.570496 -1.536285 -1.092773 1.424169 0.867432 0.815773 0.101244 0.409321 0.704813 -0.329484 -0.310132 -0.385514 0.466471 0.277363 -0.886743 -0.195759 0.059273 -0.892420 -0.607756 -0.072266 0.412314 0.335905 -0.208749 0.199921 -0.590212 -0.311067 -0.749165 0.552629 -0.529438 -0.204449 -0.005616 -0.002668 -0.183058 0.246842 -0.110062 0.342129 0.123492 -0.205540 0.347768 0.484919 0.216274 0.066076 1.019833 1.191751 -0.666773 0.226781 -0.030217 -0.046236 1.122998 -0.207823 0.339240 0.301948 0.637009 0.367345 0.195041 0.688562 -0.429235 -0.216925 -0.856525 0.010361 0.617675 0.453495 -0.328745 -0.494404 -1.379603 -0.152670 0.024114 1.274480 0.005137 1.375660 -0.287585 0.374969 -1.215323 0.152668 0.410397 -0.085451 0.555548 0.276193 -0.424008 -0.405891 -0.397162 -0.688703 -0.588562 -0.393751 -0.453404 -0.570442 -0.283853 0.163434 -0.585382 0.027100 0.611976 -0.088598 0.346171 -0.502301 0.124497 -0.725470 0.118552 0.404127 -0.043320 -0.586236 0.641056 0.010811 1.573566 -0.156331 0.668370 -0.236250 0.813375 -0.430984 -0.843496 -0.208045 1.039586 0.518913 -0.033407 0.226035 0.035457 0.299864 0.581414 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = 0.090042 0.171942 1.336700 0.077186 -0.496254 -1.505774 -0.633889 -2.606997 1.108015 0.641256 1.286942 -0.092485 0.898458 -0.403629 -0.166369 0.494541 0.235455 -0.761322 0.422283 -0.570116 -0.727071 1.938499 -0.062538 0.390748 0.095356 -2.068033 1.286250 0.319393 0.845782 1.155172 0.326343 -0.037349 -0.162874 0.684833 -0.102188 0.781075 0.185757 0.659572 -0.304549 0.349805 0.256746 -0.091954 0.909026 0.166706 1.280779 0.588814 0.343080 0.305931 -0.088421 -0.575938 -0.367841 0.495729 -0.921038 0.248484 -0.631626 -0.275026 0.103586 -0.522661 -0.226363 -0.040202 -0.269834 -0.371404 -0.937458 0.358845 -0.960081 0.411096 -0.596369 -0.518061 -0.266296 -0.219458 0.878363 0.445839 -0.115732 0.178627 -1.847870 0.137196 0.222748 0.068232 0.761850 -0.387376 -0.439044 -0.062107 -1.092564 -1.143393 1.321625 1.385979 0.303482 0.162651 -0.486411 -0.240377 -0.543246 -0.024070 0.739325 1.058948 -0.528342 -0.141535 -0.176308 -0.313785 -0.709329 -1.364912 0.472327 -0.716990 0.640587 0.111275 -0.086399 -0.242704 0.161620 0.064410 -0.598893 -0.964878 0.077206 -0.809627 0.692771 1.532765 -0.242526 -0.299042 -0.894016 -0.548146 0.135711 0.839164 0.574810 0.017810 1.616398 0.973203 0.454728 -1.020913 -0.967744 0.748495 0.585940 0.468118 0.302666 -1.349463 -0.601618 0.200745 -0.473599 -1.718519 -0.591369 0.120723 0.554880 -1.015427 -0.162921 0.904446 -0.457435 0.550489 1.274861 -0.046538 0.279264 0.181539 -0.925738 0.904634 1.931742 -0.127346 0.573014 -1.170787 -0.618834 1.293869 -0.816406 0.423722 0.402897 -0.143564 -0.791196 -0.499119 0.541803 0.891196 -0.202515 0.710870 0.168096 0.602589 -0.439901 -0.868485 -1.539712 -0.022316 1.586871 0.342541 1.723134 -1.222213 -0.177434 0.177275 1.208497 0.563014 -0.381004 0.543506 -0.771406 0.691128 -1.616279 -1.399841 1.731346 1.438447 1.120554 0.013916 0.639999 0.926257 -0.832512 -0.510384 -0.492838 0.738606 0.263075 -1.582212 -0.398962 0.109465 -1.106030 -0.677807 -0.356329 0.522058 0.485070 0.070995 0.510536 -0.623837 -0.498198 -0.933302 0.902748 -0.583069 -0.366332 -0.091025 0.075913 -0.366175 0.463982 -0.371599 0.471576 0.369300 -0.379115 0.577201 0.872334 0.141559 -0.076401 1.369904 1.465970 -0.766638 0.490650 -0.175189 0.079491 1.053475 -0.190388 0.342616 0.381783 0.540730 0.195114 0.374827 0.801751 -0.551760 -0.566086 -1.066723 0.113229 0.568095 0.493317 0.176032 -0.790185 -1.740487 -0.281369 0.068724 1.738300 0.263227 1.821072 -0.242106 0.670274 -1.614445 0.220187 0.321424 -0.099879 0.766785 0.289461 -0.590767 -0.287307 -0.461666 -0.979814 -1.310053 -0.405561 -0.738128 -0.850522 -0.668599 0.446424 -0.714958 -0.028580 0.688308 0.101848 0.479855 -0.627079 0.110427 -1.115554 0.314026 0.914311 -0.203339 -0.731171 0.632099 -0.017950 2.210081 -0.377111 0.910864 -0.235059 0.892051 -0.420756 -1.116704 -0.236893 1.375317 0.652981 0.048545 -0.024768 -0.186816 0.351628 0.746574 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__fill_n_a(int*, unsigned long, int const&, std::random_access_iterator_tag) = -0.831113 -0.065024 2.533638 1.410761 -1.527929 -2.716734 -1.217644 -3.615267 1.951430 0.710935 2.305438 0.373828 1.387860 -1.425263 -0.045534 -0.056998 0.766238 -1.127090 0.078651 -1.134662 -0.697585 2.954956 0.764568 -1.340695 0.219920 -3.132163 2.088190 1.062328 0.918326 2.116608 0.428212 0.047301 -0.714427 1.447666 -0.575228 1.008781 0.496487 0.871283 -0.659244 -0.187142 1.035277 0.519098 1.910784 -0.024362 2.529170 0.723297 0.934682 0.525330 -1.341198 -1.108743 -0.537941 1.179505 -1.751871 0.859884 -0.464594 0.287882 0.595370 -1.461017 -0.483252 -1.941668 -0.016884 -0.299722 -1.422492 0.231117 -1.519590 0.664048 -0.072997 -1.106204 0.193475 -0.720805 1.561514 0.564673 -0.051331 -0.153502 -2.177049 0.203668 0.379958 0.608774 1.475480 -0.185668 -0.844160 -0.521392 -1.369646 -1.555107 1.498839 1.092554 0.585548 0.752744 -0.492316 -0.366867 -0.216091 -0.325249 0.766090 1.345610 -1.077679 -0.317628 0.384582 -0.551859 -1.092150 -1.218600 0.738747 -1.089749 0.902617 1.101165 -0.696666 -0.194707 -0.315724 0.155782 -1.586360 -1.465000 0.425893 -1.378433 0.882954 2.274658 -0.868435 -0.473458 -1.064345 -0.709655 0.372445 1.854740 0.374630 0.436067 2.316129 2.177332 0.568396 -1.949898 -1.205496 0.917747 1.684641 1.174830 0.825088 -2.162800 -1.118423 0.343518 -0.896925 -2.911722 -0.758023 0.371258 1.563925 -0.325034 -1.674340 1.588272 -0.899027 1.753517 1.701500 0.442902 0.311761 0.246877 -2.069587 1.813977 3.215277 -0.352977 1.310628 -1.181523 -1.309828 2.294632 -1.417406 0.842666 0.752977 -0.703458 -0.722812 -0.823501 0.584179 1.638916 0.223723 1.203185 0.096710 1.034499 -0.556225 -2.494642 -3.045432 -0.054655 2.507903 0.942665 3.611650 -2.212728 -0.747838 -0.303063 2.247544 0.028968 -0.924310 0.562210 -1.314130 1.370293 -3.175500 -2.662191 3.770689 2.977914 1.629701 0.467992 1.811848 1.245793 -0.867000 -0.565881 -0.707233 0.940919 0.871915 -1.485010 -0.028718 0.255068 -2.084597 -1.650491 -0.121624 0.866036 0.602048 -0.664626 0.204683 -0.494252 -1.041538 -1.469660 0.876084 -1.310686 -0.582320 0.070996 0.095811 -0.012521 0.785417 -0.541178 0.149975 0.224236 -0.857768 0.568158 0.974048 1.177879 0.638630 2.182611 2.653714 -1.083535 1.467157 0.205440 -0.451247 3.029509 -0.720601 0.710627 0.719990 1.378393 0.943190 0.476733 1.361786 -1.059862 -0.021651 -2.069050 0.389379 1.046505 1.315528 -1.952443 -1.621867 -3.048869 -0.507072 0.459638 2.161401 -0.359963 3.578351 -0.621961 0.468771 -3.795502 0.053027 1.325380 -0.058807 1.106247 0.807617 -1.258103 -2.561445 -0.802000 -1.629888 -0.924355 -0.810223 -1.022106 -1.250667 -0.936167 1.451194 -1.358935 0.357986 2.035555 -0.154158 0.987617 -0.761123 0.273839 -1.286939 -0.315755 0.453273 0.144080 -1.495871 1.914473 -0.012045 4.086044 -0.567801 1.611656 -0.849692 1.900513 -0.751176 -1.847616 -0.505674 2.514636 1.525245 0.102830 0.399386 0.097171 -0.165160 1.728637 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = -0.007387 0.154942 0.387716 0.115062 -0.111430 -0.472541 -0.136518 -0.476003 0.172730 0.060034 0.270979 -0.061523 0.236383 -0.060308 -0.020121 -0.017672 0.050736 -0.014339 0.100714 -0.113013 -0.221377 0.326740 0.020749 -0.108896 0.077730 -0.388247 0.432055 0.172874 0.122164 0.423576 -0.004079 -0.003077 -0.053137 0.227034 -0.106614 0.016591 0.075899 0.174069 -0.054624 0.131946 0.049357 0.082980 0.225152 0.093247 0.195534 0.419813 -0.066314 0.131433 -0.070471 -0.114861 -0.035762 0.003717 -0.224906 0.158822 -0.235321 -0.012353 0.135474 -0.102668 0.012820 -0.267452 0.054946 -0.043943 -0.175543 0.047155 -0.334952 0.029854 -0.116546 -0.275290 -0.031145 -0.014903 0.201525 0.100920 -0.031256 -0.025189 -0.364390 0.040077 0.094496 0.124309 0.243623 -0.176995 -0.117318 0.009374 -0.272347 -0.291643 0.223512 0.156844 0.192509 0.143673 -0.024733 -0.197127 -0.019305 0.013572 0.173007 0.259594 0.122457 0.055981 -0.103552 0.009496 -0.119674 -0.383569 0.094076 -0.141175 0.136721 0.111909 0.014185 -0.066660 0.037311 0.161042 -0.093980 -0.247635 0.132218 -0.230341 0.059390 0.307625 0.017881 -0.103826 -0.088709 -0.164688 0.086034 0.337963 0.090281 -0.037604 0.217788 0.266290 0.051083 -0.224949 -0.195768 0.096954 0.106870 0.173405 0.156601 -0.368289 -0.171536 0.036635 -0.233688 -0.418368 -0.032365 -0.004945 0.157618 -0.263718 -0.234131 0.398274 -0.253157 0.046449 0.252646 0.142986 0.098258 -0.028962 -0.244992 0.234042 0.445621 -0.103750 0.153190 -0.171147 -0.239040 0.259839 -0.051411 0.074400 0.016985 -0.151199 -0.028616 -0.069763 0.144136 0.269454 0.074972 0.191034 0.195071 0.094401 -0.218693 -0.266341 -0.291389 0.036118 0.465156 0.009834 0.504529 -0.297156 -0.060003 -0.034688 0.382348 -0.013748 -0.018632 0.017663 -0.083916 0.180018 -0.521783 -0.358567 0.418558 0.258109 0.253318 -0.042063 0.069941 0.210140 0.006885 -0.155039 -0.122270 0.072674 -0.017558 -0.239621 -0.179587 -0.009644 -0.282652 -0.071621 0.030713 0.131119 0.155661 -0.044380 -0.107019 -0.199097 -0.192111 -0.302558 0.067510 -0.242056 0.013994 0.093529 -0.034543 -0.078070 0.069825 -0.074335 0.004205 0.134322 -0.112770 0.091245 0.131089 0.115467 0.032039 0.415884 0.266015 -0.138983 0.010200 0.100464 -0.074286 0.550029 -0.077292 0.145315 0.116876 0.307391 0.101829 0.108102 0.245852 -0.138626 -0.104343 -0.406038 -0.044419 0.235361 0.097852 -0.107085 -0.147109 -0.440254 -0.044771 -0.009635 0.491717 -0.008479 0.479319 0.030094 0.134932 -0.307273 0.040506 0.114700 -0.097123 0.159621 0.143125 -0.177140 -0.313070 -0.111305 -0.265689 -0.229105 -0.178541 -0.169464 -0.133642 0.023181 -0.100419 -0.094851 0.056649 0.270883 0.003115 0.045845 -0.185873 0.024119 -0.225275 -0.036281 0.226808 -0.080931 -0.236797 0.153731 0.062189 0.535624 -0.026508 0.262218 -0.123671 0.127050 -0.043920 -0.172822 -0.123430 0.369974 0.122532 0.063216 0.148048 0.100855 0.086555 0.216711 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.079449 0.206517 0.268155 0.017012 -0.125796 -0.417123 -0.079739 -0.453755 0.045035 0.069187 0.240076 -0.125907 0.225379 0.020635 -0.028221 0.029290 0.079669 0.069727 0.087878 -0.121741 -0.316023 0.116258 -0.133447 0.073104 0.068907 -0.133183 0.370355 0.131254 0.032385 0.246735 0.064759 0.019350 -0.094856 0.132717 -0.054320 0.029786 0.052861 0.208949 -0.025864 0.123966 -0.006898 -0.106593 0.152768 0.091482 0.094666 0.395823 -0.081752 0.132374 -0.045419 -0.094556 0.016202 -0.082909 -0.151827 0.082737 -0.227706 -0.135200 0.122201 0.008430 0.079691 -0.062883 0.045185 -0.171149 -0.170246 0.057890 -0.261483 0.016014 -0.138669 -0.304262 -0.072896 -0.012029 0.111384 0.015823 -0.092545 0.074933 -0.299894 -0.036452 0.136013 0.034041 0.199440 -0.140027 0.006709 -0.049208 -0.287833 -0.246818 0.254735 0.148877 0.231106 0.135539 -0.119559 -0.116633 0.027997 0.045961 0.258821 0.208259 0.152191 0.022450 -0.152711 -0.023225 -0.186024 -0.482549 0.140923 -0.079736 0.156191 0.002262 -0.063947 -0.045067 0.009295 0.120013 -0.053297 -0.225170 0.032653 -0.273982 0.124406 0.246060 0.032292 -0.148984 -0.117017 -0.203723 0.121593 0.168960 0.167878 -0.087833 0.194908 0.140726 0.056362 -0.218721 -0.244167 0.033207 -0.013716 0.132530 0.092013 -0.271842 -0.146293 0.069381 -0.318115 -0.353460 -0.044055 -0.071092 0.094189 -0.316730 -0.090170 0.336509 -0.242834 -0.118063 0.198900 0.184449 0.064411 -0.015444 -0.142706 0.067463 0.170432 -0.086875 0.139313 -0.073772 -0.146948 0.078103 0.086446 -0.023803 0.067865 -0.181789 -0.094573 -0.001554 0.084828 0.201011 0.052240 0.129888 0.142176 0.096407 -0.318825 -0.125210 -0.161486 0.084172 0.467492 0.011265 0.263094 -0.278329 -0.011811 0.092984 0.318389 -0.023075 -0.047249 0.028653 -0.026053 0.153824 -0.266808 -0.251923 0.185351 0.039081 0.217847 -0.107771 -0.055730 0.087618 -0.103362 -0.146330 -0.126429 0.046118 -0.072852 -0.304432 -0.226903 0.002507 -0.229819 0.066500 0.010702 0.161026 0.111015 0.012396 0.042980 -0.221682 -0.041169 -0.249942 0.067910 -0.084970 0.060415 0.062462 -0.029116 -0.042031 0.009612 -0.073164 -0.001718 0.056359 -0.084674 0.115079 0.109145 0.039010 -0.024551 0.500780 0.126037 -0.192978 -0.091084 -0.019971 -0.052378 0.300840 -0.026328 0.169951 0.085102 0.316188 0.025944 0.060054 0.322954 -0.116513 -0.185767 -0.306857 -0.252141 0.223189 0.048861 0.117373 -0.016312 -0.410432 0.018805 -0.109737 0.490091 -0.022041 0.284307 0.065579 0.176825 -0.044623 0.062835 -0.008696 -0.184616 0.117567 0.081961 -0.140136 -0.060246 -0.084718 -0.278648 -0.357009 -0.070996 -0.014925 -0.118358 0.083921 -0.236142 0.001594 -0.054322 0.062360 0.004869 -0.026394 -0.134644 0.040548 -0.106463 0.038890 0.349214 -0.133153 -0.207668 0.099462 0.139583 0.471130 0.127328 0.192219 -0.024170 -0.005825 0.024467 -0.114304 -0.148248 0.274858 0.120003 0.094091 0.079690 0.122223 0.163482 0.150392 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.078431 0.062548 0.893576 0.394529 -0.577149 -1.340553 -0.427709 -1.698056 0.798217 0.393184 0.905306 0.113680 0.779418 -0.492311 -0.129854 0.176610 0.367911 -0.337847 0.117262 -0.549215 -0.565861 1.350916 0.049851 -0.132392 0.084047 -1.194698 1.093995 0.342763 0.458363 1.036017 0.325969 0.083874 -0.267384 0.509239 -0.157113 0.509796 -0.007288 0.514092 -0.283222 0.073574 0.342474 -0.170280 0.818014 0.199612 0.942751 0.478085 0.297803 0.272072 -0.245960 -0.519559 -0.288700 0.173169 -0.728355 0.263217 -0.604565 -0.130358 0.298237 -0.289068 -0.058203 -0.416839 -0.046521 -0.350303 -0.770655 0.178237 -0.798565 0.293373 -0.409728 -0.605194 -0.280911 -0.333406 0.610370 0.235908 -0.148518 -0.060150 -1.334466 -0.087859 0.132158 0.107221 0.707185 -0.052081 -0.424328 -0.338740 -0.851546 -0.758799 0.898479 0.639831 0.255349 0.450520 -0.373273 -0.303667 -0.257771 0.047820 0.656372 0.601248 -0.304211 -0.101269 0.038369 -0.186670 -0.412586 -0.920095 0.485077 -0.379615 0.416433 0.134094 -0.160722 -0.129596 -0.009585 -0.008893 -0.584764 -0.673707 0.116317 -0.718630 0.372607 1.072702 -0.200466 -0.328477 -0.616925 -0.399457 0.242040 0.738771 0.401310 0.036336 1.027657 0.717882 0.266442 -0.875794 -0.633609 0.507949 0.466025 0.378530 0.266744 -0.809954 -0.530095 0.229569 -0.531709 -1.258671 -0.397819 0.176658 0.536165 -0.559154 -0.344561 0.819904 -0.460742 0.316115 0.890578 0.158280 0.234967 0.090119 -0.810590 0.608733 1.298312 -0.089467 0.486412 -0.643256 -0.540962 1.049896 -0.460617 0.200149 0.226945 -0.389943 -0.555625 -0.183595 0.424693 0.658094 -0.119824 0.462385 0.145876 0.501886 -0.467179 -0.781381 -1.120264 -0.012849 1.363524 0.536750 1.355546 -0.996592 0.018210 0.116417 0.802815 0.247592 -0.326394 0.338133 -0.514389 0.578097 -1.507015 -1.062821 1.424741 0.893168 0.858619 0.049874 0.374904 0.586692 -0.330857 -0.335041 -0.344461 0.409672 0.270239 -0.909686 -0.173856 0.083836 -0.924656 -0.573674 -0.062759 0.457940 0.324230 -0.215079 0.362541 -0.652397 -0.226383 -0.824119 0.513212 -0.449350 -0.163182 0.015648 0.017711 -0.178975 0.203727 -0.107585 0.281053 0.103601 -0.181745 0.362257 0.438148 0.236292 0.070292 1.049015 1.133508 -0.721698 0.223912 -0.105316 -0.100675 1.147725 -0.242706 0.410095 0.294741 0.714193 0.380105 0.166760 0.720583 -0.445044 -0.158597 -0.827780 -0.123802 0.669755 0.458231 -0.316644 -0.494757 -1.421615 -0.080184 -0.116998 1.324368 -0.069739 1.360129 -0.317329 0.417387 -1.168688 0.196425 0.407992 -0.133564 0.508565 0.303712 -0.478224 -0.359360 -0.370679 -0.792568 -0.614838 -0.307265 -0.377231 -0.575140 -0.201844 0.123104 -0.588972 -0.018837 0.592616 -0.172079 0.365709 -0.521552 0.167803 -0.656116 0.105104 0.455934 -0.051670 -0.587726 0.616064 0.063490 1.551050 -0.015057 0.720035 -0.159386 0.810914 -0.413365 -0.928715 -0.313085 1.059681 0.550134 -0.007776 0.243396 0.026031 0.386315 0.582454 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__enable_if<__is_scalar::__value, void>::__type std::__fill_a1(int*, int*, int const&) = -0.669732 0.263204 2.186657 1.723982 -1.880753 -2.570331 -1.057615 -3.052452 1.431953 0.406616 1.937976 0.277049 1.108833 -1.173045 -0.079224 -0.372822 0.850837 -0.501995 -0.107668 -1.102142 -1.208243 2.144412 0.524545 -1.593550 0.322636 -2.109050 2.210353 1.159396 0.521988 1.654388 0.456915 0.130026 -0.916502 1.331959 -0.550985 0.525033 0.216526 0.853383 -0.606021 -0.216618 1.185447 0.200296 1.868904 0.023671 1.856289 0.893028 0.827290 0.599636 -1.581189 -0.845527 -0.419381 0.818368 -1.430113 0.927525 -0.346546 0.216886 0.873834 -1.278947 -0.196033 -1.623985 0.084771 -0.596404 -1.281264 0.112629 -1.480378 0.408575 -0.065083 -1.351178 0.391806 -0.559328 1.256893 0.216828 -0.311367 -0.327021 -1.654071 0.023867 0.520270 0.657079 1.409662 0.089277 -0.424939 -0.540296 -1.444515 -1.337893 1.121174 0.446726 0.767415 0.698825 -0.442198 -0.569853 0.262921 -0.269431 0.805138 1.126490 -0.757652 -0.174620 -0.030212 -0.551403 -1.260966 -1.369484 0.734563 -0.823397 0.938459 0.991189 -1.199695 -0.120542 -0.139637 0.115692 -1.169044 -1.402167 0.164873 -1.453526 0.975499 2.010250 -0.541397 -0.762331 -0.832816 -0.831834 0.377785 1.533847 0.459297 0.200851 2.082866 1.932541 0.464993 -1.734604 -1.123020 0.452045 1.119008 1.153239 0.851651 -1.805802 -1.061345 0.351040 -0.928584 -2.587803 -0.456800 0.142955 1.441054 -0.218823 -1.548254 1.463394 -1.024675 1.233695 1.186486 0.801630 0.294586 0.119990 -1.696617 1.464144 2.436137 -0.314834 1.089764 -0.793594 -1.348423 1.926385 -0.761840 0.536879 0.692069 -0.880130 -0.583967 -0.584623 0.447329 1.483853 0.097611 0.711353 0.448758 0.841490 -0.839551 -2.223563 -2.542448 0.397868 2.387215 1.020370 3.184391 -2.129436 -0.516955 -0.158262 1.993767 -0.197951 -0.827498 0.435622 -0.945171 1.263379 -2.585209 -2.339569 3.034178 2.072193 1.067676 0.214568 1.434182 0.712946 -0.718564 -0.745853 -0.956576 0.708347 0.823791 -0.882984 -0.000793 0.293431 -1.864479 -1.035316 0.190737 0.872833 0.879602 -1.065007 -0.050117 -0.733359 -0.930869 -1.567119 0.739178 -1.064487 -0.213821 0.276857 -0.076454 0.075768 0.693428 -0.206315 -0.290743 -0.329014 -0.653135 0.421268 0.608920 1.210564 0.422026 2.298423 2.140393 -1.042999 1.103000 0.333545 -0.560803 3.132956 -0.757489 0.798594 0.677738 1.641563 0.782323 0.414690 1.596676 -0.947843 -0.051068 -1.930721 0.030443 0.904390 1.079648 -2.355137 -0.958108 -3.033822 -0.456344 0.217296 1.922877 -0.501271 3.059478 -0.460544 0.270580 -3.065486 -0.015701 1.200628 -0.236999 1.075239 0.698695 -1.276862 -2.168036 -0.710587 -1.577860 -0.480882 -0.607631 -0.495277 -1.207251 -0.298905 0.747296 -0.858447 0.331066 1.935082 -0.453849 0.551440 -0.777567 0.279418 -0.681755 -0.615586 0.620693 0.054404 -1.449534 1.952982 0.152818 3.728635 -0.000238 1.406605 -0.738900 1.251901 -0.432650 -1.617770 -0.663533 2.151600 1.269136 0.261224 0.501957 0.476025 -0.146950 1.630143 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__alloc_traits, int>::_S_select_on_copy(std::allocator const&) = -0.014500 0.201318 0.701107 0.129666 -0.523184 -0.893013 -0.278355 -1.269091 0.464018 0.281106 0.619216 0.034523 0.544330 -0.247226 -0.117970 0.075976 0.292665 -0.182623 0.185488 -0.384264 -0.454523 0.755167 -0.090131 0.119871 0.073830 -0.735145 0.822614 0.147269 0.382860 0.700674 0.257443 -0.031605 -0.368125 0.335666 0.070891 0.284095 0.104224 0.402162 -0.267738 0.163543 0.094336 -0.330779 0.546348 0.116400 0.590465 0.340673 0.025132 0.251358 -0.208077 -0.341866 -0.113497 0.002981 -0.519911 0.207090 -0.254295 -0.270959 0.094434 -0.025817 0.029076 -0.142150 -0.063563 -0.503209 -0.384426 0.189396 -0.584785 0.165501 -0.506031 -0.480094 -0.225197 -0.248518 0.361791 0.179799 0.032567 0.195956 -0.974886 -0.033039 0.159181 0.117241 0.511132 -0.011337 -0.147551 -0.218504 -0.611214 -0.590933 0.507171 0.531830 0.201897 0.195535 -0.375612 -0.122761 -0.062113 0.053608 0.498970 0.429914 -0.222986 -0.031679 -0.325872 -0.117448 -0.285704 -1.056993 0.292077 -0.263473 0.351707 -0.018585 -0.243126 -0.178373 -0.074092 0.041044 -0.289471 -0.489806 0.143706 -0.503005 0.269160 0.818943 -0.122356 -0.260265 -0.480835 -0.323019 0.219187 0.392491 0.320370 0.000969 0.558833 0.490825 0.297645 -0.621529 -0.508901 0.363457 0.202697 0.243063 0.208536 -0.511498 -0.342789 0.209645 -0.452652 -0.902773 -0.251629 0.043588 0.350792 -0.429926 -0.034734 0.316202 -0.464424 0.128297 0.591290 0.219540 0.187221 0.053654 -0.498295 0.359408 0.707982 -0.076647 0.348266 -0.320014 -0.278319 0.574991 -0.229673 0.161984 0.067481 -0.209600 -0.373563 -0.143849 0.149780 0.472001 -0.042295 0.333050 0.068924 0.311537 -0.471165 -0.546327 -0.684735 0.068967 1.137983 0.304226 0.639553 -0.713451 0.021948 0.201796 0.650255 0.283926 -0.292533 0.274985 -0.266216 0.422675 -0.911388 -0.714281 0.835537 0.636686 0.490031 -0.082228 0.054407 0.395666 -0.516384 -0.377583 -0.334616 0.233343 -0.109211 -0.861358 -0.368895 0.131439 -0.614830 -0.210297 0.057333 0.351058 0.441726 -0.060419 0.313851 -0.261293 -0.030724 -0.626229 0.498390 -0.204381 -0.169945 0.061410 0.025254 0.000681 0.165178 -0.099160 0.144971 0.156518 -0.157308 0.265007 0.316489 0.132273 -0.084890 0.906460 0.591296 -0.436602 -0.062720 -0.080813 -0.141689 0.794508 -0.199468 0.349975 0.204919 0.434747 0.130708 0.153191 0.605047 -0.352143 -0.325979 -0.594755 -0.367855 0.331181 0.349530 -0.073944 -0.494463 -0.967337 0.103094 -0.108719 0.851712 0.009145 0.911352 -0.138610 0.326864 -0.596447 0.116696 0.263946 -0.168582 0.504397 0.187196 -0.324102 -0.061014 -0.284938 -0.646369 -0.457929 -0.174108 -0.161877 -0.316082 -0.045307 0.041598 -0.190312 -0.094558 0.207763 -0.130778 0.347299 -0.259341 0.088214 -0.488118 0.137055 0.495473 -0.118275 -0.428100 0.529000 0.161943 1.115885 0.083425 0.321511 -0.015031 0.321974 -0.155822 -0.584983 -0.254948 0.758899 0.395630 0.189683 -0.005068 0.021660 0.256643 0.333267 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy_a<__gnu_cxx::__normal_iterator > >, int*, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*, std::allocator&) = -0.774982 -0.176496 2.105457 -0.147568 -1.475015 -2.572076 -1.189763 -4.521068 1.744280 1.194646 2.743971 0.142882 1.739330 -1.021637 0.148508 0.801521 1.058869 -1.849601 0.870016 -1.246338 -0.703189 2.958322 0.220427 1.149763 0.046494 -2.859018 1.617978 0.081471 1.110325 1.894968 0.975372 -0.295825 -1.127776 0.784310 0.668305 2.037713 0.904001 1.027786 -0.719630 0.421080 0.028434 -1.207257 1.567906 -0.162778 2.807894 0.070454 0.778962 0.656651 -0.934275 -1.485168 -0.643214 0.988335 -2.120448 0.215623 -0.082544 -1.001597 -0.081658 -0.407332 -0.701823 -0.631694 -0.764818 -1.783669 -1.311425 0.821882 -1.208517 1.177127 -1.527684 -0.508881 -0.559919 -0.649852 1.514287 0.825879 0.508180 1.771045 -2.875328 0.085828 0.233974 0.216944 1.227070 -0.372014 -0.566925 -0.542025 -1.487692 -1.804327 2.003646 2.028414 0.369432 -0.015427 -1.575846 1.012446 -0.775422 -0.148698 1.205146 1.161411 -1.618515 -0.555487 0.066449 -0.717810 -1.113393 -2.871605 0.815303 -1.124176 0.958900 0.361748 -0.482150 -0.887032 -1.354030 -0.051194 -1.950957 -1.805149 0.596442 -1.187658 0.633263 2.464914 -1.434090 0.027839 -1.802974 -0.632042 0.732460 1.086514 1.142242 0.757315 1.860529 2.002050 0.922941 -1.890279 -1.790802 1.289879 1.862533 0.594902 0.471118 -1.674583 -1.169644 0.811055 -1.365458 -2.681987 -1.550405 0.795471 1.479973 -0.477294 -0.184112 0.390320 -0.863303 1.432940 2.222571 0.270512 0.143862 0.412361 -1.963392 1.563748 2.406143 -0.346139 1.652279 -0.877988 -0.175922 1.962990 -1.797030 0.569890 1.003321 -0.012592 -1.657470 -0.785770 -0.210291 1.203896 0.617691 1.591295 -0.833909 1.390181 -0.837123 -1.989124 -2.792278 -0.127527 3.435825 0.642648 1.584886 -2.171446 -0.515576 0.708374 2.162666 1.068241 -1.776353 0.934226 -1.284626 1.257670 -2.685312 -2.229992 3.389794 3.020534 1.965617 0.378661 0.828014 2.060596 -2.894597 -0.600665 -0.893556 1.428732 -0.505625 -3.557100 -1.034712 0.472977 -2.023965 -1.507033 -0.597188 1.198846 0.642182 0.502349 1.582102 0.365015 -0.017388 -0.756280 1.700508 -0.483654 -1.456407 -0.269276 0.146643 0.515887 0.571033 -0.730874 1.247642 0.880528 -1.268972 0.752317 1.554806 0.549206 0.323683 2.988803 2.402582 -1.143484 0.578938 -0.823311 -0.436467 1.054045 -0.346268 0.892626 0.268976 0.518322 0.561754 0.182591 1.738559 -1.026066 -1.599542 -1.520804 -0.705587 0.783244 1.744643 0.444654 -2.606337 -3.034036 0.379656 0.543642 2.518263 0.037146 2.956391 -0.692474 1.011417 -2.768034 0.335816 0.761066 -0.241644 1.286206 0.254782 -0.629327 -0.456822 -0.888485 -2.038825 -2.029653 -0.458064 -0.702421 -0.987983 -1.514876 1.818799 -1.138724 -0.645041 0.149987 0.223815 1.795113 0.454073 -0.062059 -1.983092 1.051487 1.333065 -0.162546 -1.305296 2.163795 0.436824 4.186956 -0.427710 0.621264 -0.022239 1.494711 -0.702060 -1.657841 -0.175101 2.352779 2.156532 0.227774 -0.563251 -0.389545 0.479121 0.913564 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = -0.014500 0.201318 0.701107 0.129666 -0.523184 -0.893013 -0.278355 -1.269091 0.464018 0.281106 0.619216 0.034523 0.544330 -0.247226 -0.117970 0.075976 0.292665 -0.182623 0.185488 -0.384264 -0.454523 0.755167 -0.090131 0.119871 0.073830 -0.735145 0.822614 0.147269 0.382860 0.700674 0.257443 -0.031605 -0.368125 0.335666 0.070891 0.284095 0.104224 0.402162 -0.267738 0.163543 0.094336 -0.330779 0.546348 0.116400 0.590465 0.340673 0.025132 0.251358 -0.208077 -0.341866 -0.113497 0.002981 -0.519911 0.207090 -0.254295 -0.270959 0.094434 -0.025817 0.029076 -0.142150 -0.063563 -0.503209 -0.384426 0.189396 -0.584785 0.165501 -0.506031 -0.480094 -0.225197 -0.248518 0.361791 0.179799 0.032567 0.195956 -0.974886 -0.033039 0.159181 0.117241 0.511132 -0.011337 -0.147551 -0.218504 -0.611214 -0.590933 0.507171 0.531830 0.201897 0.195535 -0.375612 -0.122761 -0.062113 0.053608 0.498970 0.429914 -0.222986 -0.031679 -0.325872 -0.117448 -0.285704 -1.056993 0.292077 -0.263473 0.351707 -0.018585 -0.243126 -0.178373 -0.074092 0.041044 -0.289471 -0.489806 0.143706 -0.503005 0.269160 0.818943 -0.122356 -0.260265 -0.480835 -0.323019 0.219187 0.392491 0.320370 0.000969 0.558833 0.490825 0.297645 -0.621529 -0.508901 0.363457 0.202697 0.243063 0.208536 -0.511498 -0.342789 0.209645 -0.452652 -0.902773 -0.251629 0.043588 0.350792 -0.429926 -0.034734 0.316202 -0.464424 0.128297 0.591290 0.219540 0.187221 0.053654 -0.498295 0.359408 0.707982 -0.076647 0.348266 -0.320014 -0.278319 0.574991 -0.229673 0.161984 0.067481 -0.209600 -0.373563 -0.143849 0.149780 0.472001 -0.042295 0.333050 0.068924 0.311537 -0.471165 -0.546327 -0.684735 0.068967 1.137983 0.304226 0.639553 -0.713451 0.021948 0.201796 0.650255 0.283926 -0.292533 0.274985 -0.266216 0.422675 -0.911388 -0.714281 0.835537 0.636686 0.490031 -0.082228 0.054407 0.395666 -0.516384 -0.377583 -0.334616 0.233343 -0.109211 -0.861358 -0.368895 0.131439 -0.614830 -0.210297 0.057333 0.351058 0.441726 -0.060419 0.313851 -0.261293 -0.030724 -0.626229 0.498390 -0.204381 -0.169945 0.061410 0.025254 0.000681 0.165178 -0.099160 0.144971 0.156518 -0.157308 0.265007 0.316489 0.132273 -0.084890 0.906460 0.591296 -0.436602 -0.062720 -0.080813 -0.141689 0.794508 -0.199468 0.349975 0.204919 0.434747 0.130708 0.153191 0.605047 -0.352143 -0.325979 -0.594755 -0.367855 0.331181 0.349530 -0.073944 -0.494463 -0.967337 0.103094 -0.108719 0.851712 0.009145 0.911352 -0.138610 0.326864 -0.596447 0.116696 0.263946 -0.168582 0.504397 0.187196 -0.324102 -0.061014 -0.284938 -0.646369 -0.457929 -0.174108 -0.161877 -0.316082 -0.045307 0.041598 -0.190312 -0.094558 0.207763 -0.130778 0.347299 -0.259341 0.088214 -0.488118 0.137055 0.495473 -0.118275 -0.428100 0.529000 0.161943 1.115885 0.083425 0.321511 -0.015031 0.321974 -0.155822 -0.584983 -0.254948 0.758899 0.395630 0.189683 -0.005068 0.021660 0.256643 0.333267 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -0.780013 -0.174053 2.107978 -0.158832 -1.464010 -2.570924 -1.190101 -4.516576 1.727393 1.197550 2.771703 0.118462 1.740675 -0.984771 0.171897 0.800304 1.083127 -1.850374 0.879849 -1.246288 -0.704475 2.955771 0.223532 1.166031 0.071323 -2.850098 1.599639 0.082351 1.084009 1.890538 0.975066 -0.289252 -1.127206 0.762716 0.666280 2.035044 0.908286 1.012632 -0.719717 0.440614 0.026542 -1.203009 1.569528 -0.159794 2.788510 0.089078 0.774254 0.656696 -0.942412 -1.492936 -0.640060 0.990365 -2.093943 0.223373 -0.079813 -1.001876 -0.072738 -0.414588 -0.710857 -0.622521 -0.761967 -1.780598 -1.313907 0.821423 -1.201594 1.176573 -1.537512 -0.489850 -0.537191 -0.655029 1.511286 0.799868 0.482118 1.767394 -2.865880 0.086399 0.235448 0.213017 1.200567 -0.382291 -0.567161 -0.516814 -1.504700 -1.804900 2.003457 2.028682 0.376000 -0.038338 -1.601545 1.011193 -0.774303 -0.149101 1.194240 1.161463 -1.621481 -0.548305 0.079376 -0.741289 -1.125694 -2.872088 0.814377 -1.125509 0.954838 0.368117 -0.482889 -0.886760 -1.355288 -0.024252 -1.934642 -1.816685 0.606820 -1.166707 0.613002 2.464455 -1.434030 0.019415 -1.822918 -0.630606 0.734007 1.089549 1.141709 0.756583 1.863649 1.996360 0.921545 -1.866824 -1.785874 1.275908 1.861744 0.578524 0.470552 -1.668530 -1.173175 0.817418 -1.388732 -2.670911 -1.577736 0.799305 1.505311 -0.480618 -0.187520 0.397132 -0.867436 1.432288 2.223316 0.271573 0.140928 0.411771 -1.962040 1.554443 2.403562 -0.366670 1.652881 -0.884974 -0.181571 1.950990 -1.765960 0.558673 1.015422 0.007860 -1.656970 -0.788700 -0.210218 1.205307 0.639036 1.587035 -0.835117 1.389441 -0.829849 -1.965095 -2.815025 -0.129509 3.407960 0.638173 1.583791 -2.161240 -0.521031 0.684768 2.162230 1.060317 -1.796577 0.929095 -1.280456 1.231703 -2.692782 -2.214661 3.385910 3.025652 1.970344 0.371940 0.831100 2.055788 -2.902686 -0.601118 -0.915714 1.457317 -0.513227 -3.547485 -1.029080 0.469747 -2.023381 -1.490687 -0.621253 1.197556 0.641824 0.494090 1.581843 0.361063 -0.048183 -0.732206 1.699759 -0.486162 -1.459711 -0.269587 0.122858 0.515640 0.571006 -0.730937 1.245255 0.880526 -1.296196 0.731055 1.555859 0.555477 0.322387 2.997753 2.403045 -1.123394 0.576951 -0.840109 -0.462787 1.048082 -0.349421 0.877132 0.236584 0.504829 0.559967 0.180822 1.741369 -1.004761 -1.636089 -1.517841 -0.682393 0.774586 1.743479 0.444745 -2.607076 -3.054481 0.381385 0.538455 2.565890 0.050998 2.956815 -0.692681 1.018787 -2.770065 0.339672 0.743459 -0.237692 1.262439 0.231961 -0.631509 -0.455354 -0.861659 -2.065919 -2.031398 -0.444038 -0.708193 -1.009896 -1.528199 1.823782 -1.128860 -0.646657 0.155169 0.227111 1.800080 0.495432 -0.092231 -1.978761 1.051439 1.356850 -0.162853 -1.304773 2.152894 0.446311 4.195500 -0.424247 0.624564 -0.022268 1.469605 -0.703309 -1.656872 -0.177396 2.331317 2.182809 0.228663 -0.560138 -0.390539 0.480179 0.904745 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -0.786074 -0.240711 1.991489 -0.193235 -1.285345 -2.291590 -1.094122 -4.175741 1.689223 1.115665 2.553664 0.176617 1.630280 -1.027887 0.165745 0.734221 1.004032 -1.771438 0.818718 -1.124189 -0.376356 2.773354 0.233122 1.050269 0.029935 -2.750770 1.325713 0.022388 1.096491 1.771834 0.893873 -0.313884 -1.078995 0.677765 0.639174 1.911776 0.985460 0.871671 -0.773109 0.319561 -0.088795 -1.014537 1.389761 -0.215873 2.694988 -0.106702 0.686693 0.590674 -0.830676 -1.396724 -0.575237 1.025814 -1.927047 0.210868 0.073601 -0.924131 -0.189587 -0.360835 -0.695929 -0.681968 -0.693718 -1.578212 -1.107062 0.755805 -1.041782 1.122640 -1.365132 -0.356610 -0.504834 -0.676319 1.404806 0.790433 0.620723 1.694266 -2.664566 0.117909 0.155159 0.227026 1.102882 -0.307501 -0.509962 -0.526076 -1.241442 -1.627253 1.801299 1.958637 0.246851 -0.017972 -1.493410 1.027612 -0.741444 -0.204122 1.045467 0.995421 -1.610365 -0.541983 0.090718 -0.637242 -0.875315 -2.575118 0.710903 -1.041971 0.819396 0.340210 -0.326529 -0.801344 -1.290647 0.001340 -1.842570 -1.589825 0.698302 -0.961413 0.469789 2.307960 -1.412656 0.093127 -1.678473 -0.499045 0.618352 1.019999 0.958018 0.816654 1.555421 1.875159 0.893705 -1.729968 -1.607547 1.316835 1.843238 0.534376 0.414604 -1.544221 -1.032645 0.769611 -1.246303 -2.455315 -1.490295 0.774281 1.436438 -0.314100 -0.190753 0.197774 -0.761501 1.463889 2.024662 0.169489 0.109889 0.408685 -1.860299 1.469277 2.234171 -0.331670 1.554182 -0.750803 -0.047023 1.688034 -1.723144 0.583128 0.859444 0.066473 -1.445307 -0.753606 -0.258524 1.089520 0.663873 1.543409 -0.964671 1.306901 -0.755928 -1.930906 -2.636706 -0.235841 3.098019 0.508025 1.383151 -1.920794 -0.606524 0.567249 2.046121 0.959745 -1.675290 0.890361 -1.270765 1.156397 -2.437277 -2.039631 3.230063 3.019450 1.844690 0.372661 0.821328 1.964684 -2.784931 -0.504055 -0.739722 1.285348 -0.511567 -3.404355 -0.980367 0.433490 -1.855963 -1.511910 -0.537108 1.069912 0.516260 0.624716 1.551241 0.559798 0.014177 -0.601719 1.607212 -0.428765 -1.407330 -0.277929 0.184579 0.548436 0.567469 -0.795319 1.185335 0.997671 -1.221507 0.668329 1.438822 0.522630 0.347537 2.660791 2.194338 -0.922002 0.653474 -0.769423 -0.498571 0.952606 -0.317630 0.792129 0.192942 0.295675 0.525398 0.157899 1.470832 -0.959839 -1.475866 -1.395651 -0.669299 0.645207 1.700379 0.453601 -2.640443 -2.654142 0.392702 0.548579 2.170752 0.052375 2.759469 -0.719916 0.901622 -2.667149 0.297200 0.785918 -0.187558 1.161491 0.231606 -0.535913 -0.609486 -0.784830 -1.879439 -1.902474 -0.461177 -0.761093 -0.837742 -1.564595 1.974597 -1.080927 -0.590518 0.141803 0.289059 1.816458 0.479524 -0.082196 -1.903656 1.022176 1.059621 -0.114994 -1.213395 1.996926 0.397196 3.868814 -0.504050 0.493352 -0.044691 1.438853 -0.713190 -1.536032 -0.111053 2.173398 2.075558 0.231187 -0.603344 -0.442853 0.317595 0.810759 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::copy<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -1.106079 -0.502789 2.927656 -0.126403 -1.758745 -3.744736 -1.641090 -6.541481 2.701813 1.665234 4.096932 0.203702 2.519454 -1.718965 0.456712 1.623918 1.570417 -2.689506 1.118599 -1.680427 -0.556786 4.578831 0.424982 1.575129 0.029277 -4.040940 1.478042 0.344608 1.730219 2.343225 1.356359 -0.467549 -1.234181 0.971746 0.613895 3.120281 1.299230 1.284766 -1.331052 0.239777 -0.259853 -1.548596 2.173859 -0.476860 4.217755 -0.498300 1.858089 0.780439 -1.287178 -2.082351 -1.318531 2.417682 -2.867681 0.274929 -0.056650 -1.452643 -0.121372 -0.671835 -1.214883 -1.040586 -1.211038 -2.049452 -2.043013 0.964378 -1.426942 1.776832 -1.700867 -0.483202 -0.651207 -0.702664 2.287790 1.197221 0.716923 2.438145 -4.183429 0.171859 0.267047 0.303042 1.573004 -0.447023 -0.562318 -0.837962 -1.809430 -2.394648 3.336750 2.869392 0.516751 0.068233 -2.536536 1.707228 -1.411564 -0.363557 1.543825 1.389347 -2.654949 -0.784582 0.742109 -1.099627 -1.662963 -3.521155 1.086386 -1.662866 1.136289 0.487930 0.018925 -0.990652 -2.171005 -0.042388 -3.116402 -2.630027 0.854106 -1.439640 0.477959 3.428091 -2.396471 0.307551 -2.346042 -0.527434 0.614018 1.528458 1.581917 1.412045 2.606750 2.849798 1.300826 -2.614825 -2.390792 1.849855 3.177959 0.993116 0.538333 -2.301703 -1.659709 1.144923 -1.869427 -3.950363 -2.423785 1.705590 2.307354 -0.246041 -0.533472 0.463696 -0.797428 2.562058 3.123441 0.034778 0.111851 0.724368 -2.842733 2.278283 3.593880 -0.647533 2.585905 -1.181674 0.025839 2.622001 -2.844818 0.834502 1.620443 0.022270 -2.203019 -1.186590 -0.463156 1.690175 1.247680 2.226389 -1.603099 2.080099 -1.143922 -3.063270 -4.347617 -0.450881 4.390617 0.665762 2.430770 -2.830832 -1.341382 0.852836 2.894511 0.966748 -2.651565 1.361033 -2.331659 1.811818 -3.762373 -3.222208 5.310115 4.607660 3.010465 0.769000 1.750542 3.126945 -4.386041 -0.642108 -0.979103 2.119847 -0.304365 -5.487912 -1.360338 0.555889 -3.043198 -2.424171 -1.139124 1.554731 0.061453 1.274669 2.727912 0.586503 -0.260412 -0.422808 2.247538 -0.772735 -2.083297 -0.607921 0.263648 0.786093 0.968363 -1.422110 1.910663 1.429041 -2.236667 0.923819 2.066167 0.943533 0.892882 4.265088 3.896683 -1.358388 1.933625 -1.300159 -0.871839 1.061688 -0.433549 1.049945 0.116725 0.493504 0.820059 0.247325 2.274498 -1.421615 -2.313551 -2.164344 -0.787321 1.222767 2.593123 1.006865 -3.857240 -4.125236 0.282272 1.049005 3.469029 -0.113477 4.192736 -1.390101 1.416596 -4.660415 0.521087 0.933897 -0.234878 1.607287 0.317049 -0.878838 -1.134858 -1.165059 -2.748136 -3.363994 -0.625873 -1.383208 -1.382088 -2.948002 3.272723 -2.252301 -0.891588 0.269427 0.564982 2.832875 0.727646 -0.126299 -2.798318 1.760170 1.843912 -0.068492 -1.898370 2.910769 0.495406 6.513256 -0.871127 0.979905 -0.352916 2.333530 -1.109520 -2.343488 -0.096713 3.329035 3.522209 0.050356 -0.835335 -0.604134 0.391676 1.434676 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a > >, int*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int*) = -0.410144 -0.282715 2.353335 -0.215711 -1.364770 -2.599353 -1.183417 -5.446843 2.370759 1.310016 2.857117 0.226622 1.902494 -1.449345 0.042841 1.279006 1.086863 -1.923593 0.969077 -1.208779 -0.218802 3.743784 -0.115621 1.427059 -0.019776 -3.539885 1.230027 0.060433 1.945804 1.779018 1.089608 -0.516737 -1.106634 0.676741 0.651021 2.210779 1.078239 0.921891 -1.496125 0.176864 -0.432238 -1.219095 1.579305 -0.439582 3.225200 -0.827092 1.197149 0.624752 -0.556398 -1.392283 -0.989778 1.855807 -1.948095 0.285744 0.170134 -1.370017 -0.525885 -0.287516 -0.848357 -0.071518 -0.989459 -1.641125 -1.324148 0.811186 -1.194760 1.298581 -1.558702 -0.293607 -0.576327 -0.666238 1.688986 1.024718 0.856181 1.737011 -3.741142 0.186253 0.122460 0.257551 1.232029 -0.049802 -0.094208 -0.671326 -1.398767 -1.842998 2.459478 2.843451 0.056787 -0.121813 -1.983893 1.101246 -1.091406 -0.353067 1.303192 1.059469 -2.332242 -0.570445 -0.330370 -0.676025 -0.886958 -3.137042 0.782571 -1.275322 0.964799 -0.099899 0.047383 -0.592000 -0.827659 -0.015957 -1.895954 -1.857090 0.696093 -0.846288 0.593253 3.186244 -1.507451 -0.011728 -1.999414 -0.410760 0.043801 0.967461 1.143733 1.099328 1.960700 2.123151 1.320986 -2.027641 -1.937852 1.976408 2.064363 0.757140 0.333455 -1.825444 -1.064241 0.852628 -1.066378 -3.159685 -1.834485 1.029718 1.679211 -0.537333 0.248883 -0.258184 -0.617322 1.949184 2.268109 -0.333752 0.226445 0.651064 -2.031964 1.765798 2.888481 -0.252478 1.638839 -1.252953 0.202969 1.715699 -2.077430 0.779765 0.756960 0.296020 -1.586231 -1.016436 -0.217842 1.262047 0.460672 1.586203 -1.366483 1.597963 -1.137732 -2.391375 -3.212545 -0.376377 3.344397 0.420782 1.625715 -2.069326 -1.050747 0.672973 2.243729 1.161582 -1.758306 1.422730 -2.066051 1.462403 -2.513508 -2.473152 3.853879 3.785886 2.154155 0.302239 1.192971 2.383240 -3.756482 -0.770216 -0.786267 1.446932 -0.220519 -4.725217 -1.288192 0.470593 -2.228752 -1.866046 -0.554382 1.105571 0.473130 1.298953 2.402303 0.546664 -0.074767 -0.726508 2.427861 -0.456073 -1.470275 -0.461325 0.373107 0.470025 1.046407 -1.265189 1.479334 1.386222 -1.333193 0.934631 1.626530 0.413975 0.139225 2.919655 2.815947 -0.847355 1.536071 -0.920854 -0.706823 0.993711 -0.320727 0.776900 0.159396 -0.187007 0.270473 0.352135 1.454957 -1.220901 -1.836523 -1.640641 -0.847113 0.528088 1.977995 1.059085 -3.177740 -2.846474 0.201988 0.596610 2.218676 0.343321 3.208353 -1.288120 1.115799 -3.483264 0.374343 0.903762 -0.089598 1.639782 0.190717 -0.641463 -0.496487 -0.853700 -2.080874 -2.727576 -0.643897 -1.386137 -1.094545 -2.372857 2.785917 -1.475833 -0.672723 0.264890 0.431283 2.366242 -0.078177 -0.021141 -2.364692 1.449786 1.231423 -0.122435 -1.492622 2.041346 0.283141 4.881434 -0.755228 0.517637 -0.210006 1.693370 -1.009106 -2.118834 -0.053013 2.560368 2.417053 0.285997 -1.036095 -0.762948 0.128710 0.958211 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > > std::__miter_base<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >) = -0.356391 -0.013839 0.928682 -0.181765 -0.505948 -1.000891 -0.453916 -1.761908 0.639276 0.463569 1.123010 0.005674 0.736339 -0.372639 0.107312 0.268417 0.458351 -0.703688 0.394652 -0.471445 -0.106518 1.016737 0.056220 0.490686 0.048595 -1.120360 0.538197 0.010841 0.414394 0.794962 0.365951 -0.153029 -0.530270 0.278287 0.284053 0.764565 0.575905 0.376204 -0.345457 0.187493 -0.160150 -0.393495 0.535522 -0.087976 1.123760 0.092444 0.128204 0.302162 -0.362548 -0.613163 -0.144382 0.385776 -0.800648 0.117794 0.080829 -0.431642 -0.107444 -0.104219 -0.257149 -0.391739 -0.234612 -0.694859 -0.379521 0.335860 -0.444342 0.458500 -0.584873 -0.200584 -0.212830 -0.313264 0.572351 0.313206 0.317740 0.841740 -1.079919 0.061917 0.101425 0.135151 0.478417 -0.217237 -0.178189 -0.215082 -0.496892 -0.717791 0.713471 0.847266 0.175566 0.020825 -0.673299 0.471003 -0.250253 -0.103253 0.459453 0.420191 -0.585040 -0.223002 -0.022664 -0.250181 -0.346581 -1.217935 0.293435 -0.424881 0.342257 0.153000 -0.103571 -0.371689 -0.641013 0.119041 -0.770742 -0.654945 0.422117 -0.403512 0.132158 0.965744 -0.620876 0.046053 -0.703418 -0.243618 0.317879 0.465779 0.381554 0.343645 0.493048 0.804402 0.384344 -0.730878 -0.706229 0.541708 0.790809 0.237152 0.207413 -0.700282 -0.433403 0.358485 -0.689490 -1.045559 -0.625553 0.268859 0.641962 -0.148161 -0.134488 0.089741 -0.425229 0.573902 0.833391 0.165416 0.034439 0.143823 -0.803423 0.583672 0.843944 -0.209997 0.719537 -0.189097 0.030331 0.529314 -0.636783 0.240415 0.344282 -0.006738 -0.538251 -0.292060 -0.178364 0.482649 0.437608 0.734434 -0.450358 0.545647 -0.431676 -0.835868 -1.086566 -0.116682 1.380860 0.088250 0.485540 -0.800297 -0.334399 0.209741 1.007367 0.325752 -0.736726 0.334190 -0.484538 0.488863 -0.968854 -0.840353 1.339016 1.329634 0.811498 0.098697 0.271763 0.830477 -1.246168 -0.221237 -0.286345 0.484947 -0.386797 -1.535611 -0.553805 0.178690 -0.783579 -0.571052 -0.205449 0.479980 0.208425 0.380295 0.651953 0.365706 0.038032 -0.230219 0.618986 -0.155914 -0.590192 -0.074705 0.077431 0.300756 0.212504 -0.428487 0.459215 0.564660 -0.598292 0.270640 0.616687 0.249474 0.178225 1.249445 0.786238 -0.319552 0.211306 -0.324947 -0.300281 0.430334 -0.123671 0.385358 0.057774 0.141953 0.206879 0.061742 0.653062 -0.416904 -0.717837 -0.660731 -0.445926 0.277321 0.747695 0.308353 -1.226238 -1.095669 0.250876 0.211578 0.956446 0.000583 1.170978 -0.226732 0.410628 -1.028387 0.127988 0.320803 -0.167770 0.448744 0.115128 -0.222374 -0.395582 -0.307823 -0.880823 -0.925777 -0.203979 -0.307920 -0.277422 -0.637943 0.831653 -0.363843 -0.283541 0.005903 0.193656 0.796550 0.297492 -0.059124 -0.811935 0.450210 0.511658 -0.109289 -0.560583 0.841358 0.268288 1.689627 -0.177852 0.175275 -0.006831 0.501818 -0.234682 -0.560551 -0.079414 0.943932 0.936308 0.184075 -0.274080 -0.151110 0.118906 0.328400 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.104419 0.043096 0.436021 0.072335 -0.157054 -0.657327 -0.193197 -0.783841 0.284801 0.158907 0.529337 -0.049406 0.404618 -0.205792 0.058662 0.143611 0.197111 -0.160496 0.106076 -0.219800 -0.152927 0.489185 0.016607 0.023940 0.048074 -0.435303 0.310820 0.181042 0.120208 0.425201 0.130363 0.003923 -0.119225 0.182184 -0.091305 0.288377 0.180255 0.226083 -0.136083 0.026479 -0.032320 -0.065859 0.275317 0.019764 0.467506 0.258619 0.134221 0.149835 -0.146605 -0.265929 -0.113191 0.215805 -0.348173 0.096751 -0.209034 -0.137417 0.127693 -0.097755 -0.066495 -0.355157 -0.009049 -0.153692 -0.310134 0.075962 -0.286820 0.179300 -0.101099 -0.258202 -0.092450 -0.075619 0.297692 0.111291 -0.001409 0.190674 -0.508231 -0.020246 0.086518 0.074141 0.283597 -0.161405 -0.092534 -0.147692 -0.286395 -0.335086 0.485129 0.259592 0.221611 0.217856 -0.252070 0.047332 -0.118025 -0.025864 0.283916 0.212724 -0.064790 -0.058094 0.135606 -0.077013 -0.211253 -0.450875 0.199742 -0.179809 0.143077 0.124656 0.080939 -0.071763 -0.225228 0.121465 -0.393941 -0.351350 0.164125 -0.294864 0.027851 0.403492 -0.229902 -0.036234 -0.207572 -0.145478 0.128798 0.347443 0.192755 0.111990 0.281256 0.362979 0.089263 -0.376748 -0.321642 0.179624 0.374316 0.211189 0.120027 -0.413546 -0.256332 0.140634 -0.421218 -0.572682 -0.235765 0.151144 0.311544 -0.158745 -0.295707 0.394706 -0.211821 0.194816 0.387895 0.130015 0.034696 0.039252 -0.403853 0.266731 0.465921 -0.150435 0.364892 -0.097149 -0.107636 0.254308 -0.197347 0.043945 0.193810 -0.195244 -0.177338 -0.071950 0.035431 0.286016 0.240967 0.321972 -0.070681 0.263137 -0.316857 -0.418715 -0.513795 -0.049193 0.643929 0.029805 0.497895 -0.402461 -0.199520 0.048617 0.487085 -0.082529 -0.239927 0.080167 -0.253541 0.269130 -0.580795 -0.463902 0.697297 0.456257 0.478078 0.041800 0.189233 0.350664 -0.314258 -0.070439 -0.077490 0.173514 -0.004483 -0.607856 -0.220737 0.003712 -0.445903 -0.256913 -0.092436 0.233468 -0.074206 0.147376 0.225643 -0.108316 -0.086394 -0.151231 0.109182 -0.183271 -0.100305 -0.006922 0.006520 0.039833 0.059985 -0.218667 0.162234 0.212942 -0.283416 0.127905 0.212995 0.167112 0.186447 0.674449 0.463296 -0.227479 0.215814 -0.095660 -0.159080 0.363767 -0.045936 0.208298 0.052912 0.311308 0.175581 0.031876 0.366688 -0.198342 -0.227026 -0.440421 -0.206779 0.351476 0.280799 0.104710 -0.354040 -0.599150 0.009781 0.032142 0.636980 -0.106132 0.582233 -0.110823 0.212306 -0.526652 0.095309 0.116585 -0.154353 0.118524 0.128160 -0.167446 -0.394445 -0.141766 -0.402385 -0.542012 -0.151977 -0.189798 -0.162428 -0.237089 0.171194 -0.286319 -0.077025 0.157954 0.089843 0.224238 -0.039710 0.030509 -0.294325 0.150031 0.273291 -0.063763 -0.330956 0.287822 0.130187 0.900222 -0.020375 0.277450 -0.116985 0.293787 -0.127207 -0.256943 -0.105107 0.491147 0.429740 0.006846 0.084910 0.066807 0.116388 0.262905 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.276677 -0.039513 0.756385 0.496314 -0.528501 -1.264941 -0.385675 -1.384018 0.673813 0.316224 0.942593 0.117681 0.752385 -0.527698 0.010131 0.112635 0.425620 -0.296585 0.078597 -0.475272 -0.447779 1.220709 0.209329 -0.258491 0.072181 -0.840606 0.866089 0.349118 0.275756 0.945883 0.271322 0.084780 -0.214656 0.411257 -0.190251 0.508270 -0.031477 0.465498 -0.213573 -0.061212 0.309196 -0.254967 0.751137 0.117934 0.866860 0.350482 0.428397 0.189688 -0.405909 -0.531099 -0.347541 0.256081 -0.744665 0.245974 -0.517938 -0.136724 0.406886 -0.209340 -0.111030 -0.729659 -0.015802 -0.344920 -0.727756 0.094724 -0.662776 0.320503 -0.306837 -0.525403 -0.196028 -0.255891 0.577041 0.221944 -0.089786 0.013171 -1.083096 -0.076837 0.118337 0.112884 0.605290 0.004204 -0.375633 -0.357681 -0.692991 -0.635190 0.872296 0.300517 0.294839 0.454614 -0.405888 -0.112133 -0.199994 0.059469 0.509112 0.429849 -0.257371 -0.042724 0.301642 -0.176815 -0.350093 -0.730020 0.401791 -0.374194 0.278729 0.314837 -0.101933 -0.116731 -0.301687 0.038708 -0.717387 -0.721415 0.177860 -0.641926 0.090485 0.794798 -0.362645 -0.184592 -0.440186 -0.235409 0.303044 0.692746 0.356743 0.184621 0.772506 0.673599 0.193353 -0.781200 -0.478554 0.376277 0.634265 0.349528 0.218516 -0.620312 -0.532952 0.247190 -0.588369 -1.118250 -0.432618 0.404243 0.603824 -0.238058 -0.565000 0.807213 -0.377358 0.391656 0.826250 0.238833 0.160935 0.110758 -0.796315 0.555890 1.075285 -0.188725 0.572329 -0.347007 -0.474493 0.999223 -0.451951 0.128921 0.270269 -0.355625 -0.417006 -0.183254 0.244092 0.606279 0.132991 0.457489 0.037126 0.472522 -0.402974 -0.841380 -1.084695 -0.039979 1.268306 0.509453 1.229868 -0.874833 -0.082050 0.135174 0.677641 0.023363 -0.444614 0.192986 -0.451802 0.526559 -1.575422 -1.003579 1.451600 0.755398 0.795254 0.167253 0.389385 0.606026 -0.281423 -0.209909 -0.327093 0.417485 0.233689 -0.766717 -0.139001 0.059852 -0.909735 -0.569604 -0.073310 0.394183 0.095090 -0.237405 0.295437 -0.521094 -0.213616 -0.505748 0.327042 -0.468427 -0.219760 -0.031004 -0.035465 -0.004314 0.132895 -0.086460 0.282478 0.055101 -0.345506 0.177653 0.297223 0.338379 0.270132 1.095390 1.166424 -0.633678 0.235092 -0.112876 -0.230333 1.049643 -0.267721 0.331080 0.163252 0.743214 0.476976 0.100417 0.746295 -0.377352 -0.186043 -0.792020 -0.127191 0.712820 0.504093 -0.442897 -0.497318 -1.323880 -0.025991 0.001717 1.237811 -0.210966 1.258344 -0.363521 0.313832 -1.183041 0.168142 0.384603 -0.138339 0.395376 0.266035 -0.402080 -0.541736 -0.354482 -0.698270 -0.431231 -0.273679 -0.309859 -0.449676 -0.261301 0.170930 -0.657362 -0.010507 0.476276 -0.144398 0.427179 -0.219100 0.094794 -0.549021 0.141758 0.338377 0.038922 -0.554256 0.705064 0.102732 1.533367 -0.022414 0.608284 -0.241960 0.788048 -0.409540 -0.741382 -0.248163 0.954859 0.724159 -0.061104 0.305382 0.142964 0.285090 0.558383 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp___GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/weighted-job-scheduling.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = -0.747907 -0.012212 2.131724 -0.003872 -1.609958 -2.656768 -1.078660 -4.026664 1.329276 0.795763 2.602714 0.019229 1.319956 -0.731524 0.458968 0.948125 0.969126 -1.584807 0.885634 -1.102710 -0.727050 2.458777 0.562342 0.865786 0.182728 -2.264673 1.154759 0.431151 1.107895 1.643703 0.609776 -0.630095 -0.996749 0.828441 0.595958 1.628371 0.878489 0.782403 -0.966259 0.742815 -0.321561 -1.229148 1.607847 -0.523746 2.491776 0.105286 1.191473 0.754269 -1.385250 -1.173226 -0.890403 1.524034 -2.086827 0.441626 0.087001 -0.979452 -0.191920 -0.360472 -0.895774 -0.903922 -0.889234 -1.641446 -1.102163 0.654441 -1.197585 0.983271 -1.450136 -0.706137 -0.116528 -0.058031 1.485451 0.971170 0.537821 1.904429 -2.500170 0.281970 0.458439 0.728255 0.942801 -0.706635 -0.064851 -0.177192 -1.193317 -1.550210 1.566609 1.447595 0.682098 -0.389636 -1.563004 1.175462 -0.502180 -0.100020 0.761368 0.906401 -1.460197 -0.203100 -0.223034 -0.656499 -1.441327 -2.960753 0.413230 -1.050503 0.961956 0.314078 -0.237383 -0.777564 -1.688239 0.311824 -1.844522 -2.034294 0.496650 -0.851824 0.220796 2.171912 -1.470345 0.274258 -1.254857 -0.333721 0.409100 0.933229 0.979422 0.844744 1.438240 2.159997 0.852543 -1.626481 -1.593023 0.601046 1.961513 0.905371 0.775856 -1.241114 -1.206403 0.592733 -1.313953 -2.643658 -1.219246 1.095694 1.544346 -0.053451 -0.343170 -0.014755 -0.981199 1.878736 1.912507 0.463918 0.173466 0.253998 -1.820681 1.709478 2.280345 -0.606412 1.831603 -0.602135 0.005039 1.764098 -1.640817 0.617684 1.017297 -0.007011 -1.172996 -0.873957 -0.733141 1.177715 1.299349 1.370244 -0.566838 1.137033 -0.788679 -2.189981 -2.538698 0.009242 3.087229 0.195938 1.392763 -1.938655 -1.000634 0.489555 1.878417 0.651284 -1.809575 0.654067 -1.242784 1.185610 -2.693998 -2.178068 3.312125 3.106250 1.661687 0.559289 0.972001 2.108655 -3.036746 -0.685901 -0.824240 1.326605 -0.769870 -3.608187 -1.386430 0.493980 -1.987671 -1.069614 -0.485862 1.106737 0.496593 0.702165 1.143226 0.766780 -0.523250 -0.341929 1.333950 -0.807932 -1.417151 0.031455 -0.018791 0.873619 0.605814 -0.845121 1.001260 0.866709 -1.779361 0.557113 1.238629 0.979135 0.570048 3.094486 2.342519 -0.545774 1.115216 -0.467602 -0.846285 1.109486 -0.426037 0.911002 0.179939 0.453253 0.260845 0.263735 1.796233 -0.938145 -1.745456 -1.565453 -0.593763 0.679600 1.787405 0.411906 -2.682726 -2.786788 0.349770 1.055622 2.163130 -0.149086 2.720326 -0.526197 0.931115 -2.972120 0.140017 0.410769 -0.068691 1.384433 0.277268 -0.696991 -0.917171 -0.792899 -1.885261 -1.694201 -0.454798 -0.661244 -0.754312 -1.378578 1.698038 -0.992247 -0.587002 0.090466 0.127360 1.990185 0.828917 -0.262676 -1.627612 0.834300 1.816753 -0.018000 -1.303973 2.237999 0.544137 4.651703 -0.257231 0.394197 -0.271767 0.754249 -0.082276 -1.065545 -0.149314 2.280047 2.281360 0.366235 -0.572581 -0.241695 0.192333 0.890303 -PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = -1.010853 0.697889 4.228173 2.629522 -2.494353 -3.524570 -1.688741 -4.321074 1.968783 0.132433 2.966197 0.250103 0.950871 -0.853997 0.402702 -0.547011 0.850190 -1.098932 0.064095 -1.353502 -0.975074 2.846977 1.460622 -3.037516 0.456445 -4.039799 2.688286 2.052283 1.130756 2.301602 0.230598 -0.325845 -1.105859 2.290816 -1.119532 0.098368 0.909210 0.696279 -1.211222 -0.003463 1.380253 1.699284 2.476010 -0.252483 2.693224 1.388271 1.781305 0.979142 -2.342822 -0.730154 -1.291652 2.879349 -2.218465 1.577906 0.187472 1.062060 0.757617 -2.796962 -0.863799 -2.971066 -0.017422 0.250821 -1.600021 0.052528 -2.199826 0.635782 0.155275 -1.545222 1.437507 0.125715 2.356343 0.525061 0.100757 -0.474237 -2.080465 0.675093 0.223724 1.843128 1.794893 -0.969183 -0.495558 0.300819 -1.415499 -1.850980 0.954945 0.516042 0.999014 -0.038843 0.176746 -0.546346 0.077341 -0.830470 -0.117379 1.830574 -1.390725 0.525274 -0.548770 -0.620693 -2.089250 -1.298442 0.343455 -1.721018 1.345275 1.902691 -1.175163 -0.248347 -0.468086 0.528149 -1.575553 -2.369178 0.424024 -1.154640 0.992131 2.830601 -1.275399 -0.481253 -0.253942 -0.832397 -0.046278 2.659398 0.247936 0.814868 2.673973 3.580256 0.428510 -2.112259 -1.284189 0.269363 2.160445 2.377286 1.931057 -3.105195 -1.614300 -0.033746 -0.548026 -3.979449 0.398329 0.643424 2.312824 0.577523 -3.167997 1.360972 -1.539078 2.985227 1.516022 1.572640 0.484097 -0.096535 -2.404373 2.789382 4.632330 -0.918795 2.067756 -1.281067 -1.532716 2.657328 -1.787251 1.445393 1.087185 -0.493348 0.154191 -1.516518 -0.421670 2.471933 1.309636 1.339086 1.546550 0.835844 -0.561869 -4.157780 -3.637276 0.341094 2.682657 0.048351 4.750857 -2.741182 -1.710649 -0.887186 3.301018 -0.873405 -1.201587 0.285037 -1.433704 1.700202 -3.538919 -3.482730 4.586592 4.108130 0.765939 0.342117 2.914619 1.711029 -1.460310 -1.209969 -1.273033 1.244303 0.698386 -0.905728 -0.030195 0.184215 -2.679087 -1.444771 0.368706 1.154632 1.384980 -1.151882 -1.213995 0.548686 -2.757824 -1.968736 0.844484 -2.343191 -0.843618 0.666446 -0.130602 0.287468 1.107226 -0.821497 -0.768408 0.692537 -1.764621 0.243509 1.199371 2.353390 1.007897 3.318119 2.631692 -0.011221 2.854662 1.437104 -1.253362 5.220842 -0.970595 0.816165 0.912217 1.878628 0.410525 1.001403 1.512499 -1.345172 -0.854740 -3.214860 1.154217 0.350480 1.952279 -3.293690 -2.062671 -3.584084 -1.232238 1.708149 2.206446 -0.744096 4.994300 -0.233720 0.233836 -5.437648 -0.365139 2.008542 -0.097902 1.552314 1.384535 -1.936094 -4.458123 -0.918094 -1.715261 -0.326528 -1.100595 -1.622214 -1.772987 -1.203463 1.950038 -1.279840 0.895172 3.362187 -0.274255 1.057166 -0.654718 -0.079904 -0.809279 -1.283158 1.149729 0.497043 -2.615086 3.339209 -0.274260 6.471916 -0.891111 2.080661 -1.821681 0.969964 -0.111370 -1.275852 -0.606678 3.560930 1.969089 0.660698 0.435659 0.424399 -1.233018 2.365814 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.231940 0.019152 9.664608 5.127229 -4.437287 -7.200455 -3.491531 -10.465945 6.339922 1.090311 6.725837 2.094640 2.883324 -2.911174 0.789925 0.125266 1.294405 -3.768515 0.426218 -2.738605 -0.042692 9.124684 4.685813 -6.032895 0.499058 -11.276972 5.117103 3.146905 4.945510 6.562905 0.481618 -1.077340 -1.519641 4.874507 -2.067601 1.259930 1.246535 1.388545 -3.554059 -0.493926 2.503204 3.117816 5.104949 -0.188530 7.685770 0.504113 4.877560 1.322713 -3.451856 -1.884085 -4.489897 7.879786 -5.956481 3.308077 -0.239001 2.478212 0.062479 -5.347806 -2.806529 -7.447803 -0.554095 1.147138 -3.752310 0.288756 -5.040117 2.364779 -0.920663 -2.146381 1.580794 0.057700 6.205814 2.673698 1.954439 -1.128896 -7.316983 1.686477 -0.888535 3.811770 4.226481 -1.555692 -2.586772 0.187119 -2.370624 -4.343007 3.446812 2.489501 0.166368 -0.276602 0.621133 -0.754669 -1.793723 -1.652750 -0.942726 4.158566 -5.548076 1.964291 -0.352616 -0.652823 -2.324636 -2.408763 0.366116 -4.777762 2.356637 3.696952 -0.179255 -0.443563 -0.925101 1.000010 -4.149815 -5.520529 1.572958 -0.997483 0.316976 6.795768 -3.644741 0.084540 -0.287307 -0.295399 -0.723042 6.245215 0.345905 3.415402 5.980435 8.067670 1.456052 -4.632619 -1.725433 3.060589 6.102867 5.124475 3.714710 -6.517267 -3.550873 0.336793 0.475747 -9.425574 0.347338 3.758829 5.264958 1.639958 -6.604758 1.544387 -2.292323 7.826358 5.062335 1.942074 1.624429 0.244179 -5.750825 6.936065 13.073073 -1.901060 4.675139 -3.682643 -2.682957 7.905513 -6.849140 4.250581 1.119380 0.425973 0.470065 -4.374730 -1.147304 5.760597 2.715810 3.620074 2.328703 2.205792 -0.444511 -10.333919 -8.464079 -1.729298 5.986436 0.388024 10.681810 -5.352470 -3.461699 -1.972191 6.537364 -0.351819 -2.557471 1.284244 -4.449037 3.904599 -10.503334 -8.223497 12.016861 11.204750 2.881304 1.567373 6.850081 6.160368 -3.416233 -2.705379 -2.099794 3.049999 1.844428 -3.558685 -0.522088 0.019719 -6.781352 -5.125560 0.710060 1.945410 2.621176 -1.132350 -1.383258 2.438653 -6.044915 -3.892233 3.027823 -6.161690 -3.572276 0.425714 0.508362 0.369279 2.338352 -2.173007 0.280191 3.447262 -3.862208 0.648733 3.196000 4.612716 2.253387 5.967491 7.593806 0.191078 6.217613 2.870194 -2.885186 11.317694 -2.290813 0.888458 1.746080 2.384133 0.986070 2.391466 1.811165 -3.310210 -1.900846 -6.892191 3.612855 0.737856 5.072884 -5.751397 -6.684432 -6.399410 -2.633066 4.578529 4.483375 -0.796902 12.155374 -2.137367 0.831189 -13.992707 -0.389254 5.280805 0.664605 4.319772 3.502695 -3.668721 -9.211083 -2.648460 -2.658702 -0.002393 -3.218077 -5.482019 -3.606278 -4.519650 6.339267 -4.888942 2.292906 6.859225 -0.493020 4.869340 -2.042956 -0.301156 -4.050697 -0.805056 1.115804 2.159501 -5.550882 7.265196 -1.671583 14.197406 -4.042537 4.452302 -4.507706 4.046801 -2.119290 -3.182361 -0.515100 8.695078 5.004472 1.118442 0.624416 -0.659048 -2.807594 4.482870 -PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = -0.238433 -0.068491 1.361659 0.427945 -0.813849 -2.067126 -0.701194 -2.880926 1.304513 0.667968 1.676940 0.127222 1.224005 -0.837850 0.015630 0.621459 0.651103 -0.796881 0.267203 -0.827334 -0.656077 2.253655 0.145780 0.130038 0.083718 -1.839783 1.170159 0.503873 0.775227 1.321712 0.557212 0.007042 -0.344978 0.656229 -0.169752 1.114048 0.149597 0.720640 -0.562194 0.033682 0.256945 -0.437309 1.210063 0.069119 1.704135 0.282286 0.883501 0.366955 -0.474211 -0.862372 -0.660347 0.869103 -1.198672 0.295248 -0.669690 -0.394614 0.332344 -0.444568 -0.317680 -0.596148 -0.305181 -0.585923 -1.238630 0.282523 -0.991146 0.620469 -0.577595 -0.668490 -0.354097 -0.346579 1.051862 0.439302 -0.100418 0.311789 -2.093898 -0.060884 0.188102 0.145229 0.942246 -0.121842 -0.450505 -0.494683 -1.135540 -1.142497 1.666204 1.095209 0.390299 0.493623 -0.894836 0.036141 -0.592831 -0.031897 0.905551 0.798211 -0.826503 -0.222568 0.364065 -0.417862 -0.806410 -1.393114 0.672819 -0.690063 0.574880 0.207954 0.012005 -0.224250 -0.449764 -0.030758 -1.221680 -1.193808 0.194218 -0.957743 0.376693 1.632768 -0.692373 -0.221266 -0.950709 -0.413652 0.239873 0.993001 0.713260 0.334031 1.553321 1.205202 0.470003 -1.318222 -1.025231 0.774459 1.133385 0.607900 0.328608 -1.188695 -0.843627 0.417225 -0.843271 -2.006196 -0.864565 0.642312 0.971623 -0.525124 -0.515920 0.952865 -0.478705 0.865199 1.439967 0.090924 0.235948 0.247960 -1.301807 1.013236 1.978166 -0.247398 1.002273 -0.858691 -0.504531 1.516879 -1.021454 0.325835 0.607445 -0.412045 -0.934481 -0.400087 0.322377 0.958421 0.172080 0.803875 -0.173338 0.888485 -0.661176 -1.347564 -1.975720 -0.120369 2.009823 0.615618 1.879355 -1.451610 -0.349219 0.259211 1.227009 0.251094 -0.814531 0.573469 -1.044836 0.905807 -2.169564 -1.654109 2.464768 1.687273 1.441507 0.248043 0.839511 1.167822 -1.131412 -0.404067 -0.464151 0.826922 0.373840 -1.951464 -0.363841 0.145035 -1.518273 -1.029805 -0.363767 0.700350 0.096827 0.109898 0.950877 -0.639044 -0.363678 -0.734663 0.833375 -0.621335 -0.501165 -0.149349 0.057245 -0.060146 0.404174 -0.420980 0.643717 0.319286 -0.689325 0.490002 0.751821 0.446744 0.342965 1.851164 1.984681 -0.939891 0.863988 -0.370683 -0.287308 1.202266 -0.300665 0.539003 0.256633 0.813107 0.527435 0.211473 1.122416 -0.675932 -0.577440 -1.212126 -0.182813 0.958534 0.904603 -0.040012 -1.103156 -2.157162 -0.135400 0.133215 1.973507 -0.152665 2.076762 -0.652421 0.674874 -2.165321 0.308369 0.481982 -0.157224 0.731463 0.346433 -0.649687 -0.622047 -0.560793 -1.226916 -1.345598 -0.389613 -0.688289 -0.847313 -0.893547 0.772167 -1.174658 -0.169373 0.656428 -0.034117 0.873917 -0.397491 0.145752 -1.103447 0.474101 0.848079 -0.028419 -0.930214 1.072986 0.112595 2.873271 -0.198595 0.963311 -0.313498 1.258252 -0.611530 -1.332443 -0.305916 1.637499 1.273459 -0.098191 0.127401 -0.054609 0.423355 0.894413 -PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/weighted-job-scheduling.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.342139 -0.117189 4.022139 1.357597 -1.885333 -2.974641 -1.563228 -5.863727 3.027366 1.194477 3.447860 0.226616 1.950039 -1.799916 -0.229641 0.240853 1.344821 -2.129739 0.942834 -1.473843 0.749790 4.508314 0.894589 -0.783602 0.216468 -5.163562 2.386506 0.784138 2.308756 2.813309 0.980224 0.030288 -1.236162 1.540076 0.106917 1.716321 1.129652 1.074383 -1.814637 0.055218 0.303114 0.178874 1.906735 -0.319395 4.170700 -0.011762 1.547820 0.609486 -1.372912 -1.508485 -1.497666 2.384339 -2.578902 0.630749 -0.051670 -0.726945 -0.302104 -1.459214 -1.143622 -2.250170 -0.479880 -0.874929 -1.485017 0.883910 -2.208206 1.759835 -1.049019 -0.498109 -0.180261 -0.878612 2.307157 1.424693 1.149445 1.025415 -3.944656 0.802197 0.030338 1.016442 1.836995 -0.420965 -0.631843 -0.252071 -1.404330 -2.231516 2.091147 2.840317 0.242214 0.148569 -0.886416 0.356085 -1.055132 -0.750374 0.512475 1.740525 -2.751081 -0.160078 -0.368237 -0.678615 -0.926261 -2.213077 0.775916 -1.817181 1.199513 1.081941 -0.636302 -0.265859 -0.738554 0.197682 -2.039728 -2.194492 0.908896 -1.285789 1.117661 4.077703 -1.879795 -0.110293 -2.297185 -0.311220 0.200247 2.311153 0.136205 1.685775 2.314717 3.245238 1.122070 -2.466822 -1.764973 2.449315 2.495478 1.440602 1.093529 -2.771246 -1.554048 0.161921 -0.619835 -3.694383 -1.634978 0.911396 2.396050 -0.204793 -1.492569 0.509454 -1.103000 3.292302 2.654432 -0.027226 0.373745 0.820074 -2.917375 2.766406 4.836071 -0.426908 1.803857 -1.634011 -0.491943 2.780310 -2.516393 1.559180 0.785851 0.213122 -1.103363 -1.593975 -0.211086 1.917189 0.826601 1.901706 -0.360808 1.655470 -0.280244 -3.989822 -4.244271 -0.695446 3.515680 0.490803 3.536198 -2.722644 -1.186184 -0.271380 3.118960 1.256510 -1.595435 1.074870 -2.341255 1.757166 -3.907038 -3.708912 4.943140 5.244782 2.029882 0.735626 2.169583 2.691807 -2.967082 -0.975802 -0.717538 1.825515 -0.292848 -3.476237 -0.817131 0.494996 -2.764814 -3.041259 -0.108894 1.299657 1.132482 0.466186 1.358841 0.748986 -1.026651 -1.809228 1.889288 -1.402426 -1.932735 -0.093502 0.365264 0.711854 1.214667 -1.628474 1.203345 1.736255 -1.381758 0.696015 1.735155 1.102869 0.306770 2.480431 3.479317 -0.526480 1.979115 0.013495 -1.136816 3.743263 -0.212455 1.076904 0.561033 -0.100980 0.860486 0.621857 1.141853 -1.632064 -1.118273 -2.804988 0.221749 0.534048 2.585255 -1.472802 -3.757604 -3.397835 -0.150385 1.488179 2.070208 0.194469 5.091537 -1.263712 0.455724 -5.315958 0.103461 2.263776 0.026274 2.117044 0.968198 -1.450813 -2.617390 -1.006441 -2.300481 -1.481327 -1.517879 -2.226818 -1.789644 -1.880351 3.628614 -1.690729 0.070581 2.022243 0.536040 2.407746 -0.275659 0.051993 -2.407498 0.212981 0.437607 0.519101 -2.276768 2.880971 -0.339425 5.660382 -1.529495 1.144812 -0.998897 2.433876 -1.177016 -2.520437 -0.123465 3.986498 2.438166 0.393174 -0.588415 -1.045649 -0.456118 1.843252 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = -0.007080 -0.002302 0.849245 -0.003270 -0.203875 -0.986718 -0.342549 -1.681007 0.784152 0.402589 0.884447 -0.000242 0.687693 -0.446219 -0.013493 0.410991 0.291625 -0.443554 0.203173 -0.377398 -0.059566 1.194283 -0.086732 0.218895 0.053928 -1.235958 0.434204 0.229820 0.565694 0.672223 0.276152 -0.043933 -0.176235 0.303642 -0.115046 0.581530 0.334923 0.314917 -0.444991 0.013723 -0.095391 0.005132 0.495975 -0.000595 0.979813 0.086276 0.302593 0.203772 -0.024103 -0.427517 -0.245272 0.590060 -0.480188 0.162206 -0.249951 -0.245531 -0.037053 -0.241737 -0.160690 -0.200271 -0.120437 -0.130869 -0.524442 0.167687 -0.455880 0.315559 -0.203742 -0.260898 -0.192479 -0.262591 0.543127 0.232524 0.057500 0.205481 -1.202289 0.023411 0.077407 0.061547 0.464578 -0.137700 -0.153869 -0.238983 -0.490262 -0.610738 0.906097 0.923610 0.137188 0.268127 -0.520130 0.022470 -0.377878 -0.115854 0.485411 0.436601 -0.495635 -0.172796 0.078996 -0.184286 -0.289118 -0.731368 0.338806 -0.372073 0.280819 -0.012241 0.229806 -0.046838 -0.069606 0.108126 -0.552543 -0.486496 0.246052 -0.370494 0.206660 0.994991 -0.345266 -0.120519 -0.566134 -0.216257 -0.019797 0.530898 0.277811 0.198587 0.722928 0.609353 0.328758 -0.679093 -0.578268 0.609678 0.605516 0.332082 0.128969 -0.783897 -0.339606 0.217015 -0.457616 -1.100222 -0.499939 0.202702 0.515124 -0.400540 -0.188855 0.384171 -0.228970 0.510797 0.721174 -0.111025 0.116608 0.166646 -0.677148 0.508507 1.091798 -0.133263 0.499477 -0.515958 -0.124985 0.463173 -0.514751 0.247205 0.231256 -0.147542 -0.388583 -0.236640 0.198509 0.505205 0.119317 0.524694 -0.285228 0.486672 -0.436814 -0.705333 -1.077529 -0.211214 0.918093 0.090328 0.923344 -0.654075 -0.386446 0.005986 0.812567 0.104454 -0.345900 0.387663 -0.688421 0.471628 -0.873525 -0.829006 1.281960 1.161629 0.855725 0.031986 0.498932 0.623077 -0.757395 -0.194934 -0.096941 0.353117 0.162228 -1.315211 -0.303932 0.038766 -0.754615 -0.598191 -0.221387 0.324390 -0.045177 0.415522 0.680990 -0.153173 -0.182718 -0.361755 0.518620 -0.267777 -0.226742 -0.115322 0.125075 -0.077296 0.303347 -0.491216 0.347303 0.491735 -0.378505 0.330576 0.472835 0.153272 0.134925 0.872493 0.906563 -0.328253 0.654727 -0.225813 -0.196890 0.529945 -0.083145 0.246404 0.109986 0.171784 0.170670 0.155117 0.390917 -0.383973 -0.347396 -0.671460 -0.174807 0.393033 0.483396 0.340161 -0.779863 -0.926931 -0.090490 0.026716 0.937630 0.045695 1.105251 -0.355160 0.415746 -1.163642 0.170307 0.256734 -0.106136 0.336138 0.178644 -0.319980 -0.499038 -0.209009 -0.677441 -1.078788 -0.256092 -0.565779 -0.405404 -0.699957 0.690445 -0.590566 -0.095934 0.368988 0.181564 0.540417 -0.327712 0.084271 -0.688086 0.339859 0.392790 -0.084909 -0.528261 0.354870 0.062398 1.546139 -0.242385 0.498437 -0.181128 0.653903 -0.356098 -0.718899 -0.137068 0.870009 0.670520 0.022691 -0.088792 -0.167709 0.099838 0.450063 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = -2.012327 -0.194316 5.960259 2.510015 -3.544453 -5.049030 -2.638690 -8.718157 4.488960 1.505847 5.262587 0.626584 2.773411 -2.702490 -0.277925 -0.117586 2.106310 -3.157660 0.971967 -2.484252 -0.021357 6.556131 1.338613 -1.767279 0.452387 -7.604880 4.117233 1.456392 2.934365 4.537909 1.456404 -0.146206 -2.241981 2.538387 0.154197 2.394689 1.752434 1.440310 -2.540853 -0.051777 1.268559 0.104679 3.805107 -0.347710 6.010200 0.155559 2.070033 1.174907 -2.638054 -2.254852 -2.209390 3.257287 -4.006547 1.283913 0.001465 -0.502551 0.214085 -2.629157 -1.640136 -3.358927 -0.829912 -1.637968 -2.350311 1.053940 -3.280383 2.335200 -1.568895 -1.199629 0.205281 -1.649685 3.546321 1.842370 1.362052 1.307793 -5.620353 0.920062 0.180238 1.745187 2.936983 -0.406234 -1.017964 -0.539243 -2.582990 -3.247704 2.857805 3.451856 0.553385 0.339837 -1.376108 0.261446 -1.057279 -1.002031 1.102116 2.498127 -3.777882 -0.392919 -0.689300 -1.237931 -1.781116 -3.627659 1.307834 -2.515233 1.952883 1.891300 -1.794646 -0.540678 -0.970828 0.205255 -3.202096 -3.442859 1.379343 -2.147820 1.681703 6.037732 -2.674776 -0.693805 -3.179797 -0.910285 0.428797 3.554191 0.395509 2.165182 3.684592 5.151401 1.706160 -3.933447 -2.782004 3.057021 3.786597 2.276276 1.878027 -4.036292 -2.396316 0.489022 -1.227463 -6.017747 -2.128073 1.074101 3.922861 0.080960 -2.557825 1.038661 -2.066551 4.756248 3.761270 0.568739 0.664070 0.959127 -4.689899 4.328274 7.060712 -0.641583 3.011034 -2.603954 -1.206270 4.392999 -3.576270 2.140598 1.134651 -0.130179 -1.518576 -2.231317 -0.164162 3.052318 1.002087 2.659252 -0.339866 2.506119 -0.829760 -6.124143 -6.571474 -0.523513 5.823893 1.242625 5.697429 -4.595547 -1.733906 -0.458368 4.989899 1.372916 -2.576707 1.715872 -3.291330 2.842561 -6.350931 -5.697856 7.874619 7.715414 2.857553 1.143503 3.286665 3.730827 -4.150262 -1.482942 -1.597160 2.576816 0.285785 -4.799468 -0.936709 0.629884 -4.108425 -4.290363 0.154278 2.099139 2.054405 -0.403894 1.611350 0.817140 -1.689403 -3.086053 3.143388 -2.564847 -2.634983 0.266150 0.246394 0.902729 1.930579 -1.702685 1.280685 1.946299 -2.013022 1.107149 2.498733 2.125250 0.564327 4.192294 5.437973 -1.175993 3.003106 0.306621 -1.729091 6.222133 -1.117870 1.768989 1.071416 0.717986 1.465237 1.020641 2.312020 -2.481666 -1.438848 -4.271853 0.399380 0.820883 3.959807 -3.156978 -5.391375 -5.905708 -0.369492 1.983599 3.412232 -0.066702 7.834710 -1.761552 0.615001 -8.098320 -0.048908 3.720640 0.194487 3.150276 1.427730 -2.319202 -4.388353 -1.570552 -3.786327 -1.521577 -2.095514 -2.906587 -2.800362 -2.713436 5.078229 -2.434744 0.335445 3.438381 0.136976 3.391108 -0.683271 0.030380 -3.363474 -0.163645 0.734245 0.722248 -3.400945 4.995687 -0.280189 8.821838 -1.734307 1.951253 -1.535189 3.672120 -1.720071 -3.901925 -0.474144 5.894424 3.709621 0.643830 -0.601268 -1.070409 -0.701763 2.960672 -PE-benchmarks/weighted-job-scheduling.cpp__std::__lg(long) = 0.105240 0.392224 0.856599 0.442838 -0.105344 -0.542645 -0.152057 -1.091592 0.382257 0.039500 0.440369 -0.175539 0.158601 0.292828 0.052875 0.028938 0.011462 -0.155908 0.369914 -0.089068 -0.023365 0.564108 0.131976 -0.344698 -0.074268 -0.815389 0.625403 0.243616 0.479577 0.416705 0.050990 -0.234860 0.076893 0.450168 -0.233227 -0.271835 0.219417 0.162246 -0.327063 0.103120 -0.227499 0.491533 0.314141 0.115574 0.334697 0.419476 0.438429 0.212840 0.081335 0.226144 -0.386744 0.631413 -0.413209 0.310764 -0.040577 -0.085709 0.059059 -0.427323 -0.131337 -0.266865 -0.087745 0.230177 -0.295566 0.079307 -0.666839 0.112983 -0.272200 -0.244022 0.070719 0.544003 0.552608 0.321904 0.260199 -0.186232 -0.828393 0.308737 -0.176287 0.299775 0.317048 -0.578771 -0.003081 0.315426 -0.338509 -0.477649 0.295270 0.437210 0.060399 -0.178797 0.319813 -0.184226 -0.236406 -0.251468 -0.224658 0.571615 0.155498 0.591376 -0.378123 0.096576 -0.260773 -0.576178 -0.080717 -0.500082 0.330995 0.110266 0.319756 -0.004853 0.209693 0.281087 0.006600 -0.588863 0.227514 0.022372 0.211109 0.470157 -0.090899 -0.038617 0.079128 -0.072411 -0.095937 0.526864 0.136982 0.192220 0.348821 0.655870 0.000234 -0.243773 -0.156095 0.154232 0.088693 0.557039 0.418535 -0.745885 -0.294452 -0.049214 0.197263 -0.652637 0.302590 0.384247 0.261557 -0.366762 -0.496986 0.119852 -0.254708 0.481687 0.506316 0.373994 0.212408 -0.004093 -0.113508 0.496852 0.978570 -0.186203 0.261475 -0.504701 0.034998 0.305559 -0.369978 0.363390 -0.077310 0.260969 0.149434 -0.405066 -0.099547 0.503659 0.459531 0.160766 0.690543 0.061556 -0.204006 -0.738985 -0.263455 0.055985 0.543658 -0.397861 0.723935 -0.334009 -0.376903 -0.026328 0.229209 0.132249 0.020533 0.108735 -0.272146 0.251021 -0.837098 -0.589147 0.471676 0.416014 0.171296 -0.330085 0.151705 0.483697 -0.197120 -0.529063 -0.192603 0.318956 -0.370423 -0.346877 -0.309563 -0.110437 -0.542818 -0.080914 0.137394 0.200137 0.664227 -0.058223 -0.427678 -0.034409 -0.758335 -0.503742 0.296896 -0.466116 -0.342496 0.095689 0.006211 0.043306 0.113031 -0.117105 0.047221 0.634875 -0.320183 -0.087430 0.374105 0.262523 -0.158915 0.693749 0.298074 0.345684 0.364120 0.450557 -0.257207 1.050358 0.049433 0.075798 0.142743 0.089606 -0.225951 0.293390 0.207950 -0.245025 -0.671180 -0.620278 0.294734 -0.047560 0.427080 -0.102737 -0.337414 -0.366750 -0.266550 0.374331 0.554190 0.090211 0.810859 0.061824 0.306552 -0.647942 -0.006509 0.225016 -0.023087 0.363393 0.353598 -0.420545 -0.081306 -0.118890 -0.234711 -0.323280 -0.330315 -0.578527 -0.321778 -0.160210 -0.097376 -0.103664 0.079385 0.497264 -0.045645 0.129997 -0.359980 -0.105256 -0.198388 -0.117445 0.618551 -0.038101 -0.639301 0.367361 -0.234443 1.314559 -0.365869 0.268636 -0.478383 -0.142316 -0.056496 0.131808 -0.047561 0.784699 0.135176 0.117988 0.027983 -0.125135 -0.096096 0.244636 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.823754 -0.218237 4.811895 1.096646 -2.492298 -3.828311 -2.025758 -7.457124 3.683204 1.616139 4.535354 0.422078 2.559632 -2.169116 -0.051321 0.484884 1.989040 -2.930845 1.073994 -1.979832 0.797401 5.236223 0.788242 -0.354851 0.291221 -6.063269 2.433850 0.831582 2.457521 3.241105 1.458323 -0.111669 -1.939501 1.707157 0.451134 2.510103 2.033229 1.245070 -2.252485 -0.104813 0.192233 -0.256724 2.640768 -0.406833 5.363537 -0.405093 1.633073 0.901446 -1.884765 -2.072629 -1.653529 3.001272 -3.132371 0.778128 0.386479 -1.002542 -0.332397 -1.698807 -1.355071 -2.561817 -0.832069 -1.536415 -1.657258 1.014438 -2.142604 2.123478 -1.197647 -0.542308 -0.295170 -1.473763 2.786693 1.475395 1.492854 2.002184 -4.813108 0.746108 0.125044 1.111013 2.261919 -0.288908 -0.737144 -0.648817 -1.738763 -2.765345 2.677691 3.595489 0.323245 0.295648 -1.857520 1.059283 -1.244428 -0.994188 0.935143 1.944589 -3.585018 -0.580107 -0.054664 -1.135747 -1.369602 -3.082988 1.120789 -2.025401 1.406009 1.134027 -0.826839 -0.612434 -1.650379 0.171424 -2.981269 -2.487542 1.538544 -1.677531 1.008898 4.806923 -2.621127 -0.131442 -2.894116 -0.566644 0.461482 2.582512 0.337593 1.999985 2.507382 3.965414 1.603647 -3.137626 -2.368900 2.865701 3.452956 1.582846 1.165896 -3.198327 -1.786128 0.682057 -1.415421 -4.631949 -2.308005 1.183853 3.218381 0.088561 -1.616146 0.203575 -1.452465 3.987553 3.202500 0.196084 0.305611 1.042673 -3.786178 3.129195 5.288004 -0.584816 2.691914 -1.574341 -0.103323 2.853825 -3.176251 1.856126 1.138241 0.085003 -1.594488 -1.728131 -0.590844 2.266966 1.361270 2.459005 -1.310009 2.212907 -0.832969 -4.773447 -5.575615 -0.949209 4.753568 0.672141 3.770783 -3.472010 -1.808963 -0.212075 4.136584 1.192279 -2.521694 1.586222 -2.848101 2.269815 -4.451350 -4.316122 6.401699 6.751914 2.741669 0.896378 2.646240 3.137358 -4.402880 -1.168096 -0.842819 2.133035 -0.436030 -4.983729 -1.157385 0.646569 -3.363749 -3.667520 -0.368967 1.692061 1.049141 0.933435 2.515480 1.435265 -0.713772 -1.723427 2.399589 -1.406272 -2.654379 -0.112240 0.487045 1.082128 1.508851 -1.980464 1.442296 2.253091 -2.094516 0.891200 2.206548 1.407043 0.607795 3.581746 4.264155 -0.756729 2.634821 -0.419639 -1.522321 3.790144 -0.583691 1.431018 0.549256 -0.154261 1.135025 0.615197 1.765142 -2.026615 -1.613038 -3.246290 -0.231239 0.565947 3.462883 -1.287592 -5.167254 -4.361491 0.187657 1.667274 2.604253 -0.075174 6.075705 -1.537818 0.748060 -6.513959 0.178932 2.718286 -0.044167 2.213370 0.970549 -1.666058 -3.293038 -1.141796 -3.282693 -2.405336 -1.441695 -2.351219 -1.948502 -2.876557 4.877176 -2.178413 -0.213838 2.029502 0.595137 3.307363 0.064612 -0.017535 -3.025508 0.608737 0.836352 0.378733 -2.654982 3.808692 -0.045268 7.329069 -1.639964 1.223296 -0.871043 3.054845 -1.383927 -3.087312 -0.215634 4.760086 3.473812 0.579839 -1.030129 -1.216500 -0.556750 2.202516 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.569561 -0.250369 1.975771 0.433848 -1.236584 -2.519370 -1.011282 -3.829512 1.927109 0.971944 2.162830 0.436197 1.635623 -1.254330 -0.070707 0.555579 0.938689 -1.349525 0.424136 -1.178499 -0.417284 3.071039 0.337941 0.123446 0.072273 -2.923295 1.641167 0.371883 1.204846 2.077598 0.799870 -0.074554 -0.826708 0.892288 0.101431 1.526747 0.517536 0.823434 -0.896625 0.088808 0.340379 -0.429495 1.625445 0.065356 2.546249 0.144007 0.773536 0.555474 -0.646049 -1.284592 -0.669563 0.912946 -1.692548 0.439051 -0.490104 -0.414583 0.113481 -0.591280 -0.487420 -0.929301 -0.399585 -0.923536 -1.328291 0.522404 -1.319009 0.904666 -1.007571 -0.684358 -0.557174 -0.849080 1.394439 0.683141 0.270204 0.586086 -2.835945 -0.020646 0.064456 0.306515 1.317347 -0.040694 -0.840631 -0.709475 -1.371937 -1.530994 1.738811 1.709579 0.168264 0.552118 -1.104234 0.136439 -0.740796 -0.139934 1.105047 1.014209 -1.402849 -0.428032 0.238749 -0.495919 -0.676772 -1.914328 0.846087 -0.883760 0.755255 0.281209 -0.165694 -0.475120 -0.621183 -0.091281 -1.621950 -1.332437 0.596126 -1.059622 0.505566 2.394159 -0.995694 -0.247494 -1.515639 -0.534800 0.408777 1.410688 0.726555 0.573650 1.801125 1.767909 0.750285 -1.801051 -1.331180 1.366813 1.591587 0.666921 0.516983 -1.572110 -1.044375 0.618375 -0.993770 -2.543822 -1.188923 0.686254 1.385712 -0.509877 -0.508787 0.769428 -0.772650 1.348837 1.912372 0.058597 0.330422 0.302710 -1.904054 1.493571 2.737277 -0.198528 1.287320 -1.143192 -0.551899 2.055574 -1.551440 0.640700 0.548472 -0.355580 -1.259495 -0.573561 0.369503 1.216010 0.157857 1.255237 -0.487541 1.215742 -0.706206 -1.957835 -2.667960 -0.312355 2.788230 0.897075 2.256213 -1.936550 -0.348788 0.185394 1.798319 0.750297 -1.164157 0.886894 -1.364157 1.196306 -2.940623 -2.154873 3.414892 2.844967 1.859565 0.343020 1.015123 1.663139 -1.677782 -0.550995 -0.581287 1.027723 0.192574 -2.614597 -0.486833 0.311298 -1.920993 -1.656666 -0.290580 0.958742 0.540939 0.114257 1.246784 -0.292615 -0.277777 -1.186552 1.378620 -0.744999 -0.933482 -0.126201 0.185476 0.071399 0.571149 -0.542687 0.912360 0.722236 -0.747491 0.693873 1.133634 0.584988 0.328977 2.073953 2.422423 -1.104965 0.873455 -0.439826 -0.433546 1.844745 -0.475276 0.796122 0.393481 0.706967 0.748222 0.241763 1.221023 -0.972634 -0.645913 -1.507775 -0.249627 0.970250 1.443880 -0.361689 -2.093625 -2.675031 0.078876 0.201973 2.218135 -0.073789 2.926250 -0.915594 0.794282 -2.938008 0.350693 1.035832 -0.054857 1.098826 0.495995 -0.779486 -0.940657 -0.754454 -1.719743 -1.379665 -0.613582 -0.977451 -1.001093 -1.157282 1.536390 -1.354518 -0.220780 0.923570 -0.096167 1.503372 -0.410745 0.162347 -1.725172 0.555392 0.644335 0.033197 -1.192264 1.653337 0.123892 3.478076 -0.421769 1.023891 -0.236746 1.834055 -0.954033 -1.932222 -0.349924 2.242306 1.633408 0.021481 -0.036354 -0.357752 0.443429 1.023275 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.977180 -0.732809 4.080381 1.035271 -1.688872 -3.601651 -1.838427 -6.619642 3.586099 1.624071 4.378555 0.367819 2.555689 -2.241654 0.027094 0.860465 1.612360 -3.021430 1.077515 -1.676510 0.935598 5.660971 1.196389 -0.214262 -0.107428 -5.603167 2.247075 0.589539 2.218361 3.468035 1.380724 0.173958 -0.965156 1.468357 0.186825 2.872533 1.348822 1.399866 -1.578368 -0.334877 0.272620 -0.536254 2.274680 -0.271429 5.191852 -0.457944 2.144457 0.411884 -1.384461 -2.045585 -2.210056 3.000796 -3.335956 0.314517 -0.457413 -1.171389 0.105119 -1.343303 -1.466455 -3.126646 -0.997621 -1.327323 -2.215317 0.894261 -2.015903 2.400871 -1.200234 -0.193595 -0.783016 -1.044222 2.753356 1.677347 1.456646 1.853322 -4.850060 0.800461 -0.122693 0.677508 2.106300 -0.451884 -1.107034 -0.697548 -1.531632 -2.607136 3.356252 2.947290 0.215052 0.578868 -1.476661 1.361603 -2.029441 -0.618378 0.811724 1.867056 -2.963832 -0.248755 1.176452 -1.006603 -1.037018 -2.231082 1.182767 -2.185895 0.901428 1.325211 -0.146936 -0.563072 -2.075603 -0.098256 -3.346419 -2.772021 1.430850 -1.756484 0.390046 4.022727 -2.796600 0.412166 -2.439086 -0.086013 0.701808 2.626776 0.430714 2.383161 2.169833 3.429447 1.161169 -2.986034 -1.962082 2.865095 3.776072 1.208605 0.716415 -2.765090 -1.943577 0.456873 -1.031194 -4.153860 -2.438683 2.094546 2.834691 0.136193 -1.791180 1.080229 -0.848834 3.819181 3.559335 -0.152326 0.149457 1.112694 -3.797254 2.932360 5.351661 -0.628524 2.665999 -1.536786 -0.212691 3.519828 -3.459042 1.643527 1.179951 0.234303 -1.570330 -1.679390 -0.427815 2.100790 1.466662 2.498943 -1.073806 2.158631 -0.166890 -4.450790 -5.188439 -1.278203 4.592295 0.710807 3.637837 -3.023474 -1.360079 0.200209 3.315362 1.108360 -2.285097 1.122573 -2.766630 2.080185 -5.302734 -4.215203 6.425753 5.732566 2.953413 1.387970 2.324021 3.637813 -3.285545 -0.663978 -0.504115 2.383805 -0.194488 -4.519492 -0.851102 0.287541 -3.247473 -3.949731 -0.661668 1.474603 0.111938 0.821961 2.421512 0.809635 -0.564152 -1.140820 1.770864 -1.595285 -2.876441 -0.410527 0.557395 0.843206 1.045361 -1.635694 2.275386 2.154359 -2.001598 0.596872 2.058723 1.038067 0.933860 3.179230 4.632356 -1.119732 2.324284 -0.643526 -1.071132 3.129355 -0.444393 1.019468 0.444273 0.041936 1.631390 0.444043 1.568045 -1.789899 -1.267932 -3.067757 0.244130 1.169240 3.199454 -0.868532 -4.684179 -4.003497 0.145724 1.874739 2.906260 -0.257996 5.733034 -1.686083 0.657721 -6.182902 0.394827 2.483031 -0.004528 1.978762 0.995209 -1.333842 -2.753646 -1.319613 -2.583930 -2.111555 -1.659440 -2.459130 -1.818776 -2.831160 4.338603 -3.019231 -0.070246 1.458542 0.809145 3.015503 0.252230 -0.036446 -3.224216 1.080244 0.520077 0.597214 -2.295748 3.335092 -0.399477 6.573625 -2.021341 1.412143 -1.021795 3.800284 -1.802099 -2.594099 0.106843 4.563633 3.411680 -0.158100 -0.553911 -1.110098 -0.090327 2.086736 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.909336 0.010353 3.307457 2.162775 -2.522883 -3.773730 -1.599732 -5.285878 2.807544 0.774423 2.932902 0.707243 1.841184 -2.331700 -0.116946 -0.034368 1.352420 -1.148318 -0.166579 -1.716323 -0.830555 3.754308 0.490969 -2.021619 0.378188 -3.991131 2.596008 1.604318 1.348045 2.313883 0.965312 0.065545 -1.516543 1.817531 -0.676329 1.280547 0.896679 0.936196 -1.582575 -0.630908 1.262780 0.700490 2.660676 -0.151557 3.518809 0.365518 1.418697 0.987067 -1.834929 -1.361508 -0.746393 2.061182 -1.912995 1.281367 -0.050404 0.225567 0.753410 -2.009314 -0.461876 -1.973405 -0.081661 -0.601969 -1.823086 0.237110 -1.884815 0.822875 0.125831 -1.465296 0.400327 -1.129783 2.018341 0.352987 -0.120437 -0.304785 -3.003080 -0.046492 0.421959 0.957703 2.166214 0.337095 -0.528928 -1.101646 -1.798473 -1.905473 1.945388 1.556250 0.627750 1.132437 -1.031455 -0.574737 -0.126697 -0.829723 1.332718 1.384362 -1.970846 -0.703505 0.166271 -0.821867 -1.520999 -1.703267 1.263313 -1.111612 1.251171 0.985577 -1.053336 -0.111268 -0.057813 -0.006143 -2.051668 -1.633962 0.598992 -1.746809 1.446795 3.572028 -1.062220 -0.972923 -1.602943 -1.080804 0.006545 2.327162 0.605936 0.630623 2.965179 3.060514 0.914318 -2.634115 -1.856080 1.434699 2.145370 1.736299 1.070589 -2.918025 -1.386230 0.689606 -1.177759 -3.923297 -1.039476 0.288977 2.360840 -0.056022 -1.909935 1.422322 -1.164289 2.346102 1.663983 0.468482 0.336241 0.348409 -2.766403 2.376355 3.966293 -0.242971 1.669300 -1.380470 -1.307675 2.333989 -1.650181 0.928957 0.987272 -1.170185 -1.021634 -0.772348 0.615995 1.970499 0.122324 1.229714 -0.239488 1.633569 -1.385716 -3.534430 -4.217446 0.165892 3.289299 1.211212 4.506421 -2.972227 -1.252217 -0.540695 3.183724 -0.224239 -1.297955 1.153812 -2.184752 2.011920 -3.165942 -3.331050 5.068949 4.131813 1.980367 0.313049 2.537644 1.415382 -1.946591 -0.924262 -0.937463 0.937304 1.444394 -2.349256 0.067906 0.403334 -2.819217 -2.297032 0.150792 1.294246 0.852116 -0.554693 0.948805 -0.550533 -1.111474 -2.128528 1.513963 -1.240313 -0.423916 0.215999 0.189193 0.088729 1.356912 -0.906767 -0.061626 0.257898 -0.971535 0.863842 1.138967 1.662815 0.702033 2.995017 3.244033 -1.211414 2.736730 0.232614 -0.976109 4.106474 -0.863634 1.240730 0.898873 1.518196 1.156338 0.522320 1.742891 -1.575679 -0.011199 -2.731614 -0.076702 1.096971 2.017434 -2.710660 -2.250322 -4.146093 -0.745627 0.370518 2.278123 -0.620115 4.573886 -1.228788 0.410865 -5.133323 0.063827 2.059873 -0.195349 1.435569 0.946381 -1.734778 -3.446197 -0.915613 -2.427452 -1.606171 -1.011515 -1.244542 -1.739590 -1.449749 2.582554 -1.695751 0.334024 2.976481 -0.310528 1.342659 -1.516111 0.536687 -1.403135 -0.537213 0.365735 0.078725 -2.255264 2.688725 0.071802 5.753028 -0.419093 1.959029 -1.025582 2.382002 -1.065696 -2.850631 -0.774764 3.245577 2.124986 0.244932 0.292619 0.201454 -0.501786 2.352263 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -0.731227 0.389771 2.552347 1.782762 -1.492294 -2.154876 -0.949607 -3.301011 1.576359 0.330014 1.997318 -0.089463 0.954217 -0.881418 -0.286580 -0.258061 0.862577 -0.638137 0.199448 -0.926191 -0.189043 2.272688 0.370536 -1.552878 0.319190 -2.543064 1.988135 1.180841 0.896261 1.479506 0.549073 0.424983 -0.613445 1.216166 -0.462359 0.435875 0.343712 0.833199 -0.955324 -0.230974 0.747922 0.219072 1.457187 0.066762 2.146450 0.678313 1.168518 0.409140 -1.228949 -0.550344 -1.253353 1.465567 -1.433304 0.532746 -0.601075 -0.215159 0.618322 -1.305703 -0.448272 -1.774761 -0.080938 -0.301236 -1.147619 0.203266 -1.547320 0.914345 0.079093 -0.876002 0.192289 -0.256226 1.430271 0.603032 0.181189 0.039379 -2.091962 0.393890 0.280455 0.797620 1.349170 -0.247129 -0.120657 -0.095270 -1.140855 -1.294139 1.358350 0.995322 0.718994 0.510302 -0.135116 -0.385596 -0.330838 -0.469205 0.314649 1.223257 -1.101068 0.177368 -0.194946 -0.472521 -1.123494 -0.944443 0.657170 -0.986779 0.851830 0.959587 -0.903378 0.221152 -0.113156 0.147753 -1.085093 -1.485949 0.215294 -1.424084 0.928131 2.290463 -0.812366 -0.537906 -0.953383 -0.448094 0.120293 1.597236 -0.085534 0.785390 1.550681 2.038336 0.413511 -1.529168 -1.054364 0.970347 1.161286 1.256940 0.836943 -1.787910 -1.068329 -0.163474 -0.454972 -2.368145 -0.573157 0.340517 1.565157 -0.215574 -1.675062 1.148986 -0.884882 1.803106 1.307995 0.527043 0.253444 0.514753 -1.793978 1.604601 2.935730 -0.295260 1.099904 -0.925113 -0.603731 1.630732 -0.993978 0.805460 0.620605 -0.475859 -0.377988 -0.811717 -0.057934 1.303356 0.491485 0.651000 0.596056 0.895329 -0.483982 -2.598030 -2.585793 -0.121269 2.232844 0.421737 2.904796 -1.976875 -0.762858 -0.293879 1.971493 0.047839 -0.651427 0.435692 -1.245559 1.237171 -2.383781 -2.502490 2.815114 2.371799 0.900998 0.432144 1.523629 1.019868 -0.995552 -0.802560 -0.498383 0.957832 0.362507 -1.102040 -0.215229 0.107755 -1.699071 -1.644953 0.205878 0.852729 0.637081 -0.345295 0.437048 -0.317307 -0.889224 -1.494206 0.520856 -1.188320 -0.781153 0.311987 0.015540 0.254022 0.692551 -0.729506 0.176104 0.441174 -0.713399 0.334004 0.683955 0.859606 0.180742 1.701369 2.311838 -0.512568 1.455121 0.444469 -0.731505 3.122239 -0.201411 0.857353 0.576093 0.637167 0.690000 0.445641 1.105420 -1.041598 -0.230408 -2.138738 0.264552 0.561801 1.408600 -1.892031 -1.304271 -2.498223 -0.442259 0.899563 1.370507 -0.328785 3.203539 -0.512893 -0.009495 -3.310035 -0.035768 1.568353 -0.197146 1.116216 0.788731 -1.288411 -2.164648 -0.549332 -1.417466 -0.594746 -1.006359 -1.149869 -1.420469 -0.554314 1.334818 -1.019888 0.334331 1.921716 0.045816 0.669463 -0.788665 0.191643 -0.736152 -0.589779 0.505909 0.305093 -1.595983 1.850303 -0.303323 3.765467 -0.549364 1.139949 -0.901086 1.383301 -0.468873 -1.412452 -0.322182 2.650328 1.158600 0.193491 0.171479 -0.142230 -0.290081 1.614379 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -2.280786 0.751563 7.605217 2.744766 -3.792218 -4.630263 -2.926612 -9.501296 4.476235 1.376765 5.747892 -0.221629 2.315890 -1.751785 -0.492126 -0.452126 2.131794 -3.658218 1.789639 -2.352262 0.435480 6.745121 1.439755 -2.039050 0.471227 -9.027917 4.968145 1.556979 3.433058 4.697083 1.515626 0.068057 -2.126324 3.053812 0.300269 1.749204 2.337396 1.716971 -2.742319 0.501339 1.097561 0.578957 3.667033 -0.385772 6.195165 0.888489 2.230643 1.185637 -2.903446 -1.733326 -3.140163 4.207242 -4.360725 1.220684 0.322908 -0.998832 0.169066 -3.341125 -1.974520 -3.811933 -1.285992 -1.684481 -2.140888 1.371153 -3.905675 2.837645 -1.796690 -0.903806 0.581708 -0.731693 3.977115 2.391927 2.267807 1.971693 -6.103002 2.116137 0.233547 2.391273 3.094137 -1.375699 -0.533737 0.759314 -2.633487 -3.953254 2.738831 4.127478 0.857749 -0.672995 -0.525795 0.495319 -1.562339 -1.380436 0.074228 3.542397 -3.859084 0.548238 -1.810018 -1.425497 -2.467386 -4.086389 0.851313 -3.401152 2.234551 2.487496 -2.464249 -0.578510 -1.204506 0.417119 -2.734535 -4.167060 1.602539 -2.514339 2.019408 6.785399 -2.962132 -0.495838 -3.279328 -0.812792 0.442784 3.991784 -0.318143 2.874398 3.510461 5.916975 1.671806 -3.856080 -2.866195 3.251778 3.768024 2.552754 2.494203 -4.897465 -2.772496 -0.357041 -0.413123 -6.263105 -1.799532 1.135576 4.128577 -0.127236 -3.034491 0.875050 -2.465255 5.864686 4.074608 0.909535 0.650179 1.165703 -4.881050 4.967702 8.321022 -0.971779 3.265056 -3.068402 -0.956216 4.648875 -3.837313 3.030000 1.127285 0.759672 -1.150313 -3.157699 -0.994898 3.567008 1.789584 2.753504 0.978942 2.184701 -0.017651 -7.119089 -6.964786 -0.507084 6.142763 0.081177 5.985373 -4.864177 -2.129323 -0.563910 5.747658 1.814671 -2.522448 1.465244 -3.251993 2.886230 -6.498031 -6.554638 7.900905 8.443902 1.946726 1.183337 3.492290 4.259601 -4.807495 -2.351945 -1.781289 3.319865 -0.902825 -4.771076 -1.497535 0.695529 -4.108923 -4.439963 0.326557 2.255285 3.171501 -0.292307 1.014894 1.732103 -2.570901 -3.553617 3.113534 -3.066532 -3.874373 0.748979 0.344305 1.260848 2.260432 -2.060911 1.320554 2.848459 -2.508582 0.653119 2.951098 2.244828 -0.024378 4.368873 5.406974 -0.188948 3.180873 1.063522 -1.917270 7.413716 -0.833943 1.664192 1.237575 -0.119219 1.032635 1.514709 2.240321 -2.710593 -2.366512 -5.322314 1.265354 -0.268345 4.279603 -3.721931 -6.133047 -5.898340 -0.528883 3.394849 3.185678 0.285159 9.069626 -1.098292 0.085640 -8.829698 -0.306599 4.353473 0.182533 3.906227 1.864192 -2.866369 -4.709578 -1.677516 -3.926451 -1.265926 -2.743078 -3.754271 -3.439698 -2.610724 5.676328 -2.182497 0.743772 4.023863 0.768612 3.349134 -0.181391 -0.401991 -3.704107 -0.627227 1.501514 0.805947 -3.879931 5.771147 -0.951128 9.922565 -2.723217 1.807877 -2.027393 3.132574 -1.058196 -3.263045 -0.177707 7.102729 3.469526 1.070739 -1.082131 -1.583929 -1.290441 3.545798 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = -1.630552 -0.523032 3.523853 -0.134919 -1.852306 -2.962535 -1.856516 -5.896847 2.910483 1.700251 3.693612 0.588226 2.319951 -1.589789 0.118407 0.519265 1.425764 -3.080989 1.328750 -1.598751 0.170004 4.722110 1.045968 0.919070 -0.012437 -5.258220 2.118102 -0.275731 2.052852 3.373330 1.024007 -0.553733 -1.647578 1.284420 0.978809 2.574719 1.739392 1.064145 -1.260907 0.545813 0.089237 -0.680003 2.155039 -0.308025 4.250236 -0.240783 0.522823 0.755045 -1.305910 -2.157273 -0.714521 1.439067 -3.035846 0.562007 0.550741 -0.799726 -0.590705 -0.849268 -1.257074 -1.738925 -0.932715 -1.920963 -1.176828 1.202403 -1.708597 1.744618 -2.204183 -0.194190 -0.620665 -1.317876 2.245592 1.524091 1.582484 2.233226 -3.987015 0.668719 -0.059601 0.664847 1.665407 -0.428892 -1.370521 -0.454836 -1.570290 -2.556627 1.939126 3.106241 -0.135325 -0.226612 -1.643095 1.274343 -1.094162 -0.430430 0.949159 1.688485 -2.662191 -0.610654 -0.089305 -0.785962 -0.656236 -3.494103 0.617029 -1.816175 1.087170 0.960022 -0.532645 -1.347185 -1.780090 0.111161 -2.575562 -2.167909 1.614435 -0.958027 0.356705 3.644582 -2.162266 0.329015 -2.481740 -0.527699 0.896247 2.026956 0.819987 1.497287 2.053185 3.127954 1.367382 -2.498467 -1.935000 2.353881 2.973842 0.646152 0.953150 -2.500435 -1.510659 0.992282 -1.292908 -3.583800 -2.088085 1.174422 2.276002 -0.180899 -0.573874 -0.005565 -1.245180 2.806076 3.120842 0.103951 0.299552 0.448654 -3.031896 2.698193 4.143444 -0.516901 2.239670 -1.412062 -0.403687 3.150219 -3.085291 1.495029 0.708405 0.557792 -1.809778 -1.509798 -0.235588 1.853582 0.897407 2.581623 -1.357529 1.694199 -0.406344 -3.346601 -4.185582 -0.673454 4.384202 0.761451 2.481692 -2.724276 -0.897029 0.346127 3.272982 1.868501 -2.381042 1.312709 -1.821197 1.627410 -4.438610 -3.296136 5.333773 5.571565 2.502709 0.715259 1.464782 3.231709 -3.705649 -0.886866 -1.098066 1.968957 -0.959214 -4.510907 -1.329388 0.737658 -2.640064 -2.685805 -0.559417 1.395091 1.436670 0.551334 1.581112 1.469212 -0.393506 -1.231322 2.614375 -1.093212 -2.529334 -0.276235 0.376279 0.783996 1.020092 -1.072848 1.637658 1.941918 -1.679071 0.822228 2.233649 0.953189 0.470637 3.120761 3.348991 -0.959554 0.771895 -0.622878 -0.786597 2.465986 -0.819919 0.958316 0.363341 0.028486 0.819502 0.435353 1.573304 -1.423800 -1.907174 -2.181338 -0.152738 0.471731 2.657493 -0.467139 -4.806706 -3.536568 0.631679 1.154026 2.752584 0.348999 4.802285 -1.117735 1.049696 -4.682310 0.297032 1.869544 0.154453 2.043496 0.621214 -0.834561 -1.748458 -1.223832 -2.647472 -1.721620 -1.032578 -1.781393 -1.134444 -2.364402 3.663015 -1.569916 -0.412716 0.879022 0.398293 3.180689 0.873671 -0.327183 -3.406935 1.158696 0.761337 0.077848 -1.678872 3.262444 0.244269 5.297367 -1.456658 0.674497 -0.250264 2.445241 -1.259090 -2.456878 -0.024211 3.494798 2.886116 0.466856 -0.914393 -1.038971 0.046579 1.163477 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = -1.717179 -0.309323 4.773666 0.516667 -2.530672 -3.475792 -2.106256 -7.996666 4.020604 2.045684 4.479729 0.558829 2.837789 -1.996914 -0.459306 0.444342 1.923991 -3.437905 1.751518 -1.939274 0.646764 6.220149 0.681845 0.831613 0.092660 -6.843938 3.230200 -0.177572 3.184804 4.055304 1.605791 -0.284434 -2.086950 1.544818 1.306518 2.804421 1.757842 1.519687 -2.187156 0.412547 0.136095 -1.259788 2.655645 -0.155010 5.370680 -0.665857 1.011946 0.782596 -1.291448 -2.278992 -1.763191 2.023931 -3.581494 0.575984 0.258259 -1.607851 -0.735416 -0.913515 -1.434987 -1.748341 -1.196832 -2.481917 -1.528422 1.497453 -2.563472 2.410958 -2.820312 -0.172953 -1.006361 -1.701869 2.847534 2.050437 2.179684 2.452109 -5.947931 0.935018 -0.192361 0.873134 2.313084 -0.051420 -1.188492 -0.462442 -2.206307 -3.227720 2.719059 4.461529 -0.289491 -0.279630 -1.928784 1.125231 -1.648613 -0.616461 1.119464 2.283610 -3.844148 -0.349502 -1.011594 -0.929602 -0.629113 -4.413403 0.980774 -2.358786 1.500265 0.849795 -1.041208 -1.117580 -1.280031 -0.020010 -2.601177 -2.810503 1.778723 -1.521482 0.919760 5.347342 -2.439537 -0.101752 -3.520320 -0.532312 0.769126 2.434841 0.629914 2.124273 2.515587 3.837273 2.006778 -3.168041 -2.476748 3.760201 3.090774 0.968353 1.021648 -3.019780 -1.814245 0.812158 -1.010310 -4.622271 -2.669610 1.355264 2.975363 -0.608794 -0.452089 -0.335298 -1.607583 3.635194 3.926898 -0.097024 0.599445 1.141774 -3.739023 3.295116 5.685842 -0.330395 2.353473 -2.176532 -0.156875 3.812391 -3.583258 2.060817 0.466220 0.958176 -2.105427 -2.072695 -0.362861 2.294658 0.625900 2.695549 -1.265166 2.218054 -0.617480 -4.554348 -5.382900 -1.016987 5.665339 1.082381 3.169511 -3.584573 -0.897163 0.473229 3.941896 2.809141 -2.584330 1.962034 -2.654565 2.197649 -5.465736 -4.464407 6.271171 6.801108 2.705194 0.756180 1.709422 3.844999 -4.776082 -1.609732 -1.416673 2.556689 -1.187826 -5.657153 -1.678670 0.830925 -3.296911 -3.752279 -0.202288 1.702151 2.229701 0.745330 2.644390 1.420000 -0.294596 -2.274928 3.640307 -1.382535 -3.310068 -0.265261 0.528897 0.930246 1.528055 -1.509648 2.203914 2.598026 -1.602997 1.037310 2.630966 0.680800 -0.265176 3.379191 4.481514 -1.064460 1.004118 -0.611644 -1.200565 3.904974 -0.726837 1.303250 0.531738 -0.668146 0.968421 0.756000 1.781643 -2.059940 -2.307451 -3.072745 -0.272522 0.250214 3.498718 -0.879223 -5.787858 -4.393331 0.702198 1.499789 2.966922 0.761041 6.326093 -1.725596 1.007768 -5.980153 0.346138 2.970608 0.184696 3.052801 0.805741 -1.337586 -1.524619 -1.444744 -3.344241 -1.868776 -1.652345 -2.661120 -1.996124 -2.738865 4.649527 -1.921562 -0.374371 1.402278 0.420198 3.879498 0.134842 -0.232699 -4.107043 1.235088 0.810672 0.332424 -2.387568 4.054607 -0.176863 6.629679 -1.955107 0.697512 -0.427044 3.258116 -1.883869 -3.551532 -0.020891 4.897068 3.207662 0.740959 -1.430263 -1.741901 -0.026199 1.630669 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(Job&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = -2.799074 0.281151 11.643594 4.678903 -6.135687 -9.159545 -4.421232 -14.411219 7.558805 1.687935 8.493426 1.180186 4.083470 -4.430081 0.413536 0.693741 3.251017 -5.729953 2.379612 -3.991294 -0.167899 12.155496 3.485824 -4.184458 0.255314 -14.773871 7.293220 3.275481 6.593016 8.373201 1.975775 -1.489842 -2.767992 5.274826 -0.358771 2.549873 3.158625 1.886345 -5.391976 0.890798 1.305888 2.626021 6.761470 -1.597689 9.306537 0.538086 5.536822 2.534834 -4.558112 -2.944171 -5.037681 8.363254 -7.095149 3.161720 1.165002 -0.482589 0.341290 -5.486001 -3.270828 -6.048896 -2.360656 -1.193327 -4.121223 1.699499 -6.630416 3.359899 -3.337341 -2.250791 1.937562 0.258710 6.521866 4.145716 3.506878 1.318473 -10.084589 3.235454 0.005377 4.804130 5.040910 -2.314216 -1.157383 0.477864 -3.840029 -5.942180 4.103086 4.971432 0.930317 -1.157055 -1.100997 0.242271 -2.461743 -2.055789 -0.093880 4.418062 -5.733977 1.093092 -2.585658 -1.623433 -3.630196 -6.625894 0.533974 -5.528713 3.094021 3.751171 -1.355394 -1.323499 -2.521590 0.526476 -5.070644 -6.726305 2.613283 -2.514671 1.662799 10.754073 -4.811561 -0.186715 -3.999763 -0.442908 -0.348993 6.989655 0.335423 4.459769 6.515734 9.926871 2.319088 -6.563451 -3.803819 3.963756 7.290803 4.866387 5.013747 -7.636170 -4.823296 -0.192547 -0.199263 -11.064115 -1.511634 3.471231 6.264483 1.019982 -5.147986 1.088093 -3.532459 10.295458 6.390536 0.950048 1.605767 0.612108 -7.269423 9.074937 14.086570 -2.237520 5.664287 -5.525285 -2.593230 8.706119 -6.776947 4.637033 1.451847 0.858963 -1.406506 -4.967783 -0.910997 6.359298 3.144261 4.740389 2.106152 3.230797 0.128855 -12.069166 -10.696053 0.030544 8.654685 -0.008540 11.331002 -7.237671 -4.095900 -1.098741 7.540348 1.289582 -4.094496 2.108068 -6.067783 4.673564 -12.263036 -10.557959 15.096378 13.744049 3.277534 1.990406 6.237014 7.983911 -7.507263 -3.329080 -2.974522 4.725866 -0.212645 -8.742167 -1.836560 1.625528 -7.777301 -6.325004 0.782695 3.339676 5.088937 -0.943948 -0.297441 1.975393 -6.420436 -5.270279 5.886711 -5.881325 -5.134316 0.982703 0.534366 2.099667 4.056192 -2.548946 1.567142 4.261835 -4.748558 0.361849 4.074505 5.598996 1.631247 7.701352 9.236671 0.535751 7.175556 2.615195 -3.671283 12.288524 -2.253206 1.843912 1.858255 1.551213 1.424253 2.746778 3.555820 -4.192503 -3.874697 -8.598430 2.823624 0.518180 6.454416 -6.005892 -9.581459 -9.375057 -1.962282 5.313541 5.862648 -0.172185 14.529640 -2.824909 0.639101 -15.376978 -0.504555 5.790297 1.356527 6.608183 3.585473 -4.558545 -7.902724 -3.397060 -5.570671 -1.630366 -4.104914 -6.320046 -4.595463 -4.855121 9.087736 -4.725122 1.534345 7.195734 0.165807 6.376297 -0.371887 -0.618026 -6.118194 -0.415650 2.382111 1.868402 -6.140788 9.360814 -1.546039 17.061675 -4.088651 3.449365 -4.361435 4.398817 -1.442160 -5.043752 -0.711351 10.695881 6.173512 1.219894 -0.369129 -1.611171 -2.289574 6.260218 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter&>(__gnu_cxx::__ops::_Iter_comp_iter&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.259004 -0.083108 0.934766 0.439196 -0.567802 -1.498987 -0.462710 -1.920245 0.900931 0.409680 1.222537 0.104386 0.904795 -0.677940 0.080781 0.396802 0.530278 -0.458995 0.157866 -0.548984 -0.378239 1.583617 0.170890 -0.056979 0.064015 -1.098805 0.718886 0.403209 0.507530 0.940367 0.365861 -0.003214 -0.231098 0.413673 -0.184878 0.746534 0.088410 0.494106 -0.458789 -0.098745 0.125223 -0.368547 0.849671 -0.005318 1.173154 0.107017 0.725685 0.225323 -0.427229 -0.612822 -0.540532 0.712579 -0.848917 0.252357 -0.446882 -0.320945 0.317580 -0.222647 -0.234992 -0.658847 -0.170240 -0.404307 -0.861591 0.125397 -0.676756 0.449329 -0.354641 -0.489282 -0.204478 -0.210436 0.742855 0.315210 -0.005897 0.209612 -1.438892 -0.043492 0.129522 0.145169 0.648609 0.003915 -0.237901 -0.410109 -0.728875 -0.749174 1.207349 0.578608 0.311335 0.413740 -0.692262 0.085855 -0.369026 -0.017501 0.589202 0.442134 -0.560508 -0.083977 0.352792 -0.258569 -0.486285 -0.946399 0.435629 -0.489727 0.321096 0.230774 0.095177 -0.104400 -0.436091 0.051422 -0.933167 -0.904519 0.220573 -0.630879 0.044372 1.068659 -0.574636 -0.112871 -0.554011 -0.180608 0.157857 0.714386 0.473288 0.357659 0.907224 0.848290 0.322917 -0.916266 -0.635438 0.529071 0.913797 0.458583 0.216746 -0.740898 -0.613584 0.321263 -0.662145 -1.423523 -0.638114 0.629561 0.781418 -0.188652 -0.529482 0.674957 -0.324166 0.677779 0.980249 0.116107 0.153900 0.195675 -0.943311 0.704194 1.312664 -0.251594 0.776177 -0.423593 -0.325057 1.026124 -0.683388 0.193376 0.389637 -0.302134 -0.521098 -0.284633 0.133294 0.689787 0.285355 0.561211 -0.195554 0.629255 -0.534513 -1.083398 -1.418094 -0.113269 1.426623 0.418937 1.315217 -0.969027 -0.357865 0.183849 0.824502 -0.009622 -0.634228 0.342835 -0.764908 0.655844 -1.663463 -1.198970 1.845006 1.149547 1.007347 0.220696 0.608429 0.861949 -0.788119 -0.254343 -0.324384 0.555232 0.267855 -1.383105 -0.290786 0.080097 -1.126151 -0.740416 -0.196858 0.459301 -0.071189 0.100612 0.673442 -0.415819 -0.266966 -0.378368 0.522933 -0.487909 -0.345032 -0.117572 0.014098 0.067302 0.278328 -0.323930 0.441531 0.241758 -0.592574 0.235845 0.405222 0.399792 0.360373 1.393176 1.479417 -0.597259 0.677229 -0.237926 -0.368501 0.942087 -0.258838 0.354677 0.096340 0.617674 0.435623 0.132386 0.832144 -0.473142 -0.432665 -0.917442 -0.207575 0.741669 0.697766 -0.131539 -0.821502 -1.493817 -0.063858 0.133031 1.368006 -0.204330 1.475201 -0.562064 0.421216 -1.612188 0.211238 0.375045 -0.133149 0.499760 0.249680 -0.442734 -0.631323 -0.394213 -0.846534 -0.866747 -0.303106 -0.514727 -0.523429 -0.682047 0.587605 -0.903562 -0.098339 0.450386 -0.025665 0.710735 -0.190717 0.073521 -0.736367 0.366553 0.517484 0.039483 -0.694559 0.826053 0.117443 2.132360 -0.126203 0.630447 -0.320121 0.891467 -0.467422 -0.886758 -0.209113 1.154337 1.048021 -0.076888 0.147962 0.056496 0.218125 0.648929 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = -1.686828 0.273971 5.875220 2.460054 -4.052606 -5.374292 -2.486753 -8.352621 4.014549 1.049886 4.676621 0.745977 2.271561 -2.712797 0.144112 0.593593 1.903855 -2.827846 1.248317 -2.297072 -0.848035 6.461794 1.466991 -1.947812 0.175144 -7.124343 4.424184 1.724496 3.114994 4.409265 1.411943 -0.711203 -1.983326 2.953231 0.095849 1.743899 1.757153 1.431087 -2.680201 0.418913 0.853689 0.282549 4.002230 -0.827004 5.343000 0.363871 2.787424 1.554734 -2.891721 -1.640782 -2.522756 4.149104 -3.853541 1.945561 0.592517 -0.876021 0.560796 -2.521103 -1.510980 -3.152709 -1.477639 -1.976824 -2.498927 0.833602 -3.476148 1.713645 -1.826923 -1.570728 0.591912 0.013795 3.402674 1.796199 1.556637 1.144542 -5.732984 1.339339 0.479735 2.417264 3.009184 -0.670005 -0.355702 -0.335964 -2.564527 -3.557187 2.559667 2.664692 0.748103 -0.257029 -1.290453 0.513377 -1.269195 -0.991447 0.769818 2.645491 -2.962444 0.214397 -1.054996 -1.125637 -2.462827 -4.421408 0.871118 -2.755431 1.842378 1.546710 -1.214392 -0.972063 -1.497256 0.201666 -3.016409 -3.735297 1.561183 -2.147843 1.134208 5.700167 -2.161679 -0.273433 -2.283373 -0.736185 0.174665 3.496864 0.713561 2.158047 3.513999 5.370474 1.543987 -3.733795 -2.695502 2.154705 3.813277 2.448712 2.168239 -4.180040 -2.608250 0.435162 -0.712021 -5.952028 -1.324129 1.960619 3.481785 0.187211 -2.048303 0.709562 -2.085976 5.089047 3.351199 0.717791 0.598038 0.477713 -4.247382 4.636193 7.143079 -0.899433 3.026777 -2.523225 -1.199016 4.661010 -3.372564 2.285902 0.991250 -0.022704 -1.295182 -2.302815 -0.499354 3.383210 1.620684 2.253355 0.774672 1.988147 -0.816812 -6.187389 -6.088990 0.348939 5.851482 0.558654 5.800889 -4.239645 -2.066419 -0.221754 4.359707 0.907818 -2.453441 1.411327 -3.182124 2.900822 -6.396490 -5.594472 8.267567 7.024339 2.145083 0.854163 3.085883 4.154833 -4.398914 -2.260579 -1.782380 2.412370 -0.049283 -5.068079 -1.292122 0.972283 -4.385890 -3.269159 0.447198 1.943060 2.704578 -0.329236 0.659331 0.838160 -2.560131 -2.806435 3.009648 -2.532659 -2.722194 0.743522 0.402363 1.089779 2.233886 -1.166720 1.002559 1.719422 -2.528287 0.488597 2.155189 2.742626 0.705849 4.886067 5.055770 -0.407699 3.749148 0.971864 -1.846470 6.384691 -1.319974 1.441351 1.329375 0.994380 1.139777 1.267232 2.691891 -2.414551 -1.805052 -4.755065 0.715155 0.589436 3.713995 -3.477236 -5.200093 -5.861130 -0.642736 2.509417 3.332158 -0.447577 7.673850 -1.473914 0.475211 -8.118257 -0.068525 3.032261 0.323782 3.557367 1.630574 -2.558726 -3.883424 -1.887591 -3.452679 -1.537968 -2.143859 -2.561488 -2.564977 -2.281036 4.399939 -2.599783 0.623223 3.640486 -0.206894 3.296063 -0.701021 -0.122672 -3.414785 -0.146182 1.766982 0.421114 -3.389044 5.146107 -0.381984 9.769016 -1.756154 1.844153 -1.824507 2.701093 -0.885127 -3.013273 -0.438302 5.691616 3.425047 0.748112 -0.269706 -0.282518 -0.944751 3.495905 -PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(bool (*&)(Job, Job)) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = -1.630552 -0.523032 3.523853 -0.134919 -1.852306 -2.962535 -1.856516 -5.896847 2.910483 1.700251 3.693612 0.588226 2.319951 -1.589789 0.118407 0.519265 1.425764 -3.080989 1.328750 -1.598751 0.170004 4.722110 1.045968 0.919070 -0.012437 -5.258220 2.118102 -0.275731 2.052852 3.373330 1.024007 -0.553733 -1.647578 1.284420 0.978809 2.574719 1.739392 1.064145 -1.260907 0.545813 0.089237 -0.680003 2.155039 -0.308025 4.250236 -0.240783 0.522823 0.755045 -1.305910 -2.157273 -0.714521 1.439067 -3.035846 0.562007 0.550741 -0.799726 -0.590705 -0.849268 -1.257074 -1.738925 -0.932715 -1.920963 -1.176828 1.202403 -1.708597 1.744618 -2.204183 -0.194190 -0.620665 -1.317876 2.245592 1.524091 1.582484 2.233226 -3.987015 0.668719 -0.059601 0.664847 1.665407 -0.428892 -1.370521 -0.454836 -1.570290 -2.556627 1.939126 3.106241 -0.135325 -0.226612 -1.643095 1.274343 -1.094162 -0.430430 0.949159 1.688485 -2.662191 -0.610654 -0.089305 -0.785962 -0.656236 -3.494103 0.617029 -1.816175 1.087170 0.960022 -0.532645 -1.347185 -1.780090 0.111161 -2.575562 -2.167909 1.614435 -0.958027 0.356705 3.644582 -2.162266 0.329015 -2.481740 -0.527699 0.896247 2.026956 0.819987 1.497287 2.053185 3.127954 1.367382 -2.498467 -1.935000 2.353881 2.973842 0.646152 0.953150 -2.500435 -1.510659 0.992282 -1.292908 -3.583800 -2.088085 1.174422 2.276002 -0.180899 -0.573874 -0.005565 -1.245180 2.806076 3.120842 0.103951 0.299552 0.448654 -3.031896 2.698193 4.143444 -0.516901 2.239670 -1.412062 -0.403687 3.150219 -3.085291 1.495029 0.708405 0.557792 -1.809778 -1.509798 -0.235588 1.853582 0.897407 2.581623 -1.357529 1.694199 -0.406344 -3.346601 -4.185582 -0.673454 4.384202 0.761451 2.481692 -2.724276 -0.897029 0.346127 3.272982 1.868501 -2.381042 1.312709 -1.821197 1.627410 -4.438610 -3.296136 5.333773 5.571565 2.502709 0.715259 1.464782 3.231709 -3.705649 -0.886866 -1.098066 1.968957 -0.959214 -4.510907 -1.329388 0.737658 -2.640064 -2.685805 -0.559417 1.395091 1.436670 0.551334 1.581112 1.469212 -0.393506 -1.231322 2.614375 -1.093212 -2.529334 -0.276235 0.376279 0.783996 1.020092 -1.072848 1.637658 1.941918 -1.679071 0.822228 2.233649 0.953189 0.470637 3.120761 3.348991 -0.959554 0.771895 -0.622878 -0.786597 2.465986 -0.819919 0.958316 0.363341 0.028486 0.819502 0.435353 1.573304 -1.423800 -1.907174 -2.181338 -0.152738 0.471731 2.657493 -0.467139 -4.806706 -3.536568 0.631679 1.154026 2.752584 0.348999 4.802285 -1.117735 1.049696 -4.682310 0.297032 1.869544 0.154453 2.043496 0.621214 -0.834561 -1.748458 -1.223832 -2.647472 -1.721620 -1.032578 -1.781393 -1.134444 -2.364402 3.663015 -1.569916 -0.412716 0.879022 0.398293 3.180689 0.873671 -0.327183 -3.406935 1.158696 0.761337 0.077848 -1.678872 3.262444 0.244269 5.297367 -1.456658 0.674497 -0.250264 2.445241 -1.259090 -2.456878 -0.024211 3.494798 2.886116 0.466856 -0.914393 -1.038971 0.046579 1.163477 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.366455 0.385513 6.424112 4.061513 -4.241338 -5.841990 -2.818731 -9.455530 5.825414 1.010721 4.375843 1.734633 2.896686 -4.772574 -0.463611 -0.499279 2.476627 -1.667849 -0.689115 -2.796690 0.078243 6.729693 0.309779 -4.607792 0.871883 -8.369719 3.677047 2.989445 3.252689 3.357095 1.786502 0.046668 -3.193756 3.315423 -1.457305 1.413412 2.636553 0.692745 -4.170279 -1.887013 1.909640 3.397799 4.493115 -0.238169 6.305681 -0.444983 1.865846 1.941971 -2.631843 -1.884383 -0.995949 5.026902 -1.935955 2.871697 1.710739 1.103417 0.874939 -4.337636 -0.441904 -2.724160 0.030073 0.180066 -2.184855 0.148941 -2.822711 0.944013 1.241229 -1.717999 1.318001 -2.531769 3.428029 -0.003526 0.314996 -1.582882 -5.170282 0.178229 0.227411 2.177804 4.076726 1.664686 -0.469096 -1.878938 -2.383704 -3.208619 2.573829 3.537850 0.188479 2.096187 -1.724738 -1.956133 -0.187359 -2.689098 1.922128 2.094047 -4.601958 -1.485470 -0.386621 -1.379659 -1.900544 -1.870398 2.006541 -1.643112 1.804983 1.202380 -1.286719 -0.015653 1.184948 -0.115091 -2.687865 -1.378804 2.064284 -2.107499 2.490431 7.243040 -1.424248 -2.068363 -2.802147 -1.868202 -1.435573 4.513015 0.264100 1.141221 4.487049 5.593264 1.952049 -4.008338 -2.827832 3.451567 3.607248 3.111346 1.927567 -5.877762 -1.711875 1.332331 -1.011655 -6.659597 -1.508536 -0.079179 4.454099 0.810645 -3.191463 0.979334 -1.701348 4.609693 1.450353 -0.040118 0.619499 0.510316 -4.651254 4.360038 7.364098 -0.096686 2.300632 -2.474412 -1.874301 2.648727 -2.986950 2.229854 0.863124 -1.822998 -0.964654 -1.182360 1.292387 3.361014 -0.353431 1.616779 -0.988788 2.707203 -2.670173 -6.631931 -8.088007 0.229622 4.238588 1.319705 8.035161 -4.452086 -3.105086 -2.324103 6.398812 -0.995609 -1.673525 2.739557 -4.615339 3.527277 -3.401512 -5.286812 9.232407 8.800508 2.604376 -0.232177 5.291468 2.019857 -4.004392 -2.149979 -1.328070 0.787376 3.149977 -3.870966 0.711119 0.688878 -4.506975 -4.430842 0.828797 1.760664 1.927338 -0.199812 2.052768 -0.133357 -2.285354 -4.099507 3.125059 -1.612612 -0.214986 0.639000 0.669673 -0.266229 3.549112 -2.199880 -1.219523 1.363440 -1.316866 1.278361 1.701793 3.096878 0.892147 3.968775 4.732504 -0.618030 6.778167 1.164055 -2.290305 8.183935 -1.585682 1.930899 1.423152 1.235255 1.751175 1.270167 1.451171 -2.912032 0.453485 -4.931660 0.291074 0.472399 3.557440 -5.765415 -4.812708 -6.240511 -1.940031 0.508052 1.932111 -0.786723 8.259258 -2.713664 -0.148210 -9.906528 -0.066834 4.766573 -0.111549 2.310557 1.691477 -3.250281 -7.486017 -1.129918 -4.230868 -2.961764 -1.946870 -3.150960 -2.902424 -3.552498 6.947832 -2.884521 1.300591 6.897653 -0.243963 2.457225 -3.873136 1.089860 -2.571646 -1.631053 -0.777071 -0.096214 -4.140546 4.337386 -0.404604 9.599672 -1.581691 3.318759 -2.092352 4.077197 -2.134074 -5.733760 -1.327175 5.417179 3.224849 0.736792 -0.023418 0.104060 -2.454319 4.365368 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -1.361931 0.186918 4.148144 3.125057 -3.531804 -4.920287 -2.007457 -6.525995 3.380974 0.686699 3.756923 0.934080 2.205365 -3.117911 0.104299 -0.039537 1.943570 -1.168614 -0.363813 -2.143637 -1.119439 4.428000 0.713850 -2.892812 0.515639 -4.312865 2.838815 2.309871 1.578559 2.403467 1.250645 -0.025907 -2.063032 2.294388 -0.923536 1.463660 1.173908 1.091134 -2.269401 -1.097465 1.434336 0.682562 3.453853 -0.407508 4.330944 0.096417 2.287158 1.304183 -2.847678 -1.589847 -1.200434 3.325880 -2.369616 1.760979 0.472097 0.166991 1.218895 -2.505861 -0.550954 -2.722701 -0.222494 -0.907626 -2.214830 0.099853 -2.182633 0.959548 0.395009 -1.894382 0.826607 -1.082868 2.551086 0.313980 -0.061342 -0.191673 -3.442037 -0.033435 0.637738 1.475255 2.771112 0.747095 -0.143253 -1.461092 -2.024090 -2.302800 2.443941 1.320506 1.011472 1.395614 -1.596691 -0.446822 0.066986 -1.242280 1.511467 1.411780 -2.675702 -0.759098 0.335654 -1.117456 -2.235408 -2.167514 1.443168 -1.353987 1.455498 1.333448 -1.310231 -0.173847 -0.685167 -0.053880 -2.791190 -2.189363 0.816874 -2.183268 1.429628 4.320450 -1.637179 -1.070339 -1.604447 -1.176402 -0.185893 2.820365 0.852403 1.008156 3.333715 4.012807 1.144085 -3.195174 -2.212493 1.415484 2.983150 2.394137 1.428426 -3.461720 -1.800481 0.987998 -1.542319 -4.983430 -1.213297 0.834048 3.199925 0.771732 -2.717932 1.393111 -1.395883 3.195966 1.687757 0.848512 0.321214 0.403730 -3.410735 3.002447 4.577046 -0.498923 2.390253 -1.055120 -1.415463 2.680596 -2.124216 1.108110 1.399494 -1.598387 -1.048276 -0.918105 0.218349 2.485507 0.654553 1.284874 -0.410201 2.010334 -1.999671 -4.851231 -5.468277 0.492143 4.103906 1.314845 5.460906 -3.657292 -2.040745 -0.611132 4.029991 -0.953438 -1.936923 1.366958 -2.821867 2.655328 -3.639499 -4.181918 6.612078 5.125166 2.120920 0.427226 3.406660 1.774749 -2.977689 -1.310953 -1.285884 1.065569 1.783854 -3.042521 0.002113 0.571467 -3.671594 -2.678149 0.311687 1.599415 0.828765 -0.559961 1.286909 -0.405456 -1.468680 -2.213893 1.679735 -1.453626 -0.521292 0.352857 0.157888 0.505356 1.879296 -1.191621 -0.414538 0.151462 -1.695307 0.756358 1.075433 2.519365 1.230919 4.338338 4.114508 -1.184051 4.086061 0.446466 -1.668917 5.206743 -1.205616 1.601895 0.939155 2.038853 1.442352 0.653926 2.437245 -2.020409 -0.283553 -3.578299 -0.352385 1.275776 2.702390 -3.771850 -2.924861 -5.278696 -0.980402 0.786573 2.453797 -1.201517 5.679902 -1.692119 0.223767 -6.771973 -0.006382 2.613212 -0.362648 1.816896 1.174319 -2.257698 -4.747706 -1.206086 -3.048205 -1.946297 -1.133384 -1.381368 -1.979071 -2.030070 3.586395 -2.273071 0.438781 3.724753 -0.426281 1.814783 -1.546162 0.626163 -1.448732 -0.722836 0.634318 0.118401 -2.983747 3.844668 0.206335 7.843568 -0.390983 2.250077 -1.510324 2.617661 -1.035642 -3.351280 -0.974778 4.069052 3.083652 0.363349 0.324269 0.664676 -1.050464 3.141717 -PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = 0.019261 0.125719 0.697693 0.244655 -0.381549 -0.984008 -0.276483 -1.248286 0.564040 0.266194 0.626788 0.049101 0.574514 -0.323231 -0.099420 0.148194 0.278019 -0.156773 0.089152 -0.385521 -0.372968 0.917838 -0.038014 -0.078054 0.089555 -0.851121 0.740324 0.278934 0.380295 0.729703 0.227071 0.041829 -0.206766 0.358759 -0.144308 0.293417 0.045703 0.355723 -0.296691 0.069280 0.150895 -0.080367 0.570264 0.148065 0.638411 0.372838 0.164193 0.221798 -0.130527 -0.342256 -0.185363 0.166384 -0.443518 0.230393 -0.420491 -0.123336 0.177086 -0.170645 0.003879 -0.254610 -0.006969 -0.208904 -0.508496 0.113550 -0.585596 0.165317 -0.285387 -0.480311 -0.199323 -0.247974 0.414378 0.144886 -0.098490 -0.062659 -1.005884 -0.058101 0.118337 0.107930 0.514022 -0.035010 -0.232402 -0.243152 -0.602462 -0.552413 0.636262 0.517029 0.204931 0.350966 -0.317020 -0.271141 -0.162805 0.021075 0.491179 0.423509 -0.203241 -0.044859 -0.071881 -0.120600 -0.283979 -0.733223 0.340108 -0.251372 0.298637 0.012630 -0.042943 -0.058567 0.040137 0.055102 -0.345141 -0.449617 0.128577 -0.488479 0.232890 0.819651 -0.106058 -0.275010 -0.434233 -0.293413 0.113751 0.531650 0.265750 0.002177 0.669725 0.490561 0.224084 -0.620846 -0.453686 0.377824 0.287823 0.297428 0.205957 -0.591646 -0.359326 0.169968 -0.424327 -0.942869 -0.263090 0.095463 0.392934 -0.446189 -0.218060 0.547277 -0.372714 0.203725 0.594690 0.112581 0.193596 0.052432 -0.555434 0.398552 0.910900 -0.089846 0.348335 -0.446670 -0.358583 0.621490 -0.252872 0.159254 0.104284 -0.305551 -0.334600 -0.113567 0.302476 0.494728 -0.058453 0.315990 0.096854 0.340881 -0.428232 -0.563448 -0.798278 -0.023659 0.952569 0.310827 0.943238 -0.682359 -0.051074 0.042563 0.617008 0.118244 -0.200318 0.261984 -0.393327 0.418839 -1.010854 -0.749103 0.996781 0.682023 0.614780 -0.031938 0.250908 0.387456 -0.280779 -0.291249 -0.220845 0.234062 0.158551 -0.747385 -0.203001 0.054048 -0.665510 -0.345722 -0.015209 0.318789 0.228489 -0.051821 0.315055 -0.459794 -0.178918 -0.614173 0.371947 -0.308987 -0.062193 0.040084 0.024373 -0.136545 0.175220 -0.147813 0.146009 0.156283 -0.151109 0.263876 0.282927 0.171602 0.026646 0.779734 0.747426 -0.448300 0.221643 -0.060247 -0.141214 0.866095 -0.180152 0.307038 0.196132 0.489885 0.215818 0.149598 0.497809 -0.330753 -0.148299 -0.633186 -0.171881 0.463158 0.312173 -0.131768 -0.385846 -0.975607 -0.049484 -0.130124 0.942045 -0.038959 0.968685 -0.227964 0.324744 -0.814748 0.149707 0.272765 -0.127783 0.369493 0.230780 -0.369245 -0.297770 -0.235069 -0.606610 -0.536130 -0.219382 -0.312140 -0.389353 -0.149318 0.090199 -0.392292 -0.012523 0.435696 -0.108507 0.283689 -0.429776 0.123886 -0.462734 0.081608 0.390689 -0.071299 -0.446285 0.375543 0.075442 1.155655 0.017409 0.520990 -0.124459 0.498121 -0.256790 -0.665467 -0.264895 0.771080 0.395724 0.049391 0.149823 0.019710 0.254746 0.419296 -PE-benchmarks/weighted-job-scheduling.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(Job&, Job&) = -0.540930 -0.260254 2.048657 0.108539 -1.359361 -1.595175 -0.869087 -3.864684 2.070084 1.065713 1.885974 0.597570 1.538077 -1.336368 -0.326523 0.115004 0.963037 -1.344419 0.731895 -0.934825 0.239716 2.983010 0.002613 0.565352 0.012881 -3.095027 1.588992 -0.324724 1.771472 2.060498 0.824133 -0.388533 -1.370643 0.556471 0.793200 1.263306 0.844699 0.656951 -1.329769 0.028816 -0.025609 -0.854921 1.342891 -0.166181 2.415179 -0.804493 0.095479 0.427441 -0.424612 -1.148797 -0.394339 0.506387 -1.452691 0.519777 0.423493 -0.900078 -0.590134 0.050018 -0.428696 -0.365156 -0.422563 -1.482826 -0.529742 0.673196 -1.180021 0.859744 -1.663207 -0.226256 -0.562778 -1.275402 1.104502 0.818560 1.134488 0.926093 -3.087607 0.190829 -0.082397 0.285885 1.126785 0.596441 -0.431278 -0.689561 -1.120450 -1.443400 1.089202 2.278967 -0.465582 -0.022371 -1.310055 0.400931 -0.455522 -0.181147 0.910949 0.819044 -1.945663 -0.326957 -1.012973 -0.305997 0.232819 -2.650395 0.523547 -0.954218 0.702682 -0.011928 -0.539994 -0.503390 -0.099199 0.032489 -0.952114 -1.083953 1.005443 -0.474252 0.404067 2.754503 -0.849893 -0.369437 -1.833767 -0.313870 0.257884 0.877508 0.445368 0.843224 1.101480 1.571735 1.308378 -1.655880 -1.199791 2.127476 1.200618 0.321933 0.275637 -1.221527 -0.632320 0.713581 -0.600788 -2.325773 -1.321876 0.433427 1.372288 -0.432003 0.391864 -0.625416 -0.851849 1.384777 1.717300 -0.185855 0.408260 0.531792 -1.643579 1.331833 2.289134 0.017180 0.845100 -0.997100 -0.141674 1.534414 -1.370671 0.873504 -0.266917 0.475544 -0.929352 -0.871836 0.104662 1.087857 -0.195635 1.248771 -1.075985 1.089331 -0.778402 -2.025779 -2.411356 -0.411154 2.821373 0.874597 1.191606 -1.611819 -0.295816 0.339977 1.770496 1.496050 -1.197125 1.238718 -1.339597 1.104291 -2.520119 -1.956873 2.907956 3.230602 1.322782 0.035288 0.475482 1.626985 -2.455016 -0.851835 -0.859888 0.862980 -0.424762 -3.094698 -0.910973 0.516046 -1.579884 -1.551308 0.242010 0.705364 1.354785 0.318822 1.513091 0.628904 0.202572 -1.310541 2.401602 -0.391405 -1.218071 -0.221554 0.351423 0.418681 0.883863 -0.626509 0.917953 1.175323 -0.430258 0.629327 1.105370 0.204496 -0.391119 1.577212 1.873484 -0.615121 0.172251 -0.427223 -0.700742 1.953434 -0.639184 0.568338 0.250205 -0.346751 0.353891 0.399986 0.854486 -1.042240 -1.002683 -1.286645 -0.733259 0.050271 1.610501 -0.359359 -2.864875 -1.989955 0.534855 0.069658 1.276645 0.545752 2.832284 -1.132756 0.642158 -2.504394 0.178239 1.428431 0.103300 1.695652 0.241971 -0.525269 -0.382187 -0.686627 -1.683448 -0.844785 -0.678017 -1.113400 -0.748998 -1.266540 2.188630 -0.656543 -0.244341 0.487635 -0.099051 2.136785 -0.340264 0.000648 -2.063549 0.800104 0.086780 0.065025 -1.071875 1.807257 0.162794 2.885165 -0.639409 0.129582 -0.021707 1.516510 -1.166373 -2.069702 -0.189740 2.013181 1.521904 0.621669 -0.851538 -0.763840 -0.053356 0.575907 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -2.173946 -0.613428 6.150161 2.321770 -4.147102 -5.651056 -2.880893 -10.292344 5.354680 2.058012 6.016104 1.238744 3.538100 -4.242142 0.085715 0.337926 2.636052 -3.341697 0.586507 -2.815518 0.066592 7.115211 0.839506 -1.588136 0.429984 -7.799045 3.421453 1.628370 3.119063 3.997306 1.897822 -0.549490 -3.191470 2.509575 0.050119 3.274226 2.712808 1.488539 -3.212504 -1.053625 1.040570 0.211805 4.182373 -1.033937 7.143282 -1.213134 2.321551 1.433258 -3.129453 -2.846265 -1.231683 4.127442 -3.747513 1.883637 1.388147 -0.701562 -0.069528 -2.729522 -1.461728 -3.141620 -0.701418 -2.018523 -2.447572 0.891708 -2.625318 2.067774 -0.750831 -1.331567 0.527389 -2.466270 3.597092 1.195521 1.285635 1.463340 -5.886694 0.414227 0.539453 1.391827 3.241496 0.732028 -0.567686 -1.849102 -2.535602 -3.465405 3.496535 4.195194 0.362226 0.855301 -2.938814 0.941203 -0.588298 -1.584083 1.957189 2.219695 -4.926042 -1.486006 -0.080263 -1.620704 -1.933292 -4.077229 1.767433 -2.495786 2.048006 1.613344 -1.653455 -0.579853 -1.131818 0.217828 -4.018969 -3.062714 1.824401 -2.191099 1.969168 6.633959 -2.986841 -0.930964 -3.632672 -1.245705 0.134954 3.293035 0.966901 2.143687 4.435897 5.466607 2.460072 -4.680678 -3.424883 3.622751 4.670230 2.521062 1.369030 -4.777344 -2.129781 1.560948 -2.146806 -6.936179 -2.937785 1.032493 4.520684 0.456420 -2.313100 0.431994 -1.779775 5.151809 3.552611 0.246019 0.339147 1.221369 -5.035571 4.208505 6.615819 -0.558239 3.327112 -2.037480 -1.038833 3.525256 -3.759174 2.095288 1.591074 -0.520060 -1.928794 -2.131060 -0.002189 3.310504 0.935364 3.064796 -2.392057 3.160080 -2.113475 -6.575440 -7.923320 -0.463965 6.114932 1.677545 6.134893 -4.882393 -2.900341 -0.477272 5.869798 0.614129 -3.380346 2.500364 -4.270079 3.448612 -5.345814 -5.842504 9.236812 9.008926 3.756272 0.794460 4.321188 3.418196 -5.907558 -1.447581 -1.695829 2.218375 1.203007 -6.462260 -0.818809 1.029488 -4.904338 -4.561740 -0.126159 2.130806 1.415428 0.459349 3.060030 1.354473 -1.189001 -2.533008 3.940451 -1.665913 -2.192898 -0.327709 0.689148 1.198955 2.689770 -2.466237 0.876443 1.807062 -2.531449 1.436715 2.634931 2.553860 1.104696 5.431684 5.741388 -1.464743 4.601964 -0.457458 -2.138036 5.640116 -1.490340 1.746832 0.990015 0.767649 1.635152 0.918369 2.784347 -2.868433 -1.394102 -4.405908 -0.726398 0.924670 4.425153 -3.100015 -6.264606 -6.580848 -0.429023 1.283828 3.377283 -0.367766 8.227816 -2.566766 0.996761 -9.369049 0.016171 3.652660 -0.086650 3.023684 1.124663 -2.453115 -5.562727 -1.598300 -4.518868 -3.495644 -1.650397 -2.604081 -2.641157 -4.198700 6.806600 -2.863294 0.005277 3.667882 0.250869 4.168918 -1.035847 0.400735 -3.577203 0.443394 0.473907 0.283909 -3.844630 5.264774 0.362534 10.618656 -1.628629 2.125068 -1.488096 4.245773 -2.191811 -4.907575 -0.715015 5.732126 4.917444 0.955500 -1.142925 -0.664116 -1.524569 3.513015 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = -0.999446 0.013669 3.183672 1.141838 -2.390865 -3.735978 -1.578436 -5.698747 2.408595 1.128898 3.523603 0.301016 2.029419 -1.784549 0.205956 0.552473 1.506106 -1.661396 0.384263 -1.711283 -1.037477 3.581300 0.394170 -0.388942 0.324844 -3.534303 2.171947 1.146694 1.230453 2.093945 1.111383 -0.172017 -1.523098 1.443901 -0.069540 1.923609 1.064609 1.175905 -1.305226 -0.135471 0.645641 -0.510557 2.458994 -0.331148 3.581390 0.232143 1.534152 0.917859 -1.905808 -1.629201 -0.821020 2.026468 -2.292774 0.878653 0.037348 -0.588091 0.443016 -1.394236 -0.685023 -1.540481 -0.512048 -1.461630 -1.857594 0.536595 -1.647665 1.105258 -0.666672 -1.238047 0.115166 -0.904300 1.994759 0.555242 0.066932 1.056507 -3.191227 0.039012 0.608314 0.655002 1.824766 -0.072092 -0.342802 -0.913520 -1.881143 -2.115781 2.400273 1.907519 0.842033 0.545674 -1.797842 0.518947 -0.367045 -0.540990 1.408472 1.447694 -2.113532 -0.692038 0.242160 -1.079482 -1.908877 -2.750699 1.162245 -1.340974 1.321098 0.825979 -0.993426 -0.505575 -1.179351 0.075312 -2.389702 -2.164094 0.539503 -1.775905 1.164582 3.318377 -1.623152 -0.524439 -1.899997 -0.955067 0.468190 1.763810 1.074851 0.802251 2.845346 2.883929 1.100794 -2.629252 -2.133710 1.243856 2.390658 1.444708 0.865963 -2.535707 -1.506525 0.884708 -1.726366 -3.933316 -1.556603 0.724769 2.307601 -0.170252 -1.324164 1.016216 -1.173656 2.275007 2.225290 0.606230 0.201957 0.505474 -2.657690 2.113693 3.383682 -0.529930 2.113296 -1.056041 -0.793216 2.258157 -1.846087 0.815430 1.417518 -0.718696 -1.496998 -0.962174 -0.030851 1.904224 0.748443 1.586914 -0.717500 1.716079 -1.357426 -3.195309 -4.168191 0.093413 3.811267 0.996471 3.418519 -2.989517 -1.285366 0.177628 3.089372 0.169141 -2.012472 1.116616 -1.982660 1.878761 -3.202494 -3.236292 4.819946 4.065599 2.256881 0.432639 2.080736 1.853772 -3.096511 -0.874455 -1.126406 1.461264 0.486845 -3.572386 -0.656479 0.543179 -2.876956 -1.926788 -0.425255 1.443400 0.611657 0.051410 1.603633 0.002974 -0.732614 -1.322085 1.690921 -0.953147 -1.109560 -0.092995 0.130902 0.564482 1.116805 -1.079755 0.544431 0.503350 -1.673217 0.822993 1.475053 1.444484 0.755835 3.889450 3.290901 -1.304016 2.145760 -0.475783 -0.972283 2.688159 -0.736678 1.181901 0.560688 1.288447 0.892487 0.428068 2.284772 -1.469697 -1.168296 -2.484013 -0.594003 1.099301 2.179873 -1.146979 -2.723348 -4.280944 -0.207458 0.631632 2.898792 -0.478888 4.291293 -1.018797 0.889624 -4.633548 0.185734 1.339071 -0.356242 1.519351 0.615126 -1.461484 -2.346792 -0.994192 -2.677889 -2.329537 -0.628715 -0.924124 -1.599142 -1.828436 2.525715 -1.633515 -0.263861 1.578491 0.000816 1.835654 -0.249411 0.199131 -1.707959 0.360718 1.427014 -0.052032 -2.107967 2.879861 0.454279 6.201787 -0.340181 1.485667 -0.675425 1.945054 -0.756372 -2.393742 -0.603265 3.203387 2.791065 0.370233 -0.267846 0.027433 -0.122407 1.994353 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = -1.146639 -0.248739 3.501547 1.457983 -2.855689 -3.720336 -1.650422 -6.402152 3.411102 1.279632 3.378712 1.071431 2.449863 -2.648418 -0.193895 0.297814 1.854180 -1.796587 0.571530 -1.821164 -0.308257 4.924938 0.417877 -0.516243 0.166082 -4.516321 2.555824 0.596922 2.434780 2.955711 1.391165 -0.425945 -2.113088 1.411131 0.461493 1.960841 1.083938 1.092502 -2.320009 -0.455815 0.480155 -0.929364 2.817295 -0.333780 4.117330 -0.988136 1.378450 0.932681 -1.641744 -1.807360 -1.187555 2.072789 -2.506698 1.173859 0.569285 -0.953387 0.040318 -0.772260 -0.697833 -1.442993 -0.694476 -1.988101 -1.544599 0.676899 -2.034941 1.312229 -1.684756 -0.950829 -0.341590 -1.512031 2.173450 1.015199 1.140312 0.934515 -4.582615 0.134038 0.100125 0.921279 2.246132 1.051270 -0.461466 -1.335162 -1.920193 -2.344538 2.231445 2.540858 -0.061787 0.534646 -2.114222 0.354515 -0.574432 -0.619557 1.507714 1.211059 -3.121838 -0.527090 -0.660577 -0.758346 -0.731802 -3.569017 1.065258 -1.472532 1.183808 0.446162 -0.867108 -0.661028 -0.730954 -0.150220 -2.262579 -2.108442 1.306209 -1.328338 0.648283 4.385472 -1.664971 -0.630826 -2.345316 -0.615281 0.144027 1.968373 0.952127 1.375846 2.306906 3.168526 1.723108 -2.872507 -1.992699 2.580525 2.556345 1.247134 0.849428 -2.325104 -1.462177 1.176752 -1.171162 -4.287325 -1.857934 1.236262 2.684743 0.170338 -0.657968 -0.193369 -1.304751 2.706104 2.416525 0.151504 0.553338 0.662982 -2.994481 2.564970 4.075156 -0.227831 1.937079 -1.271645 -0.602289 2.862973 -2.417255 1.251946 0.333867 -0.174214 -1.456875 -1.177456 0.027660 2.026481 0.191887 1.636576 -1.235328 1.911122 -1.566976 -4.029838 -4.615361 -0.165549 4.556667 1.466797 3.233600 -3.032860 -1.070072 0.274648 3.116566 1.054708 -2.125896 1.775997 -2.508896 2.182313 -4.216383 -3.616194 5.736705 5.119768 2.129559 0.322078 1.790391 2.548118 -3.775103 -1.419945 -1.413489 1.365941 0.259940 -4.445162 -0.938042 0.761754 -3.140284 -2.622689 0.333862 1.354326 1.547943 0.129128 2.176885 0.360325 -0.356336 -1.981859 3.032518 -0.972980 -1.536518 -0.096428 0.358617 0.702320 1.598181 -0.956110 0.890721 1.136948 -1.249714 0.802278 1.400214 1.275880 0.240738 3.472356 3.766541 -1.099129 1.903439 -0.294034 -1.460430 3.899165 -1.163505 1.221218 0.497813 0.545043 0.986896 0.604070 1.940233 -1.820113 -1.269843 -2.650874 -0.882009 0.679771 2.750668 -1.828244 -4.057414 -4.160192 0.193375 0.509350 2.285137 -0.089009 5.004691 -2.004024 0.693338 -5.299999 0.249961 2.414613 0.001061 2.458525 0.689435 -1.368289 -1.998215 -1.256874 -2.839293 -1.478360 -1.072025 -1.638325 -1.458960 -2.146618 3.595000 -1.827012 -0.134760 1.799497 -0.387454 3.015250 -0.768256 0.208961 -2.669093 0.673148 0.454832 0.184174 -2.205905 3.507494 0.222397 6.112178 -0.733447 0.935803 -0.630517 2.566903 -1.575922 -3.395986 -0.534939 3.634677 2.919473 0.607055 -0.645294 -0.413678 -0.357292 1.776419 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter __gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter) = 0.031516 0.077289 0.845413 -0.145908 -0.246801 -1.102967 -0.357490 -1.830979 0.681323 0.383661 0.985166 -0.104444 0.671334 -0.346864 0.094594 0.624018 0.332703 -0.479718 0.266572 -0.408168 -0.168331 1.089053 -0.134805 0.466808 0.065119 -1.090904 0.261219 0.271968 0.541610 0.494716 0.317354 -0.115860 -0.188929 0.276677 -0.058001 0.677777 0.414320 0.322857 -0.498173 0.117080 -0.276149 -0.158288 0.486493 -0.080598 1.000442 0.085176 0.455715 0.276826 -0.099474 -0.419900 -0.322660 0.822043 -0.517343 0.113200 -0.176712 -0.388285 -0.068000 -0.214560 -0.211063 -0.059418 -0.258876 -0.253296 -0.558849 0.199075 -0.402220 0.351210 -0.247517 -0.276406 -0.168932 -0.080874 0.576521 0.237626 0.037987 0.486783 -1.190451 0.025464 0.142463 0.107195 0.427390 -0.270380 0.024519 -0.189106 -0.479860 -0.636006 1.016820 0.931482 0.266653 0.157311 -0.684765 0.228131 -0.415897 -0.143975 0.515161 0.403348 -0.532953 -0.181529 0.087778 -0.251991 -0.538963 -0.927097 0.325800 -0.367434 0.321431 -0.103691 0.312656 -0.108253 -0.323583 0.115995 -0.658611 -0.599652 0.192743 -0.380530 0.174341 0.988410 -0.465222 -0.019440 -0.535403 -0.217676 -0.062662 0.440576 0.413710 0.227241 0.704140 0.667260 0.323554 -0.658823 -0.688396 0.447682 0.695234 0.388459 0.169333 -0.763621 -0.396238 0.251068 -0.568738 -1.144825 -0.532983 0.308018 0.536112 -0.332846 -0.120126 0.267730 -0.225141 0.555970 0.705724 -0.063593 0.068338 0.138767 -0.654189 0.513896 0.981391 -0.209487 0.656760 -0.412248 0.044705 0.343558 -0.559105 0.199964 0.408325 -0.167271 -0.473787 -0.218754 -0.008501 0.474792 0.341427 0.521963 -0.330167 0.518094 -0.536112 -0.706965 -1.082834 -0.140393 0.974490 -0.089953 0.735075 -0.665006 -0.535973 0.098800 0.850647 0.015854 -0.483768 0.384501 -0.725514 0.489121 -0.678775 -0.800714 1.282503 1.176988 0.880490 0.040778 0.515363 0.713224 -1.114169 -0.220805 -0.090932 0.407340 0.023980 -1.630303 -0.474723 0.059108 -0.795296 -0.489161 -0.335344 0.400484 -0.168210 0.657937 0.833597 -0.033663 -0.188990 -0.170201 0.474249 -0.195816 -0.280722 -0.100831 0.105892 0.026430 0.302757 -0.593415 0.388430 0.529809 -0.596599 0.341872 0.512371 0.210786 0.215633 1.160942 0.895471 -0.260294 0.842441 -0.308399 -0.256595 0.234760 -0.016326 0.313163 0.047683 0.156893 0.061752 0.125771 0.520035 -0.382630 -0.608124 -0.665933 -0.310480 0.390594 0.535251 0.692470 -0.850967 -0.986424 -0.068928 0.150514 0.990353 -0.017050 1.009208 -0.310358 0.480705 -1.154993 0.188818 0.078736 -0.167457 0.315538 0.135626 -0.306073 -0.413166 -0.212468 -0.745074 -1.377670 -0.180028 -0.503136 -0.374279 -0.816810 0.739525 -0.606935 -0.229576 0.181185 0.263695 0.588957 -0.126324 0.037550 -0.655369 0.458877 0.717749 -0.150733 -0.565473 0.415222 0.152002 1.844731 -0.164090 0.433433 -0.153597 0.451199 -0.172622 -0.584755 -0.114669 0.885186 0.824631 0.026925 -0.186644 -0.137088 0.123084 0.435777 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job const*, Job const*, Job*) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = -1.630552 -0.523032 3.523853 -0.134919 -1.852306 -2.962535 -1.856516 -5.896847 2.910483 1.700251 3.693612 0.588226 2.319951 -1.589789 0.118407 0.519265 1.425764 -3.080989 1.328750 -1.598751 0.170004 4.722110 1.045968 0.919070 -0.012437 -5.258220 2.118102 -0.275731 2.052852 3.373330 1.024007 -0.553733 -1.647578 1.284420 0.978809 2.574719 1.739392 1.064145 -1.260907 0.545813 0.089237 -0.680003 2.155039 -0.308025 4.250236 -0.240783 0.522823 0.755045 -1.305910 -2.157273 -0.714521 1.439067 -3.035846 0.562007 0.550741 -0.799726 -0.590705 -0.849268 -1.257074 -1.738925 -0.932715 -1.920963 -1.176828 1.202403 -1.708597 1.744618 -2.204183 -0.194190 -0.620665 -1.317876 2.245592 1.524091 1.582484 2.233226 -3.987015 0.668719 -0.059601 0.664847 1.665407 -0.428892 -1.370521 -0.454836 -1.570290 -2.556627 1.939126 3.106241 -0.135325 -0.226612 -1.643095 1.274343 -1.094162 -0.430430 0.949159 1.688485 -2.662191 -0.610654 -0.089305 -0.785962 -0.656236 -3.494103 0.617029 -1.816175 1.087170 0.960022 -0.532645 -1.347185 -1.780090 0.111161 -2.575562 -2.167909 1.614435 -0.958027 0.356705 3.644582 -2.162266 0.329015 -2.481740 -0.527699 0.896247 2.026956 0.819987 1.497287 2.053185 3.127954 1.367382 -2.498467 -1.935000 2.353881 2.973842 0.646152 0.953150 -2.500435 -1.510659 0.992282 -1.292908 -3.583800 -2.088085 1.174422 2.276002 -0.180899 -0.573874 -0.005565 -1.245180 2.806076 3.120842 0.103951 0.299552 0.448654 -3.031896 2.698193 4.143444 -0.516901 2.239670 -1.412062 -0.403687 3.150219 -3.085291 1.495029 0.708405 0.557792 -1.809778 -1.509798 -0.235588 1.853582 0.897407 2.581623 -1.357529 1.694199 -0.406344 -3.346601 -4.185582 -0.673454 4.384202 0.761451 2.481692 -2.724276 -0.897029 0.346127 3.272982 1.868501 -2.381042 1.312709 -1.821197 1.627410 -4.438610 -3.296136 5.333773 5.571565 2.502709 0.715259 1.464782 3.231709 -3.705649 -0.886866 -1.098066 1.968957 -0.959214 -4.510907 -1.329388 0.737658 -2.640064 -2.685805 -0.559417 1.395091 1.436670 0.551334 1.581112 1.469212 -0.393506 -1.231322 2.614375 -1.093212 -2.529334 -0.276235 0.376279 0.783996 1.020092 -1.072848 1.637658 1.941918 -1.679071 0.822228 2.233649 0.953189 0.470637 3.120761 3.348991 -0.959554 0.771895 -0.622878 -0.786597 2.465986 -0.819919 0.958316 0.363341 0.028486 0.819502 0.435353 1.573304 -1.423800 -1.907174 -2.181338 -0.152738 0.471731 2.657493 -0.467139 -4.806706 -3.536568 0.631679 1.154026 2.752584 0.348999 4.802285 -1.117735 1.049696 -4.682310 0.297032 1.869544 0.154453 2.043496 0.621214 -0.834561 -1.748458 -1.223832 -2.647472 -1.721620 -1.032578 -1.781393 -1.134444 -2.364402 3.663015 -1.569916 -0.412716 0.879022 0.398293 3.180689 0.873671 -0.327183 -3.406935 1.158696 0.761337 0.077848 -1.678872 3.262444 0.244269 5.297367 -1.456658 0.674497 -0.250264 2.445241 -1.259090 -2.456878 -0.024211 3.494798 2.886116 0.466856 -0.914393 -1.038971 0.046579 1.163477 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.259004 -0.083108 0.934766 0.439196 -0.567802 -1.498987 -0.462710 -1.920245 0.900931 0.409680 1.222537 0.104386 0.904795 -0.677940 0.080781 0.396802 0.530278 -0.458995 0.157866 -0.548984 -0.378239 1.583617 0.170890 -0.056979 0.064015 -1.098805 0.718886 0.403209 0.507530 0.940367 0.365861 -0.003214 -0.231098 0.413673 -0.184878 0.746534 0.088410 0.494106 -0.458789 -0.098745 0.125223 -0.368547 0.849671 -0.005318 1.173154 0.107017 0.725685 0.225323 -0.427229 -0.612822 -0.540532 0.712579 -0.848917 0.252357 -0.446882 -0.320945 0.317580 -0.222647 -0.234992 -0.658847 -0.170240 -0.404307 -0.861591 0.125397 -0.676756 0.449329 -0.354641 -0.489282 -0.204478 -0.210436 0.742855 0.315210 -0.005897 0.209612 -1.438892 -0.043492 0.129522 0.145169 0.648609 0.003915 -0.237901 -0.410109 -0.728875 -0.749174 1.207349 0.578608 0.311335 0.413740 -0.692262 0.085855 -0.369026 -0.017501 0.589202 0.442134 -0.560508 -0.083977 0.352792 -0.258569 -0.486285 -0.946399 0.435629 -0.489727 0.321096 0.230774 0.095177 -0.104400 -0.436091 0.051422 -0.933167 -0.904519 0.220573 -0.630879 0.044372 1.068659 -0.574636 -0.112871 -0.554011 -0.180608 0.157857 0.714386 0.473288 0.357659 0.907224 0.848290 0.322917 -0.916266 -0.635438 0.529071 0.913797 0.458583 0.216746 -0.740898 -0.613584 0.321263 -0.662145 -1.423523 -0.638114 0.629561 0.781418 -0.188652 -0.529482 0.674957 -0.324166 0.677779 0.980249 0.116107 0.153900 0.195675 -0.943311 0.704194 1.312664 -0.251594 0.776177 -0.423593 -0.325057 1.026124 -0.683388 0.193376 0.389637 -0.302134 -0.521098 -0.284633 0.133294 0.689787 0.285355 0.561211 -0.195554 0.629255 -0.534513 -1.083398 -1.418094 -0.113269 1.426623 0.418937 1.315217 -0.969027 -0.357865 0.183849 0.824502 -0.009622 -0.634228 0.342835 -0.764908 0.655844 -1.663463 -1.198970 1.845006 1.149547 1.007347 0.220696 0.608429 0.861949 -0.788119 -0.254343 -0.324384 0.555232 0.267855 -1.383105 -0.290786 0.080097 -1.126151 -0.740416 -0.196858 0.459301 -0.071189 0.100612 0.673442 -0.415819 -0.266966 -0.378368 0.522933 -0.487909 -0.345032 -0.117572 0.014098 0.067302 0.278328 -0.323930 0.441531 0.241758 -0.592574 0.235845 0.405222 0.399792 0.360373 1.393176 1.479417 -0.597259 0.677229 -0.237926 -0.368501 0.942087 -0.258838 0.354677 0.096340 0.617674 0.435623 0.132386 0.832144 -0.473142 -0.432665 -0.917442 -0.207575 0.741669 0.697766 -0.131539 -0.821502 -1.493817 -0.063858 0.133031 1.368006 -0.204330 1.475201 -0.562064 0.421216 -1.612188 0.211238 0.375045 -0.133149 0.499760 0.249680 -0.442734 -0.631323 -0.394213 -0.846534 -0.866747 -0.303106 -0.514727 -0.523429 -0.682047 0.587605 -0.903562 -0.098339 0.450386 -0.025665 0.710735 -0.190717 0.073521 -0.736367 0.366553 0.517484 0.039483 -0.694559 0.826053 0.117443 2.132360 -0.126203 0.630447 -0.320121 0.891467 -0.467422 -0.886758 -0.209113 1.154337 1.048021 -0.076888 0.147962 0.056496 0.218125 0.648929 -PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.070237 0.068551 0.759030 0.394328 -0.560074 -1.286945 -0.361903 -1.618929 0.676811 0.307331 0.921155 0.043813 0.721667 -0.476392 -0.011290 0.303420 0.406582 -0.240535 0.138493 -0.466725 -0.545317 1.228754 0.023827 -0.018402 0.072737 -0.820168 0.787783 0.355272 0.436272 0.772289 0.310655 0.003684 -0.218728 0.375644 -0.137734 0.506483 -0.030047 0.472283 -0.371554 0.005133 0.144008 -0.407818 0.734302 0.055019 0.830971 0.236508 0.529543 0.232052 -0.323896 -0.440176 -0.429852 0.435663 -0.676252 0.231464 -0.466845 -0.318376 0.302094 -0.126951 -0.105372 -0.358453 -0.137117 -0.433533 -0.731814 0.117860 -0.664890 0.305546 -0.397132 -0.542135 -0.194827 -0.125341 0.576657 0.240529 -0.082651 0.110893 -1.246019 -0.069203 0.163577 0.129363 0.581055 0.008874 -0.130953 -0.322542 -0.727016 -0.656533 0.977023 0.471100 0.315461 0.332308 -0.539510 -0.071132 -0.236975 0.040671 0.579792 0.423446 -0.349502 -0.017434 0.053978 -0.189698 -0.466730 -0.986246 0.386125 -0.377017 0.344521 0.094390 -0.036061 -0.083104 -0.193700 0.033466 -0.620418 -0.782846 0.083523 -0.606964 0.157649 0.939408 -0.316152 -0.213649 -0.458552 -0.244609 0.128945 0.548311 0.462108 0.173662 0.821385 0.662552 0.278156 -0.769214 -0.583954 0.388400 0.545264 0.398795 0.209627 -0.613106 -0.517682 0.249123 -0.543515 -1.207944 -0.436975 0.410415 0.567090 -0.336470 -0.315963 0.602286 -0.354813 0.383869 0.782768 0.161760 0.179857 0.126427 -0.702183 0.542466 1.042160 -0.171001 0.562261 -0.411929 -0.340952 0.860999 -0.427873 0.118905 0.272382 -0.305607 -0.458498 -0.201683 0.173044 0.587342 0.099634 0.371331 0.021742 0.482670 -0.553250 -0.817451 -1.051609 0.029274 1.276446 0.384176 1.078492 -0.858855 -0.175302 0.230855 0.663712 0.062389 -0.436767 0.301213 -0.561427 0.558692 -1.336990 -0.993435 1.358118 0.750674 0.757479 0.081970 0.369552 0.632653 -0.603926 -0.326362 -0.355818 0.419115 0.204361 -1.110460 -0.306930 0.078630 -0.916951 -0.450221 -0.079478 0.410944 0.115858 -0.008715 0.493972 -0.518679 -0.214587 -0.495005 0.491957 -0.390295 -0.181397 -0.030491 -0.013810 -0.012460 0.226879 -0.183558 0.300227 0.095587 -0.379527 0.250279 0.315533 0.277331 0.154088 1.216825 1.149482 -0.564129 0.404755 -0.151497 -0.257931 0.881430 -0.220633 0.349862 0.143569 0.615866 0.283295 0.144334 0.783887 -0.404272 -0.384121 -0.783670 -0.265237 0.619775 0.489332 -0.105761 -0.503182 -1.308101 -0.059557 0.009195 1.196573 -0.129996 1.172348 -0.398072 0.380909 -1.145588 0.181006 0.266645 -0.158385 0.505960 0.213779 -0.405338 -0.305560 -0.347485 -0.719836 -0.698681 -0.247073 -0.349865 -0.475252 -0.361371 0.199420 -0.621872 -0.090158 0.368869 -0.110137 0.464738 -0.311847 0.094436 -0.555819 0.251662 0.577889 -0.030758 -0.584275 0.656989 0.122678 1.727274 0.029887 0.537245 -0.221718 0.603407 -0.316009 -0.750215 -0.241281 0.955378 0.729531 -0.005669 0.146630 0.103975 0.275645 0.530323 -PE-benchmarks/weighted-job-scheduling.cpp___GLOBAL__sub_I_weighted_job_scheduling.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/euler-circuit-directed-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = -0.327253 0.985858 6.138485 2.424258 -4.555329 -5.072313 -1.908873 -8.412104 3.428357 -0.003207 4.474200 1.109347 1.340251 -2.349794 0.783085 1.560803 0.836421 -1.893469 0.429696 -2.121812 -2.602617 3.749516 2.366419 -2.344558 1.689005 -5.661064 3.210404 1.990179 3.750601 2.577169 0.549882 -1.223063 -1.743358 3.295870 0.469106 0.698182 0.939031 0.560457 -3.359655 0.830598 0.725874 -0.769379 3.586838 -0.023427 4.970482 -0.227989 3.233808 1.921468 -3.268512 -0.194853 -3.442317 6.264869 -4.019924 2.369836 0.606914 0.315092 -0.730902 -3.209632 -1.874678 -2.892793 -1.502489 -1.852896 -1.953504 0.362700 -3.272172 1.425506 -1.641389 -2.056528 1.437319 1.722953 4.118598 2.041585 1.026953 1.508026 -4.382894 0.740103 1.089089 3.138651 3.209744 -1.368215 0.975783 0.112208 -1.675513 -3.053766 3.217625 1.111178 1.064694 -1.301264 -0.190758 -0.297479 -0.220413 -1.728337 0.088045 2.463331 -4.966644 1.147174 -2.083018 -1.016738 -3.055940 -5.145710 0.052087 -2.850783 2.397528 1.350839 -0.690266 0.066849 -0.467576 1.521622 -2.243370 -4.376621 -0.099387 -0.530530 0.629427 5.335217 -1.886036 -0.437587 -0.082237 -0.265785 -1.428051 2.874731 0.968709 2.332150 4.840531 6.248720 1.095975 -2.190250 -1.719303 0.865884 3.220390 4.241587 2.809076 -4.411545 -2.472682 1.122674 0.361877 -6.700164 0.044822 1.798259 3.760455 1.100880 -3.140091 -1.060736 -1.462089 4.612817 2.684627 1.024444 0.865323 -0.207653 -3.246048 5.221807 7.774826 -1.529985 3.171212 -2.015414 -0.683135 3.604680 -4.417678 1.780053 0.973733 -0.276473 0.252834 -2.766880 -2.309861 3.500148 2.365860 0.666306 1.200365 1.829371 -2.412734 -6.888825 -4.813116 -0.138898 4.439496 -0.880737 5.522461 -3.526254 -2.707977 -1.222389 4.890219 -0.111783 -1.637343 1.294199 -3.399024 3.080846 -4.082767 -5.112964 7.440243 7.028438 1.798196 0.776002 3.819040 4.592872 -5.583931 -2.835523 -1.968965 1.057813 1.265975 -4.843430 -3.005965 0.110971 -4.882135 -1.988514 0.820001 1.751161 2.789590 0.719552 -0.124428 2.597770 -3.961821 -1.996813 2.783090 -3.686869 -2.125659 1.013684 -0.037375 1.577121 2.056273 -1.511300 -0.142835 1.250076 -3.304460 0.829854 2.008420 4.283497 0.971624 6.026576 4.655808 0.605513 4.139502 1.830097 -2.860138 5.389675 -1.108538 1.490083 1.478549 0.494502 -0.503821 1.468006 2.727240 -2.501272 -2.684087 -4.689058 0.450777 -0.353905 3.529636 -1.765112 -4.122240 -5.044981 -1.891395 3.605709 2.065190 -0.156095 6.965674 -0.958799 -0.053928 -8.221364 -0.727708 2.390083 0.022696 4.046013 1.991667 -2.709071 -4.844062 -2.047781 -2.454439 -1.238169 -2.093424 -1.773894 -2.358794 -2.549841 4.727765 -1.900981 0.974392 3.532544 -0.011704 3.872271 -1.272150 -0.337114 -2.759825 0.451565 3.173635 0.796810 -3.917099 5.221454 0.114410 11.262469 -1.377989 1.492949 -2.893053 -0.392047 0.450772 -0.520478 -0.335475 5.222900 3.947300 1.841465 -0.379792 0.194933 -2.164690 3.328649 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = -0.725960 0.891932 4.877889 2.989218 -3.121125 -3.955727 -2.016312 -5.325977 2.188875 0.072034 3.393307 0.162351 0.764488 -0.836301 0.526574 -0.220952 0.839337 -0.851886 0.043131 -1.525632 -1.253798 2.922444 1.594403 -3.342223 0.615633 -4.088741 2.438796 2.454177 1.621014 2.044859 0.301765 -0.609357 -1.455593 2.500779 -1.327279 0.085502 0.962049 0.738079 -2.060709 0.191219 1.205361 1.718577 2.684493 -0.608623 3.201101 1.109354 2.229996 1.185042 -2.899377 -0.500014 -1.508585 4.100504 -2.320810 1.836757 0.576529 1.073604 0.207961 -3.093684 -1.183415 -2.861915 -0.166866 0.219856 -1.846656 0.087418 -2.356048 0.679806 0.076571 -1.827858 1.914627 0.415587 2.702574 0.409132 -0.029077 -0.333281 -2.405069 0.671988 0.384953 2.294513 1.928386 -1.008453 0.301391 0.427089 -1.312619 -1.910530 1.056848 0.649337 1.096095 -0.415110 -0.030650 -0.499146 0.273642 -1.036196 0.027790 1.875417 -2.094332 0.767754 -1.300725 -0.827479 -2.530920 -1.759955 0.382336 -1.900022 1.797075 1.559251 -1.282421 0.007936 -0.191736 0.899104 -1.564984 -2.874148 0.136186 -0.883721 1.211755 3.694017 -1.391673 -0.646398 -0.087321 -0.905962 -0.778645 2.604722 0.614776 1.064128 2.877732 4.157552 0.692969 -2.361976 -1.707719 0.205346 2.297897 3.067256 2.209714 -3.223312 -1.805896 -0.086749 -0.446241 -4.738261 0.423065 0.562235 2.534931 0.801561 -2.920948 0.532420 -1.724874 3.546447 1.236407 1.747891 0.554452 -0.202207 -2.629413 3.096020 5.071951 -1.024947 2.373185 -1.071476 -1.538538 2.335729 -1.954558 1.703025 1.300727 -0.578947 0.475108 -1.804636 -0.983315 2.681737 1.505378 1.253356 1.387850 1.003660 -1.140678 -4.696089 -4.068302 0.559746 2.806900 -0.289242 4.788887 -2.860102 -2.551922 -0.996852 3.934864 -0.961105 -1.320518 0.525659 -1.934030 2.041594 -3.215259 -3.832976 4.896615 4.972061 0.871032 0.122392 3.556778 1.906468 -2.607600 -1.673370 -1.488700 1.286871 0.910534 -1.536718 -0.424824 0.198304 -2.930370 -1.298370 0.540797 1.347128 1.195450 -0.670044 -0.927119 1.206300 -3.131572 -1.865591 1.236007 -2.542690 -0.643757 0.774157 -0.118564 0.373447 1.442428 -1.549696 -1.017680 0.776303 -2.168216 0.596109 1.318992 2.714093 0.983744 3.933061 2.850021 0.342366 4.095300 1.554134 -1.783795 5.685819 -1.100972 1.076161 0.942384 1.598846 -0.189975 0.983462 1.612523 -1.588152 -1.342509 -3.461741 0.786653 0.156121 2.428952 -3.093133 -2.610595 -3.756494 -1.420630 2.092530 1.931207 -0.685287 5.400275 -0.433037 0.418913 -6.222615 -0.447227 2.182223 -0.227277 2.174065 1.399694 -2.222547 -5.407829 -0.981796 -1.989343 -0.600370 -1.185620 -1.952836 -2.040923 -1.624676 2.715669 -1.197745 0.926458 3.673891 -0.403112 1.406167 -0.953489 -0.193164 -0.556324 -1.411349 1.623931 0.515998 -3.326427 3.763098 -0.169520 8.184724 -0.739199 2.193814 -2.097406 0.427401 0.103269 -1.185668 -0.646375 3.975251 2.560069 1.139570 -0.111944 0.521006 -1.844118 2.285860 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -2.015824 3.497246 17.324552 10.729990 -11.570185 -14.594124 -7.207003 -20.255279 8.435755 0.606851 12.034804 0.291091 2.386058 -3.367315 1.193678 -0.124376 3.150961 -3.541310 0.081800 -6.210775 -5.668445 10.718320 5.378380 -10.744721 2.455747 -16.016413 9.361510 8.243251 6.442879 7.058731 1.628309 -2.415618 -4.938785 9.515055 -3.752418 0.943121 3.489340 2.226134 -7.580181 1.366615 4.259898 5.997351 10.532469 -1.099554 11.803009 4.175162 8.038848 4.407228 -10.763231 -1.589807 -5.565306 14.576253 -8.583916 6.686698 2.044281 3.495529 1.335979 -11.541521 -3.705577 -8.526083 -1.820178 -0.033554 -6.466123 0.609940 -8.909487 2.409173 -0.918425 -6.652963 6.345153 1.911267 10.097911 2.334033 -0.306669 -0.446206 -8.952959 2.904194 1.825234 8.241409 7.674862 -4.187737 1.210255 1.538639 -5.598298 -7.466160 4.573919 2.530464 4.239324 -1.174476 -0.036569 -2.762123 0.724815 -4.186127 0.762050 6.954414 -7.588710 1.973609 -4.670558 -3.593838 -9.824952 -7.834634 1.056733 -6.638999 6.671764 4.984855 -5.107258 0.210480 -0.895551 2.674196 -5.373238 -9.732228 0.698064 -3.492970 5.404190 14.001910 -4.889708 -3.175819 -1.280730 -3.311950 -2.952298 9.381171 2.622506 3.216219 11.641859 15.073866 2.762738 -8.279173 -6.134733 0.080530 7.582431 10.823690 8.554886 -11.335322 -6.993890 -0.184007 -0.886044 -17.151941 1.234334 1.719151 9.406506 2.845709 -9.658942 1.683016 -6.116169 12.664030 4.684359 5.432194 2.335454 -1.141906 -9.559755 11.663236 18.241895 -3.529690 8.368242 -5.282353 -5.228030 8.487893 -7.518091 5.791265 4.438852 -2.674814 1.095641 -6.295303 -3.017125 9.746799 4.562244 3.097762 5.308231 4.243030 -4.013389 -16.628567 -14.896459 2.849587 10.147615 -1.032636 17.074286 -10.776775 -8.334685 -3.832369 13.666195 -2.435140 -4.450816 2.397480 -7.315306 7.095196 -11.630913 -14.057133 18.519643 18.648951 3.558993 0.041897 11.865938 7.450873 -9.769008 -6.484620 -5.354947 4.344534 3.446301 -7.038639 -2.512468 1.126372 -10.305764 -5.177580 1.838175 5.048098 5.528534 -3.348811 -2.877783 3.024441 -11.170062 -7.511734 5.049484 -9.031950 -2.483463 3.218328 -0.380038 1.567470 5.892063 -4.740983 -3.451555 2.373615 -7.556510 2.009219 4.903176 10.888203 3.328432 14.296001 10.883075 1.065262 14.982919 5.754780 -6.311479 19.856036 -4.200703 4.323549 3.678953 5.368724 -0.577824 3.803487 6.273342 -5.967764 -4.735913 -12.107240 3.295913 0.383787 8.179044 -10.835620 -9.063270 -14.936862 -5.230706 7.042035 6.641274 -2.104585 19.373021 -1.530868 0.930493 -21.765523 -1.856110 8.004330 -0.412501 8.500545 5.264693 -8.529182 -17.319104 -4.014139 -8.078985 -1.979298 -4.084419 -6.247658 -7.447799 -5.256038 10.053897 -4.268654 3.731414 12.992568 -1.080989 4.960915 -3.727658 -0.366370 -2.836122 -4.913585 7.089464 1.603484 -11.642856 13.327847 -0.683942 28.790657 -2.394220 7.329349 -7.575845 0.770445 0.879257 -4.753943 -2.773063 14.346041 8.894469 3.835050 -0.386327 1.417194 -5.863249 9.256813 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = 0.231412 0.288353 0.904436 0.217265 -0.512027 -0.854786 -0.291006 -1.375924 0.707381 0.123293 0.345739 -0.059082 0.291896 -0.486351 -0.204979 0.589942 0.253481 0.090998 0.029914 -0.360034 -0.326251 0.640595 -0.068622 -0.235032 0.379262 -1.043821 0.665325 -0.059693 0.543552 0.603429 0.267367 -0.148338 -0.177343 0.495270 0.522843 0.725616 0.418132 0.165682 -0.499795 0.315682 -0.163171 -0.140347 0.288571 0.276763 0.810809 0.291279 0.153320 0.233718 -0.359032 0.049874 -0.254317 0.563410 -0.568201 0.360453 -0.137351 0.194835 -0.144172 -0.467084 0.000277 -0.104955 -0.326381 -0.355913 -0.566529 0.137793 -0.674081 0.110808 -0.242471 -0.254847 -0.358631 0.183655 0.385266 0.335345 -0.058765 0.295175 -0.848438 -0.176157 0.122122 0.352597 0.645803 -0.372328 0.039285 -0.344581 -0.523089 -0.610926 0.795019 0.317788 0.246891 0.142702 -0.020023 -0.233339 -0.396382 -0.098644 0.430076 0.484724 -0.514446 -0.244128 -0.327403 -0.086627 -0.165795 -0.999789 0.165861 -0.321639 0.203658 -0.259898 -0.038959 0.127910 0.229467 0.414354 -0.129155 -0.065459 0.221407 -0.137188 0.027285 0.794286 0.245013 -0.354089 -0.326188 -0.341187 -0.036211 0.488928 0.162375 0.082617 0.750494 0.623536 0.558250 -0.367733 -0.497874 0.257198 0.176096 0.412156 0.394373 -0.675670 -0.381941 0.152201 -0.067618 -0.975712 -0.122023 -0.085060 0.325997 -0.105622 -0.171230 -0.231868 -0.235311 0.266760 0.154745 0.053841 0.053788 -0.038957 -0.454643 0.400912 1.030532 -0.217728 0.232970 -0.484222 0.225450 0.139476 -0.321668 0.021457 -0.298346 -0.344040 -0.034834 -0.142090 -0.047505 0.515019 -0.069469 -0.089373 -0.005794 0.315824 -0.683523 -0.658481 -0.584133 -0.108284 0.868209 -0.201986 0.650830 -0.577445 -0.236661 -0.378840 0.587014 0.089089 0.119550 0.156413 -0.696343 0.445005 -0.343409 -0.751842 1.159889 0.753541 0.579813 -0.104295 0.158368 0.497092 -0.875519 -0.374263 -0.192176 -0.066186 0.095782 -0.958412 -0.649840 0.099882 -0.776719 -0.297417 0.084506 0.292248 0.252243 0.403838 0.336397 0.157999 -0.129979 -0.580866 0.344974 -0.239667 -0.121269 0.132769 0.089492 0.090548 0.408761 -0.308037 0.043390 0.343971 -0.183653 0.179427 0.368510 0.402613 0.049643 0.754799 0.828042 0.046411 0.472484 0.157592 -0.388379 0.488694 0.147986 0.418484 0.251320 -0.116966 0.008317 0.156022 0.539660 -0.354458 -0.289591 -0.605377 -0.373378 0.145631 0.398192 0.302653 -0.481400 -0.511925 -0.194713 0.109133 0.501025 0.032415 0.737595 -0.074200 0.360854 -0.859199 0.055874 0.643972 -0.144290 0.367766 0.272824 -0.435554 -0.612715 -0.243956 -0.496025 -0.811089 -0.396514 0.114159 -0.372223 -0.112962 0.499007 -0.201594 0.018914 0.508727 0.295473 0.479995 -0.499810 0.316992 -0.434205 0.056891 0.554620 -0.112914 -0.510038 0.123900 0.339417 1.348149 0.009405 0.242979 -0.216557 -0.100590 -0.018542 -0.444191 -0.280703 0.674085 0.456308 0.231807 0.122671 -0.089458 -0.085971 0.654111 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = -1.037346 0.482882 5.543131 2.126897 -2.900535 -5.102891 -2.297392 -8.766774 4.266600 1.351802 4.719908 0.823234 2.389742 -2.013683 0.460380 1.127178 1.376802 -2.253986 0.604262 -1.974815 -0.339240 5.921748 1.266153 -1.417773 0.168865 -6.182901 2.290794 1.788926 3.256562 2.716745 1.182870 -0.861564 -1.708325 2.555861 -0.772311 1.991933 1.486312 1.274229 -2.821429 -0.501719 0.319293 0.819693 3.183344 -0.303773 5.467421 -0.435900 3.104460 1.146925 -1.865365 -1.491647 -2.073398 5.327849 -3.201719 1.810448 0.793766 -0.156097 -0.244957 -2.535534 -1.196043 -2.335464 -0.899615 -0.579176 -2.632217 0.497569 -2.588572 1.472671 -0.886240 -1.181719 0.328974 -0.439577 3.653328 0.921858 0.764385 0.578282 -5.511980 0.526007 -0.203993 1.569118 2.790892 -0.203900 -0.523716 -0.603545 -1.921239 -3.211935 3.240922 3.130565 0.246361 0.170567 -1.836652 0.397069 -1.283164 -1.495629 0.897957 2.499136 -3.994184 0.368845 -0.143985 -1.055647 -2.282421 -3.164254 1.065664 -2.599350 1.789642 0.612158 0.283036 -0.756552 -0.973266 0.167332 -2.826027 -3.331870 1.214841 -1.042391 1.014637 5.001003 -2.418047 -0.100145 -1.315218 -0.843499 -0.748466 3.088819 1.616178 1.677738 3.615629 4.657241 1.688532 -3.273321 -2.416875 2.325422 3.619011 2.883872 1.512747 -4.152521 -1.998223 1.107808 -0.746021 -6.053579 -1.111191 2.425270 3.339011 0.484992 -2.135485 -0.003940 -1.195918 4.128328 2.939094 0.721402 0.647267 0.494420 -3.442585 3.472146 6.648281 -0.847539 3.036876 -1.655861 -0.619898 3.432766 -4.148399 2.287850 1.437426 0.041187 -1.028886 -2.021425 -0.761782 3.187934 1.495870 2.155281 -0.279618 2.050683 -1.898948 -5.642373 -6.091955 -0.488095 4.659794 0.213636 4.977020 -3.470566 -2.748294 -0.208147 4.495498 0.008765 -2.358666 1.853277 -3.447849 2.823122 -4.489204 -4.576416 7.183259 7.140383 2.599333 0.055936 3.846162 3.569374 -4.637234 -2.157288 -1.475736 2.016546 0.527746 -4.809074 -0.950596 0.226070 -4.335897 -2.811332 -0.301341 1.575001 0.957591 0.982221 1.852142 1.179047 -2.239822 -1.959624 2.525947 -1.887634 -1.885637 -0.217424 0.558380 0.300921 1.929014 -2.123580 0.513664 2.294681 -2.757781 1.006305 2.322374 1.967257 1.026468 5.285923 4.385098 -0.351561 4.854958 0.362115 -1.782518 5.114174 -1.059921 1.209468 0.721957 1.007321 0.330013 1.264598 1.842609 -2.265893 -2.368952 -3.819989 0.219390 0.576493 3.538196 -1.394145 -4.917578 -4.795280 -1.075752 1.959503 2.972946 -0.486918 6.764923 -1.791541 1.471100 -8.093782 0.289361 2.591849 -0.361021 2.569387 1.324077 -2.243961 -4.092220 -1.452639 -2.807913 -3.201467 -1.285881 -2.918121 -2.092117 -3.782821 4.574805 -3.015968 0.252774 2.892642 0.078965 3.085011 -1.391235 0.087959 -2.666700 0.421521 2.110453 0.134783 -3.761810 4.043952 -0.262162 9.844592 -1.939268 2.442604 -1.809719 2.395999 -1.393233 -2.889115 -0.469767 5.191829 3.921127 0.718399 -0.967964 -0.302847 -1.364670 2.448748 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = -1.193797 1.233643 8.670234 3.639123 -5.622662 -8.333993 -3.597559 -12.771217 5.719579 1.658649 7.089147 0.940371 2.895784 -2.935332 0.667645 1.771156 2.415980 -2.920665 0.411784 -3.723844 -2.110811 7.583552 1.764624 -2.355769 1.088454 -9.652869 4.283489 3.030443 4.391552 3.934324 1.981572 -1.230477 -3.057585 4.253840 -0.574332 2.880185 2.295210 1.486329 -4.267417 0.358428 1.211379 1.151531 5.185611 0.083652 7.793187 0.454512 4.465835 2.165982 -4.312109 -2.242465 -3.540735 7.938196 -4.930938 3.102076 0.814856 0.271982 0.224222 -4.382541 -1.527657 -3.348120 -1.710926 -1.586902 -3.683595 0.665812 -4.152837 2.107638 -1.755122 -2.464205 1.174271 0.130872 5.761746 1.438817 0.592965 1.621543 -7.232252 0.826071 0.209294 3.369045 4.730408 -1.262974 -0.356206 -0.665172 -3.342656 -4.898585 4.642854 3.316910 1.383590 -0.020117 -2.394902 -0.132191 -1.477597 -2.298815 1.653897 3.534134 -6.104273 -0.067462 -1.069728 -1.922503 -4.326377 -5.484967 1.213748 -3.620929 2.775308 1.402345 -1.059837 -0.846906 -2.001232 0.356030 -4.150094 -4.732016 1.601309 -1.934357 1.757953 7.926619 -3.419303 -1.063648 -1.779925 -1.470987 -1.128487 4.781757 2.504518 2.165056 6.285419 7.519061 2.465906 -4.633075 -3.805376 2.127721 5.159254 4.742579 3.340225 -5.940605 -3.747857 1.255569 -1.318530 -9.291162 -0.929039 2.658198 5.681626 1.502575 -3.492313 0.070325 -2.590028 6.225163 3.731342 1.549352 1.089442 0.008334 -5.709548 5.827084 10.026912 -1.658239 4.866374 -2.682278 -0.929419 4.864998 -5.531608 2.752145 2.530397 -0.940916 -1.173604 -2.889058 -1.937491 5.036327 2.284633 2.391488 0.696776 3.509614 -3.108458 -8.754013 -9.121813 0.061161 7.011402 -0.151928 7.625015 -5.864847 -3.711197 -1.060365 7.485335 -0.551844 -3.575715 2.363642 -4.784300 3.987560 -6.155008 -7.153405 11.530788 11.273039 3.278232 0.014099 5.723022 5.790985 -7.535891 -3.386841 -2.496123 2.460337 1.234057 -7.276879 -2.185111 0.896391 -6.280682 -4.222218 0.040189 2.733455 1.902148 0.559362 2.005189 2.037037 -3.847531 -3.354476 3.655119 -3.415317 -2.423093 0.675253 0.504438 0.890189 3.193341 -2.927821 0.075399 2.790976 -4.359854 1.390611 3.293845 4.663668 2.222561 8.572504 6.582879 -0.249680 7.611971 1.244265 -3.304777 8.238127 -1.827714 2.347946 1.362932 1.934235 0.364947 1.914554 3.329034 -3.510876 -3.492157 -6.315596 0.404777 0.522001 4.797288 -2.519628 -6.411045 -8.457869 -1.752005 3.062593 4.342530 -1.090840 10.414840 -2.148515 1.140068 -11.763686 -0.108235 4.313514 -0.707231 4.164321 2.320029 -3.585909 -6.834022 -2.504392 -4.718010 -3.709407 -1.800948 -3.337585 -3.477746 -4.778651 6.745059 -3.978871 1.020707 4.881241 0.484970 4.407161 -1.782282 0.119472 -3.718509 0.252933 3.981769 0.595645 -5.952545 6.881262 -0.032427 15.214841 -1.994117 3.382925 -2.950321 1.880960 -0.944660 -4.079314 -1.239118 7.762447 5.955455 1.711560 -0.875216 0.141330 -2.034079 4.901142 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = -0.674063 0.047018 3.185158 1.126266 -2.417521 -2.600390 -1.200403 -4.589656 1.778259 0.358315 2.498149 0.269655 0.790024 -1.726777 0.168466 0.260640 0.760618 -1.126321 0.242779 -1.201067 0.027298 1.832062 0.388315 -1.229597 0.314731 -3.059814 1.247150 1.331459 1.498821 1.307972 0.390439 -0.858943 -1.699420 1.463521 0.068867 0.817932 1.769382 0.443904 -1.878035 0.018949 -0.088394 0.301447 1.771354 -1.341980 3.200373 -0.413290 1.321123 0.976464 -2.204129 -0.681040 -0.394835 2.483270 -1.739331 1.162377 1.172208 -0.368106 -0.792645 -1.469032 -0.933541 -1.647699 -0.363898 -0.900886 -0.589186 0.275809 -1.242882 0.648141 0.181328 -1.290038 1.092546 -0.402073 1.539147 0.762017 0.720790 1.225386 -1.899689 0.453359 0.886812 1.512310 1.142588 -0.542484 1.012771 -0.538245 -0.619659 -1.117629 0.623471 1.595875 0.767947 -0.183001 -1.022290 0.828924 0.602581 -0.807181 0.493576 0.854540 -1.957745 -0.647236 -1.281551 -0.568234 -1.523781 -2.352105 0.387376 -1.017052 1.426676 0.587676 -1.037389 0.219158 -0.395399 0.749789 -1.600028 -1.551962 0.347646 -0.738933 1.428959 2.949079 -1.263391 -0.335714 -1.106108 -0.535375 -0.413947 1.002046 0.041232 1.002256 1.755907 3.035985 1.170236 -2.263786 -1.910243 0.725903 1.957984 2.046050 1.162634 -2.115413 -0.863495 0.216906 -1.040430 -3.410309 -0.609364 -0.176136 2.017326 0.403646 -1.061281 -0.654682 -1.244935 3.162426 1.013856 0.473679 0.039021 0.404443 -2.150765 2.249662 2.642016 -0.414337 1.735198 -0.630638 0.039381 0.509269 -1.213123 1.086684 0.897449 -0.478447 -0.089134 -1.206295 -0.891492 1.503706 1.266676 1.321582 -0.844859 1.192713 -1.291374 -3.517223 -2.895833 0.106021 2.524076 -0.124924 2.435642 -2.228955 -2.376158 -0.507489 2.862200 -0.171753 -1.375539 0.866084 -2.011041 1.767408 -1.357080 -2.764430 3.671255 4.615304 1.352116 0.470635 2.301144 1.301159 -3.390038 -0.639011 -0.381270 0.514034 0.165418 -3.449558 -1.178373 0.596566 -2.084245 -1.528269 0.410205 1.072916 0.630789 0.852783 0.817541 1.832141 -0.933202 -1.046503 1.500938 -1.035300 -0.696359 0.358901 0.423754 1.299339 1.310413 -1.844675 -0.184187 0.893684 -1.571156 1.001952 1.062919 1.746093 0.656919 2.600819 1.961383 0.127673 3.105035 0.390959 -1.383410 2.540280 -0.461932 1.220731 0.917916 0.061369 -0.079900 0.534320 1.390865 -1.489330 -0.537944 -2.183151 -0.851006 0.034748 2.309871 -1.091468 -3.019933 -2.507918 -0.315833 1.298354 0.387852 -0.375002 3.409016 -0.514307 0.481410 -4.345969 -0.493694 1.239502 -0.013848 1.695020 0.686276 -1.341787 -3.716931 -0.618286 -1.909501 -1.842241 -0.894131 -0.858700 -0.960308 -1.529613 3.103128 -0.416190 -0.063137 1.597600 0.221122 1.932192 -0.508418 0.204684 -0.806489 -0.394832 0.848025 0.201966 -2.115085 2.484945 0.554939 5.944217 -0.276799 0.531811 -0.953803 0.644195 0.173078 -1.238108 -0.271530 2.745144 2.182364 1.132185 -1.025722 -0.250808 -1.386972 1.757293 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 0.409026 1.162854 3.121097 0.882532 -3.406939 -4.431125 -1.649061 -6.024080 1.919818 0.319618 1.649524 -0.425535 -0.152196 -1.434686 0.077135 2.451050 0.953263 -0.704497 -0.091161 -1.946946 -1.974387 2.373816 -0.802680 0.056440 1.297426 -4.451073 2.740778 0.788999 1.826711 1.602241 2.129265 -1.096099 -1.722164 1.970812 1.787281 4.391189 1.418677 -0.009793 -2.517025 2.072968 -0.356659 0.599776 2.266010 0.320575 3.936056 2.122390 1.749669 2.107546 -2.704984 0.069772 -2.288438 3.944064 -1.848998 1.912050 0.067813 0.157563 -0.287758 -2.441382 -0.747074 1.330431 -2.829490 -1.299616 -1.962245 0.421304 -3.000600 0.273346 -1.314869 -0.543614 0.245302 1.200910 2.596750 0.628567 -0.611897 1.634565 -2.972335 -0.119393 0.398571 2.436806 2.521287 -2.380401 1.171228 -0.174573 -1.647390 -2.150178 1.969047 1.220528 1.382531 -0.364691 -0.589729 -1.403335 -1.849096 -1.596472 1.650358 1.178822 -2.163917 -0.938371 -2.297781 -0.688909 -2.503391 -3.845346 0.821739 -0.443657 1.639315 -0.792180 0.571656 -0.739494 1.045063 0.479116 -0.733581 -0.282451 0.810077 -0.376337 1.614257 4.091846 0.430842 -1.300028 -1.391103 -1.853421 -1.237117 1.875879 1.689648 -0.060961 2.902556 3.757596 4.023257 -1.151245 -2.708643 -0.019556 1.008700 2.464478 1.816803 -2.393595 -1.482047 0.595925 -0.214959 -3.256999 -0.300259 -0.053614 2.517681 0.663128 0.113155 -1.264461 -1.147704 2.351569 -0.556607 -0.181243 0.759465 -0.423261 -2.232835 3.067180 4.841318 0.000545 1.019622 -2.492320 0.909688 0.567636 -1.127502 0.178666 1.562473 -1.603369 -0.898373 -0.352045 -0.539795 1.406303 0.920573 -0.660132 0.742745 2.195821 -2.980110 -2.964912 -2.505871 0.896676 2.730406 -1.468449 2.825552 -2.540884 -0.932475 -1.567622 3.204157 0.292359 -0.552416 1.128323 -2.754241 1.614632 -0.451267 -1.987999 5.360989 5.310392 1.970816 -0.986824 1.770754 3.504332 -5.170559 -1.777871 -1.418914 0.005600 0.357445 -4.421531 -1.880470 0.665456 -2.717726 -1.667674 0.082657 1.599688 1.858177 1.746913 0.361776 0.320296 -1.710884 -2.221953 1.581674 -1.151012 -0.288327 1.395922 0.081018 0.219040 1.898697 -1.563325 0.092813 1.375086 -1.332541 1.500134 1.473409 2.745056 0.081009 2.852374 2.392734 0.646561 4.599610 1.091934 -1.929239 2.811614 0.964887 2.009113 0.880266 -0.562321 0.399568 0.383167 1.222587 -1.714001 -1.648972 -2.564627 -0.334657 0.295264 1.803111 0.293379 -2.210076 -4.543639 -0.747896 0.806462 1.562435 0.219250 3.251795 -0.245668 0.486789 -4.258090 -0.012961 2.154590 0.005774 1.110130 0.573772 -1.749437 -1.798334 -0.483718 -2.918125 -3.214346 -1.028945 0.014390 -1.807636 -1.574651 2.972025 0.176292 -0.090251 3.297000 0.346835 1.265133 -1.831219 0.450329 -1.618567 -0.993234 2.881158 -0.206695 -2.715586 1.869057 0.924375 6.939936 0.035560 0.868424 -0.765605 -0.676032 0.755352 -2.222137 -0.732141 2.764009 1.496976 1.006613 0.667849 0.101016 -0.415403 2.564403 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = -0.456796 0.020741 2.076839 0.834636 -0.785706 -2.393349 -0.842777 -2.843703 1.424940 0.424653 1.960397 0.309989 1.038837 -0.495863 0.345359 0.478929 0.364214 -0.905702 0.223175 -0.763912 -0.368021 2.386800 0.935084 -0.591034 0.054980 -2.300467 1.139289 0.831522 1.068810 1.740712 0.269582 -0.286230 -0.217608 1.012449 -0.466971 0.829530 0.063565 0.550240 -0.634452 0.073875 0.363564 0.129708 1.311328 0.161362 1.889488 0.383991 1.384321 0.316003 -0.596129 -0.751402 -1.303472 1.852044 -1.690893 0.510097 -0.622758 0.223835 0.217845 -0.857966 -0.580554 -1.560272 -0.262076 -0.008707 -1.434855 0.124886 -1.264779 0.673592 -0.726975 -0.607320 -0.067293 -0.060739 1.548012 0.553440 0.092514 0.122327 -2.206187 0.134221 -0.258752 0.668972 1.080899 -0.565275 -0.778540 -0.067766 -0.840488 -1.183343 1.467295 0.583982 0.287497 0.180455 -0.470616 0.062415 -0.830143 -0.071678 0.278643 0.966756 -1.095283 0.454647 0.342472 -0.268715 -0.802677 -0.986875 0.415653 -1.110659 0.522352 0.566529 0.372521 -0.414835 -0.864902 0.062409 -1.380253 -1.713810 0.327323 -0.487338 -0.134119 1.519150 -1.168136 0.186144 -0.188271 -0.149434 0.093032 1.519059 0.712427 0.677531 1.305337 1.706934 0.366244 -1.303620 -0.727036 0.624175 1.631531 1.140667 0.678142 -1.284984 -1.039786 0.204882 -0.448459 -2.486693 -0.158628 1.348922 1.223434 0.298355 -1.344456 0.762436 -0.618381 1.431081 1.602420 0.576867 0.421930 0.072194 -1.523200 1.430315 2.945008 -0.591541 1.472616 -0.740837 -0.578126 2.078901 -1.775033 0.752650 0.607529 -0.079441 -0.221816 -0.781050 -0.331697 1.381310 0.832101 1.123907 0.511590 0.721908 -0.332777 -2.182098 -2.145695 -0.388314 2.057316 0.178062 2.110047 -1.409357 -0.625474 0.038406 1.548144 -0.166577 -0.916996 0.287991 -1.020710 1.002940 -2.956815 -1.911285 2.948629 2.383219 1.125546 0.385693 1.261826 1.884407 -0.977828 -0.462317 -0.581213 0.985591 0.176008 -1.492945 -0.272841 -0.172664 -1.750989 -1.090878 -0.186428 0.631037 -0.018586 -0.043791 0.214481 0.120431 -1.107747 -0.727896 0.591300 -1.392375 -0.828675 -0.075424 -0.019630 -0.050313 0.288322 -0.549426 0.535195 0.972710 -1.206942 0.276493 0.876280 0.815859 0.806276 2.155462 1.980997 -0.408490 1.357129 0.231071 -0.586996 2.171986 -0.492081 0.418164 0.288976 1.078908 0.405241 0.541114 0.776712 -0.770298 -0.924668 -1.617525 0.395095 0.795028 1.306280 -0.221868 -1.586569 -1.991423 -0.415146 0.955674 1.926841 -0.395199 2.768864 -0.541785 0.700006 -2.957880 0.174521 0.915656 -0.125447 0.914466 0.688054 -0.743510 -1.513996 -0.738849 -0.812151 -0.628218 -0.555719 -1.188868 -0.818957 -1.264874 1.039056 -1.585167 0.224348 0.815636 -0.065009 1.132060 -0.233900 -0.072037 -1.089956 0.291828 0.946669 0.399993 -1.406336 1.642699 -0.162309 3.581842 -0.742484 1.280424 -0.867916 1.150344 -0.624813 -0.790162 -0.203275 2.173191 1.633297 0.032349 0.120778 0.027559 -0.036236 0.860620 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.193053 0.250853 0.731634 0.029911 -0.289027 -0.954053 -0.185716 -1.293251 0.511862 0.190294 0.557183 -0.009252 0.497479 -0.229582 -0.001666 0.423295 0.337664 -0.057289 0.097604 -0.352684 -0.152893 0.748031 -0.166383 0.127376 0.132409 -0.736850 0.229964 0.341106 0.547982 0.422535 0.232789 -0.091709 -0.210133 0.256878 -0.151640 0.220537 0.223925 0.193699 -0.647635 0.109365 -0.255226 -0.037736 0.482780 0.021551 0.594107 0.138260 0.296042 0.283726 -0.060140 -0.227735 -0.257642 0.634091 -0.202691 0.263397 -0.171890 -0.240181 -0.041278 -0.085697 0.001856 0.018973 -0.118457 -0.086289 -0.356834 0.071223 -0.430112 0.094156 -0.227200 -0.422102 -0.139029 -0.131335 0.358782 0.097007 -0.023893 0.076032 -1.042873 -0.018182 0.138076 0.228887 0.405091 -0.028529 0.090726 -0.196042 -0.408519 -0.470502 0.604079 0.647448 0.207386 0.256468 -0.566609 -0.154939 -0.201696 -0.085422 0.422900 0.250027 -0.394052 -0.008081 -0.202770 -0.153539 -0.374564 -0.805882 0.236349 -0.161885 0.246103 -0.311381 0.296470 0.008576 -0.083555 0.126051 -0.263805 -0.339040 0.195713 -0.252712 0.029619 0.880558 -0.175547 -0.193022 -0.355334 -0.172436 -0.193535 0.389774 0.228401 0.052524 0.409893 0.443659 0.301885 -0.492806 -0.413485 0.300195 0.322676 0.356497 0.238691 -0.454560 -0.287452 0.185409 -0.426898 -0.945277 -0.245712 0.204946 0.426205 -0.282025 -0.024220 0.096348 -0.322709 0.345909 0.383253 -0.003254 0.191767 0.017054 -0.434893 0.314670 0.766135 -0.169798 0.438487 -0.322688 -0.035770 0.188449 -0.221054 0.213282 0.072450 -0.280256 -0.217781 -0.067638 0.068680 0.431300 0.175704 0.206571 -0.091450 0.294765 -0.559041 -0.567451 -0.796403 -0.082289 0.672131 -0.021738 0.610496 -0.468854 -0.378433 -0.062751 0.582096 -0.087732 -0.239103 0.339854 -0.555569 0.382832 -0.567828 -0.590555 0.952832 0.918035 0.548799 -0.110937 0.325987 0.378969 -0.714813 -0.374454 -0.062019 0.125008 0.028329 -1.180827 -0.408181 0.066354 -0.623590 -0.193008 -0.059979 0.274344 0.031446 0.452893 0.644765 -0.193191 -0.228008 -0.366958 0.349082 -0.180317 -0.036802 0.081069 0.072005 -0.042474 0.283225 -0.405118 0.064777 0.399644 -0.374364 0.227205 0.185803 0.232326 0.071259 0.808573 0.585560 -0.088869 0.717545 -0.092970 -0.370836 0.572905 -0.142050 0.304769 0.047639 0.200074 -0.031801 0.175474 0.356233 -0.315066 -0.350962 -0.564800 -0.323454 0.287497 0.335225 0.341152 -0.608661 -0.708258 -0.034809 -0.052965 0.682078 -0.057062 0.774131 -0.297974 0.352334 -0.868346 0.161654 0.105771 -0.120711 0.322675 0.190716 -0.366488 -0.326244 -0.117659 -0.630290 -0.856717 -0.115937 -0.416530 -0.257652 -0.394359 0.399810 -0.409187 -0.091737 0.307387 -0.012607 0.478275 -0.339969 0.072670 -0.399523 0.196351 0.626634 -0.114527 -0.439232 0.230931 0.124810 1.347984 0.050717 0.386669 -0.127364 0.173779 -0.041419 -0.555989 -0.262761 0.705277 0.516738 0.123257 -0.065043 -0.064823 0.106120 0.347598 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -1.306114 -0.373486 3.792529 1.322474 -2.690278 -3.891458 -1.716328 -6.440292 3.359415 1.330066 3.734157 0.726524 2.328169 -2.751710 0.063920 0.929346 1.848752 -1.875225 0.384979 -1.872513 -0.228637 4.433844 0.738968 -0.724980 0.484807 -4.504142 2.181934 0.600051 1.970639 2.806600 1.331774 -0.457302 -1.760568 1.590101 0.757331 2.834515 1.567518 1.058391 -1.957437 -0.301529 0.295629 -0.826151 2.526061 -0.317800 4.639708 -0.673697 1.751463 0.795520 -2.250866 -1.717442 -1.144727 2.619814 -2.918658 1.144124 0.435428 -0.424999 -0.077115 -1.430881 -0.895955 -2.203408 -0.819337 -1.800144 -1.998715 0.602600 -1.903566 1.387812 -0.985599 -0.874337 -0.372093 -1.121726 2.242296 1.123390 0.738415 1.512928 -3.953460 -0.037849 0.374615 0.917771 2.224961 0.135468 -0.478636 -1.517182 -1.770480 -2.355675 2.828787 2.096391 0.451365 0.622512 -1.921753 0.849670 -0.840684 -0.619083 1.390729 1.413654 -3.186340 -0.953765 0.261577 -0.997856 -1.123811 -3.203159 1.058709 -1.672238 1.089566 0.713677 -0.798414 -0.345942 -1.354619 0.391106 -2.752497 -1.929382 1.191137 -1.341369 0.493877 3.794620 -1.812002 -0.476619 -2.198574 -0.661195 0.472949 2.028412 0.811737 1.460524 2.792301 3.318079 1.827071 -2.884400 -2.102243 2.001788 3.014985 1.528925 0.949919 -2.541052 -1.639001 1.100952 -1.461111 -4.490069 -1.934645 1.140476 2.748136 0.546656 -1.431032 -0.069678 -1.080249 3.038331 2.391387 0.331364 0.186683 0.710818 -3.176308 2.447202 4.158132 -0.664169 2.295146 -1.121530 -0.162823 2.404961 -2.558217 1.021561 0.676737 -0.544091 -1.234353 -1.257349 -0.387544 2.187172 0.813794 1.656785 -1.568180 2.022901 -1.546913 -4.101549 -4.738345 -0.540817 4.384475 1.015739 3.444222 -3.118918 -1.569991 -0.230150 3.195839 0.462695 -2.121567 1.295823 -2.768453 2.202270 -3.888661 -3.812982 6.198656 5.257579 2.725224 0.675307 2.192231 2.555981 -4.034262 -0.908080 -1.082304 1.327210 0.407551 -4.530398 -1.141690 0.702731 -3.481123 -2.746755 -0.175817 1.408805 0.610195 0.565600 2.202218 0.975720 -0.430850 -1.355094 2.220571 -1.117282 -1.713844 -0.258922 0.390227 1.098756 1.498419 -1.392149 0.908596 1.171067 -1.842052 0.696650 1.625686 1.779533 0.976863 3.860550 4.205794 -0.957295 2.449163 -0.431181 -1.586044 2.931930 -0.740856 1.276637 0.558781 0.454421 1.131075 0.467893 2.298146 -1.779163 -1.185095 -2.694670 -0.900261 0.970260 2.901107 -1.131434 -3.945732 -4.016952 -0.019276 0.936614 2.522774 -0.424405 4.914359 -1.573198 0.976381 -5.705727 0.149988 2.356025 -0.151070 1.924199 0.788624 -1.543162 -3.088835 -1.226066 -2.809885 -2.281876 -1.050374 -0.958995 -1.536634 -2.347360 3.924902 -2.037518 -0.196997 1.690845 0.291848 3.077130 -0.248868 0.413781 -2.373054 0.717541 0.906638 0.269266 -2.325759 3.167682 0.652030 6.860212 -0.751939 1.132344 -0.885248 2.330133 -1.237048 -2.832615 -0.581371 3.651683 3.510511 0.568589 -0.428309 -0.409181 -0.585086 2.324648 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.067164 0.179762 1.294961 0.271986 -0.920172 -1.447846 -0.518703 -2.186732 1.055829 0.382805 0.941779 0.080372 0.704240 -0.769994 -0.141610 0.664490 0.597683 -0.275521 0.120904 -0.689873 -0.436541 1.193595 0.056444 -0.121343 0.410737 -1.487752 1.017416 -0.018560 0.655963 1.053879 0.529355 -0.156792 -0.509056 0.640414 0.681999 1.173636 0.562003 0.367828 -0.630620 0.326832 -0.063700 -0.454174 0.697536 0.284387 1.430291 0.272288 0.328534 0.369727 -0.675762 -0.347230 -0.362395 0.665227 -1.030946 0.428935 -0.154811 0.040414 -0.081438 -0.525548 -0.102291 -0.413457 -0.424335 -0.784342 -0.860561 0.278108 -0.902765 0.343418 -0.558197 -0.392239 -0.512696 -0.106191 0.658843 0.425016 -0.005107 0.624292 -1.390328 -0.247998 0.159676 0.382241 0.941102 -0.320727 -0.191853 -0.587293 -0.839655 -0.947716 1.142271 0.581221 0.308234 0.258180 -0.424954 -0.015220 -0.501309 -0.095608 0.697085 0.648421 -0.897349 -0.401997 -0.145755 -0.280830 -0.368720 -1.505245 0.404465 -0.487652 0.363890 -0.150450 -0.229413 -0.083119 -0.231743 0.346282 -0.632236 -0.380956 0.386005 -0.437315 0.094235 1.234662 -0.114535 -0.375181 -0.750242 -0.459005 0.247534 0.740977 0.374230 0.231223 1.080249 1.017918 0.741566 -0.804634 -0.811275 0.490855 0.608432 0.499455 0.474650 -0.888992 -0.641704 0.380544 -0.457524 -1.489013 -0.474921 0.123980 0.703783 -0.057748 -0.283471 -0.142610 -0.458113 0.546422 0.622637 0.195012 0.080579 0.056018 -0.926554 0.661529 1.435196 -0.291813 0.612787 -0.542540 0.164235 0.603975 -0.666742 0.108217 -0.078603 -0.440540 -0.410969 -0.223787 -0.105289 0.757411 0.085759 0.230935 -0.242238 0.631043 -0.829231 -1.080512 -1.224593 -0.160926 1.634087 0.122962 0.969725 -1.068568 -0.247128 -0.257114 0.976899 0.271060 -0.346177 0.328313 -0.906778 0.703755 -1.038903 -1.183829 1.935921 1.368880 1.008634 0.015942 0.299150 0.853358 -1.383480 -0.452179 -0.380276 0.210876 -0.011269 -1.552803 -0.746055 0.225930 -1.232375 -0.650182 -0.015085 0.556616 0.365548 0.347086 0.704785 0.214175 -0.038092 -0.734867 0.610551 -0.306667 -0.451185 0.077600 0.093414 0.273738 0.458340 -0.362349 0.275853 0.431482 -0.448026 0.270844 0.615051 0.584663 0.197685 1.368811 1.337888 -0.264191 0.497138 -0.063156 -0.537362 0.775512 0.011584 0.645895 0.292551 0.092425 0.270698 0.139583 0.951589 -0.566259 -0.497024 -0.882749 -0.565318 0.390818 0.823607 0.171714 -1.028875 -1.223608 -0.018946 0.155732 1.043695 -0.084430 1.359658 -0.261053 0.539672 -1.431875 0.132490 0.859803 -0.193897 0.571484 0.329033 -0.588327 -0.721823 -0.426134 -0.979191 -1.026329 -0.416674 0.116501 -0.559156 -0.328010 0.858502 -0.474929 -0.123948 0.518173 0.216189 0.895960 -0.311486 0.323095 -0.771873 0.230808 0.739582 -0.083666 -0.760537 0.659228 0.469509 2.123911 0.014481 0.380135 -0.169755 0.305216 -0.211583 -0.842000 -0.379395 1.146735 0.980886 0.266430 0.080557 -0.126366 0.065739 0.852702 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.069018 -0.313090 2.366494 0.585827 -1.213151 -2.534454 -1.008294 -4.958251 2.804135 1.227334 2.224311 0.621792 1.918817 -1.822284 -0.462423 0.804712 0.890571 -1.336468 0.491451 -1.145703 -0.125219 4.210883 -0.115340 0.243725 -0.012591 -3.929474 1.821736 0.324469 2.265778 2.243899 0.921952 -0.202209 -0.798175 0.918456 0.025277 1.581187 0.417569 0.908936 -1.602132 -0.252501 0.216957 -0.472947 1.792336 -0.033086 2.946110 -0.702266 1.028814 0.413147 -0.129184 -1.192747 -0.961809 1.389100 -1.552838 0.602565 -0.490546 -0.757111 -0.253572 -0.443948 -0.465678 -0.272060 -0.482129 -0.801047 -1.445326 0.507456 -1.554852 0.936947 -1.169469 -0.624753 -0.690309 -1.126044 1.557120 0.915470 0.560799 0.120187 -4.071624 0.078599 -0.009748 0.197192 1.499831 0.556847 -0.559613 -0.937012 -1.559967 -1.729515 2.280444 2.739078 -0.257135 0.590771 -1.408396 -0.178674 -1.012022 -0.209665 1.348708 1.180924 -2.118364 -0.386097 -0.441929 -0.410465 -0.263737 -2.315534 0.902009 -1.164455 0.862418 -0.167213 0.068925 -0.093661 0.436657 -0.133931 -1.315173 -1.398227 0.602174 -0.940467 0.751190 3.346591 -0.793074 -0.602633 -1.891231 -0.438479 -0.192117 1.351065 0.705812 0.742042 2.285090 1.790873 1.311149 -2.141261 -1.478514 2.373205 1.487360 0.802342 0.284666 -1.857049 -0.897964 0.625150 -0.546781 -3.259906 -1.445009 0.720292 1.490016 -0.990761 0.025298 0.371224 -0.606420 1.680396 2.167204 -0.592359 0.579583 0.661351 -1.970150 1.671881 3.509483 0.040801 1.011149 -1.868575 -0.566701 2.175007 -1.770246 0.964405 0.043690 -0.026681 -1.212008 -0.922392 0.781953 1.479921 -0.574630 1.219244 -0.825761 1.395156 -1.003931 -2.356495 -3.197137 -0.548853 2.906903 1.102730 2.731902 -2.025775 -0.560858 0.240464 1.882989 1.146536 -0.937491 1.514399 -2.131198 1.496932 -3.190439 -2.646164 3.876736 3.510817 2.041182 0.150638 1.309638 1.836392 -2.162003 -0.892577 -0.676771 1.051486 0.731366 -3.575912 -0.602336 0.333741 -2.200152 -2.042517 -0.080704 0.789302 0.759881 0.471911 1.982107 -0.565966 -0.315021 -1.678076 2.423537 -0.831019 -0.852242 -0.390536 0.458409 -0.228421 1.148533 -0.889736 1.078685 1.043898 -0.445480 0.970953 1.215991 0.270794 -0.168341 1.867500 3.026377 -1.132755 1.450988 -0.463330 -0.508949 2.313124 -0.614404 0.596548 0.484523 0.173768 0.529099 0.590835 0.992453 -1.267035 -0.631955 -1.762018 -0.303629 0.763100 1.534844 -0.163216 -2.434877 -2.682700 -0.177821 -0.033868 2.097750 0.425184 3.495161 -1.570309 0.945360 -3.683619 0.389239 1.376286 0.122712 1.754960 0.503635 -0.941999 -0.740852 -0.832103 -1.762172 -1.820150 -0.875034 -1.726212 -1.314218 -1.804258 2.210622 -1.682252 -0.068554 1.262263 -0.092040 1.969795 -1.468100 0.344199 -2.245164 0.866215 0.404715 0.090892 -1.389116 1.492892 -0.155913 3.998317 -0.809323 1.124459 -0.453587 2.324900 -1.520089 -2.775793 -0.358131 2.590375 1.645756 0.169558 -0.450042 -0.752282 0.165213 1.207155 -PE-benchmarks/euler-circuit-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = -0.336518 -0.067236 0.736178 0.074332 -0.179702 -1.009437 -0.361848 -1.225901 0.517390 0.248244 0.964758 -0.044424 0.593438 -0.357742 0.250592 0.383362 0.356364 -0.485088 0.186792 -0.330523 0.002583 0.938946 0.271947 0.047203 0.049500 -0.805226 0.108131 0.285777 0.242200 0.583709 0.166033 -0.069145 -0.093735 0.270604 -0.164938 0.598232 0.387381 0.239855 -0.299863 0.007313 -0.166573 -0.005343 0.437219 -0.107554 0.904546 0.159172 0.483934 0.189979 -0.350738 -0.462370 -0.331448 0.785674 -0.610150 0.132715 -0.126724 -0.155367 0.127711 -0.265959 -0.299226 -0.727267 -0.153019 -0.105441 -0.474980 0.101945 -0.309709 0.379730 -0.074196 -0.204863 -0.048316 -0.013056 0.571293 0.260674 0.122709 0.451238 -0.740516 0.089594 0.074866 0.199472 0.343271 -0.305721 -0.153411 -0.140737 -0.263378 -0.498504 0.796971 0.381866 0.305011 0.217690 -0.471349 0.324801 -0.320212 -0.132301 0.234211 0.255289 -0.340384 -0.085375 0.502782 -0.192491 -0.407770 -0.497943 0.181779 -0.358150 0.134288 0.288578 0.346734 -0.151462 -0.701201 0.181489 -0.835912 -0.602837 0.340906 -0.288698 -0.200165 0.574935 -0.639094 0.196996 -0.246006 -0.042447 0.097366 0.580024 0.248116 0.381391 0.370243 0.689519 0.120366 -0.521360 -0.405062 0.218135 0.933980 0.343025 0.235820 -0.602309 -0.440667 0.216275 -0.578606 -0.898197 -0.464687 0.541141 0.605409 0.098540 -0.597661 0.431225 -0.185570 0.677274 0.629668 0.104738 -0.002481 0.059170 -0.707568 0.552854 0.869496 -0.339605 0.761498 -0.089067 -0.038607 0.481186 -0.611203 0.182614 0.425156 -0.180504 -0.259910 -0.214646 -0.140855 0.443010 0.657654 0.567449 -0.286663 0.419169 -0.286780 -0.819069 -1.010103 -0.190575 0.822400 -0.099661 0.778424 -0.533887 -0.565634 -0.014873 0.740864 -0.245363 -0.550549 0.098930 -0.530335 0.393098 -0.973367 -0.754952 1.392196 1.069711 0.775894 0.246947 0.564473 0.750176 -0.716355 -0.038555 -0.034847 0.396144 -0.024197 -1.098637 -0.324923 0.017300 -0.742278 -0.555732 -0.311118 0.327755 -0.343046 0.421976 0.427445 0.123086 -0.285636 0.102101 0.088327 -0.354803 -0.368835 -0.062513 0.024617 0.182486 0.148252 -0.457172 0.329970 0.461466 -0.731592 0.087821 0.350377 0.415607 0.523305 1.050830 0.914379 -0.157716 0.738155 -0.167454 -0.353543 0.381075 -0.089994 0.233995 -0.045508 0.314705 0.274972 0.033826 0.468131 -0.275240 -0.462183 -0.648703 -0.086330 0.477851 0.560085 0.197085 -0.863727 -0.848410 -0.020510 0.345347 0.881031 -0.230837 0.983848 -0.272599 0.281719 -1.232211 0.136659 0.169349 -0.118841 0.127085 0.195946 -0.232797 -0.880650 -0.215258 -0.583963 -0.862410 -0.217464 -0.458185 -0.195135 -0.720816 0.721831 -0.677604 -0.109098 0.247072 0.252420 0.591181 0.265153 -0.059194 -0.548930 0.315192 0.415691 -0.002133 -0.491591 0.563330 0.138549 1.639368 -0.234885 0.386222 -0.281226 0.503348 -0.161141 -0.323609 -0.040440 0.801761 0.910596 -0.087208 0.059350 0.015860 0.016929 0.422911 -PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/euler-circuit-directed-graph.cpp___GLOBAL__sub_I_euler_circuit_directed_graph.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/sieve-of-eratosthenes.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = -1.144816 1.895399 9.023995 6.013551 -4.708615 -6.253729 -3.538418 -9.071373 4.440392 -0.118550 5.289990 0.040643 0.994908 -1.878726 0.100304 -1.610341 0.788954 -1.592921 0.273487 -2.440555 -1.915270 5.566186 3.285386 -6.653645 0.879025 -8.804254 5.380148 4.104714 3.801332 4.299290 0.242065 -1.171005 -1.883006 5.154008 -2.463813 -0.723475 1.357724 0.859493 -3.486357 0.419842 2.454617 4.954652 4.888510 -0.394577 5.114360 2.606966 3.125130 1.875603 -4.488400 -0.332690 -2.214747 6.733185 -4.119042 3.122175 1.563414 2.511672 0.782240 -6.307507 -1.690645 -4.653100 -0.165319 1.350252 -2.896709 0.513278 -5.117760 0.841966 -0.678259 -2.817169 3.548058 0.579194 4.637902 1.402919 0.210002 -1.837043 -3.774754 2.234873 0.536467 4.088672 3.843560 -2.012477 0.201369 1.595615 -2.246550 -3.557320 1.276710 1.100392 1.558019 -0.563685 1.583793 -2.691395 0.603871 -2.152715 -0.396444 3.683200 -2.828096 1.640349 -3.052615 -1.312071 -3.772474 -2.833722 0.144268 -3.622016 3.184159 3.229471 -2.619788 -0.016979 0.720708 1.268923 -1.576125 -4.636865 0.337493 -1.358566 3.271070 7.126629 -2.208769 -1.488874 -0.779642 -1.473875 -1.527404 5.437465 0.591307 1.525996 5.198572 7.351741 0.883811 -3.863839 -2.236474 0.530739 3.033149 5.252895 4.403275 -6.298278 -3.103386 -0.757084 0.908301 -8.209901 1.298491 0.095780 3.716919 1.519295 -5.536045 1.400435 -2.893521 6.009044 2.138824 2.485615 1.468527 -0.718077 -4.111610 6.134853 9.361661 -1.635527 3.243750 -3.068803 -4.118422 4.709976 -3.837655 3.347692 1.186391 -0.766062 1.535794 -3.422250 -0.364913 5.004514 1.363925 1.764123 3.728573 1.234793 -0.482313 -8.274474 -6.735422 2.029779 3.969735 -0.719726 9.040819 -4.714329 -3.588506 -2.183993 6.785975 -0.676736 -1.091247 0.786272 -3.264059 3.300985 -6.213430 -7.039565 8.210933 8.637450 0.848341 -0.266206 5.409136 3.552762 -2.936365 -2.944816 -2.931047 2.186579 1.508167 -1.528888 -0.277632 0.166996 -4.523387 -2.314072 1.550615 2.061666 3.923889 -3.037378 -3.510676 0.804237 -6.353408 -4.742444 2.666439 -4.861251 -0.767647 1.452583 -0.375956 0.231999 3.145965 -2.065978 -2.236340 1.386676 -2.805338 0.487949 2.275803 5.257834 1.004858 5.727289 4.361705 1.016512 6.502424 3.962720 -2.599294 11.551831 -1.995347 1.664685 2.069917 2.827115 -0.121008 2.432868 1.924912 -2.872778 -1.912948 -6.119799 2.589091 -0.095473 3.625553 -6.952004 -4.208215 -6.478665 -3.298809 3.598444 2.623440 -0.296038 10.015554 -0.445908 -0.139737 -10.113213 -1.199472 4.600475 0.073369 4.839693 3.000204 -4.473846 -8.693506 -2.159291 -3.258268 0.743679 -2.618759 -3.952981 -3.649874 -1.892583 5.167550 -1.586612 2.710725 7.286795 -0.553458 1.481640 -2.111785 -0.128072 -1.457302 -3.545014 1.928022 0.898563 -5.702648 6.313406 -1.110300 12.200199 -2.130585 3.898330 -4.480599 0.700591 0.136492 -2.175189 -1.246432 7.123170 3.329350 1.709870 -0.027796 0.642066 -3.488347 4.286949 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.469178 0.211892 1.120844 0.223447 -0.466727 -1.323950 -0.403015 -2.414432 1.136678 0.321907 0.843875 -0.014578 0.680479 -0.501688 -0.169931 0.737478 0.305695 -0.315290 0.319677 -0.437749 -0.313366 1.875210 -0.249283 0.249189 0.120680 -1.733960 0.580643 0.336466 1.253739 0.737866 0.317144 -0.234797 -0.168115 0.395220 -0.172327 0.450954 0.151377 0.308790 -1.102138 0.183509 -0.263643 -0.104100 0.762834 -0.093886 1.006990 -0.109117 0.677180 0.356410 0.110584 -0.247044 -0.672400 1.143755 -0.400604 0.384638 -0.287907 -0.457415 -0.171931 -0.226212 -0.261989 0.432672 -0.417125 -0.164144 -0.669658 0.196696 -0.828075 0.303156 -0.544919 -0.409644 -0.129256 -0.021050 0.763989 0.432186 0.136100 -0.043237 -2.000409 0.124438 0.057929 0.354301 0.542421 0.030262 0.226108 -0.093662 -0.780458 -0.780660 1.118428 1.334147 0.080541 0.023483 -0.662845 -0.301637 -0.522792 -0.179968 0.605011 0.507949 -0.839640 0.062486 -0.659465 -0.149975 -0.430371 -1.340361 0.265528 -0.474624 0.477288 -0.444844 0.426960 0.098304 0.568065 0.154341 -0.227766 -0.789304 0.154097 -0.207369 0.260971 1.741410 -0.135377 -0.309581 -0.641210 -0.205046 -0.629880 0.571091 0.429427 0.264219 1.027628 0.828217 0.587304 -0.725912 -0.745396 0.832434 0.488914 0.534891 0.330582 -0.894510 -0.441262 0.176518 -0.113120 -1.602117 -0.511338 0.392726 0.643944 -0.646220 0.203329 0.042065 -0.284246 0.764262 0.715482 -0.383459 0.370291 0.136038 -0.656303 0.815432 1.747569 -0.081695 0.440859 -1.057664 -0.154149 0.707377 -0.580605 0.421139 -0.003338 0.005225 -0.404108 -0.429057 0.303713 0.656804 -0.131387 0.263629 -0.030081 0.530026 -0.737803 -1.012001 -1.306867 -0.069186 1.014285 -0.021167 1.226863 -0.760766 -0.550586 -0.016766 0.820857 0.302488 -0.212521 0.702337 -1.150571 0.616295 -1.073205 -1.132991 1.611111 1.535597 0.788554 -0.108245 0.667177 0.880806 -1.256517 -0.682868 -0.330950 0.434729 0.350240 -1.981365 -0.607345 0.076632 -0.987346 -0.571845 -0.043742 0.369134 0.344165 0.656697 0.896048 -0.435448 -0.583802 -0.730006 1.123107 -0.466152 -0.119116 0.046138 0.136727 -0.274627 0.686563 -0.592599 0.370818 0.595410 -0.368152 0.475681 0.485329 0.163188 -0.226280 1.005513 1.316180 -0.137248 1.228758 -0.055327 -0.440645 1.042420 -0.189491 0.272411 0.082370 -0.026340 -0.177824 0.361838 0.403200 -0.514500 -0.678509 -0.880229 -0.089273 0.235184 0.503236 0.430209 -0.981036 -1.131424 -0.326312 0.063088 1.000249 0.338062 1.395139 -0.710159 0.511336 -1.716007 0.225080 0.335059 0.065961 0.830076 0.195908 -0.482193 -0.270029 -0.252623 -0.820817 -1.254098 -0.468964 -1.095055 -0.650499 -0.901581 0.861432 -0.686791 -0.034808 0.740955 0.030173 0.809425 -0.892514 0.057191 -0.932204 0.363846 0.744809 -0.104747 -0.714890 0.405220 -0.077066 2.230127 -0.235901 0.529516 -0.333843 0.469197 -0.369668 -1.134098 -0.171653 1.131650 0.640724 0.081013 -0.219168 -0.326919 0.028402 0.498931 -PE-benchmarks/sieve-of-eratosthenes.cpp___GLOBAL__sub_I_sieve_of_eratosthenes.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/Iterative_QuickSort.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = -1.424967 0.428505 7.137828 3.995224 -2.601605 -5.323724 -2.539230 -6.617477 3.997813 0.336596 4.619279 1.035240 1.632174 -1.089905 0.577158 -0.683143 0.556186 -2.448236 0.228973 -1.838227 -0.126696 5.909246 3.199687 -4.837970 0.171207 -8.190920 4.138081 2.804768 3.066884 5.014560 0.118835 -0.827834 -0.784398 3.661435 -1.988235 0.240684 0.801960 0.758185 -1.916103 -0.177244 2.181782 3.381251 3.676005 0.202177 4.598746 1.454003 3.350610 0.906250 -2.128351 -1.141697 -3.423057 5.367155 -4.219906 2.100169 -0.537362 2.463411 0.578506 -4.371918 -1.791910 -5.334451 -0.061739 1.764719 -2.966091 0.023750 -3.850665 1.421041 -0.745643 -1.566592 1.568691 0.031103 4.348614 1.567289 0.955307 -1.478875 -4.652630 1.332936 -1.130057 2.937784 2.920992 -1.927335 -2.175095 0.873201 -1.711442 -2.813971 1.797194 1.089624 0.357109 -0.258803 1.152162 -1.033955 -1.418201 -0.901838 -0.969914 3.029438 -2.778673 1.800894 -0.656942 -0.353803 -1.820785 -0.887882 0.230306 -3.434310 1.580795 3.058635 -0.393610 -0.507349 -0.658592 0.409393 -2.605640 -4.059649 0.946906 -0.730950 0.499884 4.406679 -2.705764 -0.039207 0.194157 -0.430977 -0.263176 4.908740 0.198470 2.003107 3.772218 5.553169 0.618041 -3.341819 -1.160427 1.535481 3.974849 3.827339 2.958838 -4.604184 -2.571355 -0.552724 0.501597 -6.731368 1.414699 2.282351 3.445557 1.492738 -5.396959 1.860895 -2.063801 5.215990 3.437840 2.127582 1.347570 -0.087739 -4.009275 4.814446 9.267493 -1.522842 3.465084 -2.934649 -2.358599 5.603743 -4.521346 3.016827 0.840184 0.350595 1.061252 -3.012249 -0.828868 4.275200 1.946990 2.867864 3.130548 1.160219 0.413401 -7.228240 -5.565822 -0.757299 4.052571 -0.155397 7.463500 -3.822060 -2.143244 -1.397311 4.752721 -0.867441 -1.516932 0.401930 -2.474039 2.566688 -7.681993 -5.716562 7.801218 7.318788 1.146336 0.877799 4.544629 4.315360 -1.269728 -1.466276 -1.694025 2.338695 1.058742 -1.172640 0.430297 -0.446977 -4.225721 -3.202002 0.749061 1.391037 1.832864 -1.913016 -2.290823 1.376258 -4.858257 -3.384312 1.783241 -4.922605 -2.169834 0.541032 0.004405 -0.208065 1.336284 -1.253946 -0.199033 2.814219 -2.577836 0.226343 2.307868 3.224730 1.808454 4.122176 4.485694 0.360685 4.332221 2.736527 -1.726544 8.938894 -1.643556 0.591257 1.441507 2.625566 0.632402 2.114433 0.859425 -2.177624 -1.493590 -5.049945 3.112751 0.437767 3.431479 -4.082078 -3.981267 -4.462251 -2.244284 3.419284 3.513603 -0.825624 8.699934 -0.807692 0.635678 -9.119403 -0.472311 4.024425 0.357849 2.803392 2.703169 -2.651237 -6.598015 -1.804937 -1.456438 0.839331 -2.159454 -4.102528 -2.749687 -2.900892 3.572284 -3.297311 2.008529 4.907532 -0.372652 2.386488 -1.392771 -0.301941 -2.178350 -1.393449 0.884038 1.800674 -4.212845 5.244066 -1.504293 9.397194 -2.894897 3.685535 -3.467343 2.626481 -1.343779 -1.763756 -0.513393 6.277239 3.083786 0.684598 0.599535 -0.224059 -1.888762 3.095391 -PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = -0.508440 1.863668 10.458093 7.595632 -5.488507 -10.104575 -3.763432 -10.184049 5.095860 -1.102795 6.625115 1.028903 1.661520 -0.837836 0.798442 -0.643003 0.804793 -2.223836 0.473753 -3.158885 -3.784914 8.521548 4.578738 -7.162776 0.567312 -10.616418 7.872750 5.429471 5.387148 7.865271 0.366078 -2.095244 -0.839554 5.888934 -2.544495 -0.835465 -1.065187 0.937566 -3.826347 1.143302 3.519983 2.557481 7.313755 0.670336 4.860445 2.812707 6.793158 2.040184 -3.923189 -0.535652 -8.011433 9.087272 -7.238544 2.977142 -1.971238 2.974904 2.398462 -6.011758 -2.674166 -5.935034 -1.480996 1.219378 -5.594958 -0.049164 -7.481847 1.783185 -4.202469 -3.690064 2.968474 2.148609 6.793027 3.090577 0.703405 -2.206534 -7.894206 2.067419 -1.359930 5.924819 4.906158 -3.300258 -1.323650 2.431386 -3.814247 -4.014273 3.174595 -0.957806 1.796283 -1.477116 1.730627 -2.767571 -2.070026 -0.226585 -0.908618 3.779080 -3.228660 4.323569 -3.948938 -0.584352 -4.370143 -4.286660 -0.012638 -5.016012 2.947484 3.874997 -1.512231 -0.881429 -1.171698 0.110790 -3.208394 -8.393047 -0.277685 -1.510239 0.441320 7.626119 -3.974135 -0.833157 1.039584 -0.399651 -1.217571 7.096299 1.740277 2.809358 5.479566 8.862376 0.681368 -4.882313 -1.962298 0.269588 4.870206 6.743903 5.706626 -5.098328 -4.972977 -1.641507 1.549920 -11.571629 3.653404 4.160557 4.906273 3.291742 -7.526656 2.343130 -4.148020 7.211855 4.884560 4.393669 3.116826 -0.896211 -5.587975 8.247010 13.783213 -2.764528 5.804496 -5.105386 -4.242134 9.752831 -6.379361 3.581838 0.783217 -0.022666 2.294294 -4.397785 -2.214209 6.674953 2.701121 2.602086 7.893831 1.401281 0.231844 -11.405505 -7.216306 1.482252 7.545549 -0.499900 10.410213 -6.439440 -2.306536 -0.776496 6.209275 -1.423062 -2.151983 0.401421 -3.474122 4.211008 -13.358327 -9.337831 11.400027 8.608576 -0.050265 1.226005 5.119494 7.817531 -2.623071 -3.136121 -4.345897 3.874589 1.500906 -2.698364 -0.441789 -0.946292 -6.360643 -2.874804 2.546842 2.681182 4.149693 -4.811651 -4.618711 -0.054831 -8.608815 -6.126243 3.946480 -9.025239 -2.621654 2.044381 -1.448734 -0.238002 2.354623 -0.361544 -0.460505 2.975688 -4.144318 -0.109141 2.521690 6.055572 2.192728 8.261777 7.483711 0.756379 6.492631 5.521801 -3.372271 14.904776 -3.184406 1.688345 2.297637 5.600607 0.123656 3.893908 2.945394 -3.453798 -4.217399 -8.228117 4.155356 0.984658 5.103477 -5.636464 -4.282613 -8.475382 -3.999420 5.979195 6.137624 -1.443104 12.873585 -1.167887 0.453086 -12.284181 -1.111924 5.805738 0.777409 6.477597 4.205608 -4.475925 -6.921337 -3.640059 -2.276183 3.833324 -3.245381 -5.703876 -4.756636 -2.959545 3.214687 -4.782453 3.336719 6.610159 -2.082845 3.044989 -2.191691 -0.842706 -2.488161 -2.462527 3.929990 3.194777 -6.790548 9.673750 -2.291277 15.348747 -2.516341 5.098237 -6.053641 1.544694 -0.576417 -1.824665 -1.295925 9.967361 4.679039 1.074700 1.271886 0.829904 -1.912114 4.613748 -PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = -0.227988 0.505535 2.527064 1.474818 -1.447812 -2.210975 -1.023650 -3.050338 1.404032 0.116650 1.732136 0.094534 0.644024 -0.642984 0.000632 -0.232538 0.363719 -0.507426 0.041154 -0.817060 -0.828163 1.962180 0.544920 -1.474794 0.297623 -2.641961 1.752188 1.159863 1.048107 1.450627 0.174442 -0.254734 -0.676096 1.344642 -0.597575 0.118214 0.400685 0.447452 -0.915819 0.035448 0.795325 0.782860 1.553962 -0.057159 1.603320 0.714683 0.890392 0.578850 -1.101463 -0.388740 -0.788269 1.675989 -1.250322 0.907052 0.001953 0.442365 0.353310 -1.500758 -0.395304 -1.172528 -0.093295 -0.015271 -1.031035 0.089395 -1.458574 0.348204 -0.222520 -0.973603 0.734402 -0.142201 1.405364 0.339645 -0.023159 -0.336777 -1.655775 0.347019 0.188054 1.010318 1.177815 -0.387939 -0.082706 0.122318 -1.040310 -1.176000 0.830171 0.625433 0.536330 0.036371 -0.063292 -0.601797 0.022413 -0.438360 0.306719 1.123145 -0.936716 0.262850 -0.792269 -0.375693 -1.149738 -1.240894 0.329068 -1.009270 0.905769 0.777142 -0.736536 -0.075787 0.266949 0.269231 -0.669264 -1.498066 0.147483 -0.682279 0.822742 2.139229 -0.580785 -0.538573 -0.359713 -0.614638 -0.286080 1.505988 0.352005 0.376496 1.724856 2.041392 0.472933 -1.359266 -0.962213 0.445344 1.031250 1.402841 1.043355 -1.879878 -0.912243 0.023323 -0.238267 -2.679965 0.114064 0.189859 1.326302 0.075716 -1.444621 0.751391 -0.929293 1.517960 0.909555 0.668461 0.414123 -0.037891 -1.431697 1.667935 2.839375 -0.428587 1.084734 -1.048660 -1.041044 1.546099 -1.034451 0.804018 0.445560 -0.301375 0.079086 -0.885053 0.006712 1.505005 0.295195 0.708082 0.850837 0.581824 -0.625486 -2.411110 -2.212948 0.307170 1.773702 0.085211 2.710572 -1.683317 -0.900808 -0.387596 2.143659 -0.304251 -0.540611 0.422111 -1.072019 1.119999 -2.018133 -2.156360 2.675323 2.512674 0.539087 0.055559 1.551688 1.113499 -1.042386 -0.819770 -0.911429 0.681154 0.623519 -1.023560 -0.214817 0.013860 -1.553114 -0.810832 0.324443 0.693244 0.908507 -0.592138 -0.386804 -0.006282 -1.495094 -1.499733 0.963451 -1.373522 -0.236198 0.368420 -0.063269 -0.087151 0.861560 -0.564657 -0.382520 0.433416 -0.806762 0.409153 0.760675 1.169936 0.295391 2.026964 1.607759 -0.191974 1.708679 0.786261 -0.681261 3.158720 -0.653592 0.560596 0.600783 1.069149 0.116793 0.744733 0.891432 -0.903714 -0.583506 -1.934116 0.402095 0.208883 1.077610 -1.553609 -1.245365 -2.287706 -0.816473 0.756377 1.345347 -0.171948 3.011063 -0.296821 0.241547 -3.090768 -0.178749 1.264932 -0.106935 1.249173 0.741280 -1.157957 -2.311524 -0.609556 -1.119312 -0.441312 -0.743709 -1.121228 -1.142758 -0.800323 1.221461 -0.735024 0.556904 1.883306 -0.130096 0.600957 -0.869459 0.045955 -0.700020 -0.630859 0.766179 0.166429 -1.601532 1.814993 -0.120286 3.798505 -0.466320 1.279643 -1.056912 0.618420 -0.216762 -1.077531 -0.424275 2.157661 1.121436 0.448099 0.041081 0.205848 -0.655742 1.335465 -PE-benchmarks/Iterative_QuickSort.cpp__main = 0.075494 0.370839 1.538490 0.004566 -0.739878 -1.731847 -0.561266 -2.609323 0.893483 0.400923 1.314258 -0.110982 0.850220 -0.141462 0.171980 0.775244 0.762338 -0.755976 0.558791 -0.746755 -0.344435 1.644771 -0.084733 0.363374 0.197814 -1.939408 0.806079 0.479267 0.868081 0.965856 0.541680 -0.215883 -0.438433 0.560074 0.010761 0.567532 0.659598 0.338343 -0.990116 0.546161 -0.349310 0.021102 0.982046 -0.059015 1.228643 0.457576 0.725343 0.680343 -0.287826 -0.503761 -0.715988 1.203259 -0.737933 0.380514 -0.179161 -0.427552 -0.005209 -0.541896 -0.386293 0.013561 -0.497340 -0.349812 -0.715862 0.362948 -0.915545 0.465234 -0.695328 -0.492292 -0.084229 0.199286 0.919357 0.428577 0.200211 0.505138 -1.911477 0.200435 0.067648 0.584467 0.661843 -0.592150 -0.074521 0.061864 -0.925535 -1.052774 1.016218 1.351248 0.363409 -0.132953 -0.754107 0.066198 -0.639315 -0.257299 0.442458 0.684159 -0.738431 0.010512 -0.383616 -0.342659 -0.965506 -1.584925 0.284131 -0.552129 0.568183 -0.109776 0.307169 -0.290634 -0.458012 0.185640 -0.743772 -0.900228 0.394038 -0.481568 0.177091 1.687612 -0.524860 -0.126675 -0.846527 -0.337486 -0.097065 0.887622 0.419014 0.316097 1.081274 1.284826 0.369575 -0.835106 -0.911163 0.471216 0.868180 0.619452 0.723766 -1.179637 -0.752171 0.229575 -0.634408 -1.611978 -0.443910 0.460147 0.895777 -0.524565 -0.223763 0.174281 -0.658014 1.059878 1.013817 0.164223 0.269066 0.013229 -0.919450 1.049505 1.841047 -0.365128 0.967316 -0.959550 0.063847 0.810017 -0.696820 0.455696 0.422435 -0.111390 -0.745447 -0.391546 -0.104626 0.791161 0.638671 0.602293 0.199183 0.605758 -0.558065 -1.196735 -1.531825 -0.008677 1.437450 -0.224029 1.345718 -1.106798 -0.648405 -0.096070 1.096957 0.234937 -0.730463 0.557465 -0.913215 0.606960 -1.346931 -1.240947 1.971291 1.814357 0.891249 -0.065085 0.699676 1.098177 -1.670613 -0.716618 -0.319786 0.736471 -0.313531 -2.118060 -0.680013 0.279584 -1.236911 -0.589977 -0.275242 0.715561 0.610166 0.605259 0.698416 -0.018498 -0.813505 -0.643052 0.854360 -0.497491 -0.656020 0.228099 0.009067 0.106980 0.485813 -0.545414 0.389415 0.856509 -0.891005 0.262738 0.752004 0.601231 0.109366 1.601970 1.266615 0.024005 1.127815 -0.061126 -0.591407 1.041903 -0.069014 0.511120 0.074068 0.167879 -0.072890 0.250134 0.774751 -0.516973 -1.142193 -1.134694 -0.008705 0.258665 0.848696 0.407592 -1.284748 -1.556505 -0.100509 0.404764 1.599386 0.018715 1.706440 -0.348273 0.574307 -1.823077 0.230889 0.244748 -0.006379 0.581088 0.354101 -0.626492 -0.364775 -0.253641 -1.250293 -1.424929 -0.304969 -0.860247 -0.760118 -0.839621 0.879674 -0.656142 -0.271974 0.786199 0.049026 0.961462 -0.066535 -0.139220 -0.935391 0.326985 1.269908 -0.118880 -0.860420 0.960962 0.040591 2.838522 -0.170184 0.553973 -0.234055 0.251973 0.005792 -0.868769 -0.253763 1.457915 0.947728 0.137796 -0.058109 -0.328323 0.253065 0.701593 -PE-benchmarks/Iterative_QuickSort.cpp___GLOBAL__sub_I_Iterative_QuickSort.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = -5.832006 1.673985 26.260861 17.312657 -11.984131 -16.685130 -9.062237 -21.421870 13.794587 -0.981813 15.456231 4.583157 3.451054 -5.502064 2.212712 -5.038068 1.850747 -7.010007 -1.138980 -6.259938 -0.056106 17.542363 13.183306 -22.559838 1.921854 -27.842674 13.585003 10.578691 10.609188 15.833156 -0.682510 -3.207631 -4.464210 13.583668 -7.143911 -2.038408 3.609942 0.785911 -8.668718 -2.084902 9.071429 13.440082 13.150405 -0.663247 15.893743 3.184815 11.361642 3.471140 -10.945007 -2.251415 -11.331307 21.102168 -13.749324 9.320070 2.139731 10.787677 1.542462 -17.516691 -6.744158 -21.188496 0.370457 6.383671 -7.768418 -0.810715 -12.937276 4.313426 -0.040496 -5.749653 9.201938 0.285416 15.179641 5.042591 4.272410 -6.113605 -12.177428 5.353688 -2.821750 12.539359 10.158517 -5.192102 -4.715118 3.161768 -4.074510 -8.319260 3.210373 0.546334 1.156148 -1.953960 6.138630 -4.559402 -1.099510 -5.102992 -5.528990 9.324694 -11.854404 6.596090 -4.401891 -1.410037 -6.242809 -1.964962 -0.650115 -11.658645 5.846567 12.456104 -4.454496 0.094892 -0.272718 3.034039 -7.655733 -13.597442 3.103376 -0.639282 1.939907 16.003569 -9.105876 -1.184354 2.578430 -0.883877 -3.166134 16.815798 -1.647070 8.402733 12.687024 21.502813 2.049444 -10.511696 -2.454624 4.157952 13.864611 15.032324 11.802948 -16.360803 -8.510452 -1.741458 3.634568 -23.557425 6.134541 6.343951 13.802474 9.062478 -21.430555 3.666805 -7.159931 20.538393 8.572627 7.903474 4.263194 -1.037751 -13.939556 18.299190 31.923773 -5.628482 11.670771 -8.512342 -8.749533 17.570109 -15.025748 10.790090 1.913097 0.950025 7.024362 -11.430364 -4.526436 15.056438 7.435536 7.878263 10.454487 3.432674 0.806952 -28.301883 -19.306776 -1.945171 11.293648 -1.458640 26.992789 -12.699588 -9.693487 -7.772670 18.228674 -5.071665 -4.746024 1.017181 -9.359880 9.149747 -23.721809 -20.280997 27.633772 27.716883 1.562699 3.539509 18.128387 13.530984 -5.042366 -5.718535 -6.334795 6.203161 5.814300 -1.323780 1.257599 -1.429044 -14.481706 -10.973335 5.109849 4.378565 8.118838 -7.942633 -10.436416 8.257214 -18.812211 -11.745816 6.196345 -18.160983 -6.608030 3.323403 -0.136439 1.170830 6.257480 -4.749207 -4.160063 8.096104 -9.128587 0.039489 6.468904 14.631323 6.336525 13.322861 14.581025 3.968525 17.521564 12.097548 -8.570792 34.443112 -6.959019 1.983723 5.156342 7.722279 1.382827 7.534785 2.360324 -7.992281 -3.451269 -18.246974 11.280859 -1.314036 12.460336 -20.566249 -14.575478 -14.554455 -9.160653 13.419807 7.018458 -3.086730 31.024007 -3.012025 -1.121400 -34.418464 -3.571122 16.162446 1.866733 10.872468 9.926184 -10.195534 -29.299305 -5.950023 -4.765178 6.927986 -8.474807 -13.769996 -9.314796 -9.440500 16.338209 -9.370752 8.955670 20.429044 -1.581180 8.843299 -5.112827 -1.364448 -5.777549 -7.645029 0.358727 7.074425 -15.328762 20.296874 -5.002082 33.981215 -9.843956 11.566447 -14.167390 6.627782 -3.208906 -4.807982 -1.744965 21.379435 11.068661 4.154967 1.900420 0.044269 -11.077501 11.883026 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.162516 0.328757 1.156417 -0.065106 -0.566912 -1.277334 -0.550197 -2.192936 0.726531 0.350507 1.025506 -0.199597 0.600843 -0.069901 -0.004689 0.595435 0.356315 -0.567701 0.476960 -0.516511 -0.573535 1.432131 -0.030501 0.509001 0.125830 -1.547206 0.676557 0.188244 0.808014 0.771849 0.289694 -0.209758 -0.287419 0.450813 0.044812 0.539334 0.354519 0.382071 -0.666540 0.530154 -0.199624 -0.215904 0.704199 -0.053410 0.939735 0.400818 0.375903 0.438849 -0.201892 -0.382195 -0.436995 0.800220 -0.667487 0.243819 -0.164279 -0.405447 -0.119728 -0.314514 -0.328555 0.215680 -0.465459 -0.475776 -0.573741 0.365953 -0.776398 0.412033 -0.746606 -0.401847 -0.095711 0.108970 0.758272 0.419066 0.134703 0.510326 -1.510841 0.207470 0.142506 0.374171 0.480452 -0.424817 0.036135 0.133762 -0.793170 -0.898518 0.878266 1.116114 0.287791 -0.200703 -0.536344 0.013764 -0.399547 -0.135113 0.498149 0.656988 -0.566034 0.034331 -0.535650 -0.263738 -0.740546 -1.550432 0.187942 -0.514977 0.550026 -0.142002 0.084728 -0.250825 -0.064198 0.174164 -0.411449 -0.919310 0.171224 -0.325667 0.272164 1.432151 -0.324830 -0.101743 -0.627751 -0.352325 -0.181289 0.592951 0.523275 0.223979 0.944411 0.957780 0.371579 -0.663473 -0.821734 0.412283 0.550485 0.418369 0.522709 -0.946666 -0.595827 0.199907 -0.386438 -1.364772 -0.465009 0.294966 0.599034 -0.577707 0.070570 0.172687 -0.468170 0.648462 0.805786 0.007608 0.221705 -0.057908 -0.698113 0.844690 1.457561 -0.242467 0.679876 -0.798010 -0.171566 0.807798 -0.634336 0.362825 0.303188 0.007170 -0.607154 -0.410878 0.030462 0.636329 0.226770 0.472749 0.122846 0.446716 -0.534313 -0.865803 -1.136312 0.077741 1.237572 -0.159802 0.916787 -0.861833 -0.423603 0.127496 1.018751 0.406007 -0.478737 0.463981 -0.704621 0.501246 -1.025786 -1.044714 1.403147 1.424107 0.721729 -0.042099 0.466753 0.957145 -1.326473 -0.623466 -0.425320 0.617434 -0.179421 -1.750929 -0.746238 0.155110 -0.875284 -0.356137 -0.230168 0.553320 0.506413 0.481517 0.525897 -0.084085 -0.550582 -0.578792 0.846221 -0.412753 -0.394744 0.140599 0.025212 -0.074827 0.422713 -0.445588 0.362744 0.538424 -0.575872 0.420091 0.677291 0.271703 -0.082144 1.323328 1.028621 -0.188063 0.690246 -0.096883 -0.299098 0.775432 -0.141496 0.401883 0.085965 0.169064 -0.207364 0.244853 0.649148 -0.401924 -0.990282 -0.815649 -0.097860 0.185898 0.532366 0.458129 -1.064010 -1.260171 -0.100256 0.277088 1.228229 0.227535 1.321639 -0.262078 0.530583 -1.348601 0.200309 0.181129 -0.063829 0.708285 0.202892 -0.411132 -0.229077 -0.296366 -0.921696 -1.161152 -0.338139 -0.758394 -0.565006 -0.634810 0.613860 -0.403827 -0.190272 0.441892 0.130600 0.688181 -0.138791 -0.125748 -0.909629 0.319836 1.071025 -0.214346 -0.644760 0.690483 0.103301 2.152045 -0.147117 0.426570 -0.149254 0.154380 -0.018729 -0.722554 -0.135080 1.124082 0.710505 0.137372 -0.211036 -0.232977 0.208189 0.387745 -PE-benchmarks/cut-vertices.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = -0.349264 0.051233 1.930663 0.511415 -0.780114 -2.236520 -0.752641 -2.971027 1.423866 0.587195 1.803073 0.348140 1.075890 -0.527504 0.326070 0.766087 0.418050 -0.850163 0.255646 -0.746646 -0.188339 2.284854 0.680660 -0.292770 0.054993 -2.127612 0.849818 0.742418 1.103698 1.395691 0.345124 -0.259185 -0.326057 0.909654 -0.407342 0.929022 0.235985 0.618315 -0.774651 0.086853 0.077266 0.084801 1.112679 0.054293 2.016668 0.223842 1.296782 0.374900 -0.476706 -0.748864 -1.002915 1.807306 -1.423692 0.560035 -0.501295 0.017605 -0.080619 -0.678618 -0.495862 -1.251489 -0.251308 -0.064185 -1.296461 0.159430 -1.061281 0.601255 -0.485706 -0.609629 -0.240571 -0.072883 1.412217 0.429098 0.075129 0.219324 -2.297219 0.019211 -0.157233 0.531171 1.019790 -0.428016 -0.672859 -0.256087 -0.766973 -1.211046 1.450764 1.020638 0.209819 0.237481 -0.724083 0.196167 -0.821902 -0.179628 0.398763 0.978959 -1.251387 0.269942 0.386667 -0.266943 -0.813819 -1.027803 0.494767 -0.966717 0.560474 0.175899 0.601419 -0.377944 -0.764463 0.104341 -1.327659 -1.399192 0.368618 -0.484015 -0.030738 1.522144 -0.953915 0.200096 -0.299759 -0.223937 -0.009572 1.293232 0.722366 0.551835 1.337889 1.561469 0.482754 -1.267331 -0.848818 0.759691 1.518065 1.066259 0.515910 -1.319188 -0.884489 0.346560 -0.572982 -2.270874 -0.340576 1.247991 1.116674 -0.052407 -0.896227 0.483606 -0.520164 1.361464 1.480348 0.374531 0.325563 0.143709 -1.388583 1.195057 2.740021 -0.445956 1.308426 -0.619104 -0.279403 1.695958 -1.642655 0.785815 0.664104 -0.138952 -0.483411 -0.650347 -0.286726 1.225560 0.790517 1.063796 0.118925 0.764733 -0.594529 -1.899064 -2.121639 -0.531372 1.927810 0.175806 1.942750 -1.294380 -0.766815 0.009729 1.447677 -0.046461 -0.891436 0.461324 -1.112959 0.999263 -2.372511 -1.679381 2.756292 2.449751 1.319894 0.234215 1.329413 1.604245 -1.265793 -0.604345 -0.348173 0.831823 0.095220 -1.772332 -0.383137 -0.021074 -1.757350 -1.042572 -0.333641 0.604327 -0.127255 0.502130 0.668406 0.239361 -0.836678 -0.582698 0.521497 -0.965199 -0.770560 -0.135518 0.163195 -0.046168 0.311921 -0.762558 0.537265 0.992443 -1.159229 0.442638 0.891708 0.590634 0.684219 2.022993 1.834749 -0.395776 1.502736 -0.024101 -0.536878 1.706590 -0.320637 0.465582 0.276007 0.749571 0.278524 0.401835 0.728052 -0.763461 -0.813682 -1.442574 0.146275 0.755577 1.253604 0.090982 -1.659717 -1.771189 -0.265102 0.745767 1.742628 -0.354781 2.469104 -0.580854 0.868714 -2.901125 0.285930 0.657946 -0.186133 0.749189 0.581262 -0.710141 -1.376563 -0.597395 -0.883292 -1.239941 -0.445995 -1.075448 -0.718147 -1.287477 1.060933 -1.488627 -0.002970 0.756464 -0.034297 1.213557 -0.410228 0.028837 -1.067142 0.432947 1.048866 0.190322 -1.319629 1.283340 -0.066938 3.594870 -0.667179 1.196174 -0.591677 1.103625 -0.571495 -0.911469 -0.208344 2.012018 1.526904 0.104010 -0.028495 -0.080697 -0.008078 0.787765 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = -5.634069 -0.961948 17.974032 10.877117 -8.321012 -14.955281 -7.286691 -20.409200 12.969428 2.776767 13.489941 4.844470 5.750895 -5.637671 2.033804 0.289339 2.034266 -6.937001 0.111293 -5.228392 1.225168 19.094770 10.195517 -12.477018 -0.078491 -20.152223 8.333369 6.434797 9.264636 12.566696 0.660271 -2.277123 -3.179658 9.253945 -5.234806 3.930389 1.510396 3.296985 -6.420840 -2.228778 4.961519 6.347250 9.563634 -0.730844 16.524881 -0.015784 10.977173 1.785487 -6.894998 -4.572720 -8.180587 15.880842 -12.148631 6.513769 -0.556377 5.157461 -0.610094 -9.659918 -5.472814 -16.126048 -0.367916 2.879506 -8.868916 0.045557 -9.242094 4.851095 -1.134038 -3.959772 2.272395 -1.212575 12.514046 3.896042 2.787995 -2.975839 -14.809671 2.071719 -3.038413 6.673858 8.039877 -1.958599 -6.232742 -0.741792 -3.924708 -8.078829 6.448835 4.338710 -0.584231 0.588287 0.084369 -0.217311 -3.884858 -3.033558 -1.379947 7.881159 -11.309563 4.052350 1.664668 -1.124359 -3.983286 -2.521923 1.769747 -9.263044 4.367851 6.268082 1.057372 -1.460984 -2.564392 1.099479 -9.324097 -11.346215 3.270506 -1.144225 0.323756 12.084985 -7.913044 1.401673 0.530882 -0.598046 -1.484005 12.342609 2.285209 6.744385 10.456169 15.203260 3.169474 -10.025863 -3.887175 6.375757 12.960898 10.181360 6.052418 -11.575716 -6.836038 0.954051 0.526280 -18.160428 0.353812 9.640538 10.446921 4.258368 -12.420000 2.721206 -3.858911 15.264153 9.907768 4.050698 2.771468 0.647953 -12.009094 12.345071 25.470749 -3.195596 9.526144 -5.288696 -5.033875 16.311856 -14.646271 8.762556 3.320609 1.000505 0.698251 -7.985387 -2.658435 11.004131 5.534348 8.171710 3.272648 4.717981 -1.329637 -20.210571 -17.408501 -4.322049 12.439300 2.025981 19.567379 -10.023640 -7.131856 -2.854685 12.263637 -1.163492 -5.784099 2.523150 -8.811711 8.094663 -21.297363 -15.376343 23.533422 22.675785 6.535771 3.079304 14.251378 12.230631 -5.832140 -4.701045 -3.848826 6.345045 3.458581 -5.586670 0.532902 -0.652602 -13.412868 -10.664826 0.779655 3.612968 1.977893 -1.693001 -1.666115 5.226752 -10.315308 -6.829831 4.584542 -11.156618 -6.389959 -0.251387 1.470288 0.130237 3.454647 -4.955239 1.242104 7.026430 -7.663779 2.156556 6.348782 7.224963 5.676512 11.797979 14.742329 -0.731860 13.586307 4.577462 -5.221802 22.401985 -4.611201 2.147733 3.237302 5.633629 2.394671 4.200671 2.748437 -6.355807 -2.988463 -12.337476 6.368081 2.721231 11.124635 -11.175459 -14.285934 -12.126800 -4.397088 8.752546 8.360172 -2.878456 23.319159 -5.190439 3.510805 -28.498676 0.016188 10.702194 0.579513 7.657651 6.308432 -6.541869 -19.269718 -5.004592 -4.223712 -0.505317 -5.852640 -11.030171 -6.266899 -9.730246 11.846968 -10.954457 3.871249 11.967497 -1.500384 9.580138 -4.484958 -0.244620 -7.053179 -1.682425 1.554525 4.425173 -11.777610 13.734804 -3.084326 28.155076 -8.168223 9.758288 -8.049294 9.950233 -5.955191 -6.893928 -0.720749 17.028945 10.990973 1.512444 0.356855 -0.771522 -5.399632 7.109857 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -2.157593 0.822334 13.857201 7.141450 -7.340993 -9.617243 -5.205101 -16.452398 8.557771 1.119729 9.968862 2.262928 3.094727 -3.633150 1.292748 0.675193 1.392864 -4.681544 0.553551 -4.041597 -1.974990 10.712947 6.688762 -7.936614 1.559271 -14.687944 6.703520 4.223757 7.153107 7.424294 0.986550 -1.846313 -2.689214 7.084708 -2.160979 1.399712 1.852169 1.539405 -5.982035 0.015443 3.219671 3.492207 7.205326 -0.052521 10.993028 0.446519 6.365956 2.391433 -5.762170 -1.268185 -6.017991 12.776657 -8.213808 4.738134 1.187582 3.299559 -0.652467 -8.362269 -4.197006 -8.816565 -1.559554 0.324247 -4.913653 0.892300 -6.991772 3.310169 -1.988599 -3.034046 3.170348 1.302477 9.035265 3.431554 2.139552 -0.272823 -9.197126 2.385160 -0.223982 5.589215 6.245062 -2.690051 -1.267261 0.836375 -3.211235 -6.159101 5.406056 3.056690 0.550583 -1.567444 1.269278 -1.394761 -1.366932 -3.318543 -0.955425 5.990468 -8.794582 3.102518 -1.909447 -1.810278 -4.491606 -5.349488 0.478128 -6.696432 4.442579 4.428485 -1.375470 -0.119889 -0.286132 2.469931 -4.938901 -8.405481 1.204419 -0.655904 1.620034 10.701318 -4.801715 -0.698662 -0.264940 -0.811913 -2.321477 7.899653 1.502310 4.984705 9.115586 12.342553 1.908959 -5.621941 -2.825490 3.346505 7.520728 8.126699 5.655748 -9.563651 -5.151088 1.209941 1.356916 -13.575618 0.236180 4.043880 7.422004 2.643486 -8.440366 0.203884 -3.007872 10.511395 6.003054 2.957604 2.051879 -0.283465 -7.464801 10.191154 17.412434 -2.878999 6.477614 -4.491836 -3.570962 9.180422 -9.710604 5.360758 1.862169 0.313290 1.129009 -6.315675 -2.703962 7.860005 3.918574 3.493726 2.851628 3.348490 -2.146242 -14.321541 -11.292946 -1.169563 7.912206 -0.692031 13.697019 -7.217910 -5.747795 -3.021816 10.358613 0.061227 -3.329191 2.288479 -6.732137 5.587143 -11.915868 -11.152225 15.724214 15.659694 4.227940 1.255082 9.383097 8.643523 -7.144351 -4.856868 -3.666999 3.951987 2.936654 -5.912375 -2.418318 -0.281382 -9.325011 -5.914768 1.207643 3.207904 4.560593 -1.136110 -1.639445 4.467502 -8.896412 -4.883518 4.995809 -8.344481 -4.597713 0.907003 0.285574 1.022049 3.892994 -3.605905 -0.329089 4.007205 -5.835682 1.301906 4.812263 7.626113 2.176522 9.824050 9.858463 1.100208 9.423730 4.128865 -4.818442 14.733850 -3.070309 1.849215 2.369089 2.008035 -0.068032 3.016712 3.230674 -4.850277 -4.209406 -9.384760 3.964215 -0.025536 7.456129 -7.096813 -9.350238 -9.362186 -4.303867 6.928394 5.150582 -0.277818 16.409247 -2.500663 0.647791 -18.656086 -1.009709 7.102868 0.416918 7.173307 4.567249 -5.698374 -12.765813 -3.793323 -4.579946 -0.491806 -4.453672 -6.720716 -5.462545 -6.192038 10.281458 -5.330795 3.228966 9.379622 -0.544920 6.478648 -2.944636 -0.877215 -5.090802 -1.123854 3.072112 2.164112 -8.549648 10.543271 -1.715356 21.613680 -4.950258 5.512811 -6.815804 2.915772 -1.777503 -2.748819 -0.685758 11.849341 7.716821 2.583152 -0.223228 -0.513265 -4.969082 5.818372 -PE-benchmarks/cut-vertices.cpp__main = 3.542630 1.941898 3.780778 -0.810156 -2.269209 -5.321384 -0.981038 -8.924477 3.299325 0.449404 1.740979 0.039064 1.540074 -0.260221 -0.159087 4.578532 2.234052 -0.055987 0.632265 -2.567308 -0.676072 4.727272 -2.228505 2.133342 1.210624 -5.499556 -0.402216 1.943005 5.072474 0.774399 1.917312 -1.231938 -1.654232 0.895931 -0.150986 0.771067 1.457101 -0.651813 -6.808643 2.169935 -2.886294 0.302067 3.016701 -0.391279 3.096719 -0.778993 2.626431 2.786922 0.958983 -0.153976 -2.440979 6.016443 0.867785 1.675605 0.123952 -1.631457 -2.189540 -0.872908 -0.491423 5.300242 -2.312919 -0.119159 -1.664611 0.787530 -2.370404 0.407064 -2.385962 -1.598838 -0.403553 0.177394 2.036132 0.125599 -0.573769 -0.035181 -7.501756 -0.334229 0.098125 2.479757 1.589074 -0.211728 2.334549 -0.215539 -2.458230 -2.080668 2.457257 5.808716 0.004732 -0.371391 -3.889644 -1.769783 -1.995934 -1.381846 2.526847 0.509419 -4.368921 -0.138550 -3.962741 -1.226486 -3.040946 -5.435814 1.201599 0.217272 1.955779 -5.279518 2.944548 0.506074 2.068444 0.273640 0.216238 -1.134332 0.370354 0.833903 0.812883 7.618409 0.245541 -1.647602 -2.862904 -0.971796 -4.418864 1.448595 1.560655 0.139235 2.716208 3.027839 2.000792 -1.679399 -2.986916 1.751182 0.629570 2.185268 2.300995 -2.008514 -1.487703 0.843017 -0.631510 -4.922713 -1.174246 0.694963 2.581307 -1.991582 3.469617 -3.226490 -1.520764 2.784254 0.494651 -1.999542 1.403996 -0.753820 -1.823610 2.515538 5.342759 -0.196793 1.779539 -4.090573 1.629578 -0.236922 -1.016302 1.237473 -0.035724 -0.990177 -2.113072 0.240700 0.156043 1.296532 0.039074 -0.665452 -0.283916 1.786932 -3.642810 -2.437616 -4.134771 -0.050088 1.670639 -1.523842 1.810706 -1.780961 -2.693313 -1.566339 2.366838 0.773065 -0.823022 3.677603 -4.899312 1.659530 0.053782 -1.975885 4.638552 6.983154 2.338031 -1.527630 2.230902 2.421844 -6.996249 -3.367445 0.004393 0.671655 0.375538 -8.974830 -2.790819 0.619089 -2.865821 -0.702166 -0.273476 1.975174 1.343911 4.770655 5.460506 -0.755153 -2.390393 -2.819371 3.926570 -0.185850 0.461143 1.514049 0.348571 -1.030300 2.693646 -2.823770 0.420751 2.981252 -1.515442 2.231632 1.229710 1.031032 -1.208295 2.707823 2.455169 1.626212 7.394764 -0.440670 -2.820099 2.139669 -0.127280 2.377198 -0.224658 -2.019887 -2.611361 0.955230 0.323575 -1.480666 -3.009811 -1.881193 -1.328583 -0.495197 2.070099 4.215888 -4.239830 -3.100240 -0.794022 -0.232078 2.228034 0.873205 2.868419 -2.705274 2.171912 -5.227570 1.125923 0.031122 0.488170 2.207151 0.415383 -2.037474 0.511901 0.515089 -3.973227 -5.991197 -0.473505 -3.607533 -2.260082 -2.957798 4.040876 -1.630454 -1.202481 2.534539 -0.538392 3.434634 -3.405912 -0.058054 -2.142087 0.884037 4.767148 -0.930355 -2.294793 0.141891 0.180793 7.911931 0.993893 1.428940 0.126705 -1.203794 0.643032 -4.138785 -1.338301 3.233955 1.999858 0.661688 -1.722731 -2.083536 0.717882 0.718238 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/cut-vertices.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/cut-vertices.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/cut-vertices.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/cut-vertices.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/cut-vertices.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/cut-vertices.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/cut-vertices.cpp___GLOBAL__sub_I_cut_vertices.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/program-wish-womens-day.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/program-wish-womens-day.cpp__main = -2.122245 3.842075 16.980952 12.240192 -9.525612 -9.476174 -6.389920 -15.544903 7.335891 -1.641234 8.121851 -0.933814 1.026889 -6.020010 -0.592942 -4.941244 1.108037 -3.554935 0.884965 -5.045830 -2.199283 9.560767 3.913582 -13.618755 1.486612 -19.062190 11.062614 8.383590 6.968412 8.122968 -0.179503 -2.712917 -4.664333 8.599299 -4.339483 -2.814421 3.228476 0.043183 -7.059244 1.185956 4.714899 11.007232 8.419383 -2.278615 7.342785 3.987085 6.487236 4.397505 -9.138347 0.543354 -3.925923 12.599781 -5.458705 6.065385 5.266642 3.735429 1.683460 -12.540550 -4.455231 -7.881604 -0.316705 2.128285 -4.426033 0.189748 -9.356297 1.228353 -0.052914 -4.160389 8.347909 2.003004 6.702000 3.067192 1.443006 -5.065353 -5.950994 5.068336 1.494857 8.810116 5.615619 -3.633544 2.814842 2.949207 -4.585160 -6.071102 0.648819 2.462943 2.872521 -2.279234 3.990600 -5.514183 2.126897 -4.967308 -2.551240 5.017840 -5.929177 2.112311 -8.486389 -2.095344 -7.711854 -3.975270 -0.492105 -5.961012 5.428160 7.391648 -6.632872 0.188055 3.260171 2.396330 -2.694357 -6.201312 -0.245865 -2.335183 7.292288 14.376622 -3.457370 -3.175197 -2.557879 -3.039270 -3.548853 9.513228 -2.234240 4.260333 9.752409 15.173160 2.153065 -7.010730 -3.930938 1.415248 5.924632 9.698844 8.527114 -13.600173 -5.474791 -2.047345 2.857338 -14.459714 3.208055 -1.876944 7.995581 3.269832 -11.005145 2.875886 -5.559477 14.185865 1.677476 2.287251 2.266434 -1.657469 -8.289297 13.260466 18.628222 -3.518774 5.400302 -8.313627 -7.181803 7.357795 -4.231495 5.888100 2.128561 -1.086487 3.761780 -6.296856 -0.329714 9.250644 2.859128 2.648210 7.682329 3.313048 0.495007 -16.847079 -12.748503 4.314855 4.784037 -3.320784 19.028124 -8.647055 -8.473432 -6.778868 12.516034 -2.004194 -1.234106 1.175401 -7.672649 5.794321 -7.266139 -13.134162 15.881220 17.179124 -1.015089 0.112899 11.219532 6.035174 -6.075151 -5.204894 -4.158797 3.664073 3.186039 -2.805174 -0.278433 1.091241 -9.112383 -5.005637 4.264876 3.726084 8.114467 -6.117674 -7.546435 2.673159 -13.174891 -10.426255 6.624411 -9.553446 -0.684892 3.960849 -0.783392 1.495307 8.355786 -4.235769 -4.272891 1.822809 -4.574075 0.278223 3.239768 10.371300 1.604541 8.123186 6.978848 4.487917 14.469512 8.314575 -5.723399 22.960383 -2.728759 1.627805 4.526056 3.069766 -0.355613 5.590020 2.134667 -5.632408 -1.128959 -12.612146 6.393694 -2.284346 6.137456 -15.607295 -7.187861 -11.930167 -6.761647 6.886244 2.062128 -0.054317 18.126767 -0.508216 -2.343653 -19.835093 -2.743739 7.759374 1.605287 8.021585 5.199807 -7.999798 -17.194676 -2.702462 -5.682591 1.451952 -6.763583 -7.517906 -7.642758 -3.167050 12.024802 -1.503871 5.880651 15.326935 1.094056 1.553376 -3.223808 -0.420130 -2.606216 -7.592005 1.700092 3.033145 -10.219053 11.523350 -2.857143 22.721179 -4.151376 6.419484 -9.310797 1.250194 1.070238 -5.701285 -1.646019 13.427322 3.555830 4.202247 0.159614 1.383600 -8.504219 10.428203 -PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.052328 0.273163 0.361011 0.269365 -0.117769 -0.388716 -0.136691 -0.731663 0.149583 0.163269 0.126724 -0.130292 0.399422 -0.252726 -0.029634 -0.106522 -0.134233 -0.175001 0.264602 -0.289542 -0.191089 0.500772 -0.095247 -0.010471 -0.010732 -0.587415 0.411437 0.208729 0.308588 0.420631 -0.121716 -0.229390 -0.214315 0.233661 -0.129848 0.036278 -0.094482 0.148292 -0.215961 0.271468 -0.025244 -0.080666 0.301531 0.245664 0.121844 0.350968 0.089323 0.215922 -0.072869 0.121281 -0.158896 0.217851 -0.172934 0.208787 0.030717 -0.179333 -0.044144 -0.113074 -0.114146 -0.168209 -0.018822 -0.141148 -0.169967 0.034934 -0.392999 -0.023335 -0.270146 -0.229460 -0.134630 0.148760 0.053022 0.309645 -0.018763 -0.203154 -0.753089 0.039224 0.059580 0.146201 0.070455 -0.137093 -0.009805 -0.011114 -0.461829 -0.526139 0.432691 0.260992 0.066948 0.005291 0.028999 -0.350617 0.107470 0.049625 0.210579 0.097019 -0.109686 0.180022 -0.342483 -0.068679 -0.235380 -0.377415 0.036433 -0.079433 0.159660 -0.001287 0.254903 -0.139850 0.039227 0.212814 -0.308673 -0.292453 0.005245 -0.114138 0.034263 0.500157 -0.057438 -0.129332 -0.153774 -0.256125 0.023137 0.287645 0.117765 0.049739 0.086248 0.560604 0.190280 -0.307605 -0.143132 0.153914 0.144279 0.312491 0.188183 -0.523949 -0.167924 0.122285 -0.077914 -0.557855 -0.023497 0.160984 0.109493 -0.367178 -0.096026 0.261563 -0.271679 0.360569 0.237821 -0.040269 0.221597 -0.101644 -0.330133 0.309308 0.762395 -0.299998 0.292174 -0.500130 -0.175298 0.320904 -0.071342 0.124387 -0.094721 -0.230293 0.050218 -0.059804 0.127980 0.369102 0.139617 0.037236 0.068245 0.291796 -0.239329 -0.353381 -0.566725 0.004058 0.489980 -0.059933 0.724409 -0.245919 -0.440889 -0.201024 0.417294 0.156954 0.067850 0.191588 -0.397148 0.232785 -0.306410 -0.452538 0.787116 0.400703 0.362609 -0.250159 0.112849 0.292296 -0.190519 -0.506021 -0.044491 0.153969 -0.038164 -0.473315 -0.230109 -0.010036 -0.666109 -0.084390 0.088249 0.085274 -0.011264 0.041799 0.040070 -0.232326 -0.287808 -0.375821 0.436460 -0.438912 0.132278 0.088643 -0.137919 -0.066943 0.367516 -0.250472 0.066871 0.048875 -0.213728 0.229603 0.052997 0.017646 -0.026454 0.372261 0.455324 -0.016375 0.468115 0.123716 -0.152242 0.701961 -0.077908 -0.100063 0.201243 0.054493 0.052991 0.244862 0.289231 -0.142497 0.018962 -0.521120 0.029803 0.136652 0.162627 -0.103936 -0.164092 -0.603215 0.026944 0.024145 0.366215 -0.011394 0.577250 -0.041097 0.197865 -0.586133 0.091832 0.055435 -0.065488 0.226843 0.100241 -0.147214 -0.213284 0.045279 -0.373280 -0.273898 -0.282796 -0.180948 -0.207336 -0.081622 0.216141 -0.057852 0.080857 0.170880 0.118069 0.042917 -0.230261 0.000859 -0.381244 0.068775 0.342221 -0.078039 -0.343126 0.169723 -0.046591 0.820957 -0.076149 0.332363 -0.335642 0.150413 0.023160 -0.480769 -0.036314 0.606534 0.052163 0.113864 0.001990 0.261865 -0.049132 0.262144 -PE-benchmarks/program-wish-womens-day.cpp___GLOBAL__sub_I_program_wish_womens_day.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/naive-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -0.944819 1.208069 7.431169 4.944806 -3.569800 -4.979482 -2.776386 -7.777933 4.092861 0.036480 4.426476 0.298990 0.921284 -1.306066 -0.022849 -1.415389 0.426650 -1.802569 0.128903 -1.858182 -1.016051 5.236066 2.561578 -5.546075 0.408205 -7.973326 4.478296 2.999358 3.204062 3.885851 -0.015341 -1.087106 -1.367279 4.051965 -2.067692 -0.527412 1.368712 0.707032 -2.598885 -0.345473 2.136808 3.840591 4.081888 -0.360045 4.467693 1.571342 2.865943 1.268501 -3.033482 -0.297063 -2.169581 5.293527 -3.537155 2.713592 0.909721 2.030287 0.540844 -5.105345 -1.544675 -4.117413 -0.192418 1.252923 -2.359883 0.117991 -4.106432 0.962032 -0.117363 -2.194317 2.648722 0.055741 4.157231 1.413083 0.716102 -1.700969 -3.911504 1.743910 -0.058070 3.088636 2.859230 -1.595795 -0.316203 1.042962 -2.102244 -2.833090 1.199264 1.486082 0.822902 -0.440173 1.406846 -1.706757 0.237128 -1.745783 -0.635725 3.275817 -2.380835 1.539137 -2.259278 -0.767365 -2.693439 -2.164714 0.125728 -3.224774 2.534676 2.724298 -1.876921 0.254549 1.298761 0.994152 -1.371449 -4.042798 0.599958 -0.796884 2.495856 5.407695 -1.856692 -1.137975 -0.306810 -1.149975 -1.182478 4.360859 0.120816 1.565043 4.406524 5.990730 0.984612 -3.442752 -1.756413 1.061856 2.811482 4.256661 3.332971 -5.319462 -2.321704 -0.451570 0.849068 -7.011755 1.129717 0.774779 3.604919 0.823975 -4.926238 1.377633 -2.194717 5.329109 2.398082 1.953298 1.216301 -0.183602 -3.578921 4.938997 8.366070 -1.168838 2.797926 -3.260159 -2.749935 4.215716 -3.435447 3.008136 0.682574 0.085389 1.287161 -3.185347 -0.209885 4.253995 1.261584 1.789490 2.905147 1.119257 -0.618077 -7.378461 -5.575857 0.589968 3.662238 -0.368401 7.696363 -4.084493 -3.005250 -1.681257 5.233098 -0.645670 -0.972167 0.888998 -2.964008 2.805523 -5.881387 -6.006672 7.017091 7.474917 0.892190 0.135342 4.668432 2.945852 -1.912463 -2.255276 -2.199833 1.934802 1.473203 -1.408951 -0.172118 -0.260801 -3.958760 -2.523573 1.274023 1.572414 3.203107 -2.344903 -2.544537 0.871321 -5.123420 -4.221345 2.500653 -4.384600 -1.185823 1.034491 0.039038 0.071642 2.320830 -1.460427 -1.355843 1.760117 -2.141373 0.622817 2.195809 3.638365 0.637430 4.391628 4.014472 0.605164 5.199156 3.137128 -1.972937 9.624788 -1.845022 1.016088 1.744882 2.207749 -0.106432 2.277324 1.458666 -2.419562 -1.343352 -4.992727 2.542014 -0.326642 3.247468 -5.565445 -3.836877 -5.051710 -2.703796 2.912436 2.336600 -0.233987 8.488255 -0.607057 0.374643 -9.124098 -0.942172 4.042228 0.343297 3.553272 2.487640 -3.430461 -7.109611 -1.521238 -2.332164 0.223393 -2.413678 -3.817671 -3.012903 -2.203102 3.899981 -1.695660 2.104755 5.834255 -0.412944 1.630971 -2.379628 -0.107773 -1.528921 -2.622777 1.344345 0.944557 -4.556428 5.053921 -1.110036 10.183236 -2.210833 3.292770 -3.689326 1.478943 -0.634344 -2.044631 -0.791509 6.111237 2.614610 1.190614 -0.094515 -0.124801 -2.777831 3.462261 -PE-benchmarks/naive-algorithm.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/naive-algorithm.cpp___GLOBAL__sub_I_naive_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/kmp-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -1.925950 1.315447 12.022284 7.745969 -5.426709 -8.012583 -4.341172 -11.470226 6.533427 0.499463 6.980254 1.381424 1.753219 -1.463069 0.530017 -1.414844 0.682822 -3.253615 0.500893 -2.882636 -0.674426 9.278306 5.393366 -9.296902 0.294278 -12.796589 7.017514 4.722383 5.369801 7.125774 -0.114737 -1.583400 -1.590787 6.540497 -3.695218 -0.674923 1.364616 1.555155 -3.975812 -0.115773 3.394422 6.206597 6.070354 -0.399961 7.610361 2.477307 5.560673 1.733553 -4.496183 -0.771338 -4.506434 8.878333 -6.399093 4.352632 0.098681 3.864999 0.184621 -7.686952 -3.074079 -8.327350 -0.039047 2.909802 -4.383624 0.111442 -6.675297 1.902116 -0.454207 -3.386469 3.361456 1.022138 7.093304 2.598115 1.536702 -3.200292 -7.322729 2.601262 -1.081618 5.148310 4.576598 -3.028290 -2.218681 1.709440 -2.841475 -4.684363 1.877758 2.279273 0.602441 -0.961414 2.747130 -2.239000 -0.965019 -2.134353 -1.930021 5.576855 -4.310255 3.478696 -2.557063 -0.568392 -3.538807 -2.079284 -0.023965 -5.682756 3.652543 4.494522 -1.383856 0.071120 0.923252 1.591290 -3.081792 -6.648675 1.061251 -0.906552 2.285388 7.798098 -3.149196 -0.714971 0.561906 -1.081667 -1.412281 7.490061 0.148760 3.048350 6.917657 9.613644 1.181912 -5.466554 -2.133363 2.091315 5.298149 6.975319 5.368591 -8.019270 -4.079278 -1.053345 1.669072 -10.797911 2.452139 2.888046 5.355171 1.130647 -8.115295 2.024985 -3.454848 9.167474 4.832509 3.592908 2.168507 -0.293550 -5.927234 7.982393 15.091482 -2.034834 4.789398 -4.917693 -4.083783 8.456545 -6.610477 5.545159 1.117943 0.583707 1.898627 -5.429296 -1.080927 7.008434 2.824787 3.635313 5.295641 1.578283 -0.080183 -11.890508 -8.703128 -0.497873 6.026401 -0.285907 12.944836 -6.198394 -4.524405 -2.644011 7.333218 -0.564682 -1.719378 1.006683 -4.290802 4.376759 -11.595734 -9.618976 11.804498 12.034440 1.764072 0.606773 8.043367 5.648516 -2.264347 -3.838304 -2.895711 3.530405 1.808352 -1.235654 0.162838 -0.231725 -6.945593 -4.531663 1.757769 2.301429 4.440155 -3.251371 -4.565669 2.335533 -8.634989 -6.067596 3.179362 -7.741903 -3.026177 1.322263 0.309739 -0.092980 2.681076 -2.325419 -1.334585 3.621143 -3.770572 0.789261 3.663671 5.505152 1.742410 6.326597 7.238062 1.138267 7.884957 5.089881 -3.038129 15.741941 -2.700999 1.194042 2.790023 3.432698 -0.140114 3.256739 1.711312 -3.668984 -2.071975 -8.048843 5.185391 0.032848 5.590393 -8.636658 -6.359844 -6.949507 -3.873450 5.506560 4.469457 -0.813699 13.996467 -1.153429 1.208336 -15.488516 -1.035324 6.369697 0.786810 5.439186 4.505606 -5.144640 -11.515545 -2.650415 -2.645228 1.391289 -3.871681 -6.723769 -4.759086 -3.593625 5.328673 -3.901514 3.318023 9.441586 -1.339316 3.608157 -3.529326 -0.444204 -2.668393 -3.552814 1.936567 2.403537 -7.337969 8.252401 -2.501708 16.724812 -4.304597 5.752727 -5.816299 3.034897 -1.517383 -2.725422 -0.942372 10.281674 4.221451 1.823717 0.576991 -0.477406 -3.961087 5.015750 -PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = -1.567674 0.854368 7.190228 5.220804 -4.150589 -6.160324 -2.730902 -6.820446 3.629911 0.012583 4.798098 1.147470 1.430829 -1.064887 0.722139 -1.049662 0.897221 -1.507993 -0.232617 -2.192622 -1.429145 5.415671 3.474939 -5.944429 0.505215 -6.744590 4.689311 3.404797 2.589179 4.677568 0.142566 -0.762565 -1.543521 3.906361 -2.192468 -0.132455 0.165487 1.079249 -2.152153 -0.199647 2.808921 2.593723 4.225603 0.024822 4.495900 1.822866 3.849673 1.219553 -3.465977 -1.077833 -3.324025 5.352968 -4.333994 2.738611 -0.455198 2.450878 0.959884 -4.363813 -1.625757 -5.731851 0.099654 0.892286 -3.342476 -0.178935 -4.235215 1.215161 -0.675753 -2.546807 2.050089 0.168708 4.441477 0.974506 0.212724 -1.775270 -4.386127 0.831478 -0.669118 3.341588 3.151235 -1.362452 -1.592414 0.535613 -2.223782 -2.843789 1.462055 -0.013941 0.878999 -0.231637 0.865290 -1.250328 -0.382476 -0.889105 -0.645518 3.011307 -2.916883 2.069035 -1.104854 -0.571574 -2.679234 -1.588737 0.528930 -3.252273 2.095545 2.975492 -1.451054 -0.419215 -0.483926 0.565570 -2.499895 -4.742570 0.423388 -1.044163 0.840131 4.567547 -2.368289 -0.519086 0.584317 -0.849443 -0.347900 4.780627 0.759303 1.814501 4.162567 5.981121 0.689983 -3.600716 -1.516863 0.778808 3.679577 4.362601 3.257357 -4.369763 -2.920688 -0.256338 0.055984 -7.093466 1.559912 2.417705 3.926860 1.726592 -5.534784 1.830645 -2.537483 5.034291 2.952098 2.976594 1.328410 -0.319693 -4.133027 4.757957 9.013761 -1.557913 3.569963 -2.216203 -2.807898 5.920921 -3.920037 2.753473 1.270113 -0.229517 0.996171 -2.852404 -1.183778 4.461965 2.039731 2.300771 3.569969 1.227030 -0.595191 -7.654284 -5.736046 -0.101743 4.723807 0.492591 7.747102 -4.357859 -2.164644 -1.237454 4.925155 -1.269270 -1.849169 0.326114 -2.342623 2.895732 -7.712166 -5.928210 7.778454 6.948693 0.890897 0.730473 4.783959 3.801742 -1.471704 -2.111477 -2.425688 2.253506 1.298444 -0.487013 0.339395 -0.286758 -4.722174 -2.554186 1.191011 1.729774 2.173542 -2.598929 -2.576658 1.106115 -4.983044 -3.749174 1.563582 -4.877660 -1.599666 0.948230 -0.269338 0.062472 1.276284 -0.973611 -0.908140 1.596340 -2.709973 0.390227 1.919342 3.645298 1.784275 5.230945 4.597715 0.001189 4.470071 2.869243 -2.263622 10.121838 -2.013425 1.147783 1.537037 3.563867 0.525142 1.973831 1.858700 -2.291503 -1.478887 -5.298825 2.448345 0.684297 3.660717 -5.627089 -3.576708 -5.504601 -2.180846 3.282340 3.659069 -1.366291 8.798415 -0.887249 0.696130 -9.531580 -0.510054 4.058016 -0.020072 3.149255 2.626372 -3.053188 -7.160211 -1.846051 -1.844753 1.346576 -2.048974 -3.344223 -2.988936 -1.987400 2.666241 -2.864131 1.918241 5.254356 -1.192682 2.188786 -1.655686 -0.264585 -1.301411 -2.071731 1.559754 1.721595 -4.764068 5.970226 -0.988835 10.655548 -1.846174 3.876751 -3.432878 1.964029 -0.995702 -1.900411 -0.911426 6.391103 3.454487 1.067013 0.822295 0.629204 -1.984656 3.200964 -PE-benchmarks/kmp-algorithm.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/kmp-algorithm.cpp___GLOBAL__sub_I_kmp_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/matrix-chain-multiplication.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = -3.816460 2.066594 18.432363 11.051217 -6.937858 -11.972227 -5.852609 -15.218279 8.339301 0.292369 10.914072 1.662523 2.848250 -2.988302 2.255720 -1.640701 0.369236 -4.733312 1.599021 -3.846613 0.237778 12.759917 10.062596 -13.024379 0.358200 -18.507693 10.255943 7.679839 8.698281 10.377262 -0.259943 -2.558244 -1.714292 9.863776 -5.256254 -0.511601 0.223370 2.172187 -4.853606 1.229621 4.374861 10.278595 6.424332 -0.931341 10.593687 4.598899 10.353558 2.260937 -6.712274 -2.078910 -7.752607 15.261161 -10.901155 5.088388 0.720021 5.816956 -0.112141 -11.036169 -4.721283 -13.834778 0.695717 4.941382 -7.454174 1.114801 -10.894665 3.152399 -2.785195 -3.646373 5.400803 3.565531 10.394581 4.110040 2.030614 -4.025333 -8.712724 4.501934 -2.408658 8.302322 7.052458 -6.226613 -3.776354 3.914766 -2.306582 -6.993406 2.966108 1.098548 1.409820 -3.068264 4.710221 -2.589366 -2.698664 -2.810266 -4.337612 7.605813 -7.452344 5.654152 -3.389092 -0.283399 -5.243580 -1.606823 -0.819070 -9.599309 4.493620 8.366987 -1.035168 -1.690361 -2.712747 1.344188 -5.285785 -10.895312 0.014644 -0.882913 3.176674 11.084989 -6.997038 1.573109 1.026267 0.021481 -1.234869 11.969535 1.396606 5.396985 10.196854 14.424731 0.512566 -7.199598 -2.455103 2.484863 8.875770 10.920432 8.259833 -12.200442 -6.978407 -2.824464 3.407777 -15.432307 5.085794 5.555055 6.495144 4.999346 -13.498791 3.092708 -4.439704 13.430351 7.371324 5.469163 3.066813 -0.886549 -7.746172 12.613748 22.741662 -4.328502 7.222064 -5.237808 -7.056456 14.223976 -11.368061 7.492743 3.519032 1.821077 3.430003 -8.419059 -3.737640 10.627611 5.687562 6.949330 10.340511 1.893764 3.290433 -18.124870 -11.790082 0.483194 7.273865 -2.445180 17.844058 -8.023341 -5.177899 -3.186658 11.173375 -1.150870 -3.231258 -0.912621 -5.470644 5.680053 -16.175692 -13.795667 16.717382 16.983468 0.753953 1.245615 11.507079 11.727920 -4.505287 -3.975113 -4.943035 6.228672 0.151333 -0.898715 0.987730 0.115758 -10.844515 -6.057362 2.143000 3.288050 5.647638 -4.666152 -9.664876 4.893459 -14.188172 -7.507365 3.221208 -11.063702 -4.445939 0.612651 -0.182078 1.007762 3.420503 -4.733329 -1.426127 6.145604 -7.173360 -0.535812 5.521291 9.525266 4.907451 11.040680 8.329725 3.184739 10.833289 8.106627 -4.593859 22.687468 -1.589154 1.195608 3.500944 6.214503 0.180021 5.215712 1.154197 -5.267882 -5.398453 -12.853654 7.785401 0.583681 7.783435 -10.886465 -8.350258 -9.779107 -6.594171 10.643588 6.831891 -1.372696 21.046375 -1.049264 0.531707 -21.358193 -1.758746 8.424228 -0.021314 8.979524 7.117853 -6.956413 -15.798394 -5.450005 -1.713638 3.415294 -5.448424 -9.307748 -6.679440 -5.074515 9.083587 -6.424530 5.214795 11.922299 0.129949 4.827422 -1.128667 -0.722839 -3.757885 -4.225547 2.697198 5.077393 -11.956764 13.356855 -4.104650 23.647501 -7.782875 8.373790 -9.841749 2.718548 -1.169803 -2.007013 -0.807553 15.168345 7.577531 2.656702 1.119313 0.585959 -6.389675 7.608577 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.348033 0.313636 1.341275 -0.081572 -0.594860 -1.417134 -0.588519 -2.814102 1.059476 0.453996 1.183294 -0.182559 0.738896 -0.268190 -0.063547 0.857359 0.400858 -0.637897 0.552727 -0.550906 -0.492767 1.908314 -0.206369 0.702690 0.107030 -1.930022 0.624033 0.206341 1.224388 0.770247 0.382363 -0.306920 -0.295239 0.444582 0.045657 0.679565 0.396440 0.409526 -1.016556 0.455609 -0.368027 -0.318914 0.795381 -0.159574 1.189513 0.044479 0.621215 0.443793 -0.065827 -0.380611 -0.634910 1.204317 -0.666170 0.284697 -0.115367 -0.628565 -0.282880 -0.272610 -0.396486 0.516844 -0.602773 -0.501349 -0.677228 0.388375 -0.846152 0.490252 -0.840931 -0.366949 -0.126507 0.103258 0.890307 0.525815 0.245241 0.523187 -2.041397 0.246395 0.133876 0.377286 0.536724 -0.287758 0.240160 0.066596 -0.873481 -1.008577 1.207322 1.556918 0.195444 -0.253066 -0.791706 0.047092 -0.567542 -0.202759 0.619169 0.696123 -0.923985 0.027101 -0.740946 -0.290671 -0.743530 -1.827307 0.219119 -0.637971 0.617572 -0.355061 0.264861 -0.143452 0.163361 0.173768 -0.424192 -1.050689 0.172908 -0.269621 0.325535 1.857203 -0.370372 -0.160156 -0.790673 -0.305304 -0.457711 0.560478 0.609285 0.357402 1.146796 1.063518 0.591150 -0.806822 -0.973891 0.739196 0.651298 0.520315 0.471687 -1.080322 -0.604556 0.241859 -0.304239 -1.715136 -0.641819 0.421140 0.718907 -0.694407 0.286396 -0.048055 -0.396264 0.881625 0.931752 -0.239623 0.281863 0.070557 -0.773936 0.974181 1.772223 -0.211387 0.716373 -1.043229 -0.058279 0.816090 -0.797340 0.464504 0.247600 0.130407 -0.667534 -0.548570 0.055626 0.731312 0.123666 0.493044 -0.080280 0.582175 -0.716830 -1.082259 -1.431320 0.002883 1.347630 -0.195314 1.039031 -0.929119 -0.643142 0.179039 1.113602 0.500647 -0.522637 0.725220 -1.090260 0.645172 -1.070144 -1.258253 1.702527 1.798173 0.871280 -0.082733 0.649531 1.149547 -1.798898 -0.758483 -0.457345 0.702587 -0.036334 -2.395971 -0.895162 0.173792 -1.058236 -0.516596 -0.245926 0.559107 0.483935 0.805809 0.949831 -0.095904 -0.598631 -0.632223 1.251397 -0.426064 -0.427674 0.040052 0.115611 -0.115083 0.662720 -0.677957 0.498420 0.727494 -0.638867 0.539611 0.764065 0.214556 -0.188656 1.454101 1.335763 -0.150054 1.114332 -0.177969 -0.405158 0.794850 -0.152342 0.377502 0.061672 -0.068933 -0.333481 0.350086 0.643471 -0.525975 -1.174253 -0.938248 -0.180618 0.124142 0.659422 0.754313 -1.322955 -1.354835 -0.193253 0.292081 1.264462 0.377886 1.548545 -0.539976 0.640085 -1.748944 0.237759 0.231611 -0.017362 0.943851 0.177299 -0.468949 -0.168360 -0.325641 -1.023894 -1.565234 -0.417025 -1.065911 -0.695461 -1.038773 1.009944 -0.598168 -0.224114 0.496397 0.201462 0.960755 -0.404543 -0.100658 -1.136490 0.535516 1.164685 -0.217640 -0.777870 0.703044 0.048354 2.646353 -0.276900 0.442699 -0.234706 0.275864 -0.166556 -1.010907 -0.111547 1.308903 0.885629 0.172790 -0.429356 -0.389056 0.108533 0.464517 -PE-benchmarks/matrix-chain-multiplication.cpp___GLOBAL__sub_I_matrix_chain_multiplication.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/snake-ladder.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -2.477239 2.161967 13.996346 7.587120 -8.767666 -11.991055 -5.784017 -16.591767 7.617783 0.769060 9.483993 0.824470 2.223607 -3.691542 0.867562 0.180269 2.428166 -4.128292 0.359976 -4.996332 -3.103590 9.978793 4.219493 -7.578919 1.825616 -15.405260 8.240192 5.315858 5.670813 7.511329 1.993995 -2.338590 -4.157703 7.655838 -1.271772 3.267492 3.536066 1.164923 -5.472826 1.228704 3.285765 5.047610 8.286277 -0.496570 10.806230 3.457759 6.163938 3.531279 -7.878805 -1.907931 -5.513096 11.599968 -7.792781 5.320541 1.625464 3.113105 0.845794 -9.292937 -3.174749 -6.995824 -2.539818 -0.383416 -5.286443 0.711052 -7.757936 2.362788 -1.582636 -3.704604 4.025848 0.728795 8.718098 2.365518 0.800598 0.677331 -7.958012 2.315167 0.324505 6.764160 6.663086 -4.043056 -0.459575 0.908783 -4.332673 -6.383885 4.007396 2.573829 2.545648 -1.018069 0.077395 -1.961238 -1.154559 -3.668166 0.296355 5.770430 -6.781746 0.913388 -3.402159 -2.412491 -6.618056 -6.458735 0.935143 -5.375764 4.533235 4.398813 -2.838548 -1.137087 -0.992928 1.411434 -4.853161 -6.836836 2.078620 -2.188279 3.786284 10.925245 -4.216785 -1.847171 -1.753419 -2.689519 -1.623707 8.490908 2.000257 2.987599 8.953359 12.619243 3.966858 -6.513939 -5.056412 1.239354 7.017952 8.151645 6.440893 -9.718342 -5.508976 0.270636 -0.352409 -13.534853 0.872089 2.199578 8.326320 3.384281 -8.012624 0.961768 -4.619134 10.603938 4.209522 3.484710 2.019501 -0.591206 -8.389589 10.334183 16.392865 -2.540313 6.621627 -5.260367 -3.155965 7.823723 -7.513868 4.540118 3.320807 -1.314104 0.449742 -5.027646 -2.313274 7.868119 3.925268 3.408711 3.977831 4.156814 -2.796369 -14.160057 -11.973113 1.220212 8.990940 -1.303983 13.587290 -8.849189 -5.507847 -3.353262 11.382484 -1.251885 -3.900889 1.924451 -6.341449 5.739619 -10.084996 -11.031518 16.859079 16.777915 3.086448 0.395662 8.846736 8.320517 -8.284209 -4.364113 -4.414754 3.518102 2.047864 -6.599534 -1.888948 0.698277 -8.708301 -5.884125 1.275240 3.944436 4.895248 -2.030274 -2.382991 3.340821 -8.394707 -6.705222 4.490764 -7.402369 -3.306728 2.398017 0.006180 1.448475 4.743483 -3.708337 -1.480639 3.662696 -5.878714 1.606969 4.688440 8.461433 2.863373 10.535957 9.049310 0.990758 11.402413 4.770764 -4.948626 15.836195 -2.590353 3.389825 2.997489 3.588594 1.022460 3.439258 4.017075 -5.099930 -3.921527 -9.958852 3.173835 0.136073 7.228935 -8.011003 -8.812440 -12.296304 -3.990849 5.951226 5.364605 -1.456284 16.324435 -1.338251 0.705416 -18.203366 -1.379296 7.874330 0.123783 6.065739 4.166472 -6.200429 -12.901668 -3.276810 -6.147646 -2.054575 -3.796710 -5.108101 -5.560315 -5.608744 9.422245 -3.672797 2.912978 10.307383 0.102950 4.633504 -2.689846 -0.130687 -4.098598 -3.449081 4.496744 1.710396 -9.188745 10.877188 -0.484745 21.866784 -3.483354 5.557223 -5.780162 2.218500 -0.315835 -4.724584 -1.648901 11.852627 7.141873 2.704433 0.167288 0.553318 -4.434151 7.778044 -PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/snake-ladder.cpp__main = -0.167431 1.220385 4.541224 3.163142 -4.247135 -6.777485 -2.169064 -7.686038 2.728399 0.419034 4.402713 0.157782 2.121066 -1.399172 0.566244 1.762591 2.134535 -0.816149 0.473649 -2.474894 -3.622829 5.323080 1.206752 -1.423542 0.665891 -3.413632 3.105129 2.819558 2.522739 2.654653 1.302347 -0.674920 -1.213014 2.504334 -0.965435 1.375421 -0.504864 1.667480 -3.021893 0.751030 0.702718 -1.580412 4.398716 -0.294427 3.539412 0.956249 4.286176 1.627934 -3.290975 -1.181082 -3.408677 4.908679 -3.373030 1.687073 -0.973729 -0.820393 1.458235 -1.733186 -1.125313 -1.480010 -1.574360 -1.781361 -3.567231 0.336310 -3.432802 1.149484 -2.164503 -2.923488 0.622101 1.173576 3.265567 1.135730 -0.535624 0.509328 -5.333500 0.276870 0.932751 2.328241 2.728140 -0.284998 0.680099 -0.282319 -3.103531 -3.007119 3.710040 0.742299 2.012367 0.114555 -2.305709 -0.418802 -0.758780 -0.213073 1.660142 1.784130 -2.547581 1.011910 -0.952266 -1.385456 -4.091374 -4.915128 0.942516 -1.985369 2.084057 0.374867 -0.567075 -0.502643 -1.858855 0.124688 -2.759009 -4.633729 -0.314963 -2.269632 0.321369 4.958802 -1.974585 -0.743929 -0.957651 -0.812660 -0.687349 2.647750 2.417120 1.134921 3.894306 4.383244 1.117066 -3.176693 -2.496753 -0.046992 2.853268 3.040859 2.429077 -2.391537 -3.064535 0.634379 -1.497733 -6.380660 -0.834862 2.756382 3.002052 0.357689 -1.856250 1.066581 -2.006894 3.321891 2.660549 1.661389 1.128752 -0.180762 -3.113899 3.549398 5.627769 -1.397513 3.511407 -1.615693 -1.662708 4.530372 -2.636511 1.180151 1.738793 -1.444439 -1.433916 -1.438577 -0.844435 3.135819 1.525854 0.694276 1.596723 1.710197 -2.247183 -5.016510 -5.318398 1.355942 5.341607 0.829083 5.220704 -4.071259 -1.987891 0.669512 3.180760 -0.535016 -2.480072 1.221417 -2.778967 2.763881 -6.028946 -5.046706 6.959703 4.368783 1.984619 0.435872 2.894441 3.364135 -4.349707 -2.697363 -2.369271 2.271658 0.839458 -4.906528 -1.653690 0.638313 -4.489169 -1.081130 0.010757 2.131098 1.184033 -0.415314 1.248424 -1.420755 -2.955187 -1.947307 2.185533 -2.687111 -1.069926 0.797587 -0.567496 0.445672 1.698860 -0.815544 0.195816 -0.068488 -3.094990 0.597069 1.027598 3.016082 1.121314 6.706563 5.668040 -1.058545 4.367105 0.595831 -2.270153 5.347185 -1.595280 1.845345 0.545275 2.974492 0.167523 1.000325 3.936055 -1.921000 -2.969930 -4.012788 -0.263092 1.906137 2.711758 -1.768564 -2.710459 -6.443067 -1.010041 1.835622 4.655707 -1.157676 5.955575 -1.710895 1.183959 -6.978692 0.385956 1.316411 -0.303347 3.342228 1.329347 -2.656797 -2.415408 -1.842503 -3.336561 -1.723513 -0.876419 -1.850372 -2.524606 -1.789312 1.713874 -2.904851 0.067866 2.682467 -1.306017 2.495683 -0.662047 -0.163285 -1.635818 0.099474 4.323991 0.277407 -3.354475 4.737624 0.239841 10.568414 0.455698 2.410767 -1.860786 0.707266 0.209431 -2.584716 -1.186003 5.024095 3.940280 0.395514 0.396737 0.964248 0.151880 2.737514 -PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 0.327303 0.665291 2.620940 0.019245 -1.825021 -2.310971 -0.874841 -4.574674 2.012079 0.862025 1.618233 0.324106 1.225924 -1.217365 -0.460149 1.108209 0.895318 -0.704643 0.386916 -1.252237 -1.073506 2.143825 -0.421696 0.420916 0.699467 -3.110421 1.949758 0.015893 1.841919 1.543526 1.008499 -0.294810 -1.215917 1.244566 1.168770 1.475376 1.004240 0.717545 -1.513671 0.715670 -0.143570 -0.852861 1.404746 0.500915 2.500211 0.156528 0.255127 0.840832 -0.722702 -0.532749 -0.484970 1.236042 -1.474623 0.781959 0.063594 -0.387347 -0.601804 -0.862247 -0.064423 0.402941 -0.821824 -1.547832 -1.104546 0.586573 -1.606138 0.432836 -1.356743 -0.818107 -0.722670 -0.421563 1.171114 0.718576 0.216247 1.003459 -3.034315 -0.190534 0.518705 0.607047 1.745072 -0.162620 -0.064457 -0.723464 -1.542922 -1.879572 1.829037 2.010752 0.314000 0.114690 -1.025454 -0.262170 -0.682267 -0.348260 1.345354 1.399793 -2.102071 -0.585976 -1.312594 -0.660110 -0.913273 -3.365967 0.738080 -0.914960 1.062787 -0.724447 -0.638687 -0.211538 0.158468 0.343374 -0.579510 -0.762530 0.424876 -0.900592 0.882899 2.971905 -0.107789 -0.868523 -1.630345 -0.966048 0.024427 1.015778 0.723053 0.172333 2.306881 1.861980 1.425587 -1.522314 -1.525928 1.202835 0.594048 0.902748 0.817368 -1.953570 -0.893858 0.749103 -0.543988 -2.970273 -0.735800 -0.191569 1.104149 -0.759212 0.295981 -0.689827 -0.929455 0.852266 1.273906 -0.029395 0.400885 0.169631 -1.405765 1.275692 2.699296 -0.207782 0.912589 -1.396202 0.087311 1.044262 -1.301548 0.572191 -0.174614 -0.468449 -0.909788 -0.578525 -0.041232 1.410659 -0.375473 0.305080 -0.350440 1.027654 -1.541066 -1.859602 -2.289563 -0.100208 2.904525 0.231334 1.668692 -1.971783 -0.381146 -0.200125 2.109010 1.069209 -0.557173 1.179955 -1.559643 1.362120 -1.245343 -2.088997 2.950229 2.927821 1.406149 -0.369497 0.567413 1.317518 -3.067093 -1.367769 -0.823274 0.314699 -0.022916 -3.294511 -1.560323 0.502576 -2.044611 -0.829829 0.076400 0.963850 1.544576 0.741641 1.531013 0.423106 -0.205144 -1.841227 1.918451 -0.330860 -0.800782 0.193505 0.329843 0.232626 1.144147 -0.705438 0.236889 0.807797 -0.586441 0.809747 1.250629 0.798689 -0.403366 2.435572 1.913400 -0.473986 0.862797 -0.138476 -0.684185 1.498279 -0.197078 1.098794 0.687261 -0.094209 -0.075897 0.574525 1.459682 -1.148370 -1.157822 -1.589817 -1.024724 0.072007 1.297415 0.513273 -2.028677 -2.291796 -0.049082 0.113403 1.524473 0.276920 2.645784 -0.448960 0.947752 -2.479364 0.169640 1.253207 -0.236497 1.679196 0.588434 -1.199709 -0.465633 -0.795236 -1.930393 -2.014791 -0.555861 -0.131223 -1.145880 -0.712698 1.739365 -0.514053 -0.222647 0.980227 0.143604 1.634025 -1.050769 0.485286 -1.650130 0.539912 1.744363 -0.385006 -1.304463 1.318505 0.536519 3.816816 -0.090636 0.637985 -0.082249 0.279031 -0.153803 -1.706651 -0.710346 2.206447 1.334915 0.848538 -0.541422 -0.505407 0.044752 1.415582 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/snake-ladder.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = -1.889451 -0.708601 3.351423 0.104309 -1.779273 -3.553520 -1.584255 -5.802523 2.616758 1.232638 4.215795 0.462397 2.255880 -2.161382 1.059964 1.499538 1.895535 -2.682079 0.816058 -1.569813 0.976684 3.842763 1.134824 0.554279 0.064803 -3.625417 -0.174482 0.716076 1.682327 1.894536 1.081236 -0.854152 -1.537714 0.925044 0.376841 2.873555 2.308305 0.651988 -2.130976 -0.320594 -1.040417 -0.753670 1.999406 -1.242695 4.653135 -1.417197 2.308679 0.825422 -2.155378 -2.032992 -1.317454 3.924140 -2.710515 0.618446 1.312601 -1.128940 -0.537525 -0.880365 -1.532672 -2.572819 -1.098986 -1.410086 -1.270919 0.607449 -0.769836 1.748559 -0.704875 -0.267773 0.046563 -0.677985 2.281632 1.206843 1.501511 2.926414 -3.231644 0.486456 0.263742 1.034584 1.327335 -0.348263 0.034730 -0.960416 -0.534561 -1.855599 2.555599 2.177166 0.547181 0.113624 -2.774284 2.555573 -0.979615 -0.903211 0.681139 0.558047 -3.220121 -0.778911 1.255522 -1.073606 -1.501912 -2.667574 0.550229 -1.512016 0.700029 0.824103 0.640595 -0.775858 -3.483224 0.384342 -3.704338 -2.247624 1.608489 -0.675038 -0.600056 3.017836 -3.334272 0.979906 -1.630019 0.174951 0.167334 1.587591 0.797015 2.199138 1.169532 3.280452 1.302085 -2.452284 -1.831432 1.467908 4.306626 1.409434 0.844180 -1.922122 -1.517382 1.162299 -2.034275 -3.848343 -2.279329 2.284000 2.940376 1.602068 -1.520977 -0.691202 -0.715626 3.933004 2.380813 0.193853 -0.162530 0.645665 -3.098113 2.429601 3.143189 -1.109792 3.311150 0.103645 0.815732 1.527547 -3.117802 1.215331 1.615899 -0.044391 -1.181013 -1.257706 -1.619165 1.627944 2.811169 2.403723 -2.598096 1.967547 -1.071890 -4.144671 -4.681927 -0.889009 3.582634 -0.188851 1.954616 -2.265323 -2.829315 0.081807 3.163798 -0.349268 -3.139551 1.057036 -2.677415 1.866008 -3.181739 -3.119362 6.080277 6.030599 2.760562 1.181763 2.590320 3.168082 -5.133899 -0.320103 -0.271542 1.625510 -0.653728 -5.772294 -1.547439 0.618658 -3.058372 -2.703118 -0.951726 1.351450 -0.896539 2.206752 2.843174 2.441477 -0.463571 0.740778 1.488049 -0.827848 -2.351588 -0.442169 0.452371 1.826267 1.150618 -2.252829 1.389614 2.162258 -3.275892 0.399783 1.551508 1.924080 1.942964 4.207678 3.601794 -0.084926 3.591561 -0.965984 -1.958126 1.102698 -0.615891 1.036354 -0.254526 -0.074060 0.804241 0.137514 1.779995 -1.487425 -2.152359 -2.249060 -0.978906 0.810884 3.239573 0.552432 -5.207968 -3.184455 0.470812 1.896794 1.970310 -0.832802 4.212967 -1.621941 0.900748 -5.797188 0.205020 1.221025 -0.107050 1.257627 0.522646 -0.879533 -3.493911 -0.947592 -2.643740 -3.141543 -0.612958 -1.603151 -0.575221 -3.720088 5.073150 -2.457564 -0.764190 0.402826 0.909300 3.769223 1.758392 -0.303129 -2.402609 1.553346 1.242508 0.301278 -2.068438 3.377230 0.682062 7.302498 -1.122896 0.472945 -0.835076 1.991573 -0.624156 -1.660885 0.061019 3.386880 4.415931 0.281664 -1.150506 -0.575124 -0.850238 1.566952 -PE-benchmarks/snake-ladder.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = -0.073968 0.215438 1.404606 0.254114 -1.000604 -1.559039 -0.614915 -2.371606 1.103620 0.344530 0.926769 -0.011355 0.569347 -0.824896 -0.129465 0.827503 0.521758 -0.370214 0.156543 -0.666084 -0.474485 1.341939 0.040221 -0.070770 0.430960 -1.715168 1.114760 -0.064212 0.776858 1.158663 0.603060 -0.296326 -0.481260 0.726393 0.856408 1.592905 0.619557 0.344379 -0.692922 0.477304 -0.152371 -0.413134 0.740064 0.212337 1.613230 0.401521 0.451697 0.435751 -0.813714 -0.242026 -0.576878 0.951744 -1.175537 0.486399 -0.107259 0.070103 -0.153860 -0.661202 -0.244624 -0.292982 -0.708472 -0.781971 -0.962493 0.293642 -1.091105 0.336119 -0.630401 -0.265699 -0.470267 0.049955 0.778038 0.550343 0.045699 0.759027 -1.464590 -0.170890 0.164104 0.531308 0.981350 -0.549078 -0.064008 -0.480512 -0.801492 -1.010282 1.204858 0.591256 0.378076 0.117357 -0.337881 -0.042193 -0.706429 -0.157694 0.668296 0.695494 -0.923292 -0.387812 -0.349057 -0.249531 -0.448759 -1.662591 0.360095 -0.544106 0.422798 -0.139345 -0.065641 -0.181899 -0.094454 0.389521 -0.605608 -0.380295 0.408913 -0.357985 0.114945 1.331650 -0.067040 -0.321972 -0.748272 -0.532809 0.156130 0.784843 0.425403 0.263348 1.108090 1.195220 1.140591 -0.786084 -0.911650 0.455456 0.665308 0.612314 0.528374 -0.971720 -0.644406 0.347997 -0.326798 -1.589039 -0.466212 0.169634 0.735050 0.061972 -0.271619 -0.284645 -0.419939 0.729799 0.505839 0.120267 0.128633 0.064313 -0.951742 0.858518 1.721894 -0.272588 0.604760 -0.719314 0.228767 0.657706 -0.765380 0.148941 -0.007189 -0.417199 -0.380756 -0.312274 -0.129661 0.786428 0.177889 0.196756 -0.188860 0.660505 -0.886863 -1.220219 -1.198648 -0.109094 1.676629 -0.081296 1.063611 -1.099724 -0.306521 -0.309593 1.071129 0.312606 -0.305796 0.316403 -1.050698 0.769966 -1.049339 -1.245186 2.162385 1.594100 1.050220 0.018650 0.381889 1.135262 -1.670471 -0.480564 -0.494821 0.231062 -0.048829 -1.752422 -0.839881 0.218034 -1.325861 -0.691409 -0.038559 0.572715 0.464388 0.531703 0.550333 0.283057 -0.181338 -0.766724 0.679970 -0.434141 -0.518372 0.126712 0.094172 0.272608 0.569468 -0.461443 0.324264 0.552867 -0.521256 0.345044 0.683858 0.680289 0.148343 1.369028 1.463024 -0.149939 0.748189 0.066573 -0.584606 0.820687 0.153780 0.662050 0.326696 -0.038058 0.297021 0.183634 0.922283 -0.628456 -0.632900 -0.972180 -0.486192 0.375134 0.888523 0.255568 -1.173770 -1.315239 -0.090472 0.316877 1.039044 0.016749 1.455298 -0.207455 0.566721 -1.662406 0.112531 0.967364 -0.108484 0.616785 0.323046 -0.631809 -0.789846 -0.435176 -1.001108 -1.180370 -0.519780 0.082589 -0.603903 -0.497057 1.055899 -0.389817 -0.134017 0.682751 0.271990 0.938509 -0.326764 0.318355 -0.892430 0.123320 0.846264 -0.073007 -0.829398 0.708658 0.506583 2.421510 -0.100207 0.363776 -0.254162 0.275521 -0.121177 -0.871129 -0.315901 1.248394 0.980374 0.286392 0.131972 -0.148064 -0.029743 0.926284 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/snake-ladder.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = 0.192737 0.202784 0.279738 -0.031681 0.047784 -0.209471 -0.026216 -0.358388 0.103034 -0.022495 0.077260 -0.125920 0.105121 0.027922 -0.022431 0.105837 0.018276 0.121438 0.103078 -0.004490 0.005201 0.154977 -0.143808 0.033306 0.064580 -0.255399 0.030001 0.095707 0.244137 0.123904 -0.028054 -0.076004 -0.011022 0.057760 -0.106335 -0.108509 0.158245 0.023784 -0.283760 0.096072 -0.232555 0.123653 0.022604 -0.019904 0.031372 0.146747 -0.057301 0.106815 0.108774 0.046906 -0.043881 0.218951 0.060654 0.128419 -0.029918 -0.111939 -0.076114 0.019885 0.012906 0.062774 0.004300 0.078451 0.016803 0.012085 -0.168094 -0.013484 -0.052970 -0.140491 0.026454 0.074321 0.092638 0.063337 0.082331 -0.010211 -0.309318 0.076404 0.045822 0.144846 0.070425 -0.104219 0.183502 0.060817 -0.074843 -0.132798 0.127786 0.260051 0.088408 0.017881 -0.078095 -0.139919 -0.019977 -0.062460 0.085736 0.078825 0.031996 0.102419 -0.314097 0.057161 -0.009677 -0.342130 -0.025216 -0.059320 0.062750 -0.128356 0.222162 0.072132 0.207671 0.211943 0.117324 -0.103978 0.138018 0.051328 -0.057864 0.310210 0.065815 -0.077831 0.000370 -0.043797 -0.204254 0.130282 0.010463 0.032391 -0.035755 0.116511 0.090220 -0.051774 -0.109186 0.123896 -0.001889 0.139434 0.115248 -0.223378 -0.043494 0.004795 -0.089488 -0.274382 -0.000944 -0.013652 0.100835 -0.203331 -0.000364 0.011664 -0.130480 0.066789 0.009510 -0.028422 0.079718 -0.040043 -0.049693 0.106809 0.231219 -0.090532 0.068819 -0.114171 0.016706 -0.154631 0.073214 0.072919 -0.116084 -0.018187 0.121667 -0.055825 0.026448 0.136633 0.098271 0.052114 0.045513 0.020704 -0.286764 -0.179367 -0.105917 -0.017352 0.108118 -0.253277 0.139038 -0.025775 -0.240636 -0.082723 0.250295 -0.090138 0.070925 0.078080 -0.177877 0.086194 -0.036175 -0.156336 0.160777 0.255917 0.097417 -0.137303 0.046853 0.127345 -0.212120 -0.177017 -0.000773 -0.043485 -0.055807 -0.419640 -0.294374 -0.029914 -0.121829 0.046480 0.067448 0.041485 0.048568 0.303706 0.083315 -0.008899 -0.174807 -0.133349 0.141615 -0.101022 0.096548 0.088706 0.023789 -0.056607 0.136336 -0.235839 -0.040710 0.288678 -0.101184 0.072770 0.034842 0.031817 -0.063462 0.212053 0.040876 0.151706 0.247704 0.086459 -0.188720 0.279331 -0.007830 0.060397 -0.016855 -0.037507 -0.152590 0.104524 0.015175 -0.078228 -0.215315 -0.250221 -0.144544 -0.003237 0.031170 0.242507 -0.196691 -0.042256 -0.052260 -0.018896 0.144319 0.090626 0.191690 -0.051620 0.100795 -0.171351 0.035791 0.019834 -0.069998 0.122187 0.068909 -0.083938 -0.230015 0.019136 -0.152208 -0.369413 -0.143943 -0.295554 -0.027151 -0.125724 0.085650 0.005295 0.014160 0.161430 0.104144 0.114517 -0.204431 -0.021311 -0.143580 0.046937 0.201396 -0.099227 -0.171407 -0.060996 0.049218 0.414911 -0.021575 0.069172 -0.114192 -0.135674 0.039361 -0.070722 -0.058539 0.188343 0.070181 0.110734 -0.041193 -0.013093 -0.061189 0.060299 -PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::construct(std::allocator&, queueEntry*, queueEntry const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::construct(queueEntry*, queueEntry const&) = -0.580606 -0.111991 1.355969 0.289280 -1.088787 -1.263918 -0.639415 -2.414332 1.200374 0.740312 1.398580 0.360528 1.125485 -0.840387 -0.223923 -0.202089 0.656265 -0.854246 0.470931 -0.680061 -0.306566 1.871468 0.152918 0.205124 0.009471 -1.775227 1.577756 -0.159662 0.831427 1.611801 0.531584 -0.123768 -0.926942 0.511987 0.501836 0.843436 0.343380 0.706344 -0.433686 0.044341 0.345560 -0.808092 1.028063 0.053787 1.510850 -0.055994 -0.039330 0.257500 -0.558179 -0.891993 -0.179183 -0.162674 -1.274956 0.338861 -0.017706 -0.552247 -0.013237 0.040451 -0.184507 -0.672444 -0.146332 -1.242628 -0.531934 0.454751 -0.960871 0.567881 -1.191509 -0.418887 -0.430648 -0.860916 0.745755 0.536856 0.585773 0.625295 -1.881741 0.070808 0.080504 0.102776 0.896842 0.329606 -0.546347 -0.509113 -0.981953 -1.099428 0.785539 1.122451 -0.062376 0.142170 -0.742713 0.213644 -0.138796 0.069565 0.701242 0.736201 -0.921451 -0.167420 -0.484821 -0.221737 0.009327 -1.891600 0.441021 -0.714243 0.536597 0.357121 -0.762443 -0.479752 -0.324195 -0.007769 -0.777087 -0.944766 0.573570 -0.731530 0.358657 1.581323 -0.569076 -0.304181 -1.172161 -0.366412 0.650516 0.697173 0.425988 0.423265 0.901281 1.052605 0.755750 -1.248910 -0.829395 1.197074 0.751479 0.204980 0.204820 -0.854130 -0.568049 0.497262 -0.649949 -1.596912 -0.821800 0.270661 0.867917 -0.388685 -0.066675 0.162610 -0.745892 0.646120 1.358829 0.269674 0.274548 0.337764 -1.165436 0.848512 1.425619 -0.053902 0.630517 -0.515673 -0.458735 1.424607 -0.837783 0.476172 -0.034795 0.125856 -0.715628 -0.568547 0.151509 0.865776 -0.133824 0.919678 -0.410096 0.701228 -0.496322 -1.329257 -1.567273 -0.101286 2.318304 0.897501 1.047805 -1.346635 0.118401 0.454906 1.235682 0.987527 -0.872059 0.609955 -0.547211 0.790941 -2.176229 -1.473737 1.919435 1.694415 0.904420 0.085671 0.137440 1.018166 -1.207207 -0.549141 -0.791520 0.661611 -0.336109 -1.614755 -0.536736 0.358270 -1.156166 -0.911183 0.178797 0.555938 1.039021 -0.344368 0.626093 0.105001 0.195716 -1.018673 1.381061 -0.382435 -0.833656 -0.135391 0.120773 0.303482 0.386512 -0.110761 0.562966 0.425678 -0.268093 0.359820 0.732352 0.198481 -0.175836 1.412327 1.352860 -0.819267 -0.501526 -0.258665 -0.306102 1.573116 -0.523147 0.448305 0.298149 0.374367 0.492832 0.248776 0.986070 -0.703405 -0.602744 -1.007824 -0.528317 0.348710 1.005522 -0.680132 -1.574014 -1.732206 0.430638 -0.016135 1.289279 0.192622 2.037963 -0.529277 0.441229 -1.465642 0.116502 0.952421 -0.087479 1.154387 0.239076 -0.423444 -0.210743 -0.627996 -1.172056 -0.262873 -0.426706 -0.406499 -0.545604 -0.422406 0.834069 -0.395357 -0.130731 0.271217 -0.213959 1.165917 -0.076680 0.039803 -1.296264 0.422635 0.183225 0.029444 -0.739642 1.451092 0.207153 1.893201 -0.269341 0.245225 -0.010737 1.109937 -0.755947 -1.296486 -0.235607 1.445338 1.009878 0.405951 -0.276845 -0.210335 0.195081 0.518776 -PE-benchmarks/snake-ladder.cpp__queueEntry const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry* const*, queueEntry* const*, queueEntry**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry* const*, queueEntry* const*, queueEntry**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.181687 0.149358 0.673510 -0.048137 -0.196147 -0.774676 -0.241742 -1.379691 0.560032 0.300240 0.583065 -0.060815 0.504566 -0.244671 -0.105564 0.317609 0.167928 -0.225093 0.183800 -0.295140 -0.226643 0.839420 -0.233795 0.257471 0.062650 -0.957321 0.503101 0.181883 0.494437 0.504146 0.220946 -0.037035 -0.163865 0.265613 -0.067903 0.341479 0.216466 0.293094 -0.357756 0.117601 -0.076606 -0.034139 0.380606 0.059742 0.637629 0.215767 0.106451 0.210501 0.079230 -0.254870 -0.134593 0.313144 -0.307523 0.141312 -0.269914 -0.242962 -0.052539 -0.146042 -0.031069 0.100124 -0.087314 -0.160094 -0.394665 0.160151 -0.444015 0.171776 -0.246232 -0.313751 -0.182828 -0.177496 0.376929 0.157843 -0.019255 0.106762 -1.009415 -0.002301 0.111463 0.045741 0.397024 -0.132741 -0.046921 -0.151417 -0.488402 -0.518097 0.675771 0.816102 0.141315 0.186696 -0.367378 -0.134516 -0.245827 -0.057682 0.476001 0.417913 -0.284630 -0.106253 -0.219818 -0.115416 -0.269564 -0.771215 0.289302 -0.259363 0.304243 -0.148626 0.098568 -0.025542 0.172785 0.090170 -0.239795 -0.364824 0.109002 -0.346579 0.319937 0.865740 -0.086783 -0.221297 -0.470675 -0.280258 -0.048710 0.364824 0.266630 0.014590 0.637089 0.423616 0.283997 -0.532041 -0.526785 0.469007 0.236983 0.272294 0.121850 -0.656104 -0.243704 0.144875 -0.338986 -0.884643 -0.298800 -0.016445 0.300795 -0.548358 0.024664 0.311500 -0.259618 0.216887 0.523692 -0.065372 0.142565 0.097398 -0.436020 0.346779 0.821294 -0.052670 0.285561 -0.504294 -0.140879 0.298048 -0.259236 0.172735 0.114002 -0.151016 -0.325982 -0.153690 0.238260 0.402761 -0.066405 0.334813 -0.067933 0.340086 -0.455552 -0.439386 -0.711044 -0.068670 0.767916 0.055567 0.686619 -0.543903 -0.203883 0.052992 0.651777 0.176464 -0.148439 0.346041 -0.484941 0.374477 -0.547052 -0.623470 0.795071 0.762756 0.605856 -0.106741 0.260055 0.393781 -0.573201 -0.266952 -0.128375 0.216999 0.098734 -1.042566 -0.320076 0.037299 -0.545416 -0.307996 -0.104006 0.276034 0.141870 0.306195 0.501521 -0.256034 -0.130339 -0.478392 0.487644 -0.170163 -0.063108 -0.028241 0.097167 -0.157058 0.251897 -0.350845 0.205999 0.345565 -0.165458 0.345010 0.383146 0.030811 -0.071361 0.696142 0.576628 -0.295123 0.382253 -0.139383 -0.086320 0.469288 -0.044940 0.241590 0.157215 0.169976 0.018342 0.167065 0.342661 -0.315102 -0.298851 -0.537688 -0.232469 0.271139 0.274962 0.365939 -0.461543 -0.741215 -0.086189 -0.097120 0.766197 0.120028 0.802398 -0.191169 0.375439 -0.697042 0.140075 0.148334 -0.131372 0.342338 0.142743 -0.282584 -0.173275 -0.162281 -0.550743 -0.910722 -0.200058 -0.400917 -0.357227 -0.379281 0.302259 -0.308876 -0.087754 0.287471 0.097091 0.294420 -0.448842 0.105186 -0.507537 0.224967 0.453195 -0.155150 -0.417978 0.185807 0.067633 1.141053 -0.086295 0.405235 -0.082725 0.365843 -0.204685 -0.582356 -0.169236 0.671050 0.352030 0.093910 -0.090124 -0.120230 0.157359 0.331456 -PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = -2.319949 -0.554078 4.171227 0.312598 -2.951911 -3.804000 -1.886898 -7.001250 3.163136 1.542343 4.736119 0.655252 2.556866 -2.849611 0.813722 1.340828 2.405853 -2.807701 0.967815 -1.913138 0.689393 4.006978 1.082743 0.562644 0.352501 -4.101678 0.835960 0.111346 1.973076 2.405629 1.554858 -1.100415 -2.482348 1.243741 1.706596 3.706791 2.859100 0.978877 -2.307670 -0.261449 -0.948144 -1.856677 2.287645 -1.105685 5.495191 -1.788488 2.025182 0.895671 -3.114814 -2.189485 -1.201588 3.701791 -3.610077 0.920545 2.054964 -1.330857 -0.759072 -0.877735 -1.410159 -2.844006 -1.396310 -2.910328 -1.382658 0.885472 -1.203444 1.900560 -1.481589 -0.268014 -0.297572 -1.002074 2.395342 1.481830 1.962138 3.954266 -3.699908 0.314507 0.464515 1.158880 1.986842 -0.038044 0.134949 -1.549660 -0.983172 -2.479321 2.835935 2.241845 0.552151 -0.114347 -3.112658 3.028231 -0.838909 -0.907302 1.011368 0.938410 -4.137914 -1.146107 0.548115 -1.272096 -1.337535 -4.274364 0.640921 -1.950834 0.916556 0.922405 -0.581452 -1.036721 -3.850164 0.582588 -3.870165 -2.325647 1.997645 -0.957037 -0.474387 3.582662 -3.378430 0.610389 -2.273450 -0.136301 0.838125 1.537225 0.975101 2.448053 1.534067 3.826183 2.218967 -2.939978 -2.301482 1.924096 4.396558 1.467060 0.930539 -2.156872 -1.721255 1.587773 -2.209170 -4.571833 -2.603002 2.092272 3.325064 2.054153 -1.379653 -1.743043 -1.110862 4.062552 2.576239 0.671502 -0.245794 0.900544 -3.490793 2.555953 3.231346 -1.209798 3.459182 0.375523 1.175032 1.658626 -3.421419 1.236464 1.185997 0.067696 -1.282916 -1.585899 -2.182926 2.086967 2.646104 2.435096 -3.144566 2.269274 -1.654198 -4.900920 -5.221194 -0.782340 5.093239 0.179674 1.673754 -3.001347 -2.686484 0.269480 3.799001 0.262327 -3.602519 1.255433 -2.880299 2.341544 -3.435060 -3.798241 6.889052 6.624139 2.834472 1.062126 2.206305 3.468808 -6.628370 -0.759594 -1.019362 1.622192 -1.218197 -6.576123 -2.240112 1.046927 -3.696534 -2.861349 -0.546645 1.594708 0.032765 2.007545 3.224318 3.416032 0.211308 0.275959 2.325013 -0.603253 -3.016326 -0.521586 0.546073 2.618820 1.550257 -2.199882 1.365292 2.188930 -3.409668 0.325915 1.899545 2.254646 1.743221 5.238051 4.069824 -0.200658 2.822743 -1.008413 -2.387193 1.504896 -0.733635 1.387733 -0.024163 -0.367147 0.975428 0.254917 2.711005 -1.934365 -2.690245 -2.654938 -1.954752 0.465264 3.942836 0.113990 -6.083261 -3.782639 0.896073 1.997751 1.944811 -0.765917 4.964094 -1.613315 1.011324 -6.130472 0.036753 2.210626 -0.340086 2.032854 0.539720 -1.153794 -3.536414 -1.394879 -3.240973 -3.055376 -0.733038 -0.710988 -0.730680 -3.598862 5.802449 -2.083013 -0.884441 0.156304 1.000283 4.575961 2.058350 -0.067463 -2.832918 1.743930 1.427909 0.267560 -2.481125 4.364012 1.276693 8.238633 -1.046449 -0.047646 -0.725899 1.823448 -0.727602 -2.049182 -0.156435 3.899599 5.125856 1.003218 -1.568260 -0.562002 -1.221227 2.067349 -PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::destroy(std::allocator&, queueEntry*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = -3.294637 -1.247457 4.093712 -0.514211 -2.775996 -3.882047 -2.038909 -7.556548 3.443728 2.177031 5.719950 1.043602 3.427548 -3.004516 1.179421 1.306585 2.824312 -4.123687 1.738592 -1.980044 1.467470 5.253093 1.539823 2.099086 -0.252951 -4.368518 0.406157 -0.486506 2.395675 3.136869 1.783203 -1.339591 -2.818196 0.765946 1.991553 4.296712 2.976966 1.287472 -2.350380 -0.415477 -1.440092 -3.010202 2.517301 -1.507262 6.180508 -2.818470 2.141676 0.750988 -2.917304 -3.211741 -1.522630 3.594748 -4.378812 0.473786 2.403878 -2.503950 -0.997064 0.308940 -1.896682 -3.360539 -1.662277 -3.794663 -1.099642 1.271983 -0.957516 2.639049 -2.797806 0.223013 -0.793304 -1.609176 2.721337 2.040787 3.212188 5.224214 -4.745665 0.720105 0.099452 0.859569 1.831681 0.472621 -0.402084 -1.586094 -0.789552 -2.780880 3.061799 3.028915 0.033557 -0.378014 -4.249417 4.412407 -1.213693 -0.684946 0.963445 0.670946 -4.716714 -0.931802 1.044986 -1.274328 -0.837751 -5.105770 0.539289 -2.307847 0.744465 1.244983 -0.080156 -1.935397 -5.608863 0.116610 -4.968134 -3.184386 2.744513 -0.937742 -1.342308 3.784501 -4.848628 1.586442 -2.793821 0.499917 1.421436 1.460737 1.334578 3.310970 0.614655 3.951410 2.318532 -3.354301 -2.282590 2.820557 5.590846 0.893950 0.561935 -1.649408 -1.872120 2.047214 -2.768533 -4.667491 -3.590344 3.476144 3.734396 2.421290 -0.947289 -2.094904 -1.176867 4.648974 3.857037 0.550371 -0.159233 1.233440 -4.016309 2.861964 3.168256 -1.290739 4.250380 0.917834 1.377253 2.694186 -4.538551 1.678052 1.442871 0.968586 -1.987777 -1.950284 -2.672656 2.051824 3.420572 3.629128 -4.208469 2.599214 -1.183829 -5.384225 -5.888227 -1.221043 6.249537 0.618459 0.812763 -3.075082 -2.628435 1.385670 3.916675 1.093331 -4.945359 1.576224 -2.768424 2.422761 -5.175837 -4.037532 7.692964 7.647302 3.275450 1.545841 1.896114 4.715106 -7.610218 -0.656139 -1.153774 2.447798 -2.396969 -8.165103 -2.622364 1.243834 -3.887030 -3.529228 -0.876675 1.702733 -0.039314 2.408151 4.137350 4.117162 0.844653 1.063190 3.092083 -0.525828 -4.313865 -1.026710 0.659957 3.181348 1.288490 -2.250745 2.561028 3.017421 -4.099795 0.202376 2.201845 1.893290 1.968293 5.843790 4.572870 -0.559051 2.005337 -1.796407 -2.484135 1.136563 -1.187822 1.209890 -0.535220 -0.524749 1.326268 0.127192 2.803527 -2.050059 -3.697079 -2.583417 -2.233584 0.641319 4.676517 0.674974 -7.918485 -4.123329 1.931317 2.359693 2.432868 -0.679381 5.591446 -2.286378 1.171802 -6.485199 0.297685 2.071305 -0.182361 2.519544 0.343453 -0.576726 -2.610296 -1.763149 -3.575334 -2.863406 -0.616210 -1.476864 -0.224774 -4.630180 6.678928 -2.741028 -1.394473 -1.176344 0.924124 5.950876 3.575473 -0.649185 -4.088811 3.008173 1.196449 0.474414 -2.321054 5.505711 1.172955 8.485919 -1.643232 -0.666311 -0.381005 2.864047 -1.358608 -2.293734 0.313104 4.391084 6.135151 0.868754 -2.253724 -0.953418 -0.817149 1.353958 -PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::destroy(queueEntry*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/snake-ladder.cpp___GLOBAL__sub_I_snake_ladder.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/floyd-warshall.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -2.691210 2.284860 14.056808 8.540004 -7.221599 -10.462380 -5.342833 -12.478765 5.921715 -0.808798 8.862491 1.497753 1.075188 -0.571338 2.247758 -1.570819 0.767814 -2.889326 -0.644722 -3.674168 -1.513356 7.608601 6.734311 -10.752137 1.127316 -12.442728 5.811436 6.506724 4.738577 6.537349 -0.272700 -2.289522 -3.330273 7.149887 -4.105592 -0.632431 2.049406 0.720199 -4.656789 0.015498 3.972555 6.640545 6.583660 -0.695581 8.419469 2.928090 7.005088 2.606960 -6.583323 -1.190840 -5.798870 12.877586 -7.255949 5.001618 1.752325 5.468733 0.076732 -9.324135 -3.546486 -10.025631 -0.200649 2.701486 -5.124874 -0.367076 -6.575567 2.144132 -0.222291 -3.637428 5.299001 0.955847 8.457321 0.966621 0.598098 -1.877569 -5.977489 1.894229 -1.645932 7.145593 5.066087 -3.815492 -1.468241 2.271731 -2.265398 -4.548365 1.332153 -0.194546 1.541025 -1.987948 1.903001 -1.131807 -0.377121 -2.967151 -2.310208 5.103892 -6.469239 3.918950 -2.759839 -1.343756 -5.857098 -1.970801 0.314612 -5.877864 3.931376 4.989925 -2.080218 -1.022266 -1.417959 1.485448 -4.189845 -8.476160 0.855498 0.115045 1.545189 8.209402 -5.258341 0.067768 2.497252 -1.549801 -2.294777 8.426681 1.425525 3.785321 6.263038 11.733907 1.081721 -5.579518 -2.927640 0.325730 7.327724 8.868432 6.562640 -8.460783 -4.940823 -0.648027 0.758902 -12.778013 3.936060 4.124766 7.469042 5.380221 -10.316709 0.847477 -4.329105 10.144142 3.524086 5.680618 1.844395 -1.383474 -7.225564 8.829533 16.075302 -3.359013 7.347394 -2.753672 -3.695690 8.253796 -7.919672 5.494631 3.243047 0.266700 3.227159 -5.408319 -4.461501 7.790195 5.519020 4.372736 6.140848 1.893990 -1.258370 -14.554734 -10.157080 -0.247234 6.686215 -2.097980 11.861962 -6.806744 -6.087179 -3.271834 10.749532 -3.849609 -3.615959 0.337459 -4.534016 5.007410 -9.868438 -9.608403 13.260564 14.885669 0.490872 1.001173 9.983005 7.295788 -4.997240 -3.668667 -3.943374 3.691951 1.595145 -1.102773 0.116523 -1.134082 -7.720721 -3.939542 1.887916 3.177150 2.784986 -2.540774 -4.862747 5.737292 -9.881620 -5.443235 2.068783 -8.522935 -2.775092 2.102493 -0.317933 0.480640 2.568923 -3.597302 -2.680091 4.544295 -6.318305 0.951305 4.067144 7.202479 3.977212 9.931811 5.852481 2.399640 11.124328 5.766869 -4.839314 17.233387 -3.192243 2.196671 2.361377 5.123022 -0.777723 3.736017 1.826752 -4.045780 -4.093576 -9.249302 4.391718 -0.778446 7.222746 -8.260131 -8.165242 -8.317651 -4.606749 7.695902 4.200651 -2.639214 15.345995 -0.737949 1.092576 -17.818965 -1.409324 7.387196 -0.460739 5.090572 4.612734 -5.230725 -15.636567 -2.773922 -2.796245 1.205262 -3.454856 -6.591277 -4.771822 -5.329312 7.532586 -4.471398 3.516507 9.142763 -0.762284 3.939675 -1.909308 -1.087192 -1.455825 -4.230223 3.507237 2.892444 -9.469304 10.987999 -1.568413 20.648099 -3.983079 6.667591 -6.591301 1.297994 -0.402425 -1.450275 -1.043953 11.332139 7.008451 2.662700 -0.282378 1.006621 -5.704818 5.002754 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -0.473791 0.947909 5.779156 3.312730 -3.274656 -4.326733 -2.198948 -6.810817 3.182321 0.048002 3.752537 0.394969 0.905796 -1.361465 0.329253 -0.295974 0.661488 -1.121306 -0.112889 -1.641152 -0.758857 3.862593 1.328432 -3.677683 0.595209 -5.794917 2.652882 2.624887 2.575962 2.274323 0.347229 -0.900616 -1.798879 2.748593 -1.417810 0.135320 1.384915 0.503061 -2.725263 -0.324377 1.281831 2.311914 2.927114 -0.735854 3.908686 0.444289 2.603494 1.277803 -2.488648 -0.520402 -1.875356 5.124113 -2.365830 2.149489 1.071185 1.188530 -0.130383 -3.629590 -1.238384 -2.565478 -0.256047 0.478046 -1.950495 0.023047 -2.667138 0.823569 0.218679 -1.649516 2.179671 -0.129588 3.232739 0.456553 0.298510 -0.659460 -3.318997 0.736415 0.008589 2.545218 2.217886 -0.757631 0.475970 0.326385 -1.462167 -2.090098 1.314556 1.523570 0.707258 -0.524365 -0.138999 -0.648371 0.096781 -1.535785 0.061720 2.077058 -3.088483 0.676399 -1.971605 -0.782039 -2.450269 -1.938185 0.524418 -2.231048 1.970488 1.413254 -1.253514 0.151081 0.789709 0.717544 -1.412274 -3.103817 0.314325 -0.508949 1.760256 4.748227 -1.600907 -0.849550 -0.279166 -1.031844 -1.484317 2.943179 0.565743 1.367526 3.397991 4.756679 1.195161 -2.766961 -2.050756 1.108911 2.637414 3.530086 2.266648 -4.089702 -1.711455 0.004985 0.008985 -5.791215 0.541851 0.644693 3.208145 1.059721 -3.145564 0.170905 -1.667188 4.201581 1.324723 1.328505 0.691960 -0.002250 -3.007281 3.622142 6.301970 -0.889747 2.479471 -1.852880 -1.371783 2.411721 -2.529114 2.066239 1.149498 -0.122050 0.733165 -2.195251 -0.937114 3.082745 1.233986 1.519811 1.318950 1.314924 -1.505417 -5.845711 -4.853988 0.252752 2.987864 -0.558099 5.302713 -3.196690 -2.961063 -1.282288 4.806431 -1.139707 -1.328258 1.060431 -2.866542 2.442398 -2.983819 -4.348854 5.710437 6.484328 0.792928 0.060279 4.247775 2.399560 -3.337501 -1.761647 -1.666708 1.311783 1.405866 -2.357064 -0.359587 -0.068408 -3.340845 -1.964119 0.816781 1.389171 1.468680 -0.307055 -0.495302 1.587370 -3.472613 -2.674288 2.141914 -2.768071 -0.595259 0.708962 0.158093 0.157710 2.039182 -2.048283 -1.052098 1.561567 -2.124201 0.952016 1.740539 2.657240 0.804176 4.134388 2.948454 0.596736 5.246731 1.803088 -2.019257 6.628016 -1.190602 1.056499 1.083208 1.333085 -0.372678 1.559954 1.166203 -2.025857 -1.474511 -3.981010 0.880591 -0.413131 2.860397 -3.070232 -3.425314 -4.036823 -1.998845 2.248774 1.612831 -0.431079 6.378206 -0.911791 0.470144 -7.555711 -0.569244 2.961631 -0.164616 2.529110 1.510475 -2.383596 -6.056529 -0.999215 -2.039827 -1.274066 -1.591610 -2.828038 -2.373292 -2.668452 4.009812 -1.536246 1.156432 4.202157 -0.027660 1.766105 -1.928304 -0.017372 -1.016355 -1.440740 1.316917 0.630570 -3.914657 4.049198 -0.397299 9.109149 -1.350429 2.486987 -2.501263 0.920258 -0.436829 -1.953348 -0.592850 4.598224 2.803934 1.272662 -0.652812 0.115086 -2.501925 2.625664 -PE-benchmarks/floyd-warshall.cpp__main = 0.120944 0.280730 0.808663 -0.243909 -0.429925 -0.992088 -0.311563 -1.624222 0.439285 0.300857 0.792193 -0.143506 0.530828 -0.047247 0.055819 0.454953 0.394365 -0.324053 0.315798 -0.438942 -0.334510 0.727853 -0.220085 0.553542 0.168769 -0.890526 0.400335 0.174394 0.462440 0.478121 0.329171 -0.144145 -0.407016 0.230733 0.138955 0.431946 0.414271 0.252154 -0.537590 0.384433 -0.284347 -0.260411 0.492208 -0.004636 0.708607 0.291508 0.131024 0.398353 -0.139652 -0.346576 -0.164197 0.473899 -0.369925 0.180639 -0.055303 -0.403305 -0.135137 -0.105641 -0.105278 0.226289 -0.257111 -0.471646 -0.359498 0.266383 -0.465062 0.226539 -0.535017 -0.335119 -0.143490 -0.121679 0.426937 0.120051 0.005621 0.519584 -1.071843 -0.003264 0.165202 0.206622 0.377424 -0.262137 0.081585 -0.062653 -0.573577 -0.619613 0.611565 0.871205 0.252860 -0.027373 -0.666442 0.089821 -0.218463 -0.100002 0.507945 0.380771 -0.440997 -0.108365 -0.361086 -0.261558 -0.549541 -1.234357 0.281816 -0.228782 0.393174 -0.278362 0.054292 -0.212633 -0.217931 0.158026 -0.326572 -0.507995 0.208522 -0.293635 0.218366 1.020991 -0.251388 -0.158575 -0.609579 -0.324210 -0.021285 0.344105 0.401718 0.059900 0.536602 0.601704 0.338629 -0.516089 -0.677914 0.299286 0.350344 0.279356 0.282984 -0.593960 -0.364095 0.262298 -0.580404 -0.950555 -0.406749 0.080787 0.482628 -0.415507 0.169746 0.010796 -0.441101 0.314777 0.527770 0.081750 0.126401 0.005234 -0.510216 0.407047 0.743341 -0.182645 0.521207 -0.378999 0.047415 0.216927 -0.262740 0.161231 0.261604 -0.127828 -0.477294 -0.125837 -0.057601 0.403247 0.265485 0.366068 -0.129535 0.395229 -0.581426 -0.494974 -0.832743 0.023994 0.969880 -0.090264 0.393151 -0.629176 -0.311281 0.065850 0.802562 0.211615 -0.454898 0.381702 -0.479654 0.362039 -0.483451 -0.588612 0.902726 1.034619 0.623823 -0.139095 0.195757 0.544808 -1.142467 -0.406843 -0.244549 0.337157 -0.279759 -1.452861 -0.584970 0.133999 -0.631918 -0.168635 -0.183678 0.443123 0.267264 0.495178 0.670897 0.027580 -0.163548 -0.366020 0.547493 -0.082001 -0.237378 0.094056 0.014133 0.055155 0.256106 -0.413601 0.226681 0.462757 -0.474336 0.317563 0.463950 0.181837 -0.037143 1.086039 0.507640 -0.138776 0.444918 -0.242912 -0.320389 0.357121 -0.058704 0.402591 0.028779 0.100988 -0.099572 0.121544 0.536129 -0.313767 -0.729122 -0.551901 -0.422382 0.179128 0.460249 0.590311 -0.814185 -0.952056 0.094334 0.022411 0.921523 0.079968 0.820342 -0.147894 0.462866 -0.725086 0.166914 0.045841 -0.168247 0.370961 0.074136 -0.303312 -0.067939 -0.129046 -0.851493 -1.070633 -0.093573 -0.309485 -0.352247 -0.424815 0.456364 -0.196291 -0.273907 0.109776 0.085902 0.527486 -0.034453 -0.049265 -0.546962 0.303124 0.876445 -0.227008 -0.491543 0.423880 0.248644 1.524036 0.076080 0.259673 0.042657 0.040080 0.023475 -0.519781 -0.204343 0.738070 0.627400 0.204699 -0.236921 -0.138300 0.217108 0.251038 -PE-benchmarks/floyd-warshall.cpp___GLOBAL__sub_I_floyd_warshall.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/optimal-binary-search-tree.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = -3.696190 2.484686 19.190673 11.667880 -8.354330 -12.889109 -6.647994 -16.744727 8.617514 -0.183323 11.237083 1.435686 2.293025 -3.478113 1.825969 -2.073172 0.369488 -4.857022 1.368735 -4.300777 -1.152305 12.710668 9.479040 -13.906875 0.905320 -19.672737 11.248954 8.418695 8.520874 10.518605 -0.340975 -2.755047 -2.533120 10.754519 -5.069077 -0.799579 1.327422 1.996659 -5.270444 1.564234 5.097262 10.721244 7.708632 -1.274480 11.159291 5.222688 9.638792 2.975825 -7.999256 -1.766003 -7.360589 15.503142 -10.895891 5.789853 1.419267 6.152390 0.237090 -12.427434 -4.903791 -13.400861 0.228870 4.293070 -7.152996 1.010487 -11.134743 2.903206 -2.048023 -4.403562 6.585924 3.380911 10.732519 3.998964 1.668455 -3.648001 -8.402992 4.734936 -1.386297 9.256606 7.417073 -6.470611 -2.758006 4.097110 -3.039635 -7.284714 2.520290 1.352199 2.222950 -3.110373 4.747455 -3.190321 -1.637578 -3.372100 -3.721960 8.092898 -7.254931 4.739874 -4.550821 -0.808263 -6.491088 -2.796236 -0.618522 -9.405694 5.368852 8.636117 -2.583146 -1.488957 -1.519809 1.768373 -5.191267 -11.013822 0.079885 -1.579383 4.475934 12.285600 -6.396739 0.621684 0.571143 -1.038905 -1.738392 12.272721 1.166861 4.947743 11.043380 15.810487 0.854218 -7.699749 -3.655949 1.885058 8.761940 11.552984 8.967979 -13.377149 -7.003760 -2.805635 3.012724 -16.458950 4.911301 3.967889 7.231852 4.815918 -13.529868 3.187781 -5.227409 14.151832 6.707977 5.572649 2.936719 -1.109369 -8.548544 13.835351 23.196346 -4.199726 7.476685 -6.013724 -7.427141 13.709053 -10.986024 7.605686 3.772013 0.940620 3.472819 -8.494012 -3.406225 10.959339 5.337358 6.605246 10.376632 2.133458 2.260119 -18.778729 -12.748027 1.573015 8.103022 -2.512108 19.164116 -9.157111 -6.253003 -3.886305 12.889508 -1.461675 -3.144164 -0.372414 -5.959862 6.363878 -15.439587 -14.587409 17.734706 18.319119 0.824588 1.269181 12.357669 11.313205 -5.337150 -4.441803 -5.342716 5.944857 1.181713 -1.544223 0.567459 0.249158 -10.765183 -6.245202 2.581617 3.725434 6.579218 -4.996822 -9.857181 4.940607 -14.588986 -8.482590 3.847618 -11.558881 -3.916411 1.622041 -0.332963 0.960369 4.443713 -4.828415 -2.427335 5.429660 -7.155566 0.227693 5.745538 10.284257 4.643383 11.479704 8.892721 3.095050 12.351030 8.832481 -4.751446 23.757722 -2.092871 2.057939 4.365498 6.281838 0.059778 5.464524 1.994371 -5.676389 -4.920764 -13.620393 7.789140 0.155742 8.243398 -12.398399 -8.815445 -11.323708 -7.206296 10.815927 6.365501 -1.406185 21.882694 -0.572234 0.232208 -22.543456 -2.225219 9.115258 0.183414 9.311401 7.085842 -7.682815 -17.868054 -5.392902 -2.914202 2.752642 -5.889526 -9.173322 -7.303538 -5.125588 9.925059 -5.656409 5.622149 13.603269 0.006497 4.387621 -2.281143 -0.650211 -3.764842 -5.558578 3.054297 4.436702 -12.413187 14.054649 -3.654953 25.354783 -7.318403 8.524509 -10.013461 2.457433 -0.547974 -2.597157 -0.923940 15.648163 7.425069 3.156331 0.859181 0.960921 -7.100914 8.628356 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.516300 0.636073 3.113353 2.088481 -1.827651 -3.003648 -1.366026 -3.250334 1.543861 0.024445 2.168764 0.121400 0.767107 -0.567573 -0.006784 -0.630050 0.389704 -0.744870 0.032810 -1.091787 -1.547142 2.491432 1.164273 -2.095089 0.380703 -3.287852 2.752837 1.483531 1.021029 2.386198 0.085971 -0.215294 -0.605143 1.891652 -0.768839 0.050205 0.068820 0.614591 -0.614965 0.308101 1.499784 0.928655 2.244639 0.280651 1.694625 1.565668 1.008745 0.674646 -1.564335 -0.595237 -1.175043 1.585480 -1.972800 1.044919 -0.482733 0.915723 0.971128 -2.007259 -0.491966 -1.925232 -0.118594 -0.039963 -1.496442 0.133728 -2.135774 0.434363 -0.695020 -1.363351 0.859228 -0.141775 1.815724 0.591303 -0.205605 -0.574837 -1.840494 0.522760 0.200650 1.348134 1.583468 -0.750003 -0.674667 0.405206 -1.541759 -1.552039 0.921542 0.094446 0.859988 0.115924 0.331905 -1.068253 -0.001177 -0.226996 0.282811 1.537964 -0.654642 0.534129 -0.747833 -0.480177 -1.539052 -1.481205 0.340841 -1.322361 1.084083 1.435149 -1.225288 -0.367411 -0.071245 0.181457 -0.927026 -2.131133 0.101591 -1.111772 0.858289 2.360333 -0.808523 -0.624115 -0.336090 -0.785705 0.116263 2.235074 0.466696 0.320156 2.205897 2.571132 0.295230 -1.672882 -0.966046 0.123970 1.269714 1.632498 1.551987 -2.170040 -1.394811 -0.124250 -0.264790 -3.324557 0.387193 0.360199 1.552715 0.248176 -2.261359 1.629354 -1.373065 1.667117 1.416143 1.188248 0.672524 -0.268721 -1.891369 2.262735 3.732506 -0.681084 1.478268 -1.460811 -1.889626 2.807297 -1.432225 0.951588 0.541344 -0.516140 0.097288 -1.089426 0.184202 2.027881 0.323626 0.908601 1.795902 0.552602 -0.252818 -2.952650 -2.633206 0.604843 2.467157 0.393661 3.690961 -2.297884 -0.521677 -0.398580 2.545222 -0.295866 -0.652828 0.174612 -0.859115 1.291555 -3.562264 -2.851332 3.447540 2.709116 0.521146 0.307938 1.622546 1.597758 -0.431050 -0.912407 -1.389609 1.046907 0.705010 -0.523564 -0.060874 -0.063126 -1.885119 -0.912482 0.433094 0.921652 1.429655 -1.692811 -1.274990 -0.515080 -2.116367 -2.131071 0.922362 -2.195800 -0.423276 0.629891 -0.355757 -0.234969 0.814885 -0.077966 -0.462089 0.220720 -0.956943 0.287964 0.898816 1.673953 0.524051 2.570823 2.192579 -0.546833 1.388992 1.245173 -0.628698 4.417999 -1.049304 0.715006 0.855233 2.050680 0.473647 1.001137 1.322412 -1.023623 -0.631398 -2.481247 0.991897 0.578727 1.176372 -2.527579 -1.212990 -3.239546 -1.032403 1.060703 2.197063 -0.351679 3.965569 -0.090206 0.170238 -3.620309 -0.251902 1.671975 -0.031444 1.627991 1.105034 -1.501584 -2.666635 -0.988551 -1.327372 0.447450 -0.944917 -1.233083 -1.472287 -0.446400 0.840749 -1.010674 0.931260 2.370764 -0.422709 0.468575 -0.725556 -0.032416 -0.933704 -1.047873 1.033297 0.369074 -1.829357 2.568697 -0.244948 4.230751 -0.521825 1.809458 -1.403619 0.871781 -0.190104 -1.181720 -0.617938 2.804231 1.247034 0.341579 0.548146 0.460489 -0.414710 1.713375 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.118982 0.201851 1.593276 -0.303482 -0.853321 -1.817735 -0.791831 -3.530259 1.268245 0.658386 1.657786 -0.138329 0.994783 -0.418208 0.052451 1.030715 0.601039 -1.076035 0.722857 -0.798295 -0.508917 2.188735 -0.182219 1.054227 0.131475 -2.345514 0.788057 0.172928 1.264527 1.021191 0.604281 -0.384325 -0.612403 0.517937 0.330327 1.153191 0.726040 0.491894 -1.084891 0.611295 -0.436055 -0.522928 1.001445 -0.218227 1.751896 0.042630 0.665975 0.639699 -0.244297 -0.685236 -0.649308 1.322128 -1.035357 0.249658 -0.003278 -0.795154 -0.381469 -0.367069 -0.556334 0.445908 -0.769619 -0.902891 -0.833024 0.586899 -0.927182 0.721510 -1.096073 -0.336807 -0.234241 -0.044236 1.113767 0.606127 0.319981 1.065021 -2.356266 0.186905 0.140604 0.414237 0.708468 -0.475824 0.115954 -0.033482 -1.045235 -1.247166 1.427486 1.906776 0.238515 -0.317902 -1.107811 0.402560 -0.713505 -0.284615 0.834008 0.800469 -1.226681 -0.223833 -0.623074 -0.447914 -0.960731 -2.258981 0.416644 -0.717708 0.772702 -0.331292 0.178833 -0.410277 -0.256881 0.141726 -0.872561 -1.242061 0.322834 -0.425325 0.483433 2.199838 -0.678892 -0.069023 -1.177831 -0.444968 -0.258162 0.701964 0.819996 0.476109 1.347806 1.448097 0.702651 -1.070138 -1.361158 0.902012 1.039766 0.578075 0.530870 -1.328245 -0.769577 0.426530 -0.630060 -1.990811 -0.944065 0.465813 0.980891 -0.662104 0.334725 -0.124864 -0.547420 1.116291 1.243441 -0.183698 0.213890 0.124505 -1.143949 1.231627 2.009051 -0.234825 1.027567 -1.080383 0.107217 0.963529 -1.116631 0.476005 0.546433 0.113017 -1.043967 -0.569944 -0.109344 0.784258 0.363728 0.824995 -0.365634 0.888388 -0.835370 -1.311442 -1.836821 -0.019358 1.924247 -0.162272 1.044604 -1.274362 -0.726564 0.248722 1.515259 0.722260 -0.921282 0.873918 -1.264978 0.814809 -1.256281 -1.448233 2.199127 2.368741 1.254142 0.006067 0.729069 1.521082 -2.453186 -0.731749 -0.525153 0.925419 -0.272341 -3.047111 -1.051457 0.266065 -1.321844 -0.821961 -0.414661 0.824961 0.528562 1.008342 1.279121 0.200554 -0.460980 -0.633263 1.456986 -0.362675 -0.735017 0.015982 0.124000 0.076474 0.689600 -0.834677 0.786561 0.944254 -0.895766 0.698770 1.110600 0.309879 -0.070510 1.926244 1.544088 -0.290074 1.193546 -0.409415 -0.462518 0.671082 -0.092362 0.624466 0.094481 -0.112598 -0.192782 0.269074 0.895684 -0.677454 -1.454918 -1.074588 -0.383912 0.217568 1.059934 1.009008 -1.866744 -1.837015 -0.031433 0.429618 1.593440 0.340380 1.881644 -0.569011 0.806523 -2.051674 0.279422 0.314958 -0.063887 0.999873 0.142303 -0.483307 -0.205245 -0.417489 -1.421061 -2.007292 -0.436315 -1.012749 -0.798369 -1.310336 1.449092 -0.696719 -0.454724 0.376818 0.298916 1.265234 -0.147016 -0.128580 -1.427864 0.730983 1.357821 -0.277596 -0.974985 1.078223 0.197887 3.245937 -0.307521 0.432817 -0.098428 0.495314 -0.237738 -1.186904 -0.091976 1.600947 1.281996 0.199254 -0.593971 -0.492010 0.222851 0.526513 -PE-benchmarks/optimal-binary-search-tree.cpp___GLOBAL__sub_I_optimal_binary_search_tree.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/bellman-ford-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = -0.482147 -0.103963 2.454148 1.031700 -1.672096 -2.523495 -0.930421 -3.943545 2.070771 0.595245 2.321884 0.776383 1.445204 -1.345701 0.207048 0.726063 0.697037 -1.159985 0.357614 -1.029655 -0.877442 3.135633 1.255044 -0.591057 0.425200 -2.956120 1.814572 0.442975 1.760538 2.164454 0.498402 -0.248816 -0.544434 1.227141 0.142932 0.966483 -0.079296 0.678024 -1.242435 0.141873 0.557210 -0.891372 1.785262 0.253497 2.507199 -0.175900 1.364448 0.499143 -0.968850 -0.771636 -1.632000 2.057264 -2.113036 0.897830 -0.502126 -0.120828 0.143867 -0.758211 -0.783905 -1.660265 -0.622396 -1.022687 -1.267974 0.363605 -1.692550 0.956278 -1.326170 -0.738383 -0.236754 0.110139 1.916459 1.137431 0.595521 0.462144 -3.013693 0.226562 0.137176 0.836104 1.572057 -0.066022 -0.618144 -0.399558 -1.267516 -1.700034 2.126022 0.913214 0.124117 -0.014893 -0.560702 -0.149021 -0.675555 -0.266595 0.423424 1.204558 -2.131401 0.474964 -0.015078 -0.347734 -0.680681 -2.301177 0.336751 -1.386386 0.783335 0.654388 0.023744 -0.300336 -0.503183 0.387737 -1.457900 -2.051817 0.424220 -0.585737 -0.276599 2.437527 -0.998050 -0.115554 -0.602441 -0.020674 -0.038854 1.576579 0.687390 1.151944 2.173772 2.412036 0.645582 -1.293582 -0.677987 1.246782 1.787735 1.233827 0.849714 -1.698450 -1.291394 0.817676 -0.249510 -3.020945 -0.792686 1.530162 1.718441 0.072519 -1.241898 0.360485 -0.610965 1.781300 2.043369 0.246780 0.552798 0.160171 -1.770097 2.191273 3.761445 -0.600016 1.403452 -1.080866 -0.688728 2.797526 -2.247709 0.764484 0.206594 -0.034178 -0.592715 -1.157832 -0.258458 1.649781 0.618345 0.758025 0.136848 1.049794 -0.839203 -2.857661 -2.609567 -0.505592 2.698093 0.586869 2.906080 -1.811324 -0.509457 -0.091749 1.842097 0.611403 -1.062817 0.740147 -1.583365 1.298432 -3.686146 -2.568397 3.997955 2.984306 1.604179 0.561917 1.352034 2.423141 -1.806456 -1.146797 -0.951802 1.000263 0.529762 -2.473996 -1.087950 0.142151 -2.501767 -1.491360 0.064072 0.767987 1.076414 0.012631 0.590864 0.177459 -1.268920 -0.978190 1.484621 -1.656656 -1.335141 -0.005222 0.003502 0.299950 0.764203 -0.343387 0.747776 0.647608 -1.239582 0.297031 0.956052 1.354764 0.361487 2.562817 3.046152 -0.535016 0.930699 0.232763 -1.028137 2.585572 -0.734741 0.480315 0.328704 0.554319 0.504610 0.529565 1.384877 -1.099554 -1.092407 -2.085058 0.317513 0.678307 1.552397 -0.947514 -2.109766 -2.676284 -0.422063 1.052900 2.077133 0.049770 3.534505 -1.050326 0.298697 -3.823565 0.132005 1.213721 0.102290 1.758331 0.801181 -1.000440 -1.347109 -1.091122 -1.345137 -0.427775 -0.983780 -1.164732 -1.098164 -1.251591 1.805409 -1.649878 0.322786 1.335874 -0.258579 2.049027 -0.493956 -0.131301 -2.001388 0.780247 0.914004 0.365118 -1.410180 2.271966 -0.092446 4.436270 -0.843350 0.951101 -1.095174 1.190790 -0.774440 -1.211710 -0.204683 2.557317 1.967115 0.315408 0.291433 -0.108623 -0.151915 1.281650 -PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = -0.226797 0.625096 2.733906 1.610963 -1.418768 -2.179769 -1.114040 -2.865893 1.409473 0.018003 1.612024 0.075899 0.525017 -0.478732 -0.051070 -0.310386 0.298845 -0.530358 0.046877 -0.803099 -0.815278 2.117896 0.829125 -1.775848 0.270453 -2.936804 1.739392 1.147789 1.180435 1.611824 0.015218 -0.263186 -0.531088 1.500668 -0.786155 -0.094336 0.379787 0.413996 -0.987033 0.146282 0.834012 1.127273 1.578778 -0.038007 1.512479 0.935382 0.858405 0.577990 -1.146250 -0.322377 -0.839425 1.806249 -1.276801 0.991604 0.013420 0.694054 0.337741 -1.675098 -0.479129 -1.368742 -0.122398 0.262390 -0.948607 0.091081 -1.596470 0.356379 -0.221929 -1.033522 0.815483 0.003073 1.502543 0.489444 0.121145 -0.517192 -1.609245 0.561668 0.126060 1.227596 1.164456 -0.507952 -0.195493 0.343983 -0.980055 -1.237779 0.627116 0.550745 0.526690 -0.024281 0.266194 -0.804071 0.022518 -0.471552 0.085728 1.225742 -0.851866 0.465570 -0.903715 -0.304322 -1.159666 -1.146707 0.106577 -1.095120 0.899484 0.896972 -0.655355 -0.068458 0.317045 0.315074 -0.552781 -1.536926 0.212043 -0.549029 0.655074 2.180494 -0.574622 -0.447782 -0.148865 -0.567399 -0.417552 1.720542 0.200715 0.436098 1.685172 2.149943 0.367540 -1.290587 -0.778683 0.325855 1.057330 1.433774 1.330758 -1.972969 -1.009767 -0.103803 -0.006736 -2.713124 0.303937 0.277583 1.304899 0.118772 -1.644308 0.811248 -0.975864 1.695006 0.870867 0.691629 0.501851 -0.244341 -1.430799 1.848548 3.175447 -0.518163 1.150701 -1.181783 -1.239003 1.826884 -1.174072 1.029655 0.309630 -0.264637 0.210405 -1.010851 0.053922 1.625199 0.336408 0.689219 1.157542 0.401086 -0.424135 -2.583527 -2.186198 0.286698 1.596599 -0.079141 2.959226 -1.625953 -0.951799 -0.533640 2.183390 -0.325503 -0.405155 0.320608 -1.019024 1.070876 -2.266237 -2.291159 2.810016 2.723826 0.379678 0.104039 1.689727 1.197154 -0.794518 -0.963811 -0.884159 0.690149 0.596144 -0.772409 -0.264037 0.015414 -1.525174 -0.790068 0.379609 0.678151 1.093075 -0.679901 -0.758650 0.031366 -1.835751 -1.629730 0.872198 -1.620538 -0.282455 0.528247 -0.037191 -0.191080 0.873974 -0.514082 -0.522722 0.511622 -0.812179 0.352343 0.735742 1.305952 0.315376 1.861400 1.662622 -0.026949 1.800965 1.056823 -0.699785 3.568218 -0.772808 0.509495 0.607802 1.139072 -0.021700 0.814996 0.737795 -0.862037 -0.573393 -1.996224 0.761021 0.107592 0.965037 -1.871153 -1.376684 -2.128098 -0.910659 0.920078 1.273769 -0.145131 3.186315 -0.254817 0.161065 -3.359113 -0.178288 1.377318 -0.000438 1.341786 0.935143 -1.221784 -2.642682 -0.650277 -1.016476 -0.129062 -0.874007 -1.435511 -1.102941 -0.706677 1.216069 -0.755389 0.729202 2.202110 -0.148059 0.630321 -0.827410 -0.035579 -0.797626 -0.827633 0.754553 0.210278 -1.561904 1.866795 -0.259019 3.788375 -0.591063 1.368371 -1.187646 0.506038 -0.075607 -1.023335 -0.411235 2.300697 0.975768 0.417903 0.167761 0.140368 -0.726194 1.336172 -PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = -5.947080 0.618704 21.059788 11.606508 -9.472679 -17.076340 -8.805034 -21.687144 11.974000 1.910917 15.980296 2.679123 5.229876 -4.358987 2.759642 -0.440586 2.660045 -8.072967 0.505971 -6.153044 -1.576289 18.301023 10.858043 -13.445498 0.978293 -22.452506 9.815489 8.546281 8.140136 13.226235 0.424720 -2.414839 -3.154322 10.862214 -5.980481 3.368987 2.987450 3.137159 -6.021643 -0.437311 6.097298 8.167925 11.446560 -1.055592 16.148509 3.558195 11.133279 2.820917 -9.779338 -4.679043 -8.827820 17.744365 -13.224399 6.567434 -0.108160 6.405641 1.263856 -13.116103 -6.366327 -17.014859 -1.000580 3.296861 -9.415930 0.363737 -10.249257 4.927075 -0.977503 -5.088131 5.241501 0.001589 13.425763 4.215858 1.870190 -1.730925 -12.826494 3.733735 -1.396885 8.480687 8.316648 -5.047972 -5.257613 1.738356 -4.958109 -9.007501 6.658587 3.181928 2.392133 -0.616274 0.787286 -0.674125 -3.079890 -3.300834 -1.836143 8.974154 -10.075638 3.906277 0.717706 -2.747103 -7.944200 -3.728617 1.107717 -10.206400 5.424123 9.138457 -1.644629 -1.766803 -4.586952 1.930768 -10.009491 -13.203916 2.565118 -2.822057 1.464927 13.411296 -9.391300 0.821637 0.081109 -1.615628 -0.999150 13.883614 1.977128 6.502316 12.313219 17.519097 2.386551 -10.579061 -4.840839 3.327292 14.039639 11.486662 8.608163 -13.682838 -8.351226 -0.263473 -0.655345 -20.630120 1.066402 7.788955 11.414348 5.273187 -15.631344 5.157603 -5.561961 16.956166 10.063308 5.980877 2.822983 -0.294217 -13.130330 14.474772 26.630449 -5.059130 11.813452 -6.418175 -7.160054 16.746659 -14.347914 8.951412 5.245051 -0.091572 1.322674 -9.020731 -3.297017 12.583882 7.311574 8.734870 5.758850 4.436353 -0.114815 -21.711023 -19.273880 -1.953083 12.717844 0.183770 22.364975 -11.965138 -8.714419 -3.829408 15.517942 -3.142594 -6.718364 1.386159 -8.408118 8.280378 -21.973623 -17.636275 25.407726 24.130803 5.750319 3.719129 15.846616 12.721632 -7.047842 -4.581178 -5.192843 7.734351 3.633463 -5.835193 0.157793 -0.445226 -13.679083 -9.759773 0.164012 4.784978 2.927230 -3.706838 -4.350447 5.245625 -13.681193 -7.133245 4.224755 -13.457360 -6.623898 1.163541 0.159886 0.607255 4.458396 -5.295028 -0.497476 6.400716 -10.056365 1.477809 7.045844 10.532626 6.927671 14.962610 15.592242 -0.063076 15.532907 6.034801 -5.809772 24.112808 -5.337860 2.573032 3.566039 7.855375 2.126024 5.033598 4.671192 -6.495733 -4.875862 -14.586430 7.996838 2.467281 11.030166 -12.511456 -14.049401 -15.334904 -5.936979 10.759601 10.774365 -3.303761 25.982904 -3.107904 2.553327 -30.149799 -1.003901 10.683861 0.536375 8.243583 7.111187 -8.159095 -22.711905 -5.462388 -6.139417 -0.420029 -5.812529 -11.241742 -7.872433 -10.001817 12.996582 -10.461188 4.849002 14.088360 -0.591883 8.460248 -1.802033 -1.169792 -6.645867 -3.518444 4.301561 4.399394 -12.767392 16.365882 -2.786795 32.072760 -7.809946 10.992440 -9.732863 7.941782 -3.142011 -5.803401 -1.339805 18.697599 12.207449 1.924351 0.896841 0.165428 -6.227793 9.466926 -PE-benchmarks/bellman-ford-algorithm.cpp__main = -9.737842 -5.843880 12.323660 5.957881 -6.914705 -21.334724 -7.067787 -24.553247 13.228022 5.299612 20.993425 3.163850 12.537801 -11.779088 6.389438 9.048198 10.566417 -10.981083 1.383476 -7.916790 1.922598 23.823560 8.578913 -1.581056 0.491095 -13.460498 -1.143707 6.299564 5.719067 10.338573 5.224951 -1.306385 -2.250328 3.944832 -2.907779 14.876022 3.938229 3.628235 -8.639091 -4.148000 -1.472637 -4.607827 12.000367 -3.760918 20.877171 -5.995140 17.886180 2.153130 -10.513213 -10.709818 -11.249041 20.633170 -13.208772 2.833761 -1.003364 -3.561653 3.897469 -4.466643 -7.593211 -16.084011 -4.875176 -3.447479 -11.984064 0.527432 -4.559594 8.878348 -1.786095 -2.101953 -0.817560 -1.598844 12.068348 4.962265 2.356444 7.543482 -16.932243 0.444674 0.200484 3.645125 6.530756 0.310997 -3.207482 -6.060165 -4.719230 -8.210502 17.799916 4.309918 3.736630 4.742646 -13.646413 9.169018 -7.628608 -2.345234 3.662528 1.538014 -13.758954 -1.959626 15.435486 -5.717940 -8.120521 -6.579098 4.095848 -7.123434 1.118109 5.742173 6.891847 -2.200031 -18.111475 0.319258 -20.724253 -13.209326 5.846328 -4.836819 -7.267326 11.470351 -16.466306 4.883117 -5.663853 2.794499 1.038247 10.291903 5.390111 10.836762 8.270535 14.124365 3.540305 -11.293337 -5.982339 4.996212 22.748011 6.504389 3.202447 -6.709529 -9.569740 5.609374 -9.981358 -18.588558 -12.207330 17.546932 15.134411 8.987828 -12.106020 4.596490 -0.878606 18.129387 13.377110 0.422326 -0.125402 3.117702 -15.670826 11.529380 18.006622 -6.451481 16.598926 -0.622726 0.272675 14.275461 -15.638249 3.613526 9.323680 -2.820045 -6.688906 -4.582818 -4.583223 8.381071 13.145136 9.265904 -9.553002 9.945032 -3.535071 -19.236055 -24.763061 -4.829057 15.807697 3.473954 16.120267 -10.846196 -11.386785 0.428600 9.895212 -5.489161 -14.995579 3.452130 -13.716522 8.453558 -24.462786 -16.047890 33.485673 23.205795 15.506421 8.175679 14.346207 16.136272 -16.693524 0.008686 -1.573143 9.978859 3.105286 -22.521473 -2.671841 1.303447 -17.208172 -14.580203 -6.635273 5.817746 -9.536478 6.152630 13.208972 1.945832 -5.071053 5.358201 3.232701 -7.096250 -9.757682 -3.273129 0.102379 6.038737 3.844127 -7.224737 8.250356 5.767879 -16.293715 -0.555901 4.473059 10.295074 12.878307 20.382813 24.783967 -3.833494 19.243735 -5.279131 -9.547325 6.962631 -3.919670 3.536149 -2.900952 5.311181 8.116223 -0.146138 9.994577 -5.566078 -7.795662 -11.071527 0.078404 10.289286 14.132254 -1.426851 -18.882977 -18.939525 -0.129059 8.311858 15.973955 -6.999320 20.604059 -11.332845 4.158007 -31.333609 2.824745 4.818901 0.300335 3.382220 2.777766 -4.868685 -16.093420 -4.792671 -11.322867 -11.906544 -2.611810 -8.585509 -4.750087 -17.835032 19.571444 -18.870031 -2.219479 4.406556 1.746521 16.443666 7.461759 -1.384789 -10.363079 7.623649 5.544010 3.639828 -9.173197 15.005372 1.489028 35.039997 -4.698655 6.752724 -6.324658 14.165663 -6.168605 -9.843287 -0.287203 15.783533 22.829771 -3.944092 1.090864 -0.060186 -0.597522 9.031629 -PE-benchmarks/bellman-ford-algorithm.cpp___GLOBAL__sub_I_bellman_ford_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/dfs.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/dfs.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = -0.190463 0.133728 1.257446 0.344584 -0.623937 -1.634691 -0.524524 -2.098261 0.871996 0.435050 1.271753 0.118420 0.802396 -0.328718 0.149199 0.433836 0.307195 -0.516292 0.228120 -0.546992 -0.508622 1.492837 0.304550 -0.067300 0.095507 -1.339811 0.941518 0.522484 0.604105 1.029258 0.271443 -0.105256 -0.255992 0.649502 -0.206666 0.636000 0.077557 0.559018 -0.337703 0.175353 0.190510 -0.149499 0.851270 0.131024 1.244945 0.455452 0.705696 0.300718 -0.373422 -0.545387 -0.572718 0.839811 -1.012278 0.362504 -0.529398 -0.106095 0.148115 -0.413232 -0.231360 -0.717346 -0.144551 -0.287690 -0.956082 0.160444 -0.839813 0.363495 -0.454319 -0.572355 -0.198703 -0.073011 0.900504 0.270012 -0.117155 0.180575 -1.558279 -0.030828 0.060001 0.267160 0.758260 -0.330474 -0.460785 -0.178102 -0.779005 -0.926536 1.082913 0.677311 0.318355 0.215147 -0.524810 0.010139 -0.455651 -0.017515 0.470753 0.781011 -0.597657 0.117777 0.165294 -0.229401 -0.681284 -0.994430 0.436172 -0.638574 0.478023 0.172227 0.137989 -0.306369 -0.438318 0.085498 -0.840168 -1.030934 0.158467 -0.608223 0.190752 1.059625 -0.496824 -0.037994 -0.367325 -0.326129 0.191690 0.861477 0.598592 0.189151 1.098097 1.016099 0.326319 -0.922591 -0.718886 0.443326 0.840848 0.667107 0.327549 -0.964183 -0.641511 0.257628 -0.570045 -1.577515 -0.297449 0.635620 0.699155 -0.326661 -0.551899 0.645831 -0.479060 0.655105 1.093256 0.351615 0.235093 0.114575 -0.931481 0.774849 1.729152 -0.283532 0.812933 -0.504165 -0.379479 1.222461 -0.900372 0.391682 0.498315 -0.217113 -0.474615 -0.386455 -0.012422 0.861794 0.376970 0.693497 0.220427 0.542466 -0.502100 -1.117232 -1.406991 -0.156200 1.558408 0.280655 1.422191 -1.056361 -0.315646 0.136512 1.031399 0.076870 -0.586175 0.298864 -0.622598 0.696449 -1.704612 -1.200865 1.752822 1.342880 0.947999 0.098941 0.698793 0.985333 -0.753018 -0.445793 -0.403325 0.605818 0.062939 -1.181880 -0.305798 0.021816 -1.203169 -0.570215 -0.229293 0.480847 0.103380 0.096337 0.370351 -0.187058 -0.499520 -0.569442 0.403600 -0.632888 -0.429982 -0.056897 0.018349 -0.079945 0.201223 -0.363062 0.353095 0.437553 -0.693521 0.342265 0.628575 0.359932 0.339388 1.568077 1.274309 -0.520699 0.657187 -0.064412 -0.246828 1.189198 -0.225265 0.390486 0.265978 0.741112 0.276497 0.281020 0.776366 -0.523552 -0.570331 -1.054044 -0.019327 0.657362 0.741133 -0.002710 -0.856839 -1.525029 -0.153963 0.329575 1.499823 -0.195592 1.678486 -0.262881 0.625189 -1.692185 0.198749 0.355525 -0.206954 0.561228 0.350480 -0.536606 -0.666724 -0.448492 -0.757877 -0.894658 -0.285486 -0.521750 -0.592057 -0.617223 0.344575 -0.864639 -0.036060 0.483969 -0.077601 0.616799 -0.325330 0.056043 -0.724280 0.261525 0.891409 0.010910 -0.876803 0.874329 0.055016 2.382786 -0.277690 0.859055 -0.328675 0.724567 -0.348234 -0.690522 -0.236157 1.350073 0.948549 0.088995 0.083996 0.075203 0.196868 0.621834 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = -0.923962 0.405974 5.840504 2.231109 -2.947535 -5.322836 -2.413919 -9.436253 4.742135 1.435949 4.886772 0.920738 2.542069 -2.311487 0.382918 1.364319 1.403314 -2.417675 0.675623 -2.038505 -0.169238 6.634188 1.252618 -1.431332 0.124800 -6.849022 2.296188 1.825376 3.780885 2.903856 1.235596 -0.970027 -1.689589 2.649860 -0.834684 2.142802 1.555380 1.276315 -3.240777 -0.582125 0.202905 0.904272 3.344900 -0.419677 5.852740 -0.776523 3.389884 1.174068 -1.750435 -1.518928 -2.338930 5.836512 -3.299921 1.901642 0.829206 -0.251139 -0.412618 -2.614295 -1.349841 -2.230626 -1.051561 -0.486832 -2.756590 0.528122 -2.749951 1.610893 -0.962217 -1.144412 0.308612 -0.436337 3.899591 1.139780 0.970564 0.505729 -6.124712 0.627996 -0.286153 1.684699 2.909679 -0.106358 -0.436599 -0.647902 -1.980482 -3.358757 3.540906 3.584676 0.101339 0.149193 -1.953423 0.359175 -1.511220 -1.610725 0.961481 2.566958 -4.391357 0.381607 -0.310695 -1.031319 -2.223873 -3.348661 1.061008 -2.767341 1.851832 0.490105 0.542172 -0.656968 -0.709574 0.168126 -2.917717 -3.488923 1.298409 -0.940160 1.019032 5.531190 -2.501764 -0.103242 -1.442039 -0.767543 -1.085782 3.237991 1.637861 1.899565 3.840970 4.918906 1.875929 -3.456450 -2.542824 2.723663 3.860236 3.039230 1.571823 -4.395246 -2.067027 1.117435 -0.560403 -6.476560 -1.263882 2.623157 3.523486 0.430400 -2.060858 -0.173341 -1.131506 4.542803 3.107830 0.429553 0.736958 0.572331 -3.643990 3.795723 7.256391 -0.814747 3.122105 -2.008469 -0.576330 3.644585 -4.481947 2.487524 1.336243 0.161565 -1.064361 -2.211641 -0.685435 3.333002 1.407633 2.238310 -0.427613 2.204454 -2.004367 -6.046720 -6.483128 -0.614255 4.794269 0.161737 5.327489 -3.576095 -3.012149 -0.260623 4.661072 0.126295 -2.368293 2.114604 -3.917725 3.012680 -4.769441 -4.916647 7.740219 7.750279 2.792791 0.094620 4.161044 3.909347 -5.024194 -2.298823 -1.467550 2.116544 0.735625 -5.418718 -1.069015 0.236009 -4.579114 -3.155880 -0.275959 1.598795 0.980004 1.280678 2.152190 1.197269 -2.414155 -2.103765 2.944256 -2.048196 -1.963654 -0.265577 0.673608 0.224033 2.204275 -2.362147 0.679940 2.568855 -2.809200 1.143399 2.445626 1.989910 0.979243 5.322915 4.839129 -0.281360 5.410047 0.399732 -1.905030 5.389967 -1.106248 1.206276 0.738855 0.772428 0.254495 1.380615 1.751957 -2.425231 -2.464237 -4.022209 0.310493 0.534443 3.731255 -1.305886 -5.335602 -4.900001 -1.225744 2.076155 2.979988 -0.343707 7.176780 -2.136846 1.535095 -8.772591 0.323904 2.798455 -0.232903 2.854630 1.393982 -2.323470 -4.294688 -1.525859 -2.891435 -3.492874 -1.500180 -3.411827 -2.230012 -4.233651 5.122562 -3.315982 0.299637 3.170702 0.146802 3.439262 -1.727034 0.112734 -3.014962 0.560953 2.050924 0.186998 -3.934069 4.141198 -0.401438 10.422377 -2.188992 2.523365 -1.977363 2.664790 -1.607580 -3.253927 -0.414187 5.507786 4.087000 0.694695 -1.107546 -0.508889 -1.508658 2.569020 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -0.548315 0.459184 3.338126 1.956771 -1.969576 -3.327328 -1.395814 -4.152322 1.979955 0.309814 2.568559 0.343105 1.096661 -0.828362 0.231389 0.014886 0.706024 -0.865221 0.053654 -1.244894 -0.988880 3.027995 1.116420 -1.898077 0.362949 -3.428532 2.144321 1.540424 1.385011 2.162849 0.345225 -0.300549 -0.848131 1.751142 -0.841440 0.499645 0.328682 0.675341 -1.261468 0.065141 1.014501 0.792417 2.195219 0.005100 2.461236 0.865460 1.637197 0.754631 -1.540367 -0.790076 -1.346466 2.487133 -1.935297 1.214789 -0.269764 0.607741 0.478894 -1.869499 -0.674420 -1.975493 -0.203365 -0.048588 -1.707163 0.117016 -1.981062 0.651833 -0.490018 -1.279408 0.679233 -0.180111 2.075115 0.463972 -0.086457 -0.384602 -2.589064 0.301385 0.045494 1.338950 1.617625 -0.499512 -0.530227 0.001366 -1.436313 -1.669246 1.360361 0.743475 0.628325 0.157671 -0.351498 -0.564341 -0.305409 -0.481157 0.392555 1.478612 -1.532082 0.470450 -0.418945 -0.554340 -1.577343 -1.542386 0.549406 -1.402989 1.120240 0.968726 -0.558806 -0.270659 -0.251132 0.264796 -1.349438 -2.205557 0.300906 -0.860327 0.633617 2.739416 -1.082115 -0.432782 -0.435135 -0.660047 -0.227840 2.192598 0.671221 0.681058 2.312262 2.800045 0.582642 -1.893734 -1.213507 0.607403 1.795732 1.857389 1.391533 -2.296540 -1.432571 0.196996 -0.499995 -3.628636 -0.026027 0.949920 1.958537 0.289140 -2.027276 1.023451 -1.197327 2.197220 1.559302 0.964755 0.577036 -0.066369 -2.127271 2.244013 4.129064 -0.687217 1.754567 -1.265830 -1.281101 2.593074 -1.779326 1.131057 0.790503 -0.412386 -0.169157 -1.137221 -0.164572 2.061908 0.737553 1.096867 1.045699 0.906087 -0.766737 -3.330694 -3.224466 0.088555 2.608227 0.340598 3.684276 -2.293785 -1.129734 -0.451859 2.648312 -0.388521 -1.054704 0.538878 -1.496127 1.508702 -3.407794 -2.911320 4.053639 3.573552 1.065375 0.262318 2.195193 1.841325 -1.423373 -1.096715 -1.151551 1.144640 0.703628 -1.473509 -0.222508 0.017254 -2.400523 -1.300220 0.190859 1.008627 0.891164 -0.665851 -0.241937 0.020243 -1.997625 -1.749036 1.066994 -1.907758 -0.631935 0.383538 -0.092780 -0.064048 0.897989 -0.701998 -0.180545 0.692286 -1.372951 0.475853 1.056892 1.592458 0.715198 2.917651 2.555954 -0.382810 2.347545 0.812166 -1.039194 4.158739 -0.903677 0.788686 0.643626 1.572999 0.344600 0.851235 1.269900 -1.174543 -0.902335 -2.534201 0.649277 0.617573 1.691568 -1.953184 -1.960063 -3.212488 -0.903489 1.137109 2.229848 -0.473555 4.161233 -0.637181 0.561455 -4.539820 -0.029510 1.630990 -0.119729 1.524861 1.025109 -1.508028 -2.997227 -0.864744 -1.538300 -0.561355 -0.903298 -1.554802 -1.512846 -1.231199 1.604059 -1.476855 0.591330 2.341830 -0.347245 1.185177 -0.862861 -0.022054 -1.071833 -0.577380 1.190414 0.380369 -2.176002 2.567200 -0.170506 5.392970 -0.656987 1.862359 -1.333697 1.121847 -0.485003 -1.506585 -0.552079 3.051963 1.894539 0.401824 0.221855 0.232279 -0.588176 1.659490 -PE-benchmarks/dfs.cpp__main = 1.330884 0.823982 1.520579 -0.279304 -0.922337 -2.240437 -0.421086 -3.526564 1.195723 0.174942 0.810934 -0.093976 0.686533 -0.028670 -0.023483 1.704264 0.912748 0.020182 0.298655 -1.033709 -0.454018 1.790405 -0.871444 0.818688 0.528264 -2.068057 0.049845 0.797926 1.813734 0.440118 0.749956 -0.433950 -0.682856 0.370968 -0.080215 0.306282 0.580999 -0.159963 -2.534242 0.926515 -1.070057 0.059453 1.206444 -0.095839 1.168667 0.006675 0.923759 1.142653 0.295525 -0.125867 -0.901823 2.169741 0.254786 0.674727 -0.092393 -0.668056 -0.705311 -0.342897 -0.176240 1.910237 -0.837237 -0.159316 -0.726737 0.332960 -1.031741 0.180963 -0.982236 -0.743283 -0.148314 0.085239 0.829360 0.021566 -0.308067 0.043365 -2.895630 -0.164612 0.094514 0.967444 0.661316 -0.212049 0.868558 -0.064718 -1.103377 -0.890767 1.028092 2.176445 0.157092 -0.101624 -1.507857 -0.716442 -0.717008 -0.496820 1.073454 0.273863 -1.495396 -0.034884 -1.523105 -0.485636 -1.256120 -2.280988 0.534336 0.062476 0.809868 -1.926958 1.053512 0.148423 0.764519 0.216527 0.046764 -0.581443 0.175210 0.196300 0.335934 2.954785 0.109345 -0.691766 -1.138350 -0.482657 -1.566022 0.662105 0.687719 0.018103 1.091359 1.230847 0.730727 -0.694883 -1.257599 0.613982 0.245599 0.868061 0.935468 -0.888581 -0.663873 0.362564 -0.458053 -1.972271 -0.492884 0.226552 1.064447 -0.894404 1.201031 -0.973879 -0.719705 0.960578 0.270382 -0.613350 0.540010 -0.319638 -0.775129 0.990482 2.068433 -0.148474 0.751671 -1.552542 0.526529 -0.055927 -0.269378 0.389528 0.066221 -0.461023 -0.846270 0.111739 0.087759 0.561657 0.114383 -0.181968 0.003590 0.734890 -1.536775 -0.949344 -1.616269 0.051715 0.863303 -0.588098 0.806070 -0.810448 -1.002440 -0.575002 1.057633 0.253371 -0.363779 1.345692 -1.815888 0.658928 -0.141394 -0.834059 1.824210 2.587474 1.000022 -0.620465 0.783669 0.970000 -2.653177 -1.310126 -0.100563 0.314201 0.075928 -3.452898 -1.156632 0.216199 -1.188522 -0.219213 -0.113969 0.854919 0.561971 1.755550 1.998225 -0.407271 -0.960516 -1.149810 1.465668 -0.129099 0.212760 0.633502 0.057156 -0.392788 0.975019 -1.069521 0.173360 1.128254 -0.644049 0.866601 0.524665 0.433218 -0.446574 1.305046 0.969279 0.528717 2.678904 -0.185100 -1.129150 0.969198 -0.041590 0.992818 -0.088547 -0.571347 -0.937808 0.345727 0.314904 -0.575214 -1.278146 -0.861541 -0.605803 -0.048035 0.814825 1.606410 -1.576427 -1.428376 -0.276402 -0.137762 1.177259 0.310998 1.194772 -0.962552 0.899462 -1.945045 0.460927 -0.007319 0.082110 0.818859 0.164602 -0.813312 0.130467 0.187218 -1.675617 -2.402831 -0.224883 -1.342570 -0.930662 -1.032373 1.347840 -0.567954 -0.496280 1.002150 -0.196613 1.245625 -1.260821 -0.052641 -0.828565 0.323370 1.975127 -0.419771 -0.980901 0.118990 0.172439 3.211995 0.480535 0.626396 0.041181 -0.498704 0.253804 -1.572246 -0.569318 1.311673 0.842795 0.271934 -0.546728 -0.687005 0.383491 0.315257 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/dfs.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/dfs.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/dfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/dfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/dfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/dfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/dfs.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/dfs.cpp___GLOBAL__sub_I_dfs.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/tug-of-war.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = -3.360612 0.298718 13.776361 9.617150 -6.078436 -9.718459 -5.308598 -12.062950 8.516891 0.164315 7.955489 1.871388 2.387555 -3.994152 0.122243 -2.141758 1.421319 -4.516794 0.395825 -3.678670 -0.124438 12.988483 6.913011 -12.136383 0.180085 -16.889396 9.459320 5.449894 6.169343 10.888134 0.298206 -0.865893 -1.154049 7.696062 -4.282571 -0.276722 1.670085 1.310438 -4.666455 -0.409086 4.969590 7.942146 8.107374 -0.502225 9.157497 3.091274 6.116056 1.940045 -5.381097 -1.505910 -6.177283 9.907544 -7.439761 4.840242 -0.543800 4.329252 2.173665 -9.294170 -3.691122 -11.393079 -0.710362 3.159365 -5.583803 0.127658 -8.249678 2.756971 -0.764918 -3.362295 3.727610 0.363268 7.896893 3.624037 2.358135 -4.321433 -8.890583 3.877787 -1.044687 6.366314 5.912138 -3.021084 -3.115086 1.620900 -3.541765 -5.497258 2.594590 1.559228 0.665341 0.190560 3.752569 -3.259969 -2.309420 -2.191328 -1.915149 5.843998 -3.936056 3.419156 -1.421584 -1.110048 -3.318339 -1.398048 0.390906 -6.361884 3.018866 6.272483 -2.028150 0.157516 0.434396 1.188975 -4.335335 -7.420909 2.521111 -2.117581 1.720700 10.135534 -3.870342 -0.931261 -0.614770 -0.589514 -1.248742 10.272483 -1.295629 4.647998 7.033754 11.276634 0.813906 -6.713433 -1.939387 3.120745 7.501682 6.763199 6.328131 -9.138757 -5.464148 -1.885608 2.514204 -12.234814 1.651037 3.586773 6.764578 2.184181 -10.087146 4.667154 -3.925179 11.736992 5.711537 2.517859 2.294663 -0.475253 -8.718448 10.492187 18.663776 -2.373227 5.559589 -6.972486 -6.157117 11.532014 -7.324648 6.208654 0.367575 0.020233 2.260094 -5.868414 0.436173 8.117572 2.782361 4.177353 6.396296 2.135735 1.936743 -14.418220 -11.308038 -0.346178 7.126772 0.234068 16.489819 -7.228492 -4.220751 -3.986421 8.474778 -0.775255 -1.571922 0.625321 -5.735249 5.011892 -16.295697 -12.165964 16.653173 14.397187 2.243941 2.327193 8.819117 7.722983 -0.552070 -3.458186 -2.877640 4.326182 3.330522 -1.313539 1.147219 -0.279411 -7.801824 -7.285645 2.504490 2.681163 5.097156 -5.370477 -5.576729 0.811864 -10.143835 -7.663851 3.518712 -9.807973 -3.905397 2.419627 0.329916 -0.262121 3.796529 -1.549978 -0.351968 3.798479 -3.679956 -0.107620 3.493797 7.270541 2.464538 5.485574 9.797449 0.894862 9.396859 6.207285 -3.525170 19.737075 -3.912378 1.198815 3.407850 4.034854 2.347374 3.673905 1.614336 -4.277657 -0.059101 -10.297377 7.436154 0.851374 6.288888 -12.835313 -8.076209 -9.186941 -4.509625 6.477007 5.430624 -1.233718 17.538312 -2.278879 -0.676109 -18.834428 -1.245383 8.844401 1.943597 6.695126 5.643609 -6.159774 -14.380289 -3.476269 -3.663611 3.749020 -5.979148 -8.472194 -5.898654 -3.451139 7.983876 -6.118872 5.176069 12.457880 -1.198828 4.188600 -3.799763 -0.474358 -4.799958 -4.600545 -0.206822 3.294903 -7.518839 9.758515 -3.673364 17.530528 -5.621214 6.991123 -7.223978 6.248096 -2.552559 -4.267814 -1.050002 12.197933 4.671156 0.580048 2.233033 -0.528416 -4.088041 7.322657 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -2.129342 0.814654 12.232832 8.254428 -6.091472 -9.338820 -5.074658 -13.520337 7.772660 0.748718 8.128393 1.606385 2.469213 -2.945413 0.443148 -1.065242 1.187783 -3.364028 0.184336 -3.492885 -1.262487 10.839129 5.413050 -9.102024 0.558247 -13.324700 6.830630 4.917363 5.947512 7.525877 0.493351 -1.547717 -2.197585 6.562655 -3.640337 0.620780 1.267033 1.587809 -4.980936 -0.547551 3.669617 5.497742 7.010065 -0.382857 8.982093 1.554175 5.815053 1.879853 -5.096278 -1.400987 -4.781719 10.029493 -6.784851 4.335124 0.428123 3.606435 0.414020 -7.826772 -3.280838 -8.064450 -0.452279 2.091363 -5.204925 0.278925 -6.795704 2.370122 -1.041386 -3.296399 3.335273 0.008304 7.635433 2.385528 1.094173 -2.791193 -8.245380 2.194325 -0.915571 5.111944 5.289422 -1.966202 -1.730181 0.986363 -3.244614 -4.997876 3.254760 2.436264 0.591847 -0.292780 1.482463 -2.407741 -1.063187 -2.416961 -0.543106 5.184245 -5.626675 2.781251 -2.140542 -1.268241 -3.667794 -2.877572 0.776530 -5.625597 3.832744 4.173781 -1.612075 0.025446 0.917858 1.403553 -3.913665 -7.256752 1.233117 -1.086091 2.380873 9.544817 -3.820927 -1.145089 -0.352610 -1.294703 -2.059987 7.912920 1.134419 3.487486 7.241470 10.270045 1.712022 -6.117644 -2.935832 2.807172 6.169745 7.116933 5.171997 -8.129534 -4.488220 -0.374670 1.234361 -12.084075 1.005481 3.060760 6.212540 2.021975 -7.757840 1.839095 -3.353880 9.375132 4.821098 2.982137 2.172846 -0.274162 -7.055289 8.602641 15.507842 -2.003425 5.346237 -4.738489 -4.617690 8.748779 -7.377869 5.265504 1.437451 -0.060268 1.518879 -5.215761 -0.818093 7.129478 2.237051 3.637348 3.842949 2.558276 -1.053762 -12.548759 -10.474791 -0.065028 7.028086 0.323370 13.146339 -6.734012 -4.967606 -2.543282 8.673357 -0.580798 -2.328758 1.772077 -5.527900 5.061779 -12.039162 -10.288653 13.657626 13.448303 2.851352 0.736392 8.540410 6.527707 -3.751377 -3.810775 -3.478124 3.769349 2.975641 -2.931043 0.042390 -0.397558 -7.441126 -5.430173 1.670031 2.705716 3.613965 -3.041102 -2.878397 1.851758 -8.106174 -6.003028 4.206361 -7.687206 -2.571770 1.110479 0.126071 -0.278001 3.458935 -2.872874 -0.954801 3.318630 -4.012501 1.309164 3.773913 5.869778 2.030989 7.414154 8.587137 0.397134 9.301875 4.449852 -3.622274 16.049689 -3.239319 1.813364 2.548679 3.513793 0.437513 3.055428 2.165279 -4.109076 -2.335812 -8.308348 4.263243 0.672629 6.380936 -8.633261 -7.558124 -8.557196 -3.985925 5.238705 4.782993 -0.802688 14.895063 -2.400422 1.147632 -16.716300 -0.826660 7.255998 0.585243 6.152661 4.157271 -5.311333 -12.439384 -3.019756 -3.777364 0.765743 -4.081776 -7.109807 -5.130511 -4.793687 7.475954 -4.762078 3.358280 9.641404 -1.293971 4.225946 -3.882253 -0.348743 -3.391783 -3.177494 1.577871 2.223859 -7.991955 8.978665 -2.112298 18.158030 -4.103788 6.061582 -5.963963 4.031760 -2.385597 -4.068932 -1.054460 10.743889 5.753565 1.610678 0.117655 -0.122785 -4.167567 5.108749 -PE-benchmarks/tug-of-war.cpp__main = 0.049975 0.297364 1.045537 -0.099284 -0.604113 -1.323405 -0.473096 -1.984599 0.604399 0.376029 1.031430 -0.137123 0.659387 -0.078766 0.048555 0.475315 0.461684 -0.484719 0.373698 -0.574536 -0.569415 1.128463 -0.070334 0.472644 0.197004 -1.249676 0.722818 0.250859 0.541343 0.775150 0.360022 -0.122285 -0.416673 0.404478 0.092684 0.547311 0.355307 0.372435 -0.530546 0.493233 -0.110357 -0.262756 0.735169 0.053084 0.907013 0.510717 0.238865 0.462384 -0.274671 -0.472925 -0.277924 0.521218 -0.612659 0.250340 -0.220899 -0.353324 -0.012803 -0.269568 -0.189508 0.081288 -0.318879 -0.544348 -0.577116 0.329595 -0.703028 0.320971 -0.684129 -0.459157 -0.155513 -0.112943 0.627535 0.219872 -0.051725 0.490276 -1.339870 0.037797 0.187401 0.280783 0.521021 -0.360024 -0.100227 -0.019664 -0.819065 -0.838396 0.784585 0.951351 0.334703 -0.017636 -0.656228 -0.004799 -0.297411 -0.078778 0.583537 0.589722 -0.485360 -0.080693 -0.323345 -0.329426 -0.732712 -1.430686 0.340143 -0.369954 0.512950 -0.145457 -0.036712 -0.300438 -0.254308 0.150129 -0.469694 -0.756021 0.204502 -0.455777 0.295881 1.254440 -0.307225 -0.188942 -0.722827 -0.421080 0.055184 0.582892 0.507386 0.072405 0.867277 0.842317 0.346155 -0.681751 -0.804041 0.323942 0.489763 0.358045 0.428137 -0.813427 -0.550562 0.278668 -0.634941 -1.235126 -0.479502 0.174435 0.613076 -0.530084 0.023797 0.275970 -0.554896 0.445519 0.777680 0.147996 0.190731 -0.027683 -0.717521 0.648759 1.181195 -0.232965 0.656974 -0.608847 -0.180270 0.672330 -0.447823 0.241492 0.363296 -0.172375 -0.643888 -0.226009 0.051533 0.586558 0.252510 0.470225 0.050710 0.475938 -0.561479 -0.689497 -1.121403 0.069844 1.277977 0.039717 0.823940 -0.893904 -0.264959 0.076711 0.981487 0.322520 -0.546696 0.410632 -0.549573 0.464823 -0.987321 -0.883891 1.291098 1.258347 0.783021 -0.071343 0.331546 0.749732 -1.148054 -0.514296 -0.397835 0.532694 -0.221502 -1.529814 -0.593200 0.161775 -0.852716 -0.298284 -0.240925 0.564689 0.435893 0.313064 0.574419 -0.151619 -0.359345 -0.569292 0.642876 -0.285963 -0.337761 0.137093 -0.030489 -0.016374 0.295973 -0.350285 0.294554 0.420305 -0.551754 0.370603 0.603305 0.288844 -0.007718 1.331900 0.855910 -0.306606 0.464973 -0.205636 -0.304925 0.706703 -0.144571 0.475250 0.098572 0.319935 -0.011713 0.171480 0.726211 -0.381015 -0.807944 -0.753921 -0.249316 0.321820 0.545849 0.360414 -0.920489 -1.359449 0.030743 0.095902 1.312012 0.081207 1.207566 -0.175657 0.539351 -1.091039 0.204236 0.142625 -0.141756 0.514428 0.159691 -0.430685 -0.168557 -0.239499 -1.022259 -1.069945 -0.186900 -0.432764 -0.535949 -0.434950 0.438071 -0.343673 -0.234819 0.332621 0.020429 0.588150 -0.062396 -0.070491 -0.736153 0.259888 1.036003 -0.218505 -0.609065 0.645236 0.217591 1.910195 0.027555 0.463489 -0.022702 0.206589 -0.032901 -0.710984 -0.249612 1.009797 0.734153 0.159079 -0.118866 -0.128010 0.324932 0.394615 -PE-benchmarks/tug-of-war.cpp___GLOBAL__sub_I_tug_of_war.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.046122 1.700708 9.956339 5.429706 -6.297374 -8.732042 -4.218260 -12.297655 5.221135 1.200315 6.668041 0.338730 1.181930 -1.350163 0.860971 1.705884 1.083268 -2.472214 0.791300 -3.482279 -2.974417 7.109144 3.808011 -5.021774 1.092433 -9.865941 5.815599 3.608194 4.457297 5.130256 1.677317 -1.878442 -2.185444 5.774232 -1.239838 3.017621 1.339179 1.683565 -4.055680 2.080320 1.719756 3.310695 5.414859 0.029141 8.333288 3.269200 5.295037 2.438678 -5.706882 -0.595158 -4.480957 9.109783 -6.277170 3.833661 -0.244100 2.277366 -0.469423 -6.376578 -2.780354 -5.069156 -2.186013 0.128125 -4.931225 0.795721 -6.097507 1.754220 -1.863871 -3.085607 2.026619 2.511155 6.872342 1.952715 0.016527 0.494909 -6.618680 1.420145 0.022585 4.703819 5.014971 -4.168063 -0.435738 1.028655 -2.894551 -4.941538 3.645018 1.871447 1.683170 -1.203528 0.864045 -1.504175 -1.778756 -2.296008 0.215053 4.970842 -4.670310 2.024742 -2.418060 -1.502300 -4.894605 -4.734816 0.660998 -4.266350 3.850433 2.155467 -0.610166 -0.615208 -0.600100 1.754698 -3.482903 -5.383761 0.787290 -1.213698 2.600772 7.520032 -2.380335 -1.065786 -0.208953 -1.849470 -1.455865 5.898711 2.726389 2.037336 6.934733 8.995792 2.996332 -4.507956 -3.735611 0.438537 4.459922 6.669497 4.643906 -6.444468 -4.470068 -0.093254 0.442673 -9.495641 1.081152 2.272591 4.870914 1.094555 -4.720891 -0.038344 -3.166402 7.391693 3.426648 3.111961 1.816150 -0.662579 -5.590444 7.077782 12.647177 -1.717913 4.549921 -3.402094 -2.066464 5.901639 -5.995878 3.628046 2.715808 -1.049227 0.242961 -3.922533 -2.299630 5.658219 3.181540 2.057254 3.490779 3.124027 -2.467524 -9.306443 -7.613090 0.611917 6.633936 -1.274145 9.646994 -5.934541 -4.049385 -1.955074 7.114107 0.384300 -2.175763 1.182355 -4.310363 4.141915 -8.074100 -7.745797 11.460168 11.277714 3.298297 -0.572418 6.262251 6.482750 -5.948576 -4.229530 -2.961352 2.702332 1.003252 -4.411144 -2.078463 0.503512 -6.615276 -3.634964 0.532386 2.906062 2.933172 -0.750019 -2.056937 2.578656 -6.345848 -4.086996 2.608591 -5.617432 -2.660927 1.464612 0.190490 0.681637 2.587737 -3.200488 -0.360587 2.717785 -4.418522 1.639488 3.805825 5.865120 1.743654 7.765341 7.124782 0.719853 8.262775 3.325496 -3.390884 10.943295 -1.288436 2.515972 2.311854 2.125141 -0.105946 1.729719 2.953403 -3.640363 -3.500520 -6.690538 2.398494 0.906030 5.323838 -4.129063 -5.766462 -8.140085 -2.594576 4.619431 4.428301 -0.795505 11.234750 -0.650234 1.728557 -12.646758 -0.547251 4.975473 -0.181901 4.859822 3.233571 -4.619043 -8.359291 -2.618010 -3.930225 -1.580877 -2.651602 -3.616504 -4.119681 -3.482562 5.054955 -2.590172 1.802021 7.141518 -0.676595 3.307374 -2.585482 -0.214747 -2.428283 -2.048217 4.783336 1.247086 -7.336903 7.175888 -0.621617 17.302203 -2.437375 4.392009 -4.096085 0.714107 -0.087135 -2.064884 -1.127103 8.840250 5.043019 2.279016 0.285962 0.452053 -2.659754 4.649573 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = -1.234873 0.506934 4.813904 3.191524 -2.547394 -3.920241 -1.926023 -5.152171 2.763878 0.303409 3.343637 0.638897 1.060177 -1.032107 0.387966 -0.676799 0.556509 -1.241457 -0.093072 -1.450172 -0.558357 3.650211 2.193412 -3.719716 0.325151 -4.739251 2.757588 2.083831 1.742038 2.848247 0.116408 -0.531547 -1.156574 2.669171 -1.422032 0.240886 0.750897 0.714011 -1.509586 -0.319686 1.526314 2.178802 2.737312 -0.060515 3.586053 1.119357 2.112605 0.856839 -2.296659 -0.762008 -1.401169 3.532803 -2.712392 1.911196 0.261903 1.476606 0.385196 -3.113920 -1.010469 -3.740543 0.089588 0.600101 -1.981095 0.019202 -2.597148 0.795344 -0.009233 -1.546692 1.281413 -0.264429 2.940452 0.591836 0.161473 -0.924061 -2.788292 0.634671 -0.190690 1.923673 2.143561 -0.881263 -0.945220 0.154673 -1.373567 -2.052785 1.063060 0.674491 0.522149 0.182340 0.395270 -0.744286 -0.045732 -1.052715 -0.197246 2.170513 -1.954364 0.927229 -0.319159 -0.569422 -1.773187 -1.130817 0.506397 -2.070969 1.534665 1.779046 -0.802692 -0.241953 -0.124721 0.594123 -1.712197 -2.776443 0.666070 -0.672229 1.074076 3.210377 -1.538755 -0.373723 -0.040083 -0.784779 -0.324991 3.194043 0.482256 1.097977 2.810920 4.063612 0.606122 -2.460843 -1.237892 0.764273 2.493913 2.823514 1.984022 -3.374317 -1.733820 0.154551 -0.135971 -4.602884 0.444204 1.258754 2.684308 0.848376 -3.493561 1.142113 -1.490643 3.420403 1.889344 1.588639 0.664649 -0.131103 -2.829527 3.105273 5.722168 -0.881225 2.239138 -1.390091 -1.732053 3.290045 -2.712172 1.931885 0.936866 -0.280953 0.451113 -1.796403 -0.415038 2.856883 1.338721 1.583665 1.492255 1.021474 -0.700117 -4.932847 -4.160019 -0.109346 3.026796 0.244533 5.133790 -2.829770 -1.881334 -1.059304 3.612578 -0.644727 -1.179389 0.489053 -1.877146 2.006683 -4.496239 -3.842730 5.261413 5.232460 1.246509 0.288194 3.312122 2.249023 -1.215755 -1.403563 -1.332526 1.348623 0.835170 -0.780538 0.061767 -0.181798 -3.103628 -1.951602 0.505308 1.159864 1.347056 -1.268469 -1.241418 0.827788 -2.975808 -2.376279 0.976169 -2.740919 -0.976218 0.495808 0.043081 0.112597 1.080116 -1.032050 -0.616890 1.195619 -1.805103 0.488764 1.499469 2.346265 1.081734 3.419365 2.928300 -0.042491 3.352556 1.619277 -1.419412 6.298133 -1.230196 0.923664 1.057680 1.920526 0.457543 1.187396 1.182132 -1.614508 -0.739460 -3.340292 1.386608 0.465385 2.559233 -3.693329 -2.932362 -3.695411 -1.375718 1.912408 2.096291 -0.742990 5.771917 -0.591491 0.611933 -6.473826 -0.309091 2.660798 -0.084616 1.913641 1.622809 -2.157587 -5.169127 -1.073686 -1.658208 -0.079282 -1.418116 -2.194207 -1.810745 -1.551646 2.453534 -1.725988 1.141085 3.573930 -0.459907 1.438331 -1.275051 -0.031023 -1.078385 -1.420073 0.929317 0.665156 -3.189004 3.513149 -0.462231 7.132768 -1.408338 2.537863 -2.151491 1.560499 -0.773418 -1.460290 -0.584465 4.181118 2.382009 0.676415 0.212635 0.243442 -1.515967 2.153891 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = -4.126505 2.972483 20.230069 12.833372 -11.170149 -16.081476 -8.160682 -20.889608 10.519711 -0.141402 13.037300 2.389476 2.753033 -2.936311 2.477889 -1.049631 2.146914 -5.143727 -0.129029 -5.784914 -2.400856 14.607760 9.372253 -15.095512 1.408550 -19.665287 9.120492 9.111879 8.154096 9.846858 0.189147 -3.151308 -4.584901 10.918409 -5.846121 0.260207 3.406694 1.887221 -7.949069 -0.174901 5.028851 9.290663 10.793244 -1.490758 13.910684 3.655468 10.795602 4.229720 -9.833851 -2.115260 -7.919639 18.555479 -10.676311 7.880540 2.564509 6.321418 0.597684 -13.407041 -5.328335 -13.718057 -1.241454 3.090046 -7.666919 -0.021483 -10.215821 3.436844 -0.079825 -5.734338 6.703078 1.769754 12.672531 2.756952 1.486232 -2.830395 -11.040628 3.324419 -1.392785 10.013971 7.988979 -4.506621 -2.013652 2.392012 -4.512184 -7.969335 3.522059 2.231059 2.286361 -1.838123 1.808090 -2.051650 -0.940859 -5.006910 -2.318742 8.078521 -9.534407 4.735900 -3.100132 -2.172466 -8.917240 -4.612851 0.631668 -8.577581 6.205160 6.608110 -2.084753 -1.273705 -1.333727 2.192742 -6.801932 -12.044781 2.081783 -1.083234 3.000484 13.654885 -6.901258 -0.174358 1.737424 -2.441390 -3.736045 12.657639 2.121805 5.493345 10.833006 17.763047 2.163564 -8.789422 -4.991793 1.690222 11.081455 12.452130 9.588405 -13.537977 -7.494835 -0.145587 1.025420 -18.902291 3.328411 6.532292 11.122973 5.565904 -13.873144 1.835014 -5.782195 15.885703 6.105708 6.434637 2.702184 -1.504885 -10.955870 13.904854 24.484767 -4.175965 10.172780 -5.562523 -5.508970 13.189894 -12.062407 8.456460 4.465050 -0.217708 2.379194 -7.891415 -4.281037 11.352516 7.135290 5.774248 7.419786 3.548359 -2.563687 -21.315041 -16.571307 0.062139 10.763692 -1.856576 19.893873 -10.758144 -9.479454 -4.707625 14.867664 -3.865537 -5.200776 1.847660 -8.278567 7.992410 -15.942845 -15.342662 21.768457 22.621547 2.848064 1.505860 15.116001 10.560119 -8.113315 -6.635137 -5.403819 5.728263 2.911095 -4.333726 -0.590418 -0.495096 -12.487885 -7.173189 2.092992 4.881627 5.294284 -2.880283 -5.447597 5.910543 -14.212331 -8.390866 4.081899 -11.663440 -4.432364 3.032981 0.093106 0.748489 5.086094 -5.065820 -3.043739 5.792412 -8.934651 1.715319 6.027251 10.554745 4.966887 14.395793 11.600177 2.551388 17.254132 7.777843 -6.828801 25.097770 -4.634197 3.610887 3.623815 6.576456 -0.339586 5.051543 3.905146 -6.330720 -5.237809 -13.743621 6.735159 -0.102735 10.566389 -13.616628 -12.875553 -13.710383 -6.556120 10.386089 6.821777 -3.249139 23.084329 -2.491576 1.823903 -28.159317 -1.469469 10.421870 0.180227 8.114496 6.726229 -8.416745 -21.915262 -4.272301 -5.741593 -0.527064 -5.784000 -10.315384 -7.243189 -7.907669 11.741319 -7.296732 4.603249 15.124509 -1.411262 6.721456 -4.084213 -1.023239 -3.989382 -5.801049 5.319075 3.124028 -13.292207 15.498261 -2.466592 31.569641 -6.021308 9.558658 -9.307576 3.615668 -1.122591 -4.671419 -1.582963 17.163034 9.918763 2.928726 0.117813 0.797281 -7.554428 8.475781 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.120680 0.262093 0.797966 -0.245528 -0.454973 -1.046110 -0.337541 -1.672780 0.436804 0.281408 0.823412 -0.160489 0.525740 -0.023274 0.092223 0.494395 0.430374 -0.349124 0.333115 -0.470442 -0.345047 0.758879 -0.207895 0.564905 0.194207 -0.919650 0.382382 0.179859 0.442940 0.490037 0.349354 -0.148055 -0.429874 0.210421 0.155223 0.463689 0.440715 0.212467 -0.583734 0.436285 -0.301403 -0.248990 0.509810 -0.021430 0.731154 0.313329 0.161272 0.446824 -0.151631 -0.359564 -0.195316 0.521556 -0.364278 0.182380 -0.052421 -0.403158 -0.137286 -0.141130 -0.156477 0.260875 -0.293632 -0.489039 -0.384683 0.286537 -0.478159 0.264438 -0.564513 -0.310643 -0.117840 -0.089024 0.461155 0.109600 -0.017738 0.546325 -1.083874 -0.021132 0.137274 0.247357 0.357625 -0.315530 0.096521 -0.034065 -0.600998 -0.612015 0.611323 0.878154 0.255258 -0.071426 -0.677356 0.101270 -0.244169 -0.128117 0.517504 0.352431 -0.458881 -0.122004 -0.356226 -0.278351 -0.585493 -1.251669 0.298592 -0.206175 0.405670 -0.293604 0.080110 -0.222890 -0.204709 0.178903 -0.349733 -0.540082 0.218122 -0.245663 0.211286 1.076435 -0.258689 -0.151478 -0.639661 -0.332851 -0.061605 0.374992 0.428045 0.090088 0.543862 0.663356 0.312116 -0.491130 -0.720040 0.282836 0.387762 0.284341 0.323641 -0.609678 -0.399430 0.273253 -0.595898 -0.935687 -0.442552 0.094635 0.539359 -0.401820 0.178894 -0.004528 -0.448633 0.351411 0.512288 0.066310 0.113016 -0.025050 -0.547552 0.463517 0.788149 -0.189642 0.545737 -0.416396 0.082953 0.215085 -0.257157 0.125350 0.303187 -0.120779 -0.516624 -0.106589 -0.076750 0.371191 0.314188 0.361955 -0.123072 0.434036 -0.600417 -0.502032 -0.849885 0.038388 0.966669 -0.131656 0.387113 -0.636683 -0.332485 0.023918 0.817504 0.220880 -0.485781 0.391225 -0.519331 0.346414 -0.473420 -0.570837 0.945071 1.081461 0.654002 -0.130848 0.214102 0.602693 -1.212049 -0.400004 -0.253856 0.376884 -0.285211 -1.495189 -0.593662 0.127016 -0.644519 -0.202380 -0.203324 0.488712 0.270200 0.529967 0.676766 0.040686 -0.210829 -0.353724 0.566586 -0.088392 -0.238156 0.128827 -0.017981 0.058864 0.253900 -0.423991 0.267203 0.483576 -0.500173 0.329558 0.494377 0.205660 -0.030311 1.098575 0.523213 -0.101338 0.509793 -0.255027 -0.365293 0.349735 -0.027817 0.438667 -0.005926 0.060627 -0.108529 0.085546 0.532703 -0.297073 -0.787644 -0.545561 -0.400594 0.174599 0.504928 0.616724 -0.854479 -0.998951 0.088347 0.048123 0.967690 0.088158 0.811334 -0.173130 0.467951 -0.760005 0.179111 0.044388 -0.150287 0.337743 0.049089 -0.287506 -0.081875 -0.096032 -0.899759 -1.107999 -0.115416 -0.341049 -0.387858 -0.452129 0.504630 -0.189010 -0.306184 0.148291 0.093496 0.546691 -0.004126 -0.087855 -0.552925 0.295528 0.892980 -0.229324 -0.516507 0.440669 0.259294 1.589133 0.099780 0.250331 0.053774 0.012969 0.020456 -0.530035 -0.186985 0.729806 0.662450 0.174425 -0.222919 -0.156160 0.240075 0.221213 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 0.327303 0.665291 2.620940 0.019245 -1.825021 -2.310971 -0.874841 -4.574674 2.012079 0.862025 1.618233 0.324106 1.225924 -1.217365 -0.460149 1.108209 0.895318 -0.704643 0.386916 -1.252237 -1.073506 2.143825 -0.421696 0.420916 0.699467 -3.110421 1.949758 0.015893 1.841919 1.543526 1.008499 -0.294810 -1.215917 1.244566 1.168770 1.475376 1.004240 0.717545 -1.513671 0.715670 -0.143570 -0.852861 1.404746 0.500915 2.500211 0.156528 0.255127 0.840832 -0.722702 -0.532749 -0.484970 1.236042 -1.474623 0.781959 0.063594 -0.387347 -0.601804 -0.862247 -0.064423 0.402941 -0.821824 -1.547832 -1.104546 0.586573 -1.606138 0.432836 -1.356743 -0.818107 -0.722670 -0.421563 1.171114 0.718576 0.216247 1.003459 -3.034315 -0.190534 0.518705 0.607047 1.745072 -0.162620 -0.064457 -0.723464 -1.542922 -1.879572 1.829037 2.010752 0.314000 0.114690 -1.025454 -0.262170 -0.682267 -0.348260 1.345354 1.399793 -2.102071 -0.585976 -1.312594 -0.660110 -0.913273 -3.365967 0.738080 -0.914960 1.062787 -0.724447 -0.638687 -0.211538 0.158468 0.343374 -0.579510 -0.762530 0.424876 -0.900592 0.882899 2.971905 -0.107789 -0.868523 -1.630345 -0.966048 0.024427 1.015778 0.723053 0.172333 2.306881 1.861980 1.425587 -1.522314 -1.525928 1.202835 0.594048 0.902748 0.817368 -1.953570 -0.893858 0.749103 -0.543988 -2.970273 -0.735800 -0.191569 1.104149 -0.759212 0.295981 -0.689827 -0.929455 0.852266 1.273906 -0.029395 0.400885 0.169631 -1.405765 1.275692 2.699296 -0.207782 0.912589 -1.396202 0.087311 1.044262 -1.301548 0.572191 -0.174614 -0.468449 -0.909788 -0.578525 -0.041232 1.410659 -0.375473 0.305080 -0.350440 1.027654 -1.541066 -1.859602 -2.289563 -0.100208 2.904525 0.231334 1.668692 -1.971783 -0.381146 -0.200125 2.109010 1.069209 -0.557173 1.179955 -1.559643 1.362120 -1.245343 -2.088997 2.950229 2.927821 1.406149 -0.369497 0.567413 1.317518 -3.067093 -1.367769 -0.823274 0.314699 -0.022916 -3.294511 -1.560323 0.502576 -2.044611 -0.829829 0.076400 0.963850 1.544576 0.741641 1.531013 0.423106 -0.205144 -1.841227 1.918451 -0.330860 -0.800782 0.193505 0.329843 0.232626 1.144147 -0.705438 0.236889 0.807797 -0.586441 0.809747 1.250629 0.798689 -0.403366 2.435572 1.913400 -0.473986 0.862797 -0.138476 -0.684185 1.498279 -0.197078 1.098794 0.687261 -0.094209 -0.075897 0.574525 1.459682 -1.148370 -1.157822 -1.589817 -1.024724 0.072007 1.297415 0.513273 -2.028677 -2.291796 -0.049082 0.113403 1.524473 0.276920 2.645784 -0.448960 0.947752 -2.479364 0.169640 1.253207 -0.236497 1.679196 0.588434 -1.199709 -0.465633 -0.795236 -1.930393 -2.014791 -0.555861 -0.131223 -1.145880 -0.712698 1.739365 -0.514053 -0.222647 0.980227 0.143604 1.634025 -1.050769 0.485286 -1.650130 0.539912 1.744363 -0.385006 -1.304463 1.318505 0.536519 3.816816 -0.090636 0.637985 -0.082249 0.279031 -0.153803 -1.706651 -0.710346 2.206447 1.334915 0.848538 -0.541422 -0.505407 0.044752 1.415582 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = -1.889451 -0.708601 3.351423 0.104309 -1.779273 -3.553520 -1.584255 -5.802523 2.616758 1.232638 4.215795 0.462397 2.255880 -2.161382 1.059964 1.499538 1.895535 -2.682079 0.816058 -1.569813 0.976684 3.842763 1.134824 0.554279 0.064803 -3.625417 -0.174482 0.716076 1.682327 1.894536 1.081236 -0.854152 -1.537714 0.925044 0.376841 2.873555 2.308305 0.651988 -2.130976 -0.320594 -1.040417 -0.753670 1.999406 -1.242695 4.653135 -1.417197 2.308679 0.825422 -2.155378 -2.032992 -1.317454 3.924140 -2.710515 0.618446 1.312601 -1.128940 -0.537525 -0.880365 -1.532672 -2.572819 -1.098986 -1.410086 -1.270919 0.607449 -0.769836 1.748559 -0.704875 -0.267773 0.046563 -0.677985 2.281632 1.206843 1.501511 2.926414 -3.231644 0.486456 0.263742 1.034584 1.327335 -0.348263 0.034730 -0.960416 -0.534561 -1.855599 2.555599 2.177166 0.547181 0.113624 -2.774284 2.555573 -0.979615 -0.903211 0.681139 0.558047 -3.220121 -0.778911 1.255522 -1.073606 -1.501912 -2.667574 0.550229 -1.512016 0.700029 0.824103 0.640595 -0.775858 -3.483224 0.384342 -3.704338 -2.247624 1.608489 -0.675038 -0.600056 3.017836 -3.334272 0.979906 -1.630019 0.174951 0.167334 1.587591 0.797015 2.199138 1.169532 3.280452 1.302085 -2.452284 -1.831432 1.467908 4.306626 1.409434 0.844180 -1.922122 -1.517382 1.162299 -2.034275 -3.848343 -2.279329 2.284000 2.940376 1.602068 -1.520977 -0.691202 -0.715626 3.933004 2.380813 0.193853 -0.162530 0.645665 -3.098113 2.429601 3.143189 -1.109792 3.311150 0.103645 0.815732 1.527547 -3.117802 1.215331 1.615899 -0.044391 -1.181013 -1.257706 -1.619165 1.627944 2.811169 2.403723 -2.598096 1.967547 -1.071890 -4.144671 -4.681927 -0.889009 3.582634 -0.188851 1.954616 -2.265323 -2.829315 0.081807 3.163798 -0.349268 -3.139551 1.057036 -2.677415 1.866008 -3.181739 -3.119362 6.080277 6.030599 2.760562 1.181763 2.590320 3.168082 -5.133899 -0.320103 -0.271542 1.625510 -0.653728 -5.772294 -1.547439 0.618658 -3.058372 -2.703118 -0.951726 1.351450 -0.896539 2.206752 2.843174 2.441477 -0.463571 0.740778 1.488049 -0.827848 -2.351588 -0.442169 0.452371 1.826267 1.150618 -2.252829 1.389614 2.162258 -3.275892 0.399783 1.551508 1.924080 1.942964 4.207678 3.601794 -0.084926 3.591561 -0.965984 -1.958126 1.102698 -0.615891 1.036354 -0.254526 -0.074060 0.804241 0.137514 1.779995 -1.487425 -2.152359 -2.249060 -0.978906 0.810884 3.239573 0.552432 -5.207968 -3.184455 0.470812 1.896794 1.970310 -0.832802 4.212967 -1.621941 0.900748 -5.797188 0.205020 1.221025 -0.107050 1.257627 0.522646 -0.879533 -3.493911 -0.947592 -2.643740 -3.141543 -0.612958 -1.603151 -0.575221 -3.720088 5.073150 -2.457564 -0.764190 0.402826 0.909300 3.769223 1.758392 -0.303129 -2.402609 1.553346 1.242508 0.301278 -2.068438 3.377230 0.682062 7.302498 -1.122896 0.472945 -0.835076 1.991573 -0.624156 -1.660885 0.061019 3.386880 4.415931 0.281664 -1.150506 -0.575124 -0.850238 1.566952 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.073968 0.215438 1.404606 0.254114 -1.000604 -1.559039 -0.614915 -2.371606 1.103620 0.344530 0.926769 -0.011355 0.569347 -0.824896 -0.129465 0.827503 0.521758 -0.370214 0.156543 -0.666084 -0.474485 1.341939 0.040221 -0.070770 0.430960 -1.715168 1.114760 -0.064212 0.776858 1.158663 0.603060 -0.296326 -0.481260 0.726393 0.856408 1.592905 0.619557 0.344379 -0.692922 0.477304 -0.152371 -0.413134 0.740064 0.212337 1.613230 0.401521 0.451697 0.435751 -0.813714 -0.242026 -0.576878 0.951744 -1.175537 0.486399 -0.107259 0.070103 -0.153860 -0.661202 -0.244624 -0.292982 -0.708472 -0.781971 -0.962493 0.293642 -1.091105 0.336119 -0.630401 -0.265699 -0.470267 0.049955 0.778038 0.550343 0.045699 0.759027 -1.464590 -0.170890 0.164104 0.531308 0.981350 -0.549078 -0.064008 -0.480512 -0.801492 -1.010282 1.204858 0.591256 0.378076 0.117357 -0.337881 -0.042193 -0.706429 -0.157694 0.668296 0.695494 -0.923292 -0.387812 -0.349057 -0.249531 -0.448759 -1.662591 0.360095 -0.544106 0.422798 -0.139345 -0.065641 -0.181899 -0.094454 0.389521 -0.605608 -0.380295 0.408913 -0.357985 0.114945 1.331650 -0.067040 -0.321972 -0.748272 -0.532809 0.156130 0.784843 0.425403 0.263348 1.108090 1.195220 1.140591 -0.786084 -0.911650 0.455456 0.665308 0.612314 0.528374 -0.971720 -0.644406 0.347997 -0.326798 -1.589039 -0.466212 0.169634 0.735050 0.061972 -0.271619 -0.284645 -0.419939 0.729799 0.505839 0.120267 0.128633 0.064313 -0.951742 0.858518 1.721894 -0.272588 0.604760 -0.719314 0.228767 0.657706 -0.765380 0.148941 -0.007189 -0.417199 -0.380756 -0.312274 -0.129661 0.786428 0.177889 0.196756 -0.188860 0.660505 -0.886863 -1.220219 -1.198648 -0.109094 1.676629 -0.081296 1.063611 -1.099724 -0.306521 -0.309593 1.071129 0.312606 -0.305796 0.316403 -1.050698 0.769966 -1.049339 -1.245186 2.162385 1.594100 1.050220 0.018650 0.381889 1.135262 -1.670471 -0.480564 -0.494821 0.231062 -0.048829 -1.752422 -0.839881 0.218034 -1.325861 -0.691409 -0.038559 0.572715 0.464388 0.531703 0.550333 0.283057 -0.181338 -0.766724 0.679970 -0.434141 -0.518372 0.126712 0.094172 0.272608 0.569468 -0.461443 0.324264 0.552867 -0.521256 0.345044 0.683858 0.680289 0.148343 1.369028 1.463024 -0.149939 0.748189 0.066573 -0.584606 0.820687 0.153780 0.662050 0.326696 -0.038058 0.297021 0.183634 0.922283 -0.628456 -0.632900 -0.972180 -0.486192 0.375134 0.888523 0.255568 -1.173770 -1.315239 -0.090472 0.316877 1.039044 0.016749 1.455298 -0.207455 0.566721 -1.662406 0.112531 0.967364 -0.108484 0.616785 0.323046 -0.631809 -0.789846 -0.435176 -1.001108 -1.180370 -0.519780 0.082589 -0.603903 -0.497057 1.055899 -0.389817 -0.134017 0.682751 0.271990 0.938509 -0.326764 0.318355 -0.892430 0.123320 0.846264 -0.073007 -0.829398 0.708658 0.506583 2.421510 -0.100207 0.363776 -0.254162 0.275521 -0.121177 -0.871129 -0.315901 1.248394 0.980374 0.286392 0.131972 -0.148064 -0.029743 0.926284 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.192737 0.202784 0.279738 -0.031681 0.047784 -0.209471 -0.026216 -0.358388 0.103034 -0.022495 0.077260 -0.125920 0.105121 0.027922 -0.022431 0.105837 0.018276 0.121438 0.103078 -0.004490 0.005201 0.154977 -0.143808 0.033306 0.064580 -0.255399 0.030001 0.095707 0.244137 0.123904 -0.028054 -0.076004 -0.011022 0.057760 -0.106335 -0.108509 0.158245 0.023784 -0.283760 0.096072 -0.232555 0.123653 0.022604 -0.019904 0.031372 0.146747 -0.057301 0.106815 0.108774 0.046906 -0.043881 0.218951 0.060654 0.128419 -0.029918 -0.111939 -0.076114 0.019885 0.012906 0.062774 0.004300 0.078451 0.016803 0.012085 -0.168094 -0.013484 -0.052970 -0.140491 0.026454 0.074321 0.092638 0.063337 0.082331 -0.010211 -0.309318 0.076404 0.045822 0.144846 0.070425 -0.104219 0.183502 0.060817 -0.074843 -0.132798 0.127786 0.260051 0.088408 0.017881 -0.078095 -0.139919 -0.019977 -0.062460 0.085736 0.078825 0.031996 0.102419 -0.314097 0.057161 -0.009677 -0.342130 -0.025216 -0.059320 0.062750 -0.128356 0.222162 0.072132 0.207671 0.211943 0.117324 -0.103978 0.138018 0.051328 -0.057864 0.310210 0.065815 -0.077831 0.000370 -0.043797 -0.204254 0.130282 0.010463 0.032391 -0.035755 0.116511 0.090220 -0.051774 -0.109186 0.123896 -0.001889 0.139434 0.115248 -0.223378 -0.043494 0.004795 -0.089488 -0.274382 -0.000944 -0.013652 0.100835 -0.203331 -0.000364 0.011664 -0.130480 0.066789 0.009510 -0.028422 0.079718 -0.040043 -0.049693 0.106809 0.231219 -0.090532 0.068819 -0.114171 0.016706 -0.154631 0.073214 0.072919 -0.116084 -0.018187 0.121667 -0.055825 0.026448 0.136633 0.098271 0.052114 0.045513 0.020704 -0.286764 -0.179367 -0.105917 -0.017352 0.108118 -0.253277 0.139038 -0.025775 -0.240636 -0.082723 0.250295 -0.090138 0.070925 0.078080 -0.177877 0.086194 -0.036175 -0.156336 0.160777 0.255917 0.097417 -0.137303 0.046853 0.127345 -0.212120 -0.177017 -0.000773 -0.043485 -0.055807 -0.419640 -0.294374 -0.029914 -0.121829 0.046480 0.067448 0.041485 0.048568 0.303706 0.083315 -0.008899 -0.174807 -0.133349 0.141615 -0.101022 0.096548 0.088706 0.023789 -0.056607 0.136336 -0.235839 -0.040710 0.288678 -0.101184 0.072770 0.034842 0.031817 -0.063462 0.212053 0.040876 0.151706 0.247704 0.086459 -0.188720 0.279331 -0.007830 0.060397 -0.016855 -0.037507 -0.152590 0.104524 0.015175 -0.078228 -0.215315 -0.250221 -0.144544 -0.003237 0.031170 0.242507 -0.196691 -0.042256 -0.052260 -0.018896 0.144319 0.090626 0.191690 -0.051620 0.100795 -0.171351 0.035791 0.019834 -0.069998 0.122187 0.068909 -0.083938 -0.230015 0.019136 -0.152208 -0.369413 -0.143943 -0.295554 -0.027151 -0.125724 0.085650 0.005295 0.014160 0.161430 0.104144 0.114517 -0.204431 -0.021311 -0.143580 0.046937 0.201396 -0.099227 -0.171407 -0.060996 0.049218 0.414911 -0.021575 0.069172 -0.114192 -0.135674 0.039361 -0.070722 -0.058539 0.188343 0.070181 0.110734 -0.041193 -0.013093 -0.061189 0.060299 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.181687 0.149358 0.673510 -0.048137 -0.196147 -0.774676 -0.241742 -1.379691 0.560032 0.300240 0.583065 -0.060815 0.504566 -0.244671 -0.105564 0.317609 0.167928 -0.225093 0.183800 -0.295140 -0.226643 0.839420 -0.233795 0.257471 0.062650 -0.957321 0.503101 0.181883 0.494437 0.504146 0.220946 -0.037035 -0.163865 0.265613 -0.067903 0.341479 0.216466 0.293094 -0.357756 0.117601 -0.076606 -0.034139 0.380606 0.059742 0.637629 0.215767 0.106451 0.210501 0.079230 -0.254870 -0.134593 0.313144 -0.307523 0.141312 -0.269914 -0.242962 -0.052539 -0.146042 -0.031069 0.100124 -0.087314 -0.160094 -0.394665 0.160151 -0.444015 0.171776 -0.246232 -0.313751 -0.182828 -0.177496 0.376929 0.157843 -0.019255 0.106762 -1.009415 -0.002301 0.111463 0.045741 0.397024 -0.132741 -0.046921 -0.151417 -0.488402 -0.518097 0.675771 0.816102 0.141315 0.186696 -0.367378 -0.134516 -0.245827 -0.057682 0.476001 0.417913 -0.284630 -0.106253 -0.219818 -0.115416 -0.269564 -0.771215 0.289302 -0.259363 0.304243 -0.148626 0.098568 -0.025542 0.172785 0.090170 -0.239795 -0.364824 0.109002 -0.346579 0.319937 0.865740 -0.086783 -0.221297 -0.470675 -0.280258 -0.048710 0.364824 0.266630 0.014590 0.637089 0.423616 0.283997 -0.532041 -0.526785 0.469007 0.236983 0.272294 0.121850 -0.656104 -0.243704 0.144875 -0.338986 -0.884643 -0.298800 -0.016445 0.300795 -0.548358 0.024664 0.311500 -0.259618 0.216887 0.523692 -0.065372 0.142565 0.097398 -0.436020 0.346779 0.821294 -0.052670 0.285561 -0.504294 -0.140879 0.298048 -0.259236 0.172735 0.114002 -0.151016 -0.325982 -0.153690 0.238260 0.402761 -0.066405 0.334813 -0.067933 0.340086 -0.455552 -0.439386 -0.711044 -0.068670 0.767916 0.055567 0.686619 -0.543903 -0.203883 0.052992 0.651777 0.176464 -0.148439 0.346041 -0.484941 0.374477 -0.547052 -0.623470 0.795071 0.762756 0.605856 -0.106741 0.260055 0.393781 -0.573201 -0.266952 -0.128375 0.216999 0.098734 -1.042566 -0.320076 0.037299 -0.545416 -0.307996 -0.104006 0.276034 0.141870 0.306195 0.501521 -0.256034 -0.130339 -0.478392 0.487644 -0.170163 -0.063108 -0.028241 0.097167 -0.157058 0.251897 -0.350845 0.205999 0.345565 -0.165458 0.345010 0.383146 0.030811 -0.071361 0.696142 0.576628 -0.295123 0.382253 -0.139383 -0.086320 0.469288 -0.044940 0.241590 0.157215 0.169976 0.018342 0.167065 0.342661 -0.315102 -0.298851 -0.537688 -0.232469 0.271139 0.274962 0.365939 -0.461543 -0.741215 -0.086189 -0.097120 0.766197 0.120028 0.802398 -0.191169 0.375439 -0.697042 0.140075 0.148334 -0.131372 0.342338 0.142743 -0.282584 -0.173275 -0.162281 -0.550743 -0.910722 -0.200058 -0.400917 -0.357227 -0.379281 0.302259 -0.308876 -0.087754 0.287471 0.097091 0.294420 -0.448842 0.105186 -0.507537 0.224967 0.453195 -0.155150 -0.417978 0.185807 0.067633 1.141053 -0.086295 0.405235 -0.082725 0.365843 -0.204685 -0.582356 -0.169236 0.671050 0.352030 0.093910 -0.090124 -0.120230 0.157359 0.331456 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = -2.319949 -0.554078 4.171227 0.312598 -2.951911 -3.804000 -1.886898 -7.001250 3.163136 1.542343 4.736119 0.655252 2.556866 -2.849611 0.813722 1.340828 2.405853 -2.807701 0.967815 -1.913138 0.689393 4.006978 1.082743 0.562644 0.352501 -4.101678 0.835960 0.111346 1.973076 2.405629 1.554858 -1.100415 -2.482348 1.243741 1.706596 3.706791 2.859100 0.978877 -2.307670 -0.261449 -0.948144 -1.856677 2.287645 -1.105685 5.495191 -1.788488 2.025182 0.895671 -3.114814 -2.189485 -1.201588 3.701791 -3.610077 0.920545 2.054964 -1.330857 -0.759072 -0.877735 -1.410159 -2.844006 -1.396310 -2.910328 -1.382658 0.885472 -1.203444 1.900560 -1.481589 -0.268014 -0.297572 -1.002074 2.395342 1.481830 1.962138 3.954266 -3.699908 0.314507 0.464515 1.158880 1.986842 -0.038044 0.134949 -1.549660 -0.983172 -2.479321 2.835935 2.241845 0.552151 -0.114347 -3.112658 3.028231 -0.838909 -0.907302 1.011368 0.938410 -4.137914 -1.146107 0.548115 -1.272096 -1.337535 -4.274364 0.640921 -1.950834 0.916556 0.922405 -0.581452 -1.036721 -3.850164 0.582588 -3.870165 -2.325647 1.997645 -0.957037 -0.474387 3.582662 -3.378430 0.610389 -2.273450 -0.136301 0.838125 1.537225 0.975101 2.448053 1.534067 3.826183 2.218967 -2.939978 -2.301482 1.924096 4.396558 1.467060 0.930539 -2.156872 -1.721255 1.587773 -2.209170 -4.571833 -2.603002 2.092272 3.325064 2.054153 -1.379653 -1.743043 -1.110862 4.062552 2.576239 0.671502 -0.245794 0.900544 -3.490793 2.555953 3.231346 -1.209798 3.459182 0.375523 1.175032 1.658626 -3.421419 1.236464 1.185997 0.067696 -1.282916 -1.585899 -2.182926 2.086967 2.646104 2.435096 -3.144566 2.269274 -1.654198 -4.900920 -5.221194 -0.782340 5.093239 0.179674 1.673754 -3.001347 -2.686484 0.269480 3.799001 0.262327 -3.602519 1.255433 -2.880299 2.341544 -3.435060 -3.798241 6.889052 6.624139 2.834472 1.062126 2.206305 3.468808 -6.628370 -0.759594 -1.019362 1.622192 -1.218197 -6.576123 -2.240112 1.046927 -3.696534 -2.861349 -0.546645 1.594708 0.032765 2.007545 3.224318 3.416032 0.211308 0.275959 2.325013 -0.603253 -3.016326 -0.521586 0.546073 2.618820 1.550257 -2.199882 1.365292 2.188930 -3.409668 0.325915 1.899545 2.254646 1.743221 5.238051 4.069824 -0.200658 2.822743 -1.008413 -2.387193 1.504896 -0.733635 1.387733 -0.024163 -0.367147 0.975428 0.254917 2.711005 -1.934365 -2.690245 -2.654938 -1.954752 0.465264 3.942836 0.113990 -6.083261 -3.782639 0.896073 1.997751 1.944811 -0.765917 4.964094 -1.613315 1.011324 -6.130472 0.036753 2.210626 -0.340086 2.032854 0.539720 -1.153794 -3.536414 -1.394879 -3.240973 -3.055376 -0.733038 -0.710988 -0.730680 -3.598862 5.802449 -2.083013 -0.884441 0.156304 1.000283 4.575961 2.058350 -0.067463 -2.832918 1.743930 1.427909 0.267560 -2.481125 4.364012 1.276693 8.238633 -1.046449 -0.047646 -0.725899 1.823448 -0.727602 -2.049182 -0.156435 3.899599 5.125856 1.003218 -1.568260 -0.562002 -1.221227 2.067349 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = -3.294637 -1.247457 4.093712 -0.514211 -2.775996 -3.882047 -2.038909 -7.556548 3.443728 2.177031 5.719950 1.043602 3.427548 -3.004516 1.179421 1.306585 2.824312 -4.123687 1.738592 -1.980044 1.467470 5.253093 1.539823 2.099086 -0.252951 -4.368518 0.406157 -0.486506 2.395675 3.136869 1.783203 -1.339591 -2.818196 0.765946 1.991553 4.296712 2.976966 1.287472 -2.350380 -0.415477 -1.440092 -3.010202 2.517301 -1.507262 6.180508 -2.818470 2.141676 0.750988 -2.917304 -3.211741 -1.522630 3.594748 -4.378812 0.473786 2.403878 -2.503950 -0.997064 0.308940 -1.896682 -3.360539 -1.662277 -3.794663 -1.099642 1.271983 -0.957516 2.639049 -2.797806 0.223013 -0.793304 -1.609176 2.721337 2.040787 3.212188 5.224214 -4.745665 0.720105 0.099452 0.859569 1.831681 0.472621 -0.402084 -1.586094 -0.789552 -2.780880 3.061799 3.028915 0.033557 -0.378014 -4.249417 4.412407 -1.213693 -0.684946 0.963445 0.670946 -4.716714 -0.931802 1.044986 -1.274328 -0.837751 -5.105770 0.539289 -2.307847 0.744465 1.244983 -0.080156 -1.935397 -5.608863 0.116610 -4.968134 -3.184386 2.744513 -0.937742 -1.342308 3.784501 -4.848628 1.586442 -2.793821 0.499917 1.421436 1.460737 1.334578 3.310970 0.614655 3.951410 2.318532 -3.354301 -2.282590 2.820557 5.590846 0.893950 0.561935 -1.649408 -1.872120 2.047214 -2.768533 -4.667491 -3.590344 3.476144 3.734396 2.421290 -0.947289 -2.094904 -1.176867 4.648974 3.857037 0.550371 -0.159233 1.233440 -4.016309 2.861964 3.168256 -1.290739 4.250380 0.917834 1.377253 2.694186 -4.538551 1.678052 1.442871 0.968586 -1.987777 -1.950284 -2.672656 2.051824 3.420572 3.629128 -4.208469 2.599214 -1.183829 -5.384225 -5.888227 -1.221043 6.249537 0.618459 0.812763 -3.075082 -2.628435 1.385670 3.916675 1.093331 -4.945359 1.576224 -2.768424 2.422761 -5.175837 -4.037532 7.692964 7.647302 3.275450 1.545841 1.896114 4.715106 -7.610218 -0.656139 -1.153774 2.447798 -2.396969 -8.165103 -2.622364 1.243834 -3.887030 -3.529228 -0.876675 1.702733 -0.039314 2.408151 4.137350 4.117162 0.844653 1.063190 3.092083 -0.525828 -4.313865 -1.026710 0.659957 3.181348 1.288490 -2.250745 2.561028 3.017421 -4.099795 0.202376 2.201845 1.893290 1.968293 5.843790 4.572870 -0.559051 2.005337 -1.796407 -2.484135 1.136563 -1.187822 1.209890 -0.535220 -0.524749 1.326268 0.127192 2.803527 -2.050059 -3.697079 -2.583417 -2.233584 0.641319 4.676517 0.674974 -7.918485 -4.123329 1.931317 2.359693 2.432868 -0.679381 5.591446 -2.286378 1.171802 -6.485199 0.297685 2.071305 -0.182361 2.519544 0.343453 -0.576726 -2.610296 -1.763149 -3.575334 -2.863406 -0.616210 -1.476864 -0.224774 -4.630180 6.678928 -2.741028 -1.394473 -1.176344 0.924124 5.950876 3.575473 -0.649185 -4.088811 3.008173 1.196449 0.474414 -2.321054 5.505711 1.172955 8.485919 -1.643232 -0.666311 -0.381005 2.864047 -1.358608 -2.293734 0.313104 4.391084 6.135151 0.868754 -2.253724 -0.953418 -0.817149 1.353958 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp___GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.305812 1.113434 4.002169 2.470720 -2.402826 -3.063020 -1.567060 -4.035471 1.633295 -0.241435 2.420095 -0.034860 0.425688 -0.434117 0.149549 -0.685325 0.529055 -0.484092 -0.148257 -1.215897 -1.279987 2.058778 0.999403 -2.788227 0.553736 -3.624855 2.280371 1.927343 1.296305 1.695413 0.120469 -0.455678 -1.189942 2.065112 -1.070835 -0.398647 0.777309 0.362148 -1.512919 0.112820 1.240431 1.668101 2.218142 -0.217130 1.976425 1.266071 1.333293 0.981839 -2.040628 -0.270995 -1.119610 2.924440 -1.592070 1.473513 0.578302 1.078302 0.462184 -2.671958 -0.622670 -1.797684 -0.100177 0.250826 -1.245022 0.025911 -2.060503 0.375976 -0.059589 -1.500242 1.704551 0.017415 2.041826 0.213405 -0.077570 -0.575824 -1.650855 0.643053 0.251418 1.915775 1.559319 -0.771299 0.279638 0.552478 -1.264530 -1.490123 0.529293 0.368205 0.926666 -0.315739 0.273793 -0.940309 0.462097 -0.880198 0.020061 1.526766 -1.374569 0.627607 -1.613153 -0.646208 -2.074754 -1.570029 0.223329 -1.419156 1.413233 1.289758 -1.482923 -0.017255 0.367516 0.495087 -0.659268 -2.199896 0.079657 -0.658605 1.247654 3.044734 -0.939518 -0.826561 -0.085580 -0.946710 -0.702188 2.186258 0.329778 0.591854 2.269931 3.193184 0.504364 -1.765020 -1.245781 0.024575 1.377114 2.317156 1.969221 -2.739047 -1.369862 -0.148059 -0.150427 -3.856722 0.727243 0.061207 2.065460 0.714701 -2.494718 0.703554 -1.519331 2.417666 0.728533 1.407592 0.561707 -0.383001 -1.926022 2.453332 3.950252 -0.822971 1.758355 -1.257673 -1.511343 1.832096 -1.281716 1.268479 0.749080 -0.422744 0.596585 -1.359017 -0.488805 2.236452 0.793886 0.803313 1.692065 0.572643 -0.844622 -3.784477 -3.010317 0.704090 2.047532 -0.389122 3.718192 -2.323814 -1.638573 -0.874978 3.380320 -0.964585 -0.790017 0.388686 -1.367760 1.501811 -2.207281 -2.997528 3.544972 3.808278 0.093837 -0.035801 2.507826 1.349629 -1.650576 -1.313376 -1.427375 0.880380 0.793197 -0.856918 -0.266463 -0.030401 -2.044845 -0.756498 0.693452 1.076850 1.520362 -1.054391 -1.127755 0.581387 -2.664758 -2.192337 1.151769 -2.102811 -0.208394 0.871165 -0.188662 0.034145 1.257450 -0.888991 -1.203518 0.595351 -1.370274 0.429561 0.986410 2.137259 0.509955 3.030315 1.707151 0.311968 2.950496 1.568129 -1.308152 5.005942 -1.041624 0.849039 0.805226 1.620542 -0.277161 1.148469 1.131423 -1.230748 -1.066619 -2.813608 0.731140 -0.247356 1.560444 -2.713881 -1.791491 -3.081394 -1.386475 1.434144 1.438253 -0.419452 4.314508 -0.134285 0.086622 -4.551096 -0.469404 1.962631 -0.210651 1.755067 1.193648 -1.818123 -4.051507 -0.736631 -1.539345 -0.174477 -0.979807 -1.613790 -1.660611 -1.010578 1.936388 -0.640477 0.974295 3.025215 -0.203120 0.654670 -0.943596 -0.121962 -0.434651 -1.481925 1.284126 0.320437 -2.516216 2.948243 -0.160520 5.757619 -0.498923 1.813494 -1.731222 0.062220 0.241198 -1.070770 -0.664303 3.100456 1.615206 0.899603 -0.051607 0.420441 -1.441034 1.901950 -PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = -1.718712 1.757659 12.240189 7.997060 -5.839853 -9.473748 -4.055584 -10.705925 5.170925 -1.035560 7.532648 1.239632 1.342478 -0.120359 2.032910 -0.883256 1.284622 -3.061918 0.494792 -3.173477 -0.973584 7.890890 5.411357 -9.329851 0.528924 -11.916225 6.654162 5.829229 4.744330 6.982391 0.285324 -2.161240 -1.817280 6.041173 -3.347163 -1.223418 1.281930 0.500574 -4.390702 0.366075 3.016874 5.455555 6.194505 -0.501598 6.370690 2.521524 7.799829 2.457042 -4.583212 -0.581581 -7.573110 11.297253 -6.918421 3.908881 -0.079052 3.996405 1.050045 -7.835524 -3.634658 -8.392269 -0.721846 2.812005 -5.029137 -0.289114 -6.805857 2.340878 -1.521488 -3.035255 4.307013 2.784101 7.676709 2.318313 1.648941 -2.239873 -7.056023 2.214993 -2.378345 6.722133 4.343056 -4.444454 -1.551795 2.642988 -2.643626 -3.901708 1.853094 -0.029718 1.221324 -2.505573 2.502280 -1.066412 -1.993697 -1.905617 -2.919722 4.239448 -4.565342 4.526141 -3.136430 -0.365413 -4.629328 -2.022759 -0.303640 -5.667176 3.060981 4.980674 -0.840356 -0.598434 -1.390009 1.052664 -3.945112 -8.077586 0.684213 -0.139745 0.464575 7.224511 -4.715101 0.122740 2.000102 -0.346705 -1.559707 7.733337 0.655339 4.086853 5.586085 10.473256 0.358394 -4.817711 -2.044684 0.647921 6.473287 7.879038 6.301299 -7.149423 -4.881511 -1.562311 1.450746 -11.175618 4.350375 4.663974 6.352553 4.026647 -9.650078 1.263836 -3.993405 9.725455 4.473208 5.221827 2.234543 -0.739012 -6.011278 8.636164 15.261051 -3.124266 6.523307 -4.374494 -2.450903 8.371893 -6.753113 4.583083 1.975422 1.129118 2.806182 -5.234667 -4.021668 6.920397 5.396000 3.815237 7.489358 1.605587 0.126167 -13.292530 -7.922012 -0.153818 6.355766 -2.180572 11.376796 -6.252032 -4.676415 -2.399374 7.293942 -2.767591 -3.001172 0.139027 -4.028239 4.151463 -11.478559 -9.177452 12.026399 11.230000 -0.177234 1.088188 7.806191 7.608550 -3.948034 -3.170367 -3.412184 4.133070 0.772040 -1.595688 0.216558 -0.822856 -7.246573 -3.988482 2.223415 2.909351 3.803411 -3.031095 -5.289957 3.810420 -9.970951 -5.267596 2.921086 -8.776467 -3.689019 1.987538 -0.701530 0.775744 2.014198 -2.082684 -1.063746 4.913368 -5.444875 -0.321326 3.507314 6.633346 3.133890 8.271114 6.413470 2.866828 8.918457 5.882959 -4.466433 15.739610 -2.185535 1.348904 1.995004 4.220681 -0.579745 3.518533 1.797888 -3.478494 -4.650722 -8.842582 5.157306 -0.563333 6.560748 -6.698039 -5.948914 -7.137996 -4.292282 7.466480 5.239541 -2.087199 13.822997 -0.952761 0.680666 -15.186003 -1.298875 6.364083 0.573557 4.781133 4.586060 -4.526783 -10.899121 -2.609905 -1.977060 2.239208 -3.518581 -6.706988 -4.996792 -4.561403 5.238342 -4.562652 3.005648 8.412866 -1.172589 3.873525 -1.580757 -1.322932 -1.590398 -3.109144 3.174899 3.609512 -8.184402 10.315741 -2.576719 18.313237 -3.826551 5.311186 -6.511866 1.233611 -0.625628 -0.931952 -0.675412 10.547010 5.446020 1.698468 0.935477 0.128171 -3.924710 4.883503 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.255758 0.673799 2.018429 0.488507 -1.354885 -1.796701 -0.858268 -3.057440 0.894059 0.225497 1.466141 -0.303930 0.511612 -0.215995 0.124870 0.638894 0.704427 -0.360993 0.453968 -0.797865 -0.790243 1.319704 -0.054483 -0.185829 0.384588 -1.757721 0.741334 0.844988 1.048120 0.575021 0.498602 -0.363377 -0.775967 0.816559 -0.200133 0.281390 0.764007 0.376534 -1.532842 0.640147 -0.283423 0.213745 1.148517 -0.379367 1.350906 0.409809 0.696734 0.824354 -1.011110 -0.178216 -0.547402 1.875054 -0.647398 0.630182 0.385242 -0.312347 -0.250436 -0.917870 -0.503458 0.093726 -0.500521 -0.394147 -0.651151 0.357796 -0.963737 0.314669 -0.509820 -0.814982 0.573217 0.398500 0.987031 0.265740 0.059304 0.525728 -1.601880 0.333384 0.471160 0.957479 0.770444 -0.483200 0.792261 0.237769 -0.780054 -1.038992 0.816171 1.193402 0.607973 -0.378987 -0.702107 -0.123137 -0.066051 -0.476805 0.547787 0.710438 -1.006280 0.099223 -1.196127 -0.553222 -1.355233 -1.899625 0.206911 -0.612537 0.956366 -0.141728 -0.272985 -0.001686 -0.056546 0.547939 -0.492264 -1.105212 0.114725 -0.451552 0.578709 2.304548 -0.420401 -0.466708 -0.689996 -0.516188 -0.650207 0.760575 0.532469 0.344009 1.184497 1.669160 0.540342 -0.955112 -1.178956 0.199471 0.709644 1.114237 0.989263 -1.321979 -0.800052 0.100362 -0.505890 -2.069237 -0.358222 -0.101921 0.920463 -0.314259 -0.120250 -0.366816 -0.859507 1.352617 0.451123 0.383160 0.276258 -0.123860 -0.964114 1.239703 1.765497 -0.415936 1.017304 -0.632197 -0.246453 0.294919 -0.499906 0.625111 0.500936 -0.356827 -0.301719 -0.603055 -0.389484 0.935056 0.561246 0.335888 0.108742 0.579225 -0.986002 -1.496152 -1.764077 0.524073 1.334388 -0.470100 1.461393 -1.179832 -1.344498 -0.254552 1.739046 0.056650 -0.637613 0.650933 -1.102141 0.853488 -0.711296 -1.517057 1.951787 2.215580 0.691166 -0.316248 1.164905 0.827466 -2.357877 -1.117663 -0.589751 0.574928 0.004496 -2.187210 -0.937524 0.378495 -1.182374 -0.251761 0.025506 0.789591 0.675422 0.629524 0.577250 0.391204 -1.089646 -0.627688 1.093607 -0.593024 -0.251120 0.434581 -0.029944 0.199058 0.913652 -1.021386 -0.219932 0.524738 -1.041060 0.464424 0.660411 1.037834 -0.019499 1.962851 1.245573 0.299318 1.970992 0.228005 -0.937874 1.568112 -0.289133 0.697610 0.195638 0.041821 -0.531879 0.246053 0.937422 -0.686396 -1.279083 -1.343205 -0.325628 -0.024327 0.977385 -0.046436 -1.430312 -1.681001 -0.321570 0.599087 1.044181 0.097462 1.935871 -0.303615 0.411905 -2.182999 0.008434 0.453216 -0.137521 1.153067 0.366942 -0.953255 -1.426709 -0.317224 -1.495640 -1.336553 -0.366711 -0.905768 -0.923085 -0.853819 1.442216 -0.230194 -0.056353 1.287626 -0.059678 0.898470 -0.311888 -0.176618 -0.536967 -0.124236 1.451419 -0.227226 -1.322045 1.316846 0.174606 3.887923 0.074655 0.556622 -0.509608 -0.383893 0.405770 -0.730608 -0.353651 1.612146 1.168628 0.638012 -0.452968 -0.031021 -0.468739 0.799411 -PE-benchmarks/n-queen-problem.cpp__main = 0.203706 0.282755 0.404920 0.004440 -0.117241 -0.457206 -0.118318 -0.667745 0.124807 0.074459 0.297716 -0.199849 0.226566 0.102226 -0.032608 0.152223 0.120781 0.056601 0.149317 -0.133011 -0.320368 0.327041 -0.151244 0.144994 0.096101 -0.336002 0.281421 0.128700 0.216696 0.233704 0.061239 -0.023188 -0.050398 0.125750 -0.110469 0.001510 0.067305 0.183633 -0.224972 0.190501 -0.108184 -0.069727 0.186002 0.047433 0.098252 0.349680 0.015270 0.147597 -0.003340 -0.060412 -0.086930 0.157845 -0.085320 0.128915 -0.186609 -0.185158 0.042941 -0.022456 0.012112 0.114221 -0.046117 -0.109689 -0.185407 0.075496 -0.319121 0.047605 -0.219284 -0.286708 -0.017417 0.064426 0.182986 0.057274 -0.050686 0.043582 -0.497385 0.050441 0.124976 0.104445 0.153236 -0.148718 0.118013 0.056142 -0.339113 -0.311129 0.331960 0.329023 0.214217 0.018599 -0.182947 -0.161023 -0.037651 0.004807 0.231457 0.250663 0.023343 0.110561 -0.315019 -0.058511 -0.253523 -0.629267 0.070644 -0.151689 0.191685 -0.091107 0.039378 0.011322 0.135410 0.179522 0.042781 -0.325031 0.040012 -0.157490 0.067944 0.453913 0.028099 -0.165328 -0.146089 -0.173945 -0.070520 0.187658 0.180031 -0.021160 0.271529 0.195043 0.114886 -0.200232 -0.257721 0.079059 -0.002555 0.158377 0.174917 -0.332486 -0.190582 0.054797 -0.243980 -0.490403 -0.094815 0.010758 0.164827 -0.381086 -0.010335 0.229547 -0.234318 0.014050 0.214159 0.088069 0.113959 -0.044890 -0.134693 0.144402 0.368898 -0.141009 0.179047 -0.234932 -0.142305 0.107957 0.054266 0.061700 0.027797 -0.076396 -0.090721 -0.100342 0.085921 0.268940 0.059558 0.092920 0.168424 0.083275 -0.350179 -0.205201 -0.278850 0.067373 0.392291 -0.105644 0.330316 -0.257716 -0.140975 0.053170 0.357353 -0.001118 -0.054273 0.108107 -0.165925 0.144629 -0.297554 -0.338527 0.290886 0.242313 0.210782 -0.146104 0.050885 0.175996 -0.301252 -0.279633 -0.175724 0.134218 -0.057721 -0.530625 -0.339942 0.010274 -0.282909 0.088169 -0.024051 0.168873 0.170725 0.152713 0.133642 -0.221188 -0.226815 -0.266079 0.227103 -0.147211 0.039671 0.082979 -0.023134 -0.094199 0.117068 -0.166221 -0.001408 0.157852 -0.164811 0.122384 0.138092 0.056727 -0.095339 0.545493 0.241845 -0.068747 0.132051 -0.007441 -0.155217 0.377454 -0.061329 0.124158 0.006127 0.196926 -0.137925 0.122641 0.286883 -0.110405 -0.382847 -0.353268 -0.166900 0.120889 0.044276 0.223952 -0.152789 -0.416824 -0.047552 -0.063550 0.557725 0.088060 0.388830 -0.031488 0.224001 -0.259224 0.093199 -0.023659 -0.136029 0.216442 0.083003 -0.184391 -0.069373 -0.054411 -0.338893 -0.479691 -0.104777 -0.254285 -0.199675 -0.074784 -0.087517 -0.039418 -0.043201 0.161677 0.039923 0.098307 -0.154949 -0.036985 -0.206646 0.082622 0.498878 -0.142095 -0.246794 0.086795 0.099719 0.712572 0.075349 0.210960 -0.085638 -0.113591 0.051633 -0.197310 -0.139600 0.347624 0.183158 0.112016 0.004615 0.026501 0.113136 0.143650 -PE-benchmarks/birthday-paradox.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.119758 0.175080 0.758602 0.366821 -0.705625 -0.571455 -0.443892 -0.994101 0.370809 0.380524 0.607958 -0.449190 0.413902 -0.800855 -0.072243 -0.176826 -0.494041 -0.228375 0.352779 -0.485853 -0.268110 1.052654 -0.393351 -0.224123 -0.101626 -1.179639 0.301547 0.126101 0.666875 0.385457 -0.397080 -0.861923 -0.381738 0.083479 -0.185037 -0.298691 0.012927 -0.040378 -0.378041 0.638671 -0.314637 -0.156692 0.527790 0.295182 -0.123664 -0.290569 0.320109 0.499459 -0.640211 0.545439 -0.533717 0.756706 0.106585 0.256489 0.594454 -0.598408 -0.327395 -0.075303 -0.858115 0.412576 -0.386600 -0.304966 0.187955 -0.179044 -0.680831 -0.117452 -0.643392 -0.181633 -0.264301 0.204934 0.081076 0.651245 0.105455 -0.315175 -1.329981 0.214495 -0.224922 0.194435 0.049625 -0.051155 0.138513 0.036775 -0.930975 -0.892295 0.672397 0.627778 0.183577 -0.281668 -0.088593 -0.610766 -0.081443 -0.244591 -0.005545 -0.117632 -0.125031 0.300332 -0.855317 0.000944 -0.382716 -0.484925 -0.289431 0.122599 0.048075 0.074791 0.195670 -0.917892 0.155413 0.395264 -0.725625 -0.054645 -0.144559 0.243185 -0.177889 1.012757 -0.091720 -0.159787 -0.303914 -0.021478 -0.570303 0.384350 0.204134 0.212250 0.396138 1.037286 0.948234 -0.566637 -0.042652 0.459946 0.273481 0.455030 0.184372 -1.291270 -0.343017 0.714026 0.268933 -0.821696 -0.065299 0.337669 0.340858 -0.357524 0.013819 0.160920 -0.673220 0.890795 -0.316981 -0.424627 0.303754 -0.339018 -0.660534 1.261292 1.306525 -0.278149 0.297286 -1.121934 0.214541 0.141668 0.012645 0.242058 0.057868 -0.452895 -0.214760 -0.142199 0.291461 0.620958 0.507418 -0.280863 -0.115972 0.823973 -0.758691 -0.625528 -1.038186 -0.029752 0.554868 -0.669210 1.156468 -0.173003 -1.040900 -0.605663 0.506384 0.160347 -0.166590 0.445247 -0.784838 0.338993 -0.360138 -0.328039 1.298604 0.971951 0.262739 -0.272744 0.784547 0.484472 -0.635099 -0.959785 0.339814 0.300787 -0.019081 -1.227698 -0.394512 0.111295 -1.044853 -0.163479 0.111796 0.142430 0.235196 0.068893 0.352803 -0.440910 -0.259648 -0.488259 0.879292 -0.943645 0.304773 0.467390 -0.482848 -0.376182 1.190308 -0.630680 0.502794 0.231260 -0.413311 0.619687 -0.162982 0.113637 -0.086790 0.783555 1.007815 0.400166 1.121287 0.427310 -0.583468 0.658781 0.188681 -0.085754 0.321193 -0.346586 -0.325833 0.531074 0.002147 -0.227256 -0.045354 -0.242518 0.325218 0.236435 0.414929 0.349858 -0.480278 -0.925878 0.136596 0.194512 0.335516 0.225688 0.398854 -0.193654 0.376849 -0.801952 0.170758 -0.628573 0.436430 -0.011359 -0.175849 -0.323209 -0.739300 0.074898 -0.374601 -0.304842 -1.103221 -0.312925 -0.191112 -0.504960 0.345305 -0.058499 0.359851 0.277590 0.023686 0.277620 -0.126536 -0.300032 -0.719032 0.578045 0.509922 -0.031988 -0.582242 0.054903 -0.285721 1.840740 -0.181414 0.531887 -0.845846 0.026308 0.298807 -0.874157 0.329315 1.218313 0.009568 0.695650 -0.276762 -0.064225 -0.182900 0.302184 -PE-benchmarks/birthday-paradox.cpp__main = 0.285363 0.185905 0.366818 -0.040722 0.021286 -0.306382 -0.058366 -0.693250 0.268266 0.019525 0.171763 -0.125892 0.171603 -0.059236 -0.033659 0.256520 0.058552 0.073804 0.149620 -0.037438 0.040317 0.408582 -0.225647 0.135832 0.067898 -0.461369 -0.005237 0.107488 0.442574 0.129061 0.028373 -0.126541 -0.026360 0.044488 -0.097779 -0.022522 0.192427 0.017668 -0.481840 0.084726 -0.325284 0.077858 0.076997 -0.081383 0.167534 -0.020512 0.080478 0.133522 0.170817 0.041204 -0.158398 0.444828 0.064136 0.149728 -0.004021 -0.223425 -0.158765 0.023093 -0.046659 0.230649 -0.082617 0.056969 -0.047533 0.033374 -0.209519 0.044575 -0.114881 -0.110803 0.023882 0.087793 0.175764 0.111486 0.125921 0.009591 -0.580612 0.086933 0.027543 0.166771 0.088661 -0.062386 0.292983 0.041528 -0.128709 -0.184028 0.292192 0.483927 0.043433 -0.030327 -0.211233 -0.117530 -0.116828 -0.110341 0.151026 0.084223 -0.155921 0.091984 -0.414315 0.035298 -0.029144 -0.489224 -0.001239 -0.109513 0.102771 -0.242507 0.325137 0.120690 0.328062 0.222183 0.099372 -0.185711 0.143661 0.103337 -0.034719 0.550458 0.039393 -0.103489 -0.096131 -0.024607 -0.362625 0.129489 0.066631 0.114196 0.069067 0.200206 0.186749 -0.110969 -0.206327 0.279128 0.067226 0.192900 0.110065 -0.298065 -0.065526 0.031249 -0.056136 -0.442130 -0.107250 0.056358 0.189137 -0.254837 0.112123 -0.106369 -0.098293 0.201687 0.064752 -0.159757 0.103104 0.009048 -0.106272 0.199789 0.410954 -0.078490 0.099333 -0.255479 0.091119 -0.151405 -0.005497 0.105818 -0.123087 0.046957 0.071812 -0.115047 0.029456 0.168096 0.071071 0.060205 -0.052818 0.107836 -0.387518 -0.291124 -0.261991 -0.047584 0.161542 -0.291729 0.197141 -0.063172 -0.361007 -0.077918 0.305191 -0.038185 0.033534 0.213460 -0.390535 0.150344 -0.053338 -0.254218 0.331640 0.466371 0.187282 -0.153496 0.147415 0.252489 -0.483123 -0.241105 -0.021439 0.018955 0.013010 -0.763325 -0.373181 -0.024065 -0.219606 -0.050622 0.049746 0.067173 0.038796 0.483246 0.298217 -0.008256 -0.222472 -0.153917 0.353750 -0.110873 0.079694 0.055818 0.052932 -0.074881 0.255237 -0.357218 0.047389 0.393622 -0.145600 0.138528 0.093442 0.015155 -0.113302 0.283708 0.202234 0.189430 0.492185 0.039858 -0.264202 0.285347 0.002190 0.066244 -0.046353 -0.176686 -0.220127 0.139142 0.010624 -0.131907 -0.336561 -0.308350 -0.175029 -0.036380 0.117038 0.403805 -0.346310 -0.113036 -0.101751 0.001457 0.185520 0.169897 0.300639 -0.203187 0.158089 -0.388982 0.060614 0.044348 -0.037785 0.223361 0.043589 -0.104944 -0.206624 0.021005 -0.227440 -0.590137 -0.194308 -0.465095 -0.110184 -0.341363 0.307826 -0.088235 -0.018899 0.207940 0.143371 0.260407 -0.322144 -0.028062 -0.259992 0.150979 0.256494 -0.102033 -0.250445 -0.046320 0.027069 0.694614 -0.074617 0.072565 -0.151359 -0.088488 -0.036062 -0.220025 -0.038093 0.276621 0.175268 0.113306 -0.143352 -0.100063 -0.099533 0.083773 -PE-benchmarks/birthday-paradox.cpp___GLOBAL__sub_I_birthday_paradox.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/edit-distance.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.190496 0.241628 0.783123 0.186494 -0.545999 -1.236512 -0.373878 -1.850779 0.648583 0.291345 0.804548 -0.080408 0.570436 -0.308472 -0.080796 0.418245 0.158132 -0.269060 0.308860 -0.378862 -0.799377 1.193567 -0.184817 0.291929 0.111781 -1.025009 1.009075 0.363075 0.596122 0.686048 0.235386 -0.120488 -0.176189 0.467814 0.014971 0.435193 -0.017566 0.475977 -0.308472 0.313689 0.097345 -0.395657 0.705361 0.070759 0.724405 0.403481 0.393513 0.318811 -0.140849 -0.267952 -0.413180 0.384169 -0.652234 0.233225 -0.492146 -0.399456 0.183766 -0.176582 -0.095167 0.150259 -0.260229 -0.508923 -0.697025 0.206144 -0.755746 0.202735 -0.548107 -0.518976 -0.149084 0.094693 0.584783 0.309556 -0.156982 0.179900 -1.342964 0.003748 0.245768 0.160040 0.578021 -0.229541 -0.010637 -0.061814 -0.843137 -0.754478 0.953230 0.739349 0.352005 0.054230 -0.451532 -0.184763 -0.285626 0.032281 0.619489 0.619119 -0.256720 -0.007185 -0.378225 -0.155324 -0.611879 -1.273086 0.349280 -0.410917 0.496288 -0.076758 -0.064076 -0.179877 0.153346 0.069235 -0.358555 -0.821277 -0.056772 -0.619737 0.474520 1.072169 -0.037844 -0.265246 -0.496602 -0.386490 0.001670 0.462870 0.572982 -0.035900 1.032277 0.711147 0.335474 -0.665717 -0.774017 0.377779 0.284618 0.446812 0.211167 -0.793070 -0.441144 0.157087 -0.365673 -1.221224 -0.316536 0.164835 0.374322 -0.684330 0.021384 0.525573 -0.389049 0.259991 0.762440 0.068985 0.219953 0.122722 -0.560483 0.647620 1.167649 -0.070655 0.362825 -0.697557 -0.334625 0.818781 -0.409924 0.123130 0.273347 -0.186902 -0.511872 -0.252939 0.243431 0.560148 -0.092742 0.312742 0.266755 0.436358 -0.584613 -0.615944 -0.908311 0.221101 1.302359 0.208599 1.048965 -0.882755 -0.125982 0.262354 0.728389 0.320990 -0.256833 0.384045 -0.540561 0.560233 -1.050464 -0.938506 1.088878 0.673955 0.669300 -0.054536 0.277573 0.679271 -0.742117 -0.472166 -0.464045 0.433132 0.137921 -1.254440 -0.443489 0.080151 -0.814283 -0.263260 -0.090496 0.395286 0.391843 0.075912 0.339188 -0.573376 -0.323994 -0.660626 0.673399 -0.387560 -0.108098 0.038425 -0.049613 -0.173833 0.362573 -0.188283 0.305729 0.116470 -0.292817 0.404961 0.477405 0.127347 -0.108729 1.209725 1.005124 -0.505817 0.363476 -0.041971 -0.051577 0.767032 -0.102001 0.364411 0.285972 0.464132 0.088232 0.272328 0.773287 -0.420618 -0.521046 -0.817228 -0.181232 0.460182 0.373426 0.190599 -0.358912 -1.346250 -0.195908 0.064547 1.186438 0.113792 1.100483 -0.178713 0.451944 -0.939472 0.125315 0.117544 -0.127038 0.658003 0.136405 -0.412070 0.039953 -0.354455 -0.686248 -0.924837 -0.295255 -0.336375 -0.563842 -0.310429 0.028774 -0.411225 -0.083794 0.367995 -0.051966 0.275398 -0.569675 0.100761 -0.635085 0.225176 0.866852 -0.189310 -0.585692 0.516385 0.083727 1.724266 -0.037855 0.513018 -0.176481 0.377587 -0.174265 -0.693296 -0.198557 0.910830 0.448151 0.084196 0.004710 0.076833 0.286467 0.520364 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 2.091700 6.037851 15.781347 7.106227 -12.942660 -13.607033 -4.768750 -21.257475 8.680572 0.851918 6.100701 1.962140 2.146428 -5.544646 -0.885327 5.466217 4.198827 -1.326588 -0.397936 -6.410717 -8.840384 7.894832 -0.270520 -6.911018 5.466115 -16.468156 11.586499 4.320889 8.150390 5.602698 5.424350 -1.819943 -5.284054 9.640376 3.309297 3.570225 4.077674 1.346873 -9.906054 4.058034 1.581484 1.914825 8.787341 2.168742 11.102972 4.103160 7.560255 6.059734 -7.353322 1.904259 -8.275443 14.325352 -7.053014 7.205058 0.294079 1.956784 -0.825137 -10.332152 -1.684072 -0.580128 -5.516032 -3.941916 -6.177878 0.325569 -10.344271 0.744695 -2.918682 -6.457705 1.601216 6.479448 9.116692 4.008600 0.433213 0.003826 -11.908890 1.141137 1.911706 8.676523 10.170458 -3.907225 2.478240 -0.324408 -6.688400 -8.544887 7.485928 3.559689 3.369218 -2.267560 1.022296 -5.141617 -4.325006 -5.471178 2.742173 6.763486 -9.937021 0.443997 -9.286162 -2.543736 -8.750844 -12.379484 1.203439 -4.990345 6.079596 -0.476410 -2.881540 1.766434 3.492797 2.270851 -1.802049 -4.427422 1.267853 -2.997819 4.461371 15.167437 0.962427 -5.072722 -1.200317 -3.847661 -4.228750 7.393311 2.661511 1.393686 14.147540 14.009382 6.304988 -4.895698 -5.660170 1.472199 2.767893 9.542284 8.885539 -12.759172 -6.361717 1.279574 1.758536 -15.671877 3.140449 0.357237 7.034325 -0.639350 -5.225067 -2.520616 -4.148588 8.078203 1.894265 1.300976 3.522376 -1.065713 -6.436844 11.013045 19.296528 -2.191940 4.596390 -8.866832 0.898516 6.588371 -5.791270 3.017227 0.524209 -3.323426 0.113294 -4.325785 -3.241516 8.323672 2.119732 -2.482539 6.521462 4.591939 -8.116890 -14.948307 -10.008722 2.115029 10.285344 -3.486580 15.282197 -10.114246 -4.388072 -6.051415 11.007274 0.180281 -0.528007 4.329619 -8.741958 6.923840 -4.846819 -11.716645 17.755879 14.814547 1.839486 -2.989166 7.932519 7.393366 -14.776532 -9.661394 -5.345302 -0.068744 3.581744 -11.073622 -6.624533 2.396321 -11.675924 -3.852944 3.060945 4.577892 11.210103 1.965649 -0.870457 2.961004 -8.974891 -10.710015 7.097103 -6.082652 -2.915365 4.565257 1.371294 1.927050 7.197440 -3.124159 -3.222977 2.565486 -4.317800 1.787926 5.374546 10.837205 -0.222400 12.295066 9.834142 2.533825 12.764362 6.338473 -6.470442 15.426135 0.534917 5.182237 4.975070 0.793637 -2.095626 3.807979 6.327022 -6.136909 -6.076921 -10.974886 1.413578 -2.433482 5.890479 -5.300745 -5.747609 -12.163430 -4.949467 4.637057 4.126917 -1.076899 15.123828 -0.788032 0.683159 -17.700186 -1.396845 8.163712 0.382605 8.456265 5.777200 -8.779632 -8.420876 -3.962630 -7.795778 -6.348083 -4.348282 -0.995123 -7.657865 -2.577963 8.670004 -2.009598 1.892778 14.160701 -0.978264 5.537737 -8.530114 2.412239 -4.288197 -2.916528 10.163774 0.840732 -9.621591 10.643104 -0.451829 25.996254 -0.100165 4.294169 -5.221172 -4.301514 2.600543 -5.126123 -3.788248 12.175662 4.369324 4.949011 1.629781 -0.234727 -2.968376 11.492358 -PE-benchmarks/edit-distance.cpp__main = 2.218304 3.540578 7.142776 2.299711 -6.486863 -7.502073 -2.236668 -12.805007 4.954809 1.255312 3.109033 0.621484 1.454723 -3.260866 -1.114779 4.449269 2.121344 -0.030615 -0.438021 -3.750121 -5.974799 3.902078 -1.100723 -0.590343 3.212535 -7.427329 4.757804 1.223271 4.979577 1.788914 3.333209 -1.096416 -2.735528 4.643417 2.628435 3.143146 1.741318 0.873213 -5.781274 2.531518 -0.376525 -1.092864 4.646768 2.040931 6.273519 1.540104 3.257288 3.020748 -3.414057 0.962701 -3.352714 7.219135 -3.247860 3.546406 0.101791 -0.423329 -1.020817 -4.005547 0.080390 2.297501 -3.742327 -3.755021 -3.287724 0.501472 -5.086137 0.209596 -2.878291 -3.718853 -0.713564 2.682839 4.508983 2.011895 -0.675849 1.345346 -7.068574 0.059318 1.936184 3.456924 5.716883 -1.217478 2.238777 -1.156778 -4.068548 -4.932929 5.587939 2.672050 1.911428 -0.169495 -1.288692 -2.997873 -2.154408 -2.946740 3.526570 3.368317 -5.807017 -0.604327 -4.597397 -2.152836 -4.912920 -8.989033 1.169730 -1.921056 3.452932 -2.818960 -1.026811 1.196759 1.877907 1.091380 -0.429327 -1.962806 0.664348 -1.499985 2.789124 8.647837 0.802846 -3.298393 -1.550076 -2.284449 -2.872010 2.801403 2.964971 -0.094280 7.636487 6.214191 4.068962 -2.448245 -3.456795 0.711957 0.393346 4.328212 3.985565 -5.642844 -3.320532 1.856965 0.391482 -8.450829 0.011663 0.185951 3.468386 -1.134923 -0.066859 -2.232422 -1.670123 2.452347 0.893486 -0.699974 1.952268 -0.843663 -3.084377 4.662274 8.418668 -0.941191 2.170474 -4.320325 0.976868 2.298959 -3.144080 0.877675 0.041714 -2.627028 -0.827965 -1.375056 -1.152549 3.989312 -0.015640 -2.578413 1.492561 3.083803 -6.055776 -6.365323 -5.384312 1.352635 5.798513 -1.494529 5.698583 -4.970358 -1.846113 -2.499719 5.606749 1.055998 -0.123764 3.258189 -5.236062 3.624832 -1.159928 -5.488910 8.924904 8.012108 2.537809 -2.378689 2.672106 3.808668 -9.078360 -5.647954 -2.692371 -0.750997 1.921784 -8.775832 -5.418239 1.184958 -5.855734 -1.386461 0.926159 2.479206 5.132636 2.321403 2.594203 0.307667 -2.768966 -5.354098 4.148516 -1.665763 -0.712206 2.066872 1.042903 0.838850 4.096821 -1.911092 -1.172005 0.812245 -2.087085 1.771754 2.762688 5.170715 -0.656527 7.430261 5.163718 0.256124 6.679786 1.733475 -3.361310 5.523354 0.020120 3.505830 2.303462 -0.070111 -1.537945 1.807443 4.005342 -3.329279 -3.584515 -4.464869 -1.411671 -0.676676 2.503952 0.226199 -3.445745 -7.051448 -1.849355 0.762292 1.901369 -0.099842 6.469606 -0.969483 1.174134 -7.641051 -0.191304 3.350095 -0.417906 5.038080 2.404707 -4.635053 -1.909832 -2.278834 -5.232968 -5.441152 -1.625563 0.556774 -3.321493 -1.165753 4.634359 -1.031659 0.357445 5.102488 -0.121563 3.167066 -5.031693 1.760405 -2.999877 -0.102088 7.262375 -0.769444 -4.603362 3.949251 0.842179 12.911212 1.098640 1.749720 -1.775744 -3.066944 1.476610 -3.285558 -2.532310 5.722860 2.942871 2.572688 -0.281448 -0.234183 -0.395799 5.447148 -PE-benchmarks/edit-distance.cpp___GLOBAL__sub_I_edit_distance.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/quicksort-for-linked-list.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = -0.741604 -0.135746 1.999127 1.478362 -1.555251 -2.003306 -0.913322 -2.757047 1.310508 0.107322 1.713889 0.280239 0.649648 -1.457652 0.111519 -0.265350 0.592350 -0.564306 -0.129448 -0.846416 -0.133019 1.501779 0.459657 -1.783143 0.318602 -2.110461 1.299095 1.169525 0.510145 1.187469 0.271742 -0.156895 -0.988413 1.124220 -0.402094 0.446929 0.934283 0.279989 -0.921104 -0.345965 0.624758 0.820815 1.336799 -0.564819 2.086121 0.204651 0.854870 0.613223 -1.547134 -0.559961 -0.271396 1.454590 -1.088922 0.904901 0.401297 0.277961 0.204726 -1.460821 -0.539262 -1.761038 0.096880 -0.211024 -0.728052 -0.004753 -0.968841 0.434271 0.603295 -0.866586 0.876960 -0.384521 1.146843 0.199697 0.039713 0.027871 -0.970277 0.130768 0.428408 0.971634 0.972942 -0.238437 0.201469 -0.480134 -0.629366 -0.744735 0.562468 0.504247 0.570844 0.389345 -0.279502 -0.049644 0.398029 -0.650955 0.381909 0.635462 -0.937436 -0.515865 -0.100543 -0.373172 -0.878528 -0.729305 0.521667 -0.642514 0.796140 0.977191 -0.779270 0.209917 0.069930 0.461771 -1.210258 -0.974777 0.340401 -0.727679 0.960510 1.821952 -0.668251 -0.431410 -0.661895 -0.508438 -0.108675 1.271527 -0.020265 0.601024 1.422638 2.145614 0.429023 -1.461494 -1.155148 0.481791 1.382214 1.366930 0.766481 -1.812280 -0.688601 0.172357 -0.733924 -2.148285 -0.418148 -0.153173 1.544748 0.383232 -1.515279 0.570572 -0.756903 1.912178 0.599234 0.401327 -0.030495 0.206847 -1.658601 1.675341 2.099290 -0.275807 1.018675 -0.505178 -0.518620 0.716468 -0.687270 0.493166 0.709880 -0.647409 0.004665 -0.614469 -0.086573 1.088460 0.640583 0.816138 -0.184274 0.888750 -0.805187 -2.383155 -2.187604 0.184978 1.596555 0.252527 2.585713 -1.609886 -1.364548 -0.671571 2.044900 -0.515120 -0.728143 0.393277 -1.290193 1.167699 -1.342874 -1.909461 2.823503 2.673009 1.000156 0.337842 1.771557 0.786521 -1.249287 -0.221700 -0.358803 0.371845 0.797278 -1.180377 -0.078421 0.201456 -1.493538 -1.389368 0.321744 0.706137 0.321318 -0.158417 0.003839 0.489044 -0.882054 -0.936774 0.629209 -0.918571 -0.126139 0.270025 0.087475 0.521085 0.804178 -0.903379 -0.289869 0.221909 -0.794892 0.483484 0.589246 1.319087 0.688868 1.569055 1.577922 -0.183273 2.080838 0.482962 -0.876345 2.459529 -0.301193 0.792459 0.660553 0.590843 0.549900 0.261715 0.892648 -0.906461 0.144507 -1.719533 -0.067961 0.423161 1.479550 -1.864769 -1.431885 -2.121424 -0.574029 0.678381 0.660084 -0.479088 2.561127 -0.444840 0.051369 -3.135009 -0.270275 1.234141 -0.072142 0.694224 0.534854 -1.001463 -3.142649 -0.376011 -1.268354 -0.859272 -0.787287 -0.620327 -0.928624 -0.859627 1.850455 -0.550103 0.308074 1.918680 0.051412 0.734788 -0.728324 0.207955 -0.399249 -0.715714 -0.096310 0.190646 -1.563146 1.648376 0.213567 3.711795 -0.269718 0.855264 -0.891094 0.982722 -0.354887 -1.080064 -0.221592 1.777335 1.353664 0.405191 0.042757 0.242648 -0.895481 1.482156 -PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = -3.118294 -1.360638 6.511784 4.488701 -4.453977 -7.060649 -3.206625 -9.699291 5.573572 1.329839 6.501008 1.597233 3.329888 -5.357506 0.551408 -0.015863 2.627181 -3.135389 -0.339136 -3.083882 0.249723 7.526025 2.313737 -4.891886 0.673264 -8.021140 3.639728 3.264110 2.296133 4.731690 1.401477 -0.199594 -2.611122 3.418003 -1.420976 3.018144 2.474721 1.190952 -3.047746 -1.713874 2.138889 2.071262 4.905311 -1.326943 7.923475 -0.423284 3.774721 1.472212 -4.527231 -2.908652 -1.795181 5.398803 -4.241752 2.533280 0.657051 0.840326 1.011011 -4.427665 -2.044356 -6.210738 -0.131863 -0.487271 -3.310230 0.131157 -3.025279 2.128134 1.242194 -2.036333 1.626451 -2.013825 4.281438 1.098732 0.425394 0.058510 -4.875365 0.383887 0.685895 2.372312 3.489191 0.076221 -0.993309 -2.095629 -2.295713 -3.040731 3.482238 2.334415 1.125579 1.914830 -1.917050 0.287889 -0.283121 -1.868021 1.412132 2.133771 -4.352200 -1.671018 1.918809 -1.601357 -2.468120 -1.793230 1.947827 -2.559077 1.970866 3.213557 -1.341635 0.155355 -1.344888 0.633741 -5.277744 -3.427692 1.688617 -2.509112 1.819211 6.141852 -3.367072 -0.747088 -2.770331 -1.035686 0.051971 4.748114 0.323076 2.545863 5.077802 6.726518 1.594491 -5.108550 -3.229978 2.631581 5.944887 3.710690 2.044729 -5.522741 -2.674325 1.102885 -2.377530 -7.463184 -2.566323 1.464308 5.407956 1.669612 -5.087902 2.303589 -1.760917 6.693860 3.429593 0.594231 0.122492 1.012230 -6.092896 5.477128 8.098762 -1.022344 3.988063 -2.052679 -1.898899 4.394935 -4.042188 2.050893 2.412070 -1.764240 -1.101117 -2.136547 0.197859 3.820151 1.954165 3.197650 -1.599071 3.362100 -1.723151 -7.980173 -8.778867 -0.484233 5.658796 1.894714 9.060147 -5.360357 -3.913908 -1.791511 6.154946 -1.200072 -3.233660 1.691000 -4.801590 3.843321 -6.900985 -6.748495 11.234854 9.666627 4.372710 1.789255 6.187365 3.664177 -4.068518 -0.573854 -1.109109 2.170722 2.915132 -4.715486 0.358827 0.674202 -5.647064 -5.780423 -0.009710 2.211227 0.179323 -0.479668 1.536314 0.859006 -2.626325 -2.434269 2.299294 -3.137139 -1.617121 0.025726 0.437528 1.322743 2.554259 -2.613537 0.333924 1.132597 -3.074029 1.190972 2.168355 4.084817 2.856950 5.247431 7.122220 -1.441946 6.833107 0.560011 -2.662332 7.509556 -1.488713 2.051706 1.505927 2.058594 2.759560 0.769392 2.826779 -2.944420 0.287604 -5.377611 0.671087 2.186392 5.053754 -5.749257 -5.738504 -7.455494 -1.548805 2.182351 3.540351 -1.670493 9.316609 -2.703483 0.494211 -11.763440 -0.237635 4.272268 0.170565 2.222223 1.805442 -3.124799 -9.339541 -1.622531 -4.317447 -2.761624 -2.308704 -2.881862 -3.100710 -4.199833 7.118439 -3.956790 0.896617 5.869184 0.072722 3.679834 -1.579473 0.594598 -2.751894 -1.020664 -0.570705 1.037661 -4.620951 5.674040 0.138600 12.137866 -1.799698 3.365034 -2.804040 5.266748 -2.394888 -4.742960 -0.661818 6.349792 5.466941 0.290354 0.413014 0.173640 -2.140230 4.800392 -PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = -1.246036 -1.040369 3.350733 1.976824 -1.658126 -3.122188 -1.458895 -4.839567 3.202724 1.009852 3.144807 0.853737 1.875944 -2.687251 0.020101 0.015636 1.068325 -1.717097 -0.104265 -1.405658 0.737485 4.325015 1.143167 -2.283803 0.198791 -4.690781 1.803280 1.332540 1.650966 2.875296 0.495418 -0.115514 -0.999826 1.497585 -0.871537 1.585514 1.121009 0.630813 -1.635234 -0.904666 0.976390 1.176587 2.281658 -0.716610 4.097468 -0.477229 1.639433 0.467602 -1.597835 -1.523960 -0.750488 2.198568 -2.039507 1.188490 -0.229604 0.427410 -0.022533 -1.926569 -1.116303 -3.098229 0.184354 0.242703 -1.623659 0.128768 -1.605090 1.146520 0.553211 -0.982056 0.492927 -1.527085 2.078438 0.901507 0.444145 -0.426100 -3.069077 0.236854 0.207098 0.821888 1.542450 0.044181 -0.824948 -1.129344 -1.116164 -1.389597 1.819375 1.940462 0.143406 1.077359 -0.786822 -0.023131 -0.336301 -0.649241 0.718156 1.126575 -2.223783 -0.725609 0.719216 -0.574924 -0.500135 -0.676069 0.949716 -1.360703 0.955645 1.390422 -0.380754 0.522350 0.148975 0.546015 -2.353574 -1.578226 0.826810 -0.964335 0.967735 3.311207 -1.477708 -0.541004 -1.618437 -0.336019 -0.108754 2.283642 -0.215290 1.334651 2.686846 2.963716 1.015820 -2.768100 -1.425404 2.048393 2.865443 1.700688 0.808206 -2.600543 -1.165799 0.355038 -0.977036 -3.870746 -1.439512 0.517935 2.561287 0.014610 -2.297042 1.326485 -0.796370 3.444289 2.162200 -0.182110 0.270013 0.739002 -3.121218 2.535764 4.501608 -0.308632 1.677309 -1.705374 -1.114138 2.320405 -1.915192 1.253352 0.679965 -0.572097 -0.421913 -1.311562 0.678345 1.912647 0.498181 1.872777 -1.138006 1.713077 -0.610170 -3.874776 -4.298337 -0.957471 2.564287 1.197680 4.734147 -2.529786 -1.778672 -1.035814 2.744426 -0.070075 -1.239336 1.000250 -2.643576 1.829370 -4.140792 -3.565860 5.496047 5.173508 2.631000 1.010023 3.068233 1.714879 -1.441954 -0.078029 -0.251147 1.081051 1.689463 -2.565855 0.175722 0.234300 -2.770074 -3.212351 -0.007128 0.926651 -0.020717 -0.148587 0.957962 0.241156 -1.272974 -1.511083 1.552299 -1.845651 -0.795774 -0.217435 0.440485 0.356783 1.217226 -1.515549 0.588307 0.949060 -1.087411 0.898738 1.219332 1.579171 1.051716 1.771880 3.799504 -0.929324 3.048836 0.061676 -1.125816 3.846608 -0.858485 0.723438 0.765718 0.646443 1.294092 0.464536 0.962593 -1.491612 0.641603 -2.496617 0.514162 1.175213 2.332769 -2.448173 -3.003570 -3.200441 -0.647621 0.698408 1.931899 -0.320913 4.779842 -1.616980 0.551189 -5.970131 -0.097775 2.130603 0.378348 1.328661 0.965743 -1.449016 -4.580168 -0.677580 -1.980498 -1.296485 -1.393529 -2.030289 -1.589854 -2.164082 3.508171 -2.049910 0.471177 2.890101 0.060667 2.197655 -1.277299 0.379318 -1.712157 -0.254095 -0.758094 0.751470 -2.074872 2.214248 -0.143912 5.579402 -1.134454 1.839359 -1.384207 3.238139 -1.682258 -2.733437 -0.383647 3.229695 2.474546 0.110830 0.122880 -0.584663 -0.896677 2.139630 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.001663 0.002533 0.879906 0.330175 -0.377924 -1.101804 -0.338577 -1.634540 0.893987 0.378577 0.806014 0.140007 0.743283 -0.572827 -0.136858 0.219333 0.341600 -0.283019 0.105022 -0.428463 -0.194663 1.385975 -0.028379 -0.124454 0.070198 -1.254375 0.766105 0.290876 0.636152 0.901694 0.280407 0.025763 -0.210514 0.388141 -0.195980 0.435435 0.086193 0.376393 -0.488725 -0.071609 0.147680 -0.030527 0.678281 0.104817 0.924077 0.130473 0.308359 0.184378 -0.076476 -0.431596 -0.300966 0.390899 -0.510615 0.285782 -0.422673 -0.164802 0.118726 -0.211129 -0.069710 -0.324652 -0.022968 -0.145865 -0.607924 0.112836 -0.653236 0.258492 -0.289417 -0.428682 -0.231321 -0.384236 0.546798 0.233050 0.004912 -0.147520 -1.373518 -0.026810 0.064466 0.094567 0.594528 0.097381 -0.273057 -0.345457 -0.648748 -0.641128 0.860591 0.787249 0.091962 0.420908 -0.438760 -0.278814 -0.293818 -0.027773 0.541519 0.469048 -0.469061 -0.077379 -0.029513 -0.134649 -0.170326 -0.753873 0.386951 -0.371543 0.300392 0.020018 0.071317 0.015179 0.159710 0.059947 -0.454853 -0.519564 0.224598 -0.467396 0.219096 1.100093 -0.198093 -0.304367 -0.578789 -0.237193 0.011428 0.643612 0.246395 0.146561 0.823231 0.607345 0.358851 -0.776182 -0.500442 0.692615 0.477637 0.350107 0.163824 -0.732508 -0.383326 0.209987 -0.386982 -1.203539 -0.435543 0.215465 0.549541 -0.464476 -0.251271 0.531462 -0.323352 0.444676 0.764138 -0.057576 0.234831 0.165228 -0.725389 0.541468 1.258687 -0.076491 0.394900 -0.626966 -0.378837 0.768006 -0.439955 0.270949 0.046583 -0.232331 -0.353488 -0.232830 0.398688 0.608648 -0.128199 0.422443 -0.090887 0.466191 -0.460473 -0.803833 -1.126372 -0.167770 1.054488 0.400592 1.216857 -0.765622 -0.177361 -0.001576 0.725789 0.173859 -0.252065 0.414995 -0.669341 0.530632 -1.293645 -0.972785 1.389643 1.060813 0.802107 0.012713 0.453520 0.553232 -0.430700 -0.309812 -0.224144 0.317586 0.330964 -1.048682 -0.183996 0.053951 -0.841246 -0.625564 -0.024800 0.307814 0.185243 0.043780 0.540454 -0.474028 -0.225996 -0.678347 0.612208 -0.400430 -0.133485 -0.060976 0.093118 -0.168655 0.321243 -0.283084 0.263936 0.304867 -0.180084 0.310771 0.351390 0.175501 0.036178 0.789071 1.071511 -0.479840 0.476066 -0.102711 -0.219677 1.053725 -0.238086 0.263875 0.191522 0.379236 0.283382 0.210914 0.454540 -0.427885 -0.134193 -0.764135 -0.116592 0.494447 0.453992 -0.172720 -0.638926 -1.086050 -0.108914 -0.122608 1.019516 0.030423 1.281586 -0.471309 0.367169 -1.252545 0.174292 0.441204 -0.061272 0.494476 0.257442 -0.423805 -0.473229 -0.271341 -0.687241 -0.672763 -0.324873 -0.579651 -0.494232 -0.453211 0.457794 -0.622122 0.033287 0.597608 -0.071905 0.518705 -0.602781 0.149334 -0.682797 0.187384 0.244837 -0.004914 -0.549376 0.436179 0.000549 1.456056 -0.164674 0.608158 -0.230152 0.804246 -0.498148 -0.944986 -0.248243 0.955381 0.565475 0.029373 0.090255 -0.097380 0.164535 0.524128 -PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = -0.292870 -0.075361 1.787121 1.024557 -1.078063 -1.806845 -0.735346 -2.929376 1.561433 0.338069 1.565959 0.234366 0.906180 -1.302286 0.016400 0.250121 0.621699 -0.565240 0.029505 -0.704233 0.000841 2.071505 0.169044 -0.909912 0.179864 -2.137366 0.801093 0.811158 1.038219 1.000489 0.386057 -0.197973 -0.665640 0.749148 -0.416093 0.659781 0.660542 0.356963 -1.234398 -0.420377 0.160988 0.360316 1.170258 -0.436239 1.883953 -0.299397 1.007216 0.447666 -0.824431 -0.562204 -0.563075 1.647990 -0.834947 0.701047 0.190995 -0.140559 0.050818 -0.884391 -0.451787 -0.938443 -0.142232 -0.137149 -0.796656 0.061941 -0.858048 0.479406 0.194215 -0.618805 0.379764 -0.414668 1.091483 0.365293 0.248195 -0.012021 -1.729343 0.127867 0.212133 0.601169 0.870595 0.170297 0.224882 -0.494000 -0.670061 -0.828818 1.131640 1.057492 0.275450 0.367690 -0.705978 -0.015311 -0.117654 -0.524783 0.541632 0.511446 -1.234080 -0.261491 -0.156469 -0.328851 -0.616297 -0.963419 0.453389 -0.660545 0.590394 0.363281 -0.117828 0.226921 0.163322 0.287381 -0.978415 -0.955385 0.391562 -0.513890 0.513598 1.994087 -0.680684 -0.367305 -0.709543 -0.279186 -0.441028 0.999891 0.190975 0.646721 1.280659 1.577604 0.660035 -1.295628 -0.944466 0.931248 1.311224 1.023641 0.485089 -1.438076 -0.605079 0.292799 -0.497129 -2.187994 -0.673280 0.347560 1.338348 0.068040 -0.905396 0.307881 -0.439592 1.620653 0.768782 -0.039075 0.170786 0.318495 -1.361008 1.260239 2.094987 -0.206845 0.912498 -0.700571 -0.336489 0.763316 -0.831837 0.569338 0.386180 -0.315161 -0.194942 -0.627121 0.090532 0.981772 0.343493 0.664622 -0.485794 0.875781 -0.875281 -2.074622 -2.200706 -0.112750 1.415573 0.207069 2.139464 -1.287392 -1.199522 -0.357480 1.608944 -0.293620 -0.659885 0.655945 -1.511580 1.047096 -1.424100 -1.778745 2.708725 2.497923 1.070583 0.209872 1.524118 0.885839 -1.511170 -0.442735 -0.343437 0.449352 0.759520 -1.887857 -0.292063 0.151510 -1.485655 -1.258499 0.099342 0.545182 0.110559 0.364504 0.791995 0.101296 -0.705739 -0.731552 0.998369 -0.708746 -0.221232 0.026642 0.204276 0.210735 0.896294 -0.936863 0.091046 0.519240 -0.755604 0.447137 0.547318 0.854034 0.365397 1.520413 1.788283 -0.216603 2.013602 0.088154 -0.830141 1.908561 -0.390348 0.467694 0.263481 0.301456 0.332187 0.322577 0.704235 -0.844187 -0.258140 -1.439953 -0.157556 0.392098 1.143510 -0.861194 -1.525572 -1.758360 -0.451194 0.376289 0.874468 -0.145558 2.311039 -0.883295 0.259665 -2.989267 -0.012080 0.974797 -0.010025 0.834135 0.406321 -0.801339 -2.101153 -0.366478 -1.171634 -1.226154 -0.666977 -1.065762 -0.795517 -1.277299 1.864283 -0.932334 0.140692 1.445155 0.103536 1.070479 -0.795440 0.188506 -0.791840 -0.031924 0.163745 0.118608 -1.259459 1.238305 0.042346 3.442521 -0.381331 0.782838 -0.745649 1.083787 -0.569621 -1.372889 -0.238560 1.665543 1.341440 0.203203 -0.147831 -0.090282 -0.627435 1.145771 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -1.473215 -0.768710 2.758977 2.405672 -2.166757 -3.777412 -1.401565 -4.452637 2.846640 0.882781 3.124846 1.006039 2.179576 -2.538030 0.125248 0.036574 1.541620 -1.313145 -0.034611 -1.543855 -0.410672 4.583717 1.356169 -2.008435 0.185584 -3.368483 2.317181 1.231943 1.359321 3.080307 0.767781 0.040308 -0.968143 1.413249 -0.637888 1.618206 0.107283 1.013000 -1.375160 -0.811831 1.213180 -0.289092 2.723742 -0.206961 3.471004 -0.222047 2.037695 0.471003 -1.918154 -1.700565 -1.404274 1.783252 -2.457456 1.140848 -0.729688 -0.029283 0.972567 -1.123273 -0.821532 -3.092247 -0.109991 -0.753521 -2.073740 0.102840 -1.940434 1.163555 -0.540103 -1.256088 -0.039470 -1.115042 2.071970 0.899556 0.273979 -0.305047 -3.425939 -0.005414 0.145056 0.794311 1.855829 0.646384 -1.076721 -1.282849 -1.685198 -1.700024 2.260578 0.826249 0.392918 1.234110 -1.237023 -0.113890 -0.475287 -0.187016 0.997740 0.976144 -1.920566 -0.207289 1.046975 -0.598111 -0.718821 -1.536507 0.999908 -1.326384 0.758148 1.371082 -0.461074 -0.079452 -0.874720 0.081853 -2.574144 -2.198046 0.820802 -1.446471 0.081496 2.912286 -1.577440 -0.436306 -1.368021 -0.230895 0.434192 2.327352 0.542665 1.278199 2.367748 2.731075 0.865086 -2.604930 -1.187822 1.592490 2.757592 1.360266 0.816897 -1.831080 -1.606642 0.712567 -1.216852 -3.749118 -1.496296 1.661829 2.528455 0.398121 -2.205776 1.614456 -0.945567 2.646058 2.406728 0.392335 0.472561 0.552047 -2.959927 2.368819 4.073159 -0.500766 1.891804 -1.132961 -1.392248 3.462865 -2.017089 0.871396 0.637708 -0.754730 -0.884821 -0.996389 0.495130 1.976469 0.534812 1.435962 -0.493609 1.617601 -0.813030 -3.720475 -4.182364 -0.407732 3.557979 1.848111 4.394609 -2.713160 -0.894729 -0.159463 2.119258 -0.018490 -1.667836 0.823074 -2.091433 1.839227 -5.382684 -3.557080 5.650036 3.806205 2.306889 0.997828 2.197048 2.109786 -1.264331 -0.564406 -0.972502 1.350885 1.262968 -2.322939 0.026621 0.333466 -3.063703 -2.667039 0.098183 1.041188 0.325730 -0.913669 0.911422 -0.763849 -1.030249 -1.442413 1.438103 -1.812574 -1.014052 -0.133057 0.025027 0.427296 0.916641 -0.472597 0.763832 0.246933 -1.248845 0.365550 0.761774 1.622071 1.125911 2.776751 4.304591 -1.447585 1.928799 -0.009936 -1.257095 4.121593 -1.192276 0.852555 0.472951 1.643988 1.676873 0.383945 1.861593 -1.365439 -0.037486 -2.544605 0.220610 1.748795 2.222152 -2.902654 -2.529676 -3.982505 -0.264821 0.585850 2.796728 -0.742410 4.631019 -1.843777 0.486280 -5.395570 0.211509 2.015384 0.170003 1.578866 0.905036 -1.390930 -3.066500 -1.093622 -2.072292 -0.385676 -1.124717 -1.481735 -1.458899 -1.512418 2.238292 -2.421640 0.340501 2.289966 -0.620580 2.192420 -0.695879 0.237592 -1.806007 0.080873 -0.073629 0.716266 -1.901329 2.889776 -0.009754 5.391384 -0.602769 1.690834 -1.206033 3.048867 -1.668634 -2.765062 -0.556040 3.220365 2.715423 -0.160929 0.704042 0.129693 -0.094100 2.000700 -PE-benchmarks/quicksort-for-linked-list.cpp__main = 1.148471 0.615725 1.941996 0.204385 -1.023826 -2.497889 -0.466753 -3.998708 1.901254 0.427904 1.049210 0.285375 1.105903 -0.758409 -0.268179 1.540521 0.959947 -0.085813 0.169751 -1.076309 -0.204977 2.701846 -0.703644 0.337127 0.402617 -2.685320 0.426780 0.885755 2.331274 0.969627 0.792267 -0.401069 -0.654601 0.615393 -0.314240 0.444102 0.383835 0.121461 -2.696112 0.385070 -0.799620 0.061492 1.536729 -0.040628 1.678281 -0.419578 1.172664 0.909781 0.259772 -0.338126 -1.079918 2.300040 -0.063886 0.871495 -0.262645 -0.634293 -0.596747 -0.308899 -0.101620 1.284863 -0.676268 -0.024803 -0.946657 0.214876 -1.282623 0.200506 -0.898391 -0.922992 -0.354627 -0.392535 1.016777 0.272606 -0.049933 -0.389169 -3.606272 -0.095930 0.088821 0.865337 1.036707 0.386631 0.549611 -0.486418 -1.200771 -1.128214 1.440836 2.400689 -0.014398 0.378784 -1.634685 -0.905600 -0.809539 -0.416239 1.176826 0.470207 -1.883960 -0.002690 -1.336207 -0.421945 -0.889096 -2.224033 0.621984 -0.246954 0.774580 -1.714959 1.053874 0.295251 0.843160 0.091104 -0.184447 -0.670248 0.350075 -0.113323 0.285721 3.275039 -0.069162 -0.815593 -1.265538 -0.358428 -1.472044 0.927069 0.554243 0.166193 1.401846 1.286183 1.078512 -1.205117 -1.136381 1.240605 0.546512 0.993154 0.769067 -1.046584 -0.669764 0.422915 -0.365644 -2.643516 -0.651072 0.526142 1.219946 -0.870818 0.866799 -0.727457 -0.700590 1.284687 0.726988 -0.732406 0.754658 -0.005158 -1.072682 1.103033 2.711046 -0.093597 0.797407 -1.710845 0.135682 0.573983 -0.683864 0.765356 -0.230013 -0.502829 -0.733460 -0.175279 0.426861 0.991402 -0.227193 0.022003 -0.226987 0.850949 -1.524538 -1.553792 -2.273384 -0.238535 1.288900 0.000788 1.644216 -1.106776 -1.005553 -0.503117 1.185720 0.279346 -0.362480 1.522470 -2.142157 1.009401 -1.191634 -1.483178 2.669612 3.092081 1.266299 -0.475361 1.109059 1.069223 -2.405854 -1.403882 -0.157317 0.298908 0.515334 -3.632480 -0.979855 0.257181 -1.622827 -0.716495 0.062009 0.697634 0.560451 1.486785 2.251070 -0.694359 -0.886116 -1.479810 1.757306 -0.421516 0.079789 0.380356 0.282167 -0.456517 1.211099 -1.106172 0.211767 1.162164 -0.570259 0.855471 0.455664 0.478300 -0.379832 1.358385 1.733147 0.150535 2.791715 -0.138651 -1.157477 1.777511 -0.406717 0.832963 0.092090 -0.293752 -0.546279 0.583330 0.387291 -0.885371 -0.839279 -1.237842 -0.533126 0.246163 0.946644 0.941270 -1.868529 -1.689901 -0.348957 -0.259843 1.271160 0.271859 2.017909 -1.397051 0.912923 -2.824864 0.475766 0.482594 0.160165 1.235575 0.411971 -1.058739 -0.282468 -0.122178 -1.694575 -2.166334 -0.401946 -1.672486 -1.003005 -1.302408 1.691949 -1.145629 -0.198927 1.331946 -0.366718 1.627562 -1.772105 0.212442 -1.210889 0.417635 1.531930 -0.195321 -1.127788 0.369641 -0.023036 3.582235 0.131559 0.937892 -0.250732 0.390502 -0.283284 -2.193047 -0.689105 1.828976 1.049566 0.292469 -0.481127 -0.726414 0.195648 0.733229 -PE-benchmarks/quicksort-for-linked-list.cpp___GLOBAL__sub_I_quicksort_for_linked_list.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/mergeSort_LinkedList.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = -0.480277 -0.199779 2.848143 1.352146 -1.598790 -2.671180 -1.166813 -4.348636 2.394674 0.801740 2.376476 0.456572 1.437303 -1.776246 -0.164008 0.121176 0.864937 -1.081007 -0.024926 -1.241483 -0.090783 3.108984 0.329906 -1.395624 0.298798 -3.714535 1.797048 1.174839 1.413680 1.977969 0.570872 -0.087016 -1.031288 1.327617 -0.595266 1.024705 0.913970 0.641178 -1.420055 -0.394809 0.736305 0.822932 1.916782 -0.353150 2.977532 0.068687 1.016510 0.631590 -1.145494 -1.041068 -0.431280 1.639554 -1.370020 1.017610 -0.140124 0.159376 -0.004700 -1.568497 -0.547494 -1.504134 0.049390 -0.086720 -1.296192 0.211281 -1.449282 0.663515 0.213060 -1.080378 0.363709 -1.135894 1.553979 0.458931 0.041256 -0.315912 -2.633248 0.111358 0.385490 0.667818 1.420861 0.018820 -0.362039 -0.784493 -1.270385 -1.378502 1.470982 1.897366 0.321495 0.757797 -0.802571 -0.384391 -0.144182 -0.571066 0.923612 1.181200 -1.704660 -0.588343 -0.147796 -0.599748 -0.909122 -1.256959 0.897897 -0.990700 1.058018 0.621436 -0.613763 0.287088 0.452995 0.337026 -1.407303 -1.200018 0.443554 -1.058175 1.290279 3.009380 -0.780812 -0.814631 -1.479972 -0.714052 -0.191013 1.686555 0.125084 0.572266 2.474064 2.303887 0.936386 -2.205962 -1.466692 1.471081 1.670620 1.415294 0.750529 -2.324973 -0.912687 0.345200 -0.868263 -3.266892 -0.945447 -0.060990 1.847911 -0.504727 -1.300111 0.959219 -0.890648 2.218341 1.533013 0.004622 0.320751 0.461484 -2.218587 1.842040 3.425717 -0.173038 1.196692 -1.533744 -0.944412 1.556423 -1.196834 0.962432 0.583417 -0.646183 -0.581238 -0.891214 0.641638 1.607482 0.044582 1.215662 -0.517809 1.286486 -0.920358 -2.763763 -3.342732 -0.338934 2.228485 0.840436 3.627791 -2.206367 -1.254798 -0.683278 2.466156 0.064057 -0.853508 1.013122 -1.987537 1.512314 -2.568635 -2.734849 3.909249 3.868246 1.871565 0.316976 2.199392 1.054439 -1.535871 -0.546152 -0.454777 0.759428 1.200180 -2.277570 -0.089706 0.280025 -2.163108 -1.977921 0.031102 0.885809 0.509114 -0.066672 0.930903 -0.136157 -0.999031 -1.681786 1.440387 -1.162345 -0.364219 0.021446 0.323740 0.039957 1.128801 -1.163519 0.120767 0.609996 -0.729322 0.909770 1.059816 1.133629 0.398512 1.841758 2.596045 -0.799936 2.348291 0.062642 -0.772793 3.073061 -0.643244 0.784542 0.748662 0.671924 0.663303 0.524904 1.020485 -1.257057 0.175039 -2.076305 0.063220 0.735786 1.604266 -1.595925 -2.065809 -2.857641 -0.591093 0.251130 1.723699 -0.119782 3.703513 -0.997107 0.588664 -4.270573 -0.022455 1.490966 0.053615 1.221587 0.736215 -1.367880 -2.976284 -0.535232 -1.868866 -1.545875 -0.906678 -1.373343 -1.448948 -1.415755 2.349475 -1.251384 0.273995 2.305184 -0.048983 1.370479 -1.388549 0.396411 -1.245741 -0.303982 0.173360 0.204788 -1.740641 1.655846 0.007757 4.581757 -0.558215 1.570211 -0.873221 1.997460 -0.953108 -2.296228 -0.559830 2.596681 1.663708 0.351597 -0.076510 -0.346606 -0.538650 1.769044 -PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -2.007499 -0.858004 3.897741 3.453340 -3.318158 -5.405789 -2.056286 -6.297699 3.654711 1.113342 4.454801 1.179566 2.809169 -3.389937 0.260545 0.014331 2.127802 -1.748748 -0.270798 -2.306108 -1.009351 5.674779 1.715867 -3.023854 0.349743 -4.409007 3.265291 2.076851 1.387011 3.758620 1.145910 0.168406 -1.528128 2.127134 -1.039363 2.226550 0.361471 1.439059 -1.706934 -1.129165 1.916626 -0.129658 3.805251 -0.380078 4.839822 0.108530 2.909514 0.857089 -3.052320 -2.284536 -1.680388 2.602292 -3.331819 1.557559 -0.869178 0.156615 1.502336 -2.099554 -1.081945 -4.199167 -0.096864 -1.035691 -2.996963 0.121850 -2.567588 1.534819 -0.161845 -2.002918 0.306161 -1.422843 2.859289 0.902178 -0.090054 -0.326492 -4.107459 -0.148839 0.468419 1.129778 2.610437 0.587915 -1.223853 -1.781583 -2.389350 -2.295117 3.071273 0.948738 0.942498 1.739050 -1.603413 -0.105347 -0.346089 -0.464219 1.505131 1.445980 -2.508726 -0.580128 1.561503 -1.065902 -1.736841 -1.922497 1.590438 -1.705127 1.309666 2.030129 -1.144911 -0.041677 -1.267145 0.062932 -3.688031 -2.996797 0.748058 -2.347128 0.789760 3.959990 -2.172780 -0.771765 -1.861874 -0.703764 0.643965 3.153346 0.852835 1.514606 3.718396 3.974967 1.010799 -3.716033 -1.978683 1.673350 3.744588 2.165700 1.273421 -2.887771 -2.276649 0.947711 -1.937106 -5.232426 -1.883095 1.776878 3.509325 0.562596 -3.334241 2.521294 -1.374942 3.604526 3.032618 0.851987 0.444065 0.673166 -4.097190 3.225358 5.340090 -0.689128 2.748155 -1.438406 -1.959414 4.371652 -2.537998 1.029091 1.477502 -1.468707 -1.363701 -1.229851 0.573520 2.698239 0.861691 1.902226 -0.533014 2.307409 -1.305893 -5.089277 -5.788257 -0.228975 4.811783 2.412807 6.254114 -4.013789 -1.448055 -0.311318 3.288989 -0.440843 -2.353378 1.040773 -2.826195 2.621598 -6.547784 -4.871117 7.570048 5.102503 3.145239 1.324300 3.360660 2.474553 -1.893668 -0.672681 -1.306991 1.804505 1.975850 -2.916531 0.230527 0.477291 -4.222131 -3.505637 -0.000923 1.673670 0.311747 -1.358702 1.141102 -1.037083 -1.492083 -2.020285 1.614239 -2.319175 -1.124798 -0.056676 0.004906 0.638697 1.232098 -0.778253 0.677165 -0.064794 -1.811282 0.677259 1.162440 2.488928 1.707142 4.221016 5.637511 -2.117459 3.102646 -0.025427 -1.607065 5.466873 -1.470717 1.419762 0.837931 2.614130 2.244472 0.421820 2.844305 -1.920777 0.072664 -3.554611 0.175175 2.419614 3.035014 -4.124115 -3.049461 -5.837574 -0.600760 0.838528 3.853983 -1.302919 6.274365 -2.168469 0.635775 -7.403655 0.186876 2.606813 -0.001017 1.895065 1.263975 -2.108903 -4.662369 -1.435705 -3.019491 -1.018947 -1.377883 -1.598267 -2.205345 -1.934897 2.991298 -3.102821 0.371828 3.367879 -0.765829 2.479174 -0.971115 0.458156 -1.936062 -0.266052 0.231037 0.819956 -2.822404 4.079123 0.145148 7.893936 -0.496248 2.571258 -1.639468 3.928721 -1.894291 -3.624434 -0.884767 4.430738 3.730297 -0.181575 0.998009 0.416002 -0.222042 3.034733 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -2.168981 -0.764698 5.033266 4.263084 -3.989553 -5.813626 -2.464011 -7.453960 4.440196 1.017601 4.905798 1.362109 2.827222 -4.112392 0.195158 -0.311053 2.306186 -1.859148 -0.472116 -2.540698 -0.615838 6.254893 1.797529 -4.240518 0.502715 -5.711843 3.479023 2.628315 1.937452 3.898101 1.158105 0.013018 -2.080066 2.644659 -1.382211 2.036633 1.076672 1.280474 -2.564935 -1.539372 2.107685 0.907125 4.267677 -0.806191 5.687230 -0.220149 3.151302 1.132897 -3.640707 -2.249401 -1.649469 3.693252 -3.344950 2.143315 -0.055456 0.512214 1.313234 -3.022837 -1.276910 -4.705464 0.007520 -0.667010 -2.908111 0.030486 -2.811770 1.562955 0.534970 -2.189220 1.053370 -1.678723 3.296597 0.893403 0.177585 -0.673755 -4.351899 0.095425 0.577877 1.712545 2.976689 0.777788 -0.791901 -1.865739 -2.335334 -2.474771 2.917159 1.414977 0.928000 1.764919 -1.535428 -0.344599 0.010941 -1.113337 1.403603 1.616007 -3.265814 -0.771345 1.033308 -1.185300 -1.949883 -1.873932 1.601808 -1.940624 1.617131 2.338480 -1.504029 0.282359 -0.646170 0.309819 -3.782925 -3.037530 1.015565 -2.280015 1.327987 5.047280 -2.301799 -1.101640 -2.004139 -0.880365 0.012137 3.652099 0.487159 1.834725 4.186637 4.943020 1.327453 -4.180843 -2.295608 2.087890 4.228717 2.853907 1.689513 -3.849143 -2.328731 0.926816 -1.770108 -6.138769 -1.850104 1.416304 4.218169 0.938072 -3.966243 2.217079 -1.570837 4.725408 2.766400 0.784867 0.440637 0.736324 -4.665417 3.966485 6.325129 -0.688547 2.962364 -1.725794 -2.107694 4.175888 -2.767859 1.509697 1.487766 -1.570191 -0.975740 -1.608964 0.551556 3.137303 0.935716 2.043753 -0.767906 2.553163 -1.660497 -6.339616 -6.819783 -0.172953 4.838567 2.193703 7.401070 -4.443298 -2.439277 -1.007614 4.360959 -0.852360 -2.409021 1.391036 -3.630271 3.110695 -6.341856 -5.621159 8.692697 6.743838 3.156548 1.284307 4.507279 2.492708 -2.618642 -0.950844 -1.368159 1.693146 2.566878 -3.274991 0.315931 0.580985 -4.664320 -4.111793 0.365349 1.796620 0.625755 -1.230341 1.110720 -0.439584 -2.099419 -2.538611 2.094909 -2.622969 -0.983567 0.159406 0.195118 0.781842 1.975365 -1.426120 0.110407 0.217567 -2.006671 0.870323 1.313326 3.135213 1.792175 4.422713 5.991954 -1.674174 4.668100 0.478400 -2.136698 6.859618 -1.692145 1.593248 1.085980 2.372075 2.170357 0.681644 2.722761 -2.356533 0.321440 -4.280069 0.326002 1.984699 3.573437 -5.324277 -3.876702 -6.250225 -1.087615 1.158361 3.312781 -1.328793 7.417538 -2.487412 0.361472 -9.114228 -0.093137 3.431240 0.101263 2.289118 1.534347 -2.617618 -6.615646 -1.426827 -3.434365 -1.316252 -1.802110 -2.238040 -2.554887 -2.567930 4.507595 -3.153076 0.739635 4.728570 -0.633721 2.833359 -1.642399 0.578671 -2.006330 -0.871426 -0.220411 0.889734 -3.518720 4.689966 0.038068 9.447887 -0.843064 2.857538 -2.188021 4.163010 -1.974632 -4.213781 -0.969940 5.112243 4.076241 0.166033 0.739975 0.346356 -1.253538 3.721526 -PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = -0.401402 -0.057448 1.702151 1.030670 -1.051564 -1.709483 -0.725201 -2.598014 1.380139 0.298973 1.498359 0.230574 0.844279 -1.183913 0.052788 0.099214 0.621187 -0.507262 -0.021482 -0.694749 -0.034865 1.815111 0.252363 -1.015237 0.176522 -1.921425 0.829357 0.812479 0.814381 0.998086 0.329781 -0.126473 -0.649524 0.762590 -0.425286 0.563516 0.636901 0.339682 -1.035863 -0.398700 0.265941 0.413303 1.128044 -0.372347 1.750761 -0.128541 0.865447 0.420597 -0.902310 -0.557082 -0.446677 1.425257 -0.836217 0.668983 0.167593 -0.026377 0.136411 -0.895700 -0.390841 -1.105988 -0.042963 -0.115106 -0.734458 0.040628 -0.803686 0.449603 0.238128 -0.636783 0.395654 -0.402483 1.006466 0.292062 0.181859 -0.028372 -1.446485 0.117406 0.231511 0.578168 0.850780 0.089449 0.115515 -0.474626 -0.612453 -0.777907 0.964676 0.826153 0.314632 0.416739 -0.575236 -0.039332 -0.018422 -0.477616 0.466277 0.505518 -1.042288 -0.246341 -0.040411 -0.321704 -0.612833 -0.815511 0.428466 -0.611066 0.543891 0.488444 -0.223779 0.181628 0.025770 0.277174 -0.989274 -0.885697 0.378692 -0.544861 0.471072 1.754785 -0.653607 -0.346662 -0.613294 -0.294508 -0.279246 1.015331 0.137083 0.588254 1.176469 1.528995 0.519531 -1.236486 -0.846444 0.759337 1.241492 0.974505 0.514780 -1.373695 -0.613573 0.266420 -0.556041 -1.991681 -0.565338 0.277567 1.276001 0.116975 -1.021404 0.430460 -0.474770 1.502821 0.720270 0.101931 0.116035 0.242133 -1.336878 1.203973 1.903568 -0.239206 0.905694 -0.566055 -0.397000 0.765100 -0.757050 0.507320 0.406655 -0.391719 -0.167135 -0.543724 0.072011 0.951154 0.388925 0.665299 -0.388991 0.788922 -0.764732 -1.962576 -2.048196 -0.083875 1.364144 0.240774 2.069300 -1.242578 -1.096136 -0.362510 1.556893 -0.343043 -0.650849 0.537555 -1.298365 0.981077 -1.413718 -1.682286 2.535572 2.290644 0.987666 0.222922 1.426950 0.788911 -1.243283 -0.369797 -0.310353 0.418688 0.682624 -1.533467 -0.210157 0.148908 -1.381621 -1.159764 0.103505 0.539313 0.112061 0.173412 0.568298 0.113593 -0.678927 -0.712223 0.793347 -0.703313 -0.207050 0.057494 0.151003 0.236291 0.764427 -0.809914 0.000965 0.415410 -0.710925 0.384444 0.486879 0.884552 0.442952 1.444859 1.627056 -0.243527 1.779474 0.141718 -0.754668 1.898114 -0.391271 0.490054 0.295897 0.416406 0.373935 0.283280 0.714188 -0.770001 -0.155623 -1.388073 -0.128033 0.410150 1.091462 -1.029500 -1.372548 -1.696760 -0.392078 0.375240 0.860944 -0.248432 2.202146 -0.732180 0.197898 -2.760867 -0.039486 0.944373 -0.050493 0.733396 0.436120 -0.783828 -2.139715 -0.346657 -1.098550 -1.008076 -0.607429 -0.896303 -0.735475 -1.060526 1.647214 -0.839556 0.157835 1.400913 0.072145 0.929768 -0.640892 0.165008 -0.671888 -0.135405 0.115975 0.121999 -1.181173 1.236126 0.071233 3.171598 -0.326190 0.787435 -0.708570 1.011916 -0.480117 -1.210015 -0.260034 1.578981 1.263830 0.200611 -0.042579 0.005361 -0.565725 1.115035 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.731993 -0.267819 1.800176 1.184091 -1.500180 -2.625542 -0.910019 -3.281008 1.831417 0.697127 2.045134 0.583987 1.575969 -1.383774 0.003998 0.245525 1.113294 -0.884345 0.264914 -1.089625 -0.594701 3.177388 0.650936 -0.581581 0.150075 -2.256882 1.743832 0.553348 1.130541 2.177867 0.661968 -0.056243 -0.751184 0.848342 -0.078446 1.139283 -0.014793 0.783849 -1.014684 -0.134418 0.566264 -0.726314 1.852669 0.047806 2.148429 -0.011345 1.131916 0.433324 -1.016024 -1.170616 -1.009956 0.928249 -1.669923 0.693842 -0.586718 -0.395312 0.545443 -0.352391 -0.450773 -1.398097 -0.301717 -0.973851 -1.376092 0.269083 -1.471116 0.788501 -1.104098 -0.844222 -0.360084 -0.686611 1.352476 0.673135 0.250661 0.108315 -2.781828 -0.025565 0.067162 0.497695 1.288031 0.425325 -0.718771 -0.747439 -1.418223 -1.378185 1.608759 0.887495 0.218749 0.609748 -1.102857 -0.100723 -0.492153 0.022556 0.895968 0.755367 -1.296974 -0.018018 0.230609 -0.403471 -0.504236 -1.855189 0.680185 -0.880114 0.589208 0.495233 -0.246761 -0.332837 -0.619059 -0.007807 -1.499558 -1.596700 0.607111 -0.972572 -0.031701 2.185895 -0.924241 -0.328016 -1.154323 -0.248580 0.350782 1.446505 0.663651 0.726303 1.517116 1.714549 0.716044 -1.669711 -0.941885 1.165934 1.562908 0.700645 0.561425 -1.093150 -1.134927 0.602434 -0.879334 -2.516576 -1.093009 1.190024 1.570566 -0.087668 -0.835114 0.814534 -0.804097 1.398728 1.774935 0.256729 0.454547 0.293559 -1.845395 1.510183 2.671446 -0.321527 1.226697 -0.891293 -0.819618 2.441035 -1.330575 0.550631 0.271118 -0.346611 -0.897905 -0.607341 0.313433 1.305166 0.218714 0.911105 -0.195084 1.065133 -0.719726 -2.211821 -2.656228 -0.155811 2.773768 1.219830 2.467254 -1.848943 -0.266976 0.198492 1.362219 0.464859 -1.187115 0.715847 -1.276777 1.177800 -3.688549 -2.272874 3.572759 2.400579 1.520197 0.441248 0.954049 1.632075 -1.240250 -0.705499 -0.882554 1.016695 0.366840 -2.076526 -0.380068 0.303306 -2.039033 -1.489705 0.048916 0.796217 0.640203 -0.451937 0.866089 -0.646300 -0.529247 -1.139261 1.318799 -1.047642 -0.819962 -0.029069 -0.039676 0.205306 0.593403 -0.163484 0.717286 0.315894 -0.797258 0.304188 0.626176 0.829097 0.406329 2.110347 2.771599 -1.017830 0.763085 -0.158604 -0.815151 2.587269 -0.792862 0.667164 0.233346 1.008433 0.915397 0.300398 1.406232 -0.896389 -0.570236 -1.636862 -0.120581 1.098853 1.430406 -1.338053 -1.831403 -2.789621 0.069664 0.237942 2.205082 -0.258758 2.985764 -1.206331 0.542265 -3.136151 0.294487 1.185018 0.057393 1.287029 0.502046 -0.853823 -1.061684 -0.791027 -1.584010 -0.408847 -0.670812 -0.962787 -0.972855 -0.868249 1.171366 -1.462980 0.019679 1.124947 -0.509815 1.603894 -0.377108 0.056421 -1.510717 0.360452 0.470676 0.288267 -1.189120 1.923989 0.087623 3.484785 -0.258478 0.946288 -0.516294 1.741646 -1.040390 -1.939799 -0.420203 2.164227 1.749636 -0.007747 0.311951 -0.006520 0.326500 1.077437 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 1.289138 0.921193 1.786488 0.059515 -1.223715 -2.611531 -0.457705 -3.877618 1.446004 0.336767 0.987691 0.053926 0.947785 -0.315246 -0.216581 1.595288 0.934152 0.052646 0.237024 -1.129722 -0.849324 2.186079 -0.820437 0.642533 0.473318 -2.169548 0.622881 0.930882 2.015264 0.743547 0.813121 -0.392884 -0.699226 0.638466 -0.183368 0.353449 0.246640 0.234810 -2.433659 0.750631 -0.762054 -0.278166 1.546053 0.048867 1.325360 0.082762 1.094549 1.053114 0.107965 -0.254866 -1.012492 2.017609 -0.095930 0.793662 -0.387239 -0.740663 -0.444755 -0.260731 -0.003336 1.634975 -0.781176 -0.366056 -1.006388 0.293133 -1.342033 0.107197 -1.109873 -1.142041 -0.338388 -0.101577 0.924435 0.159087 -0.340074 -0.139889 -3.337596 -0.170560 0.272537 0.879612 1.001515 0.115590 0.675734 -0.306129 -1.411612 -1.183460 1.358863 2.150695 0.294516 0.192352 -1.627021 -0.890011 -0.664369 -0.297345 1.285428 0.564739 -1.542413 0.052413 -1.534933 -0.511360 -1.368273 -2.618141 0.647360 -0.151646 0.940286 -1.808357 0.759060 0.116029 0.653153 0.055624 -0.063466 -0.822903 0.067393 -0.332761 0.483207 3.083176 0.070764 -0.859797 -1.202331 -0.578921 -1.289955 0.756459 0.819648 -0.115934 1.504255 1.226684 0.946603 -1.102977 -1.297273 0.733555 0.235796 0.982917 0.883771 -0.955997 -0.766658 0.411661 -0.541664 -2.512953 -0.482013 0.374250 1.035542 -1.059110 1.044367 -0.606840 -0.869296 0.887767 0.649728 -0.413623 0.733304 -0.163432 -0.872424 0.967113 2.342194 -0.139768 0.821225 -1.607033 0.098286 0.548052 -0.434017 0.568350 0.013572 -0.646263 -0.937537 -0.040691 0.295324 0.926840 -0.164089 -0.137129 0.176487 0.750597 -1.625236 -1.215439 -1.943018 0.118590 1.450031 -0.066350 1.358738 -1.214338 -0.777256 -0.271549 1.131693 0.316009 -0.402223 1.385800 -1.792640 0.933085 -0.903737 -1.317612 2.189425 2.527737 1.092074 -0.585700 0.804997 0.924977 -2.459977 -1.531326 -0.342721 0.346407 0.240391 -3.495535 -1.141041 0.302972 -1.530249 -0.215818 -0.010832 0.850122 0.761268 1.327103 2.042842 -0.870536 -0.878345 -1.508665 1.571919 -0.302682 0.153528 0.540544 0.128155 -0.445221 1.042594 -0.887432 0.103672 0.842387 -0.618496 0.884166 0.479162 0.474774 -0.477303 1.742058 1.447256 0.031226 2.418388 -0.164952 -1.017799 1.507436 -0.328063 0.992101 0.132805 0.017702 -0.709898 0.536238 0.741527 -0.798053 -1.119700 -1.159433 -0.698177 0.282087 0.769636 1.162409 -1.458473 -1.916685 -0.287912 -0.277502 1.529472 0.206895 1.702906 -1.022074 0.999989 -2.252359 0.487792 0.128496 0.000242 1.204341 0.346203 -1.074123 0.252939 -0.141100 -1.770891 -2.224033 -0.213267 -1.238322 -1.030629 -0.860208 1.003986 -0.831071 -0.363607 1.048740 -0.466438 1.277441 -1.543063 0.164056 -0.959297 0.343185 2.167693 -0.377597 -1.079539 0.410616 0.148391 3.555273 0.510637 0.902834 -0.059650 -0.130253 0.135401 -1.899024 -0.776984 1.710703 0.904876 0.347689 -0.427945 -0.517959 0.488825 0.655936 -PE-benchmarks/mergeSort_LinkedList.cpp___GLOBAL__sub_I_mergeSort_LinkedList.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/sudoku.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.238557 1.124800 5.837943 3.871504 -3.710499 -5.014163 -2.538172 -6.514990 3.290513 0.123941 3.808464 0.792092 1.271282 -1.478973 0.389312 -0.690279 1.051541 -1.201072 -0.191608 -1.919225 -1.376700 4.481821 1.990777 -4.412851 0.682013 -5.855670 3.522000 2.750669 2.094719 2.973868 0.444650 -0.442000 -1.885514 3.269704 -1.591973 0.177517 1.066966 0.824750 -2.217495 -0.243575 2.044063 2.592691 3.451740 -0.057618 4.016384 1.463413 2.341053 1.458109 -2.938714 -0.947563 -1.796360 4.584579 -2.775273 2.452624 0.716676 1.724801 0.834318 -3.923268 -0.989752 -3.542850 -0.123727 0.335272 -2.273513 0.050127 -3.048734 0.809008 0.103844 -1.871596 1.819127 -0.122041 3.476841 0.301289 0.010274 -1.088318 -3.317774 0.641108 -0.100825 2.657662 2.866744 -0.540226 -0.722387 0.228050 -1.936015 -2.728849 1.315880 0.890685 0.835670 0.072156 0.091850 -1.266364 -0.026012 -1.579192 0.148147 2.514937 -2.750340 0.747479 -0.944245 -0.832468 -2.638223 -1.721286 0.715826 -2.240415 1.841977 1.965540 -1.320323 -0.606330 0.053975 0.393308 -1.870478 -3.084358 0.811867 -1.159802 1.346486 4.522975 -1.467541 -0.741840 -0.176477 -1.353696 -0.804790 3.922592 0.810131 1.073395 3.607181 5.103856 0.802917 -2.718518 -1.862818 0.893113 2.870188 3.304215 2.566134 -4.504221 -2.126452 0.344563 -0.229445 -5.563392 0.534395 1.149775 3.328749 1.162687 -3.823824 1.202895 -1.906985 3.824454 1.550331 1.803691 0.741517 -0.370196 -3.365496 3.946016 6.886834 -0.962840 2.593933 -1.623273 -2.135903 3.805572 -2.986445 2.138185 1.311547 -0.655470 0.136674 -1.850534 -0.477778 3.354359 1.187514 1.524338 1.983513 1.270486 -1.357259 -5.862793 -5.396890 0.511957 3.689531 0.109913 6.381030 -3.595214 -2.300875 -1.372587 5.021249 -1.117960 -1.482751 0.864784 -2.353858 2.528791 -4.216371 -4.508182 6.576647 6.231845 0.903726 0.073586 4.252966 2.591087 -2.357979 -2.191010 -1.984796 1.461493 1.353645 -1.129811 0.126844 0.093172 -3.720128 -2.131465 0.707596 1.537223 2.000594 -1.242001 -1.218303 0.798861 -3.637870 -3.074584 1.464809 -2.871226 -0.776937 0.972573 -0.064944 -0.164378 1.859845 -1.194297 -1.257336 1.063720 -2.098854 0.623369 1.673171 2.938142 1.156400 4.486051 3.426926 0.069487 4.576334 2.083301 -1.807914 7.754249 -1.454073 1.301778 1.201847 2.358371 0.449218 1.431288 1.580809 -1.968031 -1.175959 -4.359474 1.493628 0.177678 2.796317 -4.821157 -3.305039 -4.941573 -1.909066 2.174782 2.432425 -0.933775 6.979379 -0.829206 0.268728 -7.941776 -0.291074 3.368793 -0.280106 2.288986 1.796783 -2.618677 -6.300174 -1.296318 -2.310709 -0.559681 -1.631961 -2.587310 -2.395254 -2.002142 3.338217 -1.985808 1.404705 5.046526 -0.512529 1.474571 -1.799141 0.009214 -1.371940 -1.858359 1.247805 0.422315 -3.864006 4.562884 -0.498721 8.868863 -1.433197 3.045978 -2.376874 1.479390 -0.601017 -2.363096 -0.803225 4.879977 2.658234 0.911641 0.346785 0.734763 -2.004304 2.957310 -PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = -1.461342 0.571853 5.350283 4.347203 -3.743291 -4.733801 -2.272968 -5.502876 2.959383 0.046883 3.833533 0.693069 1.333295 -1.893364 0.181932 -1.567372 1.351021 -0.909433 -0.576458 -2.007387 -1.401098 3.870471 1.917551 -4.973853 0.828752 -5.130972 3.901551 2.788724 1.359191 3.371079 0.401733 -0.150769 -1.938729 2.904532 -1.581443 0.010272 0.780673 0.702925 -1.843340 -0.608014 2.636349 2.185667 3.714726 -0.182225 3.562869 1.457859 1.955003 1.182394 -3.411008 -1.134631 -1.368892 3.170343 -2.615020 2.302584 0.306747 1.732387 1.326424 -3.715161 -0.856536 -4.071691 0.380708 0.147224 -2.159493 -0.119676 -2.996189 0.712772 0.256336 -2.189031 2.086065 -1.040115 2.890291 0.223989 -0.301304 -1.466655 -2.563698 0.479337 0.341763 2.314605 2.550105 -0.200068 -0.620518 -0.206334 -2.100815 -2.091771 0.985344 0.142950 1.080829 0.591677 0.112553 -1.482736 0.762913 -1.055110 0.336440 1.983268 -2.102855 0.359619 -0.831712 -0.993993 -2.219888 -1.441984 0.876971 -1.891412 1.748574 2.534215 -2.458920 0.069661 0.302234 0.583421 -1.780139 -2.900048 0.527534 -1.505780 1.619431 4.212476 -1.436685 -1.425387 -0.776400 -1.243468 -0.183216 3.597292 0.181610 0.987997 3.528045 4.577959 0.760531 -3.034041 -1.603257 0.675874 2.546014 2.990827 2.366217 -3.719238 -2.028262 0.146216 -0.767134 -5.397445 0.193560 0.307377 3.469203 1.159609 -4.225747 1.956098 -2.132878 3.622139 1.595403 1.887330 0.726271 -0.101158 -3.514599 3.558072 5.840389 -0.947126 2.358562 -1.695892 -2.713912 3.536454 -1.815817 1.604355 1.023021 -1.048977 0.460823 -1.711808 0.087382 3.219752 0.790853 1.398539 1.650159 1.308263 -1.004862 -5.596738 -5.140958 0.612460 3.493848 1.048579 6.473802 -3.763546 -1.807138 -1.481445 4.508692 -1.214682 -1.450228 0.584836 -2.087590 2.320696 -4.910127 -4.645575 6.218998 5.498098 1.000119 0.462533 3.754409 1.743476 -1.262610 -1.366867 -2.018608 1.345909 1.867267 -0.498460 0.537170 0.110154 -3.413208 -2.200318 1.032737 1.492668 1.944707 -2.555053 -1.432859 0.046686 -3.262962 -3.263058 1.504216 -3.090691 -0.396789 0.939298 -0.332162 0.216103 1.648560 -0.765167 -1.358089 0.179546 -1.609399 0.434611 1.150090 3.184396 1.120702 3.865914 3.551818 -0.510163 3.589691 1.856727 -1.917280 7.893670 -1.791332 1.250140 1.225704 2.757083 1.035202 1.282584 1.934256 -1.847526 -0.199258 -4.108470 1.203356 0.610552 2.619045 -5.782256 -2.552234 -5.227742 -1.635302 1.471895 2.600984 -0.976795 6.747847 -0.875115 -0.056581 -7.205947 -0.584601 3.402377 -0.070307 2.227001 1.671263 -2.683128 -6.370514 -1.113715 -2.564266 0.627372 -1.538158 -1.945910 -2.545226 -1.187523 2.879293 -1.522444 1.516116 4.881644 -0.823584 1.256315 -1.509813 0.097338 -0.824649 -2.239464 0.416571 0.843125 -3.481899 4.459567 -0.206700 7.785173 -0.697080 2.883761 -2.408973 1.845572 -0.786489 -2.549998 -1.109608 4.457902 2.676806 0.875580 0.713751 0.760014 -1.752337 3.125396 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -0.927101 0.286259 4.562951 2.299478 -1.657516 -3.189760 -1.851038 -4.737303 2.735498 0.182960 2.228331 0.916947 0.640353 -0.991117 0.217405 0.058439 0.353412 -1.665145 0.658548 -1.077947 0.257054 4.733483 2.040107 -3.473571 0.125832 -6.318769 3.173201 1.669144 2.367068 3.365287 -0.055882 -0.589085 -0.292072 2.619154 -1.243917 0.108454 1.030124 0.513042 -1.869770 0.018389 1.295554 3.118616 2.151193 -0.449214 3.527788 0.882371 2.058449 0.829655 -1.396062 -0.286206 -2.052475 3.670466 -2.593303 1.832207 -0.225573 1.633897 0.140301 -3.161604 -1.483014 -3.422058 -0.474561 1.435424 -1.697664 0.102950 -2.800771 1.025633 -0.117949 -1.097919 0.887679 0.953241 2.887610 1.678531 0.935676 -1.138176 -3.203232 1.353831 -0.527901 2.750510 1.875968 -1.568933 -1.319111 0.807337 -1.108471 -2.155133 1.023475 1.758514 0.108209 -0.488496 1.276775 -0.796340 -1.291864 -1.145251 -0.987438 2.175976 -1.437674 1.086109 -0.482496 0.157003 -0.690245 -0.506646 -0.207234 -2.249303 1.125862 2.155535 0.358080 -0.419503 0.410575 0.959465 -1.435661 -2.195460 1.098644 -0.255722 0.680171 3.356800 -1.019329 0.461979 -0.014875 -0.161270 -0.734055 3.771742 -0.479927 1.503573 2.661358 4.520112 0.223196 -1.833754 -1.044235 1.461114 2.694615 2.499900 2.233377 -3.729069 -1.753306 -0.644979 0.915408 -3.391526 0.625735 1.697652 2.240009 0.118144 -2.960683 0.794686 -0.851557 4.169396 2.082334 0.544965 0.674539 -0.111151 -2.720144 4.121459 6.610456 -0.720225 1.574145 -2.745277 -1.472788 3.653594 -2.947649 2.274390 0.563408 0.390940 0.240835 -2.241104 0.346260 2.701537 1.340763 1.855628 1.638043 0.767155 0.347476 -4.551894 -3.432499 -0.069809 2.124562 -0.550132 6.219430 -2.239319 -2.107360 -1.497984 3.132934 0.128575 -0.419158 0.492041 -2.404598 1.796474 -4.824902 -3.931450 5.577945 5.225335 0.847999 0.292096 3.380839 3.461990 -1.001972 -1.147582 -0.625989 1.614330 0.795346 -0.893029 0.029409 0.428742 -2.589650 -2.666808 0.745654 0.890475 1.740715 -0.471771 -1.786741 0.664492 -3.728544 -2.267370 1.535558 -3.169094 -1.395000 0.658124 0.197597 0.081455 1.426193 -0.832252 0.048626 2.219098 -1.453404 0.532945 1.585855 2.306661 1.145118 1.589645 3.814537 0.821407 3.588316 2.494244 -1.101555 5.845927 -0.412163 0.404473 1.141410 0.399183 0.303077 1.151268 0.549001 -1.319287 -0.728940 -3.725382 2.951852 0.182913 2.307953 -3.499484 -2.823496 -2.978223 -1.615520 2.550990 1.766395 -0.207602 5.760698 -0.660899 -0.188255 -6.670831 -0.251241 2.672023 0.801133 1.480098 1.743905 -1.510196 -4.955702 -1.014968 -1.097167 -0.258110 -2.143028 -3.266610 -1.977676 -1.858822 2.781397 -2.213873 1.622420 4.427971 0.176775 1.700436 -1.558855 -0.199542 -2.220866 -1.327135 0.175056 0.672637 -2.687628 2.893069 -1.243599 6.384473 -2.555861 1.924926 -2.424961 2.198214 -0.939679 -1.602762 0.098033 4.123812 1.378444 0.142191 0.677123 -0.274309 -1.473358 2.160517 -PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = -0.618632 0.949486 3.674722 2.384854 -2.662967 -3.406513 -1.575617 -4.089732 1.500836 0.058924 2.631101 0.059037 0.694945 -0.491565 0.244951 -0.599347 0.614463 -0.612405 -0.039964 -1.322800 -1.808797 2.135379 1.085157 -2.509706 0.603034 -3.135861 2.859122 1.935523 0.836772 1.913835 0.203855 -0.284073 -1.253068 2.122907 -0.859430 0.005480 0.470815 0.773233 -0.906557 0.329835 1.545286 1.038387 2.380428 -0.066855 2.157138 1.704796 1.317153 1.012912 -2.288073 -0.581387 -0.908863 2.119358 -1.963132 1.476651 0.010064 0.877874 0.750989 -2.436378 -0.548059 -2.088046 -0.018439 -0.317529 -1.598386 0.114998 -2.163914 0.378042 -0.187484 -1.743034 1.344931 -0.004511 2.018743 0.163795 -0.492474 -0.401619 -1.756931 0.346595 0.493217 1.598471 1.692516 -0.835942 -0.220725 0.309580 -1.687732 -1.733912 0.781413 0.275608 1.148030 -0.122842 0.034091 -0.788336 0.461960 -0.595985 0.330968 1.803816 -1.101426 0.443379 -1.025305 -0.723103 -2.299440 -1.799054 0.554323 -1.394015 1.546493 1.396316 -1.692256 -0.322405 -0.012673 0.463581 -1.030897 -2.359029 -0.047577 -1.255305 1.449140 2.696300 -0.755477 -0.809332 -0.324961 -1.176979 -0.018679 2.174783 0.665124 0.271473 2.736325 3.147543 0.472271 -1.934380 -1.508007 -0.082696 1.370316 2.180469 1.722097 -2.706583 -1.480453 0.058635 -0.666504 -3.699030 0.414212 0.144797 1.971914 0.180939 -2.387844 1.325606 -1.633339 2.044133 1.194020 1.631395 0.482841 -0.223474 -2.055767 2.330544 3.864425 -0.721904 1.673025 -1.145325 -1.708726 2.395242 -1.224776 1.041795 1.139194 -0.671287 -0.026957 -1.191319 -0.266373 2.212467 0.756857 0.940284 1.702407 0.747874 -0.920279 -3.365540 -3.093659 0.760210 2.732974 0.294195 4.018487 -2.694222 -1.157981 -0.578859 3.160972 -0.594446 -1.010745 0.302900 -1.060220 1.568103 -2.826330 -3.007643 3.572387 3.272033 0.598050 0.077443 2.296046 1.270879 -1.330105 -1.300596 -1.579728 1.078054 0.676266 -0.651655 -0.163614 0.126462 -2.317256 -0.746529 0.410597 1.190246 1.541803 -1.394406 -1.159542 0.090460 -2.328712 -2.165454 0.852531 -1.964541 -0.329565 0.755235 -0.303249 0.060547 0.963725 -0.537160 -0.908611 0.061791 -1.372419 0.532602 1.108614 1.956328 0.566538 3.387809 2.056089 -0.399818 2.150766 1.212131 -0.969226 4.758333 -0.956384 1.013184 0.974929 2.083458 0.202085 0.945099 1.752896 -1.215481 -0.852368 -2.814395 0.634145 0.377470 1.577575 -2.928810 -1.415043 -3.746766 -1.105389 1.221279 2.208686 -0.578132 4.280221 0.054587 0.385605 -4.324872 -0.336749 1.618204 -0.323102 1.612803 1.054497 -1.832622 -3.524792 -0.847297 -1.747388 -0.302531 -0.848134 -0.954878 -1.759852 -0.529503 1.055547 -0.691008 0.727330 2.783625 -0.483059 0.502416 -0.863260 -0.014831 -0.467749 -1.359915 1.604593 0.188685 -2.432759 2.959562 0.047076 5.768270 -0.270983 1.981619 -1.393572 0.445289 0.113335 -1.194203 -0.754696 3.059935 1.630744 0.794747 0.287294 0.682678 -0.863499 1.989821 -PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = -0.618632 0.949486 3.674722 2.384854 -2.662967 -3.406513 -1.575617 -4.089732 1.500836 0.058924 2.631101 0.059037 0.694945 -0.491565 0.244951 -0.599347 0.614463 -0.612405 -0.039964 -1.322800 -1.808797 2.135379 1.085157 -2.509706 0.603034 -3.135861 2.859122 1.935523 0.836772 1.913835 0.203855 -0.284073 -1.253068 2.122907 -0.859430 0.005480 0.470815 0.773233 -0.906557 0.329835 1.545286 1.038387 2.380428 -0.066855 2.157138 1.704796 1.317153 1.012912 -2.288073 -0.581387 -0.908863 2.119358 -1.963132 1.476651 0.010064 0.877874 0.750989 -2.436378 -0.548059 -2.088046 -0.018439 -0.317529 -1.598386 0.114998 -2.163914 0.378042 -0.187484 -1.743034 1.344931 -0.004511 2.018743 0.163795 -0.492474 -0.401619 -1.756931 0.346595 0.493217 1.598471 1.692516 -0.835942 -0.220725 0.309580 -1.687732 -1.733912 0.781413 0.275608 1.148030 -0.122842 0.034091 -0.788336 0.461960 -0.595985 0.330968 1.803816 -1.101426 0.443379 -1.025305 -0.723103 -2.299440 -1.799054 0.554323 -1.394015 1.546493 1.396316 -1.692256 -0.322405 -0.012673 0.463581 -1.030897 -2.359029 -0.047577 -1.255305 1.449140 2.696300 -0.755477 -0.809332 -0.324961 -1.176979 -0.018679 2.174783 0.665124 0.271473 2.736325 3.147543 0.472271 -1.934380 -1.508007 -0.082696 1.370316 2.180469 1.722097 -2.706583 -1.480453 0.058635 -0.666504 -3.699030 0.414212 0.144797 1.971914 0.180939 -2.387844 1.325606 -1.633339 2.044133 1.194020 1.631395 0.482841 -0.223474 -2.055767 2.330544 3.864425 -0.721904 1.673025 -1.145325 -1.708726 2.395242 -1.224776 1.041795 1.139194 -0.671287 -0.026957 -1.191319 -0.266373 2.212467 0.756857 0.940284 1.702407 0.747874 -0.920279 -3.365540 -3.093659 0.760210 2.732974 0.294195 4.018487 -2.694222 -1.157981 -0.578859 3.160972 -0.594446 -1.010745 0.302900 -1.060220 1.568103 -2.826330 -3.007643 3.572387 3.272033 0.598050 0.077443 2.296046 1.270879 -1.330105 -1.300596 -1.579728 1.078054 0.676266 -0.651655 -0.163614 0.126462 -2.317256 -0.746529 0.410597 1.190246 1.541803 -1.394406 -1.159542 0.090460 -2.328712 -2.165454 0.852531 -1.964541 -0.329565 0.755235 -0.303249 0.060547 0.963725 -0.537160 -0.908611 0.061791 -1.372419 0.532602 1.108614 1.956328 0.566538 3.387809 2.056089 -0.399818 2.150766 1.212131 -0.969226 4.758333 -0.956384 1.013184 0.974929 2.083458 0.202085 0.945099 1.752896 -1.215481 -0.852368 -2.814395 0.634145 0.377470 1.577575 -2.928810 -1.415043 -3.746766 -1.105389 1.221279 2.208686 -0.578132 4.280221 0.054587 0.385605 -4.324872 -0.336749 1.618204 -0.323102 1.612803 1.054497 -1.832622 -3.524792 -0.847297 -1.747388 -0.302531 -0.848134 -0.954878 -1.759852 -0.529503 1.055547 -0.691008 0.727330 2.783625 -0.483059 0.502416 -0.863260 -0.014831 -0.467749 -1.359915 1.604593 0.188685 -2.432759 2.959562 0.047076 5.768270 -0.270983 1.981619 -1.393572 0.445289 0.113335 -1.194203 -0.754696 3.059935 1.630744 0.794747 0.287294 0.682678 -0.863499 1.989821 -PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = -0.713417 1.460088 5.580656 3.661559 -3.680162 -4.886553 -2.358259 -5.757817 2.166507 -0.320713 3.846517 -0.142098 0.724760 -0.676896 0.224985 -1.354672 0.730212 -0.982984 -0.163049 -1.923332 -2.759518 2.868478 1.512273 -3.821072 0.935058 -5.140102 4.348697 2.953781 1.324209 3.004047 0.234015 -0.561901 -1.702152 3.161607 -1.185711 -0.307418 0.758188 0.661105 -1.337533 0.487377 2.510989 1.891785 3.734759 0.028511 2.717709 2.515104 1.741288 1.453557 -3.259840 -0.639823 -1.683015 3.299300 -2.871488 1.910112 0.239473 1.610270 1.415185 -4.011139 -0.822459 -2.713772 -0.170928 -0.211136 -2.209713 0.146900 -3.267720 0.512075 -0.608064 -2.320392 2.450963 -0.176170 2.922903 0.374878 -0.652547 -0.646412 -2.149633 0.814960 0.632802 2.577052 2.463392 -1.456774 -0.052519 0.904764 -2.411998 -2.270102 0.970157 -0.021278 1.756972 -0.381822 0.427558 -1.516097 0.727648 -0.853188 0.342414 2.386077 -1.408492 0.662095 -2.060976 -1.172758 -3.359213 -2.560509 0.611853 -2.049592 2.173764 2.397297 -2.980437 -0.393753 0.120737 0.507307 -1.233221 -3.525426 -0.187646 -1.690043 2.271915 4.192811 -1.396897 -1.423555 -0.569673 -1.637750 -0.188098 3.310284 0.728449 0.450103 3.775705 4.677232 0.581123 -2.736536 -2.028673 -0.359383 1.899881 3.220214 2.786260 -3.866677 -2.167469 -0.281160 -0.572982 -5.688822 0.982973 -0.257515 2.918074 0.957538 -3.866315 1.975365 -2.494254 3.041335 1.540313 2.392281 0.860203 -0.464353 -3.026420 3.720665 5.563335 -1.198242 2.559834 -2.112151 -2.794246 3.355670 -1.768753 1.407063 1.392064 -0.890765 0.563672 -1.839625 -0.390983 3.297040 0.891816 1.267250 2.950874 0.959240 -0.823067 -5.148103 -4.406218 1.551209 3.675943 0.067228 5.676387 -3.935585 -1.576190 -0.997978 4.909967 -1.118232 -1.311227 0.335885 -1.526725 2.186173 -4.094264 -4.522397 5.156223 4.807910 0.264340 0.211591 3.105735 2.068887 -1.802159 -1.516946 -2.549107 1.596972 1.209666 -0.851631 -0.072994 -0.087805 -2.938581 -1.043341 0.912504 1.724781 2.517204 -2.752699 -2.186181 0.031107 -3.766661 -3.481692 1.640138 -3.354914 -0.354411 1.293728 -0.724522 0.040135 1.668121 -0.593984 -1.540787 0.201834 -1.905434 0.547674 1.556740 3.251983 0.802990 4.783323 2.736550 -0.285234 3.249156 2.235704 -1.463391 7.252876 -1.616138 1.394325 1.447357 3.143303 0.261982 1.731306 2.307000 -1.785154 -1.398288 -4.199608 1.217812 0.169431 2.213957 -4.301518 -1.920730 -5.545680 -2.010138 2.006298 2.964147 -0.682414 6.427146 0.247745 0.051719 -5.966722 -0.834836 2.771707 -0.270633 2.625409 1.619089 -2.725350 -5.155877 -1.319591 -2.499246 0.366335 -1.306856 -1.582452 -2.710007 -0.903226 2.063501 -0.866380 1.484664 4.096337 -0.516303 0.424646 -1.055683 -0.136569 -0.639375 -2.309987 2.087088 0.514667 -3.524357 4.646653 -0.107579 7.902186 -0.466081 2.804356 -2.448793 0.412293 0.331530 -1.546883 -1.115994 4.482654 2.312982 1.119527 0.299373 0.952221 -1.508339 3.031945 -PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = -0.275501 0.925935 4.000681 2.438685 -2.453892 -3.243570 -1.552369 -4.570819 1.936091 -0.110404 2.629006 0.052104 0.624760 -0.791378 0.151447 -0.502291 0.582665 -0.600868 -0.106224 -1.252836 -1.163952 2.377649 0.791220 -2.578508 0.571096 -3.805775 2.313459 1.954597 1.479200 1.714944 0.285628 -0.521498 -1.312511 1.984437 -0.946438 -0.097733 0.840058 0.392206 -1.686588 -0.031944 1.155443 1.456828 2.298736 -0.298532 2.305342 0.897946 1.527330 1.007777 -1.941243 -0.372617 -1.233757 3.099681 -1.640158 1.478220 0.578056 0.840155 0.397645 -2.596483 -0.669092 -1.638372 -0.163863 0.080807 -1.400423 0.043134 -2.055123 0.438104 -0.080825 -1.413144 1.627917 -0.152598 2.123782 0.227223 -0.074279 -0.481495 -2.046956 0.511434 0.235942 1.809669 1.638405 -0.593535 0.377180 0.345165 -1.364621 -1.520392 0.870172 0.684333 0.849817 -0.274032 -0.068087 -0.792216 0.316670 -0.927970 0.243226 1.473006 -1.684458 0.443730 -1.568682 -0.688547 -2.001082 -1.711483 0.425596 -1.440418 1.450354 1.149763 -1.392798 0.018321 0.483236 0.477146 -0.815942 -2.251891 0.115431 -0.717732 1.392150 3.319725 -1.007222 -0.894651 -0.361480 -0.943935 -0.771685 2.125499 0.456937 0.663297 2.436252 3.252655 0.729947 -1.921645 -1.475133 0.381558 1.541678 2.369901 1.741331 -2.805495 -1.309782 -0.025992 -0.235154 -4.088852 0.444117 0.112099 2.210786 0.674651 -2.328205 0.586932 -1.445442 2.520795 0.866988 1.207579 0.562023 -0.136191 -2.056615 2.485531 4.074063 -0.716354 1.736260 -1.354743 -1.346010 1.741974 -1.359147 1.209577 0.810249 -0.368856 0.482528 -1.381694 -0.456664 2.214399 0.719102 0.882029 1.339249 0.838409 -1.062654 -3.884439 -3.299919 0.635206 2.274221 -0.258642 3.769852 -2.450273 -1.730138 -0.830562 3.455457 -0.883577 -0.905020 0.598774 -1.694200 1.644430 -2.217923 -3.079436 3.815956 4.021931 0.369708 -0.028858 2.592972 1.476722 -2.054165 -1.252663 -1.465024 0.925616 0.957385 -1.396283 -0.258667 -0.037835 -2.230199 -1.026867 0.661021 1.091735 1.377357 -0.827025 -0.659291 0.550980 -2.484351 -2.154455 1.450880 -2.007792 -0.224321 0.715181 -0.144367 0.073784 1.413232 -1.067582 -0.965282 0.695668 -1.412265 0.539377 1.094101 2.044885 0.466990 3.180334 1.953079 0.207430 3.188915 1.351965 -1.385421 4.860997 -0.975561 0.865436 0.791942 1.445461 -0.127126 1.144517 1.194652 -1.368938 -1.097849 -2.883208 0.528852 -0.150804 1.767566 -2.449072 -1.952866 -3.309656 -1.403678 1.355107 1.518705 -0.340779 4.438028 -0.382402 0.188191 -4.774186 -0.447608 2.019912 -0.200055 1.805711 1.055187 -1.803584 -3.936537 -0.749356 -1.699551 -0.575193 -1.019523 -1.645145 -1.772017 -1.367530 2.291372 -0.812339 0.880081 2.960132 -0.157291 0.843058 -1.184044 -0.028121 -0.571084 -1.254168 1.205851 0.329558 -2.660273 2.964008 -0.130842 6.098146 -0.557648 1.792773 -1.725348 0.382230 -0.055720 -1.358203 -0.634796 3.157789 1.837986 0.889296 -0.208690 0.348252 -1.487051 1.981570 -PE-benchmarks/sudoku.cpp__main = 0.257275 0.555600 1.826880 0.191817 -1.164916 -1.543199 -0.762326 -3.030983 0.846810 0.321622 1.443911 -0.322054 0.522058 -0.294842 0.128522 0.671273 0.606310 -0.425606 0.468395 -0.708463 -0.594866 1.042357 -0.294240 0.131222 0.333686 -1.613127 0.596534 0.736882 0.934238 0.356962 0.553340 -0.364416 -0.815916 0.674083 -0.046296 0.437532 0.921645 0.366841 -1.365479 0.530568 -0.387305 0.138326 0.924855 -0.415449 1.402430 0.211256 0.543199 0.759933 -0.834131 -0.184968 -0.361242 1.720758 -0.569827 0.472677 0.480266 -0.439648 -0.383069 -0.813642 -0.441149 0.255180 -0.443386 -0.460655 -0.559071 0.377270 -0.719126 0.303105 -0.370185 -0.640997 0.497299 0.271670 0.850264 0.181648 0.063555 0.737644 -1.443563 0.241552 0.483856 0.721793 0.706109 -0.485283 0.848382 0.121705 -0.638616 -0.932915 0.867395 1.352047 0.541756 -0.360298 -0.801484 0.111741 -0.084351 -0.495636 0.622984 0.645501 -1.012418 -0.113181 -1.085823 -0.549514 -1.225382 -1.773752 0.302785 -0.549615 0.910125 -0.200693 -0.275960 -0.002602 -0.072483 0.510846 -0.535286 -0.903650 0.095509 -0.476235 0.747436 2.133746 -0.431734 -0.440146 -0.791659 -0.534792 -0.545479 0.534013 0.536858 0.294844 1.105106 1.492402 0.587028 -0.939652 -1.261379 0.330554 0.666139 1.030419 0.716426 -1.304669 -0.613838 0.140333 -0.586329 -1.890579 -0.441908 -0.307388 0.792781 -0.363950 0.050697 -0.466889 -0.733657 1.195691 0.420077 0.290883 0.153543 0.035120 -0.879193 1.032614 1.399418 -0.311491 0.906044 -0.490671 -0.017153 -0.108455 -0.437405 0.509227 0.575101 -0.310152 -0.330720 -0.529729 -0.431993 0.774064 0.515921 0.427454 -0.219163 0.650977 -1.016819 -1.263923 -1.629728 0.449660 1.273669 -0.500762 1.119901 -1.087327 -1.345490 -0.167562 1.733390 0.090874 -0.637997 0.687732 -1.076847 0.830672 -0.228994 -1.301484 1.655191 2.067311 0.768315 -0.356223 1.052642 0.701168 -2.478287 -0.900728 -0.457980 0.487146 -0.029499 -2.301152 -0.888575 0.353023 -1.040069 -0.284446 -0.057147 0.731197 0.454022 0.832166 0.813565 0.566609 -0.745036 -0.440444 1.084949 -0.330182 -0.238117 0.260257 0.043313 0.257465 0.872564 -1.149381 -0.118117 0.591884 -0.970020 0.535074 0.734441 0.837640 -0.038505 1.869597 0.989917 0.244157 1.854269 0.026453 -0.785254 1.018506 -0.117356 0.659325 0.217083 -0.160269 -0.488152 0.182617 0.858368 -0.689633 -1.207865 -1.191117 -0.560950 -0.065193 0.980549 0.376688 -1.353470 -1.496275 -0.252575 0.502309 0.864702 0.137937 1.674632 -0.219151 0.443779 -1.825279 -0.020552 0.347703 -0.223044 0.991718 0.232122 -0.816213 -1.244154 -0.262753 -1.424775 -1.652667 -0.269189 -0.692759 -0.837745 -0.980456 1.542681 -0.138976 -0.175201 0.965266 0.115562 0.806186 -0.306927 -0.093691 -0.474133 0.045827 1.309250 -0.290463 -1.265003 1.128745 0.239410 3.625653 0.034065 0.428625 -0.381592 -0.298780 0.329522 -0.629472 -0.282829 1.417433 1.144466 0.669976 -0.643097 -0.072264 -0.501405 0.735167 -PE-benchmarks/sudoku.cpp___GLOBAL__sub_I_sudoku.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/optimized-naive-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.359019 1.830913 8.368881 5.933426 -4.086980 -5.207003 -2.974847 -7.957992 4.224198 -0.824372 4.118843 0.166581 0.202710 -1.136804 -0.217126 -1.983522 0.177013 -1.306341 -0.090467 -1.898902 -1.242086 5.066484 2.643808 -6.869470 0.638225 -8.896881 4.820172 3.633510 3.931255 4.027004 -0.337065 -1.521886 -1.547768 4.545074 -2.388184 -1.697075 1.499038 0.076323 -3.571963 -0.155409 2.312115 4.888401 4.567246 -0.548065 4.006416 1.711554 3.002111 1.618223 -3.305238 0.416962 -2.725459 6.369285 -3.313928 3.183043 1.518959 2.650987 0.505255 -5.955471 -1.666919 -3.802035 -0.327194 1.860505 -2.060339 -0.049346 -4.705726 0.694540 -0.229927 -2.484510 3.736766 0.397226 4.418021 1.553628 0.913526 -2.406260 -3.784850 2.219863 -0.131984 4.214217 2.978965 -1.826809 0.583163 1.780735 -2.032359 -2.604326 0.372087 1.064947 0.916200 -0.998446 2.179028 -2.650078 0.711967 -2.087149 -1.079410 3.133693 -2.461269 2.073411 -4.084847 -0.656811 -2.950265 -2.406673 -0.349769 -3.275280 2.808838 2.771732 -2.358073 0.648759 2.422342 1.208625 -0.501917 -4.325609 0.439466 -0.194186 2.786749 6.395296 -1.666207 -1.624149 0.149638 -1.155032 -2.293368 4.741095 -0.292678 1.703042 4.262553 6.737104 0.996516 -3.338057 -1.652311 0.703218 2.488243 5.009020 4.267130 -5.597534 -2.424944 -1.013312 1.759860 -7.760682 2.158241 0.269328 3.933666 1.521281 -5.376093 0.769154 -2.643428 6.010716 1.607610 2.121986 1.589296 -0.643434 -3.596323 5.767336 9.144286 -1.310368 2.847722 -3.918110 -3.095977 4.008681 -3.253573 3.313271 0.102423 0.167460 2.428285 -3.522347 -0.441966 4.588052 1.157605 1.306873 4.048150 0.797984 -0.632317 -8.425341 -5.500266 1.232400 3.154673 -1.200481 8.097328 -4.128001 -3.535936 -2.369455 5.834716 -1.132003 -0.463003 0.927750 -3.317384 2.940226 -5.608332 -6.448879 7.163094 8.262978 -0.216651 -0.061569 5.041365 3.108883 -2.089323 -2.662979 -2.568143 1.668127 1.830019 -1.192805 -0.323222 -0.464732 -3.757153 -2.233866 2.217695 1.621801 4.132834 -2.843727 -3.601893 1.144857 -6.375471 -5.181501 3.119204 -5.256292 -0.673376 1.806880 -0.181508 -0.033024 2.987804 -1.566945 -2.248662 2.018808 -2.055820 0.580285 1.982493 4.425348 0.337995 4.231800 3.653276 1.653739 6.416874 4.419525 -2.596788 11.471070 -2.221120 1.153126 1.949019 2.142656 -0.824860 2.876130 1.015742 -2.619170 -1.526695 -5.547440 2.997107 -1.222609 3.320482 -6.479397 -3.992145 -4.995351 -3.476274 3.459855 1.452692 -0.035883 9.085341 -0.559254 -0.218480 -9.759644 -1.439306 4.796167 0.658168 4.340691 2.856899 -3.860928 -8.208399 -1.502834 -2.260493 1.259024 -2.887450 -4.593974 -3.297978 -2.132296 4.550705 -1.213592 2.808663 6.981346 -0.546452 1.493388 -3.048913 -0.260613 -1.205386 -3.662105 1.313488 1.206221 -5.058946 5.619997 -1.411103 10.819871 -2.188921 3.315110 -4.478988 0.496284 -0.084816 -1.923681 -0.924939 6.527015 2.304820 1.586340 -0.266454 -0.121133 -3.678494 3.712248 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 2.147951 3.394958 6.744802 1.868986 -6.588852 -7.392616 -2.008407 -11.635968 4.357553 1.288410 2.942363 0.954675 1.708173 -3.184684 -0.976672 4.232991 2.448568 0.316652 -0.761098 -3.864770 -6.101618 3.132163 -1.345645 -0.554124 3.494509 -6.698850 4.735011 1.431818 4.197602 1.742663 3.330982 -0.566193 -3.113833 4.265413 2.566629 2.780747 1.525031 0.936214 -5.326987 2.600464 0.191100 -1.466792 4.379292 2.176250 5.700464 1.720978 2.674037 3.001359 -3.391042 0.410428 -3.004653 6.197745 -2.785374 3.403916 -0.439189 -0.158762 -0.864140 -3.568719 0.421612 2.014382 -3.062842 -3.906949 -3.135834 0.370732 -4.538049 0.043884 -2.546127 -3.944440 -0.789788 2.072709 3.966712 1.321746 -1.175898 1.200551 -6.529036 -0.523494 2.009293 3.274991 5.597103 -0.735230 1.682079 -1.518728 -4.100648 -4.665552 5.210731 2.292423 2.000151 0.080198 -1.746183 -2.944834 -1.893888 -2.456046 3.768314 3.062334 -5.933174 -1.062572 -4.243738 -2.197028 -4.760823 -8.302740 1.479945 -1.497642 3.125644 -2.709657 -1.589612 1.106345 1.349630 0.900768 -0.566754 -1.495925 0.466030 -1.959804 2.412767 8.205092 0.985914 -3.459187 -1.593335 -2.378499 -2.314695 2.625966 2.753922 -0.476910 7.575652 5.609141 3.639309 -2.395433 -3.393950 0.644496 0.322025 3.897502 3.702944 -5.208762 -3.208287 1.849506 -0.425248 -8.007778 0.100286 -0.339813 3.345949 -1.218875 0.027834 -1.761089 -1.979511 1.731317 0.753530 -0.428146 1.812695 -0.835743 -3.159443 4.029977 7.792024 -0.959784 2.099702 -3.723526 0.776653 2.204036 -2.399006 0.520470 0.239249 -3.037095 -1.051186 -0.899205 -1.210081 3.793398 -0.284709 -2.334743 1.415263 3.013852 -5.931822 -5.653744 -5.353361 1.080339 5.676142 -0.872163 5.530005 -4.998684 -1.266981 -2.593799 5.700261 0.621935 -0.345052 3.020189 -4.572107 3.381244 -0.722400 -5.016800 8.469619 7.395536 2.249475 -2.173243 2.631505 3.119342 -8.580929 -5.276001 -2.538925 -0.985041 2.165076 -7.965651 -4.874592 1.416084 -5.609433 -1.175746 0.876113 2.422890 4.572697 2.126675 2.869636 0.391030 -2.224713 -5.161010 3.641404 -1.351143 -0.394504 2.091563 0.929884 0.677275 3.698142 -1.737123 -1.415486 0.311717 -1.886391 1.751903 2.470620 4.907377 -0.297238 7.182314 4.707515 -0.197176 5.827391 1.294704 -3.202602 5.161081 -0.089180 3.468912 2.250441 0.440728 -1.257929 1.555667 4.022522 -3.089178 -2.966646 -4.383016 -1.720709 -0.484749 2.095189 0.162860 -2.723369 -6.966470 -1.503773 0.260231 2.234950 -0.498387 6.123743 -0.831495 1.009134 -6.966725 -0.095422 3.074760 -0.694253 4.453433 2.243695 -4.301044 -2.072837 -2.140803 -5.123526 -5.038255 -1.158339 1.181126 -3.314199 -0.691808 3.996895 -1.078274 0.301838 4.883043 -0.293916 2.998056 -4.743975 1.830223 -2.597348 0.069021 6.854410 -0.603757 -4.234149 3.850731 1.046756 11.936509 1.649817 1.936471 -1.196748 -2.949529 1.486847 -3.451952 -2.769875 5.187684 2.830697 2.730734 0.031598 0.115200 -0.042620 5.433839 -PE-benchmarks/optimized-naive-algorithm.cpp___GLOBAL__sub_I_optimized_naive_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = -1.913822 1.673969 11.003768 7.285296 -5.586350 -6.969104 -3.808402 -8.855022 4.563535 -0.525794 6.093681 0.862886 0.835137 -0.992445 0.760117 -2.717561 0.724281 -2.474970 -0.029316 -2.617016 -1.177042 5.910440 4.172600 -9.442547 0.880394 -11.071944 7.175048 5.102671 3.287316 5.982707 -0.295879 -1.268860 -2.310715 5.891602 -3.054635 -1.673968 1.971523 0.760618 -2.809201 0.044904 4.068168 6.254402 5.427405 -0.629824 5.570900 3.291533 4.193043 2.040791 -4.911355 -0.547247 -3.708030 7.149184 -5.207107 4.005306 0.661035 4.205872 0.979643 -7.837972 -2.457972 -7.654247 0.538920 2.478370 -3.247096 -0.194710 -5.714764 1.198183 0.544416 -3.242174 4.610332 0.735277 5.793425 1.496166 0.862366 -2.824383 -4.277883 2.206858 -0.572125 5.266306 3.870933 -3.297728 -1.422852 2.026116 -2.553774 -3.518642 0.221513 0.667553 1.424987 -1.424011 2.983515 -2.144892 0.316818 -2.003963 -2.131735 4.572866 -3.125872 2.503002 -3.339166 -0.634753 -3.896465 -1.283522 -0.047714 -4.611631 3.266753 5.280575 -3.330526 0.027725 0.901124 1.496379 -2.312454 -5.549875 0.544247 -1.285713 2.866442 6.497669 -2.567107 -1.295426 0.629778 -1.549494 -0.751730 6.602144 -0.669916 2.216171 6.105936 8.888051 0.675052 -4.609433 -2.131568 0.733875 4.359727 6.483952 5.221125 -7.530039 -3.413510 -1.472809 0.898321 -9.337003 3.338097 0.739567 5.143179 1.892955 -8.492212 2.416074 -3.874298 7.937748 3.164261 4.244013 1.603695 -0.376932 -5.263278 7.201506 12.442957 -2.008101 4.213319 -4.159372 -3.841313 6.376693 -4.257791 4.200665 1.507557 0.163509 2.484609 -4.590837 -1.499611 6.137818 2.834092 3.238128 5.823101 1.146505 0.159425 -10.734469 -7.250687 0.467911 4.896656 -0.755783 11.602763 -5.984076 -3.910628 -3.080109 7.547411 -1.929595 -1.633705 0.185430 -2.959447 3.660573 -8.494578 -8.234887 9.607855 10.017867 -0.058072 0.664075 7.238211 4.067192 -1.819553 -2.660130 -3.044496 2.746939 1.793483 0.508034 0.881024 -0.154166 -5.572779 -3.408074 2.206745 2.219690 4.562988 -4.137719 -5.696345 2.731238 -8.176928 -5.889582 2.409892 -7.079640 -2.039476 1.951605 -0.323845 0.356644 2.486610 -1.774586 -2.516831 2.599996 -3.322857 0.360447 3.029776 5.714869 1.818597 5.788101 4.856452 1.524260 6.705468 5.337732 -2.873277 14.642149 -2.278645 1.193075 2.789200 3.802283 0.039915 3.159362 1.737983 -3.162148 -1.494636 -7.777948 4.601435 -0.809919 4.694283 -9.024588 -4.342538 -6.675661 -3.907620 5.113217 3.626860 -1.181694 12.351988 0.177113 0.000000 -12.907996 -1.749401 5.907578 0.492531 4.168907 3.905720 -4.616269 -11.529915 -1.975040 -2.383329 2.099788 -3.242204 -4.839776 -4.599980 -2.460228 4.477883 -2.153793 3.306394 9.080274 -0.916864 1.980704 -2.572874 -0.446908 -1.060311 -4.460590 1.339324 2.366239 -6.655047 8.149481 -1.857779 14.386459 -3.143247 4.993658 -5.342345 1.631208 -0.346307 -1.816863 -1.095853 8.609046 3.279001 2.197652 0.862329 0.333272 -4.228920 5.291767 -PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = -0.733287 0.983696 4.571980 3.154244 -2.945883 -4.024809 -1.953117 -4.750859 2.199563 -0.093162 2.976423 0.258932 0.823092 -0.880567 0.122350 -0.852972 0.684596 -0.844705 -0.131591 -1.552493 -1.754029 3.171046 1.570495 -3.444202 0.606486 -4.484770 3.318414 2.254783 1.478331 2.707044 0.151122 -0.387792 -1.256211 2.631033 -1.212398 -0.133404 0.518717 0.670458 -1.424749 0.186971 1.888746 1.717582 2.986031 -0.023495 2.611557 1.735461 1.647654 1.108512 -2.513153 -0.647137 -1.451838 2.922067 -2.376205 1.763479 0.074113 1.354535 0.946301 -3.077343 -0.777974 -2.682805 -0.110532 0.104022 -1.828011 0.080735 -2.730963 0.553634 -0.332709 -1.885271 1.633574 -0.102916 2.564049 0.517834 -0.190708 -0.860238 -2.322891 0.681859 0.282995 2.153732 2.106809 -0.832681 -0.401961 0.466014 -1.828231 -2.000662 0.890007 0.275245 1.088228 -0.032161 0.377287 -1.286654 0.319239 -0.782240 0.186757 1.987136 -1.455288 0.678504 -1.293767 -0.712567 -2.311710 -1.818613 0.429035 -1.746964 1.626244 1.811589 -1.728055 -0.269662 0.178805 0.421938 -1.199940 -2.758799 0.185963 -1.190079 1.354713 3.516851 -1.083464 -0.898477 -0.282658 -1.117930 -0.366368 2.961458 0.494447 0.633105 3.008682 3.877313 0.521916 -2.282417 -1.447790 0.176191 1.867086 2.588380 2.275757 -3.223495 -1.819510 -0.095083 -0.273642 -4.594247 0.615825 0.401483 2.447739 0.651128 -3.136594 1.517169 -1.841234 2.817790 1.402564 1.642652 0.759265 -0.390564 -2.606331 3.162254 5.158926 -0.889013 2.061263 -1.713281 -2.217815 3.223662 -1.859355 1.483765 0.895448 -0.683485 0.307082 -1.557707 -0.137117 2.742554 0.729275 1.105941 2.145839 0.814275 -0.738191 -4.471780 -3.831730 0.786528 3.003646 0.227033 5.084105 -3.069559 -1.425482 -0.923180 3.777401 -0.759385 -0.992448 0.406609 -1.528600 1.883777 -3.924372 -3.842255 4.805353 4.374214 0.535669 0.262187 2.877272 1.897005 -1.291235 -1.493358 -1.785364 1.243954 1.084214 -0.758140 -0.078754 0.030882 -2.697791 -1.297136 0.731817 1.305338 1.919876 -1.808611 -1.558530 0.042411 -3.080963 -2.801762 1.267346 -2.759073 -0.445502 0.982523 -0.315649 -0.089459 1.357178 -0.583666 -1.053954 0.395441 -1.488361 0.490240 1.199858 2.518257 0.744244 3.538661 2.752185 -0.227757 2.926882 1.818450 -1.279486 6.285243 -1.363692 1.071974 1.120345 2.364714 0.297110 1.291755 1.623409 -1.492233 -0.850621 -3.449527 1.217329 0.321158 1.893615 -3.857835 -2.042581 -4.203658 -1.533699 1.631208 2.305838 -0.600231 5.463895 -0.284252 0.145995 -5.646511 -0.440129 2.445988 -0.085028 2.153418 1.498906 -2.184232 -4.590120 -1.121647 -1.890299 0.250074 -1.310096 -1.813095 -2.041161 -0.905788 1.871101 -1.178122 1.227991 3.749450 -0.542567 0.839324 -1.192953 -0.047130 -0.909346 -1.725442 1.306977 0.476977 -2.839634 3.653690 -0.286532 6.611221 -0.687989 2.390297 -1.996123 0.851123 -0.094006 -1.645099 -0.816524 3.861468 1.876092 0.744085 0.449119 0.598923 -1.227632 2.413940 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -0.671446 0.924835 6.722026 3.855803 -2.745868 -5.258481 -2.702836 -7.905847 4.144512 0.657258 4.542994 0.191877 1.610577 -1.064418 -0.089723 -0.266337 0.625395 -2.284033 0.723759 -1.940200 -1.452661 6.257249 2.481079 -3.628374 0.147092 -7.825019 4.378154 2.401881 3.466880 4.431197 0.409979 -0.879908 -0.519441 3.730789 -1.760097 0.411717 0.650410 1.171474 -2.303830 0.280854 1.656048 2.645182 4.122803 0.255377 4.434979 1.692221 2.918089 1.040026 -2.206946 -0.679968 -2.731367 4.863716 -3.967725 1.927939 -0.349777 1.359977 0.731813 -4.162598 -1.598150 -3.365017 -0.726902 0.912415 -2.991805 0.503651 -4.163164 1.304267 -1.479401 -1.956754 1.322903 0.391251 4.115806 1.949433 0.660802 -1.125017 -5.064654 1.712750 -0.180761 2.436734 2.965837 -1.774298 -1.052454 1.015818 -2.453230 -3.278281 2.508805 1.975124 0.749564 -0.159422 0.857171 -1.596444 -1.021337 -1.010098 -0.031678 3.373969 -2.081603 1.639574 -1.377810 -0.851847 -2.498957 -2.760540 0.258810 -3.310897 2.260515 2.199123 -0.814196 -0.200810 0.219864 0.608553 -1.938516 -4.226058 0.586073 -1.250061 1.633198 5.306485 -2.091327 -0.753851 -0.824409 -0.861317 -0.637437 4.342990 0.808204 1.492418 4.398755 5.315932 0.837975 -3.405642 -1.681730 1.279925 2.876868 3.531544 3.009086 -4.653312 -2.665626 -0.353232 0.616623 -6.826413 0.409907 1.527696 2.879040 0.054889 -3.939572 1.812216 -1.965752 4.629490 3.447416 1.561067 1.454275 -0.174745 -3.510144 4.726725 8.345390 -1.255481 2.993181 -3.549404 -2.791278 5.150871 -4.055112 2.848769 0.615700 -0.015451 0.293971 -2.940401 0.183637 4.111257 0.974876 1.925511 2.740640 1.226827 -0.176938 -6.288798 -5.487465 0.444118 4.277882 0.021969 7.263810 -3.957369 -2.196994 -0.793771 4.397754 0.343646 -1.095484 1.011957 -2.762810 2.631800 -7.333171 -5.962067 7.217577 6.586986 1.772461 0.224513 3.739882 3.756153 -1.855379 -2.268635 -2.052720 2.486224 1.057156 -2.490188 -0.526931 -0.170484 -3.977352 -2.538890 0.526158 1.628208 2.735943 -2.034589 -1.622322 -0.251485 -4.584530 -3.670595 2.636846 -4.325451 -1.770569 0.603901 -0.063207 -0.342738 1.923938 -1.071443 -0.151707 1.873275 -2.184888 0.542303 2.326859 3.114533 0.644820 4.508383 4.989595 -0.150324 4.171360 2.345875 -1.421206 8.180162 -1.737793 0.933607 1.480270 2.257187 0.152680 1.973670 1.769025 -2.203593 -1.982041 -4.587632 2.531632 0.631532 2.968535 -3.699083 -3.700140 -5.175327 -2.187703 2.652689 3.731014 -0.010972 8.148078 -0.840983 0.884535 -8.191402 -0.336138 3.360205 0.404741 3.685045 2.418486 -3.137857 -4.882269 -1.910608 -2.458246 -0.085516 -2.123501 -3.910978 -2.962872 -2.292084 3.195751 -2.568642 1.702348 4.746527 -0.544339 1.944233 -1.794669 -0.232254 -2.448040 -1.372667 2.052638 0.821118 -3.949647 4.639776 -1.258668 9.533121 -2.227427 3.313235 -3.226540 1.985540 -0.897704 -2.146590 -0.733737 6.128922 2.744081 0.585738 0.175684 -0.350220 -1.344759 3.006739 -PE-benchmarks/finite-automata-algorithm.cpp__main = 0.025191 0.183059 0.808834 0.278248 -0.572738 -1.290353 -0.385451 -1.613400 0.600971 0.338354 0.860436 -0.017545 0.682365 -0.268128 -0.075067 0.233998 0.375119 -0.248245 0.158941 -0.523371 -0.706356 1.115768 -0.041509 0.043389 0.143662 -0.965011 1.005273 0.341629 0.358062 0.854364 0.318355 0.064506 -0.266406 0.433555 -0.109068 0.432556 -0.018249 0.476841 -0.266370 0.216259 0.257705 -0.263129 0.758832 0.195747 0.743206 0.579529 0.266878 0.312055 -0.248253 -0.444962 -0.265746 0.154763 -0.607590 0.243769 -0.572464 -0.201007 0.292860 -0.242142 -0.036649 -0.177871 -0.093478 -0.419987 -0.727933 0.189245 -0.751957 0.238199 -0.472515 -0.601312 -0.218856 -0.210356 0.537967 0.149095 -0.248775 0.023839 -1.213213 -0.098545 0.184663 0.114288 0.601808 -0.136496 -0.282133 -0.219596 -0.879430 -0.726260 0.838299 0.590548 0.335279 0.308573 -0.430612 -0.281836 -0.208517 0.062038 0.644731 0.575381 -0.223300 -0.058000 -0.080794 -0.233043 -0.552333 -1.038850 0.451970 -0.323607 0.440327 0.032916 -0.186394 -0.149112 -0.017893 0.039949 -0.448793 -0.692520 0.041895 -0.669787 0.372563 1.003868 -0.131082 -0.345173 -0.593718 -0.429296 0.209246 0.616644 0.462604 -0.042800 0.981583 0.642588 0.238668 -0.745224 -0.653075 0.328673 0.325038 0.344068 0.282234 -0.723814 -0.517523 0.223253 -0.574502 -1.151031 -0.368434 0.127411 0.490173 -0.605863 -0.210254 0.738973 -0.482415 0.190441 0.785603 0.206945 0.217941 0.040376 -0.675843 0.511953 1.102695 -0.128345 0.459299 -0.599540 -0.475362 0.883525 -0.292897 0.116858 0.281054 -0.360640 -0.565928 -0.139037 0.341207 0.594487 -0.058938 0.357560 0.229639 0.442824 -0.511649 -0.601166 -0.985168 0.089869 1.260904 0.420278 1.140858 -0.926558 0.023816 0.139116 0.740588 0.223449 -0.337047 0.305479 -0.422857 0.486333 -1.261344 -0.915245 1.173801 0.711646 0.755522 -0.028535 0.269853 0.507502 -0.433325 -0.384892 -0.401490 0.425895 0.154165 -0.911678 -0.256060 0.086813 -0.839228 -0.341371 -0.109177 0.469228 0.355521 -0.165052 0.348592 -0.651976 -0.264919 -0.738512 0.474040 -0.369579 -0.114963 0.065810 -0.053405 -0.167486 0.177655 -0.088626 0.226190 0.049547 -0.238716 0.332599 0.415177 0.216361 0.004912 1.122964 0.963920 -0.630973 0.177557 -0.136991 -0.127883 0.957878 -0.196500 0.410078 0.222422 0.678859 0.245908 0.154522 0.766633 -0.367327 -0.337783 -0.752206 -0.174082 0.590272 0.377613 -0.127418 -0.372626 -1.399393 -0.063794 -0.127392 1.360267 -0.036241 1.161527 -0.213347 0.444451 -0.935124 0.198277 0.229579 -0.168938 0.453832 0.218611 -0.456937 -0.150606 -0.295391 -0.817223 -0.683737 -0.213165 -0.275022 -0.579313 -0.126579 -0.036483 -0.436584 -0.084801 0.468319 -0.166658 0.276915 -0.398704 0.094556 -0.540819 0.107073 0.696186 -0.120316 -0.550145 0.539905 0.129881 1.514890 0.109062 0.647532 -0.096478 0.515318 -0.248417 -0.791433 -0.322558 0.924867 0.520499 0.031730 0.200029 0.063095 0.428813 0.498369 -PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = -4.149101 2.745328 19.311360 12.166295 -7.992687 -12.328807 -6.225796 -17.543311 8.599605 0.531544 11.748789 1.147281 2.579457 -2.657641 2.551592 -1.443978 0.797420 -4.935692 2.399760 -4.000511 -0.001510 12.280479 9.977388 -13.845030 0.146166 -17.914129 10.708374 8.232977 8.558978 9.296969 0.394902 -3.025327 -2.094063 10.778823 -5.368852 -0.903800 1.478123 2.692235 -5.597929 1.050238 3.424443 10.996037 7.073115 -1.230909 11.773509 4.734685 11.260754 2.891158 -7.934052 -0.960907 -7.459818 16.748034 -11.386746 5.757796 2.115040 5.066052 -0.036986 -12.209413 -5.031758 -14.156073 0.261982 4.666116 -7.599169 1.266095 -11.180463 3.094342 -2.154028 -4.148785 5.945684 5.446607 11.060894 4.252963 2.357648 -3.437246 -9.006018 5.030159 -1.890607 8.586314 7.598845 -7.095925 -2.489454 4.115472 -2.456810 -7.708980 3.249258 1.729986 1.824301 -3.370140 5.048601 -2.038012 -2.290654 -4.021241 -4.682129 8.577140 -6.846275 6.257998 -3.363899 -0.674320 -6.522431 -2.672169 -0.819576 -10.160542 5.606374 8.387356 -0.990388 -1.451197 -2.965316 2.250691 -5.769460 -11.335872 0.450225 -1.369296 4.413345 11.345486 -6.992890 1.351444 1.049623 -0.362111 -1.261436 12.007926 1.852151 5.597914 10.582165 15.901235 0.435525 -7.535713 -3.168667 1.890535 8.734221 12.225137 8.730054 -13.455025 -7.200149 -2.527631 3.483063 -15.655050 5.044155 5.609373 6.613978 4.393816 -13.809776 2.026111 -4.632744 14.608084 7.481968 6.664773 2.794979 -0.596924 -7.510794 13.111505 22.472705 -4.352225 7.552585 -4.714098 -6.060486 12.791317 -11.645815 8.061782 4.030802 1.662259 3.377017 -8.881198 -4.557095 10.939600 7.139238 6.403221 10.269026 2.196888 2.160653 -18.769976 -12.155524 1.559149 8.201353 -3.126746 18.571974 -8.529964 -7.190696 -3.092628 11.150129 -0.756967 -3.444548 -0.426306 -5.856401 6.369303 -15.830748 -14.325175 16.873300 16.922002 1.501892 0.009350 11.937853 11.223180 -6.052838 -5.466670 -4.953480 6.489742 -0.756108 -1.485126 0.301096 0.440031 -11.566451 -5.851047 2.231930 3.750926 6.790240 -4.471297 -9.881524 5.505745 -14.759825 -7.099686 3.244225 -10.681671 -5.251135 0.727980 -0.048935 2.136244 3.805645 -5.162757 -1.886610 6.270225 -8.126665 -0.858148 6.025565 10.500895 4.479403 12.650494 8.735498 4.117371 12.391428 8.631937 -5.208575 23.088295 -1.141826 1.766855 3.952640 5.384024 -0.327345 4.823957 2.417347 -5.757120 -6.522743 -13.341624 7.545038 0.354678 9.224662 -11.808155 -8.821554 -10.358346 -6.713427 11.423086 6.492214 -1.643857 21.419514 -0.526034 0.995041 -21.975259 -1.967882 8.376945 -0.231283 9.288645 7.371152 -8.172564 -16.139734 -5.451706 -2.845351 2.044940 -5.481456 -8.913912 -7.087167 -5.108478 9.280744 -5.713621 4.864834 12.919322 -0.420037 4.650050 -1.581943 -0.835894 -2.900191 -4.912340 4.196409 4.260824 -13.351171 14.160691 -4.166006 27.186850 -7.865988 7.997424 -10.415880 1.709865 -0.638043 -0.827026 -0.743555 16.060830 7.980922 3.230084 0.607955 0.817359 -7.245449 8.150167 -PE-benchmarks/subset-sum-problem.cpp__main = 0.210216 0.688931 2.249691 0.563627 -1.399620 -1.865955 -1.068930 -3.363599 1.040009 0.380686 1.651056 -0.390169 0.583162 -0.142705 -0.021043 0.507317 0.560584 -0.641647 0.594470 -0.838537 -1.131803 1.755919 0.082697 -0.189217 0.329391 -2.328549 1.310572 0.744284 1.095416 0.933944 0.447878 -0.283463 -0.668699 1.037092 -0.233481 0.390231 0.660339 0.612009 -1.213788 0.789605 0.071051 0.287697 1.257723 -0.260612 1.468370 0.798106 0.563811 0.779395 -1.012596 -0.277594 -0.514289 1.590444 -0.961267 0.594047 0.132651 -0.203414 -0.143819 -1.151235 -0.593993 0.012639 -0.520121 -0.452086 -0.842351 0.496636 -1.232193 0.441859 -0.672094 -0.874070 0.539894 0.412909 1.180143 0.450935 0.042608 0.466280 -1.766081 0.475052 0.486477 0.880533 0.877937 -0.698850 0.467394 0.410516 -1.072121 -1.321677 0.974011 1.394729 0.644064 -0.462817 -0.391756 -0.268584 -0.146194 -0.406653 0.589953 1.138400 -0.870243 0.126907 -1.252880 -0.564515 -1.451158 -2.051771 0.216473 -0.882917 1.127569 0.175966 -0.573712 -0.110922 0.163788 0.516048 -0.502080 -1.369572 0.010532 -0.688014 0.890735 2.463521 -0.361654 -0.511161 -0.816171 -0.707408 -0.444042 0.975422 0.619721 0.289085 1.707418 1.835215 0.506627 -1.118259 -1.318659 0.305755 0.687496 1.094990 1.085898 -1.727142 -0.943827 0.023319 -0.400712 -2.280878 -0.383284 -0.228583 0.854133 -0.711538 -0.251133 0.125430 -0.925983 1.333887 0.808484 0.428902 0.327174 -0.139238 -1.090637 1.478553 2.257417 -0.391273 0.996499 -1.037820 -0.661135 0.899470 -0.710500 0.746587 0.578221 -0.255859 -0.503642 -0.835540 -0.103182 1.140910 0.294984 0.529545 0.435060 0.586326 -0.790944 -1.551345 -1.897349 0.591761 1.639115 -0.316099 1.981538 -1.468053 -1.116360 -0.127994 1.964685 0.405047 -0.572714 0.630492 -1.012977 0.908352 -1.205518 -1.858192 2.099782 2.248270 0.790674 -0.263842 1.228557 0.986302 -2.105860 -1.189796 -0.811209 0.839667 0.089801 -1.996861 -0.893165 0.385856 -1.274595 -0.377099 -0.058932 0.873502 1.022845 0.252353 0.210613 0.146412 -1.271321 -0.968185 1.265814 -0.833519 -0.378004 0.404640 -0.032722 -0.022559 0.911875 -0.870216 -0.116501 0.414348 -0.905150 0.592079 0.951189 0.959522 -0.155761 2.054122 1.531113 -0.027068 1.603959 0.300855 -0.616479 1.894331 -0.335202 0.652906 0.375275 0.284260 -0.483945 0.335318 1.081315 -0.723546 -1.315820 -1.512527 0.020061 0.043774 0.891095 -0.319561 -1.355472 -2.013070 -0.452142 0.646589 1.474513 0.288675 2.351017 -0.157248 0.491464 -2.355128 0.019762 0.571420 -0.118250 1.354274 0.466230 -1.025694 -1.401376 -0.487195 -1.520645 -1.271400 -0.530680 -1.061699 -1.164928 -0.764962 1.223707 -0.238251 0.048654 1.518922 -0.026720 0.739520 -0.407820 -0.186643 -0.819293 -0.195320 1.500052 -0.264019 -1.366441 1.468242 0.053849 3.987798 -0.125134 0.795723 -0.560157 -0.141610 0.291475 -0.877723 -0.323578 1.859727 1.024940 0.592646 -0.343023 -0.074967 -0.334218 0.920362 -PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = -4.225467 3.649669 21.683483 14.276693 -10.129026 -14.289506 -7.191435 -19.132730 9.159121 -0.479314 12.630540 0.952140 1.645249 -2.873549 2.505709 -1.960182 0.858416 -4.137898 1.755245 -4.880806 -1.372241 13.194156 11.275441 -16.677612 0.454408 -19.285963 12.470689 9.595556 9.377589 10.754582 0.539636 -3.093800 -2.661691 12.025697 -6.225717 -1.711733 1.119528 2.596654 -7.163973 1.209024 4.725402 11.751960 8.759017 -1.696783 12.629443 5.573011 12.454629 3.398880 -9.857321 -0.353095 -8.817065 19.333302 -11.968783 6.946167 2.578807 5.419616 0.709381 -13.748151 -5.194122 -15.698866 -0.580731 4.097479 -9.034521 1.037575 -12.952038 3.274115 -2.914033 -5.429917 7.240057 5.522134 11.862484 3.895623 1.805464 -4.231386 -9.853593 5.741094 -1.290623 10.543037 8.636938 -7.230994 -1.064367 4.538520 -3.186247 -8.294045 3.118494 0.198730 2.470856 -3.584729 5.624550 -2.817034 -2.062100 -4.350689 -4.621525 9.089777 -7.089017 7.625405 -4.744514 -1.687597 -8.106279 -3.766506 -0.368638 -10.801722 6.274154 8.443926 -2.812258 -1.134629 -2.591259 2.521258 -5.259858 -13.401208 0.343930 -1.524641 5.119083 13.861094 -7.315376 0.726005 1.366639 -0.557071 -2.441172 13.495107 1.815716 6.665626 10.676069 17.799078 0.488649 -8.629236 -3.690987 1.228107 9.344787 13.421589 10.096279 -13.861683 -8.664034 -3.239242 4.477678 -17.698126 5.606822 6.372866 8.107396 5.758638 -14.529428 2.299463 -5.504295 16.346968 6.947146 7.084941 2.950514 -1.458122 -9.297577 14.562970 24.726897 -4.983886 8.486174 -5.432247 -7.839829 14.190673 -11.502968 8.752039 4.096718 1.244263 4.635779 -9.528006 -4.818452 12.377357 7.692465 5.891164 12.117501 2.247111 2.182782 -21.316483 -13.660940 2.718263 9.053100 -3.610421 19.885700 -9.291217 -7.748740 -3.813331 13.004548 -1.640214 -3.389435 -0.766201 -7.161277 7.220396 -17.558648 -16.183399 19.115365 19.048223 0.649450 0.291162 12.652364 12.568817 -6.180918 -6.391865 -5.955177 7.013984 0.030607 -1.286872 0.058738 0.089962 -12.217552 -5.803101 3.603129 4.510050 7.535360 -6.031986 -10.702386 5.244035 -16.649204 -8.870096 3.540231 -12.180333 -4.982910 2.235059 -0.156916 2.320541 4.693010 -5.068489 -2.448286 6.015143 -8.694046 -0.846974 5.773304 12.277838 4.575545 13.953875 9.226472 4.634479 14.981928 10.019362 -6.542644 27.198774 -2.486609 2.407711 4.511378 6.273261 -0.332494 5.604257 3.059308 -6.421786 -6.324685 -15.275308 8.027293 0.055678 10.117471 -14.755141 -10.195440 -12.648822 -7.470199 12.628016 6.438051 -2.273799 23.989527 -0.840441 -0.051982 -24.485227 -2.372018 10.039860 -0.238599 11.225560 8.130346 -9.555025 -18.817280 -5.971923 -3.822285 3.742894 -6.769703 -9.682917 -8.320638 -4.218336 10.642245 -6.381762 6.415871 14.416514 -0.717416 4.586768 -2.222778 -1.123432 -2.980703 -6.654659 5.170302 4.542998 -14.853061 15.764496 -4.361256 30.229653 -7.725682 9.158199 -11.789826 1.655989 -0.107790 -0.856898 -1.317512 17.923760 9.048199 3.480699 0.537296 1.595599 -8.227491 9.231896 -PE-benchmarks/partition-problem.cpp__main = 0.410604 0.755410 2.152410 0.418503 -1.215358 -1.548863 -0.932650 -3.197426 0.972793 0.317606 1.426118 -0.437584 0.456988 -0.078448 -0.059757 0.591383 0.492115 -0.480799 0.579518 -0.698513 -0.894689 1.553130 -0.094051 -0.058377 0.290802 -2.166576 0.926471 0.661654 1.236890 0.622356 0.403720 -0.352480 -0.603727 0.888130 -0.249469 0.233388 0.716240 0.501410 -1.396781 0.701881 -0.193805 0.316949 1.037573 -0.356968 1.281662 0.503219 0.542576 0.706307 -0.821371 -0.102839 -0.491289 1.758021 -0.681355 0.561902 0.335172 -0.303147 -0.353258 -0.993193 -0.542708 0.308278 -0.534245 -0.312299 -0.624820 0.441412 -1.052239 0.360621 -0.579022 -0.763746 0.571842 0.469478 1.037038 0.423802 0.179554 0.454518 -1.698979 0.529247 0.465731 0.860336 0.724538 -0.572682 0.753277 0.433372 -0.847196 -1.170431 0.878527 1.490988 0.537565 -0.544556 -0.434203 -0.222826 -0.121159 -0.454571 0.493123 0.985973 -0.942819 0.186984 -1.468284 -0.500057 -1.305210 -1.993020 0.080404 -0.823669 1.041102 -0.049056 -0.391552 0.038127 0.320927 0.546073 -0.267615 -1.193828 0.006732 -0.454317 0.780560 2.410663 -0.306420 -0.492262 -0.697011 -0.577876 -0.694010 0.736854 0.513576 0.328891 1.446616 1.623784 0.572276 -0.970043 -1.189951 0.349147 0.541318 1.056034 1.003887 -1.566514 -0.780450 -0.019475 -0.241020 -2.151760 -0.316060 -0.251138 0.740618 -0.664836 -0.026513 -0.245855 -0.795773 1.317594 0.580829 0.272933 0.322019 -0.120036 -0.858003 1.294849 1.998206 -0.371058 0.887597 -0.943448 -0.440927 0.486841 -0.591459 0.780986 0.403568 -0.129896 -0.314030 -0.840851 -0.201721 1.040145 0.269580 0.394738 0.279040 0.473822 -0.840024 -1.457312 -1.694734 0.523898 1.285287 -0.537817 1.622085 -1.189164 -1.275789 -0.134097 1.817690 0.319391 -0.452274 0.681387 -1.067261 0.830153 -0.729940 -1.673736 1.799656 2.199235 0.604594 -0.367330 1.187124 0.845623 -2.255282 -1.218612 -0.680405 0.683781 0.057003 -2.134551 -0.999260 0.372570 -1.101171 -0.225254 -0.002551 0.738279 0.912816 0.565649 0.395079 0.323504 -1.206735 -0.811272 1.320827 -0.686094 -0.294672 0.365046 0.057724 -0.004806 0.980592 -1.021330 -0.201937 0.547886 -0.867727 0.561609 0.824515 0.852049 -0.258093 1.837755 1.290401 0.226182 1.776590 0.298966 -0.686009 1.631020 -0.296626 0.531912 0.276250 -0.020277 -0.729408 0.367737 0.854064 -0.679842 -1.368270 -1.363051 -0.101851 -0.190295 0.779735 0.003618 -1.364760 -1.568178 -0.453644 0.611617 1.080947 0.379590 2.072396 -0.213727 0.452243 -2.184286 0.002849 0.478007 -0.109084 1.350059 0.417060 -0.948299 -1.304385 -0.389767 -1.358898 -1.374341 -0.474239 -1.156226 -1.022826 -0.886552 1.361510 -0.145386 0.038442 1.370954 0.066715 0.788988 -0.456705 -0.193482 -0.731636 -0.104506 1.458105 -0.279998 -1.276087 1.236726 0.030228 3.801989 -0.143901 0.612019 -0.561795 -0.377223 0.377775 -0.765369 -0.276045 1.686360 0.937540 0.670437 -0.546266 -0.171054 -0.504930 0.793775 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -9.855547 -1.298608 31.773196 18.006695 -13.215463 -22.687056 -12.530731 -31.144645 20.415705 3.044211 22.500780 7.102774 7.725510 -8.770054 4.022479 -0.809951 2.708134 -12.384119 -0.271421 -8.158632 2.489484 29.312985 19.218348 -23.242840 1.243637 -35.822640 12.490564 10.949950 14.660598 20.678737 -0.677690 -3.695795 -4.355977 16.115686 -9.261824 4.536305 4.277199 3.560424 -10.507786 -2.812397 9.049460 13.897736 15.397982 -1.779209 26.361285 1.328455 16.605868 2.984628 -13.145086 -6.638660 -13.308447 28.213581 -19.512706 11.233713 0.878269 11.484883 -1.070146 -19.244671 -10.410862 -29.176671 -0.551102 7.041356 -12.310692 -0.095812 -14.688838 7.964004 0.212548 -5.848797 7.050202 -0.921437 20.943512 7.271793 5.523937 -4.610753 -20.080156 5.642648 -3.917732 12.946551 12.344388 -5.504705 -9.607426 1.304011 -4.787477 -12.729709 8.923182 5.391975 0.004541 -0.685309 3.163703 -1.176646 -4.938478 -6.129928 -5.130055 13.079889 -18.790834 6.800955 2.395407 -2.318629 -7.260047 -2.226533 0.602842 -15.835601 6.895435 13.651342 0.477330 -1.410921 -4.254636 3.851170 -14.597764 -18.297971 5.546936 -0.488080 -0.429019 19.696814 -13.661822 2.609820 2.218901 -0.271438 -3.434731 21.374387 0.745109 12.163205 17.512072 26.706580 3.953207 -14.706119 -4.506275 8.497895 22.425759 17.339020 12.165513 -20.707910 -11.393912 0.588470 2.048381 -29.924800 1.568375 13.922256 18.036685 9.216033 -24.299135 5.004701 -6.330391 27.551458 14.917416 6.607444 4.239129 -0.186649 -19.924179 22.485731 43.281818 -6.924923 16.394255 -9.226896 -9.649752 26.082618 -24.226969 15.078814 5.304241 1.824000 3.841170 -14.677302 -5.081518 18.762623 10.864481 13.215096 6.303387 6.547698 0.103817 -34.800557 -28.697352 -7.283268 16.576198 0.423545 34.482171 -15.687914 -13.666743 -8.088617 22.545190 -3.943580 -8.807227 2.558494 -14.308767 12.308852 -33.748253 -26.029830 39.777979 39.901788 9.327594 6.555168 25.781183 20.215149 -8.871677 -6.984424 -5.880561 10.049790 6.933648 -7.196561 0.328365 -1.258128 -21.204868 -17.519341 1.280725 5.510570 3.988742 -3.366959 -6.416363 11.475163 -20.666597 -10.139854 6.324806 -20.946191 -10.918179 0.911371 1.910365 0.872898 6.659539 -8.819028 -0.135233 11.669238 -14.027288 2.351792 10.275320 15.277156 10.443145 18.033461 23.881744 1.557412 23.858684 9.792099 -9.629715 37.747785 -8.208224 2.378147 5.088340 8.295686 3.235596 7.441019 3.279034 -9.952366 -4.492885 -21.351981 13.811091 2.318094 17.285486 -20.968887 -24.039199 -18.733431 -9.077764 16.895285 12.061612 -4.124303 39.746027 -6.937291 2.959207 -49.022801 -1.497424 18.148063 2.018568 12.339449 11.383234 -11.302662 -37.778048 -7.916346 -6.608687 1.513394 -10.556944 -19.255982 -10.397554 -16.506297 23.027350 -17.017197 8.545664 22.768216 -0.636035 15.794381 -4.936841 -1.649512 -11.779800 -4.468737 1.410422 7.966893 -18.742325 23.356113 -5.442946 46.453721 -14.820501 15.971528 -15.551533 14.107921 -7.369172 -8.887159 -0.696904 27.871561 18.052110 3.081631 1.416008 -1.509237 -11.785275 13.186484 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.440419 -0.405860 3.698383 1.767392 -1.166534 -3.068335 -1.508040 -3.995826 2.586095 0.673102 3.016566 0.856392 1.339820 -1.135436 0.739272 0.457602 0.407355 -1.739332 0.195772 -0.932164 0.766555 4.034632 2.382284 -2.265218 -0.063444 -4.176128 1.009280 1.276428 1.779261 2.615042 -0.045719 -0.500202 -0.322891 1.785807 -1.224660 1.150004 0.665635 0.673671 -1.201930 -0.396659 0.558497 1.484824 1.650620 -0.347514 3.635471 0.038232 2.359337 0.277423 -1.383698 -1.143254 -1.689397 3.643860 -2.599184 1.223423 -0.179765 1.030636 -0.266973 -1.910269 -1.392269 -3.942924 -0.091654 0.912690 -1.761012 0.001781 -1.614576 1.182660 0.091338 -0.611909 0.393793 -0.031378 2.667242 0.997886 0.796267 -0.152969 -2.893124 0.584768 -0.621464 1.363110 1.435967 -0.818285 -1.435089 -0.070936 -0.434344 -1.671710 1.583254 0.976483 0.017021 0.173112 -0.117215 0.479851 -1.090297 -0.647169 -0.495233 1.557922 -2.238790 0.778057 1.095356 -0.177600 -0.767187 -0.185150 0.193404 -2.003101 0.648121 1.515004 0.975632 -0.363711 -1.249067 0.500556 -2.402859 -2.349310 0.985613 -0.092055 -0.553990 2.099755 -2.021730 0.847633 0.332142 0.139826 -0.235635 2.659716 0.350290 1.667997 1.815740 3.127407 0.521803 -1.949323 -0.698386 1.257031 3.309875 2.036080 1.200813 -2.447781 -1.444701 0.208094 -0.210988 -3.610667 -0.191754 2.406837 2.203490 1.010851 -2.906198 0.765856 -0.607458 3.486918 2.217802 0.701488 0.397506 0.142408 -2.609643 2.579621 5.301726 -0.935760 2.314936 -0.781247 -0.769803 3.226241 -3.298407 1.878927 0.933539 0.249770 0.182881 -1.707384 -0.771458 2.227510 1.862065 2.096603 0.236975 0.992821 -0.119099 -4.190171 -3.714600 -1.319999 2.367448 -0.024424 4.018022 -1.813332 -1.954335 -0.702709 2.600818 -0.586852 -1.382323 0.279185 -1.884343 1.582941 -4.514589 -3.144987 5.218647 5.020255 1.764928 0.941476 3.223185 2.855229 -1.311380 -0.660798 -0.367681 1.391833 0.493281 -1.553825 -0.113944 -0.170851 -2.834840 -2.415133 -0.281426 0.673429 -0.389866 0.402794 -0.197684 1.532755 -2.185884 -0.626735 0.438862 -2.376636 -1.579347 -0.196722 0.390956 0.181759 0.568494 -1.443875 0.549530 1.907891 -2.123305 0.346284 1.380626 1.548803 1.715966 2.511186 3.249826 0.037217 3.134107 0.741092 -1.155650 3.979883 -0.791971 0.302864 0.439471 1.013088 0.595647 0.720001 0.443811 -1.197399 -0.757491 -2.577492 1.426855 0.805776 2.342537 -1.644493 -3.376059 -2.163723 -0.792845 2.134079 1.890505 -0.734935 4.760708 -1.048100 0.840413 -6.204284 0.106915 1.904097 0.098479 1.179790 1.321649 -1.144549 -4.642228 -0.976626 -0.782255 -0.709957 -1.254292 -2.542683 -0.989016 -2.521082 2.801760 -2.636614 0.681461 2.263369 0.158567 2.296828 -0.310985 -0.190967 -1.705294 0.037050 0.350764 0.915991 -2.328139 2.628071 -0.556477 6.073506 -2.007614 2.011606 -1.741033 2.203687 -1.159049 -1.086664 0.062003 3.516373 2.640805 0.129227 0.141974 -0.220202 -1.160216 1.447002 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -3.001989 -0.525674 8.112328 4.439476 -3.215199 -7.005865 -3.405257 -8.761331 5.503724 1.184661 6.544630 1.812362 2.723838 -2.434114 1.446214 0.612304 1.097520 -3.550742 0.218915 -2.274284 0.700223 8.634605 5.061244 -5.255080 0.025878 -8.938612 2.846504 3.060970 3.750313 5.606874 0.076951 -1.020787 -0.924226 4.098598 -2.587852 2.183440 1.064394 1.423020 -2.637526 -0.804656 1.809261 2.976708 4.190107 -0.554905 7.472712 0.328543 5.240843 0.762154 -3.473576 -2.362035 -3.906514 7.841170 -5.660685 2.725199 -0.284080 2.351643 0.045319 -4.464440 -2.818644 -8.046751 -0.381531 1.598101 -3.997383 -0.021026 -3.799839 2.393884 -0.155921 -1.605333 1.194573 -0.073586 5.756649 1.994885 1.354812 -0.590825 -6.112253 1.269692 -1.155560 3.161959 3.353165 -1.491063 -2.871856 -0.017394 -1.419939 -3.699242 3.334859 1.557309 0.309652 0.287576 -0.238002 0.528742 -2.046659 -1.361056 -0.907588 3.383561 -4.821772 1.725583 1.873252 -0.680527 -2.260445 -0.819859 0.475392 -4.274699 1.604943 3.400662 1.174562 -0.876123 -2.629989 0.729304 -4.964929 -5.323100 1.767005 -0.590328 -0.800797 4.887648 -4.296679 1.355474 0.551292 0.051812 -0.497836 5.805535 0.939742 3.342873 4.332977 6.940862 1.107158 -4.283222 -1.574442 2.245833 6.802935 4.480794 2.906912 -5.220464 -3.330764 0.395255 -0.317043 -8.126464 -0.173508 4.959553 4.864921 2.504296 -6.365910 1.783521 -1.574713 7.340906 4.594333 1.838723 1.020705 0.143914 -5.616109 5.756187 11.381188 -2.036190 5.030434 -1.927995 -2.181944 7.383764 -6.937809 3.913476 2.054126 0.283045 0.320662 -3.627946 -1.568989 4.985787 3.593722 4.049471 1.192285 2.068202 -0.215797 -9.180856 -8.202951 -2.082765 5.336593 0.277506 8.939576 -4.333657 -3.848141 -1.403986 5.733148 -1.342989 -3.054726 0.652835 -3.930497 3.498873 -9.862783 -7.025936 11.319471 10.482231 3.239725 1.949653 6.831642 5.988566 -2.847132 -1.701162 -1.412932 3.118535 1.346059 -2.986310 -0.020975 -0.290278 -6.119324 -4.867384 -0.334085 1.624492 -0.130006 -0.148536 -0.757848 2.658119 -4.997997 -1.924514 1.242728 -5.281031 -3.218376 -0.126637 0.529184 0.333771 1.478369 -2.547617 0.725016 3.398410 -4.465229 0.585925 2.795430 3.752542 3.509688 5.843870 7.114578 -0.094371 6.713079 1.907531 -2.535689 9.259144 -2.044881 0.817995 1.063078 2.771535 1.314200 1.760588 1.417509 -2.643444 -1.754650 -5.730052 3.191613 1.609326 4.935228 -4.465558 -6.795993 -5.486402 -1.969427 4.557466 4.239722 -1.683821 10.525093 -2.191300 1.472900 -13.326264 0.080487 4.337993 0.248095 2.935703 2.884645 -2.809288 -9.602053 -2.280330 -1.965594 -0.784763 -2.553771 -5.158806 -2.501327 -5.011230 5.812120 -5.527938 1.692884 5.204758 -0.070490 4.568082 -0.705230 -0.404938 -3.425294 -0.405722 1.102575 1.990377 -5.085232 6.276933 -1.228127 13.195172 -3.913369 4.444231 -3.865684 4.423932 -2.210382 -2.593219 -0.136974 7.691868 5.612530 0.310903 0.446476 -0.147570 -2.452303 3.442261 -PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = -0.482147 -0.103963 2.454148 1.031700 -1.672096 -2.523495 -0.930421 -3.943545 2.070771 0.595245 2.321884 0.776383 1.445204 -1.345701 0.207048 0.726063 0.697037 -1.159985 0.357614 -1.029655 -0.877442 3.135633 1.255044 -0.591057 0.425200 -2.956120 1.814572 0.442975 1.760538 2.164454 0.498402 -0.248816 -0.544434 1.227141 0.142932 0.966483 -0.079296 0.678024 -1.242435 0.141873 0.557210 -0.891372 1.785262 0.253497 2.507199 -0.175900 1.364448 0.499143 -0.968850 -0.771636 -1.632000 2.057264 -2.113036 0.897830 -0.502126 -0.120828 0.143867 -0.758211 -0.783905 -1.660265 -0.622396 -1.022687 -1.267974 0.363605 -1.692550 0.956278 -1.326170 -0.738383 -0.236754 0.110139 1.916459 1.137431 0.595521 0.462144 -3.013693 0.226562 0.137176 0.836104 1.572057 -0.066022 -0.618144 -0.399558 -1.267516 -1.700034 2.126022 0.913214 0.124117 -0.014893 -0.560702 -0.149021 -0.675555 -0.266595 0.423424 1.204558 -2.131401 0.474964 -0.015078 -0.347734 -0.680681 -2.301177 0.336751 -1.386386 0.783335 0.654388 0.023744 -0.300336 -0.503183 0.387737 -1.457900 -2.051817 0.424220 -0.585737 -0.276599 2.437527 -0.998050 -0.115554 -0.602441 -0.020674 -0.038854 1.576579 0.687390 1.151944 2.173772 2.412036 0.645582 -1.293582 -0.677987 1.246782 1.787735 1.233827 0.849714 -1.698450 -1.291394 0.817676 -0.249510 -3.020945 -0.792686 1.530162 1.718441 0.072519 -1.241898 0.360485 -0.610965 1.781300 2.043369 0.246780 0.552798 0.160171 -1.770097 2.191273 3.761445 -0.600016 1.403452 -1.080866 -0.688728 2.797526 -2.247709 0.764484 0.206594 -0.034178 -0.592715 -1.157832 -0.258458 1.649781 0.618345 0.758025 0.136848 1.049794 -0.839203 -2.857661 -2.609567 -0.505592 2.698093 0.586869 2.906080 -1.811324 -0.509457 -0.091749 1.842097 0.611403 -1.062817 0.740147 -1.583365 1.298432 -3.686146 -2.568397 3.997955 2.984306 1.604179 0.561917 1.352034 2.423141 -1.806456 -1.146797 -0.951802 1.000263 0.529762 -2.473996 -1.087950 0.142151 -2.501767 -1.491360 0.064072 0.767987 1.076414 0.012631 0.590864 0.177459 -1.268920 -0.978190 1.484621 -1.656656 -1.335141 -0.005222 0.003502 0.299950 0.764203 -0.343387 0.747776 0.647608 -1.239582 0.297031 0.956052 1.354764 0.361487 2.562817 3.046152 -0.535016 0.930699 0.232763 -1.028137 2.585572 -0.734741 0.480315 0.328704 0.554319 0.504610 0.529565 1.384877 -1.099554 -1.092407 -2.085058 0.317513 0.678307 1.552397 -0.947514 -2.109766 -2.676284 -0.422063 1.052900 2.077133 0.049770 3.534505 -1.050326 0.298697 -3.823565 0.132005 1.213721 0.102290 1.758331 0.801181 -1.000440 -1.347109 -1.091122 -1.345137 -0.427775 -0.983780 -1.164732 -1.098164 -1.251591 1.805409 -1.649878 0.322786 1.335874 -0.258579 2.049027 -0.493956 -0.131301 -2.001388 0.780247 0.914004 0.365118 -1.410180 2.271966 -0.092446 4.436270 -0.843350 0.951101 -1.095174 1.190790 -0.774440 -1.211710 -0.204683 2.557317 1.967115 0.315408 0.291433 -0.108623 -0.151915 1.281650 -PE-benchmarks/boruvkas-algorithm.cpp__main = -6.060267 -3.540214 8.150754 3.873783 -4.582347 -13.931638 -4.620674 -16.142928 8.586232 3.478116 13.542913 1.953926 8.140526 -7.458053 3.950746 5.776422 6.760904 -7.009782 0.966395 -5.175248 0.852827 15.519006 5.387712 -0.975450 0.377116 -8.969082 -0.236353 4.099742 3.816543 6.881979 3.378198 -0.805470 -1.480692 2.702872 -1.896898 9.474525 2.426443 2.496593 -5.541677 -2.463990 -0.788865 -2.970039 7.883009 -2.263598 13.389902 -3.475440 11.338826 1.468606 -6.693379 -6.884893 -7.197216 13.039413 -8.551202 1.912181 -0.888192 -2.303305 2.565888 -2.938112 -4.789917 -10.124509 -3.119949 -2.308618 -7.835661 0.417719 -3.234276 5.656605 -1.365332 -1.583968 -0.581544 -1.058912 7.827929 3.213545 1.377870 4.688366 -11.205329 0.299368 0.218917 2.355692 4.353174 0.124715 -2.144164 -3.819297 -3.377740 -5.515253 11.532491 3.008489 2.487548 3.053455 -8.713792 5.566234 -4.887899 -1.435396 2.539423 1.288615 -8.737778 -1.196451 9.567767 -3.692686 -5.358797 -4.622114 2.715886 -4.666152 0.914493 3.625392 4.234009 -1.444791 -11.299434 0.232183 -13.123129 -8.630425 3.670656 -3.315103 -4.390677 7.677415 -10.351938 2.902123 -3.801965 1.566366 0.705525 6.744707 3.573476 6.763144 5.686447 9.150778 2.345854 -7.396998 -4.016608 3.279862 14.377032 4.233352 2.163329 -4.562552 -6.236264 3.584281 -6.439990 -12.213462 -7.797284 11.072571 9.690559 5.316653 -7.672517 3.215394 -0.766671 11.483349 8.763408 0.335868 0.052957 1.963892 -10.102545 7.492867 11.886387 -4.116560 10.591417 -0.742597 -0.108857 9.432360 -9.966353 2.379935 5.936290 -1.872279 -4.426320 -3.001808 -2.686222 5.571689 8.171212 5.952758 -5.809481 6.387575 -2.393721 -12.340185 -15.997374 -2.976102 10.441406 2.353949 10.696994 -7.212075 -7.131657 0.322272 6.536895 -3.302118 -9.520573 2.307574 -8.789344 5.508276 -15.970221 -10.520141 21.533019 14.907741 10.017517 5.104971 9.149174 10.359792 -10.638182 -0.231979 -1.212042 6.484119 2.027129 -14.510828 -1.804490 0.862654 -11.166021 -9.259480 -4.215247 3.828851 -5.742226 3.748448 8.372620 0.899230 -3.394718 2.991071 2.282909 -4.674325 -6.186103 -2.015940 0.037079 3.664173 2.534505 -4.554692 5.245840 3.636462 -10.328767 -0.211388 2.999113 6.551278 8.032612 13.265393 16.017848 -2.659955 12.154442 -3.321416 -6.025943 4.872522 -2.583083 2.351300 -1.713670 3.624651 5.149302 0.034692 6.594822 -3.647740 -5.073150 -7.305370 0.077779 6.669139 8.984739 -1.000296 -12.009164 -12.502236 -0.154560 5.185345 10.644887 -4.346403 13.503943 -7.189909 2.808799 -20.134280 1.852661 3.123372 0.147607 2.391387 1.854066 -3.288504 -10.148329 -3.150114 -7.446779 -7.725697 -1.747967 -5.581169 -3.269025 -11.249348 12.244414 -12.030651 -1.378104 3.030911 1.014539 10.439243 4.478062 -0.849738 -6.787037 4.807915 3.839491 2.229215 -5.986933 9.646516 0.948470 22.672766 -2.954866 4.550430 -4.046604 9.081287 -3.958777 -6.542101 -0.321469 10.337841 14.511120 -2.443825 0.763483 -0.029317 -0.210888 5.904155 -PE-benchmarks/rabin-karp-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -3.068283 2.921301 19.440091 13.286433 -8.526550 -12.217306 -6.687902 -16.125433 9.001712 -0.954286 9.755750 2.006516 1.221478 -2.563131 0.754718 -4.076127 0.723673 -3.606779 0.207426 -4.554219 -1.210855 13.246945 9.486681 -16.812512 0.928000 -20.591142 12.443725 8.089913 8.624793 11.459508 -0.830403 -2.654496 -2.486598 10.545510 -6.094820 -2.597787 1.145381 1.320789 -6.697567 -0.449226 6.794054 11.800411 8.932016 -1.221340 10.455633 4.581293 8.882878 2.652977 -7.974992 -0.546648 -7.289186 14.333480 -9.994663 6.928253 1.162900 7.524136 1.142614 -13.105009 -4.390643 -13.602728 0.197355 5.397658 -6.775993 0.127982 -11.970039 2.716102 -1.731638 -5.662927 6.739962 1.715681 10.489705 4.367516 1.793148 -6.369471 -8.575658 5.006856 -1.588615 10.190710 7.181005 -5.112017 -2.648001 3.847554 -3.950103 -6.588759 1.406553 1.256398 1.532879 -2.392855 6.073620 -4.926967 -0.581890 -3.681530 -4.281620 7.559272 -6.088505 6.036869 -5.692097 -0.636014 -4.959360 -2.374374 -0.985446 -8.878862 5.436689 8.896779 -4.112655 -0.112481 1.771025 2.622792 -3.024950 -10.690213 0.708622 -0.440742 4.996773 12.988278 -5.495233 -0.757332 0.931597 -0.961308 -2.861283 13.023751 -0.841805 5.157506 10.428988 16.064872 0.885164 -7.860903 -2.541320 2.306577 7.774443 11.345236 9.790624 -12.370243 -7.082400 -3.199242 4.275888 -16.018599 5.475390 4.266833 8.660396 4.410767 -14.226279 3.146566 -5.028484 14.440229 6.193109 5.473197 3.541619 -1.428817 -8.969774 13.782494 22.963083 -3.828348 6.693644 -8.275714 -8.712706 13.676112 -9.438047 8.064595 1.891531 1.183225 4.614818 -8.957489 -0.950415 11.461783 4.256811 5.455819 10.116878 1.684799 2.046601 -19.555083 -12.175417 1.704744 6.888966 -1.610368 20.827718 -9.041945 -6.218237 -5.011180 12.418473 -1.709359 -1.889109 0.155322 -7.066734 6.363035 -17.298142 -15.410708 17.638734 18.553237 -0.351952 0.755413 11.961063 10.377703 -2.512120 -4.387987 -5.462899 5.678797 2.867498 0.605388 1.078740 0.073449 -9.768636 -6.415316 4.626297 3.686574 8.163176 -7.547842 -10.293421 2.727818 -15.557054 -10.910226 5.370757 -12.873986 -3.092363 2.683787 -0.423167 0.908317 4.863646 -2.947613 -3.414362 5.472641 -5.479190 0.614534 4.761368 10.801389 3.621335 9.162754 9.974319 3.203509 12.305987 10.384604 -5.532082 26.836752 -3.700946 1.707811 4.186568 6.030029 -0.275830 6.007000 2.173800 -5.477867 -3.439120 -13.625864 9.143744 -0.610422 7.938859 -16.167776 -8.558333 -11.773870 -7.275049 9.441361 5.593108 -1.192056 22.405145 -1.484916 -1.086236 -23.292084 -2.626412 10.883020 1.457736 8.973384 7.420493 -7.783797 -18.922832 -4.511572 -3.442258 5.217279 -6.724187 -10.473327 -7.816406 -4.010665 9.303568 -5.474043 7.045532 15.179471 -0.806321 4.335708 -4.138521 -0.711449 -3.763399 -7.624616 1.819328 4.486069 -11.898748 13.594628 -4.087194 23.867712 -6.911852 8.394540 -10.848816 3.763139 -1.472997 -4.055798 -1.656272 15.900154 6.421321 2.545276 1.416272 0.234532 -7.295361 8.120256 -PE-benchmarks/rabin-karp-algorithm.cpp__main = -0.049656 0.268692 1.437130 -0.321693 -0.852500 -1.738230 -0.701661 -2.894960 0.911067 0.592511 1.520223 -0.133925 0.917660 -0.196046 0.118575 0.753101 0.660714 -0.922675 0.586776 -0.817494 -0.583354 1.606705 -0.073182 0.874122 0.211095 -1.862345 0.825222 0.211282 0.801858 1.011534 0.568635 -0.246846 -0.678520 0.502615 0.315096 0.979459 0.681844 0.464486 -0.774829 0.669994 -0.269251 -0.439863 0.964045 -0.044204 1.481094 0.433190 0.370231 0.649233 -0.396935 -0.729144 -0.383048 0.853924 -0.944668 0.252858 -0.071884 -0.569666 -0.198499 -0.369913 -0.382301 0.160989 -0.561618 -0.878805 -0.732999 0.536108 -0.842071 0.565424 -0.995312 -0.442729 -0.243322 -0.195131 0.908488 0.372871 0.102616 0.991041 -1.855664 0.073562 0.195582 0.371698 0.682964 -0.519808 -0.120361 -0.053898 -1.011381 -1.144522 1.082284 1.477612 0.353119 -0.154474 -1.004566 0.301807 -0.497288 -0.187327 0.777138 0.750591 -0.904995 -0.243878 -0.383137 -0.490081 -0.987135 -1.999937 0.459927 -0.531614 0.701389 -0.213806 -0.031585 -0.506018 -0.553789 0.140215 -0.826720 -1.019676 0.346608 -0.539926 0.421119 1.777665 -0.616347 -0.109278 -1.104072 -0.528082 0.081233 0.724597 0.717620 0.243422 1.138159 1.256076 0.530832 -0.962512 -1.188726 0.554805 0.871472 0.455539 0.550461 -1.120189 -0.738672 0.436914 -0.855607 -1.666254 -0.787275 0.290200 0.891994 -0.565657 0.150796 0.093048 -0.689637 0.794634 1.111623 0.114199 0.181934 0.012550 -1.062205 0.964214 1.596665 -0.286508 0.995035 -0.781477 -0.022251 0.862544 -0.833155 0.367654 0.589169 -0.108347 -0.997304 -0.352866 -0.102842 0.722050 0.454193 0.771524 -0.210420 0.750354 -0.709152 -1.019171 -1.612951 0.025590 1.808864 -0.018979 0.900848 -1.224987 -0.461488 0.151153 1.415073 0.569381 -0.916699 0.639154 -0.848495 0.659046 -1.201750 -1.184694 1.875945 2.003610 1.139001 -0.018279 0.505441 1.185510 -1.957352 -0.623832 -0.488126 0.795177 -0.432048 -2.395598 -0.863820 0.268538 -1.163697 -0.581453 -0.410526 0.816886 0.539120 0.646779 0.991695 0.142732 -0.352905 -0.616690 0.998860 -0.279112 -0.662154 0.116467 0.023724 0.121406 0.431437 -0.594803 0.565131 0.728151 -0.848647 0.552330 0.962521 0.383701 0.037521 1.833538 1.171794 -0.361204 0.736873 -0.401695 -0.416352 0.669205 -0.131882 0.673878 0.102149 0.190681 -0.028619 0.172824 0.941255 -0.556039 -1.219881 -0.942804 -0.401457 0.323869 0.920601 0.708392 -1.579871 -1.804129 0.127469 0.271956 1.637913 0.135856 1.649268 -0.288934 0.743052 -1.588880 0.266309 0.229344 -0.152626 0.709702 0.161081 -0.495019 -0.209070 -0.344373 -1.428444 -1.614256 -0.243074 -0.597408 -0.680456 -0.838238 0.996729 -0.496741 -0.436553 0.287919 0.145844 1.002760 0.118303 -0.126478 -1.129060 0.502933 1.346751 -0.285939 -0.833346 1.010254 0.312449 2.710129 -0.070359 0.473719 0.046580 0.356936 -0.074160 -0.965829 -0.227778 1.400201 1.149874 0.217715 -0.368669 -0.316763 0.376363 0.473601 -PE-benchmarks/rabin-karp-algorithm.cpp___GLOBAL__sub_I_rabin_karp_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/boolean-parenthesization-problem.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -11.850660 1.873726 50.330735 27.074313 -11.717692 -28.817063 -14.423711 -37.473658 22.946995 1.715882 29.568701 6.961491 6.306002 -5.757081 9.591408 -0.318769 -7.014833 -13.934840 5.486505 -6.917466 10.089653 36.290374 38.896141 -33.529326 -2.162581 -50.013502 20.364611 17.731572 29.799588 29.290790 -4.790705 -10.073226 0.237403 26.181908 -15.799431 1.350671 -6.471414 5.519023 -11.221188 5.202753 8.259590 30.240841 8.129718 -3.249991 32.264313 8.874630 34.222256 1.606599 -13.191237 -6.080117 -23.968482 49.332176 -34.812234 11.612979 1.173700 19.001877 -10.220891 -26.302026 -16.280952 -45.332998 3.497460 19.267861 -22.716096 4.645327 -30.646234 11.135786 -12.545715 -4.489014 11.239206 12.914064 31.212325 13.293070 7.357853 -10.813143 -23.835011 12.630539 -13.456853 22.334211 17.060801 -21.350144 -15.538954 13.193927 2.093312 -17.571076 7.461451 0.865036 -2.191385 -12.896102 17.169272 -2.615180 -12.580501 -6.243969 -18.215144 20.986340 -26.553877 21.765240 -5.301743 3.638410 -7.748352 3.421400 -4.916802 -30.564783 10.146373 21.506940 8.174966 -7.205678 -11.689186 3.440066 -15.143393 -33.778254 -2.585728 7.958860 3.884682 25.437053 -24.320756 14.751307 9.944323 6.561803 -5.353505 33.340358 7.427740 19.811197 24.532475 38.277813 -0.094032 -16.952667 -2.378792 9.561142 27.839995 31.957908 20.636833 -30.085599 -19.436951 -9.288433 16.667651 -40.054442 17.408199 25.618652 13.909178 19.810500 -36.632375 2.495452 -7.038855 38.465458 23.098812 13.205331 8.672067 -3.712552 -18.820122 34.477657 68.882463 -13.323421 19.610473 -9.015744 -18.308073 45.471441 -41.998920 23.469844 10.900211 12.393432 13.165402 -26.454374 -16.762130 29.061395 19.833681 24.568541 29.919112 3.528766 15.841885 -51.163641 -26.792600 -6.013612 14.217377 -11.039308 41.107206 -14.430189 -12.213326 -6.866783 27.396864 0.356440 -8.345931 -6.849130 -14.833423 13.373796 -46.772171 -34.364216 42.172669 50.636740 2.936182 5.314140 32.354662 42.830563 -10.139939 -7.589234 -11.198016 19.111990 -5.570959 1.019088 2.679127 -2.845551 -30.492797 -17.448915 3.790617 6.330052 7.543270 -6.333260 -30.314515 23.278029 -40.357870 -14.470706 4.003685 -31.777964 -14.565224 -4.133194 1.564929 2.366638 3.763966 -18.307173 2.183452 24.415139 -22.100301 -1.010496 17.663500 22.549208 17.813567 27.393880 17.857358 12.456071 28.517554 21.922248 -11.516576 58.888930 -0.104301 0.079485 7.790293 14.250986 -2.486359 14.594420 -6.490083 -13.622642 -17.805503 -31.885288 23.959976 2.504860 22.794271 -18.908722 -27.596932 -15.985275 -18.500460 36.430166 14.614823 -2.090721 56.448401 -3.772548 4.788805 -59.091697 -3.437493 21.248421 -1.509582 26.230324 20.412402 -14.488269 -42.446154 -17.309743 6.459729 13.209616 -16.060235 -29.742551 -14.045696 -16.999830 26.909243 -21.963077 14.686887 22.897306 3.939957 16.866281 1.324716 -3.175503 -11.951052 -6.198850 4.901535 18.726486 -35.061312 33.502198 -13.608703 61.075901 -29.254407 23.500232 -29.197359 7.119790 -6.351670 2.077606 2.284276 41.795298 24.143452 6.863624 -0.136432 -0.447372 -19.294166 12.480372 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.011716 0.308090 1.773838 -0.138585 -0.757535 -1.888130 -0.856315 -3.849221 1.392363 0.658426 1.837840 -0.295035 0.945971 -0.318063 0.094748 1.038137 0.549321 -1.223947 0.841829 -0.781304 -0.447701 2.293818 0.074167 1.003644 0.019214 -2.407196 0.646293 0.157920 1.402361 0.968802 0.549762 -0.557502 -0.440115 0.688687 0.242428 1.131725 0.859415 0.484017 -1.164665 0.544040 -0.687903 -0.341808 1.132566 -0.217337 1.923083 0.058176 0.887209 0.624837 -0.353308 -0.530953 -0.658856 1.694436 -1.237054 0.296847 0.262812 -0.873808 -0.337639 -0.549473 -0.631434 0.287674 -0.932790 -0.815277 -0.848924 0.622715 -1.046280 0.774453 -1.166579 -0.339506 -0.199392 0.178212 1.299102 0.824039 0.478401 1.187107 -2.389820 0.445778 0.169960 0.447012 0.740732 -0.693947 0.241798 0.112898 -1.004704 -1.369101 1.538304 1.908141 0.293118 -0.317185 -0.988253 0.480840 -0.690843 -0.475096 0.666706 0.934563 -1.072232 0.002806 -0.464386 -0.519142 -1.144980 -2.463617 0.267709 -0.885596 0.871448 -0.293134 0.374207 -0.405601 -0.461269 0.239961 -0.938027 -1.469958 0.461217 -0.311331 0.531510 2.171581 -0.927359 0.071798 -1.095387 -0.360239 -0.324067 0.809610 0.887595 0.607875 1.273931 1.648188 0.654302 -1.089473 -1.278489 0.728779 1.144512 0.728869 0.690546 -1.442444 -0.866510 0.474990 -0.476665 -2.125672 -0.973586 0.776134 1.050746 -0.535080 0.100508 -0.194676 -0.472916 1.375533 1.385546 -0.110548 0.228076 0.068515 -1.110108 1.372547 2.044494 -0.359492 1.216748 -1.083504 0.153811 0.971267 -1.440901 0.640280 0.538817 0.202206 -0.941321 -0.717128 -0.180702 0.906632 0.689016 0.769054 -0.346419 0.859366 -0.802012 -1.568034 -1.909710 0.084212 1.960735 -0.389366 1.048068 -1.250102 -1.015519 0.296073 1.456083 0.745603 -0.955900 0.869970 -1.381711 0.866420 -1.519800 -1.614573 2.344110 2.560127 1.392308 -0.049639 0.715978 1.676158 -2.506541 -0.863461 -0.515223 1.042566 -0.515065 -3.246083 -1.272041 0.170822 -1.415493 -0.802573 -0.481617 0.860273 0.643593 0.972967 1.164572 0.203577 -0.675476 -0.557382 1.402811 -0.454299 -0.931764 0.000686 0.139462 0.254705 0.737059 -0.854126 0.800620 1.107398 -1.155522 0.565139 1.182050 0.523925 -0.040206 2.215044 1.652311 -0.113996 1.456212 -0.285282 -0.559165 0.750945 -0.149085 0.653084 0.064607 -0.130088 -0.273662 0.347550 0.999443 -0.728461 -1.723402 -1.077497 -0.270582 0.213769 1.228598 0.969387 -2.175235 -1.885371 -0.092334 0.655960 1.532748 0.328129 1.998618 -0.534632 0.884502 -2.250967 0.245429 0.303107 -0.028167 1.138172 0.256730 -0.667222 -0.220651 -0.482701 -1.521886 -2.100954 -0.498077 -1.156829 -0.701461 -1.403820 1.599778 -0.745820 -0.436802 0.310735 0.357312 1.319414 0.019854 -0.197515 -1.486796 0.674433 1.669959 -0.371559 -1.097406 1.161316 0.158989 3.614984 -0.471887 0.391563 -0.332209 0.372134 -0.137875 -0.936091 -0.057116 1.822163 1.458462 0.114466 -0.710072 -0.561279 0.124525 0.534659 -PE-benchmarks/boolean-parenthesization-problem.cpp___GLOBAL__sub_I_boolean_parenthesization_problem.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/z-algorithm-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.093210 2.673925 8.385768 3.390124 -6.066728 -7.260027 -2.917775 -12.381936 4.985715 1.180989 4.334716 0.314450 1.181008 -2.468723 -0.488671 2.919991 1.406403 -1.431224 0.309254 -3.269918 -4.182929 5.279808 0.084700 -2.345941 2.089168 -9.357906 5.943455 2.214672 4.801973 3.156113 2.626760 -1.406486 -2.428034 4.936269 1.111235 2.932385 1.912163 1.255655 -4.677953 2.157698 0.692361 1.251726 4.556546 0.974686 6.684160 2.156873 3.863484 2.708030 -3.775505 0.444726 -3.946721 7.541492 -4.247053 3.464624 -0.044751 0.593868 -0.714644 -5.137783 -1.152523 -0.222597 -2.913935 -1.710340 -3.645705 0.592793 -5.436924 0.780839 -2.056033 -2.974127 0.791337 2.654086 5.253708 2.149535 0.054288 0.723848 -6.891021 0.875954 0.904950 3.865420 5.159501 -2.661641 1.155236 0.071465 -3.550781 -4.794792 4.484954 3.030841 1.714974 -1.042115 0.066483 -2.327066 -2.272438 -2.585006 1.840026 4.113482 -4.997002 0.274822 -4.439336 -1.446581 -4.475980 -6.699861 0.817048 -3.162370 3.564716 -0.164857 -1.161720 0.451441 1.721755 1.201387 -1.325564 -3.053288 0.556113 -1.640752 3.222369 8.191758 -0.221918 -2.509745 -1.247706 -2.208883 -2.080084 3.829038 2.262477 0.733478 7.540125 7.161607 3.878682 -3.310517 -3.684454 1.242089 1.844450 5.208062 3.959310 -6.413241 -3.282948 0.524085 0.758757 -8.670291 0.806985 0.311422 3.732480 -0.661622 -2.008694 -1.072015 -2.257180 4.640257 1.926365 0.770466 1.854678 -0.260581 -3.801408 5.662385 10.302941 -0.947169 2.629990 -4.662157 -0.157418 3.426483 -3.768361 2.126052 1.095579 -1.411017 -0.241604 -2.802153 -1.368903 4.608316 0.870614 -0.308654 2.740194 2.900210 -4.072641 -7.443809 -5.974527 1.048853 5.837018 -1.574565 7.710115 -5.417599 -2.623106 -2.189572 6.243397 0.818503 -0.665315 2.393373 -4.692435 3.716677 -3.510513 -6.432666 9.368431 8.884208 2.291265 -1.653818 4.324047 4.718894 -7.715249 -4.710819 -2.820319 0.775140 1.629067 -6.678651 -3.447792 1.023501 -5.853594 -2.546603 0.987501 2.431265 4.711670 0.965992 0.129616 1.256816 -4.413481 -5.092412 4.062524 -3.393777 -1.566670 1.649059 0.773505 0.495366 3.674079 -2.448090 -0.814424 1.993004 -2.582108 1.700370 3.362347 4.997873 -0.079602 6.869572 5.544726 0.666236 6.998839 2.676307 -2.896767 7.780490 -0.098384 2.515833 2.520207 0.433888 -0.959241 2.025366 3.138473 -3.489211 -3.407539 -5.754418 0.622901 -0.532807 3.351992 -1.531848 -3.721000 -7.108000 -2.484829 2.404092 2.931508 0.139881 8.573082 -0.555186 1.092375 -9.369220 -0.557036 4.125560 -0.149752 4.776821 2.670694 -4.386851 -4.366535 -2.306883 -4.282724 -3.930192 -2.213725 -1.509417 -4.061606 -2.423937 4.792731 -1.385647 1.112421 6.360124 -0.041530 2.856666 -4.411685 0.992311 -2.812675 -1.007740 5.470625 0.243034 -5.626283 5.206102 -0.198603 14.296548 -0.909231 2.689190 -2.891319 -1.146985 0.627839 -2.947236 -1.677614 6.882433 2.999161 2.584231 -0.055539 -0.246899 -1.694267 5.443034 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&) = 0.073324 0.123025 1.081847 0.263075 -0.746732 -1.389359 -0.467903 -2.340026 1.031141 0.511586 1.055521 0.116141 0.887286 -0.614595 -0.207261 0.366315 0.427099 -0.433893 0.289365 -0.582353 -0.566649 1.664428 -0.178134 0.259222 0.049522 -1.461538 1.123761 0.229194 0.877302 1.005386 0.449009 -0.086723 -0.436564 0.479914 0.058930 0.640706 0.093153 0.587985 -0.604286 0.093292 0.117511 -0.523702 0.885280 0.061783 1.144582 0.089581 0.404054 0.306577 -0.187445 -0.517585 -0.414748 0.413863 -0.803430 0.280791 -0.389457 -0.501100 0.052433 -0.102336 -0.100937 -0.003214 -0.240430 -0.670181 -0.750073 0.276506 -0.867507 0.371776 -0.724696 -0.570079 -0.337580 -0.339663 0.689818 0.377570 0.093077 0.211327 -1.834024 -0.023871 0.164371 0.119646 0.760567 0.108650 -0.135451 -0.381258 -0.940610 -0.907378 1.098443 1.095436 0.159967 0.242726 -0.687228 -0.121959 -0.325073 0.012707 0.785183 0.646788 -0.681907 -0.095319 -0.420917 -0.210450 -0.417295 -1.520740 0.468223 -0.514710 0.537049 -0.110180 -0.180773 -0.142030 0.103746 -0.023348 -0.541838 -0.845275 0.133130 -0.677110 0.462249 1.497046 -0.262306 -0.372146 -0.826449 -0.382042 0.071055 0.567140 0.541940 0.168552 1.119149 0.823884 0.559574 -1.019826 -0.840981 0.820495 0.481712 0.426111 0.218301 -0.863461 -0.522288 0.311197 -0.477836 -1.568939 -0.563167 0.250956 0.613896 -0.659591 0.054592 0.368088 -0.480546 0.473849 1.013145 0.018009 0.288749 0.219807 -0.829273 0.699079 1.410056 -0.045189 0.522839 -0.761819 -0.347411 1.011690 -0.600421 0.304558 0.134555 -0.170756 -0.654968 -0.351569 0.297161 0.730350 -0.206769 0.499741 -0.085179 0.608001 -0.692630 -0.980716 -1.301729 0.004920 1.658998 0.494638 1.174105 -1.094970 -0.128306 0.327192 0.930912 0.507914 -0.462509 0.612372 -0.772917 0.725858 -1.451908 -1.241537 1.562877 1.221897 0.883422 -0.041049 0.361181 0.787305 -1.038886 -0.556392 -0.490257 0.494107 0.145564 -1.668700 -0.488674 0.179910 -1.056928 -0.598709 -0.005975 0.495996 0.514989 0.100615 0.785272 -0.465715 -0.126239 -0.889607 1.044832 -0.358054 -0.303864 -0.063572 0.108991 -0.082005 0.433692 -0.291301 0.415690 0.292906 -0.250940 0.482910 0.558484 0.139815 -0.147756 1.306514 1.284521 -0.671991 0.363635 -0.206967 -0.207209 1.095556 -0.272868 0.428651 0.279236 0.421058 0.168878 0.275585 0.822144 -0.590486 -0.520249 -0.911948 -0.402533 0.476021 0.622644 0.037365 -0.862318 -1.508010 -0.020602 -0.080599 1.270268 0.128716 1.529702 -0.505872 0.529009 -1.350729 0.200864 0.449656 -0.127896 0.879036 0.234535 -0.490899 -0.061886 -0.449822 -0.934524 -0.940720 -0.340878 -0.534484 -0.632323 -0.501797 0.470588 -0.581332 -0.134714 0.419189 -0.123489 0.701893 -0.616869 0.157220 -0.908362 0.376232 0.654378 -0.101940 -0.702652 0.782084 0.095044 2.005586 -0.078824 0.536684 -0.135409 0.756250 -0.460225 -1.136584 -0.279605 1.232321 0.725163 0.167935 -0.129814 -0.128098 0.288555 0.573198 -PE-benchmarks/z-algorithm-linear-time.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*) = 0.073959 0.724529 2.646722 1.448448 -2.641156 -3.235486 -1.130492 -4.769730 1.952923 0.965271 2.145858 0.262306 1.095193 -1.237039 -0.337764 0.742947 0.976327 -0.517707 0.076140 -1.713756 -2.115826 2.465558 -0.029947 -0.369886 0.736430 -3.368736 2.935221 0.739058 1.367132 1.500717 1.080877 -0.096341 -1.295419 1.692255 0.340637 1.196007 0.333555 0.923171 -1.162530 0.709907 0.930275 -0.271484 2.002768 0.876408 2.560408 1.055328 0.920397 0.916716 -1.749968 -0.849334 -0.900116 1.270999 -1.740338 1.380877 -0.694159 -0.244197 0.564370 -1.185052 0.134016 -0.463315 -0.645428 -1.565010 -1.364142 0.372522 -1.947601 0.558360 -1.205603 -1.537856 -0.189806 0.250241 2.014507 0.582553 -0.347788 0.589926 -2.837885 -0.031899 0.491181 0.963465 2.301492 -0.480034 -0.336352 -0.669877 -2.163138 -2.213724 2.046404 1.138698 0.826611 0.441611 -0.725900 -0.999676 -0.347857 -0.656200 1.514306 1.624638 -1.742326 -0.506788 -0.758971 -0.682433 -1.534816 -3.016334 0.665005 -1.033764 1.223814 0.202022 -1.177541 -0.124718 -0.052367 0.115125 -1.032725 -1.240150 0.495172 -1.465588 1.376127 3.083344 -0.168165 -1.384193 -1.099587 -1.014799 0.030610 1.607400 1.345735 -0.013997 3.304629 2.382775 1.069641 -1.631497 -1.672680 0.686002 0.791629 1.478984 1.207043 -2.064349 -1.594257 0.600722 -0.658180 -3.075820 -0.433382 0.182755 1.935469 -0.645564 -0.465860 0.633799 -1.281686 1.148982 1.422444 0.493076 0.586176 -0.124054 -2.042921 1.898690 3.405658 -0.248643 1.039029 -1.424521 -0.533244 1.842023 -1.210041 0.399509 0.737559 -1.037067 -0.982289 -0.688611 -0.070246 1.829907 -0.229455 0.091642 0.755710 1.701749 -1.831717 -2.395774 -2.958351 0.473111 3.181322 0.629636 3.037319 -2.631460 -0.168020 -0.307459 2.452967 0.601649 -0.814796 0.977292 -1.341997 1.323019 -2.275305 -2.587917 4.024970 3.291282 1.522798 -0.576759 1.180931 1.852223 -2.275145 -1.740289 -1.146818 0.417777 0.721648 -2.596876 -1.310174 0.774529 -2.247944 -1.519828 0.283804 1.123801 1.556658 -0.574874 0.689707 -0.495544 -0.826790 -2.076471 1.513807 -0.947194 -0.415906 0.533046 0.189882 0.129850 1.161810 -0.398121 0.053285 0.154890 -0.772633 0.742169 1.164377 1.760975 0.333692 3.197313 2.567587 -0.904379 1.507554 0.369192 -0.936471 3.158875 -0.619557 1.206796 0.888438 0.990670 0.386506 0.519277 1.890535 -1.374267 -0.761790 -2.343447 -0.216435 0.572774 1.035224 -1.176468 -1.058820 -4.055429 -0.367361 0.030272 2.055286 -0.163864 3.535141 -0.597930 0.273566 -3.077117 0.014852 1.566172 -0.515810 1.752903 0.855334 -1.424691 -1.170736 -1.159173 -2.186855 -1.176816 -0.632855 -0.190691 -1.510288 -0.374626 0.969451 -0.902899 0.489076 1.890934 0.005610 1.079252 -1.592325 0.444500 -1.517512 0.181149 1.907616 -0.064947 -2.089418 2.096531 0.229449 4.835625 0.012669 1.100018 -0.643819 0.280919 -0.363737 -1.996708 -0.932216 2.545634 1.459559 0.860009 0.286803 0.357031 0.138605 2.333232 -PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = -2.317208 1.994516 15.090988 11.243579 -7.483723 -10.164152 -5.147652 -12.665945 7.611223 -1.078821 7.486761 2.312363 1.211495 -2.019958 0.702501 -2.819928 0.801430 -3.202568 0.160617 -3.447910 -0.650383 10.889887 6.770420 -14.026213 0.592062 -16.311265 9.676685 6.729047 6.666376 9.261063 -0.457295 -2.154967 -2.250263 8.518121 -4.627749 -2.705695 1.550405 0.854496 -5.394271 -0.269160 4.931852 8.872127 7.758825 -0.574719 8.137778 3.211829 7.460500 2.607479 -5.746090 -0.222212 -7.049085 11.729042 -7.618943 6.000538 0.513378 5.808454 1.044816 -10.250109 -3.823195 -10.838802 0.025931 4.225607 -4.894085 -0.510348 -8.854354 2.013417 -0.332154 -4.177711 5.411515 2.242762 8.899482 3.150459 2.392106 -5.195126 -8.326992 3.415124 -2.152067 8.206669 5.782085 -3.814796 -2.404243 2.713951 -3.263426 -5.107212 0.660041 0.961719 0.694418 -1.839814 4.749821 -3.749920 -0.971609 -2.906544 -3.580853 6.198989 -5.048829 4.826630 -4.653611 0.127492 -4.042557 -1.713952 -0.663572 -6.836631 4.071739 6.426272 -2.023230 0.098474 1.895122 1.626568 -3.201542 -8.140885 1.440840 -0.508850 2.170436 9.557034 -3.504440 -0.934317 1.880036 -0.974444 -2.367154 10.045447 -0.746293 4.156993 7.720912 12.837577 0.897413 -6.108748 -2.077659 2.041250 6.413287 9.290613 7.647871 -10.095267 -5.082865 -2.059876 3.179822 -13.130237 5.032566 3.719765 7.160932 3.224912 -11.362173 2.084346 -4.758105 12.020511 4.757307 4.968327 2.909888 -0.853468 -7.223184 11.145911 19.572019 -2.652201 5.786685 -6.447272 -4.816862 10.792207 -7.779058 6.685231 0.673857 0.930197 3.753805 -6.681135 -2.107321 8.777452 3.821546 3.949438 8.938808 1.396827 0.303958 -16.137828 -9.924477 0.062897 6.950554 -1.161547 16.655653 -7.619256 -5.470780 -4.142126 9.034657 -1.962343 -1.653594 0.740443 -5.095585 5.364081 -14.155161 -11.828850 14.878278 14.542985 -0.173345 0.908422 10.127686 7.585826 -2.131944 -4.741885 -3.892064 3.835587 2.520583 0.217778 0.904366 -0.436085 -8.380659 -5.709379 3.819177 2.703739 6.774114 -5.020169 -7.863825 3.381153 -12.081886 -8.584504 3.981541 -10.639666 -3.378027 2.749546 -0.064276 0.041927 3.590408 -2.070053 -2.660541 4.716812 -4.306977 0.181164 3.769078 7.728507 2.467868 7.000232 8.201527 2.975978 10.460473 8.424960 -4.556865 22.016003 -3.223985 1.518143 3.772222 4.535744 -0.222769 4.621203 1.315074 -4.518075 -2.347830 -10.928618 7.465742 -1.011508 7.137231 -12.898261 -7.148551 -8.236680 -5.767171 7.864723 4.217464 -1.584161 17.650459 -1.344823 0.070227 -19.570108 -1.853929 9.131790 1.432183 6.636515 6.059260 -6.324770 -15.264576 -3.238997 -2.272094 4.040633 -5.443953 -8.695921 -6.068363 -3.963015 6.509106 -4.552019 5.074018 13.366364 -2.018274 4.008217 -5.026557 -0.711934 -2.624340 -5.795934 1.169473 3.836904 -9.471130 11.345896 -3.702390 20.246075 -5.444473 6.750895 -8.082168 2.873556 -1.543495 -2.996006 -0.914144 12.740728 4.310848 2.395655 1.609031 0.002175 -5.789885 6.840860 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 2.147951 3.394958 6.744802 1.868986 -6.588852 -7.392616 -2.008407 -11.635968 4.357553 1.288410 2.942363 0.954675 1.708173 -3.184684 -0.976672 4.232991 2.448568 0.316652 -0.761098 -3.864770 -6.101618 3.132163 -1.345645 -0.554124 3.494509 -6.698850 4.735011 1.431818 4.197602 1.742663 3.330982 -0.566193 -3.113833 4.265413 2.566629 2.780747 1.525031 0.936214 -5.326987 2.600464 0.191100 -1.466792 4.379292 2.176250 5.700464 1.720978 2.674037 3.001359 -3.391042 0.410428 -3.004653 6.197745 -2.785374 3.403916 -0.439189 -0.158762 -0.864140 -3.568719 0.421612 2.014382 -3.062842 -3.906949 -3.135834 0.370732 -4.538049 0.043884 -2.546127 -3.944440 -0.789788 2.072709 3.966712 1.321746 -1.175898 1.200551 -6.529036 -0.523494 2.009293 3.274991 5.597103 -0.735230 1.682079 -1.518728 -4.100648 -4.665552 5.210731 2.292423 2.000151 0.080198 -1.746183 -2.944834 -1.893888 -2.456046 3.768314 3.062334 -5.933174 -1.062572 -4.243738 -2.197028 -4.760823 -8.302740 1.479945 -1.497642 3.125644 -2.709657 -1.589612 1.106345 1.349630 0.900768 -0.566754 -1.495925 0.466030 -1.959804 2.412767 8.205092 0.985914 -3.459187 -1.593335 -2.378499 -2.314695 2.625966 2.753922 -0.476910 7.575652 5.609141 3.639309 -2.395433 -3.393950 0.644496 0.322025 3.897502 3.702944 -5.208762 -3.208287 1.849506 -0.425248 -8.007778 0.100286 -0.339813 3.345949 -1.218875 0.027834 -1.761089 -1.979511 1.731317 0.753530 -0.428146 1.812695 -0.835743 -3.159443 4.029977 7.792024 -0.959784 2.099702 -3.723526 0.776653 2.204036 -2.399006 0.520470 0.239249 -3.037095 -1.051186 -0.899205 -1.210081 3.793398 -0.284709 -2.334743 1.415263 3.013852 -5.931822 -5.653744 -5.353361 1.080339 5.676142 -0.872163 5.530005 -4.998684 -1.266981 -2.593799 5.700261 0.621935 -0.345052 3.020189 -4.572107 3.381244 -0.722400 -5.016800 8.469619 7.395536 2.249475 -2.173243 2.631505 3.119342 -8.580929 -5.276001 -2.538925 -0.985041 2.165076 -7.965651 -4.874592 1.416084 -5.609433 -1.175746 0.876113 2.422890 4.572697 2.126675 2.869636 0.391030 -2.224713 -5.161010 3.641404 -1.351143 -0.394504 2.091563 0.929884 0.677275 3.698142 -1.737123 -1.415486 0.311717 -1.886391 1.751903 2.470620 4.907377 -0.297238 7.182314 4.707515 -0.197176 5.827391 1.294704 -3.202602 5.161081 -0.089180 3.468912 2.250441 0.440728 -1.257929 1.555667 4.022522 -3.089178 -2.966646 -4.383016 -1.720709 -0.484749 2.095189 0.162860 -2.723369 -6.966470 -1.503773 0.260231 2.234950 -0.498387 6.123743 -0.831495 1.009134 -6.966725 -0.095422 3.074760 -0.694253 4.453433 2.243695 -4.301044 -2.072837 -2.140803 -5.123526 -5.038255 -1.158339 1.181126 -3.314199 -0.691808 3.996895 -1.078274 0.301838 4.883043 -0.293916 2.998056 -4.743975 1.830223 -2.597348 0.069021 6.854410 -0.603757 -4.234149 3.850731 1.046756 11.936509 1.649817 1.936471 -1.196748 -2.949529 1.486847 -3.451952 -2.769875 5.187684 2.830697 2.730734 0.031598 0.115200 -0.042620 5.433839 -PE-benchmarks/z-algorithm-linear-time.cpp__std::remove_reference, std::allocator >&>::type&& std::move, std::allocator >&>(std::__cxx11::basic_string, std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/z-algorithm-linear-time.cpp___GLOBAL__sub_I_z_algorithm_linear_time.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -0.538832 1.108987 3.922004 3.123821 -2.991613 -3.937483 -1.793133 -4.046384 1.745507 -0.211346 2.529466 0.026469 0.762224 -0.799843 -0.153140 -1.031620 0.814603 -0.543840 -0.114190 -1.564736 -2.534248 2.887414 1.301167 -3.156937 0.715737 -3.822441 3.733684 2.134827 1.102283 2.757229 0.127164 -0.180281 -1.067043 2.500991 -1.034154 -0.335683 0.086822 0.743681 -1.098331 0.509828 2.087456 1.160241 3.186688 0.152153 1.829678 2.256286 1.192924 1.129368 -2.594698 -0.605371 -1.209881 1.778264 -2.150960 1.622813 -0.371248 1.111720 1.500778 -2.715731 -0.508713 -2.125287 -0.176804 -0.317571 -1.709524 0.136939 -2.843381 0.334227 -0.665683 -2.184492 1.498751 -0.099287 2.105802 0.603037 -0.501455 -0.969966 -1.990474 0.686469 0.713621 1.989949 1.988486 -0.687544 -0.323389 0.501203 -2.236912 -1.927674 0.765817 -0.108936 1.431114 0.162499 0.393692 -1.759721 0.631206 -0.401835 0.498526 1.841383 -0.646639 0.530840 -1.466462 -0.776608 -2.427243 -2.266786 0.393384 -1.386583 1.611311 1.761336 -2.209042 -0.233956 0.313215 0.348374 -0.836528 -2.598506 -0.052256 -1.646046 1.451898 3.316917 -0.606538 -1.255229 -0.608182 -1.238235 -0.064446 2.727594 0.438212 0.168993 3.028436 3.397662 0.372611 -2.110872 -1.344034 -0.291278 1.227399 2.117028 2.309519 -2.743788 -1.842248 -0.168204 -0.456068 -4.176563 0.446897 -0.041281 2.100387 0.154609 -2.761451 2.082267 -1.988905 2.140592 1.305406 1.573843 0.848382 -0.516286 -2.325118 2.947939 4.405258 -0.807105 1.708441 -1.932473 -2.671317 3.371866 -1.120776 1.081616 0.666303 -1.062479 0.006329 -1.236400 0.475752 2.527077 0.195744 0.622512 2.450122 0.620198 -0.605725 -3.721248 -3.368172 1.332680 2.983920 0.672931 5.024112 -3.116904 -0.754118 -0.727779 3.209324 -0.476477 -0.748390 0.280545 -1.095774 1.650476 -4.147637 -3.714791 4.296828 3.272788 0.396414 0.290421 2.137806 1.414041 -0.619562 -1.494417 -1.957097 1.162456 1.121228 -0.490235 -0.156878 0.209853 -2.363689 -0.831694 0.787080 1.314323 2.374991 -2.508596 -1.806015 -1.093415 -2.892377 -3.039874 1.226950 -2.665629 -0.129950 1.227556 -0.582609 -0.180208 1.309697 0.101475 -1.137376 -0.450322 -1.061880 0.368749 0.817290 2.489880 0.405143 3.275162 2.809127 -0.667404 1.968687 1.761971 -1.022280 6.062316 -1.498396 1.150405 1.135601 2.737381 0.476632 1.202380 2.070933 -1.277002 -0.560507 -3.194872 1.150664 0.624981 1.288825 -4.214934 -1.223213 -4.515279 -1.356781 1.091271 2.628068 -0.483375 4.915938 -0.106497 -0.055507 -4.656797 -0.424688 2.048912 0.044892 2.208248 1.375391 -2.204287 -3.596003 -1.119706 -2.093924 0.767854 -1.189232 -1.295518 -2.028191 0.046237 0.851196 -0.777185 1.199250 3.630288 -0.849102 0.384964 -1.065765 -0.010118 -0.829246 -1.904547 1.496386 0.289437 -2.252763 3.358080 -0.128628 5.549551 -0.050567 2.198396 -1.722174 0.614221 0.225859 -1.793619 -1.034386 3.426357 1.342056 0.548998 0.883546 0.778808 -0.581310 2.443124 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.391567 0.440542 0.904416 0.156804 -0.308450 -0.876734 -0.346886 -1.476779 0.517761 0.146116 0.551014 -0.243827 0.344956 0.080118 -0.120687 0.422079 0.156135 -0.129563 0.306830 -0.269123 -0.557385 1.151710 -0.054651 0.157464 0.101385 -1.131713 0.512534 0.221656 0.767875 0.520905 0.067776 -0.132353 0.029744 0.377458 -0.239858 0.065707 0.024919 0.299703 -0.598206 0.374469 -0.131596 -0.011890 0.498134 0.005243 0.377352 0.402667 0.331144 0.242943 -0.023421 -0.077570 -0.422598 0.682409 -0.298299 0.278858 -0.276368 -0.238858 -0.021138 -0.220056 -0.168706 0.286616 -0.298613 -0.074234 -0.417945 0.167429 -0.695368 0.180776 -0.491463 -0.431990 0.012024 0.256464 0.534812 0.338755 0.059964 -0.031508 -1.195972 0.266960 0.135779 0.337220 0.308709 -0.236751 0.160342 0.233841 -0.621417 -0.659929 0.658102 0.766256 0.244720 -0.135867 -0.220239 -0.341703 -0.253584 -0.053257 0.283311 0.552642 -0.263338 0.285265 -0.653522 -0.106495 -0.523346 -1.118759 -0.009583 -0.435241 0.394895 -0.165770 0.170756 0.016000 0.356045 0.206206 0.036920 -0.727937 0.021297 -0.169963 0.114265 1.089516 -0.016310 -0.192876 -0.240593 -0.212660 -0.380838 0.451465 0.312564 0.105273 0.743402 0.573202 0.260077 -0.400158 -0.434467 0.249468 0.162016 0.360609 0.463526 -0.698742 -0.430806 0.015236 -0.060617 -1.089097 -0.162764 0.250293 0.337050 -0.610009 0.022240 0.249496 -0.317015 0.413796 0.494097 -0.048317 0.289678 -0.111856 -0.328099 0.587244 1.220733 -0.219028 0.368682 -0.760856 -0.337061 0.660358 -0.315044 0.351324 0.004354 0.024560 -0.230720 -0.389504 0.195433 0.583384 -0.013292 0.140799 0.408200 0.140504 -0.415773 -0.636619 -0.730811 0.099982 0.660954 -0.192844 0.911214 -0.516589 -0.340180 0.057813 0.617094 0.184395 -0.080092 0.315283 -0.529903 0.331609 -0.839648 -0.854735 0.906546 0.853539 0.338866 -0.130899 0.387215 0.585610 -0.672185 -0.650200 -0.357511 0.394603 0.056586 -1.099789 -0.589943 0.062837 -0.611677 -0.050771 -0.061432 0.287467 0.461786 0.278983 0.196607 -0.380543 -0.688233 -0.577752 0.640633 -0.476142 -0.087401 0.164669 0.016823 -0.266384 0.395833 -0.288868 0.074603 0.321664 -0.318973 0.260932 0.330756 0.176380 -0.200290 0.851185 0.820296 -0.048043 0.611032 0.134563 -0.241737 0.899200 -0.201476 0.154919 0.053156 0.212729 -0.348063 0.325865 0.396936 -0.250445 -0.709618 -0.679309 0.105434 0.092472 0.131854 0.203434 -0.520221 -0.777990 -0.262076 0.139551 0.899251 0.265040 0.988540 -0.233044 0.364145 -1.045871 0.158645 0.097782 -0.017304 0.652263 0.237888 -0.396774 -0.192192 -0.204519 -0.524529 -0.719094 -0.318850 -0.811555 -0.462098 -0.363247 0.174712 -0.305277 0.040338 0.561471 0.033146 0.383702 -0.396318 -0.097826 -0.618256 0.124369 0.877889 -0.154390 -0.447646 0.315304 -0.046232 1.552460 -0.116495 0.436452 -0.285532 -0.065070 0.052453 -0.546557 -0.154651 0.832037 0.314138 0.110908 -0.046421 -0.130022 0.093871 0.325750 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.433516 0.679495 11.247600 6.926032 -5.611033 -7.720537 -4.122793 -10.446359 6.084137 0.144790 7.200485 1.767987 1.870767 -2.526385 0.941384 -1.421254 0.890539 -3.217534 -0.233441 -2.933491 -0.851538 8.107909 5.570681 -8.737833 1.044472 -11.876585 6.002244 4.421731 4.609912 6.785586 -0.252449 -1.333311 -2.090454 5.877627 -2.845468 -0.073501 1.489009 0.923261 -3.687644 -0.366828 3.773040 4.772626 5.835165 -0.514528 7.522943 1.656765 4.840273 1.647048 -5.092716 -1.351385 -4.345742 8.704444 -6.163229 4.154000 0.517491 3.975091 0.337443 -7.208462 -3.036677 -8.766321 -0.052557 1.816053 -3.682008 -0.048181 -5.700343 2.009629 -0.164849 -2.942011 3.619003 0.058276 6.663531 2.255395 1.369312 -1.978753 -5.848163 2.086811 -0.470313 5.063500 4.377398 -2.295195 -1.905066 1.063648 -2.376680 -4.106216 2.093651 1.079809 0.883950 -0.802076 1.859377 -1.666318 -0.296319 -2.074155 -1.618845 4.504675 -5.358186 2.409730 -1.726400 -0.927980 -3.338157 -2.061458 0.081632 -5.057636 3.047937 4.906011 -2.027263 -0.000778 0.019267 1.678826 -3.542313 -6.289228 1.059473 -0.754905 1.358140 7.349674 -3.612844 -0.605161 0.495026 -0.802652 -1.262212 6.959515 -0.133393 3.360421 6.497540 9.406285 1.234903 -4.883329 -1.837843 1.872612 6.007096 6.421511 4.894384 -7.341190 -3.849213 -0.298497 0.799116 -10.507376 1.608505 2.635473 6.048825 2.685871 -8.417038 1.910139 -3.145813 8.735763 4.200563 3.080181 1.697283 -0.323810 -6.266988 7.895712 13.917269 -2.339163 5.029671 -3.821705 -3.933016 7.891057 -6.417179 4.541934 1.397978 0.115944 2.015694 -4.948973 -1.568072 6.528430 3.062263 3.504086 3.790691 1.870085 -0.386445 -11.805073 -8.843419 -0.876834 5.608307 -0.131551 11.993871 -5.946915 -4.276707 -3.064015 8.112183 -1.512348 -2.343430 0.751806 -4.347487 4.170296 -10.361786 -9.042900 12.213144 12.321385 1.830036 1.619502 8.007419 5.798912 -2.897858 -2.797008 -2.864726 2.947876 2.564210 -1.758878 -0.175458 -0.311863 -6.751311 -4.676755 1.580522 2.173449 3.381811 -2.767675 -3.652781 3.171072 -7.773849 -4.939171 2.815738 -7.496640 -2.795433 1.303362 0.032398 0.484114 2.766135 -2.362675 -1.383317 2.931857 -4.151693 0.714633 3.157114 6.021004 2.512720 6.482054 7.056479 0.875052 7.428818 4.400906 -3.503293 14.123830 -2.941634 1.199792 2.303224 3.328691 0.554885 3.004073 1.892962 -3.532915 -1.582257 -7.851815 4.323360 0.026776 5.366103 -8.322426 -6.550974 -7.192735 -3.649056 5.430163 3.915204 -1.071189 13.428254 -1.361118 0.210684 -15.238685 -1.265311 6.235796 0.637975 4.906990 3.966706 -4.512987 -12.411757 -2.595330 -2.770936 1.547062 -3.648880 -5.617332 -4.221848 -3.985919 6.737649 -3.972675 3.324551 8.549062 -0.651225 4.113329 -2.322096 -0.515730 -2.944148 -2.836203 1.130783 2.522747 -6.593706 8.425776 -1.600615 15.683695 -3.860714 5.157895 -5.633758 2.997808 -1.305859 -2.611206 -0.846081 9.316796 5.144851 1.867515 0.663988 0.002734 -4.257839 5.165463 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp___GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_given_array.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/graph-coloring.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = -0.349264 0.051233 1.930663 0.511415 -0.780114 -2.236520 -0.752641 -2.971027 1.423866 0.587195 1.803073 0.348140 1.075890 -0.527504 0.326070 0.766087 0.418050 -0.850163 0.255646 -0.746646 -0.188339 2.284854 0.680660 -0.292770 0.054993 -2.127612 0.849818 0.742418 1.103698 1.395691 0.345124 -0.259185 -0.326057 0.909654 -0.407342 0.929022 0.235985 0.618315 -0.774651 0.086853 0.077266 0.084801 1.112679 0.054293 2.016668 0.223842 1.296782 0.374900 -0.476706 -0.748864 -1.002915 1.807306 -1.423692 0.560035 -0.501295 0.017605 -0.080619 -0.678618 -0.495862 -1.251489 -0.251308 -0.064185 -1.296461 0.159430 -1.061281 0.601255 -0.485706 -0.609629 -0.240571 -0.072883 1.412217 0.429098 0.075129 0.219324 -2.297219 0.019211 -0.157233 0.531171 1.019790 -0.428016 -0.672859 -0.256087 -0.766973 -1.211046 1.450764 1.020638 0.209819 0.237481 -0.724083 0.196167 -0.821902 -0.179628 0.398763 0.978959 -1.251387 0.269942 0.386667 -0.266943 -0.813819 -1.027803 0.494767 -0.966717 0.560474 0.175899 0.601419 -0.377944 -0.764463 0.104341 -1.327659 -1.399192 0.368618 -0.484015 -0.030738 1.522144 -0.953915 0.200096 -0.299759 -0.223937 -0.009572 1.293232 0.722366 0.551835 1.337889 1.561469 0.482754 -1.267331 -0.848818 0.759691 1.518065 1.066259 0.515910 -1.319188 -0.884489 0.346560 -0.572982 -2.270874 -0.340576 1.247991 1.116674 -0.052407 -0.896227 0.483606 -0.520164 1.361464 1.480348 0.374531 0.325563 0.143709 -1.388583 1.195057 2.740021 -0.445956 1.308426 -0.619104 -0.279403 1.695958 -1.642655 0.785815 0.664104 -0.138952 -0.483411 -0.650347 -0.286726 1.225560 0.790517 1.063796 0.118925 0.764733 -0.594529 -1.899064 -2.121639 -0.531372 1.927810 0.175806 1.942750 -1.294380 -0.766815 0.009729 1.447677 -0.046461 -0.891436 0.461324 -1.112959 0.999263 -2.372511 -1.679381 2.756292 2.449751 1.319894 0.234215 1.329413 1.604245 -1.265793 -0.604345 -0.348173 0.831823 0.095220 -1.772332 -0.383137 -0.021074 -1.757350 -1.042572 -0.333641 0.604327 -0.127255 0.502130 0.668406 0.239361 -0.836678 -0.582698 0.521497 -0.965199 -0.770560 -0.135518 0.163195 -0.046168 0.311921 -0.762558 0.537265 0.992443 -1.159229 0.442638 0.891708 0.590634 0.684219 2.022993 1.834749 -0.395776 1.502736 -0.024101 -0.536878 1.706590 -0.320637 0.465582 0.276007 0.749571 0.278524 0.401835 0.728052 -0.763461 -0.813682 -1.442574 0.146275 0.755577 1.253604 0.090982 -1.659717 -1.771189 -0.265102 0.745767 1.742628 -0.354781 2.469104 -0.580854 0.868714 -2.901125 0.285930 0.657946 -0.186133 0.749189 0.581262 -0.710141 -1.376563 -0.597395 -0.883292 -1.239941 -0.445995 -1.075448 -0.718147 -1.287477 1.060933 -1.488627 -0.002970 0.756464 -0.034297 1.213557 -0.410228 0.028837 -1.067142 0.432947 1.048866 0.190322 -1.319629 1.283340 -0.066938 3.594870 -0.667179 1.196174 -0.591677 1.103625 -0.571495 -0.911469 -0.208344 2.012018 1.526904 0.104010 -0.028495 -0.080697 -0.008078 0.787765 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -3.512395 3.010961 22.373489 11.051979 -12.927957 -18.486841 -9.319968 -28.630240 12.830563 2.093599 16.991074 1.730255 5.267143 -5.271302 2.481018 1.932848 4.056866 -6.817773 1.283945 -7.085312 -3.663875 17.632766 6.799512 -10.499934 1.628152 -21.618467 9.094231 9.397500 10.411358 9.228389 2.637892 -3.708265 -6.252632 10.824370 -4.476908 3.797074 5.004035 3.585884 -10.399859 -0.147932 3.381966 5.682271 12.276523 -2.641092 17.531438 0.940037 12.202182 4.779261 -10.900674 -3.466835 -8.711331 21.732556 -11.909415 7.288751 3.718410 2.716803 -0.380526 -12.736391 -5.856100 -10.815065 -2.901227 -0.138141 -9.188207 1.089450 -10.057951 4.516726 -1.735348 -5.935944 6.207304 1.206068 13.534040 3.186711 1.862686 1.054124 -15.231478 3.300793 0.348257 9.163337 9.332181 -3.380566 0.567863 1.022349 -5.828238 -10.077219 8.252901 6.611755 3.146385 -2.148482 -3.081616 0.365717 -2.056404 -5.252632 0.724241 8.748391 -13.231363 2.960768 -4.092977 -4.121696 -10.990031 -9.643773 1.996987 -9.831974 7.552709 5.301327 -2.756138 -1.469562 -3.232936 2.128030 -9.141719 -13.681061 1.855373 -3.386304 4.373017 18.058068 -8.852539 -0.989145 -1.796440 -3.062017 -3.988385 11.527708 4.398738 6.307367 13.346353 19.004613 4.706999 -11.361030 -8.269410 3.941096 12.857796 13.140773 8.590657 -14.877443 -8.141088 1.064510 -1.296402 -22.981540 -0.217754 6.249920 12.042787 4.605345 -11.167735 -0.076522 -6.043340 17.324897 8.016631 5.635182 2.574782 0.246275 -12.460622 14.473957 24.742484 -4.423967 12.010264 -5.573006 -4.565586 12.110203 -13.379579 8.737386 6.121749 -0.583688 0.047505 -8.838610 -5.220517 12.355361 6.971889 6.942767 3.318499 5.794008 -5.074214 -22.380964 -20.892937 0.817483 14.484868 -1.453671 19.940421 -12.953046 -11.935599 -2.631759 17.873843 -2.762545 -7.823312 4.359832 -11.078834 10.019296 -15.415122 -17.840067 25.093294 25.746362 5.601021 1.004104 16.352196 11.996114 -16.101339 -7.766289 -6.495185 7.199222 3.154077 -12.870051 -2.831571 0.824975 -14.582171 -8.042510 0.722201 5.983500 4.245588 0.366727 0.658498 6.606016 -12.555965 -7.141250 7.896504 -10.340602 -5.620603 1.518945 0.610722 1.802252 7.383810 -7.965206 -1.641710 6.345374 -11.172908 2.949271 7.509123 10.869419 4.750288 19.322006 14.972494 1.242239 20.186074 5.015992 -7.702964 22.420633 -4.757989 4.343312 3.441832 5.232535 -0.695439 5.050367 6.790805 -7.952365 -8.563029 -15.251933 3.156242 0.399364 12.472526 -9.256820 -15.722659 -17.176111 -6.017578 10.345575 8.991069 -2.529825 25.551927 -4.098245 3.131967 -30.517363 -1.058370 10.059166 -0.755812 10.602626 5.882338 -9.306563 -20.944755 -5.383535 -9.126451 -6.358154 -5.039350 -10.530000 -8.731541 -11.977451 16.381322 -8.710398 3.078290 13.744175 -0.456366 9.393677 -3.651669 -0.767130 -6.023106 -2.573837 8.171445 2.167735 -14.955163 17.555581 -1.377324 38.617264 -5.894060 9.321796 -9.044125 4.471320 -1.406758 -7.065697 -1.884470 19.272033 13.794837 4.192067 -2.856031 0.518441 -7.985102 9.954387 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/graph-coloring.cpp__main = 0.978969 1.825388 4.607928 0.617241 -5.353825 -7.343391 -2.379896 -9.290472 2.861546 0.256978 1.913199 -0.559484 -0.432910 -2.294861 0.199784 4.979459 1.629673 -1.034303 -0.289857 -3.047743 -3.230543 3.568310 -1.364335 0.665874 2.451510 -6.497391 3.796866 0.818164 3.126268 2.908272 3.842375 -2.001867 -2.533905 2.883573 3.776833 8.178290 2.000118 -0.366428 -4.620916 3.952421 -1.357687 0.084428 3.688492 0.455874 6.356332 3.410014 3.229775 3.610190 -4.044661 0.573702 -4.432816 6.871773 -2.970932 2.873676 -0.194733 0.299732 -1.140158 -3.671018 -1.574661 3.008405 -5.444871 -2.231547 -3.604885 0.631057 -5.178988 0.174062 -2.715374 -0.634838 -0.236061 2.022988 3.856932 1.242038 -1.113916 2.696007 -5.152071 -0.533699 0.620322 4.134818 3.796289 -3.912376 2.144777 -0.306970 -2.392007 -3.081517 3.255105 1.650510 2.141667 -0.848022 -1.123426 -2.259873 -3.916632 -2.269758 2.746361 1.356015 -3.702408 -1.335144 -4.106725 -1.136761 -4.023746 -6.562622 1.474484 -0.237068 2.578904 -2.368710 1.956835 -1.188475 1.872934 0.849939 -0.845216 -0.103583 1.114522 0.007521 1.793528 6.513677 0.979713 -1.773713 -2.317296 -2.872315 -2.266757 2.672634 2.660656 -0.161447 4.083053 5.766744 7.454895 -1.474076 -4.126479 -0.323269 1.387280 3.731542 2.946571 -3.082899 -2.205569 1.096939 -0.175995 -5.198533 -0.555892 0.274241 3.592588 1.286066 0.792509 -2.930129 -1.514984 3.509947 -1.375656 -0.884720 1.564566 -0.711137 -3.159453 4.715794 7.906931 -0.001646 1.539446 -4.399254 2.030498 1.001771 -1.688256 0.077086 2.099100 -2.664134 -1.434445 -0.218686 -0.878745 1.834749 1.764230 -1.611962 0.995954 3.240548 -4.871847 -4.426925 -3.169292 1.129297 4.081185 -2.639386 3.788967 -3.649192 -1.090675 -2.837867 4.336134 0.721148 -0.590432 1.804503 -4.791367 2.519861 -0.690379 -2.644732 8.499415 8.218327 3.272436 -1.386702 2.310978 5.790162 -8.939064 -2.746506 -2.327781 -0.222329 0.280431 -7.762361 -3.329924 0.821653 -4.584445 -2.101341 -0.055028 2.561209 3.094497 3.847773 0.912791 0.481997 -2.656838 -3.493780 2.456054 -1.853479 -0.651715 2.409284 0.082901 0.412464 2.850173 -2.439967 0.489300 2.318174 -2.128466 2.460530 2.207969 4.313728 -0.288872 3.937559 3.868263 1.297717 7.430469 1.533250 -3.366876 3.516391 2.135477 3.386425 1.215672 -1.399199 0.572523 0.466904 1.768420 -2.562450 -2.987084 -3.374218 -0.780484 0.653432 2.972343 1.756353 -3.907677 -6.602425 -0.933040 1.281605 2.481935 0.459270 4.301608 -0.378657 1.328308 -6.631389 0.227202 3.123849 0.577061 1.585084 0.768195 -2.833414 -1.761511 -0.486184 -4.703132 -5.422040 -1.560070 0.530143 -2.756282 -2.409212 4.856298 0.512539 -0.790173 4.967234 0.002904 2.492945 -2.676825 0.810428 -2.558054 -1.650452 5.217658 -0.172578 -3.767626 2.486510 1.781359 10.781031 0.654189 1.153979 -0.828373 -1.462030 1.638704 -3.423809 -1.215370 4.134207 2.278631 1.374425 1.337694 -0.349601 -0.049986 3.510914 -PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = -0.485601 -0.008910 2.341053 0.803955 -1.728138 -2.051420 -0.894892 -3.482611 1.320466 0.265740 1.893401 0.175449 0.618740 -1.318538 0.130350 0.312596 0.490602 -0.875199 0.236798 -0.882434 -0.026636 1.451636 0.317772 -0.845597 0.202356 -2.307468 0.979390 1.009922 1.142299 1.076358 0.261703 -0.661988 -1.152540 1.130104 0.044897 0.680577 1.274716 0.383638 -1.332799 0.078501 -0.112521 0.165062 1.307296 -1.001712 2.437454 -0.230029 1.063043 0.718066 -1.600028 -0.515144 -0.381968 1.874596 -1.419986 0.825773 0.707751 -0.322426 -0.580683 -1.060117 -0.748950 -1.305059 -0.309104 -0.679657 -0.526235 0.212161 -0.990504 0.529601 0.093900 -1.003583 0.748441 -0.176077 1.205651 0.672032 0.536082 0.985809 -1.496717 0.351350 0.673188 1.148820 0.863199 -0.552528 0.729173 -0.395784 -0.478913 -0.861688 0.591678 1.182615 0.635863 -0.110539 -0.727187 0.654468 0.358589 -0.542901 0.399370 0.680954 -1.350731 -0.478866 -0.879955 -0.369270 -1.145552 -1.811490 0.293552 -0.805500 1.073044 0.465004 -0.634972 0.155057 -0.345046 0.583264 -1.296256 -1.261563 0.230013 -0.598728 1.034794 2.154177 -0.967285 -0.163859 -0.786914 -0.374974 -0.269713 0.790516 0.086967 0.775380 1.341539 2.307653 0.833861 -1.727568 -1.482278 0.523150 1.519589 1.573246 0.867563 -1.619633 -0.690744 0.129605 -0.808927 -2.593705 -0.462449 -0.046539 1.465469 0.233704 -0.817637 -0.362104 -0.921131 2.379630 0.873684 0.334826 0.029266 0.304363 -1.639267 1.768976 2.068073 -0.338470 1.347463 -0.513996 0.043502 0.480439 -0.991743 0.787409 0.714372 -0.387077 -0.085233 -0.917707 -0.668125 1.144579 1.011999 1.058909 -0.565809 0.912870 -0.967442 -2.641572 -2.110249 0.065995 2.001449 -0.132823 1.882395 -1.693228 -1.785361 -0.307414 2.115254 -0.109714 -1.005222 0.603522 -1.518963 1.356003 -1.175840 -2.126662 2.812156 3.398088 1.126562 0.413544 1.696325 1.134694 -2.488292 -0.421397 -0.233315 0.416871 0.111266 -2.696837 -0.961400 0.412840 -1.603573 -1.194396 0.271561 0.817887 0.374272 0.717250 0.580356 1.311929 -0.706482 -0.748239 1.075263 -0.862209 -0.540922 0.246807 0.320424 0.962271 0.924353 -1.402641 -0.012333 0.711333 -1.210505 0.791111 0.831932 1.283363 0.565850 1.999658 1.581028 0.036419 2.318769 0.300406 -0.983957 1.827029 -0.274981 0.943743 0.739415 0.104805 -0.031868 0.396106 1.084977 -1.122999 -0.427741 -1.684560 -0.632477 0.170105 1.755386 -0.630470 -2.234643 -1.904291 -0.261546 1.045039 0.397344 -0.300627 2.557445 -0.358451 0.429092 -3.246866 -0.340147 0.864390 -0.021537 1.269884 0.542145 -0.978084 -2.755398 -0.521479 -1.379067 -1.490959 -0.732560 -0.671034 -0.710947 -1.160274 2.211688 -0.398630 -0.062843 1.127789 0.212128 1.435348 -0.408437 0.163034 -0.671403 -0.220974 0.697342 0.155956 -1.606539 1.824344 0.419992 4.524355 -0.241257 0.423886 -0.750953 0.535593 0.114417 -0.856600 -0.148614 2.112802 1.649444 0.792916 -0.712288 -0.164116 -0.946323 1.331099 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/graph-coloring.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = 0.193053 0.250853 0.731634 0.029911 -0.289027 -0.954053 -0.185716 -1.293251 0.511862 0.190294 0.557183 -0.009252 0.497479 -0.229582 -0.001666 0.423295 0.337664 -0.057289 0.097604 -0.352684 -0.152893 0.748031 -0.166383 0.127376 0.132409 -0.736850 0.229964 0.341106 0.547982 0.422535 0.232789 -0.091709 -0.210133 0.256878 -0.151640 0.220537 0.223925 0.193699 -0.647635 0.109365 -0.255226 -0.037736 0.482780 0.021551 0.594107 0.138260 0.296042 0.283726 -0.060140 -0.227735 -0.257642 0.634091 -0.202691 0.263397 -0.171890 -0.240181 -0.041278 -0.085697 0.001856 0.018973 -0.118457 -0.086289 -0.356834 0.071223 -0.430112 0.094156 -0.227200 -0.422102 -0.139029 -0.131335 0.358782 0.097007 -0.023893 0.076032 -1.042873 -0.018182 0.138076 0.228887 0.405091 -0.028529 0.090726 -0.196042 -0.408519 -0.470502 0.604079 0.647448 0.207386 0.256468 -0.566609 -0.154939 -0.201696 -0.085422 0.422900 0.250027 -0.394052 -0.008081 -0.202770 -0.153539 -0.374564 -0.805882 0.236349 -0.161885 0.246103 -0.311381 0.296470 0.008576 -0.083555 0.126051 -0.263805 -0.339040 0.195713 -0.252712 0.029619 0.880558 -0.175547 -0.193022 -0.355334 -0.172436 -0.193535 0.389774 0.228401 0.052524 0.409893 0.443659 0.301885 -0.492806 -0.413485 0.300195 0.322676 0.356497 0.238691 -0.454560 -0.287452 0.185409 -0.426898 -0.945277 -0.245712 0.204946 0.426205 -0.282025 -0.024220 0.096348 -0.322709 0.345909 0.383253 -0.003254 0.191767 0.017054 -0.434893 0.314670 0.766135 -0.169798 0.438487 -0.322688 -0.035770 0.188449 -0.221054 0.213282 0.072450 -0.280256 -0.217781 -0.067638 0.068680 0.431300 0.175704 0.206571 -0.091450 0.294765 -0.559041 -0.567451 -0.796403 -0.082289 0.672131 -0.021738 0.610496 -0.468854 -0.378433 -0.062751 0.582096 -0.087732 -0.239103 0.339854 -0.555569 0.382832 -0.567828 -0.590555 0.952832 0.918035 0.548799 -0.110937 0.325987 0.378969 -0.714813 -0.374454 -0.062019 0.125008 0.028329 -1.180827 -0.408181 0.066354 -0.623590 -0.193008 -0.059979 0.274344 0.031446 0.452893 0.644765 -0.193191 -0.228008 -0.366958 0.349082 -0.180317 -0.036802 0.081069 0.072005 -0.042474 0.283225 -0.405118 0.064777 0.399644 -0.374364 0.227205 0.185803 0.232326 0.071259 0.808573 0.585560 -0.088869 0.717545 -0.092970 -0.370836 0.572905 -0.142050 0.304769 0.047639 0.200074 -0.031801 0.175474 0.356233 -0.315066 -0.350962 -0.564800 -0.323454 0.287497 0.335225 0.341152 -0.608661 -0.708258 -0.034809 -0.052965 0.682078 -0.057062 0.774131 -0.297974 0.352334 -0.868346 0.161654 0.105771 -0.120711 0.322675 0.190716 -0.366488 -0.326244 -0.117659 -0.630290 -0.856717 -0.115937 -0.416530 -0.257652 -0.394359 0.399810 -0.409187 -0.091737 0.307387 -0.012607 0.478275 -0.339969 0.072670 -0.399523 0.196351 0.626634 -0.114527 -0.439232 0.230931 0.124810 1.347984 0.050717 0.386669 -0.127364 0.173779 -0.041419 -0.555989 -0.262761 0.705277 0.516738 0.123257 -0.065043 -0.064823 0.106120 0.347598 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = -1.306114 -0.373486 3.792529 1.322474 -2.690278 -3.891458 -1.716328 -6.440292 3.359415 1.330066 3.734157 0.726524 2.328169 -2.751710 0.063920 0.929346 1.848752 -1.875225 0.384979 -1.872513 -0.228637 4.433844 0.738968 -0.724980 0.484807 -4.504142 2.181934 0.600051 1.970639 2.806600 1.331774 -0.457302 -1.760568 1.590101 0.757331 2.834515 1.567518 1.058391 -1.957437 -0.301529 0.295629 -0.826151 2.526061 -0.317800 4.639708 -0.673697 1.751463 0.795520 -2.250866 -1.717442 -1.144727 2.619814 -2.918658 1.144124 0.435428 -0.424999 -0.077115 -1.430881 -0.895955 -2.203408 -0.819337 -1.800144 -1.998715 0.602600 -1.903566 1.387812 -0.985599 -0.874337 -0.372093 -1.121726 2.242296 1.123390 0.738415 1.512928 -3.953460 -0.037849 0.374615 0.917771 2.224961 0.135468 -0.478636 -1.517182 -1.770480 -2.355675 2.828787 2.096391 0.451365 0.622512 -1.921753 0.849670 -0.840684 -0.619083 1.390729 1.413654 -3.186340 -0.953765 0.261577 -0.997856 -1.123811 -3.203159 1.058709 -1.672238 1.089566 0.713677 -0.798414 -0.345942 -1.354619 0.391106 -2.752497 -1.929382 1.191137 -1.341369 0.493877 3.794620 -1.812002 -0.476619 -2.198574 -0.661195 0.472949 2.028412 0.811737 1.460524 2.792301 3.318079 1.827071 -2.884400 -2.102243 2.001788 3.014985 1.528925 0.949919 -2.541052 -1.639001 1.100952 -1.461111 -4.490069 -1.934645 1.140476 2.748136 0.546656 -1.431032 -0.069678 -1.080249 3.038331 2.391387 0.331364 0.186683 0.710818 -3.176308 2.447202 4.158132 -0.664169 2.295146 -1.121530 -0.162823 2.404961 -2.558217 1.021561 0.676737 -0.544091 -1.234353 -1.257349 -0.387544 2.187172 0.813794 1.656785 -1.568180 2.022901 -1.546913 -4.101549 -4.738345 -0.540817 4.384475 1.015739 3.444222 -3.118918 -1.569991 -0.230150 3.195839 0.462695 -2.121567 1.295823 -2.768453 2.202270 -3.888661 -3.812982 6.198656 5.257579 2.725224 0.675307 2.192231 2.555981 -4.034262 -0.908080 -1.082304 1.327210 0.407551 -4.530398 -1.141690 0.702731 -3.481123 -2.746755 -0.175817 1.408805 0.610195 0.565600 2.202218 0.975720 -0.430850 -1.355094 2.220571 -1.117282 -1.713844 -0.258922 0.390227 1.098756 1.498419 -1.392149 0.908596 1.171067 -1.842052 0.696650 1.625686 1.779533 0.976863 3.860550 4.205794 -0.957295 2.449163 -0.431181 -1.586044 2.931930 -0.740856 1.276637 0.558781 0.454421 1.131075 0.467893 2.298146 -1.779163 -1.185095 -2.694670 -0.900261 0.970260 2.901107 -1.131434 -3.945732 -4.016952 -0.019276 0.936614 2.522774 -0.424405 4.914359 -1.573198 0.976381 -5.705727 0.149988 2.356025 -0.151070 1.924199 0.788624 -1.543162 -3.088835 -1.226066 -2.809885 -2.281876 -1.050374 -0.958995 -1.536634 -2.347360 3.924902 -2.037518 -0.196997 1.690845 0.291848 3.077130 -0.248868 0.413781 -2.373054 0.717541 0.906638 0.269266 -2.325759 3.167682 0.652030 6.860212 -0.751939 1.132344 -0.885248 2.330133 -1.237048 -2.832615 -0.581371 3.651683 3.510511 0.568589 -0.428309 -0.409181 -0.585086 2.324648 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/graph-coloring.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.067164 0.179762 1.294961 0.271986 -0.920172 -1.447846 -0.518703 -2.186732 1.055829 0.382805 0.941779 0.080372 0.704240 -0.769994 -0.141610 0.664490 0.597683 -0.275521 0.120904 -0.689873 -0.436541 1.193595 0.056444 -0.121343 0.410737 -1.487752 1.017416 -0.018560 0.655963 1.053879 0.529355 -0.156792 -0.509056 0.640414 0.681999 1.173636 0.562003 0.367828 -0.630620 0.326832 -0.063700 -0.454174 0.697536 0.284387 1.430291 0.272288 0.328534 0.369727 -0.675762 -0.347230 -0.362395 0.665227 -1.030946 0.428935 -0.154811 0.040414 -0.081438 -0.525548 -0.102291 -0.413457 -0.424335 -0.784342 -0.860561 0.278108 -0.902765 0.343418 -0.558197 -0.392239 -0.512696 -0.106191 0.658843 0.425016 -0.005107 0.624292 -1.390328 -0.247998 0.159676 0.382241 0.941102 -0.320727 -0.191853 -0.587293 -0.839655 -0.947716 1.142271 0.581221 0.308234 0.258180 -0.424954 -0.015220 -0.501309 -0.095608 0.697085 0.648421 -0.897349 -0.401997 -0.145755 -0.280830 -0.368720 -1.505245 0.404465 -0.487652 0.363890 -0.150450 -0.229413 -0.083119 -0.231743 0.346282 -0.632236 -0.380956 0.386005 -0.437315 0.094235 1.234662 -0.114535 -0.375181 -0.750242 -0.459005 0.247534 0.740977 0.374230 0.231223 1.080249 1.017918 0.741566 -0.804634 -0.811275 0.490855 0.608432 0.499455 0.474650 -0.888992 -0.641704 0.380544 -0.457524 -1.489013 -0.474921 0.123980 0.703783 -0.057748 -0.283471 -0.142610 -0.458113 0.546422 0.622637 0.195012 0.080579 0.056018 -0.926554 0.661529 1.435196 -0.291813 0.612787 -0.542540 0.164235 0.603975 -0.666742 0.108217 -0.078603 -0.440540 -0.410969 -0.223787 -0.105289 0.757411 0.085759 0.230935 -0.242238 0.631043 -0.829231 -1.080512 -1.224593 -0.160926 1.634087 0.122962 0.969725 -1.068568 -0.247128 -0.257114 0.976899 0.271060 -0.346177 0.328313 -0.906778 0.703755 -1.038903 -1.183829 1.935921 1.368880 1.008634 0.015942 0.299150 0.853358 -1.383480 -0.452179 -0.380276 0.210876 -0.011269 -1.552803 -0.746055 0.225930 -1.232375 -0.650182 -0.015085 0.556616 0.365548 0.347086 0.704785 0.214175 -0.038092 -0.734867 0.610551 -0.306667 -0.451185 0.077600 0.093414 0.273738 0.458340 -0.362349 0.275853 0.431482 -0.448026 0.270844 0.615051 0.584663 0.197685 1.368811 1.337888 -0.264191 0.497138 -0.063156 -0.537362 0.775512 0.011584 0.645895 0.292551 0.092425 0.270698 0.139583 0.951589 -0.566259 -0.497024 -0.882749 -0.565318 0.390818 0.823607 0.171714 -1.028875 -1.223608 -0.018946 0.155732 1.043695 -0.084430 1.359658 -0.261053 0.539672 -1.431875 0.132490 0.859803 -0.193897 0.571484 0.329033 -0.588327 -0.721823 -0.426134 -0.979191 -1.026329 -0.416674 0.116501 -0.559156 -0.328010 0.858502 -0.474929 -0.123948 0.518173 0.216189 0.895960 -0.311486 0.323095 -0.771873 0.230808 0.739582 -0.083666 -0.760537 0.659228 0.469509 2.123911 0.014481 0.380135 -0.169755 0.305216 -0.211583 -0.842000 -0.379395 1.146735 0.980886 0.266430 0.080557 -0.126366 0.065739 0.852702 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/graph-coloring.cpp__std::allocator >::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.069018 -0.313090 2.366494 0.585827 -1.213151 -2.534454 -1.008294 -4.958251 2.804135 1.227334 2.224311 0.621792 1.918817 -1.822284 -0.462423 0.804712 0.890571 -1.336468 0.491451 -1.145703 -0.125219 4.210883 -0.115340 0.243725 -0.012591 -3.929474 1.821736 0.324469 2.265778 2.243899 0.921952 -0.202209 -0.798175 0.918456 0.025277 1.581187 0.417569 0.908936 -1.602132 -0.252501 0.216957 -0.472947 1.792336 -0.033086 2.946110 -0.702266 1.028814 0.413147 -0.129184 -1.192747 -0.961809 1.389100 -1.552838 0.602565 -0.490546 -0.757111 -0.253572 -0.443948 -0.465678 -0.272060 -0.482129 -0.801047 -1.445326 0.507456 -1.554852 0.936947 -1.169469 -0.624753 -0.690309 -1.126044 1.557120 0.915470 0.560799 0.120187 -4.071624 0.078599 -0.009748 0.197192 1.499831 0.556847 -0.559613 -0.937012 -1.559967 -1.729515 2.280444 2.739078 -0.257135 0.590771 -1.408396 -0.178674 -1.012022 -0.209665 1.348708 1.180924 -2.118364 -0.386097 -0.441929 -0.410465 -0.263737 -2.315534 0.902009 -1.164455 0.862418 -0.167213 0.068925 -0.093661 0.436657 -0.133931 -1.315173 -1.398227 0.602174 -0.940467 0.751190 3.346591 -0.793074 -0.602633 -1.891231 -0.438479 -0.192117 1.351065 0.705812 0.742042 2.285090 1.790873 1.311149 -2.141261 -1.478514 2.373205 1.487360 0.802342 0.284666 -1.857049 -0.897964 0.625150 -0.546781 -3.259906 -1.445009 0.720292 1.490016 -0.990761 0.025298 0.371224 -0.606420 1.680396 2.167204 -0.592359 0.579583 0.661351 -1.970150 1.671881 3.509483 0.040801 1.011149 -1.868575 -0.566701 2.175007 -1.770246 0.964405 0.043690 -0.026681 -1.212008 -0.922392 0.781953 1.479921 -0.574630 1.219244 -0.825761 1.395156 -1.003931 -2.356495 -3.197137 -0.548853 2.906903 1.102730 2.731902 -2.025775 -0.560858 0.240464 1.882989 1.146536 -0.937491 1.514399 -2.131198 1.496932 -3.190439 -2.646164 3.876736 3.510817 2.041182 0.150638 1.309638 1.836392 -2.162003 -0.892577 -0.676771 1.051486 0.731366 -3.575912 -0.602336 0.333741 -2.200152 -2.042517 -0.080704 0.789302 0.759881 0.471911 1.982107 -0.565966 -0.315021 -1.678076 2.423537 -0.831019 -0.852242 -0.390536 0.458409 -0.228421 1.148533 -0.889736 1.078685 1.043898 -0.445480 0.970953 1.215991 0.270794 -0.168341 1.867500 3.026377 -1.132755 1.450988 -0.463330 -0.508949 2.313124 -0.614404 0.596548 0.484523 0.173768 0.529099 0.590835 0.992453 -1.267035 -0.631955 -1.762018 -0.303629 0.763100 1.534844 -0.163216 -2.434877 -2.682700 -0.177821 -0.033868 2.097750 0.425184 3.495161 -1.570309 0.945360 -3.683619 0.389239 1.376286 0.122712 1.754960 0.503635 -0.941999 -0.740852 -0.832103 -1.762172 -1.820150 -0.875034 -1.726212 -1.314218 -1.804258 2.210622 -1.682252 -0.068554 1.262263 -0.092040 1.969795 -1.468100 0.344199 -2.245164 0.866215 0.404715 0.090892 -1.389116 1.492892 -0.155913 3.998317 -0.809323 1.124459 -0.453587 2.324900 -1.520089 -2.775793 -0.358131 2.590375 1.645756 0.169558 -0.450042 -0.752282 0.165213 1.207155 -PE-benchmarks/graph-coloring.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/graph-coloring.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/graph-coloring.cpp___GLOBAL__sub_I_graph_coloring.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = -0.485601 -0.008910 2.341053 0.803955 -1.728138 -2.051420 -0.894892 -3.482611 1.320466 0.265740 1.893401 0.175449 0.618740 -1.318538 0.130350 0.312596 0.490602 -0.875199 0.236798 -0.882434 -0.026636 1.451636 0.317772 -0.845597 0.202356 -2.307468 0.979390 1.009922 1.142299 1.076358 0.261703 -0.661988 -1.152540 1.130104 0.044897 0.680577 1.274716 0.383638 -1.332799 0.078501 -0.112521 0.165062 1.307296 -1.001712 2.437454 -0.230029 1.063043 0.718066 -1.600028 -0.515144 -0.381968 1.874596 -1.419986 0.825773 0.707751 -0.322426 -0.580683 -1.060117 -0.748950 -1.305059 -0.309104 -0.679657 -0.526235 0.212161 -0.990504 0.529601 0.093900 -1.003583 0.748441 -0.176077 1.205651 0.672032 0.536082 0.985809 -1.496717 0.351350 0.673188 1.148820 0.863199 -0.552528 0.729173 -0.395784 -0.478913 -0.861688 0.591678 1.182615 0.635863 -0.110539 -0.727187 0.654468 0.358589 -0.542901 0.399370 0.680954 -1.350731 -0.478866 -0.879955 -0.369270 -1.145552 -1.811490 0.293552 -0.805500 1.073044 0.465004 -0.634972 0.155057 -0.345046 0.583264 -1.296256 -1.261563 0.230013 -0.598728 1.034794 2.154177 -0.967285 -0.163859 -0.786914 -0.374974 -0.269713 0.790516 0.086967 0.775380 1.341539 2.307653 0.833861 -1.727568 -1.482278 0.523150 1.519589 1.573246 0.867563 -1.619633 -0.690744 0.129605 -0.808927 -2.593705 -0.462449 -0.046539 1.465469 0.233704 -0.817637 -0.362104 -0.921131 2.379630 0.873684 0.334826 0.029266 0.304363 -1.639267 1.768976 2.068073 -0.338470 1.347463 -0.513996 0.043502 0.480439 -0.991743 0.787409 0.714372 -0.387077 -0.085233 -0.917707 -0.668125 1.144579 1.011999 1.058909 -0.565809 0.912870 -0.967442 -2.641572 -2.110249 0.065995 2.001449 -0.132823 1.882395 -1.693228 -1.785361 -0.307414 2.115254 -0.109714 -1.005222 0.603522 -1.518963 1.356003 -1.175840 -2.126662 2.812156 3.398088 1.126562 0.413544 1.696325 1.134694 -2.488292 -0.421397 -0.233315 0.416871 0.111266 -2.696837 -0.961400 0.412840 -1.603573 -1.194396 0.271561 0.817887 0.374272 0.717250 0.580356 1.311929 -0.706482 -0.748239 1.075263 -0.862209 -0.540922 0.246807 0.320424 0.962271 0.924353 -1.402641 -0.012333 0.711333 -1.210505 0.791111 0.831932 1.283363 0.565850 1.999658 1.581028 0.036419 2.318769 0.300406 -0.983957 1.827029 -0.274981 0.943743 0.739415 0.104805 -0.031868 0.396106 1.084977 -1.122999 -0.427741 -1.684560 -0.632477 0.170105 1.755386 -0.630470 -2.234643 -1.904291 -0.261546 1.045039 0.397344 -0.300627 2.557445 -0.358451 0.429092 -3.246866 -0.340147 0.864390 -0.021537 1.269884 0.542145 -0.978084 -2.755398 -0.521479 -1.379067 -1.490959 -0.732560 -0.671034 -0.710947 -1.160274 2.211688 -0.398630 -0.062843 1.127789 0.212128 1.435348 -0.408437 0.163034 -0.671403 -0.220974 0.697342 0.155956 -1.606539 1.824344 0.419992 4.524355 -0.241257 0.423886 -0.750953 0.535593 0.114417 -0.856600 -0.148614 2.112802 1.649444 0.792916 -0.712288 -0.164116 -0.946323 1.331099 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = -0.229873 0.185893 1.850240 0.426943 -0.821680 -2.206010 -0.817105 -2.967519 1.335449 0.642092 1.702169 0.155936 1.058809 -0.443996 0.097115 0.583757 0.358509 -0.905300 0.371424 -0.772765 -0.728557 2.325375 0.489427 -0.094525 0.145057 -2.336863 1.432279 0.674672 0.972165 1.572200 0.315817 -0.135657 -0.265762 1.019796 -0.285434 0.873434 0.142588 0.732428 -0.453220 0.394341 0.369426 0.053168 1.270456 0.221796 1.759586 0.757762 0.838058 0.430931 -0.459053 -0.757795 -0.739328 1.099667 -1.395832 0.517486 -0.742784 0.000000 0.178410 -0.774011 -0.377467 -0.859281 -0.273686 -0.264706 -1.281285 0.295285 -1.246120 0.495902 -0.665173 -0.733983 -0.249831 -0.134185 1.287149 0.493225 -0.146026 0.137442 -2.211210 0.108061 0.099408 0.411990 1.056414 -0.547317 -0.794771 -0.079811 -1.152876 -1.380879 1.421470 1.155747 0.388949 0.235373 -0.560633 -0.187888 -0.697888 -0.055764 0.606908 1.233806 -0.827838 0.103618 0.150786 -0.349375 -0.971647 -1.342966 0.531485 -0.924582 0.708068 0.278114 0.146814 -0.459460 -0.417241 0.090007 -1.061283 -1.350581 0.235116 -0.847423 0.399394 1.637975 -0.586751 -0.081680 -0.651230 -0.506643 0.206486 1.325317 0.717911 0.179005 1.736188 1.481040 0.446550 -1.253969 -0.985421 0.655217 1.123530 0.852392 0.568036 -1.501727 -0.894828 0.272136 -0.606152 -2.201299 -0.432332 0.720047 0.911640 -0.618576 -0.706321 0.985711 -0.665923 1.007074 1.568482 0.313235 0.380639 0.097880 -1.325744 1.253767 2.697881 -0.343412 1.038333 -1.051202 -0.714119 1.922870 -1.356424 0.679652 0.623483 -0.260111 -0.747945 -0.609887 0.232461 1.234845 0.310471 0.957125 0.423530 0.699989 -0.460241 -1.495590 -2.052623 -0.183510 2.038020 0.400659 2.249264 -1.504513 -0.367552 0.042175 1.483513 0.323838 -0.688142 0.466527 -0.889409 0.923946 -2.478412 -1.753097 2.545028 2.088798 1.317899 0.173813 1.058168 1.390473 -0.906782 -0.671306 -0.563950 0.904128 0.173514 -1.578915 -0.364566 0.076082 -1.603477 -0.882548 -0.376065 0.651610 0.387462 0.012597 0.350889 -0.380847 -0.871865 -0.977827 0.658213 -0.983804 -0.631541 -0.007519 0.034167 -0.274387 0.399745 -0.433001 0.473771 0.592864 -0.852232 0.521247 0.966038 0.513746 0.360933 1.911481 1.873953 -0.722487 0.930578 0.011669 -0.190167 1.770211 -0.356813 0.501740 0.446581 0.942568 0.372243 0.458929 0.958557 -0.709758 -0.672943 -1.458505 0.327250 0.824759 0.914164 -0.193868 -1.246537 -2.156134 -0.318977 0.477370 2.092033 -0.102440 2.475343 -0.314503 0.818252 -2.502522 0.258057 0.548140 -0.120245 0.855988 0.533544 -0.806859 -0.942333 -0.633010 -1.085974 -1.147527 -0.474060 -0.892256 -0.911335 -0.833415 0.589529 -1.186524 0.065418 0.945200 -0.093505 0.821263 -0.534663 0.065998 -1.202999 0.230968 1.185645 -0.014739 -1.105186 1.147970 -0.051652 3.146407 -0.531829 1.271361 -0.457543 1.091499 -0.459020 -1.117552 -0.313899 1.915608 1.111335 0.063500 0.149273 -0.044372 0.289944 0.928969 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.247864 0.212955 1.050556 0.682041 -0.943410 -1.927791 -0.565202 -1.922879 0.709317 0.267022 1.229501 0.046245 0.810458 -0.435903 0.115100 0.359294 0.519667 -0.351763 0.207401 -0.651026 -1.071888 1.559764 0.366672 -0.216689 0.167105 -0.951961 1.206280 0.632049 0.427200 1.113973 0.284404 -0.040160 -0.227829 0.693069 -0.190617 0.563773 -0.185262 0.626955 -0.327699 0.274874 0.346142 -0.533850 1.167787 0.121511 0.975590 0.689524 0.822211 0.396201 -0.750893 -0.560140 -0.694556 0.612395 -1.097524 0.400393 -0.687630 -0.243719 0.622024 -0.321145 -0.204245 -0.718695 -0.278335 -0.619874 -1.037213 0.148644 -1.020251 0.343334 -0.636581 -0.845916 -0.132856 0.118521 0.850749 0.382739 -0.233881 0.173578 -1.452584 -0.004296 0.296285 0.398280 0.804446 -0.211964 -0.308099 -0.183546 -1.043120 -0.953526 1.128269 0.212586 0.626093 0.307566 -0.572756 -0.160891 -0.259568 0.110632 0.607257 0.652699 -0.280229 0.131691 0.150227 -0.292211 -0.945838 -1.352125 0.394062 -0.523434 0.501798 0.305099 -0.131920 -0.321079 -0.601338 0.047251 -0.890349 -1.232285 0.057457 -0.893958 0.095485 1.070725 -0.432664 -0.153077 -0.401071 -0.341065 0.277349 0.888730 0.674820 0.137525 1.133280 1.064992 0.218595 -0.915880 -0.710770 0.078679 0.787383 0.602005 0.515517 -0.763682 -0.843647 0.266066 -0.702052 -1.578131 -0.396421 0.721119 0.750914 -0.274007 -0.638097 0.957614 -0.600303 0.570618 1.045738 0.460564 0.276884 -0.003790 -0.954241 0.911548 1.528267 -0.347468 0.868190 -0.503131 -0.648569 1.549804 -0.681602 0.187220 0.503068 -0.492429 -0.623705 -0.274393 0.123115 0.851168 0.344166 0.421448 0.459882 0.516429 -0.548407 -1.123910 -1.393112 0.254816 1.777478 0.499616 1.620872 -1.232967 -0.155793 0.266291 0.842226 0.021870 -0.645328 0.203595 -0.529291 0.716225 -2.115903 -1.371069 1.918286 0.914381 0.860123 0.227169 0.517556 0.954106 -0.617037 -0.543374 -0.618012 0.654672 0.136715 -1.143936 -0.403849 0.140606 -1.260250 -0.417451 -0.137227 0.588697 0.324839 -0.319342 0.174352 -0.754723 -0.586988 -0.643640 0.376416 -0.740745 -0.324468 0.156202 -0.185849 0.017032 0.248659 0.003597 0.282781 -0.081299 -0.703756 0.202364 0.375486 0.617012 0.354629 1.805816 1.619552 -0.710925 0.483086 0.023217 -0.332678 1.402679 -0.385679 0.530736 0.237186 1.124275 0.432048 0.225840 1.226628 -0.480967 -0.568500 -1.127713 -0.045536 0.903177 0.618851 -0.533094 -0.583061 -1.975412 -0.123833 0.277193 1.741098 -0.324283 1.635016 -0.316785 0.438332 -1.627777 0.195006 0.274938 -0.143524 0.706980 0.354545 -0.629948 -0.482916 -0.548607 -0.950233 -0.542812 -0.311313 -0.325087 -0.621520 -0.217778 -0.036615 -0.833463 -0.029359 0.605784 -0.304027 0.522318 -0.152978 0.029915 -0.681412 0.112104 1.077175 -0.023020 -0.750414 1.108831 0.156513 2.410345 0.089359 0.784773 -0.355092 0.597655 -0.142575 -0.796588 -0.344811 1.330977 0.939932 -0.057365 0.412054 0.332095 0.433908 0.778969 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.949401 0.593110 6.284370 1.964041 -3.552556 -5.851466 -2.642927 -10.501739 4.934604 1.729599 5.365351 0.934808 2.852864 -2.296421 0.319151 1.489229 1.687403 -2.760930 0.933460 -2.415236 -0.618374 6.922127 1.071625 -0.834108 0.187202 -7.310302 2.888093 1.726475 4.004482 3.238190 1.575294 -1.078763 -2.234982 2.815802 -0.377123 2.508455 1.766716 1.551397 -3.395359 -0.218775 0.196217 0.327624 3.736022 -0.368889 6.320006 -0.617256 3.269224 1.461959 -1.978923 -1.821737 -2.296499 5.671578 -3.728488 1.936864 0.920685 -0.617188 -0.555482 -2.553478 -1.343796 -1.884052 -1.286637 -1.287704 -2.924248 0.839263 -3.073927 1.761937 -1.654437 -1.376527 0.083118 -0.676016 4.084507 1.217527 1.022353 1.107780 -6.775170 0.558938 -0.142904 1.728985 3.225109 -0.161507 -0.489149 -0.753091 -2.475233 -3.824564 3.725260 4.152673 0.193520 -0.013888 -2.415971 0.557224 -1.525098 -1.572184 1.382806 2.882540 -4.756967 0.214459 -0.778399 -1.255120 -2.618462 -4.486234 1.302686 -2.893535 2.230794 0.280048 0.067814 -1.020457 -0.999963 0.060294 -3.112850 -3.804179 1.331793 -1.303625 1.424592 6.180387 -2.646105 -0.261747 -2.046283 -1.110288 -0.791946 3.271744 2.010729 1.820273 4.265790 5.288231 2.179517 -3.881513 -3.090889 2.909320 3.899008 3.083083 1.718964 -4.637974 -2.291292 1.355154 -0.941495 -6.993622 -1.513803 2.499656 3.720140 0.130054 -1.631618 -0.390211 -1.546943 4.546474 3.530930 0.644733 0.817315 0.598735 -3.939641 3.982564 7.488128 -0.794721 3.388221 -2.185679 -0.552501 3.958889 -4.675837 2.576169 1.517867 0.135549 -1.628882 -2.276473 -0.798872 3.539463 1.365744 2.480010 -0.498266 2.461372 -2.308956 -6.235445 -6.887770 -0.442439 5.766024 0.395385 5.254784 -4.160242 -2.838271 0.047884 5.147587 0.681958 -2.798442 2.417129 -3.976272 3.261006 -5.043920 -5.240810 8.081093 8.271410 3.052404 -0.024500 3.982707 4.180106 -5.911573 -2.637604 -1.821660 2.372713 0.288890 -6.281659 -1.453813 0.469639 -4.914166 -3.161333 -0.314810 1.971766 1.567336 1.295941 2.572788 1.325017 -2.194583 -2.526662 3.484023 -1.909234 -2.293221 -0.202294 0.684256 0.381524 2.288598 -2.369907 0.857464 2.651050 -2.945758 1.412155 2.842632 2.004342 0.751825 6.082277 4.989877 -0.597650 5.094791 0.151101 -1.925715 5.519397 -1.187591 1.571115 0.880433 0.875819 0.202485 1.423644 2.288651 -2.669701 -2.964542 -4.224298 -0.147506 0.533762 4.068711 -1.063614 -5.866262 -5.658482 -0.936932 2.020237 3.507153 -0.251574 7.644270 -2.083964 1.839283 -8.877018 0.393788 2.868050 -0.357859 3.275475 1.382005 -2.483774 -3.777378 -1.725642 -3.506220 -3.880674 -1.428578 -3.218613 -2.451398 -4.196643 5.221059 -3.176423 0.002063 2.939077 0.019692 3.763605 -1.589239 0.113098 -3.374145 0.755680 2.674694 0.010339 -4.162795 4.675726 -0.167182 11.131348 -1.989887 2.496989 -1.675621 2.646826 -1.537282 -3.622273 -0.575034 5.959726 4.381546 0.961555 -1.413016 -0.622723 -1.212386 2.630389 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = -0.186348 0.004833 0.564275 0.172103 -0.129047 -0.681147 -0.246100 -0.774612 0.396098 0.164823 0.562657 -0.000796 0.426671 -0.255548 0.050434 0.076952 0.191589 -0.230463 0.104020 -0.217494 -0.055730 0.689313 0.172957 -0.162133 0.047031 -0.671643 0.350014 0.195692 0.195027 0.593138 0.069624 0.009679 -0.068671 0.259540 -0.174839 0.261934 0.189528 0.210093 -0.159447 0.007834 0.032969 0.118806 0.331332 0.032786 0.541733 0.289762 0.134670 0.123654 -0.172034 -0.297340 -0.143381 0.276775 -0.400330 0.160827 -0.219925 -0.010044 0.143172 -0.197441 -0.119232 -0.567725 0.018543 -0.012239 -0.310797 0.063021 -0.351503 0.200297 -0.072911 -0.242208 -0.062212 -0.109678 0.371701 0.180891 0.065468 0.071217 -0.559480 0.061829 0.043866 0.138018 0.312905 -0.168083 -0.224851 -0.103048 -0.271921 -0.380595 0.455922 0.266486 0.179673 0.247075 -0.153962 -0.037846 -0.150143 -0.046007 0.195050 0.269855 -0.092061 -0.010099 0.195185 -0.055917 -0.138371 -0.342061 0.145280 -0.250079 0.117100 0.243644 0.132646 -0.068750 -0.204832 0.155664 -0.417096 -0.368008 0.257165 -0.254746 -0.054569 0.452265 -0.260655 -0.004861 -0.181279 -0.105029 0.111318 0.504271 0.101036 0.168740 0.303192 0.445875 0.080809 -0.394578 -0.243451 0.239460 0.475730 0.226860 0.188336 -0.494792 -0.288133 0.110082 -0.348853 -0.638015 -0.230505 0.216678 0.370092 -0.116971 -0.452871 0.474996 -0.220047 0.338190 0.447637 0.102959 0.071746 0.017801 -0.489398 0.385737 0.709399 -0.182788 0.390298 -0.181113 -0.224191 0.435676 -0.311335 0.155384 0.130833 -0.164249 -0.112105 -0.149582 0.105906 0.370979 0.249823 0.380299 -0.024429 0.241161 -0.206219 -0.551491 -0.638313 -0.118853 0.615826 0.045859 0.729969 -0.412783 -0.233543 -0.060681 0.541995 -0.084753 -0.215221 0.060470 -0.289762 0.278453 -0.841644 -0.577708 0.904764 0.655480 0.501260 0.099428 0.309164 0.430733 -0.175388 -0.084702 -0.072290 0.205803 0.050558 -0.510901 -0.170276 -0.004508 -0.492398 -0.374566 -0.079780 0.203305 -0.032967 0.070234 0.095369 -0.099284 -0.226985 -0.206090 0.101722 -0.329150 -0.151221 0.010077 0.015891 -0.001002 0.097392 -0.214602 0.147539 0.277223 -0.300451 0.090959 0.221152 0.235631 0.236310 0.586031 0.595535 -0.192544 0.277968 0.001561 -0.183268 0.615603 -0.118608 0.162421 0.064024 0.327788 0.231562 0.075120 0.290757 -0.207711 -0.152911 -0.520458 -0.008318 0.358396 0.299795 -0.129446 -0.474303 -0.603201 -0.037771 0.097713 0.656874 -0.093758 0.777039 -0.153410 0.176453 -0.774260 0.087917 0.238947 -0.082756 0.153885 0.203063 -0.209308 -0.640759 -0.165071 -0.389632 -0.395462 -0.237495 -0.355967 -0.178082 -0.283287 0.284566 -0.379545 0.032725 0.353357 0.085816 0.296644 -0.057365 0.008442 -0.401098 0.081282 0.151138 -0.006551 -0.344095 0.333914 0.054180 0.935690 -0.157090 0.358025 -0.210354 0.417993 -0.193204 -0.321210 -0.095007 0.587625 0.437995 -0.020223 0.155871 0.032718 0.051203 0.318590 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = -3.100734 3.155784 22.734632 11.192316 -13.996767 -18.824025 -9.781574 -28.834260 12.544785 1.599189 15.542376 0.840008 2.768567 -6.001293 1.868405 2.695989 2.557753 -6.883563 0.675744 -7.139832 -4.495502 16.438099 5.975975 -10.925335 2.387273 -23.898891 11.671914 8.742374 10.444031 10.293858 3.500855 -4.691588 -6.309076 12.019301 -1.993774 7.829506 5.572520 2.801915 -9.879210 1.935838 3.695159 7.260190 12.184907 -2.259934 19.008680 3.724154 11.780515 5.473717 -12.635624 -1.908870 -9.764011 22.192945 -12.942965 8.118388 3.232476 4.198574 -1.081333 -14.767629 -6.419031 -9.605600 -5.080884 -0.008451 -9.632214 1.029299 -12.081467 3.802527 -1.873439 -5.085137 6.677541 2.498336 14.268849 4.000674 1.288244 1.891907 -14.042138 3.484302 0.615196 10.655482 10.201032 -6.846400 1.444453 1.630933 -5.478394 -10.012458 7.649483 5.580702 4.034020 -2.869010 -0.388290 -1.500272 -3.366287 -5.898565 0.857045 9.211577 -12.360733 1.910311 -6.631004 -3.527387 -11.022634 -10.191963 1.833666 -9.539617 8.269302 5.658849 -2.678729 -1.598669 -0.209073 2.768670 -7.925794 -11.708697 1.760726 -2.811434 6.407020 18.318295 -6.797181 -1.973851 -1.906119 -4.460642 -4.230181 11.843021 4.321086 5.389066 14.380093 20.372095 8.730538 -10.872062 -9.272598 2.903749 11.632962 14.468279 9.187509 -15.479628 -7.860427 0.156955 0.274943 -22.727088 1.018359 3.971791 12.045977 5.321290 -10.959922 -0.957228 -6.119284 17.986488 5.862802 4.982321 3.023433 0.027919 -12.727588 16.129253 26.862653 -3.553342 10.536936 -7.870800 -3.848758 11.131154 -12.740546 8.146574 6.601459 -1.581513 1.123336 -9.028852 -4.958437 12.257066 6.666132 5.686227 4.765549 6.494117 -5.748203 -22.664227 -18.934849 1.559005 14.136777 -3.218780 20.811465 -13.409675 -11.011928 -4.400464 18.659701 -1.968329 -5.966709 3.739713 -11.593237 10.136011 -13.957770 -17.580628 26.084146 27.316975 5.974570 0.362131 16.202460 13.905400 -16.956828 -7.258781 -7.041954 5.844623 3.597197 -12.702017 -3.399687 0.833674 -14.429618 -8.865198 1.412996 6.057810 5.859434 0.579956 -2.427720 7.079577 -13.276999 -8.801479 7.854583 -11.600748 -5.104841 2.596746 0.709258 1.736139 8.011774 -8.444672 -1.797277 6.805686 -10.150573 4.165847 8.121332 12.388832 4.130304 17.410315 14.628871 2.091207 21.432701 7.025720 -7.674233 23.103593 -2.696744 5.030753 4.964218 3.793151 0.053210 5.178520 5.910700 -8.622281 -7.569181 -15.775671 3.935673 0.187519 12.363854 -9.136530 -14.858550 -18.095415 -6.787106 10.784499 7.733511 -1.467671 25.565674 -2.320749 2.624947 -30.357274 -1.933909 11.819083 -0.074680 10.392020 6.068532 -9.787022 -21.740424 -5.286623 -9.101032 -6.465273 -6.096651 -8.825891 -9.374595 -11.423406 16.927375 -6.143012 3.729751 15.934552 0.240570 8.159223 -5.400631 -0.042636 -6.139699 -4.884453 8.152287 2.599895 -15.703231 16.921585 -0.763072 39.018446 -6.224401 8.980520 -9.640201 3.437359 -0.370785 -6.855787 -1.736231 19.319532 12.135349 5.049142 -1.486153 0.521941 -8.651320 11.423614 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = -0.186348 0.004833 0.564275 0.172103 -0.129047 -0.681147 -0.246100 -0.774612 0.396098 0.164823 0.562657 -0.000796 0.426671 -0.255548 0.050434 0.076952 0.191589 -0.230463 0.104020 -0.217494 -0.055730 0.689313 0.172957 -0.162133 0.047031 -0.671643 0.350014 0.195692 0.195027 0.593138 0.069624 0.009679 -0.068671 0.259540 -0.174839 0.261934 0.189528 0.210093 -0.159447 0.007834 0.032969 0.118806 0.331332 0.032786 0.541733 0.289762 0.134670 0.123654 -0.172034 -0.297340 -0.143381 0.276775 -0.400330 0.160827 -0.219925 -0.010044 0.143172 -0.197441 -0.119232 -0.567725 0.018543 -0.012239 -0.310797 0.063021 -0.351503 0.200297 -0.072911 -0.242208 -0.062212 -0.109678 0.371701 0.180891 0.065468 0.071217 -0.559480 0.061829 0.043866 0.138018 0.312905 -0.168083 -0.224851 -0.103048 -0.271921 -0.380595 0.455922 0.266486 0.179673 0.247075 -0.153962 -0.037846 -0.150143 -0.046007 0.195050 0.269855 -0.092061 -0.010099 0.195185 -0.055917 -0.138371 -0.342061 0.145280 -0.250079 0.117100 0.243644 0.132646 -0.068750 -0.204832 0.155664 -0.417096 -0.368008 0.257165 -0.254746 -0.054569 0.452265 -0.260655 -0.004861 -0.181279 -0.105029 0.111318 0.504271 0.101036 0.168740 0.303192 0.445875 0.080809 -0.394578 -0.243451 0.239460 0.475730 0.226860 0.188336 -0.494792 -0.288133 0.110082 -0.348853 -0.638015 -0.230505 0.216678 0.370092 -0.116971 -0.452871 0.474996 -0.220047 0.338190 0.447637 0.102959 0.071746 0.017801 -0.489398 0.385737 0.709399 -0.182788 0.390298 -0.181113 -0.224191 0.435676 -0.311335 0.155384 0.130833 -0.164249 -0.112105 -0.149582 0.105906 0.370979 0.249823 0.380299 -0.024429 0.241161 -0.206219 -0.551491 -0.638313 -0.118853 0.615826 0.045859 0.729969 -0.412783 -0.233543 -0.060681 0.541995 -0.084753 -0.215221 0.060470 -0.289762 0.278453 -0.841644 -0.577708 0.904764 0.655480 0.501260 0.099428 0.309164 0.430733 -0.175388 -0.084702 -0.072290 0.205803 0.050558 -0.510901 -0.170276 -0.004508 -0.492398 -0.374566 -0.079780 0.203305 -0.032967 0.070234 0.095369 -0.099284 -0.226985 -0.206090 0.101722 -0.329150 -0.151221 0.010077 0.015891 -0.001002 0.097392 -0.214602 0.147539 0.277223 -0.300451 0.090959 0.221152 0.235631 0.236310 0.586031 0.595535 -0.192544 0.277968 0.001561 -0.183268 0.615603 -0.118608 0.162421 0.064024 0.327788 0.231562 0.075120 0.290757 -0.207711 -0.152911 -0.520458 -0.008318 0.358396 0.299795 -0.129446 -0.474303 -0.603201 -0.037771 0.097713 0.656874 -0.093758 0.777039 -0.153410 0.176453 -0.774260 0.087917 0.238947 -0.082756 0.153885 0.203063 -0.209308 -0.640759 -0.165071 -0.389632 -0.395462 -0.237495 -0.355967 -0.178082 -0.283287 0.284566 -0.379545 0.032725 0.353357 0.085816 0.296644 -0.057365 0.008442 -0.401098 0.081282 0.151138 -0.006551 -0.344095 0.333914 0.054180 0.935690 -0.157090 0.358025 -0.210354 0.417993 -0.193204 -0.321210 -0.095007 0.587625 0.437995 -0.020223 0.155871 0.032718 0.051203 0.318590 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 0.408944 0.850290 3.506461 0.617695 -4.036009 -6.179029 -2.293553 -7.577964 2.446996 0.256099 1.950424 -0.606105 -0.335019 -1.656841 0.405544 4.033965 1.288375 -1.484969 0.091880 -2.577867 -2.109759 3.989002 -0.618442 0.583023 1.580126 -6.046551 3.214590 0.637585 2.471240 3.043566 2.958557 -1.659005 -1.774353 2.208530 2.797013 7.157255 1.599149 -0.409618 -3.498233 3.419009 -0.963314 0.561705 3.062099 0.135245 5.512288 3.006168 2.822396 2.946111 -3.254554 0.040570 -3.852247 5.468974 -2.784103 2.147774 -0.536779 0.318638 -0.738726 -3.081268 -1.836010 2.031092 -4.526676 -1.444800 -3.149683 0.740028 -4.355347 0.752157 -2.458443 -0.034803 -0.095477 1.758642 3.547968 1.245618 -0.785473 2.327626 -4.394664 -0.278391 0.007850 3.453008 2.825051 -3.939439 1.225001 0.038965 -1.993739 -2.476356 2.570341 1.572357 1.570846 -0.783491 -0.625591 -1.669311 -3.522460 -1.766290 2.031891 1.070237 -2.621477 -1.080597 -2.759031 -0.703865 -3.043107 -4.891315 1.153975 -0.302950 2.007304 -1.382809 2.096966 -1.318835 1.461226 0.634202 -1.297457 -0.487364 1.068697 0.287422 1.346373 5.328320 0.488707 -1.050564 -2.089589 -2.233416 -1.773075 2.691679 2.255749 0.327441 3.226884 5.130927 5.752405 -1.297840 -3.577176 -0.087647 1.792075 2.995689 2.522431 -2.527053 -2.105344 0.676396 -0.132871 -3.842204 -0.791843 0.646180 3.314961 1.072294 0.489979 -1.852238 -1.248380 3.564028 -0.658275 -0.796597 1.091325 -0.728366 -3.162032 4.550315 7.112692 0.069526 1.470420 -4.055273 1.535052 1.492477 -1.790353 0.044008 2.152891 -1.916653 -1.629975 -0.246292 -0.497084 1.329460 1.704703 -0.688470 0.931161 2.940738 -3.412881 -3.681479 -2.739112 0.772812 3.430914 -2.162069 3.421035 -3.010722 -0.911101 -2.197905 3.411951 0.953659 -0.779289 1.368442 -4.002777 1.908089 -1.686611 -2.282981 7.465351 7.190538 3.221924 -0.712595 2.115982 5.711044 -6.825171 -1.746044 -1.700042 0.522880 0.109753 -6.242165 -2.366983 0.599430 -3.653216 -2.580538 -0.313147 2.331185 2.158054 2.942964 0.306799 0.208831 -2.555868 -2.672811 2.066043 -1.977354 -0.764035 1.936036 -0.156302 0.118865 2.047636 -1.971470 1.201366 2.320021 -1.747976 2.209637 2.060658 3.376266 0.090606 2.763214 3.675433 1.008484 6.204263 1.261487 -2.579663 3.095912 1.840872 2.794974 0.829748 -1.292609 0.772439 0.122175 1.116384 -1.945082 -2.418224 -2.836562 0.065209 0.906971 2.791206 1.304286 -3.541575 -5.718993 -0.742218 1.439115 2.683826 0.528460 3.819344 -0.593127 1.091372 -5.833937 0.314958 2.662966 0.703556 1.028249 0.546087 -1.911081 -1.735497 -0.283635 -3.748586 -4.211864 -1.655822 -0.452737 -2.417223 -2.378853 4.054299 0.088208 -0.682653 4.253585 0.223465 2.142093 -1.809187 0.226899 -2.552124 -1.319774 3.632664 0.044717 -3.161581 2.110275 1.239153 8.832943 0.005690 1.064993 -0.767434 -0.385424 0.848012 -3.009862 -0.561358 3.550987 2.005192 0.575246 1.394485 -0.478553 0.240414 2.526642 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.193053 0.250853 0.731634 0.029911 -0.289027 -0.954053 -0.185716 -1.293251 0.511862 0.190294 0.557183 -0.009252 0.497479 -0.229582 -0.001666 0.423295 0.337664 -0.057289 0.097604 -0.352684 -0.152893 0.748031 -0.166383 0.127376 0.132409 -0.736850 0.229964 0.341106 0.547982 0.422535 0.232789 -0.091709 -0.210133 0.256878 -0.151640 0.220537 0.223925 0.193699 -0.647635 0.109365 -0.255226 -0.037736 0.482780 0.021551 0.594107 0.138260 0.296042 0.283726 -0.060140 -0.227735 -0.257642 0.634091 -0.202691 0.263397 -0.171890 -0.240181 -0.041278 -0.085697 0.001856 0.018973 -0.118457 -0.086289 -0.356834 0.071223 -0.430112 0.094156 -0.227200 -0.422102 -0.139029 -0.131335 0.358782 0.097007 -0.023893 0.076032 -1.042873 -0.018182 0.138076 0.228887 0.405091 -0.028529 0.090726 -0.196042 -0.408519 -0.470502 0.604079 0.647448 0.207386 0.256468 -0.566609 -0.154939 -0.201696 -0.085422 0.422900 0.250027 -0.394052 -0.008081 -0.202770 -0.153539 -0.374564 -0.805882 0.236349 -0.161885 0.246103 -0.311381 0.296470 0.008576 -0.083555 0.126051 -0.263805 -0.339040 0.195713 -0.252712 0.029619 0.880558 -0.175547 -0.193022 -0.355334 -0.172436 -0.193535 0.389774 0.228401 0.052524 0.409893 0.443659 0.301885 -0.492806 -0.413485 0.300195 0.322676 0.356497 0.238691 -0.454560 -0.287452 0.185409 -0.426898 -0.945277 -0.245712 0.204946 0.426205 -0.282025 -0.024220 0.096348 -0.322709 0.345909 0.383253 -0.003254 0.191767 0.017054 -0.434893 0.314670 0.766135 -0.169798 0.438487 -0.322688 -0.035770 0.188449 -0.221054 0.213282 0.072450 -0.280256 -0.217781 -0.067638 0.068680 0.431300 0.175704 0.206571 -0.091450 0.294765 -0.559041 -0.567451 -0.796403 -0.082289 0.672131 -0.021738 0.610496 -0.468854 -0.378433 -0.062751 0.582096 -0.087732 -0.239103 0.339854 -0.555569 0.382832 -0.567828 -0.590555 0.952832 0.918035 0.548799 -0.110937 0.325987 0.378969 -0.714813 -0.374454 -0.062019 0.125008 0.028329 -1.180827 -0.408181 0.066354 -0.623590 -0.193008 -0.059979 0.274344 0.031446 0.452893 0.644765 -0.193191 -0.228008 -0.366958 0.349082 -0.180317 -0.036802 0.081069 0.072005 -0.042474 0.283225 -0.405118 0.064777 0.399644 -0.374364 0.227205 0.185803 0.232326 0.071259 0.808573 0.585560 -0.088869 0.717545 -0.092970 -0.370836 0.572905 -0.142050 0.304769 0.047639 0.200074 -0.031801 0.175474 0.356233 -0.315066 -0.350962 -0.564800 -0.323454 0.287497 0.335225 0.341152 -0.608661 -0.708258 -0.034809 -0.052965 0.682078 -0.057062 0.774131 -0.297974 0.352334 -0.868346 0.161654 0.105771 -0.120711 0.322675 0.190716 -0.366488 -0.326244 -0.117659 -0.630290 -0.856717 -0.115937 -0.416530 -0.257652 -0.394359 0.399810 -0.409187 -0.091737 0.307387 -0.012607 0.478275 -0.339969 0.072670 -0.399523 0.196351 0.626634 -0.114527 -0.439232 0.230931 0.124810 1.347984 0.050717 0.386669 -0.127364 0.173779 -0.041419 -0.555989 -0.262761 0.705277 0.516738 0.123257 -0.065043 -0.064823 0.106120 0.347598 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = -1.306114 -0.373486 3.792529 1.322474 -2.690278 -3.891458 -1.716328 -6.440292 3.359415 1.330066 3.734157 0.726524 2.328169 -2.751710 0.063920 0.929346 1.848752 -1.875225 0.384979 -1.872513 -0.228637 4.433844 0.738968 -0.724980 0.484807 -4.504142 2.181934 0.600051 1.970639 2.806600 1.331774 -0.457302 -1.760568 1.590101 0.757331 2.834515 1.567518 1.058391 -1.957437 -0.301529 0.295629 -0.826151 2.526061 -0.317800 4.639708 -0.673697 1.751463 0.795520 -2.250866 -1.717442 -1.144727 2.619814 -2.918658 1.144124 0.435428 -0.424999 -0.077115 -1.430881 -0.895955 -2.203408 -0.819337 -1.800144 -1.998715 0.602600 -1.903566 1.387812 -0.985599 -0.874337 -0.372093 -1.121726 2.242296 1.123390 0.738415 1.512928 -3.953460 -0.037849 0.374615 0.917771 2.224961 0.135468 -0.478636 -1.517182 -1.770480 -2.355675 2.828787 2.096391 0.451365 0.622512 -1.921753 0.849670 -0.840684 -0.619083 1.390729 1.413654 -3.186340 -0.953765 0.261577 -0.997856 -1.123811 -3.203159 1.058709 -1.672238 1.089566 0.713677 -0.798414 -0.345942 -1.354619 0.391106 -2.752497 -1.929382 1.191137 -1.341369 0.493877 3.794620 -1.812002 -0.476619 -2.198574 -0.661195 0.472949 2.028412 0.811737 1.460524 2.792301 3.318079 1.827071 -2.884400 -2.102243 2.001788 3.014985 1.528925 0.949919 -2.541052 -1.639001 1.100952 -1.461111 -4.490069 -1.934645 1.140476 2.748136 0.546656 -1.431032 -0.069678 -1.080249 3.038331 2.391387 0.331364 0.186683 0.710818 -3.176308 2.447202 4.158132 -0.664169 2.295146 -1.121530 -0.162823 2.404961 -2.558217 1.021561 0.676737 -0.544091 -1.234353 -1.257349 -0.387544 2.187172 0.813794 1.656785 -1.568180 2.022901 -1.546913 -4.101549 -4.738345 -0.540817 4.384475 1.015739 3.444222 -3.118918 -1.569991 -0.230150 3.195839 0.462695 -2.121567 1.295823 -2.768453 2.202270 -3.888661 -3.812982 6.198656 5.257579 2.725224 0.675307 2.192231 2.555981 -4.034262 -0.908080 -1.082304 1.327210 0.407551 -4.530398 -1.141690 0.702731 -3.481123 -2.746755 -0.175817 1.408805 0.610195 0.565600 2.202218 0.975720 -0.430850 -1.355094 2.220571 -1.117282 -1.713844 -0.258922 0.390227 1.098756 1.498419 -1.392149 0.908596 1.171067 -1.842052 0.696650 1.625686 1.779533 0.976863 3.860550 4.205794 -0.957295 2.449163 -0.431181 -1.586044 2.931930 -0.740856 1.276637 0.558781 0.454421 1.131075 0.467893 2.298146 -1.779163 -1.185095 -2.694670 -0.900261 0.970260 2.901107 -1.131434 -3.945732 -4.016952 -0.019276 0.936614 2.522774 -0.424405 4.914359 -1.573198 0.976381 -5.705727 0.149988 2.356025 -0.151070 1.924199 0.788624 -1.543162 -3.088835 -1.226066 -2.809885 -2.281876 -1.050374 -0.958995 -1.536634 -2.347360 3.924902 -2.037518 -0.196997 1.690845 0.291848 3.077130 -0.248868 0.413781 -2.373054 0.717541 0.906638 0.269266 -2.325759 3.167682 0.652030 6.860212 -0.751939 1.132344 -0.885248 2.330133 -1.237048 -2.832615 -0.581371 3.651683 3.510511 0.568589 -0.428309 -0.409181 -0.585086 2.324648 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, AdjListNode*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = -0.067164 0.179762 1.294961 0.271986 -0.920172 -1.447846 -0.518703 -2.186732 1.055829 0.382805 0.941779 0.080372 0.704240 -0.769994 -0.141610 0.664490 0.597683 -0.275521 0.120904 -0.689873 -0.436541 1.193595 0.056444 -0.121343 0.410737 -1.487752 1.017416 -0.018560 0.655963 1.053879 0.529355 -0.156792 -0.509056 0.640414 0.681999 1.173636 0.562003 0.367828 -0.630620 0.326832 -0.063700 -0.454174 0.697536 0.284387 1.430291 0.272288 0.328534 0.369727 -0.675762 -0.347230 -0.362395 0.665227 -1.030946 0.428935 -0.154811 0.040414 -0.081438 -0.525548 -0.102291 -0.413457 -0.424335 -0.784342 -0.860561 0.278108 -0.902765 0.343418 -0.558197 -0.392239 -0.512696 -0.106191 0.658843 0.425016 -0.005107 0.624292 -1.390328 -0.247998 0.159676 0.382241 0.941102 -0.320727 -0.191853 -0.587293 -0.839655 -0.947716 1.142271 0.581221 0.308234 0.258180 -0.424954 -0.015220 -0.501309 -0.095608 0.697085 0.648421 -0.897349 -0.401997 -0.145755 -0.280830 -0.368720 -1.505245 0.404465 -0.487652 0.363890 -0.150450 -0.229413 -0.083119 -0.231743 0.346282 -0.632236 -0.380956 0.386005 -0.437315 0.094235 1.234662 -0.114535 -0.375181 -0.750242 -0.459005 0.247534 0.740977 0.374230 0.231223 1.080249 1.017918 0.741566 -0.804634 -0.811275 0.490855 0.608432 0.499455 0.474650 -0.888992 -0.641704 0.380544 -0.457524 -1.489013 -0.474921 0.123980 0.703783 -0.057748 -0.283471 -0.142610 -0.458113 0.546422 0.622637 0.195012 0.080579 0.056018 -0.926554 0.661529 1.435196 -0.291813 0.612787 -0.542540 0.164235 0.603975 -0.666742 0.108217 -0.078603 -0.440540 -0.410969 -0.223787 -0.105289 0.757411 0.085759 0.230935 -0.242238 0.631043 -0.829231 -1.080512 -1.224593 -0.160926 1.634087 0.122962 0.969725 -1.068568 -0.247128 -0.257114 0.976899 0.271060 -0.346177 0.328313 -0.906778 0.703755 -1.038903 -1.183829 1.935921 1.368880 1.008634 0.015942 0.299150 0.853358 -1.383480 -0.452179 -0.380276 0.210876 -0.011269 -1.552803 -0.746055 0.225930 -1.232375 -0.650182 -0.015085 0.556616 0.365548 0.347086 0.704785 0.214175 -0.038092 -0.734867 0.610551 -0.306667 -0.451185 0.077600 0.093414 0.273738 0.458340 -0.362349 0.275853 0.431482 -0.448026 0.270844 0.615051 0.584663 0.197685 1.368811 1.337888 -0.264191 0.497138 -0.063156 -0.537362 0.775512 0.011584 0.645895 0.292551 0.092425 0.270698 0.139583 0.951589 -0.566259 -0.497024 -0.882749 -0.565318 0.390818 0.823607 0.171714 -1.028875 -1.223608 -0.018946 0.155732 1.043695 -0.084430 1.359658 -0.261053 0.539672 -1.431875 0.132490 0.859803 -0.193897 0.571484 0.329033 -0.588327 -0.721823 -0.426134 -0.979191 -1.026329 -0.416674 0.116501 -0.559156 -0.328010 0.858502 -0.474929 -0.123948 0.518173 0.216189 0.895960 -0.311486 0.323095 -0.771873 0.230808 0.739582 -0.083666 -0.760537 0.659228 0.469509 2.123911 0.014481 0.380135 -0.169755 0.305216 -0.211583 -0.842000 -0.379395 1.146735 0.980886 0.266430 0.080557 -0.126366 0.065739 0.852702 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::destroy(AdjListNode*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 0.327303 0.665291 2.620940 0.019245 -1.825021 -2.310971 -0.874841 -4.574674 2.012079 0.862025 1.618233 0.324106 1.225924 -1.217365 -0.460149 1.108209 0.895318 -0.704643 0.386916 -1.252237 -1.073506 2.143825 -0.421696 0.420916 0.699467 -3.110421 1.949758 0.015893 1.841919 1.543526 1.008499 -0.294810 -1.215917 1.244566 1.168770 1.475376 1.004240 0.717545 -1.513671 0.715670 -0.143570 -0.852861 1.404746 0.500915 2.500211 0.156528 0.255127 0.840832 -0.722702 -0.532749 -0.484970 1.236042 -1.474623 0.781959 0.063594 -0.387347 -0.601804 -0.862247 -0.064423 0.402941 -0.821824 -1.547832 -1.104546 0.586573 -1.606138 0.432836 -1.356743 -0.818107 -0.722670 -0.421563 1.171114 0.718576 0.216247 1.003459 -3.034315 -0.190534 0.518705 0.607047 1.745072 -0.162620 -0.064457 -0.723464 -1.542922 -1.879572 1.829037 2.010752 0.314000 0.114690 -1.025454 -0.262170 -0.682267 -0.348260 1.345354 1.399793 -2.102071 -0.585976 -1.312594 -0.660110 -0.913273 -3.365967 0.738080 -0.914960 1.062787 -0.724447 -0.638687 -0.211538 0.158468 0.343374 -0.579510 -0.762530 0.424876 -0.900592 0.882899 2.971905 -0.107789 -0.868523 -1.630345 -0.966048 0.024427 1.015778 0.723053 0.172333 2.306881 1.861980 1.425587 -1.522314 -1.525928 1.202835 0.594048 0.902748 0.817368 -1.953570 -0.893858 0.749103 -0.543988 -2.970273 -0.735800 -0.191569 1.104149 -0.759212 0.295981 -0.689827 -0.929455 0.852266 1.273906 -0.029395 0.400885 0.169631 -1.405765 1.275692 2.699296 -0.207782 0.912589 -1.396202 0.087311 1.044262 -1.301548 0.572191 -0.174614 -0.468449 -0.909788 -0.578525 -0.041232 1.410659 -0.375473 0.305080 -0.350440 1.027654 -1.541066 -1.859602 -2.289563 -0.100208 2.904525 0.231334 1.668692 -1.971783 -0.381146 -0.200125 2.109010 1.069209 -0.557173 1.179955 -1.559643 1.362120 -1.245343 -2.088997 2.950229 2.927821 1.406149 -0.369497 0.567413 1.317518 -3.067093 -1.367769 -0.823274 0.314699 -0.022916 -3.294511 -1.560323 0.502576 -2.044611 -0.829829 0.076400 0.963850 1.544576 0.741641 1.531013 0.423106 -0.205144 -1.841227 1.918451 -0.330860 -0.800782 0.193505 0.329843 0.232626 1.144147 -0.705438 0.236889 0.807797 -0.586441 0.809747 1.250629 0.798689 -0.403366 2.435572 1.913400 -0.473986 0.862797 -0.138476 -0.684185 1.498279 -0.197078 1.098794 0.687261 -0.094209 -0.075897 0.574525 1.459682 -1.148370 -1.157822 -1.589817 -1.024724 0.072007 1.297415 0.513273 -2.028677 -2.291796 -0.049082 0.113403 1.524473 0.276920 2.645784 -0.448960 0.947752 -2.479364 0.169640 1.253207 -0.236497 1.679196 0.588434 -1.199709 -0.465633 -0.795236 -1.930393 -2.014791 -0.555861 -0.131223 -1.145880 -0.712698 1.739365 -0.514053 -0.222647 0.980227 0.143604 1.634025 -1.050769 0.485286 -1.650130 0.539912 1.744363 -0.385006 -1.304463 1.318505 0.536519 3.816816 -0.090636 0.637985 -0.082249 0.279031 -0.153803 -1.706651 -0.710346 2.206447 1.334915 0.848538 -0.541422 -0.505407 0.044752 1.415582 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = -1.889451 -0.708601 3.351423 0.104309 -1.779273 -3.553520 -1.584255 -5.802523 2.616758 1.232638 4.215795 0.462397 2.255880 -2.161382 1.059964 1.499538 1.895535 -2.682079 0.816058 -1.569813 0.976684 3.842763 1.134824 0.554279 0.064803 -3.625417 -0.174482 0.716076 1.682327 1.894536 1.081236 -0.854152 -1.537714 0.925044 0.376841 2.873555 2.308305 0.651988 -2.130976 -0.320594 -1.040417 -0.753670 1.999406 -1.242695 4.653135 -1.417197 2.308679 0.825422 -2.155378 -2.032992 -1.317454 3.924140 -2.710515 0.618446 1.312601 -1.128940 -0.537525 -0.880365 -1.532672 -2.572819 -1.098986 -1.410086 -1.270919 0.607449 -0.769836 1.748559 -0.704875 -0.267773 0.046563 -0.677985 2.281632 1.206843 1.501511 2.926414 -3.231644 0.486456 0.263742 1.034584 1.327335 -0.348263 0.034730 -0.960416 -0.534561 -1.855599 2.555599 2.177166 0.547181 0.113624 -2.774284 2.555573 -0.979615 -0.903211 0.681139 0.558047 -3.220121 -0.778911 1.255522 -1.073606 -1.501912 -2.667574 0.550229 -1.512016 0.700029 0.824103 0.640595 -0.775858 -3.483224 0.384342 -3.704338 -2.247624 1.608489 -0.675038 -0.600056 3.017836 -3.334272 0.979906 -1.630019 0.174951 0.167334 1.587591 0.797015 2.199138 1.169532 3.280452 1.302085 -2.452284 -1.831432 1.467908 4.306626 1.409434 0.844180 -1.922122 -1.517382 1.162299 -2.034275 -3.848343 -2.279329 2.284000 2.940376 1.602068 -1.520977 -0.691202 -0.715626 3.933004 2.380813 0.193853 -0.162530 0.645665 -3.098113 2.429601 3.143189 -1.109792 3.311150 0.103645 0.815732 1.527547 -3.117802 1.215331 1.615899 -0.044391 -1.181013 -1.257706 -1.619165 1.627944 2.811169 2.403723 -2.598096 1.967547 -1.071890 -4.144671 -4.681927 -0.889009 3.582634 -0.188851 1.954616 -2.265323 -2.829315 0.081807 3.163798 -0.349268 -3.139551 1.057036 -2.677415 1.866008 -3.181739 -3.119362 6.080277 6.030599 2.760562 1.181763 2.590320 3.168082 -5.133899 -0.320103 -0.271542 1.625510 -0.653728 -5.772294 -1.547439 0.618658 -3.058372 -2.703118 -0.951726 1.351450 -0.896539 2.206752 2.843174 2.441477 -0.463571 0.740778 1.488049 -0.827848 -2.351588 -0.442169 0.452371 1.826267 1.150618 -2.252829 1.389614 2.162258 -3.275892 0.399783 1.551508 1.924080 1.942964 4.207678 3.601794 -0.084926 3.591561 -0.965984 -1.958126 1.102698 -0.615891 1.036354 -0.254526 -0.074060 0.804241 0.137514 1.779995 -1.487425 -2.152359 -2.249060 -0.978906 0.810884 3.239573 0.552432 -5.207968 -3.184455 0.470812 1.896794 1.970310 -0.832802 4.212967 -1.621941 0.900748 -5.797188 0.205020 1.221025 -0.107050 1.257627 0.522646 -0.879533 -3.493911 -0.947592 -2.643740 -3.141543 -0.612958 -1.603151 -0.575221 -3.720088 5.073150 -2.457564 -0.764190 0.402826 0.909300 3.769223 1.758392 -0.303129 -2.402609 1.553346 1.242508 0.301278 -2.068438 3.377230 0.682062 7.302498 -1.122896 0.472945 -0.835076 1.991573 -0.624156 -1.660885 0.061019 3.386880 4.415931 0.281664 -1.150506 -0.575124 -0.850238 1.566952 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.073968 0.215438 1.404606 0.254114 -1.000604 -1.559039 -0.614915 -2.371606 1.103620 0.344530 0.926769 -0.011355 0.569347 -0.824896 -0.129465 0.827503 0.521758 -0.370214 0.156543 -0.666084 -0.474485 1.341939 0.040221 -0.070770 0.430960 -1.715168 1.114760 -0.064212 0.776858 1.158663 0.603060 -0.296326 -0.481260 0.726393 0.856408 1.592905 0.619557 0.344379 -0.692922 0.477304 -0.152371 -0.413134 0.740064 0.212337 1.613230 0.401521 0.451697 0.435751 -0.813714 -0.242026 -0.576878 0.951744 -1.175537 0.486399 -0.107259 0.070103 -0.153860 -0.661202 -0.244624 -0.292982 -0.708472 -0.781971 -0.962493 0.293642 -1.091105 0.336119 -0.630401 -0.265699 -0.470267 0.049955 0.778038 0.550343 0.045699 0.759027 -1.464590 -0.170890 0.164104 0.531308 0.981350 -0.549078 -0.064008 -0.480512 -0.801492 -1.010282 1.204858 0.591256 0.378076 0.117357 -0.337881 -0.042193 -0.706429 -0.157694 0.668296 0.695494 -0.923292 -0.387812 -0.349057 -0.249531 -0.448759 -1.662591 0.360095 -0.544106 0.422798 -0.139345 -0.065641 -0.181899 -0.094454 0.389521 -0.605608 -0.380295 0.408913 -0.357985 0.114945 1.331650 -0.067040 -0.321972 -0.748272 -0.532809 0.156130 0.784843 0.425403 0.263348 1.108090 1.195220 1.140591 -0.786084 -0.911650 0.455456 0.665308 0.612314 0.528374 -0.971720 -0.644406 0.347997 -0.326798 -1.589039 -0.466212 0.169634 0.735050 0.061972 -0.271619 -0.284645 -0.419939 0.729799 0.505839 0.120267 0.128633 0.064313 -0.951742 0.858518 1.721894 -0.272588 0.604760 -0.719314 0.228767 0.657706 -0.765380 0.148941 -0.007189 -0.417199 -0.380756 -0.312274 -0.129661 0.786428 0.177889 0.196756 -0.188860 0.660505 -0.886863 -1.220219 -1.198648 -0.109094 1.676629 -0.081296 1.063611 -1.099724 -0.306521 -0.309593 1.071129 0.312606 -0.305796 0.316403 -1.050698 0.769966 -1.049339 -1.245186 2.162385 1.594100 1.050220 0.018650 0.381889 1.135262 -1.670471 -0.480564 -0.494821 0.231062 -0.048829 -1.752422 -0.839881 0.218034 -1.325861 -0.691409 -0.038559 0.572715 0.464388 0.531703 0.550333 0.283057 -0.181338 -0.766724 0.679970 -0.434141 -0.518372 0.126712 0.094172 0.272608 0.569468 -0.461443 0.324264 0.552867 -0.521256 0.345044 0.683858 0.680289 0.148343 1.369028 1.463024 -0.149939 0.748189 0.066573 -0.584606 0.820687 0.153780 0.662050 0.326696 -0.038058 0.297021 0.183634 0.922283 -0.628456 -0.632900 -0.972180 -0.486192 0.375134 0.888523 0.255568 -1.173770 -1.315239 -0.090472 0.316877 1.039044 0.016749 1.455298 -0.207455 0.566721 -1.662406 0.112531 0.967364 -0.108484 0.616785 0.323046 -0.631809 -0.789846 -0.435176 -1.001108 -1.180370 -0.519780 0.082589 -0.603903 -0.497057 1.055899 -0.389817 -0.134017 0.682751 0.271990 0.938509 -0.326764 0.318355 -0.892430 0.123320 0.846264 -0.073007 -0.829398 0.708658 0.506583 2.421510 -0.100207 0.363776 -0.254162 0.275521 -0.121177 -0.871129 -0.315901 1.248394 0.980374 0.286392 0.131972 -0.148064 -0.029743 0.926284 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = -0.069018 -0.313090 2.366494 0.585827 -1.213151 -2.534454 -1.008294 -4.958251 2.804135 1.227334 2.224311 0.621792 1.918817 -1.822284 -0.462423 0.804712 0.890571 -1.336468 0.491451 -1.145703 -0.125219 4.210883 -0.115340 0.243725 -0.012591 -3.929474 1.821736 0.324469 2.265778 2.243899 0.921952 -0.202209 -0.798175 0.918456 0.025277 1.581187 0.417569 0.908936 -1.602132 -0.252501 0.216957 -0.472947 1.792336 -0.033086 2.946110 -0.702266 1.028814 0.413147 -0.129184 -1.192747 -0.961809 1.389100 -1.552838 0.602565 -0.490546 -0.757111 -0.253572 -0.443948 -0.465678 -0.272060 -0.482129 -0.801047 -1.445326 0.507456 -1.554852 0.936947 -1.169469 -0.624753 -0.690309 -1.126044 1.557120 0.915470 0.560799 0.120187 -4.071624 0.078599 -0.009748 0.197192 1.499831 0.556847 -0.559613 -0.937012 -1.559967 -1.729515 2.280444 2.739078 -0.257135 0.590771 -1.408396 -0.178674 -1.012022 -0.209665 1.348708 1.180924 -2.118364 -0.386097 -0.441929 -0.410465 -0.263737 -2.315534 0.902009 -1.164455 0.862418 -0.167213 0.068925 -0.093661 0.436657 -0.133931 -1.315173 -1.398227 0.602174 -0.940467 0.751190 3.346591 -0.793074 -0.602633 -1.891231 -0.438479 -0.192117 1.351065 0.705812 0.742042 2.285090 1.790873 1.311149 -2.141261 -1.478514 2.373205 1.487360 0.802342 0.284666 -1.857049 -0.897964 0.625150 -0.546781 -3.259906 -1.445009 0.720292 1.490016 -0.990761 0.025298 0.371224 -0.606420 1.680396 2.167204 -0.592359 0.579583 0.661351 -1.970150 1.671881 3.509483 0.040801 1.011149 -1.868575 -0.566701 2.175007 -1.770246 0.964405 0.043690 -0.026681 -1.212008 -0.922392 0.781953 1.479921 -0.574630 1.219244 -0.825761 1.395156 -1.003931 -2.356495 -3.197137 -0.548853 2.906903 1.102730 2.731902 -2.025775 -0.560858 0.240464 1.882989 1.146536 -0.937491 1.514399 -2.131198 1.496932 -3.190439 -2.646164 3.876736 3.510817 2.041182 0.150638 1.309638 1.836392 -2.162003 -0.892577 -0.676771 1.051486 0.731366 -3.575912 -0.602336 0.333741 -2.200152 -2.042517 -0.080704 0.789302 0.759881 0.471911 1.982107 -0.565966 -0.315021 -1.678076 2.423537 -0.831019 -0.852242 -0.390536 0.458409 -0.228421 1.148533 -0.889736 1.078685 1.043898 -0.445480 0.970953 1.215991 0.270794 -0.168341 1.867500 3.026377 -1.132755 1.450988 -0.463330 -0.508949 2.313124 -0.614404 0.596548 0.484523 0.173768 0.529099 0.590835 0.992453 -1.267035 -0.631955 -1.762018 -0.303629 0.763100 1.534844 -0.163216 -2.434877 -2.682700 -0.177821 -0.033868 2.097750 0.425184 3.495161 -1.570309 0.945360 -3.683619 0.389239 1.376286 0.122712 1.754960 0.503635 -0.941999 -0.740852 -0.832103 -1.762172 -1.820150 -0.875034 -1.726212 -1.314218 -1.804258 2.210622 -1.682252 -0.068554 1.262263 -0.092040 1.969795 -1.468100 0.344199 -2.245164 0.866215 0.404715 0.090892 -1.389116 1.492892 -0.155913 3.998317 -0.809323 1.124459 -0.453587 2.324900 -1.520089 -2.775793 -0.358131 2.590375 1.645756 0.169558 -0.450042 -0.752282 0.165213 1.207155 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, AdjListNode*, AdjListNode const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::construct(AdjListNode*, AdjListNode const&) = -0.580606 -0.111991 1.355969 0.289280 -1.088787 -1.263918 -0.639415 -2.414332 1.200374 0.740312 1.398580 0.360528 1.125485 -0.840387 -0.223923 -0.202089 0.656265 -0.854246 0.470931 -0.680061 -0.306566 1.871468 0.152918 0.205124 0.009471 -1.775227 1.577756 -0.159662 0.831427 1.611801 0.531584 -0.123768 -0.926942 0.511987 0.501836 0.843436 0.343380 0.706344 -0.433686 0.044341 0.345560 -0.808092 1.028063 0.053787 1.510850 -0.055994 -0.039330 0.257500 -0.558179 -0.891993 -0.179183 -0.162674 -1.274956 0.338861 -0.017706 -0.552247 -0.013237 0.040451 -0.184507 -0.672444 -0.146332 -1.242628 -0.531934 0.454751 -0.960871 0.567881 -1.191509 -0.418887 -0.430648 -0.860916 0.745755 0.536856 0.585773 0.625295 -1.881741 0.070808 0.080504 0.102776 0.896842 0.329606 -0.546347 -0.509113 -0.981953 -1.099428 0.785539 1.122451 -0.062376 0.142170 -0.742713 0.213644 -0.138796 0.069565 0.701242 0.736201 -0.921451 -0.167420 -0.484821 -0.221737 0.009327 -1.891600 0.441021 -0.714243 0.536597 0.357121 -0.762443 -0.479752 -0.324195 -0.007769 -0.777087 -0.944766 0.573570 -0.731530 0.358657 1.581323 -0.569076 -0.304181 -1.172161 -0.366412 0.650516 0.697173 0.425988 0.423265 0.901281 1.052605 0.755750 -1.248910 -0.829395 1.197074 0.751479 0.204980 0.204820 -0.854130 -0.568049 0.497262 -0.649949 -1.596912 -0.821800 0.270661 0.867917 -0.388685 -0.066675 0.162610 -0.745892 0.646120 1.358829 0.269674 0.274548 0.337764 -1.165436 0.848512 1.425619 -0.053902 0.630517 -0.515673 -0.458735 1.424607 -0.837783 0.476172 -0.034795 0.125856 -0.715628 -0.568547 0.151509 0.865776 -0.133824 0.919678 -0.410096 0.701228 -0.496322 -1.329257 -1.567273 -0.101286 2.318304 0.897501 1.047805 -1.346635 0.118401 0.454906 1.235682 0.987527 -0.872059 0.609955 -0.547211 0.790941 -2.176229 -1.473737 1.919435 1.694415 0.904420 0.085671 0.137440 1.018166 -1.207207 -0.549141 -0.791520 0.661611 -0.336109 -1.614755 -0.536736 0.358270 -1.156166 -0.911183 0.178797 0.555938 1.039021 -0.344368 0.626093 0.105001 0.195716 -1.018673 1.381061 -0.382435 -0.833656 -0.135391 0.120773 0.303482 0.386512 -0.110761 0.562966 0.425678 -0.268093 0.359820 0.732352 0.198481 -0.175836 1.412327 1.352860 -0.819267 -0.501526 -0.258665 -0.306102 1.573116 -0.523147 0.448305 0.298149 0.374367 0.492832 0.248776 0.986070 -0.703405 -0.602744 -1.007824 -0.528317 0.348710 1.005522 -0.680132 -1.574014 -1.732206 0.430638 -0.016135 1.289279 0.192622 2.037963 -0.529277 0.441229 -1.465642 0.116502 0.952421 -0.087479 1.154387 0.239076 -0.423444 -0.210743 -0.627996 -1.172056 -0.262873 -0.426706 -0.406499 -0.545604 -0.422406 0.834069 -0.395357 -0.130731 0.271217 -0.213959 1.165917 -0.076680 0.039803 -1.296264 0.422635 0.183225 0.029444 -0.739642 1.451092 0.207153 1.893201 -0.269341 0.245225 -0.010737 1.109937 -0.755947 -1.296486 -0.235607 1.445338 1.009878 0.405951 -0.276845 -0.210335 0.195081 0.518776 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.192737 0.202784 0.279738 -0.031681 0.047784 -0.209471 -0.026216 -0.358388 0.103034 -0.022495 0.077260 -0.125920 0.105121 0.027922 -0.022431 0.105837 0.018276 0.121438 0.103078 -0.004490 0.005201 0.154977 -0.143808 0.033306 0.064580 -0.255399 0.030001 0.095707 0.244137 0.123904 -0.028054 -0.076004 -0.011022 0.057760 -0.106335 -0.108509 0.158245 0.023784 -0.283760 0.096072 -0.232555 0.123653 0.022604 -0.019904 0.031372 0.146747 -0.057301 0.106815 0.108774 0.046906 -0.043881 0.218951 0.060654 0.128419 -0.029918 -0.111939 -0.076114 0.019885 0.012906 0.062774 0.004300 0.078451 0.016803 0.012085 -0.168094 -0.013484 -0.052970 -0.140491 0.026454 0.074321 0.092638 0.063337 0.082331 -0.010211 -0.309318 0.076404 0.045822 0.144846 0.070425 -0.104219 0.183502 0.060817 -0.074843 -0.132798 0.127786 0.260051 0.088408 0.017881 -0.078095 -0.139919 -0.019977 -0.062460 0.085736 0.078825 0.031996 0.102419 -0.314097 0.057161 -0.009677 -0.342130 -0.025216 -0.059320 0.062750 -0.128356 0.222162 0.072132 0.207671 0.211943 0.117324 -0.103978 0.138018 0.051328 -0.057864 0.310210 0.065815 -0.077831 0.000370 -0.043797 -0.204254 0.130282 0.010463 0.032391 -0.035755 0.116511 0.090220 -0.051774 -0.109186 0.123896 -0.001889 0.139434 0.115248 -0.223378 -0.043494 0.004795 -0.089488 -0.274382 -0.000944 -0.013652 0.100835 -0.203331 -0.000364 0.011664 -0.130480 0.066789 0.009510 -0.028422 0.079718 -0.040043 -0.049693 0.106809 0.231219 -0.090532 0.068819 -0.114171 0.016706 -0.154631 0.073214 0.072919 -0.116084 -0.018187 0.121667 -0.055825 0.026448 0.136633 0.098271 0.052114 0.045513 0.020704 -0.286764 -0.179367 -0.105917 -0.017352 0.108118 -0.253277 0.139038 -0.025775 -0.240636 -0.082723 0.250295 -0.090138 0.070925 0.078080 -0.177877 0.086194 -0.036175 -0.156336 0.160777 0.255917 0.097417 -0.137303 0.046853 0.127345 -0.212120 -0.177017 -0.000773 -0.043485 -0.055807 -0.419640 -0.294374 -0.029914 -0.121829 0.046480 0.067448 0.041485 0.048568 0.303706 0.083315 -0.008899 -0.174807 -0.133349 0.141615 -0.101022 0.096548 0.088706 0.023789 -0.056607 0.136336 -0.235839 -0.040710 0.288678 -0.101184 0.072770 0.034842 0.031817 -0.063462 0.212053 0.040876 0.151706 0.247704 0.086459 -0.188720 0.279331 -0.007830 0.060397 -0.016855 -0.037507 -0.152590 0.104524 0.015175 -0.078228 -0.215315 -0.250221 -0.144544 -0.003237 0.031170 0.242507 -0.196691 -0.042256 -0.052260 -0.018896 0.144319 0.090626 0.191690 -0.051620 0.100795 -0.171351 0.035791 0.019834 -0.069998 0.122187 0.068909 -0.083938 -0.230015 0.019136 -0.152208 -0.369413 -0.143943 -0.295554 -0.027151 -0.125724 0.085650 0.005295 0.014160 0.161430 0.104144 0.114517 -0.204431 -0.021311 -0.143580 0.046937 0.201396 -0.099227 -0.171407 -0.060996 0.049218 0.414911 -0.021575 0.069172 -0.114192 -0.135674 0.039361 -0.070722 -0.058539 0.188343 0.070181 0.110734 -0.041193 -0.013093 -0.061189 0.060299 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.274445 0.141797 0.765939 -0.056370 -0.210120 -0.844576 -0.260903 -1.690274 0.726505 0.351984 0.661959 -0.052296 0.573592 -0.343815 -0.134993 0.448570 0.190199 -0.260192 0.221683 -0.312337 -0.186260 1.077512 -0.321729 0.354316 0.053250 -1.148729 0.476839 0.190931 0.702624 0.503345 0.267280 -0.085616 -0.167775 0.262497 -0.067481 0.411595 0.237427 0.306821 -0.532764 0.080329 -0.160808 -0.085644 0.426197 0.006660 0.762518 0.037597 0.229107 0.212973 0.147262 -0.254078 -0.233550 0.515193 -0.306865 0.161751 -0.245458 -0.354521 -0.134115 -0.125090 -0.065035 0.250706 -0.155971 -0.172880 -0.446409 0.171362 -0.478891 0.210886 -0.293394 -0.296301 -0.198225 -0.180352 0.442947 0.211217 0.036014 0.113193 -1.274693 0.017162 0.107148 0.047299 0.425160 -0.064212 0.055091 -0.185000 -0.528558 -0.573126 0.840299 1.036504 0.095141 0.160514 -0.495059 -0.117852 -0.329825 -0.091505 0.536511 0.437481 -0.463605 -0.109868 -0.322465 -0.128882 -0.271056 -0.909652 0.304890 -0.320860 0.338016 -0.255155 0.188634 0.028144 0.286565 0.089972 -0.246166 -0.430513 0.109844 -0.318556 0.346622 1.078266 -0.109554 -0.250504 -0.552136 -0.256748 -0.186921 0.348587 0.309635 0.081302 0.738282 0.476485 0.393782 -0.603716 -0.602863 0.632464 0.287390 0.323267 0.096339 -0.722932 -0.248069 0.165851 -0.297886 -1.059825 -0.387205 0.046642 0.360732 -0.606707 0.132577 0.201129 -0.223664 0.333469 0.586676 -0.188987 0.172643 0.161631 -0.473931 0.411524 0.978626 -0.037130 0.303809 -0.626903 -0.084235 0.302194 -0.340738 0.223574 0.086208 -0.089397 -0.356172 -0.222536 0.250842 0.450252 -0.117956 0.344961 -0.169495 0.407816 -0.546810 -0.547614 -0.858548 -0.106099 0.822945 0.037812 0.747741 -0.577546 -0.313652 0.078763 0.699203 0.223784 -0.170389 0.476660 -0.677760 0.446440 -0.569232 -0.730239 0.944761 0.949790 0.680632 -0.127057 0.351444 0.489982 -0.809414 -0.334460 -0.144387 0.259576 0.170278 -1.365087 -0.394538 0.046640 -0.636892 -0.388225 -0.111885 0.278927 0.130631 0.468341 0.713488 -0.261944 -0.154364 -0.505108 0.690232 -0.176818 -0.079572 -0.078515 0.142366 -0.177186 0.371901 -0.467029 0.273836 0.440100 -0.196956 0.404770 0.426533 0.002237 -0.124617 0.761529 0.730199 -0.276119 0.594296 -0.179926 -0.139350 0.478997 -0.050364 0.229399 0.145069 0.050978 -0.044717 0.219682 0.339823 -0.377128 -0.390837 -0.598988 -0.273847 0.240261 0.338490 0.514031 -0.591016 -0.788547 -0.132687 -0.089623 0.784314 0.195204 0.915851 -0.330117 0.430190 -0.897213 0.158800 0.173575 -0.108138 0.460122 0.129946 -0.311493 -0.142916 -0.176918 -0.601842 -1.112764 -0.239502 -0.554676 -0.422454 -0.581262 0.500302 -0.406046 -0.104674 0.314723 0.132522 0.430707 -0.581718 0.117731 -0.620968 0.332808 0.500025 -0.156798 -0.484533 0.192087 0.040159 1.388207 -0.151187 0.413299 -0.125450 0.426584 -0.278598 -0.726532 -0.157469 0.763460 0.439591 0.111619 -0.199283 -0.198269 0.107531 0.369842 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = -0.947690 -0.387454 2.102517 0.912176 -1.283459 -2.918991 -1.006796 -3.695728 1.760344 0.564431 2.625941 0.312516 1.477500 -1.601091 0.609257 0.969748 1.198069 -1.184562 0.107654 -1.135578 0.082130 2.667412 0.746284 -0.593706 0.146865 -2.127959 0.290645 1.119684 0.920640 1.299106 0.640882 -0.284668 -0.686538 0.839069 -0.442679 1.583835 0.930254 0.514475 -1.399242 -0.436381 -0.185527 -0.152663 1.617815 -0.646893 2.848353 -0.435601 1.990706 0.589395 -1.488273 -1.173816 -1.103247 2.665361 -1.635706 0.603930 0.083200 -0.384307 0.243478 -0.921771 -0.852421 -1.928034 -0.472714 -0.425500 -1.373687 0.109285 -0.827624 0.975934 0.088348 -0.741736 0.183472 -0.259417 1.581997 0.594147 0.290670 0.918751 -2.145518 0.068498 0.289473 0.757405 1.069222 -0.187431 0.019105 -0.808566 -0.670007 -1.113091 1.979445 0.899339 0.682328 0.631681 -1.517809 0.906573 -0.550110 -0.519560 0.666513 0.398180 -1.679088 -0.407184 1.110032 -0.664698 -1.293698 -1.225677 0.626303 -0.853857 0.537952 0.609985 0.457399 -0.080553 -1.672018 0.243646 -2.397134 -1.592706 0.627530 -0.795963 -0.154999 1.997000 -1.802213 0.245568 -0.782687 -0.043734 -0.103143 1.361104 0.570292 1.181587 1.321909 2.173417 0.586405 -1.755134 -1.191709 0.662339 2.635566 1.292400 0.677568 -1.416817 -1.169906 0.604406 -1.343815 -2.788028 -1.222036 1.449138 1.964664 0.785983 -1.552992 0.519160 -0.472731 2.421773 1.442012 0.218476 0.003630 0.335941 -2.096417 1.655268 2.437545 -0.697315 2.067115 -0.249708 0.000429 1.298796 -1.687804 0.573464 1.176218 -0.663393 -0.673167 -0.614898 -0.548089 1.209048 1.557901 1.218715 -1.061380 1.322601 -0.939714 -2.786575 -3.118689 -0.395335 2.209106 0.183004 2.348438 -1.698596 -1.784285 -0.162641 1.892840 -0.777177 -1.656236 0.580779 -1.912402 1.363202 -2.461816 -2.287048 4.158732 3.373929 1.933140 0.789963 2.032103 1.759940 -2.415114 -0.193164 -0.141776 0.936751 0.476835 -3.093278 -0.578304 0.224412 -2.242349 -1.771140 -0.497853 0.933673 -0.839869 0.930620 1.528405 0.471251 -0.736777 0.058608 0.591480 -0.909346 -0.877237 -0.130286 0.158803 0.781520 0.720315 -1.287460 0.631920 0.822760 -1.894310 0.342369 0.721562 1.459102 1.409631 2.764607 2.781964 -0.403876 2.850652 -0.371984 -1.253659 1.450169 -0.436610 0.797134 0.034926 0.714226 0.743229 0.108923 1.351510 -0.991898 -0.783762 -1.751137 -0.386972 1.114620 1.884396 -0.309860 -2.448074 -2.535348 -0.186001 0.984374 1.717779 -0.850725 2.864719 -1.181479 0.554523 -4.102660 0.178105 0.786358 -0.120076 0.680123 0.540403 -0.889099 -2.717873 -0.599722 -1.662370 -1.975273 -0.535309 -1.076565 -0.722647 -2.042667 2.573733 -1.919822 -0.252689 1.026170 0.275666 1.885627 0.280762 0.051537 -1.107384 0.545697 0.825728 0.274679 -1.540488 1.970701 0.321858 5.054565 -0.393422 0.981615 -0.868119 1.527790 -0.490570 -1.324086 -0.221607 2.315103 2.663951 -0.104285 -0.054367 0.006390 -0.365934 1.418537 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = -2.244996 -0.527362 4.079927 0.360674 -2.939108 -3.666865 -1.842012 -6.799885 3.101250 1.490909 4.550678 0.668575 2.470938 -2.786527 0.731845 1.207344 2.341470 -2.692924 0.935088 -1.872374 0.654968 3.897675 1.039344 0.463657 0.363985 -4.049449 0.947924 0.069035 1.939739 2.416302 1.516746 -1.062958 -2.481245 1.228053 1.709779 3.554514 2.773395 0.944152 -2.260534 -0.235262 -0.856901 -1.788892 2.243502 -1.043912 5.325058 -1.712282 1.865674 0.886743 -3.031452 -2.113464 -1.123114 3.471170 -3.502343 0.935472 2.009804 -1.258123 -0.752415 -0.861220 -1.345762 -2.746942 -1.328790 -2.872424 -1.313159 0.876087 -1.230889 1.829793 -1.495695 -0.274448 -0.291694 -1.034058 2.312656 1.436713 1.921838 3.777626 -3.615406 0.291691 0.435051 1.148521 1.961759 0.004079 0.106697 -1.516521 -1.001154 -2.416567 2.665289 2.187629 0.490681 -0.121681 -2.959422 2.852633 -0.766727 -0.878213 0.996567 0.931523 -4.022695 -1.115288 0.396747 -1.212205 -1.220811 -4.205080 0.631060 -1.885495 0.914210 0.892317 -0.675588 -1.000494 -3.595369 0.580114 -3.672338 -2.224276 1.960574 -0.916075 -0.405128 3.549049 -3.192861 0.513009 -2.256127 -0.171913 0.824941 1.514792 0.914724 2.356822 1.504172 3.735187 2.185933 -2.864108 -2.241739 1.926533 4.186141 1.411470 0.927126 -2.110972 -1.662655 1.540153 -2.102041 -4.434308 -2.503813 1.936965 3.235772 1.953241 -1.302685 -1.728820 -1.131867 3.911327 2.477483 0.662893 -0.215373 0.864718 -3.400376 2.500629 3.173702 -1.134888 3.285847 0.310801 1.100009 1.634950 -3.268694 1.204909 1.059627 0.079348 -1.228679 -1.543743 -2.069120 2.034923 2.466540 2.339464 -3.010218 2.199673 -1.623413 -4.770660 -5.043870 -0.739282 4.988347 0.231738 1.646508 -2.944549 -2.531041 0.225610 3.707037 0.347265 -3.450296 1.240964 -2.779851 2.276409 -3.364183 -3.700732 6.666509 6.440444 2.712244 0.992490 2.087823 3.338029 -6.392678 -0.779248 -1.042737 1.546885 -1.183546 -6.303419 -2.167135 1.032531 -3.577895 -2.787638 -0.440799 1.555278 0.189273 1.849068 3.061215 3.311400 0.216993 0.128011 2.341257 -0.593622 -2.907908 -0.467906 0.525654 2.528931 1.523725 -2.083792 1.294337 2.107217 -3.207016 0.333481 1.850145 2.176570 1.603140 5.011920 3.918189 -0.199353 2.625086 -0.929964 -2.324507 1.618467 -0.732499 1.369984 0.013251 -0.380785 0.949244 0.257565 2.620605 -1.892253 -2.564869 -2.587645 -1.904852 0.403272 3.835031 -0.036069 -5.908696 -3.683482 0.884449 1.886790 1.855817 -0.693283 4.856186 -1.566339 0.961234 -5.918956 0.018480 2.244699 -0.313064 2.029645 0.530755 -1.134147 -3.423436 -1.353279 -3.167940 -2.840585 -0.753975 -0.675661 -0.739959 -3.393754 5.607949 -1.930343 -0.829669 0.228704 0.920778 4.438295 1.912254 -0.052940 -2.761984 1.623177 1.303900 0.264193 -2.419859 4.257699 1.239833 7.919343 -0.995701 -0.066415 -0.684904 1.767215 -0.745143 -2.053110 -0.175040 3.788399 4.907080 1.021573 -1.512999 -0.562503 -1.192606 2.000276 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = -3.369590 -1.274173 4.185012 -0.562288 -2.788799 -4.019181 -2.083795 -7.757913 3.505614 2.228466 5.905391 1.030279 3.513476 -3.067599 1.261299 1.440069 2.888695 -4.238464 1.771319 -2.020808 1.501894 5.362396 1.583223 2.198074 -0.264436 -4.420748 0.294192 -0.444196 2.429012 3.126196 1.821315 -1.377048 -2.819299 0.781634 1.988371 4.448989 3.062670 1.322197 -2.397517 -0.441663 -1.531336 -3.077987 2.561444 -1.569035 6.350641 -2.894676 2.301184 0.759916 -3.000666 -3.287761 -1.601103 3.825369 -4.486546 0.458860 2.449038 -2.576685 -1.003721 0.292425 -1.961079 -3.457603 -1.729797 -3.832567 -1.169141 1.281368 -0.930071 2.709816 -2.783701 0.229447 -0.799181 -1.577193 2.804024 2.085904 3.252488 5.400854 -4.830167 0.742921 0.128916 0.869929 1.856764 0.430499 -0.373833 -1.619232 -0.771570 -2.843633 3.232444 3.083131 0.095027 -0.370680 -4.402653 4.588005 -1.285875 -0.714036 0.978246 0.677833 -4.831933 -0.962621 1.196354 -1.334219 -0.954475 -5.175055 0.549150 -2.373186 0.746811 1.275071 0.013979 -1.971624 -5.863658 0.119084 -5.165962 -3.285758 2.781584 -0.978704 -1.411566 3.818114 -5.034197 1.683823 -2.811144 0.535529 1.434620 1.483170 1.394955 3.402201 0.644550 4.042406 2.351567 -3.430171 -2.342333 2.818119 5.801263 0.949540 0.565348 -1.695309 -1.930719 2.094834 -2.875662 -4.805016 -3.689534 3.631451 3.823689 2.522202 -1.024258 -2.109127 -1.155862 4.800199 3.955794 0.558980 -0.189654 1.269267 -4.106726 2.917288 3.225900 -1.365649 4.423715 0.982556 1.452276 2.717862 -4.691277 1.709607 1.569241 0.956934 -2.042014 -1.992440 -2.786462 2.103868 3.600136 3.724760 -4.342817 2.668814 -1.214614 -5.514485 -6.065551 -1.264101 6.354429 0.566395 0.840010 -3.131879 -2.783878 1.429540 4.008639 1.008394 -5.097582 1.590693 -2.868872 2.487896 -5.246714 -4.135042 7.915508 7.830997 3.397677 1.615476 2.014595 4.845886 -7.845911 -0.636485 -1.130399 2.523105 -2.431621 -8.437807 -2.695342 1.258230 -4.005670 -3.602939 -0.982521 1.742164 -0.195821 2.566628 4.300453 4.221794 0.838969 1.211137 3.075839 -0.535460 -4.422283 -1.080390 0.680377 3.271238 1.315023 -2.366835 2.631983 3.099134 -4.302447 0.194810 2.251244 1.971366 2.108374 6.069921 4.724505 -0.560356 2.202994 -1.874857 -2.546821 1.022992 -1.188959 1.227639 -0.572634 -0.511110 1.352451 0.124544 2.893927 -2.092170 -3.822455 -2.650710 -2.283483 0.703311 4.784323 0.825034 -8.093050 -4.222486 1.942941 2.470654 2.521862 -0.752015 5.699355 -2.333354 1.221893 -6.696715 0.315958 2.037233 -0.209384 2.522754 0.352418 -0.596374 -2.723274 -1.804749 -3.648366 -3.078197 -0.595273 -1.512191 -0.215495 -4.835287 6.873428 -2.893699 -1.449245 -1.248744 1.003629 6.088542 3.721569 -0.663708 -4.159746 3.128926 1.320458 0.477781 -2.382320 5.612024 1.209815 8.805209 -1.693980 -0.647542 -0.421999 2.920281 -1.341067 -2.289807 0.331709 4.502284 6.353927 0.850399 -2.308985 -0.952917 -0.845769 1.421031 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp___GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = -0.259859 0.577907 1.936051 1.069073 -1.146326 -1.399987 -0.750368 -1.708556 0.651743 -0.094795 0.853432 0.015128 -0.007656 -0.208840 -0.030088 -0.311699 0.153156 -0.060033 0.036724 -0.548210 -0.683319 1.143731 0.673010 -1.636102 0.228125 -1.804383 1.709658 0.898628 0.557105 1.247189 -0.024056 -0.070317 -0.361046 1.123366 -0.589374 -0.278922 0.281403 0.388756 -0.667753 0.139591 0.824805 0.962105 1.043670 -0.233091 1.064330 0.973402 0.451462 0.423697 -1.107432 0.054116 -0.414056 1.048910 -0.811827 0.912380 -0.078169 0.448782 0.371216 -1.226603 -0.210727 -1.386197 -0.142250 0.041977 -0.770443 0.001611 -1.287876 0.145852 -0.054173 -1.040279 0.577085 0.157462 0.802458 0.273445 -0.126742 -0.473717 -0.861277 0.522481 0.437864 1.132313 0.842737 -0.526087 0.044936 0.263284 -0.720949 -0.892930 0.206558 0.178124 0.537283 -0.026116 0.440193 -0.525070 0.079845 -0.318863 -0.048972 0.953170 -0.045578 0.537617 -0.609860 -0.291792 -0.811561 -0.736901 0.153738 -0.720003 0.665203 0.702139 -0.815438 -0.028418 0.271684 0.554055 -0.104758 -1.054071 0.194498 -0.549735 0.768029 1.490238 -0.087733 -0.281235 -0.070976 -0.397292 -0.194600 1.339462 -0.179026 0.325094 0.985736 1.628669 0.116859 -0.916453 -0.591636 0.062426 0.602258 0.974940 0.939716 -1.277292 -0.832897 -0.332837 0.091596 -1.430367 0.266217 0.199897 0.891795 -0.169212 -0.995936 0.706891 -0.668908 1.254153 0.456032 0.493619 0.188203 -0.210544 -1.151309 1.267889 2.002435 -0.353657 0.537766 -0.857737 -1.154660 1.153747 -0.284257 0.731245 0.289407 -0.286134 0.257827 -0.728563 0.312979 1.200784 0.418799 0.397588 0.896446 0.177185 -0.122515 -1.624067 -1.275220 0.483252 0.980334 -0.092182 2.282849 -1.015090 -0.657632 -0.548078 1.524997 -0.184468 -0.038180 -0.023411 -0.767950 0.756027 -1.629982 -1.633530 1.802486 1.666431 0.114507 -0.008066 0.975766 0.825327 -0.116164 -0.630886 -0.503877 0.482722 0.351928 -0.045351 -0.176332 0.195429 -0.867668 -0.386346 0.541328 0.499674 0.847360 -0.730055 -0.814209 -0.189604 -1.383407 -1.252788 0.346688 -1.112497 -0.110598 0.632334 0.005765 0.117213 0.605545 -0.157518 -0.388782 0.222671 -0.483202 0.273727 0.353670 1.095253 0.217617 1.022389 1.066400 0.050204 1.202944 0.973868 -0.501908 2.680033 -0.490329 0.369223 0.603596 0.646151 0.129575 0.507319 0.759294 -0.553442 0.017364 -1.649655 0.660959 0.151899 0.626555 -1.942486 -0.780934 -1.722431 -0.502727 0.678601 0.766110 -0.227079 2.218894 0.068052 -0.261425 -2.142048 -0.208811 0.921646 0.032230 0.863420 0.662389 -0.910977 -2.107756 -0.388443 -0.826353 0.097121 -0.828062 -0.697135 -0.892302 0.192030 0.557706 -0.437345 0.797593 1.616149 -0.046572 0.164602 -0.629341 -0.009977 -0.494061 -0.975955 0.614732 -0.008533 -1.081564 1.069716 -0.144574 2.542225 -0.380092 0.922515 -0.890490 0.492521 0.113660 -0.484819 -0.356645 1.586360 0.500355 0.280030 0.264387 0.326968 -0.528466 1.046565 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.484400 0.380004 1.572680 1.093071 -1.008861 -1.445761 -0.642863 -1.925181 0.886724 -0.213092 0.762310 0.013115 0.270984 -0.119864 -0.108378 0.524940 0.133976 -0.087890 0.350883 -0.449718 -0.765192 1.847462 0.893705 -0.932461 0.155748 -1.816449 1.092665 0.725481 1.405791 1.335020 -0.012849 -0.432114 0.161311 0.873367 -0.595814 -0.309799 -0.479921 0.297720 -1.352687 0.690545 0.144199 0.169248 1.150985 -0.272794 0.764640 0.461240 0.908747 0.443377 -0.628482 0.241583 -1.299934 1.624738 -0.873728 0.705768 -0.530169 0.239381 0.049391 -0.559970 -0.672669 -0.584122 -0.516057 0.253403 -0.584569 0.347131 -1.466573 0.288452 -0.804366 -0.878303 0.365102 0.896443 1.068962 0.920472 0.310863 -0.391619 -1.690609 0.585488 0.130480 1.166197 0.616991 -0.528892 0.334187 0.456020 -0.672286 -0.788073 0.628704 0.482638 0.252479 -0.348408 0.315263 -0.877462 -0.136195 0.001908 -0.048340 0.657372 -0.459752 0.864418 -1.161464 0.138635 -0.615577 -1.273243 -0.290624 -0.677554 0.658123 0.139300 0.246556 0.203787 0.518031 0.561168 -0.114510 -1.272133 -0.133740 -0.071705 -0.160260 1.810325 -0.037348 -0.303962 0.025001 0.064460 -0.834352 0.991256 0.153316 0.577880 1.016918 1.435430 0.193687 -0.555659 -0.341504 0.202830 0.489655 1.093888 1.166516 -0.628240 -0.905227 -0.240834 0.431927 -1.775096 0.069053 0.516738 0.535842 -0.315038 -0.381541 0.020377 -0.670218 1.484043 0.590887 0.356583 0.638568 -0.331425 -0.645942 1.658670 2.491286 -0.412488 0.616075 -1.022507 -0.863123 1.537620 -0.699793 0.768132 -0.290097 -0.271330 -0.002704 -0.809691 0.060777 0.971614 0.231317 0.114789 1.049810 0.121771 -0.321815 -1.545942 -0.942592 0.224930 0.785387 -0.137676 2.116887 -0.785265 -0.736491 -0.303724 0.718539 0.374774 -0.000319 0.270167 -0.991977 0.628638 -2.345058 -1.664206 1.944629 1.460799 0.607841 0.139775 0.929128 1.283512 -0.536936 -1.145426 -0.498725 0.597421 0.373174 -1.230027 -0.760163 0.210990 -1.068699 -0.327034 0.433201 0.449521 0.880261 -0.048491 -0.398960 -0.474344 -1.654127 -0.755016 0.812964 -1.599204 -0.246834 0.553481 -0.138269 -0.229859 0.630253 -0.349424 0.051732 0.260244 -0.521537 0.231004 0.213179 1.031420 -0.137145 0.820742 1.813185 0.339747 1.301527 0.888810 -0.756816 2.319312 -0.540830 0.292191 0.273274 0.205241 -0.435020 0.369753 0.588748 -0.589941 -0.523131 -1.325259 0.692126 0.370343 0.529432 -0.823586 -0.799391 -1.061570 -0.680687 0.866144 0.984383 0.388369 1.912442 -0.504681 -0.005625 -2.204744 0.022208 0.501858 0.313010 1.366999 0.654274 -0.816796 -1.068624 -0.535860 -0.606348 0.359108 -0.826612 -1.452542 -0.822293 -0.243271 0.509973 -0.594563 0.528174 1.586294 -0.568241 0.811157 -0.790496 -0.261184 -0.784629 -0.287278 0.729290 0.256407 -0.840306 1.009020 -0.311227 2.792961 -0.223262 0.626338 -1.052756 -0.088902 0.144000 -0.544949 -0.193981 1.588375 0.488282 0.269114 0.386182 -0.083544 -0.202638 0.537345 -PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = -0.066155 0.781666 2.721159 1.850682 -1.728919 -2.352837 -1.102544 -2.720940 1.067118 -0.309578 1.633331 -0.211180 0.262703 -0.378595 -0.059904 -0.634644 0.329585 -0.308037 -0.014864 -0.887431 -1.377463 1.546317 0.644244 -1.941811 0.514050 -2.680240 2.123316 1.461732 0.908108 1.609308 -0.051316 -0.355507 -0.672729 1.532517 -0.648457 -0.408669 0.361250 0.211047 -0.964356 0.418815 1.046291 1.001502 1.900816 -0.134903 1.087008 1.292266 0.739852 0.762718 -1.532865 -0.150574 -0.833759 1.530236 -1.209888 1.019365 0.019449 0.686590 0.644290 -1.867686 -0.450810 -1.093235 -0.149594 0.017600 -0.890316 0.070269 -1.763781 0.179143 -0.368213 -1.297319 1.310370 0.021788 1.339472 0.442831 -0.195470 -0.488848 -1.156690 0.594721 0.479925 1.455166 1.075653 -0.752402 0.285366 0.580206 -1.220463 -1.023681 0.343418 0.098921 0.942632 -0.207910 0.320413 -1.050158 0.487464 -0.356179 0.174411 1.050211 -0.445628 0.377759 -1.496335 -0.468253 -1.543304 -1.526940 0.097271 -0.907262 1.088378 1.042260 -1.367987 0.080865 0.529216 0.470290 -0.286507 -1.700466 -0.094658 -0.704851 1.063561 2.318803 -0.434121 -0.851874 -0.338743 -0.712207 -0.409604 1.597085 0.110326 0.223672 1.759480 2.259398 0.316325 -1.282824 -0.931768 -0.201476 0.741951 1.561950 1.556892 -1.802839 -1.056221 -0.309495 -0.157090 -2.833727 0.452406 -0.322571 1.396491 0.198321 -1.734651 0.976120 -1.300907 1.622282 0.632129 0.904714 0.542663 -0.315084 -1.426556 1.983185 2.782695 -0.587673 1.114970 -1.388679 -1.483680 1.553374 -0.558557 0.703783 0.335868 -0.481183 0.442703 -0.944110 0.079244 1.588618 0.290019 0.431419 1.530928 0.365855 -0.421524 -2.530982 -2.003200 0.859672 1.580798 -0.101918 2.929398 -1.838742 -0.884919 -0.655965 2.249033 -0.469274 -0.364561 0.198382 -0.899754 1.023351 -2.149386 -2.355060 2.527974 2.410868 0.094771 0.136647 1.442594 0.962208 -0.763451 -0.820615 -1.173958 0.666751 0.693583 -0.701376 -0.319458 0.004470 -1.328800 -0.441795 0.623006 0.805483 1.436747 -1.286701 -1.189244 -0.270018 -2.075668 -1.890143 1.013125 -1.846222 0.039494 0.847856 -0.379825 -0.022339 1.009235 -0.317562 -0.804618 0.082272 -0.789012 0.310913 0.583466 1.672380 0.185588 2.010089 1.488795 0.022883 1.717213 1.280088 -0.841957 3.774906 -0.876658 0.690390 0.705850 1.367587 -0.046930 0.920207 1.073228 -0.847620 -0.568176 -2.089640 0.654154 0.051073 0.895979 -2.160916 -0.937092 -2.589737 -1.038108 0.893216 1.339799 -0.111535 3.083429 0.024249 -0.067401 -2.937522 -0.461851 1.288125 0.084044 1.513223 0.838784 -1.386320 -2.598065 -0.575471 -1.284453 0.282425 -0.854569 -1.067868 -1.311790 -0.265237 0.970186 -0.251817 0.815402 2.260063 -0.266116 0.290357 -0.723018 -0.096403 -0.417568 -1.255654 0.999398 0.241825 -1.577856 2.044915 -0.064271 3.765958 -0.101993 1.250583 -1.304807 0.012121 0.322608 -0.880776 -0.585967 2.165777 0.904721 0.542181 0.216870 0.327116 -0.725211 1.511117 -PE-benchmarks/ugly-numbers.cpp__main = 0.391567 0.440542 0.904416 0.156804 -0.308450 -0.876734 -0.346886 -1.476779 0.517761 0.146116 0.551014 -0.243827 0.344956 0.080118 -0.120687 0.422079 0.156135 -0.129563 0.306830 -0.269123 -0.557385 1.151710 -0.054651 0.157464 0.101385 -1.131713 0.512534 0.221656 0.767875 0.520905 0.067776 -0.132353 0.029744 0.377458 -0.239858 0.065707 0.024919 0.299703 -0.598206 0.374469 -0.131596 -0.011890 0.498134 0.005243 0.377352 0.402667 0.331144 0.242943 -0.023421 -0.077570 -0.422598 0.682409 -0.298299 0.278858 -0.276368 -0.238858 -0.021138 -0.220056 -0.168706 0.286616 -0.298613 -0.074234 -0.417945 0.167429 -0.695368 0.180776 -0.491463 -0.431990 0.012024 0.256464 0.534812 0.338755 0.059964 -0.031508 -1.195972 0.266960 0.135779 0.337220 0.308709 -0.236751 0.160342 0.233841 -0.621417 -0.659929 0.658102 0.766256 0.244720 -0.135867 -0.220239 -0.341703 -0.253584 -0.053257 0.283311 0.552642 -0.263338 0.285265 -0.653522 -0.106495 -0.523346 -1.118759 -0.009583 -0.435241 0.394895 -0.165770 0.170756 0.016000 0.356045 0.206206 0.036920 -0.727937 0.021297 -0.169963 0.114265 1.089516 -0.016310 -0.192876 -0.240593 -0.212660 -0.380838 0.451465 0.312564 0.105273 0.743402 0.573202 0.260077 -0.400158 -0.434467 0.249468 0.162016 0.360609 0.463526 -0.698742 -0.430806 0.015236 -0.060617 -1.089097 -0.162764 0.250293 0.337050 -0.610009 0.022240 0.249496 -0.317015 0.413796 0.494097 -0.048317 0.289678 -0.111856 -0.328099 0.587244 1.220733 -0.219028 0.368682 -0.760856 -0.337061 0.660358 -0.315044 0.351324 0.004354 0.024560 -0.230720 -0.389504 0.195433 0.583384 -0.013292 0.140799 0.408200 0.140504 -0.415773 -0.636619 -0.730811 0.099982 0.660954 -0.192844 0.911214 -0.516589 -0.340180 0.057813 0.617094 0.184395 -0.080092 0.315283 -0.529903 0.331609 -0.839648 -0.854735 0.906546 0.853539 0.338866 -0.130899 0.387215 0.585610 -0.672185 -0.650200 -0.357511 0.394603 0.056586 -1.099789 -0.589943 0.062837 -0.611677 -0.050771 -0.061432 0.287467 0.461786 0.278983 0.196607 -0.380543 -0.688233 -0.577752 0.640633 -0.476142 -0.087401 0.164669 0.016823 -0.266384 0.395833 -0.288868 0.074603 0.321664 -0.318973 0.260932 0.330756 0.176380 -0.200290 0.851185 0.820296 -0.048043 0.611032 0.134563 -0.241737 0.899200 -0.201476 0.154919 0.053156 0.212729 -0.348063 0.325865 0.396936 -0.250445 -0.709618 -0.679309 0.105434 0.092472 0.131854 0.203434 -0.520221 -0.777990 -0.262076 0.139551 0.899251 0.265040 0.988540 -0.233044 0.364145 -1.045871 0.158645 0.097782 -0.017304 0.652263 0.237888 -0.396774 -0.192192 -0.204519 -0.524529 -0.719094 -0.318850 -0.811555 -0.462098 -0.363247 0.174712 -0.305277 0.040338 0.561471 0.033146 0.383702 -0.396318 -0.097826 -0.618256 0.124369 0.877889 -0.154390 -0.447646 0.315304 -0.046232 1.552460 -0.116495 0.436452 -0.285532 -0.065070 0.052453 -0.546557 -0.154651 0.832037 0.314138 0.110908 -0.046421 -0.130022 0.093871 0.325750 -PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -3.851960 2.187236 19.850780 11.632438 -7.263349 -12.276998 -6.102273 -16.674339 9.004343 0.414344 11.614307 2.201666 2.491243 -1.970472 2.898238 -1.261850 -0.273243 -4.876998 1.580438 -3.719285 1.254412 13.103148 11.031931 -14.105318 0.077534 -19.115158 9.720345 7.989930 9.537218 10.260859 -0.523168 -3.262860 -1.987433 10.321821 -5.846644 -0.771208 0.455001 2.235145 -5.532968 0.866005 4.046614 11.030847 6.202240 -1.108816 11.917596 3.852591 11.726420 2.204341 -6.597394 -1.574298 -8.558342 17.588989 -11.562944 5.848505 1.143862 6.447334 -1.538350 -11.630886 -5.347136 -15.092347 0.802563 5.799093 -7.956211 0.801929 -11.078701 3.419607 -2.437743 -3.578254 5.620328 4.167444 11.627101 3.883758 2.458251 -4.310730 -9.944234 4.334782 -3.487685 8.835289 7.155910 -6.795892 -3.979024 4.140545 -1.779352 -7.164336 2.794614 1.573027 0.565892 -3.911858 5.115164 -1.771450 -3.146165 -3.357743 -5.348976 8.388306 -8.834393 7.080008 -3.638329 0.062073 -5.228842 -1.100920 -0.865322 -10.530546 4.962490 7.959759 0.059448 -1.619146 -2.325027 1.851564 -5.475753 -11.906728 0.199063 0.495710 2.887418 11.083040 -7.441369 2.221977 2.604646 0.199915 -2.034552 12.262915 1.831667 6.200054 10.226622 15.487763 0.832128 -7.490883 -2.539702 3.008116 9.587943 12.350215 8.393031 -12.772749 -7.024841 -2.708119 4.166702 -16.389152 6.139814 7.112529 7.171409 5.427616 -14.054532 1.531849 -4.411962 14.732614 7.756218 6.347632 3.168522 -0.784248 -8.027111 12.842305 24.762026 -4.467848 7.877179 -4.888123 -6.016722 14.381522 -12.852716 8.639332 3.760215 2.954535 4.339125 -9.348476 -5.373125 11.288173 7.023705 7.560014 10.662282 1.984515 2.573222 -19.723513 -12.156894 -0.840216 7.674833 -3.205482 17.892472 -7.931698 -6.491828 -3.382972 11.640229 -1.408654 -3.521116 -0.673905 -6.034903 6.181600 -16.550016 -14.011114 17.087457 18.818723 0.886266 0.865065 12.884098 12.544456 -5.310864 -4.781794 -4.871441 6.497478 -0.259648 -0.671476 0.852978 -0.513882 -11.718200 -6.316430 2.321269 3.260994 5.237892 -3.582945 -9.752619 7.282711 -15.046279 -7.383876 3.182520 -11.740552 -5.238836 0.348736 0.314954 1.032223 3.032872 -5.730653 -1.364042 7.820749 -8.035721 -0.118060 6.343612 9.278231 5.113572 11.760548 8.184788 4.196380 12.481751 8.576565 -5.216294 23.977911 -1.573982 1.065158 3.631383 5.641049 -0.872205 5.519912 0.463910 -5.648385 -6.277006 -13.231832 8.186395 -0.152916 9.225690 -10.368827 -9.820978 -8.934790 -6.875070 11.916143 6.361004 -1.639069 22.054741 -1.170764 1.658633 -23.452499 -1.737808 9.057851 -0.245338 9.128961 7.472546 -7.110599 -17.368969 -5.337981 -0.980518 2.994732 -5.701210 -10.393911 -6.810822 -6.381425 9.557752 -6.951530 5.239227 12.049421 -0.115825 5.753511 -2.050415 -1.022584 -3.400962 -4.169259 3.306120 5.521286 -13.456771 13.934275 -4.522863 26.523967 -8.846984 8.946592 -10.418672 2.558969 -1.749962 -1.095100 -0.432304 16.279979 8.390834 3.362503 0.212209 0.203978 -7.537802 6.973523 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.359356 0.548811 1.440746 -0.008709 -0.503032 -1.408034 -0.606194 -3.025914 1.003722 0.408466 1.265433 -0.437425 0.601390 0.013594 -0.029571 0.904906 0.331241 -0.680562 0.678819 -0.514593 -0.566922 1.772998 -0.045396 0.791277 -0.005142 -1.761133 0.407719 0.161468 1.299592 0.536163 0.328941 -0.484429 -0.114279 0.565874 -0.021389 0.572947 0.496520 0.413595 -1.073908 0.465347 -0.691828 -0.244047 0.847707 -0.157261 1.173281 0.131375 0.805951 0.443583 -0.161235 -0.147303 -0.606038 1.528502 -0.779190 0.284928 0.174084 -0.772786 -0.260059 -0.382167 -0.417828 0.571234 -0.800772 -0.475316 -0.640808 0.433910 -0.923702 0.496285 -0.948504 -0.416807 -0.086571 0.427926 0.993109 0.693441 0.361116 0.717230 -1.959349 0.498986 0.211652 0.398591 0.501743 -0.539451 0.500381 0.267760 -0.827831 -1.097510 1.260354 1.507391 0.313502 -0.327388 -0.674808 0.145025 -0.482679 -0.365968 0.458985 0.810042 -0.680229 0.297109 -0.716853 -0.372940 -1.036393 -2.139898 0.031315 -0.756017 0.741830 -0.421479 0.409616 -0.134230 -0.054440 0.260129 -0.368789 -1.268520 0.209588 -0.152211 0.396686 1.748237 -0.565917 -0.032970 -0.647149 -0.251871 -0.541426 0.527751 0.725121 0.418018 1.019665 1.157026 0.514645 -0.754099 -0.890753 0.410719 0.597465 0.644199 0.651706 -1.105286 -0.688413 0.273470 -0.159153 -1.764934 -0.593723 0.673932 0.687211 -0.618682 0.180099 -0.193898 -0.333073 0.995360 0.973388 -0.105523 0.288095 -0.041930 -0.591310 0.989358 1.585499 -0.349346 0.888766 -0.975252 0.040750 0.681089 -0.992160 0.581160 0.257793 0.208400 -0.576913 -0.654758 -0.088193 0.803778 0.453272 0.337979 0.018471 0.475604 -0.731984 -1.198337 -1.318232 0.191529 1.311461 -0.512444 0.820635 -0.846733 -0.901410 0.314674 0.984021 0.504144 -0.531369 0.690172 -1.102156 0.640083 -1.078926 -1.314842 1.578597 1.777997 0.884605 -0.211485 0.519478 1.192597 -1.909921 -0.944694 -0.459086 0.784520 -0.380183 -2.584021 -1.206068 0.091918 -1.061288 -0.277128 -0.318525 0.608032 0.627566 0.816612 0.841576 -0.098109 -0.779723 -0.521127 1.152490 -0.421692 -0.574089 0.061474 0.122326 0.070334 0.661353 -0.673085 0.441773 0.822908 -0.890085 0.405735 0.796652 0.388190 -0.227866 1.795429 1.265734 0.057507 1.295487 -0.075128 -0.478652 0.699438 -0.178261 0.415852 0.003600 -0.069495 -0.564887 0.415058 0.788832 -0.529132 -1.556139 -0.852364 -0.173216 0.052924 0.719802 0.894038 -1.497303 -1.314308 -0.225197 0.483873 1.162683 0.370240 1.465864 -0.408303 0.736431 -1.695570 0.212842 0.075528 -0.040816 1.068258 0.266005 -0.632071 0.028562 -0.365936 -1.095392 -1.705659 -0.390712 -1.107868 -0.559272 -1.015803 0.968726 -0.511390 -0.270145 0.282536 0.256415 0.916374 -0.163970 -0.188136 -1.076752 0.487452 1.669758 -0.374645 -0.847765 0.723604 0.058262 2.933127 -0.306951 0.332917 -0.399388 -0.101368 0.103142 -0.630499 -0.096290 1.439589 0.985631 0.129534 -0.592446 -0.431995 0.062332 0.395583 -PE-benchmarks/aho-corasick-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -4.606802 4.516197 27.921812 15.956522 -15.969178 -22.747070 -10.833099 -28.392337 13.228210 0.139426 17.406725 3.435957 2.505064 -1.533927 4.186296 1.000519 1.823705 -6.805036 -0.094297 -8.160701 -4.076620 18.875612 13.307255 -19.027488 2.562719 -26.653461 13.151993 11.771809 11.642968 13.734087 0.780406 -5.035331 -6.339610 14.718675 -6.656052 2.553543 3.044939 2.844923 -10.242260 2.262448 6.643600 11.587265 13.329958 -0.857556 19.844532 6.258189 16.075180 6.036234 -13.368394 -2.509240 -12.991044 25.941842 -15.918290 11.015020 1.090481 9.388542 -1.763669 -17.596681 -7.757970 -18.450455 -2.287336 4.104260 -12.166465 -0.061571 -14.874748 4.924481 -1.926769 -7.588685 8.040975 4.243792 18.529360 3.334099 1.048933 -3.023247 -16.280224 3.002289 -3.553400 14.268989 11.134090 -8.870136 -3.837958 3.649309 -5.703021 -11.240992 4.807949 2.677461 2.444864 -4.266595 3.357239 -2.529122 -3.356457 -6.367671 -3.558302 11.918422 -14.591669 7.909674 -5.556361 -2.172409 -11.970503 -6.520753 0.893495 -12.308259 8.682125 7.873260 -1.140734 -2.329717 -1.655398 3.161279 -8.846901 -17.019923 1.777408 0.274154 3.149296 17.632411 -8.649774 0.450248 4.232338 -3.355933 -5.021658 17.178366 4.531899 7.462930 15.618203 24.209422 4.364813 -11.390102 -7.276303 1.912352 14.561919 18.335875 13.056719 -17.273158 -10.745546 -0.600838 2.490461 -25.529633 6.723934 10.261882 15.231251 7.160620 -17.390506 0.239776 -8.131799 21.375547 8.675907 9.868707 4.190213 -2.526625 -15.018901 18.672567 36.816988 -5.689229 13.784808 -7.801026 -5.884789 18.894151 -17.264226 11.788323 7.082989 0.545598 3.255496 -11.232042 -8.596994 15.864942 10.860652 8.240427 12.411650 5.337054 -4.337846 -28.788141 -20.954545 -1.992464 15.238817 -3.609272 25.464775 -14.304783 -11.103047 -6.393931 19.651240 -4.484829 -6.784990 1.909423 -10.423315 10.815360 -21.607465 -19.813487 29.392787 31.715438 4.103600 1.251197 20.409006 17.234150 -12.193459 -9.803035 -8.047404 7.690385 2.884121 -4.927602 -1.565837 -1.179537 -17.815714 -9.607326 2.767845 6.723973 6.556512 -2.301658 -8.521087 10.460936 -19.753717 -11.320946 4.798853 -16.881444 -6.689906 4.273411 0.412057 0.770917 4.739535 -7.279410 -2.856685 9.518823 -12.469492 3.348108 9.478245 13.673525 7.495364 19.867797 14.798746 3.868289 22.679865 10.822295 -9.493135 33.971971 -4.799449 4.996105 5.662239 8.247417 -1.596458 6.660535 4.395569 -8.674541 -8.259775 -18.463466 9.416501 -0.467384 14.868340 -14.462316 -16.769354 -17.940015 -8.358835 15.158602 10.299865 -4.157012 31.165130 -2.471815 4.066325 -37.961882 -1.547508 14.213064 -0.516375 10.596116 9.301440 -10.606838 -28.416902 -5.879208 -5.931520 -0.433100 -7.486338 -13.344363 -10.442607 -10.854062 13.609311 -9.487819 5.808032 19.293854 -2.037120 10.141971 -6.199047 -1.763585 -5.408971 -6.865382 9.593688 5.765587 -19.575754 20.721177 -2.976988 44.569470 -8.495874 13.396676 -11.844068 3.024002 -1.542363 -4.620755 -1.954209 23.473744 13.683678 5.356928 0.206813 0.929882 -9.477326 10.488328 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.045215 0.182871 0.808786 0.006247 -0.450636 -0.991986 -0.269487 -1.462565 0.571594 0.236672 0.696771 0.033084 0.559407 -0.268069 0.026382 0.350417 0.447632 -0.211894 0.197903 -0.424422 -0.112332 0.861945 -0.102647 0.199100 0.144885 -0.876406 0.337369 0.220531 0.568967 0.584173 0.300438 -0.138494 -0.405617 0.235813 0.035866 0.330732 0.341642 0.187549 -0.704925 0.177787 -0.256384 -0.169671 0.547692 -0.025474 0.740757 0.074630 0.223862 0.346100 -0.169640 -0.336958 -0.249101 0.564638 -0.338367 0.277654 -0.028010 -0.317493 -0.103937 -0.055539 -0.089368 -0.037310 -0.177175 -0.330856 -0.318227 0.165375 -0.481708 0.205255 -0.448955 -0.350991 -0.143026 -0.216303 0.423924 0.151034 0.120259 0.283466 -1.132276 -0.008092 0.087472 0.284379 0.424873 -0.021086 0.055315 -0.197234 -0.464534 -0.531311 0.534426 0.722490 0.141153 0.131082 -0.635631 -0.013721 -0.186579 -0.110088 0.434860 0.239892 -0.527467 -0.044264 -0.304455 -0.176161 -0.315070 -1.037833 0.244737 -0.198750 0.285899 -0.251543 0.159208 -0.106555 -0.172158 0.148351 -0.346218 -0.431618 0.320421 -0.202220 0.014791 1.030932 -0.272061 -0.167782 -0.510153 -0.182293 -0.112690 0.425145 0.260152 0.174270 0.362203 0.600317 0.360661 -0.539712 -0.502567 0.412486 0.433084 0.311316 0.285633 -0.472021 -0.343553 0.260560 -0.482217 -0.968368 -0.372002 0.230758 0.565830 -0.205170 0.031703 -0.063156 -0.412309 0.449798 0.463097 0.034004 0.176472 0.021414 -0.565801 0.438400 0.820886 -0.169280 0.503530 -0.309814 0.020902 0.281559 -0.295061 0.223046 0.068115 -0.162131 -0.304438 -0.119466 -0.029109 0.426919 0.246722 0.313767 -0.195865 0.381213 -0.571444 -0.693075 -0.889163 -0.074755 0.899621 0.017093 0.510252 -0.560828 -0.353734 -0.036327 0.699110 0.100143 -0.407440 0.389531 -0.571169 0.403059 -0.713927 -0.645983 1.098278 1.134717 0.581869 -0.083888 0.268227 0.543581 -0.968501 -0.401585 -0.177039 0.224826 -0.146740 -1.337070 -0.493645 0.123832 -0.676071 -0.307813 -0.018616 0.361128 0.217080 0.429934 0.665796 0.016645 -0.173791 -0.398029 0.541837 -0.170084 -0.200548 0.103766 0.048260 0.088335 0.295895 -0.391136 0.174610 0.485155 -0.416796 0.233464 0.290081 0.261206 0.032758 0.898055 0.623303 -0.071557 0.572874 -0.133631 -0.464098 0.668160 -0.167547 0.370847 0.011906 0.092744 0.000277 0.133771 0.417902 -0.346522 -0.510333 -0.586508 -0.390078 0.210891 0.517889 0.249552 -0.901327 -0.833442 0.095857 0.007027 0.720350 -0.002467 0.902735 -0.350872 0.349757 -0.940048 0.152799 0.237972 -0.091291 0.414951 0.149022 -0.323286 -0.316208 -0.139642 -0.771980 -0.769157 -0.169477 -0.427366 -0.277448 -0.433231 0.593161 -0.328945 -0.159458 0.271887 -0.022318 0.669420 -0.164172 -0.007985 -0.540484 0.238342 0.563539 -0.096945 -0.495028 0.463929 0.179866 1.459106 0.035090 0.252280 -0.064226 0.202349 -0.112425 -0.626229 -0.221892 0.772591 0.651406 0.180412 -0.149340 -0.128714 0.102084 0.283278 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = -0.884936 0.532198 3.923119 2.017168 -1.820497 -3.134986 -1.457171 -3.846561 1.780950 0.346215 2.629918 0.592965 0.773363 0.184110 0.759043 0.139493 0.143143 -1.196220 0.347302 -0.957156 -0.406217 2.957221 2.106937 -2.508926 0.089158 -3.686188 2.179156 1.553717 1.408574 2.321319 -0.033402 -0.514964 -0.598893 2.103501 -1.147221 0.213713 0.268150 0.861383 -0.806648 0.349381 0.991323 1.533115 1.601904 0.038896 2.732198 1.276547 2.231502 0.668124 -1.376650 -0.588720 -1.782355 3.164757 -2.553361 1.430436 -0.454176 1.258435 -0.130989 -2.210811 -1.123594 -3.248386 -0.004867 0.677434 -1.905877 0.070684 -2.139258 0.823864 -0.320996 -1.091249 0.667574 0.816798 2.677524 0.569483 0.268383 -0.519971 -2.684889 0.418627 -0.727950 1.679432 1.538025 -1.480311 -1.393262 0.589641 -0.975255 -1.850973 0.897467 0.612516 0.257678 -0.605669 0.605422 -0.021983 -0.846429 -0.556273 -0.710556 2.152958 -1.651208 1.451302 -0.165749 -0.045517 -1.490123 -0.674474 0.203533 -2.060975 1.163432 1.368919 0.222036 -0.666058 -0.644107 0.483867 -1.558750 -2.667773 0.360012 -0.260405 0.172979 1.927014 -1.234813 0.477264 0.804901 -0.452383 -0.057060 2.587487 0.746107 1.025582 2.296811 3.279824 0.238390 -1.674131 -0.942256 0.549168 2.205606 2.410691 1.622228 -2.738163 -1.562413 -0.058221 0.067343 -3.419788 1.006084 1.927996 1.808447 0.344771 -2.725484 0.765593 -1.172876 2.724616 1.972991 1.728061 0.567867 -0.181850 -2.019899 2.443756 5.394040 -0.868938 1.982875 -0.980797 -0.885667 3.324890 -2.698146 1.782575 1.109042 0.388835 0.176789 -1.700641 -1.128185 2.348550 1.761464 1.721361 2.051133 0.609753 -0.322967 -3.818783 -2.803766 -0.660359 2.619970 -0.276203 3.927594 -2.081708 -1.333218 -0.507323 2.542042 -0.345001 -1.078737 0.062399 -1.050683 1.446827 -3.929500 -2.820545 3.879386 3.830414 0.810238 0.238960 2.769878 2.478649 -1.064342 -1.387880 -0.994940 1.459434 -0.074823 -0.287216 -0.061638 -0.169446 -2.741111 -1.311700 0.089330 0.911875 0.874717 -0.343020 -1.441305 1.429364 -2.761495 -1.471442 0.343956 -2.420148 -1.409740 0.275649 0.104105 -0.096296 0.222695 -0.879190 -0.017219 1.592701 -1.843382 0.379843 1.604726 1.414029 1.068325 2.980391 2.211659 0.240606 2.283168 1.334380 -0.903167 4.721355 -0.526639 0.473818 0.783681 1.537095 -0.075199 0.894215 0.739631 -1.107736 -1.372723 -2.759229 1.594170 0.326537 2.090088 -1.872725 -2.220231 -2.353989 -1.012136 2.221490 2.284534 -0.683488 4.543284 -0.124404 1.029544 -5.195290 0.017397 1.669886 -0.209109 1.270776 1.407435 -1.347677 -3.602432 -0.930676 -0.579290 -0.242527 -1.070985 -1.984649 -1.440261 -1.388297 0.985022 -1.699006 0.656853 2.454984 -0.376873 1.337768 -0.715692 -0.306564 -0.911207 -0.597358 1.442236 0.743529 -2.694330 2.870654 -0.645503 6.199267 -1.544702 2.184807 -1.571483 0.908979 -0.529186 -0.416897 -0.142573 3.505748 1.789344 0.609214 0.318804 0.138925 -0.906965 1.289443 -PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = -0.206427 1.283319 9.075586 4.880643 -4.326014 -6.384003 -3.266068 -10.079506 5.214140 0.090800 5.130882 0.799449 1.041806 -1.454503 0.271823 0.055982 0.332934 -2.155582 0.365786 -2.159232 -0.770560 7.467275 2.712333 -5.641245 0.493940 -10.365108 4.356125 3.643595 5.324069 4.436858 0.197484 -1.485028 -1.536809 4.298854 -2.186913 -0.251941 1.285820 0.807548 -4.382008 0.158638 1.782213 4.123380 4.217744 -0.917163 5.777234 0.538281 4.592852 1.540672 -2.676798 -0.352606 -3.852475 8.114697 -4.082632 3.134175 0.867830 1.844375 -0.739052 -5.454999 -2.288916 -3.829714 -0.847861 1.779242 -3.167118 0.125664 -4.731738 1.531890 -0.394044 -2.120223 3.225542 0.877819 5.398725 1.783887 1.219557 -1.576828 -6.447737 1.813396 -0.744918 4.237440 3.299684 -1.908165 0.041205 1.315974 -2.031684 -3.377289 1.899624 2.681853 0.274490 -1.535000 0.993301 -1.611648 -0.707408 -2.153179 -0.977713 3.618479 -4.479461 2.386483 -3.655018 -0.634672 -2.772122 -2.802060 0.070325 -4.117696 2.846989 2.155100 -0.768034 0.253389 1.895384 1.035488 -1.640933 -5.315632 0.506531 0.076740 1.621652 7.376787 -2.220352 -0.666949 0.114335 -0.782511 -2.800006 4.930650 0.602883 2.652391 5.052688 7.328398 1.445048 -4.029673 -2.452101 2.099373 3.956223 5.442735 3.958981 -5.952927 -2.795717 -0.627204 1.607026 -8.771069 1.510053 2.073495 4.499734 0.932113 -4.451943 -0.027427 -2.306144 7.091080 2.813786 1.387502 1.571113 -0.193427 -4.296161 6.295804 11.658231 -1.521336 3.532596 -3.986355 -2.304284 5.264691 -4.789805 3.852761 0.922117 0.938297 1.342450 -4.098692 -1.277590 5.047134 1.666390 2.559563 3.324842 1.563513 -1.274183 -9.233975 -6.759802 -0.320775 4.269649 -1.340757 8.887862 -4.614615 -4.044470 -1.769107 6.114273 -0.869804 -1.271147 1.637575 -4.491414 3.513195 -6.417476 -7.132456 9.211715 10.086329 1.058666 0.452843 6.230401 4.772398 -4.185406 -3.074367 -2.548196 2.484862 1.996577 -3.436524 -0.838361 -0.383513 -5.195750 -3.475459 1.436449 1.714994 2.899251 -0.506454 -1.784867 2.093667 -6.392285 -4.541712 3.848883 -5.476379 -1.666014 0.981534 0.344826 -0.097596 2.914654 -2.613305 -0.934262 3.188481 -2.903664 1.138706 2.840994 3.427603 0.946349 4.997317 5.396653 1.519872 7.620717 3.654602 -2.785714 10.906935 -1.754602 0.955017 1.667282 1.417972 -1.009425 2.748397 1.043965 -2.945632 -2.577425 -6.072998 2.956492 -0.876898 4.209125 -4.307491 -5.391151 -5.107763 -3.337395 4.171735 2.526634 0.049037 10.189293 -1.617566 0.996322 -12.084776 -0.700668 4.728472 0.675549 4.423336 2.768173 -3.390437 -8.497364 -1.825752 -2.138458 -0.901098 -3.002618 -5.832437 -3.648950 -4.201777 5.667618 -2.768567 2.157813 6.722528 -0.258649 3.151414 -3.421960 -0.491092 -2.327953 -1.879674 1.982725 1.480142 -5.634684 5.863300 -1.582512 13.281750 -3.189305 3.872293 -4.239291 1.465117 -0.927441 -2.519452 -0.518513 7.470587 3.587541 1.667614 -0.718793 -0.707997 -3.554999 3.739595 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 2.302878 5.120701 12.946735 4.582918 -13.357805 -15.732324 -4.618942 -23.366507 8.020328 1.538882 7.753882 1.613863 3.342327 -7.012305 -0.506664 7.877882 4.870063 -0.807988 -0.938984 -7.439110 -10.363309 6.906840 -1.447819 -2.158213 5.482881 -11.820068 7.843768 4.833536 7.424480 3.171278 5.772359 -1.976151 -6.349573 8.173612 3.707909 5.625996 3.784913 1.955222 -10.303501 3.885299 -0.073664 -2.976653 9.256268 1.013515 12.308519 1.902123 7.808299 6.138099 -8.386704 -0.048920 -6.275857 14.131035 -6.661689 6.022124 0.718872 -1.187943 -1.291422 -7.344508 -1.013152 1.533611 -5.949433 -7.475557 -6.578270 0.698441 -8.141758 1.061666 -3.330625 -7.654625 0.496085 4.078596 8.000755 2.610993 -1.788313 3.882412 -11.763080 -0.651442 4.313010 7.201121 9.581442 -1.937162 4.731176 -2.906974 -6.995593 -8.062036 9.442251 4.059365 4.843768 -0.268553 -4.648939 -2.513918 -2.479344 -4.655200 6.467920 5.019423 -11.029068 -2.420105 -6.706364 -4.352684 -10.920042 -15.325010 3.096806 -3.175769 6.536915 -3.548295 -2.953291 1.437910 0.037844 1.551985 -4.085700 -5.279187 0.076803 -4.383062 5.055720 15.358346 -0.782196 -4.684820 -3.238313 -4.166087 -4.266379 4.978371 5.261137 0.726231 13.490919 12.718726 6.139586 -6.272482 -8.067296 0.337420 3.653822 8.831177 7.091491 -10.144829 -6.335325 3.181425 -2.344697 -16.233324 -0.718212 0.653136 7.435211 -0.160886 -1.469352 -3.247625 -4.022278 6.689257 2.051557 0.240430 2.336452 -0.935400 -7.195833 9.302498 14.341830 -2.231343 6.220922 -5.691952 1.673700 4.385756 -5.602823 1.361143 2.970825 -5.821479 -2.549990 -2.205504 -3.711712 7.075131 2.219422 -2.285632 1.549851 6.024174 -10.736588 -12.814242 -11.539759 2.888686 11.978483 -1.739795 11.081547 -10.419860 -5.448467 -3.632788 11.489254 -0.408939 -2.981069 5.389932 -9.661013 7.611323 -2.220599 -10.682836 17.454055 15.278890 4.930500 -2.035583 7.180984 6.820544 -18.049356 -8.399681 -4.387191 -0.214899 3.672993 -16.745152 -8.442659 2.644191 -11.408019 -3.152088 1.199566 5.459040 6.438384 4.842495 5.765280 2.060390 -4.755467 -7.844171 6.477181 -3.085450 -1.305603 3.660237 1.351367 2.876417 6.937073 -4.624813 -2.085571 0.534318 -5.770554 3.712322 4.662586 9.814754 1.261395 15.454000 10.152845 -0.273629 14.261371 2.211530 -6.538750 9.344564 -0.105382 7.301372 4.298214 1.665503 -1.874212 2.599852 8.750713 -6.256372 -6.025164 -9.162609 -3.871994 0.197246 6.536292 -0.380812 -7.155826 -14.410728 -3.222021 3.044868 4.309249 -2.348120 12.469379 -2.005997 2.229011 -16.119919 -0.445132 5.048592 -1.190539 8.178183 3.850874 -8.076384 -6.980366 -4.091695 -9.931777 -10.955621 -2.456643 1.279596 -6.288215 -3.407080 9.460941 -3.036569 -0.355819 8.779112 -0.503237 6.293752 -6.978534 2.873564 -4.029800 -0.352094 12.597937 -0.871207 -9.084972 9.460870 2.472266 26.749101 2.880035 3.653439 -3.034668 -3.935117 3.181397 -6.094507 -4.068899 11.053756 7.672502 4.486954 -0.886255 0.813139 -1.294512 10.279418 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 0.327303 0.665291 2.620940 0.019245 -1.825021 -2.310971 -0.874841 -4.574674 2.012079 0.862025 1.618233 0.324106 1.225924 -1.217365 -0.460149 1.108209 0.895318 -0.704643 0.386916 -1.252237 -1.073506 2.143825 -0.421696 0.420916 0.699467 -3.110421 1.949758 0.015893 1.841919 1.543526 1.008499 -0.294810 -1.215917 1.244566 1.168770 1.475376 1.004240 0.717545 -1.513671 0.715670 -0.143570 -0.852861 1.404746 0.500915 2.500211 0.156528 0.255127 0.840832 -0.722702 -0.532749 -0.484970 1.236042 -1.474623 0.781959 0.063594 -0.387347 -0.601804 -0.862247 -0.064423 0.402941 -0.821824 -1.547832 -1.104546 0.586573 -1.606138 0.432836 -1.356743 -0.818107 -0.722670 -0.421563 1.171114 0.718576 0.216247 1.003459 -3.034315 -0.190534 0.518705 0.607047 1.745072 -0.162620 -0.064457 -0.723464 -1.542922 -1.879572 1.829037 2.010752 0.314000 0.114690 -1.025454 -0.262170 -0.682267 -0.348260 1.345354 1.399793 -2.102071 -0.585976 -1.312594 -0.660110 -0.913273 -3.365967 0.738080 -0.914960 1.062787 -0.724447 -0.638687 -0.211538 0.158468 0.343374 -0.579510 -0.762530 0.424876 -0.900592 0.882899 2.971905 -0.107789 -0.868523 -1.630345 -0.966048 0.024427 1.015778 0.723053 0.172333 2.306881 1.861980 1.425587 -1.522314 -1.525928 1.202835 0.594048 0.902748 0.817368 -1.953570 -0.893858 0.749103 -0.543988 -2.970273 -0.735800 -0.191569 1.104149 -0.759212 0.295981 -0.689827 -0.929455 0.852266 1.273906 -0.029395 0.400885 0.169631 -1.405765 1.275692 2.699296 -0.207782 0.912589 -1.396202 0.087311 1.044262 -1.301548 0.572191 -0.174614 -0.468449 -0.909788 -0.578525 -0.041232 1.410659 -0.375473 0.305080 -0.350440 1.027654 -1.541066 -1.859602 -2.289563 -0.100208 2.904525 0.231334 1.668692 -1.971783 -0.381146 -0.200125 2.109010 1.069209 -0.557173 1.179955 -1.559643 1.362120 -1.245343 -2.088997 2.950229 2.927821 1.406149 -0.369497 0.567413 1.317518 -3.067093 -1.367769 -0.823274 0.314699 -0.022916 -3.294511 -1.560323 0.502576 -2.044611 -0.829829 0.076400 0.963850 1.544576 0.741641 1.531013 0.423106 -0.205144 -1.841227 1.918451 -0.330860 -0.800782 0.193505 0.329843 0.232626 1.144147 -0.705438 0.236889 0.807797 -0.586441 0.809747 1.250629 0.798689 -0.403366 2.435572 1.913400 -0.473986 0.862797 -0.138476 -0.684185 1.498279 -0.197078 1.098794 0.687261 -0.094209 -0.075897 0.574525 1.459682 -1.148370 -1.157822 -1.589817 -1.024724 0.072007 1.297415 0.513273 -2.028677 -2.291796 -0.049082 0.113403 1.524473 0.276920 2.645784 -0.448960 0.947752 -2.479364 0.169640 1.253207 -0.236497 1.679196 0.588434 -1.199709 -0.465633 -0.795236 -1.930393 -2.014791 -0.555861 -0.131223 -1.145880 -0.712698 1.739365 -0.514053 -0.222647 0.980227 0.143604 1.634025 -1.050769 0.485286 -1.650130 0.539912 1.744363 -0.385006 -1.304463 1.318505 0.536519 3.816816 -0.090636 0.637985 -0.082249 0.279031 -0.153803 -1.706651 -0.710346 2.206447 1.334915 0.848538 -0.541422 -0.505407 0.044752 1.415582 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = -0.459556 0.049197 1.059405 -0.010576 -0.821911 -1.135107 -0.483713 -1.913333 0.712215 0.515629 1.206836 0.126514 0.850218 -0.498312 0.029073 0.118303 0.569350 -0.671244 0.416907 -0.546266 -0.283478 1.139549 0.099759 0.438568 0.024937 -1.060467 0.849401 -0.020189 0.530504 0.978773 0.428599 -0.192270 -0.715584 0.365536 0.407001 0.745554 0.458178 0.538686 -0.384303 0.144311 -0.056353 -0.753061 0.729253 -0.067606 1.178937 0.017360 0.139293 0.297021 -0.569843 -0.686378 -0.191123 0.230004 -1.018025 0.202270 0.118022 -0.571345 -0.039899 0.072447 -0.179771 -0.518017 -0.242997 -1.033367 -0.395841 0.356163 -0.606892 0.453435 -0.862338 -0.373955 -0.296248 -0.419798 0.589012 0.398987 0.448190 0.910624 -1.298637 0.068510 0.172757 0.167473 0.640461 0.026090 -0.191743 -0.344340 -0.632439 -0.853255 0.709642 0.776448 0.187576 0.047535 -0.798301 0.487973 -0.124830 0.002328 0.533373 0.480100 -0.684487 -0.138404 -0.236225 -0.248886 -0.328262 -1.624839 0.295022 -0.513095 0.410997 0.191753 -0.381016 -0.460577 -0.787332 0.048839 -0.803630 -0.813531 0.448063 -0.579887 0.115147 1.076029 -0.671919 -0.029218 -0.764957 -0.254227 0.487885 0.446324 0.451972 0.366548 0.508725 0.862828 0.534290 -0.916999 -0.722298 0.616064 0.769512 0.253909 0.227931 -0.606787 -0.501518 0.433276 -0.746564 -1.253740 -0.630982 0.378130 0.695164 -0.101766 -0.095121 -0.000605 -0.586550 0.565260 0.979454 0.342153 0.122559 0.194595 -0.866275 0.604577 0.843154 -0.211437 0.775960 -0.090031 -0.086003 0.812245 -0.694304 0.316385 0.228385 -0.010754 -0.576692 -0.370314 -0.235113 0.631436 0.361464 0.746931 -0.421526 0.546020 -0.519557 -1.043979 -1.190619 -0.030866 1.809167 0.360545 0.505634 -0.995981 -0.197133 0.426248 1.038329 0.471269 -0.871887 0.384231 -0.418955 0.624650 -1.365400 -1.055708 1.486826 1.343755 0.740269 0.094646 0.139160 0.870678 -1.355980 -0.406215 -0.499291 0.504141 -0.517747 -1.634594 -0.668394 0.289155 -0.931869 -0.519839 -0.032343 0.512308 0.494106 0.141038 0.670381 0.341431 0.160904 -0.417068 0.813227 -0.190397 -0.712716 -0.070098 0.082832 0.434657 0.247994 -0.282596 0.425504 0.449330 -0.595803 0.238403 0.562990 0.298538 0.104608 1.512613 0.938904 -0.479465 -0.086498 -0.294803 -0.363776 0.772649 -0.314508 0.445477 0.128036 0.328086 0.265143 0.136482 0.916035 -0.532665 -0.778428 -0.785438 -0.644478 0.311014 0.841113 -0.009851 -1.348336 -1.322230 0.399648 0.181763 1.013910 -0.043315 1.402392 -0.287886 0.411719 -1.093044 0.111137 0.463109 -0.199707 0.761805 0.171832 -0.308606 -0.239027 -0.478130 -0.979282 -0.637660 -0.195628 -0.191073 -0.265894 -0.478637 0.720767 -0.349731 -0.274989 -0.085068 -0.006376 0.966512 0.323790 -0.024960 -0.899983 0.477733 0.584231 -0.071744 -0.612296 1.174043 0.324475 1.846515 -0.096724 0.108957 0.007020 0.545802 -0.256715 -0.697101 -0.170717 1.132456 1.032421 0.327831 -0.312185 -0.069400 0.145394 0.398422 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = -1.889451 -0.708601 3.351423 0.104309 -1.779273 -3.553520 -1.584255 -5.802523 2.616758 1.232638 4.215795 0.462397 2.255880 -2.161382 1.059964 1.499538 1.895535 -2.682079 0.816058 -1.569813 0.976684 3.842763 1.134824 0.554279 0.064803 -3.625417 -0.174482 0.716076 1.682327 1.894536 1.081236 -0.854152 -1.537714 0.925044 0.376841 2.873555 2.308305 0.651988 -2.130976 -0.320594 -1.040417 -0.753670 1.999406 -1.242695 4.653135 -1.417197 2.308679 0.825422 -2.155378 -2.032992 -1.317454 3.924140 -2.710515 0.618446 1.312601 -1.128940 -0.537525 -0.880365 -1.532672 -2.572819 -1.098986 -1.410086 -1.270919 0.607449 -0.769836 1.748559 -0.704875 -0.267773 0.046563 -0.677985 2.281632 1.206843 1.501511 2.926414 -3.231644 0.486456 0.263742 1.034584 1.327335 -0.348263 0.034730 -0.960416 -0.534561 -1.855599 2.555599 2.177166 0.547181 0.113624 -2.774284 2.555573 -0.979615 -0.903211 0.681139 0.558047 -3.220121 -0.778911 1.255522 -1.073606 -1.501912 -2.667574 0.550229 -1.512016 0.700029 0.824103 0.640595 -0.775858 -3.483224 0.384342 -3.704338 -2.247624 1.608489 -0.675038 -0.600056 3.017836 -3.334272 0.979906 -1.630019 0.174951 0.167334 1.587591 0.797015 2.199138 1.169532 3.280452 1.302085 -2.452284 -1.831432 1.467908 4.306626 1.409434 0.844180 -1.922122 -1.517382 1.162299 -2.034275 -3.848343 -2.279329 2.284000 2.940376 1.602068 -1.520977 -0.691202 -0.715626 3.933004 2.380813 0.193853 -0.162530 0.645665 -3.098113 2.429601 3.143189 -1.109792 3.311150 0.103645 0.815732 1.527547 -3.117802 1.215331 1.615899 -0.044391 -1.181013 -1.257706 -1.619165 1.627944 2.811169 2.403723 -2.598096 1.967547 -1.071890 -4.144671 -4.681927 -0.889009 3.582634 -0.188851 1.954616 -2.265323 -2.829315 0.081807 3.163798 -0.349268 -3.139551 1.057036 -2.677415 1.866008 -3.181739 -3.119362 6.080277 6.030599 2.760562 1.181763 2.590320 3.168082 -5.133899 -0.320103 -0.271542 1.625510 -0.653728 -5.772294 -1.547439 0.618658 -3.058372 -2.703118 -0.951726 1.351450 -0.896539 2.206752 2.843174 2.441477 -0.463571 0.740778 1.488049 -0.827848 -2.351588 -0.442169 0.452371 1.826267 1.150618 -2.252829 1.389614 2.162258 -3.275892 0.399783 1.551508 1.924080 1.942964 4.207678 3.601794 -0.084926 3.591561 -0.965984 -1.958126 1.102698 -0.615891 1.036354 -0.254526 -0.074060 0.804241 0.137514 1.779995 -1.487425 -2.152359 -2.249060 -0.978906 0.810884 3.239573 0.552432 -5.207968 -3.184455 0.470812 1.896794 1.970310 -0.832802 4.212967 -1.621941 0.900748 -5.797188 0.205020 1.221025 -0.107050 1.257627 0.522646 -0.879533 -3.493911 -0.947592 -2.643740 -3.141543 -0.612958 -1.603151 -0.575221 -3.720088 5.073150 -2.457564 -0.764190 0.402826 0.909300 3.769223 1.758392 -0.303129 -2.402609 1.553346 1.242508 0.301278 -2.068438 3.377230 0.682062 7.302498 -1.122896 0.472945 -0.835076 1.991573 -0.624156 -1.660885 0.061019 3.386880 4.415931 0.281664 -1.150506 -0.575124 -0.850238 1.566952 -PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -1.337626 -0.767512 1.953625 1.320417 -1.321712 -3.479831 -1.119255 -3.814389 2.147136 0.805323 2.982427 0.615232 2.040556 -1.944483 0.601241 0.953059 1.504585 -1.396837 0.128442 -1.318242 -0.159690 3.788282 1.181013 -0.703351 0.067134 -2.269756 0.836599 0.996951 0.915702 2.136688 0.818328 -0.028302 -0.478325 0.851877 -0.509349 2.022801 0.297004 0.805498 -1.166890 -0.611494 0.263747 -0.674264 2.036307 -0.272178 3.088018 -0.385606 2.316038 0.416029 -1.492045 -1.635060 -1.561037 2.335886 -2.159354 0.560350 -0.653882 -0.409820 0.836583 -0.675885 -0.906628 -2.538019 -0.486564 -0.663742 -1.972509 0.120620 -1.184574 1.267178 -0.455652 -0.759868 -0.322578 -0.473417 1.845547 0.789168 0.226203 0.631464 -2.855419 -0.081705 0.039531 0.547335 1.353895 0.163577 -0.780888 -1.104465 -1.134236 -1.403847 2.620633 0.627408 0.569357 1.057061 -1.670165 0.745173 -0.981126 -0.193793 0.889782 0.489605 -1.697720 -0.261571 1.917651 -0.667281 -1.012301 -1.248100 0.850427 -1.051075 0.358262 0.936064 0.606565 -0.300258 -2.054597 -0.011085 -2.912106 -2.021061 0.801007 -1.114107 -0.671456 2.011743 -2.032244 0.308614 -0.976364 0.095556 0.369503 1.831469 0.851909 1.372290 1.567138 2.187088 0.520785 -1.990284 -1.043138 0.989699 3.018600 1.046156 0.573313 -1.267569 -1.528096 0.811544 -1.489908 -2.996505 -1.634196 2.244862 2.182750 0.798376 -1.875622 1.270480 -0.446793 2.318720 2.159241 0.242103 0.166665 0.415383 -2.488075 1.837485 3.022753 -0.757951 2.234533 -0.428002 -0.468570 2.601625 -2.128479 0.498700 1.124217 -0.707248 -1.077334 -0.610740 -0.167228 1.423734 1.384035 1.382016 -0.936241 1.534296 -0.750007 -2.953922 -3.589416 -0.560771 2.929811 0.986544 2.984404 -2.005732 -1.180241 0.139716 1.619440 -0.508915 -1.914791 0.564135 -1.919032 1.450742 -4.238771 -2.691210 5.016498 3.154288 2.376311 1.074463 1.881622 2.303679 -1.827414 -0.165357 -0.430837 1.359271 0.683365 -2.934480 -0.301956 0.185353 -2.692458 -2.256041 -0.602649 0.997354 -0.854592 0.283409 1.584081 -0.365265 -0.684403 -0.080723 0.684740 -1.251078 -1.183797 -0.330180 0.006114 0.609406 0.515713 -0.747567 1.162742 0.609094 -1.855459 0.145732 0.696725 1.419286 1.611367 2.992930 3.788997 -1.070039 2.230463 -0.562192 -1.214764 1.988914 -0.691224 0.749042 -0.072074 1.305137 1.415958 0.038745 1.689176 -0.990927 -0.752664 -1.919593 -0.089502 1.820015 2.022705 -0.876669 -2.450674 -3.225627 -0.047921 0.846099 2.708688 -0.988829 3.404959 -1.658335 0.642974 -4.498667 0.448121 1.070263 -0.039255 0.779463 0.616118 -0.877697 -2.306527 -0.888275 -1.779041 -1.402483 -0.652859 -1.233858 -0.908055 -2.015450 2.225414 -2.658979 -0.187330 1.076919 -0.066771 2.144821 0.369306 0.023142 -1.614150 0.836441 0.592687 0.502540 -1.503702 2.317026 0.184289 5.013265 -0.504672 1.291829 -0.915527 2.436656 -1.178492 -1.855959 -0.261282 2.609318 2.992341 -0.537242 0.520360 0.128699 0.217936 1.483245 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = -0.626068 0.122053 2.226760 1.505160 -1.762344 -2.549593 -1.029292 -3.387838 1.650654 0.568379 2.057577 0.336596 1.269470 -1.371517 -0.096264 -0.230209 0.920596 -0.623006 -0.117652 -1.150749 -0.884905 2.256238 0.306701 -1.366030 0.313461 -2.349216 2.041391 1.113637 0.643487 1.615996 0.603350 0.133695 -1.021765 1.227773 -0.489304 0.746922 0.432677 0.811298 -0.763700 -0.359950 1.039757 0.247529 1.816222 -0.012912 2.143124 0.595217 0.801349 0.597595 -1.386243 -0.946771 -0.340794 0.928580 -1.332827 0.874584 -0.260628 0.113144 0.674993 -1.259449 -0.184518 -1.465442 0.110614 -0.562415 -1.285825 0.141023 -1.351222 0.463311 0.028744 -1.216861 0.285185 -0.835200 1.245215 0.144830 -0.280804 -0.247801 -1.871946 -0.072179 0.472407 0.510336 1.432073 0.186181 -0.409357 -0.740065 -1.397054 -1.324110 1.293482 0.856596 0.623664 0.810419 -0.690415 -0.450193 0.138263 -0.355762 0.954006 1.076518 -1.033674 -0.397097 0.065952 -0.607418 -1.129881 -1.314892 0.893816 -0.790092 0.922858 0.815225 -1.064494 -0.049580 -0.069410 0.091731 -1.269918 -1.227241 0.256917 -1.418108 1.088508 2.202640 -0.620315 -0.815016 -1.101098 -0.841313 0.324141 1.481566 0.438203 0.244247 2.126677 1.897280 0.607356 -1.852964 -1.247373 0.777259 1.217086 1.132997 0.676349 -1.890505 -0.959289 0.445147 -1.035410 -2.668311 -0.667026 0.036083 1.520736 -0.282559 -1.382752 1.304662 -0.946114 1.301664 1.245854 0.590753 0.249504 0.270941 -1.789862 1.386861 2.436211 -0.236213 1.085508 -0.852367 -1.137304 1.635783 -0.801461 0.540513 0.709478 -0.865371 -0.672025 -0.543457 0.492271 1.437677 0.037789 0.835693 0.026329 1.015547 -0.949312 -2.210341 -2.734661 0.197601 2.371640 1.039439 3.095334 -2.125731 -0.633530 -0.219104 2.106815 -0.154042 -0.889669 0.630418 -1.184124 1.313824 -2.346636 -2.296844 3.137657 2.382758 1.315807 0.168781 1.517167 0.702681 -1.007271 -0.628759 -0.803870 0.678358 0.903805 -1.287762 0.037365 0.286659 -1.904982 -1.265547 0.102722 0.878385 0.679463 -0.748901 0.436381 -0.603910 -0.713474 -1.524106 0.905324 -0.880480 -0.227710 0.125292 0.039639 0.081004 0.764429 -0.454342 -0.156340 -0.102126 -0.632669 0.541218 0.718151 1.094157 0.410675 2.223856 2.127878 -1.061707 1.322479 0.101458 -0.584743 2.862236 -0.667803 0.809174 0.656238 1.373779 0.822776 0.382835 1.467448 -1.021590 0.002085 -1.884884 -0.160172 0.887115 1.214750 -1.979563 -1.171647 -2.989385 -0.414900 0.078186 1.877464 -0.439932 3.081958 -0.612597 0.368855 -3.143829 0.022600 1.238862 -0.257844 0.986833 0.628453 -1.249001 -2.168840 -0.634562 -1.697470 -0.916129 -0.570428 -0.557587 -1.243101 -0.619026 1.167112 -0.953935 0.226833 1.854533 -0.323091 0.706593 -0.912062 0.357537 -0.775734 -0.427476 0.471543 0.036066 -1.498641 1.809052 0.177469 3.791568 -0.077459 1.409570 -0.658998 1.492389 -0.634209 -1.820550 -0.658527 2.157606 1.407060 0.279186 0.304991 0.295368 -0.185211 1.631185 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.370479 0.699896 2.470926 0.514536 -1.688809 -2.766733 -0.899702 -4.194782 1.855836 0.687033 1.621270 0.201344 1.170538 -1.073187 -0.340337 1.163069 0.808808 -0.469754 0.140605 -1.276637 -1.611180 2.240986 -0.136747 -0.186407 0.816905 -2.870444 2.154964 0.515300 1.425382 1.613128 0.837955 -0.028417 -0.706837 1.444424 0.584660 1.339884 0.496726 0.769182 -1.150426 0.747491 0.312180 -0.472755 1.607727 0.737156 2.236333 0.883292 0.642741 0.820738 -0.835118 -0.481940 -0.702333 1.297603 -1.458193 0.850818 -0.684763 0.060757 0.036801 -1.274425 -0.051724 0.011034 -0.683526 -1.023741 -1.608562 0.379580 -1.786747 0.325765 -0.928443 -1.112225 -0.577035 -0.092499 1.285921 0.572231 -0.476530 0.323490 -2.785988 -0.289830 0.601832 0.628145 1.779742 -0.454356 -0.368371 -0.588877 -1.790276 -1.862390 2.108875 1.393621 0.691623 0.446043 -0.698089 -0.782895 -0.764788 -0.235076 1.332828 1.542491 -1.559230 -0.447383 -0.617412 -0.720288 -1.343835 -2.709600 0.855180 -0.878841 1.036771 -0.427118 -0.471605 -0.079274 0.225253 0.362812 -0.686241 -0.946655 0.109382 -1.189362 0.864249 2.633724 0.075877 -0.937685 -1.299381 -1.054610 0.056895 1.398816 0.799954 -0.088414 2.777650 1.857213 1.017338 -1.439159 -1.399106 0.662894 0.598997 1.067429 0.953141 -2.078978 -1.111527 0.586565 -0.603796 -2.988500 -0.549353 -0.042069 1.074771 -0.899977 -0.366368 0.395179 -0.865244 0.702879 1.310897 0.115454 0.436248 0.012944 -1.440276 1.353619 3.060878 -0.342244 0.936640 -1.627994 -0.455960 1.542012 -1.177233 0.385058 0.147749 -0.909287 -0.910994 -0.430216 0.345215 1.525295 -0.359746 0.107385 0.339615 0.958835 -1.380046 -1.694641 -2.355267 0.040831 2.647981 0.383350 2.590552 -2.069481 -0.252772 -0.415983 1.903668 0.578094 -0.327830 0.868019 -1.460470 1.300718 -1.766418 -2.185926 3.108681 2.351296 1.546798 -0.217762 0.862865 1.197745 -2.059112 -1.242889 -0.813740 0.427075 0.570214 -2.445579 -1.114332 0.312133 -2.178748 -0.757142 -0.139198 0.969782 1.200682 0.213018 0.971183 -0.507208 -0.758727 -1.882962 1.257612 -0.740875 -0.446667 0.301691 0.088344 -0.155282 0.974385 -0.421778 0.090087 0.297103 -0.626911 0.706167 1.090618 1.016370 -0.080565 2.489890 2.309831 -0.743990 1.117957 0.046475 -0.524956 1.816467 -0.194845 1.072144 0.750049 0.652252 0.207700 0.561697 1.621567 -0.992111 -0.791002 -1.754321 -0.405698 0.639674 0.994970 0.024809 -1.177166 -2.709319 -0.473837 0.108736 2.181205 -0.010806 2.694028 -0.324065 0.937628 -2.693216 0.238233 1.036245 -0.236333 1.326839 0.716160 -1.400957 -0.796117 -0.770012 -1.818264 -1.870604 -0.572941 -0.109453 -1.407049 -0.420585 0.982191 -0.882679 0.010606 1.515070 -0.015716 1.048570 -1.283683 0.527731 -1.336641 0.176755 1.958713 -0.332144 -1.312100 1.086142 0.402410 3.889732 0.032589 1.278096 -0.349197 0.423461 -0.105972 -1.640747 -0.838336 2.191455 1.194210 0.443892 0.188127 -0.136569 0.321268 1.704181 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = -0.073968 0.215438 1.404606 0.254114 -1.000604 -1.559039 -0.614915 -2.371606 1.103620 0.344530 0.926769 -0.011355 0.569347 -0.824896 -0.129465 0.827503 0.521758 -0.370214 0.156543 -0.666084 -0.474485 1.341939 0.040221 -0.070770 0.430960 -1.715168 1.114760 -0.064212 0.776858 1.158663 0.603060 -0.296326 -0.481260 0.726393 0.856408 1.592905 0.619557 0.344379 -0.692922 0.477304 -0.152371 -0.413134 0.740064 0.212337 1.613230 0.401521 0.451697 0.435751 -0.813714 -0.242026 -0.576878 0.951744 -1.175537 0.486399 -0.107259 0.070103 -0.153860 -0.661202 -0.244624 -0.292982 -0.708472 -0.781971 -0.962493 0.293642 -1.091105 0.336119 -0.630401 -0.265699 -0.470267 0.049955 0.778038 0.550343 0.045699 0.759027 -1.464590 -0.170890 0.164104 0.531308 0.981350 -0.549078 -0.064008 -0.480512 -0.801492 -1.010282 1.204858 0.591256 0.378076 0.117357 -0.337881 -0.042193 -0.706429 -0.157694 0.668296 0.695494 -0.923292 -0.387812 -0.349057 -0.249531 -0.448759 -1.662591 0.360095 -0.544106 0.422798 -0.139345 -0.065641 -0.181899 -0.094454 0.389521 -0.605608 -0.380295 0.408913 -0.357985 0.114945 1.331650 -0.067040 -0.321972 -0.748272 -0.532809 0.156130 0.784843 0.425403 0.263348 1.108090 1.195220 1.140591 -0.786084 -0.911650 0.455456 0.665308 0.612314 0.528374 -0.971720 -0.644406 0.347997 -0.326798 -1.589039 -0.466212 0.169634 0.735050 0.061972 -0.271619 -0.284645 -0.419939 0.729799 0.505839 0.120267 0.128633 0.064313 -0.951742 0.858518 1.721894 -0.272588 0.604760 -0.719314 0.228767 0.657706 -0.765380 0.148941 -0.007189 -0.417199 -0.380756 -0.312274 -0.129661 0.786428 0.177889 0.196756 -0.188860 0.660505 -0.886863 -1.220219 -1.198648 -0.109094 1.676629 -0.081296 1.063611 -1.099724 -0.306521 -0.309593 1.071129 0.312606 -0.305796 0.316403 -1.050698 0.769966 -1.049339 -1.245186 2.162385 1.594100 1.050220 0.018650 0.381889 1.135262 -1.670471 -0.480564 -0.494821 0.231062 -0.048829 -1.752422 -0.839881 0.218034 -1.325861 -0.691409 -0.038559 0.572715 0.464388 0.531703 0.550333 0.283057 -0.181338 -0.766724 0.679970 -0.434141 -0.518372 0.126712 0.094172 0.272608 0.569468 -0.461443 0.324264 0.552867 -0.521256 0.345044 0.683858 0.680289 0.148343 1.369028 1.463024 -0.149939 0.748189 0.066573 -0.584606 0.820687 0.153780 0.662050 0.326696 -0.038058 0.297021 0.183634 0.922283 -0.628456 -0.632900 -0.972180 -0.486192 0.375134 0.888523 0.255568 -1.173770 -1.315239 -0.090472 0.316877 1.039044 0.016749 1.455298 -0.207455 0.566721 -1.662406 0.112531 0.967364 -0.108484 0.616785 0.323046 -0.631809 -0.789846 -0.435176 -1.001108 -1.180370 -0.519780 0.082589 -0.603903 -0.497057 1.055899 -0.389817 -0.134017 0.682751 0.271990 0.938509 -0.326764 0.318355 -0.892430 0.123320 0.846264 -0.073007 -0.829398 0.708658 0.506583 2.421510 -0.100207 0.363776 -0.254162 0.275521 -0.121177 -0.871129 -0.315901 1.248394 0.980374 0.286392 0.131972 -0.148064 -0.029743 0.926284 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = -0.188253 0.287117 1.236173 0.743566 -0.796929 -0.819453 -0.409753 -1.327790 0.368510 -0.117425 0.686802 -0.146843 0.020192 -0.353842 -0.012498 -0.208220 0.229621 -0.042711 0.097074 -0.326861 -0.439894 0.476533 0.146714 -0.991236 0.283235 -1.122999 0.953525 0.742772 0.413459 0.639698 -0.174605 -0.124903 -0.572974 0.703404 -0.181560 -0.280666 0.665770 0.127867 -0.499756 0.201823 0.394296 0.805399 0.573241 -0.321561 0.804275 0.762684 0.095369 0.454551 -0.842676 0.105952 -0.097808 0.754101 -0.468338 0.602352 0.363216 0.147754 0.150843 -0.960702 -0.360422 -0.536493 -0.074434 0.013492 -0.137472 0.053911 -0.701285 0.035678 0.138985 -0.558733 0.715027 0.283654 0.623813 0.112737 -0.037462 -0.072029 -0.229800 0.402113 0.476510 0.835218 0.577916 -0.596192 0.363980 0.327140 -0.457115 -0.497183 -0.038781 0.085804 0.498499 -0.166015 0.243929 -0.259388 0.429705 -0.414990 -0.128546 0.595925 -0.047778 -0.012669 -0.739311 -0.116896 -0.787398 -0.786879 0.116847 -0.184662 0.541257 0.526363 -0.587628 0.033609 0.412020 0.443829 -0.172685 -0.563843 0.103071 -0.389723 0.651736 0.820478 0.043959 -0.228904 -0.182574 -0.507541 -0.301676 0.810550 0.166282 0.108532 0.692121 1.290278 0.186488 -0.494411 -0.798768 -0.111930 0.303451 0.917006 0.693947 -1.124874 -0.348781 0.018798 -0.305208 -1.008689 0.245641 -0.233157 0.637598 0.028203 -0.494751 0.241619 -0.651074 0.862069 0.024027 0.314780 0.046330 -0.190322 -0.523289 1.085495 1.235339 -0.213365 0.290888 -0.554883 -0.393836 0.248015 -0.220726 0.300614 0.304864 -0.278047 0.204522 -0.511001 -0.082064 0.616831 0.409812 0.187584 0.639528 0.276152 -0.246197 -1.122241 -0.762031 0.417139 0.583603 -0.220950 1.484292 -0.673392 -0.754863 -0.486012 1.122247 -0.230029 0.076038 0.040057 -0.422004 0.468426 -0.455313 -0.902515 1.220829 1.101756 0.147852 -0.207655 0.749054 0.318080 -0.395276 -0.284625 -0.396100 0.164940 0.172568 -0.505850 -0.279054 -0.019348 -0.602646 -0.263939 0.239397 0.388289 0.600396 0.002838 -0.672513 0.211111 -0.871690 -0.805921 0.433736 -0.641943 0.135575 0.446220 -0.069861 0.131276 0.433236 -0.459512 -0.437935 0.082287 -0.405167 0.206570 0.393775 0.707901 0.128276 0.693650 0.399986 0.294813 1.066158 0.711819 -0.441140 1.524490 0.021618 0.501150 0.606892 0.232494 -0.055214 0.296082 0.427787 -0.344490 -0.235038 -1.033220 -0.008628 -0.008957 0.615341 -0.903082 -0.718057 -1.006157 -0.548842 0.686629 0.245662 -0.108691 1.252542 0.233525 0.069728 -1.259140 -0.220238 0.592711 -0.113004 0.422664 0.368361 -0.705481 -1.590425 -0.187756 -0.529793 -0.396066 -0.396781 -0.338896 -0.557271 -0.267887 0.510098 0.124952 0.367304 1.133140 0.142156 0.091521 -0.449819 0.166327 -0.155101 -0.626732 0.291112 -0.012593 -0.926437 0.632970 0.227613 2.066063 -0.058733 0.435804 -0.622875 -0.210199 0.292437 -0.130017 0.060885 0.730730 0.427402 0.362972 0.071811 0.296007 -0.558664 0.789836 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.078258 0.193757 0.793536 0.121433 -0.537158 -0.962913 -0.297516 -1.579674 0.630491 0.332851 0.698110 0.043043 0.613356 -0.346370 -0.147399 0.206937 0.314936 -0.217721 0.223371 -0.401462 -0.414139 0.993258 -0.178065 0.216715 0.064430 -0.926553 0.796352 0.156317 0.591046 0.699873 0.303777 -0.080187 -0.372035 0.332550 0.071313 0.354211 0.125184 0.415889 -0.442746 0.126271 0.010134 -0.382284 0.591939 0.063318 0.715353 0.162503 0.147788 0.253830 -0.140045 -0.341074 -0.212454 0.205029 -0.519252 0.227529 -0.229839 -0.382519 0.012858 -0.004865 -0.004890 0.008433 -0.132220 -0.515995 -0.436170 0.200608 -0.619661 0.204610 -0.553193 -0.462645 -0.240595 -0.251374 0.427808 0.233173 0.087836 0.202387 -1.240164 -0.013576 0.154866 0.118798 0.539268 0.057192 -0.045538 -0.252087 -0.651370 -0.645962 0.671699 0.752232 0.155724 0.169353 -0.503293 -0.106097 -0.146110 0.019785 0.559480 0.449482 -0.401962 -0.035294 -0.428520 -0.130914 -0.287196 -1.195431 0.307665 -0.324970 0.385480 -0.125115 -0.153059 -0.124687 0.039688 0.040845 -0.295843 -0.555496 0.144548 -0.474982 0.295846 1.031469 -0.145127 -0.289472 -0.562296 -0.299508 0.080976 0.376255 0.363375 0.067681 0.660025 0.543694 0.407431 -0.693204 -0.584979 0.526913 0.253104 0.294036 0.183025 -0.578326 -0.347153 0.230621 -0.411553 -1.077955 -0.340033 0.106674 0.410728 -0.488276 0.073179 0.205831 -0.428471 0.244878 0.654274 0.095925 0.217300 0.117887 -0.536207 0.424154 0.865313 -0.061107 0.366514 -0.442624 -0.221676 0.579137 -0.311175 0.212824 0.039688 -0.147982 -0.403753 -0.212695 0.162362 0.519492 -0.093847 0.343198 -0.032638 0.379266 -0.562424 -0.654555 -0.832239 0.031538 1.193013 0.286470 0.700675 -0.747094 -0.087821 0.227567 0.697681 0.331246 -0.314483 0.405604 -0.459035 0.494638 -0.933567 -0.821050 0.985227 0.823719 0.564806 -0.102544 0.145797 0.491867 -0.752596 -0.445091 -0.350628 0.275920 -0.037668 -1.183878 -0.443357 0.140780 -0.706306 -0.290527 0.049454 0.353951 0.430487 0.101727 0.525818 -0.267202 -0.054749 -0.652945 0.700978 -0.211036 -0.186410 0.011137 0.070454 -0.019447 0.285182 -0.215345 0.212809 0.251053 -0.188806 0.324768 0.359876 0.103699 -0.138147 0.971846 0.744867 -0.417598 0.149323 -0.121355 -0.194719 0.804217 -0.204891 0.337784 0.192773 0.315748 0.067649 0.205808 0.602208 -0.414169 -0.417965 -0.656055 -0.409234 0.300303 0.413058 0.074148 -0.623935 -1.014669 0.056596 -0.101222 0.869829 0.084320 1.024805 -0.277559 0.381615 -0.796618 0.135421 0.289187 -0.145349 0.622180 0.174400 -0.353010 -0.030655 -0.299575 -0.697468 -0.659971 -0.213551 -0.315635 -0.381309 -0.247289 0.239640 -0.287482 -0.111479 0.235016 -0.095347 0.483586 -0.392217 0.100759 -0.601549 0.244896 0.542303 -0.119922 -0.494655 0.535281 0.134470 1.363038 0.018533 0.329575 -0.057756 0.382716 -0.229736 -0.729159 -0.243181 0.851310 0.483192 0.207392 -0.114227 -0.056380 0.206815 0.371653 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator(std::allocator const&) = -0.019398 0.213079 0.708977 0.119211 -0.499655 -0.864851 -0.265703 -1.240320 0.448372 0.293735 0.631338 0.018596 0.548219 -0.222346 -0.112783 0.055037 0.298919 -0.170860 0.186663 -0.368464 -0.450542 0.737102 -0.093122 0.130458 0.085940 -0.711662 0.813252 0.145417 0.366295 0.690286 0.247045 -0.023077 -0.356126 0.324228 0.060732 0.265555 0.095286 0.406850 -0.244754 0.157151 0.100973 -0.332241 0.539168 0.127781 0.559807 0.348386 0.005301 0.227168 -0.210225 -0.343139 -0.094783 -0.018818 -0.496229 0.213970 -0.253005 -0.271311 0.104428 -0.015328 0.045641 -0.150271 -0.042452 -0.491441 -0.374315 0.178861 -0.571314 0.145997 -0.501110 -0.473301 -0.215295 -0.270024 0.341681 0.159012 0.018185 0.178934 -0.959422 -0.023533 0.174619 0.092946 0.494529 0.005082 -0.155255 -0.207586 -0.614512 -0.595305 0.507103 0.528623 0.207266 0.194649 -0.395853 -0.129739 -0.048141 0.067262 0.483285 0.444136 -0.217011 -0.017677 -0.315375 -0.132530 -0.280029 -1.048820 0.282762 -0.276110 0.341397 -0.004594 -0.256773 -0.172973 -0.081960 0.057548 -0.261576 -0.485299 0.149284 -0.506039 0.252438 0.790762 -0.118645 -0.272237 -0.485739 -0.317262 0.240894 0.380083 0.306674 -0.014857 0.558323 0.454309 0.309506 -0.610554 -0.482910 0.357710 0.183199 0.224192 0.187641 -0.497586 -0.328652 0.210531 -0.468180 -0.899131 -0.261058 0.040498 0.347765 -0.440093 -0.042717 0.330677 -0.464790 0.109328 0.599776 0.228321 0.190979 0.068206 -0.478276 0.321869 0.682997 -0.093680 0.336603 -0.308302 -0.301737 0.563911 -0.201395 0.168707 0.058791 -0.192673 -0.353399 -0.156403 0.159427 0.489440 -0.045301 0.330846 0.064485 0.291393 -0.454396 -0.518769 -0.698911 0.059788 1.111724 0.320446 0.641477 -0.699491 0.027094 0.199156 0.642349 0.271369 -0.297317 0.265093 -0.242208 0.404520 -0.923873 -0.707837 0.810480 0.618382 0.479668 -0.093072 0.048321 0.361916 -0.489681 -0.381455 -0.352121 0.242065 -0.114087 -0.830578 -0.358917 0.131701 -0.607946 -0.177080 0.043091 0.326973 0.439900 -0.086073 0.310658 -0.271798 -0.037878 -0.608303 0.488094 -0.203694 -0.172860 0.043713 0.017526 -0.001420 0.166255 -0.094029 0.122323 0.146107 -0.171614 0.237748 0.302328 0.126632 -0.089603 0.909141 0.583972 -0.435231 -0.097145 -0.091553 -0.145557 0.792239 -0.218064 0.316442 0.189880 0.441435 0.133399 0.169421 0.609569 -0.339184 -0.333265 -0.594964 -0.355555 0.324788 0.326027 -0.087059 -0.475054 -0.964335 0.107817 -0.126762 0.876255 0.018901 0.916279 -0.126200 0.331691 -0.581017 0.114454 0.247065 -0.173610 0.497239 0.176899 -0.334187 -0.052578 -0.274618 -0.649330 -0.440992 -0.149161 -0.151866 -0.320189 -0.044973 0.022448 -0.184088 -0.080036 0.193687 -0.131279 0.342664 -0.233145 0.077337 -0.480805 0.140806 0.510991 -0.117424 -0.415095 0.509704 0.166104 1.091880 0.075038 0.329482 -0.020619 0.310423 -0.155561 -0.578886 -0.265921 0.741570 0.404383 0.205710 -0.008956 0.029597 0.246217 0.339360 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.236747 0.408588 1.679406 0.656762 -1.358596 -1.962470 -0.567462 -2.972351 1.264524 0.729312 1.309280 0.092590 0.590428 -0.751471 -0.133527 0.945222 0.553091 -0.280918 0.002291 -1.099673 -1.011473 1.366701 -0.031569 0.038127 0.582204 -2.363734 1.385069 0.339135 0.995557 0.746833 0.681808 -0.127722 -0.619668 1.008938 0.253468 0.930060 0.418437 0.384758 -0.899212 0.612072 0.209057 0.104078 0.955848 0.731307 1.786196 0.611481 0.644318 0.514259 -1.020441 -0.484204 -0.661651 1.180508 -0.967300 0.964769 -0.582207 -0.116791 0.097291 -0.708677 0.106408 -0.350561 -0.484851 -0.722512 -0.702574 0.164399 -1.067812 0.390301 -0.661010 -0.861830 -0.246890 0.469671 1.427974 0.489944 -0.157113 0.618094 -1.786581 0.026957 0.227315 0.685443 1.473803 -0.698948 -0.191597 -0.449375 -1.139186 -1.383089 1.514498 0.786466 0.516860 0.340911 -0.430062 -0.627727 -0.484589 -0.577716 0.902558 0.945222 -1.282086 -0.422599 -0.233773 -0.376006 -0.783910 -1.744873 0.228497 -0.640486 0.590379 -0.049494 -0.193435 0.180495 -0.181380 0.304385 -0.680428 -0.458046 0.575684 -0.590046 0.584822 1.858631 -0.131596 -0.842075 -0.479909 -0.402880 -0.212266 1.023458 0.815161 0.075425 2.068145 1.427507 0.724631 -0.793537 -0.910044 0.406023 0.608412 1.026417 0.806762 -1.198631 -1.057317 0.343944 -0.351908 -1.819099 -0.236966 0.239627 1.372635 -0.322724 -0.252440 0.160932 -0.679422 0.887829 0.831625 0.053488 0.369403 -0.166860 -1.349223 1.168539 2.293743 -0.278199 0.694600 -0.885537 0.154473 0.671995 -0.842813 0.212026 0.447159 -0.709339 -0.367246 -0.440709 -0.320897 1.149245 0.136807 -0.070299 0.300917 1.278359 -1.292405 -1.494380 -1.830963 -0.070364 1.623445 -0.067055 1.730896 -1.407036 -0.319575 -0.556905 1.502166 0.217879 -0.391102 0.569340 -1.009734 0.661032 -1.156220 -1.494132 2.802243 2.584979 1.234435 -0.480618 0.831773 1.479041 -1.617836 -1.063518 -0.311771 -0.006710 0.478513 -2.068480 -1.220710 0.511705 -1.375623 -1.229828 0.072054 0.598978 0.530850 0.175230 0.674393 0.066324 -0.553828 -0.967703 0.734224 -0.631045 -0.277340 0.335437 0.290034 0.177686 0.738615 -0.607082 0.165329 0.556209 -0.695461 0.436523 0.763317 1.362917 0.534305 1.893172 1.620201 -0.212447 1.428016 0.221399 -0.844204 1.618891 -0.244128 0.702307 0.461150 0.186581 0.121565 0.268306 0.888216 -0.864380 -0.471764 -1.459804 -0.072119 0.306908 0.556924 -0.010092 -0.736515 -2.284531 -0.207205 0.043416 1.063318 -0.099405 2.106020 -0.427432 0.127327 -1.957725 0.000919 0.958977 -0.370190 0.920545 0.631638 -0.808407 -0.998183 -0.688185 -1.318306 -1.051125 -0.404838 -0.188728 -0.792806 -0.483502 0.900097 -0.729566 0.427205 1.100985 0.432652 0.931612 -1.061109 0.287871 -1.088166 0.448451 1.339674 0.063845 -1.406067 0.941063 0.147651 3.149427 -0.145563 0.572237 -0.523927 -0.144080 -0.189318 -1.027218 -0.576753 1.523069 1.063338 0.630366 0.185163 0.084983 0.008357 1.627308 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = -4.988518 -1.098128 12.060432 2.869273 -7.977011 -13.107089 -5.393883 -20.503794 9.554644 4.110355 13.375037 1.722015 6.972361 -7.247737 2.223633 5.830142 6.448973 -7.806042 2.597570 -6.216086 -1.307256 14.564837 4.274181 0.711378 1.163951 -13.635483 4.036217 1.778471 7.067255 7.796063 3.921368 -2.491979 -4.457736 4.741137 3.112238 9.969212 5.240642 2.756331 -6.736993 0.394148 -1.097923 -4.117550 7.805245 -1.261730 15.026954 -2.625960 8.728367 2.627049 -8.085742 -5.483619 -7.110320 12.802855 -11.179193 2.897936 1.995142 -2.953160 0.219100 -3.845757 -4.779601 -7.404442 -5.489749 -6.307403 -6.197812 2.135625 -5.457831 5.771916 -5.541337 -1.706343 -0.877105 0.669228 9.043822 5.545673 3.992768 8.648337 -12.437057 1.870041 0.951421 4.382018 7.030273 -2.130601 -0.898607 -2.605850 -4.565020 -7.935379 10.740558 4.611721 2.410042 -0.219116 -6.895262 5.745610 -4.667608 -2.214996 2.587416 3.729427 -10.847768 -1.403123 2.446829 -3.462755 -5.704703 -11.734289 1.375336 -5.969763 2.585847 3.009643 0.162400 -2.517996 -10.328256 0.940599 -11.155151 -8.409998 4.366604 -3.335795 -2.036332 10.509727 -9.215822 1.611742 -4.877277 -0.006955 0.706043 6.510889 4.451185 6.757122 7.369893 11.847330 4.954568 -7.661673 -6.141758 3.826631 12.496804 5.390437 4.388681 -6.753561 -6.860095 3.636578 -4.446105 -14.132702 -5.925808 8.610556 9.466577 5.124411 -4.837152 -1.940987 -2.851155 11.758813 8.665467 1.307962 0.639633 1.137834 -10.026331 9.649942 13.812894 -3.923925 10.131436 -2.570418 1.576855 9.067356 -11.591555 3.374744 3.892088 -0.557413 -4.002010 -5.106636 -5.367244 6.955862 7.034496 5.210999 -4.018060 6.820110 -3.321823 -14.521218 -15.163134 -1.541907 13.992605 0.266349 9.028260 -8.900379 -6.242196 0.469628 9.330348 0.536081 -8.606897 3.273828 -8.467518 6.322450 -14.027413 -12.236017 22.285780 17.846100 8.227857 2.873258 6.934164 12.317866 -16.017277 -3.119090 -3.219487 5.623639 -1.141043 -18.195244 -6.343430 2.251240 -11.525320 -8.694580 -2.036795 4.832760 0.366841 4.166341 6.929385 5.369908 -3.091520 -0.510101 6.609314 -4.633324 -8.154334 -0.609982 0.751261 5.204859 4.286884 -4.918656 4.614183 5.532022 -9.844365 0.454719 5.464456 7.891867 5.594792 15.140061 14.738695 -0.819561 10.004208 -1.185035 -6.383424 6.461551 -2.092076 3.858555 0.541092 0.894918 2.513400 1.375954 7.734548 -5.173788 -8.289646 -8.671862 -1.917729 2.711665 9.875142 0.231410 -15.055099 -13.086923 0.235000 7.042673 8.351055 -2.429753 15.602304 -5.064796 2.557017 -19.059704 0.580710 6.165889 -0.294693 6.424344 2.939644 -4.232372 -8.430732 -5.003822 -8.326360 -7.361223 -2.523706 -4.044021 -3.678154 -10.308314 13.863316 -8.681882 -0.877316 2.465943 2.418734 12.037678 4.020429 -0.043008 -9.076512 5.074441 6.341834 1.735606 -7.589222 12.217077 1.979540 25.030770 -3.393236 2.098265 -3.913992 4.759911 -1.907032 -5.640123 -0.304859 11.955428 13.972865 0.971725 -1.551049 -1.096454 -1.731607 7.464914 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = 0.060593 0.290519 1.029926 0.274513 -0.835013 -1.964334 -0.406917 -2.230246 0.722218 0.207193 1.208392 0.004838 0.819657 -0.450274 0.281031 0.966309 0.778683 -0.214783 0.159742 -0.717447 -0.562401 1.328985 0.011747 0.245601 0.191643 -0.721993 0.185359 0.687228 0.718304 0.528664 0.488806 -0.224895 -0.365104 0.389823 -0.166272 0.659699 0.204199 0.352640 -1.098147 0.176949 -0.445077 -0.614943 1.003240 -0.157923 1.110043 0.031766 1.172669 0.538961 -0.587524 -0.473425 -0.840178 1.508711 -0.673442 0.364360 -0.230904 -0.581792 0.174127 -0.101139 -0.229089 -0.161981 -0.497113 -0.521403 -0.861592 0.103293 -0.674832 0.358926 -0.507697 -0.727223 -0.145850 0.171576 0.769517 0.243499 -0.079530 0.533057 -1.654688 -0.091309 0.259404 0.523066 0.642870 -0.073302 0.331457 -0.362391 -0.702287 -0.750511 1.246034 0.570220 0.559698 0.275180 -1.194435 0.210486 -0.391545 -0.122655 0.673820 0.198171 -0.802938 0.031552 0.051102 -0.387850 -1.064418 -1.493002 0.379080 -0.289715 0.408814 -0.383975 0.492882 -0.124817 -0.862952 0.078103 -0.948260 -1.004283 0.171023 -0.490497 -0.215357 1.317507 -0.696130 -0.040254 -0.426409 -0.133349 -0.279609 0.576038 0.684850 0.355676 0.677639 0.988264 0.385885 -0.835112 -0.767559 0.107608 0.971936 0.700911 0.501577 -0.494277 -0.748762 0.403343 -0.844721 -1.627599 -0.542752 0.937814 0.921384 0.065766 -0.216223 0.070255 -0.455498 0.849921 0.695105 0.184673 0.209881 -0.009181 -0.851399 0.707818 1.166630 -0.430393 1.124627 -0.229627 0.115468 0.637310 -0.635457 0.182471 0.528208 -0.527076 -0.579536 -0.099667 -0.334346 0.651939 0.763996 0.277482 -0.178326 0.623209 -0.952060 -1.200170 -1.456779 0.055032 1.392230 -0.016969 0.888722 -0.913178 -0.773203 0.158139 0.798382 -0.349845 -0.840817 0.460538 -0.996299 0.718131 -1.198650 -1.084954 1.946663 1.410194 0.928497 0.104347 0.666249 0.961430 -1.647918 -0.579440 -0.235393 0.459045 -0.020675 -2.211500 -0.756184 0.166368 -1.266217 -0.351533 -0.237307 0.626933 -0.215606 0.764903 1.173147 -0.245267 -0.431570 -0.166526 0.447267 -0.344063 -0.282144 0.144943 -0.025513 0.261447 0.391949 -0.567432 0.296853 0.399239 -1.059031 0.238737 0.245199 0.679327 0.473804 1.919413 1.386648 -0.186535 1.492794 -0.260780 -0.809818 0.676879 -0.241337 0.632160 -0.080507 0.538702 0.033734 0.132207 1.001540 -0.506111 -0.931895 -0.928084 -0.596795 0.668757 0.816401 0.536127 -1.092685 -1.539748 -0.010355 0.298330 1.286074 -0.424376 1.235497 -0.644479 0.540712 -1.748669 0.288103 0.030474 -0.193745 0.548501 0.249377 -0.563569 -0.478125 -0.318334 -1.097827 -1.378473 -0.107195 -0.498109 -0.412335 -0.804862 0.731850 -0.954712 -0.343973 0.262928 -0.101079 0.987976 -0.014587 -0.000519 -0.555554 0.472756 1.370226 -0.081567 -0.802617 0.886067 0.308037 2.877072 0.266272 0.505754 -0.265510 0.195084 0.087757 -0.754699 -0.338812 1.240778 1.332545 0.013448 -0.036545 0.094923 0.252504 0.602636 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.138923 0.237408 0.777578 0.720269 -1.171524 -2.159595 -0.448651 -1.961113 0.541701 0.074394 1.185263 0.077127 0.800021 -0.542737 0.282228 0.751521 0.789723 -0.080239 0.087702 -0.764082 -1.052854 1.263681 0.215184 -0.075564 0.125289 -0.199575 0.611748 0.734546 0.426157 0.650075 0.487999 -0.148829 -0.380712 0.463227 -0.141531 0.649052 -0.173483 0.534320 -0.803324 0.116970 -0.102288 -1.044009 1.146984 -0.123259 0.963272 0.211983 1.353163 0.536535 -0.919192 -0.495504 -0.983756 1.175838 -1.004274 0.332224 -0.471036 -0.602449 0.573847 -0.000861 -0.223760 -0.504218 -0.493608 -0.878490 -1.058299 0.072098 -0.839327 0.421294 -0.635590 -0.955730 -0.162489 0.374120 0.805666 0.315837 -0.160804 0.524975 -1.463742 -0.199785 0.295163 0.553878 0.750010 -0.007518 0.274536 -0.463363 -0.856026 -0.721468 1.257776 -0.071675 0.730463 0.344296 -1.000486 0.229738 -0.230885 0.043572 0.733142 0.144979 -0.498171 0.133722 0.166599 -0.308898 -1.156586 -1.582153 0.422992 -0.283333 0.440530 -0.086682 0.140460 -0.209626 -1.044822 -0.050549 -1.139361 -1.302014 -0.026046 -0.764444 -0.219907 1.066121 -0.699819 -0.028609 -0.217646 -0.158294 -0.003807 0.587862 0.872400 0.384955 0.709424 1.061586 0.212578 -0.907122 -0.771237 -0.151365 0.967541 0.739654 0.554811 -0.329900 -0.928950 0.405371 -0.881216 -1.565563 -0.433339 1.119426 0.895221 0.210050 -0.463691 0.409025 -0.521216 0.676553 0.745546 0.509859 0.191891 -0.059539 -0.892295 0.783421 1.006943 -0.412369 1.167506 -0.023413 -0.095657 1.096685 -0.610211 -0.029364 0.630949 -0.688478 -0.659975 -0.045105 -0.390977 0.633864 0.760109 0.189385 0.146894 0.634350 -0.979832 -1.303285 -1.245544 0.327818 1.803736 0.282796 0.985778 -1.115908 -0.474866 0.466258 0.614317 -0.362548 -0.904696 0.264215 -0.758472 0.801543 -1.642401 -1.211052 1.936523 0.790688 0.805707 0.253687 0.474535 1.012287 -1.326137 -0.552599 -0.453590 0.507627 0.019968 -1.776048 -0.686060 0.177750 -1.350619 -0.301687 -0.066200 0.730467 -0.104300 0.234647 0.781617 -0.548626 -0.351108 -0.242875 0.316849 -0.466580 -0.260874 0.212637 -0.161762 0.370835 0.202272 -0.174182 0.334865 -0.074641 -0.965896 0.170940 0.121683 0.772968 0.558925 2.183712 1.578959 -0.513863 1.045580 -0.154901 -0.732859 0.933162 -0.299722 0.753176 0.010663 1.041862 0.247800 0.027050 1.390145 -0.508791 -0.859177 -0.980754 -0.670532 0.945737 0.831542 -0.008434 -0.717067 -1.850424 0.034060 0.355615 1.438028 -0.653090 1.198831 -0.612224 0.421251 -1.580881 0.265138 0.088721 -0.259225 0.650750 0.291501 -0.532096 -0.332871 -0.511169 -0.994736 -0.864672 -0.167644 -0.178072 -0.406498 -0.374821 0.150259 -0.943783 -0.351007 0.204026 -0.344100 0.787264 0.070755 0.035053 -0.385990 0.355821 1.331591 -0.003005 -0.824524 1.256478 0.355278 2.861789 0.512115 0.474695 -0.292500 0.247024 0.085809 -0.646607 -0.345445 1.266537 1.308651 -0.098047 0.276574 0.421511 0.448026 0.640230 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.300953 0.427049 2.004031 0.707255 -1.506246 -2.254431 -0.765505 -3.671178 1.618039 0.928188 1.548626 0.108208 0.764599 -0.877574 -0.297522 0.990464 0.458404 -0.552694 0.139139 -1.214142 -1.314116 1.976482 -0.053576 0.126459 0.561220 -3.095470 1.985400 0.358841 1.277543 1.126321 0.728945 -0.127541 -0.620487 1.271756 0.280819 1.123223 0.365640 0.606696 -0.828810 0.748520 0.454918 0.113608 1.202723 0.827958 2.110848 0.815187 0.638136 0.560875 -0.959427 -0.593861 -0.724566 1.104922 -1.280535 1.002536 -0.827504 -0.125470 0.118823 -0.908088 0.052211 -0.249873 -0.562046 -0.838055 -0.965879 0.301490 -1.393752 0.484479 -0.871234 -0.974361 -0.345089 0.413671 1.669232 0.679800 -0.196101 0.563300 -2.297419 0.092500 0.270024 0.651635 1.713056 -0.819716 -0.422219 -0.406044 -1.495538 -1.721903 1.816944 1.224921 0.523778 0.323592 -0.360133 -0.806336 -0.645969 -0.549489 1.102080 1.356144 -1.369225 -0.475919 -0.402796 -0.408055 -0.917154 -2.080647 0.353574 -0.877632 0.818973 0.027053 -0.367145 0.081693 0.107752 0.240601 -0.742787 -0.701675 0.494881 -0.867909 0.986384 2.287234 -0.049704 -0.966437 -0.747831 -0.616703 -0.140752 1.245952 0.971524 -0.008533 2.684273 1.687691 0.844336 -1.075307 -1.196053 0.683010 0.627821 1.123211 0.860475 -1.646588 -1.180770 0.328576 -0.286054 -2.245597 -0.320832 0.127096 1.384667 -0.762639 -0.205715 0.481640 -0.779951 0.959085 1.224896 -0.012376 0.471369 -0.099590 -1.562590 1.476203 2.936258 -0.190082 0.684012 -1.391630 -0.141754 1.211817 -1.121522 0.355692 0.504582 -0.683068 -0.632291 -0.628326 -0.022400 1.383475 -0.184231 0.112433 0.496696 1.411436 -1.289960 -1.650283 -2.156724 -0.015641 2.083535 0.130257 2.308546 -1.787987 -0.183697 -0.461108 1.796339 0.598943 -0.354639 0.738430 -1.154009 0.853885 -1.630745 -1.899489 3.156544 2.866432 1.473343 -0.479783 0.960446 1.714371 -1.654481 -1.214826 -0.506659 0.206745 0.631726 -2.298864 -1.233999 0.544668 -1.604269 -1.445843 0.021130 0.709381 0.864113 -0.002419 0.620236 -0.212455 -0.682257 -1.409289 1.081234 -0.828537 -0.365545 0.301306 0.324497 -0.047444 0.883248 -0.580130 0.317115 0.551098 -0.587518 0.671763 1.076859 1.287951 0.365767 2.083309 2.016499 -0.536288 1.355112 0.254307 -0.600984 1.975300 -0.280823 0.761953 0.700769 0.331553 0.183391 0.414320 1.059492 -1.025943 -0.490969 -1.722281 0.114918 0.414231 0.606542 -0.107138 -0.802957 -2.759813 -0.356869 0.048039 1.483768 0.091579 2.624211 -0.415832 0.283392 -2.311058 0.023822 1.103844 -0.337089 1.229240 0.716954 -0.957303 -0.908524 -0.872662 -1.473525 -1.251544 -0.576924 -0.371571 -1.085660 -0.544589 0.882223 -0.851683 0.489159 1.360272 0.420581 0.918385 -1.425054 0.369909 -1.447703 0.456291 1.477919 0.003242 -1.554001 1.089885 0.042615 3.528467 -0.332183 0.844010 -0.564290 0.196044 -0.365567 -1.381357 -0.604478 1.883200 1.003731 0.632061 0.188501 0.000663 0.132790 1.834503 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = -0.283001 0.812089 4.891074 3.245906 -4.629260 -5.209632 -1.911674 -7.687143 3.921896 1.149178 3.376495 0.838147 1.737968 -3.409827 -0.594934 1.305531 1.934799 -0.382122 -0.610570 -2.755019 -2.749832 3.865420 0.394270 -2.643945 1.747285 -5.428729 4.504145 1.162135 2.172564 2.620030 1.787963 -0.051920 -2.117013 3.065043 1.141820 2.684766 1.144508 1.170841 -2.342113 0.334304 1.586730 -0.314944 3.172574 1.306196 4.991326 0.875723 1.949322 1.311734 -3.639627 -0.910884 -1.499640 3.041971 -3.126929 2.512685 -0.471428 0.719500 0.715090 -3.030399 0.012537 -1.987356 -1.004525 -2.255664 -2.763552 0.221293 -3.216000 0.816693 -0.739557 -2.184953 -0.226808 0.160123 3.033200 0.985698 -0.639707 0.578267 -4.079854 -0.588206 0.968967 1.788564 4.003571 -0.397698 -0.299811 -1.958710 -3.079143 -3.281122 3.727869 0.904741 1.348314 1.169984 -0.725951 -1.473611 -0.620655 -1.238148 2.189276 2.446535 -3.720784 -1.314444 -0.624525 -1.274166 -2.062763 -4.162207 1.277217 -1.816571 1.683280 0.551927 -2.192337 0.586126 0.258116 0.845206 -1.900374 -1.410868 0.789950 -2.083789 1.721227 4.833651 -0.102814 -2.392231 -1.727330 -1.624379 0.035665 2.871684 1.316733 0.544703 5.541274 4.299908 2.187178 -2.795341 -2.422812 1.154667 1.775910 2.761060 2.039343 -3.771055 -2.467748 1.120958 -0.753765 -5.566186 -0.784021 0.065682 3.353803 0.238041 -2.088341 0.291391 -1.578390 2.463101 1.639134 0.736075 0.517459 0.084086 -3.527802 3.063232 5.824174 -0.673211 1.750187 -2.090177 -0.481823 2.488518 -2.159140 0.449743 0.443900 -2.105743 -0.730478 -1.140164 -0.310301 3.164828 -0.360152 -0.352714 0.336282 2.639722 -3.155082 -4.798057 -5.135018 0.241364 4.953636 0.993080 5.601611 -4.279279 -0.993322 -1.556638 3.986507 0.122478 -0.914076 1.334108 -3.106944 2.634853 -3.247476 -4.696301 7.452541 5.418247 2.621305 -0.398675 2.556697 2.476157 -4.038268 -2.303691 -1.703566 0.169553 2.090421 -3.629668 -1.844989 1.035588 -4.396386 -2.812737 0.714055 1.706632 2.027088 -0.712193 1.202720 0.085739 -1.340823 -3.321737 2.155289 -1.665548 -0.683553 0.701562 0.357208 0.793005 2.289124 -0.894554 -0.445473 0.006412 -1.301841 0.820681 1.631529 3.508096 0.935194 4.932956 4.980068 -0.999601 3.270513 0.871020 -2.120571 5.103429 -0.692566 2.065763 1.567416 1.109615 1.070088 0.800808 3.249076 -2.322558 -0.508233 -3.929659 -0.682695 0.870641 2.378121 -2.781465 -2.010285 -5.799021 -1.096356 0.484076 2.587080 -0.739759 5.881054 -1.193694 0.412050 -6.332233 -0.216341 3.655316 -0.659796 2.598827 1.611704 -2.801081 -4.043458 -1.772112 -3.356015 -1.957227 -1.434819 0.448207 -2.655737 -0.808896 3.051440 -1.702434 0.946435 3.985379 0.275587 2.243111 -2.745377 1.288080 -1.933532 -0.266164 2.181344 0.187956 -3.495796 3.310058 0.809721 8.457904 -0.025640 1.900267 -1.583671 0.726398 -0.714608 -3.229028 -1.640373 4.197297 3.019219 1.357785 0.784807 0.518048 -0.852692 4.533856 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.581781 -0.181135 1.459272 0.890202 -1.054139 -2.528114 -0.753432 -2.879617 1.405425 0.509678 1.948449 0.290875 1.352513 -1.159677 0.287448 0.775110 0.946817 -0.751761 0.168785 -0.905735 -0.540804 2.566269 0.587644 -0.295702 0.061982 -1.511930 0.801810 0.760531 0.846157 1.379739 0.548263 -0.100792 -0.313066 0.698377 -0.349382 1.202081 0.066758 0.698840 -0.903460 -0.224809 0.100595 -0.675413 1.469349 -0.148126 1.920932 -0.072974 1.598731 0.365970 -0.973907 -0.959300 -1.141939 1.620948 -1.471732 0.442854 -0.549038 -0.464957 0.564908 -0.356466 -0.498064 -1.316753 -0.434975 -0.607821 -1.387030 0.112905 -1.012748 0.751816 -0.524494 -0.787735 -0.246039 -0.102468 1.262783 0.602555 0.102898 0.432800 -2.201729 -0.005418 0.185095 0.451496 1.014370 0.079996 -0.286855 -0.654335 -0.969871 -1.115403 1.880330 0.550877 0.545949 0.624758 -1.179427 0.331569 -0.613420 -0.061382 0.742434 0.501667 -1.062659 -0.018797 0.793473 -0.432094 -0.939859 -1.389121 0.539302 -0.767776 0.417378 0.399959 0.342411 -0.204736 -1.201263 -0.005103 -1.737271 -1.547056 0.364123 -0.904409 -0.296162 1.567312 -1.187996 0.072446 -0.611863 -0.061157 0.128965 1.151754 0.749865 0.765776 1.238840 1.483743 0.451353 -1.408476 -0.844801 0.578075 1.767252 0.831766 0.491228 -0.926232 -1.087463 0.510369 -0.972591 -2.282611 -0.950808 1.467196 1.349745 0.230612 -1.025512 0.832221 -0.440107 1.413554 1.473044 0.244815 0.236540 0.227426 -1.541422 1.247354 2.104865 -0.519197 1.490906 -0.427802 -0.397161 1.812565 -1.354011 0.381958 0.698827 -0.533860 -0.767488 -0.461030 -0.096551 1.092462 0.794260 0.795128 -0.327611 0.955239 -0.746159 -1.998021 -2.343689 -0.164702 2.196584 0.593149 2.045147 -1.475993 -0.776516 0.291069 1.142546 -0.267006 -1.189926 0.461823 -1.289544 1.081889 -2.818307 -1.957195 3.251017 1.980725 1.487873 0.557050 1.158413 1.540977 -1.418393 -0.431034 -0.448379 0.894193 0.387816 -2.262886 -0.491801 0.172668 -1.887515 -1.198808 -0.319532 0.723560 -0.311587 0.242405 1.079371 -0.476342 -0.556097 -0.306623 0.632989 -0.873422 -0.692035 -0.121945 0.005396 0.314943 0.452710 -0.490812 0.670866 0.338867 -1.238692 0.206833 0.466371 0.917693 0.870034 2.338062 2.567222 -0.768063 1.494124 -0.281522 -0.785879 1.489167 -0.511042 0.584638 0.053939 1.034985 0.698505 0.178827 1.361705 -0.746662 -0.738324 -1.439715 -0.230770 1.205204 1.232714 -0.386267 -1.508364 -2.325130 -0.095631 0.529392 1.957457 -0.587108 2.339405 -1.030110 0.548960 -2.940793 0.320102 0.584369 -0.113220 0.825131 0.470571 -0.720952 -1.222867 -0.699667 -1.255490 -1.137433 -0.438114 -0.838891 -0.675894 -1.200021 1.149321 -1.692118 -0.144201 0.692294 -0.127882 1.367398 0.005194 0.059930 -1.104173 0.579789 0.905920 0.200311 -1.083177 1.575749 0.157109 3.676523 -0.191718 0.915252 -0.625692 1.334578 -0.567420 -1.275794 -0.285243 1.907933 1.892946 -0.222108 0.279898 0.161957 0.234916 1.064742 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = -0.034725 0.055992 0.747198 0.039840 -0.311154 -0.756963 -0.299282 -1.440862 0.627782 0.273501 0.728482 -0.006826 0.531995 -0.365845 -0.008772 0.286378 0.268782 -0.339045 0.284781 -0.266382 -0.061785 1.018338 -0.048932 0.235161 0.025225 -0.953045 0.370804 0.084855 0.604215 0.568466 0.202757 -0.162872 -0.249279 0.220059 0.049337 0.408715 0.303191 0.264142 -0.503582 0.053478 -0.200522 -0.228906 0.407398 -0.113441 0.754837 -0.087832 0.256045 0.182394 -0.119509 -0.301860 -0.284988 0.541296 -0.472582 0.179271 -0.003377 -0.380713 -0.103706 -0.028454 -0.187565 -0.136807 -0.193626 -0.340813 -0.302807 0.171367 -0.426993 0.297649 -0.402627 -0.194855 -0.106056 -0.099607 0.468258 0.317328 0.295384 0.356064 -1.065054 0.116883 0.062116 0.170811 0.356388 -0.034048 0.071493 -0.131272 -0.374695 -0.525375 0.655765 0.725565 0.085491 0.017254 -0.473373 0.149587 -0.230298 -0.095178 0.328641 0.301225 -0.478699 -0.010969 -0.261671 -0.088094 -0.161055 -0.951363 0.136814 -0.373870 0.243964 -0.008252 0.125504 -0.086313 -0.084891 0.151648 -0.385751 -0.555620 0.278779 -0.189240 0.031532 0.904330 -0.326146 -0.044981 -0.405844 -0.091935 -0.079827 0.348083 0.254829 0.316050 0.398314 0.582703 0.360685 -0.526131 -0.471886 0.543781 0.510126 0.276933 0.160221 -0.556158 -0.297993 0.197188 -0.302727 -0.940849 -0.413754 0.297900 0.476189 -0.210565 -0.049145 0.015517 -0.243617 0.514241 0.562463 -0.045032 0.118836 0.132347 -0.526750 0.504319 0.843548 -0.142008 0.438991 -0.318374 -0.012871 0.396549 -0.448348 0.241854 0.059235 0.058463 -0.231113 -0.307932 -0.031200 0.427207 0.187229 0.415598 -0.252253 0.366680 -0.441166 -0.754355 -0.828348 -0.093887 0.909695 -0.016950 0.545509 -0.514916 -0.390662 0.129128 0.677563 0.180202 -0.366777 0.339471 -0.568129 0.418402 -0.781521 -0.747537 1.064073 1.007629 0.541152 0.012629 0.304614 0.660289 -0.918209 -0.302633 -0.222739 0.310101 -0.076843 -1.291079 -0.489440 0.088074 -0.630970 -0.416474 -0.032819 0.264155 0.159260 0.403322 0.521034 0.093950 -0.150482 -0.265430 0.642888 -0.241049 -0.292292 -0.051758 0.091115 0.097823 0.326254 -0.403513 0.302437 0.476937 -0.382565 0.217609 0.356700 0.151066 0.021678 0.849798 0.754334 -0.124118 0.450128 -0.106148 -0.312254 0.559741 -0.133328 0.199015 0.031167 0.014473 0.015856 0.165947 0.390605 -0.344806 -0.543823 -0.601456 -0.276155 0.162397 0.486548 0.237769 -0.862011 -0.713043 0.018818 0.146968 0.625858 0.108792 0.942107 -0.354572 0.290617 -0.973761 0.098455 0.279884 -0.068108 0.507746 0.121363 -0.214079 -0.350253 -0.227708 -0.555721 -0.740027 -0.282029 -0.529002 -0.253071 -0.596896 0.656182 -0.368265 -0.099290 0.199188 0.138203 0.642430 -0.137518 -0.021437 -0.656326 0.348612 0.357850 -0.057980 -0.471502 0.508328 0.091059 1.422775 -0.209007 0.170003 -0.180819 0.349773 -0.241574 -0.534206 -0.052848 0.756132 0.630549 0.140350 -0.210338 -0.130341 -0.035073 0.294421 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.192737 0.202784 0.279738 -0.031681 0.047784 -0.209471 -0.026216 -0.358388 0.103034 -0.022495 0.077260 -0.125920 0.105121 0.027922 -0.022431 0.105837 0.018276 0.121438 0.103078 -0.004490 0.005201 0.154977 -0.143808 0.033306 0.064580 -0.255399 0.030001 0.095707 0.244137 0.123904 -0.028054 -0.076004 -0.011022 0.057760 -0.106335 -0.108509 0.158245 0.023784 -0.283760 0.096072 -0.232555 0.123653 0.022604 -0.019904 0.031372 0.146747 -0.057301 0.106815 0.108774 0.046906 -0.043881 0.218951 0.060654 0.128419 -0.029918 -0.111939 -0.076114 0.019885 0.012906 0.062774 0.004300 0.078451 0.016803 0.012085 -0.168094 -0.013484 -0.052970 -0.140491 0.026454 0.074321 0.092638 0.063337 0.082331 -0.010211 -0.309318 0.076404 0.045822 0.144846 0.070425 -0.104219 0.183502 0.060817 -0.074843 -0.132798 0.127786 0.260051 0.088408 0.017881 -0.078095 -0.139919 -0.019977 -0.062460 0.085736 0.078825 0.031996 0.102419 -0.314097 0.057161 -0.009677 -0.342130 -0.025216 -0.059320 0.062750 -0.128356 0.222162 0.072132 0.207671 0.211943 0.117324 -0.103978 0.138018 0.051328 -0.057864 0.310210 0.065815 -0.077831 0.000370 -0.043797 -0.204254 0.130282 0.010463 0.032391 -0.035755 0.116511 0.090220 -0.051774 -0.109186 0.123896 -0.001889 0.139434 0.115248 -0.223378 -0.043494 0.004795 -0.089488 -0.274382 -0.000944 -0.013652 0.100835 -0.203331 -0.000364 0.011664 -0.130480 0.066789 0.009510 -0.028422 0.079718 -0.040043 -0.049693 0.106809 0.231219 -0.090532 0.068819 -0.114171 0.016706 -0.154631 0.073214 0.072919 -0.116084 -0.018187 0.121667 -0.055825 0.026448 0.136633 0.098271 0.052114 0.045513 0.020704 -0.286764 -0.179367 -0.105917 -0.017352 0.108118 -0.253277 0.139038 -0.025775 -0.240636 -0.082723 0.250295 -0.090138 0.070925 0.078080 -0.177877 0.086194 -0.036175 -0.156336 0.160777 0.255917 0.097417 -0.137303 0.046853 0.127345 -0.212120 -0.177017 -0.000773 -0.043485 -0.055807 -0.419640 -0.294374 -0.029914 -0.121829 0.046480 0.067448 0.041485 0.048568 0.303706 0.083315 -0.008899 -0.174807 -0.133349 0.141615 -0.101022 0.096548 0.088706 0.023789 -0.056607 0.136336 -0.235839 -0.040710 0.288678 -0.101184 0.072770 0.034842 0.031817 -0.063462 0.212053 0.040876 0.151706 0.247704 0.086459 -0.188720 0.279331 -0.007830 0.060397 -0.016855 -0.037507 -0.152590 0.104524 0.015175 -0.078228 -0.215315 -0.250221 -0.144544 -0.003237 0.031170 0.242507 -0.196691 -0.042256 -0.052260 -0.018896 0.144319 0.090626 0.191690 -0.051620 0.100795 -0.171351 0.035791 0.019834 -0.069998 0.122187 0.068909 -0.083938 -0.230015 0.019136 -0.152208 -0.369413 -0.143943 -0.295554 -0.027151 -0.125724 0.085650 0.005295 0.014160 0.161430 0.104144 0.114517 -0.204431 -0.021311 -0.143580 0.046937 0.201396 -0.099227 -0.171407 -0.060996 0.049218 0.414911 -0.021575 0.069172 -0.114192 -0.135674 0.039361 -0.070722 -0.058539 0.188343 0.070181 0.110734 -0.041193 -0.013093 -0.061189 0.060299 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = -2.977945 -0.952556 4.112276 0.406529 -2.912097 -3.971970 -2.050674 -6.974956 3.165129 1.773785 5.312192 0.861855 2.962215 -2.887213 1.006957 0.745151 2.483555 -3.438996 1.143180 -1.974579 0.819406 4.574214 1.460628 0.625298 -0.023030 -4.192429 1.018016 0.303640 1.769420 2.855805 1.503785 -0.949802 -2.607491 1.179331 1.169371 3.540609 2.664493 1.230349 -1.964912 -0.567967 -0.542636 -1.835041 2.623843 -1.331328 5.673943 -1.788833 2.042421 0.849741 -3.132633 -2.802470 -1.157481 3.302802 -3.894872 0.758508 1.926584 -1.619938 -0.420007 -0.653612 -1.622741 -3.569048 -1.115987 -2.938299 -1.322811 0.949843 -1.139257 2.191859 -1.618801 -0.352653 -0.135116 -1.493286 2.611693 1.508887 2.229917 3.917162 -3.826354 0.550121 0.375929 0.962276 1.913191 0.220243 -0.371225 -1.458706 -0.992675 -2.523212 2.689833 2.381170 0.460153 0.031158 -3.335259 3.322221 -0.647930 -0.824067 0.954842 0.919434 -3.929064 -0.998214 1.061482 -1.289806 -1.330973 -4.017663 0.757847 -2.065655 0.979156 1.616123 -0.689968 -1.409558 -4.434753 0.234384 -4.473297 -2.901242 2.125872 -1.323176 -0.404010 3.589082 -4.067778 0.932716 -2.416027 -0.008839 1.233562 1.761137 1.055279 2.660625 1.386628 3.976538 1.870569 -3.317090 -2.278866 2.179195 4.948173 1.329077 0.792140 -2.202098 -1.815450 1.663087 -2.614340 -4.598973 -2.909369 2.483334 3.569946 1.996331 -1.737611 -0.914545 -1.261561 4.314280 3.259599 0.817955 -0.185440 1.030223 -3.875627 2.827524 3.310148 -1.146433 3.794497 0.539303 0.569796 2.490183 -3.729490 1.468149 1.679817 0.253719 -1.629038 -1.731566 -1.986010 2.132556 2.904995 3.166732 -3.223849 2.403999 -1.216527 -5.154458 -5.650231 -0.786975 5.510376 0.738141 2.072089 -3.245592 -2.562724 0.753456 4.042296 0.404367 -4.180594 1.280925 -2.574871 2.396069 -4.578116 -4.026360 7.168874 6.901944 2.997923 1.373183 2.401904 3.713220 -6.154335 -0.547343 -1.106646 2.101298 -1.313747 -6.414442 -1.813807 1.040017 -3.711823 -3.263856 -0.673408 1.687401 0.026353 1.461194 3.046197 3.166828 0.199130 0.373348 2.397439 -0.813967 -3.306931 -0.680477 0.497965 2.612186 1.282296 -2.041783 1.676183 2.134195 -3.546474 0.351354 1.980206 2.151141 1.929500 5.406560 4.245106 -0.753228 2.422938 -1.221261 -2.163580 2.022039 -1.116014 1.280224 -0.081486 0.248440 1.405781 0.187239 2.747160 -1.971365 -2.628165 -2.795624 -1.653219 0.821208 4.129647 -0.621089 -6.436708 -4.377768 1.157238 2.038924 2.427461 -0.890318 5.532170 -1.809344 0.904534 -6.434224 0.090605 2.092091 -0.276825 2.107307 0.549065 -1.006950 -3.603544 -1.533427 -3.386867 -2.591786 -0.707625 -1.219703 -0.684598 -3.819947 5.761014 -2.394548 -0.910771 0.078658 0.706455 4.641602 2.513129 -0.343989 -3.132524 1.841452 0.986256 0.413757 -2.487978 5.041658 1.014423 8.259050 -1.288199 0.138097 -0.702573 2.735610 -1.125578 -2.250406 0.006875 4.198779 5.335295 0.780561 -1.542898 -0.478543 -0.980546 1.869311 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = -2.991667 -0.996645 5.508614 -0.014236 -3.858254 -5.298227 -2.534295 -10.056582 4.524754 2.302694 6.750047 1.048584 3.836561 -3.558835 1.148952 2.084873 3.301428 -4.399100 2.026804 -2.579145 1.204764 6.847107 1.567337 1.958263 -0.136533 -5.807530 0.936123 0.011969 3.718266 3.643457 1.960715 -1.800483 -3.235056 1.340693 2.127700 4.811309 3.365488 1.592522 -3.577886 -0.185770 -1.790704 -3.461753 3.397795 -1.871540 7.413010 -3.274662 3.142651 1.179596 -3.636035 -3.416481 -2.127209 5.032973 -5.119754 0.986105 2.657661 -2.873055 -1.271776 -0.124242 -2.247285 -3.199730 -2.206163 -4.252328 -1.761971 1.485117 -1.773986 2.967874 -3.281905 -0.233930 -0.665977 -1.502910 3.409005 2.538763 3.407715 5.726786 -6.507275 0.760701 0.425760 1.501758 2.374508 0.360788 0.142096 -1.804373 -1.481863 -3.546552 3.922433 4.045411 0.368395 -0.531245 -5.043233 4.598354 -1.298491 -0.755860 1.322555 1.182489 -5.913601 -0.973144 0.280847 -1.569951 -1.646183 -6.858859 0.669573 -2.896039 1.339635 0.836532 -0.143873 -1.910171 -5.660261 0.402883 -5.423930 -4.098770 2.635314 -1.215250 -1.037969 5.395803 -5.186137 1.345883 -3.480636 0.266103 0.952962 1.868101 1.640139 3.766802 1.694972 5.128669 2.955701 -4.314247 -3.148790 3.155265 6.307980 1.739509 1.125132 -2.315534 -2.418368 2.180016 -2.916020 -6.459529 -4.002926 3.897830 4.574719 2.438670 -0.839665 -2.829697 -1.677243 5.982678 4.512706 0.651748 -0.053478 1.357161 -4.773490 3.736657 4.670389 -1.500944 5.040109 0.213331 1.468491 3.208119 -5.312952 2.176362 1.523952 0.851491 -2.373618 -2.479355 -2.965025 2.827148 3.543662 3.759253 -4.371963 3.048801 -1.871405 -6.729630 -7.345378 -1.162274 7.556801 0.600035 1.811528 -4.058171 -3.573466 1.480443 4.631378 1.278391 -5.473438 2.147724 -3.942304 3.241450 -6.097030 -5.422082 9.429491 9.440087 3.943161 1.697647 2.714154 5.546541 -9.489815 -1.351322 -1.449444 2.926586 -2.351459 -10.236360 -3.447683 1.548581 -5.073260 -3.947319 -0.824178 2.233869 0.267276 2.942227 5.052864 4.349368 0.202063 0.501245 4.160296 -0.979069 -4.674279 -0.891504 0.688053 3.446076 2.066646 -2.858442 2.695504 3.453106 -4.856356 0.602141 2.542789 2.434727 1.956784 7.294802 6.078222 -0.413762 3.481213 -1.747199 -3.149926 2.032449 -1.521935 1.717859 -0.399185 -0.654139 1.017035 0.506366 3.643170 -2.648982 -4.409345 -3.581114 -2.667684 0.734312 5.600867 0.868014 -9.176958 -5.303445 1.674205 2.944778 3.169633 -0.616369 7.061914 -2.899633 1.707958 -8.588730 0.339083 2.487323 -0.143604 3.579845 0.588807 -1.224088 -3.320346 -2.096944 -4.421938 -3.880832 -0.975001 -2.151851 -0.867981 -5.420754 7.761046 -3.326035 -1.487565 -0.644182 0.993374 7.123279 3.198041 -0.619203 -4.707834 3.252083 2.283473 0.403552 -3.150742 6.279653 1.416961 11.396996 -1.784443 -0.353523 -0.772500 2.978160 -1.235669 -3.196229 0.098390 5.741230 7.200951 1.169443 -2.742066 -1.220628 -1.217712 2.070280 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/aho-corasick-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = -0.790036 -0.167071 1.189696 -0.151027 -0.756276 -1.051355 -0.587821 -2.101134 0.850490 0.570635 1.503288 0.147060 0.920455 -0.680195 0.217832 0.220125 0.637280 -1.036105 0.584193 -0.492238 0.155686 1.359371 0.320733 0.600095 -0.063543 -1.258541 0.455585 -0.176260 0.643810 0.990845 0.413462 -0.361861 -0.767128 0.289574 0.555105 1.033457 0.808878 0.470355 -0.503335 0.042369 -0.340462 -0.815072 0.634543 -0.339351 1.532041 -0.413256 0.309338 0.248371 -0.722053 -0.811653 -0.305625 0.677753 -1.246917 0.143852 0.527912 -0.719454 -0.232550 0.105246 -0.457835 -0.860363 -0.396971 -1.126336 -0.265704 0.410764 -0.432201 0.690995 -0.880098 -0.072126 -0.219962 -0.348492 0.746072 0.618748 0.889611 1.425287 -1.294850 0.249171 0.085320 0.248529 0.548747 -0.036160 -0.096571 -0.311655 -0.349369 -0.863255 0.795132 0.871823 0.103616 -0.155653 -0.954027 1.050277 -0.241495 -0.137871 0.330641 0.356884 -0.989008 -0.174624 -0.037480 -0.248306 -0.211100 -1.664211 0.126569 -0.685473 0.303189 0.407416 -0.170659 -0.563577 -1.267273 0.136597 -1.166932 -0.963982 0.724094 -0.353538 -0.205912 1.077893 -1.127780 0.339218 -0.730622 -0.013693 0.459884 0.442033 0.409759 0.798439 0.218840 1.093528 0.607263 -0.921115 -0.720831 0.773206 1.310731 0.258608 0.215392 -0.638317 -0.528190 0.505295 -0.761420 -1.303193 -0.867049 0.732792 0.907472 0.343349 -0.244229 -0.356135 -0.458627 1.053757 1.080979 0.261441 -0.005301 0.280115 -1.042159 0.816632 0.891556 -0.339201 1.061682 0.156196 0.224608 0.760283 -1.094862 0.433832 0.316283 0.274662 -0.506115 -0.575853 -0.621194 0.617457 0.823073 1.030532 -0.885158 0.651415 -0.429769 -1.416634 -1.416923 -0.204227 1.889306 0.089761 0.284603 -0.915274 -0.604059 0.463641 1.212684 0.421821 -1.193632 0.377853 -0.608588 0.675369 -1.432890 -1.168239 1.895201 1.876082 0.837007 0.304978 0.337268 1.281414 -1.933303 -0.277621 -0.431580 0.645136 -0.753589 -2.138028 -0.869858 0.318537 -1.015637 -0.816902 -0.135390 0.504427 0.249428 0.551621 0.844121 1.007898 0.191780 0.050953 0.913305 -0.210910 -1.086681 -0.198435 0.156067 0.769161 0.330500 -0.562419 0.657785 0.821622 -0.981585 0.139204 0.682013 0.422768 0.360477 1.684692 1.121713 -0.227508 0.204405 -0.369793 -0.566036 0.523206 -0.297312 0.369953 -0.039621 -0.013027 0.282355 0.090035 0.857116 -0.574869 -1.093965 -0.829143 -0.672906 0.171684 1.161558 0.185724 -2.012611 -1.177605 0.508417 0.580382 0.803413 -0.058925 1.564792 -0.439330 0.355780 -1.516455 0.067535 0.570995 -0.141982 0.799842 0.133934 -0.159745 -0.649099 -0.529686 -0.976897 -0.805836 -0.288892 -0.413267 -0.090649 -1.031587 1.471911 -0.520087 -0.351399 -0.272493 0.286080 1.429995 0.828694 -0.173571 -1.165025 0.751837 0.420370 0.013770 -0.681764 1.480513 0.352844 2.263023 -0.417801 -0.160193 -0.104988 0.649880 -0.317750 -0.559176 0.064025 1.245519 1.471896 0.328973 -0.564967 -0.187898 -0.153175 0.362587 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = -1.784303 0.109659 3.646852 0.986917 -1.675665 -2.216002 -1.342117 -4.413756 1.896631 0.687092 3.339652 -0.129802 1.389629 -0.940161 0.277019 -0.158723 1.349728 -2.200405 1.175521 -1.026361 0.798429 2.889634 0.942947 -0.441962 0.109836 -3.753539 1.705518 0.590558 1.416009 2.171496 0.757627 -0.296004 -1.157220 1.194266 0.565075 1.243406 1.635990 0.799247 -1.222889 0.052048 -0.114027 -0.412275 1.591765 -0.511409 3.196706 -0.151291 1.396033 0.480498 -1.809911 -1.119215 -1.795286 2.404875 -2.669836 0.323244 0.659057 -0.913650 0.054825 -1.152532 -1.238842 -2.640760 -0.728209 -1.209474 -0.732639 0.674447 -1.487662 1.665239 -1.069037 -0.122386 0.285315 -0.142284 1.989681 1.525245 1.819435 2.191740 -2.621537 1.166047 0.048478 1.208484 1.318943 -0.851063 -0.115439 0.316766 -0.762517 -1.792676 1.486938 1.629336 0.596495 -0.553763 -0.784431 1.451667 -0.783184 -0.621697 -0.325352 1.259078 -2.021143 0.268081 -0.380963 -0.619669 -1.044959 -2.244865 0.081660 -1.816786 0.783206 1.742650 -0.879124 -0.593919 -2.238570 0.341251 -2.170382 -2.293925 1.195821 -1.098355 0.092744 2.642522 -2.466455 0.449963 -1.383513 0.113483 0.716383 1.698848 -0.143730 1.978009 0.813249 2.996273 0.844620 -1.834910 -1.239045 1.429827 2.682152 1.246059 1.115998 -1.949119 -1.372290 0.011911 -0.767936 -2.986546 -1.075621 1.273791 2.262285 0.952276 -2.008058 -0.106866 -1.174831 3.276174 2.268301 0.882034 0.133515 0.803761 -2.435921 2.414374 3.288773 -0.889305 2.292390 -0.497988 0.290365 1.906245 -2.307373 1.378101 0.776610 0.656434 -0.359263 -1.693771 -1.527540 1.653956 2.075579 1.857933 -0.260962 1.159249 0.054257 -3.912686 -3.386080 -0.437811 3.405551 -0.331762 2.054300 -2.272854 -1.558295 0.134906 2.791080 0.481960 -2.046565 0.455772 -1.420653 1.433125 -3.406825 -3.194610 4.135915 4.223187 0.981476 0.921263 1.544707 2.610135 -3.282878 -0.728430 -0.782555 1.761860 -1.308775 -3.141694 -1.187893 0.421529 -2.127435 -2.258626 0.007300 1.088262 0.958306 0.380640 0.749557 1.954698 -0.898212 -0.605321 1.365261 -1.473484 -2.609695 0.065669 0.083113 1.561943 0.903264 -1.276444 0.960795 1.939334 -2.138843 -0.139760 1.400368 1.421755 0.691559 2.917251 2.750734 0.252643 1.368822 0.304738 -1.385564 2.777378 -0.334495 0.745542 0.213547 -0.177129 0.661803 0.607138 1.413885 -1.337442 -1.977487 -2.613619 0.074879 -0.085695 2.623846 -1.090184 -3.687006 -2.630065 0.229420 2.268481 1.462240 -0.227793 4.317990 -0.532591 0.000530 -4.247972 -0.260911 1.982449 -0.018867 1.741862 0.826090 -1.051730 -2.465201 -0.959357 -1.887866 -0.711519 -1.113996 -1.608923 -1.111182 -1.959506 3.346164 -1.237609 0.003903 0.954261 0.727398 2.371329 1.361565 -0.449536 -1.876590 0.365770 0.789862 0.622236 -1.918818 3.537078 -0.152748 5.324513 -1.480776 0.179122 -1.106916 1.365980 -0.365029 -0.920567 0.176519 3.521794 2.612969 0.617815 -0.809559 -0.688224 -0.859221 1.616169 -PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = -1.837986 0.296947 4.479139 2.414469 -0.306109 -2.186918 -1.203176 -4.621894 2.522458 0.390147 3.694626 -0.987888 1.369146 -0.681385 -0.168246 -0.056935 1.187592 -2.105421 1.296915 -0.702000 2.230191 4.220402 1.256303 -1.714038 0.140959 -5.035297 1.931279 1.465504 1.997892 2.324691 0.766550 0.933678 0.606975 1.416000 -0.614538 0.923574 0.616927 0.949398 -1.351659 -0.431408 0.086019 0.709606 1.065158 0.209771 3.490953 0.415650 3.019228 -0.263563 -0.917305 -0.615093 -4.106070 4.128854 -2.788807 -0.479555 -1.238036 -0.889749 0.847431 -2.059226 -1.618851 -3.807094 -0.610171 0.713690 -1.691556 0.522557 -2.265332 2.658557 -0.232513 0.552574 0.032539 0.730684 2.707114 2.162233 1.719727 1.109104 -3.493433 1.904279 -0.596410 1.305401 1.554891 -1.646782 -0.319077 1.321035 -0.603384 -1.860626 3.026099 1.803851 0.871010 -0.062325 0.584395 0.481942 -2.453498 -0.858346 -1.312232 1.830070 -2.114641 1.318631 0.646003 -0.511619 -1.052566 0.105141 0.172192 -2.498687 0.393570 2.548104 0.078938 0.436294 -1.800796 0.123029 -2.172636 -2.931558 0.713975 -1.571802 0.068145 3.068480 -3.000155 0.708897 -1.291639 0.925460 0.210358 2.899853 -1.064453 2.961998 0.942305 3.143654 0.075416 -1.514373 -0.648302 2.205217 2.887836 1.745795 1.203201 -2.525810 -1.868561 -1.390009 0.518322 -3.041770 -1.041913 2.139801 2.458501 0.924993 -3.842612 1.572306 -0.503369 4.187481 2.916948 0.265509 0.280136 1.462433 -2.748754 2.993668 5.539996 -1.127664 2.258854 -1.490330 0.272394 2.779574 -2.996752 1.721857 0.979915 0.913526 0.218208 -2.158611 -1.453756 1.857475 2.355542 1.584886 1.393074 1.210902 1.442273 -4.814865 -3.992569 -1.295282 2.536505 -1.083205 3.676365 -2.147183 -1.553100 -0.391414 2.576583 0.166749 -1.151153 -0.040263 -2.161539 1.357505 -4.478282 -4.144832 4.418704 3.972748 0.851520 1.573422 2.373018 3.429012 -1.782953 -0.479468 -0.048681 2.666316 -0.785173 -1.993566 -0.434616 -0.404301 -2.264894 -3.791730 -0.249539 0.927944 -0.105080 0.501843 0.712943 0.668216 -1.967671 -0.905866 0.187952 -2.607890 -3.061684 -0.108366 -0.061364 0.971679 0.814043 -1.912162 1.744344 2.762903 -2.098111 -0.684709 1.303455 1.103393 0.811422 1.794308 4.095037 0.675950 2.537732 0.941189 -1.388301 3.982013 0.758583 0.500229 0.081179 -0.660446 1.214369 0.931690 0.376308 -1.396255 -1.721349 -3.623145 1.874326 0.327445 2.662344 -1.293229 -2.828688 -2.399033 -0.875170 3.543063 1.697734 -0.174617 5.390896 -0.871413 -0.773059 -5.481444 -0.126699 2.843032 -0.009780 1.591403 1.448752 -1.534511 -2.991275 -0.896413 -1.150368 -0.430249 -2.135151 -3.454225 -2.241805 -2.336742 3.755214 -2.737663 0.791887 2.109094 1.692338 1.567839 0.687554 -0.399409 -1.819515 -0.054808 0.299551 1.486135 -2.455041 3.031284 -1.677610 5.339768 -2.914177 1.110292 -2.358927 2.494855 -0.964973 -0.884554 0.634727 4.823499 2.314546 -0.396718 -0.125534 -1.328473 -0.829710 2.347248 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = -13.429671 -3.935832 19.312534 4.063015 -10.665914 -14.653034 -9.096476 -28.457968 14.234041 6.444197 21.957841 3.053391 10.795662 -11.497401 3.520069 1.396518 9.065681 -15.944773 6.053846 -7.145226 4.970850 21.382437 8.586607 -0.180928 -0.848105 -21.828642 6.001983 1.207606 9.530906 13.793846 5.010947 -4.182421 -8.774771 6.549568 4.464158 12.876630 10.977251 4.432979 -7.884680 -2.184112 -1.210497 -3.818782 10.863502 -5.037270 23.657577 -6.741818 9.230689 2.618286 -12.677869 -9.873707 -7.539472 16.183986 -17.975597 2.733974 8.849605 -5.231648 -0.927910 -5.471984 -8.432576 -16.590593 -5.601277 -9.466542 -5.087760 4.264456 -6.412539 9.944647 -7.916269 0.561104 0.701786 -3.534346 12.519742 8.827086 11.624662 15.038660 -15.607151 5.714301 0.236731 5.724904 8.530895 -1.336819 -2.347577 -2.394866 -3.254414 -11.055871 10.470692 8.919968 1.104525 -1.845309 -9.258562 12.594724 -4.200219 -4.249335 0.181701 5.330215 -15.545640 -1.698207 3.362877 -4.574478 -4.737448 -14.876789 1.022529 -10.514245 3.689745 9.874795 -2.786017 -6.112862 -17.884888 0.744055 -17.923880 -13.285641 9.349283 -4.617241 -1.959125 14.968378 -17.860485 5.295655 -8.977811 1.305044 4.387760 9.844744 3.201709 12.847401 5.263119 18.583094 6.702742 -12.666513 -7.953673 9.302330 20.962600 6.413275 5.008872 -10.680743 -8.110254 4.822213 -6.498499 -19.088845 -9.956822 11.660018 14.328530 10.328921 -9.652853 -3.783812 -4.811468 20.629783 14.262469 3.217008 -0.079775 3.872381 -15.790010 15.089770 17.868132 -5.294163 15.456248 -0.193407 1.207618 13.312102 -18.822696 8.039022 5.634411 3.527435 -4.431728 -9.842504 -8.647592 9.890176 12.471985 13.100691 -9.276746 8.893223 -0.468463 -23.873297 -23.212606 -2.596018 21.490928 1.089540 11.083903 -12.767211 -10.807253 2.356907 16.659788 2.943872 -15.545359 4.247454 -10.478615 9.554894 -22.377030 -18.494920 31.128244 29.358853 10.048156 5.959425 10.427039 18.171861 -23.169576 -2.415524 -5.252373 10.266674 -6.130348 -24.064142 -6.765776 3.363160 -14.713842 -15.084924 -1.921389 6.319547 2.646682 3.841281 7.708599 13.745110 -2.680679 0.399686 10.772042 -6.567444 -15.761381 -2.473342 1.665698 10.570321 6.035977 -7.776454 7.169153 10.548780 -14.744405 -0.481560 8.954427 10.077464 7.780601 20.080222 18.585869 -0.466861 10.581168 -1.273217 -8.599954 12.135237 -4.218053 4.127369 0.526293 -0.318491 5.734400 2.217025 9.227118 -8.133003 -12.031300 -12.988425 -2.141776 1.657744 17.674027 -5.570830 -27.768840 -16.896018 2.542140 12.601085 8.339375 -2.569843 25.706545 -6.685078 1.829230 -28.364951 -0.626248 11.467342 0.292114 10.504674 3.871120 -4.970473 -15.924114 -7.525946 -11.939852 -6.205081 -4.748793 -8.208717 -3.647322 -16.737483 25.750421 -10.602051 -1.025394 2.695564 3.917878 18.763624 10.953022 -2.038450 -14.429493 6.040902 2.205370 3.246471 -11.047116 22.478493 1.486010 33.935247 -9.145305 0.406386 -5.949399 11.353942 -4.758390 -7.405229 1.913488 18.991303 21.014039 2.552171 -6.036850 -2.779790 -5.977676 8.526759 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.181687 0.149358 0.673510 -0.048137 -0.196147 -0.774676 -0.241742 -1.379691 0.560032 0.300240 0.583065 -0.060815 0.504566 -0.244671 -0.105564 0.317609 0.167928 -0.225093 0.183800 -0.295140 -0.226643 0.839420 -0.233795 0.257471 0.062650 -0.957321 0.503101 0.181883 0.494437 0.504146 0.220946 -0.037035 -0.163865 0.265613 -0.067903 0.341479 0.216466 0.293094 -0.357756 0.117601 -0.076606 -0.034139 0.380606 0.059742 0.637629 0.215767 0.106451 0.210501 0.079230 -0.254870 -0.134593 0.313144 -0.307523 0.141312 -0.269914 -0.242962 -0.052539 -0.146042 -0.031069 0.100124 -0.087314 -0.160094 -0.394665 0.160151 -0.444015 0.171776 -0.246232 -0.313751 -0.182828 -0.177496 0.376929 0.157843 -0.019255 0.106762 -1.009415 -0.002301 0.111463 0.045741 0.397024 -0.132741 -0.046921 -0.151417 -0.488402 -0.518097 0.675771 0.816102 0.141315 0.186696 -0.367378 -0.134516 -0.245827 -0.057682 0.476001 0.417913 -0.284630 -0.106253 -0.219818 -0.115416 -0.269564 -0.771215 0.289302 -0.259363 0.304243 -0.148626 0.098568 -0.025542 0.172785 0.090170 -0.239795 -0.364824 0.109002 -0.346579 0.319937 0.865740 -0.086783 -0.221297 -0.470675 -0.280258 -0.048710 0.364824 0.266630 0.014590 0.637089 0.423616 0.283997 -0.532041 -0.526785 0.469007 0.236983 0.272294 0.121850 -0.656104 -0.243704 0.144875 -0.338986 -0.884643 -0.298800 -0.016445 0.300795 -0.548358 0.024664 0.311500 -0.259618 0.216887 0.523692 -0.065372 0.142565 0.097398 -0.436020 0.346779 0.821294 -0.052670 0.285561 -0.504294 -0.140879 0.298048 -0.259236 0.172735 0.114002 -0.151016 -0.325982 -0.153690 0.238260 0.402761 -0.066405 0.334813 -0.067933 0.340086 -0.455552 -0.439386 -0.711044 -0.068670 0.767916 0.055567 0.686619 -0.543903 -0.203883 0.052992 0.651777 0.176464 -0.148439 0.346041 -0.484941 0.374477 -0.547052 -0.623470 0.795071 0.762756 0.605856 -0.106741 0.260055 0.393781 -0.573201 -0.266952 -0.128375 0.216999 0.098734 -1.042566 -0.320076 0.037299 -0.545416 -0.307996 -0.104006 0.276034 0.141870 0.306195 0.501521 -0.256034 -0.130339 -0.478392 0.487644 -0.170163 -0.063108 -0.028241 0.097167 -0.157058 0.251897 -0.350845 0.205999 0.345565 -0.165458 0.345010 0.383146 0.030811 -0.071361 0.696142 0.576628 -0.295123 0.382253 -0.139383 -0.086320 0.469288 -0.044940 0.241590 0.157215 0.169976 0.018342 0.167065 0.342661 -0.315102 -0.298851 -0.537688 -0.232469 0.271139 0.274962 0.365939 -0.461543 -0.741215 -0.086189 -0.097120 0.766197 0.120028 0.802398 -0.191169 0.375439 -0.697042 0.140075 0.148334 -0.131372 0.342338 0.142743 -0.282584 -0.173275 -0.162281 -0.550743 -0.910722 -0.200058 -0.400917 -0.357227 -0.379281 0.302259 -0.308876 -0.087754 0.287471 0.097091 0.294420 -0.448842 0.105186 -0.507537 0.224967 0.453195 -0.155150 -0.417978 0.185807 0.067633 1.141053 -0.086295 0.405235 -0.082725 0.365843 -0.204685 -0.582356 -0.169236 0.671050 0.352030 0.093910 -0.090124 -0.120230 0.157359 0.331456 -PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = -2.319949 -0.554078 4.171227 0.312598 -2.951911 -3.804000 -1.886898 -7.001250 3.163136 1.542343 4.736119 0.655252 2.556866 -2.849611 0.813722 1.340828 2.405853 -2.807701 0.967815 -1.913138 0.689393 4.006978 1.082743 0.562644 0.352501 -4.101678 0.835960 0.111346 1.973076 2.405629 1.554858 -1.100415 -2.482348 1.243741 1.706596 3.706791 2.859100 0.978877 -2.307670 -0.261449 -0.948144 -1.856677 2.287645 -1.105685 5.495191 -1.788488 2.025182 0.895671 -3.114814 -2.189485 -1.201588 3.701791 -3.610077 0.920545 2.054964 -1.330857 -0.759072 -0.877735 -1.410159 -2.844006 -1.396310 -2.910328 -1.382658 0.885472 -1.203444 1.900560 -1.481589 -0.268014 -0.297572 -1.002074 2.395342 1.481830 1.962138 3.954266 -3.699908 0.314507 0.464515 1.158880 1.986842 -0.038044 0.134949 -1.549660 -0.983172 -2.479321 2.835935 2.241845 0.552151 -0.114347 -3.112658 3.028231 -0.838909 -0.907302 1.011368 0.938410 -4.137914 -1.146107 0.548115 -1.272096 -1.337535 -4.274364 0.640921 -1.950834 0.916556 0.922405 -0.581452 -1.036721 -3.850164 0.582588 -3.870165 -2.325647 1.997645 -0.957037 -0.474387 3.582662 -3.378430 0.610389 -2.273450 -0.136301 0.838125 1.537225 0.975101 2.448053 1.534067 3.826183 2.218967 -2.939978 -2.301482 1.924096 4.396558 1.467060 0.930539 -2.156872 -1.721255 1.587773 -2.209170 -4.571833 -2.603002 2.092272 3.325064 2.054153 -1.379653 -1.743043 -1.110862 4.062552 2.576239 0.671502 -0.245794 0.900544 -3.490793 2.555953 3.231346 -1.209798 3.459182 0.375523 1.175032 1.658626 -3.421419 1.236464 1.185997 0.067696 -1.282916 -1.585899 -2.182926 2.086967 2.646104 2.435096 -3.144566 2.269274 -1.654198 -4.900920 -5.221194 -0.782340 5.093239 0.179674 1.673754 -3.001347 -2.686484 0.269480 3.799001 0.262327 -3.602519 1.255433 -2.880299 2.341544 -3.435060 -3.798241 6.889052 6.624139 2.834472 1.062126 2.206305 3.468808 -6.628370 -0.759594 -1.019362 1.622192 -1.218197 -6.576123 -2.240112 1.046927 -3.696534 -2.861349 -0.546645 1.594708 0.032765 2.007545 3.224318 3.416032 0.211308 0.275959 2.325013 -0.603253 -3.016326 -0.521586 0.546073 2.618820 1.550257 -2.199882 1.365292 2.188930 -3.409668 0.325915 1.899545 2.254646 1.743221 5.238051 4.069824 -0.200658 2.822743 -1.008413 -2.387193 1.504896 -0.733635 1.387733 -0.024163 -0.367147 0.975428 0.254917 2.711005 -1.934365 -2.690245 -2.654938 -1.954752 0.465264 3.942836 0.113990 -6.083261 -3.782639 0.896073 1.997751 1.944811 -0.765917 4.964094 -1.613315 1.011324 -6.130472 0.036753 2.210626 -0.340086 2.032854 0.539720 -1.153794 -3.536414 -1.394879 -3.240973 -3.055376 -0.733038 -0.710988 -0.730680 -3.598862 5.802449 -2.083013 -0.884441 0.156304 1.000283 4.575961 2.058350 -0.067463 -2.832918 1.743930 1.427909 0.267560 -2.481125 4.364012 1.276693 8.238633 -1.046449 -0.047646 -0.725899 1.823448 -0.727602 -2.049182 -0.156435 3.899599 5.125856 1.003218 -1.568260 -0.562002 -1.221227 2.067349 -PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = -3.294637 -1.247457 4.093712 -0.514211 -2.775996 -3.882047 -2.038909 -7.556548 3.443728 2.177031 5.719950 1.043602 3.427548 -3.004516 1.179421 1.306585 2.824312 -4.123687 1.738592 -1.980044 1.467470 5.253093 1.539823 2.099086 -0.252951 -4.368518 0.406157 -0.486506 2.395675 3.136869 1.783203 -1.339591 -2.818196 0.765946 1.991553 4.296712 2.976966 1.287472 -2.350380 -0.415477 -1.440092 -3.010202 2.517301 -1.507262 6.180508 -2.818470 2.141676 0.750988 -2.917304 -3.211741 -1.522630 3.594748 -4.378812 0.473786 2.403878 -2.503950 -0.997064 0.308940 -1.896682 -3.360539 -1.662277 -3.794663 -1.099642 1.271983 -0.957516 2.639049 -2.797806 0.223013 -0.793304 -1.609176 2.721337 2.040787 3.212188 5.224214 -4.745665 0.720105 0.099452 0.859569 1.831681 0.472621 -0.402084 -1.586094 -0.789552 -2.780880 3.061799 3.028915 0.033557 -0.378014 -4.249417 4.412407 -1.213693 -0.684946 0.963445 0.670946 -4.716714 -0.931802 1.044986 -1.274328 -0.837751 -5.105770 0.539289 -2.307847 0.744465 1.244983 -0.080156 -1.935397 -5.608863 0.116610 -4.968134 -3.184386 2.744513 -0.937742 -1.342308 3.784501 -4.848628 1.586442 -2.793821 0.499917 1.421436 1.460737 1.334578 3.310970 0.614655 3.951410 2.318532 -3.354301 -2.282590 2.820557 5.590846 0.893950 0.561935 -1.649408 -1.872120 2.047214 -2.768533 -4.667491 -3.590344 3.476144 3.734396 2.421290 -0.947289 -2.094904 -1.176867 4.648974 3.857037 0.550371 -0.159233 1.233440 -4.016309 2.861964 3.168256 -1.290739 4.250380 0.917834 1.377253 2.694186 -4.538551 1.678052 1.442871 0.968586 -1.987777 -1.950284 -2.672656 2.051824 3.420572 3.629128 -4.208469 2.599214 -1.183829 -5.384225 -5.888227 -1.221043 6.249537 0.618459 0.812763 -3.075082 -2.628435 1.385670 3.916675 1.093331 -4.945359 1.576224 -2.768424 2.422761 -5.175837 -4.037532 7.692964 7.647302 3.275450 1.545841 1.896114 4.715106 -7.610218 -0.656139 -1.153774 2.447798 -2.396969 -8.165103 -2.622364 1.243834 -3.887030 -3.529228 -0.876675 1.702733 -0.039314 2.408151 4.137350 4.117162 0.844653 1.063190 3.092083 -0.525828 -4.313865 -1.026710 0.659957 3.181348 1.288490 -2.250745 2.561028 3.017421 -4.099795 0.202376 2.201845 1.893290 1.968293 5.843790 4.572870 -0.559051 2.005337 -1.796407 -2.484135 1.136563 -1.187822 1.209890 -0.535220 -0.524749 1.326268 0.127192 2.803527 -2.050059 -3.697079 -2.583417 -2.233584 0.641319 4.676517 0.674974 -7.918485 -4.123329 1.931317 2.359693 2.432868 -0.679381 5.591446 -2.286378 1.171802 -6.485199 0.297685 2.071305 -0.182361 2.519544 0.343453 -0.576726 -2.610296 -1.763149 -3.575334 -2.863406 -0.616210 -1.476864 -0.224774 -4.630180 6.678928 -2.741028 -1.394473 -1.176344 0.924124 5.950876 3.575473 -0.649185 -4.088811 3.008173 1.196449 0.474414 -2.321054 5.505711 1.172955 8.485919 -1.643232 -0.666311 -0.381005 2.864047 -1.358608 -2.293734 0.313104 4.391084 6.135151 0.868754 -2.253724 -0.953418 -0.817149 1.353958 -PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/aho-corasick-algorithm.cpp___GLOBAL__sub_I_aho_corasick_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/shortest-common-supersequence.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = -3.201400 2.298359 17.371334 9.663437 -6.871411 -11.026247 -5.186132 -15.167761 7.351131 0.652086 10.405513 1.666310 2.486113 -1.665055 2.783876 -0.531414 0.119692 -4.255381 1.863478 -3.411836 0.504009 10.933510 8.866541 -11.442423 0.182760 -16.233903 9.223387 7.288699 8.011315 8.392838 0.074583 -2.698457 -2.123903 9.017268 -4.700111 -0.415745 0.460765 2.497850 -4.551010 1.300933 3.340138 9.063920 5.105040 -1.149736 10.352378 3.888326 10.596876 2.326285 -5.909896 -1.549767 -7.426117 15.143135 -10.183234 4.940991 0.813200 4.877203 -1.285942 -9.969842 -4.500359 -12.516845 0.733922 4.330270 -7.272305 1.008885 -9.777667 2.934912 -2.215671 -3.373188 4.820796 4.428529 9.973705 3.161409 1.781847 -3.173807 -8.785176 3.536377 -2.682111 7.566573 6.435525 -6.356842 -3.234714 3.565559 -1.933291 -6.660222 2.860687 1.856441 1.015482 -3.849339 3.975868 -1.069803 -2.941453 -2.860336 -4.371395 7.642229 -7.734926 5.846623 -3.448739 -0.021811 -5.389420 -1.603036 -0.443896 -9.282474 4.642300 6.911730 -0.264127 -1.793544 -2.634235 1.481660 -5.049757 -10.449162 -0.378074 -0.495098 3.276684 9.766646 -6.284296 1.923695 1.753907 -0.187303 -1.185000 10.366310 2.100422 5.045708 9.824008 13.608171 0.704912 -6.670534 -2.959697 2.516476 8.135319 10.949822 7.185270 -11.700243 -6.267545 -2.381278 3.009210 -14.184241 5.400557 5.799590 5.878662 3.946874 -11.826150 1.491335 -4.056796 12.506709 6.991843 5.921838 2.559706 -0.383016 -6.683937 11.053873 21.293331 -3.859754 6.745096 -4.067742 -4.915927 12.313940 -10.731791 7.161987 4.156442 2.420243 2.894012 -8.042987 -5.049328 9.803170 6.332064 6.791839 9.683995 1.943043 2.018213 -16.741341 -10.486620 -0.210005 7.232471 -2.865044 15.717689 -7.385964 -5.462000 -2.449753 10.214333 -0.984582 -3.443077 -0.629644 -5.010321 5.485610 -13.487294 -12.148768 14.421421 15.523800 0.746370 0.394969 11.151863 10.820493 -5.770932 -4.395433 -4.457721 5.931626 -0.826342 -1.093479 0.678043 0.154708 -10.669054 -5.081790 1.707294 3.165167 4.882621 -2.701921 -8.371268 6.312809 -12.988110 -6.310534 2.747218 -9.519999 -4.668017 0.131097 0.226834 1.218371 2.595606 -5.223022 -1.098676 6.514319 -7.282176 -0.085750 5.848144 8.052136 4.396074 11.289272 6.852668 3.490375 10.492436 7.107441 -4.313987 20.116148 -0.536153 1.107412 3.336491 5.070176 -0.816049 4.629717 1.152830 -5.027923 -6.138679 -11.946672 6.547572 0.036966 7.977582 -8.311661 -7.694839 -8.401723 -5.918774 10.414035 6.377986 -1.506844 19.092398 -0.553674 1.639706 -19.816897 -1.432524 7.090003 -0.695860 7.894829 6.367398 -6.283313 -14.005029 -4.778729 -1.108217 1.383115 -4.597038 -8.187347 -6.369153 -5.256373 7.645725 -5.750355 3.974062 10.284799 0.024664 4.678395 -1.491208 -0.716577 -2.651165 -3.245857 3.839643 4.574702 -12.038429 12.382425 -3.747176 23.992663 -7.371451 7.749247 -8.712358 1.690889 -1.020021 -0.869512 -0.484472 14.199914 7.275588 3.250085 0.246181 0.521479 -6.213210 6.553579 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/shortest-common-supersequence.cpp__main = 0.170467 0.340413 1.875946 -0.115487 -0.587615 -1.877355 -0.848869 -4.535071 1.713124 0.642077 1.943419 -0.426211 0.893785 -0.410474 0.111480 1.368438 0.498328 -1.329986 0.993634 -0.726215 -0.089313 2.541629 0.023108 1.217837 -0.138865 -2.568634 0.130294 0.093711 1.891296 0.650474 0.598038 -0.870670 -0.312847 0.682024 0.238228 1.203948 1.137995 0.334248 -1.693612 0.358075 -1.312474 -0.247007 1.143870 -0.419890 2.229502 -0.495431 1.315824 0.647738 -0.198920 -0.259178 -0.821138 2.514776 -1.236415 0.303195 0.743710 -1.224712 -0.601432 -0.582513 -0.774564 0.626434 -1.250252 -0.721463 -0.796100 0.658967 -1.037204 0.888088 -1.221635 -0.172379 -0.177469 0.461878 1.490311 1.080001 0.810109 1.412146 -2.728862 0.665637 0.109681 0.498065 0.699078 -0.763355 0.783823 0.155876 -0.819824 -1.365968 1.805051 2.283525 0.165190 -0.420850 -1.104703 0.712472 -0.810878 -0.809869 0.585761 0.842057 -1.261207 0.152901 -0.564868 -0.536063 -1.196344 -2.782459 0.127029 -0.987427 0.951080 -0.644164 0.893831 -0.226806 -0.372762 0.333565 -0.952067 -1.622309 0.603747 0.074891 0.581807 2.446732 -1.180253 0.215614 -1.082893 -0.151774 -0.826597 0.701700 0.989254 0.922402 1.080047 1.848089 0.767765 -1.083487 -1.315959 0.852847 1.287068 0.945647 0.736494 -1.514373 -0.849314 0.558215 -0.170974 -2.318742 -1.124110 1.139008 1.172810 -0.376158 0.253179 -0.794676 -0.219512 1.811766 1.371255 -0.383877 0.217187 0.114519 -1.022159 1.532794 2.051523 -0.375692 1.354514 -1.162818 0.623750 0.552213 -1.794065 0.776646 0.432885 0.432373 -0.812119 -0.857476 -0.374471 0.873745 0.978890 0.629547 -0.695234 0.964189 -1.023648 -1.908731 -1.977735 0.099826 1.848494 -0.855786 0.733101 -1.063828 -1.601830 0.347452 1.343589 0.787062 -0.963937 1.127637 -1.901857 0.979857 -1.288806 -1.694285 2.492558 2.985301 1.571730 -0.183794 0.780394 1.944099 -3.149721 -1.008153 -0.358329 1.071612 -0.668659 -4.117030 -1.661966 0.058980 -1.497667 -0.914176 -0.498247 0.873565 0.574104 1.530094 1.582691 0.408097 -0.775199 -0.355217 1.698114 -0.363037 -1.056006 -0.088029 0.273287 0.472121 0.980299 -1.189913 0.968300 1.543705 -1.398082 0.564503 1.259668 0.608920 -0.129582 2.395929 1.749627 0.302617 2.256633 -0.270146 -0.814503 0.497796 -0.062708 0.687804 -0.063979 -0.658259 -0.582856 0.412867 0.894973 -0.845495 -2.140985 -0.994229 -0.415887 0.013779 1.530404 1.508491 -2.715478 -1.673899 -0.198073 0.885603 1.114881 0.453666 1.936412 -0.800444 0.990931 -2.550429 0.228246 0.277262 0.055545 1.349668 0.255557 -0.745606 -0.105530 -0.454360 -1.596487 -2.670627 -0.617138 -1.536732 -0.578705 -1.919115 2.251409 -0.847045 -0.553132 0.142981 0.560639 1.613981 -0.073151 -0.236972 -1.603988 0.861702 1.901699 -0.481337 -1.286391 1.090997 0.098525 4.205286 -0.677036 0.137337 -0.563789 0.199920 -0.133004 -0.804875 0.085852 1.982866 1.720843 0.048389 -1.140769 -0.830650 -0.137463 0.433991 -PE-benchmarks/shortest-common-supersequence.cpp___GLOBAL__sub_I_shortest_common_supersequence.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/boyer-moore-algorithm.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.570698 1.097480 4.527740 3.457361 -3.118111 -3.972749 -1.737495 -4.486499 2.030058 -0.278367 2.772526 0.498682 0.629244 -0.570275 0.284878 -0.893121 0.598959 -0.309888 -0.333791 -1.463909 -1.588072 2.723067 1.637140 -3.833325 0.595654 -3.782036 3.132039 2.380985 1.535142 2.436057 0.145092 -0.495139 -1.427784 2.505323 -1.321438 -0.517571 0.163088 0.594287 -1.650950 0.004689 1.837987 1.567703 2.784611 0.019341 2.410218 1.415214 2.020919 1.062117 -2.418211 -0.396103 -1.734408 3.259757 -2.243472 1.941260 0.103804 1.444824 0.693066 -2.822435 -0.674781 -2.782397 0.079346 0.200288 -1.900120 -0.132703 -2.721988 0.424350 -0.385963 -1.941101 1.654570 0.032941 2.567712 0.172277 -0.265904 -1.204624 -2.425242 0.373338 -0.061492 2.276721 2.075968 -0.596955 -0.264344 0.365303 -1.629185 -1.750935 0.606534 -0.135985 0.829571 -0.194909 0.384750 -1.252456 0.378488 -0.743962 -0.031528 1.815422 -1.746013 1.177403 -1.589388 -0.520853 -2.105149 -1.600714 0.462357 -1.721135 1.594160 1.467234 -1.546211 -0.175367 0.346881 0.426777 -0.950394 -2.866004 0.046724 -0.753089 1.090112 3.281407 -0.997882 -0.887160 0.283181 -0.967714 -0.586517 2.774698 0.652421 0.725318 2.649742 3.766812 0.561324 -2.164541 -1.261073 0.168737 1.654526 2.869152 2.175587 -2.822351 -1.734997 -0.072825 -0.066851 -4.532093 1.125635 0.807383 2.485661 0.985007 -3.067631 0.895710 -1.856772 2.682836 1.151061 1.994484 0.839969 -0.394798 -2.377869 2.841759 5.104615 -0.875423 1.994616 -1.272913 -1.897540 3.028016 -1.769455 1.489679 0.769615 -0.480462 0.719743 -1.527836 -0.681532 2.732287 0.909663 0.930843 2.412814 0.713558 -1.042200 -4.620888 -3.472670 0.583664 2.912614 0.193442 4.581404 -2.820994 -1.406426 -0.861338 3.488173 -0.991216 -0.978567 0.371617 -1.441680 1.879560 -3.715202 -3.522053 4.340192 4.119847 0.152816 0.013417 2.829033 1.839836 -1.295841 -1.688470 -1.857298 1.076082 0.953373 -0.291262 0.017457 -0.139157 -2.760977 -0.987822 1.065101 1.204875 1.798008 -1.729174 -1.583037 0.457639 -3.084397 -2.780843 1.170448 -2.727308 -0.338777 0.948988 -0.306929 -0.046610 1.107502 -0.615258 -1.208264 0.554719 -1.482849 0.434051 1.017264 2.368081 0.709886 3.589683 2.292069 0.083442 2.995259 1.947580 -1.587305 6.620599 -1.341125 1.035447 1.039510 2.343996 0.000291 1.319603 1.396955 -1.489235 -1.005851 -3.368477 0.965753 0.127269 2.093985 -3.763406 -1.902890 -3.770347 -1.494042 1.693110 1.972897 -0.787877 5.239228 -0.393509 0.290528 -5.514739 -0.427189 2.526648 -0.253512 2.146811 1.486407 -2.114094 -4.466366 -1.024659 -1.496435 0.652039 -1.184756 -1.733761 -1.972531 -0.819546 1.503712 -1.129901 1.213582 3.499144 -0.871788 0.908321 -1.475408 -0.079096 -0.393645 -1.737905 1.354038 0.704772 -3.137679 3.698431 -0.319833 6.752049 -0.562005 2.360269 -2.032746 0.476358 -0.202887 -1.314937 -0.838242 3.786986 1.944197 1.001948 0.320573 0.735060 -1.421372 2.054139 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.291908 1.939992 13.027328 7.480327 -5.514462 -8.689524 -4.497885 -14.049962 7.455092 0.001472 6.953864 0.796491 0.999655 -1.912525 -0.062069 -0.304009 0.192601 -3.745098 0.896441 -3.320440 -1.117608 9.875319 4.041103 -8.069854 0.760289 -16.540123 7.768424 4.606048 7.219763 7.088562 0.338892 -2.470605 -1.563093 7.143329 -2.541765 -0.574978 2.487474 0.364447 -5.293331 0.963248 2.715072 7.203530 6.340848 0.123829 7.974851 2.292280 5.845208 2.375572 -3.807207 -0.024479 -6.058328 10.961329 -6.395992 4.549975 0.622670 3.575798 -0.085685 -8.817940 -3.194425 -5.661855 -1.577531 2.706128 -3.981730 0.351836 -7.461437 2.172879 -1.706877 -2.784660 3.940470 2.389411 8.214294 3.620232 2.162011 -2.144155 -8.384089 3.446822 -1.465949 6.535450 5.265245 -4.645225 -0.873715 2.657072 -3.367097 -5.157596 2.687782 3.407417 0.708385 -2.071893 3.262425 -3.176987 -1.994806 -3.207423 -1.646782 5.705463 -5.167197 2.780193 -4.889130 -0.526476 -3.897297 -3.932983 -0.658562 -6.029476 3.888771 3.972255 -1.154904 0.409291 2.331578 1.463480 -2.350403 -6.570914 1.453233 -0.115037 3.304044 10.022499 -3.062633 -1.417726 0.024812 -1.066529 -3.077541 7.973845 0.406875 3.316199 7.992669 10.981524 1.688573 -5.007561 -2.996081 2.387004 5.049598 7.765943 6.423746 -9.307465 -4.452542 -1.577354 3.142808 -11.957639 3.116632 2.164416 6.211489 1.669420 -7.387148 0.708441 -3.574032 10.121514 4.465858 2.301729 2.559432 -0.729476 -6.277022 9.983686 16.924599 -2.101871 4.847607 -7.291703 -2.737794 7.491265 -7.338956 5.297823 0.721039 1.029793 2.540315 -5.922119 -1.677403 7.364522 2.439265 2.891217 6.496322 2.418985 -0.585866 -13.070107 -8.912533 0.331009 5.959432 -2.574075 12.832730 -6.601595 -4.975490 -3.487297 8.635928 -0.281753 -1.097851 1.773888 -5.696735 4.423829 -10.014903 -10.162150 13.227641 14.318271 1.210914 -0.066568 7.956727 7.989048 -4.746973 -4.204695 -3.035573 3.211249 2.198981 -4.327101 -1.392274 -0.281941 -6.701028 -5.624366 2.431045 2.572846 5.750005 -2.373376 -4.411252 2.890970 -9.726066 -7.270339 5.211653 -8.442963 -2.945523 2.102554 0.406179 -0.140773 4.220281 -2.945473 -1.066003 5.313617 -3.823070 1.054345 4.517392 6.634857 1.513812 6.631628 7.250636 2.750962 10.226131 6.359080 -3.690755 15.988805 -2.112577 1.568855 3.199903 1.813012 -1.103826 4.214715 0.969888 -4.266188 -3.479296 -9.041047 5.742520 -1.542904 5.736966 -6.492267 -6.813106 -7.793136 -5.207464 6.311748 3.467344 0.178654 14.818708 -1.213847 0.331058 -15.796223 -1.602809 7.451360 1.119978 6.387571 4.765762 -5.256535 -10.889305 -3.022681 -3.043190 0.239605 -4.698747 -7.724936 -5.462563 -4.972226 7.580554 -3.758669 4.128439 10.157945 0.309564 3.766424 -4.912917 -0.458262 -3.983029 -3.221237 2.727036 2.455206 -8.285721 8.532139 -2.931488 17.859000 -5.077915 4.955909 -6.753538 1.451588 -1.155155 -2.944732 -0.620532 10.865682 4.023567 2.218708 -0.184098 -1.144477 -4.595893 6.298565 -PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 2.147951 3.394958 6.744802 1.868986 -6.588852 -7.392616 -2.008407 -11.635968 4.357553 1.288410 2.942363 0.954675 1.708173 -3.184684 -0.976672 4.232991 2.448568 0.316652 -0.761098 -3.864770 -6.101618 3.132163 -1.345645 -0.554124 3.494509 -6.698850 4.735011 1.431818 4.197602 1.742663 3.330982 -0.566193 -3.113833 4.265413 2.566629 2.780747 1.525031 0.936214 -5.326987 2.600464 0.191100 -1.466792 4.379292 2.176250 5.700464 1.720978 2.674037 3.001359 -3.391042 0.410428 -3.004653 6.197745 -2.785374 3.403916 -0.439189 -0.158762 -0.864140 -3.568719 0.421612 2.014382 -3.062842 -3.906949 -3.135834 0.370732 -4.538049 0.043884 -2.546127 -3.944440 -0.789788 2.072709 3.966712 1.321746 -1.175898 1.200551 -6.529036 -0.523494 2.009293 3.274991 5.597103 -0.735230 1.682079 -1.518728 -4.100648 -4.665552 5.210731 2.292423 2.000151 0.080198 -1.746183 -2.944834 -1.893888 -2.456046 3.768314 3.062334 -5.933174 -1.062572 -4.243738 -2.197028 -4.760823 -8.302740 1.479945 -1.497642 3.125644 -2.709657 -1.589612 1.106345 1.349630 0.900768 -0.566754 -1.495925 0.466030 -1.959804 2.412767 8.205092 0.985914 -3.459187 -1.593335 -2.378499 -2.314695 2.625966 2.753922 -0.476910 7.575652 5.609141 3.639309 -2.395433 -3.393950 0.644496 0.322025 3.897502 3.702944 -5.208762 -3.208287 1.849506 -0.425248 -8.007778 0.100286 -0.339813 3.345949 -1.218875 0.027834 -1.761089 -1.979511 1.731317 0.753530 -0.428146 1.812695 -0.835743 -3.159443 4.029977 7.792024 -0.959784 2.099702 -3.723526 0.776653 2.204036 -2.399006 0.520470 0.239249 -3.037095 -1.051186 -0.899205 -1.210081 3.793398 -0.284709 -2.334743 1.415263 3.013852 -5.931822 -5.653744 -5.353361 1.080339 5.676142 -0.872163 5.530005 -4.998684 -1.266981 -2.593799 5.700261 0.621935 -0.345052 3.020189 -4.572107 3.381244 -0.722400 -5.016800 8.469619 7.395536 2.249475 -2.173243 2.631505 3.119342 -8.580929 -5.276001 -2.538925 -0.985041 2.165076 -7.965651 -4.874592 1.416084 -5.609433 -1.175746 0.876113 2.422890 4.572697 2.126675 2.869636 0.391030 -2.224713 -5.161010 3.641404 -1.351143 -0.394504 2.091563 0.929884 0.677275 3.698142 -1.737123 -1.415486 0.311717 -1.886391 1.751903 2.470620 4.907377 -0.297238 7.182314 4.707515 -0.197176 5.827391 1.294704 -3.202602 5.161081 -0.089180 3.468912 2.250441 0.440728 -1.257929 1.555667 4.022522 -3.089178 -2.966646 -4.383016 -1.720709 -0.484749 2.095189 0.162860 -2.723369 -6.966470 -1.503773 0.260231 2.234950 -0.498387 6.123743 -0.831495 1.009134 -6.966725 -0.095422 3.074760 -0.694253 4.453433 2.243695 -4.301044 -2.072837 -2.140803 -5.123526 -5.038255 -1.158339 1.181126 -3.314199 -0.691808 3.996895 -1.078274 0.301838 4.883043 -0.293916 2.998056 -4.743975 1.830223 -2.597348 0.069021 6.854410 -0.603757 -4.234149 3.850731 1.046756 11.936509 1.649817 1.936471 -1.196748 -2.949529 1.486847 -3.451952 -2.769875 5.187684 2.830697 2.730734 0.031598 0.115200 -0.042620 5.433839 -PE-benchmarks/boyer-moore-algorithm.cpp___GLOBAL__sub_I_boyer_moore_algorithm.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.305812 1.113434 4.002169 2.470720 -2.402826 -3.063020 -1.567060 -4.035471 1.633295 -0.241435 2.420095 -0.034860 0.425688 -0.434117 0.149549 -0.685325 0.529055 -0.484092 -0.148257 -1.215897 -1.279987 2.058778 0.999403 -2.788227 0.553736 -3.624855 2.280371 1.927343 1.296305 1.695413 0.120469 -0.455678 -1.189942 2.065112 -1.070835 -0.398647 0.777309 0.362148 -1.512919 0.112820 1.240431 1.668101 2.218142 -0.217130 1.976425 1.266071 1.333293 0.981839 -2.040628 -0.270995 -1.119610 2.924440 -1.592070 1.473513 0.578302 1.078302 0.462184 -2.671958 -0.622670 -1.797684 -0.100177 0.250826 -1.245022 0.025911 -2.060503 0.375976 -0.059589 -1.500242 1.704551 0.017415 2.041826 0.213405 -0.077570 -0.575824 -1.650855 0.643053 0.251418 1.915775 1.559319 -0.771299 0.279638 0.552478 -1.264530 -1.490123 0.529293 0.368205 0.926666 -0.315739 0.273793 -0.940309 0.462097 -0.880198 0.020061 1.526766 -1.374569 0.627607 -1.613153 -0.646208 -2.074754 -1.570029 0.223329 -1.419156 1.413233 1.289758 -1.482923 -0.017255 0.367516 0.495087 -0.659268 -2.199896 0.079657 -0.658605 1.247654 3.044734 -0.939518 -0.826561 -0.085580 -0.946710 -0.702188 2.186258 0.329778 0.591854 2.269931 3.193184 0.504364 -1.765020 -1.245781 0.024575 1.377114 2.317156 1.969221 -2.739047 -1.369862 -0.148059 -0.150427 -3.856722 0.727243 0.061207 2.065460 0.714701 -2.494718 0.703554 -1.519331 2.417666 0.728533 1.407592 0.561707 -0.383001 -1.926022 2.453332 3.950252 -0.822971 1.758355 -1.257673 -1.511343 1.832096 -1.281716 1.268479 0.749080 -0.422744 0.596585 -1.359017 -0.488805 2.236452 0.793886 0.803313 1.692065 0.572643 -0.844622 -3.784477 -3.010317 0.704090 2.047532 -0.389122 3.718192 -2.323814 -1.638573 -0.874978 3.380320 -0.964585 -0.790017 0.388686 -1.367760 1.501811 -2.207281 -2.997528 3.544972 3.808278 0.093837 -0.035801 2.507826 1.349629 -1.650576 -1.313376 -1.427375 0.880380 0.793197 -0.856918 -0.266463 -0.030401 -2.044845 -0.756498 0.693452 1.076850 1.520362 -1.054391 -1.127755 0.581387 -2.664758 -2.192337 1.151769 -2.102811 -0.208394 0.871165 -0.188662 0.034145 1.257450 -0.888991 -1.203518 0.595351 -1.370274 0.429561 0.986410 2.137259 0.509955 3.030315 1.707151 0.311968 2.950496 1.568129 -1.308152 5.005942 -1.041624 0.849039 0.805226 1.620542 -0.277161 1.148469 1.131423 -1.230748 -1.066619 -2.813608 0.731140 -0.247356 1.560444 -2.713881 -1.791491 -3.081394 -1.386475 1.434144 1.438253 -0.419452 4.314508 -0.134285 0.086622 -4.551096 -0.469404 1.962631 -0.210651 1.755067 1.193648 -1.818123 -4.051507 -0.736631 -1.539345 -0.174477 -0.979807 -1.613790 -1.660611 -1.010578 1.936388 -0.640477 0.974295 3.025215 -0.203120 0.654670 -0.943596 -0.121962 -0.434651 -1.481925 1.284126 0.320437 -2.516216 2.948243 -0.160520 5.757619 -0.498923 1.813494 -1.731222 0.062220 0.241198 -1.070770 -0.664303 3.100456 1.615206 0.899603 -0.051607 0.420441 -1.441034 1.901950 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -0.658667 0.457785 3.904592 2.433554 -2.648176 -3.022778 -1.590241 -3.972210 1.549076 0.062561 2.595296 0.024479 0.304547 -0.536674 0.317939 -0.500308 0.222057 -0.867236 0.063655 -1.152328 -1.107636 2.189744 1.583846 -3.058171 0.588769 -3.586734 2.555544 2.000855 1.064257 2.076326 -0.365756 -0.589766 -1.103105 2.180168 -1.010934 -0.082964 0.771182 0.625015 -1.107524 0.603059 1.332498 1.524314 2.162997 -0.889887 2.600094 1.507564 1.524919 0.959311 -2.599068 -0.419712 -0.627974 2.195466 -2.050937 1.723810 -0.003365 1.041560 -0.142744 -2.648110 -1.183596 -2.770285 0.120405 0.153652 -1.314762 0.103054 -2.175641 0.475325 0.409908 -1.884219 1.814107 0.189831 2.109064 0.644515 -0.213762 -0.452800 -1.582761 0.624132 0.728176 1.903997 1.140395 -1.465873 0.025206 0.517818 -1.287559 -1.364323 0.158697 0.665988 1.092163 -0.555980 0.519691 -0.434473 0.800578 -0.583322 -0.186947 1.835067 -1.126116 0.428771 -1.376401 -0.485338 -2.123025 -1.449067 0.210922 -1.500195 1.812620 1.552750 -1.578041 0.297712 0.680219 1.198538 -0.985740 -2.444743 -0.249319 -0.720052 1.741436 2.725061 -0.578026 -0.615312 -0.184182 -0.919198 -0.395373 1.983712 0.012606 0.585706 2.967385 3.497844 0.544590 -2.087839 -1.573234 -0.056913 1.618851 2.556909 1.918053 -2.753763 -1.368215 -0.367166 -0.465978 -3.700596 0.389343 -0.171230 2.068827 -0.277141 -2.461850 1.080166 -1.629636 3.149504 1.272240 1.303208 0.381317 -0.099937 -2.262236 2.721870 4.428960 -0.647222 1.541641 -1.561077 -1.576223 2.254053 -1.076899 1.375947 1.124533 -0.389248 0.341326 -1.697017 -0.305125 2.141109 1.116811 1.238062 1.396643 0.731486 -0.637349 -3.706012 -2.903307 0.244877 2.194656 0.082517 4.504404 -2.590288 -1.871570 -1.136122 2.937369 -0.315837 -0.784547 0.176799 -1.414578 1.547261 -3.042724 -3.306536 3.608991 4.214511 0.987122 0.541310 3.003811 1.173784 -1.203837 -1.027354 -1.076017 1.062612 0.800412 -0.768714 -0.411520 0.226704 -2.333323 -1.121760 0.443184 1.104478 1.365246 -0.958549 -1.648408 0.903373 -2.808839 -2.004294 0.824336 -2.460474 -0.363835 0.836815 -0.082309 0.371218 0.966136 -1.144405 -0.753161 0.231379 -1.428914 0.941386 1.266264 2.058764 0.574203 2.525168 2.327066 -0.040813 2.722314 1.375124 -1.064877 4.853550 -0.828448 0.933098 1.197702 1.360615 -0.153216 0.861609 1.421807 -1.220537 -0.217227 -2.735953 1.068697 0.249296 1.794785 -3.123767 -1.859505 -3.146120 -1.138578 1.653065 1.678871 -0.294722 4.347824 0.112627 0.586330 -5.186289 -0.619288 1.401543 0.164301 1.759468 1.117763 -1.824068 -4.816507 -0.578811 -1.506479 -0.298180 -1.302023 -1.374676 -1.767798 -0.534695 1.350399 -0.338843 0.723784 3.185631 -0.359357 0.977575 -1.034217 -0.095746 -0.357899 -1.660990 1.251811 0.512994 -2.461010 2.625279 0.025167 6.347564 -0.465575 1.859529 -1.597758 0.471033 0.243499 -0.963959 -0.507209 3.124858 1.529566 0.984404 0.108119 0.121371 -1.310370 1.933225 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.157935 0.601310 2.208962 0.637572 -1.563010 -2.180257 -1.022483 -3.531489 1.126996 0.342762 1.760268 -0.247841 0.713973 -0.373089 0.112639 0.687031 0.812324 -0.554603 0.490737 -0.977309 -0.988404 1.768296 0.039477 -0.234486 0.391799 -2.115861 1.086028 0.911549 1.116438 0.887293 0.607592 -0.323288 -0.848014 0.956882 -0.204804 0.513640 0.724238 0.515059 -1.542446 0.670366 -0.100372 0.129542 1.405068 -0.336217 1.666519 0.525966 0.845467 0.898864 -1.132533 -0.362013 -0.666298 1.905667 -0.929411 0.663877 0.202609 -0.319296 -0.130360 -1.054037 -0.591139 -0.051209 -0.558334 -0.544243 -0.925903 0.432560 -1.183255 0.461676 -0.648908 -0.927626 0.504455 0.329395 1.200132 0.351536 -0.002403 0.541608 -1.936478 0.294692 0.471016 0.977137 0.953707 -0.526968 0.607803 0.156474 -1.042849 -1.241580 1.078267 1.319678 0.659589 -0.301459 -0.763818 -0.149937 -0.173869 -0.464117 0.717760 0.874007 -1.116191 0.035994 -1.083447 -0.627689 -1.501816 -2.095153 0.360268 -0.729476 1.080410 -0.027885 -0.377855 -0.077844 -0.099657 0.494382 -0.743468 -1.345346 0.107265 -0.657717 0.714887 2.585321 -0.518460 -0.516626 -0.887729 -0.626553 -0.542077 0.983140 0.681192 0.393262 1.546058 1.927308 0.569444 -1.197580 -1.379942 0.321370 0.906554 1.197832 1.070379 -1.548145 -0.988488 0.165440 -0.621018 -2.377605 -0.510852 -0.013802 1.092060 -0.420380 -0.242177 -0.101850 -0.951301 1.483322 0.739271 0.421139 0.310936 -0.101314 -1.237937 1.478118 2.175313 -0.419056 1.167646 -0.847481 -0.411063 0.722404 -0.704859 0.648065 0.644388 -0.437694 -0.542409 -0.663459 -0.276842 1.082394 0.524227 0.480227 0.160995 0.759634 -1.034445 -1.717615 -2.094634 0.542080 1.743738 -0.264873 1.870682 -1.497819 -1.285815 -0.201664 1.932323 0.190631 -0.779131 0.731843 -1.243042 1.004932 -1.202442 -1.821887 2.400920 2.450146 0.950095 -0.230312 1.298073 1.055645 -2.442747 -1.158036 -0.718020 0.770401 0.113458 -2.370675 -0.912724 0.404791 -1.447821 -0.496586 -0.031867 0.951536 0.772631 0.483660 0.627671 0.205155 -1.160752 -0.831486 1.244419 -0.736583 -0.352498 0.427531 -0.052663 0.158483 0.941056 -0.986353 -0.064628 0.482465 -1.084615 0.568803 0.830846 1.114436 0.027564 2.238400 1.639442 0.044639 2.005698 0.176877 -0.919787 1.846049 -0.336244 0.818705 0.276896 0.245948 -0.372070 0.245216 1.158483 -0.792341 -1.318642 -1.534629 -0.266655 0.180005 1.145782 -0.218105 -1.559370 -2.150457 -0.355264 0.625069 1.449587 0.070777 2.322811 -0.405598 0.507091 -2.554398 0.061251 0.587717 -0.134322 1.275529 0.427351 -1.054331 -1.495267 -0.436327 -1.705730 -1.433943 -0.465516 -0.986641 -1.126677 -0.920003 1.499254 -0.423233 -0.078806 1.463805 -0.119454 0.990092 -0.388501 -0.151996 -0.733330 -0.104537 1.524931 -0.208755 -1.475968 1.565763 0.167979 4.315866 0.054039 0.750995 -0.538975 -0.084656 0.247685 -0.998984 -0.393163 1.896615 1.340563 0.565709 -0.352394 -0.033631 -0.325687 0.947657 -PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = -1.361565 0.444655 8.044542 5.737069 -4.808229 -6.681771 -3.532327 -8.272607 4.409220 0.222412 5.365712 1.016609 1.355015 -1.627265 0.678934 -0.282762 0.948634 -1.863087 0.304365 -2.451894 -1.619213 6.752026 4.087833 -6.512013 0.647413 -7.879003 4.754765 3.793966 3.570329 5.237219 0.237546 -1.034883 -1.516002 4.418647 -2.498629 0.260016 0.369570 1.271679 -3.515515 0.658061 2.529567 3.146890 4.758733 -0.685439 5.732532 1.672235 4.210575 1.588791 -4.344412 -0.851867 -3.628349 6.738679 -4.829562 2.943732 -0.466476 2.542489 0.155882 -5.054808 -2.748533 -5.977054 -0.317761 1.203142 -3.744686 0.235058 -4.716169 1.585826 -0.906742 -2.826502 2.584881 1.068956 5.077949 1.730365 0.416915 -1.624805 -5.199561 1.321365 -0.270129 4.113748 3.384659 -1.917198 -0.852063 0.995028 -2.076288 -3.111123 1.803720 0.757973 0.953714 -0.713165 1.194373 -1.488596 -0.590393 -1.059902 -0.402438 3.202954 -3.443929 2.147427 -1.880674 -0.732386 -2.835779 -1.999358 0.378602 -3.601690 2.774902 2.959697 -1.219544 0.110862 0.120678 1.501733 -2.945442 -5.266169 0.255572 -0.938471 1.069027 6.352679 -2.285719 -0.664990 0.233655 -0.745042 -1.362829 5.198160 0.865619 2.402902 4.762188 7.179661 0.817439 -4.018259 -2.168648 1.055898 4.241954 5.147956 3.931471 -4.807856 -3.428353 -0.742707 0.485054 -7.928330 0.946047 1.857269 3.856955 1.231552 -5.046874 1.153650 -2.772874 6.554766 3.004630 2.612406 1.506597 -0.458969 -4.887927 6.066437 10.457910 -1.535228 3.785731 -2.704183 -3.299042 6.099196 -4.398277 3.350154 1.313830 -0.557726 1.095108 -3.484093 -1.178271 4.591368 2.028860 2.377025 3.114363 1.642163 -0.687105 -8.165067 -6.559851 0.317147 4.879898 0.172991 9.050218 -4.601990 -3.530373 -1.782132 5.564078 -0.367982 -1.611119 0.701146 -3.295052 3.378413 -8.615579 -6.996681 9.115023 8.444436 1.894073 0.777205 5.926357 4.470680 -2.706372 -2.705942 -2.341835 2.576859 1.926523 -1.647188 -0.251633 0.119517 -5.026935 -3.228868 1.286705 2.044998 2.121378 -1.999110 -2.642901 1.567682 -5.864616 -3.453089 2.405005 -5.708460 -1.610323 1.219306 -0.275411 0.044671 2.006699 -2.039531 -0.627002 1.631054 -3.020266 0.960517 2.266918 4.442905 1.671157 5.052979 6.223851 0.397685 6.246171 3.188597 -2.745004 10.888743 -2.080395 1.502231 1.785220 2.515314 0.078636 1.488327 1.915144 -2.602263 -1.617080 -5.732197 2.823993 0.937768 4.350713 -5.899950 -4.579966 -5.747480 -2.421325 4.025479 3.570429 -0.788309 9.751182 -1.356666 0.729920 -11.103213 -0.600124 4.423032 0.487105 4.360753 2.829249 -3.503837 -9.013786 -2.110042 -2.515165 1.336129 -2.788125 -4.460140 -3.604311 -2.478914 4.212658 -2.917579 2.144798 6.811152 -1.465959 2.982893 -2.164919 -0.512814 -1.685728 -2.337397 1.441726 1.820400 -5.493496 6.464702 -1.259674 13.108497 -2.003796 3.975227 -3.944076 1.960199 -0.915499 -2.085432 -0.718269 7.163465 3.916975 1.364934 0.594008 0.371533 -2.612476 3.270567 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.104076 0.254084 0.796514 -0.217969 -0.365629 -0.872031 -0.346883 -1.578106 0.431475 0.290941 0.786508 -0.196651 0.484838 -0.015054 0.037412 0.430009 0.319811 -0.381355 0.362395 -0.375970 -0.334308 0.805283 -0.154091 0.546472 0.110193 -0.948671 0.383825 0.089123 0.477212 0.470089 0.269851 -0.147749 -0.312245 0.223887 0.111943 0.433658 0.393842 0.275684 -0.469255 0.367262 -0.267077 -0.246835 0.414878 -0.049856 0.672333 0.272153 0.146636 0.334445 -0.125605 -0.316631 -0.192054 0.490551 -0.417329 0.131433 -0.037594 -0.401500 -0.142755 -0.122800 -0.180681 0.193922 -0.288856 -0.444146 -0.341290 0.282009 -0.458163 0.292058 -0.530467 -0.270280 -0.105226 -0.017763 0.463940 0.210274 0.103655 0.544347 -1.013179 0.086206 0.133157 0.195360 0.315178 -0.308503 0.097879 0.021908 -0.531429 -0.617255 0.629660 0.855285 0.232632 -0.118239 -0.531285 0.145583 -0.237528 -0.103743 0.425057 0.411532 -0.396293 -0.052624 -0.374810 -0.219165 -0.507946 -1.198518 0.190428 -0.313349 0.380125 -0.159456 0.044506 -0.194258 -0.164072 0.169608 -0.314245 -0.588686 0.182119 -0.241639 0.193182 0.977138 -0.281023 -0.085664 -0.527334 -0.280947 -0.044471 0.329362 0.390266 0.149857 0.542411 0.608803 0.299563 -0.480993 -0.642406 0.309922 0.379154 0.255871 0.297241 -0.639248 -0.378693 0.213043 -0.464645 -0.921531 -0.402589 0.126523 0.443744 -0.416659 0.116664 0.046626 -0.369059 0.363164 0.548103 0.054272 0.105162 -0.004658 -0.479377 0.459856 0.784369 -0.194552 0.517107 -0.407562 0.015715 0.298171 -0.331066 0.187862 0.253669 -0.012369 -0.444137 -0.227199 -0.068454 0.404431 0.261241 0.394220 -0.092706 0.357691 -0.497852 -0.534876 -0.770397 0.023119 0.923178 -0.164340 0.407224 -0.588800 -0.337504 0.127612 0.790940 0.245744 -0.424276 0.336629 -0.464847 0.338851 -0.511983 -0.639330 0.875733 0.987576 0.566762 -0.093040 0.224779 0.611775 -1.110550 -0.389169 -0.266014 0.396700 -0.268267 -1.396408 -0.610561 0.117037 -0.593891 -0.195000 -0.193652 0.421070 0.273951 0.486429 0.550919 0.073162 -0.220375 -0.313478 0.583087 -0.140359 -0.284722 0.062353 0.031079 0.043582 0.252532 -0.410739 0.269170 0.465698 -0.461704 0.304112 0.497308 0.151584 -0.050100 1.047131 0.557729 -0.123345 0.403950 -0.203500 -0.266644 0.339957 -0.048641 0.322786 0.009703 0.067672 -0.154831 0.123985 0.501927 -0.285429 -0.794784 -0.542151 -0.319041 0.122938 0.419028 0.571930 -0.812171 -0.861504 0.049174 0.112504 0.883626 0.142709 0.830533 -0.144765 0.427702 -0.757065 0.155271 0.063060 -0.146898 0.411716 0.084393 -0.248725 -0.109885 -0.159285 -0.745079 -1.024003 -0.160952 -0.418929 -0.344182 -0.478072 0.471141 -0.192486 -0.244936 0.116974 0.165339 0.512917 0.025750 -0.092972 -0.599553 0.325666 0.809625 -0.209529 -0.471075 0.451813 0.194577 1.512507 -0.022565 0.221190 -0.016356 0.036756 0.010374 -0.452155 -0.117766 0.738029 0.598878 0.170652 -0.245188 -0.162251 0.164567 0.222635 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = -1.977499 0.798160 8.954727 6.110319 -4.320369 -6.547319 -3.286473 -8.050906 4.893788 0.169689 5.379677 1.124016 1.902690 -2.064696 0.359733 -1.459704 1.399804 -2.755334 0.313174 -2.428251 -0.723488 7.532641 3.698699 -7.352905 0.435020 -10.192258 6.054640 3.889387 3.483611 6.055848 0.126438 -0.733437 -1.248511 4.901600 -2.668826 -0.418246 1.316865 1.108567 -2.740675 -0.315807 3.112385 4.565728 5.166208 -0.367752 5.352430 2.213057 4.090242 1.506298 -3.813404 -1.206683 -3.728509 5.981957 -4.803726 3.221832 -0.276113 2.831527 1.506598 -5.897747 -2.192604 -6.753620 -0.012078 1.937447 -3.180353 -0.033605 -5.075968 1.503685 -0.006548 -2.670558 2.733252 0.520128 5.105487 2.216072 1.350374 -2.433739 -5.264169 2.114273 -0.486057 4.082145 3.635440 -1.958325 -1.994932 1.025806 -2.606371 -3.621698 1.667685 1.296523 1.053244 -0.193788 1.757855 -1.882589 -0.763001 -1.426570 -1.302813 3.806528 -2.791449 1.857137 -1.389953 -0.494060 -2.791830 -1.471922 -0.033658 -4.060498 2.255972 4.485698 -1.593321 -0.084359 -0.066257 0.857186 -2.957088 -4.700477 1.181111 -1.747510 1.261919 5.929310 -2.546063 -0.759697 -0.219628 -0.787060 -0.377760 6.129508 -0.570691 2.315649 5.386406 7.343312 0.701383 -4.259353 -1.522601 1.523403 4.592332 4.769942 4.254293 -6.277602 -3.294688 -0.867745 0.521215 -8.153186 1.489283 1.954533 4.479088 1.152795 -7.080582 2.901159 -2.859992 7.117540 3.778301 2.601057 1.570015 -0.065249 -4.937166 6.496971 11.298011 -1.722353 3.835673 -4.100422 -3.489489 6.947645 -4.437696 3.735917 0.865457 -0.133216 1.006788 -3.828320 -0.218257 5.351031 2.095007 2.872941 4.113981 1.312520 0.393841 -9.247081 -7.190605 -0.024105 4.857530 0.244585 11.003228 -5.276705 -3.071082 -2.207811 5.669623 -1.111415 -1.650084 0.548704 -3.172239 3.310886 -9.556717 -7.797786 10.123307 8.712964 1.096187 1.132927 6.120066 4.230479 -1.375245 -2.389951 -2.261064 2.734216 1.847409 -1.053424 0.561832 0.274079 -5.431601 -3.990374 1.358483 1.832672 3.603679 -3.170534 -3.629368 0.773789 -6.614696 -4.751436 2.395491 -6.088041 -2.365225 1.306068 -0.067072 0.157742 2.379038 -1.129029 -1.090345 2.194841 -2.879042 0.001224 2.317129 4.796712 1.824995 4.804509 6.343524 0.489079 5.622607 3.954716 -2.371148 12.228968 -2.216278 0.848479 2.046321 3.312291 0.977086 2.490922 1.893895 -2.740071 -1.047523 -6.770143 4.245202 0.435906 3.878260 -7.821603 -4.302086 -6.229073 -2.965227 3.967959 4.167699 -1.017026 11.074979 -1.055264 0.015004 -12.037256 -0.876422 5.019199 0.877721 3.733711 3.510670 -3.911922 -9.017040 -2.105758 -2.468980 1.372193 -3.024491 -4.900165 -3.782779 -2.622503 4.193200 -3.373969 2.678661 7.975761 -0.866501 2.714714 -2.052860 -0.234417 -2.436022 -2.776541 0.777681 1.999343 -4.989249 6.843166 -1.866862 12.190103 -3.054159 4.315672 -4.488723 3.043964 -1.064987 -2.929186 -0.903003 7.767159 3.132001 0.906005 1.489600 -0.037879 -2.649157 4.949471 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.049975 0.297364 1.045537 -0.099284 -0.604113 -1.323405 -0.473096 -1.984599 0.604399 0.376029 1.031430 -0.137123 0.659387 -0.078766 0.048555 0.475315 0.461684 -0.484719 0.373698 -0.574536 -0.569415 1.128463 -0.070334 0.472644 0.197004 -1.249676 0.722818 0.250859 0.541343 0.775150 0.360022 -0.122285 -0.416673 0.404478 0.092684 0.547311 0.355307 0.372435 -0.530546 0.493233 -0.110357 -0.262756 0.735169 0.053084 0.907013 0.510717 0.238865 0.462384 -0.274671 -0.472925 -0.277924 0.521218 -0.612659 0.250340 -0.220899 -0.353324 -0.012803 -0.269568 -0.189508 0.081288 -0.318879 -0.544348 -0.577116 0.329595 -0.703028 0.320971 -0.684129 -0.459157 -0.155513 -0.112943 0.627535 0.219872 -0.051725 0.490276 -1.339870 0.037797 0.187401 0.280783 0.521021 -0.360024 -0.100227 -0.019664 -0.819065 -0.838396 0.784585 0.951351 0.334703 -0.017636 -0.656228 -0.004799 -0.297411 -0.078778 0.583537 0.589722 -0.485360 -0.080693 -0.323345 -0.329426 -0.732712 -1.430686 0.340143 -0.369954 0.512950 -0.145457 -0.036712 -0.300438 -0.254308 0.150129 -0.469694 -0.756021 0.204502 -0.455777 0.295881 1.254440 -0.307225 -0.188942 -0.722827 -0.421080 0.055184 0.582892 0.507386 0.072405 0.867277 0.842317 0.346155 -0.681751 -0.804041 0.323942 0.489763 0.358045 0.428137 -0.813427 -0.550562 0.278668 -0.634941 -1.235126 -0.479502 0.174435 0.613076 -0.530084 0.023797 0.275970 -0.554896 0.445519 0.777680 0.147996 0.190731 -0.027683 -0.717521 0.648759 1.181195 -0.232965 0.656974 -0.608847 -0.180270 0.672330 -0.447823 0.241492 0.363296 -0.172375 -0.643888 -0.226009 0.051533 0.586558 0.252510 0.470225 0.050710 0.475938 -0.561479 -0.689497 -1.121403 0.069844 1.277977 0.039717 0.823940 -0.893904 -0.264959 0.076711 0.981487 0.322520 -0.546696 0.410632 -0.549573 0.464823 -0.987321 -0.883891 1.291098 1.258347 0.783021 -0.071343 0.331546 0.749732 -1.148054 -0.514296 -0.397835 0.532694 -0.221502 -1.529814 -0.593200 0.161775 -0.852716 -0.298284 -0.240925 0.564689 0.435893 0.313064 0.574419 -0.151619 -0.359345 -0.569292 0.642876 -0.285963 -0.337761 0.137093 -0.030489 -0.016374 0.295973 -0.350285 0.294554 0.420305 -0.551754 0.370603 0.603305 0.288844 -0.007718 1.331900 0.855910 -0.306606 0.464973 -0.205636 -0.304925 0.706703 -0.144571 0.475250 0.098572 0.319935 -0.011713 0.171480 0.726211 -0.381015 -0.807944 -0.753921 -0.249316 0.321820 0.545849 0.360414 -0.920489 -1.359449 0.030743 0.095902 1.312012 0.081207 1.207566 -0.175657 0.539351 -1.091039 0.204236 0.142625 -0.141756 0.514428 0.159691 -0.430685 -0.168557 -0.239499 -1.022259 -1.069945 -0.186900 -0.432764 -0.535949 -0.434950 0.438071 -0.343673 -0.234819 0.332621 0.020429 0.588150 -0.062396 -0.070491 -0.736153 0.259888 1.036003 -0.218505 -0.609065 0.645236 0.217591 1.910195 0.027555 0.463489 -0.022702 0.206589 -0.032901 -0.710984 -0.249612 1.009797 0.734153 0.159079 -0.118866 -0.128010 0.324932 0.394615 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp___GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_minimum_to_corners.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.248123 0.564092 2.576479 1.753069 -2.106525 -2.104232 -1.064497 -2.701682 0.819867 -0.117607 1.631940 -0.244713 0.092629 -0.430314 0.064421 -0.544299 0.290410 -0.299829 0.015902 -0.857120 -1.243613 1.072969 0.662065 -2.116895 0.609604 -2.191987 2.035092 1.537468 0.515954 1.231049 -0.234098 -0.361587 -0.951995 1.500294 -0.595923 -0.314207 0.652556 0.390743 -0.835445 0.579878 0.968147 0.952443 1.665322 -0.714337 1.430538 1.349656 0.702127 0.863401 -2.053634 -0.159804 -0.101561 1.066982 -1.102236 1.271453 0.103095 0.526759 0.138961 -1.859131 -0.631701 -1.427925 0.092950 -0.186629 -0.697417 0.091504 -1.550376 0.107719 0.372586 -1.594510 1.525819 0.099455 1.176129 0.343444 -0.378345 -0.307806 -0.751896 0.443772 0.957199 1.376166 0.751009 -0.963123 0.514804 0.379479 -1.134382 -0.879022 -0.087907 0.404186 1.108884 -0.346186 0.271301 -0.597285 1.033563 -0.416128 0.131602 1.169397 -0.394967 0.038293 -1.451498 -0.464380 -1.761680 -1.454764 0.178590 -0.763998 1.418359 1.010589 -1.641729 0.368915 0.836213 0.967843 -0.346550 -1.533485 -0.318394 -0.789577 1.641155 2.085094 -0.027979 -0.867270 -0.437105 -0.886837 -0.311257 1.177649 -0.099226 0.088900 2.156358 2.365217 0.405050 -1.418382 -1.284646 -0.339232 0.683764 1.719272 1.431104 -1.914591 -0.888629 -0.290498 -0.557278 -2.496087 0.182656 -0.807065 1.402325 -0.491050 -1.501064 0.898787 -1.343899 1.940149 0.539132 0.897087 0.238502 -0.111571 -1.444640 1.837756 2.512709 -0.385696 0.848818 -1.192002 -1.261055 1.092361 -0.027248 0.687084 0.734748 -0.598086 0.190026 -0.992367 0.067714 1.373906 0.522764 0.522970 1.013643 0.475688 -0.691466 -2.299078 -1.880806 0.683342 1.459228 0.099384 3.150605 -1.932092 -1.284361 -0.878389 2.094520 -0.260068 -0.404869 0.162268 -0.914000 1.047216 -1.604420 -2.265811 2.178756 2.558397 0.543728 0.237006 1.856132 0.307231 -0.891108 -0.782288 -0.879809 0.552707 0.664845 -0.618597 -0.432067 0.313076 -1.433485 -0.441141 0.460372 0.851287 1.317626 -0.902947 -1.218027 0.184474 -1.915452 -1.633767 0.688321 -1.537671 0.150962 0.849841 -0.206035 0.331797 0.895072 -0.681359 -0.861159 -0.323574 -0.806713 0.694600 0.683532 1.582911 0.117508 1.782672 1.433470 -0.081765 1.787611 1.002008 -0.780863 3.366836 -0.604242 0.830848 0.908055 1.010121 -0.146587 0.589241 1.319854 -0.831434 -0.006351 -1.923670 0.445215 0.128468 0.996183 -2.468542 -0.881905 -2.500709 -0.803755 0.813979 1.122741 -0.112064 2.762096 0.250737 0.214242 -3.148052 -0.559094 0.792271 0.107264 1.286406 0.654857 -1.420983 -3.224397 -0.280996 -1.406178 -0.296158 -0.866214 -0.598280 -1.321087 0.097480 0.691583 0.297395 0.474282 2.406272 -0.311165 0.342288 -0.830488 -0.001018 -0.009882 -1.468974 1.043041 0.117136 -1.587413 1.708150 0.250635 4.248067 0.174135 1.134932 -1.014903 -0.071293 0.536003 -0.800926 -0.551070 1.935548 0.805212 0.800489 0.129970 0.246408 -0.861347 1.548624 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = 0.056212 0.275127 1.203314 0.510074 -0.477001 -0.864195 -0.274447 -1.138076 0.313681 0.123055 0.694870 -0.012507 0.200226 0.402185 0.155538 0.025127 -0.089976 -0.235918 0.312386 -0.212145 -0.281306 0.667410 0.368377 -0.611787 0.029116 -1.080618 1.137323 0.480420 0.412120 0.853407 -0.063671 -0.191385 -0.084058 0.599442 -0.293627 -0.193494 -0.021683 0.385290 -0.092825 0.384834 0.254116 0.334349 0.377897 0.016777 0.529031 0.735415 0.582086 0.232629 -0.171565 -0.013758 -0.554971 0.468647 -0.772625 0.413356 -0.578830 0.199001 -0.124872 -0.516267 -0.317419 -0.780924 0.118012 0.178469 -0.603663 0.064857 -0.878674 0.181020 -0.273687 -0.546107 0.172003 0.474187 0.720976 0.285198 0.042125 -0.268322 -1.003456 0.124849 -0.163411 0.460563 0.352591 -0.827393 -0.368721 0.327944 -0.509565 -0.537660 0.204922 0.381898 0.165880 -0.385404 0.402031 -0.099429 -0.240378 0.071298 -0.237958 0.831198 -0.074958 0.625910 -0.573593 0.158434 -0.402081 -0.492367 0.047856 -0.687451 0.512155 0.372611 -0.039381 -0.040795 0.238484 0.359646 -0.175973 -0.925837 -0.116057 -0.169755 0.316803 0.533214 -0.041937 -0.048064 0.191314 -0.205418 0.143164 0.630076 0.158797 0.159368 0.885774 0.874455 0.058320 -0.556431 -0.389097 0.178090 0.261019 0.807631 0.492254 -0.852783 -0.445595 -0.233134 -0.017245 -1.023818 0.540164 0.282801 0.346193 -0.586466 -0.680954 0.430009 -0.559042 0.647540 0.816399 0.682298 0.269058 0.050290 -0.430461 0.648317 1.652215 -0.221409 0.388631 -0.645997 -0.245604 0.917961 -0.378387 0.457987 0.210301 0.248210 0.108010 -0.621965 -0.258475 0.739020 0.468372 0.565149 1.051540 0.114104 -0.117198 -0.951212 -0.399966 -0.199719 0.917662 -0.107093 1.246441 -0.715709 -0.207910 -0.044221 0.511328 0.168670 -0.114222 -0.046291 -0.138637 0.371652 -1.363334 -0.891234 0.663043 0.673947 0.221320 -0.068564 0.534486 0.617933 -0.088440 -0.454992 -0.334175 0.487353 -0.213754 -0.052886 -0.163210 -0.044482 -0.812732 -0.163251 0.152928 0.300715 0.592458 -0.233138 -0.745000 0.247853 -0.953967 -0.727450 0.258240 -0.881897 -0.398038 0.117342 -0.010594 -0.055506 -0.092513 -0.206009 0.096470 0.532946 -0.367937 0.197866 0.580695 0.233695 0.001618 0.828100 0.524847 0.044676 0.160695 0.469371 -0.155237 1.498925 0.010978 0.100939 0.388564 0.464776 -0.215675 0.336571 0.342671 -0.319614 -0.496394 -0.918843 0.442719 0.117710 0.524250 -0.248200 -0.218885 -0.639702 -0.280736 0.557832 1.038536 0.003693 1.278664 0.221997 0.523269 -1.088671 -0.044134 0.258308 -0.058883 0.475252 0.445278 -0.420587 -0.579415 -0.215125 -0.107286 -0.092311 -0.386542 -0.536865 -0.620283 -0.044344 -0.468041 -0.173408 0.112991 0.650144 -0.205101 0.236594 -0.456865 -0.101580 -0.134072 -0.175081 0.692318 0.263763 -0.847372 0.670738 -0.211423 1.840839 -0.327755 0.642140 -0.453299 0.045852 -0.096143 0.061482 -0.095536 1.065048 0.214948 0.348541 0.166924 -0.066844 -0.034225 0.355757 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = -2.208217 0.968707 10.502020 6.129306 -4.643568 -8.541794 -4.304568 -10.405000 5.918192 0.223697 6.840561 1.770020 1.831729 -1.130332 1.355470 -0.174538 0.287374 -3.299154 0.241702 -2.686994 -0.992422 9.164742 5.827845 -7.230130 0.373117 -11.365082 5.161683 4.207471 4.923760 6.742124 -0.273022 -1.651006 -1.381783 5.712032 -3.074164 0.677396 0.634535 1.187984 -3.276647 0.317933 3.038380 4.591875 5.317748 0.069228 7.331426 2.081398 5.702505 1.586767 -3.780984 -1.534306 -5.306642 9.536680 -6.575117 3.629422 -0.276644 3.887151 0.162146 -6.438232 -3.095105 -7.899764 -0.666901 2.170798 -4.746986 0.061451 -5.740419 2.229088 -1.359280 -2.331746 2.437727 0.940717 7.179367 2.040777 1.028570 -1.772836 -6.989589 1.713893 -1.867525 5.009456 4.337792 -2.795893 -2.936740 1.666173 -2.313205 -4.460225 2.524242 1.068731 0.444087 -1.098651 1.498622 -1.200168 -2.061248 -1.756467 -1.478356 4.653689 -5.111161 3.270299 -0.950806 -0.520601 -3.464569 -1.743555 0.234223 -5.153365 2.669781 3.707935 0.201053 -1.406716 -1.056815 0.722857 -3.902799 -6.953440 1.222321 -0.124855 0.216096 6.649179 -3.928145 0.814215 1.582305 -0.752719 -1.532738 7.355661 1.545124 3.168961 5.494159 8.972654 0.944040 -4.441703 -2.071812 1.720961 6.327418 6.159914 4.679116 -6.785363 -4.137805 -0.330691 1.218209 -10.042284 2.134239 4.797557 5.354606 2.918415 -7.361903 1.651948 -2.782843 7.890310 4.451297 3.178930 1.865088 -0.851090 -6.020382 7.571576 14.588981 -2.305901 5.441522 -3.433961 -3.341437 9.113754 -7.874037 4.735252 1.947472 0.713357 1.359953 -4.470903 -2.166341 6.240463 3.429370 3.945638 4.757155 1.712130 -0.289947 -11.061865 -8.474623 -1.019931 6.199089 -0.760605 10.479449 -5.344980 -3.753308 -1.964323 7.523010 -1.335712 -2.522039 0.639876 -3.937236 4.026913 -10.780352 -8.119809 11.872012 11.776838 1.693696 1.293831 7.532818 7.318930 -2.919304 -3.100276 -2.925215 3.566319 1.396782 -1.734622 -0.006954 -0.856948 -6.600428 -4.305302 0.839785 2.196441 2.196367 -1.671799 -3.405357 2.999253 -7.577614 -4.415486 2.145080 -7.188026 -3.006133 1.077990 -0.006690 -0.613306 1.968901 -2.222466 -0.339178 4.036084 -4.508230 0.920343 3.615963 4.627948 2.963583 7.031261 6.703720 0.845581 7.713807 4.160247 -2.834060 13.395951 -2.503679 1.314986 1.893735 3.858302 0.192302 2.959424 1.203324 -3.155051 -3.012807 -7.275946 4.627133 0.510538 5.435577 -5.910570 -6.921391 -6.686612 -3.454204 5.946234 4.646366 -1.429803 12.694229 -1.444269 1.405792 -14.753902 -0.377520 5.809671 0.249142 4.431954 3.750947 -3.701635 -10.654503 -2.798221 -1.821217 0.803467 -3.369441 -6.372538 -3.689807 -4.656444 5.467610 -5.143360 2.813326 7.173804 -0.682892 3.880655 -2.160041 -0.759836 -3.319139 -2.074182 2.338727 2.270534 -6.758566 8.034244 -1.975144 15.428668 -4.360794 5.608585 -4.988007 3.084697 -1.689282 -2.292725 -0.381491 9.353785 5.123007 1.041490 0.468781 0.207665 -3.198445 3.735946 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = -0.943671 1.643784 8.640481 5.427932 -4.639654 -6.748498 -3.455462 -8.326926 3.913374 -0.567110 5.345172 0.405216 0.827995 -0.764713 0.527269 -1.508482 0.603233 -1.755119 -0.251693 -2.551742 -2.244757 5.269500 3.173293 -6.246486 1.001032 -8.797325 5.204455 4.019216 3.122350 4.805246 0.018149 -1.191893 -2.035333 4.560226 -2.207316 -0.572936 1.092232 0.419422 -2.853647 0.484637 3.127147 3.920120 4.922810 -0.092698 4.576390 2.607204 3.312837 1.855122 -3.848825 -0.720767 -3.350902 6.509426 -4.243541 2.923916 0.515534 3.085637 0.881928 -6.008824 -1.874027 -4.624493 -0.323885 1.122845 -3.197480 0.079096 -4.778960 1.154056 -0.919071 -2.619492 3.430044 0.004167 4.918631 0.917780 -0.055029 -1.581203 -4.022863 1.407776 -0.374419 4.285285 3.368124 -2.285824 -0.591313 1.624509 -2.585136 -3.033375 1.096215 0.394139 1.373583 -1.002779 1.304903 -2.072596 0.092405 -1.542661 -0.485756 3.318108 -3.149644 1.811069 -2.972406 -1.117397 -3.794745 -2.470574 0.418063 -3.388390 2.791964 3.154167 -2.618847 -0.375290 0.613488 0.807541 -1.800096 -5.194907 0.194300 -0.784187 2.177384 6.326590 -2.471054 -1.230311 0.109676 -1.563918 -1.360059 5.341095 0.728652 1.654913 4.813773 7.160786 0.808528 -3.713415 -2.288414 0.343129 3.528098 5.047659 4.294424 -5.582606 -3.137689 -0.664146 0.448038 -8.369776 1.990095 0.914524 4.481111 2.155285 -5.834475 1.655858 -3.146876 5.603202 2.305401 2.964433 1.482390 -0.876815 -4.577338 5.907856 9.882951 -1.788364 3.938726 -3.374076 -3.422512 5.358046 -3.904405 2.908429 1.446062 -0.287982 1.603307 -3.202524 -1.174606 4.879212 1.786478 2.235430 4.344968 1.284432 -0.692056 -8.464337 -6.391740 0.954265 4.492413 -0.713540 8.160803 -4.914647 -2.879381 -2.042764 6.916844 -1.579861 -1.649216 0.592986 -2.904614 3.088217 -6.552338 -6.522549 8.153154 8.631919 0.292852 0.476229 5.353090 4.163562 -2.602734 -2.252197 -3.090639 2.384227 1.735760 -1.164646 0.019938 -0.572832 -4.396546 -2.376184 1.502425 2.206891 3.125773 -2.939930 -3.248879 1.476160 -6.228178 -4.852532 2.540965 -5.554917 -1.026564 1.727219 -0.623677 -0.256468 2.282639 -1.513514 -1.750073 1.944703 -2.891947 0.833537 2.507366 4.519533 1.441254 5.812268 4.064735 0.725210 6.011865 3.727885 -2.561689 11.267585 -2.274929 1.593544 1.820954 3.497188 -0.214215 2.640927 1.685171 -2.581908 -2.202646 -5.968995 2.784314 -0.354645 3.791335 -5.691721 -4.160972 -6.460130 -3.191695 3.806267 3.404475 -0.802762 9.789025 -0.377695 0.266933 -10.153802 -1.063047 4.751454 0.065954 3.861877 2.735919 -3.601103 -8.520684 -1.805557 -2.622716 1.048019 -2.437974 -4.049130 -3.709140 -2.497937 4.272228 -2.107578 2.471952 6.342601 -0.595501 1.681139 -1.945257 -0.499562 -1.394591 -3.105717 2.125031 1.457719 -5.463118 6.622932 -0.946860 11.797700 -1.877045 4.190382 -4.040728 0.955039 -0.228569 -2.027978 -1.068208 6.950775 3.527306 1.490697 0.131144 0.516879 -2.852774 3.657566 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 1.066773 0.167617 2.102962 -0.402251 -0.748525 -2.395117 -0.818904 -5.714772 2.405741 0.678649 2.034940 -0.259032 1.199810 -1.091644 0.059006 2.550874 0.614270 -1.276878 1.061553 -0.723661 0.020926 3.908792 -0.746869 1.826238 0.112616 -3.573570 -0.299751 0.361026 3.007728 0.509282 0.824147 -1.033920 -0.381048 0.310132 0.166454 1.651297 0.994605 0.304415 -2.884720 0.423288 -1.685765 -0.723448 1.115585 -0.956928 2.527598 -1.554978 2.167994 0.795398 0.342601 -0.414006 -1.813233 3.861046 -0.756243 0.442821 0.419415 -1.688465 -1.139046 -0.262281 -1.137781 1.804567 -1.653285 -0.649084 -1.142836 0.575202 -1.028210 0.982128 -1.162836 -0.033214 -0.082104 0.517491 1.733234 1.157881 0.888812 1.264179 -4.203490 0.446874 -0.008388 0.807584 0.592838 -0.109809 1.448923 0.031254 -1.012261 -1.389438 2.691458 3.392340 0.007300 -0.849031 -2.111990 0.768276 -1.541362 -0.783402 1.041925 0.538708 -2.666213 -0.104494 -1.384681 -0.458553 -1.158593 -3.088936 0.265945 -1.046686 0.908887 -1.404999 1.621446 0.126184 0.539516 0.334323 -0.850613 -1.800212 0.367681 0.277219 0.259280 3.756826 -1.010243 0.088569 -1.354921 0.026036 -2.003947 0.464639 1.147273 1.208256 1.693955 1.871252 1.503672 -1.183370 -1.854874 1.823531 1.736825 1.117159 0.466198 -1.635847 -0.747091 0.492954 -0.029917 -3.243631 -1.573432 1.398233 1.478724 -0.623333 1.126231 -1.417341 -0.005930 2.367515 1.253495 -1.385565 0.459806 0.506141 -1.180503 1.784453 3.246855 -0.229474 1.292651 -1.867999 0.979461 0.535242 -1.773287 0.879243 0.440820 0.721905 -0.965033 -1.136365 -0.394301 0.890041 0.531847 0.630538 -1.154028 1.365592 -1.643635 -2.249023 -2.799569 -0.272970 1.697109 -1.065059 1.238659 -1.132715 -2.142103 0.184359 1.672744 0.569961 -0.997055 1.713375 -3.060407 1.227196 -0.843674 -2.005711 3.425808 3.938069 1.669436 -0.031087 1.722951 2.443022 -4.737192 -1.243033 -0.443951 1.124484 0.294479 -5.935160 -1.870873 0.210514 -1.964082 -1.365027 -0.558570 0.766282 -0.041353 3.048543 2.998072 0.439513 -1.019841 -0.194662 2.741936 -0.456476 -0.759711 -0.181797 0.475295 0.007651 1.745639 -2.067638 1.353257 1.936379 -1.586106 1.015135 1.302978 0.280099 -0.306871 2.427695 2.701937 0.515886 3.846517 -0.626448 -1.267351 0.309052 0.038794 0.404648 -0.362189 -1.346413 -0.928125 0.575304 0.580214 -1.058665 -2.496466 -1.408136 -0.522487 -0.136604 1.474332 2.738126 -3.054017 -1.758430 -0.632906 0.877372 1.282830 0.917617 2.323971 -1.795820 1.134993 -3.919910 0.445516 0.243305 0.275335 1.645166 -0.061663 -0.538268 -0.284144 -0.389535 -1.647189 -3.911793 -0.844167 -2.565185 -1.053061 -3.318366 3.389405 -1.579905 -0.610531 0.639890 0.792196 2.444761 -1.022885 -0.156446 -2.141449 1.612418 1.923195 -0.272635 -1.506096 0.923472 -0.065064 5.559689 -0.817189 0.252790 -0.628397 0.503034 -0.521811 -1.936304 0.230346 2.100211 2.047462 0.124045 -1.473920 -1.148313 -0.491410 0.671188 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp___GLOBAL__sub_I_find_length_of_the_longest_consecutive_path_in_a_character_matrix.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -1.227939 1.320849 8.044204 5.256996 -4.454567 -5.826644 -2.950414 -7.102282 3.337219 -0.246576 4.645404 0.578141 0.793576 -0.539183 0.846898 -0.764375 0.846399 -1.825417 0.454407 -2.070359 -1.315949 5.112464 3.413964 -6.436408 0.596192 -7.660922 4.867078 3.848505 2.851954 4.343679 -0.065298 -1.100896 -1.418843 4.385976 -2.335267 -0.865258 1.121832 0.959781 -2.740736 0.694441 2.239432 3.848825 4.151336 -0.738995 4.421148 2.424342 4.004475 1.756016 -3.936008 -0.372704 -3.363028 6.167079 -4.189349 3.016032 0.057728 2.517290 0.488023 -5.306583 -2.270859 -5.551496 -0.174208 1.541352 -2.832915 0.033221 -4.440794 1.125994 -0.109361 -2.741528 3.023086 1.748439 4.606011 1.569195 0.749350 -1.586079 -4.073215 1.692035 -0.276868 4.231695 2.880811 -2.680957 -0.750007 1.596535 -1.967559 -2.956267 0.782214 0.680151 1.295607 -1.306739 1.763576 -1.209327 -0.289267 -1.330378 -1.444399 3.401482 -2.469928 2.292759 -2.332112 -0.437095 -3.388209 -1.743559 -0.201310 -3.516920 2.582548 3.333083 -1.426797 -0.080750 -0.069130 1.363318 -2.222269 -4.679572 0.317261 -0.983916 1.349304 5.081436 -1.961150 -0.472674 0.729032 -0.870350 -0.910590 4.845734 0.083467 1.937904 4.547832 6.863061 0.452178 -3.380765 -1.783347 0.268874 3.619598 5.012217 4.167290 -5.264603 -3.017355 -1.022218 0.537410 -7.036610 2.118487 1.559701 3.656232 1.020492 -5.672880 1.352666 -2.856681 6.315757 2.623363 3.131939 1.286940 -0.462907 -3.912744 5.620421 9.652343 -1.676361 3.538795 -2.861258 -2.512640 5.231550 -3.565675 3.276282 1.373736 -0.053275 1.271156 -3.453861 -1.538978 4.508726 2.736108 2.238858 4.279125 0.944734 -0.254060 -7.933481 -5.476922 0.407249 4.072897 -0.777254 8.688031 -4.396647 -3.402226 -1.921380 5.082626 -1.095572 -1.467823 0.223266 -2.471547 2.869898 -7.036119 -6.345012 7.714636 7.424550 0.529299 0.540216 5.562912 3.634716 -2.285347 -2.673673 -2.120213 2.344205 0.922498 -0.763756 -0.152827 0.231163 -4.646944 -2.362549 1.296210 1.869134 3.060368 -2.051902 -3.722188 1.958589 -6.327330 -3.647982 1.693546 -5.315201 -1.862710 1.550932 -0.230674 0.407767 1.787387 -1.570864 -1.352387 1.936659 -3.114765 0.331547 2.204885 4.392430 1.507805 4.932319 4.629773 1.255861 5.612885 3.739960 -2.454334 10.428582 -1.560198 1.113178 1.833162 2.609100 -0.345899 1.944371 1.800823 -2.316427 -1.870295 -5.804243 3.291122 -0.070500 3.690534 -5.910746 -3.617233 -5.020942 -2.611823 4.228584 3.233109 -0.987259 9.036801 -0.226606 0.441562 -10.134261 -0.906035 3.739165 0.431794 3.436849 2.950372 -3.455970 -8.192149 -1.657995 -1.975931 0.960470 -2.443265 -3.903329 -3.346324 -1.932097 3.038626 -2.079194 2.012518 6.669915 -1.002455 2.177478 -1.621327 -0.553501 -1.046555 -2.738490 2.078180 1.630979 -5.032574 6.167508 -1.347607 12.160227 -2.092728 3.585200 -3.865158 0.805859 0.118072 -1.194101 -0.708847 6.706483 2.842612 1.502741 0.779605 0.284751 -2.708135 3.698913 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = -0.099976 1.120735 3.933588 2.492248 -2.237599 -3.066197 -1.309670 -3.827844 1.580877 -0.312862 2.106813 -0.157007 0.594437 -0.431455 0.048973 -0.581515 0.928740 -0.832049 0.419328 -1.212418 -1.184369 2.482446 0.531314 -2.732268 0.516670 -4.327385 3.211748 2.045292 1.348971 2.201819 0.331317 -0.392364 -0.788422 2.111889 -0.854443 -0.783363 0.949199 0.285593 -1.540264 0.498275 1.066068 1.929329 2.512974 -0.188726 1.476791 1.674315 1.510004 1.257632 -1.644334 -0.091887 -1.657683 2.385113 -1.539723 1.405686 0.001521 0.746681 1.055250 -2.756397 -0.711073 -1.429078 -0.289127 0.457414 -1.152931 0.128337 -2.460431 0.346604 -0.275123 -1.504475 1.642678 0.802820 1.919194 0.853989 0.316776 -0.877597 -2.151225 1.029512 0.231235 2.106314 1.546763 -1.324864 0.094183 0.901125 -1.695000 -1.602021 0.561402 0.783368 1.064915 -0.505707 0.662402 -1.267286 -0.058471 -0.725529 -0.290679 1.579216 -0.546960 0.668719 -1.900147 -0.387851 -2.023794 -1.718016 -0.037420 -1.425890 1.304727 1.625574 -1.250901 0.051476 0.453333 0.503566 -0.638981 -1.945882 0.244054 -1.140287 1.228872 3.126871 -0.556907 -1.003835 -0.599920 -0.763500 -0.360653 2.423108 -0.260883 0.517771 2.545389 3.290722 0.227836 -1.632488 -1.119853 0.088911 1.188634 2.156387 2.278603 -2.967790 -1.469750 -0.586360 0.004067 -3.529271 0.917596 -0.144447 1.855338 -0.094828 -2.635710 1.238197 -1.721571 2.738174 1.176025 1.310122 0.754675 -0.172736 -1.747694 2.917360 4.299137 -0.767659 1.483687 -2.359732 -1.328226 2.087700 -0.811253 1.170170 0.365496 -0.329085 0.287518 -1.400631 -0.010926 2.176567 0.825146 0.679472 2.521946 0.501020 -0.214424 -3.609591 -2.709918 0.986494 2.071493 -0.455378 4.632032 -2.551138 -1.353945 -1.041299 2.526306 -0.535982 -0.536089 0.379497 -1.293172 1.325975 -3.094036 -3.261507 3.724750 3.028890 -0.058236 -0.019350 2.119866 1.394224 -1.280189 -1.383237 -1.273917 1.115487 0.543511 -1.044293 -0.150571 0.339629 -2.118710 -0.980148 0.819929 1.112102 2.540706 -1.486437 -1.745735 -0.280222 -3.255413 -2.571718 1.493273 -2.438782 -0.634283 1.150919 -0.384802 0.152152 1.410787 -0.317410 -0.901100 0.722196 -1.173217 -0.082298 0.937462 2.389713 0.189287 2.489063 2.219810 0.623729 2.499184 1.981173 -1.202796 5.197702 -0.701301 0.675407 0.937716 1.361801 -0.020252 1.201767 1.321969 -1.161767 -1.073176 -3.179964 1.511963 -0.204394 1.380934 -3.026768 -1.095482 -3.212072 -1.486669 1.487768 2.105146 -0.204745 4.406828 0.002059 -0.217191 -4.253852 -0.557219 1.744191 0.364221 1.699678 1.395547 -1.970935 -2.938613 -0.676449 -1.693466 0.074470 -1.192034 -1.776626 -2.046694 -0.608568 1.316590 -0.592760 0.972730 3.758858 -0.396953 0.586288 -1.000295 -0.173009 -0.666450 -1.552323 1.279532 0.468865 -2.176322 2.953626 -0.633758 5.489806 -0.584473 1.561764 -1.857752 0.126124 0.389611 -1.196653 -0.678342 3.177065 0.850320 0.613002 0.676405 0.084412 -0.916230 2.479035 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.149619 0.295150 0.962404 0.283740 -0.493231 -1.221338 -0.464422 -1.730560 0.637905 0.261478 0.852668 -0.162789 0.541660 -0.091143 -0.060237 0.343607 0.254280 -0.313928 0.317893 -0.414974 -0.752344 1.376706 0.058169 0.084115 0.153037 -1.264435 0.922630 0.317648 0.597647 0.835864 0.161176 -0.056233 -0.082456 0.487085 -0.171347 0.315604 -0.015897 0.419035 -0.391287 0.397454 0.146560 -0.121016 0.733883 0.098534 0.646594 0.602776 0.368598 0.303371 -0.204967 -0.301212 -0.435115 0.480187 -0.591050 0.300764 -0.490069 -0.201283 0.203826 -0.340771 -0.204447 -0.017200 -0.256141 -0.282126 -0.677022 0.215339 -0.838716 0.268424 -0.570736 -0.504356 -0.045346 0.110228 0.666332 0.325788 -0.115697 0.010732 -1.311963 0.146478 0.166195 0.280716 0.483441 -0.306252 -0.135307 0.122475 -0.869231 -0.803040 0.840510 0.710789 0.335070 -0.009193 -0.293482 -0.328914 -0.294730 0.001185 0.446204 0.682337 -0.246822 0.147826 -0.352605 -0.196090 -0.627889 -1.170197 0.210500 -0.486699 0.471516 0.058831 -0.026141 -0.135207 0.184056 0.170359 -0.267364 -0.892580 0.039338 -0.450226 0.267064 1.146129 -0.090003 -0.241484 -0.452031 -0.345588 -0.073874 0.661169 0.448494 0.064041 1.035015 0.771806 0.242898 -0.591628 -0.615845 0.295738 0.345860 0.391933 0.435989 -0.853448 -0.561322 0.106318 -0.299892 -1.234303 -0.322295 0.261753 0.490541 -0.657352 -0.181118 0.630998 -0.428052 0.413253 0.770966 0.082539 0.269495 -0.038558 -0.603955 0.740144 1.433649 -0.210632 0.457303 -0.830648 -0.516568 1.023278 -0.421270 0.259826 0.215484 -0.104274 -0.453376 -0.360110 0.305605 0.666534 -0.004067 0.314201 0.433994 0.332390 -0.412050 -0.710831 -1.009059 0.143251 1.089283 0.119077 1.262377 -0.829321 -0.172267 0.082289 0.771678 0.279564 -0.255907 0.305291 -0.520227 0.439031 -1.321599 -1.028694 1.243058 0.896609 0.616242 -0.022837 0.419594 0.724497 -0.577262 -0.556494 -0.499350 0.562136 0.130591 -1.039196 -0.434008 0.071235 -0.822318 -0.271825 -0.139068 0.415155 0.500151 -0.029002 0.132929 -0.571942 -0.652787 -0.697096 0.627516 -0.572998 -0.173063 0.132849 -0.081976 -0.252590 0.339613 -0.161010 0.222792 0.181164 -0.362206 0.301334 0.473975 0.250105 -0.083018 1.106125 1.099696 -0.366340 0.423335 0.049782 -0.175038 1.083680 -0.216780 0.278526 0.154228 0.490544 -0.005363 0.279935 0.663039 -0.319672 -0.625167 -0.837749 0.147114 0.380646 0.308999 -0.078051 -0.505405 -1.304712 -0.237257 0.125459 1.338552 0.166904 1.276938 -0.218861 0.425681 -1.206344 0.171632 0.196184 -0.043919 0.627851 0.227577 -0.463187 -0.246760 -0.293238 -0.731317 -0.699003 -0.352901 -0.642971 -0.631935 -0.311579 0.096291 -0.434572 0.019275 0.647739 -0.053320 0.355755 -0.377285 -0.061253 -0.710497 0.097568 0.864573 -0.131729 -0.564383 0.543965 0.008752 1.761069 -0.103714 0.616080 -0.265211 0.288837 -0.137423 -0.718143 -0.203654 0.982125 0.478499 0.034680 0.128962 -0.018239 0.267216 0.479826 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp___GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digits_equals_to_given_sum.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = -1.805088 2.816311 12.936110 8.135923 -7.062895 -9.748029 -4.508288 -12.278218 5.128355 -0.428216 8.099726 0.090896 1.693156 -2.283072 1.130792 -1.822115 1.135092 -2.074638 0.567981 -3.659321 -2.981187 7.281248 5.270859 -8.533108 1.421718 -11.760718 8.216600 6.226508 5.318230 6.231265 0.382709 -1.770515 -2.973205 6.958244 -2.950911 -0.659997 0.469501 1.337143 -4.120416 1.537853 3.676661 5.757831 5.954708 -0.820009 6.602055 4.262961 6.178990 2.697861 -6.421054 -1.401353 -4.304327 9.838909 -6.741215 3.942561 1.533263 3.205523 0.913200 -8.096027 -2.433709 -6.916200 0.075520 1.075287 -5.092664 1.009698 -7.999942 1.537941 -2.512366 -3.900877 5.050240 1.449825 6.625266 1.686297 -0.335445 -2.063260 -5.128293 2.622853 0.196895 6.156290 5.241638 -3.650786 -0.208317 2.560857 -3.263339 -4.984940 1.861647 0.337811 2.629533 -2.106838 1.711026 -2.835234 0.325600 -2.220238 -1.039063 4.923952 -5.012914 2.675267 -4.684417 -1.579571 -6.007762 -4.271901 0.271039 -5.613000 4.316564 5.004509 -3.908153 -1.037792 -0.853771 1.008174 -2.595032 -7.959877 -0.928350 -1.790148 4.512412 9.658948 -4.136436 -1.025652 -0.979191 -1.612364 -1.302557 7.617752 1.814955 2.464068 8.080044 10.447502 0.949593 -5.424529 -3.364548 0.296764 4.725013 7.746521 6.317308 -8.579183 -5.083919 -1.420116 0.879635 -11.814251 2.790406 1.382644 5.338646 3.329630 -8.270501 2.220870 -4.289848 8.126429 3.692088 4.161531 2.056676 -1.076395 -5.540371 8.723966 13.773132 -2.975547 4.995626 -3.788861 -5.833434 8.359622 -5.619916 3.924090 3.091441 -0.286353 1.776018 -4.976075 -2.088321 7.329132 2.874869 3.468010 7.133502 1.739881 0.327329 -12.197425 -8.865217 2.897239 5.898824 -1.272897 11.818482 -6.889701 -3.504930 -2.187970 9.457323 -1.243866 -2.688178 -0.000953 -4.015931 4.296315 -8.812132 -9.733348 11.019448 11.577688 0.061224 0.181206 7.310175 6.727950 -5.076877 -3.320320 -5.029658 4.015314 0.713943 -1.992978 -0.130035 0.425700 -7.289525 -2.626155 1.959309 3.271701 5.307939 -4.339804 -5.887617 1.836341 -9.532342 -6.616230 3.346196 -6.809841 -1.257412 1.549525 -1.002620 0.963512 3.524442 -3.039932 -2.531109 2.079891 -4.831233 0.307331 3.465056 7.513368 2.432287 9.787462 5.037173 1.485811 7.923906 5.318671 -3.852969 16.099973 -1.736197 2.280625 2.563065 5.350008 -0.225939 3.824813 2.831729 -3.934272 -4.272759 -9.186835 3.240991 0.138932 5.092285 -8.348317 -5.068775 -9.801900 -4.727002 6.070954 5.127576 -0.837614 14.312130 -0.356388 -0.038569 -13.713555 -1.637202 5.562917 -0.625563 7.029823 4.155686 -5.724470 -10.519099 -3.540295 -3.563105 1.466147 -3.249075 -4.736564 -5.460808 -2.284205 6.294585 -2.533858 3.284743 8.411861 -0.222703 2.211864 -0.970542 -0.335941 -1.683342 -4.117714 3.743740 2.364993 -8.639318 9.908778 -1.283397 17.357588 -2.831288 5.620121 -6.311227 -0.011116 0.656507 -2.531688 -1.689740 10.141422 5.647685 2.575428 0.169386 1.443711 -4.281269 5.973385 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.220588 0.278516 0.725530 0.139115 -0.319043 -0.890022 -0.302889 -1.370183 0.472791 0.186306 0.613430 -0.169173 0.413101 -0.059625 -0.052973 0.323244 0.186961 -0.153262 0.259993 -0.279380 -0.517439 0.976096 -0.091582 0.165014 0.124802 -0.905285 0.600148 0.241184 0.518744 0.538835 0.130325 -0.078093 -0.072799 0.313340 -0.125077 0.200239 0.043067 0.298753 -0.398331 0.288654 -0.027429 -0.118671 0.490922 0.040814 0.448188 0.383567 0.260756 0.239340 -0.069948 -0.174863 -0.321388 0.432868 -0.348317 0.231063 -0.324472 -0.251263 0.081492 -0.176843 -0.120218 0.127801 -0.194373 -0.209424 -0.459403 0.152127 -0.600749 0.173991 -0.421624 -0.380318 -0.033323 0.101492 0.465734 0.225967 -0.058351 0.040040 -1.043937 0.105417 0.143996 0.206555 0.339843 -0.208365 0.046505 0.079486 -0.623744 -0.584257 0.667491 0.630643 0.253227 -0.018930 -0.303696 -0.234294 -0.215782 -0.020039 0.370611 0.473386 -0.202459 0.120154 -0.390346 -0.128221 -0.444718 -0.973868 0.152173 -0.345527 0.351740 -0.074074 0.064864 -0.047403 0.220433 0.178256 -0.124242 -0.644554 0.043358 -0.288084 0.189549 0.912680 -0.034166 -0.211117 -0.338783 -0.248718 -0.150342 0.422383 0.342826 0.051536 0.704340 0.531193 0.235372 -0.425967 -0.489718 0.271082 0.206442 0.313244 0.290837 -0.633981 -0.374855 0.089948 -0.245355 -0.949731 -0.249543 0.168106 0.360093 -0.542775 -0.035168 0.365824 -0.314257 0.282511 0.521057 0.016293 0.205165 -0.005641 -0.396650 0.498432 0.995795 -0.160312 0.321535 -0.600800 -0.288883 0.567875 -0.236187 0.179565 0.113792 -0.059728 -0.286781 -0.259938 0.196470 0.483222 0.008908 0.210044 0.253749 0.251681 -0.431997 -0.516308 -0.720399 0.097401 0.781185 -0.010904 0.831588 -0.564592 -0.218590 0.071428 0.592754 0.168659 -0.164109 0.276362 -0.450307 0.336247 -0.817729 -0.733415 0.854686 0.672880 0.457044 -0.090589 0.283804 0.519574 -0.571674 -0.449041 -0.346064 0.366598 0.072334 -0.962243 -0.425778 0.043460 -0.601521 -0.142176 -0.081822 0.293589 0.331522 0.153112 0.229407 -0.392743 -0.456989 -0.493824 0.532133 -0.369036 -0.072680 0.089811 -0.037354 -0.181060 0.299745 -0.224325 0.154920 0.223616 -0.284788 0.248295 0.334620 0.143098 -0.112443 0.860263 0.751426 -0.198510 0.403280 0.012506 -0.190502 0.734098 -0.130912 0.205867 0.084435 0.271597 -0.093221 0.229999 0.472956 -0.252423 -0.546345 -0.635730 -0.025952 0.237955 0.223399 0.151846 -0.399100 -0.897320 -0.173666 0.051968 0.948063 0.165664 0.889713 -0.191098 0.349196 -0.840391 0.134310 0.099399 -0.070409 0.484385 0.142022 -0.335815 -0.146142 -0.182785 -0.560552 -0.699690 -0.259574 -0.519692 -0.448234 -0.301444 0.114584 -0.287190 -0.019812 0.424894 0.012153 0.295091 -0.349342 -0.040027 -0.521306 0.140804 0.705015 -0.140231 -0.446862 0.322609 0.039806 1.374910 -0.055189 0.412264 -0.199853 0.122328 -0.081047 -0.526940 -0.158384 0.710399 0.371746 0.080299 0.010907 -0.028529 0.159391 0.336248 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp___GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with_n_digits.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = -4.078960 2.717429 23.162930 12.102379 -8.919243 -16.098403 -7.269006 -21.825762 10.427084 0.560401 14.962025 2.370859 4.310100 0.116017 4.243972 0.426202 3.148182 -8.831824 3.179934 -5.435675 0.862037 16.878347 8.838209 -14.353267 -0.232527 -24.868474 12.667322 9.384747 8.752417 12.505359 1.932338 -3.234448 -2.408163 11.029575 -5.715212 -0.432796 4.371007 2.494000 -6.609707 0.272201 4.182437 11.052119 9.697848 -0.714005 13.605489 4.288292 15.192959 4.191493 -6.185319 -1.926428 -14.139204 21.039823 -13.317773 6.360916 -0.484256 5.981213 1.424698 -14.635142 -7.179736 -15.598907 -1.523169 5.894333 -9.610740 0.215711 -11.663252 5.416514 -1.635626 -3.689225 5.950139 6.968572 14.766607 5.013050 4.911901 -2.865059 -15.313772 4.742438 -5.561243 10.595934 8.119087 -9.533740 -5.414255 4.749841 -4.891589 -9.171284 5.759441 4.458324 1.201982 -5.181941 4.449623 0.609046 -7.087011 -4.224058 -6.487266 10.117621 -8.906470 7.867845 -2.702036 -0.251276 -8.165155 -2.488139 -0.527584 -12.259247 5.162956 10.197096 1.080620 -2.268021 -4.612401 1.364176 -9.334044 -13.850759 2.650847 -1.644500 0.714750 12.158279 -9.258733 2.013952 2.554363 -0.483779 -0.668400 14.572814 1.008142 8.115445 12.202934 19.292049 0.491349 -9.023543 -4.171121 3.724428 13.324625 13.687036 10.364222 -16.282583 -8.745961 -2.525412 2.408110 -19.367903 7.113428 9.977591 10.781109 4.481246 -17.819539 2.989730 -6.086965 18.898013 11.153545 9.230986 3.346486 0.353294 -10.538764 15.687473 29.872198 -5.548910 12.016222 -8.897083 -2.095780 15.878694 -14.394369 9.634287 4.893442 3.995354 2.372331 -10.659013 -7.519687 13.040157 11.192637 9.214852 13.020515 3.442691 1.503202 -23.706340 -15.508111 -2.315421 12.447625 -4.577985 22.780914 -11.752582 -9.076441 -3.457346 12.716432 -3.474894 -6.423493 0.793883 -7.358477 7.532489 -21.166922 -17.007433 22.973876 20.397551 1.217433 1.434120 15.373525 14.747752 -8.797535 -6.272287 -4.928499 9.269878 -0.421115 -4.264369 1.092578 -0.378417 -14.714592 -9.263976 1.714386 5.173706 7.208231 -2.895913 -8.395098 8.279252 -17.976875 -8.099213 5.278916 -14.610241 -10.272063 1.671329 0.117845 1.553743 3.192843 -4.538016 0.130136 11.525208 -10.874193 -1.339343 8.649992 10.631445 5.913050 15.386776 12.930830 5.374248 15.568117 9.441790 -6.528974 25.814391 -1.677301 0.942266 3.675559 5.808503 -0.572847 5.963294 3.122120 -6.388355 -10.147555 -16.901225 11.228753 -1.244106 12.510452 -9.880951 -11.268324 -12.085212 -7.578376 14.480328 11.904762 -3.474174 26.393041 -1.317068 2.474290 -28.881075 -1.368675 10.715392 0.866431 6.885632 8.712103 -7.946844 -17.594258 -4.880583 -3.280533 -0.444742 -6.078176 -13.144932 -9.850812 -10.920964 9.953708 -10.068779 4.271654 15.738436 -0.694154 7.863529 -2.131494 -2.406157 -4.823413 -3.115013 6.103033 6.156432 -14.986118 18.564459 -6.176771 35.170413 -10.158847 9.896967 -11.302179 4.424572 -2.403887 -1.731647 -0.056912 20.228177 9.620387 2.639023 1.883077 -1.267602 -6.578345 10.049582 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.289582 0.213889 0.964809 -0.225698 -0.430746 -1.071593 -0.401733 -2.259521 0.796463 0.366732 0.929757 -0.147911 0.607951 -0.269410 -0.010305 0.732567 0.334690 -0.477413 0.451879 -0.419743 -0.260072 1.309883 -0.329122 0.733648 0.089149 -1.373695 0.363170 0.136041 0.925110 0.487778 0.364817 -0.281624 -0.340899 0.246055 0.154186 0.605678 0.458466 0.279561 -0.847651 0.325734 -0.451151 -0.343475 0.529608 -0.178658 0.979409 -0.099052 0.426768 0.388820 0.012986 -0.302667 -0.430456 0.942103 -0.460615 0.177439 0.013304 -0.628793 -0.318108 -0.102797 -0.279312 0.511207 -0.465113 -0.495732 -0.459523 0.317174 -0.550173 0.382624 -0.635778 -0.229197 -0.134410 0.029216 0.632216 0.353306 0.222986 0.593565 -1.572446 0.110080 0.110224 0.249161 0.402928 -0.218153 0.317899 -0.042238 -0.607432 -0.722257 0.956767 1.300369 0.138257 -0.190801 -0.769687 0.190573 -0.434680 -0.197289 0.564815 0.430650 -0.762682 -0.088320 -0.601023 -0.219391 -0.523137 -1.493400 0.238533 -0.414876 0.464487 -0.395848 0.264710 -0.116893 0.078977 0.159537 -0.372413 -0.730380 0.184748 -0.179035 0.280680 1.443163 -0.313933 -0.118320 -0.683338 -0.241097 -0.360679 0.321472 0.504094 0.292586 0.746249 0.793725 0.510447 -0.623715 -0.850346 0.646493 0.518638 0.401892 0.263393 -0.802017 -0.395000 0.251915 -0.354857 -1.275112 -0.563539 0.256400 0.571525 -0.511954 0.353676 -0.207116 -0.298884 0.636434 0.659588 -0.216147 0.158357 0.117189 -0.591960 0.674460 1.155727 -0.130962 0.553738 -0.677904 0.176883 0.317912 -0.546217 0.269582 0.218869 0.093536 -0.523957 -0.342914 -0.064104 0.465455 0.175020 0.419539 -0.284749 0.533263 -0.707644 -0.787245 -1.056614 -0.020953 1.085263 -0.233557 0.536906 -0.678550 -0.576358 0.163419 0.902748 0.364493 -0.459481 0.616466 -0.896137 0.517803 -0.537982 -0.852151 1.225908 1.399751 0.738964 -0.114749 0.419385 0.880380 -1.638300 -0.514759 -0.281576 0.467399 -0.120051 -2.104374 -0.772607 0.131527 -0.790065 -0.409144 -0.187814 0.451198 0.256706 0.856741 0.958322 0.085401 -0.271622 -0.382593 1.005619 -0.165565 -0.310241 -0.006429 0.114408 0.010223 0.514269 -0.653475 0.448111 0.678861 -0.521455 0.464003 0.612029 0.108014 -0.145174 1.178744 0.879934 -0.067646 0.901592 -0.250631 -0.366555 0.358998 -0.019184 0.353179 0.021111 -0.202291 -0.263735 0.217794 0.490557 -0.435182 -0.964159 -0.683685 -0.404837 0.072827 0.599582 0.890927 -1.101058 -0.984942 -0.064569 0.180072 0.877050 0.284492 1.052717 -0.427970 0.526337 -1.187880 0.180028 0.131456 -0.079508 0.661133 0.055358 -0.291600 -0.064114 -0.202161 -0.844110 -1.463668 -0.286813 -0.724826 -0.470161 -0.896913 0.908728 -0.396269 -0.292077 0.198675 0.238974 0.789960 -0.299772 -0.051367 -0.845766 0.531174 0.887515 -0.218665 -0.633182 0.491848 0.134083 2.059844 -0.161082 0.218771 -0.102351 0.178459 -0.140104 -0.740856 -0.068541 0.938816 0.759523 0.186238 -0.462222 -0.313547 0.063596 0.303950 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp___GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/lexicographic-rank-of-a-string.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = -0.101531 0.451277 1.639434 0.948065 -0.838898 -1.065283 -0.465127 -1.645288 0.571733 -0.168010 0.719611 -0.132463 0.108360 -0.502212 0.039631 -0.125415 0.132102 -0.196560 0.339745 -0.327872 -0.085742 0.854212 0.293737 -1.207160 0.237294 -1.791652 1.197854 0.858049 0.739551 0.698953 -0.026201 -0.257309 -0.354355 0.980972 -0.318625 -0.383742 0.538142 0.108400 -0.693881 0.376872 0.102526 1.214414 0.533620 -0.390241 0.792310 0.733286 0.605580 0.539658 -0.726837 0.045185 -0.308588 1.165420 -0.548994 0.699851 0.363268 0.177589 -0.018136 -1.123802 -0.355868 -0.743452 0.037473 0.252453 -0.270591 0.141468 -1.076552 0.088813 0.105928 -0.540410 0.827831 0.651179 0.735198 0.371201 0.189120 -0.277829 -0.581923 0.559997 0.230636 1.043757 0.554067 -0.762666 0.319104 0.418594 -0.365379 -0.665176 -0.017318 0.499237 0.452565 -0.365944 0.430710 -0.463844 0.140793 -0.522568 -0.267953 0.724196 -0.270173 0.107986 -0.940865 0.035163 -0.685681 -0.675468 -0.131260 -0.663211 0.613725 0.665733 -0.241986 0.053737 0.409099 0.467254 -0.128988 -0.682634 0.078831 -0.257741 0.807478 1.324936 -0.069370 -0.144999 -0.274886 -0.244407 -0.316379 0.995458 -0.144788 0.282165 1.068004 1.544585 0.082605 -0.558555 -0.620113 0.123889 0.411195 1.069178 0.912986 -1.626072 -0.490375 -0.316039 0.111379 -1.215691 0.337988 -0.236588 0.603882 -0.101342 -0.927310 0.246005 -0.582304 1.316283 0.269702 0.245245 0.139445 -0.076455 -0.548399 1.416843 1.810368 -0.301071 0.321912 -0.737911 -0.432557 0.540971 -0.315983 0.509383 0.282026 -0.046003 0.234288 -0.658513 -0.094575 0.850130 0.483070 0.400958 0.974597 0.173626 -0.113367 -1.509467 -0.902007 0.504049 0.541695 -0.553381 1.903143 -0.813244 -0.847893 -0.585120 1.174965 -0.080066 -0.044827 0.041506 -0.654175 0.540395 -0.582181 -1.222090 1.342093 1.495115 0.031513 -0.130322 1.030660 0.737604 -0.791195 -0.533641 -0.346339 0.315832 -0.024093 -0.522439 -0.260073 0.281734 -0.905256 -0.445203 0.370718 0.371134 1.037058 -0.050901 -0.987936 0.318787 -1.401898 -0.919490 0.450815 -0.734693 -0.044131 0.374380 -0.005300 0.264854 0.675856 -0.626069 -0.430814 0.425759 -0.513051 0.063682 0.433700 0.986037 0.155153 0.865135 0.537983 0.602426 1.294598 0.946478 -0.547610 2.047430 0.202592 0.346370 0.512972 0.170969 -0.146055 0.458688 0.270344 -0.502285 -0.407817 -1.408163 0.479810 -0.138325 0.627681 -1.181480 -0.577633 -1.020849 -0.735198 0.819956 0.351016 0.059764 1.697027 0.100222 -0.103099 -1.766547 -0.263170 0.556188 0.023541 0.740139 0.550184 -0.787576 -1.610798 -0.278689 -0.510758 -0.434636 -0.696663 -0.716858 -0.723568 -0.183217 0.832211 0.052562 0.398583 1.648775 0.197828 0.187242 -0.499281 0.006407 -0.267661 -0.717786 0.327631 0.094906 -1.127180 0.914029 -0.162993 2.339776 -0.470619 0.458737 -0.850219 -0.240715 0.271162 -0.312981 -0.056686 1.198151 0.293699 0.443855 0.122249 0.118096 -0.727783 1.066139 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = -0.713463 0.739218 4.550552 2.858633 -2.295184 -3.629240 -1.789681 -4.227446 2.046851 -0.066694 2.963004 0.327113 0.646546 -0.299172 0.283484 -0.946140 0.110332 -1.012533 -0.064028 -1.269541 -1.304169 2.910540 1.941995 -3.286480 0.422211 -4.542630 3.239030 2.030979 1.496015 2.996319 -0.092540 -0.532875 -0.902786 2.507384 -1.197110 -0.175247 0.220510 0.568268 -0.902446 0.268471 1.950324 1.835470 2.542234 0.219855 2.485124 1.716006 1.657219 0.765338 -1.925274 -0.558904 -1.747450 2.861684 -2.671314 1.495281 -0.312247 1.709749 0.574846 -2.971760 -0.922895 -3.057397 0.073152 0.533596 -1.957566 0.042693 -2.694905 0.639383 -0.665664 -1.499002 1.464670 -0.098973 2.666365 0.564039 -0.116165 -0.927756 -2.297968 0.641764 -0.272747 1.988561 1.903219 -1.334737 -0.951369 0.773600 -1.503235 -1.770813 0.753811 0.067058 0.705579 -0.362562 0.859202 -1.062763 -0.082374 -0.481438 -0.254006 2.093006 -1.395370 1.148445 -1.199358 -0.449068 -1.771465 -1.209615 0.335808 -2.021042 1.461525 1.942307 -1.394055 -0.379498 0.125093 0.419995 -1.120925 -2.964550 0.068452 -0.677887 1.085993 2.916417 -1.299118 -0.532206 0.191066 -0.850543 -0.144187 2.951414 0.524501 0.769194 2.703558 3.631734 0.387990 -2.132661 -1.135962 0.307622 1.866069 2.623438 2.050932 -2.940698 -1.703866 -0.345311 0.101109 -4.452688 1.132940 0.701067 2.188033 0.824174 -3.306890 1.439449 -1.731995 2.656188 1.756011 1.852453 0.849548 -0.333411 -2.483508 2.975772 5.435723 -0.955852 2.049819 -1.708161 -2.098984 3.443182 -2.254970 1.579587 0.793051 -0.092480 0.798982 -1.792178 -0.508104 2.764743 0.898455 1.513167 2.536468 0.652918 -0.200491 -4.364760 -3.284682 0.253523 2.850935 0.035747 4.542554 -2.741116 -1.072873 -0.791573 3.540612 -0.604613 -0.866797 0.108579 -1.178280 1.667077 -4.334305 -3.566145 4.247117 4.190199 0.392814 0.333805 2.621524 2.324972 -0.690322 -1.098183 -1.721524 1.395978 0.785347 -0.136833 0.140598 -0.393274 -2.479010 -1.282647 0.721667 1.096514 1.593267 -1.946365 -2.035800 0.597716 -3.134360 -2.653455 1.110943 -3.144301 -0.735163 0.685181 -0.326032 -0.254200 0.838404 -0.571830 -0.680851 0.992985 -1.454619 0.452514 1.458474 2.126171 0.843900 3.194348 2.300321 -0.097806 2.318623 1.897293 -1.028158 6.130846 -1.234912 0.737606 1.133349 2.313536 0.183911 1.429962 1.054540 -1.376798 -1.017260 -3.247394 1.564599 0.226295 1.982901 -3.059709 -1.964993 -3.526422 -1.543485 1.959118 2.338090 -0.484414 5.384551 -0.007875 0.410005 -5.180505 -0.485532 2.491661 -0.094675 2.047568 1.536128 -1.855253 -4.281853 -1.150381 -1.171112 0.838485 -1.296716 -1.964029 -1.952219 -1.055048 1.508920 -1.290339 1.349346 3.060323 -0.448446 0.792612 -1.049711 -0.201790 -0.851500 -1.486898 1.121446 0.872729 -2.900498 3.505305 -0.531008 6.021202 -1.157864 2.478198 -2.106979 0.932375 -0.425622 -0.947541 -0.579378 3.820459 1.832142 0.778921 0.300251 0.398727 -1.198843 1.890444 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -0.576941 0.885532 4.780409 3.398161 -2.168699 -3.722352 -1.773207 -4.733223 2.738227 0.002130 2.641442 0.022099 0.988036 -1.083864 -0.283418 -0.607631 0.638052 -1.330251 0.594101 -1.360717 -1.152000 4.791402 1.968031 -3.475132 0.103612 -5.884070 4.014703 1.840209 2.490794 3.695593 0.169381 -0.342210 -0.091015 2.846264 -1.399070 -0.396729 0.145217 0.744459 -1.640575 0.408029 1.464254 2.336930 3.033080 0.050613 2.418838 1.902381 2.180160 0.876166 -1.715740 -0.366213 -2.168158 3.002141 -2.602794 1.593635 -0.425234 0.844612 1.278993 -3.015366 -0.985258 -2.721289 -0.554856 0.653501 -2.030941 0.359494 -3.593682 0.845043 -1.154187 -1.605429 1.164254 0.771034 2.678534 1.685286 0.682891 -1.525594 -3.420373 1.707812 0.030136 2.200142 2.149313 -1.271240 -0.690772 0.978136 -1.995062 -2.404350 1.319715 0.802391 0.765663 -0.099865 1.298182 -1.784068 -0.682738 -0.656670 -0.379050 2.346815 -0.692813 1.396361 -1.325991 -0.404862 -1.793963 -1.953982 -0.117400 -2.322392 1.366406 2.008687 -0.880887 -0.068907 0.401272 0.305542 -0.921110 -3.005620 0.491500 -1.182762 1.109230 3.952360 -1.043871 -0.608343 -0.683754 -0.417037 -0.411434 3.546612 -0.031702 1.190770 3.092776 3.835935 0.205744 -2.236284 -0.818601 0.694746 1.823568 2.240302 2.624370 -3.474881 -2.203674 -0.694611 0.919174 -4.464881 0.554546 1.143561 2.018343 -0.074124 -3.183970 2.143872 -1.527466 3.495523 2.243954 0.841014 1.083653 -0.385940 -2.440406 3.811093 6.307844 -0.952010 1.736389 -3.098331 -2.607223 4.451672 -2.223878 1.929465 0.022001 -0.050363 0.256561 -2.064218 0.710656 3.013169 0.551402 0.995135 3.153384 0.534266 0.592767 -4.733145 -3.606652 0.818794 2.716029 -0.041493 5.959636 -2.787405 -0.975953 -0.838792 2.637584 0.228612 -0.356801 0.267317 -1.856409 1.649998 -5.855201 -4.552313 5.378316 4.101460 0.540334 0.406421 2.343972 2.747674 -0.341676 -1.747468 -1.556926 1.789347 0.694141 -1.059679 -0.217803 0.152899 -2.853763 -1.794700 0.826955 1.152325 2.926456 -2.266332 -2.301329 -1.136075 -3.964893 -3.314813 1.691232 -3.307950 -1.128885 0.987398 -0.145232 -0.185956 1.561809 -0.093575 -0.234118 0.879077 -1.173387 -0.191650 1.174753 2.629744 0.282643 2.657386 3.538653 0.138272 2.594203 2.316629 -1.069563 6.993871 -1.223402 0.543914 1.134575 1.925384 0.459248 1.574706 1.252402 -1.446834 -0.904156 -3.752376 2.487565 0.433282 1.563741 -4.255123 -2.097537 -3.895577 -1.765174 1.952605 2.715169 -0.002881 6.016349 -0.622893 -0.175018 -5.837171 -0.326312 2.485231 0.598686 2.903525 2.037730 -2.439962 -3.288988 -1.442706 -1.631069 0.953245 -2.051125 -2.923039 -2.257162 -0.519764 1.757713 -1.725765 1.636457 4.255150 -0.413466 1.026202 -1.206450 -0.161486 -1.916049 -1.563892 1.092509 0.727230 -2.481667 3.328688 -1.215270 6.024934 -1.554636 2.312809 -2.567621 1.327803 -0.309165 -1.732527 -0.614284 4.356447 1.226687 0.076263 1.003070 -0.091911 -0.759997 2.762639 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.191926 0.233211 0.880250 -0.227920 -0.393243 -0.973530 -0.369921 -1.920167 0.614345 0.327617 0.862985 -0.172358 0.542814 -0.145386 0.024311 0.580667 0.318673 -0.430553 0.415170 -0.386745 -0.296475 1.053728 -0.244180 0.647391 0.110659 -1.158804 0.380070 0.125141 0.700358 0.478191 0.308085 -0.224514 -0.324990 0.237733 0.143605 0.517022 0.428568 0.270523 -0.649659 0.356614 -0.360312 -0.293432 0.476838 -0.114195 0.823863 0.086831 0.284281 0.362158 -0.057194 -0.304732 -0.312786 0.718256 -0.437592 0.163880 -0.009862 -0.517585 -0.226537 -0.113260 -0.228781 0.352504 -0.375344 -0.471178 -0.397668 0.295427 -0.501825 0.324011 -0.583696 -0.239853 -0.109110 0.010567 0.546089 0.279145 0.153336 0.570112 -1.291704 0.100123 0.129978 0.223309 0.358189 -0.270263 0.208182 0.002263 -0.570573 -0.671600 0.792171 1.076760 0.189799 -0.165505 -0.662248 0.166932 -0.336710 -0.149813 0.488620 0.425304 -0.577731 -0.070703 -0.487878 -0.221007 -0.515970 -1.346789 0.213630 -0.366015 0.420404 -0.275327 0.160996 -0.165178 -0.042671 0.176240 -0.338145 -0.660183 0.189484 -0.210091 0.237272 1.202456 -0.287452 -0.101085 -0.606780 -0.258850 -0.200761 0.325301 0.447393 0.210048 0.644547 0.704340 0.412522 -0.541066 -0.748276 0.477290 0.448733 0.332048 0.268009 -0.721277 -0.376499 0.231825 -0.411483 -1.096287 -0.484563 0.190223 0.508562 -0.463771 0.237780 -0.082270 -0.335203 0.500884 0.605091 -0.083751 0.132037 0.067508 -0.534030 0.572175 0.973411 -0.163535 0.523827 -0.543582 0.096821 0.302686 -0.436437 0.225465 0.237972 0.048845 -0.473602 -0.286622 -0.067039 0.435403 0.223566 0.407187 -0.187625 0.445389 -0.599616 -0.651459 -0.923286 0.007296 1.003974 -0.199580 0.477708 -0.630947 -0.461442 0.135009 0.847415 0.304616 -0.442315 0.475955 -0.679309 0.427685 -0.528288 -0.738938 1.051162 1.194414 0.653826 -0.105277 0.321909 0.750428 -1.375385 -0.451124 -0.283068 0.433544 -0.196470 -1.751074 -0.688168 0.122447 -0.691705 -0.295697 -0.194176 0.424219 0.266119 0.668941 0.743161 0.080806 -0.254751 -0.337951 0.792734 -0.158223 -0.296691 0.026147 0.061480 0.028250 0.395342 -0.532159 0.357625 0.573914 -0.504263 0.376983 0.554481 0.130948 -0.096630 1.116039 0.719039 -0.085280 0.655124 -0.220829 -0.317393 0.347019 -0.032356 0.331837 0.018218 -0.076605 -0.197985 0.181407 0.497918 -0.360198 -0.879459 -0.622594 -0.351159 0.097312 0.512551 0.729720 -0.952178 -0.934608 -0.013348 0.154532 0.883476 0.219073 0.944192 -0.276611 0.476412 -0.972280 0.159060 0.089334 -0.107769 0.536192 0.057857 -0.272777 -0.086037 -0.177204 -0.795972 -1.244690 -0.222422 -0.561057 -0.409040 -0.694597 0.691535 -0.292876 -0.260634 0.157346 0.203042 0.649037 -0.140700 -0.074788 -0.725022 0.427084 0.856203 -0.216166 -0.553622 0.466271 0.165718 1.788685 -0.104578 0.218678 -0.065214 0.106166 -0.065929 -0.590583 -0.091281 0.829077 0.680714 0.184555 -0.356951 -0.227570 0.102998 0.271656 -PE-benchmarks/lexicographic-rank-of-a-string.cpp___GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/Nearly_sorted_Algo.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -0.285376 1.650564 8.811439 4.282871 -6.347860 -8.696100 -3.633990 -11.929182 5.338242 0.867185 5.655255 0.649906 1.350089 -2.801434 0.098199 2.135539 1.480432 -2.156245 -0.061735 -3.684722 -3.807204 6.670264 1.796443 -3.358989 1.844773 -9.932530 6.441064 2.795351 4.579108 5.109988 2.284845 -1.609373 -2.493724 5.119636 0.915759 4.274519 1.247988 1.132561 -3.965112 2.018204 1.893733 1.141277 5.549061 1.046178 7.500821 2.380600 4.373018 2.455620 -5.021949 -0.761260 -4.807925 7.789467 -5.761383 3.354669 -0.465889 1.772577 0.207249 -5.545730 -1.736651 -2.416953 -2.905525 -1.459513 -4.712983 0.547888 -5.955797 1.302530 -2.843364 -2.442422 1.102185 1.188504 5.776874 2.055332 -0.350103 1.010729 -6.869917 0.563027 0.365438 4.296477 5.358882 -2.931622 -0.195494 0.017836 -3.607600 -4.708698 4.378905 1.497891 1.930114 -0.563870 -0.249506 -2.091201 -2.370246 -1.695376 1.666717 3.858931 -5.291598 0.294431 -3.079629 -1.649601 -4.324796 -6.014429 1.159791 -3.487913 3.201704 1.178753 -1.466570 -0.728929 -0.042603 0.772707 -2.737855 -4.104171 0.609079 -1.748537 2.305922 7.912116 -1.705197 -1.957928 -1.504649 -2.163507 -1.101848 5.030720 2.478061 1.309100 6.985842 7.830972 4.174393 -4.137524 -3.693615 0.891066 3.584338 5.414551 4.014304 -5.482180 -3.819401 0.392169 0.244083 -9.510426 0.534020 1.405333 4.780892 1.807617 -3.436700 -0.375992 -2.855984 5.607864 2.673540 1.748522 1.849365 -0.375761 -5.291033 6.395749 11.359295 -1.368574 3.855555 -4.323928 -1.429869 5.394423 -5.039814 2.261106 1.761338 -1.665748 -0.104779 -2.891686 -1.582954 5.139708 1.291488 0.824201 2.901804 3.130770 -2.915250 -8.396634 -7.280291 0.854174 6.965307 -0.564639 8.189198 -6.079806 -2.165862 -1.911841 6.861901 0.235196 -1.809883 1.665012 -4.531055 3.999374 -6.635711 -7.145703 11.266366 10.181751 2.775925 -0.264234 4.728752 6.388000 -6.856295 -3.437932 -3.387131 1.761495 1.714682 -5.789694 -2.299009 0.560324 -6.236408 -3.485081 0.868882 2.713985 3.479954 -0.710993 -0.536361 1.245952 -4.770455 -4.937066 3.677340 -4.828092 -2.002436 1.529052 -0.053672 0.390468 3.255395 -2.035522 -0.282028 2.163186 -3.341367 1.591892 3.184926 5.506252 1.294359 7.398591 6.743977 0.047644 6.951080 2.790381 -3.125238 9.160684 -1.064340 2.688010 2.299100 1.907138 0.580088 2.185104 3.248376 -3.595459 -3.049494 -6.362878 1.126021 0.690690 4.393706 -2.694488 -4.778655 -8.603708 -2.426283 3.336094 4.299431 -0.492218 10.124659 -0.930930 1.064861 -10.826251 -0.564613 5.279796 -0.033399 4.748613 2.676074 -4.211294 -6.004239 -2.731461 -4.285328 -1.790115 -2.301698 -1.911424 -4.220663 -3.110791 5.473222 -2.607758 1.666563 6.044640 -0.249894 3.398592 -2.931827 0.545055 -3.205790 -1.373732 4.578753 1.119635 -5.972139 6.516802 0.084625 14.585464 -1.498852 3.553547 -3.382209 0.713290 -0.084305 -3.450804 -1.588107 7.745249 4.555217 2.028797 0.443175 0.290529 -1.811321 5.340645 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&, std::vector >&&) = -1.008860 -0.407588 5.069917 0.722400 -3.333491 -7.436774 -2.757925 -11.553686 4.684830 2.763711 6.795108 0.052632 3.635039 -3.039893 0.792563 4.056428 2.363673 -3.849448 1.117738 -3.267230 -2.295912 7.602219 0.636466 2.061088 0.587886 -7.261142 2.797781 1.393780 2.906135 3.168386 2.496237 -0.618768 -1.301573 2.386343 0.507204 5.810092 1.565758 2.086083 -2.294611 0.823192 -0.015971 -1.755892 3.875434 0.038572 7.428211 0.214054 4.459883 1.432345 -2.855875 -2.998362 -3.151861 5.544788 -4.798458 1.086673 -1.384394 -1.745055 0.469555 -2.201669 -1.760914 -1.541087 -2.525592 -2.702230 -4.323600 1.137981 -2.827092 2.731238 -2.050414 -1.446178 -0.939703 0.406369 4.690396 1.990907 -0.111050 3.554908 -6.986016 0.117656 0.716378 0.965113 3.415354 -1.860948 -0.769557 -1.450218 -3.468492 -4.367405 6.912572 3.979365 1.749146 0.630969 -3.685863 1.623770 -2.998873 -1.078902 2.938222 2.756866 -4.548103 -1.530985 1.990171 -2.043620 -3.980622 -5.369740 1.813770 -2.822379 2.032262 0.680321 0.615356 -0.920792 -3.274294 -0.006298 -5.321160 -4.122818 0.931477 -2.752773 1.278674 5.807756 -3.413037 -0.141614 -3.073499 -1.074952 0.283055 3.045456 3.286779 1.800995 6.284188 5.159343 2.337007 -4.106598 -4.118580 2.019609 5.171884 2.707755 1.413533 -4.280758 -3.425012 1.641761 -2.688366 -7.110608 -3.390153 3.046043 4.255137 -0.419041 -1.501022 1.626173 -1.044791 4.468150 4.833240 -0.139401 0.375637 0.811136 -4.982262 4.249794 7.377447 -1.236579 4.326062 -2.736016 0.156129 4.392700 -4.888903 0.995472 3.555837 -1.187199 -3.506048 -1.869217 -0.821539 3.290794 2.064762 2.507804 -1.476988 4.116393 -2.630311 -5.307510 -7.648233 -0.546076 6.758404 0.564093 5.709657 -5.100406 -2.386398 0.559368 4.853138 0.645950 -3.766417 2.088635 -4.459779 3.075700 -5.907570 -5.730001 10.133900 8.057256 5.571343 0.911077 3.920845 5.754253 -7.136658 -1.478758 -1.355273 3.029387 1.032662 -9.139788 -2.496318 0.973102 -5.625733 -4.463992 -2.188896 2.631127 -0.624053 2.125330 4.269497 -0.065514 -1.449771 -0.838205 2.827040 -1.910231 -2.736644 -0.656562 0.513791 0.849917 1.939999 -2.582904 2.826770 1.877388 -4.063361 1.686603 3.396661 2.857713 2.347575 7.734948 7.525007 -2.238227 5.405226 -1.586413 -1.669623 2.025680 -0.375011 1.950632 0.588193 1.321192 1.411466 0.491543 4.020902 -2.587248 -3.352866 -4.246836 -0.423249 2.616041 3.683541 1.906091 -4.792270 -8.066525 -0.585724 1.806220 6.138004 -0.666981 7.287442 -2.216635 2.105803 -8.690184 0.805288 1.548161 -0.629251 2.407582 1.019310 -2.099888 -2.597909 -2.187625 -4.572272 -6.372739 -1.045149 -1.899401 -2.909198 -4.902581 4.960457 -4.513771 -0.773249 1.684607 1.363964 4.022398 -0.205227 0.272976 -4.322539 2.715075 4.412974 0.051762 -3.881550 4.330940 0.633919 12.463816 -1.313484 2.536767 -1.368362 3.131700 -1.388037 -3.873158 -0.583589 5.806792 5.832426 -0.043723 -0.327608 -0.398187 0.702568 3.946738 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = -1.031596 -0.014012 3.062952 0.238062 -2.262855 -2.439598 -1.184258 -4.963907 2.480966 1.202379 2.654490 0.740420 1.812464 -2.013898 -0.107457 0.659798 1.475696 -1.538796 0.644450 -1.382617 -0.281701 2.880697 0.376179 0.299700 0.543457 -3.366473 1.902853 -0.388756 1.836726 2.284858 1.169511 -0.479002 -1.791988 1.173711 1.670783 2.221287 1.513915 0.872836 -1.524124 0.207312 -0.156625 -1.538497 1.662944 0.118173 3.514772 -0.750818 0.458225 0.645471 -1.613243 -1.258814 -0.621846 1.413744 -2.452843 0.828964 0.833713 -0.714990 -0.601271 -0.571105 -0.503586 -1.248019 -0.863485 -2.364295 -0.982875 0.700840 -1.499566 1.011167 -1.780945 -0.422025 -0.752004 -0.951020 1.512220 1.139608 1.218365 2.033855 -3.218215 0.020995 0.372664 0.651837 1.890917 0.273745 -0.404522 -1.123691 -1.285768 -2.102088 1.960235 1.808823 0.100042 0.049395 -1.586549 0.938025 -0.630080 -0.384933 1.075825 1.209652 -2.862734 -0.678871 -0.634816 -0.752786 -0.379388 -3.738224 0.612723 -1.400003 0.835046 0.226625 -0.948943 -0.632784 -1.336392 0.421925 -1.688834 -1.283590 1.257715 -0.877841 0.091988 2.971612 -1.295075 -0.308847 -1.901672 -0.503287 0.747852 1.224443 0.639020 1.158581 1.734448 2.438121 1.751245 -1.975581 -1.448347 1.774443 1.904222 0.772553 0.699870 -1.819327 -1.117900 1.162613 -1.007359 -3.305800 -1.488588 0.725143 1.889261 0.414080 -0.395147 -1.130414 -1.014232 1.805899 1.943990 0.273293 0.216280 0.533996 -2.179112 1.687108 2.769386 -0.506397 1.636907 -0.562870 0.288918 1.667733 -2.153050 0.826296 -0.111604 0.020409 -0.888563 -1.053991 -0.767846 1.669289 0.496459 1.130714 -1.454525 1.395190 -1.327613 -2.999199 -3.205407 -0.486599 3.969924 0.633719 1.524113 -2.285423 -0.725920 0.103304 2.566557 1.185193 -1.671803 1.124370 -1.689769 1.646164 -2.667196 -2.716394 4.330495 4.054005 1.740727 0.212271 0.739104 2.159666 -3.960573 -1.119154 -1.112401 0.754753 -0.631718 -3.955642 -1.758006 0.729094 -2.574370 -1.692048 0.118102 1.030733 1.438949 0.640723 1.807844 1.662645 0.223344 -1.187198 2.274822 -0.485656 -1.888606 -0.174101 0.384741 1.244549 1.168217 -0.830795 0.741199 1.230686 -1.340460 0.391998 1.396867 1.226006 0.218605 3.161049 2.703956 -0.520960 0.496598 -0.405665 -1.264398 1.851036 -0.592231 1.031783 0.410161 -0.226395 0.601862 0.450881 1.870325 -1.389673 -1.588871 -1.910510 -1.325702 0.129076 2.292100 -0.302551 -3.618747 -2.690128 0.604565 0.702247 1.545766 0.005279 3.611455 -0.941911 0.775609 -3.533992 0.067176 1.977631 -0.180630 2.015992 0.578684 -1.034160 -1.366588 -1.152630 -2.269395 -1.426212 -0.708805 -0.190169 -0.852719 -1.464896 3.114347 -0.943156 -0.314086 0.551567 0.284011 2.902947 0.291425 0.217239 -2.332418 1.052787 1.021331 0.020034 -1.544495 2.685182 0.756698 4.669532 -0.613850 0.111414 -0.252770 1.097916 -0.715151 -1.830604 -0.445865 2.730891 2.639572 0.993681 -0.832093 -0.522839 -0.416261 1.520227 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = -0.385130 -0.139538 2.012795 -0.195053 -0.811104 -2.948784 -0.990979 -4.577744 1.754441 0.986913 2.871626 -0.117394 1.706626 -1.040448 0.587578 1.818537 1.114994 -1.559828 0.607692 -1.118779 -0.328826 3.026463 0.150987 1.161171 0.124553 -2.462281 0.152818 0.754331 1.219929 1.050951 0.875927 -0.343320 -0.404724 0.616465 -0.109047 2.109273 0.922349 0.738139 -1.265808 0.112293 -0.670682 -0.751661 1.431028 -0.422260 2.809104 -0.315166 1.924713 0.585296 -0.760553 -1.252888 -1.217933 2.719005 -1.583873 0.215473 -0.219000 -1.002118 -0.013158 -0.603758 -0.833587 -0.545156 -0.923249 -0.765367 -1.625534 0.427722 -0.775620 1.093402 -0.597965 -0.461655 -0.304350 -0.046351 1.613570 0.653288 0.117726 1.538419 -2.884660 0.093502 0.323165 0.308334 0.952188 -0.541422 0.029369 -0.523813 -1.061860 -1.536174 2.788233 1.929539 0.703636 0.259176 -2.084987 1.149106 -1.206939 -0.378833 1.053819 0.788903 -1.808527 -0.463781 0.985474 -0.883288 -1.673336 -2.063994 0.735840 -1.032260 0.668098 -0.015531 0.883074 -0.391089 -1.747187 0.108835 -2.265870 -1.800585 0.450029 -0.901172 0.002753 2.243128 -1.775672 0.341668 -1.262570 -0.217594 -0.093050 1.055987 1.152660 0.930924 1.785390 1.854756 0.772688 -1.651329 -1.590099 0.853333 2.402230 0.975610 0.414940 -1.575344 -1.179964 0.734428 -1.473317 -2.909350 -1.621939 1.526060 1.638225 -0.057649 -0.583797 0.458311 -0.318171 1.942703 1.925473 -0.135155 0.046409 0.427763 -1.822392 1.430472 2.481480 -0.715905 2.072400 -0.735377 0.270732 1.280420 -1.896859 0.515757 1.426416 -0.323391 -1.359254 -0.652079 -0.451029 1.181349 1.350482 1.323144 -1.141870 1.407314 -1.026115 -2.059269 -3.166423 -0.410864 2.419603 -0.077642 1.827289 -1.688720 -1.580037 0.347419 1.894033 -0.193953 -1.775401 0.887911 -1.973172 1.234997 -2.113173 -2.113870 3.815537 3.214134 2.276303 0.523162 1.673832 2.096004 -3.206960 -0.399146 -0.277875 1.369711 0.098853 -4.250170 -1.023611 0.225426 -2.226336 -1.453798 -1.151710 1.015255 -0.869944 1.637419 2.338341 0.173632 -0.572589 0.244717 1.013395 -0.556964 -1.127543 -0.417992 0.177365 0.425500 0.746667 -1.437250 1.168299 1.139033 -2.064028 0.570483 1.204878 0.870026 1.041279 3.233055 2.820558 -0.610866 2.604390 -0.971632 -0.854920 0.203040 -0.155563 0.686212 -0.136077 0.408364 0.360536 0.201201 1.500946 -0.901791 -1.728706 -1.563864 -0.517323 1.083300 1.640218 1.535837 -2.445323 -2.708447 -0.135533 0.839501 2.529490 -0.365743 2.634244 -1.048154 1.118622 -3.569171 0.474774 0.118028 -0.259788 0.715248 0.252878 -0.748141 -1.170471 -0.611032 -1.872436 -3.252981 -0.254757 -1.182073 -0.920115 -2.514232 2.381608 -2.037521 -0.655643 0.242950 0.619317 1.888325 0.440161 -0.071091 -1.633374 1.347976 1.904194 -0.123121 -1.379024 1.514106 0.361447 5.157576 -0.512719 0.998714 -0.497951 1.304710 -0.419950 -1.396908 -0.141842 2.260950 2.704196 -0.172382 -0.482916 -0.299033 0.202371 1.171022 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -0.482822 -0.202709 2.208677 -0.045179 -1.006704 -3.305329 -1.142206 -5.027514 1.988618 1.113903 3.150143 -0.052815 1.911530 -1.209528 0.557145 1.846953 1.204886 -1.740902 0.635803 -1.282472 -0.521719 3.459541 0.238851 1.106833 0.119045 -2.805858 0.506489 0.818160 1.297997 1.357265 0.974825 -0.301275 -0.465342 0.766944 -0.121852 2.325652 0.869358 0.896509 -1.252340 0.116587 -0.479103 -0.841574 1.678778 -0.370713 3.113444 -0.209920 2.058323 0.635571 -0.875986 -1.430191 -1.321270 2.725790 -1.868710 0.248297 -0.403074 -1.009140 0.107993 -0.722181 -0.895669 -0.707384 -0.962801 -0.906765 -1.887693 0.492410 -0.988589 1.221459 -0.722306 -0.586538 -0.385937 -0.131784 1.809561 0.744310 0.067698 1.540929 -3.213242 0.063744 0.336985 0.307624 1.145351 -0.558493 -0.162557 -0.619402 -1.310945 -1.742561 3.050450 2.052341 0.754054 0.358730 -2.141240 1.116580 -1.301904 -0.352088 1.219012 0.966642 -1.909496 -0.520191 1.095725 -0.949358 -1.801943 -2.250866 0.880809 -1.160503 0.785894 0.105933 0.765294 -0.462118 -1.796909 0.044840 -2.505493 -2.024675 0.437769 -1.131323 0.142471 2.496179 -1.870080 0.288200 -1.445263 -0.323637 0.035239 1.263108 1.288220 0.965083 2.143322 2.082078 0.815046 -1.906277 -1.770022 0.983458 2.580432 1.056712 0.475727 -1.793652 -1.350733 0.794029 -1.580699 -3.225152 -1.756668 1.607254 1.781456 -0.170614 -0.710297 0.730938 -0.406198 2.055093 2.221362 -0.089456 0.087780 0.465450 -2.077547 1.640653 2.868892 -0.715527 2.210476 -0.931962 0.088353 1.708827 -2.104604 0.556652 1.549076 -0.407783 -1.580279 -0.722107 -0.328812 1.344714 1.289112 1.469539 -1.092848 1.568319 -1.065062 -2.277203 -3.488408 -0.400054 2.830558 0.148281 2.239597 -2.002953 -1.510753 0.421273 2.079839 -0.064605 -1.901477 0.964060 -2.094234 1.394255 -2.609334 -2.427588 4.243498 3.425278 2.520143 0.604974 1.797827 2.295240 -3.257039 -0.442939 -0.401491 1.545322 0.210541 -4.412471 -0.994466 0.255214 -2.485481 -1.681750 -1.199260 1.154406 -0.774203 1.474161 2.385827 -0.018971 -0.620054 0.034771 1.154660 -0.697327 -1.228532 -0.442428 0.170702 0.383070 0.775173 -1.397022 1.303342 1.086351 -2.094664 0.668865 1.360100 0.934716 1.084926 3.502336 3.206640 -0.884264 2.606659 -1.016701 -0.814380 0.484670 -0.218117 0.789270 -0.037467 0.632672 0.524823 0.218362 1.723720 -1.016083 -1.739005 -1.758458 -0.469243 1.289896 1.786275 1.350961 -2.554234 -3.154455 -0.166233 0.852627 2.911813 -0.396523 3.025688 -1.137519 1.211265 -3.923111 0.521492 0.253256 -0.265568 0.854320 0.325810 -0.857121 -1.232061 -0.746642 -2.058393 -3.331689 -0.342641 -1.247164 -1.105901 -2.566758 2.414513 -2.234201 -0.661957 0.399870 0.555745 1.970344 0.348385 -0.027174 -1.826756 1.371472 1.969438 -0.103492 -1.520466 1.754628 0.349494 5.552971 -0.545185 1.197758 -0.532878 1.617503 -0.576526 -1.660157 -0.190033 2.549551 2.858606 -0.229548 -0.389343 -0.292712 0.333939 1.334181 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = 0.020092 0.112897 0.566920 0.070117 -0.160620 -0.703151 -0.222328 -1.009523 0.399097 0.155929 0.541219 -0.074664 0.395953 -0.204241 0.029013 0.267736 0.172551 -0.174413 0.163916 -0.208948 -0.153268 0.697359 -0.012544 0.077956 0.047587 -0.651205 0.271708 0.201846 0.355543 0.419545 0.108957 -0.071416 -0.072743 0.223927 -0.122323 0.260148 0.190958 0.216878 -0.317428 0.074179 -0.132219 -0.034045 0.314497 -0.030129 0.505845 0.175788 0.235816 0.166018 -0.090021 -0.206417 -0.225692 0.456357 -0.331917 0.146316 -0.168831 -0.191696 0.038380 -0.115053 -0.113574 -0.196519 -0.102773 -0.100852 -0.314855 0.086157 -0.353617 0.185340 -0.163205 -0.258939 -0.061010 0.020872 0.371316 0.199476 0.072603 0.168939 -0.722403 0.069463 0.089107 0.154497 0.288670 -0.163413 0.019829 -0.067909 -0.305946 -0.401939 0.560648 0.437069 0.200295 0.124769 -0.287585 0.003154 -0.187124 -0.064805 0.265730 0.263452 -0.184193 0.015190 -0.052478 -0.068800 -0.255008 -0.598287 0.129614 -0.252902 0.182892 0.023197 0.198518 -0.035124 -0.096846 0.150422 -0.320127 -0.429439 0.162828 -0.219784 0.012595 0.596875 -0.214162 -0.033918 -0.199645 -0.114229 -0.062781 0.359836 0.206400 0.157780 0.352072 0.434828 0.165612 -0.382592 -0.348852 0.251583 0.386729 0.276127 0.179448 -0.487586 -0.272863 0.112015 -0.304000 -0.727709 -0.234862 0.222850 0.333359 -0.215383 -0.203834 0.270068 -0.197503 0.330403 0.404155 0.025886 0.090668 0.033470 -0.395266 0.372313 0.676275 -0.165063 0.380230 -0.246035 -0.090649 0.297452 -0.287256 0.145369 0.132946 -0.114231 -0.153596 -0.168010 0.034859 0.352042 0.216465 0.294141 -0.039813 0.251310 -0.356496 -0.527561 -0.605227 -0.049599 0.623965 -0.079418 0.578593 -0.396806 -0.326795 0.035001 0.528065 -0.045727 -0.207373 0.168698 -0.399388 0.310587 -0.603212 -0.567564 0.811282 0.650756 0.463484 0.014144 0.289330 0.457360 -0.497891 -0.201155 -0.101014 0.207432 0.021230 -0.854644 -0.338206 0.014271 -0.499615 -0.255184 -0.085948 0.220067 -0.012199 0.298924 0.293905 -0.096870 -0.227957 -0.195347 0.266637 -0.251017 -0.112859 0.010590 0.037546 -0.009148 0.191376 -0.311700 0.165288 0.317709 -0.334472 0.163585 0.239462 0.174584 0.120266 0.707466 0.578593 -0.122996 0.447630 -0.037060 -0.210866 0.447390 -0.071520 0.181203 0.044341 0.200440 0.037880 0.119037 0.328349 -0.234631 -0.350988 -0.512108 -0.146365 0.265351 0.285033 0.207690 -0.480167 -0.587422 -0.071336 0.105191 0.615637 -0.012788 0.691043 -0.187962 0.243529 -0.736806 0.100782 0.120990 -0.102801 0.264469 0.150807 -0.212565 -0.404583 -0.158074 -0.411198 -0.662911 -0.210889 -0.395973 -0.203658 -0.383357 0.313055 -0.344055 -0.046927 0.245950 0.120076 0.334203 -0.150112 0.008083 -0.407896 0.191186 0.390650 -0.076231 -0.374115 0.285839 0.074126 1.129596 -0.104789 0.286985 -0.190113 0.233351 -0.099673 -0.330043 -0.088125 0.588144 0.443367 0.035212 -0.002881 -0.006271 0.041758 0.290530 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = -0.119456 0.487621 2.612033 1.468705 -1.474311 -2.308337 -1.033795 -3.381701 1.585326 0.155746 1.799736 0.098326 0.705925 -0.761358 -0.035756 -0.081631 0.364231 -0.565404 0.092140 -0.826544 -0.792458 2.218574 0.461602 -1.369468 0.300966 -2.857902 1.723924 1.158542 1.271945 1.453030 0.230718 -0.326233 -0.692212 1.331200 -0.588381 0.214479 0.424326 0.464733 -1.114353 0.013771 0.690371 0.729873 1.596177 -0.121050 1.736512 0.543828 1.032161 0.605919 -1.023583 -0.393861 -0.904667 1.898722 -1.249051 0.939115 0.025355 0.328183 0.267718 -1.489448 -0.456249 -1.004983 -0.192565 -0.037314 -1.093234 0.110709 -1.512936 0.378007 -0.266434 -0.955626 0.718513 -0.154386 1.490381 0.412875 0.043177 -0.320426 -1.938633 0.357480 0.168675 1.033319 1.197630 -0.307091 0.026661 0.102944 -1.097918 -1.226911 0.997134 0.856772 0.497148 -0.012678 -0.194034 -0.577777 -0.076819 -0.485527 0.382074 1.129074 -1.128509 0.247700 -0.908326 -0.382839 -1.153202 -1.388802 0.353991 -1.058749 0.952272 0.651980 -0.630585 -0.030495 0.404500 0.279438 -0.658405 -1.567754 0.160354 -0.651308 0.865268 2.378531 -0.607862 -0.559216 -0.455962 -0.599316 -0.447861 1.490547 0.405897 0.434964 1.829046 2.090001 0.613437 -1.418408 -1.060235 0.617255 1.100981 1.451978 1.013664 -1.944259 -0.903749 0.049702 -0.179354 -2.876278 0.006122 0.259852 1.388649 0.026781 -1.328612 0.628812 -0.894115 1.635792 0.958067 0.527454 0.468874 0.038471 -1.455827 1.724201 3.030794 -0.396226 1.091538 -1.183176 -0.980533 1.544315 -1.109238 0.866036 0.425084 -0.224816 0.051280 -0.968449 0.025234 1.535623 0.249763 0.707405 0.754035 0.668683 -0.736035 -2.523156 -2.365458 0.278295 1.825131 0.051506 2.780737 -1.728131 -1.004195 -0.382566 2.195710 -0.254827 -0.549647 0.540501 -1.285235 1.186017 -2.028515 -2.252818 2.848476 2.719953 0.622004 0.042509 1.648856 1.210428 -1.310274 -0.892708 -0.944513 0.711819 0.700415 -1.377950 -0.296723 0.016462 -1.657149 -0.909566 0.320280 0.699113 0.907005 -0.401046 -0.163106 -0.018578 -1.521906 -1.519063 1.168474 -1.378954 -0.250380 0.337567 -0.009996 -0.112707 0.993426 -0.691606 -0.292439 0.537247 -0.851441 0.471845 0.821115 1.139417 0.217836 2.102518 1.768986 -0.165050 1.942806 0.732696 -0.756734 3.169167 -0.652670 0.538236 0.568367 0.954199 0.075045 0.784030 0.881478 -0.977901 -0.686023 -1.985996 0.372572 0.190830 1.129659 -1.385304 -1.398389 -2.349306 -0.875589 0.757426 1.358870 -0.069075 3.119957 -0.447936 0.303314 -3.319167 -0.151342 1.295356 -0.066466 1.349912 0.711481 -1.175468 -2.272962 -0.629377 -1.192396 -0.659391 -0.803257 -1.290687 -1.202800 -1.017096 1.438531 -0.827802 0.539761 1.927547 -0.098705 0.741668 -1.024008 0.069453 -0.819972 -0.527378 0.813949 0.163038 -1.679819 1.817172 -0.149173 4.069428 -0.521461 1.275047 -1.093991 0.690291 -0.306266 -1.240405 -0.402802 2.244223 1.199046 0.450691 -0.064170 0.110205 -0.717452 1.366201 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.058865 0.279967 1.705029 0.118857 -0.850108 -2.011299 -0.827774 -3.152490 1.252765 0.524777 1.561866 -0.088672 0.953127 -0.352181 0.042173 0.880430 0.608226 -0.912868 0.548235 -0.824506 -0.647317 2.344123 0.179304 0.425363 0.169345 -2.370990 0.903758 0.395455 1.196908 1.251205 0.442561 -0.255405 -0.372898 0.717089 -0.063531 0.888640 0.449254 0.500951 -1.036983 0.586106 -0.165827 -0.162723 1.177030 -0.072205 1.589611 0.418786 0.790544 0.599382 -0.393790 -0.660184 -0.761698 1.366294 -1.045666 0.407416 -0.293276 -0.408890 -0.081385 -0.583843 -0.533076 -0.030469 -0.646721 -0.503203 -0.959653 0.450136 -1.118083 0.636932 -0.923659 -0.565172 -0.155528 0.037011 1.185777 0.617606 0.164443 0.547948 -2.262258 0.261015 0.133271 0.577953 0.777255 -0.485854 -0.149436 0.048634 -1.096633 -1.271091 1.341189 1.502505 0.350342 -0.088900 -0.805790 -0.014537 -0.673340 -0.222321 0.676171 0.881945 -0.994996 -0.000535 -0.384029 -0.416117 -1.033439 -1.896677 0.328048 -0.740942 0.713356 -0.111718 0.253199 -0.327856 -0.260327 0.161760 -0.844095 -1.289615 0.311679 -0.486097 0.262369 2.075656 -0.617539 -0.091769 -0.902983 -0.407307 -0.269636 1.037590 0.678492 0.414487 1.426008 1.479244 0.512387 -1.050679 -1.084252 0.646514 1.061864 0.657806 0.765654 -1.335299 -0.914960 0.309474 -0.539154 -2.056683 -0.729730 0.639296 1.005682 -0.590855 -0.141182 0.339640 -0.606213 1.177114 1.238126 -0.051605 0.332978 -0.054504 -1.192095 1.328410 2.353504 -0.357512 1.083852 -1.169861 -0.312297 1.412017 -1.129203 0.592141 0.474490 -0.101800 -0.886817 -0.573013 0.102001 0.968568 0.371393 0.712391 0.082069 0.720040 -0.641875 -1.441977 -1.911498 -0.021733 1.749337 -0.045164 1.637716 -1.290869 -0.657020 0.039626 1.417831 0.461136 -0.760410 0.679215 -1.165047 0.785264 -1.830916 -1.618521 2.443760 2.305052 1.181699 0.104278 0.918926 1.456142 -1.756586 -0.805100 -0.513180 0.911753 -0.033950 -2.433182 -0.847012 0.215280 -1.404452 -0.793855 -0.367204 0.779809 0.543560 0.599968 0.823240 -0.187102 -0.858835 -0.800179 1.107973 -0.713883 -0.622637 0.167096 0.052833 -0.104595 0.624035 -0.623566 0.557164 0.751111 -0.890353 0.549235 0.913980 0.542240 0.103041 1.808581 1.778944 -0.321774 1.285277 -0.128581 -0.494279 1.293645 -0.285730 0.577891 0.128451 0.324170 -0.074906 0.330296 0.875476 -0.615843 -1.168687 -1.213318 0.056080 0.428084 0.888868 0.340349 -1.645057 -1.912337 -0.197527 0.458926 1.775885 0.164340 2.100275 -0.566025 0.710149 -2.375145 0.304399 0.406228 0.012260 0.958363 0.371073 -0.660292 -0.634012 -0.456974 -1.328670 -1.511288 -0.506901 -1.174917 -0.838336 -1.044758 1.126786 -0.903668 -0.188505 0.842085 0.099125 1.128813 -0.235027 -0.130493 -1.342938 0.409026 1.323573 -0.162261 -0.946210 1.081401 0.058082 3.203179 -0.303606 0.766241 -0.309822 0.566273 -0.184016 -1.208967 -0.210549 1.727827 1.166117 0.054699 -0.160794 -0.347887 0.268998 0.683137 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = -0.026747 0.206836 0.832078 0.036324 -0.511772 -0.703710 -0.217452 -1.260560 0.578122 0.299685 0.541652 0.148182 0.553215 -0.327377 -0.154861 0.006007 0.367187 -0.163973 0.204865 -0.345144 -0.069316 0.757964 -0.124977 0.132069 0.079813 -0.861798 0.619575 0.038521 0.624867 0.714778 0.259332 -0.134136 -0.519996 0.270152 0.169617 0.177549 0.281099 0.285579 -0.553576 0.090916 -0.106601 -0.273794 0.506853 0.048056 0.638361 0.010833 -0.113693 0.229901 -0.153850 -0.324702 -0.053169 0.097766 -0.386076 0.300745 0.060625 -0.322582 -0.152419 0.115345 0.063001 -0.117582 -0.040548 -0.476644 -0.121973 0.179604 -0.514911 0.112941 -0.581580 -0.371980 -0.230924 -0.447548 0.286616 0.196520 0.305868 0.220668 -1.095070 0.041720 0.105152 0.186939 0.488870 0.215355 -0.060626 -0.265345 -0.442558 -0.555960 0.294976 0.718996 0.005058 0.152545 -0.513217 -0.088175 -0.009308 -0.007261 0.398562 0.322062 -0.483068 -0.001892 -0.574517 -0.080114 -0.013023 -1.139905 0.184547 -0.249400 0.279612 -0.168444 -0.162552 -0.149561 -0.052242 0.095109 -0.149740 -0.310521 0.374458 -0.278666 0.094000 0.953640 -0.157452 -0.264762 -0.542364 -0.197517 0.096091 0.329978 0.139383 0.099127 0.259209 0.450196 0.479194 -0.598103 -0.384465 0.584790 0.202115 0.193096 0.186862 -0.388573 -0.217380 0.249750 -0.376181 -0.905970 -0.273792 0.052794 0.417603 -0.277131 0.132578 -0.154804 -0.496550 0.274247 0.498369 0.116691 0.238446 0.095941 -0.475618 0.309163 0.661163 -0.069362 0.309382 -0.230773 -0.121831 0.357437 -0.235883 0.326838 -0.208131 -0.057026 -0.199202 -0.196506 0.053929 0.482689 -0.032284 0.339727 -0.188549 0.262236 -0.486593 -0.663735 -0.744602 -0.074540 1.033454 0.252861 0.403894 -0.569728 -0.099379 0.092989 0.671864 0.340526 -0.315463 0.391410 -0.347449 0.412840 -0.824257 -0.666115 0.872973 1.003758 0.387086 -0.155341 0.027777 0.374817 -0.742959 -0.472306 -0.282858 0.110295 -0.268076 -1.072459 -0.475710 0.191357 -0.565809 -0.230802 0.197351 0.248919 0.548946 0.126737 0.503182 0.075978 0.051597 -0.620083 0.684011 -0.127853 -0.253153 0.058444 0.116495 0.116270 0.289751 -0.224699 0.071663 0.416090 -0.166148 0.205307 0.238466 0.128629 -0.169734 0.717528 0.454904 -0.183975 0.003486 -0.053437 -0.337511 0.902838 -0.300011 0.292911 0.135054 0.113038 0.037520 0.220705 0.401160 -0.394296 -0.339502 -0.563116 -0.483060 0.088147 0.436374 -0.084552 -0.878399 -0.695337 0.235853 -0.133933 0.508042 0.096096 0.954957 -0.268466 0.279290 -0.678016 0.082981 0.409331 -0.097708 0.620283 0.186027 -0.315760 -0.144419 -0.235572 -0.671706 -0.336026 -0.167503 -0.292398 -0.181885 -0.171394 0.423080 -0.121517 -0.059435 0.173984 -0.138111 0.655682 -0.240615 0.060949 -0.589641 0.186165 0.318562 -0.074623 -0.402184 0.531850 0.160788 1.023097 -0.012739 0.131818 0.000995 0.269573 -0.190406 -0.664507 -0.260381 0.757630 0.444627 0.361882 -0.227380 -0.130595 0.046283 0.256271 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.112750 0.200779 0.672668 0.567893 -0.905693 -1.735951 -0.367156 -1.603191 0.458403 0.088252 0.974049 0.046966 0.681297 -0.439507 0.202614 0.556008 0.622537 -0.065534 0.082243 -0.609933 -0.834166 1.034337 0.152418 -0.074208 0.108705 -0.235938 0.564411 0.584446 0.339632 0.592438 0.383939 -0.098656 -0.309207 0.388724 -0.132752 0.512211 -0.112015 0.454713 -0.613215 0.092815 -0.058194 -0.784319 0.914036 -0.067115 0.786315 0.241894 0.999812 0.425522 -0.704244 -0.417800 -0.737928 0.866768 -0.808101 0.278590 -0.416863 -0.468114 0.466740 -0.013897 -0.157803 -0.449041 -0.345745 -0.682699 -0.848207 0.065565 -0.703056 0.333490 -0.500576 -0.784318 -0.144241 0.244231 0.648696 0.249531 -0.131706 0.389642 -1.198369 -0.155995 0.242987 0.420188 0.625460 -0.024680 0.171912 -0.377005 -0.715510 -0.611227 1.021966 -0.004083 0.588925 0.316138 -0.778769 0.137061 -0.177919 0.040413 0.612019 0.167291 -0.357292 0.098678 0.123026 -0.237625 -0.885160 -1.277805 0.360289 -0.247102 0.361440 -0.035966 0.095407 -0.163471 -0.779845 -0.006648 -0.893680 -1.033868 0.012424 -0.643563 -0.143948 0.878085 -0.534108 -0.058740 -0.208263 -0.161473 0.036515 0.515186 0.680680 0.286176 0.593873 0.847349 0.179770 -0.755937 -0.632139 -0.067389 0.757079 0.588299 0.434956 -0.333894 -0.738195 0.326134 -0.741379 -1.283909 -0.357030 0.836025 0.719130 0.088370 -0.405592 0.414535 -0.448268 0.508991 0.635501 0.416871 0.162810 -0.036375 -0.737908 0.623974 0.845429 -0.331541 0.917537 -0.050425 -0.127704 0.877632 -0.462442 -0.012760 0.482701 -0.558905 -0.515799 -0.046821 -0.251118 0.542258 0.578593 0.198587 0.124170 0.514259 -0.799826 -1.041806 -1.019677 0.240236 1.481398 0.241793 0.858231 -0.918919 -0.363232 0.355462 0.555674 -0.275607 -0.697783 0.210922 -0.596165 0.649571 -1.363656 -1.000498 1.559523 0.650726 0.686879 0.179564 0.369774 0.798513 -0.998871 -0.438795 -0.368622 0.402487 0.021981 -1.402838 -0.547904 0.131580 -1.091484 -0.259543 -0.047403 0.584639 -0.058473 0.162448 0.600316 -0.468971 -0.279387 -0.254007 0.264032 -0.392374 -0.194259 0.162397 -0.122714 0.264623 0.160612 -0.153699 0.263241 -0.028378 -0.744959 0.153759 0.124817 0.597597 0.428753 1.748966 1.258357 -0.446278 0.772009 -0.121649 -0.569097 0.819562 -0.244502 0.599627 0.031157 0.862530 0.224992 0.037475 1.113239 -0.419498 -0.664301 -0.829692 -0.541767 0.780641 0.655444 -0.024243 -0.572780 -1.506204 0.027013 0.239282 1.215882 -0.496776 1.020062 -0.468872 0.357063 -1.256223 0.216027 0.100167 -0.229753 0.519254 0.248981 -0.440519 -0.316169 -0.409965 -0.823097 -0.721404 -0.159994 -0.165724 -0.344376 -0.285613 0.096047 -0.740604 -0.261153 0.202274 -0.256565 0.608532 0.009373 0.039653 -0.342766 0.276072 1.037827 -0.018534 -0.679444 0.980813 0.289499 2.277436 0.386620 0.423852 -0.241159 0.245157 0.028612 -0.547367 -0.294924 1.041590 1.032036 -0.059444 0.239751 0.336926 0.366794 0.534382 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.030353 0.189934 0.811661 0.290321 -0.571219 -1.264494 -0.372125 -1.593613 0.619097 0.345174 0.817096 0.015365 0.683564 -0.316981 -0.116658 0.215494 0.332855 -0.234936 0.140450 -0.507670 -0.699801 1.102806 -0.050708 0.021440 0.106113 -0.959369 1.032589 0.338017 0.394128 0.852836 0.308569 0.059888 -0.255547 0.465304 -0.115177 0.419354 -0.035756 0.511839 -0.243211 0.170800 0.268124 -0.273088 0.748409 0.201161 0.751317 0.549994 0.256462 0.287774 -0.234127 -0.430700 -0.253340 0.128905 -0.636919 0.235148 -0.576636 -0.200802 0.285015 -0.217142 -0.002015 -0.204336 -0.078068 -0.414362 -0.712859 0.179626 -0.752332 0.219804 -0.447940 -0.632581 -0.254409 -0.221506 0.523858 0.180332 -0.211034 0.014120 -1.216647 -0.090182 0.197152 0.097848 0.638211 -0.099522 -0.289365 -0.259101 -0.848712 -0.729486 0.838609 0.586806 0.327513 0.353511 -0.399456 -0.286308 -0.196783 0.076500 0.650857 0.589499 -0.211391 -0.058363 -0.096150 -0.201168 -0.522057 -1.029710 0.444508 -0.333577 0.438141 0.034168 -0.198564 -0.144256 -0.023246 0.002567 -0.453528 -0.664941 0.026716 -0.714724 0.396364 0.976605 -0.127491 -0.340299 -0.558733 -0.426411 0.227859 0.598165 0.449974 -0.057162 0.974834 0.617451 0.253320 -0.781158 -0.636940 0.350869 0.307119 0.357953 0.262471 -0.722008 -0.496324 0.211413 -0.543482 -1.169541 -0.323201 0.116653 0.436468 -0.609383 -0.211419 0.739822 -0.474516 0.172777 0.792599 0.213603 0.227568 0.056108 -0.658527 0.493023 1.082871 -0.104315 0.446432 -0.573856 -0.487482 0.896446 -0.326758 0.146016 0.248161 -0.384616 -0.546763 -0.145731 0.350709 0.609104 -0.104635 0.363876 0.227615 0.424161 -0.509427 -0.621666 -0.953850 0.084654 1.290374 0.445450 1.144972 -0.933011 0.039874 0.183688 0.733553 0.226741 -0.301380 0.305849 -0.407187 0.520113 -1.258890 -0.939464 1.156512 0.683108 0.735706 -0.025938 0.257595 0.483367 -0.390445 -0.387858 -0.374678 0.377447 0.164493 -0.900129 -0.257346 0.093535 -0.833512 -0.340844 -0.075289 0.447724 0.354411 -0.174188 0.345916 -0.654577 -0.210483 -0.768734 0.465243 -0.363876 -0.111270 0.048737 -0.013563 -0.169094 0.178784 -0.083367 0.208316 0.039140 -0.198573 0.347863 0.398911 0.198178 0.002792 1.107746 0.955671 -0.669783 0.147107 -0.114135 -0.079111 0.967534 -0.208790 0.407535 0.272165 0.712532 0.252173 0.174290 0.765536 -0.396979 -0.271975 -0.758338 -0.208170 0.601195 0.356438 -0.140715 -0.351740 -1.355501 -0.062530 -0.135061 1.289556 -0.054188 1.165608 -0.200521 0.434539 -0.915634 0.188322 0.247913 -0.181870 0.494208 0.253955 -0.462658 -0.145107 -0.338724 -0.765996 -0.663309 -0.216269 -0.253468 -0.539595 -0.099599 -0.065599 -0.450088 -0.067046 0.443880 -0.173751 0.262345 -0.455227 0.144023 -0.542170 0.110918 0.664133 -0.118851 -0.538186 0.542412 0.115070 1.473798 0.093749 0.648902 -0.102007 0.553980 -0.245659 -0.787276 -0.328943 0.950461 0.476697 0.045977 0.189916 0.073018 0.416272 0.522101 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = -1.082252 0.372134 3.639421 0.659352 -1.898151 -3.152623 -1.311144 -5.599485 2.445959 0.908815 3.310736 -0.028143 1.690087 -1.505269 0.205393 1.495750 1.662511 -1.650404 0.757097 -1.443445 0.001813 3.162593 0.548694 0.018526 0.735262 -3.563634 1.279646 0.538691 1.773425 1.739071 1.232512 -0.052821 -0.978444 1.370425 0.993951 2.356715 1.530945 0.917395 -1.846338 0.314795 -0.571780 -1.145718 1.615915 0.132642 3.939293 -0.193906 1.909383 0.686233 -1.787058 -0.998886 -1.997888 3.363054 -2.587979 0.501086 0.101022 -0.875188 -0.159173 -1.349621 -0.974860 -1.795405 -1.253546 -1.549407 -1.631938 0.592172 -1.633094 1.583311 -0.947773 -0.350501 -0.564285 0.166662 2.127409 1.350479 0.899051 2.347172 -3.446089 0.365087 0.410412 1.073290 1.902575 -0.752131 0.042643 -0.452227 -1.194783 -2.237765 3.035202 1.800538 0.907180 0.092677 -1.458728 1.110342 -1.487682 -0.760442 0.626905 1.442710 -2.964605 -0.269262 0.305412 -1.054658 -1.615481 -2.923569 0.666636 -1.628082 0.837906 0.445858 -0.099328 -0.250566 -2.107911 0.528067 -2.298198 -1.940207 0.956681 -1.244166 -0.109080 3.104067 -1.955133 0.151626 -1.573338 -0.231946 0.263547 1.763366 0.497947 1.690106 1.854317 2.995410 1.242456 -1.785886 -1.587829 1.295652 2.602999 1.416129 1.090151 -2.238611 -1.641874 0.610832 -0.997994 -3.579226 -1.586090 1.523057 2.327831 0.681256 -1.499606 -0.423110 -0.765171 2.746217 2.095071 0.272577 0.049204 0.667573 -2.509671 2.145155 3.764992 -0.980889 2.394325 -0.685891 0.836725 1.641905 -2.620687 0.923905 0.842615 -0.256061 -0.891212 -1.151591 -1.430899 1.733682 1.743928 0.967519 -0.804942 1.571812 -1.119390 -3.615559 -3.869772 -0.745469 3.656142 -0.404904 2.254890 -2.402868 -1.649510 -0.242426 2.795001 0.286482 -1.760981 0.820703 -2.285977 1.747359 -2.600447 -3.190820 4.911955 4.345595 1.979897 0.697902 1.719249 2.692365 -4.304964 -1.123361 -0.547648 1.343650 -0.577043 -4.283203 -1.863526 0.380478 -2.923366 -2.197156 -0.536182 1.291792 0.252280 1.599183 2.239826 1.473487 -0.622287 -0.581352 1.120471 -0.988385 -2.249210 0.014905 0.220133 1.288225 1.146742 -1.582127 1.041969 1.686370 -2.326406 0.197936 1.458393 1.564837 0.842850 3.664170 3.591815 -0.018172 2.361075 -0.273920 -1.609917 1.660624 0.079435 1.268039 0.178170 -0.356737 0.608403 0.426233 1.911890 -1.407992 -2.074860 -2.546557 -0.630111 0.463036 2.595825 0.361263 -3.528844 -2.994563 0.021514 1.876391 1.953637 -0.477070 3.983440 -0.888269 0.628559 -4.742943 0.189442 1.797969 -0.330304 1.547058 0.830408 -1.413595 -2.254538 -0.989016 -2.345012 -2.520816 -0.979192 -0.936723 -1.370362 -2.125902 3.571329 -1.890855 -0.323898 1.034960 0.969119 2.654223 0.572576 0.063739 -2.030003 0.932965 2.018480 0.170358 -2.016826 2.670363 0.353610 6.272651 -0.986445 0.639908 -0.860981 1.042440 -0.227884 -1.361170 -0.217388 3.549353 3.117833 0.431561 -0.582679 -0.635032 -0.429731 2.074975 -PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = 0.019261 0.125719 0.697693 0.244655 -0.381549 -0.984008 -0.276483 -1.248286 0.564040 0.266194 0.626788 0.049101 0.574514 -0.323231 -0.099420 0.148194 0.278019 -0.156773 0.089152 -0.385521 -0.372968 0.917838 -0.038014 -0.078054 0.089555 -0.851121 0.740324 0.278934 0.380295 0.729703 0.227071 0.041829 -0.206766 0.358759 -0.144308 0.293417 0.045703 0.355723 -0.296691 0.069280 0.150895 -0.080367 0.570264 0.148065 0.638411 0.372838 0.164193 0.221798 -0.130527 -0.342256 -0.185363 0.166384 -0.443518 0.230393 -0.420491 -0.123336 0.177086 -0.170645 0.003879 -0.254610 -0.006969 -0.208904 -0.508496 0.113550 -0.585596 0.165317 -0.285387 -0.480311 -0.199323 -0.247974 0.414378 0.144886 -0.098490 -0.062659 -1.005884 -0.058101 0.118337 0.107930 0.514022 -0.035010 -0.232402 -0.243152 -0.602462 -0.552413 0.636262 0.517029 0.204931 0.350966 -0.317020 -0.271141 -0.162805 0.021075 0.491179 0.423509 -0.203241 -0.044859 -0.071881 -0.120600 -0.283979 -0.733223 0.340108 -0.251372 0.298637 0.012630 -0.042943 -0.058567 0.040137 0.055102 -0.345141 -0.449617 0.128577 -0.488479 0.232890 0.819651 -0.106058 -0.275010 -0.434233 -0.293413 0.113751 0.531650 0.265750 0.002177 0.669725 0.490561 0.224084 -0.620846 -0.453686 0.377824 0.287823 0.297428 0.205957 -0.591646 -0.359326 0.169968 -0.424327 -0.942869 -0.263090 0.095463 0.392934 -0.446189 -0.218060 0.547277 -0.372714 0.203725 0.594690 0.112581 0.193596 0.052432 -0.555434 0.398552 0.910900 -0.089846 0.348335 -0.446670 -0.358583 0.621490 -0.252872 0.159254 0.104284 -0.305551 -0.334600 -0.113567 0.302476 0.494728 -0.058453 0.315990 0.096854 0.340881 -0.428232 -0.563448 -0.798278 -0.023659 0.952569 0.310827 0.943238 -0.682359 -0.051074 0.042563 0.617008 0.118244 -0.200318 0.261984 -0.393327 0.418839 -1.010854 -0.749103 0.996781 0.682023 0.614780 -0.031938 0.250908 0.387456 -0.280779 -0.291249 -0.220845 0.234062 0.158551 -0.747385 -0.203001 0.054048 -0.665510 -0.345722 -0.015209 0.318789 0.228489 -0.051821 0.315055 -0.459794 -0.178918 -0.614173 0.371947 -0.308987 -0.062193 0.040084 0.024373 -0.136545 0.175220 -0.147813 0.146009 0.156283 -0.151109 0.263876 0.282927 0.171602 0.026646 0.779734 0.747426 -0.448300 0.221643 -0.060247 -0.141214 0.866095 -0.180152 0.307038 0.196132 0.489885 0.215818 0.149598 0.497809 -0.330753 -0.148299 -0.633186 -0.171881 0.463158 0.312173 -0.131768 -0.385846 -0.975607 -0.049484 -0.130124 0.942045 -0.038959 0.968685 -0.227964 0.324744 -0.814748 0.149707 0.272765 -0.127783 0.369493 0.230780 -0.369245 -0.297770 -0.235069 -0.606610 -0.536130 -0.219382 -0.312140 -0.389353 -0.149318 0.090199 -0.392292 -0.012523 0.435696 -0.108507 0.283689 -0.429776 0.123886 -0.462734 0.081608 0.390689 -0.071299 -0.446285 0.375543 0.075442 1.155655 0.017409 0.520990 -0.124459 0.498121 -0.256790 -0.665467 -0.264895 0.771080 0.395724 0.049391 0.149823 0.019710 0.254746 0.419296 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.090541 0.270732 0.382123 0.062679 -0.315466 -0.697609 -0.175381 -0.799082 0.100092 0.148167 0.430384 -0.159643 0.334429 0.026885 -0.045459 0.096590 0.134505 -0.008436 0.139176 -0.243890 -0.642856 0.301227 -0.146141 0.172597 0.085465 -0.241432 0.662620 0.190336 0.046219 0.369869 0.146257 0.037409 -0.143637 0.239262 -0.025189 0.155722 -0.028598 0.365064 0.027615 0.225485 0.110331 -0.299313 0.330912 0.144577 0.207571 0.572979 0.010516 0.198350 -0.149019 -0.183000 -0.051775 -0.120389 -0.345228 0.087492 -0.383851 -0.212666 0.230130 -0.038068 0.073797 -0.012609 -0.025914 -0.376607 -0.374609 0.123966 -0.428218 0.070501 -0.301221 -0.456532 -0.127981 0.014438 0.220865 0.051269 -0.205089 0.151712 -0.510657 -0.068533 0.214828 0.023958 0.323629 -0.204539 -0.050254 -0.065157 -0.534084 -0.423892 0.457082 0.218654 0.353688 0.138084 -0.201995 -0.131800 -0.005980 0.101386 0.418499 0.374249 0.144041 0.008946 -0.176980 -0.103793 -0.424102 -0.779036 0.245323 -0.161941 0.295695 0.023800 -0.219568 -0.130755 -0.054089 0.067478 -0.161684 -0.440494 -0.069207 -0.500227 0.287880 0.403014 0.010859 -0.214273 -0.241517 -0.336720 0.235701 0.235475 0.352101 -0.147173 0.500016 0.267616 0.085598 -0.379033 -0.427422 0.006252 0.005580 0.193056 0.148528 -0.402204 -0.283291 0.110825 -0.437270 -0.580132 -0.104166 -0.049903 0.137723 -0.479924 -0.083529 0.529055 -0.344637 -0.149012 0.396809 0.285471 0.098383 -0.011768 -0.245798 0.161933 0.342403 -0.101344 0.237410 -0.200958 -0.275847 0.353059 0.012560 -0.037041 0.211742 -0.260855 -0.306735 -0.033718 0.133061 0.315387 0.006058 0.177774 0.272937 0.179688 -0.400021 -0.183428 -0.317058 0.192485 0.805297 0.145888 0.464828 -0.528981 0.079137 0.234108 0.434934 0.085421 -0.148311 0.072518 -0.039913 0.255097 -0.514843 -0.442284 0.345083 0.040165 0.338773 -0.101771 -0.049044 0.183529 -0.213028 -0.242939 -0.280263 0.189503 -0.066910 -0.457176 -0.281248 0.041994 -0.397820 0.071377 -0.049378 0.289960 0.236938 -0.109971 0.073841 -0.416465 -0.072734 -0.404504 0.161207 -0.139858 0.011338 0.071115 -0.067052 -0.074580 0.013176 -0.008718 0.060589 -0.060783 -0.132139 0.199067 0.225129 0.065586 -0.048405 0.828792 0.334281 -0.414461 -0.165620 -0.073859 0.009726 0.402279 -0.054967 0.270448 0.161136 0.538835 0.062300 0.084745 0.590681 -0.182740 -0.309443 -0.432009 -0.288429 0.361225 0.093126 0.108425 0.017793 -0.790326 0.005759 -0.114674 0.837602 -0.037270 0.481230 0.093022 0.286621 -0.145508 0.101450 -0.033548 -0.238703 0.242282 0.105136 -0.233549 0.092417 -0.188374 -0.438035 -0.484187 -0.067883 0.043747 -0.268599 0.133641 -0.391940 -0.056202 -0.108845 0.070545 -0.060375 -0.047739 -0.160095 0.060685 -0.185899 0.068200 0.622658 -0.180705 -0.299568 0.266331 0.179211 0.789273 0.203668 0.320131 -0.001718 0.050033 0.035598 -0.236113 -0.212297 0.454239 0.200976 0.090678 0.119783 0.175531 0.325008 0.253197 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = -0.396132 0.096290 1.631455 0.726667 -1.168485 -1.706439 -0.731830 -2.453816 1.083232 0.419217 1.444885 0.145914 0.821365 -0.781828 -0.037684 -0.033734 0.506789 -0.615846 0.164091 -0.743234 -0.549247 1.555259 0.264030 -0.590984 0.191200 -1.804264 1.397795 0.620216 0.618259 1.257430 0.312055 -0.107414 -0.709255 0.849972 -0.118413 0.568164 0.455645 0.555762 -0.549938 0.074588 0.463278 0.038077 1.177530 -0.132545 1.536476 0.454759 0.439154 0.466192 -0.907585 -0.636635 -0.236590 0.604163 -1.090243 0.567953 -0.137720 -0.072429 0.175808 -0.737939 -0.279370 -0.942671 -0.057842 -0.536202 -0.752701 0.229642 -0.999796 0.385005 -0.272878 -0.804717 0.159688 -0.433270 0.906895 0.352163 0.039014 0.202384 -1.409061 0.092077 0.351200 0.462085 0.892734 -0.184674 -0.225275 -0.313346 -0.914558 -0.964730 0.779670 0.812503 0.430797 0.269434 -0.452585 -0.094700 0.048728 -0.183564 0.581915 0.802880 -0.680521 -0.211208 -0.274150 -0.336690 -0.749443 -1.289755 0.468524 -0.621849 0.715634 0.491500 -0.637439 -0.139218 -0.120354 0.216081 -0.849104 -0.981708 0.230908 -0.833880 0.716269 1.580449 -0.463330 -0.394587 -0.778190 -0.531420 0.220086 0.951328 0.301970 0.241763 1.347509 1.412749 0.484034 -1.260087 -0.957589 0.554210 0.882170 0.789543 0.552352 -1.286772 -0.671689 0.244023 -0.695481 -1.862935 -0.458168 0.024757 0.992911 -0.329873 -0.738758 0.665425 -0.753383 1.035054 0.993081 0.382018 0.194513 0.161045 -1.246781 1.097549 1.769403 -0.195892 0.805415 -0.669246 -0.631337 1.134401 -0.660002 0.462187 0.436694 -0.394426 -0.454403 -0.510961 0.174848 0.972751 0.203903 0.744294 0.009626 0.676111 -0.603750 -1.550301 -1.735122 0.088585 1.783434 0.485800 1.884316 -1.447388 -0.507086 -0.089694 1.493000 0.170353 -0.645884 0.422631 -0.794111 0.891784 -1.707831 -1.617329 2.108521 1.879310 0.956189 0.167808 0.916665 0.741326 -0.968314 -0.464110 -0.534963 0.529779 0.255095 -1.286164 -0.328291 0.233919 -1.274732 -0.828182 0.060016 0.640365 0.601836 -0.261016 0.221945 -0.074595 -0.520916 -1.002788 0.765420 -0.695186 -0.346336 0.139054 0.047734 0.172037 0.513975 -0.430781 0.079789 0.200897 -0.548999 0.471589 0.658357 0.701938 0.205690 1.558288 1.411210 -0.593152 0.766579 0.090139 -0.396527 1.824271 -0.407947 0.594885 0.477556 0.719259 0.385063 0.296868 1.001810 -0.720581 -0.242429 -1.294025 -0.154490 0.506804 0.920949 -0.950950 -1.130814 -1.932895 -0.155737 0.251888 1.271414 -0.134658 2.118705 -0.292082 0.377363 -2.098825 -0.021847 0.743387 -0.106023 0.855743 0.422823 -0.768888 -1.389346 -0.469011 -1.170998 -0.720865 -0.490930 -0.477301 -0.758683 -0.450876 0.837682 -0.499548 0.058249 1.040458 -0.115536 0.702092 -0.443210 0.142726 -0.739812 -0.159395 0.523498 0.005189 -1.015221 1.276079 0.177393 2.722269 -0.135368 0.776202 -0.401963 0.849684 -0.298148 -1.074732 -0.353701 1.562188 0.973024 0.304180 0.017872 0.034742 -0.101383 0.975315 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::~allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::~new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >&>::type&& std::move >&>(std::vector >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(std::vector >&&) = -0.275624 0.045667 0.884089 0.202183 -0.629621 -0.897811 -0.366093 -1.441240 0.690945 0.417296 0.812308 0.184720 0.713634 -0.472123 -0.152536 -0.115888 0.389929 -0.390769 0.237799 -0.434495 -0.260235 1.052587 0.052887 0.031307 0.038193 -1.042860 1.008993 0.021391 0.480766 1.017231 0.301818 -0.040010 -0.529161 0.377566 0.181901 0.418578 0.201804 0.462484 -0.272839 0.050570 0.199749 -0.378500 0.647282 0.104400 0.864072 0.180116 -0.070909 0.201135 -0.313589 -0.521739 -0.074923 -0.115491 -0.731813 0.253685 -0.141375 -0.278398 0.058214 -0.003862 -0.024974 -0.470937 -0.014841 -0.645861 -0.355727 0.241392 -0.649498 0.273818 -0.640409 -0.411517 -0.284270 -0.515875 0.442007 0.284291 0.259891 0.271988 -1.148599 0.015682 0.100913 0.096709 0.612984 0.140056 -0.348034 -0.331299 -0.632229 -0.696825 0.497683 0.646267 0.065272 0.232351 -0.422321 -0.023054 -0.055452 0.056090 0.486421 0.488261 -0.416420 -0.076308 -0.289831 -0.115463 -0.057138 -1.145187 0.306555 -0.392923 0.340740 0.178034 -0.394921 -0.258060 -0.176735 0.037073 -0.440483 -0.538512 0.349193 -0.531410 0.224472 0.954067 -0.277182 -0.245821 -0.653628 -0.287204 0.396401 0.509729 0.250271 0.155105 0.552567 0.618919 0.421171 -0.789534 -0.505472 0.651756 0.396387 0.192109 0.177870 -0.579418 -0.365521 0.287407 -0.488486 -1.033654 -0.408262 0.105542 0.501990 -0.333540 -0.133657 0.274240 -0.529316 0.301605 0.800821 0.233415 0.203160 0.152003 -0.705244 0.476604 0.885976 -0.067818 0.404830 -0.308732 -0.351851 0.813233 -0.417635 0.286425 -0.029135 -0.090449 -0.389923 -0.274967 0.164344 0.582132 -0.062526 0.542721 -0.131362 0.397356 -0.396063 -0.793522 -0.932372 -0.051771 1.417179 0.512666 0.760863 -0.843785 0.061935 0.221208 0.806212 0.466197 -0.444343 0.332770 -0.305493 0.506170 -1.333144 -0.913286 1.160638 0.974861 0.590384 -0.002583 0.080352 0.543025 -0.579408 -0.366028 -0.422962 0.314519 -0.175231 -0.932885 -0.347853 0.189955 -0.732669 -0.474098 0.126452 0.355589 0.590949 -0.202106 0.339510 -0.079440 0.071362 -0.713203 0.700179 -0.269350 -0.387351 -0.018836 0.073226 0.113943 0.207175 -0.088679 0.244111 0.264851 -0.158463 0.240409 0.400203 0.157892 -0.070850 0.921088 0.776192 -0.525992 -0.262323 -0.105222 -0.193027 1.078764 -0.323806 0.330967 0.228781 0.396307 0.306843 0.174182 0.631423 -0.443746 -0.291476 -0.695624 -0.370493 0.323537 0.543467 -0.394207 -0.850296 -1.085290 0.229809 -0.087275 0.880087 0.045660 1.252916 -0.258050 0.304333 -0.853395 0.095406 0.541525 -0.122824 0.653700 0.222532 -0.330261 -0.235892 -0.378075 -0.745192 -0.248912 -0.260932 -0.239118 -0.322113 -0.145118 0.332102 -0.253651 -0.051132 0.249150 -0.150708 0.608365 -0.169163 0.078348 -0.726768 0.188376 0.214893 -0.029186 -0.482985 0.791170 0.153605 1.182608 -0.084944 0.280239 -0.031537 0.636593 -0.389745 -0.775185 -0.235231 0.930500 0.559914 0.254523 -0.060774 -0.054491 0.177773 0.380130 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::vector >::insert(__gnu_cxx::__normal_iterator > >, int*, int*) = -0.417720 -0.119254 3.463744 0.563452 -2.156497 -5.317674 -2.012079 -8.188885 3.275617 1.739988 4.639054 -0.023723 2.844162 -1.817933 0.318139 2.529005 1.508003 -2.664710 1.087905 -2.081899 -2.047525 6.073968 0.384954 1.433592 0.081004 -4.884899 2.355170 1.181100 2.298857 2.644753 1.462514 -0.360540 -0.630551 1.639940 -0.120104 3.399757 0.510650 1.835232 -1.549239 0.507999 0.164919 -1.657406 3.026632 -0.277512 4.587770 0.259236 3.112234 1.004685 -1.335311 -2.065290 -2.227516 3.380965 -3.362255 0.436523 -1.299176 -1.485091 0.515210 -1.269645 -1.333821 -0.591637 -1.621549 -1.852957 -3.344983 0.944672 -2.311531 1.898144 -1.760796 -1.330997 -0.708598 0.038055 3.012487 1.479967 -0.109895 1.802874 -5.494943 0.151525 0.569407 0.476938 2.104921 -0.831808 -0.550193 -0.740449 -2.829752 -3.074260 4.775854 3.193796 1.161990 0.341608 -2.603903 0.969239 -1.959152 -0.246926 2.153617 2.129596 -2.618370 -0.559702 0.840212 -1.317214 -2.961611 -4.116372 1.429790 -2.062629 1.674965 0.321064 0.300605 -0.816941 -1.696332 -0.245126 -3.441366 -3.655793 0.068197 -2.263772 1.057166 4.322607 -2.225898 0.006027 -2.343283 -0.918662 0.178091 2.102409 2.334233 1.147096 4.382527 3.427565 1.244562 -3.199692 -3.010328 1.620634 3.315637 1.683036 0.952393 -3.128968 -2.333637 1.008566 -1.841426 -5.312003 -2.407767 2.170344 2.414343 -1.150464 -0.810113 1.769641 -0.840789 2.775663 3.804106 -0.031832 0.427632 0.625699 -3.178948 2.968437 5.222805 -0.750911 2.963956 -2.377344 -0.738683 4.002040 -3.331289 0.899981 2.212022 -0.576385 -2.848832 -1.369036 0.162309 2.324707 0.878538 2.040044 -0.545413 2.347826 -1.539726 -3.507392 -5.180311 -0.051016 5.097268 0.885938 4.325753 -3.702029 -1.439914 1.110775 3.121611 0.828090 -2.500418 1.605309 -3.014357 2.342562 -4.919112 -4.303919 6.408038 4.629063 3.625620 0.857762 2.522306 3.633447 -4.363158 -1.165985 -1.301903 2.657809 0.703025 -6.180176 -1.418177 0.472344 -3.941018 -2.507797 -1.505427 1.937042 0.015483 1.119801 2.832852 -1.094505 -1.224322 -1.136839 2.428795 -1.495481 -1.760237 -0.504964 0.154035 0.035367 1.272324 -1.392755 2.055092 0.907980 -2.446699 1.374010 2.331344 1.178211 0.957165 5.387570 5.438937 -2.107814 3.098123 -1.163549 -0.603157 1.793292 -0.497918 1.308523 0.473799 1.567523 0.750246 0.561877 3.075812 -1.689604 -2.531904 -2.931555 -0.254119 2.076122 2.441515 1.127976 -3.188305 -5.594261 -0.572113 1.173457 4.996038 -0.218514 5.127331 -1.618694 1.889747 -5.970518 0.782827 0.653567 -0.276560 2.109958 0.653446 -1.513918 -1.005649 -1.555531 -3.053568 -4.382143 -0.868575 -1.940354 -2.249131 -3.137831 2.583879 -3.215911 -0.785523 1.132824 0.347405 2.498485 -0.356544 0.105488 -3.057728 1.732414 3.184462 -0.202206 -2.381892 3.034523 0.233313 8.440985 -0.754662 2.148732 -0.818838 2.680221 -1.047458 -3.038428 -0.368752 4.255826 3.636570 -0.390725 -0.280067 -0.357189 0.960278 2.201847 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(__gnu_cxx::__normal_iterator::__value, std::vector > >::__type> const&) = -0.183919 -0.047073 0.848814 0.488081 -0.542475 -1.334841 -0.404836 -1.694601 0.840286 0.367969 1.021487 0.126200 0.821411 -0.626843 -0.019298 0.243597 0.447891 -0.331683 0.116480 -0.492470 -0.407395 1.458800 0.121395 -0.161647 0.062781 -1.032014 0.839827 0.358166 0.483943 0.945082 0.317657 0.036198 -0.218566 0.408141 -0.189829 0.578385 -0.010517 0.479225 -0.388581 -0.098484 0.224994 -0.306473 0.796728 0.064852 0.991748 0.172312 0.551053 0.192161 -0.337877 -0.530307 -0.446499 0.458129 -0.744007 0.266413 -0.493483 -0.248283 0.325310 -0.188388 -0.144995 -0.579077 -0.084459 -0.357706 -0.779499 0.105935 -0.697653 0.359613 -0.353999 -0.507954 -0.211426 -0.258747 0.643059 0.275319 -0.034517 0.019602 -1.348374 -0.057374 0.114022 0.114442 0.633426 0.072734 -0.273621 -0.391264 -0.733147 -0.690219 1.036824 0.520919 0.248666 0.428432 -0.533569 -0.095468 -0.283991 0.025646 0.569622 0.449417 -0.436347 -0.046339 0.198994 -0.190281 -0.351585 -0.868458 0.417379 -0.435691 0.312502 0.208307 -0.011867 -0.063044 -0.187907 0.038509 -0.723759 -0.787104 0.178702 -0.613903 0.117170 1.007324 -0.385417 -0.213799 -0.521647 -0.211899 0.164833 0.676510 0.399748 0.251333 0.873698 0.726468 0.303139 -0.852875 -0.554632 0.539733 0.684672 0.400501 0.193005 -0.687140 -0.537317 0.268166 -0.547269 -1.293432 -0.521022 0.467330 0.663760 -0.296408 -0.457087 0.696842 -0.341404 0.508238 0.889234 0.115218 0.191014 0.174991 -0.834227 0.620636 1.232616 -0.173185 0.590577 -0.469616 -0.417850 1.003369 -0.533453 0.179761 0.242476 -0.294007 -0.447196 -0.252100 0.256674 0.653771 0.081439 0.467636 -0.064437 0.540251 -0.494233 -0.949608 -1.232199 -0.077408 1.323336 0.491697 1.290989 -0.908476 -0.191819 0.160945 0.725067 0.070683 -0.466564 0.323605 -0.644621 0.598522 -1.597602 -1.110348 1.601290 0.942431 0.870030 0.146937 0.480774 0.702227 -0.517635 -0.277417 -0.343105 0.460062 0.305232 -1.089237 -0.213463 0.069193 -1.001211 -0.649833 -0.081189 0.397076 0.083851 -0.075259 0.507404 -0.527004 -0.237641 -0.532464 0.529630 -0.475083 -0.236225 -0.081277 0.009735 -0.024442 0.252898 -0.202645 0.350316 0.149636 -0.377004 0.237414 0.340609 0.309805 0.216876 1.160776 1.319995 -0.614673 0.447135 -0.153419 -0.283363 1.059351 -0.273145 0.318890 0.151106 0.624216 0.413918 0.153033 0.743457 -0.439378 -0.278029 -0.853320 -0.168570 0.681942 0.567622 -0.294805 -0.626790 -1.371212 -0.072489 0.009214 1.255928 -0.135791 1.371797 -0.502469 0.368583 -1.383212 0.186867 0.409844 -0.115106 0.513160 0.253238 -0.430989 -0.511377 -0.369119 -0.749369 -0.633273 -0.313122 -0.463618 -0.514903 -0.463282 0.368972 -0.754532 -0.027428 0.503529 -0.108967 0.563466 -0.351976 0.107339 -0.662451 0.249598 0.385207 0.037274 -0.620811 0.711345 0.075258 1.780521 -0.087305 0.616348 -0.284685 0.848789 -0.483454 -0.885558 -0.236396 1.047269 0.811720 -0.043396 0.196222 0.064925 0.235262 0.596769 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::make_heap<__gnu_cxx::__normal_iterator > >, std::greater >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::greater) = -0.499474 -0.006889 2.368378 -0.841863 -1.092744 -2.322896 -1.164129 -4.903302 1.794967 1.411079 2.831304 -0.089015 1.735476 -0.732325 0.140344 1.081402 0.958552 -2.071233 1.042634 -1.182722 -0.424377 2.858508 -0.112637 1.814008 0.111293 -3.366432 1.272508 -0.017448 1.315445 1.655589 0.984728 -0.373630 -1.090710 0.726138 0.730384 2.117831 1.327868 0.950398 -0.800976 0.635854 -0.325261 -0.880352 1.351076 -0.159809 2.899969 0.085294 0.475382 0.662859 -0.560641 -1.459718 -0.383612 1.182812 -1.826822 0.149002 0.127414 -1.066898 -0.510430 -0.522223 -0.671863 -0.060445 -0.811738 -1.549978 -1.130803 0.933930 -1.014280 1.098143 -1.456358 -0.288978 -0.569395 -0.790427 1.446933 0.733009 0.498175 1.988505 -2.993810 0.217001 0.303873 0.067641 1.092282 -0.625455 -0.498670 -0.335061 -1.415576 -1.929270 2.069286 2.812077 0.307976 -0.198945 -1.789693 1.085285 -0.942259 -0.276723 1.209350 1.383823 -1.818927 -0.708119 -0.110538 -0.865366 -1.219745 -2.961665 0.791694 -1.183198 1.021964 0.052878 -0.260461 -0.898044 -1.231153 0.066255 -1.717049 -1.551709 0.672011 -1.053099 0.848467 2.650914 -1.402427 0.018304 -2.081081 -0.740373 0.588384 0.962764 1.069931 0.583478 1.995885 1.868463 1.100728 -1.819606 -1.920344 1.452103 1.746771 0.519215 0.374579 -1.945182 -0.974662 0.799810 -1.411657 -2.741078 -1.658761 0.450039 1.366202 -0.845601 0.192253 0.140827 -0.818844 1.434655 2.252285 0.008512 0.125166 0.476823 -1.829576 1.400322 2.443476 -0.370530 1.602547 -1.115991 0.026177 1.440824 -1.795537 0.755791 1.052487 0.176063 -1.710557 -0.865951 -0.163003 1.230356 0.591640 1.735807 -1.099262 1.354251 -0.800343 -1.680850 -2.929952 -0.315958 3.097787 0.276920 1.376767 -2.029555 -0.750256 0.544363 2.435241 1.183151 -1.729049 1.113199 -1.391261 1.148865 -2.021116 -2.064297 3.162038 3.493099 2.100183 0.165867 0.928913 1.953082 -3.320761 -0.639603 -0.733561 1.452754 -0.673836 -4.066013 -1.187470 0.478747 -1.882809 -1.383956 -0.913712 1.131719 0.578125 1.063060 1.972863 0.666201 -0.040326 -0.660217 1.817491 -0.266664 -1.513729 -0.381451 0.280879 0.369610 0.723127 -1.136199 1.221179 1.311192 -1.393810 0.892218 1.821765 0.352373 0.161829 2.899952 2.079035 -0.920815 0.833322 -1.026354 -0.324813 0.494109 -0.209926 0.767279 0.229383 0.063767 0.256796 0.311518 1.471607 -1.007324 -1.832529 -1.439867 -0.685941 0.479031 1.627184 1.303561 -2.854520 -2.795080 0.339704 0.476029 2.521314 0.340104 2.919672 -0.496515 1.238902 -2.685940 0.360699 0.512141 -0.271079 1.173185 0.162818 -0.656632 -0.339872 -0.718068 -2.173165 -2.807563 -0.299867 -0.873011 -1.033009 -1.909187 2.215327 -1.024281 -0.720178 0.008263 0.567462 1.834686 0.468123 -0.100320 -2.153171 1.240800 1.668069 -0.368854 -1.254940 1.736546 0.447714 4.202072 -0.656264 0.669057 0.100516 1.307613 -0.561192 -1.649232 -0.168277 2.300763 2.121371 0.393829 -0.977952 -0.707858 0.375655 0.873554 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::_Vector_base >&&) = -0.130909 0.053650 0.869596 0.146884 -0.432204 -1.312299 -0.392231 -1.699575 0.685332 0.349615 1.028889 0.005472 0.741281 -0.425425 0.100738 0.454604 0.442794 -0.411398 0.171924 -0.498550 -0.314656 1.167471 0.060976 0.131282 0.092024 -0.984704 0.498441 0.369019 0.427468 0.720273 0.323479 -0.036996 -0.231830 0.369823 -0.134406 0.629715 0.243557 0.385486 -0.437107 0.068759 -0.048647 -0.204516 0.676152 0.007725 1.001224 0.242248 0.513457 0.288123 -0.309231 -0.507286 -0.373430 0.675283 -0.653338 0.202281 -0.327289 -0.268659 0.161625 -0.239164 -0.176116 -0.414152 -0.178531 -0.302106 -0.672679 0.152474 -0.543802 0.344750 -0.286673 -0.442966 -0.185427 -0.151352 0.613970 0.224669 -0.041249 0.317362 -1.186920 -0.030337 0.149337 0.169385 0.544388 -0.172648 -0.160962 -0.280841 -0.593919 -0.670322 0.977311 0.632409 0.330269 0.321581 -0.634407 0.091506 -0.332875 -0.065218 0.530339 0.408943 -0.451564 -0.120135 0.235715 -0.257174 -0.553378 -0.889105 0.376607 -0.359443 0.315825 0.057564 0.171145 -0.141278 -0.456232 0.080927 -0.763957 -0.684446 0.212318 -0.522431 0.087294 0.942321 -0.484497 -0.073153 -0.498960 -0.230831 0.099798 0.607402 0.412830 0.214828 0.736776 0.734205 0.263641 -0.747628 -0.615297 0.356499 0.746074 0.413593 0.253440 -0.699163 -0.511860 0.276162 -0.654079 -1.203051 -0.497273 0.419926 0.628251 -0.230677 -0.362850 0.503507 -0.338237 0.542809 0.776721 0.114360 0.119369 0.093801 -0.773604 0.565669 1.070996 -0.246663 0.719535 -0.354624 -0.172999 0.667000 -0.552740 0.186484 0.398607 -0.321806 -0.482405 -0.178631 0.055715 0.566759 0.349378 0.503140 -0.165380 0.518889 -0.508792 -0.831027 -1.170068 -0.095382 1.159142 0.165307 0.991693 -0.803462 -0.383165 0.088371 0.815878 -0.042366 -0.535647 0.300444 -0.633900 0.533484 -1.142576 -0.926347 1.484213 1.096255 0.889414 0.115581 0.506217 0.706899 -0.821746 -0.245102 -0.183402 0.424403 0.083796 -1.335121 -0.357648 0.075856 -0.915390 -0.526887 -0.246547 0.443239 -0.081591 0.299921 0.647131 -0.237424 -0.237569 -0.305982 0.358552 -0.334641 -0.279807 -0.032506 0.033099 0.046943 0.226080 -0.390383 0.328441 0.340527 -0.582249 0.260738 0.412152 0.351577 0.313640 1.244533 1.066270 -0.413471 0.681831 -0.229262 -0.311490 0.631567 -0.151538 0.378611 0.086599 0.476801 0.259228 0.108304 0.675183 -0.398281 -0.457571 -0.761431 -0.249893 0.582613 0.572463 0.194763 -0.775270 -1.220816 -0.032223 0.117509 1.166201 -0.176038 1.175495 -0.347153 0.430010 -1.272700 0.198450 0.203166 -0.163868 0.342693 0.223663 -0.392734 -0.537662 -0.285256 -0.800941 -1.003078 -0.199351 -0.414359 -0.406406 -0.586848 0.527465 -0.690351 -0.154345 0.329410 0.058097 0.578227 -0.107258 0.056250 -0.610565 0.315518 0.655243 -0.066881 -0.593781 0.604958 0.159811 1.859333 -0.060386 0.549188 -0.195331 0.583477 -0.224726 -0.667866 -0.210328 0.985217 0.868325 -0.017594 0.053302 0.002852 0.220472 0.523617 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::_Vector_base >::_Vector_impl&&) = -0.342592 -0.078894 1.481129 0.231469 -0.989323 -1.189917 -0.552194 -2.628891 1.451269 0.729276 1.251687 0.463735 1.131146 -1.018969 -0.310463 -0.006621 0.648586 -0.752151 0.434201 -0.633751 0.065232 2.050085 -0.021520 0.226949 -0.017924 -2.015259 1.250798 -0.132351 1.284016 1.490199 0.543046 -0.247106 -0.922666 0.477142 0.441929 0.749763 0.454596 0.580417 -0.906283 -0.095271 0.039778 -0.662042 0.992408 -0.051774 1.609572 -0.504891 0.071468 0.248756 -0.328114 -0.768762 -0.279339 0.271038 -1.049326 0.425807 0.176650 -0.637341 -0.300070 0.133684 -0.152052 -0.407476 -0.193740 -1.016514 -0.392647 0.393166 -0.907769 0.501287 -1.117054 -0.365783 -0.454755 -0.918495 0.728783 0.589273 0.787275 0.496417 -2.214743 0.126993 0.027923 0.187496 0.906241 0.557850 -0.299122 -0.595886 -0.804554 -1.046131 0.807539 1.464866 -0.248695 0.178130 -0.903951 0.143356 -0.225903 -0.041827 0.685534 0.615437 -1.247987 -0.139888 -0.752993 -0.153481 0.191696 -1.906001 0.367708 -0.688225 0.485349 0.005292 -0.414336 -0.298052 -0.077614 0.001227 -0.628686 -0.763651 0.674099 -0.499607 0.254914 1.862256 -0.541501 -0.335632 -1.165565 -0.223376 0.244790 0.623313 0.296810 0.513135 0.755189 1.012045 0.951333 -1.259724 -0.765001 1.472841 0.748600 0.291403 0.172812 -0.816253 -0.436845 0.486898 -0.453750 -1.752051 -0.805120 0.330246 0.889459 -0.343917 0.173166 -0.295873 -0.655499 0.861017 1.224335 -0.019330 0.356938 0.395677 -1.108468 0.842596 1.553754 -0.001028 0.580430 -0.604039 -0.237670 1.139329 -0.905253 0.650715 -0.295693 0.191594 -0.544793 -0.603490 0.137161 0.877431 -0.216019 0.831658 -0.652609 0.692901 -0.633641 -1.487913 -1.662104 -0.264202 2.092229 0.736412 0.966645 -1.176255 -0.158288 0.329760 1.210986 0.933318 -0.754477 0.831869 -0.873519 0.861339 -1.935192 -1.480912 2.032400 2.091867 0.878995 -0.008995 0.281304 1.025349 -1.504503 -0.673078 -0.610399 0.483741 -0.241336 -2.074857 -0.656850 0.366036 -1.166210 -0.980420 0.288235 0.440874 0.954489 0.096595 1.015682 0.254089 0.190462 -1.037875 1.606654 -0.327364 -0.764142 -0.158547 0.280358 0.274192 0.615163 -0.381923 0.513219 0.725506 -0.250305 0.414137 0.636973 0.160576 -0.262596 1.200205 1.354732 -0.548971 0.022680 -0.215748 -0.476408 1.596745 -0.550981 0.398077 0.264595 0.007433 0.294647 0.360153 0.706919 -0.793698 -0.563571 -1.012189 -0.631982 0.161925 1.042575 -0.411611 -1.853721 -1.411808 0.373794 -0.044902 0.899452 0.284736 2.052059 -0.782623 0.443873 -1.723999 0.120951 1.023881 -0.003757 1.293486 0.274875 -0.459139 -0.297666 -0.575418 -1.125014 -0.483128 -0.466820 -0.715747 -0.466430 -0.725930 1.282677 -0.512781 -0.089991 0.347600 -0.171351 1.438315 -0.403855 0.108197 -1.387865 0.526295 0.093471 0.051006 -0.762977 1.274213 0.120471 2.017003 -0.386146 0.177372 -0.083839 1.099253 -0.795470 -1.467267 -0.239517 1.499691 1.011787 0.491513 -0.509243 -0.401542 -0.028735 0.517389 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >::_Vector_impl&>::type&& std::move >::_Vector_impl&>(std::_Vector_base >::_Vector_impl&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator(std::allocator const&) = -0.275624 0.045667 0.884089 0.202183 -0.629621 -0.897811 -0.366093 -1.441240 0.690945 0.417296 0.812308 0.184720 0.713634 -0.472123 -0.152536 -0.115888 0.389929 -0.390769 0.237799 -0.434495 -0.260235 1.052587 0.052887 0.031307 0.038193 -1.042860 1.008993 0.021391 0.480766 1.017231 0.301818 -0.040010 -0.529161 0.377566 0.181901 0.418578 0.201804 0.462484 -0.272839 0.050570 0.199749 -0.378500 0.647282 0.104400 0.864072 0.180116 -0.070909 0.201135 -0.313589 -0.521739 -0.074923 -0.115491 -0.731813 0.253685 -0.141375 -0.278398 0.058214 -0.003862 -0.024974 -0.470937 -0.014841 -0.645861 -0.355727 0.241392 -0.649498 0.273818 -0.640409 -0.411517 -0.284270 -0.515875 0.442007 0.284291 0.259891 0.271988 -1.148599 0.015682 0.100913 0.096709 0.612984 0.140056 -0.348034 -0.331299 -0.632229 -0.696825 0.497683 0.646267 0.065272 0.232351 -0.422321 -0.023054 -0.055452 0.056090 0.486421 0.488261 -0.416420 -0.076308 -0.289831 -0.115463 -0.057138 -1.145187 0.306555 -0.392923 0.340740 0.178034 -0.394921 -0.258060 -0.176735 0.037073 -0.440483 -0.538512 0.349193 -0.531410 0.224472 0.954067 -0.277182 -0.245821 -0.653628 -0.287204 0.396401 0.509729 0.250271 0.155105 0.552567 0.618919 0.421171 -0.789534 -0.505472 0.651756 0.396387 0.192109 0.177870 -0.579418 -0.365521 0.287407 -0.488486 -1.033654 -0.408262 0.105542 0.501990 -0.333540 -0.133657 0.274240 -0.529316 0.301605 0.800821 0.233415 0.203160 0.152003 -0.705244 0.476604 0.885976 -0.067818 0.404830 -0.308732 -0.351851 0.813233 -0.417635 0.286425 -0.029135 -0.090449 -0.389923 -0.274967 0.164344 0.582132 -0.062526 0.542721 -0.131362 0.397356 -0.396063 -0.793522 -0.932372 -0.051771 1.417179 0.512666 0.760863 -0.843785 0.061935 0.221208 0.806212 0.466197 -0.444343 0.332770 -0.305493 0.506170 -1.333144 -0.913286 1.160638 0.974861 0.590384 -0.002583 0.080352 0.543025 -0.579408 -0.366028 -0.422962 0.314519 -0.175231 -0.932885 -0.347853 0.189955 -0.732669 -0.474098 0.126452 0.355589 0.590949 -0.202106 0.339510 -0.079440 0.071362 -0.713203 0.700179 -0.269350 -0.387351 -0.018836 0.073226 0.113943 0.207175 -0.088679 0.244111 0.264851 -0.158463 0.240409 0.400203 0.157892 -0.070850 0.921088 0.776192 -0.525992 -0.262323 -0.105222 -0.193027 1.078764 -0.323806 0.330967 0.228781 0.396307 0.306843 0.174182 0.631423 -0.443746 -0.291476 -0.695624 -0.370493 0.323537 0.543467 -0.394207 -0.850296 -1.085290 0.229809 -0.087275 0.880087 0.045660 1.252916 -0.258050 0.304333 -0.853395 0.095406 0.541525 -0.122824 0.653700 0.222532 -0.330261 -0.235892 -0.378075 -0.745192 -0.248912 -0.260932 -0.239118 -0.322113 -0.145118 0.332102 -0.253651 -0.051132 0.249150 -0.150708 0.608365 -0.169163 0.078348 -0.726768 0.188376 0.214893 -0.029186 -0.482985 0.791170 0.153605 1.182608 -0.084944 0.280239 -0.031537 0.636593 -0.389745 -0.775185 -0.235231 0.930500 0.559914 0.254523 -0.060774 -0.054491 0.177773 0.380130 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data(std::_Vector_base >::_Vector_impl_data&&) = -1.428568 -0.773844 2.167277 1.767808 -1.810449 -4.210870 -1.267304 -4.380259 2.416561 0.796536 3.304136 0.779757 2.294365 -2.250298 0.652382 1.131058 1.797880 -1.390082 0.075962 -1.595771 -0.488301 4.352200 1.354617 -0.953975 0.089113 -2.342083 1.104259 1.255002 1.112837 2.429469 0.985245 -0.056721 -0.608640 1.027849 -0.583953 2.200236 0.094670 0.956773 -1.493925 -0.666540 0.356316 -1.030225 2.511685 -0.304461 3.421303 -0.444329 2.869619 0.565001 -1.846570 -1.798085 -1.975305 2.722044 -2.514545 0.716624 -0.835467 -0.535737 1.081745 -0.676989 -0.988168 -2.789228 -0.643850 -0.932898 -2.358286 0.102299 -1.510774 1.407135 -0.681903 -1.087184 -0.382623 -0.395356 2.126093 0.916678 0.187520 0.620829 -3.398003 -0.171340 0.078828 0.769066 1.640182 0.330581 -0.754028 -1.327058 -1.425670 -1.599060 2.981530 0.484351 0.722968 1.224193 -1.948964 0.724867 -1.049040 -0.159354 1.102277 0.478233 -1.942161 -0.182749 1.996016 -0.742121 -1.305309 -1.661067 0.988839 -1.128175 0.475828 0.926084 0.613822 -0.331152 -2.330575 -0.106757 -3.297401 -2.444198 0.777377 -1.345831 -0.791054 2.394397 -2.243712 0.267798 -1.025863 0.103334 0.331723 2.067143 1.099450 1.541195 1.817027 2.557653 0.591605 -2.312924 -1.211206 0.983742 3.349807 1.292488 0.772660 -1.279856 -1.852975 0.935964 -1.658460 -3.515209 -1.753770 2.706347 2.513942 0.974041 -2.060550 1.375900 -0.596518 2.608671 2.394781 0.380647 0.273097 0.396933 -2.819806 2.150991 3.456188 -0.843381 2.577188 -0.477689 -0.574165 3.159346 -2.379664 0.512733 1.243644 -0.946664 -1.280482 -0.625192 -0.239935 1.637359 1.524956 1.366342 -0.845854 1.743054 -1.010722 -3.475249 -4.035845 -0.456428 3.518092 1.248830 3.427767 -2.388781 -1.253982 0.268494 1.698647 -0.594199 -2.190749 0.673882 -2.206552 1.737195 -4.991012 -3.140610 5.769954 3.418855 2.589200 1.213916 2.074712 2.641079 -2.125173 -0.367092 -0.606783 1.515329 0.817588 -3.365808 -0.407477 0.257352 -3.170049 -2.449357 -0.526287 1.212915 -0.823214 0.185391 1.794077 -0.644085 -0.821574 -0.250014 0.834743 -1.471450 -1.263048 -0.244191 -0.052799 0.718103 0.599622 -0.686334 1.264862 0.478497 -2.079238 0.168799 0.650919 1.712514 1.791002 3.573971 4.441293 -1.273168 2.589891 -0.546109 -1.482583 2.511300 -0.868483 0.989381 -0.050759 1.678690 1.570493 0.047240 2.113869 -1.170855 -0.881686 -2.227244 -0.211358 2.152645 2.323046 -1.197359 -2.668144 -3.854574 -0.055390 0.954968 3.100256 -1.238711 3.858540 -1.989841 0.706391 -5.156633 0.527831 1.225370 -0.036878 1.063054 0.744176 -1.074759 -2.425802 -1.087224 -2.054686 -1.390136 -0.744223 -1.321198 -1.063425 -2.077011 2.284758 -3.048968 -0.233396 1.268224 -0.323972 2.453746 0.290681 0.060664 -1.733313 0.876920 0.855259 0.599421 -1.756650 2.808004 0.226242 5.883379 -0.331977 1.458520 -1.045740 2.643094 -1.247575 -2.188582 -0.384721 3.044035 3.391459 -0.618682 0.691858 0.267247 0.357154 1.709227 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = -0.023141 0.155108 0.471907 0.156432 -0.297867 -0.745505 -0.218314 -0.874753 0.263566 0.208805 0.530716 -0.077255 0.434173 -0.123566 -0.053467 0.036768 0.175814 -0.099584 0.117163 -0.269634 -0.504934 0.531273 -0.048573 0.029353 0.075509 -0.453277 0.714664 0.193230 0.093889 0.542661 0.153259 0.069923 -0.143475 0.271759 -0.077283 0.227624 -0.009068 0.372006 0.010589 0.121867 0.191317 -0.197968 0.393338 0.154411 0.368348 0.508784 0.032026 0.158459 -0.163000 -0.273132 -0.068421 -0.097922 -0.412983 0.122441 -0.410489 -0.142574 0.253346 -0.099504 0.034174 -0.233233 0.026744 -0.300781 -0.422294 0.112041 -0.460981 0.124567 -0.258088 -0.422352 -0.144581 -0.118968 0.287267 0.086059 -0.156955 0.060421 -0.613012 -0.056704 0.165272 0.009037 0.375999 -0.140679 -0.192922 -0.133879 -0.540214 -0.457577 0.516883 0.268473 0.286892 0.234208 -0.196053 -0.156136 -0.052996 0.086360 0.408329 0.400220 0.057197 -0.019958 -0.031964 -0.104376 -0.308957 -0.661248 0.276578 -0.220615 0.263677 0.137717 -0.195374 -0.110695 -0.048295 0.072522 -0.265024 -0.444752 0.025972 -0.507167 0.247401 0.470930 -0.058405 -0.214423 -0.304612 -0.304010 0.271589 0.363673 0.289742 -0.069501 0.552329 0.331532 0.110581 -0.462693 -0.398100 0.157586 0.144987 0.194761 0.131905 -0.476238 -0.302926 0.129868 -0.441024 -0.665620 -0.188213 0.007012 0.234393 -0.439862 -0.224653 0.623611 -0.331228 -0.024643 0.503275 0.238929 0.109540 0.036795 -0.377842 0.240103 0.532859 -0.103528 0.265727 -0.258645 -0.352745 0.495429 -0.093021 0.023814 0.181835 -0.249254 -0.295433 -0.084136 0.216691 0.381815 -0.012136 0.274080 0.186759 0.237269 -0.341003 -0.315586 -0.497648 0.085803 0.852187 0.253409 0.677326 -0.578602 0.062620 0.164198 0.496288 0.093716 -0.178108 0.094910 -0.123107 0.294927 -0.775454 -0.559198 0.588255 0.231922 0.451325 -0.036804 0.062179 0.253104 -0.126738 -0.193995 -0.267550 0.230450 0.033960 -0.435953 -0.187780 0.032557 -0.482080 -0.128235 -0.051089 0.276092 0.204931 -0.176515 0.087272 -0.424790 -0.095788 -0.441962 0.198880 -0.224646 -0.043490 0.020329 -0.043507 -0.086562 0.039195 -0.027805 0.110677 -0.006734 -0.129616 0.186202 0.250205 0.098060 0.014383 0.772743 0.504795 -0.465005 -0.123240 -0.075781 -0.015707 0.580200 -0.107478 0.239476 0.168673 0.547184 0.192923 0.093444 0.550251 -0.217846 -0.203352 -0.501659 -0.191762 0.423392 0.171416 -0.080619 -0.105815 -0.853437 -0.007173 -0.114655 0.896956 -0.043064 0.680678 -0.011375 0.274295 -0.383133 0.107310 0.109651 -0.195424 0.249481 0.144596 -0.259201 -0.113400 -0.210008 -0.467567 -0.418779 -0.133931 -0.070006 -0.308251 0.031729 -0.222387 -0.188862 -0.046114 0.205205 -0.059204 0.050990 -0.200224 0.073588 -0.292532 0.066136 0.429976 -0.112673 -0.336104 0.320687 0.131792 0.842520 0.086476 0.399234 -0.064685 0.295416 -0.131847 -0.371456 -0.207412 0.546130 0.283165 0.052951 0.169375 0.136481 0.284625 0.319643 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::difference_type __gnu_cxx::operator- > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.307418 0.259597 1.526348 0.861583 -0.358252 -0.963210 -0.448924 -2.105523 1.081798 0.314485 1.179022 -0.281061 0.659177 -0.331547 -0.356656 0.025913 0.400078 -0.469289 0.430009 -0.321235 0.280435 1.775833 0.042091 -0.458314 0.099427 -1.788151 1.147225 0.460206 0.873651 0.944359 0.336343 0.400833 0.052002 0.551044 -0.214266 0.313469 0.035335 0.620939 -0.565151 -0.119687 0.175686 -0.103518 0.557373 0.211270 1.245442 0.270820 0.745270 -0.022932 -0.167249 -0.218724 -1.196326 0.942716 -0.862283 0.021707 -0.752551 -0.516391 0.280333 -0.477922 -0.332525 -0.875569 -0.157702 -0.071876 -0.698164 0.201529 -0.989527 0.799810 -0.192531 -0.174014 -0.243841 0.015792 0.909497 0.666662 0.402468 0.136722 -1.780254 0.451965 -0.021325 0.284263 0.730601 -0.224257 -0.091493 0.187558 -0.655280 -0.874349 1.245850 1.051954 0.286556 0.213617 0.005019 -0.204642 -0.715748 -0.191706 0.048450 0.888335 -0.690975 0.394647 -0.171236 -0.149308 -0.332430 -0.546667 0.308976 -0.804856 0.363959 0.492145 -0.145658 0.233737 0.099973 0.083943 -0.481135 -1.019595 0.185993 -0.818225 0.336511 1.428468 -0.514387 -0.175235 -0.651283 -0.015219 0.015926 0.927346 -0.158457 0.713883 0.712492 0.981204 0.284312 -0.750130 -0.513514 1.068094 0.593925 0.570572 0.282162 -1.018494 -0.600722 -0.299297 0.030845 -1.300416 -0.531574 0.482339 0.796616 -0.463169 -0.821251 0.715907 -0.329283 1.050719 1.095950 0.003613 0.218840 0.562052 -0.969521 0.908137 2.036315 -0.161048 0.516776 -0.784797 -0.123090 1.070326 -0.774393 0.588813 0.146066 0.128120 -0.201250 -0.669227 -0.033744 0.734848 0.223486 0.415304 0.431771 0.509320 -0.079833 -1.473491 -1.476137 -0.402317 1.339607 0.055058 1.552879 -0.990824 -0.338261 0.024274 0.978293 0.383236 -0.205339 0.302429 -0.831356 0.655197 -1.665115 -1.568080 1.483038 1.243642 0.552228 0.292330 0.693294 0.919557 -0.549211 -0.540817 -0.187024 0.800482 -0.008173 -0.914937 -0.320140 -0.078975 -0.915465 -1.200895 0.027806 0.366880 0.267437 0.156892 0.569970 -0.321856 -0.434585 -0.823549 0.421189 -0.787022 -0.775316 0.001979 0.062557 0.008868 0.390885 -0.567587 0.569126 0.699712 -0.343130 0.132294 0.482305 0.034387 -0.159832 0.710353 1.621564 -0.232704 0.608245 0.189314 -0.330386 1.671420 0.116955 0.315458 0.214718 -0.091130 0.364074 0.359570 0.410398 -0.596345 -0.413637 -1.329082 0.319528 0.277290 0.787818 -0.515440 -0.821005 -1.158044 -0.236242 0.690493 0.881116 0.122164 1.941834 -0.417579 0.010667 -1.844667 0.093626 0.985708 -0.101724 0.777469 0.444884 -0.641634 -0.726802 -0.329534 -0.641085 -0.497297 -0.802857 -1.164867 -0.928186 -0.555919 0.796253 -0.826216 0.210678 0.893231 0.317429 0.473497 -0.547964 0.038600 -0.783393 0.007674 0.286035 0.243314 -0.872586 0.825142 -0.465129 1.964148 -0.755907 0.564259 -0.593830 1.030714 -0.531509 -0.825972 0.027301 1.733501 0.562916 -0.003287 -0.033771 -0.410556 -0.034069 0.829374 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::cbegin() const = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_insert_dispatch(__gnu_cxx::__normal_iterator > >, int*, int*, std::__false_type) = -0.650721 -0.069413 2.285178 -0.418182 -1.145423 -2.408103 -1.233002 -4.569303 1.761939 1.489669 2.799748 -0.035471 1.808312 -0.744581 -0.057964 0.601273 0.804684 -2.023785 0.893733 -1.217953 -0.944751 2.963956 0.078412 1.307859 0.095560 -3.394121 2.148636 0.049722 0.930188 2.098130 0.905017 -0.048166 -0.923467 0.964116 0.519850 2.037421 0.854398 1.237866 -0.111160 0.582316 0.462315 -0.764596 1.517306 0.202895 2.745627 0.758551 0.227497 0.529052 -0.625926 -1.569637 -0.208353 0.315077 -2.062372 0.142813 -0.516175 -0.696172 0.000000 -0.739210 -0.509205 -0.509734 -0.502683 -1.495199 -1.441765 0.905124 -1.296763 1.037378 -1.374233 -0.553478 -0.666199 -0.979669 1.444456 0.677819 0.105064 1.427774 -2.815292 0.113967 0.354287 -0.170023 1.288168 -0.650018 -1.123986 -0.388011 -1.787008 -2.047721 2.098030 2.448388 0.417613 0.137570 -1.286900 0.589121 -0.829327 -0.028595 1.324182 1.747168 -1.289525 -0.702687 0.204559 -0.832682 -1.187695 -2.619859 0.987956 -1.262500 1.095758 0.542938 -0.791888 -0.927743 -0.943302 -0.060257 -1.695604 -1.617723 0.441150 -1.562638 1.215412 2.390183 -1.115071 -0.234508 -2.098875 -1.005147 1.111555 1.245378 1.080315 0.255947 2.529231 1.769133 0.887410 -1.986192 -1.863583 1.375055 1.479891 0.442125 0.335998 -2.142563 -1.069968 0.701996 -1.426172 -2.711390 -1.515842 0.171365 1.181254 -1.262481 -0.230920 1.177430 -0.924967 0.995227 2.534999 0.265356 0.191519 0.474573 -1.905998 1.375506 2.655956 -0.265412 1.370519 -1.368119 -0.714190 2.159180 -1.670309 0.663944 1.095360 -0.067861 -1.836988 -0.844186 0.411315 1.396874 0.091070 1.774239 -0.530489 1.297306 -0.540495 -1.475553 -2.864577 -0.191924 3.349249 0.898838 2.137540 -2.346957 -0.102806 0.622187 2.383742 1.343104 -1.483397 0.896928 -0.993198 1.150497 -2.746120 -2.263968 3.066155 2.844215 2.159205 0.228621 0.813547 1.701713 -2.157806 -0.532950 -0.943356 1.537160 -0.303501 -2.981845 -0.700286 0.415537 -1.907509 -1.429442 -0.872613 1.138037 0.849369 0.046118 1.288151 -0.122573 -0.077516 -1.171687 1.581930 -0.528270 -1.357310 -0.401010 0.169253 0.028336 0.486576 -0.610110 1.143533 0.732566 -0.953220 0.914298 1.848724 0.266676 0.103113 2.764757 2.269387 -1.585913 0.005811 -0.900527 0.146589 1.072996 -0.315717 0.733904 0.531700 0.803952 0.678881 0.326998 1.695772 -0.975792 -1.278004 -1.552963 -0.303787 0.893993 1.349186 0.412983 -2.105096 -3.230759 0.207981 0.197460 3.067307 0.289805 3.165559 -0.252226 1.211344 -2.472034 0.362842 0.657231 -0.319618 1.131491 0.300745 -0.783185 -0.283532 -0.872227 -2.075543 -2.202537 -0.369253 -0.613770 -1.282966 -1.270042 1.314428 -1.022020 -0.478821 0.345987 0.301762 1.247750 0.149915 0.055692 -2.069811 0.886470 1.420660 -0.323596 -1.193807 1.737495 0.330274 3.679562 -0.607545 1.125920 0.077900 1.776101 -0.805237 -1.799276 -0.311788 2.349584 1.731267 0.238341 -0.428572 -0.459700 0.717483 1.079456 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = -0.428080 -0.086942 1.376697 0.191946 -0.562883 -1.855373 -0.704155 -2.561729 1.142734 0.663159 1.688286 0.043892 1.119371 -0.692134 0.145308 0.574812 0.520170 -0.969550 0.324164 -0.703043 -0.452199 1.985262 0.314375 0.193769 0.072344 -1.832415 0.934811 0.468072 0.589296 1.247579 0.407202 -0.024060 -0.230213 0.678037 -0.167962 1.126550 0.365023 0.654933 -0.303084 0.106023 0.178024 -0.173457 1.029768 0.046730 1.682646 0.426140 0.720438 0.310276 -0.505091 -0.867675 -0.507828 0.883387 -1.223949 0.232457 -0.530630 -0.241434 0.283557 -0.561247 -0.373800 -0.869626 -0.266600 -0.401774 -1.073405 0.284739 -0.805814 0.594865 -0.388218 -0.506866 -0.273855 -0.279112 1.017986 0.460163 -0.032834 0.514474 -1.694391 0.073777 0.207208 0.135890 0.831538 -0.392607 -0.579997 -0.313715 -0.897289 -1.113872 1.516134 1.008980 0.446072 0.418324 -0.763027 0.221841 -0.600517 -0.076776 0.677876 0.840095 -0.679976 -0.253199 0.630019 -0.419600 -0.815734 -1.107705 0.536147 -0.725778 0.479257 0.421105 0.119094 -0.345890 -0.785933 0.054275 -1.302625 -1.080921 0.310372 -0.896227 0.262913 1.293081 -0.820175 0.017879 -0.803107 -0.362794 0.373327 1.022232 0.584051 0.323561 1.366936 1.181738 0.363217 -1.169671 -0.910462 0.602517 1.274528 0.555922 0.322301 -1.240074 -0.771314 0.360462 -0.870611 -1.803829 -0.802492 0.615672 0.880941 -0.373679 -0.722509 1.007508 -0.423433 0.923650 1.411733 0.143848 0.138636 0.216464 -1.260586 0.988100 1.859343 -0.346622 1.066285 -0.673338 -0.458370 1.380398 -1.129909 0.392058 0.718758 -0.348405 -0.813935 -0.435062 0.197719 0.925425 0.442171 0.959034 -0.224122 0.780279 -0.410366 -1.247351 -1.906310 -0.198010 1.793013 0.379292 1.774118 -1.303779 -0.470377 0.152621 1.307474 0.121873 -0.831701 0.385113 -0.865276 0.798507 -2.004756 -1.521536 2.373199 1.754938 1.415280 0.334250 0.894773 1.172354 -1.015362 -0.241101 -0.324974 0.815428 0.189431 -1.757553 -0.343330 0.115603 -1.373515 -0.993361 -0.527060 0.614451 -0.082470 0.202275 0.720385 -0.313306 -0.407190 -0.438341 0.507410 -0.632036 -0.626514 -0.174823 0.062960 0.009491 0.329769 -0.498577 0.601999 0.458352 -0.872814 0.386957 0.807235 0.500082 0.540013 1.774448 1.783242 -0.789381 0.832591 -0.331432 -0.192363 0.923083 -0.240746 0.439479 0.238682 0.762906 0.565314 0.203335 0.992476 -0.595842 -0.565997 -1.163881 -0.001415 0.898308 0.851289 0.060791 -1.185716 -1.930635 -0.123344 0.331389 1.853505 -0.197440 1.995921 -0.395162 0.626548 -2.088548 0.248890 0.380238 -0.160816 0.523456 0.356345 -0.579849 -0.908667 -0.533104 -1.107752 -1.367375 -0.342143 -0.633622 -0.677037 -0.971402 0.875083 -1.143435 -0.123902 0.556486 0.174073 0.807740 -0.044906 0.079430 -1.100840 0.454911 0.825779 -0.051377 -0.833704 1.003579 0.118035 2.691591 -0.397338 0.932838 -0.337955 1.195603 -0.460673 -1.004347 -0.210019 1.545767 1.267175 -0.107157 0.107982 -0.042470 0.298166 0.884198 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.104419 0.043096 0.436021 0.072335 -0.157054 -0.657327 -0.193197 -0.783841 0.284801 0.158907 0.529337 -0.049406 0.404618 -0.205792 0.058662 0.143611 0.197111 -0.160496 0.106076 -0.219800 -0.152927 0.489185 0.016607 0.023940 0.048074 -0.435303 0.310820 0.181042 0.120208 0.425201 0.130363 0.003923 -0.119225 0.182184 -0.091305 0.288377 0.180255 0.226083 -0.136083 0.026479 -0.032320 -0.065859 0.275317 0.019764 0.467506 0.258619 0.134221 0.149835 -0.146605 -0.265929 -0.113191 0.215805 -0.348173 0.096751 -0.209034 -0.137417 0.127693 -0.097755 -0.066495 -0.355157 -0.009049 -0.153692 -0.310134 0.075962 -0.286820 0.179300 -0.101099 -0.258202 -0.092450 -0.075619 0.297692 0.111291 -0.001409 0.190674 -0.508231 -0.020246 0.086518 0.074141 0.283597 -0.161405 -0.092534 -0.147692 -0.286395 -0.335086 0.485129 0.259592 0.221611 0.217856 -0.252070 0.047332 -0.118025 -0.025864 0.283916 0.212724 -0.064790 -0.058094 0.135606 -0.077013 -0.211253 -0.450875 0.199742 -0.179809 0.143077 0.124656 0.080939 -0.071763 -0.225228 0.121465 -0.393941 -0.351350 0.164125 -0.294864 0.027851 0.403492 -0.229902 -0.036234 -0.207572 -0.145478 0.128798 0.347443 0.192755 0.111990 0.281256 0.362979 0.089263 -0.376748 -0.321642 0.179624 0.374316 0.211189 0.120027 -0.413546 -0.256332 0.140634 -0.421218 -0.572682 -0.235765 0.151144 0.311544 -0.158745 -0.295707 0.394706 -0.211821 0.194816 0.387895 0.130015 0.034696 0.039252 -0.403853 0.266731 0.465921 -0.150435 0.364892 -0.097149 -0.107636 0.254308 -0.197347 0.043945 0.193810 -0.195244 -0.177338 -0.071950 0.035431 0.286016 0.240967 0.321972 -0.070681 0.263137 -0.316857 -0.418715 -0.513795 -0.049193 0.643929 0.029805 0.497895 -0.402461 -0.199520 0.048617 0.487085 -0.082529 -0.239927 0.080167 -0.253541 0.269130 -0.580795 -0.463902 0.697297 0.456257 0.478078 0.041800 0.189233 0.350664 -0.314258 -0.070439 -0.077490 0.173514 -0.004483 -0.607856 -0.220737 0.003712 -0.445903 -0.256913 -0.092436 0.233468 -0.074206 0.147376 0.225643 -0.108316 -0.086394 -0.151231 0.109182 -0.183271 -0.100305 -0.006922 0.006520 0.039833 0.059985 -0.218667 0.162234 0.212942 -0.283416 0.127905 0.212995 0.167112 0.186447 0.674449 0.463296 -0.227479 0.215814 -0.095660 -0.159080 0.363767 -0.045936 0.208298 0.052912 0.311308 0.175581 0.031876 0.366688 -0.198342 -0.227026 -0.440421 -0.206779 0.351476 0.280799 0.104710 -0.354040 -0.599150 0.009781 0.032142 0.636980 -0.106132 0.582233 -0.110823 0.212306 -0.526652 0.095309 0.116585 -0.154353 0.118524 0.128160 -0.167446 -0.394445 -0.141766 -0.402385 -0.542012 -0.151977 -0.189798 -0.162428 -0.237089 0.171194 -0.286319 -0.077025 0.157954 0.089843 0.224238 -0.039710 0.030509 -0.294325 0.150031 0.273291 -0.063763 -0.330956 0.287822 0.130187 0.900222 -0.020375 0.277450 -0.116985 0.293787 -0.127207 -0.256943 -0.105107 0.491147 0.429740 0.006846 0.084910 0.066807 0.116388 0.262905 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.276677 -0.039513 0.756385 0.496314 -0.528501 -1.264941 -0.385675 -1.384018 0.673813 0.316224 0.942593 0.117681 0.752385 -0.527698 0.010131 0.112635 0.425620 -0.296585 0.078597 -0.475272 -0.447779 1.220709 0.209329 -0.258491 0.072181 -0.840606 0.866089 0.349118 0.275756 0.945883 0.271322 0.084780 -0.214656 0.411257 -0.190251 0.508270 -0.031477 0.465498 -0.213573 -0.061212 0.309196 -0.254967 0.751137 0.117934 0.866860 0.350482 0.428397 0.189688 -0.405909 -0.531099 -0.347541 0.256081 -0.744665 0.245974 -0.517938 -0.136724 0.406886 -0.209340 -0.111030 -0.729659 -0.015802 -0.344920 -0.727756 0.094724 -0.662776 0.320503 -0.306837 -0.525403 -0.196028 -0.255891 0.577041 0.221944 -0.089786 0.013171 -1.083096 -0.076837 0.118337 0.112884 0.605290 0.004204 -0.375633 -0.357681 -0.692991 -0.635190 0.872296 0.300517 0.294839 0.454614 -0.405888 -0.112133 -0.199994 0.059469 0.509112 0.429849 -0.257371 -0.042724 0.301642 -0.176815 -0.350093 -0.730020 0.401791 -0.374194 0.278729 0.314837 -0.101933 -0.116731 -0.301687 0.038708 -0.717387 -0.721415 0.177860 -0.641926 0.090485 0.794798 -0.362645 -0.184592 -0.440186 -0.235409 0.303044 0.692746 0.356743 0.184621 0.772506 0.673599 0.193353 -0.781200 -0.478554 0.376277 0.634265 0.349528 0.218516 -0.620312 -0.532952 0.247190 -0.588369 -1.118250 -0.432618 0.404243 0.603824 -0.238058 -0.565000 0.807213 -0.377358 0.391656 0.826250 0.238833 0.160935 0.110758 -0.796315 0.555890 1.075285 -0.188725 0.572329 -0.347007 -0.474493 0.999223 -0.451951 0.128921 0.270269 -0.355625 -0.417006 -0.183254 0.244092 0.606279 0.132991 0.457489 0.037126 0.472522 -0.402974 -0.841380 -1.084695 -0.039979 1.268306 0.509453 1.229868 -0.874833 -0.082050 0.135174 0.677641 0.023363 -0.444614 0.192986 -0.451802 0.526559 -1.575422 -1.003579 1.451600 0.755398 0.795254 0.167253 0.389385 0.606026 -0.281423 -0.209909 -0.327093 0.417485 0.233689 -0.766717 -0.139001 0.059852 -0.909735 -0.569604 -0.073310 0.394183 0.095090 -0.237405 0.295437 -0.521094 -0.213616 -0.505748 0.327042 -0.468427 -0.219760 -0.031004 -0.035465 -0.004314 0.132895 -0.086460 0.282478 0.055101 -0.345506 0.177653 0.297223 0.338379 0.270132 1.095390 1.166424 -0.633678 0.235092 -0.112876 -0.230333 1.049643 -0.267721 0.331080 0.163252 0.743214 0.476976 0.100417 0.746295 -0.377352 -0.186043 -0.792020 -0.127191 0.712820 0.504093 -0.442897 -0.497318 -1.323880 -0.025991 0.001717 1.237811 -0.210966 1.258344 -0.363521 0.313832 -1.183041 0.168142 0.384603 -0.138339 0.395376 0.266035 -0.402080 -0.541736 -0.354482 -0.698270 -0.431231 -0.273679 -0.309859 -0.449676 -0.261301 0.170930 -0.657362 -0.010507 0.476276 -0.144398 0.427179 -0.219100 0.094794 -0.549021 0.141758 0.338377 0.038922 -0.554256 0.705064 0.102732 1.533367 -0.022414 0.608284 -0.241960 0.788048 -0.409540 -0.741382 -0.248163 0.954859 0.724159 -0.061104 0.305382 0.142964 0.285090 0.558383 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_insert(__gnu_cxx::__normal_iterator > >, int*, int*, std::forward_iterator_tag) = -15.539109 -6.253173 27.388549 8.069070 -18.528336 -22.748540 -12.979439 -45.196598 25.328509 11.162134 28.575541 7.137684 16.852352 -20.475037 1.019596 4.044508 13.035285 -20.792467 7.006337 -11.684119 5.231778 36.798055 8.915849 -1.422703 -0.090212 -36.240889 14.856274 -0.360815 17.231160 22.648895 9.697332 -4.543108 -13.072151 10.047606 8.488029 21.952317 12.096948 7.867374 -13.465014 -3.152059 0.683868 -8.681633 16.914892 -4.493586 36.165395 -11.119778 13.257144 3.700581 -16.024838 -14.235853 -12.163096 19.409217 -25.328399 5.944715 6.866647 -7.366533 -2.573033 -6.513831 -10.229816 -19.887130 -8.365932 -15.588413 -10.070398 5.892237 -12.683610 14.158792 -12.267816 -0.610772 -3.295354 -7.367300 18.408489 13.517187 15.383783 17.009519 -30.475463 4.768935 -0.612167 6.985734 14.855994 1.954009 -5.282955 -7.957059 -8.686825 -17.363902 18.181871 17.162011 -0.792873 -0.083025 -12.949279 12.531449 -8.655281 -5.054621 4.836610 9.207824 -26.039067 -4.137030 1.382348 -5.246355 -3.019144 -23.374733 3.821229 -15.128315 6.220372 10.050981 -4.585663 -6.023988 -15.712421 0.433611 -22.880952 -16.490518 12.544910 -7.590739 -0.309731 26.834304 -19.314063 2.436635 -15.638857 0.201938 5.150610 13.992105 4.237012 16.875320 13.993499 25.698037 14.128178 -19.993778 -12.473392 19.267692 26.520855 8.639734 5.851076 -16.095740 -11.587399 7.244146 -6.677411 -29.418151 -15.756034 14.473957 20.953869 8.373922 -9.883303 -5.293282 -6.529604 27.710650 21.272391 0.955272 1.654229 7.285985 -24.192400 21.378366 31.705086 -4.034573 17.879703 -6.244223 1.498172 22.484183 -25.299996 11.020745 4.354727 3.762379 -8.916258 -13.376290 -7.323066 14.751727 9.511869 15.929637 -13.559789 14.905840 -5.180342 -34.039164 -34.310390 -6.173036 34.062346 6.541546 20.604858 -21.107206 -10.809256 2.343626 22.345265 9.114657 -19.163100 9.551072 -18.421031 15.346194 -34.520732 -28.621586 47.004111 42.974683 17.027574 7.717758 14.867303 25.726252 -32.670135 -6.466451 -8.131332 12.805460 -3.424421 -35.215761 -9.670588 6.213059 -23.667573 -25.141206 -0.465610 8.918076 7.362611 4.734099 14.592086 14.509093 -1.677487 -6.190794 19.676758 -9.381160 -20.924179 -3.488752 4.015842 11.792073 10.420292 -9.659937 11.868812 13.505418 -14.887938 2.824958 12.956775 11.753803 6.715439 25.036657 31.845857 -4.762857 13.279340 -2.537167 -11.377057 21.686248 -5.910438 6.524133 2.447449 -2.143552 9.286978 3.321106 13.341625 -13.366913 -12.272432 -19.289883 -3.138840 3.332908 24.076620 -10.308053 -36.702356 -26.334987 3.663783 12.530245 13.432092 -1.075286 38.629752 -13.291171 3.616222 -43.356748 0.239091 19.879313 1.602893 17.449415 5.685918 -7.691593 -19.299578 -10.920685 -17.913421 -9.351022 -9.330238 -11.778165 -8.351778 -21.340120 34.678438 -15.631446 -1.292185 8.663279 3.193771 28.022087 5.204603 -0.289731 -23.134987 8.807263 1.134179 4.978866 -15.666210 29.719145 1.122951 47.522863 -12.309628 2.091802 -6.703496 20.516367 -11.391897 -18.847522 0.553247 28.612696 26.380959 4.156388 -6.462104 -6.179611 -6.076886 14.159919 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.079449 0.206517 0.268155 0.017012 -0.125796 -0.417123 -0.079739 -0.453755 0.045035 0.069187 0.240076 -0.125907 0.225379 0.020635 -0.028221 0.029290 0.079669 0.069727 0.087878 -0.121741 -0.316023 0.116258 -0.133447 0.073104 0.068907 -0.133183 0.370355 0.131254 0.032385 0.246735 0.064759 0.019350 -0.094856 0.132717 -0.054320 0.029786 0.052861 0.208949 -0.025864 0.123966 -0.006898 -0.106593 0.152768 0.091482 0.094666 0.395823 -0.081752 0.132374 -0.045419 -0.094556 0.016202 -0.082909 -0.151827 0.082737 -0.227706 -0.135200 0.122201 0.008430 0.079691 -0.062883 0.045185 -0.171149 -0.170246 0.057890 -0.261483 0.016014 -0.138669 -0.304262 -0.072896 -0.012029 0.111384 0.015823 -0.092545 0.074933 -0.299894 -0.036452 0.136013 0.034041 0.199440 -0.140027 0.006709 -0.049208 -0.287833 -0.246818 0.254735 0.148877 0.231106 0.135539 -0.119559 -0.116633 0.027997 0.045961 0.258821 0.208259 0.152191 0.022450 -0.152711 -0.023225 -0.186024 -0.482549 0.140923 -0.079736 0.156191 0.002262 -0.063947 -0.045067 0.009295 0.120013 -0.053297 -0.225170 0.032653 -0.273982 0.124406 0.246060 0.032292 -0.148984 -0.117017 -0.203723 0.121593 0.168960 0.167878 -0.087833 0.194908 0.140726 0.056362 -0.218721 -0.244167 0.033207 -0.013716 0.132530 0.092013 -0.271842 -0.146293 0.069381 -0.318115 -0.353460 -0.044055 -0.071092 0.094189 -0.316730 -0.090170 0.336509 -0.242834 -0.118063 0.198900 0.184449 0.064411 -0.015444 -0.142706 0.067463 0.170432 -0.086875 0.139313 -0.073772 -0.146948 0.078103 0.086446 -0.023803 0.067865 -0.181789 -0.094573 -0.001554 0.084828 0.201011 0.052240 0.129888 0.142176 0.096407 -0.318825 -0.125210 -0.161486 0.084172 0.467492 0.011265 0.263094 -0.278329 -0.011811 0.092984 0.318389 -0.023075 -0.047249 0.028653 -0.026053 0.153824 -0.266808 -0.251923 0.185351 0.039081 0.217847 -0.107771 -0.055730 0.087618 -0.103362 -0.146330 -0.126429 0.046118 -0.072852 -0.304432 -0.226903 0.002507 -0.229819 0.066500 0.010702 0.161026 0.111015 0.012396 0.042980 -0.221682 -0.041169 -0.249942 0.067910 -0.084970 0.060415 0.062462 -0.029116 -0.042031 0.009612 -0.073164 -0.001718 0.056359 -0.084674 0.115079 0.109145 0.039010 -0.024551 0.500780 0.126037 -0.192978 -0.091084 -0.019971 -0.052378 0.300840 -0.026328 0.169951 0.085102 0.316188 0.025944 0.060054 0.322954 -0.116513 -0.185767 -0.306857 -0.252141 0.223189 0.048861 0.117373 -0.016312 -0.410432 0.018805 -0.109737 0.490091 -0.022041 0.284307 0.065579 0.176825 -0.044623 0.062835 -0.008696 -0.184616 0.117567 0.081961 -0.140136 -0.060246 -0.084718 -0.278648 -0.357009 -0.070996 -0.014925 -0.118358 0.083921 -0.236142 0.001594 -0.054322 0.062360 0.004869 -0.026394 -0.134644 0.040548 -0.106463 0.038890 0.349214 -0.133153 -0.207668 0.099462 0.139583 0.471130 0.127328 0.192219 -0.024170 -0.005825 0.024467 -0.114304 -0.148248 0.274858 0.120003 0.094091 0.079690 0.122223 0.163482 0.150392 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::distance(int*, int*) = 0.073029 0.166862 1.010742 -0.058298 -0.306976 -1.099969 -0.462307 -1.928839 0.758791 0.519684 0.986837 -0.131652 0.709379 -0.229792 -0.127803 0.343242 0.187280 -0.563995 0.320266 -0.439497 -0.535268 1.304958 -0.116105 0.376409 0.079374 -1.513312 0.958546 0.209641 0.533984 0.855999 0.267349 0.015600 -0.151901 0.487087 -0.079446 0.598217 0.223217 0.524608 -0.154261 0.277578 0.167463 -0.037300 0.612906 0.164928 0.942116 0.565837 0.112718 0.238423 -0.027803 -0.467981 -0.148943 0.244534 -0.655218 0.147207 -0.492322 -0.208847 0.063960 -0.386018 -0.119633 -0.036489 -0.139839 -0.280366 -0.676054 0.292291 -0.685001 0.303660 -0.408777 -0.412212 -0.237564 -0.240197 0.612725 0.271921 -0.119746 0.195540 -1.307334 0.073286 0.189764 -0.013510 0.565343 -0.354425 -0.360067 -0.071157 -0.821643 -0.866466 0.985973 1.087833 0.265672 0.178154 -0.371119 -0.161381 -0.377968 -0.013282 0.604950 0.822055 -0.311483 -0.157947 -0.098551 -0.252471 -0.536109 -1.028968 0.399186 -0.511848 0.486780 0.086620 -0.098976 -0.189108 0.083207 0.076114 -0.443450 -0.661399 0.078661 -0.655047 0.567626 1.101720 -0.183910 -0.249704 -0.716363 -0.477693 0.195373 0.619883 0.425178 -0.039792 1.187217 0.667879 0.320986 -0.782700 -0.756810 0.548247 0.395652 0.315744 0.207074 -1.055827 -0.435013 0.171071 -0.479970 -1.251757 -0.454544 -0.029701 0.387980 -0.846895 -0.133514 0.760506 -0.381263 0.300344 0.960223 0.017518 0.181366 0.127148 -0.682448 0.578838 1.327250 -0.111542 0.442791 -0.823617 -0.454487 0.833030 -0.523161 0.287917 0.337693 -0.156707 -0.614801 -0.329899 0.421680 0.660885 -0.127513 0.591690 0.086001 0.453586 -0.367579 -0.560908 -1.106733 -0.045147 1.196372 0.227105 1.218842 -0.919091 -0.110421 0.138051 0.980567 0.397870 -0.286609 0.380011 -0.506862 0.491697 -1.091089 -0.996066 1.188718 1.031301 0.889381 -0.037476 0.416252 0.611622 -0.596881 -0.337558 -0.327151 0.526088 0.130295 -1.171758 -0.317472 0.072788 -0.793719 -0.464334 -0.308381 0.420137 0.325741 0.087992 0.417706 -0.445729 -0.291666 -0.699409 0.607264 -0.364439 -0.254370 -0.080471 0.074077 -0.277459 0.280201 -0.318690 0.335509 0.313945 -0.272056 0.457288 0.691019 0.067099 -0.055880 1.061402 0.964176 -0.618155 0.251858 -0.201193 0.092325 0.693138 -0.105362 0.278945 0.286123 0.445878 0.145931 0.249471 0.613965 -0.401395 -0.431850 -0.781091 -0.016826 0.448764 0.336534 0.261345 -0.564020 -1.283439 -0.158249 -0.033938 1.371046 0.189718 1.315685 -0.095115 0.547622 -1.050737 0.185174 0.197639 -0.156518 0.482233 0.217918 -0.431440 -0.217505 -0.316786 -0.782288 -1.108736 -0.261686 -0.488503 -0.619768 -0.455596 0.268456 -0.463546 -0.068107 0.444349 0.133414 0.292673 -0.417522 0.094174 -0.803875 0.252046 0.716442 -0.206362 -0.543585 0.404680 0.047289 1.580292 -0.234723 0.704889 -0.115285 0.642577 -0.289586 -0.792200 -0.209429 1.008410 0.481917 0.065125 -0.024060 -0.140716 0.316856 0.539064 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::difference_type __gnu_cxx::operator- > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.307418 0.259597 1.526348 0.861583 -0.358252 -0.963210 -0.448924 -2.105523 1.081798 0.314485 1.179022 -0.281061 0.659177 -0.331547 -0.356656 0.025913 0.400078 -0.469289 0.430009 -0.321235 0.280435 1.775833 0.042091 -0.458314 0.099427 -1.788151 1.147225 0.460206 0.873651 0.944359 0.336343 0.400833 0.052002 0.551044 -0.214266 0.313469 0.035335 0.620939 -0.565151 -0.119687 0.175686 -0.103518 0.557373 0.211270 1.245442 0.270820 0.745270 -0.022932 -0.167249 -0.218724 -1.196326 0.942716 -0.862283 0.021707 -0.752551 -0.516391 0.280333 -0.477922 -0.332525 -0.875569 -0.157702 -0.071876 -0.698164 0.201529 -0.989527 0.799810 -0.192531 -0.174014 -0.243841 0.015792 0.909497 0.666662 0.402468 0.136722 -1.780254 0.451965 -0.021325 0.284263 0.730601 -0.224257 -0.091493 0.187558 -0.655280 -0.874349 1.245850 1.051954 0.286556 0.213617 0.005019 -0.204642 -0.715748 -0.191706 0.048450 0.888335 -0.690975 0.394647 -0.171236 -0.149308 -0.332430 -0.546667 0.308976 -0.804856 0.363959 0.492145 -0.145658 0.233737 0.099973 0.083943 -0.481135 -1.019595 0.185993 -0.818225 0.336511 1.428468 -0.514387 -0.175235 -0.651283 -0.015219 0.015926 0.927346 -0.158457 0.713883 0.712492 0.981204 0.284312 -0.750130 -0.513514 1.068094 0.593925 0.570572 0.282162 -1.018494 -0.600722 -0.299297 0.030845 -1.300416 -0.531574 0.482339 0.796616 -0.463169 -0.821251 0.715907 -0.329283 1.050719 1.095950 0.003613 0.218840 0.562052 -0.969521 0.908137 2.036315 -0.161048 0.516776 -0.784797 -0.123090 1.070326 -0.774393 0.588813 0.146066 0.128120 -0.201250 -0.669227 -0.033744 0.734848 0.223486 0.415304 0.431771 0.509320 -0.079833 -1.473491 -1.476137 -0.402317 1.339607 0.055058 1.552879 -0.990824 -0.338261 0.024274 0.978293 0.383236 -0.205339 0.302429 -0.831356 0.655197 -1.665115 -1.568080 1.483038 1.243642 0.552228 0.292330 0.693294 0.919557 -0.549211 -0.540817 -0.187024 0.800482 -0.008173 -0.914937 -0.320140 -0.078975 -0.915465 -1.200895 0.027806 0.366880 0.267437 0.156892 0.569970 -0.321856 -0.434585 -0.823549 0.421189 -0.787022 -0.775316 0.001979 0.062557 0.008868 0.390885 -0.567587 0.569126 0.699712 -0.343130 0.132294 0.482305 0.034387 -0.159832 0.710353 1.621564 -0.232704 0.608245 0.189314 -0.330386 1.671420 0.116955 0.315458 0.214718 -0.091130 0.364074 0.359570 0.410398 -0.596345 -0.413637 -1.329082 0.319528 0.277290 0.787818 -0.515440 -0.821005 -1.158044 -0.236242 0.690493 0.881116 0.122164 1.941834 -0.417579 0.010667 -1.844667 0.093626 0.985708 -0.101724 0.777469 0.444884 -0.641634 -0.726802 -0.329534 -0.641085 -0.497297 -0.802857 -1.164867 -0.928186 -0.555919 0.796253 -0.826216 0.210678 0.893231 0.317429 0.473497 -0.547964 0.038600 -0.783393 0.007674 0.286035 0.243314 -0.872586 0.825142 -0.465129 1.964148 -0.755907 0.564259 -0.593830 1.030714 -0.531509 -0.825972 0.027301 1.733501 0.562916 -0.003287 -0.033771 -0.410556 -0.034069 0.829374 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_a >(int*, int*, int*, std::allocator&) = -0.549657 -0.380021 1.966313 0.629442 -1.205902 -3.085862 -1.155131 -4.583829 2.105750 1.099479 2.786002 0.201750 1.894148 -1.452159 0.128821 1.096312 0.973055 -1.529572 0.486786 -1.227802 -0.900808 3.707173 0.334632 0.377964 0.020258 -2.880822 1.618841 0.658753 1.172742 1.919447 0.887673 -0.032775 -0.447645 0.918955 -0.159528 2.047986 0.257085 1.113132 -0.758421 -0.077436 0.386929 -0.859088 1.795311 -0.069494 2.846775 0.069886 1.654469 0.459734 -0.792022 -1.400157 -1.171419 1.575627 -2.037748 0.293778 -0.913651 -0.725893 0.485515 -0.708812 -0.715662 -0.970109 -0.627903 -1.015314 -2.002213 0.470345 -1.366661 1.167055 -0.856375 -0.760666 -0.505930 -0.409429 1.734873 0.804628 -0.028644 0.758501 -3.187600 -0.049990 0.220053 0.118859 1.346161 -0.214792 -0.654374 -0.761081 -1.646064 -1.717716 2.801233 1.701465 0.533921 0.591235 -1.432943 0.464712 -1.072005 -0.095740 1.318784 1.166719 -1.467097 -0.435900 0.861302 -0.682787 -1.251515 -2.018025 1.007471 -1.192894 0.838537 0.507771 0.056077 -0.379118 -0.892787 -0.127361 -2.183606 -2.012097 0.242119 -1.418542 0.554658 2.433968 -1.330492 -0.112348 -1.472314 -0.499779 0.378098 1.423154 1.192799 0.770242 2.474046 1.950629 0.713465 -2.034732 -1.639929 1.277138 2.064923 0.906127 0.376864 -1.839021 -1.323801 0.662627 -1.210512 -3.060227 -1.544756 1.226892 1.554431 -0.595685 -0.837619 1.390024 -0.493116 1.577193 2.346306 0.007896 0.227964 0.511545 -2.080580 1.687464 3.065150 -0.371214 1.643493 -1.286409 -0.618059 2.454884 -1.873823 0.455226 1.147837 -0.422877 -1.554412 -0.751333 0.333412 1.388245 0.385196 1.360711 -0.532489 1.498077 -0.872671 -2.179318 -3.152273 -0.233370 3.121135 0.920315 2.819332 -2.228289 -0.670250 0.558633 1.840884 0.440144 -1.448715 0.890676 -1.750155 1.416965 -3.350693 -2.605780 3.967205 2.657819 2.312830 0.589499 1.454169 2.047112 -2.031331 -0.430451 -0.722453 1.482250 0.646705 -3.206968 -0.510410 0.213912 -2.377111 -1.842679 -0.729312 1.076408 -0.097987 0.293832 1.590701 -0.776514 -0.498079 -0.782969 1.382590 -0.942159 -0.986897 -0.424201 0.106438 0.038329 0.640972 -0.719671 1.269314 0.488678 -1.206412 0.739868 1.284777 0.663525 0.665978 2.919578 3.318037 -1.482468 1.484722 -0.717638 -0.378621 1.444712 -0.369247 0.727309 0.315144 1.069605 0.878339 0.246050 1.747151 -1.031254 -1.032955 -1.790072 -0.182936 1.458218 1.545100 0.088173 -1.832331 -3.332997 -0.247880 0.455626 2.988265 -0.220608 3.199880 -1.128457 1.007328 -3.552933 0.453704 0.730288 -0.177738 1.112719 0.423161 -0.854474 -0.954283 -0.918367 -1.782888 -2.208223 -0.629782 -1.109835 -1.320834 -1.761291 1.547445 -1.995873 -0.343047 0.836735 0.127179 1.475732 -0.361050 0.164520 -1.808648 0.949399 1.167869 0.037771 -1.433063 1.814804 0.122882 4.626162 -0.510843 1.355101 -0.537279 2.144904 -1.083208 -1.997121 -0.250857 2.497928 2.190881 -0.294283 0.072739 -0.145122 0.552482 1.362523 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::move_backward(int*, int*, int*) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = -0.104419 0.043096 0.436021 0.072335 -0.157054 -0.657327 -0.193197 -0.783841 0.284801 0.158907 0.529337 -0.049406 0.404618 -0.205792 0.058662 0.143611 0.197111 -0.160496 0.106076 -0.219800 -0.152927 0.489185 0.016607 0.023940 0.048074 -0.435303 0.310820 0.181042 0.120208 0.425201 0.130363 0.003923 -0.119225 0.182184 -0.091305 0.288377 0.180255 0.226083 -0.136083 0.026479 -0.032320 -0.065859 0.275317 0.019764 0.467506 0.258619 0.134221 0.149835 -0.146605 -0.265929 -0.113191 0.215805 -0.348173 0.096751 -0.209034 -0.137417 0.127693 -0.097755 -0.066495 -0.355157 -0.009049 -0.153692 -0.310134 0.075962 -0.286820 0.179300 -0.101099 -0.258202 -0.092450 -0.075619 0.297692 0.111291 -0.001409 0.190674 -0.508231 -0.020246 0.086518 0.074141 0.283597 -0.161405 -0.092534 -0.147692 -0.286395 -0.335086 0.485129 0.259592 0.221611 0.217856 -0.252070 0.047332 -0.118025 -0.025864 0.283916 0.212724 -0.064790 -0.058094 0.135606 -0.077013 -0.211253 -0.450875 0.199742 -0.179809 0.143077 0.124656 0.080939 -0.071763 -0.225228 0.121465 -0.393941 -0.351350 0.164125 -0.294864 0.027851 0.403492 -0.229902 -0.036234 -0.207572 -0.145478 0.128798 0.347443 0.192755 0.111990 0.281256 0.362979 0.089263 -0.376748 -0.321642 0.179624 0.374316 0.211189 0.120027 -0.413546 -0.256332 0.140634 -0.421218 -0.572682 -0.235765 0.151144 0.311544 -0.158745 -0.295707 0.394706 -0.211821 0.194816 0.387895 0.130015 0.034696 0.039252 -0.403853 0.266731 0.465921 -0.150435 0.364892 -0.097149 -0.107636 0.254308 -0.197347 0.043945 0.193810 -0.195244 -0.177338 -0.071950 0.035431 0.286016 0.240967 0.321972 -0.070681 0.263137 -0.316857 -0.418715 -0.513795 -0.049193 0.643929 0.029805 0.497895 -0.402461 -0.199520 0.048617 0.487085 -0.082529 -0.239927 0.080167 -0.253541 0.269130 -0.580795 -0.463902 0.697297 0.456257 0.478078 0.041800 0.189233 0.350664 -0.314258 -0.070439 -0.077490 0.173514 -0.004483 -0.607856 -0.220737 0.003712 -0.445903 -0.256913 -0.092436 0.233468 -0.074206 0.147376 0.225643 -0.108316 -0.086394 -0.151231 0.109182 -0.183271 -0.100305 -0.006922 0.006520 0.039833 0.059985 -0.218667 0.162234 0.212942 -0.283416 0.127905 0.212995 0.167112 0.186447 0.674449 0.463296 -0.227479 0.215814 -0.095660 -0.159080 0.363767 -0.045936 0.208298 0.052912 0.311308 0.175581 0.031876 0.366688 -0.198342 -0.227026 -0.440421 -0.206779 0.351476 0.280799 0.104710 -0.354040 -0.599150 0.009781 0.032142 0.636980 -0.106132 0.582233 -0.110823 0.212306 -0.526652 0.095309 0.116585 -0.154353 0.118524 0.128160 -0.167446 -0.394445 -0.141766 -0.402385 -0.542012 -0.151977 -0.189798 -0.162428 -0.237089 0.171194 -0.286319 -0.077025 0.157954 0.089843 0.224238 -0.039710 0.030509 -0.294325 0.150031 0.273291 -0.063763 -0.330956 0.287822 0.130187 0.900222 -0.020375 0.277450 -0.116985 0.293787 -0.127207 -0.256943 -0.105107 0.491147 0.429740 0.006846 0.084910 0.066807 0.116388 0.262905 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::copy > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = -0.526261 -0.286341 1.973389 0.134934 -1.161797 -2.580354 -1.068174 -4.465483 1.946870 1.095822 2.609468 0.165413 1.728788 -1.254628 0.133071 1.032020 0.965869 -1.595066 0.676580 -1.111346 -0.501752 3.261816 0.152011 0.838130 0.018450 -2.835415 1.269180 0.317705 1.303769 1.691683 0.887658 -0.242933 -0.736921 0.720005 0.246648 1.941807 0.668728 0.926944 -0.947507 0.081643 -0.030924 -0.943361 1.514252 -0.221539 2.743600 -0.249200 1.226433 0.502539 -0.685600 -1.308998 -0.920617 1.499377 -1.839321 0.256350 -0.303532 -0.933060 0.005813 -0.454660 -0.708721 -0.594342 -0.709691 -1.238850 -1.475302 0.591943 -1.132614 1.119929 -1.095745 -0.478748 -0.479986 -0.503014 1.537861 0.805394 0.376322 1.231560 -3.027070 0.068301 0.176381 0.174855 1.156076 -0.184081 -0.384193 -0.629368 -1.359366 -1.624320 2.334685 1.989052 0.319003 0.210673 -1.562731 0.779089 -0.943239 -0.197127 1.160039 1.011768 -1.667222 -0.464352 0.318237 -0.640446 -1.000604 -2.341573 0.802291 -1.114808 0.803842 0.256729 0.013730 -0.501030 -0.953076 -0.031211 -1.899649 -1.754605 0.477183 -1.046880 0.469050 2.456964 -1.347141 -0.012083 -1.565509 -0.422880 0.295869 1.101779 1.050633 0.843081 1.936960 1.852103 0.892191 -1.826550 -1.609855 1.395381 1.915386 0.730673 0.339830 -1.649295 -1.097204 0.707295 -1.133617 -2.775052 -1.538566 1.023076 1.483755 -0.456760 -0.343022 0.547214 -0.547341 1.580928 2.100523 -0.057772 0.178320 0.505504 -1.880773 1.538026 2.613286 -0.336091 1.548048 -1.042922 -0.184708 1.861402 -1.776113 0.549570 0.914516 -0.074388 -1.419537 -0.786301 -0.011082 1.204691 0.503668 1.389010 -0.874653 1.389716 -0.886085 -2.054373 -2.881000 -0.277439 2.959129 0.583453 1.956209 -1.951068 -0.782798 0.551785 1.898025 0.682590 -1.520914 0.983063 -1.642748 1.279015 -2.668083 -2.272616 3.534343 2.920095 2.031616 0.419857 1.167140 2.002482 -2.619304 -0.512865 -0.685292 1.338570 0.083268 -3.547032 -0.834423 0.318148 -2.078440 -1.643548 -0.617314 1.006478 0.150027 0.703048 1.759195 -0.017967 -0.242242 -0.614087 1.626857 -0.621936 -1.163084 -0.389120 0.194040 0.294469 0.709971 -0.893794 1.227641 0.864051 -1.230139 0.714669 1.327576 0.532158 0.431678 2.720930 2.716718 -1.046531 1.280006 -0.761539 -0.511896 1.067553 -0.317585 0.696000 0.192592 0.451487 0.556667 0.246010 1.494766 -1.000427 -1.341247 -1.556864 -0.491536 0.917536 1.613239 0.511417 -2.311404 -2.817897 0.041263 0.503036 2.406464 0.006449 2.897405 -1.018452 0.962904 -3.133243 0.370818 0.715730 -0.156525 1.185353 0.278121 -0.669612 -0.720730 -0.798432 -1.789284 -2.218036 -0.540981 -1.056677 -1.051622 -1.838662 1.942611 -1.537231 -0.480546 0.438061 0.275336 1.741372 -0.027751 0.031748 -1.872892 1.081879 1.127953 -0.050074 -1.319064 1.791885 0.238541 4.296945 -0.556105 0.832769 -0.316247 1.696224 -0.893825 -1.779129 -0.145093 2.283773 2.143577 0.014744 -0.421249 -0.375187 0.319427 1.043448 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::advance(int*&, unsigned long) = -0.067767 0.192960 1.401237 0.150510 -0.481400 -1.519989 -0.615783 -2.273052 1.028606 0.633042 1.261592 -0.030951 0.912415 -0.330367 -0.137902 0.281230 0.311879 -0.713027 0.322030 -0.604207 -0.663928 1.794689 0.114916 0.121413 0.164533 -2.012611 1.336347 0.381445 0.666119 1.312651 0.276292 0.057306 -0.182347 0.743752 -0.200532 0.651015 0.171795 0.629900 -0.192859 0.352588 0.404637 0.124270 0.973231 0.300669 1.209093 0.832348 0.170441 0.291756 -0.198456 -0.650466 -0.230729 0.290544 -0.881847 0.336199 -0.686668 -0.033724 0.220460 -0.604238 -0.139032 -0.387107 -0.102898 -0.218652 -0.889839 0.306324 -0.974529 0.315117 -0.514582 -0.590539 -0.260536 -0.407269 0.813111 0.335558 -0.210951 -0.008380 -1.663794 0.125391 0.230759 0.091127 0.793790 -0.369507 -0.705663 -0.071462 -1.084391 -1.141287 1.111745 1.184112 0.329974 0.329115 -0.412739 -0.409643 -0.443143 0.019253 0.654099 1.085768 -0.412902 -0.117201 0.020561 -0.348321 -0.664343 -1.135493 0.476738 -0.662663 0.577070 0.241220 -0.155043 -0.281746 -0.001112 0.096899 -0.582578 -0.824841 0.194863 -0.856087 0.574723 1.371891 -0.233504 -0.337131 -0.875425 -0.567300 0.319414 1.002389 0.423720 -0.091414 1.529880 0.916947 0.384241 -1.002791 -0.793200 0.624582 0.569467 0.412226 0.365056 -1.289481 -0.606879 0.201553 -0.585682 -1.634477 -0.517725 0.073731 0.584468 -0.935556 -0.396102 1.092276 -0.571925 0.488787 1.265768 0.100687 0.314437 0.112366 -0.967450 0.820973 1.920165 -0.195841 0.584136 -1.078455 -0.808213 1.378398 -0.728419 0.477651 0.354862 -0.272315 -0.709490 -0.428520 0.631363 0.961442 -0.154746 0.725875 0.268000 0.510310 -0.294303 -0.817219 -1.587862 -0.084457 1.498414 0.484132 1.872574 -1.216804 -0.056151 -0.003821 1.210646 0.455231 -0.373665 0.419664 -0.583963 0.616651 -1.844776 -1.356877 1.765322 1.459571 1.103372 0.026882 0.627691 0.766956 -0.434021 -0.484239 -0.466623 0.683230 0.229951 -1.156264 -0.235326 0.113059 -1.085855 -0.635182 -0.347417 0.486714 0.525628 -0.205563 0.304804 -0.678537 -0.554739 -0.998303 0.639751 -0.652039 -0.360850 -0.023815 0.030209 -0.382206 0.363229 -0.243845 0.303289 0.312013 -0.380529 0.453576 0.775799 0.255327 0.028238 1.254167 1.379486 -0.783829 0.308173 -0.110790 0.048439 1.313143 -0.308003 0.333962 0.388417 0.741491 0.352200 0.374436 0.768553 -0.501740 -0.348920 -1.076276 0.252766 0.650438 0.436509 -0.210648 -0.753046 -1.758984 -0.216516 -0.015869 1.820784 0.146251 1.896955 -0.143566 0.625701 -1.599429 0.218406 0.383412 -0.093787 0.629757 0.370345 -0.673250 -0.507087 -0.426493 -1.025542 -0.972509 -0.337282 -0.642714 -0.813490 -0.444680 0.305475 -0.705377 0.082419 0.822065 -0.019820 0.426074 -0.512291 0.103006 -1.036954 0.125068 0.827917 -0.156117 -0.669226 0.616503 -0.006869 1.956894 -0.341555 1.040406 -0.226147 0.938620 -0.397088 -1.104072 -0.350828 1.363459 0.616675 0.057646 0.162334 -0.123697 0.390127 0.787734 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.120868 0.009443 0.948231 0.458402 -0.726572 -1.556658 -0.552578 -2.113646 0.914039 0.501901 1.154523 0.076351 0.909119 -0.585750 -0.148950 0.245499 0.371615 -0.508593 0.210092 -0.630020 -0.854318 1.653585 0.042213 0.006935 0.042983 -1.355323 1.405107 0.331787 0.474779 1.164876 0.407787 0.096903 -0.280621 0.581040 -0.092313 0.749039 -0.085153 0.697783 -0.160467 0.099574 0.483636 -0.427837 0.941609 0.193042 1.132574 0.533394 0.441732 0.285670 -0.323686 -0.625672 -0.392765 0.139495 -1.005679 0.201647 -0.755471 -0.267826 0.404077 -0.325887 -0.140521 -0.398987 -0.142130 -0.608133 -1.008467 0.263162 -0.935267 0.439293 -0.558852 -0.661461 -0.333055 -0.271184 0.765377 0.342264 -0.187360 0.088892 -1.550918 -0.106263 0.173159 0.033470 0.807064 -0.122712 -0.467056 -0.369556 -1.075242 -0.921008 1.205912 0.737686 0.336185 0.408021 -0.416000 -0.197545 -0.340896 0.092374 0.814911 0.761043 -0.329693 -0.150395 0.075392 -0.234901 -0.573338 -1.181603 0.591419 -0.525961 0.543352 0.260125 -0.327219 -0.204469 -0.026091 -0.072171 -0.778539 -0.963130 -0.003285 -0.936411 0.570244 1.217739 -0.273703 -0.338592 -0.746554 -0.498344 0.368251 0.774088 0.617563 0.081354 1.369894 0.875560 0.293222 -1.055238 -0.860016 0.587038 0.571296 0.426810 0.248863 -0.993592 -0.662966 0.269159 -0.599161 -1.476049 -0.536647 0.235578 0.583819 -0.713974 -0.361758 1.044021 -0.470964 0.335686 1.149548 0.197931 0.218603 0.161851 -0.946083 0.762749 1.490000 -0.070198 0.571791 -0.786137 -0.637441 1.367468 -0.618290 0.149720 0.408054 -0.373347 -0.787838 -0.280484 0.464060 0.738599 -0.183423 0.579222 0.187678 0.647153 -0.526926 -0.887238 -1.274948 0.079173 1.755388 0.671279 1.561140 -1.254671 0.086272 0.340317 0.923233 0.412289 -0.447426 0.387720 -0.582059 0.703560 -1.777471 -1.299847 1.618924 0.859548 1.024142 0.117348 0.407645 0.781527 -0.489809 -0.345215 -0.513290 0.615525 0.333756 -1.113855 -0.213929 0.101213 -1.098732 -0.697587 -0.139826 0.581372 0.387000 -0.315231 0.397405 -0.805400 -0.207590 -0.906495 0.694295 -0.512714 -0.259018 -0.061119 -0.003904 -0.189448 0.215135 -0.068664 0.471250 -0.007152 -0.208080 0.469984 0.618196 0.204507 0.053132 1.374011 1.437854 -0.994166 0.127766 -0.195722 0.016211 1.155439 -0.219413 0.466933 0.368785 0.870114 0.455747 0.164154 0.988438 -0.521414 -0.308648 -0.951938 -0.149281 0.812099 0.550562 -0.289163 -0.472517 -1.795789 -0.119795 -0.062863 1.655176 -0.039205 1.572092 -0.341465 0.509506 -1.306613 0.221714 0.422229 -0.178724 0.652566 0.287961 -0.495983 -0.214657 -0.506185 -0.887620 -0.795174 -0.374089 -0.363956 -0.740944 -0.275639 0.060616 -0.685616 -0.090186 0.560375 -0.150417 0.355951 -0.542848 0.184843 -0.800040 0.217219 0.591777 -0.075913 -0.698547 0.827309 0.076253 1.904467 -0.034960 0.797416 -0.171675 0.993293 -0.519173 -1.048226 -0.281054 1.233071 0.670793 -0.059699 0.251250 0.063146 0.508359 0.678253 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 0.879066 1.028690 4.239337 1.940343 -2.253491 -3.263775 -1.487951 -5.763604 2.555659 -0.069446 2.107968 -0.220830 0.467290 -1.038271 -0.450775 0.803130 0.221418 -0.862951 0.718258 -1.131431 -1.099223 3.865098 0.245484 -1.756716 0.362810 -5.347679 2.711457 1.789605 3.131517 2.015507 -0.039905 -1.001165 -0.511857 2.320280 -0.553337 -0.054830 0.962638 0.544169 -2.422902 0.869137 0.201293 1.244633 2.333271 -0.707973 2.489257 0.568316 1.871572 1.132436 -1.328793 0.110622 -1.618642 3.387595 -1.749078 1.528982 0.144874 0.145954 -0.298823 -2.428411 -1.017802 -0.165597 -0.926988 0.196086 -1.358541 0.363662 -2.685571 0.496219 -0.568496 -1.486175 1.286186 0.899307 2.158854 1.492578 0.488739 -0.255094 -3.639784 1.065451 0.664641 2.193921 1.502458 -1.295619 0.951887 0.684673 -1.730441 -1.956462 1.335591 2.383675 0.908027 -0.732046 0.076171 -1.036162 -0.212527 -0.622455 0.248950 2.035565 -1.644328 0.349033 -2.828259 -0.300975 -2.027883 -3.165016 -0.094189 -1.802249 1.778547 0.291213 -0.534758 0.356839 1.585821 0.833004 -0.371578 -2.311830 -0.258530 -0.757769 1.720832 4.228725 -0.195393 -0.874187 -0.988247 -0.824836 -1.465885 1.960451 0.127031 0.703966 3.315524 3.543190 1.045812 -2.118871 -1.941211 0.765128 1.192185 2.560560 2.072505 -3.214754 -1.318125 -0.565036 0.547206 -4.552378 0.255095 -0.067948 1.696136 -0.789633 -0.995477 -0.083864 -1.434037 3.420377 1.439787 0.197692 0.710532 -0.010373 -1.829793 3.306241 5.228633 -0.485555 1.384221 -3.060730 -0.970534 1.993951 -1.690191 1.656212 0.088763 -0.121439 0.008039 -1.862082 0.122730 2.362180 0.012901 0.614384 1.615432 0.678289 -0.923892 -3.782517 -3.142265 0.674470 2.456632 -0.697821 4.490133 -2.571941 -2.207399 -0.669012 2.692175 0.337489 -0.178199 1.092356 -2.512134 1.896063 -2.618025 -3.846224 4.154210 4.474721 0.819781 0.105086 2.606669 2.068331 -2.777204 -1.787140 -0.966043 1.083672 0.867380 -3.355872 -1.359498 0.413161 -2.447414 -1.204219 0.645249 1.068384 2.052816 0.203521 -0.334622 0.067854 -3.066626 -2.662450 2.520889 -2.364471 -0.424422 0.867130 0.089612 -0.156830 2.129676 -1.338042 -0.391792 1.133130 -1.175843 1.032925 1.256277 1.720452 -0.273017 2.541684 3.175462 0.605255 3.803131 1.678625 -1.035479 4.377773 -0.646392 0.914990 1.221341 0.248876 -0.883341 1.514026 1.252844 -1.519432 -1.182569 -3.203561 0.858514 -0.239744 1.647147 -1.223860 -2.179148 -2.949425 -1.771557 1.761957 1.570924 0.546944 4.557532 -0.561280 0.640082 -5.377016 -0.380563 1.542074 0.453889 2.745109 1.230983 -1.992003 -3.013298 -0.904200 -1.596521 -1.651422 -1.644899 -2.545078 -2.087957 -1.495314 2.222858 -0.903102 0.827232 3.340225 0.159351 1.468804 -2.179653 0.077875 -1.538951 -0.838308 1.947769 0.048037 -2.366115 2.093755 -0.369869 6.772186 -1.034473 1.495626 -1.837309 0.220053 0.356885 -1.851554 -0.374571 3.637703 1.134612 0.845347 -0.483714 -0.505816 -1.332550 2.376690 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = -0.387695 0.105563 1.522937 0.750559 -1.193261 -1.533201 -0.719168 -2.430913 0.937121 0.170452 1.291469 0.089724 0.516478 -0.892990 -0.006548 -0.038706 0.340843 -0.537950 0.212376 -0.606850 -0.433917 1.233434 0.137608 -0.693262 0.221478 -1.734708 1.267551 0.667414 0.582110 0.965689 0.256299 -0.233592 -0.767868 0.883959 0.022326 0.408545 0.686368 0.357359 -0.598594 0.098180 0.325359 0.240016 0.985920 -0.314762 1.488271 0.311333 0.439627 0.522536 -0.974870 -0.396187 -0.246836 0.913259 -0.968264 0.600211 0.275265 -0.097410 0.063473 -0.883969 -0.369531 -0.810032 -0.147346 -0.568260 -0.531086 0.177597 -0.878372 0.338562 -0.087285 -0.614988 0.465931 -0.104152 0.890834 0.295504 0.126668 0.385770 -1.043687 0.184919 0.360394 0.709985 0.791593 -0.325701 0.179844 -0.172725 -0.685543 -0.823310 0.542568 0.689730 0.448632 0.016216 -0.306942 0.009002 0.156269 -0.400285 0.423622 0.712178 -0.650826 -0.330495 -0.493913 -0.256371 -0.739879 -1.245145 0.352173 -0.604156 0.720647 0.550994 -0.612256 -0.125184 0.056009 0.301236 -0.759855 -0.909345 0.249738 -0.637669 0.816916 1.514685 -0.392279 -0.280864 -0.644874 -0.498656 0.012208 0.865334 0.253193 0.337390 1.145901 1.625404 0.435883 -1.056917 -1.078492 0.435690 0.827040 0.924882 0.562447 -1.461022 -0.537885 0.170845 -0.519063 -1.669318 -0.342127 -0.126542 0.979249 -0.033259 -0.667828 0.277593 -0.671175 1.191312 0.634842 0.295754 0.044204 0.140513 -1.124300 1.330843 1.614683 -0.185908 0.710968 -0.524321 -0.333035 0.689422 -0.635312 0.385827 0.490888 -0.292121 -0.217088 -0.531064 -0.103825 0.856092 0.352686 0.656639 0.045183 0.636442 -0.688213 -1.609139 -1.521566 0.324316 1.596545 0.091697 1.668910 -1.293583 -0.824643 -0.186155 1.623273 0.045445 -0.564802 0.398547 -0.846241 0.894845 -1.001670 -1.433526 1.948385 1.887701 0.702757 0.095287 0.980573 0.858513 -1.297520 -0.411720 -0.496611 0.406231 0.222993 -1.309813 -0.406072 0.214553 -1.097647 -0.831603 0.208426 0.580313 0.627137 0.007660 0.039538 0.349706 -0.567260 -0.832918 0.779815 -0.607598 -0.252323 0.207127 0.044215 0.327165 0.650646 -0.594455 -0.051925 0.278276 -0.589178 0.452214 0.642854 0.769730 0.249504 1.449273 1.120200 -0.195452 1.146859 0.334662 -0.490561 1.660360 -0.154619 0.643228 0.558361 0.365672 0.240132 0.300808 0.833744 -0.707482 -0.359064 -1.335209 -0.182721 0.217566 1.071284 -0.912157 -1.153824 -1.729635 -0.347846 0.544471 0.697019 -0.121772 1.918950 -0.168895 0.194315 -2.008265 -0.144043 0.801658 -0.117303 0.777008 0.325989 -0.695795 -1.644950 -0.419183 -1.023430 -0.874341 -0.589786 -0.425138 -0.715784 -0.601717 1.158532 -0.257732 0.125420 1.129164 0.085000 0.551489 -0.520249 0.095611 -0.606926 -0.308425 0.360549 -0.053453 -1.158587 1.287999 0.205441 2.792303 -0.251995 0.489131 -0.512685 0.512502 -0.173741 -0.781279 -0.106666 1.393498 0.908240 0.422957 -0.162005 0.163392 -0.474175 1.010581 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_if_noexcept_a >(int*, int*, int*, std::allocator&) = -0.549657 -0.380021 1.966313 0.629442 -1.205902 -3.085862 -1.155131 -4.583829 2.105750 1.099479 2.786002 0.201750 1.894148 -1.452159 0.128821 1.096312 0.973055 -1.529572 0.486786 -1.227802 -0.900808 3.707173 0.334632 0.377964 0.020258 -2.880822 1.618841 0.658753 1.172742 1.919447 0.887673 -0.032775 -0.447645 0.918955 -0.159528 2.047986 0.257085 1.113132 -0.758421 -0.077436 0.386929 -0.859088 1.795311 -0.069494 2.846775 0.069886 1.654469 0.459734 -0.792022 -1.400157 -1.171419 1.575627 -2.037748 0.293778 -0.913651 -0.725893 0.485515 -0.708812 -0.715662 -0.970109 -0.627903 -1.015314 -2.002213 0.470345 -1.366661 1.167055 -0.856375 -0.760666 -0.505930 -0.409429 1.734873 0.804628 -0.028644 0.758501 -3.187600 -0.049990 0.220053 0.118859 1.346161 -0.214792 -0.654374 -0.761081 -1.646064 -1.717716 2.801233 1.701465 0.533921 0.591235 -1.432943 0.464712 -1.072005 -0.095740 1.318784 1.166719 -1.467097 -0.435900 0.861302 -0.682787 -1.251515 -2.018025 1.007471 -1.192894 0.838537 0.507771 0.056077 -0.379118 -0.892787 -0.127361 -2.183606 -2.012097 0.242119 -1.418542 0.554658 2.433968 -1.330492 -0.112348 -1.472314 -0.499779 0.378098 1.423154 1.192799 0.770242 2.474046 1.950629 0.713465 -2.034732 -1.639929 1.277138 2.064923 0.906127 0.376864 -1.839021 -1.323801 0.662627 -1.210512 -3.060227 -1.544756 1.226892 1.554431 -0.595685 -0.837619 1.390024 -0.493116 1.577193 2.346306 0.007896 0.227964 0.511545 -2.080580 1.687464 3.065150 -0.371214 1.643493 -1.286409 -0.618059 2.454884 -1.873823 0.455226 1.147837 -0.422877 -1.554412 -0.751333 0.333412 1.388245 0.385196 1.360711 -0.532489 1.498077 -0.872671 -2.179318 -3.152273 -0.233370 3.121135 0.920315 2.819332 -2.228289 -0.670250 0.558633 1.840884 0.440144 -1.448715 0.890676 -1.750155 1.416965 -3.350693 -2.605780 3.967205 2.657819 2.312830 0.589499 1.454169 2.047112 -2.031331 -0.430451 -0.722453 1.482250 0.646705 -3.206968 -0.510410 0.213912 -2.377111 -1.842679 -0.729312 1.076408 -0.097987 0.293832 1.590701 -0.776514 -0.498079 -0.782969 1.382590 -0.942159 -0.986897 -0.424201 0.106438 0.038329 0.640972 -0.719671 1.269314 0.488678 -1.206412 0.739868 1.284777 0.663525 0.665978 2.919578 3.318037 -1.482468 1.484722 -0.717638 -0.378621 1.444712 -0.369247 0.727309 0.315144 1.069605 0.878339 0.246050 1.747151 -1.031254 -1.032955 -1.790072 -0.182936 1.458218 1.545100 0.088173 -1.832331 -3.332997 -0.247880 0.455626 2.988265 -0.220608 3.199880 -1.128457 1.007328 -3.552933 0.453704 0.730288 -0.177738 1.112719 0.423161 -0.854474 -0.954283 -0.918367 -1.782888 -2.208223 -0.629782 -1.109835 -1.320834 -1.761291 1.547445 -1.995873 -0.343047 0.836735 0.127179 1.475732 -0.361050 0.164520 -1.808648 0.949399 1.167869 0.037771 -1.433063 1.814804 0.122882 4.626162 -0.510843 1.355101 -0.537279 2.144904 -1.083208 -1.997121 -0.250857 2.497928 2.190881 -0.294283 0.072739 -0.145122 0.552482 1.362523 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::__distance(int*, int*, std::random_access_iterator_tag) = -0.303391 0.497519 1.256931 0.534947 -0.314668 -0.748605 -0.396756 -1.546064 0.454309 0.224267 1.000715 -0.548586 0.395347 0.226028 -0.278554 -0.091373 0.242954 -0.407567 0.485492 -0.259865 -0.155164 0.919998 -0.003144 -0.159997 0.139349 -1.193046 1.219647 0.390347 0.312830 0.661159 0.255314 0.461786 0.069690 0.529854 -0.068061 0.186678 0.033291 0.670990 -0.007702 0.239195 0.243668 -0.198304 0.339480 0.336836 0.791466 0.897321 0.370488 0.040033 -0.253355 -0.133300 -0.881302 0.401586 -0.830227 -0.152006 -0.803558 -0.449250 0.390143 -0.490747 -0.215281 -0.709804 -0.134722 -0.254223 -0.575669 0.281962 -0.863816 0.669859 -0.212654 -0.239458 -0.209736 0.233207 0.696964 0.499365 0.140838 0.437899 -1.080894 0.414974 0.128555 0.197945 0.584410 -0.639531 -0.134049 0.443733 -0.664172 -0.822706 0.934253 0.706574 0.556207 0.033428 0.229086 -0.115817 -0.519768 -0.084891 0.005905 0.978278 -0.150768 0.373500 -0.170016 -0.198793 -0.661087 -0.575448 0.275236 -0.664523 0.429459 0.572090 -0.467808 0.005355 -0.185763 0.078532 -0.333824 -0.944292 -0.027570 -0.982732 0.530733 0.897836 -0.375257 -0.111012 -0.509651 -0.232546 0.368025 0.735137 -0.053704 0.373323 0.628564 0.782111 0.030984 -0.511977 -0.544963 0.484872 0.252255 0.432468 0.326830 -0.924885 -0.575232 -0.364030 -0.138040 -0.854185 -0.287562 0.142356 0.468505 -0.603711 -0.762484 0.923708 -0.439624 0.539850 0.935932 0.352851 0.104147 0.383984 -0.687403 0.640888 1.431247 -0.199808 0.457374 -0.532379 -0.150736 0.855951 -0.476278 0.382404 0.404258 0.024060 -0.305363 -0.497113 -0.161457 0.565793 0.339197 0.353061 0.784174 0.310893 0.043180 -0.923248 -0.935549 -0.129225 1.254521 -0.103611 1.104055 -0.938511 -0.049150 0.165785 0.918068 0.387140 -0.163659 0.006209 -0.251169 0.438235 -1.134685 -1.189144 0.723761 0.554300 0.316990 0.208666 0.317649 0.629865 -0.302251 -0.463423 -0.230568 0.766850 -0.382423 -0.385744 -0.351664 -0.074560 -0.597800 -0.684772 -0.109963 0.434162 0.370638 -0.053006 0.134770 -0.297330 -0.329599 -0.706798 -0.025550 -0.597646 -0.724000 0.126217 -0.069459 0.026071 0.086172 -0.333401 0.415172 0.423786 -0.327279 0.103739 0.529111 -0.032220 -0.189425 0.817344 1.020458 -0.306108 -0.018615 0.169099 -0.032733 1.166735 0.273713 0.384519 0.265699 0.166942 0.264198 0.251410 0.576444 -0.412778 -0.525287 -1.105397 0.262420 0.247382 0.502492 -0.295028 -0.331164 -1.095435 -0.128844 0.678007 0.963617 0.055946 1.437591 0.180311 0.024057 -0.974277 0.058331 0.600624 -0.277404 0.507322 0.368656 -0.546095 -0.326466 -0.284535 -0.564736 -0.441416 -0.571095 -0.609934 -0.815074 -0.027971 0.069686 -0.370202 0.083478 0.522697 0.349819 -0.049343 -0.127528 -0.021377 -0.453395 -0.137362 0.689695 0.049671 -0.686973 0.709781 -0.299308 1.448974 -0.479793 0.481092 -0.344088 0.515135 -0.078827 -0.290702 0.007753 1.426401 0.264073 0.038446 0.040375 -0.216081 0.209510 0.668827 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a, int*, int>(std::move_iterator, std::move_iterator, int*, std::allocator&) = -0.774982 -0.176496 2.105457 -0.147568 -1.475015 -2.572076 -1.189763 -4.521068 1.744280 1.194646 2.743971 0.142882 1.739330 -1.021637 0.148508 0.801521 1.058869 -1.849601 0.870016 -1.246338 -0.703189 2.958322 0.220427 1.149763 0.046494 -2.859018 1.617978 0.081471 1.110325 1.894968 0.975372 -0.295825 -1.127776 0.784310 0.668305 2.037713 0.904001 1.027786 -0.719630 0.421080 0.028434 -1.207257 1.567906 -0.162778 2.807894 0.070454 0.778962 0.656651 -0.934275 -1.485168 -0.643214 0.988335 -2.120448 0.215623 -0.082544 -1.001597 -0.081658 -0.407332 -0.701823 -0.631694 -0.764818 -1.783669 -1.311425 0.821882 -1.208517 1.177127 -1.527684 -0.508881 -0.559919 -0.649852 1.514287 0.825879 0.508180 1.771045 -2.875328 0.085828 0.233974 0.216944 1.227070 -0.372014 -0.566925 -0.542025 -1.487692 -1.804327 2.003646 2.028414 0.369432 -0.015427 -1.575846 1.012446 -0.775422 -0.148698 1.205146 1.161411 -1.618515 -0.555487 0.066449 -0.717810 -1.113393 -2.871605 0.815303 -1.124176 0.958900 0.361748 -0.482150 -0.887032 -1.354030 -0.051194 -1.950957 -1.805149 0.596442 -1.187658 0.633263 2.464914 -1.434090 0.027839 -1.802974 -0.632042 0.732460 1.086514 1.142242 0.757315 1.860529 2.002050 0.922941 -1.890279 -1.790802 1.289879 1.862533 0.594902 0.471118 -1.674583 -1.169644 0.811055 -1.365458 -2.681987 -1.550405 0.795471 1.479973 -0.477294 -0.184112 0.390320 -0.863303 1.432940 2.222571 0.270512 0.143862 0.412361 -1.963392 1.563748 2.406143 -0.346139 1.652279 -0.877988 -0.175922 1.962990 -1.797030 0.569890 1.003321 -0.012592 -1.657470 -0.785770 -0.210291 1.203896 0.617691 1.591295 -0.833909 1.390181 -0.837123 -1.989124 -2.792278 -0.127527 3.435825 0.642648 1.584886 -2.171446 -0.515576 0.708374 2.162666 1.068241 -1.776353 0.934226 -1.284626 1.257670 -2.685312 -2.229992 3.389794 3.020534 1.965617 0.378661 0.828014 2.060596 -2.894597 -0.600665 -0.893556 1.428732 -0.505625 -3.557100 -1.034712 0.472977 -2.023965 -1.507033 -0.597188 1.198846 0.642182 0.502349 1.582102 0.365015 -0.017388 -0.756280 1.700508 -0.483654 -1.456407 -0.269276 0.146643 0.515887 0.571033 -0.730874 1.247642 0.880528 -1.268972 0.752317 1.554806 0.549206 0.323683 2.988803 2.402582 -1.143484 0.578938 -0.823311 -0.436467 1.054045 -0.346268 0.892626 0.268976 0.518322 0.561754 0.182591 1.738559 -1.026066 -1.599542 -1.520804 -0.705587 0.783244 1.744643 0.444654 -2.606337 -3.034036 0.379656 0.543642 2.518263 0.037146 2.956391 -0.692474 1.011417 -2.768034 0.335816 0.761066 -0.241644 1.286206 0.254782 -0.629327 -0.456822 -0.888485 -2.038825 -2.029653 -0.458064 -0.702421 -0.987983 -1.514876 1.818799 -1.138724 -0.645041 0.149987 0.223815 1.795113 0.454073 -0.062059 -1.983092 1.051487 1.333065 -0.162546 -1.305296 2.163795 0.436824 4.186956 -0.427710 0.621264 -0.022239 1.494711 -0.702060 -1.657841 -0.175101 2.352779 2.156532 0.227774 -0.563251 -0.389545 0.479121 0.913564 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::make_move_iterator(int*) = -0.007080 -0.002302 0.849245 -0.003270 -0.203875 -0.986718 -0.342549 -1.681007 0.784152 0.402589 0.884447 -0.000242 0.687693 -0.446219 -0.013493 0.410991 0.291625 -0.443554 0.203173 -0.377398 -0.059566 1.194283 -0.086732 0.218895 0.053928 -1.235958 0.434204 0.229820 0.565694 0.672223 0.276152 -0.043933 -0.176235 0.303642 -0.115046 0.581530 0.334923 0.314917 -0.444991 0.013723 -0.095391 0.005132 0.495975 -0.000595 0.979813 0.086276 0.302593 0.203772 -0.024103 -0.427517 -0.245272 0.590060 -0.480188 0.162206 -0.249951 -0.245531 -0.037053 -0.241737 -0.160690 -0.200271 -0.120437 -0.130869 -0.524442 0.167687 -0.455880 0.315559 -0.203742 -0.260898 -0.192479 -0.262591 0.543127 0.232524 0.057500 0.205481 -1.202289 0.023411 0.077407 0.061547 0.464578 -0.137700 -0.153869 -0.238983 -0.490262 -0.610738 0.906097 0.923610 0.137188 0.268127 -0.520130 0.022470 -0.377878 -0.115854 0.485411 0.436601 -0.495635 -0.172796 0.078996 -0.184286 -0.289118 -0.731368 0.338806 -0.372073 0.280819 -0.012241 0.229806 -0.046838 -0.069606 0.108126 -0.552543 -0.486496 0.246052 -0.370494 0.206660 0.994991 -0.345266 -0.120519 -0.566134 -0.216257 -0.019797 0.530898 0.277811 0.198587 0.722928 0.609353 0.328758 -0.679093 -0.578268 0.609678 0.605516 0.332082 0.128969 -0.783897 -0.339606 0.217015 -0.457616 -1.100222 -0.499939 0.202702 0.515124 -0.400540 -0.188855 0.384171 -0.228970 0.510797 0.721174 -0.111025 0.116608 0.166646 -0.677148 0.508507 1.091798 -0.133263 0.499477 -0.515958 -0.124985 0.463173 -0.514751 0.247205 0.231256 -0.147542 -0.388583 -0.236640 0.198509 0.505205 0.119317 0.524694 -0.285228 0.486672 -0.436814 -0.705333 -1.077529 -0.211214 0.918093 0.090328 0.923344 -0.654075 -0.386446 0.005986 0.812567 0.104454 -0.345900 0.387663 -0.688421 0.471628 -0.873525 -0.829006 1.281960 1.161629 0.855725 0.031986 0.498932 0.623077 -0.757395 -0.194934 -0.096941 0.353117 0.162228 -1.315211 -0.303932 0.038766 -0.754615 -0.598191 -0.221387 0.324390 -0.045177 0.415522 0.680990 -0.153173 -0.182718 -0.361755 0.518620 -0.267777 -0.226742 -0.115322 0.125075 -0.077296 0.303347 -0.491216 0.347303 0.491735 -0.378505 0.330576 0.472835 0.153272 0.134925 0.872493 0.906563 -0.328253 0.654727 -0.225813 -0.196890 0.529945 -0.083145 0.246404 0.109986 0.171784 0.170670 0.155117 0.390917 -0.383973 -0.347396 -0.671460 -0.174807 0.393033 0.483396 0.340161 -0.779863 -0.926931 -0.090490 0.026716 0.937630 0.045695 1.105251 -0.355160 0.415746 -1.163642 0.170307 0.256734 -0.106136 0.336138 0.178644 -0.319980 -0.499038 -0.209009 -0.677441 -1.078788 -0.256092 -0.565779 -0.405404 -0.699957 0.690445 -0.590566 -0.095934 0.368988 0.181564 0.540417 -0.327712 0.084271 -0.688086 0.339859 0.392790 -0.084909 -0.528261 0.354870 0.062398 1.546139 -0.242385 0.498437 -0.181128 0.653903 -0.356098 -0.718899 -0.137068 0.870009 0.670520 0.022691 -0.088792 -0.167709 0.099838 0.450063 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy, int*>(std::move_iterator, std::move_iterator, int*) = -0.780013 -0.174053 2.107978 -0.158832 -1.464010 -2.570924 -1.190101 -4.516576 1.727393 1.197550 2.771703 0.118462 1.740675 -0.984771 0.171897 0.800304 1.083127 -1.850374 0.879849 -1.246288 -0.704475 2.955771 0.223532 1.166031 0.071323 -2.850098 1.599639 0.082351 1.084009 1.890538 0.975066 -0.289252 -1.127206 0.762716 0.666280 2.035044 0.908286 1.012632 -0.719717 0.440614 0.026542 -1.203009 1.569528 -0.159794 2.788510 0.089078 0.774254 0.656696 -0.942412 -1.492936 -0.640060 0.990365 -2.093943 0.223373 -0.079813 -1.001876 -0.072738 -0.414588 -0.710857 -0.622521 -0.761967 -1.780598 -1.313907 0.821423 -1.201594 1.176573 -1.537512 -0.489850 -0.537191 -0.655029 1.511286 0.799868 0.482118 1.767394 -2.865880 0.086399 0.235448 0.213017 1.200567 -0.382291 -0.567161 -0.516814 -1.504700 -1.804900 2.003457 2.028682 0.376000 -0.038338 -1.601545 1.011193 -0.774303 -0.149101 1.194240 1.161463 -1.621481 -0.548305 0.079376 -0.741289 -1.125694 -2.872088 0.814377 -1.125509 0.954838 0.368117 -0.482889 -0.886760 -1.355288 -0.024252 -1.934642 -1.816685 0.606820 -1.166707 0.613002 2.464455 -1.434030 0.019415 -1.822918 -0.630606 0.734007 1.089549 1.141709 0.756583 1.863649 1.996360 0.921545 -1.866824 -1.785874 1.275908 1.861744 0.578524 0.470552 -1.668530 -1.173175 0.817418 -1.388732 -2.670911 -1.577736 0.799305 1.505311 -0.480618 -0.187520 0.397132 -0.867436 1.432288 2.223316 0.271573 0.140928 0.411771 -1.962040 1.554443 2.403562 -0.366670 1.652881 -0.884974 -0.181571 1.950990 -1.765960 0.558673 1.015422 0.007860 -1.656970 -0.788700 -0.210218 1.205307 0.639036 1.587035 -0.835117 1.389441 -0.829849 -1.965095 -2.815025 -0.129509 3.407960 0.638173 1.583791 -2.161240 -0.521031 0.684768 2.162230 1.060317 -1.796577 0.929095 -1.280456 1.231703 -2.692782 -2.214661 3.385910 3.025652 1.970344 0.371940 0.831100 2.055788 -2.902686 -0.601118 -0.915714 1.457317 -0.513227 -3.547485 -1.029080 0.469747 -2.023381 -1.490687 -0.621253 1.197556 0.641824 0.494090 1.581843 0.361063 -0.048183 -0.732206 1.699759 -0.486162 -1.459711 -0.269587 0.122858 0.515640 0.571006 -0.730937 1.245255 0.880526 -1.296196 0.731055 1.555859 0.555477 0.322387 2.997753 2.403045 -1.123394 0.576951 -0.840109 -0.462787 1.048082 -0.349421 0.877132 0.236584 0.504829 0.559967 0.180822 1.741369 -1.004761 -1.636089 -1.517841 -0.682393 0.774586 1.743479 0.444745 -2.607076 -3.054481 0.381385 0.538455 2.565890 0.050998 2.956815 -0.692681 1.018787 -2.770065 0.339672 0.743459 -0.237692 1.262439 0.231961 -0.631509 -0.455354 -0.861659 -2.065919 -2.031398 -0.444038 -0.708193 -1.009896 -1.528199 1.823782 -1.128860 -0.646657 0.155169 0.227111 1.800080 0.495432 -0.092231 -1.978761 1.051439 1.356850 -0.162853 -1.304773 2.152894 0.446311 4.195500 -0.424247 0.624564 -0.022268 1.469605 -0.703309 -1.656872 -0.177396 2.331317 2.182809 0.228663 -0.560138 -0.390539 0.480179 0.904745 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy, int*>(std::move_iterator, std::move_iterator, int*) = -0.786074 -0.240711 1.991489 -0.193235 -1.285345 -2.291590 -1.094122 -4.175741 1.689223 1.115665 2.553664 0.176617 1.630280 -1.027887 0.165745 0.734221 1.004032 -1.771438 0.818718 -1.124189 -0.376356 2.773354 0.233122 1.050269 0.029935 -2.750770 1.325713 0.022388 1.096491 1.771834 0.893873 -0.313884 -1.078995 0.677765 0.639174 1.911776 0.985460 0.871671 -0.773109 0.319561 -0.088795 -1.014537 1.389761 -0.215873 2.694988 -0.106702 0.686693 0.590674 -0.830676 -1.396724 -0.575237 1.025814 -1.927047 0.210868 0.073601 -0.924131 -0.189587 -0.360835 -0.695929 -0.681968 -0.693718 -1.578212 -1.107062 0.755805 -1.041782 1.122640 -1.365132 -0.356610 -0.504834 -0.676319 1.404806 0.790433 0.620723 1.694266 -2.664566 0.117909 0.155159 0.227026 1.102882 -0.307501 -0.509962 -0.526076 -1.241442 -1.627253 1.801299 1.958637 0.246851 -0.017972 -1.493410 1.027612 -0.741444 -0.204122 1.045467 0.995421 -1.610365 -0.541983 0.090718 -0.637242 -0.875315 -2.575118 0.710903 -1.041971 0.819396 0.340210 -0.326529 -0.801344 -1.290647 0.001340 -1.842570 -1.589825 0.698302 -0.961413 0.469789 2.307960 -1.412656 0.093127 -1.678473 -0.499045 0.618352 1.019999 0.958018 0.816654 1.555421 1.875159 0.893705 -1.729968 -1.607547 1.316835 1.843238 0.534376 0.414604 -1.544221 -1.032645 0.769611 -1.246303 -2.455315 -1.490295 0.774281 1.436438 -0.314100 -0.190753 0.197774 -0.761501 1.463889 2.024662 0.169489 0.109889 0.408685 -1.860299 1.469277 2.234171 -0.331670 1.554182 -0.750803 -0.047023 1.688034 -1.723144 0.583128 0.859444 0.066473 -1.445307 -0.753606 -0.258524 1.089520 0.663873 1.543409 -0.964671 1.306901 -0.755928 -1.930906 -2.636706 -0.235841 3.098019 0.508025 1.383151 -1.920794 -0.606524 0.567249 2.046121 0.959745 -1.675290 0.890361 -1.270765 1.156397 -2.437277 -2.039631 3.230063 3.019450 1.844690 0.372661 0.821328 1.964684 -2.784931 -0.504055 -0.739722 1.285348 -0.511567 -3.404355 -0.980367 0.433490 -1.855963 -1.511910 -0.537108 1.069912 0.516260 0.624716 1.551241 0.559798 0.014177 -0.601719 1.607212 -0.428765 -1.407330 -0.277929 0.184579 0.548436 0.567469 -0.795319 1.185335 0.997671 -1.221507 0.668329 1.438822 0.522630 0.347537 2.660791 2.194338 -0.922002 0.653474 -0.769423 -0.498571 0.952606 -0.317630 0.792129 0.192942 0.295675 0.525398 0.157899 1.470832 -0.959839 -1.475866 -1.395651 -0.669299 0.645207 1.700379 0.453601 -2.640443 -2.654142 0.392702 0.548579 2.170752 0.052375 2.759469 -0.719916 0.901622 -2.667149 0.297200 0.785918 -0.187558 1.161491 0.231606 -0.535913 -0.609486 -0.784830 -1.879439 -1.902474 -0.461177 -0.761093 -0.837742 -1.564595 1.974597 -1.080927 -0.590518 0.141803 0.289059 1.816458 0.479524 -0.082196 -1.903656 1.022176 1.059621 -0.114994 -1.213395 1.996926 0.397196 3.868814 -0.504050 0.493352 -0.044691 1.438853 -0.713190 -1.536032 -0.111053 2.173398 2.075558 0.231187 -0.603344 -0.442853 0.317595 0.810759 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy, int*>(std::move_iterator, std::move_iterator, int*) = -0.600558 -0.255832 2.176346 -0.209700 -1.313293 -2.431390 -1.132444 -4.796907 2.022168 1.219155 2.711451 0.193656 1.768332 -1.226176 0.106887 0.996144 1.048575 -1.841634 0.894485 -1.158584 -0.295588 3.249537 0.057255 1.243958 0.011134 -3.133586 1.273189 0.040485 1.512865 1.770232 0.986542 -0.411046 -1.086815 0.671534 0.640018 2.052007 1.027380 0.899125 -1.123125 0.245016 -0.257199 -1.117547 1.480943 -0.322037 2.944765 -0.463040 0.932005 0.595618 -0.694611 -1.395140 -0.773151 1.429911 -1.925730 0.251746 0.122513 -1.147250 -0.352739 -0.318931 -0.763861 -0.380804 -0.831033 -1.603785 -1.210550 0.778228 -1.111535 1.200859 -1.459456 -0.321712 -0.535629 -0.682032 1.536842 0.897182 0.731261 1.707128 -3.195122 0.156834 0.146529 0.230141 1.159153 -0.170442 -0.305937 -0.593243 -1.321753 -1.737312 2.130355 2.399441 0.154503 -0.070335 -1.748772 1.060940 -0.909439 -0.271768 1.166487 1.034556 -1.968316 -0.549213 -0.114578 -0.664174 -0.878299 -2.851993 0.742080 -1.164965 0.886942 0.127151 -0.146397 -0.693971 -1.063087 0.000944 -1.855314 -1.721204 0.699987 -0.905368 0.523160 2.733011 -1.458199 0.034714 -1.841395 -0.452024 0.341930 0.987526 1.044028 0.950078 1.757806 1.980898 1.113275 -1.873317 -1.759704 1.643748 1.944051 0.636323 0.363582 -1.677876 -1.041375 0.811563 -1.164104 -2.805679 -1.667104 0.900455 1.556311 -0.430800 0.025074 -0.022968 -0.689595 1.697052 2.150629 -0.077741 0.170047 0.537151 -1.936122 1.598768 2.548833 -0.300590 1.590679 -0.996022 0.066264 1.696326 -1.886148 0.684808 0.803857 0.189710 -1.505687 -0.891298 -0.233360 1.184503 0.560769 1.563704 -1.167796 1.442360 -0.938445 -2.147362 -2.931714 -0.310698 3.208078 0.472514 1.505395 -1.988080 -0.826062 0.618791 2.140972 1.054385 -1.719190 1.151600 -1.656404 1.300323 -2.481635 -2.253170 3.529442 3.393516 1.994242 0.332027 1.004106 2.157087 -3.257355 -0.639072 -0.771747 1.370501 -0.368481 -4.049397 -1.129291 0.452172 -2.038915 -1.672369 -0.552866 1.075699 0.493782 0.949008 1.975175 0.547978 -0.033872 -0.655150 2.012388 -0.442076 -1.440260 -0.378476 0.274979 0.508180 0.807476 -1.027689 1.321010 1.186741 -1.284503 0.787850 1.525595 0.465482 0.241025 2.791564 2.501480 -0.883993 1.077560 -0.850509 -0.604631 0.972024 -0.328477 0.767748 0.168649 0.057678 0.399282 0.263132 1.465156 -1.083891 -1.659837 -1.518250 -0.752056 0.583451 1.827435 0.749785 -2.899387 -2.748806 0.299706 0.563573 2.206986 0.202727 2.986374 -0.997813 1.011123 -3.067492 0.334651 0.836400 -0.141092 1.397058 0.206013 -0.593731 -0.548768 -0.814105 -1.981637 -2.306557 -0.540063 -1.068610 -0.968197 -1.968559 2.370682 -1.275268 -0.624359 0.196308 0.359920 2.089032 0.213771 -0.057107 -2.130518 1.237856 1.153281 -0.118289 -1.346506 2.009488 0.342249 4.363122 -0.633832 0.509480 -0.130143 1.560336 -0.861018 -1.824385 -0.087519 2.358218 2.250682 0.266605 -0.821664 -0.598932 0.217940 0.887531 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/Nearly_sorted_Algo.cpp__decltype (__miter_base(({parm#1}.base)())) std::__miter_base(std::move_iterator) = 0.194778 0.143600 0.531095 -0.037883 -0.202600 -0.749231 -0.188586 -1.329335 0.454272 0.201758 0.586792 -0.114755 0.442926 -0.253631 0.007812 0.465357 0.200344 -0.139544 0.203855 -0.228451 -0.210081 0.735322 -0.256828 0.360873 0.039230 -0.606274 0.206252 0.196244 0.488911 0.250806 0.216030 -0.125754 -0.127207 0.143456 -0.038366 0.356706 0.202646 0.246596 -0.469073 0.055552 -0.281709 -0.270215 0.304073 -0.096233 0.556507 -0.033524 0.358023 0.194671 0.003441 -0.174214 -0.294459 0.597436 -0.279101 0.102679 -0.133484 -0.430629 -0.058675 0.005585 -0.094803 0.166631 -0.199022 -0.255091 -0.365936 0.110310 -0.323811 0.203453 -0.238556 -0.257484 -0.106646 0.052075 0.363325 0.183250 0.060995 0.294827 -0.936432 0.006850 0.127444 0.092177 0.287498 -0.088206 0.254158 -0.146136 -0.360575 -0.411459 0.754383 0.650578 0.196059 0.069369 -0.513373 0.104996 -0.239004 -0.078485 0.415106 0.225889 -0.335897 -0.036420 -0.214706 -0.103363 -0.329383 -0.845539 0.199664 -0.244128 0.242641 -0.202321 0.236877 0.015549 -0.003462 0.116025 -0.303344 -0.478471 0.070630 -0.231879 0.121701 0.760627 -0.206180 -0.094497 -0.307399 -0.131167 -0.183512 0.186772 0.341124 0.167742 0.431328 0.404802 0.283851 -0.436436 -0.503121 0.355204 0.335721 0.311429 0.085628 -0.473168 -0.245426 0.163543 -0.335265 -0.837557 -0.328527 0.220403 0.334747 -0.315507 0.061244 0.079408 -0.153324 0.303611 0.407397 -0.070673 0.083696 0.119154 -0.347633 0.318052 0.590127 -0.117171 0.373073 -0.284681 0.082549 0.120230 -0.254770 0.084769 0.168130 -0.083607 -0.249019 -0.159224 -0.023035 0.314570 0.156058 0.245962 -0.187628 0.341014 -0.558392 -0.503013 -0.628213 -0.017368 0.707097 -0.113227 0.407641 -0.420127 -0.402541 0.170069 0.520581 0.003817 -0.254029 0.319013 -0.555986 0.373226 -0.364542 -0.560527 0.753504 0.638566 0.515078 -0.063801 0.260789 0.473492 -0.872973 -0.254400 -0.122228 0.217720 0.037733 -1.274121 -0.463128 0.031832 -0.544595 -0.217760 -0.106483 0.253123 -0.064677 0.538212 0.636146 -0.111811 -0.111390 -0.167204 0.476685 -0.111794 -0.078407 -0.056682 0.073374 0.011559 0.273973 -0.431950 0.247821 0.347963 -0.348934 0.260290 0.274692 0.077490 0.017146 0.861271 0.599925 -0.138926 0.597520 -0.174825 -0.239708 0.205263 -0.004272 0.214889 0.021082 0.064961 -0.081159 0.128410 0.401443 -0.287288 -0.517089 -0.493370 -0.386204 0.227553 0.329566 0.589938 -0.489377 -0.630703 -0.070283 0.047116 0.613859 0.050014 0.609691 -0.284323 0.334134 -0.689371 0.126899 0.023868 -0.151165 0.346891 0.063107 -0.199612 -0.127910 -0.149406 -0.475051 -1.011502 -0.164814 -0.383562 -0.253232 -0.539142 0.397726 -0.348000 -0.173597 0.077799 0.159534 0.398084 -0.265333 0.042696 -0.414553 0.367775 0.559633 -0.135090 -0.427531 0.246028 0.122659 1.341282 -0.032965 0.214475 -0.139469 0.169887 -0.107589 -0.409953 -0.086458 0.584076 0.522674 0.079990 -0.183001 -0.050222 0.057115 0.273232 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::base() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int*&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::move_iterator(int*) = -0.070237 0.068551 0.759030 0.394328 -0.560074 -1.286945 -0.361903 -1.618929 0.676811 0.307331 0.921155 0.043813 0.721667 -0.476392 -0.011290 0.303420 0.406582 -0.240535 0.138493 -0.466725 -0.545317 1.228754 0.023827 -0.018402 0.072737 -0.820168 0.787783 0.355272 0.436272 0.772289 0.310655 0.003684 -0.218728 0.375644 -0.137734 0.506483 -0.030047 0.472283 -0.371554 0.005133 0.144008 -0.407818 0.734302 0.055019 0.830971 0.236508 0.529543 0.232052 -0.323896 -0.440176 -0.429852 0.435663 -0.676252 0.231464 -0.466845 -0.318376 0.302094 -0.126951 -0.105372 -0.358453 -0.137117 -0.433533 -0.731814 0.117860 -0.664890 0.305546 -0.397132 -0.542135 -0.194827 -0.125341 0.576657 0.240529 -0.082651 0.110893 -1.246019 -0.069203 0.163577 0.129363 0.581055 0.008874 -0.130953 -0.322542 -0.727016 -0.656533 0.977023 0.471100 0.315461 0.332308 -0.539510 -0.071132 -0.236975 0.040671 0.579792 0.423446 -0.349502 -0.017434 0.053978 -0.189698 -0.466730 -0.986246 0.386125 -0.377017 0.344521 0.094390 -0.036061 -0.083104 -0.193700 0.033466 -0.620418 -0.782846 0.083523 -0.606964 0.157649 0.939408 -0.316152 -0.213649 -0.458552 -0.244609 0.128945 0.548311 0.462108 0.173662 0.821385 0.662552 0.278156 -0.769214 -0.583954 0.388400 0.545264 0.398795 0.209627 -0.613106 -0.517682 0.249123 -0.543515 -1.207944 -0.436975 0.410415 0.567090 -0.336470 -0.315963 0.602286 -0.354813 0.383869 0.782768 0.161760 0.179857 0.126427 -0.702183 0.542466 1.042160 -0.171001 0.562261 -0.411929 -0.340952 0.860999 -0.427873 0.118905 0.272382 -0.305607 -0.458498 -0.201683 0.173044 0.587342 0.099634 0.371331 0.021742 0.482670 -0.553250 -0.817451 -1.051609 0.029274 1.276446 0.384176 1.078492 -0.858855 -0.175302 0.230855 0.663712 0.062389 -0.436767 0.301213 -0.561427 0.558692 -1.336990 -0.993435 1.358118 0.750674 0.757479 0.081970 0.369552 0.632653 -0.603926 -0.326362 -0.355818 0.419115 0.204361 -1.110460 -0.306930 0.078630 -0.916951 -0.450221 -0.079478 0.410944 0.115858 -0.008715 0.493972 -0.518679 -0.214587 -0.495005 0.491957 -0.390295 -0.181397 -0.030491 -0.013810 -0.012460 0.226879 -0.183558 0.300227 0.095587 -0.379527 0.250279 0.315533 0.277331 0.154088 1.216825 1.149482 -0.564129 0.404755 -0.151497 -0.257931 0.881430 -0.220633 0.349862 0.143569 0.615866 0.283295 0.144334 0.783887 -0.404272 -0.384121 -0.783670 -0.265237 0.619775 0.489332 -0.105761 -0.503182 -1.308101 -0.059557 0.009195 1.196573 -0.129996 1.172348 -0.398072 0.380909 -1.145588 0.181006 0.266645 -0.158385 0.505960 0.213779 -0.405338 -0.305560 -0.347485 -0.719836 -0.698681 -0.247073 -0.349865 -0.475252 -0.361371 0.199420 -0.621872 -0.090158 0.368869 -0.110137 0.464738 -0.311847 0.094436 -0.555819 0.251662 0.577889 -0.030758 -0.584275 0.656989 0.122678 1.727274 0.029887 0.537245 -0.221718 0.603407 -0.316009 -0.750215 -0.241281 0.955378 0.729531 -0.005669 0.146630 0.103975 0.275645 0.530323 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__copy_move_a > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = -0.701501 -0.485784 2.732822 -0.031424 -1.544569 -3.139777 -1.422799 -6.169157 2.813410 1.551983 3.449139 0.335847 2.294415 -1.795094 0.109666 1.379865 1.306706 -2.311365 1.017735 -1.438931 -0.240636 4.513661 0.116315 1.344733 -0.021896 -4.138617 1.505439 0.170346 2.078565 2.243022 1.233315 -0.473061 -1.167623 0.853811 0.580914 2.648669 1.134766 1.106772 -1.546907 0.070887 -0.252808 -1.271199 1.935245 -0.436991 3.841066 -0.843623 1.507069 0.644108 -0.777311 -1.743505 -1.185081 2.117709 -2.381915 0.346341 0.007314 -1.379959 -0.379255 -0.491145 -1.023494 -0.542263 -1.041022 -1.741531 -1.705973 0.872874 -1.406123 1.550918 -1.635631 -0.358844 -0.657663 -0.858272 2.031067 1.169635 0.868525 1.821218 -4.247133 0.191712 0.117663 0.248353 1.476142 -0.055413 -0.400786 -0.843564 -1.653007 -2.146397 2.951953 3.070555 0.108447 0.058287 -2.213140 1.218730 -1.304449 -0.370840 1.462111 1.270119 -2.638242 -0.679396 0.089191 -0.826047 -1.029445 -3.275894 0.967730 -1.528912 1.048860 0.171940 0.047194 -0.678924 -1.127641 -0.045492 -2.420430 -2.198345 0.826461 -1.103388 0.602971 3.540365 -1.856632 0.023612 -2.282469 -0.447046 0.222710 1.328249 1.276778 1.301657 2.403960 2.499695 1.419965 -2.418665 -2.143268 2.241457 2.591599 0.879160 0.380466 -2.157632 -1.316776 0.985255 -1.307918 -3.687424 -2.179782 1.326969 2.033744 -0.512646 -0.099119 0.101589 -0.675068 2.336514 2.769965 -0.324925 0.245618 0.772552 -2.508228 2.100167 3.521412 -0.349725 1.979169 -1.449490 0.013067 2.298151 -2.512411 0.901852 0.988185 0.232028 -1.849692 -1.181968 -0.125729 1.545297 0.582017 1.920276 -1.539195 1.885410 -1.141173 -2.847698 -3.915192 -0.517289 3.879269 0.697686 2.276672 -2.479771 -1.158880 0.697181 2.582418 1.206363 -2.086626 1.530609 -2.366586 1.700658 -3.348627 -2.985962 4.743672 4.377599 2.637501 0.511933 1.549758 2.778021 -3.964051 -0.745863 -0.895953 1.767382 -0.050213 -5.129384 -1.232925 0.502109 -2.690213 -2.350977 -0.733554 1.268993 0.379998 1.219368 2.626065 0.446416 -0.181765 -0.801890 2.589806 -0.693364 -1.737814 -0.590540 0.386624 0.505256 1.127440 -1.360201 1.733033 1.469299 -1.591182 0.991319 1.857279 0.595486 0.384445 3.367969 3.524640 -1.152511 1.776389 -1.063092 -0.780722 1.333729 -0.440082 0.851239 0.195737 0.045797 0.589780 0.373578 1.730510 -1.391106 -1.902651 -1.969215 -0.729072 0.850185 2.308984 0.835316 -3.585563 -3.475195 0.171708 0.715528 2.796975 0.247965 3.907577 -1.529067 1.253576 -4.288375 0.449050 1.130509 -0.075170 1.765496 0.289253 -0.797923 -0.875403 -1.025718 -2.396490 -2.957413 -0.762866 -1.606079 -1.332615 -2.745724 3.187857 -1.947979 -0.672696 0.489251 0.451683 2.689623 -0.022627 -0.009016 -2.731309 1.591924 1.251780 -0.031712 -1.731342 2.431635 0.270115 5.657910 -0.952170 0.817854 -0.348923 2.282672 -1.316834 -2.512529 -0.080008 3.030599 2.898705 0.173638 -0.945078 -0.796170 0.192332 1.246069 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__niter_wrap<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, int*) = -0.654974 0.262636 2.293177 0.423195 -1.013927 -2.059962 -0.948624 -4.058949 1.525438 0.749991 2.453701 -0.391620 1.246467 -0.519863 -0.022185 0.758395 0.915753 -1.393195 0.914878 -0.854628 -0.054424 2.650820 0.122916 0.554587 0.118057 -2.593467 1.261361 0.483174 1.221324 1.260705 0.801438 0.102659 -0.457582 0.749228 0.267328 1.366679 0.635715 0.960188 -0.937627 0.252073 -0.221852 -0.909982 1.099308 -0.075100 2.428700 0.142397 1.353739 0.358942 -0.738718 -0.810541 -1.579662 1.837888 -1.778814 -0.036493 -0.453683 -1.175807 0.096722 -0.582714 -0.776005 -0.872444 -0.785478 -1.045898 -1.180615 0.608350 -1.231802 1.368084 -0.888838 -0.253622 -0.391766 0.104460 1.546731 1.009696 0.661184 1.542912 -2.747366 0.522359 0.153015 0.466586 1.059392 -0.631339 0.023422 0.105490 -1.089786 -1.572932 2.128380 1.835864 0.612526 -0.120184 -0.960427 0.779148 -1.104015 -0.341740 0.468261 1.199750 -1.510990 0.118224 -0.047892 -0.592241 -1.230754 -1.969998 0.539877 -1.222929 0.770754 0.481520 -0.175202 -0.301405 -1.121673 0.046174 -1.519102 -1.891008 0.366979 -1.194072 0.443101 2.291944 -1.428899 0.156671 -1.300722 -0.190950 0.240591 1.110036 0.511242 1.143330 1.278165 1.887584 0.631123 -1.382058 -1.379086 1.225647 1.597181 0.848474 0.534805 -1.536746 -1.138094 0.099360 -0.681930 -2.308393 -1.239270 1.054113 1.429901 -0.322407 -0.721470 0.428802 -0.605821 1.802082 1.897450 0.180465 0.126300 0.669236 -1.687414 1.529593 2.660983 -0.451087 1.509663 -0.819888 0.264670 1.557263 -1.660214 0.745312 0.920497 0.184649 -1.027499 -0.956127 -0.662724 1.070035 1.006893 1.062275 -0.119878 1.104685 -0.472474 -2.245631 -2.567397 -0.353215 2.703574 -0.093895 1.600520 -1.785306 -0.868956 0.467785 1.859975 0.663362 -1.271612 0.645508 -1.377886 1.126495 -2.225697 -2.290288 2.797521 2.565997 1.316336 0.522383 1.060336 1.938622 -2.515232 -0.764077 -0.488755 1.491142 -0.592671 -2.929042 -1.042968 0.177380 -1.718588 -1.615511 -0.476338 0.966954 0.244703 0.887255 1.515017 0.309769 -0.399494 -0.575279 0.976821 -0.768933 -1.582959 -0.097551 0.092803 0.526557 0.596161 -1.062861 1.174619 1.167017 -1.340398 0.394433 1.184905 0.386454 0.180507 2.363928 2.467826 -0.444844 1.211527 -0.334723 -0.635596 1.311983 0.124610 0.764881 0.138817 -0.072501 0.363529 0.327258 1.266468 -0.960278 -1.590839 -1.797054 -0.181893 0.464581 1.634625 0.371211 -2.139034 -2.342162 0.025908 1.254466 1.800430 0.004070 2.833341 -0.592844 0.484183 -2.912019 0.234417 0.934359 -0.261607 1.192162 0.415191 -0.789472 -0.737732 -0.663212 -1.537912 -1.791009 -0.780599 -1.273904 -1.175242 -1.461771 1.806411 -1.282190 -0.340347 0.469353 0.605235 1.372178 0.261496 -0.134376 -1.502867 0.686341 1.371840 0.087979 -1.391826 1.854611 -0.117587 4.097970 -0.828159 0.545218 -0.498977 1.188805 -0.412575 -1.125742 0.076884 2.612311 1.768417 0.091752 -0.543152 -0.569338 0.129373 1.081617 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = -1.084859 0.299905 3.013992 1.696824 -1.500885 -2.049187 -1.114066 -3.487514 1.749958 0.548648 2.239140 -0.082404 1.074164 -0.933333 -0.309156 -0.422717 0.735894 -1.117955 0.618855 -0.910946 0.055135 2.840325 0.987950 -1.429503 0.215871 -3.317844 2.406183 0.850094 1.330157 2.105318 0.392267 0.279584 -0.605426 1.435119 -0.242803 0.592001 0.288281 0.991456 -0.808935 0.173029 0.743736 0.341027 1.336544 -0.027132 2.437273 0.881723 1.078734 0.327458 -1.339256 -0.807313 -1.168650 1.291430 -2.003138 0.518500 -0.463458 -0.234587 0.286369 -1.280386 -0.702837 -2.243649 -0.087034 -0.446905 -1.108049 0.544671 -1.981914 1.144854 -0.592685 -0.720070 0.110783 -0.202299 1.630523 1.097556 0.618223 0.269297 -2.276576 0.799678 0.191966 0.920889 1.389249 -0.561463 -0.539996 0.227840 -1.112909 -1.632060 1.176438 1.256152 0.567243 0.105166 0.175103 -0.264320 -0.432711 -0.387605 0.010056 1.564047 -1.280531 0.350007 -0.456743 -0.349161 -0.884324 -1.304558 0.368257 -1.435693 0.947818 1.354027 -1.000194 -0.105757 -0.373907 0.219356 -1.111758 -1.837002 0.314341 -1.286359 0.991805 2.548938 -1.069985 -0.169948 -1.201338 -0.287311 0.393975 1.883989 -0.101716 1.042323 1.746918 2.343273 0.454950 -1.631436 -1.004768 1.248356 1.362215 1.197597 1.064234 -2.060149 -1.272895 -0.293322 -0.183937 -2.484212 -0.644169 0.512930 1.493385 -0.258635 -1.737406 1.116985 -0.986101 2.150785 1.821656 0.468087 0.348051 0.460271 -1.910573 2.047816 3.582304 -0.404632 1.102503 -1.111881 -0.966685 2.491335 -1.517773 1.140929 0.555786 0.010940 -0.462941 -1.265605 -0.072054 1.553378 0.550222 1.124876 0.839160 0.822026 0.139846 -2.929238 -2.661703 -0.161827 2.465686 0.396480 3.081811 -2.059472 -0.502355 -0.189501 2.133846 0.782659 -0.768744 0.267320 -1.141099 1.191432 -3.196016 -2.884309 3.085437 2.959687 0.919690 0.582148 1.460641 1.670775 -1.075732 -0.860065 -0.731715 1.330761 -0.249600 -1.163999 -0.430013 0.301737 -1.883043 -1.842015 0.186917 0.883971 1.219957 -0.539448 -0.182250 0.059957 -1.168811 -1.685333 0.777318 -1.418101 -1.232293 0.190977 0.061657 0.430232 0.686952 -0.778542 0.464318 0.722696 -0.809779 0.271075 1.011846 0.940021 0.149507 1.721419 2.419854 -0.454345 0.835445 0.587682 -0.641531 3.596271 -0.157587 0.759470 0.629255 0.557698 0.688219 0.579251 0.999678 -1.099688 -0.543903 -2.310465 0.605859 0.492831 1.502355 -2.162712 -1.884341 -2.540638 -0.329105 1.288234 1.539892 0.023034 3.789934 -0.438574 0.013361 -3.587145 -0.073313 1.709143 -0.078561 1.669696 0.956931 -1.273290 -2.113301 -0.852676 -1.340288 -0.120553 -1.275361 -1.444056 -1.412789 -0.428022 1.582108 -0.936487 0.419641 1.862992 0.222774 1.041457 -0.241198 0.049294 -1.318451 -0.502165 0.400235 0.476165 -1.673045 2.205079 -0.419607 3.753566 -1.036836 1.038312 -1.004757 1.449409 -0.514433 -1.422970 -0.168948 3.002322 1.248766 0.301354 0.077031 -0.378989 -0.316542 1.555986 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__advance(int*&, long, std::random_access_iterator_tag) = -1.029093 0.405571 3.702158 2.512044 -2.511789 -3.265423 -1.614619 -4.464813 2.349167 0.293172 2.703875 0.405049 1.141389 -1.876969 0.093224 -0.495573 1.025338 -0.889099 -0.148814 -1.308936 -0.731110 3.075806 0.957579 -2.834306 0.548072 -3.801958 2.244106 1.911730 1.253652 1.932254 0.303714 -0.208955 -1.321244 2.054347 -0.975237 0.416535 1.119602 0.639947 -1.564638 -0.441273 1.212195 1.468859 2.499177 -0.514613 2.944314 0.646349 1.347019 0.921927 -2.395926 -0.853398 -0.627431 2.543949 -1.668572 1.663294 0.593240 0.654390 0.693713 -2.431957 -0.617063 -2.503939 0.023155 -0.046960 -1.234191 0.010151 -1.790683 0.472072 0.640060 -1.473438 1.328247 -0.541237 1.953973 0.416415 0.069645 -0.476484 -2.015915 0.539277 0.695571 1.508696 1.794176 -0.021158 -0.038873 -0.330493 -1.319419 -1.719473 1.094755 0.939517 0.910961 0.546832 -0.474274 -0.665924 0.456775 -1.016941 0.453837 1.440852 -1.651707 -0.233886 -0.364304 -0.744895 -1.739647 -1.382261 0.543049 -1.283149 1.231559 1.495173 -1.212570 0.037213 0.027216 0.540478 -1.502855 -1.707043 0.636390 -1.308649 1.207415 3.156808 -0.938778 -0.794037 -0.828364 -0.872579 -0.361168 2.306297 0.078378 0.666394 2.577013 3.252728 0.804237 -2.157111 -1.415966 0.724819 2.067127 2.017719 1.459223 -2.966371 -1.242342 0.297196 -0.769384 -3.774583 -0.465212 0.175261 2.344719 0.413731 -2.503201 1.162674 -1.241211 2.863235 1.083805 0.739046 0.314126 0.145635 -2.447060 2.574933 3.928569 -0.564925 1.612917 -1.111849 -1.521623 2.004281 -1.411935 1.255722 0.856967 -0.882042 -0.088386 -1.179880 0.227780 2.135764 0.650684 1.026305 0.266128 1.064234 -1.032551 -3.814358 -4.008249 0.416639 2.442610 0.505770 4.687904 -2.591652 -1.925767 -1.038899 3.302585 -0.800987 -1.071933 0.712153 -1.905161 1.819393 -2.797178 -3.342519 4.761191 4.322999 1.188754 0.352627 2.963247 1.148768 -1.711444 -1.116921 -1.041110 0.791406 1.292306 -1.563691 -0.080743 0.405633 -2.519575 -1.721250 0.356224 0.963198 1.074537 -0.716496 -0.237798 0.132846 -2.001396 -1.812553 1.089472 -1.690361 -0.328167 0.544646 0.051984 0.310089 1.620488 -1.041502 -0.845683 0.221737 -1.398998 0.477645 0.847015 2.172416 0.820694 2.824105 2.862827 -0.316417 3.212023 1.007342 -1.264721 4.679783 -1.069405 0.913056 0.868735 1.383579 0.730580 0.826653 1.517338 -1.416723 -0.072070 -2.946461 0.559093 0.484199 1.775904 -3.576607 -2.241577 -3.622471 -1.073641 1.018044 1.542548 -0.586774 4.614884 -0.746488 0.012450 -5.482963 -0.338502 1.989330 -0.018946 1.549391 1.048155 -1.906936 -4.675766 -0.773935 -2.073871 -0.922745 -1.116601 -1.427565 -1.534912 -1.333205 2.687340 -1.215750 0.824209 3.484248 -0.168040 1.195915 -1.136340 0.243871 -1.018103 -1.193386 0.490232 0.152913 -2.256166 2.781050 0.000000 5.968686 -0.688984 1.801456 -1.553217 1.458307 -0.348907 -2.090969 -0.671051 3.100950 1.939624 0.587891 0.234628 0.436257 -1.405496 2.520514 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.125899 0.011887 0.950752 0.447138 -0.715566 -1.555506 -0.552916 -2.109154 0.897153 0.504805 1.182254 0.051931 0.910464 -0.548884 -0.125560 0.244282 0.395874 -0.509366 0.219925 -0.629970 -0.855604 1.651034 0.045317 0.023203 0.067812 -1.346402 1.386768 0.332667 0.448464 1.160446 0.407481 0.103477 -0.280051 0.559446 -0.094338 0.746370 -0.080868 0.682628 -0.160554 0.119108 0.481745 -0.423588 0.943230 0.196026 1.113190 0.552018 0.437025 0.285716 -0.331823 -0.633439 -0.389611 0.141525 -0.979173 0.209398 -0.752740 -0.268104 0.412997 -0.333142 -0.149555 -0.389815 -0.139278 -0.605062 -1.010948 0.262703 -0.928344 0.438740 -0.568679 -0.642430 -0.310328 -0.276362 0.762377 0.316252 -0.213422 0.085240 -1.541469 -0.105691 0.174634 0.029543 0.780561 -0.132988 -0.467292 -0.344345 -1.092249 -0.921581 1.205723 0.737953 0.342752 0.385109 -0.441698 -0.198798 -0.339777 0.091970 0.804006 0.761095 -0.332660 -0.143213 0.088319 -0.258379 -0.585639 -1.182086 0.590493 -0.527294 0.539290 0.266495 -0.327958 -0.204197 -0.027349 -0.045229 -0.762224 -0.974665 0.007093 -0.915459 0.549982 1.217280 -0.273643 -0.347016 -0.766498 -0.496908 0.369798 0.777124 0.617030 0.080622 1.373014 0.869870 0.291826 -1.031784 -0.855088 0.573067 0.570506 0.410432 0.248296 -0.987539 -0.666497 0.275522 -0.622435 -1.464973 -0.563978 0.239412 0.609157 -0.717298 -0.365167 1.050833 -0.475096 0.335033 1.150294 0.198992 0.215669 0.161261 -0.944731 0.753444 1.487419 -0.090730 0.572393 -0.793123 -0.643090 1.355467 -0.587221 0.138503 0.420155 -0.352896 -0.787339 -0.283414 0.464133 0.740011 -0.162077 0.574962 0.186471 0.646413 -0.519652 -0.863209 -1.297695 0.077191 1.727523 0.666803 1.560045 -1.244464 0.080817 0.316711 0.922797 0.404365 -0.467651 0.382588 -0.577890 0.677592 -1.784941 -1.284516 1.615040 0.864666 1.028869 0.110627 0.410732 0.776719 -0.497898 -0.345668 -0.535448 0.644110 0.326155 -1.104240 -0.208298 0.097982 -1.098148 -0.681242 -0.163890 0.580082 0.386642 -0.323490 0.397146 -0.809352 -0.238384 -0.882421 0.693546 -0.515223 -0.262322 -0.061431 -0.027689 -0.189695 0.215109 -0.068727 0.468862 -0.007155 -0.235304 0.448723 0.619248 0.210779 0.051836 1.382960 1.438317 -0.974076 0.125779 -0.212520 -0.010109 1.149476 -0.222566 0.451438 0.336393 0.856622 0.453960 0.162385 0.991248 -0.500109 -0.345195 -0.948976 -0.126088 0.803441 0.549398 -0.289072 -0.473256 -1.816233 -0.118066 -0.068050 1.702802 -0.025353 1.572515 -0.341672 0.516876 -1.308643 0.225570 0.404621 -0.174772 0.628799 0.265140 -0.498165 -0.213188 -0.479358 -0.914714 -0.796919 -0.360063 -0.369728 -0.762856 -0.288962 0.065598 -0.675752 -0.091802 0.565557 -0.147121 0.360918 -0.501488 0.154671 -0.795708 0.217172 0.615563 -0.076219 -0.698024 0.816407 0.085739 1.913011 -0.031497 0.800716 -0.171705 0.968186 -0.520421 -1.047256 -0.283348 1.211610 0.697071 -0.058809 0.254362 0.062153 0.509417 0.669433 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = 0.040492 0.101345 0.666596 0.089534 -0.273302 -0.565807 -0.228419 -1.190938 0.568376 0.241515 0.511822 0.023480 0.451155 -0.326735 -0.127053 0.113452 0.168390 -0.199197 0.234737 -0.194118 -0.085673 0.878009 -0.104522 0.124812 0.011272 -0.871691 0.500722 0.037081 0.590379 0.567223 0.144461 -0.121505 -0.225319 0.224683 0.036252 0.224695 0.191042 0.269104 -0.410302 0.027813 -0.092222 -0.172542 0.345653 -0.034874 0.562158 -0.033447 0.066289 0.124996 -0.024168 -0.212852 -0.175395 0.263019 -0.370495 0.192457 -0.051419 -0.308125 -0.094901 0.023550 -0.071968 -0.074329 -0.089585 -0.285516 -0.208123 0.141828 -0.441342 0.188983 -0.387236 -0.225765 -0.125829 -0.164246 0.351353 0.282661 0.278443 0.152683 -0.968521 0.111935 0.060580 0.119716 0.351104 0.061468 0.028305 -0.126722 -0.365256 -0.470219 0.485362 0.664401 0.021623 0.053972 -0.309223 -0.037461 -0.132410 -0.037974 0.304281 0.322678 -0.345596 0.033489 -0.417899 -0.011410 -0.008380 -0.864766 0.110177 -0.331138 0.229122 -0.023098 0.005551 -0.039829 0.156683 0.128297 -0.164762 -0.422162 0.232108 -0.196250 0.107870 0.815274 -0.133276 -0.149458 -0.358439 -0.118905 -0.052691 0.294763 0.168125 0.194631 0.361159 0.430055 0.354163 -0.475219 -0.370018 0.562669 0.262292 0.216358 0.116151 -0.494541 -0.204058 0.138614 -0.180104 -0.818192 -0.278762 0.128744 0.330165 -0.325164 0.018676 0.045064 -0.257090 0.326383 0.479188 -0.038202 0.162642 0.126804 -0.398997 0.392526 0.741096 -0.060101 0.241126 -0.345699 -0.123432 0.374714 -0.301206 0.246179 -0.108718 0.063066 -0.137545 -0.285024 0.101755 0.407220 -0.041038 0.324079 -0.124367 0.258273 -0.391390 -0.617036 -0.633882 -0.065223 0.808013 0.076507 0.524300 -0.450611 -0.214014 0.127190 0.570657 0.255874 -0.183671 0.315480 -0.428003 0.368893 -0.720676 -0.667802 0.799184 0.777093 0.388745 -0.065254 0.167787 0.471625 -0.612934 -0.329126 -0.236807 0.195067 -0.036740 -0.976047 -0.407770 0.080661 -0.499730 -0.309019 0.092673 0.179135 0.312832 0.210057 0.352061 -0.023788 -0.097516 -0.425673 0.640039 -0.225027 -0.183096 -0.032848 0.102809 0.004224 0.301927 -0.277033 0.190961 0.374406 -0.154076 0.213181 0.276874 0.049167 -0.125235 0.611130 0.587126 -0.160252 0.187597 -0.015583 -0.204665 0.680698 -0.163078 0.145190 0.103285 0.041195 -0.001370 0.204592 0.303631 -0.319389 -0.359926 -0.540504 -0.248043 0.104935 0.334064 0.061297 -0.647152 -0.566991 0.013181 0.010296 0.490696 0.173236 0.843206 -0.282359 0.235442 -0.727325 0.067985 0.315410 -0.059046 0.537756 0.137444 -0.210238 -0.223339 -0.219121 -0.434422 -0.487870 -0.281123 -0.462110 -0.226739 -0.364474 0.413416 -0.222876 -0.012241 0.233072 0.051105 0.485559 -0.313940 0.031677 -0.579428 0.235455 0.217305 -0.059031 -0.385272 0.385226 0.043549 1.038387 -0.181959 0.160575 -0.150942 0.320651 -0.256096 -0.527879 -0.088810 0.653196 0.376723 0.188980 -0.169079 -0.112982 -0.029419 0.257173 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = -1.280455 0.021887 1.854335 0.458144 -0.755687 -0.979214 -0.682743 -2.351843 1.026715 0.540422 1.905836 -0.162770 0.924106 -0.491229 0.021534 -0.158833 0.812760 -1.207024 0.787794 -0.462951 0.730670 1.653399 0.512866 0.029142 0.013840 -1.735885 0.909013 0.045218 0.691062 1.206233 0.497486 0.126093 -0.586475 0.477974 0.480074 0.898317 0.763252 0.703475 -0.484718 -0.081508 -0.155503 -0.753696 0.591430 -0.113505 1.898928 -0.132427 0.614503 0.037365 -0.909265 -0.730757 -1.069042 1.007680 -1.598673 -0.068515 0.125955 -0.886669 0.043674 -0.215364 -0.636770 -1.758119 -0.360815 -0.976989 -0.365457 0.458488 -0.764491 1.188907 -0.691401 0.121456 -0.283462 -0.214116 1.056022 0.928055 1.187586 1.567709 -1.584081 0.636388 -0.014803 0.406617 0.756426 -0.285810 -0.184272 0.087722 -0.365036 -1.078175 1.059587 0.980791 0.294476 -0.128688 -0.508501 1.023002 -0.592194 -0.267018 -0.153273 0.757610 -1.161032 0.230835 0.092606 -0.304099 -0.291630 -1.226784 0.148035 -1.040226 0.307508 0.990427 -0.470144 -0.372414 -1.496476 0.147422 -1.284981 -1.316083 0.799705 -0.794850 -0.147882 1.292718 -1.477274 0.410710 -0.869010 0.175632 0.679746 0.872770 -0.103127 1.293285 0.052469 1.428666 0.483812 -0.953748 -0.634219 1.122016 1.468038 0.428087 0.332083 -0.871020 -0.752818 0.045527 -0.516268 -1.339825 -0.969314 0.947145 1.225284 0.432984 -1.023367 0.015934 -0.557047 1.598063 1.441936 0.441588 -0.015771 0.663228 -1.394521 1.096343 1.629570 -0.445053 1.209253 0.105262 0.354051 1.119214 -1.361184 0.748318 0.409490 0.470041 -0.346267 -0.901882 -0.960558 0.777931 1.198484 1.078579 -0.390587 0.701965 0.028079 -2.061965 -1.856735 -0.528758 2.187220 -0.038936 0.748565 -1.188324 -0.631316 0.350423 1.481689 0.546491 -1.189286 0.193427 -0.654141 0.774118 -2.020134 -1.730121 2.083333 2.090872 0.669676 0.615744 0.562111 1.511693 -1.732604 -0.415400 -0.343228 1.072593 -1.075144 -1.684846 -0.809337 0.187726 -1.114329 -1.464784 -0.073996 0.568527 0.300761 0.424425 0.814803 1.098520 0.051340 -0.159776 0.514718 -0.606068 -1.724026 -0.118358 0.101704 0.961607 0.286925 -0.747450 0.882120 1.159360 -1.112182 -0.111559 0.747473 0.365016 0.286742 1.519924 1.630880 -0.084413 0.168758 -0.101773 -0.705173 1.328924 -0.021130 0.461319 0.001674 -0.297451 0.592084 0.187526 0.810754 -0.732004 -1.116980 -1.393047 -0.211341 0.098510 1.521373 -0.485448 -2.180305 -1.330159 0.475839 1.261381 0.762414 -0.112084 2.300638 -0.361279 -0.026594 -2.099009 0.000583 1.215205 -0.199633 0.924803 0.377114 -0.433761 -1.090392 -0.561355 -1.015794 -0.390905 -0.704075 -0.860663 -0.507462 -0.966424 1.744752 -0.760257 -0.124550 0.110220 0.559445 1.361964 0.949629 -0.245878 -1.194194 0.446103 0.289128 0.319189 -0.979432 1.881440 -0.077326 2.559711 -0.945569 -0.083993 -0.423763 1.055645 -0.429152 -0.504703 0.231392 2.024523 1.498212 0.278730 -0.519371 -0.450853 -0.278052 0.713660 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.264293 0.361642 1.347707 0.399324 -0.889859 -1.536489 -0.567341 -2.392211 1.094025 0.329190 0.854178 -0.077915 0.598532 -0.610764 -0.258910 0.808566 0.397907 -0.182929 0.176996 -0.634974 -0.847604 1.464265 -0.019499 -0.119592 0.414656 -1.702628 1.253810 0.084902 0.844475 1.022790 0.426052 -0.157000 -0.239691 0.772444 0.506126 1.037033 0.298670 0.455806 -0.614279 0.488729 0.043846 -0.386919 0.755268 0.334496 1.247009 0.509475 0.476086 0.366197 -0.529617 -0.164128 -0.534979 0.775297 -1.003676 0.455347 -0.434637 0.055790 0.004514 -0.656557 -0.123812 -0.049099 -0.527905 -0.646860 -1.040254 0.278294 -1.113659 0.298837 -0.601297 -0.513706 -0.441136 0.216004 0.761362 0.523987 -0.173386 0.349077 -1.592505 -0.147715 0.218821 0.418232 0.941725 -0.466198 -0.097476 -0.351124 -1.054982 -1.061811 1.334913 0.688113 0.405142 0.128803 -0.219926 -0.326462 -0.593306 -0.055818 0.725856 0.879233 -0.745934 -0.233575 -0.416579 -0.248530 -0.588536 -1.631043 0.344176 -0.606513 0.496711 -0.211986 -0.195519 0.008103 0.243487 0.353724 -0.387036 -0.594499 0.116368 -0.497552 0.294960 1.397214 0.144971 -0.478951 -0.645397 -0.547544 0.016155 0.777994 0.495272 0.102495 1.487469 1.043908 0.704798 -0.765381 -0.883333 0.418356 0.385217 0.602344 0.570529 -1.092327 -0.709771 0.230990 -0.200211 -1.662137 -0.343291 0.092864 0.559916 -0.441742 -0.202625 0.115480 -0.414955 0.483135 0.665547 0.097495 0.182170 -0.003965 -0.802952 0.801840 1.797688 -0.266977 0.485083 -0.963865 -0.074490 0.873981 -0.662139 0.139320 -0.080570 -0.406034 -0.443781 -0.343273 0.122445 0.860198 -0.180178 0.072818 0.203650 0.547542 -0.836030 -1.019450 -1.175869 0.008450 1.569142 0.044862 1.344476 -1.126468 -0.209160 -0.201084 0.929908 0.355810 -0.095260 0.359826 -0.972943 0.721025 -1.117494 -1.344252 1.857682 1.165387 0.934713 -0.050860 0.392234 0.894129 -1.226985 -0.645834 -0.515308 0.315313 0.231524 -1.510630 -0.786877 0.176486 -1.256995 -0.502418 -0.040699 0.545642 0.535555 0.261503 0.482748 -0.221893 -0.381367 -0.965414 0.736242 -0.505172 -0.287193 0.134187 0.052134 -0.033658 0.572196 -0.296460 0.241407 0.278912 -0.340033 0.376214 0.667236 0.507622 0.001958 1.394059 1.538129 -0.323897 0.630046 0.100437 -0.363842 0.949424 0.028057 0.579450 0.385001 0.205629 0.069472 0.283266 0.994632 -0.549959 -0.584075 -0.993848 -0.277979 0.395481 0.591584 0.211901 -0.683071 -1.346544 -0.317848 0.185184 1.257142 0.093601 1.435194 -0.213470 0.601885 -1.526209 0.150536 0.741145 -0.148653 0.753730 0.368758 -0.685249 -0.530311 -0.472703 -0.877275 -1.139621 -0.526172 -0.104207 -0.771393 -0.275360 0.522959 -0.503943 -0.013442 0.767010 0.200187 0.655602 -0.686080 0.328448 -0.816263 0.150805 1.034452 -0.153611 -0.786016 0.518407 0.320518 2.299604 -0.027672 0.582771 -0.302189 0.182518 -0.137702 -0.901379 -0.378255 1.217602 0.731595 0.200483 0.171659 -0.103901 0.133551 0.938880 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::max_size(std::allocator const&) = -0.052266 0.108906 0.574167 0.097767 -0.259329 -0.495907 -0.209258 -0.880356 0.401903 0.189770 0.432928 0.014961 0.382129 -0.227590 -0.097624 -0.017510 0.146119 -0.164099 0.196853 -0.176920 -0.126057 0.639917 -0.016589 0.027968 0.020672 -0.680283 0.526984 0.028033 0.382192 0.568024 0.098127 -0.072924 -0.221409 0.227798 0.035830 0.154579 0.170082 0.255377 -0.235294 0.065085 -0.008021 -0.121037 0.300062 0.018208 0.437269 0.144722 -0.056367 0.122524 -0.092200 -0.213643 -0.076438 0.060970 -0.371154 0.172018 -0.075874 -0.196566 -0.013325 0.002598 -0.038003 -0.224912 -0.020928 -0.272729 -0.156379 0.130617 -0.406465 0.149874 -0.340074 -0.243214 -0.110431 -0.161390 0.285335 0.229286 0.223174 0.146252 -0.703243 0.092472 0.064895 0.118159 0.322968 -0.007061 -0.073707 -0.093138 -0.325101 -0.415190 0.320834 0.443999 0.067797 0.080154 -0.181542 -0.054126 -0.048413 -0.004151 0.243771 0.303111 -0.166620 0.037104 -0.315251 0.002056 -0.006888 -0.726328 0.094588 -0.269641 0.195349 0.083432 -0.084515 -0.093515 0.042903 0.128495 -0.158390 -0.356473 0.231266 -0.224273 0.081184 0.602748 -0.110505 -0.120252 -0.276978 -0.142415 0.085520 0.311000 0.125120 0.127919 0.259967 0.377186 0.244378 -0.403545 -0.293939 0.399212 0.211886 0.165385 0.141662 -0.427713 -0.199693 0.117638 -0.221203 -0.643010 -0.190357 0.065658 0.270228 -0.266814 -0.089237 0.155435 -0.293043 0.209801 0.416205 0.085413 0.132564 0.062572 -0.361086 0.327780 0.583764 -0.075640 0.222878 -0.223090 -0.180076 0.370568 -0.219703 0.195339 -0.080925 0.001448 -0.107355 -0.216178 0.089173 0.359728 0.010513 0.313931 -0.022804 0.190543 -0.300131 -0.508808 -0.486379 -0.027794 0.752983 0.094262 0.463178 -0.416968 -0.104245 0.101419 0.523232 0.208554 -0.161722 0.184861 -0.235184 0.296930 -0.698496 -0.561033 0.649494 0.590059 0.313970 -0.044937 0.076398 0.375423 -0.376722 -0.261618 -0.220794 0.152491 -0.108283 -0.653526 -0.333309 0.071320 -0.408254 -0.228789 0.100552 0.176242 0.324071 0.047911 0.140094 -0.017878 -0.073491 -0.398958 0.437450 -0.218372 -0.166631 0.017425 0.057610 0.024352 0.181923 -0.160848 0.123123 0.279871 -0.122578 0.153420 0.233488 0.077741 -0.071979 0.545743 0.433555 -0.179256 -0.024446 0.024960 -0.151635 0.670989 -0.157654 0.157381 0.115432 0.160193 0.061688 0.151976 0.306469 -0.257363 -0.267941 -0.479204 -0.206665 0.135813 0.270536 -0.086795 -0.517680 -0.519659 0.059679 0.002799 0.472580 0.098060 0.729754 -0.143411 0.180691 -0.527154 0.049259 0.290169 -0.082279 0.419972 0.150241 -0.181329 -0.253698 -0.204484 -0.383323 -0.285829 -0.241680 -0.308352 -0.161512 -0.162493 0.215374 -0.125705 0.004680 0.205820 0.015674 0.349272 -0.181064 0.019132 -0.465998 0.127615 0.170475 -0.057383 -0.318717 0.378945 0.071023 0.791233 -0.117068 0.152511 -0.108216 0.259909 -0.182182 -0.383703 -0.100577 0.560786 0.289162 0.171271 -0.059919 -0.034943 0.020409 0.218787 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::max_size() const = 0.095177 0.148932 0.480969 0.119003 -0.135292 -0.539005 -0.164454 -0.783879 0.338451 0.114219 0.340168 -0.052849 0.312569 -0.153144 -0.071066 0.114531 0.090164 -0.047101 0.122530 -0.152433 -0.182424 0.572543 -0.062039 -0.026713 0.046353 -0.584413 0.392649 0.156804 0.331956 0.424260 0.060753 -0.032004 -0.060211 0.218395 -0.127274 0.091999 0.092031 0.201996 -0.247220 0.074440 -0.032448 0.028029 0.261553 0.040041 0.324439 0.241083 0.061184 0.132855 -0.000669 -0.123902 -0.131658 0.201908 -0.227007 0.160372 -0.215432 -0.119035 0.046111 -0.080793 -0.023577 -0.116748 -0.016992 -0.054251 -0.232763 0.066695 -0.374514 0.095623 -0.162563 -0.277611 -0.067958 -0.027439 0.271521 0.159584 0.043983 -0.021072 -0.631885 0.055580 0.073607 0.123769 0.273487 -0.094594 -0.015891 -0.049065 -0.310217 -0.342984 0.390123 0.379379 0.137626 0.139462 -0.128891 -0.178169 -0.102090 -0.021658 0.246150 0.270735 -0.060031 0.052828 -0.206276 -0.000512 -0.120308 -0.520346 0.111365 -0.198866 0.174298 0.000730 0.091474 0.006231 0.151339 0.137509 -0.110719 -0.312025 0.120958 -0.202808 0.085393 0.535540 -0.024942 -0.134846 -0.167281 -0.145520 -0.055805 0.321960 0.132860 0.051455 0.318546 0.313006 0.145834 -0.319201 -0.268046 0.262246 0.157603 0.218044 0.155706 -0.433827 -0.196596 0.058919 -0.189124 -0.597618 -0.117771 0.060618 0.215700 -0.323139 -0.131439 0.291953 -0.214741 0.160861 0.313139 0.024996 0.127781 0.012786 -0.286181 0.288754 0.596226 -0.086654 0.194631 -0.292058 -0.183442 0.274696 -0.137322 0.131754 -0.014215 -0.106103 -0.079694 -0.135478 0.158239 0.316026 0.012550 0.200566 0.091304 0.162306 -0.316216 -0.393772 -0.419332 -0.013738 0.520678 -0.006658 0.554365 -0.336254 -0.160750 0.012097 0.428630 0.034577 -0.039709 0.149468 -0.279101 0.253264 -0.537351 -0.478941 0.567565 0.443641 0.326167 -0.059615 0.161676 0.297639 -0.227407 -0.224228 -0.119736 0.112262 0.058608 -0.560776 -0.260882 0.003366 -0.374675 -0.164601 0.029721 0.157842 0.142841 0.123053 0.127867 -0.208055 -0.198631 -0.349443 0.273334 -0.238190 -0.004052 0.046885 0.033183 -0.100892 0.165946 -0.190415 0.074073 0.225587 -0.118901 0.165154 0.174850 0.084596 -0.023231 0.475066 0.419172 -0.140411 0.217536 0.047448 -0.125728 0.564655 -0.085827 0.145416 0.099107 0.206982 0.016175 0.139684 0.239662 -0.200866 -0.196352 -0.447985 -0.107359 0.205624 0.154889 0.044425 -0.285455 -0.464817 -0.079967 -0.018626 0.503559 0.055751 0.587638 -0.128367 0.190896 -0.507831 0.076410 0.155789 -0.084759 0.277868 0.154365 -0.200821 -0.284637 -0.132980 -0.314033 -0.429438 -0.220904 -0.344863 -0.195132 -0.164593 0.094422 -0.195026 0.023984 0.299093 0.036774 0.186934 -0.311371 0.041901 -0.333981 0.074231 0.258373 -0.078440 -0.300367 0.171131 0.031941 0.777757 -0.065891 0.272887 -0.154677 0.190673 -0.115705 -0.328844 -0.115409 0.481076 0.207067 0.068705 0.045379 0.002158 0.058896 0.238370 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::__make_move_if_noexcept_iterator >(int*) = -0.099838 0.005259 0.756816 0.004963 -0.189901 -0.916818 -0.323388 -1.370424 0.617680 0.350844 0.805553 -0.008761 0.618667 -0.347074 0.015936 0.280029 0.269354 -0.408456 0.165290 -0.360201 -0.099949 0.956191 0.001201 0.122051 0.063329 -1.044550 0.460466 0.220771 0.357507 0.673024 0.229817 0.004649 -0.172325 0.306757 -0.115468 0.511414 0.313963 0.301190 -0.269983 0.050995 -0.011190 0.056637 0.450384 0.052487 0.854924 0.264445 0.179937 0.201300 -0.092135 -0.428309 -0.146315 0.388011 -0.480847 0.141767 -0.274407 -0.133972 0.044523 -0.262689 -0.126724 -0.350853 -0.051780 -0.118082 -0.472698 0.156476 -0.421003 0.276450 -0.156580 -0.278347 -0.177081 -0.259735 0.477109 0.179149 0.002231 0.199050 -0.937011 0.003948 0.081722 0.059990 0.436442 -0.206230 -0.255881 -0.205400 -0.450106 -0.555708 0.741569 0.703208 0.183362 0.294309 -0.392449 0.005806 -0.293880 -0.082031 0.424901 0.417034 -0.316660 -0.169181 0.181644 -0.170820 -0.287626 -0.592930 0.323217 -0.310576 0.247046 0.094289 0.139740 -0.100524 -0.183386 0.108324 -0.546171 -0.420807 0.245209 -0.398516 0.179974 0.782466 -0.322495 -0.091312 -0.484673 -0.239767 0.118413 0.547135 0.234806 0.131875 0.621735 0.556484 0.218972 -0.607419 -0.502190 0.446222 0.555110 0.281109 0.154480 -0.717069 -0.335241 0.196039 -0.498715 -0.925040 -0.411534 0.139615 0.455187 -0.342190 -0.296768 0.494542 -0.264923 0.394216 0.658190 0.012590 0.086530 0.102414 -0.639237 0.443762 0.934467 -0.148803 0.481229 -0.393348 -0.181628 0.459027 -0.433249 0.196365 0.259050 -0.209161 -0.358393 -0.167794 0.185927 0.457714 0.170868 0.514546 -0.183665 0.418942 -0.345556 -0.597105 -0.930025 -0.173785 0.863064 0.108083 0.862223 -0.620432 -0.276676 -0.019785 0.765142 0.057133 -0.323951 0.257044 -0.495602 0.399666 -0.851345 -0.722236 1.132270 0.974596 0.780949 0.052302 0.407543 0.526875 -0.521182 -0.127426 -0.080929 0.310540 0.090684 -0.992691 -0.229470 0.029424 -0.663139 -0.517961 -0.213508 0.321497 -0.033938 0.253376 0.469023 -0.147263 -0.158694 -0.335039 0.316032 -0.261122 -0.210277 -0.065049 0.079875 -0.057167 0.183343 -0.375032 0.279465 0.397200 -0.347008 0.270815 0.429448 0.181846 0.188181 0.807106 0.752991 -0.347257 0.442684 -0.185270 -0.143860 0.520237 -0.077721 0.258594 0.122132 0.290782 0.233728 0.102501 0.393756 -0.321947 -0.255410 -0.610161 -0.133428 0.423911 0.419868 0.192069 -0.650391 -0.879598 -0.043992 0.019219 0.919513 -0.029481 0.991799 -0.216212 0.360995 -0.963471 0.151581 0.231493 -0.129369 0.218355 0.191440 -0.291071 -0.529396 -0.194371 -0.626342 -0.876747 -0.216649 -0.412021 -0.340177 -0.497975 0.492403 -0.493395 -0.079013 0.341735 0.146133 0.404129 -0.194836 0.071726 -0.574655 0.232019 0.345960 -0.083262 -0.461706 0.348590 0.089871 1.298985 -0.177494 0.490373 -0.138402 0.593162 -0.282184 -0.574722 -0.148834 0.777599 0.582958 0.004982 0.020367 -0.089670 0.149666 0.411676 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.276677 -0.039513 0.756385 0.496314 -0.528501 -1.264941 -0.385675 -1.384018 0.673813 0.316224 0.942593 0.117681 0.752385 -0.527698 0.010131 0.112635 0.425620 -0.296585 0.078597 -0.475272 -0.447779 1.220709 0.209329 -0.258491 0.072181 -0.840606 0.866089 0.349118 0.275756 0.945883 0.271322 0.084780 -0.214656 0.411257 -0.190251 0.508270 -0.031477 0.465498 -0.213573 -0.061212 0.309196 -0.254967 0.751137 0.117934 0.866860 0.350482 0.428397 0.189688 -0.405909 -0.531099 -0.347541 0.256081 -0.744665 0.245974 -0.517938 -0.136724 0.406886 -0.209340 -0.111030 -0.729659 -0.015802 -0.344920 -0.727756 0.094724 -0.662776 0.320503 -0.306837 -0.525403 -0.196028 -0.255891 0.577041 0.221944 -0.089786 0.013171 -1.083096 -0.076837 0.118337 0.112884 0.605290 0.004204 -0.375633 -0.357681 -0.692991 -0.635190 0.872296 0.300517 0.294839 0.454614 -0.405888 -0.112133 -0.199994 0.059469 0.509112 0.429849 -0.257371 -0.042724 0.301642 -0.176815 -0.350093 -0.730020 0.401791 -0.374194 0.278729 0.314837 -0.101933 -0.116731 -0.301687 0.038708 -0.717387 -0.721415 0.177860 -0.641926 0.090485 0.794798 -0.362645 -0.184592 -0.440186 -0.235409 0.303044 0.692746 0.356743 0.184621 0.772506 0.673599 0.193353 -0.781200 -0.478554 0.376277 0.634265 0.349528 0.218516 -0.620312 -0.532952 0.247190 -0.588369 -1.118250 -0.432618 0.404243 0.603824 -0.238058 -0.565000 0.807213 -0.377358 0.391656 0.826250 0.238833 0.160935 0.110758 -0.796315 0.555890 1.075285 -0.188725 0.572329 -0.347007 -0.474493 0.999223 -0.451951 0.128921 0.270269 -0.355625 -0.417006 -0.183254 0.244092 0.606279 0.132991 0.457489 0.037126 0.472522 -0.402974 -0.841380 -1.084695 -0.039979 1.268306 0.509453 1.229868 -0.874833 -0.082050 0.135174 0.677641 0.023363 -0.444614 0.192986 -0.451802 0.526559 -1.575422 -1.003579 1.451600 0.755398 0.795254 0.167253 0.389385 0.606026 -0.281423 -0.209909 -0.327093 0.417485 0.233689 -0.766717 -0.139001 0.059852 -0.909735 -0.569604 -0.073310 0.394183 0.095090 -0.237405 0.295437 -0.521094 -0.213616 -0.505748 0.327042 -0.468427 -0.219760 -0.031004 -0.035465 -0.004314 0.132895 -0.086460 0.282478 0.055101 -0.345506 0.177653 0.297223 0.338379 0.270132 1.095390 1.166424 -0.633678 0.235092 -0.112876 -0.230333 1.049643 -0.267721 0.331080 0.163252 0.743214 0.476976 0.100417 0.746295 -0.377352 -0.186043 -0.792020 -0.127191 0.712820 0.504093 -0.442897 -0.497318 -1.323880 -0.025991 0.001717 1.237811 -0.210966 1.258344 -0.363521 0.313832 -1.183041 0.168142 0.384603 -0.138339 0.395376 0.266035 -0.402080 -0.541736 -0.354482 -0.698270 -0.431231 -0.273679 -0.309859 -0.449676 -0.261301 0.170930 -0.657362 -0.010507 0.476276 -0.144398 0.427179 -0.219100 0.094794 -0.549021 0.141758 0.338377 0.038922 -0.554256 0.705064 0.102732 1.533367 -0.022414 0.608284 -0.241960 0.788048 -0.409540 -0.741382 -0.248163 0.954859 0.724159 -0.061104 0.305382 0.142964 0.285090 0.558383 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference&>::type&& std::move&>(std::greater&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = -0.054381 0.038849 0.631329 -0.101947 -0.096664 -0.720051 -0.271728 -1.278703 0.468032 0.357829 0.800497 -0.142526 0.551242 -0.221674 0.037648 0.278626 0.195674 -0.374603 0.232359 -0.245711 -0.187550 0.789653 -0.100282 0.336890 0.051993 -0.814632 0.399182 0.142264 0.262724 0.474794 0.191942 -0.007309 -0.100945 0.205204 -0.058180 0.497197 0.271214 0.335889 -0.114727 0.059918 -0.048333 -0.113932 0.311868 0.017132 0.679092 0.229935 0.150594 0.116243 -0.058723 -0.359665 -0.109617 0.303955 -0.425971 0.061133 -0.238659 -0.265121 0.049202 -0.160107 -0.113830 -0.187015 -0.065612 -0.210977 -0.428129 0.155642 -0.317793 0.255307 -0.171523 -0.196146 -0.127834 -0.155090 0.395907 0.152911 -0.015347 0.311539 -0.793952 0.034314 0.139780 -0.061641 0.309951 -0.226949 -0.122093 -0.118793 -0.431311 -0.520275 0.786650 0.671847 0.224518 0.150484 -0.419404 0.130498 -0.254096 -0.036915 0.386877 0.427534 -0.229222 -0.133894 0.129411 -0.183145 -0.308421 -0.651220 0.265961 -0.353952 0.235548 0.126837 0.063727 -0.093566 -0.165906 0.142050 -0.444531 -0.477124 0.149025 -0.392215 0.204449 0.618089 -0.293903 -0.071904 -0.441417 -0.221097 0.159748 0.350514 0.288107 0.111083 0.605021 0.413809 0.227114 -0.509965 -0.496692 0.383694 0.443182 0.210545 0.034022 -0.654577 -0.269070 0.177800 -0.489840 -0.819331 -0.434491 0.111161 0.353556 -0.404379 -0.203430 0.474980 -0.187850 0.263460 0.638244 0.024105 0.036311 0.165562 -0.479536 0.312519 0.688773 -0.163979 0.405205 -0.316219 -0.142564 0.326033 -0.326622 0.118488 0.300117 -0.074319 -0.329252 -0.219762 0.122371 0.409732 0.162628 0.480580 -0.199763 0.362916 -0.332816 -0.429913 -0.791075 -0.110930 0.791452 0.049131 0.659356 -0.536358 -0.267606 0.124981 0.683940 0.067368 -0.328474 0.210696 -0.394193 0.329562 -0.650610 -0.632657 0.848378 0.693224 0.681908 0.016276 0.304116 0.454975 -0.576651 -0.101552 -0.161151 0.358227 0.032761 -0.973000 -0.278733 0.017536 -0.564301 -0.347487 -0.271508 0.257608 -0.070561 0.265174 0.450014 -0.128675 -0.106742 -0.171618 0.335257 -0.182750 -0.210953 -0.152774 0.049466 -0.029414 0.168399 -0.366076 0.289323 0.318307 -0.371318 0.225643 0.425952 0.074090 0.117950 0.868184 0.656607 -0.343586 0.275420 -0.252087 -0.075250 0.241781 -0.029067 0.145309 0.067488 0.235771 0.150466 0.115193 0.447882 -0.258108 -0.409734 -0.540141 -0.182387 0.346873 0.319136 0.378195 -0.480424 -0.801758 -0.043457 0.024142 0.917083 0.051346 0.822172 -0.126161 0.370125 -0.716597 0.125668 0.076739 -0.178805 0.208969 0.082162 -0.220021 -0.306230 -0.173628 -0.541358 -0.944501 -0.145694 -0.313634 -0.328408 -0.518574 0.358709 -0.380913 -0.115003 0.124421 0.230366 0.303082 -0.071964 0.023096 -0.510570 0.328138 0.447595 -0.125431 -0.405075 0.280719 0.122909 1.208999 -0.181705 0.384652 -0.126942 0.439647 -0.230894 -0.418792 -0.090558 0.627729 0.566713 0.042278 -0.073128 -0.043002 0.119291 0.356502 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__make_heap<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter >&) = -0.521172 0.764895 5.700788 1.801687 -3.566738 -5.018382 -2.475493 -8.646526 3.618465 1.057271 4.550750 -0.019803 1.971268 -1.709374 -0.027209 0.876321 1.543243 -2.530395 1.130110 -2.247678 -1.600308 5.732519 0.685072 -0.909600 0.401777 -6.994480 3.755892 1.676745 3.093423 3.407576 1.213860 -0.785700 -1.795167 2.594546 -0.131238 1.646368 1.683714 1.275746 -2.710401 0.801340 0.684061 0.304682 3.664598 -0.775996 4.626963 0.692204 2.359025 1.586091 -2.335285 -1.376259 -2.033282 4.004612 -3.159046 1.571206 0.435657 -0.740068 0.095544 -2.698225 -1.433877 -1.241493 -1.457868 -1.576041 -2.388596 0.972343 -3.208109 1.540807 -1.733171 -1.668802 0.901052 -0.124853 3.219681 1.505304 0.827860 1.106437 -5.290673 1.157390 0.686039 2.019470 2.466408 -1.042613 0.259377 0.146454 -2.767183 -3.273892 2.708055 3.330829 0.992999 -0.647591 -1.375288 0.114335 -0.906237 -0.981212 1.169047 2.630725 -2.929357 0.029798 -1.964066 -1.338011 -3.039101 -4.689395 0.833109 -2.482295 2.247207 0.924641 -1.463146 -0.547275 -0.324206 0.364474 -2.153856 -3.667078 0.647435 -1.789033 1.969893 5.956122 -1.809395 -0.807074 -2.401208 -1.214101 -0.505944 2.819622 1.055222 1.491984 4.200883 4.827807 1.593389 -3.459078 -2.999311 1.751061 2.937684 2.464864 2.227651 -4.200308 -2.372150 0.332467 -0.791785 -6.114846 -1.233207 0.858295 3.131712 -0.642022 -1.438902 0.685936 -1.973903 4.278210 2.954081 0.530238 0.697325 0.269216 -3.610573 4.084996 6.521575 -0.832322 2.809085 -3.088776 -1.307465 3.675976 -2.763142 1.966375 1.250432 -0.041543 -1.402298 -2.237528 -0.180826 3.118527 0.936925 1.934574 0.715260 1.881965 -1.232665 -5.282219 -5.601877 0.556403 4.915805 0.085904 5.229141 -4.092442 -2.152660 -0.187513 4.572313 0.867355 -2.099750 1.658431 -3.178097 2.578789 -4.713292 -5.184990 6.853365 6.684754 2.064937 0.423519 3.112729 3.394321 -4.766553 -2.155673 -1.912276 2.379624 0.368184 -5.383413 -1.540372 0.739076 -3.835333 -2.415875 0.017835 2.047322 2.486160 0.044118 1.011260 0.432544 -2.724188 -2.905481 3.392630 -2.315111 -1.865559 0.669510 0.239802 0.455714 2.288448 -1.579212 0.615692 1.500474 -2.266196 1.136737 2.412712 2.319183 0.144140 4.930010 4.445129 -0.519850 3.907651 0.598424 -1.510495 5.289145 -1.171633 1.406483 1.083649 0.938868 0.075767 1.352381 2.553930 -2.170408 -2.364732 -4.109809 0.440225 0.218433 2.943149 -1.803781 -4.387680 -5.614522 -1.018423 1.916321 3.560701 0.200154 6.849954 -1.156396 0.927493 -7.249998 -0.078637 2.266184 0.148227 3.392127 1.292974 -2.429677 -3.283994 -1.471914 -3.502207 -2.587952 -1.701189 -2.699664 -2.788598 -2.504220 4.002343 -1.870055 0.289703 3.268172 0.125484 2.677473 -0.928823 -0.166533 -2.922185 -0.103874 2.625302 0.055501 -3.215635 4.307421 -0.144499 9.495240 -1.166313 2.008370 -1.595695 1.682558 -0.381553 -3.026519 -0.628181 5.170163 3.101604 0.855605 -0.782955 -0.612392 -0.773720 2.948835 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__adjust_heap<__gnu_cxx::__normal_iterator > >, long, int, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, long, long, int, __gnu_cxx::__ops::_Iter_comp_iter >) = -0.721832 1.019304 11.442546 5.145895 -6.171223 -10.826381 -4.494639 -16.727728 7.808842 1.516583 8.834678 0.207170 4.102313 -4.026089 0.353812 2.807122 3.013733 -4.982328 2.385540 -4.198295 -2.496360 13.527093 2.309801 -3.309994 0.446245 -14.765377 7.460624 4.453330 7.305861 7.271730 2.222110 -1.419674 -1.551216 5.398804 -1.389414 2.783991 1.827583 2.324261 -6.074271 1.316868 1.150396 1.931655 7.296097 -1.627173 8.926527 0.997691 7.772958 2.820813 -3.901432 -2.271959 -6.553361 10.289513 -6.684401 3.065134 -0.548030 -1.283244 0.988569 -5.875438 -3.400391 -3.413601 -3.231286 -0.893570 -5.942687 1.538353 -7.309376 3.382346 -3.222727 -3.075594 2.134684 2.038561 7.141867 4.074456 1.823697 0.458953 -11.759326 2.934868 0.493133 4.722838 5.049470 -2.852298 0.242693 0.839617 -5.193756 -6.318388 6.566923 5.654844 1.899974 -1.338670 -1.690272 -0.609664 -3.346976 -1.979605 0.948271 4.909006 -5.631718 1.446510 -2.972270 -1.997822 -5.735945 -7.551315 1.029689 -5.727514 3.806422 2.539770 -0.433134 -0.501073 -0.869754 0.398735 -4.781161 -8.128531 0.824543 -3.100750 2.627763 11.913534 -4.075360 -0.825088 -3.873874 -0.869954 -1.913671 6.747278 1.769879 3.993335 8.913178 10.040110 2.233152 -6.705790 -4.880186 3.400879 6.757080 5.757728 5.122668 -8.341393 -5.426297 -0.454432 0.019231 -12.459547 -1.630053 3.965462 6.133933 -0.663579 -4.457361 2.274852 -3.006589 10.054484 6.603634 0.279824 1.850947 0.609972 -6.876291 9.406861 15.319569 -2.271092 5.711881 -7.289163 -2.830188 9.123348 -6.513745 4.020898 2.456405 0.334399 -2.259890 -4.969103 -0.249084 6.602988 2.489244 3.706996 3.377388 3.609705 -1.044282 -11.732702 -11.101945 0.860073 8.570762 -0.433593 12.808053 -7.745133 -4.614457 -0.526477 7.135810 0.778630 -3.605105 2.677814 -7.379557 5.046495 -11.852782 -11.211404 15.231943 12.578642 3.849712 1.667366 7.082396 8.271654 -8.312122 -4.005435 -3.366804 5.431140 1.515311 -10.410998 -2.166384 1.288665 -8.570521 -5.701554 0.028843 3.732098 4.353332 -0.120737 0.702405 -0.715412 -7.735813 -5.543251 6.429975 -6.245997 -3.983607 0.953077 0.236447 0.865150 4.615783 -2.898099 1.876345 3.375621 -4.990815 1.091577 4.227437 5.369242 1.230857 9.179310 10.838362 -0.012848 9.563809 2.348775 -3.432274 11.615815 -1.742651 1.962805 1.844847 2.194647 0.482074 3.056289 4.479795 -4.214598 -4.912840 -9.094141 3.071872 1.304580 5.818670 -3.955615 -7.656588 -10.833239 -3.482674 5.202926 7.739890 0.084315 14.386817 -3.326007 1.456477 -16.165983 -0.058176 4.415730 1.168914 6.933421 3.372727 -5.100073 -6.439753 -3.366913 -5.744468 -4.334613 -4.131414 -7.058791 -5.979167 -5.577074 7.867087 -5.703571 1.244115 7.747464 0.209072 5.450933 -2.211134 -0.443705 -5.804663 0.022149 4.906389 1.409778 -6.702411 8.487871 -1.797830 19.695256 -3.451037 4.649494 -4.892853 3.801971 -1.108530 -5.643238 -0.891396 11.010024 6.194432 0.516502 -0.059763 -1.302520 -1.507975 6.853966 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter >::operator()<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >) = 0.087417 0.130614 1.135877 0.068124 -0.665621 -1.788539 -0.592984 -2.830173 0.994739 0.475542 1.457479 -0.136869 0.911095 -0.541983 0.125463 1.012547 0.479033 -0.679085 0.422701 -0.632269 -0.675817 1.829240 -0.108829 0.658794 0.040153 -1.431067 0.580555 0.431897 0.879886 0.675556 0.481826 -0.228343 -0.227188 0.464724 -0.032999 1.025631 0.285690 0.576949 -0.746870 0.214935 -0.278980 -0.643721 0.882215 -0.193205 1.405560 0.027744 1.054591 0.417621 -0.335563 -0.544205 -0.785054 1.337990 -0.974583 0.154830 -0.341589 -0.714367 0.055636 -0.255640 -0.406416 0.061894 -0.596071 -0.654078 -1.011474 0.300729 -0.741989 0.590973 -0.593761 -0.504822 -0.207885 0.207729 0.962123 0.498473 0.044059 0.749423 -1.886447 0.052979 0.238230 0.247489 0.656893 -0.325857 0.196777 -0.226497 -0.863622 -0.975307 1.635583 1.139221 0.467712 0.049882 -0.984723 0.382752 -0.621089 -0.135203 0.776638 0.591558 -0.818717 -0.122326 -0.019709 -0.363281 -1.014897 -1.640364 0.424718 -0.623104 0.567255 -0.129835 0.308792 -0.192642 -0.476685 0.037773 -1.024252 -1.235311 0.033376 -0.644112 0.280764 1.514866 -0.688431 0.002893 -0.666488 -0.282134 -0.168353 0.560963 0.835329 0.416829 1.232744 1.111023 0.459492 -0.995296 -1.081111 0.514754 1.023381 0.653032 0.330727 -1.017306 -0.736395 0.341276 -0.658809 -1.798883 -0.747217 0.722045 0.781671 -0.422625 -0.103550 0.361699 -0.293993 0.878690 1.090999 -0.035083 0.137026 0.181553 -0.935482 0.932941 1.544946 -0.285674 1.007447 -0.677005 -0.002740 0.923326 -0.954457 0.234356 0.676818 -0.199235 -0.826434 -0.409987 -0.109565 0.712930 0.434841 0.601767 -0.234772 0.771625 -0.815503 -1.183147 -1.554815 0.038805 1.668728 -0.023644 1.148913 -1.114420 -0.706820 0.419879 1.070688 0.130410 -0.779159 0.575911 -1.101336 0.808013 -1.250393 -1.351956 1.967670 1.477829 1.150247 0.154719 0.752963 1.228530 -1.784020 -0.475499 -0.368254 0.752252 0.111198 -2.454470 -0.770421 0.133213 -1.282219 -0.653489 -0.424719 0.656342 -0.089260 0.781532 1.118024 -0.254875 -0.383481 -0.285562 0.865604 -0.401131 -0.455727 -0.109845 0.076256 0.073188 0.487217 -0.668010 0.653304 0.477561 -0.894926 0.502460 0.715752 0.361845 0.262464 1.953699 1.635717 -0.495866 1.251682 -0.373456 -0.355257 0.439698 -0.073839 0.496455 0.092661 0.381278 0.022502 0.199900 1.026456 -0.584581 -1.077012 -1.012840 -0.404310 0.611909 0.807915 0.838741 -1.099141 -1.693089 -0.182609 0.394031 1.521963 -0.049487 1.508750 -0.554985 0.668235 -1.827731 0.268690 0.085931 -0.190537 0.736980 0.185042 -0.460528 -0.295302 -0.465485 -1.020578 -1.822174 -0.313414 -0.708385 -0.643436 -1.126080 0.873111 -0.964496 -0.360680 0.238692 0.228057 0.867897 -0.196640 0.027564 -0.956088 0.691896 1.264716 -0.171914 -0.864533 0.900148 0.174482 3.011876 -0.142914 0.571193 -0.290355 0.575009 -0.193699 -0.876606 -0.116176 1.380521 1.235532 -0.035235 -0.229758 -0.088466 0.251732 0.665049 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_comp_iter >&>::type&& std::move<__gnu_cxx::__ops::_Iter_comp_iter >&>(__gnu_cxx::__ops::_Iter_comp_iter >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.194235 -0.040146 0.826023 0.144181 -0.344897 -1.191592 -0.396156 -1.712296 0.714805 0.404610 1.112042 -0.029977 0.769710 -0.475355 0.109254 0.414316 0.404170 -0.480455 0.215805 -0.425605 -0.268316 1.249043 0.060051 0.192290 0.058621 -0.990114 0.498563 0.295258 0.396920 0.705223 0.303004 -0.024968 -0.172287 0.312205 -0.119053 0.705940 0.229275 0.422438 -0.321862 -0.019544 -0.011440 -0.272277 0.607242 -0.029178 1.016826 0.135829 0.525456 0.187365 -0.287652 -0.527501 -0.372091 0.635491 -0.689899 0.149717 -0.319470 -0.329363 0.179525 -0.208506 -0.219410 -0.462816 -0.160816 -0.330943 -0.685906 0.150250 -0.486826 0.397176 -0.263403 -0.333378 -0.162682 -0.158608 0.619279 0.254006 0.003689 0.355581 -1.161681 0.002352 0.142401 0.057128 0.486872 -0.145927 -0.162137 -0.273873 -0.577958 -0.664202 1.082262 0.654073 0.299261 0.274765 -0.635180 0.198838 -0.354078 -0.048781 0.497830 0.431193 -0.456945 -0.127754 0.318000 -0.255000 -0.464703 -0.837780 0.359920 -0.448857 0.282619 0.190039 0.132974 -0.119661 -0.425091 0.103192 -0.793553 -0.749529 0.205734 -0.520035 0.088012 0.874041 -0.528879 -0.041923 -0.513896 -0.185207 0.155314 0.551388 0.417468 0.287533 0.772885 0.691960 0.284905 -0.744811 -0.606468 0.451051 0.793052 0.363606 0.137255 -0.724617 -0.479460 0.276079 -0.633431 -1.186472 -0.594848 0.451477 0.626316 -0.242638 -0.402654 0.564026 -0.247389 0.555391 0.854755 0.070551 0.076549 0.190961 -0.765966 0.550136 1.040743 -0.246991 0.683491 -0.346895 -0.187415 0.687456 -0.579972 0.162739 0.418458 -0.192291 -0.462127 -0.268464 0.066142 0.567767 0.325949 0.567683 -0.263217 0.540588 -0.453804 -0.823550 -1.197532 -0.130030 1.160681 0.197654 0.999401 -0.782968 -0.395758 0.165867 0.803939 -0.011279 -0.565183 0.286381 -0.639694 0.521364 -1.189967 -0.960125 1.468550 1.024943 0.913286 0.155366 0.520100 0.738322 -0.817627 -0.166411 -0.233407 0.504315 0.131619 -1.324987 -0.323421 0.054269 -0.907696 -0.589243 -0.292017 0.389567 -0.148395 0.270828 0.644747 -0.216654 -0.201517 -0.197945 0.425746 -0.341743 -0.332396 -0.153321 0.033963 0.064816 0.236079 -0.405646 0.411035 0.326093 -0.589731 0.229959 0.447893 0.281935 0.310910 1.246880 1.147723 -0.461715 0.591371 -0.287261 -0.264444 0.533302 -0.136799 0.267886 0.054531 0.423452 0.303897 0.113466 0.684356 -0.382507 -0.498518 -0.760853 -0.214484 0.574135 0.573523 0.204961 -0.748319 -1.209090 -0.049343 0.140495 1.198584 -0.110761 1.200389 -0.373910 0.421987 -1.278880 0.180639 0.208493 -0.164998 0.347664 0.164142 -0.337249 -0.528749 -0.296467 -0.742529 -1.022361 -0.219393 -0.439736 -0.430182 -0.709693 0.582474 -0.716753 -0.142127 0.260832 0.144002 0.580543 -0.050711 0.031399 -0.660426 0.405823 0.548678 -0.041869 -0.586691 0.610740 0.141268 1.846599 -0.173403 0.514599 -0.241250 0.686896 -0.341142 -0.653375 -0.136194 0.944567 0.925517 -0.034051 0.013287 0.002533 0.160139 0.528796 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__push_heap<__gnu_cxx::__normal_iterator > >, long, int, __gnu_cxx::__ops::_Iter_comp_val > >(__gnu_cxx::__normal_iterator > >, long, long, int, __gnu_cxx::__ops::_Iter_comp_val >&) = -0.303287 0.793729 5.912134 3.014785 -4.184105 -6.865355 -2.652265 -10.155170 4.327559 0.907257 5.063506 0.102822 2.360372 -2.515884 0.141103 2.162175 1.793638 -2.371920 1.230771 -2.533701 -2.593207 7.767445 0.865569 -1.564776 0.303043 -7.320448 4.618006 2.700359 3.710793 3.823328 1.564015 -0.661558 -1.042843 3.200455 -0.790700 1.961190 0.746253 1.796074 -3.244793 0.719618 0.817941 -0.132480 4.574420 -0.852082 5.234886 0.788472 4.625054 1.792698 -2.586783 -1.230774 -3.791908 5.778690 -3.756594 1.955548 -0.737087 -1.345439 1.149645 -2.940202 -1.700000 -1.575944 -2.155563 -1.677855 -3.961910 0.699000 -4.116422 1.805845 -1.738469 -2.281375 0.752256 1.381940 4.029578 1.868330 0.370278 0.461352 -7.081912 1.189153 0.822599 2.507218 3.127026 -1.106953 0.536358 -0.068639 -3.594087 -3.938172 4.450002 3.055758 1.525044 -0.305038 -1.669947 -0.148627 -1.976333 -0.948318 1.485693 3.063748 -2.928249 0.545808 -1.169242 -1.405461 -4.105744 -5.078955 1.201971 -2.994120 2.371451 0.816384 -0.459676 -0.405858 -0.484956 0.101336 -3.012179 -4.925384 0.314730 -2.637783 1.701295 6.631079 -1.770890 -0.653118 -2.108702 -1.009334 -0.970520 3.558963 1.764500 1.924136 5.351707 5.665185 1.436028 -3.944794 -3.454229 1.693954 3.673058 3.211595 2.415430 -4.790796 -3.210623 0.237148 -0.556623 -7.177210 -1.403870 2.559937 3.517991 -0.905774 -1.827787 1.744771 -1.747340 5.150778 3.632737 0.292367 0.822194 0.409376 -4.142139 5.099547 8.388932 -1.016176 3.258771 -3.854434 -1.511995 5.325692 -3.413367 1.947309 1.775632 -0.495361 -1.929827 -2.373123 -0.019170 3.705962 1.283188 1.568493 1.814825 2.289039 -1.617459 -6.233023 -6.610618 0.934131 5.934310 0.279967 7.236793 -4.738036 -2.531312 0.147259 4.153581 0.439653 -2.170666 1.783115 -4.224805 3.268258 -6.553608 -6.317982 8.800609 6.417487 2.651750 0.754279 3.903912 4.563638 -4.926874 -2.803988 -2.077469 3.009610 1.276901 -6.298899 -1.532438 0.734715 -5.152988 -2.963470 -0.114521 2.287922 2.147876 0.193907 1.277740 -1.177166 -3.720201 -3.046925 3.330195 -3.020182 -1.972905 0.780529 0.177089 0.198002 2.661847 -1.404602 1.238021 1.084326 -2.849896 0.986014 2.268478 2.772173 0.595088 6.116962 6.543311 -0.839277 5.698522 0.887089 -1.748348 6.224209 -1.051493 1.575177 1.342570 1.664899 0.548290 1.517304 3.449484 -2.483028 -2.546400 -5.285983 1.070463 1.308150 3.343417 -2.260063 -3.959481 -7.112038 -1.811262 2.590348 4.851931 -0.386764 7.868273 -1.921640 1.055443 -9.133216 0.278182 2.144595 0.233779 3.871096 1.617667 -3.050502 -3.147446 -1.969674 -3.624603 -3.405541 -2.260751 -3.262467 -3.601081 -2.861593 3.598339 -3.549473 0.489854 4.264040 -0.224000 2.745661 -1.998047 -0.007780 -3.297801 0.113079 3.640313 0.159356 -3.880908 4.721242 -0.617804 12.029296 -1.362552 2.869226 -2.351386 2.412888 -0.645992 -3.523460 -0.586419 6.162658 3.579811 0.150265 0.109484 -0.016622 -0.376909 4.063754 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = -0.332176 -0.175988 1.151294 0.672963 -0.506279 -1.204492 -0.538024 -1.464913 0.874914 0.401390 1.043323 0.106417 0.689218 -0.509047 -0.125046 -0.106125 0.194888 -0.556652 0.135784 -0.466365 -0.359594 1.601301 0.559189 -0.663215 0.044829 -1.596524 1.243032 0.348560 0.462567 1.445788 0.010568 0.057201 -0.067538 0.658106 -0.358581 0.428825 -0.029911 0.526928 -0.094834 0.082731 0.591606 0.167189 0.844318 0.026459 1.073843 0.610376 0.323708 0.103362 -0.483229 -0.556493 -0.253970 0.071539 -0.987414 0.354430 -0.731908 0.175313 0.226028 -0.532214 -0.337045 -1.171970 0.102933 -0.042391 -0.748345 0.146272 -0.935561 0.393155 -0.239851 -0.644706 -0.043714 -0.351614 0.747201 0.515914 0.012216 -0.254738 -1.171712 0.165028 0.157121 0.214169 0.561911 -0.309104 -0.657538 -0.153543 -0.755335 -0.709789 0.687343 0.519817 0.253134 0.356293 0.069758 -0.298886 -0.131893 0.139454 0.308587 0.760855 -0.172350 0.033537 0.109235 -0.099533 -0.247630 -0.598535 0.268905 -0.622830 0.446894 0.658578 -0.306705 0.048621 0.124642 0.247910 -0.640619 -0.878882 0.109130 -0.607839 0.349001 0.970923 -0.287970 -0.225430 -0.481902 -0.258620 0.332797 0.927495 0.066744 0.234288 1.176815 0.899059 0.201254 -0.990673 -0.464128 0.500545 0.688177 0.474878 0.419000 -0.915418 -0.596898 -0.003834 -0.384541 -1.373820 -0.353126 0.170839 0.622138 -0.580780 -0.842233 1.142383 -0.494689 0.779838 1.126737 0.189261 0.255270 0.109244 -1.006933 0.878432 1.757609 -0.183617 0.526989 -0.857763 -0.884346 1.475382 -0.574805 0.426105 0.166064 -0.218977 -0.276823 -0.542997 0.526136 0.839193 -0.009044 0.710913 0.272709 0.410549 -0.047667 -1.096637 -1.188730 -0.220667 1.242562 0.604804 1.908007 -1.049237 -0.098034 -0.084643 0.817732 0.306616 -0.253788 0.116759 -0.488508 0.553450 -2.232090 -1.422335 1.673776 1.235686 0.933432 0.361691 0.683850 0.671864 0.179460 -0.159346 -0.315546 0.557388 0.400578 -0.502138 -0.090610 0.055726 -0.967134 -0.820843 -0.028570 0.380255 0.356642 -0.560665 -0.241244 -0.476275 -0.600716 -0.862019 0.441365 -0.955748 -0.306415 0.009941 0.031564 -0.123412 0.152687 -0.134342 0.302314 0.103477 -0.215026 0.342404 0.500995 0.398503 0.195608 0.745254 1.454714 -0.716129 0.150682 0.116947 -0.073925 1.638548 -0.387359 0.234956 0.396893 0.768438 0.447063 0.232802 0.625332 -0.427313 0.129692 -0.951159 0.387544 0.707365 0.494298 -0.915936 -0.632547 -1.338253 -0.170409 0.145622 1.356224 0.010796 1.753223 -0.252286 0.378501 -1.676687 0.052605 0.562958 0.085449 0.635973 0.463106 -0.529948 -1.114092 -0.404900 -0.627740 -0.097306 -0.562240 -0.667232 -0.637273 -0.160106 0.171485 -0.600572 0.218254 0.913344 -0.140619 0.487605 -0.407093 0.073221 -0.738548 -0.125658 0.122273 0.210677 -0.596627 0.724598 -0.061722 1.658311 -0.288674 0.844304 -0.438092 1.052633 -0.496472 -0.832667 -0.218602 1.240265 0.557824 -0.009508 0.383105 -0.104645 0.188156 0.678528 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::__ops::_Iter_comp_val >::operator()<__gnu_cxx::__normal_iterator > >, int>(__gnu_cxx::__normal_iterator > >, int&) = -0.043937 0.058585 1.047281 0.218995 -0.608721 -1.602390 -0.558882 -2.369618 0.931095 0.442725 1.277867 -0.041187 0.858428 -0.542192 0.046805 0.668557 0.415684 -0.607823 0.321419 -0.584302 -0.607435 1.696378 0.027178 0.314037 0.038362 -1.384713 0.779803 0.380700 0.695783 0.853864 0.394289 -0.107835 -0.210584 0.494805 -0.090466 0.859268 0.185333 0.555282 -0.518681 0.148851 -0.014021 -0.428796 0.846106 -0.060120 1.260043 0.207013 0.778813 0.342094 -0.328225 -0.552614 -0.608709 0.903959 -0.938087 0.183397 -0.439284 -0.460054 0.168158 -0.303769 -0.322077 -0.229541 -0.388974 -0.518864 -0.925324 0.258130 -0.760772 0.516213 -0.502824 -0.506763 -0.216035 0.028867 0.862711 0.439997 0.008303 0.461690 -1.633007 0.031463 0.177489 0.200283 0.665945 -0.261706 -0.083623 -0.242791 -0.833868 -0.895010 1.360332 0.910947 0.384421 0.186880 -0.692407 0.160428 -0.499072 -0.073259 0.686377 0.605244 -0.602424 -0.109978 0.074157 -0.282110 -0.763560 -1.306198 0.422135 -0.566245 0.492869 0.068145 0.135876 -0.184912 -0.336487 0.030102 -0.911813 -1.056466 0.085842 -0.662098 0.286397 1.308922 -0.545704 -0.068980 -0.615758 -0.304226 0.012723 0.667521 0.656425 0.321463 1.150339 1.000247 0.354910 -0.943891 -0.894904 0.513293 0.883256 0.545682 0.315875 -0.970753 -0.675398 0.286246 -0.588786 -1.579098 -0.625768 0.553642 0.700746 -0.431969 -0.280193 0.588511 -0.333776 0.716936 1.043465 0.041100 0.155218 0.145199 -0.920529 0.862807 1.498022 -0.224990 0.831915 -0.658105 -0.229074 1.038795 -0.828601 0.230757 0.527543 -0.241125 -0.711041 -0.359027 0.084864 0.695851 0.264283 0.594349 -0.088270 0.672473 -0.624947 -1.073287 -1.402007 0.005413 1.557302 0.174393 1.276061 -1.069846 -0.447524 0.301294 0.985183 0.171690 -0.619342 0.448453 -0.871424 0.718557 -1.422964 -1.273478 1.817437 1.275437 1.050705 0.166244 0.645142 1.042181 -1.191034 -0.382119 -0.358250 0.655453 0.177903 -1.816858 -0.525168 0.103530 -1.150062 -0.682289 -0.302883 0.577355 0.045012 0.376971 0.753451 -0.368475 -0.353184 -0.450400 0.707386 -0.466437 -0.385282 -0.074064 0.050239 -0.010410 0.367803 -0.449627 0.544339 0.344953 -0.645335 0.431404 0.632829 0.332905 0.235011 1.599864 1.493237 -0.582828 0.851925 -0.250327 -0.242522 0.725174 -0.135233 0.441887 0.167111 0.515168 0.194478 0.176630 0.900177 -0.523897 -0.724299 -0.957068 -0.227258 0.645227 0.692532 0.338340 -0.898565 -1.586264 -0.157673 0.262737 1.451123 -0.061918 1.491340 -0.460838 0.548525 -1.636208 0.231454 0.238688 -0.152450 0.639796 0.240857 -0.445526 -0.411532 -0.447389 -0.901846 -1.321251 -0.350035 -0.617270 -0.609333 -0.807245 0.625988 -0.850956 -0.210118 0.399241 0.110494 0.683069 -0.265152 0.061741 -0.875375 0.465038 0.892927 -0.104443 -0.760765 0.833515 0.112352 2.466131 -0.156317 0.628133 -0.275161 0.716972 -0.303261 -0.866573 -0.150341 1.272933 0.993859 -0.057177 -0.022746 -0.041048 0.278313 0.640948 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.092188 0.092190 0.734847 0.101536 -0.374672 -1.077613 -0.327161 -1.750334 0.672803 0.341377 0.877432 -0.066103 0.651720 -0.397831 -0.017434 0.472834 0.296490 -0.308855 0.233141 -0.376344 -0.398992 1.150336 -0.171954 0.317123 0.045833 -0.926368 0.550561 0.258221 0.550415 0.546732 0.304530 -0.075180 -0.175826 0.282498 -0.061330 0.554545 0.140717 0.409653 -0.432620 0.053454 -0.083494 -0.361590 0.544643 -0.033305 0.830189 0.079436 0.471801 0.220756 -0.114139 -0.352790 -0.379082 0.582423 -0.540257 0.142383 -0.316267 -0.438002 0.072469 -0.102348 -0.140320 -0.003718 -0.217463 -0.384722 -0.617984 0.164461 -0.523308 0.312006 -0.357976 -0.375574 -0.178331 -0.054863 0.539208 0.253486 -0.003415 0.280314 -1.249550 -0.013402 0.156703 0.067174 0.464058 -0.088858 0.054528 -0.230807 -0.612957 -0.622218 1.016531 0.770173 0.251845 0.168038 -0.589868 0.065493 -0.319998 -0.038086 0.564614 0.417850 -0.430891 -0.078828 -0.093958 -0.184514 -0.452315 -1.024238 0.335318 -0.385008 0.350127 -0.066866 0.105450 -0.050079 -0.061052 0.068534 -0.515072 -0.698053 0.063948 -0.465063 0.244696 0.985497 -0.296877 -0.159936 -0.494995 -0.231454 -0.033516 0.381485 0.462988 0.186074 0.788749 0.595608 0.338070 -0.680409 -0.657053 0.479583 0.494424 0.373661 0.125520 -0.677564 -0.402059 0.224030 -0.458174 -1.149717 -0.472685 0.298507 0.474951 -0.438639 -0.073239 0.366510 -0.241717 0.397031 0.711771 -0.016193 0.128826 0.171393 -0.582769 0.490692 0.952555 -0.133825 0.499486 -0.469553 -0.123248 0.537557 -0.434237 0.132386 0.282100 -0.151072 -0.449880 -0.241806 0.108828 0.495375 0.091682 0.390154 -0.143045 0.481876 -0.580570 -0.693389 -0.964375 -0.015737 1.091793 0.128917 0.821873 -0.720399 -0.328110 0.241284 0.698481 0.120608 -0.384888 0.385270 -0.653040 0.514329 -0.873189 -0.867802 1.156408 0.831407 0.748555 0.007167 0.378698 0.638978 -0.896348 -0.302065 -0.263349 0.402052 0.144545 -1.405642 -0.424005 0.061882 -0.796856 -0.412495 -0.168274 0.368189 0.029239 0.349301 0.680438 -0.314919 -0.166009 -0.359224 0.607655 -0.251470 -0.182312 -0.098815 0.058983 -0.032973 0.303556 -0.386590 0.360216 0.284869 -0.393876 0.331413 0.415752 0.136540 0.056081 1.133234 0.978683 -0.410952 0.565365 -0.230634 -0.203036 0.484624 -0.085422 0.284414 0.104653 0.295958 0.085819 0.161801 0.628739 -0.388621 -0.534673 -0.688172 -0.325825 0.427756 0.452120 0.391946 -0.578879 -1.073709 -0.096261 0.042199 1.020725 0.028991 1.006062 -0.361277 0.431604 -1.027881 0.171374 0.142215 -0.161973 0.478805 0.125742 -0.318677 -0.181064 -0.274696 -0.663969 -1.073273 -0.227750 -0.438643 -0.443125 -0.591333 0.411480 -0.538456 -0.165389 0.220644 0.095461 0.475468 -0.330913 0.075736 -0.600622 0.395021 0.640395 -0.114610 -0.555968 0.467253 0.114868 1.712671 -0.073818 0.421490 -0.179984 0.471128 -0.263904 -0.667105 -0.145622 0.855348 0.685836 0.038850 -0.093316 -0.035964 0.178258 0.442483 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = -0.218101 -0.072529 0.525805 0.166088 -0.139455 -0.705223 -0.236131 -0.859513 0.448275 0.219545 0.629668 0.032981 0.504361 -0.356243 0.050654 0.083788 0.238421 -0.251644 0.084063 -0.245544 -0.015005 0.719231 0.114175 -0.119304 0.038118 -0.647149 0.362864 0.183936 0.167878 0.597993 0.137365 0.036438 -0.119063 0.214681 -0.143399 0.360279 0.199785 0.233026 -0.153110 -0.077139 0.048667 0.035486 0.337742 0.029597 0.628283 0.194424 0.155731 0.109943 -0.160586 -0.356061 -0.129837 0.238271 -0.415928 0.131700 -0.235672 -0.067325 0.150909 -0.159191 -0.106118 -0.575781 0.043609 -0.077865 -0.357819 0.064037 -0.319583 0.233367 -0.057967 -0.224022 -0.109049 -0.209025 0.364094 0.146080 0.046725 0.099382 -0.610587 -0.008417 0.036962 0.059220 0.335968 -0.097545 -0.235202 -0.216414 -0.292526 -0.368772 0.544930 0.309410 0.154815 0.313980 -0.246128 0.022995 -0.165041 -0.040890 0.273746 0.238695 -0.151634 -0.086999 0.280622 -0.077597 -0.096108 -0.333087 0.230996 -0.238483 0.111058 0.238573 0.105132 -0.051703 -0.219435 0.126508 -0.497282 -0.355608 0.259304 -0.301803 -0.012628 0.471408 -0.299166 -0.036384 -0.270667 -0.112767 0.164686 0.475641 0.130395 0.189662 0.333569 0.426894 0.114245 -0.460409 -0.292320 0.330958 0.513723 0.212895 0.103405 -0.487580 -0.275967 0.159677 -0.424972 -0.658170 -0.319812 0.208059 0.408214 -0.118683 -0.436831 0.489262 -0.198412 0.319185 0.494361 0.083473 0.045853 0.087816 -0.535897 0.344901 0.656377 -0.152620 0.393209 -0.154836 -0.184534 0.396678 -0.302928 0.104800 0.163903 -0.183643 -0.166036 -0.122367 0.119061 0.352445 0.222773 0.418278 -0.156860 0.320718 -0.257840 -0.550872 -0.694386 -0.155875 0.690819 0.137325 0.710393 -0.452082 -0.216037 -0.021293 0.548440 -0.074234 -0.269724 0.102559 -0.336736 0.308960 -0.841406 -0.580816 0.940469 0.648013 0.590629 0.106767 0.300456 0.420238 -0.227968 -0.021494 -0.064778 0.214461 0.096387 -0.586633 -0.127269 -0.005726 -0.530163 -0.456525 -0.094148 0.219599 -0.106213 0.080831 0.239074 -0.116641 -0.109448 -0.188690 0.146855 -0.268059 -0.155132 -0.057708 0.030065 0.027851 0.086005 -0.237753 0.212323 0.266990 -0.280893 0.115040 0.238071 0.199586 0.249235 0.618400 0.633809 -0.278022 0.258194 -0.097582 -0.184512 0.541688 -0.098448 0.177325 0.060449 0.319657 0.306203 0.040575 0.326258 -0.233449 -0.120934 -0.510070 -0.110111 0.413643 0.359089 -0.084334 -0.477649 -0.662262 -0.003151 0.032161 0.696335 -0.111926 0.781682 -0.215219 0.199981 -0.764277 0.101169 0.259784 -0.111074 0.125724 0.167619 -0.193097 -0.600262 -0.163400 -0.431917 -0.476604 -0.218025 -0.303550 -0.202080 -0.339000 0.340746 -0.418979 -0.014294 0.292614 0.091013 0.322966 -0.079839 0.043412 -0.400957 0.147967 0.080609 0.004269 -0.367492 0.342178 0.082767 0.953469 -0.137567 0.356553 -0.179952 0.539169 -0.294652 -0.392286 -0.100222 0.583038 0.511929 -0.030881 0.134502 0.027756 0.076004 0.329351 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::pop_heap<__gnu_cxx::__normal_iterator > >, std::greater >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::greater) = -0.646530 0.011327 3.592233 -0.688350 -1.957501 -3.102836 -1.699025 -6.986516 2.656957 1.708090 3.822317 -0.023068 2.094979 -1.268020 0.140283 1.278524 1.293776 -2.740271 1.329513 -1.635552 -0.376790 3.915683 -0.115427 1.836934 0.203245 -4.924013 1.725009 0.171096 2.120499 2.123942 1.252481 -0.729529 -1.804309 1.137565 0.974442 2.601592 2.068727 1.091048 -1.632442 0.745038 -0.438114 -0.887773 1.977318 -0.633770 4.151435 -0.296252 0.838745 1.038793 -1.123333 -1.765242 -0.553006 2.116129 -2.414427 0.493172 0.742458 -1.370817 -0.982838 -1.012097 -1.091787 -0.108225 -1.138871 -2.055524 -1.308197 1.213214 -1.456438 1.468339 -1.737976 -0.463380 -0.262940 -1.019855 2.077738 1.069185 0.930255 2.585712 -4.032471 0.444852 0.476428 0.504079 1.472691 -0.724779 -0.144565 -0.402784 -1.766912 -2.484944 2.408671 3.899732 0.339314 -0.554597 -2.295944 1.460881 -0.930237 -0.656621 1.447346 1.770145 -2.861118 -0.957192 -0.839589 -1.139625 -1.696427 -4.106506 0.917941 -1.640941 1.578608 0.094138 -0.658830 -0.950442 -1.158802 0.255111 -2.163697 -2.152073 0.881220 -1.155981 1.439313 4.088714 -1.854439 -0.125748 -2.766301 -0.972272 0.299245 1.262352 1.206031 1.024461 2.758674 2.985679 1.674499 -2.574715 -2.717623 2.060414 2.435349 1.067744 0.752692 -2.815229 -1.275192 0.968150 -1.603302 -3.993376 -2.101504 0.387247 2.130591 -0.870577 0.212629 -0.399043 -1.192862 2.582478 2.713451 -0.051761 0.165937 0.658136 -2.599135 2.268726 3.580330 -0.422953 2.145964 -1.622855 0.131040 1.710872 -2.394943 1.220629 1.302743 0.353973 -1.989781 -1.412578 -0.426731 1.722526 0.823511 2.243063 -1.567624 1.868926 -1.242582 -2.884842 -4.134478 -0.303006 4.054243 0.185092 2.066157 -2.827379 -1.527154 0.441380 3.560756 1.533357 -2.309347 1.674174 -2.257460 1.736849 -2.403232 -3.049241 4.506819 5.413373 2.579130 0.229360 1.709212 2.596416 -5.002328 -1.034561 -1.051207 1.842201 -0.717167 -5.679248 -1.695304 0.743549 -2.608725 -2.021132 -0.863562 1.556526 1.091406 1.521941 2.533293 1.418853 -0.353278 -1.107833 2.850339 -0.498806 -1.947369 -0.321908 0.457621 0.725562 1.358431 -1.820088 1.357244 1.820421 -1.892934 1.324513 2.438938 0.775354 0.093856 3.809301 2.827714 -0.827986 1.869611 -1.042067 -0.773880 1.271062 -0.375301 1.120859 0.423274 -0.293467 0.069953 0.529817 1.868451 -1.540040 -2.386916 -2.130950 -0.923189 0.195521 2.477414 1.166775 -4.243212 -3.723779 0.267560 0.908516 2.735226 0.541874 4.233814 -0.834978 1.463205 -4.303132 0.240855 1.034655 -0.191787 1.948459 0.272798 -1.044572 -1.238601 -0.915986 -2.984190 -3.645485 -0.642451 -1.431556 -1.497056 -2.746153 3.686946 -1.132599 -0.839639 0.539266 0.739006 2.725389 0.322694 -0.136535 -2.780976 1.316945 2.000767 -0.381952 -1.975574 2.678948 0.561893 6.343222 -0.928016 0.735418 -0.105517 1.564863 -0.650474 -2.354218 -0.185874 3.285987 2.913302 0.805973 -1.609847 -1.065137 -0.109478 1.338372 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = -1.391635 -0.428500 1.772712 0.074085 -1.298441 -1.710186 -0.850481 -3.019355 1.440939 0.905577 2.294228 0.501664 1.520755 -1.297309 0.312270 0.170641 1.161342 -1.510478 0.665512 -0.857008 0.362347 2.205076 0.649096 0.523595 -0.081008 -1.812968 0.757718 -0.177302 0.929754 1.670051 0.711805 -0.434514 -1.247742 0.453451 0.760935 1.576580 1.034938 0.700690 -0.813720 -0.195061 -0.273208 -1.256473 1.174463 -0.424788 2.435978 -0.813978 0.599514 0.306534 -1.245812 -1.366175 -0.503147 0.938194 -1.906302 0.312948 0.723753 -0.938680 -0.194713 0.174250 -0.606751 -1.645812 -0.465334 -1.658590 -0.501469 0.512841 -0.668566 1.007837 -1.268247 -0.177765 -0.412011 -0.856435 1.093029 0.833435 1.263016 1.845228 -2.037569 0.241715 0.081334 0.336385 0.949455 0.318322 -0.391248 -0.755242 -0.557091 -1.251076 1.166534 1.102168 0.050261 0.065421 -1.554274 1.457521 -0.319071 -0.142849 0.521303 0.433188 -1.674214 -0.300934 0.253689 -0.429516 -0.177183 -2.240236 0.311864 -0.970206 0.369233 0.670464 -0.351699 -0.799101 -2.053811 0.068815 -1.907263 -1.344413 1.153548 -0.627709 -0.432725 1.600850 -1.775421 0.408922 -1.187174 0.054880 0.828438 0.774186 0.518989 1.213284 0.345001 1.605182 0.956049 -1.530878 -0.918530 1.248845 2.071008 0.361927 0.266793 -0.755574 -0.814971 0.839124 -1.207875 -2.013581 -1.366405 1.249060 1.509254 0.748629 -0.537263 -0.477096 -0.710299 1.649636 1.694506 0.432673 0.049680 0.491434 -1.714957 1.165412 1.393962 -0.480851 1.613741 0.312467 0.191853 1.397883 -1.679086 0.684271 0.393506 0.256686 -0.771130 -0.786589 -0.823712 0.996705 1.134059 1.505333 -1.440827 1.030313 -0.563425 -2.254505 -2.372349 -0.421910 2.895862 0.587141 0.658582 -1.461600 -0.750771 0.613744 1.677776 0.568802 -1.890919 0.597551 -0.943060 1.065784 -2.603366 -1.830756 3.146201 2.903329 1.323541 0.553891 0.577637 1.811265 -2.625603 -0.371888 -0.647359 0.934125 -0.934039 -2.951302 -1.010172 0.517029 -1.660779 -1.413526 -0.119176 0.720545 0.335446 0.487305 1.379545 1.337443 0.385725 -0.018699 1.310802 -0.355119 -1.653678 -0.344732 0.231234 1.198563 0.463455 -0.675657 0.935535 1.057116 -1.409052 0.099962 0.848561 0.749768 0.665042 2.410210 1.905915 -0.509670 0.278265 -0.592939 -0.951187 1.111557 -0.634117 0.561800 -0.051391 0.161658 0.718973 0.111696 1.312547 -0.905075 -1.286857 -1.239842 -0.969448 0.434421 1.844562 -0.280250 -3.034608 -1.921670 0.841700 0.725939 1.227468 -0.278772 2.524199 -0.878770 0.466201 -2.519503 0.118916 1.062383 -0.144204 1.185706 0.259573 -0.342733 -1.080078 -0.825244 -1.525835 -0.773846 -0.359847 -0.517612 -0.163989 -1.457724 2.264504 -1.003203 -0.439367 -0.280685 0.156481 2.283263 1.189897 -0.174357 -1.691853 1.038859 0.344056 0.198356 -1.002359 2.350719 0.494260 3.282617 -0.564025 -0.124065 -0.165190 1.331873 -0.695367 -1.108267 -0.029753 1.926272 2.330104 0.439547 -0.683949 -0.243883 -0.194022 0.647002 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.244142 -0.026581 0.636063 0.319273 -0.392762 -1.101856 -0.304637 -1.193156 0.532814 0.215412 0.825273 0.071634 0.625630 -0.471460 0.112066 0.259580 0.387603 -0.253813 0.080864 -0.383943 -0.228425 0.933062 0.170846 -0.126341 0.041984 -0.596223 0.419178 0.331304 0.264154 0.649672 0.231332 -0.011780 -0.179139 0.299340 -0.160312 0.481249 0.125094 0.332476 -0.320147 -0.078909 0.013101 -0.229915 0.561889 -0.018149 0.793967 0.153602 0.493959 0.196721 -0.369544 -0.427271 -0.360105 0.523513 -0.614925 0.184464 -0.291285 -0.201733 0.259091 -0.128410 -0.146476 -0.648252 -0.085993 -0.264961 -0.555318 0.060493 -0.449304 0.302221 -0.178232 -0.407672 -0.140123 -0.095464 0.503955 0.217612 0.029306 0.221345 -0.869945 -0.043274 0.103103 0.172542 0.470417 -0.053686 -0.140047 -0.317066 -0.419331 -0.482812 0.780861 0.238343 0.295155 0.364164 -0.462388 0.109947 -0.205154 -0.023673 0.390089 0.230553 -0.283572 -0.045135 0.321766 -0.140472 -0.349559 -0.628779 0.285312 -0.286017 0.183899 0.195479 0.137277 -0.092729 -0.491023 0.072168 -0.731382 -0.607711 0.216034 -0.446669 -0.085047 0.631722 -0.461227 -0.009801 -0.265010 -0.105267 0.144524 0.532874 0.308952 0.273347 0.445490 0.610304 0.160309 -0.624073 -0.410355 0.255207 0.705477 0.361757 0.202931 -0.475727 -0.449055 0.233436 -0.557062 -0.947257 -0.378220 0.484536 0.555939 -0.003847 -0.499504 0.491414 -0.267593 0.468430 0.612147 0.184181 0.081626 0.079793 -0.671616 0.476113 0.795486 -0.229949 0.630913 -0.109126 -0.170255 0.616652 -0.453488 0.106136 0.291359 -0.316740 -0.290547 -0.130275 -0.011224 0.460079 0.379937 0.411132 -0.137367 0.421405 -0.428350 -0.808823 -0.911682 -0.075490 1.014763 0.199024 0.840958 -0.645318 -0.317070 0.110469 0.599613 -0.165809 -0.461195 0.151090 -0.479203 0.468745 -1.125167 -0.800257 1.296296 0.764555 0.694367 0.176766 0.396044 0.605069 -0.520443 -0.138717 -0.145093 0.299738 0.097101 -0.938679 -0.261079 0.043936 -0.782997 -0.481796 -0.103123 0.342632 -0.153507 0.135636 0.417441 -0.202849 -0.157528 -0.183706 0.190125 -0.339069 -0.221358 -0.024853 0.007074 0.132208 0.128767 -0.253041 0.263686 0.210319 -0.488911 0.126224 0.219723 0.363045 0.375991 1.046877 0.946625 -0.364327 0.499328 -0.124776 -0.325822 0.658981 -0.169112 0.312837 0.057307 0.519168 0.333490 0.048148 0.604876 -0.331089 -0.286549 -0.664303 -0.249770 0.581003 0.512848 -0.081731 -0.601788 -0.983035 0.006889 0.135638 0.895397 -0.272335 0.964954 -0.345953 0.261626 -1.071476 0.144181 0.249065 -0.149526 0.273829 0.222662 -0.292578 -0.609996 -0.281111 -0.579424 -0.601189 -0.214753 -0.300116 -0.246396 -0.414551 0.370825 -0.625799 -0.088009 0.275108 -0.000319 0.492096 -0.033620 0.058108 -0.441199 0.231514 0.366106 0.020956 -0.500090 0.609448 0.143221 1.505273 -0.023922 0.412067 -0.236851 0.554591 -0.235946 -0.486399 -0.159422 0.812117 0.771019 -0.054346 0.164324 0.121271 0.145752 0.450112 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__pop_heap<__gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__ops::_Iter_comp_iter >&) = -0.107726 0.081896 3.264929 0.244737 -2.002480 -3.720403 -1.565309 -6.967278 3.059178 1.430568 3.373895 0.261454 2.228544 -1.572855 -0.097223 1.719942 1.312578 -2.090130 1.152323 -1.598689 -0.929862 5.170758 0.039761 1.318599 0.086573 -4.711303 1.928913 0.436403 2.852572 2.411631 1.200277 -0.676054 -1.119982 1.218472 0.439332 2.294680 0.825466 1.214763 -2.185838 0.526602 -0.327987 -1.350153 2.414932 -0.394921 3.730938 -0.586185 1.850612 0.893647 -0.790715 -1.496193 -1.641338 2.660584 -2.410553 0.677859 -0.163651 -1.491919 -0.423419 -0.573653 -1.018876 0.146059 -1.388411 -1.781760 -1.902530 0.927359 -2.019817 1.426339 -2.161351 -0.824032 -0.593853 -0.429144 2.297987 1.414835 0.825042 1.501046 -5.133966 0.404838 0.256174 0.714404 1.701082 -0.062267 -0.085891 -0.526307 -2.122630 -2.539247 3.081403 3.422265 0.251084 -0.204772 -2.259451 0.624657 -1.377429 -0.351088 1.576418 1.603729 -2.829192 -0.257023 -0.907650 -0.835727 -1.538379 -4.215691 0.808683 -1.694707 1.394586 -0.313593 0.126576 -0.651132 -0.600150 -0.030544 -1.980246 -2.635601 0.618903 -1.128745 0.710675 4.363329 -1.531455 -0.226556 -2.248366 -0.576394 -0.349920 1.504140 1.498352 1.155633 2.906140 2.831746 1.627266 -2.523466 -2.314681 2.161960 2.295086 1.198392 0.867270 -2.360396 -1.575550 0.871624 -0.968834 -4.382355 -1.929190 1.500026 2.069621 -0.939405 0.282203 -0.095018 -0.958323 2.527606 2.829139 -0.371943 0.620351 0.541137 -2.461542 2.513240 4.381572 -0.399491 2.024121 -2.117649 -0.272718 2.871542 -2.625754 1.218887 0.753886 0.209941 -1.932685 -1.388397 0.013827 1.913701 0.304831 1.579331 -0.806251 1.753151 -1.420053 -3.182864 -4.152521 -0.190382 4.142293 0.579096 2.812288 -2.746372 -1.234523 0.719317 2.678827 1.436845 -1.902581 1.811849 -2.658774 1.901121 -3.783743 -3.461958 5.085943 4.753505 2.439965 0.296881 1.698013 3.028867 -4.343840 -1.540794 -1.239940 1.876058 -0.000519 -5.701973 -1.684810 0.617471 -2.991067 -2.008013 -0.540096 1.391105 1.094060 1.256687 2.566165 -0.033924 -0.842626 -1.469295 3.098306 -1.055851 -1.623274 -0.235931 0.347441 0.199414 1.518414 -1.309287 1.521281 1.450204 -1.635214 1.160842 1.854538 0.746192 -0.010978 3.741893 3.953947 -1.007777 2.284506 -0.675812 -0.943452 2.198114 -0.685955 0.999223 0.323309 0.182934 0.074027 0.734462 1.945408 -1.543733 -2.318680 -2.340457 -0.532993 0.713668 2.196739 0.756253 -3.689636 -3.889023 -0.105952 0.817775 3.078771 0.470030 4.378701 -1.656436 1.412654 -4.876833 0.510625 1.116372 0.060384 2.478606 0.491853 -1.178746 -0.569468 -1.182628 -2.605803 -3.007996 -0.924626 -2.098863 -1.629863 -2.620917 2.949233 -2.002183 -0.537252 0.989887 0.134695 2.854062 -0.606939 -0.044290 -2.985487 1.437253 2.122909 -0.140843 -1.920466 2.594559 0.126572 6.524345 -0.837212 1.044351 -0.516425 1.812483 -0.981091 -2.886827 -0.280384 3.518227 2.728477 0.327735 -0.974405 -0.848428 0.271639 1.414609 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = -0.128182 0.085693 0.790891 0.223419 -0.505585 -0.940910 -0.321288 -1.344763 0.627493 0.341745 0.719548 0.116911 0.644074 -0.397677 -0.125978 0.016153 0.333974 -0.273771 0.163475 -0.410008 -0.316602 0.985213 0.007437 -0.023374 0.063874 -0.946990 0.874658 0.150163 0.430530 0.873467 0.264445 0.000909 -0.367963 0.368163 0.018797 0.355997 0.123753 0.409104 -0.284765 0.059925 0.175322 -0.229433 0.608773 0.126233 0.751242 0.276477 0.046642 0.211466 -0.222058 -0.431998 -0.130143 0.025447 -0.587665 0.242039 -0.280933 -0.200867 0.117650 -0.087253 -0.010548 -0.362773 -0.010905 -0.427383 -0.432111 0.177471 -0.617547 0.219567 -0.462898 -0.445914 -0.241797 -0.381924 0.428193 0.214588 0.080700 0.104664 -1.077242 -0.021210 0.109625 0.102320 0.563503 0.052523 -0.290218 -0.287226 -0.617345 -0.624619 0.566973 0.581648 0.135102 0.291658 -0.369671 -0.147098 -0.109129 0.038582 0.488800 0.455885 -0.309830 -0.060584 -0.180856 -0.118031 -0.170558 -0.939205 0.323331 -0.322148 0.319688 0.095332 -0.218932 -0.158313 -0.068299 0.046087 -0.392812 -0.494065 0.238885 -0.509944 0.228681 0.886859 -0.191620 -0.260415 -0.543930 -0.290308 0.255076 0.520690 0.258011 0.078641 0.611146 0.554740 0.322628 -0.705190 -0.479579 0.514790 0.342105 0.244768 0.191913 -0.585532 -0.362424 0.228688 -0.456407 -0.988261 -0.335676 0.100503 0.447462 -0.389864 -0.175858 0.410758 -0.451015 0.252665 0.697756 0.172998 0.198378 0.102218 -0.630339 0.437578 0.898438 -0.078832 0.376582 -0.377701 -0.355217 0.717361 -0.335253 0.222840 0.037574 -0.198000 -0.362262 -0.194267 0.233410 0.538430 -0.060490 0.429355 -0.017254 0.369118 -0.412148 -0.678485 -0.865325 -0.037715 1.184874 0.411746 0.852051 -0.763072 0.005430 0.131886 0.711610 0.292221 -0.322330 0.297377 -0.349410 0.462505 -1.171999 -0.831194 1.078709 0.828442 0.602582 -0.017260 0.165630 0.465240 -0.430093 -0.328638 -0.321903 0.274290 -0.008340 -0.840135 -0.275427 0.122002 -0.699090 -0.409910 0.055621 0.337189 0.409719 -0.126964 0.327283 -0.269617 -0.053778 -0.663688 0.536063 -0.289169 -0.224772 0.010624 0.048799 -0.011301 0.191198 -0.118246 0.195060 0.210567 -0.154786 0.252142 0.341565 0.164747 -0.022102 0.850411 0.761809 -0.487146 -0.020340 -0.082734 -0.167121 0.972430 -0.251979 0.319002 0.212456 0.443096 0.261330 0.161890 0.564616 -0.387249 -0.219887 -0.664405 -0.271187 0.393348 0.427820 -0.262987 -0.618071 -1.030449 0.090162 -0.108700 0.911066 0.003350 1.110800 -0.243007 0.314538 -0.834071 0.122556 0.407145 -0.125303 0.511597 0.226656 -0.349753 -0.266831 -0.306572 -0.675901 -0.392521 -0.240157 -0.275629 -0.355733 -0.147218 0.211151 -0.322972 -0.031828 0.342423 -0.129608 0.446027 -0.299470 0.101117 -0.594751 0.134992 0.302791 -0.050243 -0.464635 0.583356 0.114524 1.169132 -0.033767 0.400615 -0.077998 0.567357 -0.323267 -0.720326 -0.250063 0.850790 0.477819 0.151957 0.044524 -0.017391 0.216260 0.399713 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.136823 0.039483 0.561691 0.250185 -0.280268 -0.793401 -0.261247 -0.950425 0.427041 0.269444 0.631048 0.005132 0.533917 -0.274017 -0.061475 -0.023055 0.217124 -0.190732 0.095150 -0.295379 -0.367012 0.761319 0.048995 -0.113891 0.065553 -0.665123 0.766708 0.196124 0.141560 0.715454 0.160261 0.102438 -0.143313 0.304256 -0.129377 0.299527 0.010461 0.378948 -0.006438 0.018250 0.272304 -0.096622 0.455763 0.164244 0.529125 0.444588 0.053536 0.118567 -0.176981 -0.363263 -0.085067 -0.075456 -0.480737 0.157390 -0.437127 -0.072481 0.276563 -0.160940 -0.005450 -0.453857 0.079403 -0.224954 -0.469979 0.100115 -0.493744 0.178634 -0.214956 -0.388172 -0.161180 -0.252374 0.353669 0.120848 -0.108821 -0.030871 -0.715367 -0.044875 0.115716 -0.005884 0.428370 -0.076818 -0.335589 -0.202601 -0.546345 -0.491263 0.576685 0.318291 0.220097 0.330332 -0.190112 -0.180473 -0.100011 0.071335 0.398159 0.426191 -0.029647 -0.048863 0.113052 -0.104959 -0.193811 -0.543460 0.307833 -0.279289 0.231658 0.251635 -0.171180 -0.090636 -0.042502 0.077565 -0.368365 -0.449010 0.121150 -0.514106 0.206922 0.538846 -0.127669 -0.214573 -0.367708 -0.271299 0.307478 0.491872 0.227382 0.008171 0.604642 0.395447 0.135563 -0.546354 -0.368778 0.308920 0.284395 0.196467 0.115283 -0.550272 -0.322561 0.148910 -0.444778 -0.751108 -0.272261 0.063927 0.331063 -0.399799 -0.365777 0.718168 -0.317819 0.099726 0.609740 0.192387 0.120697 0.085359 -0.509885 0.318273 0.723315 -0.105713 0.294043 -0.316331 -0.429643 0.637799 -0.198602 0.084670 0.151928 -0.237654 -0.284132 -0.134553 0.300321 0.448244 -0.030330 0.370385 0.100580 0.294850 -0.281985 -0.447743 -0.678238 -0.020879 0.899078 0.360929 0.889823 -0.628222 0.046102 0.094288 0.557643 0.102010 -0.207905 0.117302 -0.206301 0.334757 -1.036066 -0.676111 0.831428 0.423679 0.563876 0.028163 0.173402 0.322678 -0.040447 -0.145050 -0.254837 0.271397 0.134831 -0.414730 -0.094313 0.023119 -0.566340 -0.327847 -0.052801 0.262224 0.172924 -0.243060 0.100704 -0.433115 -0.118841 -0.479421 0.236553 -0.309434 -0.098317 -0.030458 -0.019962 -0.098544 0.065215 -0.046891 0.160766 0.047314 -0.127093 0.173337 0.275281 0.130534 0.077172 0.716694 0.675308 -0.515548 -0.080859 -0.077702 -0.041139 0.758121 -0.159989 0.208503 0.176210 0.555534 0.323545 0.102143 0.509820 -0.252953 -0.097260 -0.571309 -0.095094 0.485558 0.249706 -0.269662 -0.229423 -0.916549 -0.020106 -0.114635 0.956311 -0.048859 0.880127 -0.115772 0.261970 -0.620758 0.113171 0.252850 -0.152146 0.256681 0.184055 -0.284852 -0.319217 -0.231643 -0.497099 -0.353371 -0.199980 -0.183758 -0.347902 -0.070182 -0.052835 -0.321523 0.016616 0.339865 -0.058033 0.149718 -0.240353 0.086491 -0.399164 0.064073 0.237294 -0.044640 -0.372640 0.375043 0.084373 0.895767 -0.030716 0.478338 -0.127652 0.540798 -0.299292 -0.506799 -0.202528 0.638021 0.365355 0.015225 0.218967 0.097430 0.244241 0.386089 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = -2.757755 -0.924503 4.137385 0.694018 -3.058213 -3.932990 -2.060428 -7.082654 3.382601 1.817664 5.082061 0.991906 2.983450 -2.990160 0.665059 0.464635 2.366560 -3.285767 1.093674 -2.001678 0.574160 4.886448 1.318170 0.359482 -0.028923 -4.541602 1.699273 0.244122 1.975166 3.181421 1.514496 -0.840056 -2.645852 1.299942 1.150269 3.338528 2.348903 1.337958 -1.938899 -0.574238 -0.144473 -1.784525 2.767155 -1.130750 5.570226 -1.654960 1.789915 0.827234 -2.917968 -2.737930 -1.093235 2.772115 -3.861496 0.854809 1.628604 -1.520462 -0.358315 -0.666050 -1.474396 -3.324089 -0.985114 -2.961378 -1.403031 0.977433 -1.456342 2.108825 -1.803123 -0.503866 -0.240119 -1.710181 2.591424 1.528383 2.137617 3.369441 -4.154676 0.489244 0.324970 0.891310 2.079041 0.451463 -0.560830 -1.517050 -1.308440 -2.603965 2.604883 2.554778 0.277589 0.126582 -3.048570 2.768113 -0.584642 -0.715762 1.126584 1.124419 -3.845467 -0.952145 0.610120 -1.172876 -1.074949 -4.117807 0.872045 -2.081985 1.111191 1.556035 -1.025905 -1.307963 -3.619532 0.141891 -4.102649 -2.854822 1.993643 -1.450390 -0.022752 3.898376 -3.620949 0.550804 -2.598129 -0.189567 1.224409 1.853837 1.026387 2.457613 1.748805 3.922088 1.950121 -3.441060 -2.313514 2.496539 4.508114 1.289397 0.776520 -2.333816 -1.779450 1.589851 -2.343741 -4.692250 -2.799131 2.147845 3.448504 1.508592 -1.534439 -0.694295 -1.369118 4.052942 3.337682 0.729650 -0.009342 1.054948 -3.860107 2.880010 3.637152 -0.898787 3.406288 0.063340 0.183453 2.853549 -3.566143 1.501098 1.353992 0.258853 -1.678211 -1.763219 -1.490644 2.219338 2.204677 3.040493 -2.879807 2.385125 -1.235388 -5.082780 -5.570607 -0.698814 5.664896 1.143892 2.469817 -3.415567 -2.115675 0.763404 3.984694 0.826583 -3.841069 1.434765 -2.547732 2.447511 -4.893858 -4.172094 7.036549 6.702196 2.919676 1.217524 2.243498 3.558435 -5.663965 -0.724445 -1.307092 2.053836 -1.021110 -6.038823 -1.631499 1.042941 -3.693925 -3.317162 -0.391654 1.665565 0.577443 0.949864 2.810471 2.641313 0.191975 -0.319452 2.770931 -0.925701 -3.098354 -0.628917 0.507357 2.276251 1.353413 -1.759079 1.625678 1.910091 -2.974815 0.520201 2.000190 1.929206 1.492814 5.050297 4.314281 -1.041145 1.979406 -1.059407 -1.943110 2.661477 -1.211469 1.281769 0.151924 0.353194 1.437416 0.300959 2.699322 -2.038043 -2.295801 -2.855980 -1.518607 0.815479 3.971138 -1.134463 -6.111102 -4.526742 1.051154 1.700953 2.514750 -0.636209 5.722349 -1.871492 0.896572 -6.318868 0.089033 2.356230 -0.196264 2.387752 0.607352 -1.101702 -3.281906 -1.591887 -3.356560 -2.190796 -0.875919 -1.301006 -0.927839 -3.431817 5.360196 -2.237668 -0.737411 0.441516 0.432204 4.427705 1.819864 -0.205369 -3.220571 1.618126 0.709768 0.423954 -2.487213 4.952732 0.853768 7.878629 -1.257013 0.298239 -0.668358 2.967555 -1.405671 -2.659359 -0.102720 4.254453 4.885889 0.826445 -1.406704 -0.533904 -0.835910 1.899461 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::push_heap<__gnu_cxx::__normal_iterator > >, std::greater >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::greater) = 0.181078 0.249795 2.978601 -0.396082 -1.266312 -3.142822 -1.321662 -6.407685 2.460752 1.406818 3.157144 -0.230988 1.951517 -0.898564 0.078831 1.922610 1.069934 -2.158773 1.283384 -1.334690 -0.786277 4.242945 -0.415056 1.784213 0.080022 -4.469163 1.592044 0.491706 2.255540 1.721571 1.154062 -0.528985 -0.689729 1.031076 0.313975 2.126686 1.153735 1.095191 -1.610714 0.702068 -0.554723 -0.752807 1.817831 -0.331992 3.205801 -0.080297 1.667701 0.869610 -0.295935 -1.223764 -1.401004 2.532757 -1.933692 0.342196 -0.297005 -1.393438 -0.396782 -0.881839 -0.953893 0.612270 -1.274365 -1.206153 -1.767860 0.911277 -1.582607 1.272860 -1.528746 -0.542605 -0.440053 0.051734 2.024977 1.159495 0.526458 1.560883 -4.385859 0.456401 0.271612 0.410673 1.318871 -0.830546 -0.050782 -0.126215 -1.914620 -2.340188 3.062331 3.591165 0.452366 -0.417749 -1.923354 0.774263 -1.588085 -0.437462 1.300380 1.722999 -2.191079 -0.382116 -0.578818 -0.853133 -1.824510 -3.487194 0.752040 -1.606728 1.297864 -0.215814 0.374013 -0.573355 -0.608027 0.056335 -1.793183 -2.200669 0.385984 -1.184077 1.005802 3.663363 -1.341471 -0.127352 -2.125172 -0.685326 -0.192367 1.258747 1.319700 0.821292 2.993082 2.434381 1.244097 -2.101144 -2.280180 1.752035 1.977610 1.097778 0.709603 -2.628250 -1.328528 0.604091 -1.020570 -3.742085 -1.625226 0.974656 1.601540 -1.391813 0.177064 0.283086 -0.723803 2.181203 2.650550 -0.333197 0.386775 0.590332 -1.947837 2.101503 3.846738 -0.440006 1.821158 -2.206503 0.071977 1.989692 -2.176690 0.996445 1.129617 0.274858 -1.928139 -1.260619 -0.003321 1.644215 0.543623 1.582712 -0.536707 1.561317 -1.094342 -2.372687 -3.564299 -0.195129 3.318524 -0.050771 2.598847 -2.413074 -1.324504 0.578826 2.451673 1.133357 -1.632346 1.542521 -2.302605 1.517031 -2.595336 -2.884264 4.102948 3.929682 2.296894 0.096882 1.646086 2.547200 -4.054509 -1.190940 -0.853047 1.867190 -0.122305 -5.243201 -1.423840 0.514750 -2.568081 -1.654420 -0.984766 1.290225 0.761463 1.544601 2.299668 -0.004861 -0.986499 -1.027443 2.523184 -0.775798 -1.545441 -0.338912 0.326367 0.052655 1.277106 -1.441771 1.433608 1.576796 -1.670010 1.030211 2.017725 0.546897 0.010662 3.451108 3.224912 -0.726389 2.250145 -0.766794 -0.523187 1.054866 -0.108552 0.722891 0.291306 -0.020277 -0.129676 0.643949 1.685288 -1.255598 -2.410850 -2.112443 -0.218987 0.534141 1.757596 1.680980 -2.821581 -3.344340 -0.343524 0.828603 3.184172 0.527334 3.678708 -0.994708 1.451942 -3.993166 0.473071 0.457994 -0.062982 1.689188 0.384861 -1.048837 -0.204111 -0.850698 -2.321157 -3.750861 -0.637278 -1.846074 -1.688951 -2.647237 2.482125 -1.719840 -0.666473 0.839590 0.583791 2.106690 -0.391357 -0.081298 -2.515145 1.443337 2.409540 -0.324886 -1.711299 1.893840 0.023260 5.998159 -0.926850 1.097537 -0.436978 1.370261 -0.603970 -2.184408 -0.163961 3.023550 2.249913 0.216994 -0.897158 -0.910995 0.347410 1.430750 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = -4.563007 -1.780995 8.634774 3.134732 -6.439448 -9.184403 -4.353050 -16.168947 8.561204 3.832486 10.025752 2.344600 6.604818 -6.448121 0.064517 1.823959 4.607104 -6.577664 2.655450 -4.224705 0.074073 14.048531 2.838670 0.464704 -0.468134 -11.113860 5.636040 0.530370 6.336433 8.076878 3.342086 -1.177499 -3.883679 3.223118 1.916066 6.835268 2.060229 3.662157 -4.702967 -1.010348 0.480168 -5.024647 6.670583 -1.341968 11.540399 -3.536117 5.546477 1.233355 -4.685081 -5.231584 -5.122226 6.133734 -8.888059 1.508829 0.475100 -3.825052 0.069070 -0.817285 -3.253211 -5.832977 -2.924412 -6.027701 -4.568709 2.134696 -5.004934 5.105160 -5.504022 -1.400902 -1.949954 -2.471658 6.352274 4.706881 4.536201 5.161234 -12.321005 1.340071 -0.032376 1.953549 5.144359 1.605290 -1.805792 -2.786857 -4.216370 -6.256584 7.376449 6.022541 0.097262 0.501996 -5.470276 3.837318 -3.097149 -0.694270 2.669498 3.242757 -8.285943 -0.466188 0.423592 -1.837696 -1.905825 -9.227627 1.898932 -5.089789 2.497600 2.546902 -1.313310 -2.246343 -5.509245 -0.713825 -7.988098 -7.431818 3.186761 -3.693155 -0.195334 9.713185 -6.713210 0.786935 -5.479493 0.086195 1.681602 4.658826 2.633221 5.487994 5.098814 8.217565 4.097524 -7.458822 -4.618192 6.590011 8.658015 2.782989 1.828263 -4.703098 -4.552725 2.521075 -2.801196 -10.805042 -5.800035 6.218722 6.788752 1.488572 -2.487818 -0.327852 -2.507707 8.467197 8.454533 0.473025 1.100488 2.475236 -8.165334 7.093687 10.893565 -1.307022 6.460242 -2.465182 -0.569246 9.678331 -8.667052 3.607115 1.724835 0.942432 -4.281491 -4.234062 -1.747611 5.137530 2.557266 5.364699 -3.629536 5.007932 -2.099660 -11.215903 -11.886946 -1.566440 13.008911 3.541423 7.253466 -7.754120 -2.788005 2.577299 6.800483 3.578047 -6.829792 3.632216 -6.191826 5.575051 -13.937320 -10.326019 15.647968 12.960765 6.060210 2.878045 4.408716 8.929739 -10.352101 -2.831737 -3.281777 5.272695 -1.042645 -12.743422 -3.398716 1.896196 -8.459084 -7.880845 -0.326328 3.440733 2.326855 1.094633 6.018708 2.138754 -0.417844 -2.689242 7.049590 -3.416024 -6.764274 -1.250411 0.978778 3.156234 3.095164 -2.513429 4.804660 3.605283 -4.867406 1.366074 4.036080 2.950838 1.789634 9.692824 12.005255 -3.253524 3.760747 -1.524644 -3.375473 7.819742 -2.607974 2.588868 0.704885 1.020335 3.053200 1.253264 5.666396 -4.545510 -4.732469 -6.646290 -1.556877 2.543496 7.889976 -2.957552 -11.718675 -10.269592 1.389476 3.742654 6.510215 -0.536764 13.188063 -5.271296 1.944329 -14.422905 0.809032 5.688704 0.308290 6.814529 1.853988 -2.690645 -4.049335 -4.156517 -6.300701 -3.230211 -3.030991 -4.694149 -3.196783 -6.632556 9.484212 -6.398436 -0.938016 1.963903 -0.076918 9.253146 1.237772 -0.161548 -8.054767 3.653065 1.796168 1.471672 -5.157961 10.284772 0.147002 16.484136 -3.257380 1.443910 -1.945827 7.671509 -4.146421 -7.244153 -0.079512 10.354973 9.007421 0.647114 -1.984075 -1.747949 -0.253685 4.154672 -PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/Nearly_sorted_Algo.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = -0.267473 -0.126391 1.125155 0.407015 -0.681668 -1.653704 -0.680184 -2.431139 1.125564 0.684459 1.422878 0.088954 1.078682 -0.702697 -0.158918 0.231606 0.376708 -0.802275 0.274129 -0.696078 -0.799366 1.982136 0.116807 0.058621 0.022124 -1.802055 1.590499 0.290558 0.489909 1.408839 0.450830 0.149709 -0.282267 0.662548 -0.091388 0.996726 0.022251 0.791426 -0.027098 0.079451 0.619538 -0.320133 1.009354 0.230562 1.441363 0.603257 0.396622 0.258095 -0.313523 -0.807785 -0.344307 0.091659 -1.199252 0.166781 -0.838771 -0.213174 0.410390 -0.491605 -0.226643 -0.585809 -0.119600 -0.600341 -1.142625 0.340778 -0.991068 0.569263 -0.548822 -0.596260 -0.389446 -0.438195 0.904195 0.406871 -0.179669 0.146078 -1.704645 -0.078348 0.150303 -0.070202 0.890860 -0.225764 -0.725885 -0.397630 -1.179539 -1.076108 1.402844 0.985770 0.307733 0.464724 -0.409230 -0.141424 -0.467930 0.072813 0.878562 0.953812 -0.413945 -0.279487 0.295867 -0.297986 -0.565218 -1.142068 0.691934 -0.672008 0.590653 0.454772 -0.383008 -0.270699 -0.059020 -0.079353 -0.981889 -1.036488 0.064795 -1.062656 0.713122 1.344089 -0.391618 -0.321262 -0.952226 -0.576276 0.529886 0.946410 0.634943 0.123059 1.645800 1.010467 0.322550 -1.222392 -0.981647 0.790477 0.768160 0.414641 0.213536 -1.269653 -0.719247 0.302619 -0.681582 -1.640288 -0.712157 0.195603 0.668618 -0.840863 -0.502555 1.300273 -0.468805 0.450055 1.426407 0.151531 0.193780 0.243388 -1.155937 0.897041 1.795946 -0.067401 0.645498 -0.963711 -0.759075 1.599576 -0.828200 0.220834 0.529629 -0.336295 -0.938590 -0.384761 0.602755 0.846375 -0.222393 0.828394 0.082859 0.777073 -0.426147 -0.977481 -1.556962 -0.033460 1.947291 0.783439 1.870129 -1.432465 0.101146 0.326279 1.149830 0.548274 -0.534254 0.429806 -0.661102 0.768167 -2.060748 -1.491633 1.913601 1.137846 1.286472 0.198796 0.554535 0.926711 -0.483105 -0.252131 -0.533216 0.781166 0.410080 -1.196814 -0.123951 0.095735 -1.223683 -0.973979 -0.284247 0.636921 0.373529 -0.374817 0.429628 -0.807163 -0.212659 -0.973477 0.776047 -0.591699 -0.402199 -0.172090 0.032844 -0.246346 0.227412 -0.129237 0.625885 0.078550 -0.233351 0.549616 0.841164 0.183815 0.110104 1.440946 1.662756 -1.182564 0.086558 -0.292046 0.135375 1.206205 -0.212439 0.452227 0.433122 0.908550 0.618931 0.171094 1.022994 -0.580177 -0.278708 -1.059593 -0.011443 0.913328 0.650667 -0.326582 -0.631853 -2.020182 -0.148912 -0.042253 1.927431 0.017789 1.888172 -0.347073 0.590595 -1.564870 0.243693 0.534103 -0.173075 0.646742 0.314815 -0.525130 -0.379490 -0.565684 -0.999104 -0.964088 -0.444307 -0.467808 -0.873134 -0.457722 0.257942 -0.828147 -0.077557 0.662402 -0.043152 0.406506 -0.534747 0.199541 -1.024115 0.277922 0.495534 -0.069604 -0.768657 0.906873 0.040706 2.067348 -0.231818 0.959715 -0.190697 1.346896 -0.716913 -1.213434 -0.251441 1.403793 0.784889 -0.111754 0.259740 -0.023547 0.541559 0.787724 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = -0.267473 -0.126391 1.125155 0.407015 -0.681668 -1.653704 -0.680184 -2.431139 1.125564 0.684459 1.422878 0.088954 1.078682 -0.702697 -0.158918 0.231606 0.376708 -0.802275 0.274129 -0.696078 -0.799366 1.982136 0.116807 0.058621 0.022124 -1.802055 1.590499 0.290558 0.489909 1.408839 0.450830 0.149709 -0.282267 0.662548 -0.091388 0.996726 0.022251 0.791426 -0.027098 0.079451 0.619538 -0.320133 1.009354 0.230562 1.441363 0.603257 0.396622 0.258095 -0.313523 -0.807785 -0.344307 0.091659 -1.199252 0.166781 -0.838771 -0.213174 0.410390 -0.491605 -0.226643 -0.585809 -0.119600 -0.600341 -1.142625 0.340778 -0.991068 0.569263 -0.548822 -0.596260 -0.389446 -0.438195 0.904195 0.406871 -0.179669 0.146078 -1.704645 -0.078348 0.150303 -0.070202 0.890860 -0.225764 -0.725885 -0.397630 -1.179539 -1.076108 1.402844 0.985770 0.307733 0.464724 -0.409230 -0.141424 -0.467930 0.072813 0.878562 0.953812 -0.413945 -0.279487 0.295867 -0.297986 -0.565218 -1.142068 0.691934 -0.672008 0.590653 0.454772 -0.383008 -0.270699 -0.059020 -0.079353 -0.981889 -1.036488 0.064795 -1.062656 0.713122 1.344089 -0.391618 -0.321262 -0.952226 -0.576276 0.529886 0.946410 0.634943 0.123059 1.645800 1.010467 0.322550 -1.222392 -0.981647 0.790477 0.768160 0.414641 0.213536 -1.269653 -0.719247 0.302619 -0.681582 -1.640288 -0.712157 0.195603 0.668618 -0.840863 -0.502555 1.300273 -0.468805 0.450055 1.426407 0.151531 0.193780 0.243388 -1.155937 0.897041 1.795946 -0.067401 0.645498 -0.963711 -0.759075 1.599576 -0.828200 0.220834 0.529629 -0.336295 -0.938590 -0.384761 0.602755 0.846375 -0.222393 0.828394 0.082859 0.777073 -0.426147 -0.977481 -1.556962 -0.033460 1.947291 0.783439 1.870129 -1.432465 0.101146 0.326279 1.149830 0.548274 -0.534254 0.429806 -0.661102 0.768167 -2.060748 -1.491633 1.913601 1.137846 1.286472 0.198796 0.554535 0.926711 -0.483105 -0.252131 -0.533216 0.781166 0.410080 -1.196814 -0.123951 0.095735 -1.223683 -0.973979 -0.284247 0.636921 0.373529 -0.374817 0.429628 -0.807163 -0.212659 -0.973477 0.776047 -0.591699 -0.402199 -0.172090 0.032844 -0.246346 0.227412 -0.129237 0.625885 0.078550 -0.233351 0.549616 0.841164 0.183815 0.110104 1.440946 1.662756 -1.182564 0.086558 -0.292046 0.135375 1.206205 -0.212439 0.452227 0.433122 0.908550 0.618931 0.171094 1.022994 -0.580177 -0.278708 -1.059593 -0.011443 0.913328 0.650667 -0.326582 -0.631853 -2.020182 -0.148912 -0.042253 1.927431 0.017789 1.888172 -0.347073 0.590595 -1.564870 0.243693 0.534103 -0.173075 0.646742 0.314815 -0.525130 -0.379490 -0.565684 -0.999104 -0.964088 -0.444307 -0.467808 -0.873134 -0.457722 0.257942 -0.828147 -0.077557 0.662402 -0.043152 0.406506 -0.534747 0.199541 -1.024115 0.277922 0.495534 -0.069604 -0.768657 0.906873 0.040706 2.067348 -0.231818 0.959715 -0.190697 1.346896 -0.716913 -1.213434 -0.251441 1.403793 0.784889 -0.111754 0.259740 -0.023547 0.541559 0.787724 -PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.048622 -0.140625 1.307432 0.537912 -0.774423 -1.842417 -0.665646 -3.149837 1.592577 0.705144 1.479414 0.200224 1.212051 -1.058515 -0.250433 0.599499 0.473485 -0.716798 0.300555 -0.723157 -0.599226 2.615970 -0.121029 0.143637 -0.007285 -2.164876 1.387727 0.363678 1.163575 1.345654 0.564190 -0.024854 -0.304188 0.615628 -0.132982 1.049828 0.006196 0.741218 -0.725501 -0.109469 0.305381 -0.479544 1.147987 0.032248 1.698674 -0.073023 0.851042 0.277385 -0.131422 -0.712155 -0.724996 0.789905 -1.095139 0.291033 -0.710032 -0.532059 0.172571 -0.334956 -0.298606 -0.159744 -0.316554 -0.582433 -1.221494 0.295406 -1.086131 0.630192 -0.662127 -0.581727 -0.405750 -0.391653 1.049942 0.557963 0.040962 0.033914 -2.464572 -0.045552 0.095219 0.047516 0.960446 0.130319 -0.295981 -0.549945 -1.198542 -1.115409 1.759365 1.451916 0.125500 0.426485 -0.772860 -0.164912 -0.653876 -0.037774 1.001956 0.831495 -0.959440 -0.204147 -0.098032 -0.260801 -0.468344 -1.487301 0.678753 -0.756489 0.622963 0.040463 -0.019179 -0.028751 0.328910 -0.084227 -0.928891 -1.168964 0.088842 -0.856248 0.626544 1.951414 -0.414991 -0.414391 -1.049129 -0.400859 -0.032201 0.865986 0.697914 0.374987 1.726294 1.134598 0.635700 -1.364898 -1.084921 1.234488 0.881422 0.600306 0.176602 -1.282022 -0.709832 0.350243 -0.464090 -2.090725 -0.876480 0.484843 0.863325 -0.838794 -0.171160 0.792990 -0.349330 0.828768 1.436477 -0.228238 0.316238 0.388561 -1.211880 1.072695 2.177434 -0.008731 0.666516 -1.223365 -0.520990 1.533356 -0.996655 0.356372 0.303456 -0.193818 -0.887270 -0.524886 0.575790 0.930064 -0.353266 0.708174 -0.198749 0.928067 -0.758454 -1.371637 -1.883873 -0.130617 1.993626 0.709312 1.955079 -1.419181 -0.264699 0.350360 1.134770 0.575101 -0.538289 0.811861 -1.267719 0.977432 -2.092134 -1.743511 2.336222 1.630708 1.371382 0.132210 0.799122 1.173456 -1.138858 -0.494923 -0.531109 0.775481 0.654132 -2.090974 -0.353825 0.119537 -1.464304 -1.171106 -0.150933 0.600269 0.323103 0.130316 1.049932 -0.820949 -0.295563 -1.042027 1.350029 -0.618155 -0.360325 -0.245029 0.162969 -0.259713 0.600089 -0.441435 0.747499 0.340913 -0.285745 0.663660 0.787593 0.156900 -0.039136 1.511440 2.076406 -0.989068 0.840700 -0.308531 -0.164443 1.364756 -0.269598 0.432921 0.354922 0.514780 0.394503 0.314473 0.934971 -0.755557 -0.471227 -1.205278 -0.189050 0.788024 0.842940 -0.020815 -1.003950 -2.003900 -0.276944 -0.022309 1.744338 0.170771 2.106972 -0.875118 0.656607 -2.160182 0.285992 0.658031 -0.060719 1.020273 0.299328 -0.598275 -0.337833 -0.582052 -1.067488 -1.352827 -0.583415 -0.948995 -0.972171 -0.983830 0.843445 -1.116011 -0.092739 0.790869 -0.042452 0.868176 -1.007801 0.246256 -1.254278 0.534926 0.524068 -0.013673 -0.947754 0.919803 -0.057749 2.723181 -0.338440 0.892740 -0.357231 1.432451 -0.908619 -1.622195 -0.229896 1.619522 1.006915 -0.060325 -0.022749 -0.217960 0.328919 0.853765 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = -1.073768 0.364120 3.127960 1.742491 -1.690556 -2.329673 -1.209708 -3.832841 1.805015 0.627628 2.429448 -0.116140 1.183214 -0.927083 -0.326393 -0.355417 0.790730 -1.196118 0.670153 -1.033095 -0.271698 3.025293 0.975255 -1.330010 0.232430 -3.426093 2.698448 0.909176 1.343990 2.228452 0.473766 0.297643 -0.654207 1.541664 -0.213673 0.717937 0.206822 1.147572 -0.755456 0.274549 0.860965 0.148306 1.514688 0.025963 2.550178 1.058878 1.171002 0.393435 -1.442856 -0.895757 -1.236627 1.253951 -2.196538 0.523255 -0.619604 -0.312053 0.394297 -1.326883 -0.708730 -2.193374 -0.158133 -0.652363 -1.312412 0.610748 -2.148649 1.199341 -0.755238 -0.872340 0.055698 -0.175831 1.740003 1.133002 0.505680 0.346076 -2.487338 0.767597 0.270781 0.910806 1.513438 -0.625976 -0.596959 0.211892 -1.359160 -1.809134 1.378785 1.325929 0.689824 0.107711 0.092667 -0.279487 -0.466688 -0.332181 0.169735 1.730038 -1.288681 0.336503 -0.481012 -0.429730 -1.122402 -1.601045 0.472657 -1.517898 1.087323 1.375565 -1.155815 -0.191446 -0.437290 0.166821 -1.220145 -2.052327 0.212480 -1.512604 1.155279 2.705892 -1.091418 -0.235237 -1.325838 -0.420309 0.508083 1.950504 0.082507 0.982984 2.052026 2.470163 0.484186 -1.791748 -1.188023 1.221400 1.381511 1.258122 1.120748 -2.190511 -1.409893 -0.251878 -0.303092 -2.710884 -0.704279 0.534120 1.536919 -0.421829 -1.730765 1.309530 -1.087904 2.119837 2.019565 0.569109 0.382023 0.463947 -2.013666 2.142286 3.754275 -0.419101 1.200600 -1.239067 -1.095584 2.766291 -1.591659 1.127691 0.699663 -0.068125 -0.675104 -1.297769 -0.023821 1.667754 0.504040 1.172762 0.969921 0.905306 0.058651 -2.987456 -2.817275 -0.053513 2.803491 0.531103 3.283545 -2.310124 -0.411406 -0.048376 2.250391 0.891156 -0.869806 0.311185 -1.154959 1.292705 -3.444052 -3.074670 3.245169 2.960771 1.040617 0.588148 1.467328 1.766686 -1.185398 -0.956675 -0.885548 1.474146 -0.243658 -1.316744 -0.484357 0.341225 -2.051044 -1.837137 0.126838 1.012906 1.345879 -0.661815 -0.151389 -0.134826 -1.200376 -1.839894 0.870614 -1.472990 -1.281369 0.199630 0.023721 0.397682 0.690516 -0.714096 0.526625 0.605553 -0.857244 0.355063 1.127831 0.966597 0.125653 2.049431 2.628099 -0.675828 0.760909 0.533794 -0.579427 3.697710 -0.186226 0.859967 0.705288 0.780345 0.724575 0.603943 1.267405 -1.165914 -0.667579 -2.435617 0.569570 0.630868 1.546620 -2.171660 -1.850236 -2.920532 -0.342151 1.283298 1.887403 0.007805 3.986857 -0.411132 0.123157 -3.688030 -0.034698 1.684291 -0.132647 1.794411 0.980107 -1.366703 -1.960638 -0.956332 -1.499675 -0.247732 -1.272248 -1.385384 -1.563031 -0.378303 1.426310 -0.994283 0.365118 1.871177 0.157530 1.020112 -0.266649 0.069431 -1.397887 -0.472854 0.673679 0.428614 -1.764946 2.371949 -0.379979 4.071709 -0.960497 1.166224 -0.982305 1.505267 -0.503303 -1.544779 -0.232996 3.181703 1.329739 0.297941 0.117125 -0.325680 -0.155017 1.658791 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = -0.054381 0.038849 0.631329 -0.101947 -0.096664 -0.720051 -0.271728 -1.278703 0.468032 0.357829 0.800497 -0.142526 0.551242 -0.221674 0.037648 0.278626 0.195674 -0.374603 0.232359 -0.245711 -0.187550 0.789653 -0.100282 0.336890 0.051993 -0.814632 0.399182 0.142264 0.262724 0.474794 0.191942 -0.007309 -0.100945 0.205204 -0.058180 0.497197 0.271214 0.335889 -0.114727 0.059918 -0.048333 -0.113932 0.311868 0.017132 0.679092 0.229935 0.150594 0.116243 -0.058723 -0.359665 -0.109617 0.303955 -0.425971 0.061133 -0.238659 -0.265121 0.049202 -0.160107 -0.113830 -0.187015 -0.065612 -0.210977 -0.428129 0.155642 -0.317793 0.255307 -0.171523 -0.196146 -0.127834 -0.155090 0.395907 0.152911 -0.015347 0.311539 -0.793952 0.034314 0.139780 -0.061641 0.309951 -0.226949 -0.122093 -0.118793 -0.431311 -0.520275 0.786650 0.671847 0.224518 0.150484 -0.419404 0.130498 -0.254096 -0.036915 0.386877 0.427534 -0.229222 -0.133894 0.129411 -0.183145 -0.308421 -0.651220 0.265961 -0.353952 0.235548 0.126837 0.063727 -0.093566 -0.165906 0.142050 -0.444531 -0.477124 0.149025 -0.392215 0.204449 0.618089 -0.293903 -0.071904 -0.441417 -0.221097 0.159748 0.350514 0.288107 0.111083 0.605021 0.413809 0.227114 -0.509965 -0.496692 0.383694 0.443182 0.210545 0.034022 -0.654577 -0.269070 0.177800 -0.489840 -0.819331 -0.434491 0.111161 0.353556 -0.404379 -0.203430 0.474980 -0.187850 0.263460 0.638244 0.024105 0.036311 0.165562 -0.479536 0.312519 0.688773 -0.163979 0.405205 -0.316219 -0.142564 0.326033 -0.326622 0.118488 0.300117 -0.074319 -0.329252 -0.219762 0.122371 0.409732 0.162628 0.480580 -0.199763 0.362916 -0.332816 -0.429913 -0.791075 -0.110930 0.791452 0.049131 0.659356 -0.536358 -0.267606 0.124981 0.683940 0.067368 -0.328474 0.210696 -0.394193 0.329562 -0.650610 -0.632657 0.848378 0.693224 0.681908 0.016276 0.304116 0.454975 -0.576651 -0.101552 -0.161151 0.358227 0.032761 -0.973000 -0.278733 0.017536 -0.564301 -0.347487 -0.271508 0.257608 -0.070561 0.265174 0.450014 -0.128675 -0.106742 -0.171618 0.335257 -0.182750 -0.210953 -0.152774 0.049466 -0.029414 0.168399 -0.366076 0.289323 0.318307 -0.371318 0.225643 0.425952 0.074090 0.117950 0.868184 0.656607 -0.343586 0.275420 -0.252087 -0.075250 0.241781 -0.029067 0.145309 0.067488 0.235771 0.150466 0.115193 0.447882 -0.258108 -0.409734 -0.540141 -0.182387 0.346873 0.319136 0.378195 -0.480424 -0.801758 -0.043457 0.024142 0.917083 0.051346 0.822172 -0.126161 0.370125 -0.716597 0.125668 0.076739 -0.178805 0.208969 0.082162 -0.220021 -0.306230 -0.173628 -0.541358 -0.944501 -0.145694 -0.313634 -0.328408 -0.518574 0.358709 -0.380913 -0.115003 0.124421 0.230366 0.303082 -0.071964 0.023096 -0.510570 0.328138 0.447595 -0.125431 -0.405075 0.280719 0.122909 1.208999 -0.181705 0.384652 -0.126942 0.439647 -0.230894 -0.418792 -0.090558 0.627729 0.566713 0.042278 -0.073128 -0.043002 0.119291 0.356502 -PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = -0.401499 -0.016086 1.524791 0.251252 -0.587522 -1.858233 -0.653323 -2.647898 1.124116 0.653401 1.725393 0.007759 1.166714 -0.616750 0.196625 0.597224 0.665059 -1.064951 0.467266 -0.715160 -0.342347 2.004592 0.175045 0.124386 0.036242 -2.018457 1.135181 0.551245 0.588645 1.254855 0.524492 -0.021438 -0.215113 0.706398 -0.164505 0.995303 0.512651 0.665019 -0.355757 0.100900 0.103490 -0.034155 1.044384 0.016355 1.628083 0.467991 0.906053 0.393787 -0.443929 -0.799098 -0.705814 0.984340 -1.232199 0.238737 -0.542678 -0.319591 0.383952 -0.672180 -0.411580 -0.861554 -0.282239 -0.309443 -1.078287 0.288060 -0.876143 0.622782 -0.341784 -0.494766 -0.214440 -0.001863 1.058185 0.540564 0.124952 0.477201 -1.827700 0.162618 0.125949 0.210788 0.852116 -0.564349 -0.568350 -0.231729 -0.952679 -1.166437 1.546993 1.142081 0.468014 0.289873 -0.667955 0.281635 -0.749622 -0.127691 0.508284 0.901537 -0.599079 -0.169535 0.538874 -0.361605 -0.878568 -1.094398 0.475684 -0.822869 0.478646 0.561957 0.163077 -0.324683 -0.851098 0.054700 -1.355784 -1.074405 0.352770 -0.994772 0.276914 1.307618 -0.835799 0.004732 -0.839171 -0.324504 0.459421 1.077036 0.462326 0.395076 1.456759 1.293589 0.300046 -1.179793 -0.908999 0.639938 1.300269 0.640122 0.414877 -1.422046 -0.810423 0.262289 -0.840270 -1.800929 -0.646338 0.635158 0.897198 -0.478144 -0.892800 1.025967 -0.476901 1.102776 1.519904 0.273768 0.150829 0.306211 -1.203669 1.077767 1.985680 -0.380392 1.099064 -0.837063 -0.279318 1.331192 -1.063506 0.424563 0.720565 -0.245916 -0.836690 -0.521046 0.101884 0.978593 0.619333 0.995652 0.009710 0.777637 -0.321568 -1.368790 -1.877709 -0.175426 1.825415 0.243051 1.989199 -1.387909 -0.545976 0.138925 1.201764 0.095954 -0.864655 0.382970 -0.865546 0.797728 -2.067883 -1.612060 2.415683 1.622844 1.297015 0.265099 0.928638 1.187288 -1.131185 -0.309455 -0.300186 0.909218 0.058745 -1.795067 -0.290246 0.203291 -1.480803 -1.042072 -0.486134 0.653901 0.148571 0.187108 0.591331 -0.280275 -0.607715 -0.482734 0.588111 -0.682111 -0.820785 -0.152447 0.060503 0.118083 0.347870 -0.470367 0.614836 0.618776 -0.942525 0.221071 0.860305 0.600982 0.510846 1.831228 1.822380 -0.597087 0.868245 -0.211034 -0.246991 1.019431 -0.102106 0.368866 0.255261 0.686740 0.538658 0.229937 1.041984 -0.619213 -0.739424 -1.341788 0.145634 0.793170 0.920188 0.027758 -1.058431 -1.918531 -0.183304 0.453496 2.000089 -0.217761 2.112531 -0.340786 0.579408 -2.132553 0.215929 0.375610 -0.112336 0.471953 0.445208 -0.645560 -0.753103 -0.511928 -1.117731 -1.433993 -0.354386 -0.699662 -0.817770 -1.018318 0.817514 -1.146520 -0.154617 0.752714 0.170072 0.817804 -0.018389 0.048486 -1.052838 0.460064 0.887897 0.016645 -0.912045 1.149612 -0.021536 2.940174 -0.479440 0.890667 -0.429255 1.130335 -0.413007 -0.932872 -0.197865 1.661413 1.188300 -0.086907 0.208182 -0.113614 0.286631 1.065035 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.157604 0.178411 1.057796 0.106554 -0.616765 -1.596231 -0.522459 -2.575758 0.918447 0.446461 1.268550 -0.130983 0.831600 -0.466006 0.030571 0.838403 0.402900 -0.540010 0.382490 -0.559955 -0.700991 1.686359 -0.161315 0.564713 0.051029 -1.340792 0.692135 0.385003 0.839734 0.669883 0.423224 -0.180402 -0.202657 0.447755 -0.048108 0.838941 0.177826 0.566756 -0.653678 0.208805 -0.172572 -0.583109 0.822092 -0.111654 1.193497 0.100753 0.860128 0.360268 -0.248359 -0.462963 -0.672307 1.061743 -0.845992 0.175766 -0.386900 -0.642057 0.073361 -0.210892 -0.299854 0.133544 -0.489178 -0.595709 -0.919271 0.270731 -0.749415 0.481753 -0.588198 -0.516701 -0.204931 0.137912 0.842218 0.437795 0.001057 0.542391 -1.780465 0.048602 0.238168 0.192467 0.625106 -0.240618 0.153353 -0.196735 -0.871190 -0.920725 1.464990 1.078324 0.410411 0.063689 -0.846271 0.194451 -0.522082 -0.078403 0.741372 0.613063 -0.688580 -0.070687 -0.163010 -0.310075 -0.874522 -1.554250 0.397155 -0.581705 0.548351 -0.138311 0.188101 -0.145886 -0.236369 0.041365 -0.786948 -1.113389 -0.002917 -0.630170 0.336840 1.425350 -0.495501 -0.110008 -0.639028 -0.307669 -0.139670 0.510678 0.748093 0.294677 1.198708 0.952685 0.451574 -0.920930 -0.974314 0.519670 0.774757 0.576078 0.286091 -0.949636 -0.645992 0.289066 -0.559460 -1.665150 -0.639555 0.556724 0.660985 -0.540548 -0.039138 0.398058 -0.311597 0.690179 1.008469 -0.027191 0.177898 0.175420 -0.806378 0.811843 1.439913 -0.224298 0.810184 -0.711315 -0.118950 0.889491 -0.776244 0.227464 0.520966 -0.174180 -0.732368 -0.390009 0.023462 0.694353 0.227920 0.505988 -0.108094 0.662477 -0.758454 -1.021800 -1.383097 0.065488 1.539181 0.065337 1.126609 -1.039908 -0.535629 0.394336 0.963347 0.198158 -0.616278 0.546788 -0.957041 0.732536 -1.197018 -1.256890 1.698897 1.252410 1.002568 0.070115 0.619222 1.035058 -1.486834 -0.502445 -0.404480 0.665804 0.143699 -2.129822 -0.683120 0.122570 -1.150394 -0.529689 -0.323292 0.570032 0.063954 0.580008 0.948793 -0.376566 -0.361309 -0.421732 0.862005 -0.387618 -0.349835 -0.091248 0.064165 -0.020657 0.462864 -0.541594 0.539441 0.375027 -0.693661 0.476770 0.636978 0.266216 0.114255 1.723981 1.468971 -0.511909 0.987164 -0.299689 -0.273988 0.554692 -0.106741 0.427136 0.132388 0.394508 0.003489 0.236777 0.942292 -0.537858 -0.929662 -0.948925 -0.353005 0.545788 0.654267 0.662360 -0.885021 -1.567482 -0.186517 0.252171 1.434428 0.028809 1.410272 -0.482980 0.620429 -1.583326 0.242076 0.103849 -0.177523 0.743222 0.178303 -0.458869 -0.166920 -0.430073 -0.926373 -1.571763 -0.298482 -0.647265 -0.639016 -0.906981 0.635327 -0.809243 -0.275247 0.277758 0.144254 0.715993 -0.331703 0.050505 -0.874859 0.578692 1.147957 -0.173272 -0.777780 0.766144 0.136459 2.636032 -0.112403 0.565065 -0.260508 0.520780 -0.209469 -0.869310 -0.154432 1.256123 1.007985 0.014284 -0.185386 -0.072100 0.258443 0.618981 -PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = -0.107577 -0.294424 1.055459 0.505048 -0.382971 -1.064062 -0.417832 -1.834881 1.093682 0.474706 1.044494 0.142358 0.773857 -0.764527 -0.158218 0.161992 0.236948 -0.499900 0.142352 -0.408967 -0.008465 1.722305 0.180884 -0.340117 0.001600 -1.610259 0.871900 0.281168 0.763140 1.157970 0.150217 -0.037018 -0.127522 0.423116 -0.271891 0.567908 0.094453 0.437190 -0.468629 -0.159660 0.256383 -0.011085 0.707751 -0.149011 1.223037 -0.049600 0.497364 0.054799 -0.206686 -0.493774 -0.340174 0.413643 -0.756138 0.297350 -0.531705 -0.154993 -0.052795 -0.305878 -0.333232 -0.716567 0.034192 -0.069584 -0.693828 0.116575 -0.741975 0.428961 -0.184868 -0.455346 -0.096499 -0.449082 0.688140 0.482806 0.149676 -0.171033 -1.491363 0.083712 0.105424 0.084693 0.487749 -0.030317 -0.274585 -0.362770 -0.624474 -0.585442 0.932267 0.926874 0.055285 0.339072 -0.293442 -0.104372 -0.248691 0.041644 0.437490 0.545710 -0.554453 -0.085085 -0.045935 -0.088674 -0.043156 -0.678764 0.335859 -0.581753 0.394870 0.299923 -0.050172 0.255717 0.380586 0.236693 -0.602007 -0.765878 0.121773 -0.412723 0.363258 1.209390 -0.319837 -0.281450 -0.636005 -0.126788 0.013115 0.643050 0.089608 0.391222 1.082532 0.776030 0.433478 -1.021712 -0.560090 0.886076 0.706274 0.486663 0.158223 -0.830254 -0.424662 0.076820 -0.331670 -1.452334 -0.564392 0.201671 0.678050 -0.577771 -0.459842 0.663073 -0.291119 0.881571 1.041777 -0.151422 0.218511 0.325499 -0.940618 0.753609 1.603799 -0.075549 0.442894 -0.865555 -0.485948 0.988353 -0.541528 0.378999 0.062646 -0.067063 -0.244204 -0.543678 0.445746 0.716303 -0.101871 0.662974 -0.239861 0.564259 -0.311248 -1.121480 -1.259721 -0.371200 1.117912 0.510083 1.576867 -0.894847 -0.356991 -0.025541 0.747574 0.305503 -0.275834 0.395917 -0.871039 0.617286 -1.767325 -1.334815 1.641661 1.401979 1.028243 0.264768 0.731303 0.677790 -0.374748 -0.120282 -0.191427 0.475525 0.528511 -1.167123 -0.192643 0.041924 -0.973353 -0.950485 -0.011272 0.303564 0.093757 -0.026267 0.425808 -0.319699 -0.359070 -0.688631 0.805838 -0.707202 -0.243262 -0.184043 0.164702 -0.061431 0.340337 -0.458373 0.455161 0.335176 -0.193964 0.438964 0.480546 0.210213 0.076011 0.668803 1.459646 -0.577050 0.567377 -0.106616 -0.219145 1.230775 -0.276735 0.170858 0.281879 0.283182 0.303251 0.235555 0.463361 -0.501507 0.027259 -0.858180 0.040821 0.555898 0.617387 -0.331537 -0.808679 -1.108033 -0.168189 0.034429 1.064512 0.145836 1.593044 -0.576847 0.437589 -1.718555 0.072084 0.536766 0.086086 0.683303 0.303991 -0.436280 -0.919228 -0.305544 -0.625591 -0.601901 -0.539251 -0.814835 -0.625830 -0.623306 0.666177 -0.683324 0.082168 0.703519 0.004710 0.735441 -0.652213 0.135212 -0.779059 0.196145 -0.005887 0.208542 -0.648096 0.532462 -0.051702 1.816787 -0.338559 0.650474 -0.422224 1.115229 -0.690880 -1.006020 -0.146335 1.144640 0.717654 0.045735 0.032363 -0.284905 0.016961 0.607571 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/Nearly_sorted_Algo.cpp___GLOBAL__sub_I_Nearly_sorted_Algo.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = -4.478682 3.720987 23.894099 15.965404 -13.589556 -18.745743 -8.842396 -22.820751 11.182226 -1.174868 15.027286 2.944058 3.066279 -2.997537 3.448233 -1.750828 3.479784 -5.222685 -0.342640 -6.798774 -2.442680 15.611678 10.113087 -18.898878 1.676949 -22.096403 11.284400 11.607180 8.919024 11.326089 0.793429 -3.562957 -5.645685 12.227681 -6.902359 -1.136132 3.813290 1.733409 -9.692365 -0.721535 6.128562 10.568657 12.519182 -2.032882 14.631382 3.781072 13.986556 5.126607 -11.584602 -2.041592 -11.291710 22.345908 -12.170654 8.977136 2.687720 7.398249 1.589389 -15.550083 -6.197215 -16.366874 -1.078357 3.997429 -8.943025 -0.646575 -11.904011 3.978115 -0.010338 -6.813392 8.781836 3.185100 14.455323 2.924502 2.285113 -3.832578 -12.567579 3.703242 -2.359817 12.559546 9.161835 -5.363092 -1.628985 2.915762 -5.000670 -8.376472 3.632430 1.036658 2.916676 -2.922825 2.393518 -2.018747 -1.368017 -5.358962 -3.752707 8.345993 -11.023027 6.299281 -4.830624 -2.052749 -10.309395 -4.560738 0.375730 -10.060291 6.625524 8.723344 -3.057766 -0.983388 -2.365508 2.197136 -8.080238 -14.195133 1.931492 -1.430917 2.425311 15.427055 -8.535618 -0.538879 2.820025 -2.111646 -4.003582 14.493596 1.647748 7.146180 11.877229 20.716295 2.045202 -10.163150 -5.227077 1.546980 12.993819 15.127068 11.604490 -15.071678 -8.937197 -1.093208 1.166658 -22.072097 5.731670 7.797174 13.281633 7.888824 -17.588216 1.747342 -7.319888 19.023933 6.728036 8.963325 3.308932 -1.416312 -12.418855 16.142052 28.092141 -5.386022 12.373301 -6.217762 -5.489149 14.719744 -12.786770 9.296198 4.982014 0.040489 3.927020 -9.326517 -6.686117 13.352937 9.346551 6.642853 10.354296 3.840998 -2.518130 -25.869583 -18.396610 0.254791 12.335408 -2.737360 23.057696 -12.664501 -11.026072 -5.357085 16.607804 -6.176629 -6.507672 1.558369 -9.139985 9.167865 -18.552979 -17.968662 24.948053 24.594707 1.142030 1.804732 17.500298 12.253308 -9.879618 -7.333650 -6.496173 6.694245 3.251617 -4.223361 0.099336 -0.402389 -14.666552 -7.990155 3.627220 5.738766 6.415058 -4.147413 -7.206576 7.613510 -17.391110 -9.721054 5.054023 -14.319652 -5.522822 3.830647 -0.366311 1.745638 5.616597 -5.520883 -4.062692 7.124725 -10.715323 0.710147 6.225062 13.184333 6.282006 17.070468 13.002269 4.225016 20.100111 9.988892 -9.013985 30.179142 -5.108179 3.725719 3.986472 8.055075 -0.626842 6.095919 4.616765 -7.335617 -6.921408 -16.956623 7.778340 -0.876416 12.614349 -16.111635 -13.374165 -15.405267 -7.901171 12.848599 8.098474 -4.670118 26.991913 -2.881139 1.110916 -32.213909 -2.211975 12.527546 0.200486 9.195901 8.231640 -9.681434 -25.182669 -4.858420 -5.906236 1.128122 -6.389985 -11.826043 -9.040438 -9.230159 13.085029 -8.524091 5.500802 17.903992 -2.071200 7.860575 -4.065617 -1.486790 -3.142903 -6.811982 5.775046 5.048422 -15.933125 19.637716 -3.378688 37.386595 -6.489141 10.649644 -11.577877 3.172951 -0.859384 -4.520243 -1.975010 20.097593 11.620993 3.896223 0.816979 1.325488 -9.210775 10.559755 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.114882 0.214071 0.692174 -0.278312 -0.251259 -0.712754 -0.215584 -1.283387 0.401114 0.218972 0.574154 -0.085351 0.420433 -0.090364 0.049668 0.388870 0.315270 -0.245117 0.254667 -0.316843 -0.006391 0.545436 -0.210495 0.437781 0.127381 -0.791198 0.126409 0.114432 0.474922 0.359417 0.247979 -0.168777 -0.358805 0.145782 0.111849 0.308678 0.491445 0.111193 -0.590982 0.263380 -0.399684 -0.071938 0.312442 -0.060715 0.615086 0.095728 0.043464 0.332331 -0.027915 -0.250364 -0.099374 0.509349 -0.203030 0.168134 0.098112 -0.325560 -0.251985 -0.051888 -0.090350 0.166842 -0.188863 -0.269259 -0.152653 0.200765 -0.305250 0.172606 -0.362638 -0.201880 -0.111133 -0.142969 0.320457 0.110616 0.144226 0.446457 -0.870529 0.028246 0.084913 0.220632 0.279739 -0.187348 0.138783 -0.071915 -0.310319 -0.441966 0.409407 0.801161 0.123711 -0.007007 -0.558308 0.106240 -0.185604 -0.155022 0.359172 0.214729 -0.429880 -0.102043 -0.349744 -0.157511 -0.299163 -0.937386 0.178342 -0.145243 0.257732 -0.306269 0.210652 -0.127217 -0.153290 0.183617 -0.234500 -0.281135 0.300004 -0.088342 0.075153 0.864496 -0.230015 -0.084863 -0.465135 -0.192648 -0.136940 0.274555 0.218027 0.119971 0.228374 0.480503 0.310788 -0.379232 -0.499587 0.340213 0.331838 0.235209 0.227036 -0.469651 -0.223566 0.214491 -0.437975 -0.734959 -0.319307 0.055763 0.413755 -0.248989 0.166514 -0.188562 -0.335166 0.346379 0.329116 -0.020334 0.095363 0.002148 -0.408475 0.321881 0.573950 -0.147644 0.422507 -0.244828 0.181963 -0.046029 -0.219923 0.185687 0.105626 -0.069215 -0.265630 -0.090743 -0.105907 0.287460 0.290322 0.322442 -0.259088 0.312689 -0.507505 -0.460785 -0.654425 -0.082337 0.659939 -0.220411 0.192512 -0.388730 -0.396774 -0.051669 0.686453 0.111042 -0.333611 0.342969 -0.469963 0.286733 -0.227945 -0.413581 0.746879 1.028417 0.498170 -0.138374 0.185984 0.453704 -1.024712 -0.309780 -0.068557 0.165187 -0.278099 -1.309731 -0.536257 0.097742 -0.464501 -0.189858 -0.099534 0.315479 0.141700 0.625804 0.640294 0.226315 -0.101188 -0.235532 0.454946 -0.024605 -0.184997 0.085714 0.075854 0.087950 0.252568 -0.477983 0.166762 0.579902 -0.399648 0.254838 0.346914 0.148989 -0.011993 0.749077 0.298933 0.062616 0.521441 -0.172225 -0.356173 0.261645 -0.026912 0.317589 -0.014863 -0.108166 -0.134141 0.098621 0.265592 -0.268846 -0.568900 -0.429711 -0.409287 0.049750 0.417149 0.599168 -0.847552 -0.551717 0.105651 0.032535 0.526385 0.081345 0.622996 -0.175128 0.345701 -0.622170 0.124442 0.088301 -0.118112 0.270013 0.073782 -0.207717 -0.222071 -0.052217 -0.665014 -0.941708 -0.110711 -0.362385 -0.180093 -0.461211 0.607179 -0.148359 -0.217767 0.096410 0.147850 0.543863 -0.050362 -0.039230 -0.471857 0.273861 0.579215 -0.179149 -0.400166 0.267912 0.199530 1.197350 -0.003723 0.128461 0.020234 0.009328 0.013593 -0.398942 -0.138000 0.580151 0.520150 0.207223 -0.280126 -0.190614 0.054525 0.157052 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp___GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_binary_matrix.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/maximum-length-chain-of-pairs.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = -3.121647 1.234448 13.845139 9.145007 -7.267117 -9.673618 -5.151953 -12.264389 7.106286 -0.311399 8.618894 2.095123 1.913014 -3.133512 1.174725 -2.397283 1.028018 -3.263541 -0.735610 -3.690093 -1.361698 9.154530 7.082033 -11.500001 1.410315 -13.882185 7.296649 5.829078 5.409571 7.988823 -0.408962 -1.641218 -2.951021 7.389873 -3.728019 -0.509699 1.567812 0.902297 -4.578045 -0.516867 4.945028 6.338842 7.160617 -0.597048 8.818832 2.408507 5.850941 2.137031 -6.803968 -1.593195 -5.018097 10.854971 -7.379497 5.203950 1.247121 5.312140 0.661126 -9.111243 -3.396667 -10.855480 0.188825 2.276596 -4.493054 -0.138280 -7.117595 2.174169 -0.198320 -3.797994 4.943105 -0.166167 8.000307 2.215775 1.198894 -2.754804 -6.174833 2.459704 -0.547503 6.560961 5.519285 -2.552839 -1.990636 1.397529 -2.700565 -4.801430 1.876784 0.265275 1.320167 -0.866412 2.430707 -2.501796 0.286731 -2.716889 -1.941599 5.190422 -6.498380 2.971670 -2.451646 -1.263713 -4.388953 -2.276847 0.141501 -5.932922 3.763667 6.067460 -3.097961 -0.162678 -0.105038 1.814657 -4.004777 -7.700094 1.065017 -0.803488 1.992383 9.062420 -4.536580 -0.859794 0.861752 -1.164264 -1.757401 8.699607 0.060066 3.894155 7.559108 11.584589 1.347323 -5.889899 -2.195681 1.654823 7.084235 8.076384 6.290660 -8.831394 -4.791543 -0.456932 1.079429 -12.841734 2.448502 2.950055 7.429746 4.317143 -10.613262 2.233224 -4.034912 10.349549 4.304655 4.135217 2.067148 -0.838150 -7.576569 9.594918 16.507070 -2.957520 6.156887 -4.005534 -5.350105 9.477543 -7.612519 5.388030 1.885628 -0.236985 2.922858 -5.749670 -2.117373 7.999530 3.650421 4.008244 5.125188 2.093883 -0.479975 -14.630726 -10.710870 -0.336100 6.521070 -0.293417 14.248927 -7.181341 -5.094250 -3.875213 10.372904 -2.438764 -2.826747 0.609585 -5.063757 5.083718 -11.896786 -10.830251 14.569605 15.000480 1.493952 1.773704 9.735653 6.892922 -3.384024 -3.363679 -3.870414 3.331622 3.111637 -1.225974 0.109654 -0.481753 -8.007615 -5.223639 2.315604 2.741155 4.170725 -4.012876 -5.096450 3.861929 -9.625267 -6.348566 3.049230 -8.984210 -2.688057 1.859789 -0.186838 0.624495 3.443022 -2.857679 -2.465918 3.146811 -5.025807 0.754904 3.510748 7.780487 3.311459 8.233602 7.729991 1.254894 9.385471 5.786251 -4.520438 18.064730 -3.728669 1.787423 2.808333 4.756711 0.650448 3.775486 2.174103 -4.316685 -1.868087 -9.596000 4.962747 -0.079192 6.456851 -11.026379 -7.804765 -9.004289 -4.666432 6.644323 4.173176 -1.645443 16.310781 -1.519171 -0.135748 -18.316980 -1.708791 7.934230 0.445319 6.140556 4.893634 -5.670771 -15.766132 -3.250345 -3.326597 2.648489 -4.330381 -6.513506 -5.007912 -4.334504 8.331415 -4.479582 4.335192 10.536034 -0.864295 4.434133 -2.634064 -0.542377 -2.937622 -4.235946 1.275297 3.087051 -8.378668 10.620362 -1.761675 18.822594 -4.311260 6.420663 -7.024328 3.046996 -1.212520 -3.075854 -1.266336 11.254907 6.367465 2.404611 0.768654 0.613135 -5.576848 6.258189 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/maximum-length-chain-of-pairs.cpp___GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.215509 1.006090 5.727052 3.908403 -3.513182 -4.616106 -2.340921 -6.003781 2.642985 0.288087 3.962932 0.304669 1.032756 -0.727314 0.463662 -0.804149 0.814939 -1.316805 0.238245 -1.759109 -1.659659 3.724545 2.302217 -4.305128 0.478222 -5.050689 3.984911 2.696324 1.658530 3.094795 0.317823 -0.547051 -1.368560 3.296755 -1.582590 -0.051336 0.741888 1.184972 -1.570427 0.199079 1.956861 2.241233 3.359025 -0.143997 3.687655 2.020896 2.503406 1.231483 -3.215773 -0.597819 -1.734033 3.839535 -3.294941 2.145161 0.092854 1.503494 0.792803 -3.822268 -1.250835 -4.010095 -0.008155 0.337789 -2.445061 0.180093 -3.258756 0.812435 -0.220165 -2.228882 1.842645 0.576938 3.321291 0.762303 -0.022860 -0.881433 -2.975755 0.914341 0.214868 2.394757 2.530555 -1.509427 -0.670629 0.614068 -1.948392 -2.564108 1.218190 0.564737 1.167142 -0.273183 0.739520 -0.934779 0.139514 -1.023830 -0.224338 2.814122 -1.681613 1.270752 -1.029890 -0.797236 -2.769921 -1.871636 0.476706 -2.540864 2.165938 2.391886 -1.695454 -0.272533 -0.276085 0.870463 -1.882954 -3.523739 0.253926 -1.446432 1.691751 3.795717 -1.498479 -0.746065 -0.115038 -1.161465 -0.062016 3.508000 0.708387 1.025820 3.753232 4.884050 0.506560 -2.878846 -1.717942 0.256610 2.440407 3.482693 2.623670 -4.040069 -2.257362 -0.164010 -0.264963 -5.347591 0.797578 0.873313 2.716863 0.433292 -3.987649 1.542190 -2.114058 3.855044 2.201948 2.487304 0.808282 -0.179020 -3.024875 3.700170 6.357423 -1.112976 2.573654 -1.673835 -2.283318 3.784021 -2.589975 2.125461 1.362614 -0.529814 0.360388 -2.245898 -0.659337 3.395901 1.586752 1.603837 2.499489 1.041556 -0.750859 -5.416757 -4.521453 0.677420 3.800965 0.219390 6.306269 -3.648609 -2.170132 -0.937248 4.116839 -0.524042 -1.346123 0.383087 -1.714829 2.337012 -5.193278 -4.711483 5.639916 5.085424 1.115201 0.091756 3.685170 2.277363 -1.681822 -2.027771 -1.931347 1.804619 0.767307 -0.659784 -0.075167 0.146618 -3.581922 -1.651695 0.668065 1.569610 2.216701 -2.018918 -2.098302 0.678135 -3.826983 -2.791747 1.225708 -3.308500 -1.194126 0.812626 -0.216942 0.291207 1.276373 -0.972174 -0.986710 0.761856 -2.187874 0.418375 1.765293 3.070782 0.975516 4.491809 3.514789 -0.065295 3.497197 2.110816 -1.542292 7.373681 -1.306763 1.140458 1.432011 2.484234 0.264352 1.256568 2.104916 -1.846953 -1.325728 -4.143373 1.643494 0.533200 2.794742 -4.557886 -2.547025 -4.709211 -1.657107 2.398645 2.938873 -0.808284 6.690399 -0.133641 0.607953 -6.957178 -0.503021 2.733991 -0.169852 2.548815 1.937539 -2.788435 -5.538120 -1.392141 -2.164961 0.143730 -1.503773 -2.094534 -2.538223 -1.160585 2.008760 -1.451615 1.272237 4.444801 -0.848354 1.200004 -1.232424 -0.160843 -0.792360 -1.917649 1.829466 0.674868 -3.836018 4.535722 -0.549368 8.947851 -1.185904 2.861093 -2.537916 1.032621 -0.237280 -1.251028 -0.805760 4.929774 2.489920 1.077155 0.450538 0.607410 -1.631325 2.790823 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = -1.827687 0.819848 8.141845 5.949234 -4.812312 -6.452281 -3.405989 -8.412542 4.449982 0.236517 5.497898 0.893641 1.557725 -1.959290 0.609944 -1.063229 1.388957 -1.888042 0.096199 -2.497506 -1.338576 6.127726 3.504359 -6.775235 0.650562 -7.792296 4.903438 3.843258 2.971709 4.661306 0.532021 -0.810592 -1.920392 4.488954 -2.449902 0.041386 1.178758 1.179007 -3.207724 -0.230616 2.612410 3.693818 4.858412 -0.469564 5.649537 1.712518 3.815806 1.654119 -4.469713 -0.893189 -2.929558 6.411249 -4.422550 3.077772 0.503438 2.404766 0.912848 -5.479990 -2.101672 -5.990248 -0.071142 1.080606 -3.318782 0.106344 -4.417508 1.353435 -0.130772 -2.689909 2.767477 0.512763 4.815930 1.259687 0.476596 -1.640965 -4.509563 1.384044 -0.092618 3.734821 3.622878 -1.474015 -0.762890 0.624192 -2.192642 -3.261137 1.749836 0.792307 1.115156 -0.145379 0.978138 -1.493134 -0.100006 -1.684544 -0.416217 3.267187 -3.155568 1.671990 -1.323335 -1.015761 -3.078970 -1.879924 0.551396 -3.473014 2.646011 3.368501 -1.795951 -0.006734 -0.162638 1.216706 -2.918072 -4.651190 0.800202 -1.432311 1.645561 6.023534 -2.442217 -0.994220 -0.183067 -1.083510 -0.871320 5.263101 0.575514 2.138423 4.694784 7.103729 0.822029 -4.034250 -2.085624 1.026775 4.101835 4.945406 3.746945 -5.448569 -3.146300 -0.306845 0.104237 -7.694785 0.833420 1.502746 4.194646 1.554068 -5.752859 1.514905 -2.688512 6.263407 2.737224 2.829481 1.219992 -0.238280 -4.690486 5.685485 9.474571 -1.523691 3.716790 -2.383876 -3.112319 5.230246 -4.042061 3.183749 1.405957 -0.732635 1.000747 -3.200245 -0.917450 4.662384 2.123929 2.215491 2.784841 1.671695 -0.906581 -8.276430 -6.907953 0.643842 4.815810 0.216601 9.104386 -4.777769 -3.610477 -1.881915 5.889650 -0.997702 -1.822908 0.802246 -3.190349 3.398098 -7.600297 -6.820853 9.002432 8.183970 1.627248 0.401158 5.760095 3.659202 -2.656509 -2.637951 -2.394526 2.345319 1.792738 -1.329213 0.144740 0.160136 -5.017906 -3.212100 1.271322 2.030796 2.590472 -2.454974 -2.479633 1.306467 -5.508525 -3.672019 2.173127 -4.948245 -1.600054 1.136009 -0.207772 0.406078 2.257660 -1.774568 -1.267054 1.510680 -3.021611 0.466748 2.161503 4.666605 1.666435 5.495168 5.556658 0.422011 6.152462 3.163399 -2.761380 10.877129 -2.058317 1.492289 1.755471 2.777273 0.561639 1.658261 2.199458 -2.695216 -1.479268 -5.873119 2.533300 0.622185 4.301562 -6.827785 -4.395848 -6.152773 -2.489071 3.563183 3.319381 -1.106925 9.762403 -1.139483 0.336273 -10.812206 -0.739650 4.642059 0.179197 3.765408 2.807835 -3.812132 -8.962001 -1.934360 -2.971482 0.750462 -2.485969 -3.857943 -3.494882 -2.483438 4.539659 -2.652559 2.145187 6.975507 -1.154421 2.430594 -1.996142 -0.262212 -1.441349 -2.668724 1.254423 1.386404 -5.468907 6.551779 -1.097822 12.681237 -2.044854 3.879126 -3.960583 2.069099 -0.886942 -2.282461 -0.949577 7.014990 3.878494 1.325459 0.595363 0.601460 -2.910252 3.919087 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = -0.416015 0.720117 4.107597 2.750841 -3.183270 -4.027930 -1.798774 -5.536500 2.393437 0.339380 3.151069 0.260087 1.287499 -1.364909 0.059830 -0.113378 1.319197 -0.682423 0.125822 -1.710472 -1.699538 3.455433 0.798961 -2.415387 0.633197 -3.792600 2.916143 2.016832 1.746351 2.286221 0.800534 -0.350249 -1.569083 2.074583 -0.815362 0.426958 0.518534 0.900580 -2.193117 0.130052 1.220189 0.556019 2.999231 -0.302253 2.919864 0.758770 1.843800 1.172030 -2.469134 -0.757496 -1.450491 2.963503 -2.063910 1.581341 0.128242 0.282560 0.613596 -2.238814 -0.781908 -1.701975 -0.340586 -0.652426 -1.929692 0.253998 -2.455847 0.674444 -0.732689 -1.855262 1.207515 -0.166163 2.275666 0.454289 -0.141796 -0.363817 -3.147654 0.365153 0.545916 1.757426 2.072066 -0.126094 0.323137 -0.145057 -1.958858 -1.991920 1.579259 1.036071 0.956415 0.060943 -0.746968 -0.868643 0.159587 -0.668717 0.895896 1.571761 -2.003092 0.348415 -1.454743 -0.928703 -2.128667 -2.644033 0.754020 -1.521512 1.694990 0.991268 -1.531989 0.016260 0.146668 0.508598 -1.388047 -2.604387 0.151904 -1.372388 1.282408 4.131874 -1.015507 -1.210760 -1.092469 -0.984650 -0.522001 2.273866 0.838495 0.789285 2.954947 3.538606 0.963770 -2.481370 -1.840076 0.729889 1.749961 2.359252 1.789317 -2.679494 -1.752432 0.227122 -0.730043 -4.573909 -0.345736 0.344388 2.387031 0.161430 -1.873123 0.675673 -1.724195 2.727392 1.458477 1.220802 0.714599 0.020982 -2.539992 2.760470 4.400762 -0.682869 1.928069 -1.458598 -1.648356 2.475726 -1.429707 1.213362 0.823491 -0.810539 -0.263018 -1.360270 -0.172729 2.405404 0.486205 0.856359 0.932366 1.248537 -1.420572 -3.987188 -4.053941 0.841504 3.325926 0.623856 4.452104 -3.021060 -1.662351 -0.497982 3.354043 -0.217210 -1.304146 0.993419 -2.009319 2.006961 -3.596408 -3.742726 4.801140 4.141425 1.156062 -0.025751 2.585155 1.701216 -2.625272 -1.735205 -1.727075 1.273497 1.073678 -2.287732 -0.501571 0.422729 -2.853828 -1.340537 0.626564 1.399823 1.622036 -0.993540 0.049298 -0.144745 -2.272286 -2.267938 2.016262 -2.030922 -0.462141 0.658151 -0.221799 0.220018 1.579960 -0.964313 -0.577223 0.237183 -1.487358 0.630752 1.051480 2.262317 0.370967 3.728300 3.259603 -0.411753 3.078715 0.962105 -1.630588 5.245454 -1.214030 1.201582 0.820356 1.555957 0.204606 0.844424 2.035926 -1.575144 -1.213622 -3.152745 0.141360 0.541914 2.151805 -2.891136 -2.226510 -4.288523 -1.002192 1.076178 2.424429 -0.369124 5.010911 -0.963542 0.401546 -5.292068 -0.193814 2.084812 -0.137163 2.410609 1.075822 -2.118456 -3.564951 -1.034537 -2.496752 -0.593761 -1.042436 -1.602762 -2.156684 -1.219469 2.297045 -1.177243 0.642988 3.248174 -0.758983 1.465204 -1.254387 -0.001589 -0.978434 -0.940756 1.469951 0.309495 -2.820204 3.469375 -0.016854 7.141775 -0.171129 1.867171 -1.566587 0.876819 -0.335034 -2.149538 -0.878568 3.634080 2.349213 0.898961 0.013648 0.426658 -0.974036 2.205246 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.021437 0.227092 2.936172 1.476290 -1.391238 -2.502482 -1.130520 -4.324272 2.284348 0.311532 2.113544 0.250202 0.986462 -1.310041 -0.046626 0.380454 0.504553 -0.832185 0.155449 -0.892069 -0.186790 3.146582 0.368686 -1.252841 0.201287 -3.654239 1.289556 1.153126 1.988665 1.517832 0.382722 -0.494337 -0.694694 1.270689 -0.664153 0.581313 0.700169 0.376445 -1.843649 -0.310893 0.290876 0.806828 1.675345 -0.416615 2.405786 -0.313315 1.548507 0.587959 -0.813155 -0.482975 -1.278607 2.859001 -1.276462 0.983922 0.267683 0.073983 -0.097229 -1.495846 -0.717434 -0.887542 -0.406064 0.137953 -1.199578 0.115203 -1.494325 0.650298 -0.211574 -0.731512 0.676533 -0.241187 1.789349 0.659096 0.447015 -0.247464 -2.749723 0.450689 -0.004593 1.110372 1.260338 -0.060916 0.297537 -0.116113 -0.965113 -1.295133 1.520916 1.564255 0.212472 0.011405 -0.583387 -0.339383 -0.453615 -0.729307 0.457339 1.003604 -1.883755 0.156275 -0.914257 -0.377919 -0.949647 -1.482467 0.366189 -1.244666 0.915087 0.414607 -0.059009 0.203361 0.582816 0.292991 -0.948040 -1.678886 0.378532 -0.359332 0.701334 3.060157 -0.940699 -0.458639 -0.658608 -0.347642 -0.994732 1.566447 0.388835 0.932435 1.913939 2.374334 0.919563 -1.664700 -1.204881 1.288579 1.640762 1.635568 0.954141 -2.168707 -0.924715 0.142860 -0.021013 -3.402083 -0.378263 0.655725 1.743452 0.182007 -1.214289 0.152926 -0.650611 2.346164 1.127127 -0.002003 0.491110 0.245153 -1.750913 2.050741 3.644564 -0.380109 1.308620 -1.457211 -0.620018 1.479794 -1.596338 1.099332 0.329055 -0.007800 0.049055 -1.197533 -0.042775 1.630369 0.322152 0.883633 0.107963 0.975639 -0.949681 -3.129886 -2.970969 -0.078919 1.855604 -0.132800 2.983959 -1.721956 -1.608284 -0.467090 2.396901 -0.267255 -0.701456 0.951085 -2.103695 1.435377 -2.141908 -2.614792 3.674134 3.713946 0.994071 0.138740 2.167733 1.691214 -2.144922 -0.920541 -0.753727 0.811848 0.986970 -2.525606 -0.476409 0.009610 -1.987090 -1.524513 0.274713 0.699215 0.562390 0.373679 0.650709 0.279298 -1.582981 -1.384032 1.737746 -1.432498 -0.410084 0.130036 0.229431 -0.059272 1.375287 -1.255135 0.037398 1.101718 -1.057539 0.621372 0.953675 1.158565 0.295617 2.135450 2.365624 0.057142 2.990088 0.587534 -1.079174 3.166968 -0.644425 0.485338 0.433121 0.381578 -0.026136 0.851746 0.641097 -1.192754 -0.872300 -2.158746 0.296226 0.095981 1.524929 -0.928210 -2.186921 -2.280360 -1.004481 0.928289 1.181781 0.066889 3.551258 -1.100549 0.389639 -4.316642 -0.081888 1.553940 0.081742 1.587127 0.730448 -1.180778 -2.679110 -0.644039 -1.304328 -1.338567 -1.033549 -2.017159 -1.284467 -1.979898 2.611740 -1.358656 0.490553 2.111748 0.156535 1.431944 -1.321069 0.093026 -1.271278 -0.123105 0.574289 0.278325 -1.920892 1.887921 -0.287555 4.940823 -0.906282 1.251192 -1.320127 1.130703 -0.688944 -1.711706 -0.253084 2.594382 1.678715 0.391739 -0.416144 -0.261232 -1.042961 1.468248 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.133864 0.308526 1.327700 -0.440878 -0.603942 -1.301081 -0.600701 -2.682671 0.836041 0.519515 1.289600 -0.234484 0.745496 -0.099595 0.061454 0.812223 0.517691 -0.819129 0.618420 -0.614498 -0.346038 1.481345 -0.183936 0.997891 0.113931 -1.758518 0.424611 0.043380 0.958103 0.691914 0.465156 -0.319467 -0.518776 0.346807 0.272096 0.824327 0.717317 0.377418 -0.889487 0.565098 -0.516837 -0.397035 0.666565 -0.185780 1.258112 0.118948 0.364608 0.512236 -0.191663 -0.524444 -0.387905 1.038153 -0.712159 0.171507 0.148346 -0.667594 -0.415556 -0.229030 -0.406419 0.424262 -0.607487 -0.711517 -0.497260 0.496510 -0.655218 0.549706 -0.897691 -0.267567 -0.173109 -0.034647 0.802386 0.435961 0.337596 1.004041 -1.729898 0.217227 0.142791 0.340239 0.467319 -0.440005 0.181818 0.053519 -0.744308 -0.990918 1.004895 1.557951 0.226392 -0.327079 -0.911855 0.403328 -0.491318 -0.238986 0.597420 0.628924 -0.932868 -0.128060 -0.612266 -0.383230 -0.799591 -1.905347 0.232471 -0.556933 0.601873 -0.319923 0.140788 -0.338594 -0.342791 0.181822 -0.579927 -0.924624 0.316405 -0.254232 0.285760 1.680954 -0.590747 -0.017468 -0.902666 -0.355287 -0.191922 0.471286 0.600024 0.373185 0.883165 1.051743 0.557416 -0.779199 -1.024510 0.608833 0.754106 0.393098 0.482707 -1.004849 -0.589893 0.344864 -0.580156 -1.508112 -0.715889 0.313381 0.739595 -0.520108 0.322332 -0.242409 -0.487385 0.826728 0.904301 -0.069247 0.155539 0.021860 -0.798731 0.833320 1.378481 -0.278199 0.882033 -0.715669 0.166258 0.531160 -0.782439 0.428685 0.406580 0.133075 -0.774535 -0.459538 -0.212233 0.622469 0.424546 0.664869 -0.329611 0.600312 -0.674657 -0.965041 -1.347990 -0.043149 1.408334 -0.314773 0.555469 -0.905723 -0.647141 0.206812 1.256456 0.517855 -0.765637 0.644975 -0.887972 0.557659 -0.754705 -1.050955 1.548827 1.907532 0.895860 -0.075712 0.493031 1.111797 -2.074859 -0.634976 -0.378788 0.698834 -0.453355 -2.476836 -0.995505 0.238290 -0.952246 -0.455972 -0.364119 0.659610 0.435777 0.951326 1.056183 0.365406 -0.345147 -0.407236 1.089466 -0.190045 -0.626166 0.045169 0.131116 0.127586 0.496580 -0.743055 0.522184 0.864629 -0.798591 0.508409 0.869204 0.245975 -0.077769 1.578264 0.981171 -0.092523 0.868535 -0.364172 -0.432137 0.388730 -0.083243 0.473079 -0.015952 -0.147172 -0.329341 0.207685 0.679803 -0.483996 -1.337992 -0.783577 -0.420028 0.033610 0.768020 1.013190 -1.587144 -1.268684 0.080808 0.327077 1.206452 0.289512 1.380838 -0.342284 0.668666 -1.450018 0.237753 0.153150 -0.122112 0.746242 0.122168 -0.363036 -0.154025 -0.277184 -1.160283 -1.670568 -0.254012 -0.801379 -0.530288 -1.013085 1.149308 -0.400070 -0.417794 0.147149 0.318715 1.037658 0.129621 -0.177025 -1.093993 0.616288 1.237984 -0.284439 -0.722524 0.806672 0.234761 2.512790 -0.187771 0.251532 -0.014072 0.117998 -0.000961 -0.785849 -0.093668 1.226794 1.033951 0.261460 -0.580180 -0.436802 0.153111 0.318611 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp___GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -2.752325 1.315810 10.908756 10.183440 -8.421922 -10.991822 -4.833263 -10.884171 6.372704 -0.365047 7.216900 1.924137 2.632791 -3.957579 0.019256 -2.714225 2.680613 -1.698311 -1.060555 -4.328082 -4.304284 9.952600 5.301173 -11.017860 1.499929 -10.774847 9.022105 5.984150 3.938686 8.337362 0.332790 -0.567205 -2.982635 6.728166 -3.559072 -0.405807 -0.255149 1.768124 -4.216102 -0.411617 5.806050 3.566288 8.889273 -0.168786 6.857874 3.500985 5.301592 2.474796 -7.450131 -2.150763 -4.382759 6.665988 -6.434834 5.092362 -0.844999 3.682787 3.454321 -7.167635 -2.099393 -8.757425 -0.029992 0.198275 -5.113498 -0.291867 -7.573832 1.494619 -0.957663 -5.510119 3.776736 -0.921726 6.471428 1.899849 -0.390492 -3.889773 -6.689259 1.494116 0.753778 5.742465 5.614568 -0.310735 -1.813650 0.007161 -5.013692 -4.723935 2.145137 -0.767713 2.467412 1.228885 0.851901 -4.127808 1.136982 -1.316429 0.484906 4.222276 -3.848409 1.917315 -2.162292 -1.592384 -4.899240 -3.963827 1.106829 -4.113461 3.676855 5.069311 -4.462186 -0.029351 0.387606 0.823286 -3.703356 -7.119503 0.667453 -3.331331 2.208653 8.979341 -2.680649 -2.591809 -0.846652 -1.980610 -0.736282 8.076394 0.591503 2.125129 7.615155 9.830234 1.324682 -6.335413 -2.671781 0.694211 5.304509 6.325318 5.932556 -6.744703 -5.085589 -0.155848 -0.582136 -11.749575 0.909772 2.338885 6.882437 2.282580 -8.683457 4.576417 -4.686830 7.987318 4.001008 3.834451 2.368871 -0.853961 -7.380807 8.488074 13.789036 -2.088490 5.103126 -4.549040 -6.714149 10.482660 -4.668333 3.783153 1.334278 -2.464850 0.679255 -3.797912 0.699717 7.109535 1.263416 2.179564 5.275457 2.197946 -1.396513 -12.221675 -10.442107 1.723501 7.992880 2.901505 14.746440 -8.130684 -2.886713 -2.610678 7.896998 -1.778740 -2.600154 0.994614 -4.285042 5.010207 -13.723246 -10.721794 14.157007 10.998063 1.802524 1.725868 7.513511 4.739167 -1.329559 -3.765855 -4.553580 3.116597 3.984915 -0.965857 0.578059 0.468035 -7.611487 -4.391991 2.593892 3.112864 5.028395 -6.383722 -4.138494 -1.717222 -7.894466 -7.586953 3.208192 -7.915393 -1.090812 2.671433 -0.985503 0.058649 3.426111 -0.223161 -2.440285 -0.453807 -3.219240 0.695314 1.716160 7.105202 2.290742 7.853213 9.400802 -1.458456 7.144090 4.841358 -3.905686 18.125120 -4.534095 2.754200 2.794181 6.823559 2.156309 2.988988 4.589500 -3.820702 -0.202358 -8.788231 3.759711 2.158688 5.018539 -13.368811 -5.106298 -11.416436 -3.509881 3.645050 6.054184 -2.164756 14.553371 -2.340058 -0.208094 -15.993544 -1.000400 6.989049 0.760946 6.022869 4.164203 -5.887991 -12.178743 -3.129765 -4.885493 3.526707 -3.770149 -4.753629 -5.197381 -1.253513 4.299255 -4.108955 3.611776 10.701928 -2.990829 3.173350 -3.450204 0.113093 -2.485123 -4.889257 1.681793 2.229349 -6.682156 9.842825 -1.017460 16.295831 -1.207232 6.202525 -5.397671 3.904598 -1.228518 -5.702708 -2.434504 10.049343 4.975324 1.130776 2.656383 1.676825 -2.576851 6.578136 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = -0.339107 1.290173 10.512534 5.392731 -5.837127 -9.202083 -4.581929 -14.695292 7.202247 0.909033 7.473282 0.514312 2.769327 -3.234952 -0.191867 0.844270 1.551179 -3.604524 0.837952 -3.540455 -2.777742 10.890902 2.319932 -4.473195 0.899130 -13.232327 6.163661 4.037220 6.258343 5.994993 1.056423 -1.637718 -2.322037 5.240950 -1.977603 1.821307 1.752686 1.547517 -5.238618 0.502722 2.339563 2.717370 6.681497 -1.004691 7.818302 1.001048 5.118165 2.406177 -3.843175 -1.753144 -4.483834 8.860608 -5.397169 3.379607 0.372186 1.052933 0.339436 -6.197894 -2.826896 -2.957779 -1.933716 -0.152794 -4.586610 0.879194 -6.071255 2.295081 -1.846490 -3.022210 2.717092 -0.166877 6.552763 2.604733 0.844848 -0.703094 -8.880272 1.973092 0.293845 4.359175 4.438594 -1.460791 0.105928 0.848928 -4.381467 -5.087654 4.499189 4.633841 1.382030 -0.912877 -0.924997 -1.740473 -1.338526 -2.114855 1.304955 4.471416 -5.722856 0.839604 -3.627800 -1.732545 -4.824888 -5.869003 1.004892 -4.577778 3.885507 2.234422 -1.823759 -0.181101 1.589545 0.712462 -3.119699 -6.710657 0.522072 -1.896904 3.255015 10.557847 -3.012464 -1.601844 -2.396855 -1.893354 -2.648516 5.961927 1.718356 2.542318 7.971665 8.963528 2.575282 -5.675746 -4.406379 2.947294 5.243474 5.578928 4.440084 -7.788822 -3.979220 0.064623 0.227328 -11.780002 -0.721587 1.856755 5.759393 0.208666 -4.436560 1.565210 -2.983344 7.950525 4.396386 0.877464 1.912774 0.058795 -6.197166 7.965118 13.506742 -1.475677 4.728447 -6.047732 -3.503972 7.335199 -5.840859 3.932129 1.793168 -0.109313 -0.666529 -4.411789 0.096763 5.973076 0.856418 2.922948 2.529327 2.945416 -2.101394 -10.496288 -10.098112 0.827126 7.028968 -0.069493 11.214948 -6.884240 -4.361927 -1.475407 8.421935 0.093161 -2.542596 2.760900 -6.162662 4.703837 -8.746155 -9.496554 12.587074 12.466549 2.871256 0.823490 7.271476 6.118209 -6.574727 -3.641237 -3.617273 3.714809 2.947158 -7.202460 -1.489546 0.295393 -6.764953 -4.614525 0.686124 2.984836 3.740266 -0.782204 0.111986 0.265922 -6.610145 -5.772644 5.782669 -5.804599 -1.881609 1.233438 0.148709 -0.532745 4.433547 -2.966926 -0.112004 2.596654 -3.632285 2.176720 3.848886 4.556940 0.766615 7.800028 8.428229 -0.375041 8.975760 2.668308 -2.909176 11.843710 -2.558556 2.014195 1.998568 2.544204 -0.197994 3.082232 3.067255 -3.861405 -3.366653 -7.507018 2.556777 0.306149 4.867470 -4.742101 -6.920520 -9.321338 -3.684659 3.852842 5.320928 0.349750 12.833988 -2.603660 1.295873 -14.773609 -0.446645 5.173749 0.646159 5.988321 2.771927 -4.477248 -8.479546 -2.631831 -4.785043 -2.966366 -3.521847 -6.416343 -5.111552 -5.315210 7.439955 -4.064786 1.920551 7.821060 -0.109370 4.113173 -3.649751 -0.101796 -4.462381 -1.490593 3.321663 0.903990 -6.382427 7.524724 -1.140669 16.954070 -2.785661 4.771441 -4.352817 3.185643 -1.368252 -5.606843 -1.015761 9.331726 5.105392 1.199243 -0.788096 -0.722502 -2.735337 5.189738 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.120944 0.280730 0.808663 -0.243909 -0.429925 -0.992088 -0.311563 -1.624222 0.439285 0.300857 0.792193 -0.143506 0.530828 -0.047247 0.055819 0.454953 0.394365 -0.324053 0.315798 -0.438942 -0.334510 0.727853 -0.220085 0.553542 0.168769 -0.890526 0.400335 0.174394 0.462440 0.478121 0.329171 -0.144145 -0.407016 0.230733 0.138955 0.431946 0.414271 0.252154 -0.537590 0.384433 -0.284347 -0.260411 0.492208 -0.004636 0.708607 0.291508 0.131024 0.398353 -0.139652 -0.346576 -0.164197 0.473899 -0.369925 0.180639 -0.055303 -0.403305 -0.135137 -0.105641 -0.105278 0.226289 -0.257111 -0.471646 -0.359498 0.266383 -0.465062 0.226539 -0.535017 -0.335119 -0.143490 -0.121679 0.426937 0.120051 0.005621 0.519584 -1.071843 -0.003264 0.165202 0.206622 0.377424 -0.262137 0.081585 -0.062653 -0.573577 -0.619613 0.611565 0.871205 0.252860 -0.027373 -0.666442 0.089821 -0.218463 -0.100002 0.507945 0.380771 -0.440997 -0.108365 -0.361086 -0.261558 -0.549541 -1.234357 0.281816 -0.228782 0.393174 -0.278362 0.054292 -0.212633 -0.217931 0.158026 -0.326572 -0.507995 0.208522 -0.293635 0.218366 1.020991 -0.251388 -0.158575 -0.609579 -0.324210 -0.021285 0.344105 0.401718 0.059900 0.536602 0.601704 0.338629 -0.516089 -0.677914 0.299286 0.350344 0.279356 0.282984 -0.593960 -0.364095 0.262298 -0.580404 -0.950555 -0.406749 0.080787 0.482628 -0.415507 0.169746 0.010796 -0.441101 0.314777 0.527770 0.081750 0.126401 0.005234 -0.510216 0.407047 0.743341 -0.182645 0.521207 -0.378999 0.047415 0.216927 -0.262740 0.161231 0.261604 -0.127828 -0.477294 -0.125837 -0.057601 0.403247 0.265485 0.366068 -0.129535 0.395229 -0.581426 -0.494974 -0.832743 0.023994 0.969880 -0.090264 0.393151 -0.629176 -0.311281 0.065850 0.802562 0.211615 -0.454898 0.381702 -0.479654 0.362039 -0.483451 -0.588612 0.902726 1.034619 0.623823 -0.139095 0.195757 0.544808 -1.142467 -0.406843 -0.244549 0.337157 -0.279759 -1.452861 -0.584970 0.133999 -0.631918 -0.168635 -0.183678 0.443123 0.267264 0.495178 0.670897 0.027580 -0.163548 -0.366020 0.547493 -0.082001 -0.237378 0.094056 0.014133 0.055155 0.256106 -0.413601 0.226681 0.462757 -0.474336 0.317563 0.463950 0.181837 -0.037143 1.086039 0.507640 -0.138776 0.444918 -0.242912 -0.320389 0.357121 -0.058704 0.402591 0.028779 0.100988 -0.099572 0.121544 0.536129 -0.313767 -0.729122 -0.551901 -0.422382 0.179128 0.460249 0.590311 -0.814185 -0.952056 0.094334 0.022411 0.921523 0.079968 0.820342 -0.147894 0.462866 -0.725086 0.166914 0.045841 -0.168247 0.370961 0.074136 -0.303312 -0.067939 -0.129046 -0.851493 -1.070633 -0.093573 -0.309485 -0.352247 -0.424815 0.456364 -0.196291 -0.273907 0.109776 0.085902 0.527486 -0.034453 -0.049265 -0.546962 0.303124 0.876445 -0.227008 -0.491543 0.423880 0.248644 1.524036 0.076080 0.259673 0.042657 0.040080 0.023475 -0.519781 -0.204343 0.738070 0.627400 0.204699 -0.236921 -0.138300 0.217108 0.251038 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp___GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = -0.257832 0.175909 2.912766 1.830918 -2.170727 -2.225837 -1.241795 -3.094836 0.932990 -0.260357 1.838043 -0.342840 -0.252366 -0.513095 0.145874 -0.356433 -0.078782 -0.715858 0.238949 -0.841667 -0.945389 1.365842 1.072077 -2.449610 0.656934 -3.050129 2.127258 1.694985 0.800670 1.659175 -0.590213 -0.705176 -0.821900 1.735574 -0.547618 -0.275183 0.937390 0.165659 -0.997155 1.052856 0.873706 1.392721 1.702247 -1.265558 1.930626 1.393308 1.008990 0.959499 -2.307119 -0.033927 -0.258535 1.475110 -1.457014 1.407376 0.064146 0.690318 -0.431651 -2.319999 -1.307194 -1.833286 -0.054116 0.039187 -0.690814 0.160111 -1.817978 0.322986 0.470043 -1.606510 2.012312 0.476476 1.513549 0.819251 -0.216453 -0.128453 -0.782035 0.745783 1.041017 1.908170 0.450924 -1.837754 0.729081 0.767087 -1.008250 -0.723999 -0.406347 0.666037 1.166856 -0.881718 0.733245 -0.390195 1.067440 -0.457705 -0.213680 1.307679 -0.411451 -0.037806 -1.848647 -0.331145 -1.823150 -1.478212 -0.042909 -0.990093 1.727507 1.272848 -1.552004 0.661003 1.329929 1.474417 -0.471077 -1.925057 -0.481221 -0.382523 1.972611 2.394117 -0.051671 -0.648302 -0.469631 -0.749223 -0.622574 1.323011 -0.404544 0.432641 2.497251 3.079458 0.383465 -1.571255 -1.611248 -0.397178 1.014504 2.175901 1.780708 -2.256811 -0.982726 -0.688284 -0.335604 -2.769210 0.201174 -1.012023 1.619858 -0.617461 -1.631996 0.745409 -1.449994 2.964208 0.737208 0.643111 0.184714 -0.115047 -1.803731 2.676764 3.392246 -0.437175 0.950946 -1.821728 -1.151945 1.239512 -0.227775 0.876450 0.877200 -0.340361 0.461278 -1.452518 -0.094169 1.439336 0.903753 0.859473 1.157593 0.576625 -0.413980 -2.792340 -1.855087 0.557979 1.368590 -0.289458 3.660906 -2.065244 -1.855661 -1.300903 2.250001 0.029379 -0.311759 0.081984 -1.310060 1.119666 -1.971210 -2.661144 2.571516 3.521463 0.852179 0.638035 2.391465 0.849872 -1.091608 -0.511871 -0.674981 0.765169 0.739290 -1.012055 -0.698836 0.284788 -1.515101 -0.922005 0.515469 0.946102 1.358598 -0.627934 -1.777847 0.835881 -2.541622 -1.669745 0.893628 -2.194887 0.026806 1.012119 -0.185695 0.549571 0.982252 -1.134256 -0.584773 -0.012519 -0.987765 1.039147 1.028353 1.836951 0.237570 1.383812 1.794144 0.295369 2.473800 1.339926 -0.899733 3.596532 -0.372803 0.944557 1.203425 0.489750 -0.392549 0.632997 1.110589 -0.896539 0.100743 -2.115811 0.953344 0.033087 1.449280 -2.422453 -1.374629 -2.456811 -1.079127 1.499622 0.916211 0.134125 3.111769 0.371972 0.348442 -3.941107 -0.800990 0.814548 0.512611 1.503753 0.722232 -1.451076 -4.184904 -0.214319 -1.330704 -0.363969 -1.375294 -1.054439 -1.564786 -0.125810 1.174275 0.476234 0.562126 2.814176 -0.098879 0.641426 -0.962655 -0.172084 -0.137038 -1.749594 0.919040 0.394070 -1.872553 1.755882 0.201494 5.053760 -0.117179 1.064350 -1.341253 -0.110150 0.613048 -0.564878 -0.205326 2.211527 0.881769 0.898140 -0.024952 -0.121801 -1.175702 1.620786 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -5.734182 -1.564931 30.368997 19.190040 -8.148302 -22.206646 -11.977103 -27.522634 20.910147 -0.716558 18.271904 5.654351 5.678630 -7.571238 1.233122 -2.653531 0.179089 -12.959727 1.247300 -7.017669 2.838686 32.672941 17.262798 -23.024658 -0.479637 -42.740279 16.164809 10.586528 18.230591 25.977610 -1.331229 -5.122620 0.215018 15.958112 -8.898461 1.298187 2.273683 -0.104255 -11.005094 -0.893140 9.279329 17.570426 16.682264 0.151876 20.453106 2.428302 16.122270 2.776888 -6.599831 -4.070656 -19.490627 27.282770 -19.544071 7.992238 -2.420389 12.792160 1.848126 -20.071121 -11.104065 -23.272968 -2.838817 11.188444 -12.448653 0.148465 -17.992822 8.251920 -5.918692 -3.303345 7.488775 0.982332 20.870263 11.433697 7.898413 -8.195216 -22.016857 8.611495 -8.064945 15.437945 11.789483 -8.804230 -9.731862 6.173904 -5.369934 -10.433119 7.656474 3.980710 -1.417666 -2.345599 8.866527 -6.416666 -9.248870 -4.091955 -6.304302 10.684933 -13.036377 8.802799 -3.873202 0.318863 -3.392414 -1.306804 -1.754249 -15.633800 4.928782 14.412246 2.067771 -1.118424 0.363033 1.066026 -11.263811 -18.729221 5.263908 1.674753 -1.292594 21.878070 -13.373670 1.895419 1.813211 1.750216 -5.675187 23.848546 -1.118444 12.681511 13.879290 25.906004 1.837998 -13.135824 -2.646074 8.936391 20.004012 16.150201 14.662868 -18.920342 -11.755505 -4.655744 8.510685 -29.853484 6.112704 12.587787 15.535888 10.678165 -24.196101 6.633790 -6.778370 27.094675 14.907790 4.232872 7.098456 -1.696224 -19.049201 26.422640 45.950640 -6.465880 15.159035 -17.526351 -11.060962 28.611065 -24.348512 14.164114 -0.190401 4.192632 7.543008 -14.811322 -2.239177 17.932888 6.848771 12.343530 14.389381 4.848688 6.153520 -34.816731 -23.900117 -3.988347 14.711142 -2.907656 33.380020 -14.403522 -9.748634 -7.840594 19.429455 -2.248723 -4.291201 1.995044 -14.085539 10.689905 -38.753745 -26.626644 38.519961 36.079675 4.053078 6.973392 20.499988 25.084317 -3.573750 -4.214015 -6.462533 10.860331 7.489247 -6.680614 1.944435 -3.751177 -16.654642 -18.706200 4.971309 4.994342 7.739720 -8.544012 -12.284760 5.840695 -24.258664 -15.229171 11.260395 -26.233307 -9.957887 3.043092 -0.239588 -2.414770 7.674703 -5.023569 2.138145 15.170482 -9.668193 0.643432 9.696767 14.898972 8.334894 11.587956 23.360541 4.218015 22.547513 15.155216 -8.017093 41.518196 -8.079050 1.353122 5.644793 8.035081 2.760919 10.180356 -1.382604 -9.175052 -5.737484 -21.443040 18.924316 0.728967 15.530437 -18.297062 -21.037837 -16.466661 -12.247565 18.210391 11.497141 -1.243355 39.377627 -7.083643 -0.036804 -43.595160 -2.669679 21.340871 5.727953 14.774521 12.640125 -9.803333 -30.910788 -8.767976 -3.407784 9.356538 -13.444378 -24.860363 -11.441559 -16.140431 21.944655 -17.342722 11.628357 23.765723 -0.294996 12.893785 -7.042184 -2.510943 -13.793775 -6.178134 -2.337404 10.546802 -17.141999 23.174135 -9.754753 37.544449 -16.514917 14.678403 -18.198740 14.214454 -8.395752 -8.693758 0.519055 27.943403 12.759253 -0.123934 2.897596 -3.787869 -9.586361 12.136109 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = -0.084965 0.058714 0.944989 -0.165983 -0.435575 -1.197856 -0.490196 -1.988229 0.685158 0.346143 1.104570 -0.121359 0.647938 -0.248695 0.177028 0.603468 0.449853 -0.650749 0.412802 -0.499107 -0.184299 1.219589 0.005998 0.512745 0.124665 -1.298640 0.328844 0.171345 0.560493 0.669374 0.347538 -0.195270 -0.368306 0.270003 0.122466 0.737241 0.561447 0.234244 -0.631014 0.348251 -0.318589 -0.189773 0.571398 -0.149626 1.094362 0.149616 0.407845 0.425617 -0.238391 -0.489885 -0.374341 0.862578 -0.628949 0.159196 -0.012764 -0.408097 -0.141619 -0.275886 -0.392200 -0.055765 -0.397442 -0.458327 -0.510998 0.322442 -0.505382 0.486087 -0.528460 -0.186766 -0.087615 -0.017512 0.700596 0.310788 0.165844 0.706163 -1.246794 0.078997 0.056870 0.302587 0.394410 -0.413564 0.021863 -0.034050 -0.556400 -0.697241 0.857795 0.974021 0.228875 -0.101059 -0.677992 0.325682 -0.424442 -0.215931 0.462764 0.381862 -0.633621 -0.161271 -0.092054 -0.278123 -0.575659 -1.193990 0.273636 -0.381984 0.386012 -0.061647 0.241633 -0.255817 -0.377752 0.198766 -0.695579 -0.752760 0.329714 -0.211024 0.106952 1.202807 -0.534176 0.047969 -0.645956 -0.232757 -0.095665 0.550907 0.455592 0.373348 0.636962 0.935376 0.309125 -0.602459 -0.791798 0.443800 0.823775 0.364720 0.362191 -0.811871 -0.517507 0.293057 -0.571179 -1.125459 -0.623671 0.363221 0.722712 -0.233750 -0.066522 0.070973 -0.347675 0.733815 0.715621 -0.030009 0.058859 0.027688 -0.794601 0.763167 1.156377 -0.249633 0.755688 -0.481746 0.115028 0.472904 -0.633145 0.206492 0.433294 -0.019178 -0.565508 -0.268924 -0.148167 0.440861 0.512548 0.585011 -0.292457 0.583196 -0.525381 -0.843794 -1.145233 -0.074246 1.122172 -0.204677 0.645350 -0.728944 -0.560586 0.022939 0.983628 0.207108 -0.643926 0.406372 -0.753656 0.455403 -0.810065 -0.826373 1.455762 1.471399 0.869460 0.072858 0.493828 0.975158 -1.419651 -0.300886 -0.227425 0.558090 -0.205096 -1.774306 -0.616231 0.107327 -0.828914 -0.572624 -0.309082 0.539357 0.095073 0.676564 0.719726 0.213188 -0.323234 -0.200228 0.650511 -0.256259 -0.441724 0.041808 0.019803 0.133951 0.323505 -0.571867 0.494261 0.656780 -0.697344 0.342043 0.645371 0.311447 0.174456 1.236858 0.918300 -0.101346 0.814854 -0.268091 -0.415969 0.392851 -0.015655 0.418450 -0.036530 -0.002848 0.005753 0.064616 0.541065 -0.363308 -0.887254 -0.688518 -0.242630 0.251948 0.725639 0.595378 -1.200728 -1.122888 0.018139 0.314626 1.058416 0.067998 1.119657 -0.339301 0.462228 -1.289057 0.185006 0.187921 -0.082779 0.386148 0.091806 -0.255372 -0.464531 -0.186601 -0.916876 -1.265017 -0.285804 -0.613736 -0.423494 -0.840940 0.949095 -0.476337 -0.298693 0.264202 0.260178 0.782587 0.117437 -0.135962 -0.805416 0.422789 0.749985 -0.147446 -0.635319 0.665140 0.194444 2.035720 -0.163689 0.286503 -0.104185 0.317925 -0.146709 -0.599300 -0.042548 0.944691 0.937939 0.049327 -0.228570 -0.222808 0.128698 0.315959 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.289582 0.213889 0.964809 -0.225698 -0.430746 -1.071593 -0.401733 -2.259521 0.796463 0.366732 0.929757 -0.147911 0.607951 -0.269410 -0.010305 0.732567 0.334690 -0.477413 0.451879 -0.419743 -0.260072 1.309883 -0.329122 0.733648 0.089149 -1.373695 0.363170 0.136041 0.925110 0.487778 0.364817 -0.281624 -0.340899 0.246055 0.154186 0.605678 0.458466 0.279561 -0.847651 0.325734 -0.451151 -0.343475 0.529608 -0.178658 0.979409 -0.099052 0.426768 0.388820 0.012986 -0.302667 -0.430456 0.942103 -0.460615 0.177439 0.013304 -0.628793 -0.318108 -0.102797 -0.279312 0.511207 -0.465113 -0.495732 -0.459523 0.317174 -0.550173 0.382624 -0.635778 -0.229197 -0.134410 0.029216 0.632216 0.353306 0.222986 0.593565 -1.572446 0.110080 0.110224 0.249161 0.402928 -0.218153 0.317899 -0.042238 -0.607432 -0.722257 0.956767 1.300369 0.138257 -0.190801 -0.769687 0.190573 -0.434680 -0.197289 0.564815 0.430650 -0.762682 -0.088320 -0.601023 -0.219391 -0.523137 -1.493400 0.238533 -0.414876 0.464487 -0.395848 0.264710 -0.116893 0.078977 0.159537 -0.372413 -0.730380 0.184748 -0.179035 0.280680 1.443163 -0.313933 -0.118320 -0.683338 -0.241097 -0.360679 0.321472 0.504094 0.292586 0.746249 0.793725 0.510447 -0.623715 -0.850346 0.646493 0.518638 0.401892 0.263393 -0.802017 -0.395000 0.251915 -0.354857 -1.275112 -0.563539 0.256400 0.571525 -0.511954 0.353676 -0.207116 -0.298884 0.636434 0.659588 -0.216147 0.158357 0.117189 -0.591960 0.674460 1.155727 -0.130962 0.553738 -0.677904 0.176883 0.317912 -0.546217 0.269582 0.218869 0.093536 -0.523957 -0.342914 -0.064104 0.465455 0.175020 0.419539 -0.284749 0.533263 -0.707644 -0.787245 -1.056614 -0.020953 1.085263 -0.233557 0.536906 -0.678550 -0.576358 0.163419 0.902748 0.364493 -0.459481 0.616466 -0.896137 0.517803 -0.537982 -0.852151 1.225908 1.399751 0.738964 -0.114749 0.419385 0.880380 -1.638300 -0.514759 -0.281576 0.467399 -0.120051 -2.104374 -0.772607 0.131527 -0.790065 -0.409144 -0.187814 0.451198 0.256706 0.856741 0.958322 0.085401 -0.271622 -0.382593 1.005619 -0.165565 -0.310241 -0.006429 0.114408 0.010223 0.514269 -0.653475 0.448111 0.678861 -0.521455 0.464003 0.612029 0.108014 -0.145174 1.178744 0.879934 -0.067646 0.901592 -0.250631 -0.366555 0.358998 -0.019184 0.353179 0.021111 -0.202291 -0.263735 0.217794 0.490557 -0.435182 -0.964159 -0.683685 -0.404837 0.072827 0.599582 0.890927 -1.101058 -0.984942 -0.064569 0.180072 0.877050 0.284492 1.052717 -0.427970 0.526337 -1.187880 0.180028 0.131456 -0.079508 0.661133 0.055358 -0.291600 -0.064114 -0.202161 -0.844110 -1.463668 -0.286813 -0.724826 -0.470161 -0.896913 0.908728 -0.396269 -0.292077 0.198675 0.238974 0.789960 -0.299772 -0.051367 -0.845766 0.531174 0.887515 -0.218665 -0.633182 0.491848 0.134083 2.059844 -0.161082 0.218771 -0.102351 0.178459 -0.140104 -0.740856 -0.068541 0.938816 0.759523 0.186238 -0.462222 -0.313547 0.063596 0.303950 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp___GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_traversals.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = -3.116629 0.794095 11.151662 7.399226 -5.891652 -9.409338 -4.450928 -10.781599 5.953046 0.310254 7.977615 1.985559 2.323699 -1.924033 1.661299 -0.971394 1.281678 -2.962320 -0.460337 -3.283725 -1.111268 8.662482 6.091940 -8.721602 0.640174 -10.472533 5.465106 5.014107 4.079373 6.775015 0.100294 -1.357213 -2.339182 5.850402 -3.476299 0.773311 0.829792 1.491708 -3.442858 -0.678377 3.737721 4.236836 6.054959 -0.290021 8.025456 1.901703 6.310553 1.632130 -5.484793 -2.083225 -5.008435 9.650271 -6.882839 4.095023 0.079979 3.952731 0.775404 -6.784625 -2.937529 -9.655550 -0.022009 1.687043 -5.116812 -0.294113 -5.730653 2.254795 -0.504193 -3.197021 3.043134 0.003373 7.193666 1.396638 0.611358 -1.852182 -6.519393 1.279510 -1.293389 5.033618 4.675464 -2.058088 -2.649261 0.634248 -2.525991 -4.362845 2.608882 0.163233 1.051136 -0.300038 0.732333 -0.799375 -0.984750 -1.804946 -1.221988 4.431018 -5.556691 2.925235 -0.254384 -1.086435 -4.051493 -1.667283 0.777125 -5.162491 2.897346 4.531038 -1.171583 -0.945857 -1.973995 0.899809 -4.773124 -7.282575 1.165936 -0.928080 0.504923 6.708053 -4.664286 0.222903 1.280921 -0.931352 -0.832480 7.426233 1.383505 3.416172 5.852596 9.400452 1.168377 -5.448722 -2.266374 1.396554 6.960237 6.716547 4.708583 -6.733704 -4.431417 0.030374 -0.079739 -10.908757 1.780753 4.712339 6.408567 3.788306 -8.723898 2.119704 -3.281604 8.461134 4.523893 4.187221 1.650612 -0.491955 -6.759207 7.315480 14.019878 -2.645212 6.174321 -2.435915 -3.708507 8.881038 -7.283875 4.581797 2.568466 -0.119382 1.538168 -4.473319 -2.561456 6.759876 4.077442 4.135178 4.057054 2.136102 -0.888140 -12.145702 -9.592264 -0.979398 6.919504 0.252697 11.290549 -6.216579 -4.283878 -2.064770 8.136212 -2.459742 -3.481799 0.502654 -4.089390 4.521177 -11.353677 -8.871076 12.807659 12.227080 2.030493 1.548465 8.252371 6.518671 -3.191972 -2.856516 -3.201761 3.560875 1.878558 -1.454978 0.422479 -0.631162 -7.414187 -4.533261 1.077844 2.534187 1.761607 -2.568914 -2.996695 3.176799 -7.343440 -4.385633 1.800698 -7.200437 -2.915434 0.974764 -0.075993 0.336940 1.910421 -2.425364 -1.028547 3.214456 -5.100960 0.696510 3.225098 5.611051 3.702802 8.310932 7.212533 0.296897 8.161441 3.847264 -3.702746 14.441103 -3.044100 1.662824 1.928104 4.933976 0.882459 2.792975 2.321458 -3.510955 -2.508020 -7.843097 3.712368 1.060339 6.168511 -7.724106 -7.013785 -7.936663 -3.197988 5.695140 5.045007 -2.426348 13.578050 -1.726472 1.298802 -15.815853 -0.597120 6.248872 -0.178602 4.356223 3.892557 -4.345240 -12.410180 -2.817684 -2.671781 1.084116 -3.028533 -5.532083 -4.005563 -4.520055 5.863785 -5.248147 2.767409 7.493364 -1.120120 4.176556 -1.681622 -0.555886 -2.403729 -2.545336 2.183806 2.641616 -7.442535 9.165001 -1.364507 17.076843 -3.577133 5.976540 -5.284011 3.501575 -1.762740 -2.662880 -0.961369 9.870116 6.439176 1.447560 0.653758 0.824049 -3.655661 4.575655 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -0.506818 0.808688 6.852261 3.833723 -2.810388 -5.481419 -2.726049 -8.664170 4.560853 0.787751 4.754083 0.253738 1.808144 -1.413819 -0.138992 0.042065 0.671599 -2.412390 0.807564 -1.988510 -1.338398 6.792005 2.248890 -3.379301 0.141988 -8.226599 4.358985 2.424822 3.886715 4.446557 0.572230 -1.001413 -0.598694 3.686333 -1.687800 0.689692 0.719034 1.206526 -2.676431 0.163557 1.473557 2.462278 4.233389 0.123958 4.806251 1.240705 3.218563 1.081097 -2.049208 -0.731911 -2.954953 5.275651 -4.002316 1.963323 -0.314388 1.072429 0.570175 -4.103498 -1.694082 -3.046946 -0.887593 0.797713 -3.157403 0.539398 -4.229267 1.399094 -1.561599 -1.890163 1.256292 0.308048 4.275365 2.056725 0.758075 -1.054735 -5.677143 1.666881 -0.210223 2.408886 3.051725 -1.584672 -0.843135 0.863432 -2.570587 -3.371713 2.927288 2.470862 0.642690 -0.188832 0.503300 -1.490235 -1.234650 -1.098217 0.185934 3.362510 -2.514407 1.529444 -1.521499 -0.882515 -2.468183 -3.047745 0.392650 -3.401447 2.341256 1.953020 -0.619269 -0.109390 0.464213 0.596235 -2.031743 -4.354842 0.608448 -1.234600 1.761755 5.790248 -2.163344 -0.821438 -1.089493 -0.831637 -0.902141 4.294858 0.948582 1.631998 4.635458 5.441099 1.124873 -3.590688 -1.934492 1.710701 3.054172 3.642893 2.865232 -4.792509 -2.642772 -0.258476 0.652579 -7.217637 0.130683 1.652770 3.044326 -0.042869 -3.686406 1.575007 -1.875082 4.866036 3.599640 1.262551 1.510007 0.043797 -3.635426 4.854473 8.672828 -1.161935 3.009616 -3.793663 -2.610003 5.114605 -4.226862 2.897806 0.612598 0.102927 0.182767 -3.056006 0.216727 4.154311 0.864719 1.975780 2.416488 1.480941 -0.440872 -6.516809 -5.848937 0.362398 4.485101 0.044491 7.384882 -4.083628 -2.406812 -0.741958 4.512726 0.462461 -1.177061 1.311762 -3.237461 2.817159 -7.359619 -6.161241 7.601864 6.993637 2.031811 0.206565 3.925471 3.981240 -2.440680 -2.340320 -2.095346 2.562390 1.251680 -3.274976 -0.643437 -0.163690 -4.216965 -2.820280 0.507103 1.653520 2.653363 -1.650387 -1.062677 -0.273494 -4.528180 -3.696997 3.096649 -4.287656 -1.800631 0.469058 0.034641 -0.354774 2.187228 -1.342962 0.091613 2.075090 -2.252567 0.701947 2.461391 3.027332 0.533660 4.685215 5.350407 -0.170812 4.636889 2.175838 -1.548673 8.123757 -1.700425 0.935201 1.452793 1.989829 0.142420 2.035844 1.790563 -2.378286 -2.137257 -4.709568 2.368198 0.643100 3.173399 -3.327876 -3.996516 -5.369091 -2.274722 2.630214 3.783848 0.150099 8.375274 -1.185752 1.018541 -8.625033 -0.291690 3.437739 0.456020 3.882099 2.326708 -3.163209 -4.779362 -1.946677 -2.624509 -0.605424 -2.225050 -4.170149 -3.111770 -2.781096 3.689395 -2.801244 1.622488 4.770397 -0.470048 2.247388 -2.138141 -0.155601 -2.693320 -1.101083 2.076456 0.821910 -4.133877 4.664677 -1.287827 10.098002 -2.345058 3.304655 -3.282074 2.247998 -1.164959 -2.518968 -0.690993 6.301944 2.977461 0.591576 -0.062698 -0.516144 -1.443237 3.097258 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp___GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/find-two-non-repeating-element.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = -2.357010 0.739470 9.076969 6.816003 -5.031230 -7.463378 -3.466135 -7.755904 5.252926 0.374392 5.455523 1.595001 2.441092 -2.586119 0.095645 -1.695622 1.725635 -1.847488 0.412118 -2.815293 -1.798160 8.267178 4.727194 -7.997814 0.625153 -9.754303 5.938630 3.827835 3.449980 7.082677 0.406698 -0.225245 -1.425667 5.071353 -2.620339 -0.147513 0.277482 1.236245 -2.656638 -0.142562 4.088076 4.428745 5.582471 -0.595522 6.023665 2.837658 3.897695 1.201841 -4.509420 -1.705101 -3.796278 5.541190 -5.156266 3.408106 -0.882232 3.325721 1.443130 -5.974212 -1.910978 -7.966460 -0.434424 1.632108 -3.831460 0.377860 -5.421999 1.692447 0.084966 -3.223079 2.802449 0.001764 5.533204 1.410374 0.833789 -1.990340 -5.046796 1.802326 -0.153685 4.006161 4.384178 -1.644702 -2.311192 0.420013 -2.670849 -3.764262 2.162865 0.162748 0.645138 0.156844 1.530987 -2.641887 0.324985 -1.684025 -1.609401 4.418896 -3.256244 2.531232 -1.232358 -1.225723 -2.586998 -1.925740 0.277652 -3.620065 1.865850 4.667886 -1.741559 -0.298293 -0.697972 0.769814 -3.241147 -4.719347 1.469697 -1.682963 1.087208 5.820230 -2.413316 -1.229982 -0.393348 -0.770689 -0.438314 7.162939 0.063994 2.454205 5.697702 7.680232 0.700311 -4.888171 -1.721998 0.749543 4.873336 4.836064 4.470664 -6.128482 -4.323692 -0.708585 0.379250 -8.392483 1.297659 2.141172 5.040110 1.293803 -7.375146 2.954091 -3.130080 7.128323 4.115587 2.605181 1.790909 -0.416281 -5.582832 7.062324 11.928864 -2.087096 3.999012 -3.177181 -4.812174 8.052188 -5.405877 3.368632 0.857446 -0.419312 0.483460 -3.575652 0.076014 5.729482 1.682947 3.389518 3.682057 2.306451 0.003906 -9.770836 -7.563619 -0.220136 5.407897 0.729310 12.129128 -5.834919 -2.873469 -1.751135 5.666162 -1.059342 -2.006399 0.084215 -3.510255 3.698394 -10.620757 -8.236711 12.028740 9.303917 1.053200 1.635621 5.461284 4.293687 -0.380304 -2.548058 -2.753268 2.780196 2.515066 -0.601841 0.615296 0.314776 -5.833168 -4.231382 1.139180 2.014713 2.802346 -4.259118 -3.506928 0.668011 -6.363381 -5.304719 2.146949 -6.473443 -2.657691 1.270087 -0.168331 0.973886 2.205359 -1.139466 -1.195345 0.787210 -2.812296 0.001162 2.116006 4.874015 1.874399 4.527722 8.409814 -0.343476 5.109239 3.804915 -2.717647 13.018637 -3.244192 1.199617 1.782985 4.433921 2.028077 2.306726 2.533561 -2.902912 -0.690580 -6.677483 3.950501 1.210931 4.271149 -9.338695 -4.981399 -7.232963 -3.022484 3.754563 4.067189 -1.674018 11.827935 -1.527540 0.329397 -13.169566 -0.814541 5.920924 0.909607 4.035536 3.498831 -4.090363 -9.220715 -2.357098 -2.505931 2.006338 -3.117504 -4.747254 -2.928505 -2.590958 3.809441 -2.982977 2.812574 8.122903 -1.086075 2.223198 -1.761565 -0.301383 -2.137274 -2.692976 0.470529 2.175729 -5.210181 7.081793 -1.406429 11.713647 -3.023446 5.010201 -4.092094 3.604184 -1.234666 -3.113463 -1.201600 8.222858 3.943405 0.989922 1.969088 0.867262 -2.497627 5.306318 -PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.200659 -0.396940 2.229200 0.335093 -0.967796 -2.039837 -0.978552 -4.502639 2.572323 1.013200 2.079961 0.498920 1.611700 -1.586496 -0.229132 0.815465 0.853671 -1.435213 0.662323 -0.922118 0.409329 3.917908 0.060637 0.356766 0.000539 -3.805563 1.119118 0.085824 2.229511 1.974877 0.742126 -0.404395 -0.782750 0.658967 0.188440 1.462905 0.782472 0.530050 -1.786206 -0.124341 -0.219190 -0.266851 1.436149 -0.322021 2.763901 -1.004318 0.940468 0.415991 -0.126143 -1.039722 -0.967128 1.735289 -1.335761 0.566609 0.082497 -0.768168 -0.563832 -0.392695 -0.741808 -0.268711 -0.624287 -0.680800 -0.989360 0.526819 -1.245828 1.017857 -1.160756 -0.154679 -0.405692 -0.841809 1.508544 0.986990 0.957912 0.477364 -3.618259 0.301283 -0.187947 0.424938 1.100707 0.366190 -0.260780 -0.579847 -1.097038 -1.467575 1.843390 2.628674 -0.416762 0.102773 -1.309993 0.201362 -0.996936 -0.409271 0.895499 0.847613 -2.185858 -0.278284 -0.567592 -0.319310 -0.027710 -2.142832 0.525637 -1.110966 0.661439 -0.122148 0.381336 -0.126693 0.301020 0.113200 -1.190845 -1.311325 0.880835 -0.279054 0.283310 3.153076 -0.944988 -0.240815 -1.647599 -0.135622 -0.494053 1.210659 0.490423 1.087266 1.594640 1.839851 1.220873 -1.675356 -1.267837 2.264291 1.676013 0.677906 0.373606 -1.656965 -0.781636 0.568627 -0.325267 -2.795066 -1.456788 0.878602 1.570479 -0.507833 0.078505 -0.280813 -0.452306 1.996898 1.797143 -0.737711 0.436962 0.542187 -1.827281 1.762903 3.252888 -0.077125 1.032212 -1.598540 -0.122964 1.694278 -1.776506 0.977009 -0.055245 0.408725 -0.890398 -1.007395 0.336082 1.206367 -0.085414 1.210352 -1.059919 1.267262 -0.823498 -2.371662 -2.925089 -0.626138 2.361916 0.479359 2.077722 -1.539548 -0.946993 0.013276 1.802575 1.052765 -1.008426 1.389227 -2.127533 1.235533 -2.678538 -2.293479 3.679708 3.754572 1.747568 0.211956 1.313752 2.038568 -2.548229 -0.789827 -0.557105 1.040943 0.354152 -3.643651 -0.814727 0.302958 -1.892988 -2.007101 -0.079342 0.676433 0.654729 0.937997 1.813031 0.228088 -0.473891 -1.116790 2.390896 -0.777916 -1.017748 -0.303742 0.415699 0.036944 1.182949 -1.091390 1.118841 1.439026 -0.696429 0.759587 1.175381 0.342219 -0.096757 1.545819 2.664804 -0.425648 1.689500 -0.356688 -0.803947 1.948801 -0.495059 0.441970 0.157446 -0.491375 0.261499 0.490655 0.580818 -1.072405 -0.997384 -1.538581 -0.161674 0.282217 1.630324 0.074981 -2.893656 -2.048082 -0.094839 0.352453 1.516436 0.561388 3.135972 -1.574281 0.740699 -3.623426 0.295645 1.341667 0.281431 1.588673 0.346368 -0.651290 -1.043257 -0.615266 -1.582137 -1.690162 -0.950482 -1.969306 -1.031603 -2.111812 2.779696 -1.439397 -0.103030 1.133273 0.197770 2.230648 -0.893028 0.023871 -2.253624 0.914145 0.178986 0.137651 -1.281886 1.466941 -0.150254 3.821099 -1.015845 0.623584 -0.497870 1.859447 -1.347929 -2.327008 -0.056165 2.270234 1.734486 0.197221 -0.688652 -0.909354 -0.214112 0.861859 -PE-benchmarks/find-two-non-repeating-element.cpp___GLOBAL__sub_I_find_two_non_repeating_element.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/permutations-of-a-given-string.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = 0.685784 1.339631 6.464656 3.201533 -3.604773 -5.011477 -2.210467 -8.284906 4.225354 0.621924 3.369470 0.709914 0.876102 -1.457310 -0.347814 0.846530 0.425675 -1.091344 -0.013576 -2.201123 -1.343096 5.078911 1.075656 -2.998096 0.958899 -8.188839 3.725483 2.226665 4.177572 2.960480 0.660884 -1.085192 -1.653102 3.423066 -0.935252 0.420368 1.070405 0.456996 -3.532674 0.816426 1.216169 2.688794 3.238393 0.462563 4.583578 0.880546 2.502542 1.499301 -1.966317 -0.395704 -2.515044 5.382153 -2.557807 2.823453 -0.018571 1.323975 -0.647701 -3.674571 -0.880972 -1.458830 -0.848886 0.450559 -2.081249 0.230836 -3.629412 0.802785 -1.039466 -1.981094 1.266462 0.489739 4.088787 1.188986 0.297761 -0.880728 -5.249684 0.856268 -0.292167 3.034159 3.253232 -1.352496 -0.149642 0.351032 -2.262611 -3.038682 2.012836 2.636963 0.349629 -0.461564 0.220890 -2.142974 -0.888872 -1.735276 0.639800 2.849660 -3.954385 0.635030 -2.947650 -0.572738 -2.136171 -3.105399 0.320600 -2.456499 2.196118 0.330573 -0.604396 0.373678 1.844755 0.710659 -0.800574 -2.628383 0.737678 -0.272978 2.037006 6.178467 -0.684043 -1.614290 -0.491425 -1.103435 -2.207061 3.571702 1.016626 0.931496 4.855991 5.107700 1.782087 -2.675943 -2.195403 1.768237 2.021387 3.848799 2.857990 -4.422574 -2.210471 -0.080419 0.959247 -6.426652 0.910254 0.645164 3.440800 0.005872 -1.971546 -0.320099 -1.968933 4.230915 1.791445 0.510291 1.436858 -0.428137 -3.413665 4.347841 8.510850 -0.632045 2.031769 -3.499738 -1.107914 3.140155 -3.214625 2.409942 0.448891 -0.312781 0.529926 -2.376494 -0.585664 3.639288 0.193864 0.828035 2.234591 1.934928 -2.028369 -5.997515 -5.228606 -0.093932 3.383408 -0.717538 6.092597 -3.564848 -2.219250 -1.953377 4.922247 0.118751 -0.535417 1.715278 -3.425204 2.444765 -3.753296 -4.819406 7.010199 8.162922 1.384519 -0.702919 4.104577 3.653888 -3.635594 -2.944243 -1.543840 0.848576 1.735041 -3.619665 -1.436799 0.300596 -3.689509 -2.757531 1.119202 1.405265 2.518586 -0.078716 -0.201866 1.133676 -3.883141 -4.027696 3.003493 -3.274532 -0.612511 1.153828 0.567158 -0.529013 2.574223 -2.041213 -0.670912 2.329225 -1.624144 1.455084 2.232662 3.027781 0.435252 3.833028 3.724908 0.730125 5.674359 2.314059 -2.130654 7.676540 -1.258653 1.327184 1.582820 0.643470 -0.771252 1.939041 0.748130 -2.460125 -1.364674 -4.440544 1.541043 -0.593400 2.475273 -2.295760 -3.506318 -4.667391 -2.174395 1.849987 1.766332 0.240157 7.242602 -1.231838 0.556348 -8.011295 -0.437614 3.615033 0.031890 3.458306 2.064400 -2.701850 -5.143278 -1.471219 -2.338234 -1.285936 -2.006881 -3.330657 -2.769331 -2.420896 3.926303 -1.909267 1.799223 4.972848 0.100721 2.355518 -3.786342 0.298073 -2.304324 -0.966593 2.162485 0.716231 -4.322868 3.567758 -0.850608 9.472692 -1.709378 2.691885 -2.556802 0.479000 -0.688003 -2.838462 -0.976600 5.246551 2.227606 1.672388 -0.448915 -0.450190 -1.966498 3.310750 -PE-benchmarks/permutations-of-a-given-string.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(char&, char&) = -0.222781 -0.119694 1.555195 1.160486 -0.873651 -1.969836 -0.706187 -2.615710 1.687661 0.531547 1.378988 0.411511 1.186373 -1.119635 -0.248632 0.202125 0.574424 -0.541172 0.138050 -0.708962 -0.500949 2.930094 0.463227 -0.780621 0.061569 -2.273996 1.538413 0.542205 1.225630 1.810284 0.324261 0.035531 -0.169785 0.836459 -0.481234 0.637669 -0.262029 0.671609 -0.821926 -0.206385 0.606121 -0.082405 1.423585 0.144879 1.552034 0.123042 0.915578 0.189335 -0.431925 -0.714207 -0.877368 0.830294 -1.146669 0.620969 -0.807404 -0.085668 0.462310 -0.471919 -0.302616 -0.981604 -0.133739 -0.191144 -1.182932 0.111295 -1.339018 0.517744 -0.616905 -0.751920 -0.255337 -0.440308 1.130381 0.647627 0.125903 -0.585108 -2.430132 0.135970 0.027871 0.356418 1.048365 0.343909 -0.634994 -0.457839 -1.171476 -1.139895 1.435169 0.919027 0.102492 0.619936 -0.475433 -0.627147 -0.512228 0.027424 0.655516 0.844158 -0.863661 0.158328 0.029162 -0.169773 -0.260882 -1.146057 0.447033 -0.838535 0.471506 0.392018 0.022925 0.024293 0.274641 0.023493 -0.844559 -1.221358 0.330615 -0.757618 0.115915 1.868931 -0.401189 -0.415260 -0.737941 -0.203223 -0.040402 1.306158 0.377105 0.459468 1.547814 1.242292 0.544818 -1.318088 -0.603637 1.107882 1.000643 0.646880 0.459174 -1.157418 -0.836304 0.251993 -0.280971 -2.173428 -0.668338 0.827148 1.040256 -0.504749 -0.760546 1.042331 -0.489995 1.093421 1.426812 -0.067491 0.510759 0.226809 -1.338035 1.272117 2.641557 -0.179826 0.708474 -1.216635 -1.013561 2.146634 -1.065788 0.619543 -0.034147 -0.258567 -0.509109 -0.638490 0.732031 1.204023 -0.285790 0.610751 0.200736 0.692729 -0.466460 -1.748669 -2.090998 -0.200311 1.849547 0.933013 2.602777 -1.382888 -0.218542 0.020797 1.022318 0.349109 -0.438789 0.606843 -1.157710 0.948848 -3.080179 -2.005888 2.815544 1.832739 1.166799 0.276760 0.990707 1.194655 -0.383125 -0.662837 -0.623059 0.741214 0.792996 -1.360407 -0.155391 0.117626 -1.585166 -1.218967 0.091769 0.448818 0.543258 -0.450848 0.434036 -1.016862 -0.775153 -1.239550 1.109608 -1.114256 -0.374810 -0.050132 0.066085 -0.309010 0.625509 -0.155372 0.443494 0.237949 -0.325842 0.337540 0.460554 0.512661 0.142066 1.268203 2.404373 -0.846303 0.838910 0.137115 -0.418803 2.461766 -0.666991 0.308381 0.332758 0.859072 0.602121 0.452254 0.836813 -0.714634 -0.142842 -1.433649 0.353682 0.886789 0.790030 -1.209800 -1.090888 -2.020046 -0.344331 0.084705 1.756699 0.011422 2.551448 -1.009247 0.426916 -2.731594 0.246985 1.003913 0.141955 1.145019 0.564626 -0.801546 -1.019564 -0.644617 -0.979530 -0.335797 -0.739179 -1.234851 -0.927283 -0.709708 0.735874 -1.324128 0.328154 1.395124 -0.368396 1.014837 -0.997410 0.162301 -1.291094 0.132119 0.222382 0.237208 -0.919358 1.129657 -0.234092 2.633297 -0.464795 1.103862 -0.671228 1.560642 -0.960453 -1.720704 -0.346814 1.803605 0.978785 -0.101943 0.413813 -0.077720 0.176701 1.011373 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 1.152436 2.042414 4.540292 1.757068 -4.019762 -4.863849 -1.398902 -7.758617 3.012749 0.999415 2.309124 0.355091 1.155174 -1.758619 -0.601304 2.493982 1.500361 -0.255219 -0.045488 -2.500377 -3.732215 2.801274 -0.413199 -0.552055 1.870564 -5.034891 3.655791 0.894816 2.821711 1.584641 2.000689 -0.464339 -1.560034 2.955768 1.301779 1.654133 0.910777 0.782653 -3.108872 1.685116 0.197165 -0.445206 2.977487 1.538817 3.783907 1.477564 2.065720 1.806282 -2.229334 0.182106 -2.179208 3.845611 -2.290166 2.273120 -0.619464 -0.220488 -0.079503 -2.465996 0.077026 0.660770 -1.979758 -2.214308 -2.129300 0.364879 -3.320421 0.366546 -1.918189 -2.496038 -0.474687 1.860572 3.050472 1.381734 -0.399941 0.720324 -4.565615 0.140084 1.008883 2.119410 3.651491 -1.153085 0.653132 -0.634121 -2.930058 -3.317157 3.537914 1.619403 1.302332 0.014126 -0.579529 -1.940393 -1.366307 -1.609350 2.029498 2.391942 -3.202205 -0.275598 -2.345852 -1.211692 -2.957923 -5.359814 0.636309 -1.453365 2.054494 -1.054472 -0.828344 0.647778 0.689766 0.679741 -0.633452 -1.459142 0.578068 -1.338129 1.661895 5.159010 0.364907 -2.120719 -1.014994 -1.327826 -1.187483 2.158003 1.805489 -0.022622 5.148443 3.926820 2.012343 -1.672883 -2.085231 0.458035 0.465091 2.671374 2.615186 -3.581285 -2.411580 0.957052 -0.002882 -5.129437 0.094257 0.310082 2.406785 -1.046289 -0.530596 -0.510243 -1.381739 1.683451 1.260567 0.019022 1.241322 -0.522760 -2.231444 3.058912 5.633857 -0.708959 1.486538 -2.861615 0.329711 2.031287 -1.927185 0.570119 0.224418 -1.603251 -0.732180 -1.020775 -0.649827 2.741402 0.123006 -1.248147 1.537934 2.098263 -3.366170 -3.984161 -3.592571 0.734072 3.951233 -0.586084 4.255345 -3.435283 -0.825626 -1.457729 3.334986 0.758582 -0.292958 1.770351 -2.845711 2.082947 -1.918341 -3.741126 5.911202 4.867045 1.756682 -1.396160 1.668011 2.634818 -4.872412 -3.481834 -1.626133 -0.110037 1.083685 -4.968022 -3.160962 0.941901 -3.762778 -1.303713 0.550523 1.629122 3.278022 0.647556 1.128930 -0.154113 -2.009368 -3.405648 2.416354 -1.423746 -0.725175 1.289883 0.532010 0.504213 2.256320 -0.861993 -0.472697 0.554670 -1.378066 0.855706 1.812551 3.378731 -0.072736 4.786777 3.625434 -0.070179 3.547891 1.157092 -2.017904 4.056076 -0.165659 2.032565 1.453067 0.421243 -0.620597 1.067638 2.704277 -2.040047 -2.112804 -3.194334 -0.322244 -0.082262 1.486055 -0.409599 -1.717652 -4.915302 -1.067388 0.484130 2.058969 -0.170780 4.572706 -0.570709 0.614112 -4.779302 -0.092686 2.126440 -0.328537 3.011037 1.698838 -2.831237 -1.184407 -1.571798 -3.283919 -2.790868 -1.058885 0.137706 -2.299055 -0.458052 2.132368 -0.955643 0.468045 3.370206 -0.063776 1.931853 -2.942400 0.929039 -2.024762 0.086962 4.418319 -0.233309 -3.017874 2.723785 0.283804 8.082415 0.477865 1.298826 -1.237969 -1.577788 0.631973 -2.093702 -1.617118 3.809754 1.833291 1.520468 0.327116 -0.040829 0.082170 3.716721 -PE-benchmarks/permutations-of-a-given-string.cpp__std::remove_reference::type&& std::move(char&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/permutations-of-a-given-string.cpp___GLOBAL__sub_I_permutations_of_a_given_string.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = -0.434889 -0.035477 1.807517 0.696472 -0.522175 -1.489335 -0.624598 -1.959842 1.224675 0.367188 1.296134 0.312992 0.627833 -0.396337 0.166595 0.251296 0.075818 -0.623809 0.140604 -0.471409 0.192650 1.947974 0.926919 -0.951050 -0.075739 -2.077888 0.999857 0.531965 0.931066 1.568694 0.138936 -0.071120 -0.103116 0.856732 -0.556877 0.434939 0.121229 0.456249 -0.514795 -0.011090 0.352161 0.626239 0.769473 0.058789 1.612776 0.363339 0.899960 0.138942 -0.305292 -0.439846 -0.849940 1.440838 -1.108294 0.580544 -0.439878 0.252001 -0.061297 -0.744464 -0.420234 -1.679454 -0.083838 0.224840 -1.088773 0.060206 -1.029040 0.511033 -0.299949 -0.391886 -0.096319 -0.110729 1.136005 0.301399 0.219992 -0.283328 -1.813897 0.244211 -0.282886 0.528703 0.846786 -0.422451 -0.701052 -0.072598 -0.463931 -0.946825 0.842593 0.559002 -0.069939 0.191311 0.046360 -0.012130 -0.767585 -0.138782 0.004252 0.976106 -0.766842 0.578317 0.288838 -0.143626 -0.315030 -0.328035 0.374522 -0.966451 0.324082 0.350712 0.348344 -0.170296 -0.272386 0.160670 -0.798467 -1.175494 0.472945 -0.233775 -0.069207 1.232963 -0.624020 0.180629 -0.014914 -0.063398 -0.024873 1.329761 0.223127 0.708479 0.810756 1.256538 0.257569 -1.035867 -0.421026 0.789076 1.212045 0.808189 0.434974 -1.152502 -0.758109 0.000995 0.037285 -1.706043 -0.040329 1.054365 0.882894 -0.011073 -0.947690 0.641255 -0.416479 1.310415 1.132727 0.239489 0.235180 0.038637 -1.296816 1.020814 2.680449 -0.351243 0.877950 -0.633719 -0.547343 1.630094 -1.240325 0.875415 0.227464 0.122576 0.070479 -0.705250 -0.113005 1.134631 0.603501 0.906527 0.527125 0.445527 -0.039795 -1.754711 -1.615990 -0.625780 1.349942 0.053562 1.749168 -0.834731 -0.459812 -0.240736 1.180041 -0.006157 -0.379837 0.115276 -0.849598 0.727485 -2.320662 -1.451955 2.266274 2.080153 0.837328 0.277836 1.057654 1.380720 -0.234746 -0.486346 -0.207353 0.666549 0.151264 -0.655889 -0.066727 -0.196762 -1.291715 -1.006723 0.008441 0.360486 0.029225 0.010585 -0.023552 0.318624 -0.918779 -0.751253 0.230705 -1.050181 -0.705056 0.031953 0.272891 -0.173370 0.178965 -0.508037 0.473529 0.945022 -0.682303 0.206004 0.687619 0.441386 0.443581 1.071551 1.231013 -0.150926 1.121824 0.284786 -0.393058 2.142981 -0.395901 0.157401 0.367310 0.518999 0.356798 0.414737 0.172878 -0.600534 -0.187443 -1.342743 0.575099 0.438602 0.983098 -0.644157 -1.459009 -1.130516 -0.293768 0.762659 1.149866 -0.240735 2.305678 -0.412822 0.456147 -2.484313 0.160921 0.938094 -0.069802 0.754094 0.665649 -0.642585 -1.617962 -0.489340 -0.429685 -0.274135 -0.743631 -1.145349 -0.659040 -0.705503 0.890816 -1.245033 0.429043 0.939825 -0.000397 0.820017 -0.547177 -0.034666 -0.923333 0.025259 0.338427 0.330546 -1.113112 0.936497 -0.349113 2.558797 -0.900277 1.163565 -0.692016 1.163851 -0.661956 -0.507819 -0.097692 1.730656 0.980183 0.071800 0.108407 -0.107298 -0.229915 0.681953 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = 0.089906 0.218582 1.039454 -0.092974 -0.334103 -1.160264 -0.410459 -1.914705 0.734557 0.557299 1.007061 -0.110210 0.770308 -0.205919 -0.120537 0.327550 0.291497 -0.480831 0.259952 -0.493091 -0.528938 1.199110 -0.182935 0.389992 0.140194 -1.412959 0.943188 0.266091 0.487688 0.844740 0.324371 0.055917 -0.225838 0.465535 -0.093833 0.564716 0.220942 0.524655 -0.194215 0.261734 0.165864 -0.057246 0.666687 0.232787 0.921092 0.600059 0.062286 0.252901 -0.044375 -0.510305 -0.080597 0.180427 -0.563211 0.191284 -0.512016 -0.206478 0.083779 -0.346958 -0.013531 -0.020244 -0.069152 -0.281853 -0.679516 0.263923 -0.669643 0.225793 -0.402341 -0.483236 -0.277440 -0.396804 0.539481 0.145414 -0.226573 0.134421 -1.337287 -0.001132 0.236113 -0.052934 0.596111 -0.261349 -0.392357 -0.158739 -0.868100 -0.873880 0.969827 1.099473 0.287928 0.289218 -0.523236 -0.228805 -0.329746 0.016360 0.669099 0.811312 -0.347748 -0.185223 -0.063909 -0.321570 -0.565498 -1.046800 0.473646 -0.448748 0.483013 -0.008953 -0.129261 -0.177476 0.013859 0.074206 -0.410353 -0.570392 0.104119 -0.713601 0.558683 1.104599 -0.166907 -0.348373 -0.805526 -0.513786 0.258345 0.610043 0.408812 -0.139055 1.179955 0.581596 0.368738 -0.818422 -0.736536 0.527954 0.328171 0.295154 0.175644 -0.981426 -0.412838 0.223406 -0.623319 -1.277564 -0.474564 -0.079140 0.418956 -0.867147 -0.101617 0.757677 -0.451574 0.211850 0.954371 0.068185 0.209567 0.143659 -0.676526 0.440916 1.229526 -0.132145 0.446756 -0.769931 -0.470667 0.740338 -0.402689 0.281246 0.324841 -0.254835 -0.628518 -0.250514 0.453347 0.693660 -0.140152 0.558515 0.038090 0.451011 -0.423878 -0.485093 -1.177870 -0.075057 1.191047 0.334887 1.197331 -0.937003 -0.064883 0.092024 0.975233 0.339631 -0.325926 0.406486 -0.476018 0.479860 -1.080915 -0.946066 1.164916 1.040236 0.923792 -0.102455 0.375403 0.468453 -0.573472 -0.364658 -0.322149 0.481000 0.113673 -1.165286 -0.278758 0.093943 -0.818525 -0.384285 -0.320003 0.417849 0.313821 0.050721 0.554215 -0.515371 -0.231640 -0.736268 0.554314 -0.294186 -0.214436 -0.080534 0.064201 -0.272783 0.262046 -0.311185 0.249755 0.286912 -0.287933 0.430369 0.629714 0.083774 -0.054362 1.099470 0.899024 -0.651276 0.219271 -0.274559 0.032430 0.710679 -0.155728 0.303977 0.269498 0.511160 0.183978 0.258453 0.653860 -0.404032 -0.380784 -0.771906 -0.117128 0.493309 0.324258 0.256913 -0.536092 -1.345217 -0.092342 -0.176606 1.451752 0.135545 1.310215 -0.092936 0.593653 -0.988286 0.209511 0.162506 -0.198791 0.427628 0.211103 -0.500970 -0.160612 -0.272945 -0.891869 -1.119784 -0.147332 -0.380679 -0.632310 -0.387461 0.212177 -0.457908 -0.083778 0.409955 0.051204 0.302774 -0.417956 0.121365 -0.731933 0.239676 0.799032 -0.217999 -0.535057 0.349273 0.106903 1.538791 -0.127344 0.761920 -0.055729 0.625681 -0.273835 -0.859478 -0.321698 0.992485 0.524918 0.119003 -0.017078 -0.121548 0.370713 0.562924 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = -2.556397 2.242015 18.385993 11.339100 -7.901602 -12.107058 -6.114797 -16.137323 8.958042 -0.388172 9.741594 1.240231 2.269046 -2.849220 0.945717 -1.296440 1.904865 -5.479129 2.136141 -4.375044 -0.702326 14.927207 7.462614 -13.865788 0.368904 -21.521210 12.552840 7.655893 8.524818 11.828115 0.535468 -2.017135 -1.251576 9.816601 -4.984925 -1.752674 2.290909 1.703342 -6.498913 1.198497 4.753892 10.340830 8.925013 -1.543447 9.925407 4.688480 9.774993 3.289666 -6.357244 -0.759432 -9.277956 14.316283 -9.377776 5.879456 -0.330509 4.643737 1.907129 -12.028962 -5.137014 -11.815733 -1.370330 4.436347 -6.862405 0.611148 -11.234313 3.341576 -1.808359 -4.455045 5.769930 4.419211 10.157512 5.279284 3.360224 -4.721555 -11.163349 5.652748 -1.549257 9.470206 6.767221 -6.314722 -2.392874 4.109965 -4.522655 -7.226418 3.048420 3.112258 1.739379 -2.961424 5.250079 -3.404527 -3.530992 -3.014203 -4.074894 7.816748 -5.005127 5.389188 -4.927464 -0.614722 -5.839773 -3.189925 -0.930272 -8.932365 4.570798 8.132651 -1.978611 -0.149169 0.240523 1.879263 -4.545291 -10.183167 1.522122 -2.287860 3.106686 12.911916 -4.820276 -0.402964 -0.290066 -0.454247 -2.043274 12.277728 -1.293593 5.777907 10.342348 15.224016 0.556849 -7.564486 -3.064645 2.863880 8.506065 9.953134 9.274875 -12.753868 -7.227215 -3.619875 3.795368 -15.253668 4.331634 4.551532 7.684557 1.932412 -12.525343 4.175308 -5.160726 15.425027 7.303225 4.260699 3.119931 -0.581622 -8.917908 14.041438 23.844284 -3.664048 6.968788 -9.676607 -6.201400 13.692528 -8.767758 7.759514 1.624120 1.485560 2.617601 -8.501884 -1.428901 10.515049 5.076406 5.373028 10.882265 2.003906 2.852243 -18.307674 -12.335657 0.954433 8.024825 -2.419255 20.823854 -9.157750 -6.151020 -4.373789 10.137335 -0.852958 -2.191183 0.437259 -6.925792 5.933723 -18.027115 -15.289074 18.867340 16.709486 0.568105 1.678082 11.348600 10.668369 -3.894905 -5.154514 -4.166230 6.396412 1.966745 -2.751900 0.465419 0.760882 -10.271132 -7.346177 3.208936 3.771627 8.305734 -5.270076 -8.742332 2.254106 -15.241918 -9.439504 5.356447 -12.327220 -5.405335 3.051077 0.001368 0.691338 4.938329 -2.739656 -0.983089 5.974712 -5.894742 -0.616135 5.069571 9.842519 2.874225 8.554496 11.266191 3.582451 12.345798 9.099811 -4.833292 23.891528 -2.638891 1.138246 4.138961 4.290594 0.358076 5.237320 2.423422 -5.212153 -3.912138 -13.971966 9.845736 -0.477301 7.679046 -13.414076 -8.274423 -10.978143 -6.709836 10.002917 7.505670 -0.974398 21.667992 -1.549197 -0.725917 -22.808492 -1.915876 9.242419 2.249775 8.607839 7.313785 -7.687127 -15.492691 -4.347646 -3.766715 2.941109 -6.973233 -10.860578 -8.356412 -4.655497 8.740085 -6.459393 5.739272 15.591977 -0.729955 4.998714 -3.644243 -1.140831 -5.033374 -5.414799 2.687775 4.373944 -10.488058 13.075952 -5.068221 24.606463 -7.220162 7.766249 -9.759700 4.078395 -0.985404 -3.741515 -0.905706 15.675888 5.284584 1.725247 2.420807 -0.829169 -5.495902 9.529856 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = -2.254756 0.659306 9.744916 6.107295 -4.490105 -7.169119 -3.625108 -8.878376 5.583755 0.353079 5.889677 1.814249 1.883069 -2.156346 0.668397 -1.230361 0.804775 -2.676031 -0.280462 -2.563043 -0.123616 7.740113 4.678228 -7.832359 0.484960 -10.494478 5.150705 4.120961 4.126852 6.209549 -0.156891 -1.084292 -1.746567 5.258782 -3.027551 0.056040 1.253338 1.048268 -3.163351 -0.559438 3.160552 4.979264 5.092210 -0.256831 6.709160 1.692939 4.318567 1.387674 -3.945194 -1.484878 -3.617640 7.389652 -5.244040 3.658763 0.110744 3.665093 0.361028 -6.098436 -2.283546 -7.803730 0.251662 2.329259 -3.558687 -0.189828 -5.001579 1.540247 0.125237 -2.670751 2.575124 -0.389934 5.739523 1.670336 1.047276 -2.443873 -5.693094 1.620166 -0.930888 4.305898 4.029592 -1.699093 -2.467594 0.653954 -2.013808 -3.709176 1.572667 1.297950 0.522146 0.050577 1.387809 -1.671466 -0.780012 -1.693604 -1.202760 4.012444 -4.307667 2.082997 -0.986556 -0.564917 -2.637797 -0.976288 0.363375 -4.246089 2.416907 3.828229 -0.951028 -0.363001 -0.256895 0.900138 -3.291553 -5.007230 1.353543 -0.883480 1.042516 6.208253 -3.089218 -0.289333 0.524799 -0.859146 -0.973840 6.529154 0.021918 2.503056 5.171228 7.803260 1.143907 -4.627738 -1.669066 1.921446 5.310672 5.469833 4.098664 -6.318122 -3.256244 -0.431703 0.577920 -9.027167 1.679088 2.708335 4.960775 2.162926 -7.134360 1.976564 -2.829937 7.433016 3.699297 2.710567 1.620498 -0.285202 -5.584648 6.468497 12.377915 -1.780475 4.366303 -3.236878 -3.468736 7.198275 -5.784397 4.382857 1.184685 -0.142895 1.526596 -3.905369 -0.943209 5.729759 2.425088 3.441191 3.451846 1.540030 -0.210585 -10.067207 -7.997206 -0.964962 5.101936 0.217128 10.588583 -5.140800 -3.588253 -2.535491 6.820009 -1.481048 -1.919584 0.728295 -3.647269 3.763381 -9.458668 -7.709567 10.800248 10.850739 1.651871 1.151316 7.060809 4.879422 -1.785584 -2.479295 -2.132735 2.471055 1.999244 -1.074438 0.564909 -0.265437 -5.840890 -4.281721 1.285509 1.784083 2.422540 -2.292382 -2.982873 2.268343 -6.410742 -4.664856 1.962317 -6.218337 -2.220014 1.055565 0.296245 -0.140990 2.206092 -2.083312 -1.196926 3.000573 -3.353161 0.737845 2.682700 4.622733 2.460312 5.262885 6.005325 0.499858 6.860707 3.824291 -2.672358 12.856127 -2.566602 1.172275 2.154834 3.429456 0.783242 2.654695 1.179726 -3.088022 -0.859384 -6.752967 3.850929 0.492758 4.668226 -7.317915 -5.856176 -6.019711 -2.966104 4.346659 3.512973 -1.387266 11.732961 -1.344636 0.705211 -13.429500 -0.730281 5.634167 0.444656 3.880490 3.621272 -3.919365 -10.839219 -2.238318 -2.203620 1.095233 -3.023522 -5.268976 -3.418755 -3.480008 5.320370 -4.041439 2.845888 7.594374 -0.853908 3.374974 -2.587171 -0.108698 -2.514571 -2.714750 0.776450 2.135939 -5.807025 6.937829 -1.656971 13.224724 -3.530792 5.061469 -4.537195 3.468812 -1.563704 -2.924745 -0.901223 8.335044 4.125704 1.305618 0.695178 0.032946 -3.339427 4.355883 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.174093 0.308694 1.581302 0.122050 -0.816285 -1.764096 -0.686955 -3.090723 1.106834 0.497594 1.460948 -0.179768 0.909869 -0.245076 0.044686 0.815425 0.632221 -0.906682 0.719440 -0.718798 -0.625298 2.145947 -0.162856 0.508149 0.122235 -2.292599 1.199528 0.374876 1.072512 1.095070 0.553902 -0.237237 -0.356541 0.611749 0.073236 0.721033 0.501388 0.510366 -0.909308 0.564136 -0.186234 -0.203154 1.038948 -0.101991 1.332931 0.392127 0.843189 0.624627 -0.201879 -0.493283 -0.871455 1.161521 -0.951508 0.323992 -0.328496 -0.606917 0.025881 -0.559330 -0.511150 0.246571 -0.622549 -0.557502 -0.912234 0.456997 -1.102984 0.618356 -0.902315 -0.452935 -0.086214 0.340265 1.090720 0.628125 0.254401 0.511046 -2.247823 0.272107 0.059399 0.492749 0.700800 -0.612364 -0.026608 0.140019 -1.167506 -1.208588 1.333544 1.597234 0.325083 -0.321804 -0.659643 0.066853 -0.754534 -0.219814 0.551187 0.895822 -0.779453 0.043868 -0.614256 -0.305530 -0.970288 -1.881408 0.303112 -0.783006 0.709676 0.003192 0.139593 -0.276424 -0.052331 0.154606 -0.723398 -1.235959 0.223907 -0.577878 0.446171 1.952320 -0.444882 -0.188653 -0.960938 -0.400868 -0.141808 0.869293 0.606869 0.404206 1.501051 1.417628 0.449074 -0.952682 -1.122199 0.725000 0.841925 0.645963 0.666602 -1.430781 -0.824710 0.191958 -0.441337 -1.833921 -0.570792 0.470106 0.877045 -0.838729 -0.103940 0.334028 -0.583709 1.095361 1.259837 0.038546 0.292518 0.125961 -0.968321 1.275786 2.180176 -0.268872 0.870318 -1.320024 -0.081667 1.178592 -0.847187 0.444670 0.444852 0.110458 -0.899566 -0.619618 0.048756 0.869219 0.350583 0.662413 0.312804 0.711441 -0.588448 -1.301259 -1.613904 0.100527 1.732256 -0.130532 1.610546 -1.295891 -0.569914 0.150479 1.162358 0.565016 -0.691472 0.676943 -1.056084 0.714779 -1.603833 -1.524346 2.066308 1.738534 0.954185 -0.044273 0.734001 1.334103 -1.800089 -0.794600 -0.568014 0.972126 -0.136949 -2.316959 -0.740329 0.271274 -1.345249 -0.734024 -0.271203 0.756574 0.826473 0.494740 0.639247 -0.233412 -0.887384 -0.827382 1.286632 -0.626758 -0.705666 0.119407 0.006651 -0.022389 0.611001 -0.503829 0.616953 0.764789 -0.758921 0.410193 0.959022 0.434841 -0.112075 1.733517 1.623401 -0.192291 1.009793 -0.061740 -0.412707 1.150816 -0.036834 0.445921 0.159925 0.139257 -0.119153 0.326270 0.918518 -0.584704 -1.324491 -1.262460 0.099238 0.250808 0.862020 0.411307 -1.206528 -1.811070 -0.254703 0.462017 1.827695 0.270745 1.939271 -0.441739 0.634709 -1.981250 0.227809 0.319669 0.030933 0.879953 0.302808 -0.604153 -0.116755 -0.385386 -1.219752 -1.547593 -0.496632 -1.053207 -0.996101 -0.977756 0.838706 -0.690477 -0.260756 0.859852 0.107823 0.930954 -0.313977 -0.144058 -1.179128 0.446057 1.277019 -0.134797 -0.959048 1.088988 -0.062271 3.113294 -0.328384 0.579560 -0.318809 0.432654 -0.206700 -1.056913 -0.138247 1.593782 0.911678 0.100111 -0.118912 -0.373043 0.279194 0.757030 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.670098 0.197929 2.958097 1.193816 -0.808183 -1.753725 -0.993170 -3.766886 1.941687 0.772089 2.233167 -0.281759 1.123581 -0.895565 -0.373709 -0.076520 0.525120 -1.204371 0.581046 -0.782342 0.449805 2.888527 0.499550 -0.997040 0.245392 -3.781963 2.009576 0.872999 1.407175 1.771354 0.421475 0.404033 -0.298510 1.260644 -0.465426 0.760708 0.500758 0.872808 -0.779001 0.057692 0.577273 0.898011 1.010448 0.033462 2.533076 0.777861 0.950918 0.201474 -0.658418 -0.745107 -0.951102 1.462597 -1.499182 0.353016 -0.632108 -0.176634 0.020801 -1.503058 -0.643848 -1.645460 0.037981 0.162546 -1.173283 0.518370 -1.683559 1.079292 -0.079246 -0.421079 0.071973 -0.419630 1.532460 0.861467 0.305564 -0.000599 -2.372083 0.728199 0.162613 0.515896 1.214502 -0.722332 -0.540964 0.231476 -1.040082 -1.548812 1.553037 2.016631 0.424520 0.239844 0.086570 -0.402258 -0.747826 -0.523160 0.145520 1.686447 -1.366927 0.048135 -0.192398 -0.445172 -0.805820 -0.733999 0.564580 -1.398751 0.903497 1.065556 -0.575280 0.189050 0.237491 0.277911 -0.922199 -1.430808 0.209138 -1.184482 1.365789 2.633472 -0.876068 -0.317624 -1.474688 -0.381798 0.128952 1.784023 -0.203700 0.833105 2.116102 2.016246 0.505268 -1.563140 -1.113287 1.587684 1.210134 1.130676 0.711159 -2.402105 -0.986626 -0.358724 -0.155389 -2.438931 -0.831641 0.072596 1.329932 -0.802335 -1.505932 1.317074 -0.654018 2.021956 1.815197 -0.062522 0.265937 0.661125 -1.775306 1.778822 3.668640 -0.280755 0.832096 -1.554673 -0.829274 1.861662 -1.374138 1.108540 0.664674 0.061095 -0.503414 -1.212568 0.337819 1.451909 0.234617 1.190294 0.493141 0.919297 0.161964 -2.435661 -2.771235 -0.483303 1.810685 0.192032 3.209044 -1.831248 -0.688390 -0.463419 2.195903 0.715454 -0.468524 0.468567 -1.446232 1.063006 -2.426224 -2.635602 2.799140 3.074419 1.277220 0.407359 1.724305 1.395478 -1.000937 -0.585502 -0.375584 1.299887 0.203453 -1.375212 -0.166842 0.126712 -1.715650 -1.992300 -0.203033 0.731037 0.706829 -0.027458 0.322864 -0.131652 -1.150321 -1.574809 0.788491 -1.199005 -0.965057 -0.097761 0.210891 0.009522 0.792752 -1.212629 0.556085 0.992643 -0.648926 0.495048 1.219893 0.568931 0.036984 1.264487 2.251283 -0.443884 1.324924 0.277396 -0.366065 2.877296 0.147843 0.529583 0.610175 0.128624 0.589723 0.616554 0.541125 -1.030913 -0.335406 -2.150848 0.767013 0.445480 1.268403 -1.267023 -1.615527 -2.244906 -0.627239 0.981943 1.614394 0.313546 3.589354 -0.432527 0.225678 -3.492128 0.000538 1.450215 -0.099346 1.256031 0.806420 -1.245410 -2.071068 -0.564304 -1.288651 -1.102240 -1.182675 -1.690876 -1.619737 -0.944621 1.893324 -1.062029 0.405892 1.933703 0.623791 0.772045 -0.729941 0.170136 -1.321419 -0.322464 0.307419 0.338517 -1.614491 1.362754 -0.546175 3.513971 -1.298530 1.338388 -0.976393 1.695418 -0.743920 -1.578639 -0.128536 2.760544 1.082859 0.188219 -0.104198 -0.679837 -0.356158 1.583943 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = 0.068358 0.142302 0.154187 -0.028654 0.063874 -0.136637 0.015903 -0.108427 -0.010022 -0.009793 0.049768 -0.092171 0.116329 0.014385 -0.010984 -0.038010 0.024832 0.147890 0.036580 0.000408 0.010810 -0.068710 -0.120752 -0.026390 0.052348 -0.024935 0.078090 0.072171 0.018552 0.123602 -0.016739 0.001291 -0.046075 0.026172 -0.083450 -0.096151 0.134319 0.052833 -0.079344 0.022446 -0.124127 0.086128 -0.025377 0.038387 -0.018240 0.218668 -0.174020 0.066397 0.058180 -0.006112 0.084180 -0.045429 0.041573 0.077983 -0.071561 -0.057734 0.014273 0.054927 0.085584 -0.113157 0.116285 0.034309 0.034117 -0.008187 -0.094748 -0.038473 0.023884 -0.151992 -0.017811 -0.038497 0.001904 -0.019623 0.019998 -0.001846 -0.089132 -0.004371 0.057198 0.044124 0.075251 -0.075514 0.063671 -0.033259 -0.041582 -0.069745 0.052387 0.079100 0.108525 0.132994 -0.037123 -0.101467 0.061975 -0.009463 0.099142 0.042268 0.160341 0.035954 -0.128443 0.057344 0.052054 -0.186062 0.036523 0.002470 0.016687 -0.019275 0.091674 0.040622 0.072678 0.172548 0.055090 -0.009845 0.134514 -0.047737 -0.039069 0.089106 0.053726 -0.083695 0.007484 -0.070725 0.007485 0.102445 -0.016346 -0.028494 -0.110201 0.013835 0.027126 -0.058410 -0.060913 0.060162 -0.033011 0.072004 0.035499 -0.141480 -0.009295 0.027937 -0.198960 -0.126788 0.016056 -0.092282 0.050654 -0.153536 -0.096811 0.143964 -0.141032 -0.087114 0.000991 0.083427 0.030438 -0.019120 -0.039613 -0.027008 -0.001539 -0.072405 0.041216 0.053414 -0.018049 -0.196854 0.160332 -0.010565 -0.076012 -0.102724 0.117590 0.030611 0.036595 0.086635 0.098422 0.082002 0.011414 0.013127 -0.237630 -0.066992 -0.005915 -0.024142 0.129686 -0.123358 0.061359 -0.027677 -0.102759 -0.048141 0.201844 -0.131572 0.053813 -0.015212 -0.012192 0.052550 -0.018772 -0.061562 0.025620 0.037997 0.096921 -0.113771 -0.062417 -0.008294 0.006304 -0.049720 0.027404 -0.097267 -0.078795 -0.151687 -0.172559 -0.036980 -0.061817 0.061623 0.070782 0.032092 -0.014907 0.134763 0.012119 -0.026899 -0.009603 -0.095381 -0.025386 -0.030082 0.109491 0.053809 0.008820 -0.009481 0.006048 -0.137610 -0.064025 0.173502 -0.037210 0.031092 -0.006839 0.012434 -0.000697 0.172768 -0.082208 0.028505 -0.016549 0.033916 -0.114482 0.199401 0.002310 0.069453 0.009069 0.093541 -0.010412 0.035362 0.055227 -0.050286 -0.062091 -0.181704 -0.215852 0.085152 0.004597 0.126320 -0.050417 -0.030537 0.031851 -0.104801 0.142579 -0.006812 0.087385 0.038137 0.067030 0.056263 0.024219 0.016156 -0.130530 -0.007148 0.058786 -0.046722 -0.212910 0.018937 -0.119262 -0.229830 -0.074108 -0.073597 0.031884 0.034202 -0.080344 0.059391 0.000201 0.054176 0.070113 -0.005050 -0.109192 0.020411 -0.027027 0.009579 0.075770 -0.085601 -0.115767 -0.067407 0.099954 0.152988 0.050988 0.064307 -0.046623 -0.061684 0.013337 0.007505 -0.084200 0.095477 0.039030 0.097505 0.039597 0.068915 0.001957 0.047586 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__introsort_loop(int*, int*, long, __gnu_cxx::__ops::_Iter_less_iter) = -1.017352 0.296677 4.416651 2.340532 -2.061644 -3.429479 -1.824351 -5.751856 2.902092 0.865335 3.546155 -0.120898 1.593087 -1.397578 -0.454219 -0.495889 0.960352 -1.776961 0.432016 -1.524075 -0.580680 4.241123 0.777438 -2.088114 0.504065 -5.514299 3.575506 1.664733 1.625258 3.003795 0.670310 0.389325 -0.871256 2.156491 -0.708707 1.029690 0.778359 1.177750 -1.082453 -0.035988 1.657750 1.053539 2.577150 0.153503 3.642241 1.325038 1.351356 0.618396 -1.673786 -1.148638 -1.512458 2.029209 -2.485053 0.894131 -0.896280 0.255748 0.751995 -2.688405 -0.923454 -2.479450 -0.127052 -0.179651 -1.987756 0.508896 -2.561548 1.358287 -0.181742 -1.169790 0.574507 -0.896267 2.462760 1.030684 0.081680 -0.163561 -3.394181 0.787169 0.404739 1.061213 2.065517 -0.849704 -0.830334 0.142898 -2.106875 -2.278768 2.168545 2.182530 0.897612 0.490829 -0.027488 -0.829730 -0.622802 -0.659630 0.612244 2.405854 -1.772090 -0.063078 -0.403755 -0.923402 -1.736169 -1.561216 1.022181 -1.905703 1.548404 1.841364 -1.680586 0.118608 0.360751 0.303649 -1.648644 -2.431406 0.310470 -2.056300 2.015915 3.965404 -1.252041 -0.989735 -1.950742 -1.014562 0.301694 2.799833 -0.018489 0.935566 3.444444 3.415032 0.797362 -2.653518 -1.874024 1.722585 1.963812 1.887063 1.364399 -3.480584 -1.640561 -0.252328 -0.600711 -4.275396 -0.961222 -0.042399 2.411730 -0.754512 -2.606919 2.247336 -1.429553 2.934510 2.557440 0.562289 0.516898 0.709121 -3.053988 2.926621 5.390323 -0.462767 1.678376 -2.471442 -1.696242 3.124553 -1.936772 1.456336 1.027010 -0.423006 -0.690740 -1.658349 0.589265 2.400201 0.204868 1.587533 0.952420 1.461906 -0.256450 -3.923642 -4.474853 -0.161508 3.427570 0.814971 5.270471 -3.356948 -1.043032 -0.691028 3.634635 0.517861 -0.989798 0.833064 -2.029949 1.877307 -4.269082 -4.193168 4.847118 4.529850 1.787974 0.688165 2.671128 1.893220 -1.364679 -0.954393 -1.126712 1.840944 1.029231 -1.834534 -0.030354 0.100542 -2.664247 -2.737996 0.003670 1.319122 1.393011 -1.108261 0.148035 -0.543644 -1.910769 -2.728859 1.518601 -2.296818 -1.216774 0.284882 -0.004688 -0.097662 1.318536 -1.089159 0.345607 0.807751 -1.024241 0.814290 1.724274 1.412030 0.224733 2.585751 3.756223 -1.085892 2.158606 0.685846 -0.654847 4.979982 -0.605033 1.024782 1.134881 1.152057 1.070497 1.007473 1.549380 -1.624586 -0.361985 -3.366174 1.152893 0.770579 2.072577 -2.840405 -2.250404 -4.348424 -1.081248 1.282411 2.839584 0.033756 5.670820 -0.586451 0.302025 -5.524903 -0.178737 2.494576 -0.008678 1.924505 1.206324 -2.056887 -3.577221 -0.957948 -2.354401 -1.024580 -1.596533 -2.108848 -2.576563 -1.354444 2.502400 -1.593283 0.793484 3.306447 0.224836 1.026922 -1.334004 0.205295 -1.755966 -0.926939 0.685846 0.459136 -2.480069 2.856194 -0.557425 5.894398 -1.325111 2.267039 -1.527104 2.565366 -1.041828 -2.538847 -0.507010 4.167965 1.814969 0.317096 0.143470 -0.479399 -0.511208 2.624632 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::__lg(long) = 0.105240 0.392224 0.856599 0.442838 -0.105344 -0.542645 -0.152057 -1.091592 0.382257 0.039500 0.440369 -0.175539 0.158601 0.292828 0.052875 0.028938 0.011462 -0.155908 0.369914 -0.089068 -0.023365 0.564108 0.131976 -0.344698 -0.074268 -0.815389 0.625403 0.243616 0.479577 0.416705 0.050990 -0.234860 0.076893 0.450168 -0.233227 -0.271835 0.219417 0.162246 -0.327063 0.103120 -0.227499 0.491533 0.314141 0.115574 0.334697 0.419476 0.438429 0.212840 0.081335 0.226144 -0.386744 0.631413 -0.413209 0.310764 -0.040577 -0.085709 0.059059 -0.427323 -0.131337 -0.266865 -0.087745 0.230177 -0.295566 0.079307 -0.666839 0.112983 -0.272200 -0.244022 0.070719 0.544003 0.552608 0.321904 0.260199 -0.186232 -0.828393 0.308737 -0.176287 0.299775 0.317048 -0.578771 -0.003081 0.315426 -0.338509 -0.477649 0.295270 0.437210 0.060399 -0.178797 0.319813 -0.184226 -0.236406 -0.251468 -0.224658 0.571615 0.155498 0.591376 -0.378123 0.096576 -0.260773 -0.576178 -0.080717 -0.500082 0.330995 0.110266 0.319756 -0.004853 0.209693 0.281087 0.006600 -0.588863 0.227514 0.022372 0.211109 0.470157 -0.090899 -0.038617 0.079128 -0.072411 -0.095937 0.526864 0.136982 0.192220 0.348821 0.655870 0.000234 -0.243773 -0.156095 0.154232 0.088693 0.557039 0.418535 -0.745885 -0.294452 -0.049214 0.197263 -0.652637 0.302590 0.384247 0.261557 -0.366762 -0.496986 0.119852 -0.254708 0.481687 0.506316 0.373994 0.212408 -0.004093 -0.113508 0.496852 0.978570 -0.186203 0.261475 -0.504701 0.034998 0.305559 -0.369978 0.363390 -0.077310 0.260969 0.149434 -0.405066 -0.099547 0.503659 0.459531 0.160766 0.690543 0.061556 -0.204006 -0.738985 -0.263455 0.055985 0.543658 -0.397861 0.723935 -0.334009 -0.376903 -0.026328 0.229209 0.132249 0.020533 0.108735 -0.272146 0.251021 -0.837098 -0.589147 0.471676 0.416014 0.171296 -0.330085 0.151705 0.483697 -0.197120 -0.529063 -0.192603 0.318956 -0.370423 -0.346877 -0.309563 -0.110437 -0.542818 -0.080914 0.137394 0.200137 0.664227 -0.058223 -0.427678 -0.034409 -0.758335 -0.503742 0.296896 -0.466116 -0.342496 0.095689 0.006211 0.043306 0.113031 -0.117105 0.047221 0.634875 -0.320183 -0.087430 0.374105 0.262523 -0.158915 0.693749 0.298074 0.345684 0.364120 0.450557 -0.257207 1.050358 0.049433 0.075798 0.142743 0.089606 -0.225951 0.293390 0.207950 -0.245025 -0.671180 -0.620278 0.294734 -0.047560 0.427080 -0.102737 -0.337414 -0.366750 -0.266550 0.374331 0.554190 0.090211 0.810859 0.061824 0.306552 -0.647942 -0.006509 0.225016 -0.023087 0.363393 0.353598 -0.420545 -0.081306 -0.118890 -0.234711 -0.323280 -0.330315 -0.578527 -0.321778 -0.160210 -0.097376 -0.103664 0.079385 0.497264 -0.045645 0.129997 -0.359980 -0.105256 -0.198388 -0.117445 0.618551 -0.038101 -0.639301 0.367361 -0.234443 1.314559 -0.365869 0.268636 -0.478383 -0.142316 -0.056496 0.131808 -0.047561 0.784699 0.135176 0.117988 0.027983 -0.125135 -0.096096 0.244636 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__final_insertion_sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.828779 0.272755 3.268286 0.927162 -1.009490 -2.208760 -1.211418 -4.490823 2.096336 0.975628 2.818923 -0.325404 1.379308 -0.864205 -0.227616 0.106581 0.843082 -1.550147 0.534043 -1.019656 0.238078 2.921214 0.227067 -0.675686 0.342899 -3.972688 1.892123 1.039924 1.148414 1.706991 0.672229 0.423862 -0.568775 1.325261 -0.411770 1.145104 1.059154 0.982510 -0.794085 -0.089025 0.581424 0.692136 1.412811 0.094380 2.995578 0.764386 0.914396 0.344935 -0.920497 -0.966414 -0.956597 1.773195 -1.610878 0.388345 -0.511265 -0.244243 0.205513 -1.758056 -0.638389 -1.682340 -0.129208 -0.078099 -1.294703 0.469394 -1.423769 1.146565 0.189506 -0.512469 0.074057 -0.720345 1.703132 0.663708 0.212483 0.530830 -2.586936 0.613216 0.349545 0.427039 1.390453 -0.732378 -0.549514 0.033324 -1.262648 -1.796409 1.988431 2.326164 0.667473 0.446639 -0.508900 -0.031893 -0.809951 -0.651787 0.445270 1.852316 -1.579227 -0.250265 0.230881 -0.821219 -1.324655 -1.016544 0.835136 -1.415871 1.001530 1.084091 -0.712779 0.046852 -0.318800 0.269818 -1.427817 -1.476089 0.469672 -1.586011 1.343110 2.734594 -1.198393 -0.427372 -1.665061 -0.670921 0.334379 1.828155 -0.076405 0.770368 2.267234 2.229045 0.694849 -1.857697 -1.460920 1.531265 1.630171 1.193633 0.652268 -2.642619 -1.030373 -0.059293 -0.788670 -2.889598 -1.141154 0.067354 1.707251 -0.746912 -1.665241 1.412249 -0.815467 2.165815 1.998670 0.189634 0.158439 0.792666 -2.150268 1.727542 3.617615 -0.406000 1.359257 -1.441829 -0.593295 1.585380 -1.536753 1.171864 1.030600 -0.207825 -0.766652 -1.155163 0.162583 1.614849 0.564052 1.387286 -0.017723 1.168693 -0.259660 -2.572945 -3.478994 -0.587204 2.357245 0.244486 3.343826 -2.233411 -1.118089 -0.444735 2.781321 0.337224 -0.934785 0.703414 -1.586719 1.304561 -2.369501 -2.811434 3.374199 3.566351 1.672090 0.441039 2.030703 1.299752 -1.617297 -0.639547 -0.372371 1.397163 0.307416 -2.018796 -0.251030 0.117227 -1.919571 -2.115154 -0.519575 0.912044 0.387747 0.229067 1.052165 0.074481 -0.935138 -1.366233 0.774802 -1.138244 -1.236170 -0.093508 0.235963 0.081737 0.896809 -1.366937 0.507218 1.114542 -1.105735 0.598341 1.432088 0.693823 0.268200 1.975202 2.582405 -0.666628 1.790321 -0.040414 -0.448077 2.547993 -0.070853 0.686811 0.612721 0.279811 0.740285 0.602029 1.002503 -1.169536 -0.536175 -2.340611 0.522275 0.515643 1.575653 -0.971019 -2.026283 -2.804207 -0.524100 0.966086 2.031606 0.025284 3.911815 -0.362717 0.435084 -3.940542 0.049103 1.492222 -0.247333 0.987599 0.749142 -1.403743 -2.481906 -0.529193 -1.850767 -1.908338 -0.942714 -1.553479 -1.724702 -1.517565 2.301347 -1.336952 0.244200 1.897568 0.682997 0.943177 -0.586121 0.157379 -1.418000 -0.154557 0.787953 0.115621 -1.734106 1.669199 -0.322504 4.401629 -1.230768 1.539082 -0.862958 1.948092 -0.705685 -1.724234 -0.248500 3.033627 1.579159 0.253105 -0.285391 -0.625490 -0.366195 1.866476 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__partial_sort(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.220454 -0.111124 1.391295 0.275770 -0.565093 -1.697090 -0.685505 -2.602131 1.342621 0.767678 1.449877 0.166928 1.163032 -0.750539 -0.182548 0.299136 0.445246 -0.879489 0.240513 -0.755674 -0.457933 2.146473 0.109039 0.017405 0.078443 -2.250677 1.429033 0.341263 0.710793 1.527803 0.468466 0.137405 -0.322130 0.715320 -0.180351 0.980520 0.233824 0.682842 -0.283753 0.077967 0.499506 0.059919 1.060828 0.269856 1.638958 0.553774 0.298409 0.295962 -0.181328 -0.864051 -0.273367 0.297540 -1.054601 0.273367 -0.753237 -0.072260 0.221379 -0.619721 -0.204555 -0.599357 -0.066723 -0.306902 -1.067378 0.336367 -0.988550 0.520493 -0.455178 -0.560137 -0.421933 -0.684533 0.928605 0.368375 -0.137188 0.005413 -1.916972 -0.035750 0.104505 -0.010603 0.943826 -0.199959 -0.846504 -0.424523 -1.119554 -1.134522 1.351851 1.331532 0.188648 0.583677 -0.506883 -0.289071 -0.560659 -0.027907 0.861008 0.998326 -0.640332 -0.341447 0.304882 -0.343561 -0.480839 -1.022615 0.709068 -0.656430 0.567703 0.298374 -0.157710 -0.224588 -0.000671 -0.029215 -0.940345 -0.816522 0.265481 -0.948528 0.667609 1.578026 -0.410974 -0.366225 -1.099698 -0.571679 0.393291 1.110785 0.460742 0.097926 1.644042 1.046295 0.425480 -1.273618 -0.935788 0.977985 0.843683 0.436281 0.265870 -1.389537 -0.665286 0.318434 -0.691628 -1.775269 -0.749100 0.125154 0.764608 -0.869487 -0.486419 1.175993 -0.511686 0.629883 1.437732 -0.005545 0.261977 0.234817 -1.255827 0.920055 2.072805 -0.085037 0.676455 -1.117029 -0.736588 1.486724 -0.906428 0.423682 0.413760 -0.366808 -0.887433 -0.383716 0.713884 0.937567 -0.228893 0.904132 -0.071928 0.787611 -0.395099 -1.050015 -1.818508 -0.250075 1.774563 0.727189 2.028862 -1.392357 -0.044073 0.033977 1.307469 0.523240 -0.497246 0.557096 -0.835493 0.773240 -2.060843 -1.512941 2.154392 1.689804 1.423820 0.141825 0.740103 0.908088 -0.531077 -0.298943 -0.367825 0.712339 0.441731 -1.377479 -0.092611 0.104071 -1.266843 -1.111115 -0.328251 0.601518 0.351026 -0.168665 0.638145 -0.693107 -0.303752 -1.074908 0.801814 -0.606185 -0.416335 -0.153451 0.127814 -0.332873 0.339361 -0.324523 0.552919 0.373561 -0.270607 0.584799 0.877570 0.230334 0.128998 1.248608 1.648105 -1.029874 0.409574 -0.291250 0.033710 1.354961 -0.267517 0.445687 0.428299 0.732103 0.601436 0.244325 0.782206 -0.627412 -0.157041 -1.105175 0.087387 0.843418 0.697405 -0.266704 -0.950444 -1.926456 -0.163074 -0.109311 1.879156 0.063906 2.085774 -0.428326 0.647165 -1.863763 0.274677 0.634775 -0.102931 0.602571 0.393846 -0.630996 -0.659145 -0.482783 -1.128008 -1.118487 -0.442156 -0.703306 -0.885078 -0.644813 0.641639 -0.938578 -0.008198 0.878424 -0.008524 0.596155 -0.668578 0.223718 -1.160521 0.247795 0.432359 -0.064859 -0.788585 0.756397 -0.012372 2.112694 -0.369033 1.095257 -0.199824 1.463892 -0.766083 -1.411703 -0.327200 1.516855 0.817447 -0.061695 0.187343 -0.217138 0.452793 0.840696 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__unguarded_partition_pivot(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.305139 -0.417691 3.016339 0.871490 -0.611722 -2.380736 -1.268368 -4.522801 2.500421 1.201682 3.163862 -0.140556 1.729231 -1.337303 -0.116974 0.543092 0.792660 -2.096062 0.715728 -0.985009 0.635612 4.041184 0.801351 -0.427700 -0.078504 -4.221567 1.870145 0.678401 1.316780 2.426080 0.821975 0.547703 -0.027504 1.188925 -0.385518 1.916920 0.719929 1.198290 -0.542732 -0.332403 0.546779 0.182883 1.378392 0.081428 3.554227 0.331679 1.547555 0.003872 -0.669966 -1.282207 -1.663492 2.079054 -2.256236 0.036784 -1.037851 -0.621078 0.428023 -1.387147 -0.966681 -2.521935 -0.479760 -0.289848 -1.903583 0.528720 -1.491256 1.720329 -0.230460 -0.116565 -0.530782 -0.585239 1.978659 1.114121 0.612765 0.827308 -3.277487 0.726463 0.009582 0.176962 1.483806 -0.753251 -1.016155 -0.214001 -1.167383 -1.924431 2.818142 2.123604 0.397358 0.670143 -0.503675 0.603260 -1.722135 -0.391164 0.444768 1.812979 -1.579678 -0.040542 1.352291 -0.773159 -0.916578 -0.752004 0.971431 -1.767465 0.605412 1.308826 -0.085914 -0.108163 -1.099558 -0.018026 -2.228890 -2.008336 0.731092 -1.655177 0.638173 2.578496 -1.792873 0.204835 -1.616588 -0.156591 0.630514 2.099645 0.090808 1.530491 1.971217 2.200456 0.544367 -2.082353 -1.310395 2.003463 2.490728 0.898678 0.334045 -2.395949 -1.376155 -0.063773 -0.566747 -2.898408 -1.635346 1.255746 1.768573 -0.461348 -1.804543 1.887849 -0.399852 2.548835 2.720100 -0.187622 0.041650 0.953745 -2.655185 1.944775 4.184231 -0.482370 1.694238 -1.457449 -0.550022 2.601180 -2.316787 1.192887 1.058774 0.082276 -0.970381 -1.297983 0.121090 1.635510 0.874678 1.787531 -0.219857 1.422458 0.275318 -2.896629 -3.715402 -1.066060 2.887300 0.412036 3.310683 -2.132078 -0.862285 0.008170 2.392305 0.567304 -1.158187 0.516270 -1.871607 1.386025 -3.821919 -3.141893 4.281752 3.562203 2.200751 1.059703 1.878742 2.341485 -1.319400 -0.273678 -0.162160 1.858177 0.301813 -2.418466 -0.200813 -0.080743 -2.198309 -2.900772 -0.755807 0.905982 -0.313715 0.328316 1.385535 -0.071003 -0.687823 -0.906401 0.670068 -1.391864 -1.908763 -0.414786 0.403022 0.140874 0.623446 -1.219849 1.628126 1.410747 -1.268765 0.395905 1.543462 0.504130 0.664073 1.963286 3.404322 -1.037136 1.670094 -0.379626 -0.300382 2.263388 -0.084095 0.472147 0.493415 0.271541 1.360627 0.438740 0.967317 -1.188749 -0.485064 -2.413617 0.789394 1.080672 1.882602 -0.662753 -2.542102 -2.850567 -0.331130 1.368503 2.450446 -0.138920 4.230851 -0.854898 0.427675 -4.359071 0.291904 1.669470 -0.130148 1.117750 0.833432 -1.128439 -2.207324 -0.877476 -1.572100 -1.732467 -1.324237 -1.923188 -1.648869 -1.895429 2.603313 -2.390530 0.265064 1.370002 0.896896 1.379802 -0.202053 0.081697 -2.138137 0.544799 0.389889 0.416630 -1.633470 1.816875 -0.606227 4.427213 -1.790375 1.605720 -0.999291 3.061826 -1.369003 -1.652301 0.101772 3.337678 2.056373 -0.363055 -0.069694 -0.744286 0.009633 1.827427 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__heap_select(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.883163 -0.026276 3.202547 2.010399 -2.257051 -3.350086 -1.518237 -4.927956 2.724246 0.788281 2.721689 0.677081 1.722459 -2.228469 -0.196560 -0.229881 1.185233 -1.133614 -0.172039 -1.562173 -0.611866 3.524964 0.428203 -2.020263 0.361603 -4.027494 2.548670 1.454219 1.261519 2.256246 0.861253 0.115718 -1.445038 1.743028 -0.667550 1.143706 0.958148 0.856589 -1.392467 -0.655063 1.306874 0.960180 2.427729 -0.095414 3.341852 0.395429 1.065346 0.876053 -1.619981 -1.283804 -0.500565 1.752112 -1.716822 1.227733 0.003769 0.359903 0.646302 -2.022351 -0.395919 -1.918227 0.066202 -0.406177 -1.612994 0.230577 -1.748544 0.735072 0.260845 -1.293884 0.418575 -1.259672 1.861372 0.286681 -0.091339 -0.440119 -2.737707 -0.002701 0.369782 0.824013 2.041664 0.319933 -0.631551 -1.015288 -1.657957 -1.795232 1.709578 1.623842 0.486212 1.104279 -0.809738 -0.667414 -0.073730 -0.832882 1.211595 1.406674 -1.829967 -0.738549 0.122698 -0.750595 -1.249572 -1.398919 1.200610 -1.075381 1.172082 1.036293 -1.098389 -0.065113 0.207164 0.037758 -1.805987 -1.365816 0.637462 -1.625929 1.522754 3.383991 -0.896508 -1.003055 -1.593559 -1.083984 0.046867 2.254486 0.414216 0.531844 2.849628 2.846278 0.881510 -2.482930 -1.716982 1.518675 1.934908 1.584944 0.950734 -2.922019 -1.195475 0.610369 -1.037922 -3.641644 -0.963167 0.005576 2.184749 -0.177702 -1.851836 1.427832 -1.091341 2.178540 1.553938 0.375494 0.307161 0.371574 -2.612017 2.216908 3.804779 -0.162143 1.419331 -1.407481 -1.339723 2.114936 -1.502412 0.945561 0.839024 -1.040612 -0.877458 -0.774065 0.755854 1.878893 -0.059191 1.238917 -0.262212 1.513479 -1.205710 -3.272951 -3.991579 0.078310 2.966961 1.170210 4.378875 -2.775237 -1.140583 -0.651491 3.125081 -0.137297 -1.091043 1.100519 -2.022446 1.859948 -2.887196 -3.120496 4.691949 3.991850 1.861540 0.238926 2.432884 1.201609 -1.619324 -0.810459 -0.852495 0.832164 1.446406 -1.976046 0.206062 0.357164 -2.560082 -2.254889 0.169589 1.148419 0.897943 -0.626892 0.767503 -0.470878 -1.039752 -2.139660 1.461147 -1.166108 -0.357301 0.165759 0.228241 -0.017483 1.315252 -0.886284 -0.133249 0.304161 -0.750599 0.846660 1.142102 1.487444 0.571861 2.560271 2.923431 -1.143828 2.463159 0.265866 -0.812347 3.992874 -0.808414 1.087180 0.919367 1.338865 1.133530 0.532746 1.465985 -1.486386 0.183677 -2.580552 0.052062 0.931876 1.841337 -2.726469 -2.106035 -3.801872 -0.752674 0.254185 2.055977 -0.463801 4.395117 -1.085436 0.346677 -4.808664 0.014716 2.071318 -0.165877 1.304073 0.903861 -1.643201 -3.429495 -0.814409 -2.255813 -1.462903 -1.003865 -1.232193 -1.677468 -1.360542 2.528342 -1.492571 0.423878 2.974730 -0.222993 1.163926 -1.577493 0.541287 -1.359911 -0.616962 0.071970 0.063196 -2.110183 2.413060 0.006024 5.168675 -0.544588 1.908186 -0.974241 2.380135 -1.122893 -2.751391 -0.724244 3.020629 1.848371 0.283535 0.255796 0.116869 -0.583018 2.246415 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__sort_heap(int*, int*, __gnu_cxx::__ops::_Iter_less_iter&) = -0.731227 0.389771 2.552347 1.782762 -1.492294 -2.154876 -0.949607 -3.301011 1.576359 0.330014 1.997318 -0.089463 0.954217 -0.881418 -0.286580 -0.258061 0.862577 -0.638137 0.199448 -0.926191 -0.189043 2.272688 0.370536 -1.552878 0.319190 -2.543064 1.988135 1.180841 0.896261 1.479506 0.549073 0.424983 -0.613445 1.216166 -0.462359 0.435875 0.343712 0.833199 -0.955324 -0.230974 0.747922 0.219072 1.457187 0.066762 2.146450 0.678313 1.168518 0.409140 -1.228949 -0.550344 -1.253353 1.465567 -1.433304 0.532746 -0.601075 -0.215159 0.618322 -1.305703 -0.448272 -1.774761 -0.080938 -0.301236 -1.147619 0.203266 -1.547320 0.914345 0.079093 -0.876002 0.192289 -0.256226 1.430271 0.603032 0.181189 0.039379 -2.091962 0.393890 0.280455 0.797620 1.349170 -0.247129 -0.120657 -0.095270 -1.140855 -1.294139 1.358350 0.995322 0.718994 0.510302 -0.135116 -0.385596 -0.330838 -0.469205 0.314649 1.223257 -1.101068 0.177368 -0.194946 -0.472521 -1.123494 -0.944443 0.657170 -0.986779 0.851830 0.959587 -0.903378 0.221152 -0.113156 0.147753 -1.085093 -1.485949 0.215294 -1.424084 0.928131 2.290463 -0.812366 -0.537906 -0.953383 -0.448094 0.120293 1.597236 -0.085534 0.785390 1.550681 2.038336 0.413511 -1.529168 -1.054364 0.970347 1.161286 1.256940 0.836943 -1.787910 -1.068329 -0.163474 -0.454972 -2.368145 -0.573157 0.340517 1.565157 -0.215574 -1.675062 1.148986 -0.884882 1.803106 1.307995 0.527043 0.253444 0.514753 -1.793978 1.604601 2.935730 -0.295260 1.099904 -0.925113 -0.603731 1.630732 -0.993978 0.805460 0.620605 -0.475859 -0.377988 -0.811717 -0.057934 1.303356 0.491485 0.651000 0.596056 0.895329 -0.483982 -2.598030 -2.585793 -0.121269 2.232844 0.421737 2.904796 -1.976875 -0.762858 -0.293879 1.971493 0.047839 -0.651427 0.435692 -1.245559 1.237171 -2.383781 -2.502490 2.815114 2.371799 0.900998 0.432144 1.523629 1.019868 -0.995552 -0.802560 -0.498383 0.957832 0.362507 -1.102040 -0.215229 0.107755 -1.699071 -1.644953 0.205878 0.852729 0.637081 -0.345295 0.437048 -0.317307 -0.889224 -1.494206 0.520856 -1.188320 -0.781153 0.311987 0.015540 0.254022 0.692551 -0.729506 0.176104 0.441174 -0.713399 0.334004 0.683955 0.859606 0.180742 1.701369 2.311838 -0.512568 1.455121 0.444469 -0.731505 3.122239 -0.201411 0.857353 0.576093 0.637167 0.690000 0.445641 1.105420 -1.041598 -0.230408 -2.138738 0.264552 0.561801 1.408600 -1.892031 -1.304271 -2.498223 -0.442259 0.899563 1.370507 -0.328785 3.203539 -0.512893 -0.009495 -3.310035 -0.035768 1.568353 -0.197146 1.116216 0.788731 -1.288411 -2.164648 -0.549332 -1.417466 -0.594746 -1.006359 -1.149869 -1.420469 -0.554314 1.334818 -1.019888 0.334331 1.921716 0.045816 0.669463 -0.788665 0.191643 -0.736152 -0.589779 0.505909 0.305093 -1.595983 1.850303 -0.303323 3.765467 -0.549364 1.139949 -0.901086 1.383301 -0.468873 -1.412452 -0.322182 2.650328 1.158600 0.193491 0.171479 -0.142230 -0.290081 1.614379 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__make_heap(int*, int*, __gnu_cxx::__ops::_Iter_less_iter&) = -1.270829 1.138185 5.855456 3.487689 -2.531344 -3.617404 -2.041040 -6.239836 3.011678 0.377976 3.868611 -0.697453 1.163182 -0.870653 -0.582273 -0.687907 1.165297 -1.767024 0.839605 -1.491513 -0.256778 4.758964 1.188592 -3.331936 0.522322 -6.415324 4.283179 2.289335 2.163827 3.203672 0.700822 0.687873 -0.509427 2.763678 -1.092443 0.186799 0.813795 1.381311 -1.685180 0.126479 1.620178 1.535330 2.778656 0.080110 3.759724 1.886444 2.373988 0.655104 -2.200942 -0.521022 -3.039519 3.586166 -2.836156 1.043082 -0.972240 -0.058650 1.199675 -3.407406 -1.264975 -3.465037 -0.560072 0.119571 -2.158248 0.486959 -3.371287 1.828375 -0.086265 -1.250655 1.021605 0.328951 3.033442 1.592270 0.775564 -0.177078 -4.020157 1.802061 0.390805 2.021166 2.383474 -1.467218 -0.208969 1.136203 -2.135407 -2.759307 2.275457 2.043076 1.348425 -0.035218 0.852157 -0.949351 -1.143526 -1.007152 -0.411727 3.054731 -1.803035 1.127451 -1.085477 -0.988847 -2.503998 -1.564098 0.609252 -2.623713 1.666335 2.426909 -1.919907 0.404002 0.078948 0.419438 -1.458107 -3.336736 0.405034 -2.444437 1.866525 4.660652 -1.577144 -0.807630 -1.547001 -0.648020 -0.051428 3.501531 -0.714565 1.833647 3.171676 4.297525 0.555441 -2.630171 -1.694209 1.649361 2.210025 2.495315 2.160149 -4.020898 -2.252077 -1.135872 0.304440 -4.710693 -0.453285 0.685063 2.850474 -0.462525 -3.627614 2.376137 -1.721944 4.295661 2.670938 0.942871 0.612204 0.799847 -3.380658 3.743299 6.911028 -0.870342 2.112260 -2.808831 -1.582284 3.760691 -2.217305 2.214067 0.971753 -0.016910 -0.105587 -2.383055 -0.214492 2.958103 1.149155 1.295070 2.551515 1.181270 0.353199 -5.385737 -4.978533 -0.091481 3.655473 -0.144957 6.150519 -3.620709 -1.601557 -0.926516 3.962680 0.291464 -0.845562 0.479871 -2.302783 2.096378 -5.059199 -5.266448 5.470638 4.998466 0.877429 0.954489 3.202695 2.500768 -1.545772 -1.838710 -1.178849 2.422599 0.454949 -1.539738 -0.363955 0.060190 -2.986937 -3.046625 0.419135 1.471427 2.056925 -1.173936 -0.497670 -0.264213 -3.109920 -3.176418 1.136435 -3.151024 -2.114978 0.929981 -0.006439 0.237111 1.642820 -1.285478 0.272669 1.362935 -1.585348 0.188180 1.647258 1.929383 0.045411 2.816378 4.344773 -0.107919 3.125221 1.717571 -1.217073 6.819736 -0.481128 1.038877 1.243542 0.816106 0.875514 1.437523 1.580226 -1.886011 -0.885682 -4.599326 2.128050 0.183755 2.459444 -4.080862 -2.658756 -4.503923 -1.486765 2.762427 2.594579 -0.127616 6.946939 -0.426388 -0.425001 -6.889339 -0.370799 3.251785 0.068083 2.654966 1.852977 -2.759917 -4.400203 -1.127308 -2.330556 -0.340435 -2.385218 -3.120533 -3.203699 -1.153612 2.898097 -1.937767 1.375137 4.377588 0.474836 1.025001 -1.227441 -0.100878 -1.775887 -1.605597 1.289441 0.815504 -3.085097 3.751545 -1.349943 7.419295 -2.043499 2.386593 -2.390847 2.227169 -0.463201 -2.047854 -0.330319 5.512988 1.736501 0.396394 0.243304 -0.652166 -1.073437 3.433641 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__bool __gnu_cxx::__ops::_Iter_less_iter::operator()(int*, int*) const = -0.332176 -0.175988 1.151294 0.672963 -0.506279 -1.204492 -0.538024 -1.464913 0.874914 0.401390 1.043323 0.106417 0.689218 -0.509047 -0.125046 -0.106125 0.194888 -0.556652 0.135784 -0.466365 -0.359594 1.601301 0.559189 -0.663215 0.044829 -1.596524 1.243032 0.348560 0.462567 1.445788 0.010568 0.057201 -0.067538 0.658106 -0.358581 0.428825 -0.029911 0.526928 -0.094834 0.082731 0.591606 0.167189 0.844318 0.026459 1.073843 0.610376 0.323708 0.103362 -0.483229 -0.556493 -0.253970 0.071539 -0.987414 0.354430 -0.731908 0.175313 0.226028 -0.532214 -0.337045 -1.171970 0.102933 -0.042391 -0.748345 0.146272 -0.935561 0.393155 -0.239851 -0.644706 -0.043714 -0.351614 0.747201 0.515914 0.012216 -0.254738 -1.171712 0.165028 0.157121 0.214169 0.561911 -0.309104 -0.657538 -0.153543 -0.755335 -0.709789 0.687343 0.519817 0.253134 0.356293 0.069758 -0.298886 -0.131893 0.139454 0.308587 0.760855 -0.172350 0.033537 0.109235 -0.099533 -0.247630 -0.598535 0.268905 -0.622830 0.446894 0.658578 -0.306705 0.048621 0.124642 0.247910 -0.640619 -0.878882 0.109130 -0.607839 0.349001 0.970923 -0.287970 -0.225430 -0.481902 -0.258620 0.332797 0.927495 0.066744 0.234288 1.176815 0.899059 0.201254 -0.990673 -0.464128 0.500545 0.688177 0.474878 0.419000 -0.915418 -0.596898 -0.003834 -0.384541 -1.373820 -0.353126 0.170839 0.622138 -0.580780 -0.842233 1.142383 -0.494689 0.779838 1.126737 0.189261 0.255270 0.109244 -1.006933 0.878432 1.757609 -0.183617 0.526989 -0.857763 -0.884346 1.475382 -0.574805 0.426105 0.166064 -0.218977 -0.276823 -0.542997 0.526136 0.839193 -0.009044 0.710913 0.272709 0.410549 -0.047667 -1.096637 -1.188730 -0.220667 1.242562 0.604804 1.908007 -1.049237 -0.098034 -0.084643 0.817732 0.306616 -0.253788 0.116759 -0.488508 0.553450 -2.232090 -1.422335 1.673776 1.235686 0.933432 0.361691 0.683850 0.671864 0.179460 -0.159346 -0.315546 0.557388 0.400578 -0.502138 -0.090610 0.055726 -0.967134 -0.820843 -0.028570 0.380255 0.356642 -0.560665 -0.241244 -0.476275 -0.600716 -0.862019 0.441365 -0.955748 -0.306415 0.009941 0.031564 -0.123412 0.152687 -0.134342 0.302314 0.103477 -0.215026 0.342404 0.500995 0.398503 0.195608 0.745254 1.454714 -0.716129 0.150682 0.116947 -0.073925 1.638548 -0.387359 0.234956 0.396893 0.768438 0.447063 0.232802 0.625332 -0.427313 0.129692 -0.951159 0.387544 0.707365 0.494298 -0.915936 -0.632547 -1.338253 -0.170409 0.145622 1.356224 0.010796 1.753223 -0.252286 0.378501 -1.676687 0.052605 0.562958 0.085449 0.635973 0.463106 -0.529948 -1.114092 -0.404900 -0.627740 -0.097306 -0.562240 -0.667232 -0.637273 -0.160106 0.171485 -0.600572 0.218254 0.913344 -0.140619 0.487605 -0.407093 0.073221 -0.738548 -0.125658 0.122273 0.210677 -0.596627 0.724598 -0.061722 1.658311 -0.288674 0.844304 -0.438092 1.052633 -0.496472 -0.832667 -0.218602 1.240265 0.557824 -0.009508 0.383105 -0.104645 0.188156 0.678528 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__pop_heap(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter&) = -0.601172 0.124152 2.859417 1.610240 -1.107894 -2.587820 -1.166383 -4.318881 2.428573 0.868840 2.431453 0.020985 1.567847 -1.043538 -0.523489 0.237601 0.827956 -1.278962 0.603537 -1.003238 -0.292382 4.216353 0.584220 -0.909930 0.159984 -3.957668 2.528374 0.843760 1.733625 2.478489 0.624362 0.476737 -0.069768 1.348013 -0.511004 1.033470 -0.134668 1.188914 -0.960735 -0.040714 0.869290 -0.045910 1.794166 0.414559 2.647525 0.641276 1.428658 0.172695 -0.591381 -0.921825 -1.823557 1.510823 -1.954918 0.432113 -1.447188 -0.396199 0.646008 -1.153774 -0.683415 -1.606927 -0.374638 -0.247304 -1.763512 0.425958 -2.082083 1.287688 -0.761119 -0.695023 -0.463984 -0.362860 1.912487 1.193803 0.351246 -0.200396 -3.645927 0.602656 0.001653 0.526537 1.576280 -0.227116 -0.931630 -0.008312 -1.725236 -1.932606 2.371007 1.923813 0.390543 0.572250 -0.272625 -0.662131 -1.248702 -0.173653 0.548366 1.804316 -1.427432 0.391473 0.060325 -0.447544 -0.830293 -1.389666 0.713209 -1.542786 0.854991 0.923857 -0.309226 0.040826 0.128036 -0.020690 -1.288897 -2.025981 0.356276 -1.546036 0.670826 2.927404 -0.904982 -0.428818 -1.422718 -0.330657 0.175485 2.087471 0.210738 0.955604 2.325580 2.108009 0.635893 -1.829535 -1.106044 1.817919 1.466117 1.019230 0.748772 -2.121842 -1.361820 -0.120536 -0.186140 -3.019078 -1.105516 1.035991 1.586582 -0.968332 -1.429348 1.721704 -0.743653 1.969050 2.426398 -0.024234 0.595636 0.674257 -2.136783 2.050808 4.393323 -0.294626 1.155136 -1.990139 -1.073572 3.128281 -1.861623 1.160230 0.388277 -0.063110 -0.920620 -1.220269 0.626668 1.724475 -0.044581 1.024442 0.732980 1.082423 -0.142649 -2.728626 -3.289861 -0.531103 2.854106 0.875719 3.805047 -2.264795 -0.343640 0.004230 1.907525 0.903620 -0.654665 0.766037 -1.644726 1.355983 -4.213592 -3.192556 3.810100 2.889717 1.583902 0.607823 1.591569 1.942056 -0.823729 -1.033498 -0.735290 1.618835 0.575867 -1.847718 -0.293230 0.062780 -2.176684 -2.248160 -0.159790 0.832777 0.844616 -0.392855 0.772141 -1.124904 -1.159523 -1.874066 1.232543 -1.707978 -1.269586 -0.027118 0.083041 -0.336054 0.824324 -0.577169 0.997875 0.800044 -0.644957 0.475108 1.112187 0.468077 -0.017659 1.723693 3.596277 -1.060492 1.170686 0.230518 -0.406389 3.480437 -0.383291 0.591283 0.565223 0.669120 0.894044 0.696236 1.115657 -1.126156 -0.540007 -2.398759 0.952487 0.981153 1.405069 -1.521635 -1.722238 -3.008945 -0.548747 0.872383 2.535842 0.170156 4.109793 -1.012522 0.425380 -4.115527 0.304853 1.727413 0.083131 1.617995 0.902078 -1.323227 -1.427703 -0.880532 -1.513707 -0.773622 -1.314872 -2.067866 -1.819553 -1.096143 1.387044 -1.899360 0.447827 2.058500 0.036640 1.181383 -1.130257 0.122298 -1.921338 0.034057 0.643799 0.399376 -1.541894 1.809138 -0.707973 4.042453 -1.217185 1.600988 -1.007004 2.367422 -1.220234 -2.220008 -0.225861 3.237468 1.293597 -0.174590 0.316956 -0.581431 0.267491 1.663668 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference::type&& std::move(int&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__adjust_heap(int*, long, long, int, __gnu_cxx::__ops::_Iter_less_iter) = -1.734597 0.527294 9.610133 5.573650 -4.173536 -7.468745 -3.370078 -10.090556 5.962901 0.601885 6.113350 0.664560 2.682982 -3.414387 0.160599 0.037392 1.879075 -3.630414 1.182632 -2.794926 -0.533178 9.930769 3.365381 -6.081195 0.257535 -12.176932 6.535619 3.974390 5.018062 6.855389 0.811728 -0.576156 -0.610803 4.955988 -2.231911 0.582435 1.403753 1.417499 -3.819954 0.265375 2.210654 4.457181 5.487332 -0.906124 6.394261 1.840286 5.273183 1.661964 -3.440361 -1.531560 -4.619976 7.250614 -5.146741 2.926640 -0.463303 1.072704 1.523929 -5.812847 -2.429397 -6.017629 -1.193358 1.511175 -3.989290 0.611341 -5.913934 2.141748 -0.963843 -2.415628 2.478421 1.194854 5.343260 3.196548 1.804740 -1.698303 -7.356412 2.998542 0.028908 4.173136 4.109106 -2.446504 -1.249022 1.011133 -3.081772 -4.456581 3.345301 2.620853 1.251771 -0.243398 1.028062 -1.752489 -2.001701 -1.635731 -0.904761 4.000937 -3.125858 1.735536 -1.455947 -0.995956 -3.172519 -2.874013 0.173957 -4.695120 2.262353 4.035931 -0.702102 -0.033518 -0.577527 0.595308 -3.380710 -5.408449 1.350852 -2.304893 1.524620 8.041368 -3.034898 -0.576008 -1.943600 -0.219245 -0.829729 6.625365 -0.529980 3.193560 6.146504 7.826897 0.892534 -5.028813 -2.121796 2.342595 5.384956 4.609927 4.509155 -6.818966 -4.029690 -1.263365 0.904290 -8.987171 0.124029 2.644548 4.618337 0.456077 -6.155392 3.254722 -2.506763 8.416390 4.773921 0.795946 1.554399 0.216998 -5.493732 7.579872 12.654753 -2.040726 4.017519 -5.448905 -3.651965 7.736984 -4.869764 3.837024 1.044095 0.091900 0.057066 -4.166077 0.443401 5.671413 2.081683 3.183376 3.970467 1.912741 1.016453 -9.871846 -8.312309 0.222154 5.246158 -0.188423 11.912657 -5.578989 -3.326603 -1.838228 5.448901 -0.432756 -1.779931 0.829063 -4.818891 3.569066 -10.707401 -8.995518 12.123798 9.742988 2.029213 1.761535 6.021208 5.714292 -2.812166 -2.477976 -2.091944 3.615688 1.660566 -4.163725 -0.088173 0.759274 -6.223610 -4.948960 0.867964 2.188609 3.761918 -2.287789 -2.495943 -0.421575 -7.147469 -4.949306 3.414224 -6.132623 -3.017012 1.073208 0.212677 0.606266 3.271278 -1.594484 0.269976 2.607157 -3.320757 -0.233432 2.587445 5.065708 1.679195 5.114111 7.880328 0.603913 6.832656 3.509466 -2.573427 11.819624 -1.854842 0.806165 1.934643 2.556755 1.412286 2.695531 2.292242 -3.115455 -1.611435 -7.672619 4.381270 0.982236 4.080371 -6.865549 -5.359748 -7.342573 -3.228950 4.437000 5.040355 -0.467182 12.150118 -1.949042 -0.082775 -13.101047 -0.621022 4.729039 1.346315 4.918050 3.660265 -4.381454 -7.980146 -2.659113 -3.423636 -0.181560 -3.821110 -5.837488 -4.330561 -3.121686 5.883180 -4.432225 2.583237 7.984071 -0.043282 3.424247 -1.792501 -0.235690 -3.947949 -1.775571 1.419761 1.976468 -5.038504 6.629491 -2.258901 13.353970 -3.693402 4.332862 -4.889961 3.752655 -1.058234 -3.660936 -0.814141 8.696970 3.785380 0.331603 1.360527 -0.679577 -2.176563 6.131238 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference<__gnu_cxx::__ops::_Iter_less_iter&>::type&& std::move<__gnu_cxx::__ops::_Iter_less_iter&>(__gnu_cxx::__ops::_Iter_less_iter&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::_Iter_less_val::_Iter_less_val(__gnu_cxx::__ops::_Iter_less_iter) = -0.072054 0.082444 0.452949 -0.044829 -0.057363 -0.486006 -0.194693 -0.742476 0.240914 0.264374 0.520552 -0.129231 0.398832 -0.071432 -0.033002 -0.005541 0.091015 -0.212192 0.153089 -0.171999 -0.257090 0.426745 -0.061844 0.135377 0.060159 -0.556433 0.546386 0.088173 0.030951 0.480310 0.097404 0.080684 -0.084503 0.202788 -0.063553 0.258932 0.151327 0.307280 0.130489 0.097451 0.135640 -0.000352 0.213334 0.140384 0.372797 0.473400 -0.146693 0.080608 -0.037404 -0.277942 0.083374 -0.152543 -0.321719 0.054751 -0.309715 -0.080900 0.138508 -0.146799 0.010133 -0.257826 0.088826 -0.151590 -0.294293 0.124969 -0.303814 0.126481 -0.123718 -0.232267 -0.119384 -0.200546 0.230093 0.059644 -0.099236 0.115098 -0.438157 0.000969 0.128595 -0.093925 0.266632 -0.226660 -0.259825 -0.066365 -0.395427 -0.406291 0.451598 0.393755 0.208023 0.191358 -0.133030 -0.067490 -0.085064 0.040055 0.306786 0.415250 0.073915 -0.092641 0.078260 -0.101391 -0.172229 -0.434841 0.232124 -0.238420 0.193181 0.210900 -0.133383 -0.105896 -0.031502 0.129336 -0.228751 -0.294020 0.106312 -0.403262 0.250562 0.344228 -0.081913 -0.143626 -0.327592 -0.275898 0.304935 0.328874 0.171562 -0.061955 0.470304 0.239118 0.097551 -0.374899 -0.339807 0.230900 0.163650 0.101490 0.035792 -0.533990 -0.188438 0.103727 -0.416063 -0.514058 -0.228995 -0.114157 0.175961 -0.453785 -0.238949 0.607237 -0.241042 -0.022663 0.484245 0.146831 0.043346 0.080645 -0.332540 0.164215 0.451394 -0.101110 0.201357 -0.239633 -0.292000 0.299131 -0.095186 0.054033 0.180749 -0.127810 -0.225160 -0.118384 0.233169 0.326225 0.010264 0.376857 0.032917 0.206183 -0.201277 -0.187896 -0.457676 -0.037640 0.633136 0.139646 0.574007 -0.442163 0.008209 0.076306 0.537080 0.100353 -0.138860 0.060847 -0.081087 0.200277 -0.562570 -0.437266 0.454972 0.299075 0.469815 -0.037167 0.085073 0.199052 -0.069955 -0.057118 -0.163860 0.220480 -0.001405 -0.356611 -0.126947 -0.002709 -0.347885 -0.176674 -0.147960 0.192490 0.095718 -0.072843 0.072009 -0.233950 -0.053392 -0.298998 0.139366 -0.163268 -0.085681 -0.066206 0.000000 -0.101030 0.022966 -0.128607 0.130270 0.131650 -0.124250 0.167451 0.317953 0.012676 0.027709 0.570397 0.343614 -0.380005 -0.166717 -0.127037 0.062918 0.349336 -0.037950 0.121713 0.134401 0.361311 0.191819 0.083223 0.362033 -0.162318 -0.163113 -0.414719 -0.102003 0.318024 0.125463 0.066837 -0.156240 -0.631822 -0.005590 -0.107171 0.786889 0.044710 0.605315 0.072382 0.262741 -0.287450 0.082571 0.086298 -0.183995 0.104585 0.098517 -0.179368 -0.216643 -0.133898 -0.393093 -0.508985 -0.116266 -0.108766 -0.254655 -0.097828 -0.057967 -0.134713 -0.027171 0.150311 0.111633 0.019526 -0.100347 0.044369 -0.323224 0.103343 0.268488 -0.125993 -0.264772 0.159730 0.108198 0.610006 -0.077917 0.362490 -0.048781 0.336227 -0.173012 -0.273416 -0.129608 0.428251 0.242851 0.058062 0.084292 0.043467 0.186256 0.265955 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__push_heap(int*, long, long, int, __gnu_cxx::__ops::_Iter_less_val&) = -1.186778 0.389534 4.949498 3.275249 -3.123962 -4.853422 -2.044714 -6.181277 3.321077 0.405412 3.524039 0.536851 1.593806 -2.291924 0.046258 0.332596 1.233510 -1.732116 0.542318 -1.762925 -1.170963 5.677331 1.676835 -3.325178 0.168519 -5.933054 4.102606 2.297431 2.371993 3.816543 0.757544 -0.201715 -0.703368 2.963760 -1.141434 0.719071 0.680324 1.225332 -1.959746 0.056710 1.449163 1.381441 3.553685 -0.455871 3.938376 1.177753 2.991665 1.131605 -2.463936 -0.935952 -2.564696 3.882142 -3.003637 1.919456 -0.468338 0.100357 1.382667 -2.874711 -1.172747 -3.471792 -0.914944 -0.376266 -2.660384 0.200899 -3.293040 1.145300 -0.509456 -1.827147 0.914084 0.668600 2.992276 1.419310 0.614166 -0.651638 -4.459824 1.260434 0.469588 2.267491 2.639263 -0.785819 -0.509068 -0.052589 -2.245247 -2.858216 2.328244 1.240117 1.022617 0.362019 -0.067568 -0.686064 -1.120591 -0.779576 0.315503 2.468653 -1.583494 0.668247 -0.245619 -0.786924 -2.384349 -2.345447 0.665413 -2.393200 1.413796 1.833729 -0.712433 -0.254989 -0.567019 0.218660 -2.332590 -3.253859 0.879672 -2.107715 0.913074 4.374886 -1.325909 -0.418213 -1.044705 -0.571802 -0.176579 3.591852 0.287107 1.594122 3.483778 4.489033 0.692024 -3.025863 -1.770580 1.198704 3.053331 2.481692 2.107971 -3.853269 -2.397107 -0.168344 -0.087235 -5.100001 -0.419341 1.824460 2.752067 0.005380 -2.924917 2.135920 -1.555922 4.345993 2.599509 0.673937 0.636992 0.170500 -3.493008 4.109961 6.831765 -0.888825 2.354271 -2.602946 -1.951334 4.585809 -2.586513 1.943242 0.844303 -0.587567 -0.530818 -1.925725 0.274067 3.171496 1.171553 1.424133 1.980568 1.321320 -0.320289 -5.343218 -5.057219 0.456980 4.144820 0.499415 6.615191 -3.497654 -1.759367 -0.685448 3.280853 -0.177143 -1.243300 0.683947 -2.669928 2.426771 -6.096447 -5.053748 7.186558 5.077588 1.586920 0.886889 3.242422 3.164324 -1.756556 -1.871660 -1.312125 1.911630 1.151503 -2.609556 -0.324010 0.489191 -3.793146 -2.704065 0.485735 1.403519 1.925175 -1.142180 -0.644733 -0.656433 -3.247148 -2.711420 1.588934 -2.957190 -1.605098 0.878976 0.202801 0.234823 1.843588 -0.622222 0.319679 0.785781 -1.897498 0.148304 1.325128 2.688039 0.937341 3.664116 4.765737 -0.422594 3.919818 1.598155 -1.351959 6.548327 -1.208668 0.949728 1.394421 1.806875 1.228562 1.261603 2.113479 -1.888507 -0.546163 -4.462344 1.786133 1.057316 2.517529 -4.260231 -3.009824 -5.017682 -1.465701 2.207193 3.104307 -0.765144 6.713978 -1.151826 0.070419 -7.443718 -0.087306 2.572323 0.381573 2.729027 1.840224 -2.591177 -4.292429 -1.599361 -2.330569 -0.669901 -2.127902 -2.533625 -2.502979 -1.405545 2.713562 -2.767140 1.285513 4.396737 -0.404508 1.801855 -1.530323 0.084567 -2.334256 -0.968761 1.309986 0.570039 -2.909673 3.876293 -0.853229 8.222325 -1.582254 2.547609 -2.304615 2.523500 -0.695440 -2.389604 -0.521936 4.892857 2.276756 0.114857 0.902519 0.287571 -0.852962 3.598145 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__bool __gnu_cxx::__ops::_Iter_less_val::operator()(int*, int&) const = -0.332176 -0.175988 1.151294 0.672963 -0.506279 -1.204492 -0.538024 -1.464913 0.874914 0.401390 1.043323 0.106417 0.689218 -0.509047 -0.125046 -0.106125 0.194888 -0.556652 0.135784 -0.466365 -0.359594 1.601301 0.559189 -0.663215 0.044829 -1.596524 1.243032 0.348560 0.462567 1.445788 0.010568 0.057201 -0.067538 0.658106 -0.358581 0.428825 -0.029911 0.526928 -0.094834 0.082731 0.591606 0.167189 0.844318 0.026459 1.073843 0.610376 0.323708 0.103362 -0.483229 -0.556493 -0.253970 0.071539 -0.987414 0.354430 -0.731908 0.175313 0.226028 -0.532214 -0.337045 -1.171970 0.102933 -0.042391 -0.748345 0.146272 -0.935561 0.393155 -0.239851 -0.644706 -0.043714 -0.351614 0.747201 0.515914 0.012216 -0.254738 -1.171712 0.165028 0.157121 0.214169 0.561911 -0.309104 -0.657538 -0.153543 -0.755335 -0.709789 0.687343 0.519817 0.253134 0.356293 0.069758 -0.298886 -0.131893 0.139454 0.308587 0.760855 -0.172350 0.033537 0.109235 -0.099533 -0.247630 -0.598535 0.268905 -0.622830 0.446894 0.658578 -0.306705 0.048621 0.124642 0.247910 -0.640619 -0.878882 0.109130 -0.607839 0.349001 0.970923 -0.287970 -0.225430 -0.481902 -0.258620 0.332797 0.927495 0.066744 0.234288 1.176815 0.899059 0.201254 -0.990673 -0.464128 0.500545 0.688177 0.474878 0.419000 -0.915418 -0.596898 -0.003834 -0.384541 -1.373820 -0.353126 0.170839 0.622138 -0.580780 -0.842233 1.142383 -0.494689 0.779838 1.126737 0.189261 0.255270 0.109244 -1.006933 0.878432 1.757609 -0.183617 0.526989 -0.857763 -0.884346 1.475382 -0.574805 0.426105 0.166064 -0.218977 -0.276823 -0.542997 0.526136 0.839193 -0.009044 0.710913 0.272709 0.410549 -0.047667 -1.096637 -1.188730 -0.220667 1.242562 0.604804 1.908007 -1.049237 -0.098034 -0.084643 0.817732 0.306616 -0.253788 0.116759 -0.488508 0.553450 -2.232090 -1.422335 1.673776 1.235686 0.933432 0.361691 0.683850 0.671864 0.179460 -0.159346 -0.315546 0.557388 0.400578 -0.502138 -0.090610 0.055726 -0.967134 -0.820843 -0.028570 0.380255 0.356642 -0.560665 -0.241244 -0.476275 -0.600716 -0.862019 0.441365 -0.955748 -0.306415 0.009941 0.031564 -0.123412 0.152687 -0.134342 0.302314 0.103477 -0.215026 0.342404 0.500995 0.398503 0.195608 0.745254 1.454714 -0.716129 0.150682 0.116947 -0.073925 1.638548 -0.387359 0.234956 0.396893 0.768438 0.447063 0.232802 0.625332 -0.427313 0.129692 -0.951159 0.387544 0.707365 0.494298 -0.915936 -0.632547 -1.338253 -0.170409 0.145622 1.356224 0.010796 1.753223 -0.252286 0.378501 -1.676687 0.052605 0.562958 0.085449 0.635973 0.463106 -0.529948 -1.114092 -0.404900 -0.627740 -0.097306 -0.562240 -0.667232 -0.637273 -0.160106 0.171485 -0.600572 0.218254 0.913344 -0.140619 0.487605 -0.407093 0.073221 -0.738548 -0.125658 0.122273 0.210677 -0.596627 0.724598 -0.061722 1.658311 -0.288674 0.844304 -0.438092 1.052633 -0.496472 -0.832667 -0.218602 1.240265 0.557824 -0.009508 0.383105 -0.104645 0.188156 0.678528 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__move_median_to_first(int*, int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.340282 0.348884 6.319203 3.909137 -3.975506 -5.418346 -2.737236 -9.097609 5.742116 1.024579 4.164630 1.704472 2.777961 -4.669344 -0.543226 -0.694793 2.309441 -1.653145 -0.694574 -2.642540 0.296931 6.500349 0.247013 -4.606436 0.855299 -8.406083 3.629710 2.839345 3.166163 3.299459 1.682443 0.096841 -3.122251 3.240920 -1.448526 1.276571 2.698022 0.613138 -3.980171 -1.911169 1.953734 3.657490 4.260167 -0.182025 6.128723 -0.415072 1.512494 1.830957 -2.416896 -1.806678 -0.750121 4.717832 -1.739782 2.818063 1.764913 1.237752 0.767832 -4.350672 -0.375947 -2.668982 0.177936 0.375858 -1.974763 0.142408 -2.686441 0.856209 1.376243 -1.546587 1.336249 -2.661658 3.271059 -0.069832 0.344094 -1.718215 -4.904909 0.222020 0.175235 2.044115 3.952176 1.647524 -0.571720 -1.792580 -2.243188 -3.098378 2.338019 3.605443 0.046941 2.068029 -1.503021 -2.048810 -0.134392 -2.692257 1.801005 2.116359 -4.461078 -1.520514 -0.430194 -1.308387 -1.629117 -1.566050 1.943838 -1.606881 1.725893 1.253095 -1.331773 0.030502 1.449925 -0.071190 -2.442184 -1.110657 2.102754 -1.986618 2.566390 7.055004 -1.258536 -2.098494 -2.792764 -1.871382 -1.395251 4.440339 0.072379 1.042442 4.371498 5.379028 1.919241 -3.857153 -2.688734 3.535544 3.396786 2.959991 1.807712 -5.881756 -1.521119 1.253094 -0.871818 -6.377944 -1.432226 -0.362580 4.278009 0.688965 -3.133363 0.984844 -1.628401 4.442131 1.340308 -0.133106 0.590418 0.533480 -4.496868 4.200591 7.202584 -0.015859 2.050663 -2.501423 -1.906349 2.429674 -2.839181 2.246458 0.714877 -1.693426 -0.820478 -1.184077 1.432245 3.269408 -0.534947 1.625981 -1.011512 2.587113 -2.490167 -6.370452 -7.862140 0.142040 3.916249 1.278703 7.907614 -4.255096 -2.993452 -2.434900 6.340168 -0.908667 -1.466612 2.686264 -4.453032 3.375305 -3.122766 -5.076258 8.855407 8.660545 2.485549 -0.306300 5.186707 1.806083 -3.677125 -2.036175 -1.243102 0.682235 3.151989 -3.497756 0.849275 0.642707 -4.247840 -4.388698 0.847595 1.614836 1.973165 -0.272011 1.871467 -0.053702 -2.213632 -4.110639 3.072243 -1.538406 -0.148370 0.588760 0.708721 -0.372441 3.507452 -2.179397 -1.291146 1.409702 -1.095930 1.261179 1.704928 2.921507 0.761975 3.534030 4.411902 -0.550445 6.504595 1.197307 -2.126543 8.070335 -1.530462 1.777350 1.443646 1.055923 1.728367 1.280593 1.174265 -2.822740 0.648360 -4.780598 0.419839 0.307303 3.381342 -5.781224 -4.668421 -5.896291 -1.947078 0.391719 1.709965 -0.630409 8.080489 -2.570312 -0.212398 -9.581869 -0.115945 4.778019 -0.082077 2.179061 1.648957 -3.158704 -7.469315 -1.028714 -4.059229 -2.818496 -1.939220 -3.138611 -2.840302 -3.463290 6.893620 -2.681342 1.390445 6.895901 -0.156428 2.278492 -3.934518 1.094460 -2.528423 -1.710802 -1.070835 -0.111743 -3.995466 4.061721 -0.470383 9.015319 -1.707186 3.267916 -2.041012 4.075330 -2.191271 -5.634520 -1.276654 5.192232 2.948234 0.775394 -0.060241 0.019476 -2.535551 4.259520 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__unguarded_partition(int*, int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.335758 0.150289 4.043234 2.972681 -3.265972 -4.496643 -1.925962 -6.168073 3.297676 0.700557 3.545709 0.903919 2.086641 -3.014680 0.024685 -0.235051 1.776384 -1.153909 -0.369272 -1.989488 -0.900751 4.198656 0.651084 -2.891456 0.499055 -4.349229 2.791478 2.159772 1.492034 2.345831 1.146585 0.024266 -1.991527 2.219885 -0.914756 1.326819 1.235377 1.011527 -2.079293 -1.121621 1.478431 0.942252 3.220906 -0.351364 4.153986 0.126329 1.933807 1.193170 -2.632730 -1.512143 -0.954607 3.016809 -2.173443 1.707345 0.526270 0.301327 1.111788 -2.518897 -0.484998 -2.667523 -0.074631 -0.711834 -2.004738 0.093319 -2.046363 0.871744 0.530023 -1.722970 0.844856 -1.212757 2.394116 0.247673 -0.032244 -0.327006 -3.176664 0.010356 0.585562 1.341566 2.646562 0.729933 -0.245876 -1.374734 -1.883574 -2.192560 2.208131 1.388099 0.869934 1.367456 -1.374974 -0.539499 0.119953 -1.245439 1.390344 1.434093 -2.534823 -0.794142 0.292080 -1.046184 -1.963981 -1.863166 1.380464 -1.317756 1.376409 1.384163 -1.355284 -0.127692 -0.420189 -0.009978 -2.545509 -1.921217 0.855343 -2.062387 1.505586 4.132414 -1.471467 -1.100470 -1.595063 -1.179582 -0.145571 2.747689 0.660683 0.909377 3.218165 3.798570 1.111277 -3.043989 -2.073395 1.499461 2.772688 2.242782 1.308571 -3.465714 -1.609726 0.908761 -1.402483 -4.701776 -1.136988 0.550647 3.023834 0.650053 -2.659832 1.398621 -1.322935 3.028404 1.577712 0.755524 0.292133 0.426895 -3.256349 2.843000 4.415532 -0.418096 2.140284 -1.082131 -1.447511 2.461543 -1.976447 1.124714 1.251247 -1.468815 -0.904100 -0.919822 0.358208 2.393901 0.473037 1.294077 -0.432925 1.890244 -1.819665 -4.589752 -5.242410 0.404560 3.781567 1.273843 5.333359 -3.460302 -1.929111 -0.721928 3.971347 -0.866496 -1.730011 1.313665 -2.659561 2.503356 -3.360753 -3.971364 6.235078 4.985204 2.002093 0.353103 3.301899 1.560975 -2.650422 -1.197150 -1.200915 0.960429 1.785867 -2.669311 0.140269 0.525297 -3.412459 -2.636006 0.330484 1.453587 0.874592 -0.632160 1.105608 -0.325801 -1.396959 -2.225024 1.626919 -1.379421 -0.454676 0.302616 0.196936 0.399145 1.837636 -1.171138 -0.486161 0.197724 -1.474371 0.739177 1.078568 2.343994 1.100747 3.903593 3.793906 -1.116465 3.812490 0.479718 -1.505155 5.093142 -1.150396 1.448345 0.959649 1.859522 1.419544 0.664351 2.160339 -1.931116 -0.088678 -3.427237 -0.223621 1.110680 2.526292 -3.787659 -2.780575 -4.934476 -0.987449 0.670239 2.231651 -1.045203 5.501134 -1.548767 0.159579 -6.447315 -0.055493 2.624657 -0.333177 1.685400 1.131799 -2.166121 -4.731004 -1.104882 -2.876566 -1.803029 -1.125735 -1.369019 -1.916949 -1.940863 3.532182 -2.069892 0.528635 3.723002 -0.338746 1.636051 -1.607544 0.630763 -1.405508 -0.802584 0.340553 0.102872 -2.838667 3.569003 0.140556 7.259215 -0.516478 2.199233 -1.458983 2.615794 -1.092839 -3.252040 -0.924258 3.844105 2.807037 0.401952 0.287446 0.580091 -1.131696 3.035869 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = 0.019261 0.125719 0.697693 0.244655 -0.381549 -0.984008 -0.276483 -1.248286 0.564040 0.266194 0.626788 0.049101 0.574514 -0.323231 -0.099420 0.148194 0.278019 -0.156773 0.089152 -0.385521 -0.372968 0.917838 -0.038014 -0.078054 0.089555 -0.851121 0.740324 0.278934 0.380295 0.729703 0.227071 0.041829 -0.206766 0.358759 -0.144308 0.293417 0.045703 0.355723 -0.296691 0.069280 0.150895 -0.080367 0.570264 0.148065 0.638411 0.372838 0.164193 0.221798 -0.130527 -0.342256 -0.185363 0.166384 -0.443518 0.230393 -0.420491 -0.123336 0.177086 -0.170645 0.003879 -0.254610 -0.006969 -0.208904 -0.508496 0.113550 -0.585596 0.165317 -0.285387 -0.480311 -0.199323 -0.247974 0.414378 0.144886 -0.098490 -0.062659 -1.005884 -0.058101 0.118337 0.107930 0.514022 -0.035010 -0.232402 -0.243152 -0.602462 -0.552413 0.636262 0.517029 0.204931 0.350966 -0.317020 -0.271141 -0.162805 0.021075 0.491179 0.423509 -0.203241 -0.044859 -0.071881 -0.120600 -0.283979 -0.733223 0.340108 -0.251372 0.298637 0.012630 -0.042943 -0.058567 0.040137 0.055102 -0.345141 -0.449617 0.128577 -0.488479 0.232890 0.819651 -0.106058 -0.275010 -0.434233 -0.293413 0.113751 0.531650 0.265750 0.002177 0.669725 0.490561 0.224084 -0.620846 -0.453686 0.377824 0.287823 0.297428 0.205957 -0.591646 -0.359326 0.169968 -0.424327 -0.942869 -0.263090 0.095463 0.392934 -0.446189 -0.218060 0.547277 -0.372714 0.203725 0.594690 0.112581 0.193596 0.052432 -0.555434 0.398552 0.910900 -0.089846 0.348335 -0.446670 -0.358583 0.621490 -0.252872 0.159254 0.104284 -0.305551 -0.334600 -0.113567 0.302476 0.494728 -0.058453 0.315990 0.096854 0.340881 -0.428232 -0.563448 -0.798278 -0.023659 0.952569 0.310827 0.943238 -0.682359 -0.051074 0.042563 0.617008 0.118244 -0.200318 0.261984 -0.393327 0.418839 -1.010854 -0.749103 0.996781 0.682023 0.614780 -0.031938 0.250908 0.387456 -0.280779 -0.291249 -0.220845 0.234062 0.158551 -0.747385 -0.203001 0.054048 -0.665510 -0.345722 -0.015209 0.318789 0.228489 -0.051821 0.315055 -0.459794 -0.178918 -0.614173 0.371947 -0.308987 -0.062193 0.040084 0.024373 -0.136545 0.175220 -0.147813 0.146009 0.156283 -0.151109 0.263876 0.282927 0.171602 0.026646 0.779734 0.747426 -0.448300 0.221643 -0.060247 -0.141214 0.866095 -0.180152 0.307038 0.196132 0.489885 0.215818 0.149598 0.497809 -0.330753 -0.148299 -0.633186 -0.171881 0.463158 0.312173 -0.131768 -0.385846 -0.975607 -0.049484 -0.130124 0.942045 -0.038959 0.968685 -0.227964 0.324744 -0.814748 0.149707 0.272765 -0.127783 0.369493 0.230780 -0.369245 -0.297770 -0.235069 -0.606610 -0.536130 -0.219382 -0.312140 -0.389353 -0.149318 0.090199 -0.392292 -0.012523 0.435696 -0.108507 0.283689 -0.429776 0.123886 -0.462734 0.081608 0.390689 -0.071299 -0.446285 0.375543 0.075442 1.155655 0.017409 0.520990 -0.124459 0.498121 -0.256790 -0.665467 -0.264895 0.771080 0.395724 0.049391 0.149823 0.019710 0.254746 0.419296 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(int&, int&) = -0.222781 -0.119694 1.555195 1.160486 -0.873651 -1.969836 -0.706187 -2.615710 1.687661 0.531547 1.378988 0.411511 1.186373 -1.119635 -0.248632 0.202125 0.574424 -0.541172 0.138050 -0.708962 -0.500949 2.930094 0.463227 -0.780621 0.061569 -2.273996 1.538413 0.542205 1.225630 1.810284 0.324261 0.035531 -0.169785 0.836459 -0.481234 0.637669 -0.262029 0.671609 -0.821926 -0.206385 0.606121 -0.082405 1.423585 0.144879 1.552034 0.123042 0.915578 0.189335 -0.431925 -0.714207 -0.877368 0.830294 -1.146669 0.620969 -0.807404 -0.085668 0.462310 -0.471919 -0.302616 -0.981604 -0.133739 -0.191144 -1.182932 0.111295 -1.339018 0.517744 -0.616905 -0.751920 -0.255337 -0.440308 1.130381 0.647627 0.125903 -0.585108 -2.430132 0.135970 0.027871 0.356418 1.048365 0.343909 -0.634994 -0.457839 -1.171476 -1.139895 1.435169 0.919027 0.102492 0.619936 -0.475433 -0.627147 -0.512228 0.027424 0.655516 0.844158 -0.863661 0.158328 0.029162 -0.169773 -0.260882 -1.146057 0.447033 -0.838535 0.471506 0.392018 0.022925 0.024293 0.274641 0.023493 -0.844559 -1.221358 0.330615 -0.757618 0.115915 1.868931 -0.401189 -0.415260 -0.737941 -0.203223 -0.040402 1.306158 0.377105 0.459468 1.547814 1.242292 0.544818 -1.318088 -0.603637 1.107882 1.000643 0.646880 0.459174 -1.157418 -0.836304 0.251993 -0.280971 -2.173428 -0.668338 0.827148 1.040256 -0.504749 -0.760546 1.042331 -0.489995 1.093421 1.426812 -0.067491 0.510759 0.226809 -1.338035 1.272117 2.641557 -0.179826 0.708474 -1.216635 -1.013561 2.146634 -1.065788 0.619543 -0.034147 -0.258567 -0.509109 -0.638490 0.732031 1.204023 -0.285790 0.610751 0.200736 0.692729 -0.466460 -1.748669 -2.090998 -0.200311 1.849547 0.933013 2.602777 -1.382888 -0.218542 0.020797 1.022318 0.349109 -0.438789 0.606843 -1.157710 0.948848 -3.080179 -2.005888 2.815544 1.832739 1.166799 0.276760 0.990707 1.194655 -0.383125 -0.662837 -0.623059 0.741214 0.792996 -1.360407 -0.155391 0.117626 -1.585166 -1.218967 0.091769 0.448818 0.543258 -0.450848 0.434036 -1.016862 -0.775153 -1.239550 1.109608 -1.114256 -0.374810 -0.050132 0.066085 -0.309010 0.625509 -0.155372 0.443494 0.237949 -0.325842 0.337540 0.460554 0.512661 0.142066 1.268203 2.404373 -0.846303 0.838910 0.137115 -0.418803 2.461766 -0.666991 0.308381 0.332758 0.859072 0.602121 0.452254 0.836813 -0.714634 -0.142842 -1.433649 0.353682 0.886789 0.790030 -1.209800 -1.090888 -2.020046 -0.344331 0.084705 1.756699 0.011422 2.551448 -1.009247 0.426916 -2.731594 0.246985 1.003913 0.141955 1.145019 0.564626 -0.801546 -1.019564 -0.644617 -0.979530 -0.335797 -0.739179 -1.234851 -0.927283 -0.709708 0.735874 -1.324128 0.328154 1.395124 -0.368396 1.014837 -0.997410 0.162301 -1.291094 0.132119 0.222382 0.237208 -0.919358 1.129657 -0.234092 2.633297 -0.464795 1.103862 -0.671228 1.560642 -0.960453 -1.720704 -0.346814 1.803605 0.978785 -0.101943 0.413813 -0.077720 0.176701 1.011373 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__insertion_sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -1.382092 -0.156575 5.110387 2.493944 -2.867658 -4.528234 -2.307008 -7.715863 4.179465 1.513957 4.573799 0.672584 2.582247 -3.131012 -0.140798 -0.125929 1.613819 -2.201187 0.027847 -2.071568 -0.533589 5.533901 0.676829 -2.385876 0.519580 -6.495827 3.302300 2.001751 2.051645 3.110043 1.099227 0.036099 -1.827800 2.479051 -1.018171 1.977954 1.709630 1.320104 -1.879623 -0.988922 1.721347 1.506380 3.375926 -0.406848 5.181858 0.238010 1.705551 0.951229 -2.355204 -1.961233 -0.681094 3.046082 -2.554927 1.714275 0.278017 0.364814 0.612585 -3.126733 -0.852742 -2.808965 0.020470 -0.378096 -2.325164 0.377156 -2.292324 1.188981 0.550010 -1.497417 0.862661 -1.880652 2.832123 0.563933 0.029670 -0.299661 -4.101375 0.392544 0.714845 0.922859 2.662722 0.247830 -0.843146 -1.169312 -2.298881 -2.804366 2.906059 3.037588 0.709373 1.210214 -1.469701 -0.467165 -0.277846 -1.258006 1.471604 2.411395 -3.064405 -1.094963 0.362903 -1.347308 -1.954188 -2.023181 1.525200 -2.078262 1.732266 1.804364 -1.529236 -0.001788 0.151821 0.314864 -2.693957 -2.239077 0.941512 -2.254925 2.260818 4.952326 -1.671927 -1.260818 -2.523690 -1.414997 0.067372 3.103062 0.486692 0.973198 4.560935 4.129081 1.567320 -3.683198 -2.523283 2.437814 3.161997 2.275409 1.148098 -4.563070 -1.626661 0.819063 -1.518883 -5.653234 -1.806998 0.093615 3.268790 -0.406676 -2.771202 2.027829 -1.338471 3.697658 2.694604 0.283746 0.354026 0.883540 -3.813523 3.233039 5.825068 -0.460453 2.207723 -2.265499 -1.953295 3.016416 -2.499886 1.705268 1.451599 -0.947878 -1.191631 -1.706106 1.013625 3.008110 0.114908 2.189380 -0.864847 2.191078 -1.396055 -4.838343 -6.384432 -0.205000 4.045561 1.491795 6.578607 -3.985205 -2.190491 -0.934810 4.814192 -0.159670 -1.845348 1.658483 -3.172401 2.655227 -4.246921 -4.838923 7.042814 6.485961 2.942663 0.485560 4.049539 1.874791 -2.871730 -1.073914 -1.306095 1.651501 2.115524 -3.445071 0.193363 0.535343 -3.813107 -3.377060 -0.267776 1.459202 0.997232 -0.559121 1.382845 -0.212126 -1.782221 -2.585588 2.364519 -1.822215 -0.927837 -0.196299 0.441553 0.054489 2.172125 -1.783958 -0.058224 0.748415 -1.614197 1.171865 1.982105 2.106371 0.906493 3.917920 4.621421 -1.528556 3.940075 0.118399 -1.122542 5.279263 -1.218736 1.091122 1.191344 1.519028 1.474683 1.019917 2.087967 -2.147199 -0.145646 -3.855683 0.449008 1.096888 2.697410 -3.459941 -3.480614 -5.486397 -1.244740 0.685880 3.218907 -0.328861 6.825013 -1.527038 0.717571 -7.623176 -0.066155 2.784342 -0.156301 1.995578 1.175219 -2.449073 -5.306289 -1.146385 -3.308765 -2.748036 -1.365347 -2.168384 -2.614782 -2.861449 4.416260 -2.372340 0.678803 4.138177 0.180698 2.024612 -1.844017 0.589405 -2.319450 -0.520455 0.368529 0.130690 -3.085557 3.432909 -0.055965 8.146276 -1.420698 2.843608 -1.661345 3.585254 -1.685461 -3.944674 -0.860979 4.510544 3.145272 0.549944 -0.126565 -0.126706 -1.282908 3.452417 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__unguarded_insertion_sort(int*, int*, __gnu_cxx::__ops::_Iter_less_iter) = -0.419691 0.376816 2.472873 0.612714 -1.435228 -2.363382 -1.113151 -3.954915 1.488329 0.940953 2.419289 -0.141105 1.308035 -0.817907 -0.072484 0.030537 0.742948 -1.056383 0.221499 -1.117909 -1.143880 2.035268 -0.075582 -0.289367 0.381982 -2.778439 2.086513 0.942122 0.526930 1.373490 0.646037 0.130863 -0.959999 1.226719 -0.288208 1.044429 0.799251 0.997697 -0.310907 0.086034 0.905265 0.269008 1.598750 0.088566 2.195396 1.064930 0.371420 0.594567 -1.126683 -1.033896 0.051590 0.729171 -1.304203 0.641830 -0.252185 -0.064654 0.423500 -1.443489 -0.160091 -0.796861 0.017291 -0.682325 -1.299726 0.396644 -1.208672 0.454466 -0.063365 -1.053454 0.245478 -0.875411 1.212537 0.037610 -0.516643 0.300974 -1.844225 0.053902 0.710195 0.139012 1.298272 -0.387936 -0.482451 -0.388212 -1.610405 -1.657079 1.579152 1.656540 0.810463 0.472382 -0.885144 -0.204035 -0.018789 -0.353960 1.093175 1.622652 -0.973229 -0.624518 -0.009431 -0.896902 -1.600639 -1.699544 0.971022 -1.000572 1.159474 0.747701 -1.244488 -0.279299 -0.144939 0.178345 -1.136394 -1.248853 0.106499 -1.650821 1.648334 2.227126 -0.607374 -0.823744 -1.521566 -1.198124 0.599465 1.288070 0.640151 -0.112401 2.672828 1.766032 0.717082 -1.856966 -1.629546 0.738649 1.015742 0.982424 0.522673 -2.364173 -0.867416 0.450549 -1.311655 -2.751934 -0.861508 -0.476589 1.277061 -0.984851 -1.013993 1.500220 -0.973587 1.015093 1.560942 0.565047 0.148503 0.370967 -1.639337 1.178038 2.357981 -0.300807 1.084991 -1.137703 -1.126420 1.341171 -0.790055 0.594717 1.122863 -0.657106 -1.039997 -0.692784 0.566718 1.524386 -0.011909 1.136844 -0.041437 1.011479 -0.847968 -1.642952 -2.842876 0.211815 2.389780 0.771776 2.921453 -2.244949 -0.627032 -0.067122 2.532551 0.159969 -0.983031 0.695984 -1.006240 1.189004 -1.730227 -2.200034 2.687555 2.474543 1.547261 -0.037242 1.465603 0.598587 -1.441943 -0.626786 -0.894558 0.975568 0.587523 -1.711391 -0.148028 0.314647 -1.782204 -0.963669 -0.466712 0.942826 0.734479 -0.453946 0.645818 -0.466447 -0.674017 -1.421991 0.976318 -0.627548 -0.406674 -0.075866 0.073532 -0.094856 0.771397 -0.711569 -0.073929 0.069619 -0.825577 0.752669 1.252104 0.791551 0.202175 2.581693 1.817008 -1.213707 1.039432 -0.276151 -0.144748 1.988418 -0.446536 0.699497 0.706981 1.235945 0.566531 0.494771 1.600174 -0.966866 -0.493067 -1.835785 -0.143224 0.713840 0.999110 -0.939946 -1.122014 -3.166433 -0.437051 0.023653 2.420381 -0.083763 3.075714 -0.061408 0.753928 -2.736208 0.057578 0.753766 -0.451664 0.858334 0.450578 -1.273257 -1.665436 -0.570283 -1.937064 -1.921253 -0.302890 -0.407459 -1.453911 -0.862407 1.103879 -0.697505 0.028001 1.443793 0.110208 0.439313 -0.619484 0.280033 -0.965175 -0.157807 1.231234 -0.320040 -1.450573 1.499730 0.300371 3.897319 -0.248660 1.554687 -0.415660 1.255113 -0.387303 -1.663507 -0.644513 2.121523 1.380973 0.447085 -0.095054 0.107429 -0.034116 1.643444 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.053556 -0.069893 1.019121 0.396270 -0.564849 -1.415972 -0.495258 -2.389485 1.191927 0.526410 1.122003 0.127125 0.938121 -0.790290 -0.190570 0.440122 0.361321 -0.500626 0.234561 -0.542266 -0.446717 1.944800 -0.120959 0.101130 0.007623 -1.629890 1.060317 0.290801 0.877319 1.040141 0.418958 -0.018318 -0.239660 0.468264 -0.120599 0.763333 0.038227 0.569122 -0.563962 -0.076490 0.198004 -0.338126 0.854646 0.033783 1.269446 -0.000100 0.594776 0.224638 -0.084021 -0.535644 -0.522702 0.581071 -0.810961 0.237771 -0.550414 -0.413478 0.132997 -0.237485 -0.202558 -0.148097 -0.208345 -0.428248 -0.907591 0.219508 -0.838285 0.463025 -0.490624 -0.474293 -0.308765 -0.303364 0.787932 0.413567 0.035721 0.024974 -1.870712 -0.035257 0.085714 0.046668 0.739147 0.078860 -0.206068 -0.420773 -0.909302 -0.853993 1.332621 1.108712 0.121256 0.353112 -0.588926 -0.149051 -0.474913 -0.030696 0.776253 0.634189 -0.679494 -0.144122 -0.105635 -0.181264 -0.338244 -1.161991 0.518196 -0.566749 0.471394 0.025528 0.008534 -0.011408 0.264852 -0.020033 -0.682896 -0.879184 0.100260 -0.654120 0.460141 1.485837 -0.297811 -0.331717 -0.784976 -0.318326 -0.022279 0.675100 0.519349 0.274117 1.267170 0.854407 0.483557 -1.038276 -0.828919 0.940907 0.652814 0.468231 0.141326 -0.996886 -0.534698 0.269667 -0.397807 -1.599741 -0.653346 0.340562 0.660157 -0.667480 -0.152573 0.630733 -0.297255 0.599797 1.077606 -0.150322 0.244788 0.286641 -0.918813 0.797769 1.632691 -0.024650 0.510191 -0.904171 -0.395255 1.100804 -0.707408 0.264638 0.208589 -0.171045 -0.636055 -0.386012 0.440991 0.719207 -0.240344 0.551631 -0.146208 0.699332 -0.628248 -1.045476 -1.414384 -0.103998 1.527641 0.501144 1.481649 -1.071305 -0.224214 0.250735 0.901539 0.398433 -0.390263 0.605093 -0.953838 0.746212 -1.573794 -1.323024 1.758572 1.232530 1.052767 0.070714 0.583738 0.878018 -0.852567 -0.383622 -0.391481 0.557294 0.470901 -1.606152 -0.308509 0.080407 -1.113682 -0.862924 -0.095504 0.458225 0.238600 0.131427 0.790479 -0.622436 -0.224073 -0.805365 1.006175 -0.471136 -0.242871 -0.170319 0.124432 -0.197155 0.451579 -0.365479 0.544618 0.299060 -0.223611 0.505518 0.588985 0.120783 -0.029526 1.176772 1.536753 -0.734675 0.626388 -0.222919 -0.151953 1.073417 -0.201621 0.342054 0.268458 0.409470 0.293274 0.244695 0.715035 -0.579239 -0.368943 -0.949385 -0.195750 0.612306 0.633354 0.015969 -0.765567 -1.510559 -0.199745 -0.042932 1.343898 0.126375 1.602075 -0.646804 0.509213 -1.606070 0.220549 0.497562 -0.078171 0.763418 0.239192 -0.460387 -0.306602 -0.431804 -0.830431 -1.072078 -0.456088 -0.730145 -0.721157 -0.729322 0.612498 -0.822160 -0.069504 0.606696 -0.014311 0.649870 -0.783149 0.189795 -0.947465 0.403589 0.411993 -0.031655 -0.739757 0.673001 -0.018323 2.080633 -0.241083 0.685632 -0.279579 1.058918 -0.678130 -1.214770 -0.193472 1.238511 0.764944 -0.020867 -0.007163 -0.146241 0.247178 0.652220 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::__unguarded_linear_insert(int*, __gnu_cxx::__ops::_Val_less_iter) = -0.802317 -0.144808 2.903174 2.357554 -2.104147 -3.671353 -1.406028 -4.795257 2.945380 0.759324 2.660512 0.855211 1.979435 -2.328455 -0.195619 0.189422 1.298381 -0.978635 -0.027774 -1.441152 -0.830234 4.642677 0.815726 -1.860860 0.198184 -3.731653 2.457908 1.313751 1.802412 2.647860 0.787233 0.048292 -0.840726 1.616616 -0.804161 1.198363 0.038679 1.027552 -1.622057 -0.715172 1.155979 0.102843 2.665042 0.033424 3.077227 -0.030690 1.845198 0.583562 -1.434109 -1.295066 -1.424756 2.087626 -2.004502 1.221417 -0.607438 -0.004642 0.985655 -1.307233 -0.505796 -2.004263 -0.257789 -0.500627 -1.987697 0.108464 -2.057668 0.882425 -0.503441 -1.305080 -0.015900 -0.806826 2.042359 0.777960 0.160824 -0.712020 -3.659767 0.122969 0.158216 0.858123 2.043162 0.781577 -0.767805 -1.017082 -1.830704 -1.930792 2.341603 1.248511 0.364749 1.148795 -1.057883 -0.766240 -0.578171 -0.414144 1.131159 1.258486 -1.898957 -0.076849 0.337984 -0.550849 -0.954076 -1.760331 0.926040 -1.320618 0.873543 0.900824 -0.349242 -0.087190 -0.092136 -0.115315 -1.909343 -1.977701 0.669851 -1.490824 0.436089 3.311864 -1.050555 -0.706779 -1.240107 -0.507813 -0.113937 2.324347 0.692144 0.893311 2.637689 2.624846 0.926740 -2.383530 -1.257447 1.644907 2.145908 1.420726 0.913111 -2.264989 -1.475405 0.635927 -0.711508 -3.853327 -1.128086 1.346582 2.176620 -0.024087 -1.752278 1.479888 -0.869949 2.247186 2.015992 0.176881 0.626756 0.381164 -2.534552 2.345806 4.266066 -0.344010 1.550485 -1.518191 -1.506223 3.256140 -1.964603 1.014589 0.418389 -0.778753 -0.892456 -0.945827 0.794888 2.051041 -0.079784 1.007758 0.018669 1.394429 -1.075027 -3.491248 -4.069136 -0.042288 3.262502 1.484211 4.517224 -2.606940 -0.881163 -0.155329 2.309744 -0.005290 -1.160648 1.090830 -2.164703 1.874898 -4.497698 -3.454655 5.267293 3.581941 1.854748 0.489428 2.200855 1.902015 -1.375945 -1.117145 -1.091692 1.139034 1.479711 -2.337660 -0.044304 0.317164 -2.886430 -2.248204 0.202419 0.951953 0.782243 -0.712741 0.916529 -1.205786 -1.262340 -1.922000 1.687708 -1.621626 -0.626641 0.024754 0.112327 -0.131582 1.298167 -0.464490 0.344637 0.245837 -0.924362 0.493309 0.758532 1.408675 0.643751 2.728601 3.976829 -1.262726 2.296527 0.303557 -1.014729 4.293896 -1.136091 0.807711 0.600860 1.571534 1.212318 0.666763 1.645655 -1.403214 -0.215127 -2.646817 0.333696 1.351193 1.754100 -2.694494 -2.139141 -3.846063 -0.692859 0.408064 2.543045 -0.467025 4.545086 -1.737163 0.413908 -5.202541 0.269597 2.001540 0.069188 1.776396 0.969569 -1.552989 -2.618890 -1.113660 -1.963736 -0.826104 -1.125537 -1.747428 -1.575122 -1.500578 2.088032 -2.291418 0.527589 2.705235 -0.569265 1.714570 -1.486784 0.375214 -1.853415 -0.074586 0.296670 0.340829 -1.908307 2.554229 -0.240268 5.275957 -0.684328 1.859240 -1.228698 2.609169 -1.427199 -2.947748 -0.641493 3.200153 2.099739 -0.077954 0.583234 0.187858 -0.208467 2.106037 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__val_comp_iter(__gnu_cxx::__ops::_Iter_less_iter) = 0.030537 0.133854 0.249197 -0.184249 0.114708 -0.157624 -0.056118 -0.321477 0.022383 0.124755 0.229913 -0.177883 0.190039 0.072768 -0.007757 -0.013018 -0.005130 -0.042881 0.123804 -0.024106 -0.068178 0.011731 -0.146717 0.179128 0.053556 -0.236338 0.202077 0.026196 -0.030553 0.184384 0.008904 0.030111 -0.035883 0.063746 -0.040590 0.061094 0.213256 0.144223 0.094036 0.099549 -0.062575 0.091023 -0.027236 0.077456 0.099115 0.360439 -0.260472 0.054523 0.080177 -0.099367 0.167997 -0.137530 -0.060564 0.015047 -0.126932 -0.073526 0.007363 -0.038866 0.055650 -0.087476 0.107267 -0.021958 -0.042245 0.070818 -0.104316 0.017927 -0.004298 -0.114178 -0.047699 -0.093607 0.054211 -0.010592 -0.034827 0.129610 -0.125039 0.021221 0.099336 -0.068921 0.090073 -0.226008 -0.060195 0.018306 -0.143046 -0.195532 0.189449 0.274160 0.152237 0.092689 -0.056535 -0.027987 -0.004071 -0.000344 0.157278 0.223288 0.168909 -0.050232 -0.042487 -0.020240 -0.049297 -0.256142 0.096469 -0.097540 0.085695 0.075445 -0.001956 -0.040268 0.026088 0.176827 -0.017024 -0.074438 0.112994 -0.170078 0.127566 0.119358 0.008785 -0.078187 -0.139997 -0.175611 0.154939 0.134160 0.049697 -0.080287 0.112882 0.048312 0.043332 -0.130927 -0.185875 0.106521 0.004947 0.039258 -0.004100 -0.329594 -0.031805 0.043240 -0.293154 -0.201897 -0.084837 -0.192262 0.035756 -0.330653 -0.104466 0.320135 -0.152648 -0.116083 0.179871 0.092350 -0.001783 0.028405 -0.097404 -0.008426 0.088967 -0.084456 0.074944 -0.054760 -0.086203 -0.118195 0.084281 0.006416 0.066779 -0.060345 -0.024299 -0.035802 0.101306 0.145420 0.074640 0.232665 -0.011666 0.065321 -0.179099 0.002480 -0.121514 -0.039272 0.248440 -0.102498 0.159775 -0.141891 -0.066221 0.005091 0.359181 -0.016438 -0.008000 -0.005410 0.015967 0.059174 -0.053923 -0.129991 0.052068 0.106234 0.236337 -0.108135 -0.032837 0.033566 -0.046579 -0.009453 -0.022739 0.036148 -0.108217 -0.225090 -0.166071 -0.032759 -0.095624 0.018061 -0.086169 0.077424 0.001802 0.116068 0.027716 -0.030842 0.001227 -0.106978 0.008397 -0.023591 0.018223 -0.024073 0.014294 -0.056498 -0.006618 -0.173966 0.017874 0.194743 -0.079308 0.096329 0.176892 -0.046374 -0.011225 0.298434 -0.035144 -0.107978 -0.134562 -0.071227 0.026246 0.069976 0.043200 0.052188 0.050830 0.130315 0.024841 0.049833 0.134736 -0.060984 -0.145528 -0.219917 -0.162382 0.117821 0.002908 0.264829 -0.066737 -0.188816 0.020388 -0.102254 0.380023 0.065733 0.208943 0.149336 0.165271 0.051060 0.038095 -0.032049 -0.173187 -0.027329 0.035882 -0.060303 -0.163490 -0.008608 -0.204175 -0.447215 -0.053330 -0.053686 -0.064762 -0.045636 -0.071721 0.055744 -0.035379 0.007467 0.175706 -0.057858 -0.034767 0.011329 -0.137155 0.076096 0.187726 -0.146473 -0.136336 -0.061495 0.115989 0.238616 -0.037064 0.155474 -0.008266 0.034986 -0.016698 -0.016264 -0.070445 0.156979 0.079689 0.099202 -0.005393 0.029209 0.065113 0.096704 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.243970 -0.096776 1.196109 0.390260 -0.616326 -1.583935 -0.546232 -3.039421 1.540518 0.617271 1.267669 0.160092 1.072283 -1.013458 -0.254616 0.722984 0.399610 -0.582585 0.309153 -0.592461 -0.369931 2.439047 -0.293836 0.284232 -0.023287 -2.036190 1.017156 0.310749 1.310258 1.048927 0.522024 -0.124009 -0.259479 0.473470 -0.109597 0.922105 0.089085 0.591887 -0.936962 -0.144643 0.022964 -0.439674 0.953008 -0.083763 1.549880 -0.364152 0.859919 0.253772 0.054191 -0.532787 -0.739330 1.006967 -0.833325 0.271768 -0.502793 -0.636245 -0.040149 -0.206070 -0.287055 0.161188 -0.366771 -0.465588 -1.021190 0.252466 -0.921510 0.560748 -0.589869 -0.446188 -0.349463 -0.287571 0.940077 0.541102 0.160641 0.054858 -2.416732 -0.005838 0.061645 0.074077 0.812023 0.199500 0.005661 -0.498857 -0.986316 -0.959679 1.661744 1.552723 0.023540 0.301635 -0.824047 -0.108745 -0.656880 -0.111996 0.912958 0.659102 -1.043421 -0.165353 -0.321427 -0.193115 -0.346903 -1.447040 0.558687 -0.677107 0.549250 -0.201522 0.202315 0.090564 0.500280 -0.036934 -0.723535 -1.015070 0.096366 -0.595040 0.530234 1.939069 -0.347064 -0.378159 -0.942994 -0.277061 -0.320408 0.655036 0.619055 0.423367 1.470065 0.996661 0.691267 -1.192600 -1.007067 1.273566 0.773125 0.589048 0.111199 -1.144454 -0.557564 0.310732 -0.300081 -1.953747 -0.820726 0.469825 0.783057 -0.774012 0.071236 0.395517 -0.224983 0.851929 1.195086 -0.406333 0.301187 0.400554 -1.014655 0.964799 1.972338 0.023463 0.558351 -1.161102 -0.258550 1.120176 -0.898690 0.359594 0.161692 -0.064735 -0.716599 -0.511150 0.456509 0.796750 -0.340442 0.574130 -0.344895 0.854935 -0.827535 -1.289489 -1.695215 -0.169677 1.663960 0.449412 1.601969 -1.152551 -0.448899 0.304917 1.004296 0.505630 -0.429379 0.876224 -1.363484 0.908292 -1.605667 -1.543006 2.083008 1.624900 1.212681 0.040926 0.772602 1.104171 -1.351694 -0.514766 -0.406001 0.633725 0.618863 -2.281973 -0.467410 0.098828 -1.303519 -1.056601 -0.097020 0.488097 0.217948 0.481373 1.217607 -0.623751 -0.264969 -0.876723 1.421648 -0.485134 -0.272886 -0.253169 0.222560 -0.235310 0.690510 -0.602979 0.702941 0.498542 -0.272301 0.652298 0.689919 0.069276 -0.131326 1.304863 1.851219 -0.698037 1.084899 -0.293264 -0.254145 1.095105 -0.193872 0.351206 0.259205 0.164786 0.164466 0.333698 0.704836 -0.716250 -0.545629 -1.071775 -0.290808 0.556943 0.783914 0.325269 -1.043920 -1.608226 -0.297464 -0.009895 1.355589 0.266970 1.824053 -0.937112 0.613888 -2.021843 0.260241 0.564925 -0.026677 1.006142 0.223897 -0.508119 -0.254321 -0.471399 -0.929668 -1.493097 -0.559922 -1.047673 -0.847505 -1.133620 1.027733 -1.022725 -0.117868 0.675277 0.057052 0.927080 -1.075097 0.225761 -1.181640 0.615519 0.490136 -0.035801 -0.885873 0.704859 -0.077431 2.598945 -0.362478 0.693789 -0.359442 1.191952 -0.826219 -1.509219 -0.158965 1.440660 0.931314 -0.001476 -0.221594 -0.310257 0.157948 0.722900 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.018243 0.143346 0.464038 0.166887 -0.321397 -0.773668 -0.230965 -0.903524 0.279212 0.196177 0.518594 -0.061327 0.430284 -0.148445 -0.058654 0.057706 0.169560 -0.111347 0.115988 -0.285435 -0.508916 0.549337 -0.045582 0.018766 0.063399 -0.476760 0.724026 0.195082 0.110454 0.553049 0.163657 0.061395 -0.155474 0.283196 -0.067125 0.246165 -0.000131 0.367318 -0.012396 0.128259 0.184681 -0.196505 0.400518 0.143029 0.399006 0.501070 0.051858 0.182649 -0.160852 -0.271859 -0.087134 -0.076124 -0.436664 0.115561 -0.411780 -0.142222 0.243352 -0.109993 0.017609 -0.225112 0.005633 -0.312548 -0.432405 0.122577 -0.474452 0.144071 -0.263009 -0.429145 -0.154483 -0.097462 0.307376 0.106845 -0.142573 0.077442 -0.628476 -0.066210 0.149833 0.033331 0.392603 -0.157098 -0.185217 -0.144796 -0.536917 -0.453205 0.516951 0.271679 0.281524 0.235094 -0.175812 -0.149159 -0.066968 0.072707 0.424014 0.385998 0.051221 -0.033960 -0.042461 -0.089295 -0.314631 -0.669421 0.285892 -0.207978 0.273987 0.123726 -0.181726 -0.116096 -0.040427 0.056018 -0.292920 -0.449260 0.020393 -0.504133 0.264123 0.499111 -0.062116 -0.202451 -0.299709 -0.309766 0.249882 0.376082 0.303438 -0.053675 0.552839 0.368047 0.098720 -0.473669 -0.424091 0.163332 0.164486 0.213632 0.152800 -0.490149 -0.317063 0.128981 -0.425496 -0.669262 -0.178784 0.010102 0.237420 -0.429695 -0.216671 0.609137 -0.330862 -0.005674 0.494788 0.230148 0.105782 0.022243 -0.397861 0.277643 0.557844 -0.086496 0.277390 -0.270357 -0.329327 0.506509 -0.121299 0.017092 0.190526 -0.266182 -0.315598 -0.071582 0.207045 0.364376 -0.009130 0.276283 0.191197 0.257413 -0.357773 -0.343143 -0.483472 0.094982 0.878447 0.237188 0.675402 -0.592562 0.057474 0.166838 0.504195 0.106273 -0.173325 0.104802 -0.147115 0.313081 -0.762969 -0.565641 0.613312 0.250226 0.461687 -0.025959 0.068265 0.286854 -0.153440 -0.190122 -0.250045 0.221728 0.038836 -0.466733 -0.197758 0.032295 -0.488965 -0.161452 -0.036847 0.300177 0.206757 -0.150862 0.090466 -0.414285 -0.088634 -0.459888 0.209176 -0.225333 -0.040575 0.038026 -0.035779 -0.084460 0.038119 -0.032936 0.133325 0.003677 -0.115310 0.213461 0.264366 0.103700 0.019096 0.770061 0.512119 -0.466376 -0.088815 -0.065041 -0.011838 0.582470 -0.088882 0.273008 0.183712 0.540496 0.190231 0.077215 0.545728 -0.230805 -0.196066 -0.501451 -0.204062 0.429785 0.194919 -0.067503 -0.125223 -0.856440 -0.011896 -0.096611 0.872413 -0.052821 0.675751 -0.023786 0.269469 -0.398562 0.109553 0.126532 -0.190397 0.256639 0.154893 -0.249115 -0.121836 -0.220328 -0.464606 -0.435717 -0.158879 -0.080016 -0.304144 0.031395 -0.203237 -0.195086 -0.060636 0.219281 -0.058703 0.055625 -0.226420 0.084465 -0.299845 0.062386 0.414458 -0.113524 -0.349109 0.339984 0.127631 0.866525 0.094862 0.391263 -0.059097 0.306967 -0.132108 -0.377553 -0.196439 0.563459 0.274412 0.036925 0.173263 0.128544 0.295051 0.313550 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = -0.131960 -0.054772 0.834263 0.412736 -0.536901 -1.276172 -0.456937 -1.768319 0.858982 0.422920 0.964215 0.110087 0.800069 -0.592000 -0.131712 0.178199 0.316779 -0.430430 0.158794 -0.507871 -0.527485 1.468617 0.054908 -0.092559 0.026424 -1.247074 1.112842 0.272705 0.460946 1.041743 0.326289 0.078844 -0.231840 0.474495 -0.121444 0.623102 -0.003694 0.541667 -0.213946 -0.001946 0.366407 -0.235116 0.763464 0.139947 1.019669 0.356238 0.349464 0.219694 -0.220086 -0.537228 -0.324788 0.176974 -0.812278 0.196893 -0.599326 -0.190359 0.296149 -0.279389 -0.134627 -0.449261 -0.071030 -0.402675 -0.804104 0.197086 -0.768532 0.384807 -0.396300 -0.509191 -0.277970 -0.297652 0.655897 0.306818 -0.074817 0.012113 -1.340156 -0.074182 0.094344 0.043553 0.682876 -0.058199 -0.410093 -0.353607 -0.828991 -0.743935 1.003565 0.667908 0.213603 0.405476 -0.333564 -0.182379 -0.306919 0.036950 0.655233 0.595053 -0.321544 -0.136891 0.099661 -0.154332 -0.335260 -0.885116 0.487019 -0.443756 0.403848 0.238588 -0.171598 -0.118780 0.037292 -0.019637 -0.670152 -0.747805 0.098576 -0.710166 0.406770 1.060785 -0.252269 -0.273304 -0.622054 -0.365346 0.254143 0.707573 0.433340 0.140693 1.064786 0.748669 0.263986 -0.894927 -0.676761 0.613993 0.552000 0.366284 0.192348 -0.863230 -0.525968 0.227715 -0.480006 -1.249377 -0.476536 0.214388 0.540284 -0.550780 -0.368400 0.851475 -0.369161 0.366634 0.951639 0.096908 0.184631 0.158175 -0.842991 0.668278 1.318028 -0.055729 0.473694 -0.658952 -0.508542 1.092511 -0.544404 0.162958 0.264177 -0.294282 -0.575675 -0.248320 0.415827 0.624224 -0.137241 0.531335 0.056917 0.563873 -0.445731 -0.829020 -1.119376 -0.029140 1.417582 0.536655 1.359405 -1.004019 -0.004676 0.199192 0.806688 0.303793 -0.346364 0.343855 -0.568199 0.602286 -1.529435 -1.109485 1.459192 0.858464 0.903216 0.111348 0.400959 0.685616 -0.380143 -0.248606 -0.359456 0.472141 0.327814 -0.961111 -0.159585 0.061725 -0.930731 -0.702465 -0.079746 0.452438 0.261078 -0.192864 0.366544 -0.610616 -0.176024 -0.751934 0.600999 -0.457826 -0.209941 -0.069772 0.034032 -0.156899 0.211572 -0.133110 0.408943 0.109990 -0.160616 0.385997 0.502212 0.177931 0.076986 1.045999 1.229610 -0.772684 0.202302 -0.141834 -0.045893 1.054000 -0.190774 0.366435 0.292751 0.647467 0.419391 0.139462 0.720711 -0.455187 -0.184972 -0.826786 -0.112993 0.674063 0.506298 -0.280215 -0.506623 -1.415895 -0.106749 -0.057926 1.307665 -0.023976 1.375169 -0.368907 0.399711 -1.205727 0.183099 0.447081 -0.124638 0.527851 0.264786 -0.402570 -0.367320 -0.402529 -0.728234 -0.667995 -0.377202 -0.422628 -0.590702 -0.325358 0.216413 -0.627820 -0.035663 0.552191 -0.085173 0.377295 -0.517397 0.164706 -0.720604 0.187909 0.318333 -0.028361 -0.606647 0.660439 0.036624 1.586325 -0.111300 0.669504 -0.194128 0.937435 -0.530303 -0.926417 -0.217005 1.053690 0.589820 -0.056285 0.211157 0.009838 0.346834 0.575448 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = -1.183549 0.374194 3.527213 1.878392 -1.545966 -2.217011 -1.109853 -3.856481 1.902791 0.583577 2.504384 -0.094963 1.275487 -0.932269 -0.156262 -0.309851 1.060276 -1.492728 0.925898 -0.973690 0.407745 3.190968 0.905935 -1.671622 0.106310 -3.987417 2.752491 1.072521 1.463324 2.281566 0.604527 0.246554 -0.526347 1.606479 -0.320582 0.458009 0.674229 1.045516 -0.984696 0.098417 0.570605 0.732263 1.464313 -0.139617 2.591890 0.901737 1.614629 0.477180 -1.317587 -0.769824 -1.676439 1.782898 -2.206035 0.572460 -0.456017 -0.335985 0.487063 -1.611197 -0.886496 -2.546309 -0.161093 -0.161767 -1.185494 0.548215 -2.166732 1.293005 -0.447696 -0.692473 0.231246 0.355300 1.870617 1.399088 1.067034 0.255585 -2.688394 1.081681 0.014786 1.148848 1.511298 -0.943470 -0.620531 0.378105 -1.174225 -1.844878 1.379785 1.583196 0.624090 -0.092273 0.335817 -0.053057 -0.836338 -0.538263 -0.392288 1.750896 -1.258260 0.527329 -0.441011 -0.248486 -1.041532 -1.237931 0.203656 -1.764150 0.927028 1.778438 -0.765646 -0.096832 -0.737379 0.229936 -1.455375 -1.930464 0.518871 -1.505245 0.888390 2.660857 -1.317615 -0.059064 -1.244550 -0.136108 0.560321 2.169822 -0.375974 1.334068 1.975274 2.746558 0.354587 -1.768836 -0.988321 1.394567 1.726318 1.453636 1.321674 -2.557292 -1.437982 -0.478964 -0.134746 -2.692347 -0.398459 0.768911 1.648402 -0.321554 -2.308712 1.213157 -1.076128 2.804290 2.195751 0.708419 0.381999 0.654730 -1.974053 2.410785 4.138681 -0.558904 1.366198 -1.451588 -0.644465 2.609966 -1.682750 1.360153 0.610692 0.214810 -0.497956 -1.554430 -0.307126 1.795311 1.071620 1.356330 1.219935 0.865108 0.390022 -3.459181 -2.883595 -0.227396 2.635145 0.092465 3.772388 -2.305059 -0.837565 -0.258716 2.069736 0.651582 -0.941944 0.262936 -1.282476 1.290300 -3.646525 -3.292004 3.604300 3.073297 0.823844 0.577831 1.763698 1.916299 -1.396112 -0.990928 -0.631405 1.597352 -0.482982 -1.424391 -0.351993 0.486520 -2.263338 -2.147146 0.199646 0.973429 1.567128 -0.480189 -0.407268 0.243634 -1.685343 -1.705104 0.915766 -1.671252 -1.776865 0.199359 0.110320 0.696716 0.787119 -0.834085 0.548638 1.189540 -1.141665 -0.083947 1.174490 1.282146 0.282414 1.963743 2.781543 -0.056219 1.168551 0.864047 -0.811341 3.933194 0.049039 0.605611 0.668503 0.448979 0.718858 0.674819 1.110352 -1.219217 -0.905472 -2.816569 1.025324 0.360126 1.768120 -2.312965 -1.923859 -2.599192 -0.486680 1.714168 1.894322 -0.091721 4.325444 -0.419179 -0.074050 -4.132247 -0.132211 1.805783 0.059021 1.629027 1.241348 -1.464039 -2.162934 -0.902055 -1.393431 -0.320285 -1.378454 -1.771860 -1.678716 -0.759836 1.769860 -1.198417 0.414804 2.373271 0.286955 1.266689 -0.101083 -0.019012 -1.404487 -0.439807 0.502543 0.673094 -1.904655 2.660452 -0.747382 4.596947 -1.391967 1.050013 -1.321691 1.524420 -0.466310 -1.341328 -0.113641 3.462752 1.291770 0.295540 0.290019 -0.553871 -0.434474 2.049238 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__bool __gnu_cxx::__ops::_Val_less_iter::operator()(int&, int*) const = -0.332176 -0.175988 1.151294 0.672963 -0.506279 -1.204492 -0.538024 -1.464913 0.874914 0.401390 1.043323 0.106417 0.689218 -0.509047 -0.125046 -0.106125 0.194888 -0.556652 0.135784 -0.466365 -0.359594 1.601301 0.559189 -0.663215 0.044829 -1.596524 1.243032 0.348560 0.462567 1.445788 0.010568 0.057201 -0.067538 0.658106 -0.358581 0.428825 -0.029911 0.526928 -0.094834 0.082731 0.591606 0.167189 0.844318 0.026459 1.073843 0.610376 0.323708 0.103362 -0.483229 -0.556493 -0.253970 0.071539 -0.987414 0.354430 -0.731908 0.175313 0.226028 -0.532214 -0.337045 -1.171970 0.102933 -0.042391 -0.748345 0.146272 -0.935561 0.393155 -0.239851 -0.644706 -0.043714 -0.351614 0.747201 0.515914 0.012216 -0.254738 -1.171712 0.165028 0.157121 0.214169 0.561911 -0.309104 -0.657538 -0.153543 -0.755335 -0.709789 0.687343 0.519817 0.253134 0.356293 0.069758 -0.298886 -0.131893 0.139454 0.308587 0.760855 -0.172350 0.033537 0.109235 -0.099533 -0.247630 -0.598535 0.268905 -0.622830 0.446894 0.658578 -0.306705 0.048621 0.124642 0.247910 -0.640619 -0.878882 0.109130 -0.607839 0.349001 0.970923 -0.287970 -0.225430 -0.481902 -0.258620 0.332797 0.927495 0.066744 0.234288 1.176815 0.899059 0.201254 -0.990673 -0.464128 0.500545 0.688177 0.474878 0.419000 -0.915418 -0.596898 -0.003834 -0.384541 -1.373820 -0.353126 0.170839 0.622138 -0.580780 -0.842233 1.142383 -0.494689 0.779838 1.126737 0.189261 0.255270 0.109244 -1.006933 0.878432 1.757609 -0.183617 0.526989 -0.857763 -0.884346 1.475382 -0.574805 0.426105 0.166064 -0.218977 -0.276823 -0.542997 0.526136 0.839193 -0.009044 0.710913 0.272709 0.410549 -0.047667 -1.096637 -1.188730 -0.220667 1.242562 0.604804 1.908007 -1.049237 -0.098034 -0.084643 0.817732 0.306616 -0.253788 0.116759 -0.488508 0.553450 -2.232090 -1.422335 1.673776 1.235686 0.933432 0.361691 0.683850 0.671864 0.179460 -0.159346 -0.315546 0.557388 0.400578 -0.502138 -0.090610 0.055726 -0.967134 -0.820843 -0.028570 0.380255 0.356642 -0.560665 -0.241244 -0.476275 -0.600716 -0.862019 0.441365 -0.955748 -0.306415 0.009941 0.031564 -0.123412 0.152687 -0.134342 0.302314 0.103477 -0.215026 0.342404 0.500995 0.398503 0.195608 0.745254 1.454714 -0.716129 0.150682 0.116947 -0.073925 1.638548 -0.387359 0.234956 0.396893 0.768438 0.447063 0.232802 0.625332 -0.427313 0.129692 -0.951159 0.387544 0.707365 0.494298 -0.915936 -0.632547 -1.338253 -0.170409 0.145622 1.356224 0.010796 1.753223 -0.252286 0.378501 -1.676687 0.052605 0.562958 0.085449 0.635973 0.463106 -0.529948 -1.114092 -0.404900 -0.627740 -0.097306 -0.562240 -0.667232 -0.637273 -0.160106 0.171485 -0.600572 0.218254 0.913344 -0.140619 0.487605 -0.407093 0.073221 -0.738548 -0.125658 0.122273 0.210677 -0.596627 0.724598 -0.061722 1.658311 -0.288674 0.844304 -0.438092 1.052633 -0.496472 -0.832667 -0.218602 1.240265 0.557824 -0.009508 0.383105 -0.104645 0.188156 0.678528 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp___GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_set_3_worst_case_linear_time.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = -0.124033 0.725471 2.757969 1.565278 -1.474612 -2.164860 -1.063109 -2.923313 1.283211 0.023315 1.633992 0.076832 0.449987 -0.202417 0.034832 -0.265088 0.202283 -0.414027 0.043420 -0.778349 -0.882239 1.868356 0.789194 -1.698564 0.265169 -2.702659 1.748851 1.164395 1.144181 1.455910 0.039544 -0.308561 -0.612764 1.464857 -0.766688 -0.155856 0.275614 0.461484 -0.929732 0.187249 0.826373 1.007287 1.448585 0.011872 1.464105 0.945271 0.957746 0.574960 -1.068719 -0.244413 -0.897925 1.882660 -1.290535 0.996643 -0.014432 0.688536 0.187609 -1.615963 -0.445937 -1.278485 -0.073362 0.210458 -1.042237 0.074598 -1.591905 0.330856 -0.300765 -1.044109 0.799440 0.093347 1.533535 0.318696 0.011847 -0.503772 -1.652882 0.422332 0.013014 1.195653 1.145974 -0.580723 -0.175365 0.374095 -0.977282 -1.219673 0.592574 0.516884 0.471788 -0.193580 0.257663 -0.697834 0.002619 -0.442609 0.047649 1.300809 -0.948226 0.636285 -1.043326 -0.278216 -1.218146 -1.170818 0.172213 -1.146560 0.973615 0.755561 -0.663336 -0.114931 0.355530 0.310999 -0.462399 -1.655246 0.070524 -0.447888 0.718009 2.073157 -0.543995 -0.430554 0.020573 -0.616411 -0.408970 1.600983 0.383773 0.399488 1.702883 2.115469 0.385029 -1.267824 -0.837943 0.295693 0.929054 1.549997 1.259833 -1.930450 -0.987270 -0.087335 0.012106 -2.716233 0.504688 0.353641 1.262140 0.093646 -1.542928 0.622174 -1.001771 1.545861 0.866519 0.895349 0.502524 -0.230491 -1.318347 1.686568 3.156061 -0.513810 1.142779 -1.046786 -1.096862 1.742074 -1.166522 1.015804 0.408803 -0.135011 0.259113 -1.030842 -0.200212 1.636917 0.413421 0.705283 1.313259 0.384202 -0.555502 -2.536310 -2.024884 0.228067 1.659521 -0.136946 2.699080 -1.598055 -0.900048 -0.413211 2.169388 -0.324153 -0.442739 0.306665 -0.917811 1.064553 -2.060255 -2.144252 2.494826 2.578153 0.276574 -0.041770 1.642619 1.192517 -0.906201 -1.043637 -0.967874 0.714794 0.453304 -0.638375 -0.261166 -0.060796 -1.551886 -0.595776 0.397277 0.692228 1.065767 -0.612778 -0.760425 0.244451 -1.811534 -1.621101 0.843844 -1.556115 -0.291490 0.467839 -0.035265 -0.209631 0.722922 -0.559256 -0.531698 0.590684 -0.845631 0.409548 0.822719 1.158640 0.258630 2.039261 1.398033 0.016754 1.713163 1.022575 -0.698316 3.518646 -0.685082 0.506219 0.612897 1.157968 -0.201514 0.830926 0.722031 -0.860163 -0.783847 -1.958983 0.634219 0.015430 1.036140 -1.584350 -1.271058 -2.039666 -0.898188 0.962588 1.302794 -0.168390 3.093353 -0.152253 0.335322 -3.187332 -0.159750 1.306284 -0.146463 1.318280 0.891410 -1.182427 -2.432695 -0.623670 -0.888211 -0.186637 -0.770008 -1.324062 -1.143393 -0.692604 0.965796 -0.671708 0.647792 1.969956 -0.207412 0.564965 -0.887245 -0.061657 -0.600244 -0.768191 0.978621 0.228861 -1.719730 1.877549 -0.238006 3.929796 -0.553335 1.400987 -1.133323 0.298409 -0.076490 -0.817399 -0.405295 2.287677 1.005008 0.559381 0.035647 0.184288 -0.734502 1.169120 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.213379 0.398067 0.753130 0.000813 -0.510218 -0.882896 -0.274676 -1.398427 0.346544 0.231549 0.631987 -0.170644 0.448463 0.058548 -0.067570 0.256297 0.340985 -0.106147 0.288606 -0.369690 -0.599363 0.730801 -0.199288 0.367542 0.160639 -0.708276 0.644959 0.143582 0.466869 0.505991 0.246308 -0.093511 -0.322689 0.253014 0.062787 0.178580 0.107707 0.339595 -0.449994 0.372764 -0.091719 -0.386763 0.520399 0.068485 0.394506 0.395973 0.091229 0.306563 -0.168291 -0.233125 -0.193675 0.225328 -0.332638 0.233819 -0.181098 -0.391567 0.009797 -0.009777 -0.016949 0.273923 -0.201821 -0.511433 -0.356865 0.218011 -0.595814 0.141918 -0.649434 -0.458658 -0.107664 -0.049013 0.360990 0.134437 -0.025830 0.248594 -1.051125 0.043169 0.200650 0.194712 0.359551 -0.104444 0.105949 0.005991 -0.690379 -0.622704 0.524217 0.662692 0.264939 -0.063352 -0.496339 -0.145320 -0.078508 0.026671 0.459965 0.446451 -0.270923 0.099701 -0.607342 -0.199108 -0.492949 -1.322465 0.188691 -0.279419 0.411095 -0.213133 -0.165472 -0.141500 0.043714 0.149395 -0.057422 -0.608481 0.076643 -0.337669 0.212654 0.957961 -0.057164 -0.293305 -0.486701 -0.323080 -0.005721 0.289061 0.393818 -0.011493 0.589381 0.469848 0.328395 -0.472470 -0.541921 0.230032 0.072871 0.234448 0.306929 -0.486002 -0.374505 0.188745 -0.421311 -0.932076 -0.273003 0.076192 0.375437 -0.540992 0.179407 0.128309 -0.477582 0.134736 0.501574 0.171825 0.219744 -0.025536 -0.355536 0.339568 0.710831 -0.169659 0.360887 -0.437459 -0.208076 0.438474 -0.094133 0.164197 0.081522 -0.074904 -0.380015 -0.198079 0.067388 0.476324 0.025908 0.191257 0.178936 0.239342 -0.546989 -0.446103 -0.667002 0.154887 0.960163 0.070845 0.492087 -0.622806 -0.101610 0.184681 0.626993 0.281741 -0.310210 0.321784 -0.314556 0.321716 -0.696463 -0.653310 0.690131 0.658396 0.379868 -0.198970 0.055972 0.404855 -0.816742 -0.560737 -0.440940 0.337666 -0.210153 -1.089543 -0.564137 0.142184 -0.582493 0.043675 -0.023837 0.370193 0.532726 0.129925 0.390564 -0.260379 -0.254907 -0.556760 0.618410 -0.186851 -0.142469 0.132090 -0.039880 -0.039998 0.246562 -0.173258 0.090418 0.203957 -0.294416 0.242654 0.322464 0.130058 -0.221059 1.025121 0.537515 -0.221647 0.114060 -0.099957 -0.271735 0.681276 -0.188263 0.304165 0.053624 0.280150 -0.167359 0.203542 0.615025 -0.268317 -0.702244 -0.565592 -0.332894 0.149398 0.264327 0.221862 -0.508809 -0.951507 0.053127 -0.072926 0.955244 0.152744 0.817273 -0.131696 0.401104 -0.577484 0.148912 0.070569 -0.155368 0.548539 0.103137 -0.347070 0.138613 -0.179343 -0.731269 -0.649511 -0.113789 -0.299027 -0.401572 -0.128747 0.030636 -0.078936 -0.149401 0.182782 -0.090303 0.383206 -0.156798 -0.062566 -0.473005 0.182756 0.885390 -0.195863 -0.429644 0.440173 0.188471 1.321167 0.155565 0.267749 -0.013590 -0.081387 0.036291 -0.530706 -0.255772 0.696852 0.429150 0.247113 -0.123509 -0.036998 0.248796 0.242440 -PE-benchmarks/cutting-a-rod.cpp__max(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -0.904571 1.281209 7.333676 4.381159 -3.626391 -6.020251 -2.841024 -7.430420 3.656194 0.176158 4.787411 0.437279 1.566828 -0.928484 0.366519 -0.525807 1.000445 -2.009286 0.491852 -2.166010 -2.011563 5.786111 2.609036 -4.545536 0.488080 -7.705146 5.017143 3.255517 3.015841 4.656145 0.478997 -0.777550 -1.016727 3.995448 -1.883811 -0.024898 0.555210 1.169058 -2.257515 0.491094 2.328500 2.654413 4.414963 0.218768 4.077423 2.241038 3.356476 1.388938 -2.958048 -0.862464 -3.531155 5.375406 -4.202549 2.189457 -0.540295 1.905608 1.286395 -4.526848 -1.622794 -4.157909 -0.529092 0.869560 -3.220748 0.244506 -4.328731 1.185177 -1.320729 -2.333548 1.956968 0.788028 4.274696 1.569393 0.453541 -1.204699 -4.742519 1.511426 -0.264792 3.234740 3.266348 -1.906844 -1.175878 1.208684 -2.542827 -3.304912 2.187899 0.940667 1.253317 -0.505411 0.830708 -1.589880 -0.984466 -0.829726 -0.314453 3.278196 -2.342804 1.820329 -1.727906 -0.820343 -3.087658 -2.487732 0.257613 -3.389534 2.163477 2.919945 -1.400419 -0.561904 -0.616318 0.464368 -2.306586 -4.547255 0.399288 -1.699076 1.124862 5.257448 -2.282699 -0.756185 -0.237153 -0.965688 -0.366519 4.742889 0.764719 1.515730 4.476894 5.842743 0.665712 -3.452886 -1.755039 0.747910 3.320337 4.011371 3.457174 -4.778932 -2.988277 -0.613667 0.222927 -7.244773 1.291907 1.621757 3.238273 0.938292 -4.879083 2.056359 -2.579502 4.848543 3.181161 2.547690 1.512616 -0.316210 -3.819645 5.067942 8.848574 -1.631725 3.519786 -3.112842 -2.975257 5.614643 -3.861001 2.766644 1.077877 -0.309272 0.597815 -2.947786 -0.670454 4.463494 1.553494 2.142381 3.795073 1.124479 -0.146588 -6.960072 -5.774323 0.702505 4.685495 -0.097911 7.888432 -4.447011 -2.193106 -0.978451 5.068708 -0.703251 -1.551198 0.577588 -2.352365 2.799842 -7.478324 -6.206930 7.750212 6.496100 0.861407 0.442398 4.287568 3.975475 -2.153127 -2.344563 -2.488624 2.518553 1.138469 -1.759749 -0.122838 0.009209 -4.326109 -2.296806 0.871903 1.794856 2.769595 -2.454610 -2.377050 0.293175 -5.204077 -3.750202 2.284005 -4.866136 -1.803065 1.033395 -0.407497 -0.207729 1.888519 -0.947099 -0.746066 1.725380 -2.711972 0.211024 2.130571 3.785755 1.303078 5.317712 4.952583 0.115171 4.418351 2.912540 -1.832767 9.234715 -1.856309 1.011076 1.576256 3.159909 0.305104 2.127767 2.100759 -2.281257 -2.234857 -5.472991 2.690739 0.539600 3.108354 -4.495757 -3.255510 -5.726223 -2.409532 3.266762 4.175812 -0.715890 8.812588 -0.546381 0.444811 -8.730117 -0.518571 3.677735 0.186983 3.583974 2.651027 -3.229412 -5.888550 -2.081442 -2.340416 0.663055 -1.985857 -3.636655 -3.278728 -2.228660 2.972027 -2.767293 1.963651 5.376836 -0.799055 1.883959 -1.404682 -0.349092 -1.959097 -1.724096 2.242241 1.278151 -4.373843 5.825632 -1.257017 10.501545 -1.996118 3.648694 -3.472165 1.586392 -0.434389 -1.951127 -0.919622 6.462253 2.999911 0.949178 0.705203 0.386362 -1.646825 3.604269 -PE-benchmarks/cutting-a-rod.cpp__main = 0.291936 0.411870 1.296010 -0.065606 -0.556838 -1.291559 -0.575451 -2.387140 0.824429 0.362598 1.039806 -0.240629 0.603229 -0.037162 -0.050667 0.699864 0.355165 -0.567519 0.519908 -0.512081 -0.571325 1.629952 -0.057498 0.558942 0.115476 -1.744383 0.614938 0.182079 1.028390 0.757290 0.276388 -0.256914 -0.232103 0.475595 -0.017446 0.497855 0.351457 0.391754 -0.842489 0.551230 -0.290490 -0.188997 0.727010 -0.092046 0.951433 0.325140 0.462510 0.429792 -0.145686 -0.333789 -0.527722 1.015115 -0.630308 0.281376 -0.127353 -0.455199 -0.206834 -0.320400 -0.361499 0.366318 -0.541351 -0.408691 -0.573828 0.373941 -0.834410 0.425229 -0.802646 -0.415562 -0.075785 0.174275 0.815765 0.491754 0.214304 0.469256 -1.711766 0.302725 0.143959 0.428135 0.470651 -0.396535 0.140208 0.199607 -0.813733 -0.966055 0.955802 1.292518 0.263135 -0.272705 -0.568577 -0.035097 -0.453461 -0.161807 0.476911 0.713511 -0.682973 0.122080 -0.713314 -0.267149 -0.777769 -1.688010 0.110201 -0.596901 0.583335 -0.234119 0.175883 -0.189580 0.056563 0.196292 -0.320106 -0.991592 0.163404 -0.254112 0.239503 1.612742 -0.325432 -0.113212 -0.621838 -0.319662 -0.354789 0.593170 0.522799 0.276290 1.014283 0.986961 0.444755 -0.680919 -0.819152 0.480331 0.543726 0.458102 0.585850 -1.005505 -0.618916 0.173483 -0.281282 -1.520225 -0.470537 0.366059 0.615968 -0.645583 0.149239 0.066574 -0.451756 0.762911 0.828040 -0.082114 0.280881 -0.071623 -0.672784 0.902699 1.636204 -0.272571 0.706742 -0.933486 -0.179042 0.850573 -0.700376 0.477486 0.230227 0.088587 -0.584136 -0.516360 0.041058 0.718875 0.188391 0.442098 0.147071 0.414921 -0.563445 -0.966294 -1.222358 0.055728 1.191841 -0.251540 0.988123 -0.847673 -0.536710 0.132255 1.050680 0.431256 -0.450095 0.543805 -0.828824 0.525831 -1.054078 -1.155537 1.491393 1.598801 0.694847 -0.077835 0.561109 1.021389 -1.481483 -0.759736 -0.447802 0.657085 -0.153961 -1.965573 -0.860562 0.169599 -0.922658 -0.333940 -0.231034 0.539664 0.565013 0.612699 0.613884 -0.086192 -0.681793 -0.625150 0.996617 -0.469291 -0.411794 0.144042 0.071036 -0.128604 0.531297 -0.533386 0.345180 0.629510 -0.615866 0.442660 0.689972 0.271237 -0.155051 1.352823 1.136180 -0.102642 0.882931 -0.061496 -0.353164 0.861702 -0.188787 0.353548 0.056733 0.083475 -0.364968 0.327209 0.611980 -0.425468 -1.121554 -0.868192 -0.046707 0.094521 0.506606 0.551411 -1.179602 -1.222671 -0.165349 0.315606 1.225153 0.319689 1.430243 -0.346320 0.567846 -1.543713 0.220718 0.184501 -0.028173 0.847536 0.239278 -0.461108 -0.232704 -0.309392 -0.930715 -1.263405 -0.375025 -0.976199 -0.606605 -0.766535 0.733370 -0.458344 -0.161396 0.516769 0.158561 0.798312 -0.215619 -0.153813 -1.011162 0.367413 1.188636 -0.221823 -0.671927 0.680322 0.048626 2.352395 -0.214409 0.446682 -0.216251 0.085277 0.011195 -0.801402 -0.132817 1.222442 0.729858 0.169544 -0.296224 -0.318775 0.145302 0.404735 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -8.605814 -0.103217 35.984715 17.592008 -9.892159 -35.750179 -15.869460 -36.935329 19.180224 -4.576061 32.505094 -1.172128 7.852403 -8.640778 7.957554 2.299805 6.324988 -18.478819 1.450818 -11.990051 -3.105020 30.799705 18.826748 -15.431917 1.878862 -42.541645 7.819403 17.007618 16.184950 24.986571 1.536259 -9.250834 -0.444001 15.844672 -7.422060 8.581146 8.678191 -3.918839 -15.296442 0.553976 4.220567 11.343121 24.751964 -3.093936 23.554048 1.943396 25.439162 6.087376 -16.538760 -7.645817 -28.744068 45.059808 -26.102931 3.679829 3.180129 9.192588 8.817589 -24.701826 -15.253513 -24.147328 -10.835995 6.228344 -16.553409 0.759430 -17.014116 12.426140 -11.015197 -3.532595 14.178208 2.661289 24.937686 13.675235 7.186398 8.048460 -18.440914 11.582367 -3.847483 20.634135 12.415001 -15.749681 -0.008511 9.175448 -5.549583 -10.516210 17.512545 -3.829589 9.369302 -3.780707 -1.785270 2.602166 -10.178172 -5.140789 -3.668939 4.344666 -15.325391 6.094917 0.647955 -7.868926 -17.826856 -11.017025 -2.234097 -16.409258 4.702122 18.908999 0.573572 -3.651753 -21.534912 0.414817 -22.907400 -29.097479 5.195880 -0.743881 -6.164508 26.329405 -30.818836 4.999828 -0.629369 3.805578 -6.228543 25.575392 3.484970 18.444398 10.269913 33.057778 1.056789 -16.017943 -6.550572 -1.872262 33.234511 20.059732 20.374975 -16.732389 -18.408016 -3.848239 -0.683752 -41.760579 1.857679 18.111413 24.262440 28.583041 -33.725488 7.282993 -9.058096 34.917317 16.102657 8.233738 5.876444 -3.794390 -25.776556 32.456441 41.148879 -15.751194 31.893166 -13.586303 -8.910612 25.223525 -29.535201 10.054006 8.909049 -0.360971 9.096059 -14.773787 -12.798396 20.276437 21.372060 14.800920 10.614176 8.774690 5.906017 -44.347294 -33.567877 2.794575 19.804075 -11.974487 27.559546 -19.057036 -19.371835 -5.726662 29.400738 -15.262118 -16.193958 -0.078835 -19.192655 13.070680 -40.515609 -32.692632 51.765966 44.843221 5.601645 13.265587 22.505485 35.550342 -21.754616 1.890161 -9.315450 16.255594 5.344551 -27.062248 -4.637104 -5.798537 -19.380988 -18.172648 0.326945 10.689999 -2.159285 -5.922488 -5.137870 9.252629 -28.288828 -5.813792 11.390604 -30.872647 -13.257938 4.794579 -5.511754 5.914771 11.043883 -9.638842 3.360467 17.918843 -26.130869 -3.290616 9.937028 28.294262 19.737096 32.489717 29.168242 7.120584 37.638345 12.952512 -16.550827 33.579914 -11.269914 5.541793 0.507602 14.467183 4.041977 11.668022 7.695084 -10.794048 -20.135805 -26.011290 13.120055 3.381002 21.671285 -5.738841 -29.812431 -29.277577 -13.749424 27.374432 18.291848 -7.539951 44.067266 -7.433763 -2.708169 -49.308729 -4.842919 19.615516 4.128969 16.233276 12.357521 -11.698485 -37.376804 -11.477922 -12.526522 2.470729 -10.471948 -24.436860 -11.434470 -28.090705 37.798689 -23.821475 9.647276 15.338765 6.488624 17.535002 11.998070 -6.411358 -14.446139 -2.096352 10.319874 11.612501 -20.698342 35.749814 -4.293236 55.836857 -12.669908 13.441024 -23.996924 8.696212 0.091343 -3.838143 -0.413339 33.541587 30.800991 -2.648928 -0.740953 -0.497105 -10.893430 16.956470 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.986734 0.592363 2.228873 -0.340593 -0.781478 -2.338202 -1.068792 -4.887637 1.765541 0.280358 1.754316 -0.515884 0.724147 -0.184782 0.240902 2.466829 0.645716 -1.190681 1.064941 -0.829749 -0.299066 3.454411 -0.121987 1.396510 0.089478 -3.441021 -0.547483 0.392640 2.681320 0.517784 0.496910 -0.967035 -0.130979 0.555237 -0.099617 1.124771 1.043476 0.087281 -2.798184 1.005805 -1.674134 -0.158170 1.066429 -0.920950 2.025091 -0.666212 2.029283 0.971842 -0.015838 -0.208989 -1.817615 4.005158 -0.791865 0.420048 0.500316 -1.158654 -1.069357 -0.641717 -1.312923 1.516604 -1.776779 -0.290885 -0.910539 0.638382 -1.127334 1.098929 -1.259496 -0.192889 0.198599 1.275982 1.813293 1.236344 0.919244 1.318334 -3.449135 0.796409 -0.064674 1.358224 0.412508 -0.895436 1.362889 0.653506 -0.801778 -1.380138 1.998896 2.742649 0.241778 -1.142744 -1.344964 0.574593 -1.393102 -0.841265 0.516459 0.592428 -2.100909 0.320034 -1.480868 -0.413121 -1.645237 -2.957771 -0.230467 -0.995886 0.902083 -1.147484 1.677119 -0.031396 0.105070 0.410401 -0.784301 -1.938924 0.309636 0.619241 -0.189827 3.442603 -1.031508 0.426988 -0.699777 0.036093 -2.121233 0.809818 1.005645 1.306733 1.350967 2.208964 0.813825 -0.807539 -1.535900 0.868723 1.693261 1.166587 1.333214 -1.663627 -1.162678 0.223435 0.144838 -2.797284 -0.982705 1.515396 1.402085 -0.380395 0.718706 -1.295444 -0.197227 2.530945 0.928699 -0.977933 0.372519 -0.288073 -1.138311 2.174241 3.319808 -0.583435 1.671279 -1.802207 0.830361 0.866522 -1.871099 0.968177 0.532282 0.568752 -0.907097 -1.050335 -0.705015 0.891575 1.071445 0.506029 -0.293673 0.902717 -1.219577 -2.299537 -2.273440 -0.055835 1.273874 -1.721391 1.145462 -0.909269 -2.242823 -0.015724 1.667164 0.368869 -0.928964 1.312140 -2.586496 0.959025 -0.838162 -1.924533 3.210743 3.886253 1.179689 0.059613 1.759812 2.634294 -4.318926 -1.426489 -0.287672 1.225714 -0.170746 -5.153056 -2.097756 0.234132 -1.676669 -0.927580 -0.597398 0.993049 0.229337 2.877211 1.966418 0.726785 -1.742362 -0.202964 2.133284 -0.794676 -0.828578 0.351637 0.295944 -0.011993 1.424823 -1.810371 0.985486 1.920160 -1.739675 0.871821 1.218404 0.716910 -0.022078 2.298344 2.345920 0.985264 3.888340 -0.070897 -1.272096 0.617598 0.013298 0.619289 -0.407315 -1.117184 -1.455934 0.480572 0.458477 -0.729261 -2.785264 -1.333672 0.029860 -0.399392 1.292659 2.363126 -3.060164 -1.404778 -0.654698 1.418040 1.222868 0.657025 2.133231 -1.343683 0.925389 -3.817645 0.442925 0.104035 0.316361 1.543171 0.296382 -0.551406 -0.800471 -0.321111 -1.428561 -3.310676 -0.896742 -2.773381 -0.891927 -2.750955 2.946702 -1.314957 -0.554673 0.963155 0.804037 2.230083 -0.272666 -0.547699 -1.964843 1.117842 2.338987 -0.312186 -1.332393 1.117702 -0.119894 5.409665 -0.675412 0.287260 -0.685843 -0.402718 0.314420 -1.243985 0.270880 2.159370 1.786098 0.011593 -1.112935 -1.065283 -0.320006 0.433406 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -2.117180 2.369831 12.797320 8.275606 -7.947931 -9.896123 -5.069236 -12.160167 4.922874 -1.026808 8.034652 0.883279 0.497520 -1.022306 1.782891 -1.416873 0.999485 -2.120066 -0.418648 -3.648090 -2.559639 6.148032 5.376334 -10.213290 1.529934 -10.828609 6.153721 6.566141 3.960139 5.438291 -0.049453 -2.119017 -3.709984 6.883048 -3.416262 -0.957272 2.275879 0.786184 -4.730399 0.721308 3.689354 5.858270 6.474599 -1.363662 7.691521 3.208878 6.166360 3.016805 -7.326411 -0.651056 -4.636800 11.421560 -6.291580 4.971209 2.022681 4.448008 0.082756 -8.955167 -3.360973 -8.375766 -0.333086 1.534652 -4.450955 -0.204291 -6.264109 1.617347 0.200397 -4.182885 5.777532 1.521942 7.400427 0.737354 -0.030350 -1.378756 -4.856195 1.794712 -0.224586 7.126390 4.599603 -3.736351 0.211103 2.086731 -2.555866 -4.132016 0.731037 -0.064099 2.310710 -2.120039 1.626325 -1.364045 0.798043 -2.899051 -1.543695 4.745290 -5.415995 2.801608 -3.817874 -1.562555 -6.355857 -3.033588 0.434729 -5.014687 4.462775 4.492074 -3.229730 -0.396255 -0.353853 2.019713 -3.511259 -7.684802 0.172847 -0.669642 2.865233 8.346774 -3.879828 -0.810821 1.459960 -2.034117 -2.311736 7.240368 1.224698 3.007693 6.549653 11.424754 1.114797 -5.355205 -3.754266 -0.449807 5.903539 8.596370 6.391871 -8.197249 -4.543112 -0.808348 0.172914 -11.740538 3.223918 2.054621 6.782368 4.086193 -8.661998 0.514895 -4.544761 9.589995 2.510172 5.233526 1.449834 -1.248145 -6.582401 8.641070 14.006244 -2.874386 6.305993 -2.692363 -3.515092 6.485638 -5.865708 4.634566 3.351183 -0.613610 2.688200 -4.857567 -3.907038 6.976808 4.775217 3.347747 5.631991 1.898042 -1.946261 -13.008086 -9.206747 1.172734 6.350051 -1.827663 11.498830 -6.844408 -6.270468 -3.257217 10.168107 -3.188810 -3.126501 0.527650 -4.322042 4.865769 -7.800486 -9.076395 11.843220 13.345511 0.554435 0.598633 9.305958 5.820942 -5.595509 -3.777912 -3.834051 3.139932 1.796190 -1.578334 -0.422079 -0.349307 -6.998890 -3.201573 2.124161 3.289548 3.430550 -2.408878 -4.665932 4.963494 -9.155481 -5.289301 2.303659 -7.506466 -1.800802 2.528554 -0.494814 0.976393 2.972929 -3.564686 -3.143541 2.874149 -5.618770 1.302228 3.544154 7.230795 3.135425 9.285045 5.507707 2.248809 10.827997 5.516029 -4.703964 15.826600 -2.588296 2.752888 2.762585 4.312052 -1.023889 3.100756 2.680121 -3.853401 -3.478575 -8.778782 3.348339 -0.730746 6.764060 -8.495324 -6.849882 -8.566314 -4.382946 6.895765 3.465270 -2.250861 13.783164 -0.252113 0.777526 -16.062591 -1.627207 6.371974 -0.386353 5.084686 3.957217 -5.380104 -14.807971 -2.395113 -3.535855 0.498907 -3.281131 -5.146842 -4.984457 -3.948906 6.760098 -2.741619 3.073512 9.362523 -1.018639 3.077746 -2.328372 -0.878439 -0.619165 -4.794082 3.705001 2.161423 -9.017682 10.167464 -0.865066 20.116456 -2.566514 5.644235 -5.928543 0.130775 0.539991 -1.453041 -1.087678 10.176522 6.113128 3.072349 -0.354104 1.377094 -5.501690 5.268602 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.171495 1.184785 4.133892 2.480676 -2.416281 -3.105407 -1.604965 -4.258446 1.746839 -0.241972 2.422273 -0.059964 0.424184 -0.426258 0.098384 -0.559958 0.521651 -0.495673 -0.106483 -1.227267 -1.281759 2.274663 0.975397 -2.748873 0.531272 -3.845514 2.228115 1.923029 1.533246 1.691241 0.117561 -0.511363 -1.146624 2.101332 -1.122935 -0.421585 0.783184 0.367142 -1.711853 0.140287 1.142929 1.696470 2.248133 -0.267147 2.018779 1.182679 1.439731 0.996972 -1.982274 -0.221316 -1.229050 3.161133 -1.578573 1.504189 0.613938 1.028901 0.365084 -2.688333 -0.672179 -1.638924 -0.197181 0.306144 -1.255220 0.044436 -2.131986 0.408675 -0.120550 -1.520750 1.714575 0.104225 2.119428 0.306879 0.016413 -0.599872 -1.867244 0.728802 0.237432 1.994034 1.566122 -0.759437 0.391415 0.607405 -1.281795 -1.553288 0.606896 0.547816 0.896642 -0.386856 0.261802 -0.982193 0.394211 -0.920546 0.014508 1.569067 -1.497484 0.701355 -1.801314 -0.634537 -2.117651 -1.715779 0.154902 -1.488443 1.456852 1.183650 -1.378120 0.038589 0.496146 0.500710 -0.595821 -2.276686 0.066259 -0.584015 1.231716 3.253505 -0.943831 -0.826058 -0.074763 -0.919804 -0.897395 2.198885 0.342997 0.659992 2.340313 3.258881 0.565680 -1.793440 -1.269191 0.098370 1.389854 2.375760 2.053257 -2.811798 -1.407089 -0.175370 -0.029745 -4.015817 0.731144 0.135389 2.085421 0.656992 -2.408066 0.582967 -1.502551 2.551083 0.742301 1.309089 0.617124 -0.411268 -1.920712 2.548880 4.153879 -0.836043 1.796884 -1.404862 -1.495401 1.885951 -1.376034 1.376417 0.684810 -0.358255 0.599438 -1.451946 -0.487856 2.301558 0.758513 0.774865 1.720729 0.560991 -0.890525 -3.912526 -3.082187 0.691256 2.028061 -0.497081 3.787604 -2.323614 -1.756826 -0.867580 3.420156 -0.926779 -0.756591 0.478402 -1.515971 1.544551 -2.223088 -3.114794 3.658275 4.001275 0.077317 -0.060692 2.608269 1.447623 -1.832289 -1.445773 -1.432352 0.911309 0.823533 -1.102341 -0.390765 -0.016173 -2.099103 -0.767519 0.706828 1.087279 1.580787 -0.897555 -1.036574 0.589785 -2.788816 -2.256622 1.312460 -2.160035 -0.222529 0.892305 -0.135109 -0.017530 1.364958 -0.981921 -1.198433 0.696848 -1.395963 0.479390 1.013252 2.142434 0.441760 3.057128 1.822034 0.396018 3.177606 1.614256 -1.358351 5.094482 -1.070319 0.834236 0.791033 1.528265 -0.437457 1.214595 1.089733 -1.267251 -1.190606 -2.865943 0.769994 -0.332340 1.558187 -2.607483 -1.926491 -3.046897 -1.456290 1.490705 1.410634 -0.337055 4.418184 -0.230938 0.119059 -4.761636 -0.446752 1.982883 -0.169968 1.901476 1.240331 -1.858015 -4.063570 -0.759977 -1.545403 -0.293668 -1.041640 -1.841606 -1.698104 -1.142638 2.075048 -0.701218 0.988649 3.114168 -0.174658 0.769437 -1.046619 -0.139151 -0.543498 -1.438097 1.386219 0.312108 -2.556388 2.957379 -0.219356 5.981974 -0.557829 1.825634 -1.792631 0.004667 0.270860 -1.155715 -0.651066 3.216145 1.625806 0.915748 -0.132907 0.326706 -1.493495 1.912847 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.120944 0.280730 0.808663 -0.243909 -0.429925 -0.992088 -0.311563 -1.624222 0.439285 0.300857 0.792193 -0.143506 0.530828 -0.047247 0.055819 0.454953 0.394365 -0.324053 0.315798 -0.438942 -0.334510 0.727853 -0.220085 0.553542 0.168769 -0.890526 0.400335 0.174394 0.462440 0.478121 0.329171 -0.144145 -0.407016 0.230733 0.138955 0.431946 0.414271 0.252154 -0.537590 0.384433 -0.284347 -0.260411 0.492208 -0.004636 0.708607 0.291508 0.131024 0.398353 -0.139652 -0.346576 -0.164197 0.473899 -0.369925 0.180639 -0.055303 -0.403305 -0.135137 -0.105641 -0.105278 0.226289 -0.257111 -0.471646 -0.359498 0.266383 -0.465062 0.226539 -0.535017 -0.335119 -0.143490 -0.121679 0.426937 0.120051 0.005621 0.519584 -1.071843 -0.003264 0.165202 0.206622 0.377424 -0.262137 0.081585 -0.062653 -0.573577 -0.619613 0.611565 0.871205 0.252860 -0.027373 -0.666442 0.089821 -0.218463 -0.100002 0.507945 0.380771 -0.440997 -0.108365 -0.361086 -0.261558 -0.549541 -1.234357 0.281816 -0.228782 0.393174 -0.278362 0.054292 -0.212633 -0.217931 0.158026 -0.326572 -0.507995 0.208522 -0.293635 0.218366 1.020991 -0.251388 -0.158575 -0.609579 -0.324210 -0.021285 0.344105 0.401718 0.059900 0.536602 0.601704 0.338629 -0.516089 -0.677914 0.299286 0.350344 0.279356 0.282984 -0.593960 -0.364095 0.262298 -0.580404 -0.950555 -0.406749 0.080787 0.482628 -0.415507 0.169746 0.010796 -0.441101 0.314777 0.527770 0.081750 0.126401 0.005234 -0.510216 0.407047 0.743341 -0.182645 0.521207 -0.378999 0.047415 0.216927 -0.262740 0.161231 0.261604 -0.127828 -0.477294 -0.125837 -0.057601 0.403247 0.265485 0.366068 -0.129535 0.395229 -0.581426 -0.494974 -0.832743 0.023994 0.969880 -0.090264 0.393151 -0.629176 -0.311281 0.065850 0.802562 0.211615 -0.454898 0.381702 -0.479654 0.362039 -0.483451 -0.588612 0.902726 1.034619 0.623823 -0.139095 0.195757 0.544808 -1.142467 -0.406843 -0.244549 0.337157 -0.279759 -1.452861 -0.584970 0.133999 -0.631918 -0.168635 -0.183678 0.443123 0.267264 0.495178 0.670897 0.027580 -0.163548 -0.366020 0.547493 -0.082001 -0.237378 0.094056 0.014133 0.055155 0.256106 -0.413601 0.226681 0.462757 -0.474336 0.317563 0.463950 0.181837 -0.037143 1.086039 0.507640 -0.138776 0.444918 -0.242912 -0.320389 0.357121 -0.058704 0.402591 0.028779 0.100988 -0.099572 0.121544 0.536129 -0.313767 -0.729122 -0.551901 -0.422382 0.179128 0.460249 0.590311 -0.814185 -0.952056 0.094334 0.022411 0.921523 0.079968 0.820342 -0.147894 0.462866 -0.725086 0.166914 0.045841 -0.168247 0.370961 0.074136 -0.303312 -0.067939 -0.129046 -0.851493 -1.070633 -0.093573 -0.309485 -0.352247 -0.424815 0.456364 -0.196291 -0.273907 0.109776 0.085902 0.527486 -0.034453 -0.049265 -0.546962 0.303124 0.876445 -0.227008 -0.491543 0.423880 0.248644 1.524036 0.076080 0.259673 0.042657 0.040080 0.023475 -0.519781 -0.204343 0.738070 0.627400 0.204699 -0.236921 -0.138300 0.217108 0.251038 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -2.386614 0.055020 9.260040 6.270159 -3.871199 -6.299783 -3.643884 -7.565376 5.540854 0.068807 5.228203 1.505521 1.376216 -2.428275 0.254588 -1.615471 0.300618 -2.999299 -0.022575 -2.161504 0.116974 8.405519 5.278470 -8.317176 0.290543 -11.204042 5.490537 3.641448 4.185188 7.092807 -0.783613 -0.967992 -0.798354 5.222229 -3.078596 -0.201957 1.034749 0.785080 -2.779014 -0.179735 3.422052 5.461925 5.006699 -0.620561 6.200737 2.002515 3.824804 1.057848 -3.839417 -1.229387 -3.567252 6.478776 -5.194049 3.482583 -0.322374 3.735951 0.594770 -6.150685 -2.745187 -8.250716 0.021708 2.656895 -3.212690 -0.094589 -5.229145 1.704412 0.060427 -2.389157 2.802684 -0.107691 5.479658 2.572430 1.539128 -2.844009 -5.216182 2.448331 -0.699003 4.434001 3.489459 -2.136136 -2.501578 1.253664 -1.865684 -3.386359 1.067904 0.965713 0.449304 -0.116250 2.602425 -2.050124 -0.820879 -1.373708 -1.670345 3.910398 -3.133458 2.169082 -1.073999 -0.315392 -1.958766 -0.515546 -0.217679 -4.273541 2.127241 4.473807 -1.100933 0.084799 0.580451 1.225560 -2.844519 -4.996086 1.435111 -0.676771 0.892783 6.116247 -2.630227 -0.155426 0.431368 -0.386646 -1.095709 6.696828 -0.932692 2.870176 4.861387 7.616206 0.745559 -4.320417 -1.152494 1.877853 5.242623 4.847085 4.309174 -6.067756 -3.309586 -1.173784 1.469149 -8.340803 1.400407 2.379998 4.601200 1.700743 -7.170222 2.859790 -2.591201 7.948721 3.719652 1.787252 1.591270 -0.450790 -5.719182 7.071717 12.722194 -1.669751 3.789443 -4.253053 -4.237794 7.920819 -5.403767 4.419259 0.445638 0.178100 1.895973 -4.227596 0.036068 5.473809 1.976536 3.286177 3.851353 1.187674 1.089027 -9.837627 -7.413305 -0.869028 4.336111 0.143353 11.137169 -4.711597 -3.241887 -2.920562 6.074607 -0.825681 -1.094385 0.248480 -3.611607 3.336064 -10.636381 -8.035745 10.882963 10.560456 1.552719 1.918517 6.725915 5.077346 -0.178990 -2.003634 -1.850130 2.597191 2.371501 -0.454087 0.552767 -0.289325 -5.172112 -4.738089 1.487966 1.500101 2.808586 -3.058535 -4.243707 1.569287 -6.923959 -4.806992 1.993686 -6.972497 -2.243864 1.426646 0.255251 -0.294749 2.343760 -1.555665 -0.694710 2.624978 -2.688696 0.530307 2.432392 4.662138 2.131786 3.492521 6.515941 0.560411 6.291056 4.298638 -2.256110 13.158876 -2.746170 0.740881 2.282566 2.939938 1.095043 2.623885 0.712946 -2.761045 0.169939 -6.596079 5.098234 0.513176 4.058601 -8.415615 -5.720718 -5.522666 -3.096194 4.560631 3.146961 -0.769782 11.627133 -1.323856 0.002601 -13.321432 -0.970796 5.710508 1.311456 4.252701 3.719141 -3.736642 -11.142853 -2.227013 -1.801596 2.476431 -3.915041 -5.890454 -3.379035 -2.734413 5.232534 -3.847799 3.437816 8.186611 -0.622469 3.177237 -2.475372 -0.326159 -3.118780 -3.169153 -0.321347 2.371396 -4.964329 6.368543 -2.103405 11.717251 -3.929563 4.763503 -4.846338 3.949714 -1.584895 -2.798157 -0.526979 7.997052 3.231841 0.717464 1.254698 -0.377878 -3.224791 4.423463 -PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = -2.337948 1.218049 14.648967 10.065627 -6.932404 -10.392455 -5.577240 -12.907178 7.578487 -1.369412 8.067117 1.474621 1.018881 -3.269084 0.506349 -2.549723 0.508596 -4.023660 0.112573 -3.559833 -1.097696 10.825969 6.439264 -12.550383 1.053704 -17.186529 8.769968 6.750719 6.549255 9.515093 -0.860017 -2.467267 -2.039075 8.280113 -3.926115 -1.519511 2.429049 0.108039 -5.288710 0.384893 4.766552 8.465462 8.187879 -1.363400 8.432252 3.033561 6.488034 2.623401 -6.397209 -0.723006 -6.539873 11.664878 -7.660588 5.241121 0.932889 5.544237 1.078672 -10.551111 -4.365628 -10.027836 -0.683283 3.619741 -4.421780 -0.226958 -8.297166 2.218366 -0.408594 -3.822871 6.225475 1.246363 8.532489 3.756409 2.105834 -3.431866 -7.022894 3.932779 -0.840661 8.355899 5.243424 -4.397371 -1.238055 3.003312 -3.061346 -4.593104 1.053623 0.980571 1.687171 -1.757550 3.948255 -3.426064 -0.444585 -2.721474 -2.640327 5.337392 -4.820010 2.967072 -4.670308 -0.631141 -4.539546 -2.476887 -0.742298 -6.313657 4.035364 6.827626 -2.816558 0.318927 1.550562 1.902299 -3.685999 -8.124468 1.210871 -0.738113 2.681219 10.345835 -4.212622 -0.998962 0.531587 -0.989443 -2.713022 9.719595 -1.090843 4.161413 7.614334 12.989975 1.122171 -6.257059 -2.844196 1.445104 7.141178 8.813061 7.670549 -9.845061 -4.992596 -2.336453 2.382304 -13.675063 3.530377 2.107109 7.405612 4.000312 -10.977147 2.594584 -4.702603 12.502574 4.402795 3.530038 2.552276 -0.948643 -8.060478 12.037055 18.578340 -2.907808 6.251587 -6.998996 -5.356075 9.938367 -7.576106 5.952991 1.102346 0.192563 3.840156 -6.518281 -1.524872 8.326699 3.505136 4.243088 7.305231 1.804153 0.780328 -15.794917 -10.557092 0.853740 6.544094 -1.621853 16.125346 -7.777003 -6.113998 -4.527482 10.309454 -2.235912 -1.847108 0.710478 -5.795248 5.337569 -13.346032 -12.184270 15.721211 15.897304 0.571421 2.146814 10.147354 8.113021 -3.116656 -3.087977 -3.692878 3.797829 3.444483 -2.148735 0.168662 -0.509985 -7.444117 -6.225471 3.270552 2.840798 5.561471 -4.600556 -7.109291 3.242320 -11.657469 -7.854990 4.480600 -10.969636 -2.692554 2.956414 -0.455071 0.326821 4.507581 -2.791013 -2.324769 4.214452 -4.664705 0.769788 3.763519 8.398786 3.075177 6.762993 8.790455 2.571152 11.457740 7.923004 -4.427638 20.032372 -3.475920 1.931771 3.778753 4.166211 0.225583 4.666639 1.524633 -4.489884 -1.899919 -10.703996 6.998448 -0.686675 6.901820 -11.583689 -7.922026 -9.144663 -5.994866 8.008393 3.797085 -1.109435 17.390615 -1.224675 -0.594029 -19.404276 -2.360439 8.798782 1.900119 6.893144 5.457462 -6.046107 -16.541181 -3.294864 -3.157227 3.207119 -5.674268 -8.567008 -5.889704 -4.833017 8.825199 -4.346287 5.204662 12.713380 -0.674540 4.051448 -3.888403 -0.778232 -3.438907 -5.691506 0.812439 3.613922 -8.731601 11.074647 -2.852796 19.638872 -5.104243 6.225509 -8.176055 3.096946 -0.880354 -3.347111 -0.670639 12.224820 5.063599 2.026180 0.952034 -0.105986 -5.952272 7.274930 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -0.015065 0.371338 1.393551 0.078935 -0.969490 -1.961066 -0.743597 -2.710090 0.806444 0.523361 1.504316 -0.197386 0.895797 -0.055182 0.065645 0.581482 0.626102 -0.736856 0.501388 -0.847979 -1.137707 1.727003 0.075921 0.513188 0.279345 -1.722716 1.310250 0.390019 0.598013 1.196841 0.482158 -0.077747 -0.485969 0.653018 0.081654 0.801815 0.232391 0.613834 -0.493181 0.749013 0.170442 -0.447864 1.166697 0.158487 1.210214 0.936617 0.449391 0.616672 -0.527415 -0.701980 -0.472033 0.556915 -1.019464 0.333416 -0.538468 -0.381016 0.225305 -0.504993 -0.314265 0.013026 -0.467156 -0.828133 -1.014171 0.468503 -1.107356 0.488287 -1.020368 -0.704196 -0.187067 -0.066588 0.951722 0.323902 -0.259355 0.547467 -1.815225 0.038413 0.275926 0.361302 0.752404 -0.559396 -0.331769 0.046881 -1.341521 -1.231026 1.159641 1.105015 0.546895 -0.050292 -0.759605 -0.110113 -0.422071 -0.016590 0.812682 0.950545 -0.549781 -0.066163 -0.294517 -0.509739 -1.184237 -1.932642 0.510332 -0.583360 0.774415 0.007733 -0.271168 -0.478787 -0.348715 0.127078 -0.716468 -1.246951 0.113799 -0.799226 0.513069 1.672105 -0.388086 -0.289473 -0.995560 -0.653832 0.227147 0.906673 0.809908 0.039932 1.509810 1.234956 0.368265 -0.971790 -1.129557 0.299447 0.666396 0.483374 0.649565 -1.165061 -0.895225 0.348322 -0.839654 -1.727860 -0.657597 0.300030 0.840763 -0.804335 -0.114347 0.732839 -0.778392 0.562977 1.218503 0.308606 0.279407 -0.072656 -1.045234 1.003872 1.810844 -0.321784 0.903707 -0.991565 -0.524734 1.389769 -0.672930 0.279358 0.641758 -0.272010 -1.041811 -0.351652 0.199399 0.869629 0.239050 0.615951 0.363740 0.658590 -0.624949 -0.921738 -1.596953 0.229222 1.894410 0.279149 1.452349 -1.402832 -0.143745 0.184125 1.283991 0.538630 -0.775222 0.483056 -0.649023 0.635101 -1.741680 -1.345313 1.856490 1.511699 1.082962 -0.000189 0.486281 1.074701 -1.306188 -0.715393 -0.731767 0.920064 -0.167630 -1.771061 -0.654488 0.222316 -1.247232 -0.423582 -0.392138 0.836694 0.731555 0.017719 0.511477 -0.523000 -0.641144 -0.896903 0.840352 -0.550517 -0.490913 0.205857 -0.152889 -0.118845 0.338276 -0.227783 0.442606 0.271117 -0.716779 0.492365 0.874910 0.440610 0.000000 1.920992 1.420675 -0.657107 0.440943 -0.245104 -0.276129 1.148068 -0.246786 0.650949 0.194656 0.727856 0.106235 0.226340 1.185118 -0.484838 -1.076250 -1.074960 -0.078450 0.591625 0.696889 0.134868 -1.013573 -2.190627 -0.047159 0.172125 2.120722 0.085165 1.787632 -0.188804 0.735543 -1.577367 0.290128 0.196223 -0.156420 0.742233 0.233078 -0.645749 -0.122011 -0.410276 -1.403636 -1.216864 -0.274010 -0.518925 -0.909609 -0.422345 0.293096 -0.535347 -0.268009 0.588090 -0.103196 0.642039 -0.059267 -0.121047 -1.003430 0.242117 1.501059 -0.259020 -0.830446 1.030954 0.240976 2.655588 0.070683 0.793846 -0.060078 0.390294 -0.080905 -1.028152 -0.352546 1.435310 0.965681 0.095798 0.049395 -0.074337 0.606824 0.617266 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -5.095014 4.275603 29.525250 19.416493 -17.130023 -22.757016 -10.618258 -27.769395 12.614694 -0.525141 18.701991 2.994750 3.201335 -2.806809 3.951787 -2.629422 1.913927 -5.755781 0.369997 -8.183794 -4.717170 18.426825 14.696351 -22.330565 2.319932 -26.254947 16.713578 13.891208 11.750136 15.346267 -0.298059 -4.739477 -6.713599 15.638395 -7.894188 -1.115248 1.041503 3.440521 -9.769348 2.258312 8.743778 11.861302 14.025077 -2.639523 17.868603 7.250720 16.887572 5.617585 -14.746496 -2.955971 -12.051439 24.170793 -16.850026 10.735208 1.235310 9.076901 -0.391415 -18.047142 -7.824479 -20.497891 0.043067 3.714167 -12.444765 0.610851 -17.115635 4.647722 -3.292671 -9.486882 10.463850 3.809200 17.416437 3.997326 0.540854 -5.343139 -14.925047 4.324521 -1.966018 14.761735 10.843696 -8.523844 -3.033250 4.647297 -6.773390 -10.535207 3.285558 0.891064 3.788517 -5.288632 4.421192 -3.375583 -0.469766 -4.569152 -4.379198 11.897955 -13.270217 8.543926 -8.255487 -2.212384 -12.564340 -7.061014 0.712500 -13.359345 9.937608 10.534265 -5.849702 -1.513085 -1.349848 3.489530 -8.124312 -19.565396 -1.041775 -1.529815 6.499176 19.266886 -9.371828 -0.549621 2.357704 -2.884728 -3.629272 17.202331 3.629071 7.550218 17.553074 25.012096 2.573849 -13.139257 -7.177880 1.495972 13.576073 19.125901 14.087018 -17.975068 -11.525513 -2.530788 2.117371 -27.244992 7.460580 8.015829 14.262329 7.121048 -19.736542 3.088585 -9.679852 21.777572 9.990661 11.152315 4.615760 -1.953799 -14.529382 19.703453 35.553554 -6.336983 13.215776 -8.235537 -9.987321 21.214912 -15.283792 11.148948 7.006505 0.899321 4.525020 -12.515486 -7.449638 16.873320 9.647988 9.129661 15.180705 4.324643 -1.142806 -30.163451 -20.482984 1.051282 15.349244 -1.713806 27.933682 -15.817286 -10.240927 -5.501551 19.648601 -3.467453 -7.119699 0.502273 -9.748849 10.660973 -24.628517 -22.325325 27.247979 29.300351 2.059949 2.153152 19.980448 15.805293 -10.193522 -8.523236 -9.574887 9.354271 2.405340 -3.031186 -0.204408 -0.209026 -18.262106 -8.116932 4.390952 7.211670 9.345077 -7.460325 -12.298874 8.634061 -21.867023 -13.654706 6.211078 -18.025017 -5.633182 3.722355 -0.920831 1.936581 5.467446 -7.014089 -4.068050 6.881486 -11.998859 2.352818 8.733359 15.245685 6.572811 20.858964 14.447709 3.390206 20.081295 11.893802 -9.468522 37.964239 -5.228737 4.860004 6.080404 11.135143 -1.461402 7.773189 5.802552 -8.922659 -8.232895 -20.194379 9.319906 0.344325 14.644763 -19.319136 -14.638993 -19.733390 -9.474904 15.656173 11.486298 -3.801218 33.217798 -1.981287 3.014556 -37.023834 -2.991129 13.575221 -0.270474 14.076941 9.895526 -12.029800 -28.222652 -6.935458 -6.146863 3.825625 -8.084309 -12.830527 -11.944977 -7.338481 12.381189 -8.194648 6.676999 19.625339 -3.011691 8.576073 -4.623334 -1.599670 -3.363866 -8.799352 8.353319 6.968247 -20.295720 23.079845 -3.582829 44.254720 -7.421280 13.814752 -13.837168 2.623607 -0.794501 -4.739330 -2.686937 24.556178 13.717409 5.938244 0.532964 1.695143 -9.973309 11.476959 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.999111 0.719244 2.455985 -0.261433 -1.150929 -2.902610 -1.251301 -5.580999 1.876406 0.435878 2.144636 -0.583510 0.935087 -0.178589 0.227943 2.600188 0.738233 -1.349344 1.183604 -1.051825 -0.951301 3.816637 -0.152522 1.610159 0.144573 -3.652760 0.050191 0.535924 2.707381 0.762566 0.641409 -0.950572 -0.225377 0.773850 -0.020274 1.371353 0.885387 0.385312 -2.673636 1.229077 -1.442073 -0.540166 1.431907 -0.814636 2.246886 -0.311339 2.208978 1.104846 -0.224806 -0.376044 -1.956631 3.934057 -1.175906 0.448445 0.192592 -1.318464 -0.845712 -0.735634 -1.322279 1.617030 -1.915697 -0.704278 -1.313788 0.762206 -1.456118 1.181243 -1.585746 -0.477658 0.109844 1.338598 2.028275 1.301947 0.674187 1.474205 -3.868443 0.736206 0.109530 1.340155 0.659157 -1.038331 1.249550 0.646464 -1.296565 -1.737973 2.401507 2.880071 0.495650 -1.159625 -1.533360 0.541967 -1.462270 -0.729010 0.823183 0.932835 -2.113696 0.292564 -1.529328 -0.577716 -2.122250 -3.552406 -0.023368 -1.164102 1.177288 -1.099760 1.378654 -0.221979 -0.021944 0.328666 -0.990708 -2.370873 0.118016 0.167241 0.137805 3.741122 -1.054323 0.298224 -0.951666 -0.225560 -1.889389 0.942615 1.374518 1.165707 1.961617 2.468898 0.887332 -1.105584 -1.906209 0.812978 1.731525 1.293972 1.421627 -1.925640 -1.415979 0.305015 -0.096936 -3.246560 -1.105926 1.555299 1.491008 -0.705712 0.737209 -0.914403 -0.403294 2.471217 1.327007 -0.781514 0.441019 -0.258236 -1.341218 2.373215 3.670477 -0.613929 1.844282 -2.058276 0.573608 1.405723 -2.014462 0.935187 0.823444 0.427144 -1.310534 -1.117795 -0.610070 1.121246 0.989952 0.602417 -0.029945 1.069103 -1.375703 -2.396771 -2.604145 0.173219 1.948992 -1.453409 1.560217 -1.405118 -2.069949 0.245511 1.901397 0.584857 -1.131960 1.398685 -2.611851 1.160289 -1.340844 -2.291651 3.530889 3.889923 1.423468 0.068849 1.772838 2.834820 -4.540178 -1.618026 -0.613885 1.515473 -0.163484 -5.459910 -2.199612 0.309438 -2.012126 -0.905075 -0.724445 1.227088 0.482763 2.627190 2.005221 0.340266 -1.822998 -0.491917 2.316641 -0.914975 -0.925151 0.365315 0.197545 -0.074397 1.455833 -1.681583 1.108070 1.689145 -1.859971 1.025647 1.449999 0.772360 -0.067772 2.960572 2.762824 0.562731 3.743975 -0.166200 -1.149476 0.815559 -0.040868 0.807992 -0.249626 -0.690480 -1.360627 0.550990 0.997282 -0.861499 -3.032592 -1.603328 -0.021156 -0.124460 1.387679 2.341813 -2.983079 -2.187335 -0.692092 1.424654 1.924166 0.637513 2.532210 -1.269286 1.143766 -4.019030 0.502977 0.038484 0.219056 1.792136 0.318696 -0.743461 -0.493218 -0.521384 -1.750089 -3.566742 -0.887596 -2.634396 -1.196148 -2.665724 2.638308 -1.427547 -0.647974 0.978567 0.675321 2.182593 -0.330946 -0.512662 -2.128440 1.173791 2.901141 -0.411428 -1.519181 1.440322 -0.037862 6.050970 -0.548241 0.540479 -0.652658 -0.293884 0.334553 -1.475758 0.146528 2.499439 1.951072 0.016987 -1.039239 -0.938010 -0.019122 0.655744 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.769839 -0.171084 2.264612 1.776838 -1.802038 -2.856437 -1.091248 -3.547369 1.986153 0.654429 2.208930 0.561558 1.510374 -1.669864 -0.119993 -0.174788 1.029038 -0.759924 -0.132324 -1.257491 -0.778713 2.944036 0.592421 -1.594273 0.258598 -2.655329 2.223813 1.110571 0.847999 2.125653 0.631020 0.166783 -0.923687 1.268652 -0.569603 0.944400 0.197025 0.867273 -0.881154 -0.456117 1.172988 0.138003 2.054610 0.020027 2.431475 0.451501 1.079123 0.539844 -1.387735 -1.137459 -0.626365 0.958498 -1.606125 0.921549 -0.600211 0.146863 0.767031 -1.191763 -0.329475 -1.859513 0.096305 -0.531231 -1.546025 0.129722 -1.576242 0.640226 -0.162048 -1.260895 0.097475 -0.955683 1.438742 0.364987 -0.197290 -0.458416 -2.352671 -0.106463 0.326134 0.543784 1.546248 0.314281 -0.721457 -0.910945 -1.527791 -1.384215 1.525079 0.846231 0.494456 1.004544 -0.707303 -0.529259 -0.073067 -0.232181 1.005920 1.055092 -1.169936 -0.329813 0.329616 -0.540991 -0.902084 -1.269853 0.961076 -0.883304 0.869001 0.910042 -0.869605 -0.006097 -0.085076 0.051804 -1.543090 -1.429832 0.350651 -1.421826 0.850311 2.381212 -0.746173 -0.772345 -1.186631 -0.687422 0.359739 1.743397 0.439281 0.456902 2.241602 2.033284 0.626526 -2.051490 -1.186043 1.043152 1.510833 1.145402 0.705180 -1.822090 -1.128925 0.470440 -1.007527 -2.889389 -0.846173 0.418298 1.708123 -0.257925 -1.547321 1.517649 -0.939864 1.549822 1.590551 0.475540 0.360253 0.320607 -2.086733 1.627268 2.952653 -0.234473 1.189400 -1.078811 -1.294231 2.247234 -1.075235 0.602960 0.596216 -0.872503 -0.758479 -0.614322 0.667570 1.547417 -0.006795 0.956709 0.001628 1.161010 -0.853503 -2.503276 -3.000806 -0.009661 2.646791 1.370565 3.519028 -2.267132 -0.518746 -0.222947 1.966867 -0.003709 -0.957391 0.679298 -1.394800 1.415899 -3.302455 -2.604007 3.728589 2.626861 1.614839 0.393577 1.615200 1.043653 -0.780500 -0.579517 -0.804894 0.831044 1.093386 -1.394068 0.120368 0.265534 -2.172134 -1.677498 0.139457 0.910923 0.627198 -0.913172 0.491567 -0.859307 -0.787704 -1.650869 1.044898 -1.179461 -0.363278 0.071046 0.036255 0.040345 0.730761 -0.352276 0.146488 -0.061486 -0.603096 0.545845 0.712245 1.140461 0.525208 2.144644 2.724204 -1.266061 1.328566 0.086049 -0.666568 3.272346 -0.797413 0.820387 0.653744 1.487751 1.083305 0.363156 1.493390 -1.084440 0.162450 -1.994254 0.027797 1.200383 1.400922 -2.262647 -1.381535 -3.205348 -0.385477 0.097086 2.176932 -0.475636 3.438817 -0.962886 0.423358 -3.633536 0.108023 1.457272 -0.093503 1.129404 0.729399 -1.265298 -2.263705 -0.747021 -1.727666 -0.630243 -0.761116 -0.833854 -1.333083 -0.700908 1.239807 -1.352121 0.283885 2.024572 -0.490183 1.023292 -1.032650 0.365591 -1.054060 -0.333850 0.215033 0.251743 -1.538523 1.958016 0.064777 3.955039 -0.181992 1.551225 -0.765680 2.011447 -1.001967 -2.142853 -0.650790 2.404490 1.586207 0.087990 0.529441 0.199797 -0.013065 1.670143 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = -3.585298 -1.964274 6.076060 4.640269 -3.631953 -6.443994 -3.006339 -8.184331 5.526859 1.356781 6.301476 1.761391 3.395273 -5.211640 0.734742 -0.274270 2.556870 -3.247556 -0.367149 -2.703348 1.024628 7.975919 3.247499 -5.271399 0.474285 -7.681208 3.028609 2.864972 2.168350 5.244156 0.924167 -0.095828 -1.861242 3.031753 -1.769991 2.975583 1.943526 1.057936 -2.707885 -1.975612 2.176043 2.110430 4.635854 -1.300187 7.545583 -0.697138 3.872441 0.900915 -4.323489 -3.056010 -2.014161 5.019939 -4.316366 2.399304 0.157579 1.164440 1.143105 -3.961862 -2.305338 -7.360097 0.108705 0.184750 -3.200781 -0.047529 -2.838254 2.287373 1.204906 -1.654113 1.409538 -2.109216 4.189595 1.503800 0.826495 -0.420594 -4.665189 0.597837 0.301732 2.130044 3.025344 0.234774 -1.722592 -1.961562 -1.847503 -2.678518 3.345050 1.674181 0.762478 2.051151 -1.530679 0.393744 -0.525368 -1.454594 0.749132 1.773961 -4.047967 -1.113405 2.819311 -1.305907 -1.519275 -0.751544 1.484225 -2.658575 1.342599 3.727395 -0.690921 0.321016 -1.728270 0.816830 -5.370596 -3.460218 1.997656 -1.950877 0.549422 5.275721 -3.640883 -0.255645 -2.230910 -0.271223 0.236246 4.865207 -0.167973 2.994823 4.336626 6.150630 1.330724 -4.752662 -2.198870 2.720179 6.367079 3.225498 1.895213 -4.662783 -2.675698 0.928119 -2.071038 -6.910207 -2.676174 2.353025 5.344013 2.005099 -5.697362 2.717211 -1.399795 6.871229 3.746518 0.432799 0.229534 1.026699 -6.066568 5.239792 8.173263 -1.216110 3.948284 -1.894538 -2.200113 5.123871 -4.218897 2.176050 1.905245 -1.317596 -0.648020 -2.331934 0.377737 3.714843 2.203019 3.339632 -1.737046 3.067379 -0.825918 -7.909879 -8.530230 -1.218306 5.009135 2.149993 9.080424 -4.731738 -3.633102 -1.905884 5.206047 -1.254934 -3.145839 1.206216 -4.525935 3.410139 -8.442817 -6.695920 11.351435 9.364581 4.406876 2.353477 6.077494 3.827625 -2.703910 -0.139027 -0.870248 2.328816 2.922594 -3.818329 0.643929 0.483365 -5.477770 -6.021191 -0.122690 1.775656 -0.381149 -0.895494 1.007095 0.741281 -2.827679 -1.803775 1.842531 -3.691167 -1.953126 -0.205458 0.359575 1.302766 2.139255 -2.255884 0.747874 1.249454 -3.099662 0.653185 1.779923 4.000022 3.181807 4.343006 7.607290 -1.388968 6.128948 0.548709 -2.709341 7.619254 -1.838626 1.402458 1.030930 2.064663 3.118523 0.660316 2.348832 -2.573587 0.679807 -5.011778 1.470741 2.481245 4.767774 -6.213181 -5.796432 -6.634350 -1.276994 2.280687 3.656134 -1.646557 9.187524 -3.052500 0.339661 -11.901772 -0.182915 4.273403 0.593231 2.033673 1.884932 -2.755220 -9.578566 -1.556866 -3.686978 -1.395596 -2.448201 -3.392021 -2.679165 -4.173620 6.851998 -4.459414 1.151344 5.667379 -0.015046 4.123815 -0.870533 0.311478 -2.972291 -0.788549 -1.394200 1.584030 -4.031743 5.406835 -0.174817 11.051833 -2.210280 3.308034 -3.038229 5.828523 -2.833839 -4.488856 -0.491152 6.069730 5.511178 -0.179377 0.928670 -0.050526 -2.020693 4.372562 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = -0.560089 -0.010622 1.860638 1.186056 -1.185613 -1.912289 -0.850707 -2.592051 1.363624 0.347193 1.645510 0.221156 0.917406 -1.097086 0.040422 -0.050803 0.671640 -0.606195 -0.025015 -0.803817 -0.302334 1.951763 0.486106 -1.202736 0.191571 -2.055880 1.164571 0.850194 0.679888 1.281055 0.312306 -0.025894 -0.635007 0.932645 -0.511353 0.579645 0.529989 0.484968 -0.825344 -0.305178 0.541694 0.451844 1.300243 -0.241891 1.786364 0.265080 0.820520 0.432680 -1.099750 -0.688836 -0.424112 1.221042 -1.061511 0.705366 -0.027177 0.139615 0.343601 -1.051424 -0.401372 -1.426864 0.000000 -0.152079 -0.883106 0.080345 -0.991442 0.493132 0.156992 -0.803486 0.374690 -0.438404 1.107806 0.328237 0.086512 -0.096815 -1.429971 0.153484 0.270854 0.604013 0.961267 -0.019981 -0.184068 -0.426285 -0.805086 -0.946145 0.975305 0.681349 0.438109 0.495769 -0.428602 -0.161024 0.014666 -0.396265 0.473527 0.714866 -0.896270 -0.193770 0.107968 -0.379334 -0.770003 -0.854912 0.455203 -0.710875 0.617139 0.744840 -0.444183 0.069872 -0.138618 0.252207 -1.096916 -1.046183 0.362505 -0.762536 0.508037 1.735194 -0.699365 -0.365157 -0.632054 -0.409154 -0.026328 1.242736 0.172460 0.525474 1.401378 1.643243 0.427355 -1.354554 -0.845637 0.624850 1.292624 0.974523 0.668835 -1.503274 -0.784566 0.258530 -0.655993 -2.108930 -0.538214 0.300591 1.313266 0.042667 -1.293044 0.832192 -0.618655 1.477527 0.920932 0.313920 0.160183 0.152192 -1.470862 1.305132 2.129976 -0.317044 1.022477 -0.641185 -0.723560 1.216910 -0.839554 0.567919 0.503252 -0.501004 -0.284599 -0.594097 0.189305 1.119522 0.389273 0.758545 -0.117058 0.762528 -0.633525 -2.036986 -2.175396 -0.029399 1.593050 0.426691 2.432624 -1.461405 -0.915274 -0.338080 1.671871 -0.295643 -0.709167 0.422397 -1.133984 1.002840 -1.906298 -1.886845 2.727343 2.284113 1.044710 0.298787 1.456437 0.826238 -0.949244 -0.418715 -0.441931 0.557518 0.671809 -1.234590 -0.136434 0.174765 -1.498304 -1.171844 0.056606 0.634935 0.287054 -0.208609 0.276643 -0.079803 -0.816708 -0.897170 0.669536 -0.886216 -0.295074 0.119351 0.092037 0.178240 0.662587 -0.619983 -0.039879 0.254332 -0.732866 0.358615 0.553846 1.000284 0.515491 1.615544 1.806230 -0.468141 1.515918 0.202381 -0.666002 2.244327 -0.508865 0.535625 0.374528 0.799810 0.509426 0.293793 0.909993 -0.770827 -0.120508 -1.512820 0.066257 0.580733 1.061200 -1.430393 -1.318699 -2.007601 -0.390153 0.393847 1.228500 -0.327652 2.480215 -0.615480 0.223130 -2.894146 -0.012051 1.015610 -0.072112 0.768996 0.560734 -0.895052 -2.257213 -0.455698 -1.194289 -0.768017 -0.628364 -0.861672 -0.836512 -0.840480 1.384394 -0.890188 0.228760 1.564129 -0.034828 0.844708 -0.517548 0.144893 -0.732629 -0.276261 0.220688 0.138297 -1.203666 1.434630 0.063714 3.249030 -0.304553 0.998434 -0.730630 1.122570 -0.458680 -1.257662 -0.340468 1.763792 1.271222 0.156225 0.180237 0.089899 -0.407814 1.224504 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.735340 -0.297835 1.579153 1.223739 -1.260820 -2.425164 -0.823663 -2.842604 1.650331 0.641370 1.897683 0.513610 1.469555 -1.320953 0.008708 0.168092 0.936177 -0.775462 0.169439 -0.943545 -0.633288 2.925019 0.677200 -0.699729 0.101487 -1.954811 1.672174 0.592965 0.887386 2.012368 0.537907 0.042623 -0.504247 0.826341 -0.240863 1.053738 -0.158814 0.808535 -0.690126 -0.247479 0.682193 -0.609172 1.680435 0.099628 1.923150 0.116321 1.113270 0.291909 -0.950830 -1.081126 -0.936914 0.777660 -1.595148 0.599701 -0.748524 -0.266795 0.697584 -0.383333 -0.385442 -1.532940 -0.177740 -0.757101 -1.386293 0.172032 -1.341139 0.710222 -0.816832 -0.829987 -0.327846 -0.584538 1.246734 0.615856 0.110560 -0.050309 -2.417372 -0.031934 0.099707 0.352683 1.199200 0.359654 -0.778842 -0.716614 -1.302795 -1.251854 1.618902 0.616923 0.294778 0.715386 -0.886686 -0.144295 -0.458448 0.083827 0.806674 0.753962 -0.995941 0.000160 0.506731 -0.350127 -0.479237 -1.441648 0.648837 -0.858530 0.492744 0.660409 -0.224088 -0.255175 -0.605227 -0.024149 -1.468266 -1.508023 0.469397 -1.045657 -0.026118 1.782897 -0.853049 -0.280848 -0.928074 -0.222365 0.441958 1.383765 0.607229 0.626377 1.500233 1.499293 0.556888 -1.559289 -0.793886 0.990484 1.468570 0.663737 0.444704 -1.048225 -1.056198 0.505339 -0.828938 -2.305367 -0.966459 1.135766 1.372097 -0.107966 -1.030772 1.130454 -0.659236 1.209807 1.701656 0.290497 0.393185 0.307573 -1.688958 1.343713 2.454096 -0.320880 1.119025 -0.785541 -0.923933 2.375315 -1.230576 0.459560 0.331787 -0.413766 -0.780944 -0.563946 0.399420 1.245626 0.178825 0.860508 -0.082505 0.952799 -0.577847 -1.998050 -2.429253 -0.151386 2.519047 1.214881 2.512160 -1.716791 -0.199645 0.226432 1.193747 0.273307 -1.021582 0.531381 -1.098159 1.091645 -3.555177 -2.150897 3.287017 1.943856 1.446586 0.485146 0.940390 1.436436 -0.772932 -0.528297 -0.784022 0.945490 0.523064 -1.618408 -0.195893 0.214637 -1.894266 -1.390244 -0.015796 0.676952 0.400830 -0.594563 0.633900 -0.818952 -0.516235 -0.991364 1.000946 -1.059008 -0.689425 -0.104610 -0.052538 0.114600 0.469652 -0.081675 0.644858 0.131826 -0.716504 0.234649 0.528413 0.764790 0.500067 1.955144 2.669062 -1.103761 0.639678 -0.124658 -0.617945 2.386310 -0.728606 0.536084 0.264195 1.174724 0.988356 0.278417 1.352052 -0.800092 -0.352540 -1.553068 0.010531 1.204251 1.208777 -1.371232 -1.401723 -2.608383 -0.036346 0.211481 2.156533 -0.333010 2.763674 -1.053652 0.477242 -2.885887 0.269048 1.049784 0.008638 1.089098 0.507312 -0.802547 -1.101603 -0.775938 -1.329849 -0.330585 -0.622817 -0.833580 -0.907501 -0.750575 0.854132 -1.478676 0.102016 1.078693 -0.449130 1.283412 -0.389678 0.110557 -1.313500 0.297176 0.364859 0.296493 -1.072683 1.709789 0.037337 3.137780 -0.282591 1.030053 -0.577037 1.767304 -1.012148 -1.716988 -0.387732 1.981183 1.575845 -0.115095 0.469280 0.127154 0.330456 1.102457 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 1.335475 0.912697 1.946539 0.126099 -0.993329 -2.338642 -0.436005 -3.690279 1.600631 0.287960 0.819689 0.103886 0.872878 -0.344191 -0.293269 1.547278 0.871794 0.075896 0.201892 -1.007309 -0.419247 2.391258 -0.679339 0.386564 0.410666 -2.485012 0.304023 0.852434 2.307982 0.769318 0.665984 -0.430734 -0.536310 0.638692 -0.387508 0.149012 0.316259 0.106430 -2.680967 0.605383 -0.893935 0.116970 1.428744 -0.021569 1.291121 -0.150400 1.079054 0.926614 0.250100 -0.152766 -1.046811 2.303267 0.076909 0.870781 -0.211068 -0.580772 -0.631023 -0.301138 -0.059955 1.505598 -0.743398 0.059114 -0.795659 0.220356 -1.296130 0.094611 -0.959280 -1.019500 -0.267380 -0.122807 0.933326 0.276444 -0.049403 -0.392878 -3.375210 0.043826 0.149913 0.985071 0.908462 0.242274 0.696398 -0.218840 -1.155454 -1.119543 1.207050 2.262875 0.095433 0.191019 -1.449730 -1.012315 -0.702357 -0.386955 1.023500 0.518146 -1.673044 0.208943 -1.631255 -0.401251 -1.075702 -2.340101 0.404070 -0.229133 0.805670 -1.800052 1.031858 0.290309 0.851331 0.130713 0.114323 -0.679176 0.237572 -0.019319 0.207509 3.143252 0.044440 -0.779967 -1.027695 -0.372835 -1.578510 0.831781 0.529640 0.059720 1.286892 1.174891 0.980311 -1.012998 -1.008383 0.898454 0.292774 0.968969 0.962994 -0.956571 -0.687579 0.309071 -0.233777 -2.518569 -0.401270 0.485238 1.037270 -0.929932 0.949436 -0.813497 -0.753076 1.156053 0.539065 -0.618077 0.801695 -0.209617 -0.814157 1.011390 2.563213 -0.182701 0.786327 -1.678892 0.084340 0.508870 -0.547360 0.832143 -0.290441 -0.474833 -0.638347 -0.198134 0.339258 0.995082 -0.182653 -0.155899 0.110767 0.594317 -1.459304 -1.406161 -1.969877 -0.101021 1.040490 -0.254696 1.452146 -0.961550 -0.995710 -0.475232 1.093373 0.226910 -0.231499 1.398487 -1.921731 0.874816 -0.943248 -1.374371 2.303552 2.875646 0.950432 -0.571166 1.003771 0.935734 -2.329740 -1.590350 -0.182969 0.252110 0.322297 -3.437950 -1.153048 0.276915 -1.450363 -0.312031 0.077748 0.678402 0.732135 1.491402 1.989678 -0.678429 -1.077436 -1.481638 1.615248 -0.436493 0.133446 0.538576 0.259871 -0.511832 1.162241 -1.030312 -0.009125 1.101217 -0.589775 0.793954 0.369176 0.502042 -0.481923 1.342651 1.470608 0.333912 2.710619 0.015130 -1.134117 1.752712 -0.437942 0.791646 0.050381 -0.235283 -0.865994 0.634110 0.359061 -0.773302 -1.023944 -1.150680 -0.444729 0.062999 0.689778 1.020695 -1.717160 -1.457126 -0.373215 -0.197819 1.169420 0.311610 1.808762 -1.183241 0.890274 -2.577119 0.473274 0.295656 0.141732 1.271313 0.470876 -1.075223 -0.144623 -0.097320 -1.580882 -2.032167 -0.330782 -1.686827 -0.916098 -1.059984 1.365332 -0.927662 -0.170065 1.292535 -0.382828 1.476522 -1.619880 0.118319 -1.080462 0.299174 1.866174 -0.275013 -1.012476 0.282403 -0.030019 3.435379 0.243949 0.882884 -0.236307 -0.114572 0.091835 -1.927049 -0.712996 1.748985 0.830959 0.359121 -0.482775 -0.702881 0.209912 0.623991 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -0.718051 1.160695 4.805387 3.648539 -3.207096 -4.666333 -2.149491 -4.840458 2.215085 -0.135606 3.155957 -0.022056 1.027004 -1.020024 -0.179034 -1.166548 0.785023 -0.934504 0.062148 -1.826250 -2.814821 3.900521 1.943875 -3.570542 0.735759 -5.074359 4.593252 2.397666 1.627677 3.653843 0.085308 -0.232983 -0.947372 3.045705 -1.244508 -0.199117 -0.199244 0.912503 -1.119556 0.796872 2.497637 1.581398 3.615625 0.253308 2.265934 2.809147 1.615244 1.180873 -2.853111 -0.886448 -1.607065 2.188699 -2.892711 1.709543 -0.630571 1.382869 1.694798 -3.259196 -0.752441 -2.688375 -0.207997 -0.178736 -2.261876 0.359081 -3.674673 0.586182 -1.255928 -2.364778 1.648120 -0.031951 2.639655 1.017797 -0.523207 -1.216473 -2.494924 1.030027 0.649851 2.311925 2.375917 -1.116906 -0.745903 0.828117 -2.608128 -2.412119 1.103040 -0.068024 1.586949 0.046133 0.732858 -2.147869 0.404420 -0.359369 0.429083 2.321677 -0.839125 0.751918 -1.617111 -0.849207 -2.708843 -2.569368 0.352259 -1.945587 1.855813 2.332216 -2.421974 -0.422939 0.189802 0.290164 -1.058917 -3.339728 -0.195955 -1.837393 1.765591 4.046762 -1.004014 -1.201580 -0.886441 -1.255881 0.041660 3.497319 0.609545 0.367095 3.833888 4.070885 0.320452 -2.521626 -1.469557 -0.174476 1.599760 2.470918 2.806802 -3.391340 -2.361270 -0.387097 -0.235278 -5.043201 0.530544 0.175791 2.330902 0.247842 -3.430537 2.725111 -2.223010 2.637022 1.958320 1.665806 1.099684 -0.648916 -2.766222 3.752264 5.724667 -1.063237 2.019461 -2.575787 -3.492419 4.655275 -1.772738 1.357412 0.832257 -0.977136 -0.028181 -1.689694 0.677447 3.132909 0.166383 1.026360 3.228719 0.714829 -0.089857 -4.509949 -3.981326 1.542461 3.432518 0.729276 6.103490 -3.641037 -0.563932 -0.762577 3.748519 -0.206563 -0.856138 0.151049 -1.315685 1.849010 -5.483371 -4.596300 5.228288 4.017283 0.526484 0.486254 2.466015 2.261537 -0.540407 -1.554001 -2.398207 1.703528 1.147579 -0.557805 -0.099973 0.213615 -2.898900 -1.182088 0.791817 1.546729 2.877774 -3.157950 -2.514404 -1.414670 -3.704742 -3.677659 1.531764 -3.372337 -0.317633 1.225392 -0.716988 -0.281147 1.478682 0.088287 -1.009154 -0.332386 -1.277913 0.337277 1.166414 2.977329 0.592513 3.823159 3.429657 -0.816193 2.060093 2.130656 -1.042923 7.279092 -1.608453 1.208743 1.320839 3.326640 0.646255 1.544286 2.212439 -1.496698 -0.866879 -3.842273 1.736810 0.884567 1.464640 -4.793471 -1.501861 -5.361245 -1.750571 1.534699 3.404992 -0.349544 6.124837 -0.156238 -0.064776 -5.555758 -0.474039 2.429090 0.115226 2.876086 1.756598 -2.563604 -3.948704 -1.555465 -2.251080 1.176016 -1.548350 -1.819670 -2.486820 0.011507 1.149665 -1.150906 1.532003 4.149388 -0.771409 0.500684 -0.939607 -0.055426 -1.324070 -2.088313 1.660574 0.566417 -2.709832 4.007281 -0.365133 6.322265 -0.449654 2.723254 -2.237082 0.899213 0.118710 -2.106432 -1.108263 4.234625 1.667437 0.473069 1.107958 0.766566 -0.557051 2.857593 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.431628 0.182286 1.107462 0.245549 -0.403546 -1.208030 -0.451228 -2.379015 1.130444 0.309570 0.847066 -0.047221 0.630564 -0.481452 -0.165051 0.712285 0.229491 -0.363812 0.368062 -0.376068 -0.311036 1.944692 -0.190060 0.237712 0.059227 -1.786297 0.588642 0.288534 1.267819 0.735534 0.239783 -0.243666 -0.069973 0.415662 -0.176870 0.439764 0.142034 0.309878 -1.015672 0.177367 -0.234655 -0.084134 0.705250 -0.139554 0.989053 -0.142939 0.688667 0.293145 0.115162 -0.200079 -0.704590 1.165379 -0.469542 0.335816 -0.265868 -0.457513 -0.177739 -0.245141 -0.324546 0.391342 -0.436087 -0.141634 -0.645631 0.204427 -0.810476 0.370826 -0.549684 -0.332355 -0.078986 0.123381 0.798124 0.518050 0.217479 -0.009060 -1.937412 0.217363 0.042083 0.347987 0.503370 -0.058713 0.243339 -0.009372 -0.719846 -0.781736 1.132071 1.308363 0.056662 -0.065600 -0.527908 -0.248547 -0.541808 -0.182612 0.510331 0.546553 -0.784583 0.115299 -0.670200 -0.102278 -0.393336 -1.304886 0.172420 -0.562378 0.458014 -0.316647 0.427713 0.100467 0.605773 0.162348 -0.250199 -0.871803 0.122190 -0.154797 0.237352 1.683574 -0.144364 -0.231449 -0.542162 -0.155008 -0.647576 0.567726 0.421210 0.355900 1.031383 0.882243 0.520694 -0.691746 -0.717735 0.838527 0.517571 0.538446 0.345298 -0.957446 -0.462159 0.119666 -0.003111 -1.551537 -0.481210 0.432170 0.607531 -0.645549 0.155354 0.071578 -0.213526 0.832536 0.744290 -0.407952 0.321176 0.121950 -0.655987 0.924294 1.786221 -0.094947 0.436675 -1.087731 -0.165253 0.794920 -0.679515 0.423355 -0.006494 0.105341 -0.372611 -0.506446 0.275753 0.658343 -0.127874 0.305425 0.008630 0.493326 -0.645444 -1.056440 -1.244900 -0.057009 0.996950 -0.096779 1.241256 -0.717724 -0.597360 0.047363 0.813659 0.346067 -0.190903 0.678200 -1.137011 0.615922 -1.107660 -1.186859 1.586394 1.488113 0.735640 -0.061377 0.696162 0.989498 -1.221549 -0.654211 -0.336386 0.500452 0.356632 -1.925188 -0.628636 0.062478 -0.943097 -0.600171 -0.050077 0.344361 0.344522 0.639368 0.744615 -0.369926 -0.648193 -0.682608 1.163326 -0.536940 -0.164247 0.009082 0.130802 -0.275976 0.693932 -0.584208 0.411682 0.602737 -0.353399 0.472409 0.515421 0.142817 -0.208212 0.959960 1.366351 -0.110676 1.204836 0.020320 -0.362176 1.021870 -0.164066 0.224017 0.104225 -0.088982 -0.234490 0.382403 0.374943 -0.486745 -0.726329 -0.899041 0.011473 0.171420 0.503489 0.401313 -0.966005 -1.052375 -0.374879 0.194160 0.948679 0.374294 1.410096 -0.687762 0.463115 -1.734801 0.189820 0.348127 0.085970 0.894568 0.209428 -0.434147 -0.326688 -0.280961 -0.692212 -1.210076 -0.538265 -1.177168 -0.647250 -0.954590 0.879534 -0.690597 -0.004392 0.744283 0.115922 0.790265 -0.844213 0.008169 -0.990312 0.384325 0.676798 -0.090515 -0.698682 0.445432 -0.131106 2.223854 -0.361417 0.493118 -0.404634 0.463412 -0.369568 -1.042025 -0.080065 1.136095 0.616428 0.058278 -0.233947 -0.320546 -0.023999 0.488814 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp___GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/vertex-cover-problem.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = -0.035522 0.546665 3.228702 0.864367 -2.574318 -2.961633 -0.927059 -5.117290 1.891945 0.092233 2.505948 0.531639 0.856280 -1.620831 0.424287 1.403939 0.467907 -1.174883 0.504466 -1.192049 -1.715101 2.001747 0.958752 -0.609137 1.103018 -2.900400 1.757312 1.012006 2.269565 1.245648 0.352979 -0.800695 -0.977512 1.796654 0.692832 0.708660 0.705685 0.418525 -1.950283 0.718220 -0.068331 -1.041387 1.962666 -0.070110 2.998178 -0.289250 1.828390 1.251862 -1.833296 -0.075432 -1.903533 3.377383 -2.369023 1.239340 0.212594 -0.406876 -0.724263 -1.493049 -1.095154 -1.242742 -1.027579 -1.541315 -1.103645 0.247891 -1.768527 0.833680 -1.072805 -1.270906 0.580564 1.255486 2.252851 1.393077 0.624171 1.419278 -2.680975 0.325767 0.980077 1.673932 1.831787 -0.933023 0.927257 -0.087138 -0.936038 -1.819339 2.183584 0.961024 0.784419 -0.744827 -0.402359 0.102459 -0.194462 -1.003258 0.356732 1.376771 -2.839568 0.407197 -1.299702 -0.594737 -1.814653 -3.615748 0.058483 -1.571726 1.454295 0.485453 -0.101798 0.126389 -0.327755 1.036826 -1.395841 -2.517141 -0.157593 -0.444323 0.465448 3.070624 -0.946793 -0.185316 -0.258537 -0.112149 -0.794361 1.362438 0.648507 1.286779 2.885485 3.526793 0.722691 -1.259658 -1.247942 0.499242 1.767213 2.432620 1.426131 -2.543839 -1.333840 0.723586 0.045606 -3.775458 -0.260229 0.903425 2.022090 0.151842 -1.302526 -0.831580 -0.733630 2.541842 1.712391 0.253170 0.399408 0.023227 -1.817001 2.986064 4.239220 -0.801098 1.743803 -1.209709 -0.012480 1.684182 -2.494832 0.861763 0.614832 -0.240687 -0.078500 -1.515417 -1.402495 1.839337 1.438498 0.306902 0.307216 1.216231 -1.730513 -3.698353 -2.627784 -0.056841 2.816386 -0.611972 2.831221 -1.973823 -1.643574 -0.518929 2.623694 0.150560 -0.859710 0.857983 -2.040541 1.923312 -1.970010 -2.863678 4.197170 3.884465 1.340978 0.445828 1.939471 2.745228 -3.780125 -1.635510 -0.990829 0.415342 0.599909 -3.567167 -2.238188 0.146380 -2.853578 -1.098523 0.354232 1.026498 1.512063 1.003740 0.283215 1.526129 -1.938538 -0.908671 1.724916 -1.876059 -1.217882 0.561386 0.049229 1.197639 1.162792 -0.975573 0.217702 0.672052 -1.963162 0.667557 1.209735 2.358608 0.536661 3.645086 2.776392 0.192492 2.235440 0.785719 -1.585395 2.259694 -0.365033 1.021711 1.032225 -0.046096 -0.334977 0.726546 1.842188 -1.468341 -1.624515 -2.601375 -0.224350 -0.092775 2.072606 -0.156768 -2.349170 -2.924509 -0.889645 2.022780 1.153240 0.005347 3.623559 -0.497450 0.132117 -4.381878 -0.404857 0.961122 -0.025851 2.429697 1.023991 -1.483616 -2.324356 -1.210426 -1.498921 -1.425075 -1.232172 -0.697507 -1.233957 -1.463845 2.615889 -0.931629 0.246405 1.617081 0.188055 2.467029 -0.775520 -0.097669 -1.808149 0.690776 2.220625 0.316741 -2.193053 2.716579 0.325776 6.670140 -0.635278 0.511448 -1.405378 -0.411851 0.418339 -0.128827 -0.101553 2.830578 2.299414 1.129460 -0.425159 0.095137 -1.044543 1.986899 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = -0.349264 0.051233 1.930663 0.511415 -0.780114 -2.236520 -0.752641 -2.971027 1.423866 0.587195 1.803073 0.348140 1.075890 -0.527504 0.326070 0.766087 0.418050 -0.850163 0.255646 -0.746646 -0.188339 2.284854 0.680660 -0.292770 0.054993 -2.127612 0.849818 0.742418 1.103698 1.395691 0.345124 -0.259185 -0.326057 0.909654 -0.407342 0.929022 0.235985 0.618315 -0.774651 0.086853 0.077266 0.084801 1.112679 0.054293 2.016668 0.223842 1.296782 0.374900 -0.476706 -0.748864 -1.002915 1.807306 -1.423692 0.560035 -0.501295 0.017605 -0.080619 -0.678618 -0.495862 -1.251489 -0.251308 -0.064185 -1.296461 0.159430 -1.061281 0.601255 -0.485706 -0.609629 -0.240571 -0.072883 1.412217 0.429098 0.075129 0.219324 -2.297219 0.019211 -0.157233 0.531171 1.019790 -0.428016 -0.672859 -0.256087 -0.766973 -1.211046 1.450764 1.020638 0.209819 0.237481 -0.724083 0.196167 -0.821902 -0.179628 0.398763 0.978959 -1.251387 0.269942 0.386667 -0.266943 -0.813819 -1.027803 0.494767 -0.966717 0.560474 0.175899 0.601419 -0.377944 -0.764463 0.104341 -1.327659 -1.399192 0.368618 -0.484015 -0.030738 1.522144 -0.953915 0.200096 -0.299759 -0.223937 -0.009572 1.293232 0.722366 0.551835 1.337889 1.561469 0.482754 -1.267331 -0.848818 0.759691 1.518065 1.066259 0.515910 -1.319188 -0.884489 0.346560 -0.572982 -2.270874 -0.340576 1.247991 1.116674 -0.052407 -0.896227 0.483606 -0.520164 1.361464 1.480348 0.374531 0.325563 0.143709 -1.388583 1.195057 2.740021 -0.445956 1.308426 -0.619104 -0.279403 1.695958 -1.642655 0.785815 0.664104 -0.138952 -0.483411 -0.650347 -0.286726 1.225560 0.790517 1.063796 0.118925 0.764733 -0.594529 -1.899064 -2.121639 -0.531372 1.927810 0.175806 1.942750 -1.294380 -0.766815 0.009729 1.447677 -0.046461 -0.891436 0.461324 -1.112959 0.999263 -2.372511 -1.679381 2.756292 2.449751 1.319894 0.234215 1.329413 1.604245 -1.265793 -0.604345 -0.348173 0.831823 0.095220 -1.772332 -0.383137 -0.021074 -1.757350 -1.042572 -0.333641 0.604327 -0.127255 0.502130 0.668406 0.239361 -0.836678 -0.582698 0.521497 -0.965199 -0.770560 -0.135518 0.163195 -0.046168 0.311921 -0.762558 0.537265 0.992443 -1.159229 0.442638 0.891708 0.590634 0.684219 2.022993 1.834749 -0.395776 1.502736 -0.024101 -0.536878 1.706590 -0.320637 0.465582 0.276007 0.749571 0.278524 0.401835 0.728052 -0.763461 -0.813682 -1.442574 0.146275 0.755577 1.253604 0.090982 -1.659717 -1.771189 -0.265102 0.745767 1.742628 -0.354781 2.469104 -0.580854 0.868714 -2.901125 0.285930 0.657946 -0.186133 0.749189 0.581262 -0.710141 -1.376563 -0.597395 -0.883292 -1.239941 -0.445995 -1.075448 -0.718147 -1.287477 1.060933 -1.488627 -0.002970 0.756464 -0.034297 1.213557 -0.410228 0.028837 -1.067142 0.432947 1.048866 0.190322 -1.319629 1.283340 -0.066938 3.594870 -0.667179 1.196174 -0.591677 1.103625 -0.571495 -0.911469 -0.208344 2.012018 1.526904 0.104010 -0.028495 -0.080697 -0.008078 0.787765 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = -0.135843 -0.017082 1.157907 0.288526 -0.641778 -1.738744 -0.562619 -2.459927 1.085981 0.528349 1.386300 0.078571 1.015212 -0.693650 0.040876 0.613981 0.554957 -0.627570 0.237918 -0.679441 -0.467165 1.838641 0.060907 0.173789 0.077115 -1.519689 0.825850 0.441896 0.713723 1.025786 0.468711 -0.043532 -0.296358 0.517187 -0.146789 0.916210 0.211526 0.557582 -0.598646 0.035780 0.058730 -0.345934 0.969493 0.006190 1.430452 0.169325 0.769723 0.340870 -0.356631 -0.683797 -0.575724 0.884117 -0.937516 0.255544 -0.486907 -0.387240 0.201199 -0.336634 -0.272163 -0.425799 -0.286740 -0.456292 -0.986582 0.228372 -0.791648 0.511916 -0.458175 -0.550400 -0.282412 -0.239640 0.875979 0.369066 -0.036008 0.326302 -1.780780 -0.040632 0.158843 0.170233 0.765687 -0.121190 -0.250875 -0.410012 -0.883159 -0.931737 1.404056 0.975613 0.334513 0.394954 -0.818341 0.075644 -0.511838 -0.072296 0.756042 0.606250 -0.731509 -0.180160 0.243317 -0.336710 -0.683477 -1.214415 0.537164 -0.549183 0.467394 0.072499 0.143432 -0.158622 -0.392174 0.016733 -1.009952 -0.974225 0.200900 -0.724559 0.253697 1.407898 -0.601676 -0.155827 -0.763114 -0.313365 0.089877 0.798288 0.591395 0.315698 1.195900 1.014396 0.415784 -1.074250 -0.871299 0.650080 0.974682 0.545668 0.288716 -0.984299 -0.686994 0.356738 -0.720362 -1.694036 -0.720407 0.564207 0.831419 -0.401992 -0.381437 0.665763 -0.390311 0.771779 1.135593 0.036444 0.190818 0.195721 -1.066671 0.840595 1.615739 -0.230745 0.875859 -0.673819 -0.298734 1.099553 -0.841987 0.278218 0.493474 -0.344580 -0.733620 -0.317505 0.190514 0.777616 0.236456 0.659683 -0.217921 0.747624 -0.638998 -1.157188 -1.639558 -0.122000 1.625127 0.373474 1.465123 -1.151338 -0.423650 0.187996 1.049110 0.134303 -0.683672 0.507212 -0.947782 0.764704 -1.660917 -1.346834 2.061863 1.494432 1.208029 0.177076 0.721602 1.002336 -1.108037 -0.356402 -0.323030 0.642589 0.267028 -1.819943 -0.402965 0.114986 -1.266012 -0.835070 -0.301976 0.585284 0.002911 0.298809 0.906584 -0.435936 -0.309059 -0.542643 0.702406 -0.481659 -0.397261 -0.107215 0.071636 -0.015615 0.374590 -0.466339 0.531321 0.382380 -0.644383 0.418880 0.610760 0.387694 0.304031 1.579201 1.605923 -0.667865 0.896143 -0.314874 -0.323980 0.922906 -0.219515 0.469478 0.173062 0.582111 0.360456 0.178082 0.895119 -0.574599 -0.559855 -1.017324 -0.243192 0.758331 0.782048 0.157979 -1.013653 -1.714156 -0.109422 0.138132 1.566641 -0.131642 1.680391 -0.575467 0.577404 -1.826811 0.263893 0.363635 -0.146416 0.599548 0.283799 -0.530622 -0.568893 -0.435503 -1.037998 -1.283827 -0.326678 -0.633208 -0.657419 -0.841356 0.758412 -0.984202 -0.177580 0.513584 0.029956 0.796533 -0.331911 0.112712 -0.917378 0.446854 0.767317 -0.048899 -0.801778 0.851761 0.120386 2.501882 -0.157743 0.756296 -0.272983 0.957011 -0.455216 -1.075291 -0.246752 1.366228 1.110297 -0.057052 0.037716 -0.068867 0.302212 0.725162 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -2.290227 2.251412 13.652036 7.419368 -7.730092 -10.816465 -5.776257 -17.048182 7.553543 1.191300 10.137461 0.525097 2.842983 -2.784168 1.198302 0.188442 2.330428 -3.889498 0.908378 -4.247049 -2.675023 9.883919 4.381365 -7.191113 0.946065 -12.692222 6.215764 5.713487 5.803517 5.608335 1.567927 -2.124301 -3.575217 7.066464 -2.983325 1.579519 3.166942 2.236992 -5.941303 -0.028198 2.254994 4.452982 7.737171 -1.097861 10.271583 1.667084 6.548165 2.944606 -6.993047 -1.497357 -4.409468 12.396813 -7.217608 4.489029 2.575063 1.972978 0.364459 -8.442033 -3.271369 -6.833825 -1.517107 0.219581 -5.370708 0.812272 -6.451415 2.415678 -1.048694 -3.887913 4.014364 0.970947 8.043904 1.956608 0.904243 0.172439 -8.319023 2.451944 0.565906 5.402249 5.912274 -2.520529 0.428940 1.035269 -3.650746 -6.232135 4.532841 3.529327 2.158852 -0.933571 -0.772065 -0.682054 -0.567211 -3.461952 0.328954 5.735294 -6.578577 2.121142 -2.492715 -2.694634 -6.765355 -5.857195 1.102044 -5.943393 4.935967 3.650046 -2.341673 -0.724717 -1.605365 1.682722 -5.027852 -8.070591 1.270356 -2.362162 3.497448 10.741718 -5.005119 -1.146676 -1.235514 -2.191777 -2.040476 7.320314 2.525942 3.375149 7.948082 11.592482 2.372469 -6.762920 -4.728842 1.710282 6.895653 8.043615 5.584988 -9.314183 -4.979411 0.496452 -0.483962 -13.501870 0.078521 2.864154 6.829010 2.387315 -7.251218 0.491661 -3.895824 10.060961 4.675306 4.004688 1.625142 -0.144217 -7.214547 8.738296 14.245690 -2.673232 6.916269 -3.350550 -3.525654 6.850695 -7.689247 5.341838 3.361453 -0.777058 0.423759 -5.287195 -2.537273 7.564868 4.036000 3.673623 2.586938 3.213381 -2.831350 -13.117354 -12.188237 1.442233 8.583105 -0.886915 12.397065 -7.818202 -7.161889 -1.790234 10.695238 -1.255348 -4.105288 2.422775 -6.129929 5.940232 -9.576106 -10.836931 14.444967 14.689471 3.432187 -0.062374 9.222925 6.489622 -8.531613 -5.018594 -4.078917 4.241054 1.645016 -6.479497 -1.621197 0.397227 -8.378054 -4.387083 0.717871 3.691288 3.601551 -1.232368 -0.875547 3.185519 -7.898964 -4.797033 4.450851 -6.325843 -3.191246 1.178406 0.118442 1.144258 4.442823 -4.288703 -1.619223 3.328539 -6.377218 1.409522 4.472488 7.104203 2.393519 11.555166 8.609612 0.816782 11.552130 3.632664 -4.474436 14.348109 -3.016154 2.821971 2.391575 3.430111 -0.318825 2.952265 4.395954 -4.762760 -4.964326 -9.107709 2.196258 0.331542 7.407150 -6.969649 -8.934853 -10.563025 -3.743845 5.989145 5.298053 -1.373623 15.375557 -1.775308 1.646987 -17.404520 -0.880468 6.286010 -0.492586 6.611406 3.841395 -6.271082 -12.636120 -3.293405 -5.963764 -2.948412 -3.114590 -5.972667 -5.338448 -6.047941 9.242281 -4.372247 2.249445 8.911160 -0.644454 4.643973 -2.296512 -0.478417 -3.130752 -2.602988 4.997726 0.877802 -9.170772 10.510341 -0.936762 22.786205 -3.388593 5.670119 -5.790532 2.204351 -0.541660 -3.600816 -1.410439 11.656744 7.764530 2.570843 -1.447623 0.568985 -4.860356 6.073809 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.060405 0.127521 0.462849 0.263141 -0.374029 -0.888663 -0.204167 -0.887348 0.291807 0.115968 0.551622 -0.013358 0.443848 -0.233046 0.043385 0.164981 0.288164 -0.036125 0.071324 -0.301635 -0.396789 0.575648 0.026887 -0.071496 0.075535 -0.308665 0.469736 0.284247 0.166581 0.477164 0.175820 0.001691 -0.166198 0.239718 -0.115193 0.238529 0.010922 0.295498 -0.232999 0.044504 0.029994 -0.264938 0.448141 0.045172 0.432400 0.301717 0.293109 0.203495 -0.274348 -0.262392 -0.246272 0.248628 -0.415755 0.171321 -0.308517 -0.199443 0.252525 -0.039970 -0.025890 -0.338685 -0.050019 -0.291115 -0.428023 0.052498 -0.430516 0.157884 -0.230549 -0.441494 -0.107744 -0.015547 0.334756 0.116919 -0.073510 0.118975 -0.667623 -0.068413 0.138633 0.152809 0.376360 -0.059004 -0.033335 -0.204288 -0.434479 -0.390745 0.550346 0.131103 0.305849 0.259821 -0.335334 -0.048293 -0.071985 0.034095 0.369773 0.211917 -0.075533 0.028589 0.035878 -0.095080 -0.342306 -0.669109 0.234882 -0.174641 0.203262 0.065464 0.005300 -0.071161 -0.249890 0.081155 -0.402318 -0.497574 0.089363 -0.401802 0.007968 0.502012 -0.202684 -0.119003 -0.189496 -0.167833 0.117159 0.369834 0.297239 0.088617 0.362771 0.418877 0.114153 -0.453567 -0.353943 0.100564 0.336154 0.285590 0.195246 -0.341882 -0.356684 0.167660 -0.461705 -0.720602 -0.204412 0.269224 0.366949 -0.154988 -0.289393 0.425555 -0.302373 0.173868 0.415411 0.230895 0.104649 0.009955 -0.429136 0.305080 0.522402 -0.169887 0.417599 -0.104448 -0.191799 0.439526 -0.166904 0.020448 0.186206 -0.299761 -0.227447 -0.050255 0.028599 0.359046 0.215561 0.216991 0.078721 0.274079 -0.439814 -0.518847 -0.567943 0.065072 0.836721 0.159788 0.603138 -0.524939 -0.139963 0.133869 0.438387 -0.101723 -0.283958 0.104337 -0.271553 0.345626 -0.806165 -0.579391 0.805523 0.370800 0.449225 0.031319 0.160253 0.370966 -0.344338 -0.211188 -0.198685 0.192206 0.026006 -0.656418 -0.271592 0.039240 -0.573214 -0.175256 -0.009807 0.292985 0.033181 0.018050 0.237713 -0.309661 -0.135944 -0.276270 0.158400 -0.243963 -0.061028 0.061916 -0.044619 0.052199 0.077292 -0.112733 0.119994 0.064146 -0.303087 0.119396 0.131086 0.246855 0.168409 0.879476 0.617153 -0.311107 0.224867 -0.055145 -0.241573 0.592361 -0.134060 0.292528 0.072145 0.503868 0.179375 0.058327 0.559429 -0.240912 -0.274551 -0.527568 -0.284238 0.450451 0.303249 -0.055862 -0.284207 -0.817763 0.012920 0.006615 0.771591 -0.184149 0.662524 -0.182169 0.228688 -0.606906 0.117806 0.123058 -0.170810 0.256262 0.163941 -0.257364 -0.282765 -0.207557 -0.479819 -0.434869 -0.144694 -0.141026 -0.220131 -0.107198 -0.012377 -0.334245 -0.081445 0.198772 -0.081495 0.251067 -0.113391 0.048851 -0.256319 0.116575 0.450297 -0.049592 -0.389284 0.429483 0.157942 1.108731 0.135631 0.322166 -0.138478 0.241424 -0.085781 -0.348887 -0.193884 0.591696 0.478807 0.017762 0.166105 0.167757 0.204331 0.322686 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = -0.733661 -0.298520 1.290850 -0.090412 -0.496356 -1.370952 -0.629553 -2.315982 1.089996 0.687715 1.694556 0.143802 1.107683 -0.799708 0.255050 0.415739 0.669736 -1.115538 0.416081 -0.604461 0.238174 1.695435 0.338155 0.402172 0.005714 -1.648510 0.418355 0.101250 0.576409 1.119201 0.456179 -0.162913 -0.532153 0.374657 0.173499 1.212924 0.786374 0.459537 -0.473783 -0.072115 -0.180663 -0.326374 0.748658 -0.191855 1.785580 -0.188358 0.490240 0.240234 -0.557234 -0.945467 -0.334622 0.891950 -1.151626 0.157840 0.117873 -0.436926 -0.074324 -0.260120 -0.465191 -1.027116 -0.264336 -0.619015 -0.613890 0.330779 -0.454977 0.708168 -0.470397 -0.119355 -0.257783 -0.516109 0.870529 0.473020 0.494608 1.012437 -1.453634 0.131208 0.061242 0.126029 0.633324 -0.173761 -0.407021 -0.418803 -0.473189 -0.910670 1.174365 1.055335 0.164915 0.227740 -0.967889 0.773528 -0.488647 -0.191482 0.468715 0.485908 -0.989166 -0.342448 0.570105 -0.371128 -0.349739 -1.120929 0.375666 -0.672908 0.282912 0.441012 0.133087 -0.404024 -1.139017 0.134076 -1.373079 -0.866204 0.686616 -0.499313 -0.087316 1.168803 -1.130542 0.240513 -0.864255 -0.106974 0.416023 0.767041 0.377589 0.681451 0.657465 1.114225 0.500377 -1.049940 -0.767070 0.839500 1.490458 0.351744 0.180995 -0.940151 -0.589872 0.491809 -0.911257 -1.491585 -0.992027 0.693304 1.013888 0.133789 -0.570674 0.250407 -0.356402 1.125090 1.243835 0.089551 -0.004089 0.312602 -1.248344 0.850659 1.340144 -0.364186 1.122839 -0.175028 0.026582 0.861406 -1.153395 0.425236 0.537208 -0.006842 -0.624123 -0.477208 -0.238717 0.719594 0.760348 1.118308 -0.891411 0.800010 -0.375210 -1.360704 -1.802394 -0.416162 1.684425 0.199163 0.965029 -1.013134 -0.678321 0.157661 1.314005 0.172466 -1.100765 0.407912 -0.851822 0.698793 -1.631830 -1.269199 2.270448 2.080537 1.281056 0.367903 0.731173 1.231184 -1.544972 -0.084040 -0.214170 0.717456 -0.254359 -2.038572 -0.512824 0.188607 -1.189378 -1.117699 -0.420564 0.531104 -0.168604 0.564159 1.005023 0.558321 -0.019444 -0.009241 0.661844 -0.344753 -0.916683 -0.283639 0.165361 0.456571 0.317609 -0.698839 0.701301 0.836183 -0.998550 0.229777 0.765637 0.470573 0.583965 1.589610 1.430535 -0.423250 0.691380 -0.485690 -0.476517 0.559035 -0.230966 0.358911 -0.001981 0.185929 0.520492 0.073843 0.753001 -0.571340 -0.756404 -0.934616 -0.352390 0.525639 1.119886 0.230383 -1.822585 -1.420207 0.248260 0.433538 1.253144 -0.156274 1.785692 -0.529479 0.486158 -1.926669 0.176254 0.539055 -0.135259 0.469562 0.211977 -0.312971 -1.033172 -0.434292 -1.085952 -1.224543 -0.294202 -0.606079 -0.338166 -1.251981 1.559758 -0.934504 -0.267625 0.130422 0.355008 1.269339 0.509424 -0.062363 -1.167069 0.687588 0.374312 0.033510 -0.756186 1.162696 0.247169 2.434702 -0.513732 0.371021 -0.214754 1.105050 -0.534490 -0.823383 -0.032436 1.350115 1.538239 0.071911 -0.285419 -0.228209 -0.019103 0.595438 -PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = -0.443263 -0.351371 1.042504 0.423743 -0.405678 -1.252553 -0.495258 -1.665004 0.882028 0.454637 1.288807 0.081691 0.802573 -0.668432 0.100799 0.206479 0.357181 -0.684328 0.149358 -0.487600 -0.030921 1.495755 0.455741 -0.324470 0.022869 -1.361026 0.682541 0.353156 0.393939 1.150142 0.153956 -0.018681 -0.144766 0.440411 -0.262834 0.763975 0.250386 0.439499 -0.259029 -0.085637 0.225243 -0.032223 0.722456 -0.183187 1.336072 0.176148 0.601315 0.116180 -0.521455 -0.660388 -0.330326 0.518444 -0.967275 0.228361 -0.487415 -0.077198 0.094895 -0.416300 -0.445296 -1.177273 0.000000 -0.137214 -0.754525 0.133076 -0.630428 0.530175 -0.091829 -0.452900 -0.051808 -0.346748 0.755697 0.455840 0.096380 0.196126 -1.141843 0.072552 0.145054 0.143032 0.461843 -0.305014 -0.407169 -0.333293 -0.535620 -0.593293 0.944260 0.601450 0.272970 0.362050 -0.355467 0.224947 -0.250766 0.022996 0.355630 0.492009 -0.444825 -0.153130 0.466956 -0.198316 -0.309571 -0.557770 0.341181 -0.566830 0.344512 0.557916 -0.016217 0.065633 -0.343342 0.262915 -1.008079 -0.869328 0.203830 -0.502720 0.164291 0.907008 -0.652734 -0.021180 -0.537811 -0.111227 0.275584 0.751275 0.150679 0.470449 0.947198 0.913936 0.253464 -1.005145 -0.569544 0.537837 1.063711 0.500882 0.256728 -0.804116 -0.568466 0.141062 -0.643622 -1.362152 -0.621764 0.399960 0.793494 -0.245560 -0.820459 0.840045 -0.328548 0.987491 1.097842 0.097587 0.084126 0.238403 -1.082965 0.791236 1.449233 -0.263446 0.777596 -0.528290 -0.413651 1.025571 -0.678392 0.304549 0.412556 -0.206556 -0.331629 -0.471051 0.173820 0.693351 0.409064 0.829829 -0.298969 0.606808 -0.209291 -1.172603 -1.336503 -0.368064 1.214427 0.400074 1.503079 -0.948664 -0.469543 -0.031275 0.851593 0.050253 -0.567263 0.173139 -0.725974 0.588004 -1.854689 -1.298521 1.829714 1.442143 1.153326 0.452920 0.803833 0.804831 -0.443291 0.060882 -0.121959 0.580713 0.310670 -1.109818 -0.198366 0.045050 -1.040281 -0.971192 -0.226852 0.422227 -0.193845 0.001183 0.333949 -0.085509 -0.369672 -0.327008 0.387267 -0.719545 -0.427946 -0.156086 0.083028 0.162313 0.151190 -0.468574 0.501917 0.330350 -0.562109 0.316305 0.522998 0.447337 0.469518 1.002829 1.471347 -0.580230 0.603479 -0.194546 -0.283361 0.976830 -0.237274 0.266813 0.196639 0.508096 0.472778 0.089028 0.646412 -0.444984 -0.098042 -0.863826 0.045567 0.737109 0.750620 -0.301190 -0.939158 -1.258577 -0.057932 0.267068 1.252435 -0.141594 1.572948 -0.418139 0.433353 -1.776163 0.083376 0.416686 0.003535 0.420936 0.322468 -0.401951 -1.219837 -0.326456 -0.717725 -0.664766 -0.440334 -0.609538 -0.512427 -0.656872 0.707358 -0.787043 -0.025813 0.542728 0.100452 0.757404 -0.063943 0.042487 -0.700029 0.214374 0.165006 0.216255 -0.662481 0.749316 0.087614 2.026157 -0.286571 0.662543 -0.407644 1.079102 -0.510990 -0.720067 -0.115302 1.173956 1.015132 -0.056668 0.154162 -0.145685 0.082342 0.635120 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = -0.544894 -0.146861 1.115115 -0.135279 -0.488628 -1.158911 -0.528746 -2.014666 0.865876 0.585367 1.393174 0.083229 0.924555 -0.598160 0.162979 0.322356 0.546039 -0.897077 0.396708 -0.522203 0.071096 1.340573 0.191092 0.440748 0.014436 -1.369872 0.487253 0.053314 0.505152 0.951123 0.400973 -0.156016 -0.519783 0.336628 0.220642 0.972873 0.667917 0.437714 -0.386548 0.031763 -0.161878 -0.365645 0.633289 -0.131518 1.443397 -0.058867 0.294098 0.246963 -0.453901 -0.772821 -0.223942 0.615035 -0.978961 0.136947 0.097911 -0.434357 -0.089810 -0.164425 -0.335571 -0.726721 -0.231213 -0.648241 -0.484113 0.323242 -0.443111 0.564384 -0.512887 -0.172208 -0.248132 -0.431014 0.704331 0.398338 0.417854 0.913718 -1.260761 0.105496 0.095298 0.110222 0.565770 -0.168803 -0.300073 -0.331236 -0.471330 -0.818030 0.944039 0.947826 0.169041 0.146309 -0.815137 0.616541 -0.356597 -0.133310 0.459304 0.467220 -0.778161 -0.275906 0.271291 -0.302258 -0.330184 -1.160776 0.326162 -0.560198 0.306336 0.304627 0.001849 -0.382728 -0.896626 0.116120 -1.060330 -0.744531 0.549567 -0.475398 0.025961 1.039551 -0.872059 0.139734 -0.768796 -0.170975 0.387111 0.600967 0.366408 0.497454 0.571627 0.928487 0.455617 -0.902888 -0.715587 0.698829 1.121924 0.291956 0.173876 -0.812358 -0.493970 0.419670 -0.792627 -1.276006 -0.790888 0.474157 0.799560 -0.014029 -0.357155 0.177736 -0.387049 0.831179 1.046354 0.135203 0.021867 0.243354 -1.007216 0.688931 1.069640 -0.283593 0.908922 -0.163364 0.010688 0.696281 -0.897880 0.350766 0.419954 -0.010315 -0.561522 -0.394258 -0.198966 0.617149 0.574627 0.928428 -0.674116 0.653425 -0.393947 -1.094757 -1.435909 -0.273619 1.534248 0.164403 0.728304 -0.902962 -0.495758 0.204667 1.153215 0.244476 -0.903304 0.366290 -0.648341 0.601641 -1.305357 -1.063663 1.783559 1.681664 1.031188 0.229177 0.492296 1.001888 -1.360779 -0.156058 -0.245603 0.581338 -0.317852 -1.765927 -0.528969 0.187141 -0.980178 -0.827503 -0.303184 0.482747 0.018443 0.454832 0.825553 0.455460 0.032935 -0.125878 0.630869 -0.247138 -0.753049 -0.196558 0.137453 0.376809 0.266159 -0.558468 0.559997 0.690012 -0.785502 0.244211 0.675949 0.348112 0.377679 1.413260 1.100600 -0.390120 0.418906 -0.399261 -0.365947 0.498377 -0.192762 0.354097 0.045249 0.184121 0.368164 0.085791 0.704744 -0.502469 -0.707860 -0.800844 -0.410052 0.403745 0.911451 0.256161 -1.504265 -1.234491 0.252561 0.309702 1.081711 -0.081940 1.482839 -0.365488 0.445851 -1.460068 0.146023 0.430656 -0.160494 0.475762 0.176076 -0.275576 -0.707409 -0.387564 -0.959255 -1.056477 -0.238169 -0.441218 -0.289989 -0.931305 1.171572 -0.652814 -0.259444 0.048905 0.270535 1.023342 0.388294 -0.041448 -0.986520 0.572697 0.434717 -0.036731 -0.645902 0.993632 0.252404 2.029616 -0.357642 0.277819 -0.116351 0.816989 -0.383076 -0.686840 -0.064604 1.151156 1.219749 0.143130 -0.286750 -0.180729 0.038418 0.476832 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = -0.272786 -0.120115 0.711432 0.136619 -0.277465 -0.732025 -0.300096 -1.266572 0.678200 0.346841 0.801322 0.109310 0.642947 -0.529834 -0.005333 0.082708 0.316647 -0.403740 0.196270 -0.287229 0.081746 1.024697 0.071692 0.032221 0.003037 -0.934427 0.470937 0.064213 0.426301 0.740957 0.221073 -0.053063 -0.284170 0.220969 0.020128 0.492976 0.298795 0.300133 -0.316192 -0.123766 -0.011108 -0.165085 0.421842 -0.045317 0.866002 -0.080107 0.160836 0.102084 -0.184084 -0.445010 -0.173574 0.299382 -0.559417 0.163785 -0.071658 -0.256415 0.009897 -0.054848 -0.154510 -0.533362 -0.028984 -0.309130 -0.333178 0.139169 -0.386410 0.326727 -0.282640 -0.172176 -0.166920 -0.345832 0.443926 0.269157 0.281184 0.273137 -0.947222 0.047937 0.023935 0.055167 0.413585 0.058518 -0.191006 -0.294071 -0.347565 -0.496008 0.640168 0.594431 0.038812 0.228491 -0.426460 0.163703 -0.195362 -0.057205 0.331877 0.290639 -0.437199 -0.106339 0.068999 -0.088494 0.015820 -0.677507 0.229808 -0.370755 0.165882 0.214746 0.019209 -0.097763 -0.214091 0.117295 -0.551325 -0.465745 0.370454 -0.295245 0.009848 0.751142 -0.407499 -0.050997 -0.461826 -0.086152 0.167800 0.448444 0.165661 0.332837 0.376182 0.543943 0.322574 -0.616428 -0.394291 0.631381 0.618412 0.211209 0.063850 -0.548294 -0.283429 0.239372 -0.415952 -0.878744 -0.480803 0.276185 0.522678 -0.120708 -0.286716 0.242373 -0.240760 0.484707 0.660410 0.020275 0.080714 0.201834 -0.648713 0.448672 0.801246 -0.126066 0.439705 -0.208476 -0.124524 0.496696 -0.466811 0.219225 0.069400 -0.014474 -0.223888 -0.271913 0.062577 0.443639 0.169185 0.541791 -0.372530 0.416685 -0.333014 -0.774137 -0.908936 -0.207359 0.978153 0.220490 0.680327 -0.566438 -0.269302 0.093800 0.690467 0.147062 -0.413686 0.268571 -0.485638 0.424588 -1.024730 -0.769676 1.172088 0.981465 0.653207 0.101128 0.306567 0.594224 -0.613494 -0.126392 -0.181849 0.297266 0.001040 -1.001904 -0.274157 0.071569 -0.655218 -0.600943 -0.031196 0.240893 0.063779 0.167835 0.463268 0.067626 -0.008332 -0.264921 0.513559 -0.254896 -0.334176 -0.137441 0.099691 0.132967 0.221986 -0.324371 0.329211 0.415809 -0.316068 0.163067 0.340095 0.164157 0.147231 0.754463 0.801764 -0.297864 0.228255 -0.160612 -0.263449 0.657731 -0.175698 0.177099 0.064627 0.153870 0.288658 0.105484 0.390227 -0.351972 -0.284508 -0.602589 -0.250796 0.312953 0.538264 -0.067461 -0.839346 -0.764436 0.089997 0.061083 0.683473 0.005560 1.037250 -0.369211 0.244526 -0.983772 0.092743 0.419405 -0.085361 0.385611 0.150698 -0.202514 -0.538964 -0.249541 -0.552307 -0.535036 -0.278244 -0.420797 -0.233687 -0.538882 0.659741 -0.446829 -0.050519 0.226594 0.105343 0.621591 -0.082409 0.033188 -0.646405 0.309191 0.039541 0.023679 -0.452398 0.556273 0.094375 1.214099 -0.253635 0.244242 -0.176216 0.669147 -0.435043 -0.591322 -0.073624 0.755158 0.681586 0.089395 -0.079957 -0.087384 -0.012310 0.348154 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.433041 -0.187559 0.806450 0.363331 -0.413015 -1.340909 -0.418433 -1.518750 0.755693 0.308036 1.142265 0.123716 0.806213 -0.661022 0.222339 0.372683 0.529304 -0.484809 0.108896 -0.481952 -0.066615 1.303437 0.324004 -0.159236 0.045981 -0.889423 0.341304 0.381972 0.325661 0.823708 0.296630 -0.020633 -0.202937 0.327213 -0.199321 0.737171 0.256773 0.334456 -0.430453 -0.156861 -0.014212 -0.184933 0.686059 -0.086883 1.147424 0.035022 0.705224 0.214227 -0.478866 -0.606411 -0.486345 0.824257 -0.784766 0.206228 -0.269882 -0.204229 0.273502 -0.241850 -0.301696 -0.931353 -0.137376 -0.244432 -0.697688 0.078107 -0.467718 0.464953 -0.150490 -0.342581 -0.136949 -0.164231 0.687262 0.287068 0.094381 0.333435 -1.068833 -0.026497 0.055083 0.208716 0.528071 -0.085341 -0.239526 -0.390338 -0.434900 -0.571654 1.011066 0.349326 0.292227 0.423569 -0.620597 0.272659 -0.350058 -0.095903 0.404279 0.235071 -0.503519 -0.118497 0.623009 -0.217739 -0.387089 -0.597588 0.343204 -0.387424 0.166723 0.324243 0.281423 -0.119154 -0.726803 0.100563 -1.055712 -0.745427 0.357884 -0.446598 -0.201864 0.788695 -0.723361 0.094525 -0.375510 -0.045586 0.153277 0.714392 0.333296 0.472438 0.534958 0.826868 0.191814 -0.758646 -0.482901 0.387653 1.092719 0.424038 0.230379 -0.611379 -0.562624 0.311053 -0.683439 -1.155403 -0.597260 0.710606 0.798633 0.150814 -0.708449 0.556423 -0.240712 0.780657 0.801887 0.130808 0.048977 0.133899 -0.931412 0.666076 1.088395 -0.314041 0.857094 -0.139488 -0.136592 0.780857 -0.706212 0.162666 0.429405 -0.309742 -0.372813 -0.203601 -0.060549 0.546496 0.590010 0.598956 -0.351431 0.587393 -0.419108 -1.078299 -1.286737 -0.210836 1.163335 0.213089 1.074665 -0.759244 -0.510235 0.042497 0.767873 -0.233186 -0.674098 0.197473 -0.702523 0.558084 -1.446624 -0.996905 1.804357 1.186848 0.959324 0.319617 0.644094 0.863308 -0.739427 -0.063280 -0.118312 0.455719 0.157868 -1.232488 -0.249281 0.041911 -0.998497 -0.788864 -0.230326 0.413783 -0.339086 0.262357 0.599845 -0.093435 -0.233548 -0.060921 0.230647 -0.439879 -0.385382 -0.094549 0.018925 0.213825 0.179114 -0.398607 0.425250 0.366899 -0.714877 0.117787 0.324625 0.497418 0.585693 1.229496 1.284347 -0.378737 0.804240 -0.217263 -0.458844 0.715945 -0.191873 0.335689 -0.007275 0.500796 0.481339 0.018202 0.651420 -0.391613 -0.364354 -0.794904 -0.181214 0.700632 0.743621 -0.094303 -0.940255 -1.192198 -0.000406 0.272330 1.089913 -0.342573 1.263303 -0.522563 0.304476 -1.555536 0.180511 0.356738 -0.115310 0.251019 0.246040 -0.322070 -0.942727 -0.311332 -0.730254 -0.787937 -0.281709 -0.480761 -0.312379 -0.748884 0.783144 -0.903848 -0.112328 0.375883 0.087951 0.747696 0.102673 0.017898 -0.624729 0.342607 0.313969 0.090040 -0.622856 0.786907 0.143311 1.942908 -0.168162 0.500598 -0.329696 0.829097 -0.388868 -0.628069 -0.118574 1.006944 1.107034 -0.140702 0.172656 0.064861 0.099716 0.553806 -PE-benchmarks/vertex-cover-problem.cpp__main = 1.233359 0.852623 1.441368 -0.280717 -0.872310 -2.115363 -0.376285 -3.162932 1.014845 0.145550 0.728553 -0.109932 0.623940 0.083368 -0.007069 1.532642 0.878727 0.079578 0.253288 -0.984961 -0.485152 1.518736 -0.792597 0.726750 0.537055 -1.838604 0.075721 0.784294 1.598732 0.424573 0.683132 -0.374885 -0.655518 0.372802 -0.098930 0.201754 0.537879 -0.149158 -2.313178 0.931469 -0.970690 0.103785 1.144872 -0.022978 1.001847 0.181647 0.766148 1.091755 0.231335 -0.121438 -0.768592 1.922066 0.274984 0.660298 -0.116999 -0.556921 -0.612666 -0.335615 -0.100110 1.734241 -0.729208 -0.126066 -0.652289 0.301136 -0.976845 0.103401 -0.915405 -0.766178 -0.135840 0.050262 0.726124 -0.047370 -0.366038 0.006542 -2.608873 -0.165635 0.128232 0.921225 0.626476 -0.237463 0.751373 -0.034512 -1.052808 -0.843910 0.863618 1.949363 0.207435 -0.054302 -1.394960 -0.745808 -0.606185 -0.435286 0.992479 0.282687 -1.301503 -0.010447 -1.412390 -0.478855 -1.230978 -2.125721 0.501046 0.100032 0.759537 -1.798816 0.936889 0.105266 0.636260 0.222791 0.092612 -0.495203 0.175146 0.141257 0.296067 2.686356 0.139477 -0.678079 -1.046752 -0.496090 -1.385944 0.650490 0.617855 -0.079529 0.986027 1.110637 0.646058 -0.624713 -1.134466 0.453004 0.156985 0.795724 0.919755 -0.799983 -0.627704 0.336996 -0.506933 -1.800881 -0.396006 0.153451 0.973118 -0.853065 1.080562 -0.841371 -0.752258 0.806711 0.223626 -0.473234 0.520382 -0.354177 -0.698530 0.859962 1.863713 -0.177548 0.709495 -1.399521 0.428699 -0.070233 -0.162389 0.363351 0.064532 -0.509239 -0.776251 0.158407 0.094398 0.547632 0.138578 -0.192263 0.097483 0.627613 -1.419251 -0.810030 -1.474370 0.072768 0.783619 -0.533425 0.749891 -0.759091 -0.876923 -0.582447 0.994830 0.188861 -0.331171 1.200419 -1.579222 0.576623 -0.136716 -0.729734 1.628291 2.358716 0.899795 -0.615116 0.677021 0.811106 -2.355471 -1.249910 -0.097402 0.260483 0.002235 -3.078433 -1.067847 0.210611 -1.083861 -0.088894 -0.110509 0.805146 0.569916 1.550356 1.780130 -0.418419 -0.920004 -1.111316 1.243238 -0.118562 0.226699 0.648693 0.020285 -0.376617 0.857195 -0.943011 0.062613 1.012898 -0.613938 0.773584 0.451904 0.444240 -0.401446 1.236073 0.800596 0.492364 2.399999 -0.149240 -1.057536 0.960912 -0.070206 0.953438 -0.074087 -0.425480 -0.867580 0.327338 0.323977 -0.508576 -1.164185 -0.803620 -0.563018 -0.021285 0.705454 1.431996 -1.407400 -1.354594 -0.222189 -0.176159 1.160601 0.241484 1.090750 -0.798575 0.846995 -1.711985 0.433861 -0.048714 0.044870 0.710527 0.179625 -0.802392 0.115512 0.195668 -1.603346 -2.165170 -0.149570 -1.163019 -0.851736 -0.816400 1.106515 -0.468201 -0.448699 0.941564 -0.236342 1.095100 -1.116913 -0.056767 -0.704839 0.223078 1.935547 -0.416114 -0.888858 0.085018 0.198749 2.908287 0.525190 0.630974 0.072760 -0.557442 0.329488 -1.416846 -0.600737 1.206066 0.746461 0.285388 -0.448457 -0.592098 0.411409 0.297876 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = 0.041868 0.152855 0.587762 0.045895 -0.211276 -0.791608 -0.183131 -1.024161 0.390509 0.180915 0.549321 -0.037293 0.452993 -0.205248 0.031092 0.272983 0.270515 -0.103011 0.102427 -0.278342 -0.150919 0.609576 -0.076383 0.080952 0.096297 -0.574335 0.265711 0.260148 0.325812 0.418674 0.176377 -0.039628 -0.158680 0.213812 -0.126551 0.245187 0.197621 0.212236 -0.380367 0.064726 -0.140455 -0.052529 0.375458 0.026348 0.515478 0.202296 0.205216 0.204685 -0.104446 -0.247469 -0.176060 0.414049 -0.263592 0.183514 -0.189816 -0.188975 0.048205 -0.086481 -0.024037 -0.172152 -0.053197 -0.114106 -0.328428 0.068325 -0.351730 0.126977 -0.161689 -0.336756 -0.110788 -0.114230 0.318182 0.093755 -0.019842 0.124842 -0.767820 -0.014461 0.120017 0.139367 0.336042 -0.086757 -0.004757 -0.166408 -0.349106 -0.404980 0.544570 0.451917 0.217183 0.236719 -0.419460 -0.057292 -0.152875 -0.048816 0.345565 0.238487 -0.226433 -0.026087 -0.028334 -0.122817 -0.290071 -0.624292 0.213388 -0.177165 0.189435 -0.086367 0.181881 -0.028893 -0.158325 0.132010 -0.314925 -0.342941 0.182708 -0.275305 0.020374 0.627935 -0.200869 -0.120614 -0.283905 -0.156078 -0.021515 0.362405 0.203730 0.074344 0.345319 0.385061 0.201504 -0.429290 -0.354568 0.237037 0.338747 0.274408 0.168912 -0.427097 -0.264824 0.163464 -0.431821 -0.757158 -0.245453 0.176500 0.367361 -0.225468 -0.163955 0.252764 -0.267448 0.260878 0.389817 0.067771 0.115111 0.035429 -0.409364 0.271931 0.603536 -0.168633 0.395858 -0.204062 -0.083412 0.215839 -0.195062 0.131974 0.128785 -0.229286 -0.187477 -0.076071 0.056879 0.367378 0.206833 0.263170 -0.083285 0.268879 -0.429565 -0.479304 -0.662187 -0.070331 0.644900 0.012144 0.555158 -0.428677 -0.286403 -0.008387 0.530637 -0.091409 -0.241906 0.205064 -0.392551 0.316904 -0.580554 -0.524007 0.812536 0.677994 0.508257 -0.039991 0.254567 0.347941 -0.501184 -0.224383 -0.078507 0.153622 0.009485 -0.878952 -0.309470 0.035164 -0.531304 -0.208352 -0.083329 0.241863 -0.022293 0.287308 0.433607 -0.156006 -0.160778 -0.250132 0.223984 -0.181451 -0.070011 0.028225 0.035398 -0.002371 0.172144 -0.309327 0.102182 0.301087 -0.336043 0.163925 0.192318 0.196899 0.126497 0.742852 0.520766 -0.157488 0.449468 -0.099685 -0.266892 0.467201 -0.103291 0.239767 0.042756 0.259035 0.073236 0.111790 0.363722 -0.250225 -0.292637 -0.502715 -0.258966 0.316290 0.296260 0.216373 -0.471647 -0.652203 -0.010153 -0.019433 0.671800 -0.076718 0.680646 -0.198193 0.284733 -0.689784 0.127360 0.102738 -0.140046 0.217021 0.154289 -0.272010 -0.356126 -0.124553 -0.517818 -0.690896 -0.121483 -0.298159 -0.212093 -0.315557 0.275927 -0.344641 -0.077120 0.225632 0.038367 0.348939 -0.176741 0.046151 -0.343267 0.175066 0.457722 -0.088719 -0.378592 0.249728 0.129579 1.112100 0.010978 0.336045 -0.124969 0.228007 -0.084183 -0.403418 -0.189420 0.589547 0.477615 0.073065 0.007989 0.004960 0.106041 0.308298 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.045611 0.210827 0.824832 0.008675 -0.413063 -0.910954 -0.230521 -1.389728 0.575315 0.265845 0.649943 0.058558 0.567039 -0.304028 -0.028224 0.291253 0.393619 -0.174288 0.171927 -0.377171 -0.096527 0.815406 -0.120933 0.182056 0.106728 -0.832719 0.364299 0.212335 0.598218 0.566299 0.270163 -0.132628 -0.371331 0.266281 0.011464 0.283117 0.301975 0.247080 -0.635710 0.100010 -0.230799 -0.186802 0.521288 -0.000282 0.706937 0.041899 0.178491 0.273395 -0.151671 -0.317476 -0.202422 0.493153 -0.346838 0.275043 -0.032332 -0.317712 -0.100713 -0.002306 -0.012570 -0.089190 -0.122393 -0.304767 -0.280450 0.135144 -0.462063 0.148407 -0.404711 -0.387705 -0.181502 -0.265286 0.372597 0.166709 0.155298 0.243355 -1.114230 0.018710 0.129364 0.223277 0.454572 0.059003 0.032910 -0.240116 -0.423403 -0.542708 0.534790 0.712067 0.137556 0.197160 -0.619260 -0.030895 -0.148020 -0.067915 0.420521 0.282403 -0.500641 -0.023806 -0.311745 -0.150970 -0.261144 -1.011864 0.219573 -0.232660 0.267155 -0.228679 0.120481 -0.091170 -0.191990 0.117036 -0.311476 -0.383487 0.306021 -0.274177 0.025411 0.947767 -0.261109 -0.178428 -0.465031 -0.169331 -0.052210 0.378814 0.220662 0.128988 0.351313 0.507839 0.400429 -0.577150 -0.439378 0.437161 0.376958 0.303838 0.224647 -0.448445 -0.290550 0.244128 -0.458977 -0.990669 -0.318297 0.209986 0.480733 -0.225700 0.017982 -0.040170 -0.401010 0.394849 0.486319 0.057163 0.196550 0.066839 -0.509798 0.353696 0.753673 -0.158784 0.466735 -0.253719 -0.032404 0.284321 -0.303435 0.276867 0.005740 -0.172705 -0.245443 -0.148338 -0.000386 0.475002 0.173668 0.319937 -0.205558 0.323003 -0.542957 -0.682488 -0.863450 -0.096345 0.904436 0.079181 0.519309 -0.549567 -0.321929 0.026571 0.676698 0.086244 -0.361115 0.375247 -0.511653 0.426497 -0.728973 -0.672646 1.034760 1.064454 0.536601 -0.096259 0.240709 0.456754 -0.864128 -0.411843 -0.163078 0.165237 -0.138562 -1.273577 -0.480607 0.134308 -0.657170 -0.257197 0.010852 0.292744 0.212676 0.377750 0.656992 -0.003014 -0.102868 -0.416473 0.513198 -0.160499 -0.199381 0.051609 0.096431 0.082770 0.299203 -0.375551 0.113828 0.453928 -0.378041 0.215471 0.244441 0.225471 0.022511 0.879250 0.599943 -0.127715 0.475563 -0.115457 -0.396742 0.679240 -0.213877 0.316734 0.063963 0.153285 0.013712 0.187766 0.423040 -0.371563 -0.422550 -0.596019 -0.422760 0.217686 0.450872 0.209933 -0.840886 -0.763100 0.104838 -0.031541 0.651099 -0.014753 0.916246 -0.313017 0.342129 -0.887669 0.134504 0.240151 -0.118231 0.464779 0.186592 -0.346996 -0.295305 -0.189162 -0.699581 -0.713109 -0.136712 -0.380019 -0.224031 -0.392259 0.520761 -0.339867 -0.111042 0.214114 -0.033708 0.640613 -0.209662 0.049901 -0.531540 0.249735 0.538736 -0.093470 -0.457582 0.438744 0.163891 1.361460 -0.000460 0.266293 -0.080903 0.243015 -0.107897 -0.610848 -0.247929 0.784988 0.598833 0.225823 -0.170342 -0.101924 0.067633 0.328015 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >::allocator() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = -0.030490 0.148864 0.595009 0.073545 -0.309984 -0.584365 -0.170062 -0.894993 0.393316 0.214755 0.441030 0.052331 0.439169 -0.228597 -0.095545 -0.012263 0.244082 -0.092697 0.135365 -0.246315 -0.123709 0.552134 -0.080428 0.030964 0.069382 -0.603413 0.520987 0.086334 0.352461 0.567153 0.165547 -0.041136 -0.307345 0.217683 0.031602 0.139618 0.176745 0.250735 -0.298233 0.055632 -0.016256 -0.139520 0.361023 0.074686 0.446902 0.171230 -0.086967 0.161192 -0.106625 -0.254695 -0.026806 0.018662 -0.302829 0.209216 -0.096860 -0.193845 -0.003501 0.031169 0.051534 -0.200545 0.028648 -0.285984 -0.169952 0.112784 -0.404578 0.091510 -0.338558 -0.321031 -0.160209 -0.296492 0.232201 0.123566 0.130728 0.102155 -0.748660 0.008548 0.095804 0.103029 0.370340 0.069595 -0.098293 -0.191637 -0.368261 -0.418232 0.304756 0.458846 0.084684 0.192104 -0.313417 -0.114572 -0.014163 0.011837 0.323606 0.278146 -0.208861 -0.004174 -0.291106 -0.051961 -0.041951 -0.752333 0.178362 -0.193905 0.201892 -0.026132 -0.101153 -0.087284 -0.018577 0.110083 -0.153189 -0.269974 0.251145 -0.279794 0.088963 0.633808 -0.097212 -0.206948 -0.361238 -0.184265 0.126786 0.313568 0.122450 0.044483 0.253215 0.327418 0.280269 -0.450243 -0.299655 0.384666 0.163903 0.163666 0.131126 -0.367224 -0.191654 0.169087 -0.349025 -0.672459 -0.200947 0.019308 0.304231 -0.276899 -0.049358 0.138131 -0.362988 0.140276 0.401867 0.127299 0.157007 0.064530 -0.375184 0.227398 0.511026 -0.079211 0.238506 -0.181116 -0.172838 0.288955 -0.127509 0.181945 -0.085086 -0.113608 -0.141236 -0.124239 0.111193 0.375064 0.000881 0.282960 -0.066276 0.208113 -0.373200 -0.460551 -0.543339 -0.048525 0.773918 0.185823 0.439743 -0.448839 -0.063854 0.058031 0.525804 0.162872 -0.196255 0.221228 -0.228348 0.303247 -0.675838 -0.517476 0.650748 0.617298 0.358742 -0.099072 0.041635 0.266004 -0.380015 -0.284846 -0.198287 0.098680 -0.120029 -0.677834 -0.304573 0.092213 -0.439944 -0.181957 0.103171 0.198038 0.313977 0.036294 0.279796 -0.077015 -0.006312 -0.453742 0.394797 -0.148806 -0.123783 0.035060 0.055462 0.031129 0.162691 -0.158475 0.060017 0.263249 -0.124149 0.153761 0.186343 0.100056 -0.065748 0.581129 0.375727 -0.213749 -0.022609 -0.037665 -0.207661 0.690799 -0.189425 0.215945 0.113846 0.218788 0.097043 0.144729 0.341842 -0.272958 -0.209589 -0.469811 -0.319267 0.186751 0.281763 -0.078112 -0.509160 -0.584440 0.120863 -0.121826 0.528743 0.034130 0.719356 -0.153642 0.221895 -0.480132 0.075838 0.271917 -0.119523 0.372525 0.153724 -0.240773 -0.205241 -0.170963 -0.489943 -0.313813 -0.152273 -0.210538 -0.169947 -0.094692 0.178245 -0.126292 -0.025513 0.185502 -0.066035 0.364008 -0.207694 0.057200 -0.401368 0.111495 0.237547 -0.069872 -0.323194 0.342834 0.126476 0.773737 -0.001302 0.201570 -0.043071 0.254565 -0.166692 -0.457077 -0.201872 0.562189 0.323410 0.209123 -0.049049 -0.023711 0.084691 0.236554 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::new_allocator() = -0.034233 0.090892 0.357939 0.110765 -0.108197 -0.465019 -0.122672 -0.529426 0.208509 0.129825 0.340408 -0.043519 0.325123 -0.129816 -0.036230 -0.030533 0.120978 -0.021421 0.065865 -0.147485 -0.178101 0.346304 -0.035879 -0.070141 0.058950 -0.345029 0.422399 0.134148 0.080056 0.419528 0.071761 0.051864 -0.094694 0.165214 -0.106414 0.101688 0.072390 0.215891 -0.042891 0.020348 0.074088 -0.005247 0.215193 0.101315 0.255443 0.331628 -0.060242 0.092482 -0.059400 -0.184688 -0.000444 -0.060443 -0.219582 0.117687 -0.254344 -0.065107 0.145418 -0.053006 0.040067 -0.283507 0.097844 -0.095323 -0.217931 0.045964 -0.294246 0.070080 -0.095536 -0.270082 -0.089495 -0.145436 0.177787 0.050612 -0.044412 -0.016358 -0.402250 -0.024623 0.086457 0.019120 0.251810 -0.076166 -0.135959 -0.117930 -0.293963 -0.280504 0.314536 0.198695 0.164311 0.231663 -0.113617 -0.140970 -0.019018 0.030936 0.248651 0.234229 0.065347 -0.006455 -0.007695 -0.023808 -0.070879 -0.364761 0.172178 -0.138410 0.124172 0.116180 -0.039753 -0.025007 0.015088 0.125056 -0.156637 -0.229428 0.127832 -0.280922 0.083927 0.313976 -0.036972 -0.149134 -0.180112 -0.171012 0.157481 0.297158 0.105518 -0.010162 0.247221 0.204641 0.081344 -0.302382 -0.214845 0.184541 0.125692 0.134236 0.075391 -0.345876 -0.165928 0.088423 -0.321869 -0.438948 -0.128103 -0.014177 0.190859 -0.276668 -0.231294 0.431066 -0.229425 0.006306 0.305366 0.137907 0.075568 0.033120 -0.274749 0.145633 0.360888 -0.089059 0.167630 -0.131459 -0.223846 0.220473 -0.019135 0.037053 0.037958 -0.170189 -0.083271 -0.051971 0.168458 0.267440 0.034046 0.226193 0.055997 0.153989 -0.259808 -0.257368 -0.342076 -0.022510 0.514382 0.118786 0.475591 -0.327950 -0.028328 0.023073 0.379744 -0.014781 -0.077046 0.051045 -0.109247 0.193653 -0.527419 -0.368837 0.428524 0.230838 0.330398 -0.042804 0.055492 0.157192 -0.017072 -0.097385 -0.113717 0.087065 0.028018 -0.283209 -0.133436 -0.006931 -0.314078 -0.133112 0.008991 0.147158 0.079008 -0.054149 0.056411 -0.230007 -0.064222 -0.287401 0.105583 -0.169758 0.005587 0.011676 -0.005571 -0.054012 0.035632 -0.092251 0.048371 0.110408 -0.082151 0.102214 0.134221 0.071484 0.038238 0.444731 0.296550 -0.243522 -0.048704 -0.021893 -0.077810 0.478761 -0.078839 0.138978 0.092639 0.324537 0.156567 0.068753 0.282524 -0.151620 -0.079676 -0.376507 -0.155473 0.285355 0.127151 -0.071671 -0.139920 -0.473543 0.005873 -0.109718 0.549445 -0.027835 0.483756 -0.038817 0.164500 -0.282247 0.068695 0.134503 -0.141338 0.124766 0.121420 -0.165787 -0.266063 -0.106353 -0.308181 -0.291601 -0.137044 -0.128678 -0.158009 -0.017990 -0.066590 -0.131066 0.008409 0.197020 0.006040 0.072334 -0.174773 0.053451 -0.213096 0.036826 0.156532 -0.065121 -0.244203 0.153818 0.092164 0.524378 0.010136 0.271322 -0.087137 0.239557 -0.142978 -0.249647 -0.143364 0.366749 0.202192 0.056365 0.129282 0.083173 0.123099 0.216837 -PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = -0.560109 0.083145 0.954783 0.492922 -1.266796 -1.605503 -0.501908 -1.888129 0.631875 0.317809 1.280060 0.225975 0.891322 -0.625979 0.146330 0.158667 0.814661 -0.417302 0.315046 -0.683344 -0.666352 1.233909 0.291874 0.106102 0.056491 -0.514627 0.949076 0.199013 0.464024 1.019300 0.495755 -0.214841 -0.792229 0.395341 0.354537 0.697283 0.126421 0.599699 -0.577526 0.084284 0.013195 -1.227270 1.031184 -0.129628 1.105421 -0.028565 0.642451 0.394573 -0.986974 -0.694791 -0.569114 0.445985 -1.214038 0.321278 0.004541 -0.700985 0.297352 0.229022 -0.210116 -0.764358 -0.354702 -1.335062 -0.621534 0.256870 -0.791986 0.495688 -1.042937 -0.662095 -0.248933 -0.162799 0.687140 0.432627 0.379806 0.887961 -1.402993 -0.044748 0.218325 0.399429 0.747400 0.227641 -0.001772 -0.484014 -0.777168 -0.828419 0.813909 0.190043 0.386005 0.115303 -0.962419 0.507939 -0.015770 0.092531 0.593978 0.264471 -0.680026 0.058686 -0.190972 -0.253398 -0.557199 -1.896234 0.309032 -0.460761 0.420532 0.218510 -0.433300 -0.462438 -1.106410 -0.006749 -1.020379 -1.178747 0.353726 -0.687007 -0.176836 1.079250 -0.790734 -0.023380 -0.557299 -0.150723 0.462037 0.485341 0.656929 0.514835 0.421255 1.034198 0.474005 -0.985514 -0.704890 0.329538 0.919135 0.413943 0.392258 -0.309498 -0.751018 0.508655 -0.860892 -1.409010 -0.602118 0.854978 0.908053 0.254020 -0.282395 0.011792 -0.687304 0.655159 0.945443 0.599183 0.174223 0.112393 -0.961271 0.731747 0.805463 -0.319031 1.002881 0.149496 -0.123255 1.153246 -0.678517 0.166779 0.294673 -0.215801 -0.598285 -0.291851 -0.458245 0.674775 0.593829 0.534423 -0.219362 0.598231 -0.744299 -1.362888 -1.243565 0.196087 2.150448 0.540077 0.583575 -1.150852 -0.199174 0.599823 0.839043 0.238398 -1.084045 0.311971 -0.460246 0.754599 -1.854560 -1.231442 1.801425 1.095100 0.655013 0.216876 0.117026 1.027059 -1.454903 -0.551417 -0.693956 0.551758 -0.486294 -1.671473 -0.759550 0.332211 -1.191638 -0.435762 0.141025 0.638549 0.484860 -0.071239 0.636738 0.097607 0.065238 -0.378478 0.755630 -0.335427 -0.685299 0.073706 -0.073221 0.640109 0.208519 -0.065062 0.408006 0.134471 -0.783214 0.097297 0.301783 0.583303 0.281213 1.969947 1.301968 -0.542725 0.044073 -0.205910 -0.673136 1.132602 -0.463136 0.620025 0.047739 0.708672 0.359743 0.072582 1.316470 -0.567683 -0.915613 -0.920387 -0.816491 0.562551 1.001221 -0.417810 -1.270193 -1.691173 0.447681 0.298368 1.170572 -0.355996 1.446831 -0.514210 0.333817 -1.316222 0.138431 0.485700 -0.218361 0.921799 0.213789 -0.384225 -0.221882 -0.597648 -1.058063 -0.292324 -0.208294 -0.061962 -0.265427 -0.292636 0.463885 -0.522780 -0.320683 -0.072362 -0.316572 1.100513 0.441651 -0.058827 -0.734485 0.436177 0.797918 0.044329 -0.733972 1.593352 0.416230 2.326409 0.236554 0.066025 -0.101805 0.427758 -0.172069 -0.710975 -0.252723 1.259259 1.304599 0.249144 -0.073032 0.224631 0.252391 0.466813 -PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = -0.289507 -0.067424 1.779007 0.360447 -1.166171 -2.240284 -0.825538 -3.677831 1.718004 0.870469 1.964825 0.290911 1.474093 -1.098235 -0.081471 0.658370 0.870438 -1.032789 0.457568 -0.983598 -0.510202 2.780464 0.064843 0.388349 0.071787 -2.400008 1.367843 0.339068 1.296305 1.618258 0.744797 -0.177415 -0.734165 0.704830 0.139924 1.300547 0.366184 0.802748 -1.003690 0.048264 0.098298 -0.766444 1.448794 -0.040823 2.144586 -0.141732 0.877004 0.452041 -0.550925 -1.027823 -0.746006 1.033147 -1.422583 0.419732 -0.346751 -0.712368 0.041340 -0.273793 -0.380204 -0.453473 -0.465231 -1.016545 -1.178603 0.434553 -1.174854 0.754209 -1.060038 -0.655355 -0.469857 -0.618114 1.203218 0.630108 0.297502 0.617428 -2.782959 0.019707 0.170458 0.245452 1.128493 0.153285 -0.361174 -0.631753 -1.278587 -1.403661 1.751542 1.643854 0.195868 0.346548 -1.280425 0.208971 -0.631150 -0.081369 1.043418 0.879901 -1.395217 -0.246446 -0.128539 -0.465310 -0.683529 -2.133761 0.686203 -0.866526 0.713672 0.034193 -0.122409 -0.337716 -0.471474 -0.044506 -1.283855 -1.360535 0.433482 -0.926072 0.400666 2.260055 -0.864597 -0.290143 -1.338035 -0.404609 0.192132 0.997658 0.778620 0.546945 1.605558 1.475853 0.864000 -1.609622 -1.233076 1.266782 1.294994 0.638137 0.365118 -1.278615 -0.894483 0.583061 -0.869154 -2.452847 -1.116302 0.750848 1.227825 -0.520538 -0.179295 0.405379 -0.658382 1.183008 1.694777 0.009398 0.345555 0.378248 -1.533725 1.227007 2.295578 -0.214495 1.131910 -0.980687 -0.375745 1.684459 -1.290919 0.567213 0.410689 -0.182769 -1.069963 -0.612277 0.199054 1.141211 0.109678 0.982099 -0.508051 1.057979 -0.859238 -1.777541 -2.400104 -0.190672 2.555088 0.745123 1.810422 -1.690610 -0.448611 0.388296 1.522568 0.654676 -1.093144 0.914425 -1.332679 1.123216 -2.496291 -1.982722 2.939783 2.430607 1.547518 0.190260 0.840937 1.479563 -1.914674 -0.693006 -0.670447 0.941205 0.127720 -2.782524 -0.686212 0.317982 -1.775495 -1.239940 -0.216458 0.795319 0.503255 0.304739 1.401391 -0.295232 -0.228293 -0.971087 1.498840 -0.590415 -0.809968 -0.188312 0.171847 0.131966 0.666112 -0.579017 0.792512 0.631355 -0.779416 0.595573 0.921181 0.451799 0.140391 2.129894 2.239598 -0.911240 0.892580 -0.455544 -0.518547 1.526655 -0.473058 0.633781 0.264666 0.521390 0.445887 0.334359 1.243990 -0.907446 -0.900188 -1.394779 -0.476397 0.756976 1.260729 -0.016373 -1.854239 -2.393680 0.069745 0.162885 1.963027 0.030881 2.563427 -0.933856 0.779358 -2.600160 0.313185 0.778291 -0.100716 1.222499 0.349293 -0.726187 -0.506894 -0.695037 -1.553201 -1.444926 -0.475983 -0.903179 -0.908663 -1.183789 1.360129 -1.194094 -0.255658 0.598147 -0.088066 1.473819 -0.417818 0.119981 -1.540149 0.706196 0.896294 -0.014918 -1.106592 1.484491 0.163840 3.415809 -0.314251 0.776577 -0.260137 1.389682 -0.777145 -1.744035 -0.329147 2.000928 1.581858 0.159705 -0.258388 -0.285564 0.308116 0.918021 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = -0.025193 -0.146037 3.319615 1.213488 -2.270195 -3.515860 -1.377052 -6.613071 3.558036 1.776076 2.960799 0.732125 2.014310 -2.356159 -0.612486 1.306919 1.087994 -1.547561 0.387480 -1.876941 -0.978530 4.814040 0.013379 0.148795 0.424484 -5.541796 2.985817 0.319766 2.723104 2.562240 1.360879 -0.236268 -1.196281 1.680671 0.422252 2.274839 0.598859 1.119838 -1.830637 0.224280 0.689768 -0.336844 2.256603 0.685068 4.126926 -0.239955 1.361967 0.619445 -1.083496 -1.442722 -1.350258 1.911689 -2.320271 1.303067 -0.902304 -0.633794 -0.113930 -1.049184 -0.335527 -0.658887 -0.830262 -1.428574 -1.778473 0.590555 -2.186004 1.214143 -1.588531 -1.076719 -0.810996 -0.541366 2.609202 1.313633 0.439259 0.648879 -4.809317 0.132672 0.093455 0.633381 2.578443 -0.086875 -0.849404 -1.204639 -2.276923 -2.645901 3.190984 2.874622 0.051140 0.697240 -1.266392 -0.657187 -1.282062 -0.687901 1.823588 1.890289 -2.997456 -0.793795 -0.475362 -0.624534 -0.655108 -3.245869 0.885768 -1.654360 1.200446 0.102295 -0.433889 0.083386 0.332220 0.033965 -1.720215 -1.501190 0.977345 -1.301786 1.309933 4.296941 -0.745472 -1.255234 -2.000765 -0.664603 -0.190688 1.969305 1.279408 0.749849 3.939712 2.743895 1.747151 -2.454471 -1.954010 2.487258 1.754387 1.469769 0.832408 -2.593261 -1.650161 0.778208 -0.464045 -4.141162 -1.418362 0.748049 2.408079 -1.038304 -0.207496 0.443469 -0.959367 2.204000 2.623317 -0.527897 0.763912 0.492580 -2.865811 2.497516 5.014686 -0.064101 1.254997 -2.412726 -0.394227 2.659473 -2.394797 0.981091 0.397608 -0.459289 -1.341807 -1.305087 0.401950 2.213894 -0.637878 0.944430 -0.436625 2.359346 -1.727798 -3.279896 -4.223126 -0.544124 3.859821 1.078110 3.855321 -2.960204 -0.491398 -0.232724 2.795588 1.447515 -1.074049 1.739124 -2.565525 1.782944 -3.783847 -3.558630 5.704975 5.154339 2.711729 -0.223167 1.806251 2.907521 -3.030235 -1.585061 -0.921869 0.899904 1.184277 -4.442401 -1.410520 0.782584 -2.945884 -3.062464 0.061152 1.091142 1.257817 0.176854 2.008800 -0.313005 -0.617201 -2.284969 2.799132 -1.278551 -1.092391 -0.153553 0.692495 -0.010116 1.605025 -1.086506 1.158976 1.190054 -0.753658 1.174274 1.778291 1.389473 0.291290 2.945830 4.053232 -1.275052 2.129022 -0.142903 -0.959866 3.362803 -0.731926 0.976048 0.915386 0.180456 0.686944 0.701665 1.526149 -1.824696 -0.723496 -2.660193 -0.063188 0.784776 1.734204 -0.527667 -2.542584 -4.235525 -0.347224 0.049657 2.455906 0.378745 4.831554 -1.687148 0.717810 -4.755538 0.222405 2.230218 -0.135747 2.369439 0.957080 -1.391821 -1.405823 -1.419135 -2.426055 -1.995874 -1.153013 -1.482628 -1.831568 -1.879744 2.686777 -2.006271 0.466528 2.036603 0.349422 2.413530 -2.204404 0.578695 -2.930825 1.122112 1.109487 0.270423 -2.343469 2.194630 -0.138396 5.767212 -1.017452 1.314699 -0.855709 2.020596 -1.666479 -3.241896 -0.680803 3.412300 2.174832 0.691805 -0.206836 -0.593545 0.055966 2.501777 -PE-benchmarks/vertex-cover-problem.cpp__int const& std::forward(std::remove_reference::type&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.286549 0.060492 1.136849 0.426327 -0.453831 -1.613785 -0.541100 -1.720193 0.712513 0.168716 1.302225 -0.064005 0.701417 -0.387359 0.218013 0.313791 0.383099 -0.574631 0.207029 -0.522107 -0.503189 1.359156 0.415428 -0.106750 0.099306 -1.253006 0.685604 0.539159 0.468024 1.058669 0.210209 -0.156439 -0.082928 0.550126 -0.197418 0.597404 0.160350 0.310315 -0.355778 0.141192 0.121677 -0.139167 0.928902 0.044952 0.984268 0.414376 0.754432 0.277104 -0.523086 -0.516017 -0.787779 1.014802 -1.033597 0.178553 -0.384570 -0.082408 0.443489 -0.484687 -0.352452 -0.803944 -0.299717 -0.233153 -0.838186 0.128506 -0.760561 0.447628 -0.534845 -0.439430 0.040324 0.023309 0.856190 0.444435 0.029590 0.388174 -1.142531 0.172190 0.085322 0.422733 0.622391 -0.452858 -0.219751 0.001645 -0.627836 -0.716511 1.073463 0.208117 0.497616 0.183898 -0.445293 0.077195 -0.413584 -0.003721 0.349376 0.428992 -0.353569 0.096187 0.247031 -0.285533 -0.707755 -0.936270 0.229251 -0.571490 0.292597 0.474012 0.090321 -0.256050 -0.789243 0.077454 -0.951721 -1.118642 0.212478 -0.516135 -0.109882 0.966589 -0.829434 0.055584 -0.313391 -0.114392 0.144139 0.896466 0.448031 0.404314 0.704687 1.032315 0.149904 -0.782355 -0.534180 0.130958 1.051134 0.582760 0.500297 -0.733272 -0.731364 0.130314 -0.548504 -1.535815 -0.318777 0.685397 0.791064 0.233947 -0.890885 0.735322 -0.439181 0.803794 0.944831 0.330384 0.208004 -0.003969 -0.968880 0.944661 1.418360 -0.481849 1.042620 -0.451323 -0.411892 1.112985 -0.870119 0.222222 0.447429 -0.254957 -0.220391 -0.369283 -0.127385 0.776567 0.611453 0.623724 0.232011 0.486076 -0.236710 -1.253295 -1.320761 0.063247 1.344314 0.006547 1.215175 -0.944443 -0.428941 0.103155 1.010915 -0.246386 -0.655015 0.108198 -0.616769 0.588660 -1.792121 -1.245491 1.889127 1.240688 0.740214 0.337435 0.571561 1.170787 -0.745517 -0.141073 -0.401620 0.639087 0.084357 -1.284849 -0.366481 -0.064050 -0.996242 -0.587412 -0.183457 0.493341 -0.052776 -0.077754 0.192879 -0.220812 -0.642211 -0.318390 0.374037 -0.843747 -0.437933 0.055762 -0.158279 0.108630 0.263207 -0.275426 0.353159 0.426420 -0.863234 0.076057 0.442992 0.698861 0.569580 1.574287 1.333617 -0.322951 0.792784 0.069817 -0.420769 1.054661 -0.322571 0.355279 0.086391 0.802630 0.357391 0.284285 0.777571 -0.434236 -0.718600 -1.033206 0.060082 0.634062 0.703645 -0.003442 -0.883876 -1.506919 -0.221287 0.538460 1.381681 -0.269734 1.578727 -0.286148 0.281823 -1.565996 0.077125 0.407001 -0.085991 0.546033 0.361125 -0.457103 -0.835080 -0.473262 -0.760341 -0.543651 -0.329635 -0.603892 -0.473569 -0.728182 0.666258 -0.903347 0.066441 0.390045 0.103965 0.607906 0.204065 -0.088478 -0.716492 0.222044 0.747331 0.130345 -0.734348 1.070542 0.071326 2.176842 -0.223083 0.643103 -0.549099 0.573922 -0.161446 -0.465808 -0.166721 1.260815 1.113834 -0.100759 0.166081 0.129291 0.127149 0.663419 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = -0.159236 -0.013809 0.616299 0.042057 -0.307588 -0.711139 -0.270152 -1.215180 0.513486 0.276478 0.716600 0.018432 0.540659 -0.367396 0.020877 0.162252 0.293342 -0.325128 0.226941 -0.277235 -0.061444 0.810164 -0.019781 0.181146 0.025712 -0.737143 0.409916 0.064051 0.368880 0.574122 0.224163 -0.087533 -0.295761 0.178316 0.080356 0.436945 0.292488 0.273348 -0.322237 0.005777 -0.100623 -0.260720 0.368217 -0.063548 0.716498 -0.005001 0.154449 0.166211 -0.176093 -0.361373 -0.172487 0.300744 -0.488838 0.129706 -0.043579 -0.326435 -0.014394 -0.011156 -0.140486 -0.295444 -0.099903 -0.393653 -0.298085 0.161171 -0.360196 0.291610 -0.340520 -0.194118 -0.137495 -0.196098 0.394633 0.229143 0.221371 0.377799 -0.850882 0.027174 0.059527 0.090456 0.351314 -0.032039 -0.040870 -0.211055 -0.355144 -0.458523 0.580246 0.548087 0.106807 0.110341 -0.437858 0.193764 -0.161199 -0.056238 0.346827 0.250498 -0.359297 -0.084254 -0.073587 -0.096308 -0.117301 -0.803951 0.206941 -0.300778 0.204149 0.093207 0.007924 -0.122952 -0.213273 0.122690 -0.459565 -0.477530 0.280075 -0.264320 0.046788 0.710948 -0.341886 -0.047298 -0.413771 -0.123183 0.111752 0.335690 0.241183 0.270260 0.327499 0.510853 0.284336 -0.520287 -0.444676 0.471822 0.497713 0.211995 0.100801 -0.482118 -0.281462 0.225806 -0.419945 -0.785822 -0.414657 0.226194 0.454374 -0.153927 -0.141018 0.140155 -0.257935 0.378654 0.546204 0.059097 0.062865 0.138129 -0.535337 0.398737 0.633195 -0.127380 0.423653 -0.169488 -0.029858 0.353405 -0.358439 0.140429 0.120098 -0.022550 -0.254854 -0.211872 -0.030627 0.361182 0.211731 0.443429 -0.283121 0.378507 -0.401527 -0.645508 -0.736917 -0.093480 0.929658 0.092273 0.464811 -0.520571 -0.263386 0.142744 0.636583 0.143401 -0.399330 0.250941 -0.422283 0.376945 -0.759103 -0.643875 0.950088 0.813130 0.555745 0.040285 0.204517 0.553592 -0.734576 -0.171917 -0.199215 0.276182 -0.102557 -1.044291 -0.371971 0.077515 -0.577259 -0.418203 -0.039307 0.277556 0.097253 0.251774 0.452771 0.082504 -0.008920 -0.221314 0.485432 -0.173303 -0.279738 -0.069269 0.060089 0.146804 0.194864 -0.310480 0.299383 0.372170 -0.331509 0.181929 0.330233 0.143595 0.087859 0.816781 0.639037 -0.228601 0.218312 -0.164749 -0.260468 0.476117 -0.107744 0.226109 0.039738 0.125340 0.153557 0.078786 0.428945 -0.308518 -0.419861 -0.529769 -0.336570 0.248522 0.482313 0.134789 -0.735884 -0.724771 0.099936 0.073919 0.647202 0.015449 0.833298 -0.277433 0.259394 -0.763607 0.092982 0.275480 -0.119660 0.361802 0.098716 -0.168960 -0.340115 -0.211400 -0.546908 -0.619127 -0.223117 -0.322827 -0.211841 -0.450628 0.514321 -0.310528 -0.129388 0.111192 0.107970 0.532466 -0.027116 0.000990 -0.542754 0.307457 0.240491 -0.045512 -0.428344 0.510311 0.147120 1.193400 -0.124593 0.160467 -0.107691 0.410209 -0.269108 -0.461106 -0.069830 0.659135 0.616921 0.111984 -0.122548 -0.057264 0.039557 0.266796 -PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.199000 0.053771 1.067692 0.686123 -0.997977 -2.038971 -0.581972 -2.397849 0.978640 0.433092 1.423008 0.122626 1.049186 -0.723823 0.043079 0.506411 0.669914 -0.424551 0.173237 -0.768768 -0.952917 1.873112 0.171466 -0.063509 0.095924 -1.103898 1.179430 0.567348 0.584301 1.125852 0.503214 0.004084 -0.338852 0.589189 -0.169477 0.841163 -0.153444 0.714948 -0.525209 0.027190 0.298129 -0.758884 1.207820 0.061804 1.281611 0.319557 0.996673 0.369151 -0.656424 -0.696456 -0.760304 0.729720 -1.133580 0.324802 -0.703801 -0.460085 0.540346 -0.221849 -0.216846 -0.583980 -0.303421 -0.758956 -1.193954 0.178545 -1.000658 0.501903 -0.651565 -0.831636 -0.284760 -0.102390 0.909509 0.377071 -0.176159 0.231714 -1.824510 -0.133246 0.245013 0.238048 0.882165 0.025384 -0.227960 -0.493571 -1.119913 -0.977533 1.474981 0.523103 0.512786 0.459135 -0.837722 -0.017958 -0.370935 0.084229 0.850423 0.593094 -0.585376 -0.024798 0.218299 -0.342122 -0.861090 -1.469293 0.584483 -0.554127 0.531096 0.179130 -0.122434 -0.194888 -0.516268 -0.057927 -1.077827 -1.270575 0.038372 -0.961029 0.204687 1.352314 -0.572562 -0.248956 -0.655532 -0.341717 0.238619 0.815701 0.775692 0.290773 1.294357 1.067594 0.365183 -1.164371 -0.876985 0.428802 0.914430 0.612381 0.369374 -0.813508 -0.865070 0.388847 -0.806261 -1.801758 -0.657442 0.771921 0.883385 -0.337922 -0.508545 0.883878 -0.516155 0.644851 1.197188 0.309228 0.254067 0.155502 -1.091705 0.874554 1.566101 -0.268482 0.938643 -0.569791 -0.514701 1.497378 -0.755108 0.149919 0.534601 -0.502645 -0.803534 -0.282548 0.165049 0.859753 0.216773 0.506320 0.089049 0.743622 -0.755434 -1.269306 -1.613638 0.118488 1.983480 0.667323 1.620270 -1.356117 -0.212506 0.412866 0.900255 0.092238 -0.774539 0.420763 -0.820787 0.851768 -2.124383 -1.511263 2.138021 1.083478 1.109783 0.227060 0.592221 1.011912 -0.954568 -0.487830 -0.581907 0.708587 0.309162 -1.615192 -0.405963 0.154850 -1.428348 -0.687099 -0.160067 0.671838 0.163946 -0.125427 0.719566 -0.801442 -0.340928 -0.675893 0.675743 -0.604177 -0.351917 -0.022384 -0.067249 0.049221 0.298122 -0.158682 0.484246 -0.013769 -0.645404 0.338582 0.453459 0.511752 0.323194 1.923534 1.848842 -0.903741 0.646171 -0.240558 -0.385022 1.274391 -0.357004 0.572937 0.206645 1.026194 0.473082 0.167299 1.288089 -0.594898 -0.596580 -1.129534 -0.333623 0.985074 0.787984 -0.287943 -0.736971 -2.095327 -0.078488 0.120610 1.825585 -0.307333 1.747488 -0.618379 0.542566 -1.808756 0.274593 0.373547 -0.198664 0.769370 0.318934 -0.615980 -0.375415 -0.573979 -1.080394 -0.903719 -0.317659 -0.417294 -0.727267 -0.502770 0.267387 -1.015509 -0.171805 0.513465 -0.261745 0.720854 -0.316046 0.122877 -0.785111 0.358657 0.952416 0.005251 -0.857792 1.153879 0.180665 2.683016 0.114529 0.795104 -0.313574 0.906514 -0.415127 -1.106607 -0.350965 1.451597 1.169308 -0.085412 0.273138 0.202817 0.478019 0.805422 -PE-benchmarks/vertex-cover-problem.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = -0.133115 0.014961 1.079202 0.365060 -0.715159 -1.367355 -0.491675 -2.105115 1.028142 0.520479 1.076959 0.190009 0.918004 -0.665902 -0.185840 0.175530 0.446137 -0.489943 0.229469 -0.590899 -0.469111 1.656383 0.007367 0.019133 0.048965 -1.481976 1.202067 0.223039 0.716786 1.178980 0.409677 -0.005627 -0.432492 0.515526 0.006414 0.642492 0.091722 0.581200 -0.446304 0.026946 0.282699 -0.370852 0.902114 0.124698 1.180470 0.203554 0.302908 0.264213 -0.269459 -0.608508 -0.332437 0.234280 -0.871844 0.295302 -0.440551 -0.319448 0.157225 -0.184724 -0.106595 -0.374420 -0.119115 -0.581568 -0.746014 0.253369 -0.865393 0.386733 -0.634401 -0.553348 -0.338782 -0.470213 0.690202 0.358985 0.085941 0.113604 -1.671102 -0.031505 0.119130 0.103168 0.784802 0.103981 -0.380131 -0.416397 -0.906585 -0.886035 0.993717 0.924852 0.139345 0.365031 -0.553605 -0.162959 -0.288091 0.031505 0.714503 0.653192 -0.589776 -0.120609 -0.173254 -0.197567 -0.300658 -1.264515 0.483889 -0.511887 0.471257 0.110267 -0.246645 -0.175657 -0.004241 -0.018106 -0.638807 -0.783844 0.227467 -0.712072 0.395084 1.352436 -0.308799 -0.343089 -0.808083 -0.372842 0.245154 0.711575 0.436576 0.179511 1.070270 0.834931 0.474771 -1.031812 -0.735581 0.808372 0.570713 0.376844 0.227189 -0.870667 -0.537558 0.309264 -0.522689 -1.479246 -0.558810 0.244784 0.650629 -0.561179 -0.194446 0.573015 -0.503090 0.481636 1.056627 0.095082 0.269828 0.204138 -0.923406 0.712504 1.443181 -0.062913 0.532907 -0.696896 -0.480952 1.149914 -0.624500 0.314574 0.132442 -0.220773 -0.613477 -0.333141 0.368209 0.749287 -0.173412 0.585899 -0.069795 0.597853 -0.542354 -1.004646 -1.334815 -0.064334 1.650859 0.619914 1.325480 -1.110948 -0.035055 0.231511 0.944842 0.468889 -0.470356 0.504145 -0.663292 0.693725 -1.690340 -1.251681 1.656360 1.226620 0.921197 0.044235 0.381015 0.760678 -0.716384 -0.439939 -0.461532 0.492477 0.174891 -1.324956 -0.320744 0.161131 -1.049711 -0.718092 0.000193 0.479234 0.494221 -0.128075 0.586736 -0.468130 -0.125268 -0.900349 0.879916 -0.436187 -0.342226 -0.064085 0.087337 -0.073859 0.339708 -0.194202 0.397941 0.252420 -0.216919 0.410284 0.540173 0.200863 -0.031712 1.185078 1.301463 -0.741539 0.193972 -0.168346 -0.179611 1.263768 -0.319956 0.409869 0.298919 0.548406 0.362559 0.231668 0.784552 -0.563567 -0.322171 -0.920299 -0.264486 0.569066 0.637406 -0.299771 -0.856454 -1.523789 0.012964 -0.088077 1.311506 0.047746 1.615697 -0.471321 0.461933 -1.388183 0.187999 0.567614 -0.107851 0.768452 0.286791 -0.487641 -0.298062 -0.456819 -0.912957 -0.673270 -0.367484 -0.494478 -0.606747 -0.401726 0.442098 -0.616822 -0.055063 0.526596 -0.157749 0.664334 -0.524122 0.157578 -0.901564 0.266328 0.414866 -0.032261 -0.672632 0.830159 0.075098 1.811680 -0.131124 0.607723 -0.155650 0.940891 -0.553756 -1.127751 -0.286487 1.231801 0.719791 0.112500 0.028938 -0.089109 0.298000 0.601257 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = -0.011661 0.035535 0.528450 0.064102 -0.171028 -0.727227 -0.212358 -1.094424 0.451274 0.210652 0.608230 -0.040887 0.473644 -0.304937 0.029233 0.274572 0.219383 -0.195594 0.143959 -0.236997 -0.112543 0.727277 -0.071326 0.120785 0.038674 -0.626711 0.284558 0.190090 0.328394 0.424400 0.176697 -0.044658 -0.123135 0.179068 -0.090882 0.358493 0.201215 0.239811 -0.311091 -0.010793 -0.116521 -0.117364 0.320908 -0.033318 0.592395 0.080450 0.256877 0.152307 -0.078572 -0.265137 -0.212148 0.417854 -0.347515 0.117189 -0.184578 -0.248977 0.046117 -0.076803 -0.100461 -0.204575 -0.077706 -0.166478 -0.361877 0.087173 -0.321697 0.218410 -0.148262 -0.240753 -0.107847 -0.078475 0.363710 0.164665 0.053860 0.197105 -0.773509 -0.000784 0.082203 0.075699 0.311733 -0.092875 0.009478 -0.181275 -0.326551 -0.390116 0.649656 0.479994 0.175437 0.191675 -0.379751 0.063996 -0.202023 -0.059687 0.344426 0.232292 -0.243766 -0.061709 0.032958 -0.090480 -0.212745 -0.589313 0.215330 -0.241306 0.176850 0.018126 0.171005 -0.018077 -0.111448 0.121266 -0.400313 -0.417039 0.164967 -0.266841 0.054536 0.616018 -0.252673 -0.065441 -0.289033 -0.121967 -0.009413 0.331206 0.235759 0.178702 0.382448 0.415848 0.199048 -0.448423 -0.397720 0.343081 0.424722 0.262162 0.094516 -0.480374 -0.260697 0.161610 -0.380118 -0.747864 -0.324169 0.214231 0.371480 -0.217095 -0.187793 0.284335 -0.175868 0.311398 0.450879 0.006400 0.064775 0.103485 -0.441765 0.331476 0.623252 -0.134896 0.383141 -0.219758 -0.050992 0.258454 -0.278849 0.094784 0.166016 -0.133625 -0.207528 -0.140796 0.048013 0.333508 0.189416 0.332120 -0.172244 0.330866 -0.408116 -0.526943 -0.661299 -0.086622 0.698958 0.012049 0.559017 -0.436104 -0.309289 0.074388 0.534511 -0.035209 -0.261876 0.210786 -0.446361 0.341093 -0.602974 -0.570671 0.846986 0.643290 0.552853 0.021483 0.280622 0.446865 -0.550470 -0.137947 -0.093503 0.216091 0.067060 -0.930377 -0.295199 0.013053 -0.537379 -0.337142 -0.100315 0.236361 -0.085445 0.309522 0.437610 -0.114226 -0.110419 -0.177947 0.311770 -0.189927 -0.116770 -0.057195 0.051720 0.019705 0.179989 -0.334851 0.230072 0.307477 -0.314914 0.187665 0.256381 0.138538 0.133191 0.739836 0.616867 -0.208474 0.427857 -0.136203 -0.212110 0.373476 -0.051360 0.196107 0.040766 0.192309 0.112522 0.084493 0.363850 -0.260368 -0.319012 -0.501720 -0.248158 0.320598 0.344327 0.252802 -0.483513 -0.646482 -0.036717 0.039639 0.655097 -0.030956 0.695686 -0.249771 0.267057 -0.726824 0.114034 0.141826 -0.131120 0.236307 0.115363 -0.196355 -0.364086 -0.156403 -0.453484 -0.744053 -0.191420 -0.343556 -0.227656 -0.439071 0.369236 -0.383489 -0.093945 0.185207 0.125274 0.360525 -0.172586 0.043054 -0.407755 0.257871 0.320121 -0.065411 -0.397512 0.294103 0.102713 1.147375 -0.085266 0.285514 -0.159711 0.354528 -0.201121 -0.401120 -0.093340 0.583557 0.517302 0.024555 -0.024250 -0.011233 0.066560 0.301292 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.044415 0.179975 0.568947 0.319263 -0.587228 -1.197312 -0.312460 -1.261446 0.362510 0.182319 0.729807 -0.031166 0.549008 -0.251675 0.020960 0.253219 0.336747 -0.126051 0.121447 -0.439584 -0.727604 0.778681 0.017183 0.017410 0.079984 -0.440397 0.771364 0.345182 0.196980 0.610686 0.267717 0.011221 -0.226979 0.357700 -0.075904 0.383006 -0.061599 0.446925 -0.202504 0.152415 0.140586 -0.456196 0.633465 0.086886 0.575963 0.471159 0.405209 0.293662 -0.375800 -0.349563 -0.332962 0.232946 -0.632837 0.169195 -0.465953 -0.276557 0.350460 -0.096957 -0.048348 -0.280290 -0.142230 -0.508340 -0.642497 0.129110 -0.610722 0.231874 -0.398023 -0.600557 -0.172732 0.032427 0.464346 0.173151 -0.171671 0.212776 -0.893849 -0.110000 0.202010 0.167021 0.517153 -0.139936 -0.082593 -0.231154 -0.677433 -0.563446 0.752761 0.204087 0.423062 0.263252 -0.397529 -0.056482 -0.119935 0.075865 0.545137 0.363685 -0.089658 0.001084 0.001113 -0.160567 -0.586058 -0.973769 0.348596 -0.244209 0.353076 0.073011 -0.136673 -0.162251 -0.305405 0.012116 -0.538601 -0.717406 -0.018076 -0.625013 0.188165 0.687147 -0.227828 -0.172320 -0.309092 -0.306587 0.209560 0.448758 0.495158 0.045104 0.668390 0.582283 0.131529 -0.624854 -0.563189 0.079355 0.374948 0.364987 0.272655 -0.486155 -0.507818 0.208218 -0.565333 -0.950916 -0.255093 0.293503 0.413510 -0.308015 -0.274770 0.603627 -0.403810 0.161888 0.604833 0.323136 0.134863 -0.000921 -0.552247 0.437090 0.719358 -0.167323 0.527359 -0.243346 -0.297280 0.725562 -0.269068 0.000488 0.338773 -0.395754 -0.459774 -0.069865 0.067186 0.455982 0.172385 0.267081 0.213922 0.377503 -0.537779 -0.604623 -0.709339 0.182564 1.200786 0.278191 0.802948 -0.789551 -0.054161 0.277634 0.562838 0.019331 -0.380237 0.158095 -0.309421 0.465054 -1.041715 -0.776195 0.990312 0.390188 0.580514 0.048163 0.173026 0.500627 -0.480707 -0.303926 -0.335014 0.326869 0.036824 -0.839942 -0.335914 0.078465 -0.748100 -0.203596 -0.055645 0.446004 0.160930 -0.078663 0.271767 -0.493939 -0.160356 -0.448757 0.261992 -0.299539 -0.107190 0.088267 -0.074826 0.021751 0.079779 -0.053419 0.204949 -0.042585 -0.336246 0.230642 0.261232 0.279071 0.149267 1.204806 0.832721 -0.533961 0.184756 -0.098293 -0.175601 0.696070 -0.144103 0.426558 0.163218 0.719827 0.213039 0.066789 0.822634 -0.320098 -0.390941 -0.652513 -0.332826 0.594880 0.371016 -0.051694 -0.269510 -1.200660 -0.004849 0.019722 1.094559 -0.209135 0.854520 -0.167137 0.333656 -0.723221 0.158663 0.115087 -0.219868 0.388135 0.197413 -0.340693 -0.138538 -0.321532 -0.636245 -0.578984 -0.166529 -0.092365 -0.366266 -0.057813 -0.149025 -0.398265 -0.150490 0.221033 -0.146238 0.234357 -0.165038 0.079865 -0.343069 0.142135 0.708223 -0.097995 -0.494189 0.615649 0.193409 1.450878 0.220357 0.442106 -0.110437 0.308833 -0.074912 -0.476793 -0.246959 0.788406 0.551027 -0.001678 0.210086 0.213128 0.376282 0.419398 -PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = -0.311786 0.001869 1.870566 0.651954 -1.101790 -1.852125 -0.737185 -2.787720 1.434427 0.338268 1.464219 0.105226 0.765995 -1.212805 0.091688 0.752387 0.757500 -0.478666 -0.048863 -0.845300 0.000544 1.470711 0.285844 -0.799199 0.513081 -2.056232 0.691091 0.468416 0.747269 1.039048 0.500640 -0.244784 -0.645676 0.843442 0.328576 1.324594 1.074180 0.205577 -1.073153 0.035953 -0.109669 0.197543 0.914479 -0.120850 2.118199 0.039139 0.834764 0.497041 -1.140840 -0.437579 -0.446823 1.650129 -1.102161 0.678503 0.188713 0.275900 -0.177489 -1.151229 -0.407650 -1.081566 -0.368021 -0.361750 -0.973289 0.152476 -0.857990 0.475575 0.154807 -0.457019 -0.009970 -0.158744 0.980828 0.411579 0.014568 0.599971 -1.357643 -0.158259 0.259794 0.693322 0.995845 -0.484422 0.061910 -0.683590 -0.646828 -0.909290 1.281112 0.707443 0.463066 0.363471 -0.537922 0.180948 -0.413921 -0.471892 0.568446 0.598412 -1.326422 -0.609963 0.168118 -0.442511 -0.670774 -1.115973 0.453985 -0.603439 0.455822 0.146678 -0.107582 0.207398 -0.319004 0.607287 -1.096148 -0.492710 0.508927 -0.354852 0.210820 1.614821 -0.501888 -0.337749 -0.749570 -0.412260 -0.092526 1.046617 0.146259 0.570327 1.327932 1.618140 0.795996 -1.095388 -0.996766 0.524143 1.303571 0.994751 0.678635 -1.366969 -0.744535 0.359157 -0.629266 -2.015621 -0.617435 0.153815 1.258534 0.367112 -0.971413 -0.125610 -0.437603 1.471166 0.562814 0.137381 -0.055817 0.140474 -1.400748 1.088681 1.969995 -0.454667 1.017217 -0.562972 0.250534 0.358621 -0.878996 0.286722 0.267605 -0.613503 -0.179681 -0.410193 -0.290310 0.953280 0.607540 0.465470 -0.632964 0.891830 -0.955921 -1.845671 -1.952780 -0.331686 1.477244 -0.136959 1.684999 -1.262212 -1.132416 -0.769600 1.527429 -0.323115 -0.571673 0.383056 -1.513292 0.957779 -0.989016 -1.606041 2.818023 2.451004 1.346984 0.247351 1.235296 0.966610 -1.847495 -0.276315 -0.157335 0.248928 0.415371 -1.938049 -0.648975 0.204537 -1.594801 -1.166095 -0.098753 0.661786 -0.107102 0.699012 0.854966 0.688862 -0.468675 -0.546077 0.520575 -0.563255 -0.429230 0.100035 0.177129 0.512732 0.749250 -0.972542 0.122300 0.670022 -0.928585 0.343450 0.708982 1.121560 0.671629 1.611235 1.746374 0.024489 1.846301 0.033116 -0.953732 1.129609 -0.002520 0.738268 0.310257 -0.019312 0.352649 0.152889 0.911881 -0.757399 -0.330594 -1.265436 -0.426798 0.407734 1.272004 -0.168455 -1.565126 -1.467318 -0.319125 0.528502 0.909805 -0.322185 1.939443 -0.478475 0.475312 -2.679485 -0.009434 1.096372 -0.131181 0.475843 0.457710 -0.840518 -2.253543 -0.329900 -1.225883 -1.539894 -0.601385 -0.249350 -0.728135 -0.993142 1.928139 -0.790476 -0.024673 1.166107 0.468076 1.206133 -0.362272 0.342712 -0.687781 0.014478 0.563299 0.063832 -1.190125 0.925193 0.486198 3.367880 -0.190875 0.643477 -0.583988 0.561776 -0.225273 -0.975953 -0.362418 1.523506 1.548009 0.282569 0.011990 -0.169861 -0.517061 1.294564 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = -0.154865 0.032423 0.761356 0.245923 -0.468569 -0.884051 -0.364362 -1.361603 0.652478 0.301690 0.709029 0.095314 0.575984 -0.427858 -0.111728 0.030603 0.212601 -0.359272 0.239856 -0.334192 -0.321501 1.083349 0.069121 -0.022296 0.025031 -1.042585 0.903161 0.118831 0.475220 0.883241 0.188925 -0.059062 -0.290862 0.395239 0.054265 0.384207 0.130857 0.394857 -0.227222 0.096003 0.174524 -0.206042 0.564181 0.058498 0.768250 0.242816 0.092232 0.198039 -0.207255 -0.379839 -0.201549 0.093412 -0.676913 0.216851 -0.256671 -0.208114 0.105619 -0.127236 -0.114219 -0.379141 -0.078311 -0.428374 -0.423172 0.197511 -0.628220 0.270774 -0.470480 -0.355119 -0.180505 -0.215637 0.497458 0.335806 0.167558 0.168096 -1.045071 0.057168 0.079851 0.143840 0.531006 -0.054423 -0.257342 -0.174789 -0.573174 -0.620893 0.581035 0.567874 0.121555 0.158623 -0.241077 -0.081967 -0.158564 0.010347 0.412017 0.475054 -0.270053 -0.033771 -0.215421 -0.052389 -0.142028 -0.923034 0.247171 -0.389053 0.319651 0.195555 -0.175870 -0.189150 0.000802 0.071329 -0.415543 -0.586370 0.225529 -0.450899 0.238307 0.868591 -0.188570 -0.159934 -0.457656 -0.249873 0.195731 0.530296 0.274803 0.155557 0.618842 0.647176 0.289910 -0.646890 -0.503654 0.533248 0.409259 0.271692 0.198728 -0.661222 -0.363904 0.175045 -0.316523 -0.958386 -0.318655 0.147466 0.418341 -0.368541 -0.202534 0.409537 -0.383167 0.343329 0.706097 0.116705 0.170732 0.108192 -0.632983 0.585534 1.002888 -0.059785 0.349426 -0.433085 -0.337992 0.799343 -0.451317 0.222997 0.053833 -0.083349 -0.327657 -0.276784 0.200222 0.506574 -0.036980 0.463147 0.032861 0.371517 -0.349584 -0.735097 -0.813750 0.004623 1.189706 0.302700 0.884848 -0.739705 -0.049130 0.156899 0.718088 0.349454 -0.283887 0.269717 -0.377889 0.473059 -1.188783 -0.867590 1.103194 0.821009 0.570098 0.044955 0.206134 0.617112 -0.455423 -0.299857 -0.345452 0.322368 0.003659 -0.847972 -0.307308 0.097177 -0.673738 -0.477209 0.060356 0.315648 0.423220 -0.094980 0.167855 -0.196927 -0.131308 -0.606661 0.585776 -0.369943 -0.263124 0.007057 0.036149 -0.013282 0.233236 -0.125855 0.278784 0.240870 -0.164276 0.264913 0.402496 0.150369 -0.021607 0.818547 0.827375 -0.433593 0.016954 0.003105 -0.108814 0.949972 -0.198501 0.281679 0.234702 0.359224 0.245879 0.173942 0.528072 -0.384398 -0.270929 -0.692942 -0.149325 0.347662 0.446588 -0.261973 -0.637126 -0.991439 0.012954 0.050455 0.836635 0.068469 1.121404 -0.225673 0.267294 -0.896136 0.081041 0.426430 -0.072163 0.565737 0.209435 -0.285451 -0.321798 -0.343375 -0.569075 -0.383183 -0.351590 -0.361812 -0.346929 -0.229561 0.270631 -0.325605 -0.000412 0.375859 -0.045626 0.431125 -0.306414 0.068688 -0.671418 0.144690 0.235467 -0.042745 -0.476149 0.627644 0.057684 1.215653 -0.166655 0.340979 -0.149274 0.581370 -0.341147 -0.641203 -0.134049 0.848024 0.437846 0.110299 0.031051 -0.015901 0.140235 0.392580 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.154380 0.392239 1.869189 0.754899 -1.051880 -1.562400 -0.577153 -2.553244 1.150786 0.277422 1.176745 -0.097219 0.622659 -0.611342 -0.174295 0.288264 0.332197 -0.231174 0.424888 -0.628351 -0.404658 1.811877 0.310174 -0.550812 0.209622 -1.993848 1.480339 0.576682 1.352263 1.176705 0.033843 -0.283566 -0.405942 0.919458 -0.042925 0.344585 0.174510 0.568093 -0.838758 0.493733 0.065706 0.094600 0.836646 -0.122284 1.243860 0.459545 0.590668 0.420765 -0.733781 -0.402816 -0.216072 0.773091 -0.988310 0.659151 -0.098379 -0.116620 -0.143925 -0.655028 -0.212916 -0.395945 -0.090238 -0.315094 -0.831751 0.390291 -1.410548 0.270601 -0.686342 -0.697197 0.122558 -0.070050 0.746727 0.545464 -0.011226 0.023381 -1.748833 0.165058 0.403094 0.613034 0.795076 -0.405761 0.004378 -0.064421 -0.983762 -1.105917 0.755295 1.079702 0.447939 -0.022620 -0.314651 -0.401263 0.060502 0.030637 0.371397 1.021306 -0.843272 0.035691 -0.920610 -0.192040 -0.658957 -1.791749 0.203524 -0.852675 0.762632 0.059073 -0.403944 -0.091173 0.282149 0.460501 -0.222041 -1.050142 -0.144480 -0.558582 0.797649 1.820541 -0.105838 -0.407000 -0.968587 -0.462626 -0.053053 0.928586 0.271287 0.224217 1.608724 1.308709 0.537855 -1.139672 -0.899561 0.511843 0.467810 0.904936 0.710986 -1.261666 -0.696274 -0.010053 -0.184835 -1.947532 -0.301049 0.019198 0.722921 -0.508422 -0.303031 0.115244 -0.777791 1.096249 1.007496 0.252022 0.234106 0.062721 -0.843522 1.064503 2.061126 -0.259666 0.514356 -0.994175 -0.727425 1.122489 -0.654128 0.575737 0.057291 -0.153873 -0.368438 -0.686973 0.234621 1.129829 -0.172422 0.447296 0.469941 0.387044 -0.391106 -1.382703 -1.511211 0.186705 1.487584 0.211413 1.799828 -1.234676 -0.456880 -0.041929 1.056768 0.542163 -0.282362 0.322135 -0.918252 0.798663 -1.576547 -1.712884 1.731298 1.781353 0.784760 0.013143 0.721247 0.903453 -1.127180 -0.714518 -0.564953 0.613477 -0.074624 -1.394473 -0.657999 0.352923 -1.385726 -0.432150 0.137108 0.576190 0.879527 -0.142671 0.035302 -0.205059 -0.981499 -1.234993 0.994398 -0.682932 -0.188169 0.107351 -0.045037 0.064394 0.708390 -0.535269 0.025598 0.352144 -0.508469 0.407039 0.535996 0.596148 -0.116463 1.493605 1.392045 -0.128318 0.704554 0.285272 -0.456569 1.878718 -0.253324 0.512379 0.388784 0.381591 -0.053913 0.543105 0.866854 -0.658931 -0.521991 -1.406432 -0.173488 0.377551 0.730421 -0.517059 -0.980577 -1.587059 -0.385345 0.419911 1.337411 0.289083 2.068371 -0.336103 0.569518 -2.029022 0.023600 0.566465 -0.107133 1.299526 0.469443 -0.874441 -0.906250 -0.505379 -0.911357 -0.683665 -0.607063 -0.706671 -0.895058 -0.178302 0.608145 -0.363365 0.167535 0.972948 0.106472 0.826261 -0.525506 0.123215 -0.793480 -0.084478 0.932923 -0.058891 -1.053980 0.746425 0.195711 2.670430 -0.321966 0.738013 -0.547729 0.280471 -0.023030 -1.082127 -0.385591 1.608371 0.836524 0.411488 -0.123529 -0.131472 -0.268901 0.948276 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::_M_max_size() const = -0.034364 0.081574 0.352591 0.109956 -0.120721 -0.492030 -0.135661 -0.553705 0.207269 0.120101 0.356017 -0.052011 0.322579 -0.117829 -0.018028 -0.010811 0.138982 -0.033957 0.074523 -0.163236 -0.183369 0.361817 -0.029783 -0.064459 0.071669 -0.359591 0.413423 0.136880 0.070306 0.425486 0.081853 0.049909 -0.106123 0.155058 -0.098280 0.117559 0.085613 0.196047 -0.065962 0.046274 0.065560 0.000463 0.223994 0.092918 0.266716 0.342538 -0.045118 0.116717 -0.065390 -0.191182 -0.016003 -0.036614 -0.216758 0.118557 -0.252903 -0.065034 0.144343 -0.070751 0.014468 -0.266214 0.079583 -0.104019 -0.230523 0.056041 -0.300794 0.089030 -0.110284 -0.257844 -0.076670 -0.129108 0.194896 0.045387 -0.056091 -0.002988 -0.408265 -0.033557 0.072493 0.039487 0.241911 -0.102863 -0.128491 -0.103636 -0.307674 -0.276705 0.314415 0.202170 0.165510 0.209637 -0.119074 -0.135245 -0.031871 0.016879 0.253430 0.220059 0.056404 -0.013274 -0.005266 -0.032205 -0.088854 -0.373418 0.180566 -0.127106 0.130420 0.108558 -0.026844 -0.030135 0.021699 0.135495 -0.168218 -0.245471 0.132632 -0.256936 0.080387 0.341698 -0.040622 -0.145586 -0.195153 -0.175333 0.137321 0.312602 0.118682 0.004932 0.250850 0.235467 0.068088 -0.289903 -0.235908 0.176316 0.144401 0.136728 0.095719 -0.353734 -0.183596 0.093901 -0.329615 -0.431515 -0.146004 -0.007253 0.219224 -0.269824 -0.226720 0.423404 -0.233192 0.024622 0.297625 0.130187 0.068875 0.017978 -0.293417 0.173868 0.383292 -0.092558 0.179895 -0.150157 -0.206077 0.219552 -0.016344 0.019112 0.058750 -0.166664 -0.102936 -0.042347 0.158884 0.251412 0.058397 0.224137 0.059228 0.173392 -0.269303 -0.260897 -0.350647 -0.015314 0.512777 0.098089 0.472572 -0.331703 -0.038930 0.002107 0.387215 -0.010148 -0.092487 0.055806 -0.129086 0.185841 -0.522403 -0.359949 0.449696 0.254259 0.345488 -0.038680 0.064665 0.186134 -0.051863 -0.093966 -0.118370 0.106929 0.025292 -0.304373 -0.137782 -0.010423 -0.320379 -0.149985 -0.000832 0.169952 0.080476 -0.036754 0.059346 -0.223453 -0.087863 -0.281253 0.115130 -0.172953 0.005198 0.029061 -0.021628 -0.052158 0.034529 -0.097446 0.068632 0.120817 -0.095070 0.108212 0.149434 0.083395 0.041653 0.450999 0.304337 -0.224803 -0.016267 -0.027951 -0.100262 0.475068 -0.063396 0.157016 0.075287 0.304357 0.152088 0.050754 0.280811 -0.143273 -0.108937 -0.373336 -0.144579 0.283090 0.149490 -0.058465 -0.160067 -0.496990 0.002879 -0.096862 0.572529 -0.023740 0.479252 -0.051436 0.167042 -0.299707 0.074794 0.133777 -0.132358 0.108157 0.108897 -0.157884 -0.273031 -0.089846 -0.332313 -0.310283 -0.147966 -0.144460 -0.175814 -0.031647 -0.042456 -0.127425 -0.007730 0.216278 0.009837 0.081936 -0.159609 0.034155 -0.216077 0.033028 0.164800 -0.066279 -0.256686 0.162213 0.097488 0.556926 0.021986 0.266651 -0.081579 0.226002 -0.144487 -0.254774 -0.134685 0.362617 0.219717 0.041228 0.136283 0.074243 0.134583 0.201925 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = -0.029334 0.079130 0.350070 0.121220 -0.131726 -0.493182 -0.135323 -0.558197 0.224155 0.117196 0.328286 -0.027592 0.321234 -0.154695 -0.041417 -0.009594 0.114724 -0.033184 0.064690 -0.163286 -0.182083 0.364369 -0.032888 -0.080728 0.046840 -0.368512 0.431761 0.135999 0.096621 0.429916 0.082159 0.043336 -0.106693 0.176652 -0.096256 0.120228 0.081328 0.211202 -0.065875 0.026740 0.067452 -0.003785 0.222373 0.089934 0.286100 0.323914 -0.040411 0.116672 -0.057253 -0.183414 -0.019157 -0.038644 -0.243263 0.110807 -0.255634 -0.064756 0.135423 -0.063496 0.023502 -0.275386 0.076732 -0.107090 -0.228042 0.056500 -0.307717 0.089584 -0.100457 -0.276875 -0.099398 -0.123930 0.197896 0.071399 -0.030030 0.000663 -0.417714 -0.034129 0.071018 0.043414 0.268414 -0.092586 -0.128254 -0.128847 -0.290666 -0.276132 0.314604 0.201902 0.158942 0.232549 -0.093376 -0.133992 -0.032990 0.017282 0.264336 0.220007 0.059371 -0.020456 -0.018192 -0.008726 -0.076554 -0.372934 0.181492 -0.125773 0.134483 0.102189 -0.026105 -0.030407 0.022956 0.108552 -0.184533 -0.233935 0.122254 -0.277888 0.100649 0.342157 -0.040682 -0.137163 -0.175208 -0.176769 0.135774 0.309566 0.119214 0.005664 0.247731 0.241157 0.069484 -0.313357 -0.240836 0.190287 0.145190 0.153106 0.096285 -0.359787 -0.180065 0.087537 -0.306342 -0.442590 -0.118673 -0.011088 0.193885 -0.266501 -0.223312 0.416591 -0.229059 0.025275 0.296879 0.129125 0.071810 0.018568 -0.294769 0.183172 0.385873 -0.072027 0.179293 -0.143172 -0.200428 0.231553 -0.047413 0.030330 0.046648 -0.187116 -0.103435 -0.039417 0.158812 0.250000 0.037052 0.228397 0.060436 0.174133 -0.276577 -0.284925 -0.327901 -0.013332 0.540642 0.102565 0.473667 -0.341910 -0.033475 0.025713 0.387650 -0.002224 -0.072263 0.060937 -0.133255 0.211808 -0.514934 -0.375280 0.453580 0.249141 0.340761 -0.031959 0.061579 0.190942 -0.043774 -0.093513 -0.096212 0.078344 0.032894 -0.313988 -0.143414 -0.007192 -0.320963 -0.166330 0.023232 0.171243 0.080834 -0.028495 0.059605 -0.219501 -0.057069 -0.305327 0.115879 -0.170445 0.008502 0.029373 0.002157 -0.051911 0.034555 -0.097382 0.071019 0.120820 -0.067846 0.129474 0.148382 0.077124 0.042950 0.442049 0.303874 -0.244893 -0.014280 -0.011153 -0.073942 0.481031 -0.060243 0.172511 0.107678 0.317849 0.153875 0.052523 0.278001 -0.164578 -0.072390 -0.376298 -0.167773 0.291749 0.150654 -0.058556 -0.159328 -0.476546 0.001150 -0.091675 0.524902 -0.037592 0.478829 -0.051228 0.159673 -0.297677 0.070937 0.151384 -0.136310 0.131924 0.131718 -0.155702 -0.274499 -0.116672 -0.305220 -0.308538 -0.161992 -0.138688 -0.153902 -0.018324 -0.047439 -0.137289 -0.006113 0.211097 0.006541 0.076969 -0.200969 0.064327 -0.220409 0.033076 0.141014 -0.065972 -0.257209 0.173115 0.088002 0.548383 0.018523 0.263351 -0.081549 0.251109 -0.143239 -0.255744 -0.132391 0.384078 0.193439 0.040338 0.133170 0.075236 0.133525 0.210745 -PE-benchmarks/vertex-cover-problem.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = -0.474556 -0.065138 1.191481 0.639929 -0.926884 -1.388805 -0.585116 -1.998008 1.072899 0.562257 1.229584 0.298508 1.008250 -0.768143 -0.197959 -0.173049 0.526728 -0.586497 0.272982 -0.604773 -0.553454 1.853830 0.306456 -0.243534 0.025700 -1.501549 1.560897 0.129314 0.649480 1.528396 0.364960 0.017587 -0.526656 0.605316 0.077025 0.634891 -0.025529 0.711229 -0.264405 -0.034059 0.556137 -0.550587 1.054961 0.157474 1.223135 0.253184 0.234036 0.178131 -0.560616 -0.747130 -0.340192 -0.054705 -1.172948 0.372591 -0.428005 -0.280777 0.337577 -0.133528 -0.142481 -0.877926 -0.050057 -0.812067 -0.749664 0.267451 -1.013870 0.453880 -0.842742 -0.594108 -0.328168 -0.582551 0.754381 0.479878 0.249578 0.121561 -1.662583 0.052521 0.117260 0.126287 0.870702 0.245429 -0.614252 -0.431872 -0.998962 -0.998260 0.900861 0.669138 0.126982 0.356273 -0.464505 -0.129049 -0.157698 0.139089 0.616097 0.744572 -0.560784 -0.005659 -0.137443 -0.176329 -0.155240 -1.390154 0.415516 -0.675682 0.459539 0.491770 -0.574803 -0.303858 -0.199582 -0.010768 -0.741235 -0.990568 0.348627 -0.825985 0.262606 1.286132 -0.419508 -0.319455 -0.806885 -0.329529 0.551087 0.840056 0.403234 0.295346 1.050059 0.942791 0.501230 -1.136313 -0.630677 0.857209 0.684820 0.313296 0.265999 -0.832761 -0.636044 0.343400 -0.543343 -1.546131 -0.603954 0.401901 0.757240 -0.412934 -0.450812 0.718526 -0.625274 0.549001 1.262000 0.309129 0.308715 0.236103 -1.063588 0.828607 1.543093 -0.119570 0.584975 -0.588851 -0.749364 1.628681 -0.736156 0.391519 0.042795 -0.118848 -0.575547 -0.490765 0.360632 0.904498 -0.163876 0.707005 0.015477 0.569027 -0.392341 -1.236887 -1.460487 -0.031005 1.994362 0.916973 1.518195 -1.270325 0.144159 0.348513 0.986289 0.605213 -0.619281 0.399330 -0.486582 0.739127 -2.362916 -1.490076 1.888631 1.228461 0.852426 0.166161 0.309181 0.874056 -0.516577 -0.486142 -0.712577 0.621022 0.069810 -1.036658 -0.284875 0.225463 -1.157927 -0.800403 0.128717 0.470423 0.768512 -0.600924 0.266408 -0.443587 -0.130193 -0.995009 0.950396 -0.623385 -0.552569 -0.078250 0.025660 0.060918 0.300394 0.046285 0.404813 0.113221 -0.233287 0.262558 0.517414 0.301203 0.001892 1.309324 1.529823 -0.896328 -0.279307 -0.070552 -0.212122 1.742559 -0.532416 0.361653 0.325667 0.776308 0.575575 0.266199 0.980179 -0.594203 -0.316131 -1.056825 -0.166003 0.627549 0.732032 -0.963612 -0.982685 -1.742237 0.137576 -0.011119 1.449297 0.014512 1.944351 -0.488107 0.369481 -1.541376 0.139417 0.810914 -0.074594 0.970843 0.346627 -0.515536 -0.423202 -0.613993 -0.937417 -0.093210 -0.447093 -0.446983 -0.605032 -0.236796 0.349817 -0.617885 0.060101 0.573713 -0.303740 0.791935 -0.295729 0.093688 -1.038779 0.199973 0.228426 0.086839 -0.688803 1.225226 0.074858 1.809245 -0.211136 0.569985 -0.227244 1.124647 -0.687307 -1.180153 -0.287965 1.375480 0.828838 0.164747 0.144939 0.018372 0.271766 0.663932 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = -0.084019 0.031544 0.535696 0.091752 -0.269736 -0.519983 -0.199289 -0.965257 0.454080 0.244492 0.499940 0.048737 0.459820 -0.328286 -0.097404 -0.010674 0.192950 -0.185280 0.176897 -0.204970 -0.085332 0.669835 -0.075371 0.070797 0.011759 -0.655790 0.539834 0.016276 0.355044 0.572879 0.165867 -0.046165 -0.271800 0.182940 0.067271 0.252924 0.180339 0.278310 -0.228957 -0.019888 0.007677 -0.204356 0.306473 0.015020 0.523819 0.049384 -0.035306 0.108813 -0.080752 -0.272364 -0.062894 0.022467 -0.386752 0.142891 -0.091621 -0.253846 -0.005588 0.040848 -0.024890 -0.232967 0.004139 -0.338355 -0.203401 0.131632 -0.374545 0.182944 -0.325130 -0.225028 -0.157269 -0.260737 0.277728 0.194476 0.204430 0.174418 -0.754349 0.022226 0.057991 0.039361 0.346031 0.063477 -0.084058 -0.206504 -0.345705 -0.403367 0.409842 0.486923 0.042939 0.147059 -0.273708 0.006716 -0.063311 0.000967 0.322467 0.271951 -0.226194 -0.039796 -0.229815 -0.019624 0.035375 -0.717354 0.180304 -0.258045 0.189307 0.078361 -0.112028 -0.076468 0.028300 0.099339 -0.238576 -0.344073 0.233404 -0.271330 0.123125 0.621891 -0.149016 -0.151775 -0.366367 -0.150154 0.138888 0.282370 0.154480 0.148840 0.290344 0.358205 0.277813 -0.469376 -0.342808 0.490710 0.249879 0.151420 0.056731 -0.420501 -0.187527 0.167232 -0.297322 -0.663165 -0.279664 0.057039 0.308350 -0.268526 -0.073197 0.169702 -0.271407 0.190796 0.462929 0.065927 0.106671 0.132586 -0.407585 0.286944 0.530742 -0.045473 0.225788 -0.196812 -0.140419 0.331570 -0.211296 0.144755 -0.047855 -0.017947 -0.161287 -0.188963 0.102328 0.341194 -0.016536 0.351910 -0.155235 0.270100 -0.351752 -0.508190 -0.542451 -0.064816 0.827976 0.185729 0.443602 -0.456266 -0.086739 0.140807 0.529677 0.219073 -0.216225 0.226949 -0.282157 0.327436 -0.698258 -0.564141 0.685199 0.582593 0.403338 -0.037598 0.067690 0.364928 -0.429301 -0.198410 -0.213283 0.161149 -0.062454 -0.729259 -0.290301 0.070103 -0.446018 -0.310748 0.086184 0.192536 0.250825 0.058508 0.283799 -0.035234 0.044046 -0.381558 0.482583 -0.157281 -0.170542 -0.050360 0.071783 0.053205 0.170536 -0.183999 0.187907 0.269639 -0.103020 0.177501 0.250407 0.041695 -0.059054 0.578113 0.471829 -0.264735 -0.044219 -0.074183 -0.152879 0.597074 -0.137494 0.172285 0.111856 0.152062 0.136330 0.117432 0.341970 -0.283101 -0.235964 -0.468817 -0.308458 0.191059 0.329830 -0.041683 -0.521026 -0.578720 0.094298 -0.062753 0.512040 0.079893 0.734397 -0.205220 0.204219 -0.517171 0.062512 0.311005 -0.110597 0.391811 0.114797 -0.165119 -0.213201 -0.202813 -0.425609 -0.366970 -0.222210 -0.255936 -0.185509 -0.218206 0.271555 -0.165139 -0.042339 0.145076 0.020871 0.375595 -0.203538 0.054103 -0.465857 0.194300 0.099946 -0.046563 -0.342114 0.387209 0.099610 0.809012 -0.097545 0.151040 -0.077814 0.381086 -0.283630 -0.454779 -0.105792 0.556199 0.363096 0.160614 -0.081288 -0.039904 0.045210 0.229548 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = -0.251862 0.003070 0.529219 0.051099 -0.281090 -0.614228 -0.238002 -0.880318 0.348254 0.234458 0.622096 0.018404 0.474178 -0.280238 0.032105 0.011569 0.253066 -0.277494 0.180399 -0.244287 -0.096560 0.556560 0.062058 0.078621 0.022393 -0.531173 0.445155 0.052271 0.170443 0.568965 0.167737 -0.036997 -0.280422 0.191587 0.071800 0.350958 0.258305 0.279464 -0.124158 0.017124 -0.007893 -0.214926 0.313825 -0.002068 0.580336 0.162258 0.016670 0.139503 -0.238136 -0.355670 -0.057971 0.074868 -0.492321 0.108397 -0.069476 -0.214948 0.068257 -0.014363 -0.080921 -0.463320 -0.012985 -0.372170 -0.233749 0.139883 -0.318771 0.233551 -0.278610 -0.223805 -0.134923 -0.209570 0.311507 0.180993 0.177782 0.357998 -0.579589 0.016645 0.077806 0.068531 0.333078 -0.073872 -0.150350 -0.191766 -0.301279 -0.407293 0.415839 0.324211 0.151782 0.158549 -0.304720 0.171375 -0.064349 -0.008357 0.281537 0.245100 -0.171379 -0.073819 0.026631 -0.074445 -0.097833 -0.656857 0.182965 -0.250584 0.164128 0.207358 -0.095051 -0.171509 -0.333664 0.112450 -0.441612 -0.395798 0.274433 -0.316329 0.023642 0.470700 -0.315464 -0.021639 -0.317270 -0.142373 0.270123 0.336483 0.185015 0.188454 0.222676 0.427158 0.187806 -0.461092 -0.347535 0.316591 0.428598 0.158530 0.105983 -0.407432 -0.259429 0.199353 -0.453297 -0.618074 -0.308350 0.156183 0.366072 -0.102420 -0.253505 0.258188 -0.290122 0.243756 0.490961 0.190432 0.039478 0.089038 -0.478758 0.305757 0.453459 -0.139422 0.393140 -0.028180 -0.104270 0.350179 -0.279728 0.107530 0.127100 -0.087693 -0.204999 -0.152650 -0.033635 0.329718 0.238931 0.435338 -0.184789 0.291374 -0.300773 -0.533752 -0.580842 -0.063248 0.876234 0.130725 0.406708 -0.483174 -0.143015 0.137939 0.581687 0.091448 -0.361939 0.115560 -0.209624 0.312795 -0.741940 -0.545994 0.779225 0.602676 0.465880 0.056478 0.103955 0.428448 -0.463573 -0.107829 -0.178549 0.213743 -0.171374 -0.700606 -0.293163 0.071666 -0.479482 -0.321101 -0.021606 0.251868 0.107025 0.072233 0.237870 0.081861 0.038746 -0.200746 0.273298 -0.163453 -0.262884 -0.036381 0.030946 0.165077 0.075963 -0.189100 0.211285 0.267226 -0.287093 0.116171 0.271632 0.160257 0.137699 0.745126 0.477679 -0.266324 -0.026169 -0.118148 -0.184986 0.470101 -0.117764 0.220262 0.069237 0.264519 0.221093 0.044168 0.433496 -0.254839 -0.298614 -0.471640 -0.306085 0.281665 0.396446 -0.026510 -0.586265 -0.653992 0.149427 0.053566 0.606001 -0.063822 0.724349 -0.125866 0.202101 -0.545975 0.068158 0.250965 -0.151873 0.260628 0.124036 -0.147954 -0.363506 -0.213269 -0.471676 -0.398403 -0.172752 -0.153287 -0.128808 -0.234989 0.292146 -0.216999 -0.096329 0.064681 0.068742 0.386576 0.090597 0.007740 -0.426342 0.203415 0.185393 -0.042707 -0.349307 0.495636 0.169268 0.913698 -0.071552 0.157074 -0.070524 0.363022 -0.193685 -0.311802 -0.090275 0.570857 0.511835 0.109412 -0.020389 0.029706 0.077901 0.243322 -PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = -0.203926 0.098333 1.024420 0.367135 -0.680889 -1.276814 -0.473709 -1.712339 0.810244 0.411572 0.940759 0.147559 0.764127 -0.472369 -0.135115 0.036491 0.359878 -0.436000 0.227609 -0.523430 -0.548789 1.380663 0.148937 -0.105879 0.089256 -1.310303 1.228624 0.250866 0.534142 1.173441 0.277105 -0.003459 -0.375026 0.569024 -0.004368 0.468740 0.065333 0.530340 -0.260045 0.169425 0.348806 -0.232582 0.859302 0.181093 0.965015 0.477623 0.154349 0.276503 -0.350709 -0.540746 -0.250085 0.074594 -0.854145 0.322878 -0.444693 -0.155486 0.238851 -0.244848 -0.083312 -0.517068 -0.072243 -0.505634 -0.641771 0.232813 -0.857751 0.287894 -0.603328 -0.569212 -0.255131 -0.358330 0.627813 0.335132 0.029446 0.081321 -1.352500 0.023238 0.146924 0.182505 0.731874 -0.048957 -0.471207 -0.244593 -0.848110 -0.846517 0.738097 0.659392 0.219086 0.302337 -0.357282 -0.242758 -0.190409 0.061617 0.562665 0.673210 -0.347714 -0.040557 -0.155965 -0.165878 -0.342286 -1.136712 0.380884 -0.465792 0.439722 0.226516 -0.296421 -0.265596 -0.103666 0.034581 -0.541883 -0.731854 0.236588 -0.692548 0.327140 1.105378 -0.227464 -0.280546 -0.640123 -0.384271 0.333625 0.756208 0.364637 0.069531 0.939135 0.807195 0.346584 -0.871729 -0.614434 0.551582 0.481987 0.346169 0.313016 -0.812341 -0.524664 0.237386 -0.491134 -1.279841 -0.384097 0.187840 0.554426 -0.500046 -0.313178 0.665068 -0.563141 0.386229 0.949410 0.232557 0.266197 0.092376 -0.835718 0.698629 1.345598 -0.110176 0.488557 -0.602261 -0.576208 1.174054 -0.546996 0.307805 0.130572 -0.246475 -0.508467 -0.294641 0.340951 0.721249 -0.083939 0.538388 0.166403 0.450392 -0.393211 -0.877834 -1.150800 0.022545 1.520343 0.544938 1.295220 -1.032551 0.048186 0.145338 0.892114 0.410045 -0.394776 0.330252 -0.421134 0.589972 -1.675010 -1.128200 1.471647 1.048555 0.758979 0.054448 0.297988 0.683674 -0.429512 -0.433957 -0.471578 0.444232 0.052897 -0.928068 -0.282456 0.149338 -0.919925 -0.543153 0.015552 0.436217 0.580287 -0.306106 0.208145 -0.441815 -0.236286 -0.870865 0.628959 -0.501144 -0.320269 0.050344 0.005437 -0.079889 0.254974 -0.054971 0.263289 0.171387 -0.230346 0.312295 0.479493 0.267780 0.010634 1.093526 1.110032 -0.654634 0.006409 -0.016187 -0.126924 1.323058 -0.331582 0.394864 0.320263 0.656946 0.373571 0.234630 0.755240 -0.475589 -0.262139 -0.888738 -0.099754 0.543556 0.521075 -0.496393 -0.714763 -1.440165 0.013540 -0.013534 1.260204 0.001684 1.502735 -0.251050 0.382440 -1.197607 0.138844 0.505689 -0.091897 0.678365 0.310995 -0.480171 -0.366992 -0.436815 -0.822328 -0.391796 -0.344589 -0.371495 -0.521259 -0.158239 0.191076 -0.477214 0.024621 0.559129 -0.196605 0.496922 -0.376150 0.104826 -0.792999 0.089132 0.453830 -0.045573 -0.585666 0.804494 0.076759 1.551767 -0.111264 0.598525 -0.155046 0.756090 -0.380524 -0.900653 -0.289293 1.125286 0.561322 0.117669 0.152975 0.014549 0.300858 0.568838 -PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = 0.368967 0.189429 0.397188 0.073897 -0.162600 -0.281172 -0.004932 -0.627065 0.374856 -0.034137 0.095130 -0.039724 0.067038 -0.094360 -0.093785 0.335514 0.184582 0.208590 0.049523 -0.142548 0.148110 0.395653 -0.199005 -0.064568 0.083115 -0.350996 0.036688 0.121896 0.544662 0.003226 0.004325 -0.105471 -0.050268 0.091354 0.089129 0.058623 0.160282 0.016417 -0.486806 0.045705 -0.280319 -0.065511 0.102392 0.077766 0.191042 -0.249217 0.124168 0.095758 -0.025148 0.035481 -0.030850 0.368564 0.069393 0.196453 0.125430 -0.009758 -0.110490 -0.105944 0.106604 0.368792 -0.087547 0.061301 -0.169538 0.033446 -0.196624 -0.048154 -0.082400 0.010663 -0.082521 -0.104111 -0.025477 -0.017054 -0.070642 0.015246 -0.618605 -0.167839 0.079887 0.119647 0.147029 0.063043 0.179110 -0.171576 -0.228429 -0.213362 0.252257 0.426613 0.052522 0.112513 -0.330630 -0.134818 -0.001983 0.068328 0.116191 0.162755 -0.426768 -0.068305 -0.251046 -0.086023 -0.064216 -0.534759 0.071349 -0.104402 0.056236 -0.457836 0.119466 0.049271 0.154524 0.172452 0.152068 0.051375 -0.044243 -0.010856 -0.003769 0.420770 0.150481 -0.232781 -0.358645 -0.137596 -0.182507 0.091627 -0.035415 0.010525 0.243079 0.101252 0.228859 -0.197197 -0.176428 0.111617 -0.026300 0.180989 0.076164 -0.076039 -0.022964 0.049298 0.029870 -0.435558 -0.106808 -0.011654 0.173779 0.011763 0.251922 -0.537079 -0.159468 0.226099 0.056468 0.021036 -0.027515 0.039340 -0.042076 -0.045818 0.279952 -0.040010 0.083593 -0.223467 0.142617 -0.264996 -0.081693 0.125164 -0.262094 -0.100741 -0.064106 -0.008134 0.011124 0.222206 -0.241905 -0.207610 -0.102853 0.015959 -0.262868 -0.095553 -0.399236 -0.072940 0.201467 -0.024184 0.113706 -0.135278 -0.269892 -0.055896 -0.016501 0.007312 0.036566 0.194345 -0.370524 0.183321 0.058633 -0.238356 0.277835 0.362940 0.184440 -0.102262 0.077605 0.020341 -0.506344 -0.244477 0.055225 0.004413 -0.005231 -0.521855 -0.230888 0.079723 -0.298262 0.042445 0.035751 0.082666 -0.003192 0.230449 0.527481 -0.029689 -0.141755 -0.215890 0.301149 0.051086 0.033833 0.020935 -0.040417 -0.057226 0.297084 -0.158851 -0.095743 0.234832 -0.120837 0.046807 -0.072980 0.007542 -0.135350 0.265191 0.336693 0.241114 0.415184 -0.018668 -0.239036 0.076687 -0.098985 0.125236 -0.056533 -0.250052 -0.149968 0.161586 0.142538 -0.110924 -0.118878 -0.255510 -0.297032 -0.023550 0.195195 0.323626 -0.235405 -0.084207 -0.114389 0.009212 0.206500 0.092093 0.236897 -0.229461 0.254778 -0.420393 0.085461 0.145161 -0.054403 0.185677 0.027891 -0.219928 -0.046378 0.027285 -0.210427 -0.386330 -0.014361 -0.157915 -0.209409 -0.173719 0.239398 -0.166962 0.024615 0.117534 0.103484 0.344765 -0.273992 0.060964 -0.090306 0.112675 0.359747 -0.152321 -0.162484 -0.234221 0.161940 0.549936 -0.060932 0.114257 -0.051082 -0.079781 0.056432 -0.351762 -0.162598 0.268527 0.238983 0.108417 -0.186345 -0.132548 -0.206820 0.204326 -PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.131794 0.160120 0.911905 0.246458 -0.661837 -1.196669 -0.395504 -1.664026 0.667655 0.430914 0.931682 0.067093 0.749853 -0.372855 -0.116512 0.061273 0.377909 -0.342508 0.232015 -0.494135 -0.638022 1.144406 -0.013394 0.101369 0.114520 -1.026998 1.170706 0.232512 0.426193 0.984728 0.317047 0.007843 -0.401581 0.468793 0.058851 0.458102 0.038185 0.555708 -0.190713 0.175286 0.296791 -0.420171 0.788928 0.190834 0.829474 0.461907 0.114237 0.254304 -0.329575 -0.511882 -0.182468 -0.029973 -0.754625 0.272562 -0.431221 -0.283562 0.243361 -0.124184 0.002555 -0.320742 -0.057612 -0.623551 -0.620886 0.224683 -0.766125 0.227891 -0.621675 -0.571620 -0.265564 -0.367281 0.513586 0.223959 -0.066195 0.166735 -1.270323 -0.039825 0.220453 0.070039 0.669359 -0.009441 -0.354299 -0.267402 -0.869179 -0.809752 0.767168 0.646086 0.271761 0.271348 -0.495872 -0.171535 -0.130347 0.109068 0.620161 0.644524 -0.308492 -0.060548 -0.194551 -0.217139 -0.403819 -1.229180 0.416717 -0.420795 0.445078 0.135510 -0.375424 -0.257807 -0.139798 0.033391 -0.462936 -0.706181 0.154705 -0.738733 0.376116 1.000243 -0.189290 -0.335862 -0.676223 -0.413206 0.394518 0.574563 0.428964 -0.018871 0.916178 0.651268 0.378758 -0.831949 -0.640643 0.480254 0.341576 0.292757 0.202917 -0.703272 -0.464590 0.269710 -0.594553 -1.207223 -0.408215 0.116126 0.489824 -0.562154 -0.171979 0.613728 -0.555646 0.204917 0.906641 0.277175 0.236664 0.142930 -0.710135 0.504543 1.052150 -0.111889 0.439825 -0.494872 -0.506489 0.970527 -0.376452 0.209811 0.176168 -0.243615 -0.533372 -0.242116 0.289768 0.671164 -0.098806 0.475654 0.111273 0.432079 -0.470310 -0.689943 -1.054635 0.073847 1.495926 0.561326 1.066995 -0.994308 0.092502 0.249356 0.821392 0.387155 -0.429048 0.330164 -0.336897 0.544340 -1.439131 -1.001507 1.214066 0.812725 0.715073 -0.024869 0.165884 0.536104 -0.514977 -0.427439 -0.511788 0.429386 -0.011896 -0.963465 -0.312961 0.158081 -0.859660 -0.359065 -0.025588 0.418209 0.535396 -0.280271 0.332032 -0.471858 -0.110002 -0.780154 0.615827 -0.353892 -0.275183 -0.002049 -0.019392 -0.043257 0.219721 -0.048773 0.232689 0.086283 -0.241922 0.294722 0.443014 0.187980 -0.048654 1.187308 0.963144 -0.686826 -0.124594 -0.134889 -0.110472 1.066682 -0.296102 0.373675 0.279072 0.653841 0.322973 0.223846 0.840217 -0.440303 -0.350825 -0.809118 -0.273615 0.523850 0.455073 -0.288468 -0.555683 -1.430109 0.070537 -0.115192 1.289396 0.008824 1.317784 -0.183641 0.427947 -0.919141 0.141751 0.349564 -0.173549 0.628689 0.215497 -0.458480 -0.103806 -0.392870 -0.841003 -0.504472 -0.209176 -0.185305 -0.513819 -0.111373 0.039404 -0.371541 -0.056084 0.335574 -0.193581 0.415246 -0.306103 0.105140 -0.671598 0.165381 0.607019 -0.101082 -0.546517 0.719809 0.161088 1.468289 0.008677 0.533893 -0.072854 0.608782 -0.314004 -0.824193 -0.321339 0.994150 0.570573 0.176791 0.074238 0.064512 0.345191 0.525338 -PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.162995 0.076112 0.666601 0.402561 -0.546100 -1.217045 -0.342742 -1.308346 0.510339 0.255586 0.842261 0.035294 0.652641 -0.377247 0.018139 0.172458 0.384310 -0.205437 0.100609 -0.449528 -0.585701 0.990663 0.111761 -0.115247 0.082137 -0.628760 0.814045 0.346224 0.228085 0.773090 0.264321 0.052265 -0.214818 0.378759 -0.138157 0.436367 -0.051007 0.458556 -0.196546 0.042405 0.228210 -0.356313 0.688711 0.108101 0.706082 0.414677 0.406887 0.229580 -0.391929 -0.440968 -0.330895 0.233614 -0.676911 0.211025 -0.491300 -0.206816 0.383670 -0.147903 -0.071406 -0.509035 -0.068460 -0.420746 -0.680071 0.106649 -0.630014 0.266437 -0.349969 -0.559584 -0.179429 -0.122485 0.510639 0.187154 -0.137919 0.104463 -0.980741 -0.088666 0.167893 0.127805 0.552920 -0.059656 -0.232966 -0.288959 -0.686861 -0.601504 0.812495 0.250698 0.361635 0.358490 -0.411829 -0.087796 -0.152978 0.074494 0.519282 0.403878 -0.170527 -0.013819 0.156626 -0.176232 -0.465238 -0.847808 0.370536 -0.315520 0.310748 0.200919 -0.126127 -0.136790 -0.307480 0.033664 -0.614046 -0.717157 0.082681 -0.634987 0.130964 0.726882 -0.293381 -0.184442 -0.377091 -0.268120 0.267156 0.564548 0.419103 0.106950 0.720193 0.609683 0.168371 -0.697539 -0.507876 0.224943 0.494857 0.347822 0.235138 -0.546278 -0.513317 0.228147 -0.584615 -1.032762 -0.348570 0.347328 0.507154 -0.278120 -0.423876 0.712657 -0.390766 0.267288 0.719785 0.285375 0.149778 0.062194 -0.664272 0.477720 0.884829 -0.186540 0.544012 -0.289320 -0.397595 0.856852 -0.346371 0.068066 0.300176 -0.367226 -0.428308 -0.132837 0.160462 0.539851 0.151185 0.361183 0.123304 0.414941 -0.461991 -0.709223 -0.904105 0.066703 1.221416 0.401932 1.017370 -0.825212 -0.065532 0.205084 0.616287 0.015068 -0.414817 0.170594 -0.368607 0.486729 -1.314811 -0.886665 1.208428 0.563641 0.682703 0.102286 0.278162 0.536452 -0.367714 -0.258853 -0.339806 0.376538 0.132818 -0.787940 -0.232469 0.069289 -0.825475 -0.369991 -0.071599 0.408051 0.127097 -0.170861 0.282005 -0.512769 -0.190563 -0.468289 0.289369 -0.383640 -0.164932 0.019783 -0.059010 0.007668 0.106875 -0.067374 0.232390 0.001052 -0.348029 0.190518 0.272147 0.305905 0.207344 1.151439 0.995910 -0.583134 0.192712 -0.110954 -0.204901 0.871721 -0.215210 0.362053 0.155716 0.734865 0.346354 0.091718 0.786726 -0.342246 -0.292135 -0.722370 -0.223859 0.650654 0.425803 -0.253853 -0.373710 -1.260769 -0.013059 0.001698 1.178456 -0.205172 1.058896 -0.259124 0.326158 -0.945416 0.162281 0.241404 -0.181618 0.388177 0.226575 -0.376429 -0.335919 -0.332847 -0.668738 -0.496639 -0.207630 -0.196107 -0.410024 -0.159389 0.001377 -0.524702 -0.073238 0.341616 -0.145568 0.328451 -0.178971 0.081891 -0.442388 0.143821 0.531059 -0.029111 -0.517720 0.650708 0.150151 1.480120 0.094778 0.529181 -0.178993 0.542665 -0.242095 -0.606039 -0.253048 0.862968 0.641969 -0.023378 0.255790 0.182015 0.325473 0.491937 -PE-benchmarks/vertex-cover-problem.cpp___GLOBAL__sub_I_vertex_cover_problem.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/largest-sum-contiguous-subarray.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = 0.269882 1.121936 6.512825 4.704570 -4.655581 -6.747877 -2.759217 -8.977021 4.534931 0.036622 4.338572 0.465028 1.620430 -2.158654 -0.428729 0.409816 1.336578 -1.313660 0.226562 -2.573404 -2.943362 7.267455 1.651152 -3.870404 0.814869 -7.634506 4.964118 3.079606 4.206366 4.276901 0.569383 -0.986777 -1.363483 3.581585 -1.311664 0.604286 -0.074157 1.114539 -3.664269 0.556277 2.026516 0.842097 5.130489 -0.282362 4.230712 0.978267 3.786916 1.681025 -3.089559 -0.916869 -3.377428 5.121975 -3.540706 2.567724 -0.563738 0.807188 1.119810 -3.763703 -1.471021 -1.681543 -1.322975 -0.448925 -3.487760 0.366558 -4.736066 1.098393 -1.824704 -2.751770 1.687723 0.007533 3.954475 1.739852 -0.118466 -1.327972 -6.175640 0.876130 0.522536 3.200235 3.103157 -0.419739 0.188990 0.317888 -3.677881 -3.241517 2.808378 1.867768 1.349839 -0.198091 -0.618586 -2.156421 -0.370774 -0.638153 1.098919 2.739746 -3.309475 0.913747 -2.853693 -1.125059 -3.391990 -4.576408 0.709387 -2.697507 2.605117 1.072059 -1.777069 0.075002 1.341992 0.410961 -1.515619 -4.646509 -0.296677 -1.706584 1.923930 6.914142 -1.277952 -1.745552 -1.648254 -1.310343 -1.640906 3.940512 1.152743 1.249709 5.476247 5.616132 1.621336 -3.811050 -2.629750 1.143242 2.703274 3.724029 3.250653 -4.087021 -2.906781 -0.114045 0.287242 -7.929131 -0.177825 1.385998 3.744331 0.209035 -2.761881 1.176556 -2.449463 4.791141 2.779804 1.048738 1.593186 -0.179509 -3.859022 5.058913 8.720339 -0.950414 2.871997 -4.268119 -3.002976 5.573352 -3.146975 2.242679 0.548272 -0.751632 -0.453483 -2.556576 0.507596 4.075106 -0.205634 0.826880 2.736343 1.632203 -1.476263 -6.673902 -6.368355 1.190404 5.006840 0.927427 7.799285 -4.860362 -2.051645 -0.782658 4.366353 0.080336 -1.336221 1.609996 -3.811385 3.135245 -7.003536 -6.517386 8.187340 6.901681 1.516602 0.652149 4.100919 3.590661 -3.362258 -2.794700 -2.818679 2.318310 2.269258 -3.975812 -0.930022 0.335391 -4.672208 -2.364467 1.060156 2.044454 3.070428 -1.942315 -0.320815 -1.463876 -4.655435 -4.581050 3.808266 -4.225590 -0.715675 1.316336 -0.456066 -0.477376 2.911055 -0.820641 -0.446567 0.515903 -1.991811 1.132367 1.614106 3.295024 0.176176 5.206701 6.258447 -0.561236 5.254492 2.134872 -2.173896 8.794804 -2.247807 1.607182 1.359397 2.569442 0.087657 2.146538 2.817183 -2.456075 -1.713782 -5.039396 1.563111 0.817756 2.891234 -4.303536 -3.432053 -6.797855 -2.476393 2.144615 4.068098 0.004254 8.252633 -1.966927 0.773638 -9.413388 -0.253089 3.407073 0.623719 4.428330 1.920069 -3.344494 -4.628849 -1.878065 -3.234469 -0.356597 -2.260199 -3.662481 -3.644397 -2.051723 3.235862 -2.657455 1.530670 5.377297 -1.089463 2.524192 -2.841389 0.066734 -2.407377 -1.504098 2.690935 0.736842 -3.953985 4.903095 -0.575522 10.761499 -0.865563 3.262380 -2.913408 1.746776 -0.600172 -4.105919 -1.221131 6.109246 3.039922 0.620483 0.272967 -0.026159 -1.261386 3.640087 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.034392 0.333383 1.146532 -0.039850 -0.719598 -1.487270 -0.595283 -2.286517 0.652398 0.442653 1.225758 -0.224158 0.715287 -0.046630 0.034426 0.516430 0.424811 -0.622521 0.487660 -0.611490 -0.894614 1.383150 -0.022181 0.579728 0.176963 -1.411311 1.011717 0.249788 0.568341 0.888766 0.363703 -0.127485 -0.367519 0.509700 0.115885 0.669668 0.258248 0.537881 -0.391143 0.597814 0.021744 -0.438456 0.845173 0.061084 0.979629 0.669079 0.341903 0.465503 -0.365992 -0.521591 -0.376819 0.504248 -0.850703 0.224776 -0.354769 -0.433863 0.095295 -0.334147 -0.268373 0.099074 -0.418442 -0.724784 -0.757794 0.402969 -0.858179 0.414318 -0.843277 -0.526817 -0.150918 0.027122 0.770040 0.340252 -0.086205 0.594131 -1.489751 0.099145 0.250746 0.261535 0.581235 -0.484772 -0.140309 0.073803 -1.025453 -1.016800 1.002942 1.003074 0.445766 -0.127927 -0.627030 0.033504 -0.351666 -0.025688 0.647696 0.794900 -0.445293 -0.038918 -0.361262 -0.371060 -0.930052 -1.692995 0.351455 -0.540532 0.635600 -0.000365 -0.189343 -0.386957 -0.264080 0.132511 -0.555387 -1.053336 0.088340 -0.629535 0.434855 1.352152 -0.338241 -0.179506 -0.767971 -0.506471 0.149733 0.634431 0.680583 0.080676 1.178628 0.982459 0.351360 -0.784389 -0.955588 0.305788 0.537542 0.401419 0.474292 -0.990366 -0.681462 0.269549 -0.641802 -1.428707 -0.538451 0.238884 0.619581 -0.693359 -0.017424 0.500294 -0.587119 0.465127 0.998412 0.215914 0.204019 -0.011414 -0.786496 0.806072 1.400920 -0.260897 0.727780 -0.766294 -0.339824 1.017819 -0.585625 0.248372 0.502645 -0.119458 -0.802005 -0.362667 0.087393 0.703037 0.212955 0.546879 0.220505 0.521505 -0.552836 -0.768414 -1.234190 0.189710 1.568588 0.099000 1.051033 -1.098724 -0.209256 0.258583 1.087553 0.464140 -0.618008 0.408238 -0.546262 0.541625 -1.270500 -1.111366 1.424519 1.213890 0.848813 -0.022053 0.366910 0.921312 -1.227724 -0.591551 -0.591681 0.738611 -0.208690 -1.627471 -0.666302 0.180631 -0.982143 -0.307021 -0.317866 0.647742 0.570084 0.176661 0.462384 -0.297771 -0.465243 -0.651143 0.768530 -0.409731 -0.432601 0.110414 -0.074006 -0.057802 0.319846 -0.283082 0.397319 0.309373 -0.611953 0.426990 0.752273 0.287465 -0.042515 1.627208 1.114658 -0.492225 0.354176 -0.207639 -0.190663 0.786061 -0.160035 0.483651 0.161152 0.490676 -0.008022 0.219648 0.963088 -0.418689 -0.997258 -0.888674 -0.160702 0.402525 0.555384 0.329668 -0.875496 -1.671559 -0.038765 0.197546 1.627902 0.139665 1.419813 -0.125573 0.612769 -1.223517 0.214030 0.119144 -0.163626 0.679433 0.169087 -0.474739 -0.055914 -0.366356 -1.077985 -1.152202 -0.248246 -0.461895 -0.681862 -0.452696 0.300251 -0.394661 -0.244627 0.347047 0.036393 0.547434 -0.035022 -0.099299 -0.872905 0.309069 1.257894 -0.252717 -0.683483 0.828919 0.205927 2.221828 -0.020258 0.550313 -0.070982 0.256240 -0.037000 -0.753322 -0.223339 1.170445 0.789631 0.133839 -0.093531 -0.077997 0.411750 0.485745 -PE-benchmarks/largest-sum-contiguous-subarray.cpp___GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -2.128445 0.155930 10.484237 6.057707 -3.391479 -7.215263 -3.816975 -9.827448 6.593158 0.659923 6.556730 1.695914 2.412603 -2.202782 0.557495 -0.827257 0.558626 -3.992816 0.567322 -2.341497 0.512736 10.116625 5.012099 -7.294692 -0.034367 -13.051026 5.801536 3.715898 5.338293 7.602020 -0.157422 -1.304663 -0.560935 5.383292 -3.111590 0.465353 1.092772 1.114500 -3.105320 -0.555109 3.070011 5.281957 5.247365 -0.083858 7.045041 1.291354 5.168925 0.936823 -2.801864 -1.582710 -5.232774 8.227473 -6.202923 3.143971 -0.704029 3.533545 0.533279 -6.343702 -3.044106 -7.950404 -0.278887 3.075515 -4.144879 0.027406 -5.649063 2.316292 -0.900449 -1.861751 2.277779 0.263154 6.570880 3.038613 2.159986 -2.555784 -7.379597 2.511382 -1.794244 4.281834 4.066574 -2.480735 -3.237260 1.407792 -2.236585 -4.189270 2.852714 2.246818 0.022180 -0.527136 2.033767 -1.544187 -2.422766 -1.422181 -1.818111 4.534094 -4.400030 2.758259 -0.948261 -0.205229 -1.951942 -0.962220 -0.161339 -5.427491 2.117212 4.703004 0.018281 -0.408279 -0.226672 0.705984 -3.744208 -5.957568 1.613070 -0.667802 0.392396 6.750877 -3.873376 0.243904 0.352309 -0.128637 -0.941707 7.262455 -0.144983 3.462679 5.693588 8.190798 1.090092 -4.833695 -1.364854 3.028358 6.168830 5.434722 4.243762 -6.962937 -3.650753 -1.006191 1.589112 -9.894002 1.680608 3.786386 4.978736 1.935156 -7.809019 2.590649 -2.471849 8.462741 5.282081 2.191773 2.041007 0.084821 -5.905422 7.560697 14.475503 -2.065112 4.758197 -4.934814 -3.590396 8.856082 -7.210243 4.918097 0.695276 1.123630 1.660647 -4.994425 -0.724038 6.323149 2.439737 4.263958 4.191939 1.622998 1.075385 -10.972214 -8.445893 -1.511056 5.492504 -0.224176 11.694120 -5.298000 -3.511924 -2.152100 6.612216 -0.792388 -1.879192 0.804390 -4.195616 3.793246 -11.972039 -8.874288 12.102231 11.349161 1.811643 1.627238 7.211690 6.709112 -1.692112 -2.245240 -2.284381 3.580664 2.042949 -2.046109 0.573114 -0.547537 -6.236927 -5.401403 1.086381 1.643264 2.730650 -2.460663 -3.404208 1.990536 -7.450778 -4.821996 3.167550 -7.570041 -3.434363 0.544269 0.317965 -0.496592 2.424881 -2.006295 0.076726 4.335759 -3.563816 0.328683 3.371822 4.520840 2.468196 5.097113 7.567877 0.705255 6.802564 4.209766 -2.394345 13.334930 -2.519656 0.329561 2.062930 3.066017 0.865667 3.231795 0.735910 -3.193721 -1.872864 -7.424935 5.399741 0.438435 4.898826 -6.463308 -6.345670 -5.953073 -3.544752 5.284577 4.655874 -0.674279 13.145839 -1.803969 0.745533 -14.476557 -0.692495 6.163935 1.096155 4.553141 4.042297 -3.762835 -10.114337 -2.744379 -1.693811 1.370591 -3.725010 -7.095070 -3.982275 -4.894374 6.031381 -5.289007 3.265104 7.817808 -0.308238 4.071932 -2.449279 -0.481701 -3.995475 -1.825306 0.438001 2.822704 -5.896417 7.453314 -2.726610 13.752765 -5.120542 5.248106 -5.450463 4.551691 -2.465075 -3.073857 -0.331050 9.313170 4.297914 0.738876 0.829523 -0.826294 -3.199199 4.632937 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.020994 0.313998 1.282410 0.045342 -0.778300 -1.654721 -0.634629 -2.344976 0.769513 0.451201 1.270668 -0.130740 0.787946 -0.110285 0.041291 0.495678 0.529002 -0.645384 0.431599 -0.710129 -0.804319 1.529073 0.079416 0.391745 0.225238 -1.608826 1.045300 0.327324 0.620245 1.072179 0.390874 -0.100425 -0.426329 0.578222 0.046414 0.662676 0.296343 0.492716 -0.523502 0.602034 0.063633 -0.265102 0.978130 0.110805 1.105419 0.729926 0.346707 0.526415 -0.409689 -0.599275 -0.391650 0.568536 -0.855392 0.320041 -0.386495 -0.303344 0.109531 -0.433496 -0.273737 -0.063713 -0.380647 -0.617050 -0.794734 0.392808 -0.940995 0.415404 -0.833241 -0.583194 -0.167535 -0.104206 0.828133 0.319693 -0.109071 0.460969 -1.607896 0.078857 0.209601 0.354944 0.664619 -0.457910 -0.282038 0.023325 -1.064552 -1.057179 0.957604 1.031496 0.416546 -0.007899 -0.646014 -0.099418 -0.376359 -0.057553 0.659129 0.798673 -0.529723 -0.053022 -0.285604 -0.397295 -0.915883 -1.627015 0.398470 -0.511125 0.632725 -0.012553 -0.127717 -0.388242 -0.290685 0.142232 -0.612816 -1.004047 0.200481 -0.617919 0.373396 1.487889 -0.363062 -0.219310 -0.836075 -0.517949 0.131652 0.821679 0.613054 0.084910 1.197952 1.082929 0.353682 -0.847413 -0.930167 0.348598 0.629181 0.436734 0.573289 -1.032893 -0.737028 0.295037 -0.689479 -1.519698 -0.552254 0.268082 0.743525 -0.644660 -0.122153 0.541143 -0.668691 0.576261 1.027589 0.214242 0.255062 -0.060600 -0.924826 0.890471 1.619049 -0.283285 0.792742 -0.838695 -0.407955 1.127733 -0.632905 0.321754 0.464988 -0.216921 -0.810483 -0.326182 0.160668 0.769870 0.239535 0.574381 0.230955 0.556646 -0.541532 -0.884020 -1.410064 0.115694 1.586075 0.169698 1.254729 -1.158632 -0.218636 0.087572 1.160412 0.433425 -0.638494 0.439561 -0.619493 0.567607 -1.491190 -1.179170 1.679470 1.482076 0.942219 -0.003591 0.467336 0.954655 -1.153642 -0.621749 -0.551121 0.728231 -0.163245 -1.606767 -0.601430 0.189550 -1.073514 -0.427932 -0.298171 0.686255 0.604523 0.130950 0.477941 -0.330818 -0.555143 -0.772564 0.738259 -0.489925 -0.438143 0.180130 -0.075110 -0.087904 0.335841 -0.286970 0.362426 0.377853 -0.629172 0.423642 0.742660 0.395851 0.021708 1.577762 1.204181 -0.474435 0.485028 -0.168360 -0.289461 1.056285 -0.230438 0.547909 0.168366 0.538882 0.076145 0.221416 0.916294 -0.448264 -0.886766 -0.955940 -0.076250 0.464512 0.631449 0.130518 -1.026793 -1.766841 -0.032848 0.169392 1.702501 0.082447 1.594790 -0.203421 0.615835 -1.456991 0.241558 0.239409 -0.115266 0.657894 0.245246 -0.558057 -0.269175 -0.349953 -1.193024 -1.069257 -0.280227 -0.556043 -0.719650 -0.445085 0.419778 -0.491055 -0.195731 0.555466 -0.045045 0.648814 -0.090339 -0.091717 -0.925344 0.216653 1.195562 -0.210003 -0.726586 0.866592 0.186537 2.296354 -0.020970 0.667305 -0.088060 0.373098 -0.089277 -0.902186 -0.294882 1.281523 0.840906 0.113459 -0.000812 -0.117721 0.432757 0.538193 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp___GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose_sum_closest_x.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.510491 0.240281 1.070095 0.980389 -1.066095 -1.198464 -0.899868 -1.484259 0.631561 -0.040220 0.679609 -0.023525 0.318901 -1.101902 -0.156521 -0.619567 0.039202 -0.565318 0.003987 -0.714663 -0.601779 0.619448 -0.057022 -0.862067 0.141028 -1.490387 1.343469 0.812853 0.168796 0.940714 -0.138285 -0.355250 -0.806239 0.649260 -0.178789 -0.019934 0.246592 0.107249 -0.195024 0.350188 0.466708 0.679548 0.978697 0.302603 0.575608 0.700407 0.213821 0.639380 -1.003454 -0.054499 -0.032506 0.517058 -0.345165 0.520241 0.362767 0.271268 0.379110 -0.941591 -0.505562 -0.815531 0.067352 -0.515617 -0.369427 -0.091858 -0.766242 -0.148451 -0.189143 -0.621075 0.081120 -0.077854 0.414717 0.115315 -0.228430 -0.349006 -0.451236 0.065264 -0.052681 0.583872 0.925172 -0.145840 -0.127378 -0.229579 -0.882309 -0.995903 0.352371 0.284098 0.448094 0.264658 0.213404 -0.801757 0.114130 -0.555032 0.224397 0.399099 -0.153425 -0.071183 -0.246428 -0.070480 -0.726408 -0.421407 0.231509 -0.036266 0.331599 0.718901 -0.427463 -0.906721 0.082671 0.263082 -0.815460 -0.047552 0.197993 -0.548586 0.630070 1.158396 -0.105344 -0.300787 -0.405891 -0.552341 0.050748 0.861231 0.120033 0.019595 0.814305 1.673809 0.466174 -0.708515 -0.580717 0.172976 0.610834 0.823357 0.507300 -1.512033 -0.352832 0.560498 -0.290260 -0.968488 0.079836 -0.270717 0.759934 0.112703 -0.609700 0.541093 -0.899919 0.724764 0.119946 0.248196 0.217937 -0.401246 -1.044342 1.342909 1.538144 -0.224206 0.556542 -0.730556 -0.455053 0.723884 -0.404694 0.100301 0.407194 -0.824259 -0.204086 0.128464 0.286525 0.787148 0.344524 0.218398 0.284766 0.790547 -0.628082 -1.195526 -1.443025 0.549856 1.058210 -0.069071 1.975622 -1.044953 -0.956858 -0.920985 1.515346 0.033342 -0.186309 0.250463 -0.603154 0.685240 -0.432578 -0.969899 1.856836 1.250851 0.346326 -0.165636 0.945054 0.257044 -0.157163 -0.710709 -0.096141 0.191778 0.207013 -0.215511 -0.144044 0.169506 -1.111666 -0.596010 0.286728 0.444176 0.482720 -0.648888 -0.267126 0.088990 -0.712364 -0.960953 0.432548 -0.768187 0.190748 0.508017 -0.462473 -0.181526 1.042574 -0.148749 -0.196401 -0.037113 -0.438015 0.227143 0.107119 0.599611 0.489937 1.166828 1.023571 0.041457 1.098666 0.644020 -0.321766 2.023915 -0.094640 0.411503 0.720709 0.452140 0.383105 0.405894 0.471775 -0.431864 0.367242 -1.051384 0.335719 0.396791 0.836111 -1.465720 -0.665248 -1.588361 -0.281500 0.267974 0.440958 -0.298984 1.344136 0.159548 0.006384 -1.452550 0.013164 0.395937 0.127382 -0.060298 0.157852 -0.552431 -1.617863 -0.105480 -0.806259 -0.339039 -0.754273 0.071665 -0.338860 -0.119051 0.791129 -0.217957 0.488449 1.319498 -0.141159 -0.074945 -0.407419 0.048273 -0.530606 -0.379333 0.387732 -0.012048 -1.084038 0.895713 -0.076947 2.099763 -0.118087 0.597687 -0.613838 0.371863 -0.083543 -0.958135 -0.012872 1.278858 0.112048 0.533863 0.154389 0.613969 -0.505688 0.971561 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = -1.266622 -0.035549 3.315343 0.973468 -0.687681 -2.324722 -0.991419 -3.549262 1.780427 0.574689 2.691456 -0.021686 1.532276 -1.213069 0.797773 0.649490 1.047472 -2.240713 1.339446 -0.832428 1.136234 3.434765 1.306051 -0.768781 -0.270704 -4.275492 1.425481 0.943743 1.741767 2.152410 0.467152 -0.633701 -0.068153 1.321429 -0.325232 0.882155 1.247893 0.463132 -1.162971 0.293134 -0.614898 1.345111 1.153150 -0.652515 2.418213 0.254192 2.490804 0.637341 -0.965983 -0.930161 -1.967074 3.207039 -2.310912 0.432978 0.370242 -0.343330 0.229789 -1.513213 -1.399435 -2.523696 -0.554363 0.415697 -1.096135 0.555085 -1.742527 1.228841 -0.802591 -0.077390 0.385908 1.334151 1.943980 1.828656 1.675026 0.758801 -2.472885 1.401673 -0.492030 1.356547 1.109503 -1.637595 -0.669660 0.569748 -0.492001 -1.766216 1.698438 1.452704 0.444403 -0.680862 -0.022696 0.912057 -1.580067 -0.665358 -0.963028 1.068480 -1.283062 0.556254 0.336965 -0.045303 -0.980021 -0.994375 -0.518676 -1.945412 0.331314 1.981921 1.006481 -0.733066 -2.348962 0.288582 -2.345392 -1.901071 0.950350 -0.587758 -0.307532 2.108416 -2.287699 1.078340 -0.801050 0.625909 0.374865 2.208985 -0.090964 1.831027 1.563867 2.941956 0.165003 -1.421283 -0.573374 1.020645 2.926091 1.506075 1.482342 -2.633184 -1.510416 -0.247862 -0.106281 -2.610641 -0.155798 1.894040 1.523094 0.717469 -2.615645 0.665594 -0.616037 3.526231 2.346301 0.442727 0.303866 0.333370 -1.687202 2.822680 4.064502 -1.164752 2.048550 -1.322321 0.017276 2.430840 -2.459364 1.245817 0.824060 0.676073 -0.380459 -1.658934 -0.887359 1.793199 2.380622 1.935485 0.833069 0.875098 0.955852 -3.630471 -2.760996 -0.250980 1.839001 -1.079839 3.363798 -1.585153 -1.689525 -0.324817 1.614952 -0.004717 -1.494486 0.008645 -1.576986 1.012985 -3.657748 -2.966322 4.454020 3.448902 0.915215 0.695682 2.010614 3.021711 -2.373644 -0.464150 -0.244550 1.789551 -1.039602 -2.725393 -0.527762 0.625170 -2.592088 -2.041662 -0.342057 0.815264 0.842051 0.472182 -0.634139 1.149365 -2.454726 -0.263358 1.025388 -1.751074 -2.161260 -0.180463 0.048536 1.128390 0.944852 -1.187198 0.971654 2.188338 -2.329654 -0.755196 1.240049 2.006015 1.385404 2.611991 2.704434 0.999165 2.196172 0.866920 -1.151849 2.592554 0.295294 -0.008580 0.133441 0.236059 0.533974 0.710492 0.711215 -0.954814 -1.991154 -2.691137 1.402260 0.380781 1.891826 -0.663137 -2.514767 -1.940227 -0.610385 2.403483 2.144780 -0.284798 4.002496 -0.613189 0.058655 -4.360549 -0.085661 0.913263 0.368557 1.178356 1.245549 -1.000848 -2.028485 -0.989658 -0.990179 -1.041280 -1.132534 -2.091545 -0.992690 -2.092475 2.803850 -1.916165 0.211217 1.729744 0.848644 2.071945 1.387907 -0.384910 -1.870905 0.616257 0.748413 0.894186 -1.833530 2.793718 -0.808717 5.206585 -1.940395 0.671482 -1.791327 1.028349 -0.156729 -0.610012 0.270776 3.145514 2.056208 0.000000 0.285813 -0.541214 -0.724641 1.970446 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = 0.052328 0.273163 0.361011 0.269365 -0.117769 -0.388716 -0.136691 -0.731663 0.149583 0.163269 0.126724 -0.130292 0.399422 -0.252726 -0.029634 -0.106522 -0.134233 -0.175001 0.264602 -0.289542 -0.191089 0.500772 -0.095247 -0.010471 -0.010732 -0.587415 0.411437 0.208729 0.308588 0.420631 -0.121716 -0.229390 -0.214315 0.233661 -0.129848 0.036278 -0.094482 0.148292 -0.215961 0.271468 -0.025244 -0.080666 0.301531 0.245664 0.121844 0.350968 0.089323 0.215922 -0.072869 0.121281 -0.158896 0.217851 -0.172934 0.208787 0.030717 -0.179333 -0.044144 -0.113074 -0.114146 -0.168209 -0.018822 -0.141148 -0.169967 0.034934 -0.392999 -0.023335 -0.270146 -0.229460 -0.134630 0.148760 0.053022 0.309645 -0.018763 -0.203154 -0.753089 0.039224 0.059580 0.146201 0.070455 -0.137093 -0.009805 -0.011114 -0.461829 -0.526139 0.432691 0.260992 0.066948 0.005291 0.028999 -0.350617 0.107470 0.049625 0.210579 0.097019 -0.109686 0.180022 -0.342483 -0.068679 -0.235380 -0.377415 0.036433 -0.079433 0.159660 -0.001287 0.254903 -0.139850 0.039227 0.212814 -0.308673 -0.292453 0.005245 -0.114138 0.034263 0.500157 -0.057438 -0.129332 -0.153774 -0.256125 0.023137 0.287645 0.117765 0.049739 0.086248 0.560604 0.190280 -0.307605 -0.143132 0.153914 0.144279 0.312491 0.188183 -0.523949 -0.167924 0.122285 -0.077914 -0.557855 -0.023497 0.160984 0.109493 -0.367178 -0.096026 0.261563 -0.271679 0.360569 0.237821 -0.040269 0.221597 -0.101644 -0.330133 0.309308 0.762395 -0.299998 0.292174 -0.500130 -0.175298 0.320904 -0.071342 0.124387 -0.094721 -0.230293 0.050218 -0.059804 0.127980 0.369102 0.139617 0.037236 0.068245 0.291796 -0.239329 -0.353381 -0.566725 0.004058 0.489980 -0.059933 0.724409 -0.245919 -0.440889 -0.201024 0.417294 0.156954 0.067850 0.191588 -0.397148 0.232785 -0.306410 -0.452538 0.787116 0.400703 0.362609 -0.250159 0.112849 0.292296 -0.190519 -0.506021 -0.044491 0.153969 -0.038164 -0.473315 -0.230109 -0.010036 -0.666109 -0.084390 0.088249 0.085274 -0.011264 0.041799 0.040070 -0.232326 -0.287808 -0.375821 0.436460 -0.438912 0.132278 0.088643 -0.137919 -0.066943 0.367516 -0.250472 0.066871 0.048875 -0.213728 0.229603 0.052997 0.017646 -0.026454 0.372261 0.455324 -0.016375 0.468115 0.123716 -0.152242 0.701961 -0.077908 -0.100063 0.201243 0.054493 0.052991 0.244862 0.289231 -0.142497 0.018962 -0.521120 0.029803 0.136652 0.162627 -0.103936 -0.164092 -0.603215 0.026944 0.024145 0.366215 -0.011394 0.577250 -0.041097 0.197865 -0.586133 0.091832 0.055435 -0.065488 0.226843 0.100241 -0.147214 -0.213284 0.045279 -0.373280 -0.273898 -0.282796 -0.180948 -0.207336 -0.081622 0.216141 -0.057852 0.080857 0.170880 0.118069 0.042917 -0.230261 0.000859 -0.381244 0.068775 0.342221 -0.078039 -0.343126 0.169723 -0.046591 0.820957 -0.076149 0.332363 -0.335642 0.150413 0.023160 -0.480769 -0.036314 0.606534 0.052163 0.113864 0.001990 0.261865 -0.049132 0.262144 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = -3.545342 -0.393799 7.141412 -0.546821 -4.243196 -3.643055 -3.667043 -10.695236 5.388320 3.345144 5.986498 1.684152 3.927097 -2.759761 -0.515994 -1.414158 1.548364 -5.953974 2.938949 -2.829631 0.379899 8.220446 1.826505 1.938967 -0.445503 -10.587180 5.453181 -1.896769 4.617377 7.089110 1.225757 -2.110244 -4.704564 2.291847 3.271056 3.549746 2.913283 2.075895 -1.856075 1.918203 0.641660 -1.819499 3.660047 0.083906 7.340490 -0.954834 -1.251263 1.342836 -2.542902 -3.758322 -0.543808 1.251359 -6.114973 1.292916 2.571543 -1.821668 -2.614456 -0.678511 -2.320774 -2.747141 -1.379801 -5.208923 -0.871048 2.538592 -3.442923 2.705701 -6.209061 0.185337 -1.764581 -3.288533 3.586272 3.162593 4.074086 4.170751 -7.922485 1.443760 -0.677522 1.123514 3.330223 0.173652 -2.922745 -0.637468 -3.165059 -5.331903 1.565313 6.562516 -1.689582 -1.768141 -2.293440 2.296176 -1.452190 -0.575777 1.045089 3.385785 -6.014264 -0.245984 -3.207953 -1.203305 -0.015398 -7.809088 0.289124 -3.566550 2.417341 1.797872 -2.975732 -3.987635 -2.596883 0.182547 -3.808860 -3.396592 3.109940 -1.065978 1.230788 7.019481 -3.597851 0.242852 -4.770500 -1.131209 2.354746 2.869714 1.410255 2.951503 3.013625 5.996951 3.855771 -4.717238 -3.224900 5.794036 4.175814 1.019831 1.508132 -4.454359 -2.187201 2.128433 -1.163774 -6.111650 -2.881146 1.315357 3.753079 -0.524441 0.326294 -2.209728 -3.236670 4.963435 5.389979 0.565383 1.071938 0.853329 -5.286590 5.135716 7.940262 -0.407050 3.213641 -2.704530 -0.548281 6.410660 -5.773750 3.288931 -0.330775 2.509708 -2.899704 -3.547565 -0.947357 3.763863 0.648918 4.922534 -2.191447 3.001637 -0.745172 -5.963347 -6.972076 -1.150755 8.932700 1.965417 3.101805 -4.856024 -0.856522 0.787710 6.179197 5.788050 -4.539238 2.807321 -2.275087 3.072728 -8.207086 -5.800386 8.395811 10.674472 3.031160 0.498076 1.684373 5.674062 -7.387969 -2.790123 -2.805807 3.462468 -3.792756 -7.370341 -2.909925 1.896830 -4.405294 -4.319551 0.432577 2.134264 5.175446 -0.478091 2.255417 5.202940 0.120380 -3.716840 6.709928 -2.343732 -5.493608 -0.419676 0.649085 1.744689 2.382820 -1.193947 2.929430 3.792707 -2.180607 1.811958 4.401221 0.624640 -0.748516 5.201356 4.682854 -1.245346 -1.504185 -0.308084 -1.180310 6.288149 -2.096464 1.361213 1.752834 -1.088145 1.158422 1.514294 2.483669 -2.847399 -3.597317 -3.997985 -0.498561 -0.753926 5.302173 -1.920578 -9.640244 -5.819381 2.322229 2.032303 3.553474 1.713938 9.039297 -1.480800 2.337106 -7.658737 0.284216 4.073823 0.471200 4.772762 0.879666 -1.349470 -1.545008 -2.427396 -4.585163 -0.659110 -2.359235 -2.829809 -1.716018 -3.132509 6.355685 -1.213684 -0.310765 0.405719 -0.004758 6.390934 1.511721 -0.929527 -6.827262 1.996795 0.812815 0.685951 -3.329351 7.126730 0.253072 8.251056 -2.887658 -0.140639 0.095079 3.776511 -2.751080 -4.654731 0.254867 6.857972 4.193497 2.975077 -3.124932 -2.407325 -0.736917 1.139232 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -3.924332 2.260847 16.003534 10.355898 -7.690618 -11.420963 -6.477298 -14.615639 7.630866 0.288946 9.701200 1.282159 2.739122 -4.222688 1.517454 -2.499151 0.034568 -4.097338 0.686106 -4.532143 -1.939282 11.408712 8.307349 -11.575113 0.558277 -16.140136 9.327722 7.236830 7.214193 9.174754 -0.944987 -2.845954 -3.047676 8.600214 -4.696200 -0.285401 -0.350043 2.058697 -4.398623 1.981412 4.510267 8.416746 6.880760 -0.239358 9.480413 4.506050 8.152533 2.797546 -7.887554 -2.038196 -5.627549 13.475642 -9.212778 4.947594 1.406684 4.779277 -0.046226 -9.846193 -4.624112 -11.675024 0.575888 2.444826 -6.690611 0.748996 -9.503450 2.136366 -2.729850 -4.140240 4.233332 2.209224 8.674940 3.186256 0.316113 -3.867667 -7.710768 3.257092 -1.304931 7.122893 6.915194 -4.194611 -2.673030 2.372734 -3.501782 -7.187282 2.922346 1.244706 1.777513 -1.842090 3.355334 -3.341937 -1.393854 -2.934614 -2.510877 6.205712 -7.265935 4.404756 -3.218713 -1.229425 -6.201238 -2.377203 -0.394710 -7.198049 4.546822 7.026787 -2.246448 -2.873754 -2.091786 1.531939 -5.675645 -8.814008 -0.538076 -1.382451 3.694977 10.978427 -5.776038 0.403817 0.240381 -1.043150 -1.468639 10.131782 2.045284 4.380132 9.660560 13.891224 1.632400 -7.035429 -2.923518 2.079472 7.777050 10.025235 7.286106 -11.318600 -6.331768 -0.953233 2.136062 -13.862578 3.541754 3.952419 6.445764 4.065199 -10.983067 3.015856 -4.787462 11.814572 5.206510 4.270868 2.752679 -1.646464 -7.987330 11.917110 20.256735 -3.664222 6.641281 -4.948330 -6.776653 12.819707 -9.501488 5.800948 3.521916 -0.334487 1.908120 -6.413269 -2.318744 9.562295 4.462842 5.232978 7.786905 3.035182 0.838334 -15.506533 -12.067198 1.431594 7.088339 -1.279506 16.782110 -7.756111 -5.848115 -3.972849 11.069729 -0.673811 -3.342500 -0.041353 -5.488052 5.757555 -13.331823 -12.408044 15.944381 15.826244 1.485141 0.878908 11.192457 9.078693 -4.510893 -4.606142 -4.188426 5.234201 0.778340 -1.239741 0.288369 0.599225 -10.261945 -5.157026 1.919504 3.336025 4.507854 -4.920424 -6.952359 4.132859 -11.947408 -7.252206 3.342995 -10.070919 -2.639818 1.307827 -1.009536 0.390987 4.634717 -4.016869 -1.567210 3.377457 -6.437725 0.741202 4.259913 8.286539 4.415516 10.962681 8.536417 1.992618 10.665973 6.950650 -4.207415 20.913250 -2.166017 1.840656 4.098468 5.747809 0.707484 4.554268 2.190517 -4.736830 -3.273014 -11.425236 6.204387 1.407958 7.206112 -11.049643 -7.606481 -10.792190 -5.222025 8.365839 5.964215 -1.518416 18.255732 -1.110408 1.102700 -19.896916 -1.103977 6.581872 0.028528 7.255802 5.490717 -6.621372 -15.093922 -4.360287 -3.131564 2.259175 -5.404030 -7.113230 -5.769738 -3.739822 8.325210 -5.443434 4.760496 10.772861 -0.528197 3.975913 -1.506562 -0.586849 -3.548850 -4.063384 3.344647 4.058620 -11.045431 11.970224 -2.874236 22.235096 -5.236023 7.594206 -8.320532 2.387939 -0.871040 -3.682188 -0.923112 13.971337 6.637504 3.332262 0.693404 1.464333 -5.837665 6.945183 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.573713 0.289772 2.126857 0.552601 -2.349456 -4.434945 -1.336197 -5.379858 1.456544 0.634614 3.449981 -0.196344 1.840799 -0.931418 1.040745 2.180211 1.910574 -1.338403 0.779160 -1.757912 -1.666364 3.345762 0.470852 1.170624 0.351939 -1.571862 0.507933 1.142745 1.208508 1.187061 1.156502 -0.701186 -1.053389 0.665349 0.229290 2.193576 0.476829 0.852469 -2.029838 0.750300 -0.852791 -2.266943 2.405497 -0.621710 2.723864 -0.126675 3.043412 1.238887 -2.016067 -1.356364 -2.164767 3.499301 -2.178639 0.541577 -0.116758 -1.680364 0.499032 -0.270518 -1.183390 -0.465296 -1.640477 -2.193170 -2.111423 0.514992 -1.436562 1.311929 -1.830138 -1.170585 -0.180811 0.758913 2.003564 0.818214 -0.006362 2.222284 -3.513981 -0.082614 0.462704 1.132078 1.177538 -0.461401 0.711710 -0.498793 -1.851817 -1.897932 3.044857 1.048377 1.319166 -0.236669 -2.854779 1.445854 -1.014829 -0.264126 1.324303 0.424992 -2.098662 0.049861 0.443738 -1.172337 -2.853431 -3.796576 0.694853 -0.914526 1.011391 -0.229754 0.582179 -0.915289 -2.821702 0.141998 -2.824392 -3.036228 0.281337 -1.045601 -0.543431 2.875449 -2.197237 0.391067 -1.197222 -0.209930 -0.221385 1.112911 2.005840 1.303327 1.757037 2.777482 0.865621 -1.813804 -2.013122 0.012561 2.820728 1.391806 1.160360 -1.095314 -2.015237 1.143454 -1.974293 -3.497115 -1.755952 2.637785 2.413911 0.609962 -0.490118 0.000758 -0.971454 2.330723 1.955714 0.582688 0.207907 0.001237 -2.212777 2.076402 2.639346 -1.146049 2.943640 -0.453999 0.462877 2.142554 -1.919821 0.157384 1.830101 -0.639788 -1.897972 -0.525476 -1.305644 1.349828 2.291163 0.870339 -0.599671 1.733415 -1.816020 -2.867799 -3.597998 0.384434 3.667331 -0.023932 1.661567 -2.310528 -1.783272 0.746352 1.855999 -0.284201 -2.717163 0.930230 -2.166390 1.534865 -3.121259 -2.596007 4.774734 3.242400 2.124583 0.663706 1.560012 2.823555 -4.602701 -1.217831 -1.050293 1.876737 -0.521313 -5.262173 -1.841232 0.525533 -3.053289 -1.009115 -0.924308 1.683530 -0.362201 1.458422 2.513827 0.028508 -1.037228 0.272923 1.370411 -0.861326 -1.360018 0.204540 -0.419195 1.046479 0.882592 -1.046505 1.290390 0.647128 -2.972263 0.385992 0.934512 1.638217 1.246058 5.065300 3.686935 -0.501493 3.003889 -0.882437 -1.835159 0.957397 -0.474825 1.362608 -0.433695 1.026438 0.202566 0.085931 2.784376 -0.972272 -2.973425 -1.960635 -1.056805 1.403596 2.324556 1.121488 -2.915102 -4.142074 0.244270 1.351331 3.351594 -0.899661 2.892483 -1.439095 1.210545 -4.207393 0.614092 -0.085874 -0.281296 1.275137 0.156142 -0.974640 -0.713070 -0.816485 -2.689998 -2.909569 -0.274502 -0.857056 -1.069913 -2.169487 2.046805 -2.121062 -1.076986 0.041284 -0.084084 2.551699 1.299533 -0.482760 -1.565422 1.440590 3.389046 -0.069772 -1.883538 2.922031 0.792026 7.157299 0.481689 0.665187 -0.534525 0.362365 0.207069 -1.518355 -0.310390 2.824624 3.639804 -0.071973 -0.326441 0.234159 0.600084 1.161945 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp___GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = -2.871570 0.477174 12.348124 8.184044 -5.953100 -9.402826 -4.988060 -11.528234 6.868246 0.043575 8.013435 1.762796 1.895264 -2.790428 0.760370 -1.977760 0.471941 -3.700408 -0.276381 -3.290305 -1.217003 9.865924 6.328810 -10.000144 0.768098 -13.673691 7.269202 5.334041 5.053236 8.450418 -0.598262 -1.655626 -2.011533 6.851097 -3.556994 0.245124 1.240569 1.149515 -3.486382 -0.179227 4.706374 5.855247 6.895472 -0.636274 8.409584 2.547903 5.538086 1.668393 -5.673741 -1.809489 -4.882370 9.155424 -7.383829 4.367641 -0.096032 4.747304 0.713263 -8.224203 -3.488388 -9.906071 -0.016007 2.389560 -4.832737 -0.108824 -6.797803 2.239476 -0.489624 -3.460914 4.084537 -0.387433 7.543836 2.569783 0.983053 -2.637630 -6.613477 2.360376 -0.785133 5.780349 4.813774 -2.967068 -2.609333 1.459471 -2.923703 -4.450264 2.005980 0.889542 1.193903 -0.573922 2.272984 -2.126568 -0.530123 -1.800556 -1.423100 5.111273 -4.977627 2.488826 -1.911433 -0.934943 -3.774148 -1.886580 0.342839 -5.652499 3.485748 5.664295 -2.410569 -0.287659 0.178112 1.390103 -4.163422 -7.483659 0.966905 -1.112323 2.057608 8.176784 -4.163790 -0.528272 0.437374 -1.167329 -1.210162 8.250683 0.212864 3.372334 7.100658 10.472632 1.328295 -6.075682 -2.597296 1.815802 6.764140 7.177588 5.512422 -8.002681 -4.445099 -1.013076 0.881862 -12.038769 2.000397 2.863287 6.497554 3.058291 -9.347598 3.086603 -3.798275 9.735427 4.910955 3.445368 2.030884 -0.478638 -7.495471 9.108204 15.896825 -2.441029 5.727116 -4.802007 -5.155853 9.738965 -7.321530 5.133124 1.811484 -0.033507 2.309467 -5.419008 -1.180972 7.372993 2.889896 4.482685 4.934316 2.063227 0.169361 -13.088851 -9.996719 -0.451845 6.832372 0.249837 13.575780 -6.998700 -4.443351 -3.026047 9.093155 -1.608785 -2.459826 0.602359 -4.653659 4.808948 -12.705552 -10.402232 13.765170 13.786718 2.030593 2.084051 8.828859 6.873003 -2.178147 -2.475030 -3.391105 3.666600 2.991975 -1.454471 0.489109 -0.649037 -7.135488 -5.510073 1.799987 2.504568 3.271545 -3.972802 -4.787701 2.667017 -8.629356 -6.169970 3.070825 -8.863436 -2.601132 1.511274 -0.141547 -0.045581 2.914370 -2.457912 -1.267439 3.174312 -4.264450 1.221349 3.666308 6.254387 3.140262 6.941969 8.089440 0.298828 8.509030 5.172668 -3.259180 16.526117 -3.416911 1.660965 3.016933 4.714159 0.980897 3.582274 1.945304 -3.905293 -1.323375 -8.711627 5.185768 0.717639 6.096993 -9.471065 -7.217470 -8.573226 -4.233982 6.093719 4.720607 -1.394284 15.210158 -1.374302 0.700228 -16.964990 -1.385309 7.282686 0.825654 5.597957 4.400496 -4.948225 -14.090424 -3.090710 -2.855249 2.179541 -4.271541 -6.634864 -4.823440 -4.292167 6.815792 -4.683435 3.910095 9.429913 -0.850824 3.891248 -2.927977 -0.426696 -3.222987 -3.861766 1.037088 2.991818 -7.557747 9.377481 -1.896525 17.044366 -4.314061 6.308915 -6.244264 4.192122 -1.843667 -3.380284 -0.868701 10.655864 5.525904 1.602138 0.733872 0.197344 -4.301325 5.596182 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -0.193568 0.253967 2.387031 -0.252630 -1.486766 -2.913752 -1.285104 -4.865428 1.730081 0.998453 2.554261 -0.093514 1.498187 -0.500387 0.139451 1.223511 1.010399 -1.728823 0.952363 -1.364638 -1.030701 3.142322 0.138530 1.200060 0.260146 -3.408206 1.555691 0.335534 1.444930 1.851564 0.895682 -0.384796 -0.975589 0.956563 0.455548 1.730993 0.920352 0.806139 -1.203016 1.033475 -0.171004 -0.671704 1.731613 -0.090516 2.607533 0.608198 0.859766 0.990805 -0.719057 -1.235997 -0.833297 1.505114 -1.785166 0.408336 -0.230896 -0.797255 -0.231097 -0.787650 -0.794083 0.109392 -1.017662 -1.383219 -1.385974 0.890793 -1.505395 1.057356 -1.656802 -0.663720 -0.380475 -0.241198 1.676765 0.799674 0.211915 1.456642 -3.188253 0.201405 0.228407 0.636787 1.176840 -0.823255 -0.394400 -0.046654 -1.731530 -1.938871 1.890618 2.387773 0.483678 -0.297134 -1.439915 0.442816 -0.953031 -0.300906 1.198118 1.334707 -1.598308 -0.369336 -0.480592 -0.784857 -1.615067 -3.108457 0.721268 -1.024478 1.173463 -0.136867 -0.104753 -0.838922 -0.804376 0.097805 -1.504257 -1.849581 0.475938 -0.917302 0.744795 3.008496 -1.063625 -0.107584 -1.788370 -0.811070 0.100300 1.340047 1.195892 0.521987 2.172092 2.240445 0.828487 -1.657246 -1.927734 1.004183 1.601924 0.780254 0.958474 -1.946624 -1.318217 0.647989 -1.128721 -2.845349 -1.319529 0.659437 1.494772 -0.878567 0.101791 0.315627 -1.015649 1.540783 1.999883 0.080498 0.328117 0.036629 -1.879429 1.865378 3.070159 -0.408118 1.634542 -1.548126 -0.239540 1.978791 -1.698432 0.698456 0.999322 -0.088721 -1.734263 -0.736360 -0.036012 1.254216 0.581380 1.293488 -0.208183 1.274061 -0.924958 -1.873677 -2.815146 0.044786 3.037235 0.148311 1.898533 -2.133130 -0.680288 0.275727 2.261841 1.097930 -1.487465 1.066047 -1.504083 1.148953 -2.433612 -2.189268 3.412283 3.401665 1.898515 0.160816 1.048390 2.161086 -3.040740 -1.011911 -0.883497 1.482588 -0.449662 -3.768588 -1.235339 0.439931 -2.014635 -1.237366 -0.688258 1.339193 0.970192 0.804066 1.431177 0.083281 -0.754932 -1.115275 1.758494 -0.687525 -1.200863 0.149339 0.041622 0.098102 0.765563 -0.834006 1.061940 1.056039 -1.317569 0.927156 1.657995 0.669639 0.093066 2.889605 2.345114 -0.733827 1.295349 -0.553004 -0.546014 1.342851 -0.277755 1.039166 0.248205 0.373635 0.064442 0.310428 1.529104 -0.940543 -1.874161 -1.596817 -0.261144 0.586817 1.553584 0.757784 -2.600741 -3.113929 0.045794 0.620533 2.738367 0.258402 2.973945 -0.609097 1.149647 -3.034227 0.423993 0.551752 -0.082254 1.316849 0.331082 -0.832921 -0.428896 -0.695111 -2.224298 -2.376171 -0.550294 -1.172380 -1.253485 -1.464112 1.735993 -1.047966 -0.591555 0.730236 0.176244 1.679620 0.084044 -0.201495 -2.021093 0.763596 2.007927 -0.338867 -1.372230 1.843562 0.313565 4.553540 -0.321828 0.891674 -0.051993 0.912593 -0.302346 -1.753352 -0.273743 2.443799 1.857908 0.186795 -0.487635 -0.570914 0.604042 0.872035 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp___GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -2.109723 0.315474 11.349335 6.581537 -4.321778 -8.290215 -4.290666 -11.494839 7.043861 0.647229 7.268727 1.643394 2.474175 -2.579264 0.527554 -0.638590 0.607207 -4.295754 0.739065 -2.742283 -0.207202 10.853535 5.051709 -7.648980 0.153042 -14.113057 6.764847 4.271468 5.745789 8.040418 -0.046951 -1.528365 -0.928598 6.045189 -3.052378 0.643416 1.296592 1.323622 -3.449767 -0.188656 3.361723 5.326769 5.961532 -0.342662 7.845692 1.638785 5.698843 1.345716 -3.478298 -1.638049 -5.554740 8.914484 -6.827356 3.521845 -0.673038 3.458381 0.553970 -7.044617 -3.372170 -8.011756 -0.573439 2.638631 -4.625613 0.158064 -6.331493 2.472916 -1.052576 -2.354903 2.720735 0.571692 7.176725 3.257157 1.978779 -2.350318 -8.037797 2.644983 -1.451683 4.864160 4.480371 -2.930119 -2.922734 1.524599 -2.837956 -4.694494 3.168629 2.644370 0.439289 -0.804906 1.957179 -1.646114 -2.324505 -1.622679 -1.551152 5.097076 -4.740662 2.583397 -1.543736 -0.411644 -2.807303 -1.920739 0.031997 -5.810899 2.774627 4.908416 -0.483894 -0.454139 0.075497 0.860496 -4.069818 -6.721016 1.380631 -1.097418 1.218823 7.771757 -3.909486 0.021338 -0.023926 -0.528289 -1.102529 7.687851 0.163698 3.523637 6.797370 9.331261 1.310458 -5.438605 -2.221420 2.999962 6.461256 6.156745 4.718430 -7.900212 -4.048313 -1.050344 1.452770 -10.981326 1.609505 3.612061 5.471365 1.721480 -7.980175 2.730019 -2.898862 9.237410 5.638628 2.339213 2.094547 0.102348 -6.489476 8.572723 15.647321 -2.132388 5.117033 -5.580799 -3.836966 9.447244 -7.570632 5.099977 1.169624 0.936573 1.406475 -5.371418 -0.795459 6.836201 2.536703 4.465818 4.628227 1.972835 0.682002 -11.847034 -9.240766 -1.035016 6.439790 -0.217557 12.842862 -6.201202 -3.987530 -2.219715 7.479218 -0.610365 -2.126983 1.068990 -4.741158 4.346350 -12.453391 -9.780229 13.134197 12.352953 2.138953 1.690734 7.876166 7.279535 -2.584340 -2.610328 -2.709254 3.945134 2.289986 -2.867914 0.279271 -0.392978 -6.896386 -5.735363 1.187090 2.067099 3.309403 -2.534222 -3.575243 2.013509 -8.058177 -5.462226 3.724110 -8.051626 -3.489072 0.790311 0.254961 -0.388336 2.876248 -2.283550 0.025329 4.236133 -3.900301 0.745926 3.831481 5.014747 2.490928 6.018543 8.334923 0.588293 7.702101 4.537048 -2.568587 14.269840 -2.506295 0.805860 2.553674 3.299558 0.791311 3.473357 1.367423 -3.601634 -2.181947 -8.227346 5.486840 0.527378 5.499774 -6.939516 -6.749203 -7.210621 -3.980545 5.778827 5.130283 -0.668247 14.225441 -1.760487 0.932294 -15.705452 -0.825220 6.438355 1.117546 5.163155 4.193617 -4.273684 -10.815338 -3.015072 -2.275039 0.783868 -4.088860 -7.272010 -4.641031 -5.116754 6.451276 -5.327371 3.334656 8.587565 -0.357490 4.199916 -2.959704 -0.444443 -4.237301 -2.167063 1.062166 2.763517 -6.643536 8.218189 -2.640676 15.696723 -5.150381 5.583648 -5.777636 4.569199 -2.340329 -3.477279 -0.351577 10.151196 4.676310 0.992128 0.714702 -0.702796 -3.405248 5.295026 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.191594 0.301960 1.910878 -0.032442 -1.200876 -2.400863 -1.024727 -3.615714 1.241295 0.742855 1.998697 -0.121159 1.174778 -0.259083 0.104047 0.793826 0.795351 -1.244006 0.702577 -1.088682 -1.053163 2.407924 0.226320 0.712324 0.267564 -2.580645 1.470186 0.364212 0.959662 1.605592 0.630338 -0.203125 -0.697833 0.850104 0.222556 1.210189 0.563917 0.705049 -0.760741 0.887594 0.078728 -0.444554 1.449966 0.071236 1.877906 0.871608 0.585913 0.777295 -0.666972 -0.981843 -0.610502 0.948561 -1.430134 0.392259 -0.403076 -0.469706 0.046169 -0.697768 -0.550760 -0.129013 -0.685154 -1.024209 -1.168236 0.662533 -1.318004 0.754290 -1.293536 -0.690804 -0.267366 -0.177658 1.309685 0.572514 -0.012076 0.932425 -2.391717 0.155682 0.239980 0.520020 0.970158 -0.715581 -0.483983 0.032080 -1.502355 -1.582088 1.428323 1.637903 0.516805 -0.135000 -0.984137 0.112568 -0.655184 -0.144879 0.928323 1.168492 -0.993721 -0.188535 -0.307655 -0.625818 -1.353477 -2.392596 0.576581 -0.813957 0.940940 0.052002 -0.213595 -0.681627 -0.626543 0.124421 -1.112964 -1.515729 0.338567 -0.864210 0.576149 2.244563 -0.728021 -0.170013 -1.330568 -0.721821 0.234169 1.202170 0.928956 0.268432 1.799508 1.737301 0.545885 -1.293835 -1.440979 0.604117 1.150309 0.612917 0.840765 -1.559122 -1.111606 0.469653 -0.964682 -2.235397 -0.932780 0.477495 1.152891 -0.794810 -0.141103 0.623394 -0.917227 1.056118 1.611442 0.246692 0.310594 -0.053284 -1.476815 1.447638 2.472373 -0.387148 1.266570 -1.241174 -0.477621 1.773351 -1.203319 0.528177 0.792553 -0.197440 -1.330493 -0.553211 0.115427 1.088672 0.428243 0.979837 0.150070 0.911771 -0.669258 -1.408217 -2.190271 0.117290 2.425059 0.240983 1.762426 -1.754443 -0.368843 0.172875 1.772923 0.791191 -1.100295 0.697013 -0.988335 0.864613 -2.209489 -1.775252 2.652689 2.451066 1.457397 0.117225 0.777020 1.595357 -1.968527 -0.838739 -0.794699 1.186251 -0.315534 -2.549504 -0.880279 0.324088 -1.605293 -0.840750 -0.525019 1.060018 0.876378 0.282551 0.798740 -0.215666 -0.744501 -1.023234 1.189626 -0.687035 -0.862919 0.202541 -0.065519 -0.021652 0.511172 -0.468172 0.700876 0.643246 -1.003483 0.658409 1.241231 0.597716 0.096371 2.325262 1.868335 -0.696862 0.776983 -0.327143 -0.385424 1.368369 -0.303617 0.819196 0.241736 0.628576 0.147098 0.272697 1.321421 -0.690536 -1.377525 -1.346842 -0.055324 0.609253 1.091801 0.248599 -1.792479 -2.618914 0.000287 0.418938 2.418891 0.138335 2.423717 -0.344461 0.896021 -2.320785 0.340953 0.422912 -0.099645 0.996634 0.332191 -0.749763 -0.410306 -0.565280 -1.769975 -1.612881 -0.429729 -0.843966 -1.047858 -0.858508 0.960143 -0.791505 -0.358378 0.733609 0.014897 1.124088 0.062417 -0.168930 -1.507442 0.416461 1.665868 -0.268934 -1.068389 1.452967 0.250341 3.482447 -0.167409 0.881351 -0.084137 0.689954 -0.186912 -1.348234 -0.318317 1.943654 1.363379 0.126476 -0.132560 -0.296185 0.592013 0.760756 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp___GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/anagram-substring-search-search-permutations.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = -0.672194 0.882766 3.946428 2.587171 -2.565684 -3.214187 -1.556713 -3.944306 1.610353 0.052386 2.592441 0.314903 0.588770 -0.244275 0.337918 -0.744553 0.400565 -0.538980 -0.167442 -1.232579 -1.289129 2.117671 1.438435 -3.026199 0.482970 -3.285767 2.717617 1.892581 0.993833 2.005328 0.104233 -0.324650 -1.285268 2.153933 -1.098771 -0.192687 0.376998 0.725922 -0.967263 0.115733 1.624391 1.452136 2.103534 0.001072 2.314788 1.518050 1.480200 0.870665 -2.080427 -0.500594 -1.050659 2.466117 -2.024974 1.592669 0.048928 1.279528 0.362482 -2.533808 -0.633271 -2.604374 0.228051 0.132916 -1.648878 0.005800 -2.179944 0.441944 -0.075895 -1.611135 1.336347 -0.044632 2.216732 0.018218 -0.336256 -0.765717 -1.867642 0.257987 0.003387 1.681528 1.688915 -0.844867 -0.524037 0.320479 -1.388242 -1.633009 0.515795 0.208920 0.735618 -0.241686 0.394608 -0.742572 0.332223 -0.664898 -0.040914 1.897064 -1.437417 0.845140 -1.039661 -0.503237 -1.909071 -1.219741 0.517170 -1.592323 1.493260 1.414190 -1.436156 -0.270838 0.183887 0.491292 -0.956342 -2.408292 0.012345 -0.772380 1.241833 2.549553 -0.847436 -0.630225 0.158532 -1.044276 -0.145203 2.320843 0.614596 0.510018 2.559349 3.211311 0.445556 -1.927447 -1.280887 0.178328 1.457646 2.408017 1.714420 -2.745095 -1.433694 0.003432 -0.322961 -3.717584 0.845055 0.467913 2.030610 0.428840 -2.646229 0.996861 -1.576971 2.203190 1.199151 1.838568 0.533538 -0.252720 -2.058829 2.255073 4.345208 -0.724942 1.695655 -0.975093 -1.578576 2.500274 -1.537512 1.328589 1.027578 -0.329803 0.361949 -1.383074 -0.604970 2.337194 0.916500 1.142716 1.890643 0.665693 -0.858097 -3.700587 -2.969041 0.274937 2.566809 0.174372 3.949706 -2.493115 -1.211638 -0.699358 3.193652 -0.673906 -0.938483 0.231542 -1.032478 1.559348 -2.915463 -2.916977 3.467959 3.579988 0.431612 -0.016858 2.549921 1.416559 -1.094548 -1.342256 -1.493454 1.046199 0.617316 -0.053372 0.061585 -0.081016 -2.388490 -0.872804 0.581694 1.088305 1.410758 -1.314135 -1.391779 0.729514 -2.479991 -2.223149 0.742797 -2.134486 -0.452162 0.634245 -0.142605 -0.040698 0.710072 -0.707770 -0.939077 0.523542 -1.331142 0.553086 1.221830 1.799415 0.641396 3.158595 1.759693 -0.133932 2.243383 1.392637 -1.068837 5.257407 -0.934622 0.857019 0.975033 1.983899 0.002591 0.990924 1.247313 -1.234043 -0.851495 -2.808535 0.831805 0.148449 1.803483 -2.983752 -1.638448 -3.198242 -1.159283 1.432654 1.933646 -0.635969 4.470816 -0.008528 0.530521 -4.627436 -0.314469 1.955095 -0.395254 1.550851 1.214312 -1.747146 -3.969682 -0.809894 -1.299931 0.056231 -0.925149 -1.284262 -1.727978 -0.703979 1.114861 -0.807055 0.856866 2.847407 -0.549740 0.645859 -1.085717 -0.066832 -0.315924 -1.408261 1.272463 0.463593 -2.726879 3.013176 -0.169157 5.862574 -0.606548 2.153131 -1.528026 0.510390 -0.193756 -0.955155 -0.647906 3.215536 1.665866 0.947895 0.188243 0.561723 -1.158690 1.699999 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -1.662111 1.223204 11.827565 6.342481 -4.858595 -9.141040 -4.460893 -13.897323 7.484175 0.508983 8.022359 1.133056 2.709182 -2.371806 0.860283 0.211097 1.499727 -4.363609 1.068400 -3.231706 -0.317451 10.801177 4.237994 -6.295701 0.172648 -13.894556 5.544326 4.226535 6.486542 6.767109 0.960079 -2.187370 -1.759966 5.770384 -2.571936 1.048702 2.351915 0.950738 -5.255220 -0.422010 1.727570 4.734357 6.446066 -0.449121 8.323678 0.631587 6.551074 2.118672 -3.506425 -1.365835 -6.080645 11.213415 -6.586791 3.496867 1.171160 2.213931 0.487480 -7.063363 -3.290633 -6.083365 -1.718627 1.724014 -4.639363 0.493140 -6.263328 2.729255 -1.958312 -2.062238 2.750346 0.911161 7.611145 3.071061 2.438886 -0.960446 -8.927581 2.674114 -1.640220 5.134437 4.820429 -2.605762 -1.214379 1.509894 -3.003659 -5.054126 4.038690 3.368332 0.517631 -1.184072 0.495855 -0.922790 -2.541856 -2.713611 -1.008084 4.529893 -5.766964 2.747889 -2.177462 -1.088081 -3.930453 -3.922541 0.185203 -5.638574 3.077504 3.539739 0.071281 -0.786316 -0.805456 0.618535 -4.191888 -7.179236 1.954976 -0.573879 1.263096 9.132810 -4.945499 -0.028016 -0.523942 -0.619483 -2.173952 7.407472 1.231711 4.024399 6.055142 9.918204 1.746326 -5.344642 -2.817829 2.914192 6.805437 6.484629 5.087298 -7.962703 -4.325914 -0.184806 1.328941 -11.727409 1.078121 4.467068 6.282408 2.821822 -7.281563 0.762518 -2.826802 9.488001 5.107329 2.412900 2.092773 -0.095745 -6.314716 8.536278 14.814925 -2.379060 6.050913 -5.069578 -2.402907 7.875388 -8.049704 4.983205 1.416068 1.106794 1.055383 -5.096563 -1.908714 6.672385 3.542627 3.820326 3.763328 2.531295 -0.753926 -12.595951 -9.935030 -0.249898 6.919648 -1.514202 11.016177 -6.199984 -5.120902 -1.811747 8.073879 -0.992887 -3.043890 1.947660 -5.817307 4.648150 -10.792888 -9.575129 13.560991 13.257297 2.110053 0.805949 7.531991 7.831779 -5.860079 -3.506214 -3.109205 4.099823 1.285169 -5.712505 -0.876766 -0.488618 -7.277069 -5.320583 1.086022 2.726986 3.571589 -1.117280 -1.569441 2.523561 -7.913743 -5.043385 4.698233 -6.994414 -3.795929 0.968092 0.215112 0.327992 3.590995 -2.897896 0.057721 5.213645 -5.007128 0.511066 4.065835 5.562128 2.178710 8.189506 7.888109 1.623331 9.589773 4.079614 -3.811394 13.494908 -2.475630 1.422570 1.672325 2.573840 0.005686 3.466082 1.870120 -3.962739 -4.556908 -8.117771 4.015384 -0.233556 6.368082 -5.165827 -8.314077 -7.816270 -3.850628 5.944696 4.804137 -0.715176 13.993777 -2.436479 1.080684 -15.832688 -0.637984 6.447915 0.714490 5.494721 3.900359 -4.533100 -9.603784 -2.925546 -3.573799 -1.124240 -3.708296 -7.529062 -4.466295 -6.421201 8.326278 -5.333697 2.532618 7.764892 -0.033149 4.897348 -2.307892 -0.697856 -4.302942 -1.514230 2.748462 2.033179 -7.381188 8.988337 -2.246388 17.754162 -4.693596 4.814321 -5.762876 3.282430 -1.839056 -3.482101 -0.503049 10.541951 5.984853 1.032997 -0.539788 -0.911958 -3.718386 4.965719 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/anagram-substring-search-search-permutations.cpp___GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp____cxx_global_var_init = 0.363657 0.288127 0.414042 -0.013774 -0.074391 -0.397794 -0.049889 -0.658035 0.256168 -0.026209 0.035565 -0.057377 0.151533 -0.051850 -0.105282 0.279545 0.072069 0.158507 0.071180 -0.116905 -0.000899 0.321759 -0.228776 0.038214 0.041776 -0.455075 0.008811 0.152519 0.510793 0.144067 0.057560 -0.123533 -0.078209 0.128333 -0.140323 -0.106658 0.184374 0.029914 -0.591514 0.107336 -0.349675 0.132215 0.126295 -0.039190 0.164059 0.055812 0.062906 0.208950 0.165134 0.065847 -0.144270 0.454903 0.068608 0.174783 -0.020580 -0.157638 -0.192298 0.018358 0.028837 0.252970 -0.088203 0.093909 -0.024709 0.034308 -0.271555 0.000412 -0.112429 -0.271432 -0.055833 0.074219 0.160325 0.118675 0.138694 -0.040661 -0.611501 0.058647 0.030394 0.260491 0.184309 -0.038263 0.286340 -0.029800 -0.111667 -0.189686 0.189636 0.460655 0.057966 0.083397 -0.155781 -0.227041 -0.082677 -0.113724 0.202294 0.067665 -0.142144 0.099704 -0.512034 0.068457 -0.086686 -0.529749 0.009686 -0.026264 0.137595 -0.378380 0.338362 0.123135 0.291815 0.139203 0.113866 -0.091749 0.122964 0.055513 -0.012318 0.606864 0.067314 -0.131657 -0.043322 -0.071690 -0.403156 0.167258 0.048937 0.049476 0.025775 0.211161 0.165103 -0.172298 -0.195221 0.208607 0.002655 0.250439 0.231104 -0.269516 -0.097423 0.020798 -0.042299 -0.481286 0.038557 0.016526 0.135513 -0.247467 0.145540 -0.161989 -0.178780 0.169272 -0.008776 -0.103664 0.154995 -0.094866 -0.099871 0.186359 0.414658 -0.052577 0.145701 -0.235827 0.092370 -0.148229 -0.016535 0.165235 -0.179237 -0.123058 0.049811 -0.028778 0.030053 0.180786 0.037932 0.001363 0.040791 0.067649 -0.446548 -0.338303 -0.183649 -0.030577 0.189967 -0.297640 0.182262 -0.095573 -0.323334 -0.089828 0.308952 -0.064975 0.099609 0.229078 -0.371438 0.197527 0.003118 -0.258263 0.329332 0.507642 0.141667 -0.187919 0.121619 0.188228 -0.442443 -0.324444 0.073924 -0.112395 -0.019863 -0.760545 -0.415528 0.007915 -0.222130 -0.000490 0.135991 0.123170 0.102909 0.508491 0.320845 -0.034675 -0.186584 -0.312344 0.280995 -0.087546 0.134395 0.163188 0.114436 -0.097057 0.222484 -0.336593 -0.051049 0.394379 -0.072609 0.198719 0.041809 0.064316 -0.114706 0.259940 0.112117 0.178432 0.547488 0.108240 -0.260888 0.398185 -0.027951 0.186718 0.029837 -0.071073 -0.281126 0.132714 -0.002997 -0.177548 -0.229831 -0.295709 -0.266086 -0.015838 0.088310 0.383728 -0.361249 -0.058101 -0.072065 -0.045684 0.076152 0.075728 0.274692 -0.183117 0.157413 -0.363698 0.085649 0.073204 -0.060456 0.259231 0.162491 -0.160921 -0.211963 -0.018154 -0.231871 -0.548716 -0.180291 -0.439806 -0.042953 -0.177329 0.220499 -0.078342 -0.029107 0.253036 0.048602 0.248323 -0.427836 0.051494 -0.206756 0.067191 0.315740 -0.121441 -0.242590 -0.038476 0.028026 0.661236 0.048595 0.111129 -0.099249 -0.150362 0.085241 -0.242204 -0.122357 0.361555 0.071246 0.131790 -0.106959 -0.110477 -0.029573 0.085598 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = -4.493300 0.559061 17.814896 10.839970 -7.822221 -12.025742 -6.240887 -16.328930 10.405424 1.138285 11.250200 3.630694 4.073702 -3.934762 1.502189 -1.879930 1.911298 -6.163482 0.415281 -4.453905 0.438856 14.943231 8.829803 -13.634382 0.548023 -20.012908 10.198346 6.440075 7.703502 11.781014 0.291463 -1.721529 -2.562154 9.254040 -4.750605 0.323262 2.191266 2.188653 -5.277299 -1.318837 5.715014 8.127488 8.830951 -0.184828 12.327382 2.201617 8.634056 2.158181 -6.462616 -2.681743 -7.967159 13.512221 -10.393320 6.165573 -0.208765 6.079321 0.906373 -10.874581 -4.782722 -14.788213 0.094989 3.850600 -6.481298 -0.052332 -9.182322 3.687674 -0.511491 -3.864563 4.101099 0.622425 10.899073 4.137015 3.412923 -3.900535 -11.274453 3.419718 -2.422113 7.377619 7.336361 -3.490839 -5.301337 1.336702 -3.749660 -7.174190 4.036284 2.836783 0.248384 -0.858405 3.262253 -2.070020 -2.701718 -3.003941 -3.303201 7.724887 -8.340888 4.472264 -1.123373 -0.631052 -3.958272 -1.819563 0.122047 -8.803440 3.993592 8.229200 -1.347346 -0.743934 -1.211773 1.589567 -6.688390 -9.546673 2.695922 -1.660356 0.933382 10.777127 -6.188854 0.038946 0.853732 -0.646947 -0.758595 11.834404 -0.354235 5.802649 10.087991 14.459620 1.708467 -8.036073 -2.265719 4.543199 10.251667 9.623883 7.250521 -11.987657 -6.189772 -0.650372 1.762587 -16.017432 2.945358 6.104378 9.019093 3.629727 -13.758674 3.550288 -4.555610 14.122331 8.305630 5.060901 2.922910 0.175820 -9.826626 12.277369 23.419098 -3.468236 7.999634 -6.477815 -5.456029 14.183449 -11.472249 8.001457 1.838299 1.169548 2.324425 -8.080195 -2.332718 10.604182 5.066241 6.609626 6.624115 2.937385 0.614884 -18.811202 -14.151583 -2.604009 9.683183 0.331248 19.878960 -9.388918 -5.980027 -4.038073 11.388427 -1.671539 -3.921653 1.251679 -6.522442 6.583111 -18.789963 -14.495284 20.126260 18.730838 2.996038 2.406616 12.524777 10.003500 -3.629846 -4.598482 -3.960492 5.412379 3.086158 -2.181594 0.916747 -0.214357 -11.356163 -8.655581 2.173516 3.144436 5.500863 -4.322565 -5.726533 4.723230 -12.072170 -7.819668 4.390168 -11.768106 -6.140924 1.186949 0.629359 0.435986 3.651318 -3.118935 -0.917957 6.138543 -6.352904 0.276550 5.417839 8.525970 4.249100 9.603262 12.030341 1.248525 10.715658 6.888686 -4.816278 22.688457 -4.079103 1.066987 3.603319 5.256540 1.669584 4.683719 2.364999 -5.575221 -2.757760 -12.684504 8.086323 0.466805 8.819208 -13.052901 -10.385052 -10.484965 -5.358990 8.775718 7.354445 -2.039674 21.980445 -2.659919 0.845103 -24.515704 -1.298431 10.323704 1.213804 7.118396 6.870837 -6.790414 -17.813634 -4.459647 -3.465995 2.565136 -5.744076 -9.880214 -6.703276 -6.988933 9.802922 -7.964390 5.049391 13.678972 -1.335431 7.058061 -3.727640 -0.677397 -5.541235 -3.476183 0.922188 4.563064 -10.337705 13.551814 -3.873750 24.310403 -7.653047 8.474163 -8.732879 6.740154 -3.539876 -4.597411 -0.956577 15.495158 7.615242 2.209151 1.835774 -0.645653 -5.861940 8.255272 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp___GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_share_at_most_twice.cpp = 0.214645 0.252061 0.305929 -0.055094 0.009652 -0.270918 0.025969 -0.348747 0.095686 0.012215 0.069753 -0.080058 0.164705 0.014929 -0.038554 0.091363 0.098235 0.205375 0.032931 -0.058134 0.012818 0.051681 -0.213743 0.030621 0.100570 -0.163966 0.032981 0.151277 0.224157 0.117075 0.029275 -0.042261 -0.085529 0.057801 -0.118697 -0.139341 0.151685 0.038985 -0.323627 0.060693 -0.232262 0.099459 0.074765 0.044971 0.029732 0.162345 -0.103026 0.121248 0.100339 0.012349 0.021310 0.152814 0.126155 0.164746 -0.052344 -0.109292 -0.065215 0.066201 0.128042 0.069847 0.072136 0.073894 0.015822 -0.015824 -0.159659 -0.090797 -0.036706 -0.230545 -0.036149 -0.077108 0.022395 -0.037159 0.001565 -0.067678 -0.348720 0.001414 0.090696 0.109350 0.127696 -0.000867 0.151449 -0.051976 -0.104293 -0.139639 0.111829 0.271424 0.104096 0.151857 -0.204513 -0.206091 0.027126 -0.032415 0.160792 0.068031 -0.001302 0.067961 -0.292382 0.011540 -0.026764 -0.359479 0.050170 0.005113 0.063045 -0.230299 0.192616 0.083492 0.139581 0.183093 0.134106 -0.001436 0.153097 -0.028179 -0.046546 0.313548 0.082758 -0.168076 -0.068849 -0.081326 -0.142829 0.117407 -0.005371 -0.066140 -0.046137 0.035917 0.139368 -0.110951 -0.093839 0.117575 -0.068580 0.135223 0.084383 -0.155031 -0.017788 0.050767 -0.209563 -0.311265 0.006367 -0.066926 0.106472 -0.220259 0.034941 0.002022 -0.196659 -0.021053 0.002913 0.021183 0.110853 -0.022943 -0.045124 -0.021808 0.136075 -0.090603 0.072182 -0.053499 0.006175 -0.235323 0.162617 0.077465 -0.141038 -0.136766 0.107450 0.026490 0.058043 0.167996 0.064287 0.023199 -0.001190 0.018870 -0.350337 -0.127581 -0.154307 -0.045279 0.130658 -0.141020 0.118622 -0.053893 -0.189642 -0.105145 0.245396 -0.140452 0.051834 0.109685 -0.151203 0.100324 -0.018532 -0.121666 0.140859 0.259734 0.127100 -0.195562 0.002917 -0.011016 -0.180622 -0.203664 0.026387 -0.117159 -0.064826 -0.422783 -0.261292 -0.005529 -0.147219 0.110184 0.079890 0.040487 0.037006 0.274694 0.220083 -0.074589 -0.083987 -0.194281 0.089416 -0.028261 0.139785 0.088955 0.037698 -0.051685 0.118207 -0.228270 -0.124077 0.261647 -0.089836 0.067112 -0.027516 0.042221 -0.060647 0.241171 -0.024738 0.098495 0.217105 0.029892 -0.222294 0.302835 -0.055044 0.100923 -0.001088 0.041268 -0.112756 0.115276 0.052261 -0.102169 -0.127702 -0.243998 -0.268040 0.049966 0.020058 0.237984 -0.168024 -0.083590 0.011917 -0.156376 0.177399 0.022601 0.185797 -0.049233 0.139457 -0.106869 0.056271 0.002309 -0.116223 0.091349 0.084915 -0.151286 -0.174591 0.036150 -0.234695 -0.378714 -0.043615 -0.181958 -0.017781 -0.044266 0.024388 0.001068 0.000105 0.121854 0.018638 0.119651 -0.246224 0.036052 -0.075969 0.034615 0.260200 -0.110557 -0.163402 -0.105501 0.099347 0.364867 0.082341 0.122902 -0.054606 -0.127463 0.056361 -0.138969 -0.168513 0.193878 0.086905 0.163723 -0.037324 0.007069 -0.008390 0.092979 diff --git a/src/test-suite/oracle/SYM_llvm12_onDemand/ir2vec.txt b/src/test-suite/oracle/SYM_llvm12_onDemand/ir2vec.txt deleted file mode 100644 index 85c17f36..00000000 --- a/src/test-suite/oracle/SYM_llvm12_onDemand/ir2vec.txt +++ /dev/null @@ -1,269 +0,0 @@ -PE-benchmarks/subset-sum.cpp__main = 0.036293 0.335324 1.534518 0.165520 -0.787278 -1.749091 -0.738087 -2.587492 1.010000 0.443951 1.294044 -0.091305 0.804606 -0.177060 -0.023290 0.575325 0.509822 -0.738695 0.470141 -0.734994 -0.712876 1.963150 0.214751 0.234438 0.189621 -2.089308 1.041599 0.339513 0.948570 1.246333 0.337625 -0.158882 -0.344457 0.703235 -0.079063 0.631835 0.320429 0.477031 -0.768783 0.617248 0.024782 -0.050605 1.071315 0.062428 1.252659 0.669964 0.473425 0.539557 -0.374618 -0.579734 -0.549994 0.887998 -0.917733 0.407913 -0.363042 -0.225021 0.017916 -0.560046 -0.392549 -0.109401 -0.471171 -0.432048 -0.815706 0.408927 -1.090633 0.488602 -0.870934 -0.594501 -0.137176 -0.029949 0.999854 0.503554 0.066171 0.334485 -1.890998 0.237176 0.137524 0.521374 0.717333 -0.469145 -0.294873 0.111979 -1.064046 -1.161480 1.006068 1.221207 0.339216 -0.048912 -0.539657 -0.219502 -0.490335 -0.131697 0.580396 0.883882 -0.685884 0.054719 -0.424682 -0.349446 -0.891572 -1.672125 0.284896 -0.638046 0.660678 -0.013664 0.042441 -0.334786 -0.133791 0.165550 -0.600419 -1.102003 0.274545 -0.500178 0.291759 1.773614 -0.401838 -0.175463 -0.794062 -0.456352 -0.102742 1.003542 0.548251 0.225624 1.290780 1.268037 0.394683 -0.904638 -0.901377 0.487974 0.762834 0.529880 0.746529 -1.200801 -0.820192 0.236288 -0.480905 -1.747768 -0.533664 0.410888 0.825061 -0.650428 -0.184683 0.486371 -0.659771 0.872022 1.092613 0.079902 0.343771 -0.124869 -1.025079 1.142566 2.091140 -0.311676 0.868341 -1.081561 -0.485150 1.374036 -0.869489 0.534409 0.346432 -0.138363 -0.762561 -0.484189 0.222446 0.902500 0.216023 0.606464 0.310310 0.543163 -0.493566 -1.172402 -1.592275 0.042379 1.564761 0.061573 1.554290 -1.182715 -0.376059 -0.011688 1.263064 0.481564 -0.575579 0.519473 -0.827933 0.637825 -1.755361 -1.416686 2.025297 1.892600 0.959244 0.039991 0.693796 1.166469 -1.223187 -0.764537 -0.533393 0.782728 -0.072992 -1.786014 -0.685249 0.195296 -1.181152 -0.589825 -0.257898 0.690605 0.708013 0.236297 0.442041 -0.302883 -0.812639 -0.909633 0.901787 -0.693714 -0.500280 0.235967 -0.004457 -0.178313 0.479678 -0.380965 0.375463 0.554043 -0.657591 0.463784 0.791820 0.475186 0.008088 1.513476 1.458627 -0.356821 0.808716 -0.014270 -0.359980 1.398931 -0.313209 0.520762 0.180324 0.456398 -0.030861 0.314556 0.794149 -0.507094 -0.929352 -1.088104 0.148765 0.392842 0.671692 0.015875 -1.301465 -1.739397 -0.154937 0.309569 1.670233 0.167461 1.888344 -0.355071 0.607592 -1.930568 0.259060 0.398905 0.002042 0.846822 0.377130 -0.629725 -0.535989 -0.406923 -1.183367 -1.058836 -0.452526 -0.960038 -0.768689 -0.623677 0.690960 -0.651245 -0.086151 0.853899 -0.020108 0.840622 -0.237214 -0.120096 -1.148278 0.187981 1.159984 -0.161971 -0.792902 0.941116 0.047532 2.580181 -0.208204 0.752049 -0.237249 0.451302 -0.125873 -1.057494 -0.260572 1.511020 0.851008 0.086509 -0.007263 -0.253482 0.325537 0.598682 -PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = -3.633988 -0.366314 15.084130 9.445888 -4.348297 -9.398759 -5.579290 -11.349460 9.061948 -0.290397 8.505962 2.401546 2.260302 -3.667137 0.488451 -3.416448 0.240343 -5.658747 -0.127057 -3.249478 1.766408 12.772117 8.073855 -12.893839 0.366262 -19.591944 8.148590 5.701473 6.864007 11.814700 -1.184908 -1.920019 -0.881953 7.980500 -4.664677 -0.517683 2.438068 -0.066690 -4.248991 -0.833707 5.371284 10.190765 7.803248 -0.262144 9.369286 2.527395 5.550132 1.395661 -4.680368 -1.965963 -6.511465 10.830892 -8.335477 4.527221 -0.139940 7.148220 1.069911 -10.616670 -4.502901 -12.780545 0.278370 5.898088 -4.568178 -0.223475 -7.895302 2.857478 -0.344881 -2.400641 4.835821 -1.040378 8.805465 4.408266 3.136390 -4.506405 -7.598113 4.185374 -2.425923 7.071309 5.437272 -4.152709 -4.654296 2.683898 -2.154576 -4.566022 1.580713 1.454936 0.114392 -0.345135 4.780552 -3.527041 -2.054421 -2.271176 -3.361871 5.387907 -5.118202 3.205603 -1.796949 -0.271457 -1.876121 0.679973 -0.764697 -6.860579 2.627154 8.096416 -1.357411 0.043335 0.472224 1.443876 -4.685253 -7.251636 2.699396 -0.152217 0.944199 9.486290 -5.578490 -0.180299 0.484953 -0.049996 -1.605382 11.152064 -2.212573 4.838440 6.736192 11.977307 0.876398 -6.482908 -1.028104 3.396048 8.737047 7.690580 6.967450 -9.569298 -4.806995 -2.395298 2.853938 -13.494288 3.198220 3.103917 7.362589 4.590760 -12.823029 4.200265 -4.004725 12.671425 6.069732 2.935590 2.906097 -0.603445 -8.995340 11.562158 20.064615 -2.997993 6.518712 -7.413114 -6.272971 11.634391 -9.415070 6.866463 0.080307 0.926285 4.367489 -6.828831 -0.335857 8.629658 3.208276 5.956788 6.237021 1.833599 3.120054 -15.986866 -11.439161 -1.689775 5.865137 -0.796801 16.869540 -7.103168 -5.022529 -5.150737 10.161488 -2.009687 -1.689282 0.317107 -5.598319 4.862961 -16.726289 -12.417769 17.122641 17.222696 1.659761 3.096552 10.265497 8.874423 -0.068726 -1.548273 -2.709393 4.106473 3.794344 -0.635964 1.783484 -1.282635 -7.281036 -8.233593 2.600770 2.109195 4.152995 -5.487842 -7.211518 3.318332 -11.313761 -7.617497 3.907755 -11.960114 -3.888722 1.845424 -0.034217 -0.562994 3.731959 -2.572625 -1.085195 6.019922 -4.251884 0.175400 4.168885 7.829181 3.975870 4.706799 9.472532 1.890096 9.935032 7.464459 -3.645946 20.521847 -4.221805 0.643600 3.316827 4.358427 1.886672 4.762856 -0.394936 -4.341279 -0.425100 -10.308003 8.797970 0.029286 6.711246 -11.717421 -9.139155 -7.764225 -5.559332 7.682369 4.573695 -0.949401 18.687242 -1.883105 -0.643886 -20.157217 -2.081498 10.112294 2.458137 6.164363 6.129636 -5.431563 -17.573879 -3.490072 -2.273465 5.035389 -5.936044 -10.180001 -5.267137 -6.005862 10.096647 -6.374533 5.997905 12.540140 -0.175928 4.965898 -3.133510 -0.739534 -5.037545 -4.847730 -2.009808 4.677608 -7.861644 10.555868 -3.964327 16.779100 -7.205354 7.290682 -8.481097 6.480428 -3.047641 -3.884809 -0.585980 12.644481 5.291214 0.933433 1.644113 -1.325684 -5.611954 6.785951 -PE-benchmarks/karatsuba.cpp__main = 10.405360 15.141889 28.279703 5.599543 -27.166858 -29.587260 -8.520870 -49.308559 18.268325 3.499210 9.531653 3.808055 5.432600 -14.006717 -4.291331 20.196731 9.375761 1.248231 -3.236691 -14.646489 -24.773804 12.679255 -7.092142 -1.448424 14.766820 -27.435929 16.637712 5.051741 19.716933 5.900925 14.614161 -3.928749 -12.541826 17.533662 12.943960 13.953936 7.488349 2.539205 -25.267743 11.151945 -2.331904 -6.976163 17.761861 6.501981 23.956941 4.895784 12.663569 13.358451 -12.771149 4.849252 -14.589842 30.949581 -10.837954 13.224824 1.428519 -0.786573 -6.852471 -15.835191 -0.078752 13.272858 -16.180286 -15.799780 -13.283496 1.464229 -19.193169 -0.693338 -10.277718 -14.536754 -2.896497 9.899084 15.476835 6.353909 -3.470523 5.332925 -27.417498 -1.688021 8.633609 14.908835 22.070419 -2.510861 11.107569 -5.199611 -14.618178 -18.110749 21.349196 10.434297 7.644964 -2.281227 -6.987523 -11.319991 -10.092746 -11.132350 14.896837 11.360177 -26.344126 -3.747295 -21.954117 -9.039420 -20.757745 -35.663745 5.764620 -5.607309 13.473165 -14.316813 -3.965645 4.692004 8.623161 3.597368 -0.427136 -5.482844 0.624559 -5.638057 9.313066 35.493933 4.863701 -12.733420 -6.070943 -10.015098 -13.084296 9.061899 10.673490 -1.189126 29.342698 23.934816 18.608694 -8.840361 -14.251765 2.649466 0.768200 16.490799 15.645546 -22.213269 -11.663950 7.630826 0.935337 -34.152253 0.933169 -1.525688 11.717060 -3.584213 2.018860 -12.301692 -6.014158 8.084541 -0.388863 -4.438422 7.814536 -3.252071 -10.772313 17.396273 32.703799 -3.520255 8.266752 -16.770514 5.323624 7.666703 -10.658288 2.745156 -0.324709 -11.456990 -3.477813 -3.855936 -5.559411 14.376053 -0.796075 -11.184972 4.512215 10.584016 -25.185943 -24.306266 -19.798819 4.976651 21.433386 -7.066520 20.686649 -18.900671 -7.293102 -11.234338 23.452097 2.478074 0.047324 13.594384 -21.666043 15.037394 2.121047 -19.822671 33.833904 30.609771 7.228123 -8.722410 11.505085 12.816928 -40.860338 -22.227443 -11.080194 -4.809231 8.761789 -36.162383 -21.094681 4.912115 -23.378149 -2.400818 3.574968 9.772261 20.164535 14.265309 12.683512 3.755624 -9.889323 -21.251513 16.779761 -4.892650 -1.809292 9.010647 4.396895 2.826278 17.028921 -8.765765 -6.518688 2.155742 -7.710320 8.066416 10.226458 19.529802 -3.775712 27.910988 18.487250 1.785869 28.008720 6.104114 -13.465220 18.230886 1.966828 14.453219 9.209503 -1.509473 -7.608969 7.037229 15.134722 -12.750181 -14.645128 -16.528594 -8.065784 -4.488205 9.325571 4.168698 -13.817746 -24.831766 -7.421488 2.988384 5.557065 -0.917808 22.954360 -3.253949 4.991226 -30.306618 -0.420543 12.377490 -1.053321 19.190990 8.749211 -18.181769 -7.587290 -7.918135 -20.238013 -24.385596 -5.349030 4.476219 -13.324900 -5.230814 20.789921 -2.867086 -0.672228 20.926758 -1.610425 13.171772 -19.863780 7.950589 -10.503879 -0.933300 29.339590 -3.123033 -16.232735 15.403371 4.532168 50.682659 6.987937 6.769542 -4.788676 -14.061166 8.574086 -13.663242 -10.419487 21.082940 10.642974 11.099070 -1.545055 -1.252329 -1.755142 20.885877 -PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 4.365035 11.121686 25.551425 9.896551 -22.700231 -23.866198 -7.880294 -36.414842 14.015930 2.110708 10.030587 3.715981 3.591383 -9.812401 -1.930065 10.768870 6.104356 0.048013 -2.301294 -11.396809 -18.795054 10.896991 0.533396 -9.100636 10.793886 -23.803334 18.162252 5.795543 14.010638 8.412058 9.761053 -2.413753 -9.574682 16.135947 7.331348 7.527918 4.053125 2.867354 -16.353158 8.137030 2.975286 -1.089174 13.967398 5.395221 19.097885 7.003672 11.815912 9.578361 -12.469806 3.076424 -12.086545 23.673219 -12.332766 11.333609 0.473853 2.826179 -3.192818 -15.756732 -1.339590 0.824994 -9.447419 -10.385369 -12.221600 0.905436 -17.533164 0.736328 -7.525088 -11.904898 0.724536 9.227109 14.523950 5.211003 -2.424524 1.005761 -19.309101 -0.114886 4.675571 13.192768 18.108118 -4.493864 4.611663 -2.014024 -11.397853 -14.817720 14.221009 3.768073 5.638276 -3.227043 0.134274 -9.171445 -6.565059 -8.608989 7.533175 11.429560 -19.008416 0.499239 -15.399766 -6.194209 -15.622683 -23.624042 3.743528 -7.679530 10.834874 -4.246520 -6.757621 2.910476 5.450190 3.354588 -1.776527 -8.547940 0.142915 -4.607627 7.592975 25.884788 1.978979 -8.455280 -1.925079 -7.089939 -7.430700 11.026623 7.809112 1.248032 24.308572 21.969807 10.638938 -7.810578 -9.793082 1.504062 2.678532 15.184242 14.039513 -19.987179 -11.180836 4.307300 2.588138 -27.276502 4.326564 0.698159 10.661889 -0.817481 -5.774544 -5.262551 -6.161493 8.881141 2.339031 1.035620 5.939453 -3.062986 -10.317327 16.375944 30.869035 -4.091679 7.392197 -12.361145 0.070940 12.199140 -10.296623 3.458082 0.901040 -6.812570 -0.220509 -5.862197 -5.948414 14.010492 1.696981 -5.773133 9.829805 7.676836 -15.500216 -23.334771 -16.065022 3.865698 18.198761 -4.949717 21.567942 -16.577001 -4.247315 -9.331056 19.542578 1.538784 -0.459605 7.608979 -14.364459 11.816677 -5.290262 -18.508441 28.148686 24.007438 3.910775 -5.634835 10.790602 12.275213 -26.014380 -16.785305 -10.797034 -1.173812 6.578048 -19.071711 -13.459911 2.790314 -20.038544 -3.894639 4.555744 7.759286 17.788134 4.065704 1.049978 4.562077 -12.153086 -18.318324 11.190091 -8.029676 -3.065627 7.032892 2.417217 2.956444 11.299906 -5.119628 -5.610018 1.573442 -6.694858 3.996622 9.201309 17.128894 -0.513992 23.107808 14.591618 1.754629 19.019001 8.550941 -10.428092 23.280855 0.981050 10.201192 8.379822 2.655874 -4.207867 6.189057 11.722554 -10.106450 -10.862755 -15.975129 -1.350927 -3.363990 8.941415 -5.514095 -9.531960 -20.834956 -7.314321 6.016059 6.341661 -1.933108 23.284042 -1.094815 2.518291 -26.868087 -1.501384 12.712365 -1.070779 15.786594 8.980073 -14.743613 -11.509761 -7.658611 -13.241789 -11.347473 -5.996627 2.114047 -12.185824 -2.078216 14.121096 -2.864311 2.354430 19.593109 -1.837254 8.895828 -14.121096 4.945326 -7.009619 -3.626296 20.135343 0.242957 -15.698967 16.709933 1.476092 41.355574 2.397190 7.764614 -6.930503 -9.582642 5.018955 -7.876720 -7.573450 19.048377 8.990351 8.824361 1.250558 0.636541 -3.269841 17.464652 -PE-benchmarks/sort-array-wave-form-2.cpp__main = -0.145198 0.640022 3.096168 1.230466 -1.776471 -2.812449 -1.300195 -4.181756 1.742873 0.276590 2.238755 0.026329 0.873854 -0.579890 0.099340 0.226972 0.684749 -0.902759 0.290281 -1.159934 -0.899343 2.582595 0.534400 -1.040483 0.409860 -3.457680 1.738221 1.195106 1.487416 1.690559 0.409794 -0.429243 -0.963886 1.461681 -0.440555 0.459064 0.773454 0.442238 -1.497613 0.412507 0.487519 0.720337 1.895405 -0.167007 2.157274 0.726966 1.117197 0.905960 -1.217353 -0.604861 -1.010270 2.315099 -1.449933 1.016932 0.188417 0.236565 0.078299 -1.687645 -0.647015 -0.840592 -0.460460 -0.265056 -1.203927 0.325356 -1.711856 0.590217 -0.662163 -1.017941 0.714880 -0.129529 1.766720 0.473522 0.090362 0.104136 -2.390866 0.428626 0.179645 1.300335 1.314666 -0.620110 0.016872 0.225972 -1.330585 -1.549331 1.099835 1.313919 0.576631 -0.215529 -0.505400 -0.442442 -0.233642 -0.618963 0.499340 1.290051 -1.491727 0.195758 -1.081297 -0.605682 -1.590612 -2.017328 0.402722 -1.143499 1.165094 0.481697 -0.577742 -0.251452 0.067795 0.333942 -0.895881 -1.824079 0.318711 -0.607394 0.866998 2.965850 -0.853308 -0.511358 -0.790080 -0.740372 -0.526273 1.740883 0.582386 0.555843 2.043000 2.576850 0.680217 -1.588421 -1.385416 0.605310 1.395060 1.562284 1.384530 -2.223637 -1.198241 0.178908 -0.436467 -3.246105 -0.192126 0.366682 1.731496 -0.008734 -1.196818 0.400138 -1.154264 2.004270 1.173728 0.575434 0.488067 -0.139996 -1.793322 2.094793 3.503389 -0.559967 1.511438 -1.415863 -0.851845 1.732790 -1.390871 1.010270 0.644406 -0.237493 -0.309922 -1.014171 -0.166499 1.692802 0.573322 0.901554 0.715815 0.840071 -0.861721 -2.807753 -2.825712 0.285980 2.198380 -0.147913 2.842882 -2.007829 -1.229966 -0.475035 2.635185 -0.069809 -0.923769 0.743780 -1.520690 1.283365 -2.218372 -2.485770 3.398656 3.561019 0.883946 0.027908 1.830574 1.630367 -2.096574 -1.138334 -1.027821 1.000272 0.369953 -2.137220 -0.631416 0.143255 -1.930597 -1.010503 0.131672 1.028465 1.139356 -0.079877 0.126195 0.270394 -1.764787 -1.641083 1.420230 -1.427513 -0.532439 0.506198 -0.043781 -0.017803 1.093352 -0.892229 -0.176353 0.867595 -1.216452 0.613700 1.129363 1.370334 0.274692 2.586186 1.966247 -0.035288 2.324622 0.637875 -0.991344 3.286446 -0.678354 0.826700 0.507708 0.840309 -0.114917 0.783735 1.062328 -1.058751 -1.217383 -2.163855 0.333874 0.106188 1.467892 -1.095952 -2.089060 -2.794395 -0.770248 0.963302 1.777211 -0.054527 3.528313 -0.493234 0.510359 -3.816520 -0.058546 1.313028 -0.055155 1.497975 0.767888 -1.316310 -2.375576 -0.629578 -1.695382 -1.109452 -0.810520 -1.521409 -1.384523 -1.266451 1.902852 -0.889198 0.336317 2.030937 -0.048438 1.152522 -0.709090 -0.112181 -1.141898 -0.438233 1.365209 0.063576 -1.883989 2.159055 -0.031938 4.893709 -0.487882 1.341832 -0.997650 0.518921 -0.117197 -1.434031 -0.461542 2.635887 1.586921 0.526869 -0.233669 -0.088230 -0.581783 1.378798 -PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/word-wrap.cpp__main = -0.020994 0.313998 1.282410 0.045342 -0.778300 -1.654721 -0.634629 -2.344976 0.769513 0.451201 1.270668 -0.130740 0.787946 -0.110285 0.041291 0.495678 0.529002 -0.645384 0.431599 -0.710129 -0.804319 1.529073 0.079416 0.391745 0.225238 -1.608826 1.045300 0.327324 0.620245 1.072179 0.390874 -0.100425 -0.426329 0.578222 0.046414 0.662676 0.296343 0.492716 -0.523502 0.602034 0.063633 -0.265102 0.978130 0.110805 1.105419 0.729926 0.346707 0.526415 -0.409689 -0.599275 -0.391650 0.568536 -0.855392 0.320041 -0.386495 -0.303344 0.109531 -0.433496 -0.273737 -0.063713 -0.380647 -0.617050 -0.794734 0.392808 -0.940995 0.415404 -0.833241 -0.583194 -0.167535 -0.104206 0.828133 0.319693 -0.109071 0.460969 -1.607896 0.078857 0.209601 0.354944 0.664619 -0.457910 -0.282038 0.023325 -1.064552 -1.057179 0.957604 1.031496 0.416546 -0.007899 -0.646014 -0.099418 -0.376359 -0.057553 0.659129 0.798673 -0.529723 -0.053022 -0.285604 -0.397295 -0.915883 -1.627015 0.398470 -0.511125 0.632725 -0.012553 -0.127717 -0.388242 -0.290685 0.142232 -0.612816 -1.004047 0.200481 -0.617919 0.373396 1.487889 -0.363062 -0.219310 -0.836075 -0.517949 0.131652 0.821679 0.613054 0.084910 1.197952 1.082929 0.353682 -0.847413 -0.930167 0.348598 0.629181 0.436734 0.573289 -1.032893 -0.737028 0.295037 -0.689479 -1.519698 -0.552254 0.268082 0.743525 -0.644660 -0.122153 0.541143 -0.668691 0.576261 1.027589 0.214242 0.255062 -0.060600 -0.924826 0.890471 1.619049 -0.283285 0.792742 -0.838695 -0.407955 1.127733 -0.632905 0.321754 0.464988 -0.216921 -0.810483 -0.326182 0.160668 0.769870 0.239535 0.574381 0.230955 0.556646 -0.541532 -0.884020 -1.410064 0.115694 1.586075 0.169698 1.254729 -1.158632 -0.218636 0.087572 1.160412 0.433425 -0.638494 0.439561 -0.619493 0.567607 -1.491190 -1.179170 1.679470 1.482076 0.942219 -0.003591 0.467336 0.954655 -1.153642 -0.621749 -0.551121 0.728231 -0.163245 -1.606767 -0.601430 0.189550 -1.073514 -0.427932 -0.298171 0.686255 0.604523 0.130950 0.477941 -0.330818 -0.555143 -0.772564 0.738259 -0.489925 -0.438143 0.180130 -0.075110 -0.087904 0.335841 -0.286970 0.362426 0.377853 -0.629172 0.423642 0.742660 0.395851 0.021708 1.577762 1.204181 -0.474435 0.485028 -0.168360 -0.289461 1.056285 -0.230438 0.547909 0.168366 0.538882 0.076145 0.221416 0.916294 -0.448264 -0.886766 -0.955940 -0.076250 0.464512 0.631449 0.130518 -1.026793 -1.766841 -0.032848 0.169392 1.702501 0.082447 1.594790 -0.203421 0.615835 -1.456991 0.241558 0.239409 -0.115266 0.657894 0.245246 -0.558057 -0.269175 -0.349953 -1.193024 -1.069257 -0.280227 -0.556043 -0.719650 -0.445085 0.419778 -0.491055 -0.195731 0.555466 -0.045045 0.648814 -0.090339 -0.091717 -0.925344 0.216653 1.195562 -0.210003 -0.726586 0.866592 0.186537 2.296354 -0.020970 0.667305 -0.088060 0.373098 -0.089277 -0.902186 -0.294882 1.281523 0.840906 0.113459 -0.000812 -0.117721 0.432757 0.538193 -PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = -0.295298 -0.052866 4.309541 2.163830 -1.495972 -3.318674 -1.563213 -5.711383 3.505541 0.607025 2.880249 0.753602 1.450214 -1.597622 0.060019 0.648657 0.448810 -1.653277 0.462174 -1.060347 0.463354 5.263610 1.271168 -2.133465 -0.027621 -5.883018 1.978684 1.410420 3.140286 2.827571 0.324598 -0.720888 -0.436430 1.940385 -1.126401 0.794131 0.683464 0.584684 -2.343555 -0.393577 0.488966 1.618591 2.164154 -0.416193 3.615668 -0.490145 2.599189 0.563956 -0.656516 -0.708368 -2.353797 4.174595 -2.262856 1.391962 -0.159342 0.525746 -0.355586 -2.146706 -1.362309 -2.125754 -0.501027 0.893438 -1.885747 0.141598 -2.322407 1.155393 -0.459162 -0.692187 0.591479 0.073517 2.889207 1.387359 1.101479 -0.811109 -4.446367 0.840827 -0.693858 1.628374 1.751286 -0.464979 -0.605686 0.093256 -1.140112 -1.939544 2.085559 2.317678 -0.251001 -0.188143 -0.134929 -0.406306 -1.398335 -0.864342 -0.071607 1.746122 -2.711984 0.811274 -0.797581 -0.090126 -0.714324 -1.277576 0.231095 -2.208667 1.047589 0.927779 0.751880 0.124764 0.677105 0.362535 -1.585197 -2.506016 0.763619 -0.129037 0.345650 3.899719 -1.437956 -0.055453 -0.445346 -0.048300 -1.217747 2.675531 0.323870 1.678984 2.703829 3.470093 1.066978 -2.252394 -1.202005 2.232984 2.703414 2.328349 1.401939 -3.134679 -1.406535 -0.049056 0.594540 -4.605052 -0.139069 1.791245 2.306962 0.163085 -2.126835 0.332514 -0.727944 3.789828 2.252937 0.003661 0.855431 0.391410 -2.537616 3.203232 6.339684 -0.555426 1.844183 -2.423711 -0.820778 3.179859 -3.074634 2.036268 0.220455 0.593596 0.164818 -2.077760 -0.126134 2.477767 0.700475 1.674178 0.701501 1.213162 -0.549770 -4.687458 -4.059467 -0.839754 2.567238 -0.168104 4.769240 -2.233627 -2.038929 -0.729940 2.824477 0.033825 -0.853562 1.148954 -2.846669 1.914380 -4.398872 -3.836032 5.547203 5.422773 1.458744 0.436613 3.279290 3.051925 -2.217006 -1.304653 -0.814545 1.468911 1.161298 -2.888367 -0.340210 -0.082075 -3.020303 -2.667441 0.321733 0.769017 0.854913 0.441216 0.241214 0.700443 -2.709800 -1.925320 2.274332 -2.611261 -1.269045 -0.016886 0.465534 -0.287849 1.566969 -1.572922 0.566407 2.193772 -1.480568 0.664635 1.579833 1.426474 0.601539 2.357061 3.761240 0.282469 3.901015 1.147651 -1.291746 4.957683 -0.800274 0.273648 0.670653 0.371745 0.061864 1.263012 0.334992 -1.598099 -1.147535 -3.117661 1.493791 0.189370 2.314059 -1.487243 -3.292875 -2.598147 -1.458216 1.846020 1.893682 0.137378 5.443518 -1.628232 0.722071 -6.674720 -0.000134 2.411695 0.456322 2.189570 1.363739 -1.500840 -3.755880 -1.036748 -1.138937 -1.174488 -1.737179 -3.510015 -1.805405 -2.966509 3.414433 -2.514628 0.897893 3.222068 0.087229 2.392376 -1.899738 -0.019125 -2.202518 0.000803 0.377107 0.864219 -2.681722 2.696270 -1.026803 6.805383 -2.128206 1.982504 -2.077448 2.186323 -1.465088 -2.188830 -0.045084 3.986859 2.136806 0.316198 -0.227437 -0.743072 -1.363633 1.889065 -PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = -6.746409 4.002953 34.585730 20.697992 -13.679974 -21.835661 -11.073961 -27.980054 14.796307 0.147837 20.050149 3.354351 3.947727 -3.969336 4.946440 -2.266371 -0.027510 -8.387764 2.966940 -6.767139 0.477485 22.158717 19.320501 -25.066232 0.521652 -32.794079 17.749396 14.770680 16.075819 18.089645 -0.847803 -5.526924 -3.383988 18.497545 -10.070147 -1.624463 0.673269 4.053473 -9.705168 2.698499 7.543904 18.982481 11.601634 -2.425341 20.011195 7.809710 20.127674 4.358975 -13.256638 -2.618705 -15.161621 30.386177 -20.485302 9.867623 1.730250 11.391520 -1.709038 -20.740463 -9.680851 -26.390098 1.010751 9.702259 -13.724473 1.637284 -19.503935 5.703561 -4.405596 -7.070949 10.735572 8.406703 19.808491 7.424747 4.079948 -6.885460 -15.972611 8.175939 -4.760512 16.341959 12.703183 -12.377223 -6.034442 7.873201 -3.101465 -12.404157 4.555952 1.433469 2.410574 -7.040424 9.327517 -3.580092 -4.930448 -5.310371 -9.041105 14.169611 -14.345216 11.823704 -7.138248 -0.225112 -10.184181 -2.376303 -1.983627 -18.014328 8.847726 14.912442 -1.302643 -2.795921 -5.211449 3.408373 -10.002231 -20.707252 -0.379947 -0.607557 5.079405 19.800610 -12.865793 3.506328 4.251936 0.286561 -3.275985 21.410098 2.822069 10.495886 17.962766 27.432836 0.953011 -13.088455 -4.644237 3.702512 16.725393 21.656072 15.599669 -21.864913 -12.797094 -5.660331 6.935581 -28.622398 10.829553 10.859014 11.745319 9.777610 -24.688450 3.303933 -8.442090 26.028442 12.892792 11.533433 5.612148 -1.794912 -14.191377 23.285828 42.426379 -8.079561 14.016493 -8.345632 -11.687748 25.226881 -21.577614 14.744373 6.830526 3.702463 7.576610 -16.187258 -9.335598 19.549447 12.104025 12.719419 19.275907 3.188929 5.271274 -34.024002 -21.081423 0.386949 13.419372 -5.651179 32.160100 -14.370830 -11.516685 -6.001256 20.592231 -2.628481 -5.992487 -1.782901 -9.914403 10.883754 -29.139536 -25.180807 30.255371 31.841355 0.976241 2.060201 22.493075 21.573613 -9.539337 -8.302811 -8.703201 11.203861 -0.023742 -1.141213 1.259355 0.016930 -19.936390 -10.476655 4.359381 5.991666 9.490324 -7.281743 -18.233305 12.025415 -26.779333 -12.505838 5.369251 -21.162125 -8.776565 1.514362 -0.102632 2.212104 5.876192 -9.687415 -3.061473 12.006222 -14.232028 -0.545627 10.373729 17.769097 9.303535 20.635795 15.186195 7.236656 21.883689 15.671044 -9.072964 41.874302 -3.022911 2.275740 6.744205 10.482910 -1.252974 9.218089 1.894139 -9.827878 -10.587300 -23.599516 14.426697 0.249475 15.483521 -19.320439 -16.061077 -16.397075 -12.098892 21.322434 11.139333 -3.093820 38.496936 -1.372895 1.628689 -40.361548 -3.526445 15.516147 -0.052162 16.750143 13.306582 -12.810751 -31.166529 -9.899069 -2.293409 6.677406 -9.945519 -17.385536 -12.108431 -9.969985 16.624964 -11.596293 9.557105 22.098455 -0.598150 9.523205 -2.523277 -1.841070 -5.530888 -8.082424 5.952928 9.715873 -23.044202 25.382469 -7.783550 46.617769 -14.395560 15.266922 -18.426349 3.580782 -1.394103 -1.539481 -1.029113 28.380118 14.282034 5.995319 1.179880 1.223659 -13.131072 13.144386 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.399956 0.234651 0.568277 -0.012433 -0.183878 -0.683078 -0.164489 -1.365448 0.487731 0.140506 0.457403 -0.180256 0.343899 -0.134493 -0.063895 0.473510 0.138159 -0.063110 0.261737 -0.169021 -0.252098 0.847392 -0.318555 0.356919 0.112629 -0.776638 0.240425 0.166129 0.653930 0.250167 0.165841 -0.173408 -0.090688 0.115997 -0.061479 0.197012 0.138894 0.175909 -0.626982 0.184103 -0.314900 -0.163602 0.298977 -0.089195 0.394248 0.004413 0.309808 0.226613 0.136960 -0.060129 -0.339620 0.632111 -0.101489 0.194296 -0.134034 -0.415352 -0.127509 -0.019350 -0.122533 0.457640 -0.250135 -0.167461 -0.316576 0.120305 -0.423693 0.128311 -0.331174 -0.226065 -0.024365 0.096898 0.367261 0.194151 0.053651 0.099069 -1.064783 0.065884 0.088454 0.175762 0.206162 -0.056327 0.345151 0.031416 -0.449575 -0.412586 0.661314 0.785311 0.133401 -0.099742 -0.450110 -0.109929 -0.248919 -0.102487 0.375153 0.256194 -0.358830 0.070512 -0.541714 -0.075896 -0.282987 -0.934102 0.127157 -0.242531 0.284716 -0.339762 0.274728 0.080566 0.400972 0.206799 0.018159 -0.482259 0.065049 -0.070985 0.151020 0.946255 -0.009057 -0.197843 -0.336825 -0.140847 -0.408752 0.183599 0.304214 0.112592 0.481485 0.370016 0.355092 -0.306968 -0.482677 0.410112 0.155463 0.286184 0.136323 -0.486754 -0.197562 0.105435 -0.139653 -0.854039 -0.302634 0.151375 0.320357 -0.470290 0.231364 -0.029590 -0.169050 0.287918 0.311919 -0.198680 0.188893 0.088496 -0.232143 0.341221 0.771763 -0.081129 0.204836 -0.524167 0.017082 0.109767 -0.123100 0.143381 0.012416 0.064901 -0.167658 -0.233538 0.096283 0.314500 0.000802 0.103154 -0.020067 0.277236 -0.571988 -0.437360 -0.592819 0.029873 0.522912 -0.195286 0.467945 -0.348432 -0.378901 0.044631 0.473351 0.111811 -0.096788 0.370583 -0.613442 0.291669 -0.319226 -0.525706 0.660641 0.679852 0.395852 -0.167267 0.254355 0.440521 -0.868765 -0.411106 -0.230515 0.221589 0.088247 -1.260844 -0.503800 0.014794 -0.491058 -0.128134 -0.038561 0.200686 0.162859 0.543712 0.552517 -0.219288 -0.311645 -0.303734 0.651319 -0.173702 0.013131 0.033307 0.044483 -0.133233 0.390641 -0.419785 0.197389 0.380308 -0.264967 0.263946 0.270918 0.017484 -0.216008 0.696224 0.572169 0.014962 0.649790 -0.084392 -0.303891 0.391271 -0.028679 0.128886 -0.035127 -0.082481 -0.227306 0.201362 0.271207 -0.251014 -0.599301 -0.482421 -0.217647 0.074945 0.212186 0.563254 -0.465967 -0.574975 -0.172184 -0.007617 0.594181 0.271394 0.606879 -0.327067 0.337021 -0.720298 0.130493 0.032313 -0.047451 0.425048 0.014145 -0.218050 -0.013930 -0.075645 -0.487003 -0.937140 -0.236717 -0.581655 -0.342381 -0.521739 0.374080 -0.228945 -0.092182 0.265547 0.112814 0.384741 -0.460784 -0.014599 -0.455048 0.283723 0.601493 -0.153282 -0.420109 0.111826 0.047297 1.292223 -0.049954 0.199181 -0.166015 0.014135 -0.115684 -0.503738 -0.082962 0.521102 0.360128 0.113374 -0.205398 -0.143391 0.001341 0.208494 -PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = -1.083803 1.006618 7.468073 3.756656 -2.802166 -5.554489 -2.504073 -7.190370 3.490892 0.598767 4.944447 0.640454 1.818022 -0.171876 1.026946 0.430284 0.987740 -2.656666 1.291850 -1.788550 -0.720449 5.904165 2.897363 -4.020571 -0.092225 -7.623406 4.583274 3.044527 3.156828 4.570714 0.783420 -0.908315 -0.364524 3.818273 -1.927327 0.149529 0.692401 1.505917 -2.052864 0.545126 1.404002 2.814491 3.546017 0.241054 4.365420 1.826511 4.439537 1.176500 -2.142461 -0.690187 -4.572665 6.339332 -4.746222 1.786429 -0.999254 1.672862 0.759206 -4.200227 -2.121471 -4.961506 -0.565263 1.626925 -3.524418 0.290153 -4.063917 1.572252 -1.387628 -1.700039 1.307226 2.314815 4.620613 2.005600 1.345513 -0.802762 -5.519331 1.660796 -1.222525 3.098400 3.159284 -2.842151 -1.889808 1.489512 -1.826594 -3.443214 2.691206 1.392629 0.734499 -1.132392 1.197253 -0.366245 -2.489119 -0.703099 -1.338213 3.557133 -2.427950 2.724095 -0.877422 -0.253980 -2.578039 -1.550259 -0.074071 -4.091162 1.780642 3.130744 0.322643 -0.857401 -2.022925 0.501359 -3.160698 -4.638479 0.676252 -1.444703 -0.008385 4.246899 -2.870321 0.377598 0.562428 -0.198615 0.155127 4.750276 0.812738 2.215363 4.020109 5.803339 0.301369 -3.226006 -1.339631 1.174186 4.001160 4.268205 3.204733 -4.794826 -3.051707 -0.911777 0.570199 -6.710710 1.922961 2.987218 2.656510 0.812148 -5.171459 1.448302 -2.214765 5.437937 4.079603 3.107402 1.478227 0.108035 -3.430662 4.895092 9.452484 -1.854387 3.885582 -2.657299 -1.672387 5.686167 -4.801300 3.247173 1.276277 0.584947 0.619611 -3.410924 -1.901799 4.467256 2.918813 2.875723 4.123731 1.040584 0.512601 -6.986696 -5.214910 -0.255931 4.755235 -0.853701 7.641965 -3.956383 -2.568942 -0.516524 4.104803 -0.498172 -1.810399 0.283724 -2.051728 2.674030 -8.138382 -5.979546 7.622099 5.897657 0.971725 0.299235 4.406857 4.797450 -2.542631 -2.436673 -1.812799 2.994654 -0.013151 -1.790389 -0.031889 0.083770 -4.720925 -2.574812 0.476397 1.601971 2.182162 -1.370256 -2.471250 1.590921 -5.424699 -2.516910 1.822810 -4.969723 -3.228748 0.396391 -0.093363 0.136836 1.143032 -1.315989 0.175519 3.163177 -3.438115 -0.390572 2.575762 3.486106 1.768971 5.370573 5.074769 0.911060 4.291889 2.874676 -1.760728 8.310369 -1.010618 0.379452 1.394472 2.429323 0.076831 1.831550 1.655222 -2.197896 -3.253006 -5.575886 3.249690 0.537160 3.654027 -2.874358 -3.315646 -4.335995 -2.153968 4.302673 4.576292 -0.950702 8.762248 -0.375109 0.938339 -8.682334 -0.257066 3.286786 0.146921 3.109503 2.971536 -2.858296 -5.086935 -2.210962 -1.417640 0.310074 -1.820793 -4.062659 -3.152408 -3.038609 2.628245 -3.560523 1.594457 4.830722 -0.709356 2.489939 -0.764451 -0.628363 -1.957819 -0.653387 2.469428 1.775870 -4.667588 5.993616 -1.979368 11.338888 -3.021502 3.466004 -3.626957 1.658987 -0.691925 -0.654199 -0.362650 6.820817 3.146131 0.944540 0.780408 0.002880 -1.586822 3.289358 -PE-benchmarks/binary-insertion-sort.cpp__main = -0.066977 0.809608 3.182626 1.256388 -1.751904 -2.729261 -1.325031 -3.977769 1.621371 0.184655 2.097445 -0.056844 0.736684 -0.341003 0.061054 0.194845 0.631651 -0.843962 0.299235 -1.132478 -0.979673 2.520117 0.659264 -1.144877 0.395843 -3.492701 1.676869 1.166530 1.528359 1.673430 0.300911 -0.434922 -0.857433 1.528914 -0.555758 0.254416 0.734346 0.429460 -1.522480 0.535594 0.467554 0.878623 1.857025 -0.149496 1.961549 0.924236 1.064929 0.907092 -1.238859 -0.508360 -1.012522 2.362591 -1.400575 1.044288 0.212066 0.360530 0.057245 -1.751809 -0.661539 -0.832359 -0.496043 -0.117081 -1.110725 0.329447 -1.771597 0.557893 -0.684840 -1.087061 0.775625 0.028299 1.769780 0.532935 0.153407 0.026157 -2.277623 0.570705 0.175742 1.429442 1.255396 -0.717025 0.028696 0.413910 -1.288101 -1.569974 0.925919 1.229130 0.614298 -0.306285 -0.294263 -0.566515 -0.187448 -0.618358 0.351529 1.349739 -1.373631 0.364485 -1.241826 -0.570490 -1.667747 -2.023781 0.225377 -1.171716 1.174476 0.496530 -0.561916 -0.241735 0.089627 0.362090 -0.728348 -1.841773 0.295809 -0.517295 0.765029 2.930161 -0.812681 -0.463910 -0.610429 -0.727825 -0.618558 1.786202 0.509120 0.542868 1.980869 2.565989 0.595138 -1.490938 -1.254087 0.420239 1.300228 1.558675 1.582730 -2.221570 -1.249827 0.083220 -0.292827 -3.210289 -0.016943 0.385783 1.648518 -0.017618 -1.247323 0.394180 -1.192976 2.018973 1.083785 0.634439 0.542502 -0.310443 -1.686859 2.118859 3.570997 -0.634223 1.540337 -1.453310 -0.956667 1.821128 -1.388226 1.131189 0.562762 -0.214824 -0.223671 -1.074891 -0.180118 1.745471 0.602673 0.822161 0.971829 0.661164 -0.754239 -2.819836 -2.688620 0.325990 2.023120 -0.312097 2.861386 -1.926183 -1.241788 -0.514421 2.612100 -0.101394 -0.817801 0.652082 -1.407465 1.206765 -2.218113 -2.500321 3.300825 3.554644 0.690993 0.007915 1.842596 1.600202 -1.960873 -1.271985 -1.023256 0.985700 0.282662 -1.952245 -0.721119 0.153291 -1.849277 -0.838868 0.159940 1.019450 1.280859 -0.116151 -0.118571 0.288505 -1.972007 -1.698295 1.326141 -1.527964 -0.530695 0.631330 -0.034803 -0.082999 1.069436 -0.840587 -0.324508 0.871108 -1.219140 0.566576 1.082112 1.432190 0.240101 2.511722 1.881546 0.096175 2.320331 0.800475 -0.989548 3.441839 -0.743494 0.787943 0.488576 0.900440 -0.306699 0.826984 0.989146 -0.994747 -1.288671 -2.146135 0.506639 -0.008417 1.312819 -1.192456 -2.080708 -2.627734 -0.812160 1.043388 1.710282 -0.030327 3.513687 -0.396232 0.470557 -3.821829 -0.052936 1.286170 -0.025283 1.548070 0.876551 -1.348361 -2.451984 -0.636675 -1.608260 -0.926814 -0.830352 -1.659514 -1.333160 -1.126273 1.764937 -0.810114 0.413388 2.140262 -0.062876 1.104845 -0.623190 -0.182525 -1.125417 -0.562508 1.491253 0.051065 -1.818217 2.145470 -0.090502 4.824105 -0.484297 1.357956 -1.040603 0.270781 0.090216 -1.309471 -0.469575 2.665116 1.441751 0.539769 -0.181837 -0.111685 -0.597475 1.329913 -PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = -1.402409 0.573244 6.570772 4.169319 -2.888469 -5.252887 -2.641978 -6.191782 3.621687 0.171317 4.397556 0.707363 1.477639 -1.176625 0.300777 -1.095407 0.629846 -2.118312 0.105305 -1.881750 -1.156933 5.614558 3.013599 -4.738106 0.376667 -7.531246 4.480960 2.685938 2.551062 4.871123 0.043026 -0.590468 -0.838614 3.585398 -1.849519 0.175524 0.491410 0.823171 -1.564771 0.007979 2.629061 2.889641 3.899923 0.274218 3.995292 1.955460 2.721256 0.935931 -2.567365 -1.159504 -2.905176 4.379470 -3.986887 2.030173 -0.568168 2.330155 1.165969 -4.271612 -1.568628 -4.816617 -0.123727 1.136763 -2.837156 0.100000 -3.870437 1.264522 -0.890518 -1.804467 1.748317 -0.172216 3.991036 1.437985 0.495798 -1.457765 -3.946224 1.317224 -0.574738 2.781061 2.829298 -1.608799 -1.860666 0.910332 -2.124501 -2.773680 1.671234 0.568100 0.776417 -0.100671 1.132330 -1.484628 -0.776902 -0.756416 -0.505788 2.906856 -2.170574 1.464766 -0.835994 -0.599331 -2.107234 -1.385393 0.277705 -3.094330 1.682399 3.186484 -1.305332 -0.500224 -0.312178 0.391340 -2.231702 -4.049686 0.684289 -1.139146 0.865783 4.414790 -2.287521 -0.476496 -0.133651 -0.761209 -0.131861 4.697670 0.321425 1.591720 3.906180 5.285648 0.523611 -3.183996 -1.267058 1.027320 3.431063 3.398205 2.988707 -4.383912 -2.607901 -0.472646 0.281328 -6.440376 1.019790 1.640666 3.314755 1.270782 -5.120328 2.436098 -2.152816 4.528384 3.058213 2.038641 1.278733 -0.298975 -3.884895 4.710097 8.427139 -1.436916 3.146549 -2.932037 -3.040234 5.648504 -3.829494 2.546726 0.842863 -0.067438 0.795768 -2.726922 -0.227143 4.068585 1.304976 2.370069 3.172958 1.071676 0.296384 -6.632039 -5.394676 0.010590 4.048876 0.260666 7.402430 -3.945691 -1.680070 -1.247315 4.755786 -0.738438 -1.373499 0.312506 -2.150597 2.422418 -7.437068 -5.642268 7.395865 6.511025 0.993126 0.903490 4.069190 3.798771 -0.868802 -1.458108 -2.122261 2.271813 1.372054 -0.798416 0.362216 -0.336934 -3.848122 -2.771817 0.786507 1.469561 2.200913 -2.668032 -2.539871 0.412840 -4.629517 -3.586876 1.813531 -4.725157 -1.622765 0.794214 -0.300717 -0.327403 1.474411 -0.719394 -0.490743 1.717140 -2.186565 0.260541 2.008177 3.268811 1.500061 4.132914 4.493060 -0.175310 3.647856 2.647157 -1.517638 8.841189 -1.886166 0.762701 1.420994 3.057339 0.806547 1.994434 1.382158 -1.991917 -1.252515 -4.824734 2.911173 0.609996 2.885549 -4.820098 -3.354169 -5.067688 -2.203117 2.899955 3.633228 -0.677029 8.277810 -0.667965 0.310816 -8.389023 -0.518552 3.850452 0.331009 2.913010 2.437309 -2.675585 -6.262821 -1.807251 -1.809643 1.210997 -2.111474 -3.567608 -2.782449 -2.131440 3.023530 -2.746470 2.055411 4.949475 -0.493170 1.786901 -1.244821 -0.294202 -2.079422 -1.757518 0.929032 1.448375 -3.804533 5.138818 -1.174070 8.600500 -2.250316 3.537999 -3.243957 2.360508 -1.060836 -2.026212 -0.679872 5.792015 2.787257 0.548311 0.844005 0.171080 -1.585021 3.135102 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.174093 0.308694 1.581302 0.122050 -0.816285 -1.764096 -0.686955 -3.090723 1.106834 0.497594 1.460948 -0.179768 0.909869 -0.245076 0.044686 0.815425 0.632221 -0.906682 0.719440 -0.718798 -0.625298 2.145947 -0.162856 0.508149 0.122235 -2.292599 1.199528 0.374876 1.072512 1.095070 0.553902 -0.237237 -0.356541 0.611749 0.073236 0.721033 0.501388 0.510366 -0.909308 0.564136 -0.186234 -0.203154 1.038948 -0.101991 1.332931 0.392127 0.843189 0.624627 -0.201879 -0.493283 -0.871455 1.161521 -0.951508 0.323992 -0.328496 -0.606917 0.025881 -0.559330 -0.511150 0.246571 -0.622549 -0.557502 -0.912234 0.456997 -1.102984 0.618356 -0.902315 -0.452935 -0.086214 0.340265 1.090720 0.628125 0.254401 0.511046 -2.247823 0.272107 0.059399 0.492749 0.700800 -0.612364 -0.026608 0.140019 -1.167506 -1.208588 1.333544 1.597234 0.325083 -0.321804 -0.659643 0.066853 -0.754534 -0.219814 0.551187 0.895822 -0.779453 0.043868 -0.614256 -0.305530 -0.970288 -1.881408 0.303112 -0.783006 0.709676 0.003192 0.139593 -0.276424 -0.052331 0.154606 -0.723398 -1.235959 0.223907 -0.577878 0.446171 1.952320 -0.444882 -0.188653 -0.960938 -0.400868 -0.141808 0.869293 0.606869 0.404206 1.501051 1.417628 0.449074 -0.952682 -1.122199 0.725000 0.841925 0.645963 0.666602 -1.430781 -0.824710 0.191958 -0.441337 -1.833921 -0.570792 0.470106 0.877045 -0.838729 -0.103940 0.334028 -0.583709 1.095361 1.259837 0.038546 0.292518 0.125961 -0.968321 1.275786 2.180176 -0.268872 0.870318 -1.320024 -0.081667 1.178592 -0.847187 0.444670 0.444852 0.110458 -0.899566 -0.619618 0.048756 0.869219 0.350583 0.662413 0.312804 0.711441 -0.588448 -1.301259 -1.613904 0.100527 1.732256 -0.130532 1.610546 -1.295891 -0.569914 0.150479 1.162358 0.565016 -0.691472 0.676943 -1.056084 0.714779 -1.603833 -1.524346 2.066308 1.738534 0.954185 -0.044273 0.734001 1.334103 -1.800089 -0.794600 -0.568014 0.972126 -0.136949 -2.316959 -0.740329 0.271274 -1.345249 -0.734024 -0.271203 0.756574 0.826473 0.494740 0.639247 -0.233412 -0.887384 -0.827382 1.286632 -0.626758 -0.705666 0.119407 0.006651 -0.022389 0.611001 -0.503829 0.616953 0.764789 -0.758921 0.410193 0.959022 0.434841 -0.112075 1.733517 1.623401 -0.192291 1.009793 -0.061740 -0.412707 1.150816 -0.036834 0.445921 0.159925 0.139257 -0.119153 0.326270 0.918518 -0.584704 -1.324491 -1.262460 0.099238 0.250808 0.862020 0.411307 -1.206528 -1.811070 -0.254703 0.462017 1.827695 0.270745 1.939271 -0.441739 0.634709 -1.981250 0.227809 0.319669 0.030933 0.879953 0.302808 -0.604153 -0.116755 -0.385386 -1.219752 -1.547593 -0.496632 -1.053207 -0.996101 -0.977756 0.838706 -0.690477 -0.260756 0.859852 0.107823 0.930954 -0.313977 -0.144058 -1.179128 0.446057 1.277019 -0.134797 -0.959048 1.088988 -0.062271 3.113294 -0.328384 0.579560 -0.318809 0.432654 -0.206700 -1.056913 -0.138247 1.593782 0.911678 0.100111 -0.118912 -0.373043 0.279194 0.757030 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = -0.301279 0.286348 3.418333 1.320502 -0.719446 -2.694937 -1.269773 -3.690366 2.132428 0.403307 2.077549 0.452779 0.952787 -0.339544 0.042840 0.221172 0.128167 -1.377444 0.524909 -0.857025 -0.318595 3.828223 1.432680 -1.494755 -0.056643 -4.689163 2.416030 1.016426 2.051828 2.954894 0.070384 -0.442539 0.192200 1.765262 -0.891804 0.417066 0.084384 0.619152 -1.007160 0.157237 0.952945 1.378344 1.790698 0.279643 2.288528 0.790835 1.571868 0.302727 -0.402979 -0.507975 -2.022383 2.477309 -2.310366 0.826255 -0.967554 0.954005 0.303361 -1.802177 -0.895428 -2.064991 -0.446042 0.877829 -1.757866 0.191022 -2.263366 0.871369 -1.144251 -0.809732 0.085688 0.253589 2.199544 1.377567 0.559952 -0.672083 -3.122807 0.902417 -0.572634 1.437662 1.508262 -1.151406 -1.364910 0.623173 -1.175301 -1.761282 1.590114 1.249837 0.101616 -0.167571 0.564757 -0.674591 -1.418466 -0.186852 -0.296501 1.730458 -1.064268 1.131243 -0.361527 -0.037435 -0.561586 -0.963579 0.001876 -1.897949 0.737048 1.314354 0.340429 -0.456534 -0.184092 0.251243 -1.116267 -2.190001 0.510315 -0.415231 0.147731 2.471319 -1.227569 0.219961 -0.141592 -0.064443 -0.171990 2.648136 0.207170 0.981633 2.037610 2.667361 0.317455 -1.625144 -0.612094 1.160172 1.881837 1.598626 1.427310 -2.234025 -1.462086 -0.429150 0.516481 -3.256450 0.458840 1.593392 1.408444 -0.010077 -2.068851 1.118654 -0.758927 2.362941 2.297138 0.560794 0.877828 -0.045627 -1.963305 2.585514 4.937337 -0.743811 1.553061 -2.242877 -1.426663 3.374925 -2.542617 1.593997 0.216077 0.390239 0.129672 -1.674753 0.269310 2.249953 0.625396 1.552266 1.543584 0.546467 0.449763 -3.180907 -2.585955 -0.304967 2.160444 -0.108599 3.970801 -1.804045 -0.761754 -0.347126 2.167561 0.247830 -0.471690 0.352571 -1.494857 1.272505 -4.622641 -3.090845 3.999837 3.437840 0.804654 0.331831 1.806165 2.894568 -0.495613 -0.743705 -0.806917 1.500219 0.445005 -1.228003 -0.146939 -0.096446 -1.989584 -1.642953 0.263836 0.673501 1.009621 -0.742136 -0.855691 -0.161031 -2.479539 -1.838475 1.396015 -2.645412 -1.231621 0.144564 0.020318 -0.376332 0.741946 -0.380046 0.505602 1.771529 -1.115978 0.332499 1.294904 1.310529 0.731666 1.841150 2.947417 -0.072089 1.751362 1.361198 -0.517951 4.037998 -0.711613 0.134042 0.683808 1.079884 0.239029 1.172095 0.567578 -1.009803 -1.103832 -2.601316 1.871594 0.525767 1.425808 -1.202870 -1.935326 -2.407977 -1.064177 1.601317 2.349882 -0.009339 4.409039 -0.529554 0.365413 -4.284889 0.004849 1.793482 0.382935 1.559538 1.351934 -1.086274 -2.260703 -1.094338 -0.740023 0.045982 -1.268413 -2.509030 -1.467898 -1.522599 1.460217 -2.107128 1.093342 2.112763 0.044812 1.314371 -0.835415 -0.176792 -1.955354 -0.222399 0.808316 0.686607 -1.810949 2.181652 -0.939136 4.320776 -1.772635 1.790023 -1.733728 1.759857 -0.881318 -1.179407 -0.167894 3.300029 1.333572 -0.018597 0.370896 -0.340548 -0.348835 1.336535 -PE-benchmarks/tarjan-algorithm.cpp__main = 7.716225 4.082179 7.766895 -1.570657 -4.965001 -11.243398 -1.925288 -18.476095 6.947040 0.583235 3.194688 0.307372 2.903243 -0.484486 -0.229091 9.939316 4.914418 0.123769 1.136947 -5.492615 -1.066036 9.882912 -4.590992 4.204899 2.705856 -11.436925 -1.561351 4.214304 10.956162 1.319742 4.090501 -2.759764 -3.603080 1.706534 -0.328293 1.343936 3.032150 -1.920409 -15.180465 4.693655 -6.424825 0.891173 6.459765 -0.975813 6.351326 -2.102552 5.918182 6.113070 2.036700 -0.100885 -5.460817 13.367054 2.348735 3.738465 0.612243 -3.258562 -4.866048 -1.871827 -1.161181 11.641801 -5.130016 0.047822 -3.311762 1.551860 -4.904834 0.718137 -5.039523 -3.233469 -0.679638 0.488026 4.232642 0.130817 -1.207482 -0.387261 -15.845980 -0.793434 -0.040517 5.705752 3.147173 -0.175248 5.243458 -0.365660 -4.955640 -4.019773 4.656772 12.076696 -0.242618 -0.979130 -8.331711 -3.937957 -4.256578 -3.122302 5.114634 0.512403 -9.662921 -0.192270 -8.604445 -2.593433 -6.409517 -11.185026 2.393835 0.875907 4.007075 -11.763036 6.673790 1.212360 4.522878 0.535124 0.737601 -2.069674 0.864166 2.412828 1.314447 16.314636 0.612362 -3.448937 -5.922134 -1.790239 -10.052288 3.007866 3.109728 0.384249 5.278514 6.418909 4.217897 -3.152686 -6.050855 3.487367 1.309761 4.636937 5.122521 -3.697643 -3.082730 1.756636 -0.950120 -10.117985 -2.342319 1.720122 5.629014 -3.639225 7.678243 -7.719387 -3.141905 6.207876 0.424585 -4.517496 3.083821 -1.835709 -3.708003 5.358546 11.335797 -0.354723 3.692743 -8.675597 3.831730 -0.798835 -2.025759 2.658021 -0.308651 -2.086772 -4.304779 0.739137 0.119240 2.429647 0.216577 -1.940248 -0.590325 3.699387 -7.688423 -5.167079 -8.629494 -0.113044 2.788644 -3.458850 3.453231 -3.375121 -5.866823 -3.830493 4.546717 1.465642 -1.662740 7.890332 -10.637616 3.306250 0.549814 -3.742871 9.848399 15.131736 4.610493 -3.245759 4.854255 5.058490 -15.055861 -7.283364 0.198044 1.193436 0.846522 -18.992578 -5.825588 1.333171 -5.912950 -1.441206 -0.394652 4.133131 2.864088 10.408021 11.747075 -1.409503 -5.332564 -5.841678 8.271497 -0.314134 1.130738 3.550975 0.682336 -2.139064 5.826559 -5.963570 0.728924 6.396537 -3.233809 4.581231 2.260821 2.411016 -2.595881 5.134219 4.993620 4.121182 16.471442 -0.772504 -6.468519 4.584580 -0.299865 5.093624 -0.765802 -4.779791 -5.771303 1.906667 0.188647 -3.003687 -6.289743 -3.622362 -2.595567 -1.377819 4.435066 8.804066 -9.228387 -6.133900 -1.712991 -0.415198 4.035675 1.801513 5.635770 -6.085838 4.391822 -11.302805 2.401405 0.089383 1.388042 4.520500 0.801584 -4.276465 1.093675 1.378256 -8.384561 -12.239678 -0.944915 -7.837448 -4.662505 -6.276394 8.995985 -3.433751 -2.534452 5.649693 -1.440325 7.564279 -7.263546 -0.239697 -4.267436 1.618868 9.978261 -1.807706 -4.734026 0.147083 0.270916 16.557166 2.343813 2.763479 0.331179 -2.979847 1.547428 -8.827173 -2.826373 6.549159 4.138675 1.295243 -3.659136 -4.628366 1.363363 1.229487 -PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = -1.461471 0.731151 10.409681 5.235548 -6.498843 -8.265175 -3.836834 -13.125394 6.705920 1.435820 7.670634 2.054572 2.735378 -3.285034 0.726799 1.109340 1.547355 -3.361459 0.059402 -3.800487 -2.431198 8.438617 4.381480 -5.119213 1.679568 -11.843413 6.107708 2.919461 5.387938 5.862012 1.233628 -1.154205 -2.704219 5.428501 -0.824385 1.975989 1.224327 1.405615 -4.297218 0.488035 2.956355 1.654239 5.639954 0.751327 8.746982 0.748402 4.750444 1.959854 -4.795101 -1.794348 -4.682695 8.732373 -6.403926 4.113204 -0.091123 2.143908 -0.170762 -5.742381 -2.453857 -6.297168 -1.349741 -1.049559 -3.882078 0.614877 -5.556513 2.573466 -2.056327 -2.804539 1.635783 0.711809 7.188547 2.510165 1.155734 0.369198 -7.756503 1.192582 -0.081921 4.249303 5.475798 -1.907283 -1.633931 -0.246935 -3.471765 -5.323556 4.760993 2.425546 0.726906 -0.707180 0.105986 -1.359872 -1.288501 -2.407849 0.284051 4.732116 -7.439041 1.366625 -1.361367 -1.436216 -3.533912 -5.130958 0.675057 -4.893090 3.251636 3.012267 -1.580294 -0.226457 -0.494068 1.455832 -3.952711 -5.939648 1.260189 -1.124329 1.386515 8.467175 -3.194650 -1.215287 -0.623748 -0.971313 -1.291759 6.061776 1.736594 3.237928 8.188852 9.257083 2.103699 -4.482051 -2.674957 2.762189 5.617610 5.953600 4.256801 -7.143221 -4.352338 1.325206 0.300724 -10.532374 -0.022745 3.168046 6.483534 1.642813 -5.767313 0.539516 -2.699156 7.425981 4.865716 1.987537 1.668353 -0.261280 -6.355278 7.656282 13.749463 -2.043920 4.822812 -3.783639 -2.249489 7.491549 -7.115223 3.502199 1.733791 -0.331717 0.031843 -4.438278 -2.088427 6.255968 2.399071 2.391846 2.282178 3.448749 -2.571462 -10.885445 -9.214990 -1.200128 7.096002 0.174122 10.592584 -6.338657 -3.237696 -2.360720 8.176407 0.188798 -2.895777 1.963692 -5.105584 4.230741 -9.159719 -8.622771 13.119015 12.699602 3.604204 0.780631 6.882879 7.144365 -5.948329 -3.981180 -2.971568 2.584103 2.495807 -5.431661 -2.438836 0.409267 -7.575815 -5.194192 0.915301 2.625591 3.603440 -0.912536 -0.380583 3.008392 -5.991116 -4.438095 3.959901 -6.007313 -3.349168 0.900466 0.454667 0.789401 3.034880 -2.445415 0.029481 2.820798 -4.261490 1.334373 3.801526 5.978009 2.074200 8.179149 7.985370 0.001549 6.688707 2.714315 -3.797634 11.342295 -2.402364 1.813618 2.000063 1.967305 0.432426 2.358510 3.052269 -3.951188 -2.834321 -7.553774 2.529669 0.261822 5.251385 -5.134098 -6.657420 -8.645071 -2.810031 4.375459 4.620768 -0.483899 12.842288 -2.166803 0.465160 -14.221140 -0.611804 5.683310 -0.092907 5.380478 3.454617 -4.182214 -8.995577 -3.179519 -4.001580 -0.853731 -3.188394 -4.175771 -4.313120 -4.311385 7.137061 -4.350601 2.471639 6.899254 -0.051376 5.302667 -2.832634 -0.208818 -4.559999 -0.138664 2.992099 1.741153 -6.632531 8.055063 -0.835101 16.481445 -3.265466 4.189179 -4.585725 2.192408 -1.603653 -3.323670 -1.039249 9.037646 6.016299 2.274174 0.276723 -0.150523 -2.940028 5.447896 -PE-benchmarks/topological-sorting.cpp__main = 1.331016 0.833301 1.525927 -0.278494 -0.909813 -2.213426 -0.408097 -3.502285 1.196963 0.184666 0.795325 -0.085485 0.689077 -0.040656 -0.041685 1.684542 0.894744 0.032717 0.289997 -1.017959 -0.448750 1.774892 -0.877539 0.813007 0.515545 -2.053495 0.058821 0.795194 1.823484 0.434160 0.739864 -0.431995 -0.671428 0.381124 -0.088349 0.290410 0.567777 -0.140120 -2.511171 0.900589 -1.061529 0.053742 1.197643 -0.087442 1.157393 -0.004236 0.908635 1.118417 0.301515 -0.119373 -0.886263 2.145913 0.251962 0.673856 -0.093834 -0.668129 -0.704236 -0.325153 -0.150641 1.892944 -0.818977 -0.150620 -0.714144 0.322883 -1.025193 0.162013 -0.967488 -0.755521 -0.161140 0.068912 0.812251 0.026791 -0.296387 0.029995 -2.889615 -0.155678 0.108478 0.947077 0.671215 -0.185353 0.861090 -0.079012 -1.089667 -0.894567 1.028213 2.172971 0.155893 -0.079598 -1.502400 -0.722166 -0.704155 -0.482763 1.068674 0.288033 -1.486454 -0.028064 -1.525535 -0.477239 -1.238145 -2.272332 0.525948 0.051172 0.803620 -1.919337 1.040603 0.153551 0.757908 0.206088 0.058344 -0.565400 0.170410 0.172314 0.339474 2.927063 0.112996 -0.695314 -1.123309 -0.478336 -1.545862 0.646662 0.674556 0.003009 1.087729 1.200021 0.743983 -0.707363 -1.236536 0.622207 0.226890 0.865568 0.915139 -0.880723 -0.646205 0.357086 -0.450307 -1.979705 -0.474982 0.219628 1.036081 -0.901248 1.196457 -0.966217 -0.715939 0.942261 0.278123 -0.605630 0.546703 -0.304496 -0.756461 0.962247 2.046029 -0.144976 0.739406 -1.533843 0.508760 -0.055007 -0.272169 0.407468 0.045429 -0.464548 -0.826605 0.102115 0.097333 0.577685 0.090032 -0.179911 0.000359 0.715486 -1.527280 -0.945815 -1.607698 0.044518 0.864908 -0.567401 0.809089 -0.806694 -0.991839 -0.554036 1.050162 0.248739 -0.348337 1.340931 -1.796049 0.666741 -0.146410 -0.842947 1.803038 2.564053 0.984933 -0.624588 0.774496 0.941058 -2.618385 -1.313545 -0.095909 0.294338 0.078654 -3.431733 -1.152287 0.219691 -1.182222 -0.202341 -0.104146 0.832125 0.560503 1.738155 1.995290 -0.413824 -0.936875 -1.155958 1.456122 -0.125904 0.213149 0.616117 0.073213 -0.394643 0.976122 -1.064326 0.153099 1.117845 -0.631130 0.860604 0.509452 0.421306 -0.449990 1.298778 0.961492 0.509997 2.646467 -0.179042 -1.106698 0.972891 -0.057033 0.974780 -0.071195 -0.551167 -0.933330 0.363725 0.316616 -0.583561 -1.248885 -0.864711 -0.616696 -0.045770 0.792486 1.593204 -1.556280 -1.404929 -0.273409 -0.150618 1.154175 0.306903 1.199276 -0.949934 0.896919 -1.927586 0.454828 -0.006592 0.073130 0.835468 0.177126 -0.821215 0.137435 0.170711 -1.651484 -2.384149 -0.213961 -1.326788 -0.912857 -1.018716 1.323707 -0.571595 -0.480142 0.982893 -0.200410 1.236022 -1.275985 -0.033346 -0.825583 0.327168 1.966859 -0.418613 -0.968419 0.110595 0.167114 3.179446 0.468685 0.631067 0.035623 -0.485149 0.255313 -1.567119 -0.577997 1.315805 0.825270 0.287071 -0.553729 -0.678075 0.372008 0.330169 -PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -1.092636 0.390322 5.964799 2.364994 -3.179817 -5.697939 -2.506788 -9.590077 4.801251 1.536180 5.094498 1.014169 2.734987 -2.382429 0.383993 1.267020 1.568898 -2.492249 0.604361 -2.254396 -0.400167 6.741392 1.364577 -1.579518 0.177402 -6.924321 2.670125 1.938458 3.621036 3.210100 1.355580 -0.847613 -1.832234 2.793340 -0.852140 2.274104 1.488092 1.416315 -3.115240 -0.550013 0.470450 0.847381 3.608020 -0.258571 6.041824 -0.466599 3.370237 1.260539 -1.948326 -1.738074 -2.293677 5.598940 -3.517091 1.951224 0.599691 -0.143881 -0.200067 -2.725098 -1.288420 -2.519070 -0.972881 -0.628699 -2.980579 0.563765 -2.926156 1.641477 -1.037879 -1.364561 0.192644 -0.654016 3.976431 1.071708 0.772822 0.457711 -6.233434 0.494852 -0.237108 1.667302 3.122077 -0.115303 -0.755122 -0.808406 -2.232570 -3.513157 3.622517 3.501923 0.214817 0.386879 -2.013871 0.249539 -1.487939 -1.534169 1.146000 2.700165 -4.355592 0.287535 -0.073652 -1.137940 -2.386051 -3.423101 1.274163 -2.758350 1.942398 0.608535 0.317688 -0.775453 -0.934555 0.085916 -3.145767 -3.560825 1.305186 -1.253854 1.139843 5.602775 -2.560108 -0.214199 -1.627530 -0.938946 -0.778015 3.463917 1.727746 1.783575 4.090957 5.043592 1.844394 -3.686421 -2.652384 2.675785 3.940048 3.067640 1.647585 -4.486237 -2.225392 1.207509 -0.836706 -6.646630 -1.320797 2.594915 3.640783 0.365700 -2.255393 0.192353 -1.325432 4.469086 3.326398 0.640753 0.772694 0.547744 -3.875332 3.840776 7.413733 -0.833478 3.257561 -2.040472 -0.808115 3.987233 -4.515995 2.464184 1.482536 -0.099501 -1.289078 -2.120885 -0.553780 3.464213 1.388182 2.343587 -0.320501 2.315299 -2.025124 -6.108168 -6.714571 -0.586747 5.171130 0.496977 5.655240 -3.888556 -2.792704 -0.255928 4.802025 0.162641 -2.506952 2.096501 -3.839131 3.106292 -5.220765 -5.080039 8.019745 7.801629 3.006627 0.142614 4.158888 3.902962 -4.841353 -2.298334 -1.552647 2.195768 0.764025 -5.282806 -0.936672 0.277349 -4.778473 -3.256771 -0.313011 1.756849 1.076890 0.943658 2.127412 0.951440 -2.370417 -2.341780 2.840280 -2.112338 -2.005330 -0.222105 0.619598 0.208508 2.093545 -2.203361 0.684039 2.405016 -2.809910 1.182360 2.510317 2.105490 1.082377 5.562195 5.013812 -0.608254 5.202110 0.332580 -1.867486 5.681699 -1.195149 1.380088 0.848025 1.174329 0.517195 1.337913 2.012942 -2.493091 -2.324198 -4.146110 0.287350 0.822856 3.825011 -1.630170 -5.306520 -5.363458 -1.148763 1.957159 3.400357 -0.513593 7.444374 -2.097494 1.614191 -8.879337 0.378475 2.890190 -0.299160 2.828471 1.483193 -2.462985 -4.338180 -1.613310 -3.132914 -3.397525 -1.459214 -3.225346 -2.359006 -4.016395 4.920296 -3.416078 0.280051 3.280053 -0.033910 3.399730 -1.712564 0.182174 -3.030284 0.460489 2.136410 0.195786 -4.013432 4.339329 -0.330464 10.553122 -2.040800 2.763405 -1.904419 2.911497 -1.674751 -3.446374 -0.575440 5.705380 4.188095 0.657672 -0.893943 -0.413297 -1.262980 2.711560 -PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = -1.172255 1.308114 8.481707 4.788550 -5.731954 -7.135165 -3.801734 -10.550876 4.649510 0.706827 5.483053 -0.037510 0.673043 -2.645216 0.313892 0.762961 1.173708 -2.224720 -0.002105 -3.011755 -2.351812 5.632737 2.038858 -4.668882 1.362320 -9.250614 5.425524 3.071249 3.432436 4.162093 1.760278 -1.509197 -2.486656 4.869065 -0.350326 3.558591 2.264895 0.967448 -3.632559 1.229295 1.773563 3.408867 4.820736 -0.197056 7.287927 2.652685 3.612857 2.301061 -5.660226 -0.461330 -3.272661 7.525240 -4.803658 3.457003 0.862285 1.992474 0.142498 -6.131886 -2.134727 -3.658478 -2.087172 -0.100928 -3.516967 0.436135 -5.048142 1.170225 -0.675756 -2.140132 2.534986 1.182333 5.400296 1.625210 0.086683 0.609863 -4.591718 1.366629 0.636746 4.176034 4.424599 -3.166863 0.588377 0.494961 -2.363594 -3.938184 2.831628 1.508966 1.979144 -0.525867 0.683371 -1.795407 -1.107643 -2.513691 0.773909 3.537424 -3.892761 0.204444 -2.640490 -1.434467 -3.993321 -3.989092 0.692568 -3.236614 3.229244 2.480425 -1.589056 -0.244792 0.588695 1.490042 -2.613459 -3.412244 1.046687 -1.423762 3.001649 7.134012 -1.723353 -1.750028 -1.123879 -2.122778 -1.352897 4.819936 1.490583 1.520531 5.848853 7.786916 3.815854 -3.866982 -3.476718 0.640200 3.695078 5.481859 3.835989 -5.888741 -3.169902 -0.031735 0.163506 -8.105551 0.306665 0.306004 4.638635 1.759747 -4.279852 0.106250 -2.575168 6.463885 1.579249 1.859982 1.286068 -0.269584 -5.005453 6.259770 10.021539 -1.151357 3.369066 -3.343525 -1.771433 3.602935 -3.936623 2.631071 2.315578 -1.578253 0.606005 -3.120745 -1.226390 4.581408 2.057897 1.268669 2.041134 2.852281 -2.517945 -8.157464 -6.881533 1.168478 5.153590 -1.177322 8.549187 -5.282755 -3.651584 -2.490784 7.128800 -0.434597 -1.566742 1.216263 -4.196101 3.624099 -5.241411 -6.655243 10.261451 10.220382 2.696517 -0.420536 5.683738 5.044344 -5.861591 -2.902840 -2.726085 1.561306 1.781503 -4.202838 -1.492241 0.647280 -5.240647 -3.668151 0.859881 2.388485 2.947068 -0.680205 -1.766346 1.887628 -5.025723 -3.864197 2.745053 -4.501561 -1.470578 1.501449 0.159389 0.711849 3.253815 -2.892777 -1.038962 2.012272 -3.266982 1.500339 2.893678 5.650301 1.383623 6.049646 5.690061 0.722183 7.829754 3.101767 -3.116798 9.373126 -0.863918 2.220347 2.157210 1.296110 0.610475 1.581930 2.435881 -3.344211 -2.087729 -6.074661 1.634219 0.364534 4.217098 -4.569964 -4.782091 -7.568071 -2.483061 3.360453 2.863445 -0.342937 9.626727 -0.536638 0.366128 -10.792405 -0.945920 5.086587 0.019342 3.841566 2.486946 -4.098676 -8.562923 -2.002533 -4.141813 -1.797934 -2.510503 -2.519513 -3.752480 -3.243046 6.151060 -1.454763 1.866527 7.183050 0.079786 2.491928 -2.524535 0.239429 -2.237052 -2.623399 2.828573 0.887330 -6.022290 6.104435 -0.080033 14.291315 -1.892324 3.261711 -3.755478 0.870637 0.069919 -2.765360 -1.093112 7.068152 4.032448 2.096662 0.381302 0.475114 -3.129970 5.073867 -PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.147644 0.247157 1.438557 0.063553 -0.779121 -1.734226 -0.724799 -2.980275 1.126692 0.517076 1.408232 -0.135144 0.865069 -0.332447 -0.024833 0.773292 0.469327 -0.798745 0.567679 -0.690930 -0.729881 2.111103 -0.029621 0.571850 0.145618 -2.091995 1.008134 0.288971 1.082914 1.081836 0.426520 -0.237904 -0.360212 0.593544 0.061645 0.836408 0.340539 0.520124 -0.833563 0.543334 -0.103172 -0.348166 1.015530 -0.063218 1.376221 0.339366 0.642450 0.516882 -0.257051 -0.555366 -0.657910 1.036740 -0.946082 0.316841 -0.317889 -0.528832 -0.073440 -0.430652 -0.447771 0.221205 -0.588648 -0.641136 -0.894760 0.443599 -1.026106 0.571490 -0.934002 -0.477272 -0.158455 0.046689 1.033412 0.552949 0.108295 0.534949 -2.108499 0.192200 0.154622 0.397483 0.690122 -0.413926 -0.045723 0.043740 -1.098406 -1.159823 1.302805 1.460659 0.301943 -0.171327 -0.749259 0.001334 -0.592576 -0.154841 0.716000 0.848551 -0.851408 -0.032976 -0.525541 -0.355128 -0.889479 -1.886059 0.355187 -0.697219 0.704039 -0.130039 0.082700 -0.292502 0.006223 0.143743 -0.658657 -1.226432 0.176708 -0.503318 0.435710 1.910061 -0.425607 -0.179055 -0.909833 -0.434836 -0.207743 0.799046 0.715430 0.317596 1.407599 1.274950 0.525500 -0.955039 -1.102599 0.695804 0.797475 0.559270 0.553698 -1.240950 -0.767933 0.284654 -0.463931 -1.844255 -0.709044 0.443695 0.832422 -0.741108 0.061777 0.323231 -0.526474 0.897918 1.159407 -0.083654 0.287018 0.051355 -1.006570 1.157884 2.031435 -0.231602 0.825274 -1.137601 -0.278487 1.228718 -0.916382 0.430105 0.422253 0.004444 -0.857146 -0.543259 0.154165 0.832078 0.149070 0.627852 0.075741 0.694680 -0.667750 -1.176291 -1.633934 0.070747 1.701458 0.026405 1.398484 -1.208007 -0.483712 0.185141 1.260597 0.586303 -0.643077 0.674325 -1.035976 0.723370 -1.545722 -1.442709 2.002652 1.847207 1.057360 0.020755 0.690964 1.290227 -1.649475 -0.729666 -0.588148 0.858473 -0.003537 -2.258280 -0.789067 0.187078 -1.231660 -0.668441 -0.302307 0.694330 0.593965 0.492512 0.765366 -0.272996 -0.663218 -0.789136 1.196385 -0.573488 -0.511006 0.079646 0.025165 -0.132836 0.594003 -0.526843 0.583856 0.593956 -0.676291 0.570082 0.890739 0.322029 -0.086323 1.670468 1.576475 -0.403305 0.941702 -0.176080 -0.335627 1.058162 -0.190918 0.498496 0.160698 0.235603 -0.088018 0.317666 0.870722 -0.569679 -1.121803 -1.087724 -0.058705 0.358210 0.770782 0.431134 -1.313667 -1.799727 -0.191751 0.327054 1.658028 0.286971 1.827166 -0.483497 0.679306 -1.919786 0.254672 0.325024 -0.026528 0.948066 0.226468 -0.546345 -0.265350 -0.423069 -1.185641 -1.462292 -0.473467 -0.971384 -0.837563 -0.917183 0.872142 -0.691033 -0.213902 0.644366 0.108027 0.911288 -0.355658 -0.093819 -1.224148 0.444703 1.206633 -0.201661 -0.868225 0.934561 0.071975 2.832162 -0.258132 0.626403 -0.233067 0.511477 -0.252856 -1.123261 -0.159080 1.482269 0.973028 0.094998 -0.226113 -0.292968 0.279245 0.591105 -PE-benchmarks/largest-independent-set-problem.cpp__main = -1.307006 -1.476133 4.121704 2.027589 -2.193438 -6.348367 -2.057028 -9.392017 5.216912 1.758341 5.862979 0.998123 3.928722 -4.006045 0.986661 3.124662 2.923139 -2.777692 0.668381 -2.312721 0.477929 8.848810 1.234731 -0.099499 0.178325 -5.743340 0.471017 1.725387 3.635809 3.305407 1.787200 -0.622973 -0.752375 1.115931 -0.849965 4.071044 0.816521 1.093069 -4.051249 -1.272022 -0.662670 -1.467856 3.801378 -1.177135 6.313127 -2.757821 5.369619 0.723132 -1.826848 -2.662929 -3.807173 6.507975 -3.252283 1.199599 -0.528226 -1.781855 0.428154 -1.019967 -2.139005 -2.486063 -1.686663 -1.015580 -3.712477 0.276380 -2.114018 2.574242 -1.250588 -0.669320 -0.381045 -0.658585 3.778383 1.740674 0.922804 1.116870 -7.356080 0.161077 -0.126907 1.080602 2.158528 0.923029 -0.068624 -1.869092 -2.161042 -2.723308 5.917555 3.290401 0.347723 1.092836 -4.284333 1.552022 -2.617022 -0.826075 1.775786 0.760900 -4.970656 -0.375831 2.263077 -1.405447 -1.738517 -3.249380 1.385251 -2.337404 0.797053 0.389792 2.259815 0.117589 -2.282114 0.173099 -4.807856 -4.067157 1.476461 -0.995384 -1.261451 5.565945 -3.735125 0.362823 -2.471593 0.658672 -1.180403 2.849922 1.752987 3.206700 3.443712 4.231947 1.953100 -3.656944 -2.343607 3.197836 5.740888 2.152200 0.765702 -2.584590 -2.584874 1.564918 -1.934518 -6.551682 -3.846850 4.673435 4.527664 1.084182 -1.952983 0.551985 -0.199842 5.428026 4.029303 -1.111526 0.525649 1.286316 -4.487817 3.808128 6.722987 -1.262212 3.949970 -2.034994 0.041749 4.179114 -4.334143 1.332342 1.639285 -0.199810 -1.997417 -1.781848 -0.358136 2.707909 2.113616 2.250624 -2.762010 3.225562 -1.986554 -5.966185 -7.659650 -1.412681 4.818489 1.156199 5.389908 -3.346673 -3.407349 0.137312 2.996400 -0.492456 -3.592145 2.289141 -5.370348 2.873480 -7.117711 -5.327596 9.984893 7.516979 4.631574 1.642416 4.309315 4.963492 -5.809669 -0.942589 -0.906019 2.925256 1.850174 -8.276556 -1.223289 0.370833 -5.333527 -4.588663 -1.286539 1.613185 -1.697721 2.395731 4.901612 -0.376281 -1.794156 0.065896 3.255865 -2.182344 -2.240527 -1.028311 0.311685 0.884958 2.201037 -2.558300 2.677295 2.152294 -3.745196 0.617825 1.544957 2.211571 2.211537 5.426405 7.929758 -1.032497 6.431388 -1.409589 -2.947739 3.173342 -1.184591 0.927866 -0.661467 0.417761 1.539007 0.544663 2.491179 -2.053106 -2.552075 -3.637480 -0.171142 2.405174 4.109559 0.150451 -5.695778 -5.679816 -0.621457 1.716940 4.629946 -0.743803 6.680959 -4.399488 1.557431 -9.863779 0.941743 1.922102 0.416359 2.284531 0.667124 -1.667342 -3.668547 -1.322355 -3.544502 -4.349842 -1.429984 -3.938256 -2.258216 -5.851150 6.290829 -5.461038 -0.492083 2.185270 0.346559 5.251611 -0.307705 -0.180763 -3.831862 2.521999 1.491681 0.929388 -3.121898 3.823976 -0.024756 10.999687 -1.621565 2.060540 -2.037574 4.373155 -2.688346 -4.492792 -0.157057 5.015181 6.149983 -0.813617 -0.353000 -0.764354 -0.363132 2.660960 -PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = -3.768806 -2.082196 10.258581 6.221433 -4.530636 -9.824455 -4.660177 -13.414957 8.460838 1.381109 9.801918 1.590651 4.459929 -6.472754 1.236669 0.581608 3.192005 -5.299980 0.002533 -3.840586 1.247237 12.457573 4.638684 -6.341697 0.627231 -13.229532 3.453506 4.442582 5.079354 7.611842 1.070444 -1.269169 -1.845534 4.461461 -2.684768 4.085250 3.019055 0.741057 -5.301672 -2.100860 2.097368 3.254718 7.165476 -2.157720 10.533074 -1.588476 6.790932 1.402636 -5.486527 -3.744199 -4.952063 10.281601 -6.561039 2.999644 0.632672 1.524772 1.150288 -6.301236 -4.084889 -8.807169 -1.158428 1.073040 -4.856368 0.126102 -4.608260 3.661591 0.195945 -1.911117 2.858962 -2.093824 6.879799 3.240284 1.925129 0.081038 -7.935824 1.993448 0.048425 3.989328 4.100618 -0.882079 -1.121917 -1.129484 -2.541452 -3.927740 5.715532 3.051758 1.265261 1.403280 -2.266160 0.649129 -1.771965 -2.159620 0.568875 2.406429 -6.617924 -0.507091 2.020199 -2.133609 -3.098373 -2.395366 1.186380 -4.615045 2.080123 4.913399 -0.226501 0.620940 -2.515332 1.177000 -7.252217 -6.482048 2.450467 -1.632258 0.317735 9.193507 -6.474927 -0.099891 -2.838978 0.240518 -1.405902 7.088052 0.030196 5.119746 6.141068 9.484767 2.196945 -6.707581 -3.139701 3.676533 9.746961 5.373066 3.726701 -6.695381 -4.330830 0.536241 -1.741526 -11.904437 -3.130032 4.098347 7.999769 3.875947 -8.238225 2.813029 -2.013433 11.152222 5.642262 0.248053 0.995665 1.098191 -8.733502 8.607370 13.219408 -2.535135 6.855203 -4.259331 -2.947396 7.471794 -7.253124 3.677799 2.415037 -0.792534 0.140487 -4.389210 -0.422831 5.920193 3.738557 4.844388 -1.562918 4.209340 -0.613885 -12.710149 -12.670568 -1.466411 6.709104 0.934373 12.385229 -6.635120 -6.299257 -2.631316 8.223487 -2.237263 -4.608654 2.007201 -7.601404 4.952187 -12.454440 -10.564066 17.015662 15.142055 5.484157 3.567068 9.081710 7.354816 -5.908112 -0.387109 -1.736428 4.128461 4.041289 -8.145400 -0.231411 0.059663 -7.770796 -8.238629 -0.217887 2.696258 -0.564596 -0.494941 1.625268 1.661408 -5.917080 -2.595848 4.229062 -6.785177 -3.233934 -0.034804 0.214143 1.634020 4.023662 -4.056112 1.371401 3.493193 -5.630111 0.846565 3.035733 6.444268 4.473359 7.292148 11.355285 -0.539096 11.004130 1.500603 -4.536393 11.032102 -3.101713 1.624340 0.962306 2.423531 2.916887 2.109428 2.842621 -3.908927 -1.424031 -7.718744 2.797857 2.411901 6.953002 -6.176475 -9.506171 -9.390780 -2.854370 4.779340 5.412468 -1.572980 14.130469 -4.604224 0.458951 -18.124116 -0.632255 6.193829 1.360589 4.376811 2.986794 -4.090709 -13.435507 -2.515639 -5.179056 -2.293618 -3.794473 -6.961466 -4.201949 -7.999242 11.735976 -7.068154 2.031465 7.631008 0.859532 6.746102 -0.623494 -0.261989 -5.046214 -0.511444 -0.314228 2.714613 -6.208243 8.509513 -0.830486 17.759775 -3.897936 4.724312 -5.588052 7.078572 -3.235680 -5.887610 -0.525900 9.741674 8.744674 -0.250314 0.129103 -0.934467 -3.546004 6.156394 -PE-benchmarks/reservoir-sampling.cpp__main = -0.020994 0.313998 1.282410 0.045342 -0.778300 -1.654721 -0.634629 -2.344976 0.769513 0.451201 1.270668 -0.130740 0.787946 -0.110285 0.041291 0.495678 0.529002 -0.645384 0.431599 -0.710129 -0.804319 1.529073 0.079416 0.391745 0.225238 -1.608826 1.045300 0.327324 0.620245 1.072179 0.390874 -0.100425 -0.426329 0.578222 0.046414 0.662676 0.296343 0.492716 -0.523502 0.602034 0.063633 -0.265102 0.978130 0.110805 1.105419 0.729926 0.346707 0.526415 -0.409689 -0.599275 -0.391650 0.568536 -0.855392 0.320041 -0.386495 -0.303344 0.109531 -0.433496 -0.273737 -0.063713 -0.380647 -0.617050 -0.794734 0.392808 -0.940995 0.415404 -0.833241 -0.583194 -0.167535 -0.104206 0.828133 0.319693 -0.109071 0.460969 -1.607896 0.078857 0.209601 0.354944 0.664619 -0.457910 -0.282038 0.023325 -1.064552 -1.057179 0.957604 1.031496 0.416546 -0.007899 -0.646014 -0.099418 -0.376359 -0.057553 0.659129 0.798673 -0.529723 -0.053022 -0.285604 -0.397295 -0.915883 -1.627015 0.398470 -0.511125 0.632725 -0.012553 -0.127717 -0.388242 -0.290685 0.142232 -0.612816 -1.004047 0.200481 -0.617919 0.373396 1.487889 -0.363062 -0.219310 -0.836075 -0.517949 0.131652 0.821679 0.613054 0.084910 1.197952 1.082929 0.353682 -0.847413 -0.930167 0.348598 0.629181 0.436734 0.573289 -1.032893 -0.737028 0.295037 -0.689479 -1.519698 -0.552254 0.268082 0.743525 -0.644660 -0.122153 0.541143 -0.668691 0.576261 1.027589 0.214242 0.255062 -0.060600 -0.924826 0.890471 1.619049 -0.283285 0.792742 -0.838695 -0.407955 1.127733 -0.632905 0.321754 0.464988 -0.216921 -0.810483 -0.326182 0.160668 0.769870 0.239535 0.574381 0.230955 0.556646 -0.541532 -0.884020 -1.410064 0.115694 1.586075 0.169698 1.254729 -1.158632 -0.218636 0.087572 1.160412 0.433425 -0.638494 0.439561 -0.619493 0.567607 -1.491190 -1.179170 1.679470 1.482076 0.942219 -0.003591 0.467336 0.954655 -1.153642 -0.621749 -0.551121 0.728231 -0.163245 -1.606767 -0.601430 0.189550 -1.073514 -0.427932 -0.298171 0.686255 0.604523 0.130950 0.477941 -0.330818 -0.555143 -0.772564 0.738259 -0.489925 -0.438143 0.180130 -0.075110 -0.087904 0.335841 -0.286970 0.362426 0.377853 -0.629172 0.423642 0.742660 0.395851 0.021708 1.577762 1.204181 -0.474435 0.485028 -0.168360 -0.289461 1.056285 -0.230438 0.547909 0.168366 0.538882 0.076145 0.221416 0.916294 -0.448264 -0.886766 -0.955940 -0.076250 0.464512 0.631449 0.130518 -1.026793 -1.766841 -0.032848 0.169392 1.702501 0.082447 1.594790 -0.203421 0.615835 -1.456991 0.241558 0.239409 -0.115266 0.657894 0.245246 -0.558057 -0.269175 -0.349953 -1.193024 -1.069257 -0.280227 -0.556043 -0.719650 -0.445085 0.419778 -0.491055 -0.195731 0.555466 -0.045045 0.648814 -0.090339 -0.091717 -0.925344 0.216653 1.195562 -0.210003 -0.726586 0.866592 0.186537 2.296354 -0.020970 0.667305 -0.088060 0.373098 -0.089277 -0.902186 -0.294882 1.281523 0.840906 0.113459 -0.000812 -0.117721 0.432757 0.538193 -PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = -0.619790 1.553487 8.018807 4.538502 -3.934523 -6.185687 -3.136570 -8.782327 4.362653 0.341905 4.764761 0.600185 1.288238 -1.209780 0.037037 -0.396536 0.694744 -1.704479 0.284184 -2.278754 -1.943374 6.349526 2.798267 -4.956865 0.588919 -8.396075 4.852369 3.368684 3.958167 4.533167 0.227041 -1.121096 -1.250476 4.413252 -2.194355 -0.042216 0.728438 1.211985 -3.229773 0.245395 2.255545 3.190562 4.690599 -0.108902 5.017322 1.771937 3.278725 1.388075 -3.263503 -0.532770 -2.944451 6.124603 -4.112884 2.831139 0.048999 2.062990 0.509697 -4.848878 -1.566780 -4.000082 -0.647031 1.070756 -3.208025 0.224482 -4.648481 1.018386 -1.148366 -2.823752 2.022563 0.288854 4.483503 1.656516 0.282450 -1.548073 -5.240570 1.693196 0.183459 3.579063 3.485210 -1.521599 -0.649026 1.042947 -2.539533 -3.568535 2.155601 1.841412 1.083089 -0.338120 0.655706 -1.990480 -0.519450 -1.306987 -0.092897 3.608523 -2.962816 1.907826 -2.292805 -1.003877 -3.089215 -3.012877 0.286413 -3.479271 2.703220 2.253814 -1.412626 -0.236380 0.463138 0.986822 -1.744892 -4.592517 0.456677 -1.250591 1.969077 6.287622 -2.025447 -0.956726 -0.368650 -1.139410 -1.329843 4.901265 0.735431 1.454722 4.862819 6.384444 1.215021 -3.823038 -2.061163 1.132518 3.176929 4.495135 3.594828 -5.092341 -2.933081 -0.487146 0.610911 -7.825324 0.984628 1.576788 3.550855 0.617259 -4.293618 1.247103 -2.420960 5.375424 2.988628 2.007156 1.623352 -0.394545 -4.082798 5.333548 9.337656 -1.456243 3.299730 -3.463090 -3.385699 5.378363 -4.157050 3.392400 0.928625 -0.404587 0.788085 -3.282535 -0.092986 4.846932 1.174137 1.977930 2.961600 1.208129 -0.764668 -7.389183 -6.361313 0.781600 4.462613 -0.066811 8.419250 -4.430628 -3.009392 -1.390379 5.756202 -0.371901 -1.209366 1.141868 -3.334332 3.246638 -7.229792 -6.666970 8.137407 8.107964 1.297443 0.051987 4.897702 3.981629 -2.583125 -2.812511 -2.432618 2.320330 1.578129 -2.379946 -0.590558 0.105183 -4.424555 -2.343591 1.123528 1.775244 2.870360 -1.998782 -1.805238 0.315295 -5.398114 -4.278602 2.804703 -4.856590 -1.310586 1.087316 -0.068916 -0.242924 2.533443 -1.533270 -1.137965 1.899163 -2.654821 0.993020 2.208744 3.929644 1.035025 5.209040 5.324602 0.202288 5.695069 3.136289 -2.084247 9.905130 -2.181849 1.269077 1.816915 2.603817 -0.189523 2.398399 2.072551 -2.598174 -1.888894 -5.591012 2.548185 0.384672 3.351690 -4.936222 -4.210630 -6.021609 -2.574537 3.108100 3.396249 -0.405056 9.335890 -0.884607 0.602834 -9.869362 -0.577005 3.966356 0.289719 4.166800 2.691363 -3.626057 -6.992163 -2.043047 -2.778889 0.001110 -2.286712 -4.132757 -3.325380 -2.424532 3.904007 -2.749956 2.294950 5.793402 -0.738198 2.248393 -2.445401 -0.130562 -2.283633 -2.178558 2.506122 0.865194 -4.776890 5.412453 -1.107993 11.425028 -2.193907 3.842838 -3.721235 1.789545 -0.510972 -2.588248 -1.091968 6.914182 3.225800 1.235487 -0.021227 0.187771 -2.283364 3.519205 -PE-benchmarks/min-cost-path.cpp__main = 0.233221 0.293486 0.908846 -0.211350 -0.417772 -1.000039 -0.414642 -1.881117 0.558936 0.255886 0.817487 -0.222963 0.467196 -0.014409 0.038979 0.614515 0.325006 -0.432106 0.436377 -0.412418 -0.349167 1.062547 -0.168062 0.601262 0.123033 -1.217180 0.336122 0.117243 0.709611 0.486737 0.279026 -0.235528 -0.300620 0.256756 0.107351 0.455712 0.439927 0.222103 -0.719728 0.473205 -0.390670 -0.202137 0.478840 -0.127925 0.763876 0.203429 0.298310 0.423288 -0.078853 -0.268833 -0.354388 0.800558 -0.419106 0.175859 0.004199 -0.455280 -0.244210 -0.186076 -0.295524 0.395268 -0.440212 -0.420467 -0.381308 0.322894 -0.551529 0.355500 -0.626990 -0.253334 -0.058038 0.132889 0.591891 0.308795 0.168690 0.566374 -1.254845 0.148541 0.092379 0.340745 0.317056 -0.380324 0.232883 0.119361 -0.575104 -0.672137 0.705005 1.042917 0.208346 -0.254493 -0.557472 0.119833 -0.346306 -0.184452 0.432116 0.419697 -0.539555 -0.006980 -0.568532 -0.212663 -0.593327 -1.371415 0.146391 -0.351198 0.442746 -0.290149 0.201551 -0.173277 -0.014600 0.202938 -0.291487 -0.703370 0.184844 -0.115553 0.187569 1.254146 -0.276294 -0.064279 -0.544585 -0.264097 -0.298077 0.385051 0.443934 0.241662 0.620996 0.778820 0.337540 -0.472853 -0.737733 0.371177 0.448483 0.344665 0.418214 -0.742917 -0.444695 0.194493 -0.347394 -1.065333 -0.428060 0.215167 0.525317 -0.449444 0.225667 -0.107810 -0.361908 0.554353 0.540394 -0.074079 0.143990 -0.055275 -0.528144 0.659448 1.064516 -0.199144 0.568638 -0.605559 0.091657 0.350553 -0.443671 0.246683 0.243079 0.058766 -0.479889 -0.291457 -0.097821 0.420962 0.288448 0.364479 -0.050937 0.404815 -0.573251 -0.678338 -0.864794 0.046284 0.926264 -0.331176 0.479960 -0.604612 -0.491129 0.074703 0.854768 0.304368 -0.417823 0.444574 -0.674378 0.382836 -0.511885 -0.731660 1.057120 1.247220 0.592709 -0.101604 0.349308 0.810106 -1.390468 -0.509174 -0.281341 0.461623 -0.243130 -1.716305 -0.746700 0.120350 -0.667088 -0.260233 -0.192567 0.477343 0.340720 0.698420 0.628244 0.108220 -0.402066 -0.363224 0.769931 -0.215182 -0.295140 0.132333 0.037719 0.000412 0.380640 -0.519294 0.335393 0.601695 -0.524291 0.379046 0.568363 0.188519 -0.104737 1.090003 0.695923 0.017205 0.735065 -0.146275 -0.359465 0.418464 -0.024742 0.365300 -0.018533 -0.090244 -0.304179 0.158919 0.455640 -0.317981 -0.969982 -0.607289 -0.249139 0.038677 0.491444 0.714438 -0.998000 -0.899673 -0.042652 0.229309 0.883907 0.234486 0.925407 -0.259551 0.459184 -1.017568 0.175184 0.082892 -0.072359 0.531600 0.092290 -0.267953 -0.142395 -0.152899 -0.799197 -1.199205 -0.266656 -0.666679 -0.416916 -0.651989 0.680419 -0.249164 -0.261637 0.257562 0.203667 0.646722 -0.080521 -0.143112 -0.726401 0.355476 0.928002 -0.225164 -0.552203 0.485916 0.145004 1.830983 -0.074892 0.213413 -0.072778 -0.039239 0.034628 -0.541605 -0.072453 0.844091 0.638802 0.152718 -0.315089 -0.261126 0.123332 0.214343 -PE-benchmarks/min-cost-path.cpp__min(int, int, int) = -0.870616 0.730558 3.767011 2.820575 -2.782101 -3.044456 -1.709000 -3.748427 1.722869 -0.327323 1.964914 0.244489 0.174839 -1.405132 -0.151674 -1.000249 0.258770 -0.689669 -0.024985 -1.117772 -1.290265 2.315780 1.288577 -3.671460 0.686423 -4.099801 3.136367 2.093212 1.085487 2.210256 -0.270341 -0.384709 -1.191014 2.693539 -0.867752 -0.510667 1.056322 0.427512 -1.088841 0.449078 1.643710 2.320442 2.420100 -0.518494 2.389103 1.810801 0.783355 1.134720 -2.684292 -0.253650 -0.403361 2.034831 -1.764252 1.930663 0.585576 1.315849 0.581005 -3.080511 -0.772055 -2.611560 0.029105 0.134947 -0.840757 0.027367 -2.281547 0.137751 0.648146 -1.753601 1.937138 0.233107 1.946293 0.595686 -0.076007 -0.751149 -1.109441 0.933220 0.877824 2.320917 1.670797 -0.995843 0.014866 0.496196 -1.300740 -1.626604 -0.173052 0.373933 1.167223 -0.053070 0.882355 -1.364671 0.958514 -1.012275 -0.058856 1.894168 -0.714837 -0.098893 -1.390519 -0.405159 -1.926678 -1.391332 0.121422 -1.295521 1.601841 1.880721 -1.746356 -0.043249 0.890051 0.839472 -0.793613 -1.702951 0.321662 -1.179868 1.834503 2.910611 -0.158522 -0.780802 -0.391223 -1.150630 -0.403687 2.570650 -0.260628 0.266901 2.710484 3.784916 0.402107 -1.807046 -1.511778 -0.082367 1.315420 2.345285 2.098822 -3.413832 -1.203923 -0.309298 -0.143429 -3.376827 0.464537 -0.680138 1.901290 0.181028 -2.552751 1.247797 -1.658528 2.908921 0.637573 0.987679 0.360531 -0.345210 -2.192702 3.321575 4.350590 -0.509291 1.169217 -1.565310 -1.924551 2.233217 -1.167542 1.382563 0.723720 -0.905105 0.399525 -1.345753 0.265597 2.187826 0.507798 0.819353 1.748593 0.532996 -0.602190 -3.686524 -3.052605 1.092673 2.186175 0.053540 5.103346 -2.616303 -1.753030 -1.455107 3.417478 -0.445612 -0.332853 0.273931 -1.298159 1.675749 -2.513033 -3.250083 4.081418 4.079016 0.480147 0.289655 2.833339 1.180881 -0.847447 -1.267106 -1.135116 0.571017 1.096939 -0.306756 -0.169445 0.409438 -2.016542 -1.337648 0.876377 0.937517 2.152017 -1.362026 -2.132207 0.357406 -2.731541 -2.520775 0.784377 -2.255960 -0.030456 1.211457 -0.114359 0.167038 1.556783 -0.686415 -1.400222 -0.080020 -0.970681 0.632836 0.912373 2.390541 0.581386 2.080116 2.199567 0.132990 2.890986 2.127788 -0.922780 5.523124 -0.813218 1.150596 1.577261 1.440646 0.355548 1.019091 1.262820 -1.293713 0.284644 -3.115221 1.345685 0.103403 1.591539 -4.510570 -1.718125 -3.420013 -1.534350 1.571681 0.881545 -0.396921 4.508472 0.227026 -0.246494 -5.032069 -0.674831 2.077973 0.208697 1.711822 1.274686 -2.045906 -5.142792 -0.825692 -1.640945 0.020525 -1.538783 -1.247701 -1.641263 -0.243477 1.820197 -0.239980 1.320468 4.237055 -0.314468 0.356797 -1.591024 0.146861 -0.716780 -2.323975 0.480972 0.103656 -2.328828 2.728577 -0.118523 5.434837 -0.721538 1.703695 -1.726243 0.572440 0.312335 -1.365552 -0.431592 3.012589 0.864399 0.888762 0.493194 0.663105 -1.609504 2.593939 -PE-benchmarks/box-stacking.cpp__main = 0.162516 0.328757 1.156417 -0.065106 -0.566912 -1.277334 -0.550197 -2.192936 0.726531 0.350507 1.025506 -0.199597 0.600843 -0.069901 -0.004689 0.595435 0.356315 -0.567701 0.476960 -0.516511 -0.573535 1.432131 -0.030501 0.509001 0.125830 -1.547206 0.676557 0.188244 0.808014 0.771849 0.289694 -0.209758 -0.287419 0.450813 0.044812 0.539334 0.354519 0.382071 -0.666540 0.530154 -0.199624 -0.215904 0.704199 -0.053410 0.939735 0.400818 0.375903 0.438849 -0.201892 -0.382195 -0.436995 0.800220 -0.667487 0.243819 -0.164279 -0.405447 -0.119728 -0.314514 -0.328555 0.215680 -0.465459 -0.475776 -0.573741 0.365953 -0.776398 0.412033 -0.746606 -0.401847 -0.095711 0.108970 0.758272 0.419066 0.134703 0.510326 -1.510841 0.207470 0.142506 0.374171 0.480452 -0.424817 0.036135 0.133762 -0.793170 -0.898518 0.878266 1.116114 0.287791 -0.200703 -0.536344 0.013764 -0.399547 -0.135113 0.498149 0.656988 -0.566034 0.034331 -0.535650 -0.263738 -0.740546 -1.550432 0.187942 -0.514977 0.550026 -0.142002 0.084728 -0.250825 -0.064198 0.174164 -0.411449 -0.919310 0.171224 -0.325667 0.272164 1.432151 -0.324830 -0.101743 -0.627751 -0.352325 -0.181289 0.592951 0.523275 0.223979 0.944411 0.957780 0.371579 -0.663473 -0.821734 0.412283 0.550485 0.418369 0.522709 -0.946666 -0.595827 0.199907 -0.386438 -1.364772 -0.465009 0.294966 0.599034 -0.577707 0.070570 0.172687 -0.468170 0.648462 0.805786 0.007608 0.221705 -0.057908 -0.698113 0.844690 1.457561 -0.242467 0.679876 -0.798010 -0.171566 0.807798 -0.634336 0.362825 0.303188 0.007170 -0.607154 -0.410878 0.030462 0.636329 0.226770 0.472749 0.122846 0.446716 -0.534313 -0.865803 -1.136312 0.077741 1.237572 -0.159802 0.916787 -0.861833 -0.423603 0.127496 1.018751 0.406007 -0.478737 0.463981 -0.704621 0.501246 -1.025786 -1.044714 1.403147 1.424107 0.721729 -0.042099 0.466753 0.957145 -1.326473 -0.623466 -0.425320 0.617434 -0.179421 -1.750929 -0.746238 0.155110 -0.875284 -0.356137 -0.230168 0.553320 0.506413 0.481517 0.525897 -0.084085 -0.550582 -0.578792 0.846221 -0.412753 -0.394744 0.140599 0.025212 -0.074827 0.422713 -0.445588 0.362744 0.538424 -0.575872 0.420091 0.677291 0.271703 -0.082144 1.323328 1.028621 -0.188063 0.690246 -0.096883 -0.299098 0.775432 -0.141496 0.401883 0.085965 0.169064 -0.207364 0.244853 0.649148 -0.401924 -0.990282 -0.815649 -0.097860 0.185898 0.532366 0.458129 -1.064010 -1.260171 -0.100256 0.277088 1.228229 0.227535 1.321639 -0.262078 0.530583 -1.348601 0.200309 0.181129 -0.063829 0.708285 0.202892 -0.411132 -0.229077 -0.296366 -0.921696 -1.161152 -0.338139 -0.758394 -0.565006 -0.634810 0.613860 -0.403827 -0.190272 0.441892 0.130600 0.688181 -0.138791 -0.125748 -0.909629 0.319836 1.071025 -0.214346 -0.644760 0.690483 0.103301 2.152045 -0.147117 0.426570 -0.149254 0.154380 -0.018729 -0.722554 -0.135080 1.124082 0.710505 0.137372 -0.211036 -0.232977 0.208189 0.387745 -PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = -10.451634 -0.060588 34.834375 18.617145 -13.282464 -27.722329 -13.907221 -34.050718 20.449547 2.551704 25.459710 6.512305 7.875654 -6.195252 6.751415 2.772063 2.543128 -13.484017 1.239191 -8.650662 2.479894 32.116082 22.490823 -22.449847 -0.040049 -36.059368 10.142911 13.298128 16.936235 21.335763 -0.686948 -5.994283 -3.124376 17.502007 -10.964334 6.024353 3.427452 4.326808 -12.141595 -1.004660 6.279686 14.063200 16.012333 -2.584667 28.230982 1.918496 23.144518 3.503274 -14.296710 -7.071194 -18.415314 36.553317 -23.385211 10.860400 0.590179 11.348628 -1.743814 -19.557866 -12.534605 -31.609084 -2.582709 8.499738 -15.883271 0.026397 -16.300181 9.312389 -2.691653 -6.174030 7.061338 3.461821 24.165364 8.487778 6.132751 -2.295384 -23.202269 6.587187 -6.108100 15.799719 12.986051 -8.870632 -9.652338 3.630441 -3.700736 -14.096740 10.889546 3.867835 1.158598 -2.763660 1.901007 1.933410 -8.581948 -5.780029 -6.615060 13.464918 -20.150142 10.392581 3.272090 -2.211020 -10.548640 -3.063642 -0.346810 -18.247386 7.054808 13.264382 5.261426 -3.885785 -11.261995 3.068644 -18.138416 -23.290764 5.383070 0.697628 -3.898995 19.965389 -18.418058 6.889368 5.694835 1.301844 -4.542552 23.449141 4.294934 14.383681 15.871816 29.366635 3.495104 -15.714914 -5.280397 6.301192 26.771803 20.408590 14.337912 -20.212648 -14.133176 -0.583041 2.340816 -33.423044 3.845771 20.900624 18.525834 13.447333 -26.095858 3.218195 -6.870094 31.020560 16.750877 9.322934 5.020695 -1.375441 -21.062361 24.452312 47.411781 -9.421863 21.356067 -7.284921 -8.373552 29.623568 -29.560709 17.112728 8.155629 2.895635 4.557850 -16.077015 -10.376398 20.601602 16.512161 15.597310 9.386881 6.488200 0.914624 -38.681257 -30.489263 -7.069562 19.150536 -3.188114 33.392715 -15.945092 -16.603017 -5.933931 23.360173 -6.150480 -11.592730 1.294533 -15.023754 13.512433 -37.932258 -27.831412 43.395490 42.973188 8.976381 7.124523 27.883939 26.239422 -13.187177 -8.029496 -6.423261 12.787732 3.287247 -10.492579 -1.015290 -1.941408 -23.621674 -16.950640 0.012187 6.592982 0.529848 -0.442086 -6.881203 14.558476 -23.837904 -7.543494 4.813822 -23.294136 -13.289434 0.724537 1.576575 1.573827 5.755206 -11.090690 1.442955 15.624618 -19.495770 1.615050 11.429767 16.841946 14.314289 24.144443 25.650755 3.822826 29.499642 10.835631 -11.369068 39.057646 -7.981532 3.044746 4.149941 10.658968 1.537397 8.195735 3.584431 -10.476079 -10.578200 -23.163944 14.465374 3.593468 20.152615 -16.063044 -27.758045 -19.304547 -9.501676 22.286628 14.379214 -6.583279 42.286067 -7.232259 5.351918 -53.320727 -0.637032 17.673377 1.132695 13.815571 12.729059 -11.478644 -39.086110 -9.736200 -5.482310 0.327699 -10.272502 -22.283495 -9.900099 -20.161085 23.924615 -21.181541 7.927120 20.518830 -0.349652 18.122811 -1.337273 -2.986668 -11.927993 -2.952420 6.837001 9.342099 -22.074009 27.118569 -6.198493 54.953296 -16.371862 17.398419 -17.380480 12.512175 -5.933559 -6.149633 0.054246 31.830435 22.383897 2.591144 0.291084 -0.633374 -12.019859 12.280196 -PE-benchmarks/box-stacking.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 1.297552 1.136404 2.046929 0.095070 -1.444712 -2.481003 -0.664543 -4.303583 1.442651 0.093532 1.076827 -0.132742 0.660262 -0.322968 -0.045702 1.511780 1.020329 0.064439 0.233218 -1.149535 -0.667630 1.806188 -1.114451 0.424577 0.644250 -2.450937 0.313327 1.124690 1.924981 0.166233 0.877918 -0.491401 -1.114703 0.665314 -0.130758 0.199944 0.987395 -0.136952 -2.830331 0.723608 -0.925493 0.388025 1.431624 -0.242569 1.450031 -0.038921 0.973980 1.371811 -0.087669 -0.038925 -0.820567 2.718117 0.287736 0.936711 0.514515 -0.651987 -0.603364 -0.837694 -0.112390 2.019408 -0.858300 -0.288422 -0.694349 0.318467 -1.096875 0.116595 -0.643334 -0.850424 0.301273 0.108578 1.008325 -0.165997 -0.309815 0.077055 -2.852756 -0.093340 0.268571 1.194568 0.953556 -0.063472 1.307093 -0.070425 -1.202419 -1.105760 1.066381 2.347384 0.317860 -0.181088 -1.600374 -0.790982 -0.442020 -0.922625 1.170292 0.445050 -1.820886 -0.196561 -1.917526 -0.646906 -1.673409 -2.536351 0.618964 -0.049679 1.047358 -1.782993 0.600628 0.131128 0.999866 0.225542 0.057255 -0.646004 0.215567 -0.007821 0.844124 3.484553 0.111123 -0.942729 -1.211749 -0.782856 -1.817106 0.786865 0.764691 0.013169 1.423197 1.727044 0.900893 -0.864043 -1.608802 0.675574 0.319293 1.222649 1.080434 -1.536921 -0.671558 0.456762 -0.458090 -2.410737 -0.435142 -0.088106 1.348176 -0.699335 0.989247 -1.137770 -0.831924 1.219223 -0.020471 -0.474795 0.458576 -0.283429 -0.910592 1.272657 2.237815 -0.129437 0.830286 -1.503469 0.486513 -0.351800 -0.295305 0.485058 0.268561 -0.567963 -0.784998 0.005013 -0.035196 0.763922 0.095434 -0.233484 -0.018399 0.866326 -1.953731 -1.446012 -2.120185 0.432219 1.059258 -0.779480 1.205890 -1.125026 -1.473347 -0.707764 1.799985 -0.041395 -0.466744 1.557968 -2.094069 0.960679 0.507295 -1.111680 2.151876 3.048993 0.805596 -0.842971 1.244550 0.866395 -3.343922 -1.602830 -0.363647 0.253395 0.301471 -3.648133 -1.152346 0.306018 -1.380822 -0.250206 0.047622 0.975929 0.861387 1.792649 2.020647 -0.173156 -1.145016 -1.398484 1.733214 -0.019528 0.364395 0.749757 0.086510 -0.315597 1.439591 -1.327145 -0.278638 1.071541 -0.786246 0.943565 0.638503 0.731813 -0.494635 1.856802 0.928958 0.692142 3.393991 0.047284 -1.307901 1.481125 -0.078871 1.146726 0.057405 -0.555471 -1.022507 0.500064 0.511821 -0.819328 -1.437669 -1.295435 -0.769006 -0.373435 1.014384 1.067668 -1.745367 -1.882223 -0.581430 -0.006388 0.930496 0.258749 1.657099 -0.948598 0.704430 -2.501306 0.305688 0.326657 -0.086168 1.014893 0.191989 -1.096543 -0.557089 0.137706 -1.975218 -2.844430 -0.299775 -1.361518 -1.147340 -1.321495 1.978751 -0.430549 -0.380187 1.577953 -0.073319 1.127514 -1.575151 0.040672 -0.744683 0.024683 2.053553 -0.615966 -1.410503 0.567759 0.218956 4.121384 0.418466 0.717399 -0.161584 -0.646820 0.380832 -1.792921 -0.640519 1.574711 0.993316 0.533581 -0.772019 -0.457901 -0.172599 0.753456 -PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = -1.297330 1.068339 6.522564 4.347517 -4.299202 -6.166542 -2.837206 -7.740623 3.625936 0.226316 4.859486 0.667165 1.673064 -1.632897 0.562884 -0.439612 1.446280 -1.482264 -0.146912 -2.386370 -1.979413 5.276249 2.249214 -4.449429 0.785548 -6.312343 3.986443 3.181837 2.344228 3.558122 0.654340 -0.579542 -1.992860 3.478063 -1.693441 0.591129 0.868365 1.054158 -2.542675 -0.159308 2.236018 1.956325 4.235857 -0.210331 4.577401 1.508881 3.253389 1.574335 -3.559735 -1.278763 -2.498927 5.251468 -3.503485 2.521964 0.333771 1.484137 1.103470 -4.128653 -1.319016 -3.897937 -0.380710 -0.075554 -3.025892 0.095741 -3.598789 1.158186 -0.431936 -2.348242 1.996428 -0.151271 3.991440 0.556655 -0.164888 -0.823814 -4.132854 0.651126 0.093979 2.891897 3.087621 -0.753634 -0.561469 0.152531 -2.523123 -3.020987 2.086976 0.853269 1.267651 0.026160 -0.417700 -1.053923 -0.112163 -1.361770 0.429865 2.665357 -3.132901 0.879944 -0.994860 -1.187892 -3.348948 -2.583393 0.913388 -2.629885 2.189769 2.211870 -1.669539 -0.504644 -0.427242 0.449589 -2.476169 -4.151874 0.528943 -1.510254 1.426780 5.228622 -2.123015 -0.900185 -0.517242 -1.355927 -0.704084 4.179522 1.177725 1.416742 4.328785 5.716326 0.993478 -3.421327 -2.281029 0.780641 3.465456 3.773011 2.895505 -4.592399 -2.709379 0.363248 -0.692878 -6.793288 0.247352 1.624261 3.978369 1.329927 -4.295702 1.571101 -2.253995 4.467841 2.284341 2.130310 0.912645 -0.269771 -3.996524 4.450521 7.634992 -1.327144 3.373703 -2.019282 -2.433540 4.599808 -3.297510 2.150840 1.716215 -0.786241 -0.031666 -2.204897 -0.706393 3.890838 1.570868 1.797799 2.138186 1.641941 -1.519124 -6.740104 -6.242570 0.613840 4.614403 0.390906 7.052047 -4.366457 -2.535107 -1.112982 5.399418 -1.244921 -2.113297 0.950752 -2.825732 2.905652 -5.604063 -5.470894 7.676969 6.894823 1.361521 0.415925 4.613335 3.220935 -3.038122 -2.216159 -2.432183 2.073807 1.530255 -2.129670 -0.137381 0.084152 -4.461041 -2.366337 0.617379 1.954188 1.939289 -1.563694 -0.911527 0.533691 -4.092478 -3.272322 1.938707 -3.523637 -1.056372 0.953290 -0.264219 0.104227 1.958655 -1.321020 -0.976891 0.996570 -2.724969 0.702690 1.876703 3.478201 1.455203 5.699994 4.510167 -0.290407 5.081399 1.942239 -2.238867 8.356600 -1.778184 1.534855 1.197649 2.975224 0.530225 1.609908 2.386738 -2.240528 -1.760459 -4.916602 1.369679 0.627702 3.338266 -4.777710 -3.686302 -6.159409 -2.007470 2.490263 3.527979 -1.119237 7.963544 -1.133710 0.567320 -8.976582 -0.303922 3.460258 -0.276188 2.847362 1.935067 -2.992623 -6.525053 -1.570953 -2.895308 -0.689280 -1.695088 -2.808254 -2.935191 -2.384459 3.583615 -2.496291 1.321124 5.017604 -0.660941 1.991599 -1.504767 -0.114268 -1.544428 -1.680714 2.015848 0.725348 -4.382098 5.425490 -0.347541 10.617877 -1.211568 3.409654 -2.752906 1.683283 -0.638303 -2.684463 -0.998549 5.703571 3.642842 0.917558 0.338638 0.753723 -1.821439 3.353624 -PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.289582 0.213889 0.964809 -0.225698 -0.430746 -1.071593 -0.401733 -2.259521 0.796463 0.366732 0.929757 -0.147911 0.607951 -0.269410 -0.010305 0.732567 0.334690 -0.477413 0.451879 -0.419743 -0.260072 1.309883 -0.329122 0.733648 0.089149 -1.373695 0.363170 0.136041 0.925110 0.487778 0.364817 -0.281624 -0.340899 0.246055 0.154186 0.605678 0.458466 0.279561 -0.847651 0.325734 -0.451151 -0.343475 0.529608 -0.178658 0.979409 -0.099052 0.426768 0.388820 0.012986 -0.302667 -0.430456 0.942103 -0.460615 0.177439 0.013304 -0.628793 -0.318108 -0.102797 -0.279312 0.511207 -0.465113 -0.495732 -0.459523 0.317174 -0.550173 0.382624 -0.635778 -0.229197 -0.134410 0.029216 0.632216 0.353306 0.222986 0.593565 -1.572446 0.110080 0.110224 0.249161 0.402928 -0.218153 0.317899 -0.042238 -0.607432 -0.722257 0.956767 1.300369 0.138257 -0.190801 -0.769687 0.190573 -0.434680 -0.197289 0.564815 0.430650 -0.762682 -0.088320 -0.601023 -0.219391 -0.523137 -1.493400 0.238533 -0.414876 0.464487 -0.395848 0.264710 -0.116893 0.078977 0.159537 -0.372413 -0.730380 0.184748 -0.179035 0.280680 1.443163 -0.313933 -0.118320 -0.683338 -0.241097 -0.360679 0.321472 0.504094 0.292586 0.746249 0.793725 0.510447 -0.623715 -0.850346 0.646493 0.518638 0.401892 0.263393 -0.802017 -0.395000 0.251915 -0.354857 -1.275112 -0.563539 0.256400 0.571525 -0.511954 0.353676 -0.207116 -0.298884 0.636434 0.659588 -0.216147 0.158357 0.117189 -0.591960 0.674460 1.155727 -0.130962 0.553738 -0.677904 0.176883 0.317912 -0.546217 0.269582 0.218869 0.093536 -0.523957 -0.342914 -0.064104 0.465455 0.175020 0.419539 -0.284749 0.533263 -0.707644 -0.787245 -1.056614 -0.020953 1.085263 -0.233557 0.536906 -0.678550 -0.576358 0.163419 0.902748 0.364493 -0.459481 0.616466 -0.896137 0.517803 -0.537982 -0.852151 1.225908 1.399751 0.738964 -0.114749 0.419385 0.880380 -1.638300 -0.514759 -0.281576 0.467399 -0.120051 -2.104374 -0.772607 0.131527 -0.790065 -0.409144 -0.187814 0.451198 0.256706 0.856741 0.958322 0.085401 -0.271622 -0.382593 1.005619 -0.165565 -0.310241 -0.006429 0.114408 0.010223 0.514269 -0.653475 0.448111 0.678861 -0.521455 0.464003 0.612029 0.108014 -0.145174 1.178744 0.879934 -0.067646 0.901592 -0.250631 -0.366555 0.358998 -0.019184 0.353179 0.021111 -0.202291 -0.263735 0.217794 0.490557 -0.435182 -0.964159 -0.683685 -0.404837 0.072827 0.599582 0.890927 -1.101058 -0.984942 -0.064569 0.180072 0.877050 0.284492 1.052717 -0.427970 0.526337 -1.187880 0.180028 0.131456 -0.079508 0.661133 0.055358 -0.291600 -0.064114 -0.202161 -0.844110 -1.463668 -0.286813 -0.724826 -0.470161 -0.896913 0.908728 -0.396269 -0.292077 0.198675 0.238974 0.789960 -0.299772 -0.051367 -0.845766 0.531174 0.887515 -0.218665 -0.633182 0.491848 0.134083 2.059844 -0.161082 0.218771 -0.102351 0.178459 -0.140104 -0.740856 -0.068541 0.938816 0.759523 0.186238 -0.462222 -0.313547 0.063596 0.303950 -PE-benchmarks/strongly-connected-components.cpp__main = 1.180094 0.753940 1.392753 -0.260892 -0.807013 -1.996961 -0.379535 -3.184637 1.078090 0.194736 0.756244 -0.096543 0.649679 -0.040295 -0.045331 1.494789 0.791586 0.012067 0.277503 -0.912116 -0.436239 1.605411 -0.799730 0.755221 0.453995 -1.861856 0.112521 0.708771 1.620815 0.418383 0.663269 -0.376004 -0.597117 0.358371 -0.079529 0.283317 0.515029 -0.081896 -2.197759 0.804099 -0.929701 0.027529 1.072719 -0.065850 1.056218 0.037980 0.787562 0.990906 0.269188 -0.126119 -0.773561 1.878214 0.185414 0.592232 -0.114642 -0.617069 -0.612605 -0.290448 -0.125335 1.667232 -0.717195 -0.161044 -0.660553 0.299831 -0.933714 0.156935 -0.872481 -0.694651 -0.158550 0.053362 0.737433 0.033990 -0.268977 0.052064 -2.602531 -0.134089 0.118347 0.816822 0.621966 -0.190188 0.750670 -0.077966 -1.002832 -0.836643 0.968946 1.970491 0.163292 -0.055295 -1.344336 -0.635970 -0.629627 -0.418042 0.981781 0.304833 -1.300951 -0.032431 -1.355958 -0.429724 -1.117701 -2.073430 0.486211 0.013285 0.734456 -1.679080 0.900196 0.126339 0.669916 0.191170 0.030385 -0.537215 0.147804 0.101750 0.337308 2.618995 0.094974 -0.630003 -1.021799 -0.453337 -1.333521 0.588405 0.623558 -0.005359 1.015896 1.079771 0.670114 -0.668805 -1.135493 0.575499 0.205543 0.778494 0.804703 -0.837543 -0.588241 0.324187 -0.439737 -1.806454 -0.438920 0.177333 0.920506 -0.858378 1.047575 -0.794477 -0.653145 0.820598 0.300169 -0.519166 0.483431 -0.255838 -0.693596 0.863038 1.838621 -0.136813 0.672247 -1.377821 0.425580 -0.025776 -0.251760 0.362042 0.060181 -0.420627 -0.756971 0.074434 0.104680 0.545818 0.072458 -0.119199 0.002062 0.650793 -1.378812 -0.850611 -1.456341 0.042084 0.840887 -0.492127 0.759788 -0.759010 -0.878605 -0.457740 0.983762 0.235796 -0.320258 1.196619 -1.593354 0.616438 -0.169166 -0.794174 1.620397 2.277170 0.914213 -0.561890 0.684731 0.852145 -2.335174 -1.170313 -0.103090 0.283225 0.065262 -3.087529 -1.044884 0.195484 -1.077335 -0.183940 -0.107850 0.754055 0.503829 1.537781 1.778263 -0.389746 -0.822363 -1.051427 1.311931 -0.120647 0.180718 0.528502 0.068720 -0.358250 0.867245 -0.958145 0.149982 0.998470 -0.566972 0.785329 0.485540 0.362056 -0.401584 1.220520 0.881125 0.403939 2.313514 -0.173642 -0.957850 0.874573 -0.049161 0.873703 -0.041373 -0.451845 -0.819337 0.336038 0.327531 -0.535413 -1.132038 -0.808966 -0.573997 -0.012448 0.708843 1.442012 -1.378972 -1.301979 -0.242766 -0.142799 1.097730 0.279057 1.114798 -0.824916 0.824233 -1.714105 0.408337 -0.008173 0.035836 0.763032 0.165746 -0.742544 0.121488 0.130804 -1.490746 -2.180961 -0.197663 -1.176852 -0.831688 -0.912600 1.151558 -0.514331 -0.433247 0.862623 -0.157029 1.087481 -1.143084 -0.021274 -0.763365 0.313479 1.781411 -0.390489 -0.882814 0.112603 0.161233 2.878465 0.405246 0.589785 0.026900 -0.403810 0.215569 -1.404294 -0.522015 1.208340 0.751099 0.267152 -0.494698 -0.590431 0.348961 0.320694 -PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.464531 0.368953 0.961830 0.114898 -0.410768 -1.122366 -0.324635 -1.949856 0.760617 0.247430 0.700186 -0.132612 0.526613 -0.183104 -0.115160 0.604517 0.276382 -0.142638 0.293052 -0.370920 -0.479030 1.352643 -0.269515 0.308282 0.151514 -1.259207 0.538139 0.331190 0.949101 0.541895 0.233071 -0.178754 -0.128163 0.353290 -0.149743 0.245705 0.090331 0.293944 -0.840608 0.296020 -0.226402 -0.155383 0.643835 -0.017065 0.651706 0.141361 0.474238 0.320853 0.042390 -0.154337 -0.501928 0.854959 -0.286758 0.331385 -0.282090 -0.414029 -0.089566 -0.155107 -0.128290 0.469509 -0.328290 -0.194393 -0.539553 0.166237 -0.714008 0.180280 -0.534297 -0.448216 -0.076962 0.081531 0.572351 0.282593 -0.007133 -0.002339 -1.584267 0.121159 0.157741 0.297633 0.437028 -0.081608 0.244000 0.016269 -0.723313 -0.704808 0.891528 1.046577 0.197256 -0.025363 -0.578526 -0.315276 -0.348600 -0.090467 0.508456 0.504494 -0.549053 0.134545 -0.667430 -0.172409 -0.530703 -1.293895 0.190723 -0.391744 0.442182 -0.405617 0.269520 0.043753 0.408984 0.172099 -0.079494 -0.706342 0.057205 -0.237469 0.225480 1.377829 -0.031615 -0.312732 -0.491673 -0.241565 -0.460573 0.433516 0.410502 0.096428 0.870106 0.642660 0.445538 -0.561158 -0.624713 0.497697 0.240778 0.446307 0.335105 -0.728272 -0.401848 0.132869 -0.199332 -1.313032 -0.338206 0.259639 0.478873 -0.657681 0.212479 0.099037 -0.333565 0.484123 0.577476 -0.178347 0.311900 0.040216 -0.460091 0.605917 1.315725 -0.145938 0.382412 -0.842035 -0.184598 0.544632 -0.343682 0.311711 0.029664 -0.049079 -0.347275 -0.320351 0.220854 0.594636 -0.073773 0.163593 0.144022 0.345297 -0.652732 -0.712682 -1.002119 0.048013 0.863446 -0.062542 0.948049 -0.638412 -0.420389 0.042835 0.691638 0.219656 -0.183255 0.541771 -0.806145 0.474138 -0.827182 -0.906732 1.144672 1.099954 0.572361 -0.181851 0.446614 0.646803 -1.021515 -0.666620 -0.345588 0.380561 0.162721 -1.586639 -0.598951 0.083991 -0.785283 -0.207062 -0.066351 0.328963 0.374022 0.480843 0.652532 -0.435838 -0.548243 -0.637366 0.859820 -0.374558 -0.055936 0.092382 0.044452 -0.241291 0.530830 -0.436301 0.185353 0.416708 -0.354607 0.371335 0.371492 0.149951 -0.220937 0.991371 0.969791 -0.110887 0.883401 -0.021321 -0.347476 0.849511 -0.175094 0.258679 0.077171 0.093637 -0.261316 0.346300 0.462629 -0.379290 -0.696655 -0.759115 -0.131818 0.178283 0.325892 0.424717 -0.665587 -1.000707 -0.244820 0.025933 0.976457 0.260496 1.096652 -0.429827 0.471548 -1.219124 0.187329 0.127674 -0.027841 0.707823 0.165652 -0.459202 -0.085901 -0.190529 -0.724123 -1.067553 -0.293471 -0.791822 -0.559020 -0.582228 0.436510 -0.448906 -0.051351 0.533901 -0.003390 0.560715 -0.645445 -0.000964 -0.690993 0.269929 0.920757 -0.167686 -0.574057 0.310092 0.007563 1.857947 -0.080341 0.470952 -0.244974 0.128841 -0.112197 -0.823687 -0.219958 0.918539 0.498431 0.148200 -0.171285 -0.176351 0.109643 0.413935 -PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = -0.487172 0.732958 4.204830 2.388346 -1.768828 -2.686354 -1.309451 -3.581274 1.821752 -0.206415 2.172995 0.369121 0.370685 -0.140974 0.554529 -0.156938 0.285903 -0.938288 0.298641 -0.816550 0.148700 2.659103 1.646419 -3.155951 0.176597 -4.194816 1.859898 1.844433 1.820422 2.012073 -0.149650 -0.745729 -0.575722 2.079962 -1.271357 -0.598269 0.879420 0.243544 -1.681171 0.142975 0.596412 2.352687 1.693924 -0.455995 2.242958 0.801872 2.216172 0.828877 -1.418119 -0.039885 -1.932843 3.762879 -1.882356 1.583203 0.307321 1.250595 -0.129870 -2.573602 -1.176163 -2.778591 -0.097545 1.258743 -1.181573 -0.096525 -2.075305 0.598187 0.140051 -1.034637 1.470268 1.049773 2.422872 0.841153 0.826845 -0.835978 -2.307730 0.962228 -0.546716 2.247596 1.312124 -1.417913 -0.330874 0.892501 -0.599769 -1.411401 0.347617 0.684262 0.329138 -0.815734 0.899557 -0.389571 -0.480184 -0.909474 -1.119284 1.619807 -1.519791 1.394517 -1.225852 0.053859 -1.359942 -0.591010 -0.323082 -1.872083 1.052327 1.455558 0.108112 -0.016117 0.038825 0.728216 -1.003114 -2.212060 0.500280 0.083565 0.230836 2.446672 -1.116995 0.111726 0.748293 -0.157372 -0.846438 2.471393 -0.139268 1.261238 1.834915 3.428662 0.282805 -1.472910 -0.674784 0.474568 2.030556 2.604150 2.044666 -2.783313 -1.336051 -0.509020 0.558079 -3.475419 1.319180 1.266747 1.940163 0.735787 -2.927992 0.191740 -1.209450 3.454162 1.226848 1.361389 0.642267 -0.197717 -1.807703 2.802870 5.140053 -0.909678 1.827958 -1.414119 -0.665572 2.278270 -2.074030 1.867484 0.476872 0.424410 0.966524 -1.844833 -1.097924 2.262964 1.763705 1.270431 2.072511 0.385790 -0.177980 -4.290895 -2.647960 -0.285332 1.670225 -1.007064 4.063260 -1.807957 -2.086284 -1.126439 2.515035 -0.842126 -0.675223 0.171844 -1.488993 1.383921 -3.148180 -2.984958 3.887901 4.161330 0.085327 0.181835 2.971627 2.120872 -1.400931 -1.364691 -0.755080 1.058481 0.216508 -0.691320 -0.201876 -0.049511 -2.358578 -1.307609 0.666828 0.751265 1.305182 -0.239878 -1.687056 1.595926 -3.338776 -1.635914 0.838041 -2.633204 -1.097400 0.687552 0.100363 0.202718 0.929543 -1.143872 -0.601656 1.819477 -1.747035 0.067842 1.154239 2.019904 0.846328 2.288333 2.004705 1.248235 3.334160 2.009612 -1.434611 5.149873 -0.598217 0.331974 0.735581 0.833228 -0.457190 1.150695 0.323380 -1.160634 -1.214760 -2.961746 1.754007 -0.423021 1.957245 -2.333817 -2.255069 -1.798827 -1.408032 2.377197 1.216249 -0.463605 4.491428 -0.269465 0.288796 -5.385632 -0.408980 1.929803 0.228751 1.515395 1.548446 -1.550978 -4.282384 -0.679275 -0.616966 0.041366 -1.330284 -2.502475 -1.434232 -1.574634 1.963423 -1.271476 1.006059 3.266694 -0.161259 1.410167 -0.922405 -0.341946 -0.681531 -1.104297 0.925613 0.887325 -2.604575 2.861626 -0.855671 6.178877 -1.534062 1.690140 -2.090544 0.319476 -0.051742 -0.417647 -0.155633 3.401530 1.445987 0.769137 0.168272 -0.123012 -1.683026 1.712576 -PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.245062 0.292060 1.344428 -0.022575 -0.642098 -1.432780 -0.525422 -2.730346 0.941720 0.422422 1.221710 -0.186152 0.781309 -0.213558 0.051950 0.795063 0.564903 -0.746016 0.661540 -0.583204 -0.390394 1.745337 -0.312606 0.589048 0.094000 -1.933449 0.877046 0.298411 0.993610 0.798041 0.523051 -0.259097 -0.346885 0.438004 0.119507 0.605668 0.560352 0.390085 -0.916353 0.455336 -0.360223 -0.200808 0.795987 -0.159711 1.134526 0.172918 0.735348 0.560596 -0.066861 -0.366934 -0.757729 1.114203 -0.708775 0.254291 -0.162900 -0.656897 -0.096453 -0.395402 -0.426920 0.391572 -0.560781 -0.484800 -0.694616 0.393784 -0.865017 0.523924 -0.753204 -0.328897 -0.074192 0.331529 0.890121 0.528304 0.311747 0.540354 -1.979797 0.231047 0.037200 0.418587 0.557203 -0.514478 0.155204 0.097030 -0.922019 -0.989805 1.160525 1.517089 0.243240 -0.331541 -0.669858 0.161473 -0.675586 -0.241038 0.475594 0.686871 -0.735090 0.016196 -0.651997 -0.237661 -0.787117 -1.685079 0.244785 -0.641834 0.589900 -0.129712 0.230598 -0.188619 -0.015954 0.162503 -0.580275 -0.987933 0.227927 -0.415736 0.368656 1.718871 -0.389045 -0.158285 -0.847690 -0.303998 -0.218277 0.630506 0.501201 0.391701 1.170376 1.177015 0.441547 -0.787020 -0.996072 0.700344 0.702506 0.567274 0.521450 -1.211314 -0.638243 0.175589 -0.386800 -1.549349 -0.498039 0.376459 0.746596 -0.724152 0.042009 0.068855 -0.469914 0.964619 1.009928 -0.027701 0.228187 0.158877 -0.761016 1.034074 1.742322 -0.218552 0.734550 -1.090176 0.146018 0.723188 -0.662105 0.364408 0.343160 0.155004 -0.732972 -0.519446 -0.060378 0.685907 0.363558 0.558256 0.132559 0.630733 -0.608395 -1.106736 -1.325243 0.054677 1.424159 -0.260513 1.179757 -1.031163 -0.616236 0.139618 0.983433 0.454111 -0.599675 0.648014 -0.986165 0.611995 -1.099963 -1.229067 1.677937 1.514805 0.794987 -0.112025 0.598212 1.129179 -1.794502 -0.687147 -0.414728 0.776589 -0.195206 -2.240006 -0.732099 0.243498 -1.124451 -0.604375 -0.213956 0.635008 0.657844 0.676854 0.735725 -0.054214 -0.691587 -0.624110 1.191249 -0.422796 -0.605284 0.076370 0.051273 0.049140 0.571134 -0.567145 0.549081 0.807241 -0.681503 0.357154 0.819667 0.327833 -0.141500 1.487655 1.275130 -0.024462 0.989738 -0.099016 -0.428171 0.801234 0.049033 0.373262 0.090131 -0.079690 -0.207012 0.276333 0.728435 -0.517456 -1.245670 -1.060440 -0.073829 0.108116 0.776421 0.641204 -1.100224 -1.403677 -0.191112 0.388526 1.437206 0.269506 1.552047 -0.413976 0.558225 -1.615298 0.190487 0.222884 0.004442 0.736487 0.217253 -0.476780 -0.016137 -0.274932 -1.048987 -1.548281 -0.403305 -0.929928 -0.812400 -0.967621 0.856999 -0.543095 -0.299843 0.637006 0.173296 0.870290 -0.286034 -0.122832 -0.989936 0.489293 1.117460 -0.143299 -0.841526 0.867632 -0.031217 2.727135 -0.279859 0.375744 -0.253450 0.266145 -0.150324 -0.865710 -0.092978 1.322056 0.804925 0.145731 -0.236967 -0.383332 0.171370 0.613452 -PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = -1.442179 0.528668 8.142271 5.714950 -2.990858 -4.776611 -3.169390 -7.059818 4.336951 -0.072572 4.712328 0.074761 0.604038 -1.211076 0.117106 -1.503940 0.190236 -2.504622 0.843029 -1.702684 -0.342020 6.063234 4.184907 -6.843518 0.016112 -8.948404 4.938230 3.130984 3.600632 5.466480 -0.163840 -1.203166 -0.190037 4.626670 -2.577097 -0.807619 1.262918 0.637481 -2.818202 0.305262 2.051197 5.149545 4.426509 -0.438911 4.855786 2.054990 3.235743 1.057019 -3.445604 0.225065 -3.154302 6.139653 -4.559662 2.430320 0.346391 2.611588 0.663119 -5.883647 -2.627845 -6.109469 -0.443264 2.448982 -2.761667 0.347586 -4.753588 1.417980 -0.784898 -1.974352 2.933588 1.413644 4.619382 2.681676 1.552228 -1.952808 -4.034089 2.924654 -0.302319 3.761992 2.997600 -3.049282 -0.631555 2.080958 -1.427277 -2.807262 1.149542 0.762189 0.712936 -0.737919 3.184366 -1.917586 -0.641484 -1.431128 -1.620970 3.451645 -1.297865 2.652884 -1.927657 -0.621250 -2.046527 -1.238778 -0.552310 -3.962828 2.406441 3.886993 -1.291822 0.613345 0.550227 1.718836 -1.987153 -4.617499 0.939897 -0.616468 1.653954 5.614715 -2.424419 -0.658290 0.041503 -0.200173 -1.062554 5.384318 -0.573231 2.624160 3.675373 6.714144 0.189552 -3.510090 -1.013771 0.835091 3.540001 4.646072 4.127255 -5.107965 -3.018008 -1.628336 1.984501 -7.014186 1.448131 1.050943 3.067690 1.143373 -5.913462 1.705441 -2.349087 6.882344 3.078083 2.221496 1.499555 -0.429087 -4.172047 6.144676 9.649828 -1.620653 3.216602 -3.705150 -3.497554 5.110912 -4.190574 3.723639 0.052936 0.235411 2.392364 -3.979450 -0.362107 4.554006 2.071543 2.104600 3.801558 0.878768 1.209634 -7.932948 -5.399106 0.743997 3.449297 -0.978122 8.741090 -3.735485 -3.531477 -2.141918 4.711015 0.050371 -0.412992 0.180979 -2.897164 2.727852 -8.830494 -6.995543 8.050014 7.637439 1.247893 0.590775 4.698509 4.119310 -0.757003 -2.131066 -1.757050 2.524353 1.260831 -0.726984 -0.129971 -0.353703 -3.764447 -3.249457 1.610908 1.525589 3.268903 -3.353428 -4.365317 1.129657 -6.463031 -3.723677 2.330989 -6.112295 -2.168404 1.283640 -0.168721 0.329930 2.202899 -1.439934 -0.660302 2.374410 -2.463872 -0.152786 2.231270 4.784241 1.008645 3.394524 5.200468 1.430118 5.493840 4.194031 -2.177336 10.843998 -2.039463 0.691402 1.990854 1.660912 0.179008 1.987298 1.012720 -2.393640 -1.233176 -5.440822 4.180749 0.101768 3.808293 -6.442115 -4.335512 -4.412069 -2.833914 4.320916 2.426443 -0.052622 9.479017 -0.446950 -0.185743 -9.559439 -1.242482 4.701813 1.163418 4.485711 3.310429 -3.808256 -8.318815 -2.027142 -2.088495 2.564493 -3.302114 -4.944318 -3.269613 -1.920834 4.519512 -2.194359 3.007641 6.846726 -0.702796 1.961177 -1.695692 -0.679911 -1.854267 -3.070000 0.577365 1.757596 -4.815436 5.678786 -2.123456 10.749254 -3.131200 3.343887 -4.844544 1.825617 -0.652158 -0.682895 -0.419912 6.953396 2.669393 0.914210 0.517775 -0.417352 -3.048350 3.521927 -PE-benchmarks/bfs.cpp__main = 1.428540 0.804660 1.605138 -0.277082 -0.959840 -2.338500 -0.452898 -3.865918 1.377841 0.214058 0.877706 -0.069529 0.751669 -0.152694 -0.058100 1.856164 0.928766 -0.026679 0.335364 -1.066707 -0.417616 2.046561 -0.956387 0.904945 0.506753 -2.282948 0.032945 0.808826 2.038486 0.449705 0.806688 -0.491060 -0.698765 0.379290 -0.069635 0.394938 0.610897 -0.150925 -2.732235 0.895634 -1.160895 0.009410 1.259215 -0.160302 1.324213 -0.179208 1.066246 1.169314 0.365705 -0.123802 -1.019493 2.393588 0.231763 0.688286 -0.069227 -0.779263 -0.796881 -0.332434 -0.226771 2.068941 -0.927006 -0.183870 -0.788592 0.354708 -1.080089 0.239576 -1.034318 -0.732627 -0.173614 0.103889 0.915487 0.095726 -0.238416 0.066818 -3.176372 -0.154656 0.074760 0.993296 0.706055 -0.159939 0.978275 -0.109219 -1.140236 -0.941424 1.192688 2.400054 0.105550 -0.126921 -1.615296 -0.692800 -0.814978 -0.544297 1.149649 0.279208 -1.680347 -0.052500 -1.636250 -0.484020 -1.263287 -2.427599 0.559239 0.013615 0.853952 -2.047479 1.157226 0.196708 0.886167 0.199824 0.012496 -0.651640 0.170474 0.227357 0.379342 3.195492 0.082864 -0.709001 -1.214908 -0.464903 -1.725939 0.658277 0.744420 0.100642 1.193061 1.320232 0.828652 -0.777533 -1.359668 0.783185 0.315504 0.937905 0.930851 -0.969321 -0.682374 0.382653 -0.401427 -2.151096 -0.571859 0.292728 1.127410 -0.942587 1.316927 -1.098724 -0.683386 1.096128 0.324879 -0.745747 0.566330 -0.269957 -0.833059 1.092767 2.250750 -0.115902 0.781583 -1.686864 0.606591 -0.040701 -0.379158 0.433645 0.047117 -0.416332 -0.896624 0.055446 0.090695 0.591709 0.065837 -0.169617 -0.093534 0.822763 -1.644804 -1.085130 -1.749597 0.023465 0.944593 -0.622074 0.865268 -0.858051 -1.117356 -0.546591 1.112965 0.313249 -0.380945 1.486204 -2.032715 0.749045 -0.151088 -0.947272 1.998957 2.792811 1.085160 -0.629937 0.881144 1.099951 -2.916091 -1.373762 -0.099071 0.348056 0.152347 -3.806198 -1.241072 0.225278 -1.286883 -0.332660 -0.107606 0.881898 0.552558 1.943350 2.213386 -0.402676 -0.977387 -1.194451 1.678552 -0.136441 0.199210 0.600926 0.110084 -0.410815 1.093946 -1.190837 0.263845 1.233201 -0.661241 0.953621 0.582213 0.410284 -0.495118 1.367751 1.130174 0.546350 2.925371 -0.214903 -1.178312 0.981176 -0.028418 1.014160 -0.085654 -0.697034 -1.003558 0.382114 0.307543 -0.650198 -1.362845 -0.922632 -0.659481 -0.072520 0.901856 1.767618 -1.725308 -1.478711 -0.327623 -0.112222 1.170833 0.376417 1.303298 -1.113911 0.949386 -2.160646 0.481894 0.034803 0.110371 0.943800 0.162103 -0.832136 0.152389 0.162260 -1.723755 -2.621810 -0.289273 -1.506339 -0.991783 -1.234690 1.565033 -0.671348 -0.527723 1.043479 -0.160681 1.386547 -1.419893 -0.029220 -0.949309 0.427460 2.006439 -0.422270 -1.060461 0.144567 0.140804 3.483153 0.424031 0.626489 0.004044 -0.426412 0.179629 -1.722519 -0.546579 1.421413 0.921603 0.273616 -0.652000 -0.772981 0.344090 0.347551 -PE-benchmarks/bfs.cpp__Graph::BFS(int) = -0.942488 1.806780 11.100795 5.071169 -7.046822 -10.387211 -4.435345 -16.634964 7.779927 1.946479 8.103851 1.251226 3.127899 -3.815449 0.591985 2.717439 2.461734 -3.160841 0.604034 -4.240250 -2.149948 10.307698 2.097274 -3.571338 1.173586 -12.519135 5.342763 3.753020 6.505126 4.928170 2.675334 -2.029067 -3.539677 5.599182 -0.836145 4.192971 2.526887 1.724829 -6.050506 0.331474 1.088577 2.212577 6.404830 -0.311480 10.278215 0.454180 6.373605 2.747288 -4.964780 -1.892018 -5.088142 11.178040 -5.939383 4.385858 1.157156 0.603261 -0.458333 -5.853743 -2.166400 -3.480178 -2.752334 -1.159788 -5.106529 0.734366 -5.899666 2.272779 -1.822546 -2.753570 1.438807 0.619512 7.532591 1.729443 0.812262 1.081998 -9.846645 1.054339 -0.074081 4.435890 5.993240 -1.588854 0.104525 -0.710957 -3.864162 -6.098401 5.878051 4.720077 1.126152 -0.366357 -2.479690 -0.819407 -2.398299 -3.328563 1.617447 4.859157 -7.962821 0.666641 -2.323390 -2.062880 -5.194948 -6.716994 1.515304 -4.538299 3.656239 0.956841 -0.057404 -0.906047 -0.646781 0.597908 -4.377752 -5.572224 1.938573 -1.634482 2.649644 10.140528 -3.376288 -1.384641 -1.902909 -1.997580 -2.483661 6.105231 3.275483 2.685631 8.016815 9.675085 4.441215 -5.683659 -4.869744 3.051103 5.998775 6.562582 3.944263 -7.890556 -4.387517 1.477696 -0.420439 -11.816581 -0.710305 3.649235 6.908351 1.573425 -3.993856 -0.915711 -2.773801 8.312205 4.107809 1.458841 1.741506 0.259738 -6.673785 7.555409 13.892118 -1.549907 5.323993 -4.066995 -0.967978 6.071670 -7.287453 3.898344 2.765572 -0.721231 -1.173183 -3.890721 -2.028843 6.359204 2.590734 2.559823 1.110574 4.414673 -4.363624 -11.333397 -11.012033 -0.102546 8.253822 -0.721755 10.217024 -7.000266 -5.001845 -1.595870 8.889049 -0.272990 -3.699832 3.245154 -6.863585 5.334010 -7.366161 -8.849418 14.603139 14.525611 4.000327 -0.548013 7.506243 7.435653 -9.547183 -4.848922 -3.295495 2.895005 1.866644 -9.027514 -2.546026 0.834532 -8.281975 -5.232402 0.218948 3.123126 2.716658 1.442423 2.222324 2.479785 -5.398039 -4.780552 4.878336 -4.385591 -2.915881 0.809687 0.938760 0.743232 4.403545 -4.206171 0.046088 3.853438 -5.081053 2.101822 4.164359 5.446460 1.845031 9.809325 8.592037 0.274920 10.788972 2.111995 -4.244876 11.048402 -1.796677 2.751089 1.848402 1.647109 0.271081 2.661958 3.404514 -4.645032 -4.309250 -7.847762 0.905584 0.412550 6.242973 -3.300386 -8.260248 -10.016072 -2.802323 3.950022 4.720405 -0.890711 13.101779 -2.948289 1.928469 -15.846563 -0.065114 5.810586 -0.498131 5.365979 2.869753 -4.820177 -8.214827 -2.796616 -5.327531 -5.268911 -2.664676 -4.820954 -4.413276 -6.591206 8.576994 -4.599675 1.296743 7.155102 0.279497 5.321662 -3.735190 0.391363 -4.495147 -0.286572 4.909205 0.719939 -7.868910 7.940481 -0.340743 19.733447 -3.141667 4.556581 -3.942473 2.560702 -1.422799 -5.442606 -1.350660 9.953727 6.858249 2.193372 -1.062465 -0.036522 -3.163544 5.959179 -PE-benchmarks/binomial-coefficient.cpp__main = 0.467982 0.055354 1.525220 0.459984 -0.446068 -1.479958 -0.633309 -3.068035 1.732922 0.387005 1.035129 0.114822 0.801055 -0.853891 -0.255928 0.903706 0.244227 -0.609230 0.436192 -0.453253 -0.047819 2.875324 -0.044254 0.027492 0.002009 -2.712240 0.642591 0.341487 1.883526 1.100970 0.242168 -0.354902 -0.012683 0.598455 -0.312621 0.582731 0.229313 0.291285 -1.481368 0.084708 -0.292391 0.186572 0.930001 -0.253818 1.479257 -0.460133 0.994372 0.318297 0.206810 -0.257498 -1.019025 1.756810 -0.643582 0.484205 -0.242610 -0.424831 -0.339915 -0.434076 -0.547646 0.291733 -0.581553 0.080395 -0.780777 0.232575 -1.050010 0.549547 -0.602393 -0.285847 -0.079013 0.114067 1.138505 0.826359 0.504917 -0.184047 -2.616857 0.391922 -0.098168 0.551739 0.668069 0.015733 0.205844 -0.020003 -0.761318 -0.969695 1.402917 1.772574 -0.135666 -0.056870 -0.526331 -0.364641 -0.815954 -0.331504 0.500675 0.657284 -1.215002 0.162054 -0.787827 -0.041771 -0.267580 -1.388652 0.122617 -0.788003 0.504538 -0.333703 0.752203 0.197662 0.897729 0.180836 -0.392940 -1.050021 0.293220 -0.009414 0.176049 2.290715 -0.262544 -0.191202 -0.637787 -0.044361 -1.024078 0.886134 0.364871 0.650303 1.279171 1.263320 0.687777 -0.903680 -0.791484 1.302350 0.879708 0.728346 0.493578 -1.295328 -0.576900 0.097856 0.270398 -2.043494 -0.619212 0.698681 0.853582 -0.648200 0.080799 -0.032009 -0.156974 1.409354 0.964281 -0.735639 0.444159 0.163858 -0.962956 1.404416 2.662795 -0.077474 0.558973 -1.536017 -0.214822 1.199187 -1.155329 0.727746 -0.161964 0.239786 -0.363017 -0.761741 0.412929 0.870935 -0.204249 0.448985 -0.088674 0.645266 -0.656994 -1.621121 -1.746415 -0.243650 1.129583 -0.148845 1.821874 -0.847535 -0.900385 -0.111771 1.042048 0.473929 -0.171040 0.929722 -1.667115 0.832958 -1.636262 -1.647339 2.375879 2.315536 0.962643 0.045780 1.137061 1.443290 -1.496341 -0.806136 -0.305494 0.624017 0.624428 -2.468657 -0.706573 0.063935 -1.239694 -1.095590 0.002202 0.362077 0.410000 0.886337 0.917583 -0.332166 -0.955964 -0.899534 1.584471 -0.844068 -0.290265 -0.004376 0.263129 -0.391597 1.005523 -0.823841 0.585911 0.951603 -0.407549 0.599816 0.660991 0.239630 -0.200860 0.905851 1.959945 -0.006912 1.856502 0.165899 -0.505008 1.551769 -0.264468 0.208481 0.147274 -0.314081 -0.256718 0.525434 0.203836 -0.668410 -0.740212 -1.181090 0.288737 0.142683 0.739048 0.268532 -1.523700 -1.164150 -0.577145 0.394427 0.951072 0.520122 2.011830 -1.088066 0.486430 -2.676646 0.219213 0.693977 0.290713 1.222329 0.364533 -0.545432 -0.783907 -0.387805 -0.760020 -1.371871 -0.863030 -1.847054 -0.796692 -1.451952 1.559813 -1.090060 0.137699 1.231824 0.180234 1.221557 -1.223863 0.021753 -1.452661 0.451258 0.479599 0.018061 -0.897085 0.608067 -0.350551 2.861113 -0.739469 0.646482 -0.660060 0.867961 -0.650173 -1.477201 -0.003412 1.565859 0.781803 -0.008522 -0.298680 -0.568613 -0.222746 0.658677 -PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = -1.848391 1.638425 11.643409 6.476977 -4.592523 -7.488477 -3.718277 -10.206381 4.981197 0.282082 6.895599 0.638412 1.572227 -1.480548 1.421274 -0.578654 0.090593 -2.818940 1.325714 -2.372012 -0.412521 7.532079 5.723473 -7.500318 0.400171 -11.350069 6.497971 4.962511 5.513401 5.994672 -0.094128 -1.791804 -1.238183 6.195972 -3.091238 -0.355586 0.375363 1.533891 -3.242536 1.359365 2.388484 6.159027 3.965894 -0.803833 6.610984 3.092038 6.301587 1.673823 -4.282834 -0.972083 -4.642576 9.657215 -6.643927 3.219324 0.494415 3.233062 -0.486608 -6.901328 -3.022219 -7.757073 0.260649 2.771061 -4.640820 0.860446 -6.780549 1.796854 -1.800442 -2.510567 3.582520 2.712517 6.431332 2.487527 1.004318 -2.079408 -5.587673 2.805603 -1.053990 5.221179 4.329876 -4.305254 -1.650810 2.726712 -1.605984 -4.497936 1.941722 1.277536 1.173574 -2.399403 2.714657 -1.516824 -1.546663 -1.772414 -2.424002 5.015910 -4.588216 3.488722 -2.946121 -0.322437 -3.803561 -1.767147 -0.445448 -5.985754 3.272919 4.747766 -0.820436 -0.959480 -1.262737 1.247961 -3.002998 -6.912517 -0.339783 -0.711979 2.575390 7.305843 -3.921679 0.709460 0.475632 -0.313843 -1.031782 7.034786 1.161973 3.056025 6.725956 9.113821 0.526410 -4.495424 -2.125733 1.377693 5.104341 7.088937 5.140841 -7.807642 -4.271911 -1.856648 1.962714 -9.785520 3.129379 2.801215 3.775799 2.324057 -7.639224 1.507759 -2.981397 8.293033 4.453133 3.492651 1.885337 -0.477444 -4.638076 7.823933 13.996442 -2.615328 4.354397 -3.362014 -4.196261 8.150511 -6.679894 4.649087 2.431373 1.076752 2.019078 -5.335225 -2.508337 6.557823 3.516319 4.199979 6.405167 1.239449 1.534680 -10.870331 -7.235845 0.674536 4.681361 -1.860629 10.951045 -5.114694 -3.662329 -1.904797 7.210564 -0.399083 -1.911096 -0.346182 -3.466628 3.647744 -9.261425 -8.555100 9.893790 10.493764 0.627451 0.384085 7.204090 7.051967 -3.692065 -2.883890 -3.191838 3.886140 -0.040705 -1.244315 0.110843 0.235628 -6.692950 -3.263350 1.242740 2.172271 3.671847 -2.375164 -5.808735 3.249572 -8.897435 -4.578734 2.307714 -6.716619 -2.595773 0.488255 -0.147064 0.613374 2.356698 -3.379638 -0.986056 3.749108 -4.607698 0.050609 3.689980 5.834389 2.628081 7.265383 5.049543 2.116308 7.053045 4.948601 -2.821079 13.645361 -0.770851 0.921565 2.354291 3.446918 -0.445498 3.197136 1.055450 -3.357066 -3.801155 -8.072612 4.455178 0.189566 4.860482 -5.968062 -5.037171 -6.216747 -4.132710 6.649425 4.341169 -0.533268 12.894111 -0.288818 0.658001 -12.982227 -1.164639 4.765099 -0.140561 5.864262 4.219881 -4.483484 -9.623810 -3.297043 -1.392648 1.260050 -3.302022 -5.596823 -4.416920 -3.140822 5.474412 -3.452057 3.013973 7.392182 0.074851 2.860118 -1.020938 -0.494145 -2.123560 -2.595516 2.545172 2.799439 -7.686573 8.140139 -2.360573 15.626137 -4.567862 5.119416 -5.975962 0.986109 -0.271642 -1.004436 -0.542147 9.412514 4.623957 2.104604 0.253932 0.395008 -4.075097 4.705650 -PE-benchmarks/binomial-coefficient.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/tower-of-hanoi.cpp__main = 0.149210 0.298079 0.637897 0.120698 -0.393298 -0.989612 -0.283497 -1.147075 0.294010 0.130374 0.589467 -0.165795 0.393482 0.074473 0.033141 0.256693 0.316667 -0.084369 0.186596 -0.378828 -0.571280 0.696761 -0.049201 0.088209 0.221069 -0.680693 0.593484 0.298633 0.251576 0.556640 0.181686 -0.003590 -0.189111 0.275872 -0.105326 0.162778 0.068436 0.220854 -0.355478 0.394250 0.022952 -0.068518 0.532696 0.125181 0.366752 0.620976 0.152871 0.348241 -0.170375 -0.236189 -0.219478 0.259996 -0.272178 0.250433 -0.365591 -0.136763 0.169669 -0.222458 -0.073513 0.053466 -0.130922 -0.235981 -0.459010 0.153314 -0.583631 0.133367 -0.417190 -0.438870 -0.029228 0.018229 0.397909 0.051196 -0.241104 0.029623 -0.842122 -0.024771 0.137329 0.250971 0.329380 -0.280329 -0.057688 0.057452 -0.667880 -0.520872 0.486521 0.435511 0.319885 0.053123 -0.324262 -0.294231 -0.136094 -0.012400 0.404275 0.386343 -0.092550 0.062033 -0.256264 -0.193963 -0.532216 -0.887404 0.245523 -0.174383 0.343254 -0.099972 -0.003113 -0.110243 0.065006 0.191358 -0.147410 -0.540496 0.076796 -0.299671 0.160023 0.814380 -0.009054 -0.257961 -0.386704 -0.327040 -0.031345 0.487518 0.336641 -0.053330 0.607285 0.521035 0.121709 -0.363552 -0.482544 0.068404 0.164179 0.268029 0.366797 -0.530241 -0.415454 0.136853 -0.437516 -0.781697 -0.225433 0.079442 0.419256 -0.473981 -0.089481 0.435905 -0.431454 0.151354 0.420514 0.158634 0.179452 -0.113341 -0.428840 0.418009 0.832938 -0.189918 0.355710 -0.492312 -0.284983 0.479354 -0.054116 0.061509 0.199799 -0.225828 -0.349468 -0.070280 0.177185 0.402983 0.123881 0.162756 0.321534 0.259732 -0.442293 -0.370410 -0.655568 0.135689 0.742276 0.036324 0.737975 -0.574083 -0.100235 -0.060629 0.570313 0.089556 -0.223017 0.196393 -0.310168 0.247163 -0.757845 -0.556426 0.769768 0.583348 0.472309 -0.112036 0.185169 0.400780 -0.443130 -0.394502 -0.321505 0.329801 -0.019133 -0.727523 -0.335618 0.044536 -0.560636 -0.065731 -0.100792 0.380876 0.337071 0.031533 0.165945 -0.426310 -0.436708 -0.503449 0.315531 -0.302401 -0.014534 0.209876 -0.132873 -0.148591 0.157201 -0.121352 0.084758 0.143687 -0.293616 0.206868 0.289730 0.229722 -0.042708 0.849067 0.563387 -0.195849 0.290385 -0.027751 -0.260854 0.733121 -0.110930 0.330735 0.042939 0.388648 -0.008243 0.116140 0.506029 -0.180951 -0.483790 -0.555527 -0.064493 0.312977 0.238115 0.052056 -0.321548 -0.985110 -0.074964 -0.041585 1.055361 0.038844 0.752352 -0.100235 0.343278 -0.645577 0.160459 0.053727 -0.103947 0.269326 0.120731 -0.342641 -0.148948 -0.085106 -0.688471 -0.581682 -0.163490 -0.315467 -0.444858 -0.072633 -0.048187 -0.179683 -0.081501 0.435096 -0.093596 0.202348 -0.197605 -0.072390 -0.352191 0.005450 0.750059 -0.154546 -0.422230 0.305401 0.138707 1.207906 0.161019 0.439246 -0.075306 0.015576 0.003829 -0.471519 -0.245410 0.606995 0.371006 0.055032 0.151939 0.033952 0.307953 0.270893 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 1.262153 0.731349 1.852212 0.110632 -1.041425 -2.449993 -0.423820 -3.923037 1.737780 0.367266 0.948878 0.202988 1.006159 -0.607958 -0.260170 1.600343 0.918638 0.005335 0.191763 -1.050565 -0.342899 2.471800 -0.801213 0.480371 0.412573 -2.473474 0.374736 0.882861 2.283604 0.796835 0.785265 -0.433583 -0.654763 0.582896 -0.262146 0.372200 0.364305 0.114518 -2.679085 0.488688 -0.880607 -0.039853 1.474304 -0.050462 1.517504 -0.355383 1.151154 0.949673 0.273753 -0.247994 -1.063272 2.277573 0.003869 0.836545 -0.236007 -0.704385 -0.619963 -0.247463 -0.061997 1.505487 -0.728927 -0.100629 -0.898972 0.226801 -1.249860 0.146440 -0.941523 -0.957172 -0.338027 -0.259129 0.950375 0.237817 -0.098066 -0.297878 -3.503916 -0.107759 0.138377 0.880258 0.984336 0.322770 0.692278 -0.417696 -1.194640 -1.094528 1.381035 2.350871 0.052397 0.282661 -1.640626 -0.881264 -0.762523 -0.401214 1.186996 0.444236 -1.797116 0.026215 -1.481223 -0.421362 -1.004241 -2.341821 0.590729 -0.188279 0.806599 -1.828876 1.029680 0.275191 0.837367 0.086061 -0.081107 -0.665990 0.254896 -0.106384 0.326200 3.207123 0.000102 -0.815442 -1.202443 -0.391139 -1.507932 0.798870 0.616603 0.088521 1.349532 1.222267 1.053530 -1.121456 -1.165703 1.089272 0.407104 0.991449 0.785690 -0.972550 -0.650129 0.403872 -0.361889 -2.558028 -0.567024 0.469227 1.123276 -0.910880 1.007923 -0.822013 -0.713999 1.160319 0.620522 -0.685864 0.743501 -0.053722 -0.940638 1.024863 2.520590 -0.091413 0.769091 -1.653159 0.212579 0.431612 -0.578283 0.704501 -0.200107 -0.514430 -0.744762 -0.124861 0.343231 0.924973 -0.208999 -0.074302 -0.140808 0.793367 -1.583556 -1.421635 -2.092794 -0.131852 1.242010 -0.106732 1.431718 -1.057156 -0.989035 -0.433207 1.124365 0.271052 -0.332683 1.500078 -2.058963 0.969572 -0.931022 -1.366264 2.426440 2.900325 1.153748 -0.540329 0.997836 0.999649 -2.492144 -1.452826 -0.170029 0.257961 0.414464 -3.653704 -1.073323 0.266618 -1.538567 -0.516883 0.063721 0.711503 0.592458 1.553330 2.237638 -0.686035 -0.863063 -1.442352 1.719633 -0.336728 0.134616 0.431143 0.258622 -0.444535 1.185080 -1.087085 0.161678 1.108116 -0.572782 0.868336 0.430588 0.445826 -0.442621 1.414434 1.562633 0.201079 2.749335 -0.136730 -1.132045 1.599590 -0.354206 0.863936 0.084553 -0.302102 -0.676902 0.574631 0.427721 -0.850265 -0.945371 -1.168192 -0.629794 0.183997 0.868354 1.130314 -1.744920 -1.626790 -0.336025 -0.259862 1.211806 0.277653 1.818461 -1.292654 0.925249 -2.587240 0.469906 0.339395 0.116887 1.228376 0.372511 -1.033087 -0.076651 -0.100543 -1.665043 -2.231742 -0.335897 -1.558733 -0.963354 -1.200497 1.522397 -1.012969 -0.261658 1.197286 -0.367889 1.528834 -1.731976 0.199539 -1.104256 0.419699 1.724612 -0.263353 -1.091252 0.315285 0.024384 3.528988 0.248751 0.858789 -0.187765 0.145119 -0.115840 -2.057704 -0.693990 1.737085 0.967377 0.330195 -0.530719 -0.687364 0.236031 0.666783 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.735340 -0.297835 1.579153 1.223739 -1.260820 -2.425164 -0.823663 -2.842604 1.650331 0.641370 1.897683 0.513610 1.469555 -1.320953 0.008708 0.168092 0.936177 -0.775462 0.169439 -0.943545 -0.633288 2.925019 0.677200 -0.699729 0.101487 -1.954811 1.672174 0.592965 0.887386 2.012368 0.537907 0.042623 -0.504247 0.826341 -0.240863 1.053738 -0.158814 0.808535 -0.690126 -0.247479 0.682193 -0.609172 1.680435 0.099628 1.923150 0.116321 1.113270 0.291909 -0.950830 -1.081126 -0.936914 0.777660 -1.595148 0.599701 -0.748524 -0.266795 0.697584 -0.383333 -0.385442 -1.532940 -0.177740 -0.757101 -1.386293 0.172032 -1.341139 0.710222 -0.816832 -0.829987 -0.327846 -0.584538 1.246734 0.615856 0.110560 -0.050309 -2.417372 -0.031934 0.099707 0.352683 1.199200 0.359654 -0.778842 -0.716614 -1.302795 -1.251854 1.618902 0.616923 0.294778 0.715386 -0.886686 -0.144295 -0.458448 0.083827 0.806674 0.753962 -0.995941 0.000160 0.506731 -0.350127 -0.479237 -1.441648 0.648837 -0.858530 0.492744 0.660409 -0.224088 -0.255175 -0.605227 -0.024149 -1.468266 -1.508023 0.469397 -1.045657 -0.026118 1.782897 -0.853049 -0.280848 -0.928074 -0.222365 0.441958 1.383765 0.607229 0.626377 1.500233 1.499293 0.556888 -1.559289 -0.793886 0.990484 1.468570 0.663737 0.444704 -1.048225 -1.056198 0.505339 -0.828938 -2.305367 -0.966459 1.135766 1.372097 -0.107966 -1.030772 1.130454 -0.659236 1.209807 1.701656 0.290497 0.393185 0.307573 -1.688958 1.343713 2.454096 -0.320880 1.119025 -0.785541 -0.923933 2.375315 -1.230576 0.459560 0.331787 -0.413766 -0.780944 -0.563946 0.399420 1.245626 0.178825 0.860508 -0.082505 0.952799 -0.577847 -1.998050 -2.429253 -0.151386 2.519047 1.214881 2.512160 -1.716791 -0.199645 0.226432 1.193747 0.273307 -1.021582 0.531381 -1.098159 1.091645 -3.555177 -2.150897 3.287017 1.943856 1.446586 0.485146 0.940390 1.436436 -0.772932 -0.528297 -0.784022 0.945490 0.523064 -1.618408 -0.195893 0.214637 -1.894266 -1.390244 -0.015796 0.676952 0.400830 -0.594563 0.633900 -0.818952 -0.516235 -0.991364 1.000946 -1.059008 -0.689425 -0.104610 -0.052538 0.114600 0.469652 -0.081675 0.644858 0.131826 -0.716504 0.234649 0.528413 0.764790 0.500067 1.955144 2.669062 -1.103761 0.639678 -0.124658 -0.617945 2.386310 -0.728606 0.536084 0.264195 1.174724 0.988356 0.278417 1.352052 -0.800092 -0.352540 -1.553068 0.010531 1.204251 1.208777 -1.371232 -1.401723 -2.608383 -0.036346 0.211481 2.156533 -0.333010 2.763674 -1.053652 0.477242 -2.885887 0.269048 1.049784 0.008638 1.089098 0.507312 -0.802547 -1.101603 -0.775938 -1.329849 -0.330585 -0.622817 -0.833580 -0.907501 -0.750575 0.854132 -1.478676 0.102016 1.078693 -0.449130 1.283412 -0.389678 0.110557 -1.313500 0.297176 0.364859 0.296493 -1.072683 1.709789 0.037337 3.137780 -0.282591 1.030053 -0.577037 1.767304 -1.012148 -1.716988 -0.387732 1.981183 1.575845 -0.115095 0.469280 0.127154 0.330456 1.102457 -PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = -0.249633 -0.325826 0.913022 0.681028 -0.329782 -1.084065 -0.368999 -1.614326 1.233650 0.407671 0.897565 0.370972 0.893601 -1.006922 -0.152773 0.055346 0.409303 -0.355365 0.016479 -0.398293 0.202527 1.865263 0.194788 -0.566040 0.003564 -1.495556 0.755691 0.270729 0.766616 1.181835 0.258690 0.065472 -0.172838 0.369380 -0.317518 0.516760 0.040973 0.331151 -0.603897 -0.437859 0.278671 0.100971 0.743261 0.037130 1.174537 -0.253822 0.469660 0.039900 -0.102708 -0.537546 -0.435451 0.509939 -0.604229 0.359172 -0.414049 -0.069178 0.179974 -0.220040 -0.178882 -0.832124 0.087969 0.021451 -0.650270 0.018293 -0.665688 0.382155 -0.156621 -0.295340 -0.221787 -0.581689 0.652714 0.343721 0.215324 -0.406318 -1.532547 -0.005561 -0.099159 0.089807 0.643535 0.385897 -0.427996 -0.538415 -0.540287 -0.572220 0.948151 0.716696 -0.121718 0.607531 -0.387996 -0.286657 -0.356979 -0.064159 0.446219 0.347996 -0.662675 -0.070623 0.246352 -0.040976 0.244316 -0.405065 0.382142 -0.465659 0.144450 0.271617 0.188811 0.152405 0.256895 0.071516 -0.646913 -0.533079 0.424314 -0.353504 -0.011057 1.165575 -0.339774 -0.266975 -0.567531 -0.027018 -0.030440 0.824686 0.073967 0.442228 0.741393 0.694971 0.402013 -0.879144 -0.333998 1.049221 0.784972 0.355148 0.074888 -0.731827 -0.381822 0.231801 -0.264120 -1.286470 -0.590892 0.463915 0.758871 -0.209028 -0.557686 0.590449 -0.193703 0.753932 0.867737 -0.212174 0.242789 0.297438 -0.944067 0.701232 1.543824 -0.052105 0.393425 -0.638150 -0.455477 1.005624 -0.630575 0.345212 -0.127480 -0.138921 -0.188882 -0.344531 0.502017 0.666290 -0.161229 0.531137 -0.333562 0.571003 -0.362750 -1.157702 -1.385240 -0.391475 1.057313 0.610899 1.549221 -0.744117 -0.264673 -0.114493 0.687129 0.118958 -0.274598 0.445806 -0.893690 0.609702 -1.814621 -1.178405 1.858934 1.323081 0.922027 0.187640 0.666355 0.715694 -0.227819 -0.169627 -0.181076 0.337256 0.614827 -0.953479 0.020701 0.009005 -0.975149 -1.076800 0.097499 0.205158 0.039541 -0.074053 0.552528 -0.455460 -0.239727 -0.651557 0.731262 -0.584285 -0.201545 -0.187785 0.143327 -0.125627 0.394871 -0.305294 0.387456 0.387700 -0.126116 0.216285 0.267712 0.235255 0.174266 0.550972 1.454251 -0.494059 0.622805 -0.048668 -0.360356 1.442997 -0.350663 0.142003 0.147805 0.299123 0.551353 0.202773 0.298821 -0.484585 0.127767 -0.864436 0.046382 0.584026 0.636824 -0.666002 -0.862280 -1.045271 -0.145158 -0.084087 0.908621 0.001808 1.578891 -0.830470 0.231428 -1.744201 0.156568 0.798014 0.071840 0.541185 0.310041 -0.395957 -0.933806 -0.308597 -0.600019 -0.360782 -0.522738 -0.862454 -0.496558 -0.700375 0.862435 -0.916420 0.192024 0.859135 -0.088752 0.775921 -0.727114 0.170247 -0.843109 0.203295 -0.374565 0.216184 -0.607794 0.564057 -0.133028 1.488192 -0.415636 0.632637 -0.434773 1.313311 -0.919680 -1.183509 -0.167122 1.054341 0.737634 -0.080260 0.198301 -0.144031 -0.029295 0.606988 -PE-benchmarks/biconnectivity.cpp__main = 4.090444 3.143693 7.193861 0.907073 -5.897408 -8.806331 -2.771697 -16.982465 5.977784 0.000952 3.894361 0.262208 1.714082 -3.265148 -0.459675 5.615659 2.876211 -0.600427 0.886681 -4.015067 -1.837529 6.979230 -4.235166 0.934955 1.923428 -10.093509 1.666583 4.219526 7.477354 0.202482 3.388606 -2.215715 -4.372524 3.191976 0.429795 1.303446 4.232635 -0.785224 -10.073557 1.984085 -2.987308 1.830796 5.082413 -1.624093 6.814272 -1.806813 4.326789 4.900743 -0.775163 0.258547 -3.413044 11.229100 0.211618 3.272178 3.287315 -2.423883 -2.637989 -4.009121 -1.002311 7.262927 -3.695532 -1.632347 -2.413152 1.075966 -3.712520 0.757070 -1.605327 -2.201587 1.739460 1.155182 4.148205 -0.254522 -0.532164 1.127193 -9.911937 -0.070519 0.889933 4.957342 3.854711 -0.322569 5.482795 -0.594192 -3.640048 -3.864833 3.824014 8.626292 0.744428 -1.140644 -5.229582 -2.063147 -1.760322 -4.158757 4.028931 1.756359 -7.491334 -1.955447 -6.918051 -2.083009 -5.884057 -8.745553 2.310830 -0.654129 4.038396 -5.731615 1.820394 0.312842 4.043588 0.165033 -0.783568 -2.257578 0.567579 -0.141926 4.379381 12.860208 0.119981 -2.788149 -4.535965 -2.741180 -6.849737 2.806498 2.833943 0.735174 5.731002 7.812672 3.381966 -3.476917 -6.836392 3.005585 1.755961 5.228349 3.552133 -6.886336 -2.052316 1.466726 -0.593566 -8.805034 -1.529145 -0.649005 4.874235 -1.183377 3.799428 -5.419662 -2.331618 5.830372 -0.368155 -2.492342 0.988080 -0.503718 -3.680318 6.389703 8.702710 0.099300 2.816040 -5.471533 2.733815 -1.413987 -2.639920 1.802850 1.557886 -1.787642 -2.750848 -0.401175 -0.883849 2.649522 0.088404 -0.546116 -0.482166 3.627620 -6.938175 -6.323273 -7.857389 2.288170 4.415881 -3.108829 4.717418 -4.440097 -6.275300 -2.347302 7.283773 0.242396 -1.700726 6.094825 -8.433187 4.320190 3.384691 -4.323440 8.689958 11.974897 2.696879 -2.697035 5.426500 4.382307 -13.596518 -5.225516 -1.092144 0.797370 1.819189 -13.842680 -3.784454 1.234874 -4.960793 -2.501611 0.685966 3.414938 3.183539 7.058037 7.175095 0.933832 -3.643627 -4.924463 7.029391 0.105740 1.030788 2.316593 0.752233 -0.509674 5.974315 -5.323561 -0.775378 3.881738 -2.609666 3.871087 2.820009 2.822974 -1.284903 6.257542 3.678438 2.862298 14.043041 0.962254 -4.265304 4.815698 0.722397 4.543735 1.411940 -3.244280 -3.413550 1.910860 1.442626 -3.541021 -4.734814 -5.127834 -2.629968 -1.969112 5.054837 3.308977 -6.851097 -6.914283 -3.096410 1.476797 0.995859 0.767557 6.406233 -3.435396 1.872714 -10.053039 0.583440 2.232064 -0.119056 4.006741 0.579900 -3.853390 -2.978331 -0.108074 -6.419212 -10.945346 -1.722251 -4.617921 -4.392641 -6.036745 9.411520 -1.707061 -1.008229 6.212540 0.397339 3.850641 -6.797670 0.582810 -2.958968 -0.208966 5.855271 -2.094466 -5.925171 2.967742 0.477214 15.801793 0.281151 1.832474 -1.101131 -1.608586 0.860877 -6.336986 -1.072700 5.940102 3.619760 2.104984 -3.678729 -1.371123 -2.041388 3.598974 -PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = -5.214984 -0.219219 17.570416 10.990715 -8.967356 -14.863762 -7.235576 -20.211015 12.261251 2.314667 13.034226 4.326995 5.318259 -5.476714 1.861022 -0.017878 2.295173 -6.245139 0.037226 -5.290461 0.084577 17.918055 9.294562 -12.336073 0.277149 -19.168246 8.612274 6.687802 8.704292 11.624022 0.811762 -2.195977 -3.626305 9.200223 -4.955621 3.354310 1.689513 3.167317 -6.515444 -1.947882 5.008716 6.065538 9.733753 -0.817562 15.570143 0.492512 10.436680 2.228294 -7.386908 -4.162400 -7.684515 15.383971 -11.425043 6.598214 0.019509 4.785429 -0.049657 -9.745543 -5.023508 -14.800055 -0.529707 2.180722 -8.433668 0.072354 -9.139645 4.388252 -1.006144 -4.307924 2.848551 -0.915823 11.980357 3.447982 2.307153 -2.803432 -13.881112 2.039052 -2.341326 6.830463 7.989386 -1.752877 -5.117714 -0.555250 -4.286553 -7.974810 6.022807 3.948043 0.058220 0.409431 -0.101076 -0.652509 -3.038704 -3.248149 -0.984310 7.633240 -10.710173 3.693818 0.710997 -1.416676 -4.799640 -3.344340 1.778604 -8.707445 4.622162 6.029153 0.021430 -1.428420 -2.127589 1.105076 -8.611761 -11.042351 2.936969 -1.601476 1.048692 12.267650 -7.247331 0.720175 0.258571 -1.123852 -1.677834 11.847939 2.382665 6.117369 10.465457 15.084044 3.108991 -9.661232 -4.228505 5.550920 12.035830 10.062859 6.254352 -11.568784 -6.716716 0.993355 0.283504 -17.778878 0.418468 8.566878 10.291062 4.091677 -11.912367 2.629129 -4.124406 14.555650 8.906221 4.223972 2.633869 0.421543 -11.496457 12.138570 24.123073 -3.086514 9.138574 -5.122011 -5.120331 15.277027 -13.427572 8.182092 3.422519 0.482880 0.543719 -7.520329 -2.517232 10.674731 5.160129 7.294272 3.568188 4.556530 -1.909812 -19.590555 -16.999627 -3.076535 12.215442 1.825195 19.139853 -10.124434 -7.096559 -2.839607 12.395063 -1.427986 -5.620167 2.584291 -8.513514 7.987874 -19.607528 -14.986222 22.608520 21.623116 5.805544 2.606745 13.765025 11.292122 -6.311224 -5.056831 -4.278450 5.992388 3.487434 -5.506289 0.307361 -0.375886 -12.948230 -9.708355 1.040713 3.785144 2.732253 -2.034460 -1.820210 4.597610 -10.232589 -7.074733 4.683231 -10.530525 -5.649880 0.294262 1.133206 0.252364 3.876229 -4.618339 0.415308 6.039423 -7.428831 2.081838 5.955975 7.493083 5.147850 12.162223 14.014931 -0.607211 13.520734 4.735667 -5.294190 22.137729 -4.563173 2.488657 3.246328 5.760730 2.118031 4.153835 3.359320 -6.247080 -3.162506 -12.273452 5.765082 2.329082 10.604117 -11.639652 -13.370361 -12.628209 -4.505851 8.303204 8.018795 -2.832832 22.542714 -4.767732 3.014921 -27.394576 -0.187266 10.326013 0.387747 7.660560 5.986443 -6.743985 -18.697800 -4.796000 -4.748208 -0.720663 -5.580901 -10.177918 -6.361461 -8.927376 11.364800 -9.896628 3.761209 12.187617 -1.599618 8.714747 -4.506269 -0.198553 -6.401565 -2.266850 2.145923 3.824480 -11.596157 13.709672 -2.676454 27.856966 -7.212706 9.328609 -7.794210 8.745954 -5.051793 -6.872323 -1.008981 16.414018 10.475774 1.735913 0.346686 -0.229882 -5.432526 7.365011 -PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/find-parity.cpp__main = 0.757051 0.123564 1.570215 0.345562 -0.637556 -1.153396 -0.616255 -2.997254 1.287270 0.284511 1.151320 -0.131511 0.603995 -0.417644 -0.225422 1.010106 0.091732 -0.505380 0.536010 -0.435810 -0.340573 2.113224 0.151216 0.171584 -0.011297 -2.314079 0.759010 0.391728 1.707275 0.954361 0.334652 -0.459350 0.068357 0.551362 -0.332390 0.385906 -0.033570 0.437397 -1.440133 0.394809 -0.248813 -0.136495 0.805060 -0.459663 1.337004 -0.293596 0.893148 0.305967 -0.057626 0.082332 -1.122117 1.818819 -0.776775 0.329084 -0.334931 -0.346737 -0.480823 -0.393272 -0.707674 0.235044 -0.624197 0.041817 -0.658871 0.531117 -1.096447 0.544582 -0.709837 -0.481193 0.096976 0.530028 1.055698 0.890579 0.458104 0.166407 -2.195687 0.471108 0.121719 0.570211 0.541460 -0.443032 0.625784 0.125709 -0.636214 -0.853188 1.369755 1.665262 0.003538 -0.387821 -0.243249 -0.277566 -0.483743 -0.134541 0.370440 0.733617 -1.020370 0.358794 -1.137296 -0.005059 -0.482872 -1.501214 0.012786 -0.823654 0.743062 -0.209359 0.364588 0.359490 0.779381 0.451218 -0.300621 -1.148542 -0.218819 -0.119400 0.380633 2.197188 -0.253358 -0.357051 -0.598521 -0.021603 -0.903492 0.528144 0.354384 0.715816 1.389300 1.239006 0.569692 -0.855679 -0.834490 0.981124 0.591551 0.988336 0.602040 -0.964955 -0.658247 -0.064702 0.267463 -2.012556 -0.507091 0.212659 0.488649 -0.777518 0.248738 -0.304884 -0.320691 1.480986 0.888151 -0.165267 0.443065 0.135636 -0.658031 1.398567 2.289562 -0.203869 0.575998 -1.222637 -0.318224 0.840815 -0.850848 0.709484 -0.071781 0.024066 -0.375720 -0.929324 0.084447 0.850038 -0.038562 0.468043 0.055000 0.519875 -0.609200 -1.365447 -1.199252 -0.104988 0.894033 -0.235302 1.668349 -0.816808 -1.006069 0.037647 1.001392 0.688487 -0.165709 0.739906 -1.492810 0.758717 -1.470639 -1.645555 1.816458 1.797825 1.127630 0.002127 1.015905 1.316953 -1.547771 -0.881446 -0.303494 0.728215 0.493676 -2.474185 -0.895232 0.200507 -1.093341 -0.694965 0.066727 0.479483 0.413413 0.829167 0.816324 -0.165305 -1.017722 -0.504800 1.448642 -1.049925 -0.374424 -0.009977 0.191854 -0.231716 0.799836 -0.990034 0.544120 0.686298 -0.469030 0.630893 0.678732 0.489857 -0.356104 0.949145 1.808916 0.108407 1.563398 0.175447 -0.516226 1.127541 -0.191409 0.179962 0.234216 -0.471785 -0.595445 0.327525 0.493850 -0.751438 -0.813277 -1.159862 0.110962 0.215892 0.696363 0.619300 -1.087413 -0.942206 -0.644990 0.621301 0.987370 0.751313 1.832194 -0.719867 0.340210 -2.100629 0.110713 0.346526 0.133439 1.331795 0.373844 -0.626472 -0.567783 -0.472873 -0.745993 -1.093286 -0.712751 -1.565996 -0.972817 -1.152139 1.310814 -0.699573 0.137927 0.990813 -0.006369 1.011786 -0.992544 -0.106173 -1.081819 0.453476 0.683906 0.080061 -0.933467 0.680248 -0.240133 3.092517 -0.478208 0.502725 -0.839725 0.321534 -0.254253 -0.844414 -0.022851 1.569526 0.783748 0.340763 -0.334356 -0.524469 -0.263509 0.488583 -PE-benchmarks/the-knights-tour.cpp__main = 0.203706 0.282755 0.404920 0.004440 -0.117241 -0.457206 -0.118318 -0.667745 0.124807 0.074459 0.297716 -0.199849 0.226566 0.102226 -0.032608 0.152223 0.120781 0.056601 0.149317 -0.133011 -0.320368 0.327041 -0.151244 0.144994 0.096101 -0.336002 0.281421 0.128700 0.216696 0.233704 0.061239 -0.023188 -0.050398 0.125750 -0.110469 0.001510 0.067305 0.183633 -0.224972 0.190501 -0.108184 -0.069727 0.186002 0.047433 0.098252 0.349680 0.015270 0.147597 -0.003340 -0.060412 -0.086930 0.157845 -0.085320 0.128915 -0.186609 -0.185158 0.042941 -0.022456 0.012112 0.114221 -0.046117 -0.109689 -0.185407 0.075496 -0.319121 0.047605 -0.219284 -0.286708 -0.017417 0.064426 0.182986 0.057274 -0.050686 0.043582 -0.497385 0.050441 0.124976 0.104445 0.153236 -0.148718 0.118013 0.056142 -0.339113 -0.311129 0.331960 0.329023 0.214217 0.018599 -0.182947 -0.161023 -0.037651 0.004807 0.231457 0.250663 0.023343 0.110561 -0.315019 -0.058511 -0.253523 -0.629267 0.070644 -0.151689 0.191685 -0.091107 0.039378 0.011322 0.135410 0.179522 0.042781 -0.325031 0.040012 -0.157490 0.067944 0.453913 0.028099 -0.165328 -0.146089 -0.173945 -0.070520 0.187658 0.180031 -0.021160 0.271529 0.195043 0.114886 -0.200232 -0.257721 0.079059 -0.002555 0.158377 0.174917 -0.332486 -0.190582 0.054797 -0.243980 -0.490403 -0.094815 0.010758 0.164827 -0.381086 -0.010335 0.229547 -0.234318 0.014050 0.214159 0.088069 0.113959 -0.044890 -0.134693 0.144402 0.368898 -0.141009 0.179047 -0.234932 -0.142305 0.107957 0.054266 0.061700 0.027797 -0.076396 -0.090721 -0.100342 0.085921 0.268940 0.059558 0.092920 0.168424 0.083275 -0.350179 -0.205201 -0.278850 0.067373 0.392291 -0.105644 0.330316 -0.257716 -0.140975 0.053170 0.357353 -0.001118 -0.054273 0.108107 -0.165925 0.144629 -0.297554 -0.338527 0.290886 0.242313 0.210782 -0.146104 0.050885 0.175996 -0.301252 -0.279633 -0.175724 0.134218 -0.057721 -0.530625 -0.339942 0.010274 -0.282909 0.088169 -0.024051 0.168873 0.170725 0.152713 0.133642 -0.221188 -0.226815 -0.266079 0.227103 -0.147211 0.039671 0.082979 -0.023134 -0.094199 0.117068 -0.166221 -0.001408 0.157852 -0.164811 0.122384 0.138092 0.056727 -0.095339 0.545493 0.241845 -0.068747 0.132051 -0.007441 -0.155217 0.377454 -0.061329 0.124158 0.006127 0.196926 -0.137925 0.122641 0.286883 -0.110405 -0.382847 -0.353268 -0.166900 0.120889 0.044276 0.223952 -0.152789 -0.416824 -0.047552 -0.063550 0.557725 0.088060 0.388830 -0.031488 0.224001 -0.259224 0.093199 -0.023659 -0.136029 0.216442 0.083003 -0.184391 -0.069373 -0.054411 -0.338893 -0.479691 -0.104777 -0.254285 -0.199675 -0.074784 -0.087517 -0.039418 -0.043201 0.161677 0.039923 0.098307 -0.154949 -0.036985 -0.206646 0.082622 0.498878 -0.142095 -0.246794 0.086795 0.099719 0.712572 0.075349 0.210960 -0.085638 -0.113591 0.051633 -0.197310 -0.139600 0.347624 0.183158 0.112016 0.004615 0.026501 0.113136 0.143650 -PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = -0.305812 1.113434 4.002169 2.470720 -2.402826 -3.063020 -1.567060 -4.035471 1.633295 -0.241435 2.420095 -0.034860 0.425688 -0.434117 0.149549 -0.685325 0.529055 -0.484092 -0.148257 -1.215897 -1.279987 2.058778 0.999403 -2.788227 0.553736 -3.624855 2.280371 1.927343 1.296305 1.695413 0.120469 -0.455678 -1.189942 2.065112 -1.070835 -0.398647 0.777309 0.362148 -1.512919 0.112820 1.240431 1.668101 2.218142 -0.217130 1.976425 1.266071 1.333293 0.981839 -2.040628 -0.270995 -1.119610 2.924440 -1.592070 1.473513 0.578302 1.078302 0.462184 -2.671958 -0.622670 -1.797684 -0.100177 0.250826 -1.245022 0.025911 -2.060503 0.375976 -0.059589 -1.500242 1.704551 0.017415 2.041826 0.213405 -0.077570 -0.575824 -1.650855 0.643053 0.251418 1.915775 1.559319 -0.771299 0.279638 0.552478 -1.264530 -1.490123 0.529293 0.368205 0.926666 -0.315739 0.273793 -0.940309 0.462097 -0.880198 0.020061 1.526766 -1.374569 0.627607 -1.613153 -0.646208 -2.074754 -1.570029 0.223329 -1.419156 1.413233 1.289758 -1.482923 -0.017255 0.367516 0.495087 -0.659268 -2.199896 0.079657 -0.658605 1.247654 3.044734 -0.939518 -0.826561 -0.085580 -0.946710 -0.702188 2.186258 0.329778 0.591854 2.269931 3.193184 0.504364 -1.765020 -1.245781 0.024575 1.377114 2.317156 1.969221 -2.739047 -1.369862 -0.148059 -0.150427 -3.856722 0.727243 0.061207 2.065460 0.714701 -2.494718 0.703554 -1.519331 2.417666 0.728533 1.407592 0.561707 -0.383001 -1.926022 2.453332 3.950252 -0.822971 1.758355 -1.257673 -1.511343 1.832096 -1.281716 1.268479 0.749080 -0.422744 0.596585 -1.359017 -0.488805 2.236452 0.793886 0.803313 1.692065 0.572643 -0.844622 -3.784477 -3.010317 0.704090 2.047532 -0.389122 3.718192 -2.323814 -1.638573 -0.874978 3.380320 -0.964585 -0.790017 0.388686 -1.367760 1.501811 -2.207281 -2.997528 3.544972 3.808278 0.093837 -0.035801 2.507826 1.349629 -1.650576 -1.313376 -1.427375 0.880380 0.793197 -0.856918 -0.266463 -0.030401 -2.044845 -0.756498 0.693452 1.076850 1.520362 -1.054391 -1.127755 0.581387 -2.664758 -2.192337 1.151769 -2.102811 -0.208394 0.871165 -0.188662 0.034145 1.257450 -0.888991 -1.203518 0.595351 -1.370274 0.429561 0.986410 2.137259 0.509955 3.030315 1.707151 0.311968 2.950496 1.568129 -1.308152 5.005942 -1.041624 0.849039 0.805226 1.620542 -0.277161 1.148469 1.131423 -1.230748 -1.066619 -2.813608 0.731140 -0.247356 1.560444 -2.713881 -1.791491 -3.081394 -1.386475 1.434144 1.438253 -0.419452 4.314508 -0.134285 0.086622 -4.551096 -0.469404 1.962631 -0.210651 1.755067 1.193648 -1.818123 -4.051507 -0.736631 -1.539345 -0.174477 -0.979807 -1.613790 -1.660611 -1.010578 1.936388 -0.640477 0.974295 3.025215 -0.203120 0.654670 -0.943596 -0.121962 -0.434651 -1.481925 1.284126 0.320437 -2.516216 2.948243 -0.160520 5.757619 -0.498923 1.813494 -1.731222 0.062220 0.241198 -1.070770 -0.664303 3.100456 1.615206 0.899603 -0.051607 0.420441 -1.441034 1.901950 -PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = -0.558358 0.039128 3.319585 1.904943 -1.994635 -2.503863 -1.367616 -3.436907 1.346796 -0.035368 2.208353 0.011381 0.047947 -0.475188 0.346768 -0.161328 -0.132760 -1.016590 0.247663 -0.867082 -0.502410 2.039893 1.608199 -2.595231 0.441979 -3.499309 1.995365 1.630835 1.111804 2.026482 -0.527802 -0.721900 -0.710807 1.882036 -0.775025 0.020800 0.803678 0.338536 -0.984153 0.787044 0.890226 1.548178 1.633333 -1.026627 2.491835 1.173040 1.478601 0.783688 -2.083088 -0.266406 -0.722778 2.169009 -1.941031 1.426192 -0.075928 0.951680 -0.583422 -2.357154 -1.445308 -2.596465 -0.017947 0.351803 -1.079611 0.121250 -1.907207 0.592783 0.329046 -1.400194 1.650855 0.475694 1.983210 0.864738 0.031774 -0.190930 -1.397075 0.694320 0.476006 1.896250 0.715593 -1.822188 0.050013 0.665324 -0.844980 -0.998536 -0.017247 0.727581 0.808081 -0.796111 0.753916 -0.129987 0.475147 -0.495328 -0.436056 1.565109 -0.951115 0.352859 -1.225658 -0.208985 -1.577962 -1.085644 0.009020 -1.411738 1.574352 1.392959 -0.906973 0.371325 0.775413 1.281780 -0.960769 -2.236300 -0.206399 -0.178690 1.413905 2.299898 -0.566163 -0.173120 -0.067198 -0.551883 -0.522152 1.759147 -0.147229 0.808005 2.454636 3.284304 0.387447 -1.732315 -1.438692 0.016984 1.617591 2.351974 1.724241 -2.445989 -1.159012 -0.542365 -0.176881 -3.103059 0.346743 -0.056685 1.782020 -0.217368 -2.061570 0.686056 -1.307972 3.222584 1.223350 0.836332 0.265052 -0.092253 -2.056959 2.774465 4.255678 -0.587219 1.357447 -1.603960 -1.050262 1.946035 -1.194783 1.264947 0.973579 -0.047722 0.496958 -1.675827 -0.460721 1.761768 1.264409 1.321458 1.212103 0.657454 -0.306697 -3.331394 -2.250839 -0.033231 1.726570 -0.300385 3.841209 -2.060991 -1.897839 -1.154023 2.437227 -0.054350 -0.568851 0.066673 -1.411351 1.280346 -2.757091 -2.849280 3.212766 4.070480 1.052468 0.703148 2.739380 1.537975 -1.101834 -0.601274 -0.634389 1.006311 0.593573 -0.932646 -0.537151 0.090809 -1.941873 -1.322509 0.367978 0.914962 0.976158 -0.384194 -1.646953 1.310006 -2.630852 -1.523279 0.745147 -2.429793 -0.471369 0.704916 -0.003387 0.420862 0.738777 -1.282836 -0.277504 0.629625 -1.310111 0.967836 1.290540 1.730925 0.640283 1.719393 2.090739 0.293353 2.659345 1.327685 -0.942961 3.963367 -0.417946 0.798177 1.131254 0.666216 -0.285683 0.704919 0.852200 -1.008697 -0.204228 -2.316978 1.215150 0.168391 1.833644 -2.211337 -1.951697 -2.323738 -1.084742 1.883384 1.185660 -0.095907 3.709050 0.129437 0.627030 -4.690245 -0.585532 1.178369 0.371044 1.479059 0.965559 -1.386563 -4.482749 -0.448957 -1.027053 -0.353117 -1.422607 -1.526116 -1.507532 -0.728956 1.460253 -0.296122 0.633317 2.713121 -0.074344 1.063813 -0.908513 -0.220218 -0.474959 -1.377538 0.849224 0.633025 -2.209012 2.091642 -0.056854 5.594863 -0.724256 1.428861 -1.515771 0.418172 0.125015 -0.514257 -0.066484 2.719649 1.335249 0.816275 -0.029046 -0.173946 -1.243991 1.496712 -PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = -2.053907 0.882084 9.021326 6.036593 -5.033286 -7.946812 -3.943295 -9.512938 5.188796 0.315288 6.314009 1.199770 2.062173 -2.040547 0.512086 -1.210024 1.051867 -2.673034 -0.095900 -2.934801 -2.274014 7.839905 4.134232 -6.651602 0.754752 -9.879918 6.191144 3.995934 3.457571 6.265838 0.236232 -0.835228 -1.879813 5.125454 -2.437457 0.661733 0.651016 1.348167 -2.525518 0.057038 3.776832 3.480979 5.711888 0.136767 6.186229 2.577466 4.007123 1.663267 -4.282059 -1.763835 -3.655709 6.355675 -5.545832 3.203286 -0.438186 3.024642 1.453721 -5.947647 -2.130274 -6.432363 -0.298320 0.782393 -4.192536 0.183790 -5.353087 1.711375 -1.011482 -2.888079 2.489606 -0.360698 5.688700 1.538563 0.123546 -1.769649 -5.583838 1.328134 -0.419088 3.959239 4.186099 -1.756288 -2.180322 0.795685 -3.230300 -4.040264 2.394374 0.842894 1.256002 -0.037529 0.898933 -1.933453 -0.624737 -1.350527 -0.079460 4.061187 -3.654196 1.631810 -1.134959 -1.116778 -3.601949 -2.492218 0.864202 -4.018719 2.768147 3.866223 -2.140955 -0.846733 -0.277543 0.536448 -3.315332 -5.779742 0.746192 -1.780823 1.750991 6.609699 -2.911876 -0.823537 -0.319765 -1.527854 -0.503723 6.367117 1.087902 1.998704 5.918317 7.775703 0.995621 -4.633228 -2.458358 1.311663 4.826624 4.994795 4.091329 -6.246991 -3.711246 -0.144977 -0.015533 -9.144330 0.962573 2.264265 4.944772 1.732159 -6.545841 3.000276 -3.050678 6.243766 3.866611 2.819964 1.569153 -0.484978 -5.666898 6.599615 11.641765 -1.748435 4.372541 -3.611304 -4.158601 7.794331 -5.322490 3.376971 1.766564 -0.581286 0.496351 -3.481021 -0.421290 5.526009 1.715288 3.031350 3.871055 1.878628 -0.585355 -9.272425 -8.024571 0.330560 6.152774 0.755148 10.309514 -5.844462 -2.601399 -1.708603 7.056739 -0.990650 -2.234674 0.792625 -3.349696 3.740733 -9.581496 -7.776590 10.563883 9.498451 1.791614 1.139657 6.095827 5.077794 -2.105582 -2.453912 -3.183011 3.032438 2.177349 -1.501464 0.337470 -0.267950 -5.732348 -3.797176 1.002270 2.337595 2.940641 -3.283281 -2.868844 0.626512 -6.068680 -5.008441 2.488793 -6.001389 -1.844476 1.237948 -0.386607 -0.390536 2.254067 -1.227436 -0.864001 1.728782 -3.149558 0.919836 2.849563 4.549480 2.063916 6.447713 6.391291 -0.622654 5.763434 3.329794 -2.266465 12.258639 -2.621117 1.657145 2.077848 4.333780 1.109491 2.501218 2.455288 -2.953009 -1.614010 -6.673654 3.352788 1.037665 4.333140 -7.086336 -4.943401 -7.842167 -2.966000 3.849860 4.897751 -1.179310 11.423282 -1.162695 0.670461 -12.234539 -0.598904 5.254052 0.185942 4.133758 3.091426 -3.869207 -9.104578 -2.484453 -3.025656 0.876318 -2.855374 -4.434232 -3.941186 -2.877184 4.381048 -3.691686 2.511903 7.035672 -0.948900 2.542031 -2.177837 -0.216649 -2.690810 -2.595437 1.735793 1.598299 -5.634542 7.312193 -1.160362 12.997683 -2.591985 5.018516 -4.123810 3.205432 -1.393137 -3.324034 -1.073540 8.036744 4.235771 0.914762 0.946016 0.625281 -2.274407 4.365050 -PE-benchmarks/coin-change.cpp__main = 0.049988 0.266479 1.353997 0.061331 -0.741618 -1.636164 -0.692987 -2.640921 0.944573 0.477960 1.341460 -0.159591 0.799933 -0.208423 0.009783 0.621392 0.453310 -0.751884 0.530971 -0.657933 -0.766284 1.854947 0.055322 0.485593 0.167128 -1.877104 1.025034 0.278071 0.858162 1.072249 0.369788 -0.180794 -0.344303 0.585222 0.051065 0.747752 0.310641 0.511086 -0.635571 0.574215 -0.012333 -0.298123 0.962759 0.001245 1.220675 0.525249 0.499963 0.490220 -0.327231 -0.557431 -0.540240 0.812893 -0.923059 0.303282 -0.341054 -0.417625 0.018130 -0.441115 -0.397240 0.062502 -0.498880 -0.616582 -0.832905 0.421852 -0.977759 0.512877 -0.881919 -0.487928 -0.133155 0.028040 0.947285 0.478788 0.038644 0.511496 -1.827757 0.182243 0.174376 0.371631 0.645383 -0.466036 -0.155440 0.088241 -1.061548 -1.109166 1.138210 1.237051 0.353485 -0.146031 -0.641819 -0.022308 -0.494607 -0.107365 0.639805 0.843205 -0.666457 -0.015359 -0.412397 -0.356744 -0.882312 -1.739448 0.330284 -0.648359 0.659955 -0.009518 -0.021013 -0.340787 -0.115425 0.160446 -0.624390 -1.156235 0.181444 -0.534375 0.392302 1.669354 -0.399126 -0.161820 -0.833276 -0.452590 -0.047825 0.802874 0.658729 0.235058 1.305896 1.185565 0.427575 -0.872389 -1.000530 0.526601 0.727570 0.489426 0.558314 -1.160210 -0.749432 0.264564 -0.520558 -1.665430 -0.630068 0.377519 0.769459 -0.692925 -0.054119 0.448076 -0.562793 0.762368 1.104910 0.048742 0.260697 0.001674 -0.948639 1.055599 1.849119 -0.264175 0.795363 -1.003278 -0.358549 1.213492 -0.806602 0.385988 0.441356 -0.040247 -0.806792 -0.486967 0.151230 0.802025 0.197616 0.615500 0.172864 0.606806 -0.559722 -1.040505 -1.500606 0.098997 1.620169 0.060381 1.339286 -1.160404 -0.368797 0.156731 1.205265 0.526426 -0.625910 0.533814 -0.819149 0.633253 -1.536028 -1.329497 1.827905 1.641871 0.972222 0.030227 0.593488 1.160275 -1.386560 -0.666030 -0.589641 0.824618 -0.079956 -1.904980 -0.704627 0.177998 -1.133300 -0.554994 -0.308670 0.667352 0.603378 0.304713 0.550206 -0.277591 -0.646347 -0.744495 0.983500 -0.566146 -0.497456 0.112222 -0.027763 -0.114809 0.475077 -0.405528 0.493370 0.489009 -0.659099 0.483062 0.833191 0.344962 -0.037779 1.607763 1.415580 -0.420938 0.695234 -0.146277 -0.286465 1.046183 -0.204091 0.477154 0.157805 0.361290 -0.022269 0.281279 0.878083 -0.494695 -1.037103 -1.026632 -0.005026 0.382695 0.683751 0.269926 -1.164786 -1.749392 -0.140530 0.301514 1.664454 0.221552 1.718640 -0.332138 0.629382 -1.704185 0.233704 0.282902 -0.054788 0.823125 0.228967 -0.527521 -0.287273 -0.398112 -1.137502 -1.243314 -0.409076 -0.807615 -0.776442 -0.714867 0.654949 -0.587640 -0.182459 0.603037 0.072095 0.770365 -0.196586 -0.117240 -1.103404 0.340613 1.175320 -0.199162 -0.788664 0.908983 0.103610 2.561004 -0.201628 0.626310 -0.195930 0.439184 -0.178682 -0.972988 -0.181820 1.372530 0.894220 0.093316 -0.120841 -0.206992 0.318647 0.558811 -PE-benchmarks/coin-change.cpp__count(int*, int, int) = -2.721144 2.071130 14.492184 8.708335 -6.776594 -10.257003 -4.993044 -13.416379 6.312504 0.095074 8.905975 0.967609 2.037160 -2.498242 1.593670 -1.104154 0.701170 -3.631620 1.359867 -3.452072 -1.420449 9.485122 6.671261 -9.994227 0.775807 -14.338199 8.997896 6.590002 6.166262 7.721086 0.256564 -2.002192 -2.178417 8.121982 -3.589277 -0.378795 1.003192 1.918953 -3.965226 1.417922 3.696064 7.428510 5.961105 -0.909560 8.580415 4.166489 7.679792 2.513697 -6.236051 -1.384241 -5.778641 11.756483 -8.396645 4.372832 0.817543 4.055556 0.387250 -9.231510 -3.653933 -9.801586 0.065222 2.609270 -5.835345 0.865088 -8.519673 2.220172 -1.771542 -3.568452 4.805063 3.088221 8.165060 2.804032 0.962722 -2.353986 -6.836170 3.299047 -0.874495 6.891743 5.818884 -5.053985 -1.907301 2.929413 -2.754549 -5.841599 2.454442 1.260484 1.989415 -2.478514 3.050082 -2.086684 -1.452024 -2.481845 -2.478980 6.363977 -5.463578 3.549319 -3.385095 -0.775609 -5.449428 -2.781293 -0.115269 -7.200565 4.316598 6.373250 -2.010750 -1.317135 -1.597543 1.364453 -4.275147 -8.586673 -0.096977 -1.803230 3.599586 9.358786 -4.756178 0.336196 0.115849 -1.020369 -0.896440 9.120097 1.401951 3.597880 8.797110 12.114232 0.690988 -6.000760 -3.295228 1.346529 6.530505 8.914136 6.637139 -10.305335 -5.470172 -1.936362 1.705676 -12.537491 3.544353 3.077591 5.443586 3.141158 -9.915208 2.403134 -4.162653 10.503303 5.387033 4.658596 2.145518 -0.590104 -6.404432 10.356370 17.358571 -3.209359 5.770578 -4.357752 -5.248294 10.207629 -8.074669 5.508051 3.343445 0.544149 2.058264 -6.321490 -2.899618 8.338521 4.334110 4.994312 7.963009 1.877346 1.203976 -13.952294 -9.769098 1.495420 6.900010 -1.740064 14.569200 -7.325794 -4.761597 -2.517381 9.678258 -0.946890 -2.766990 -0.140219 -4.430399 4.987014 -11.620892 -11.049490 13.373860 13.222253 0.909747 0.617733 9.198624 8.553923 -4.837716 -3.707625 -4.265084 4.771572 0.560364 -1.680701 0.289834 0.449671 -8.570912 -4.502931 1.772487 3.081556 5.110398 -3.578961 -7.031632 3.567318 -10.867064 -6.232252 2.996951 -8.404262 -3.189676 1.116306 -0.362986 0.957566 3.259138 -3.663663 -1.656337 3.939380 -5.729655 0.133123 4.520358 7.763117 3.453782 9.616036 6.946868 2.157884 9.206018 6.355981 -3.675818 17.571995 -1.225590 1.769543 3.355417 4.846606 0.080165 3.926450 2.263999 -4.380384 -4.359925 -10.570343 5.408212 0.409207 6.542962 -8.901827 -6.277792 -9.211525 -5.286072 8.141579 5.622931 -1.239088 16.538733 -0.303358 0.520988 -16.759944 -1.519718 6.500838 -0.171958 6.963095 5.209604 -5.970415 -12.675858 -4.132193 -2.640432 1.290517 -4.170070 -6.394189 -5.901552 -3.826862 6.948963 -4.256415 3.827273 10.113248 -0.231096 3.259503 -1.691434 -0.494098 -2.631450 -3.877609 3.144638 3.159542 -9.746979 10.905977 -2.586203 20.211803 -5.202151 6.430337 -7.359036 1.616422 -0.334818 -1.888980 -0.783642 11.965941 5.885104 2.578613 0.695684 1.016805 -5.019518 6.734091 -PE-benchmarks/magic-square.cpp__main = 0.149606 0.326035 0.653943 0.123126 -0.355725 -0.908579 -0.244531 -1.074238 0.297731 0.159547 0.542638 -0.140321 0.401115 0.038514 -0.021465 0.197530 0.262654 -0.046763 0.160621 -0.331577 -0.555475 0.650221 -0.067487 0.071166 0.182912 -0.637007 0.620413 0.290437 0.280827 0.538765 0.151410 0.002276 -0.154825 0.306341 -0.129727 0.115163 0.028770 0.280384 -0.286263 0.316473 0.048537 -0.085649 0.506293 0.150373 0.332932 0.588245 0.107500 0.275536 -0.152406 -0.216706 -0.172799 0.188511 -0.280650 0.247822 -0.369913 -0.136983 0.172893 -0.169224 0.003285 0.001586 -0.076140 -0.209891 -0.421233 0.123083 -0.563986 0.076518 -0.372946 -0.475584 -0.067704 -0.030754 0.346582 0.066872 -0.206065 -0.010488 -0.824076 0.002031 0.179221 0.189868 0.359079 -0.200239 -0.080093 0.014570 -0.626748 -0.532270 0.486885 0.425089 0.316288 0.119202 -0.307891 -0.311405 -0.097534 0.029772 0.389936 0.428853 -0.065724 0.082492 -0.263553 -0.168772 -0.478289 -0.861435 0.220359 -0.208293 0.324511 -0.077108 -0.041840 -0.094858 0.045174 0.160042 -0.112668 -0.492366 0.062395 -0.371628 0.170642 0.731214 0.001897 -0.268606 -0.341582 -0.314078 0.029135 0.441187 0.297151 -0.098612 0.596395 0.428557 0.161478 -0.400990 -0.419355 0.093079 0.108053 0.260552 0.305812 -0.506665 -0.362451 0.120421 -0.414276 -0.803998 -0.171728 0.058670 0.334159 -0.494510 -0.103202 0.458891 -0.420155 0.096405 0.443736 0.181793 0.199529 -0.067916 -0.372837 0.333305 0.765724 -0.179422 0.318914 -0.436217 -0.338289 0.482116 -0.062490 0.115331 0.137424 -0.236402 -0.290472 -0.099153 0.205908 0.451067 0.050827 0.168925 0.311840 0.201521 -0.413807 -0.359823 -0.629856 0.114099 0.747091 0.098413 0.747031 -0.562821 -0.068429 0.002269 0.547901 0.075658 -0.176692 0.182109 -0.250652 0.270601 -0.772891 -0.583089 0.706251 0.513085 0.427041 -0.124407 0.157652 0.313953 -0.338756 -0.404760 -0.307544 0.270212 -0.010955 -0.664030 -0.322580 0.055012 -0.541734 -0.015115 -0.071324 0.312492 0.332667 -0.020651 0.157142 -0.445970 -0.365785 -0.521893 0.286892 -0.292815 -0.013367 0.157720 -0.084702 -0.154155 0.160509 -0.105767 0.023976 0.112459 -0.254861 0.188875 0.244089 0.193987 -0.052956 0.830263 0.540027 -0.252007 0.193074 -0.009577 -0.193498 0.744200 -0.157260 0.276622 0.094996 0.449189 0.005192 0.170136 0.511168 -0.205992 -0.396008 -0.565037 -0.097175 0.319771 0.171097 0.012437 -0.261108 -0.914768 -0.065984 -0.080153 0.986110 0.026559 0.765863 -0.062380 0.335650 -0.593197 0.142163 0.055907 -0.130887 0.319154 0.158301 -0.366350 -0.128045 -0.134626 -0.616073 -0.525634 -0.130725 -0.268120 -0.391442 -0.031662 -0.120587 -0.190606 -0.033085 0.377323 -0.104987 0.173540 -0.243095 -0.014504 -0.343246 0.016844 0.725256 -0.151072 -0.384783 0.280217 0.122732 1.110260 0.125469 0.453259 -0.091983 0.056242 0.008358 -0.456138 -0.271446 0.619392 0.318433 0.100443 0.130937 0.060742 0.273501 0.315630 -PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 1.710934 1.393134 3.063376 0.362272 -2.455912 -3.831615 -1.170230 -7.140641 2.431034 0.035787 1.735611 0.011804 0.828020 -1.264439 -0.175119 2.312891 1.244275 -0.202189 0.420993 -1.709660 -0.931060 2.903121 -1.784176 0.442571 0.845554 -4.159026 0.861717 1.786014 3.029268 0.233106 1.415488 -0.883103 -1.827300 1.341922 0.141228 0.548590 1.745824 -0.221364 -4.121519 0.914587 -1.231679 0.679581 2.155864 -0.602314 2.797877 -0.475953 1.712129 2.079792 -0.339328 0.039477 -1.385480 4.510949 0.024458 1.380011 1.184967 -1.061008 -0.995494 -1.620531 -0.378952 2.928463 -1.480704 -0.756919 -1.087171 0.475501 -1.659969 0.324490 -0.759078 -1.056605 0.672860 0.464655 1.749541 -0.112497 -0.296519 0.497255 -4.200068 -0.059414 0.428114 2.039276 1.649556 -0.234261 2.223566 -0.243708 -1.664516 -1.703673 1.694114 3.582584 0.439615 -0.406757 -2.213874 -0.909795 -0.709277 -1.657547 1.780568 0.815668 -2.949465 -0.767618 -2.883549 -0.875767 -2.507492 -3.833015 1.021311 -0.295933 1.724217 -2.340091 0.725173 0.100625 1.643822 0.163433 -0.336973 -1.060317 0.260252 -0.180084 1.812548 5.369690 0.068818 -1.220637 -1.925889 -1.225436 -2.720575 1.246714 1.252082 0.251660 2.427762 3.248636 1.392586 -1.508151 -2.910947 1.218182 0.709176 2.179941 1.510005 -2.927359 -0.933015 0.642003 -0.449021 -3.757634 -0.672443 -0.287344 2.061545 -0.669851 1.496144 -2.000817 -1.095645 2.296242 -0.036529 -0.907556 0.440757 -0.229924 -1.580713 2.627559 3.636719 -0.028455 1.231156 -2.279491 1.029265 -0.532332 -0.987866 0.698449 0.680658 -0.818529 -1.182509 -0.151849 -0.309814 1.178018 0.097639 -0.156446 -0.106688 1.533029 -2.997592 -2.611176 -3.288910 0.969387 2.033970 -1.266931 2.052215 -1.948701 -2.549488 -0.929133 3.122044 0.083727 -0.735655 2.483762 -3.438847 1.810163 1.196870 -1.875753 3.634095 4.887907 1.235494 -1.157575 2.162470 1.837757 -5.582995 -2.204871 -0.527366 0.377910 0.680446 -5.795501 -1.670633 0.496262 -2.146616 -0.964741 0.261216 1.491107 1.352026 2.876208 2.940836 0.237268 -1.537716 -2.122524 2.886619 -0.013160 0.452834 0.991882 0.260416 -0.235402 2.416591 -2.197715 -0.299834 1.616630 -1.131588 1.623379 1.208033 1.175355 -0.537101 2.828267 1.568020 1.073630 5.647426 0.358125 -1.796581 2.120653 0.278962 1.941206 0.580027 -1.148067 -1.376411 0.794053 0.769298 -1.478154 -2.068240 -2.242717 -1.191359 -0.666950 2.080685 1.432231 -2.798219 -3.058897 -1.234168 0.527914 0.746113 0.310136 2.747525 -1.367509 0.875665 -4.102379 0.286348 0.876924 -0.143174 1.663498 0.262206 -1.637739 -1.227591 -0.060079 -2.797757 -4.645238 -0.732895 -1.899043 -1.868136 -2.401757 3.674822 -0.685218 -0.455917 2.561150 0.157437 1.562870 -2.792521 0.225358 -1.259099 -0.059822 2.607958 -0.924182 -2.518965 1.244868 0.284698 6.688247 0.210733 0.855755 -0.449893 -0.686395 0.365325 -2.638436 -0.525395 2.547093 1.561021 0.893884 -1.429416 -0.498598 -0.706332 1.517481 -PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = -1.420759 1.321312 6.321906 4.447670 -4.091220 -5.475556 -2.730550 -7.133641 3.329128 -0.034290 4.432823 0.403053 1.244157 -1.566940 0.448140 -1.077808 1.324043 -1.268540 -0.246093 -2.174322 -1.744388 4.263930 2.082704 -4.812222 0.804304 -5.896664 3.739899 3.120637 1.929791 2.973853 0.523429 -0.590437 -2.059851 3.519115 -1.679059 0.073926 1.392475 0.733293 -2.398786 -0.387283 2.106289 2.705333 4.051218 -0.194006 4.170320 1.675469 2.579767 1.611821 -3.677275 -0.869654 -1.750285 4.933750 -3.012711 2.567060 1.167422 1.637555 1.273778 -4.475223 -1.037453 -3.772488 -0.232224 0.143943 -2.367299 0.052121 -3.299875 0.831844 0.100452 -2.190469 2.377248 -0.202124 3.625863 0.362591 -0.103730 -0.878632 -3.017318 0.895900 0.306427 2.839809 2.972733 -0.777165 -0.156481 0.322912 -2.184405 -2.773737 1.421742 0.575364 1.336326 0.142694 0.016544 -1.281672 0.495598 -1.791594 0.193451 2.522530 -2.512962 0.719844 -1.057020 -1.248547 -3.303713 -2.271876 0.718982 -2.341747 2.151257 2.354169 -2.007976 -0.396324 -0.199770 0.591767 -2.007697 -3.528811 0.773870 -1.394205 1.850301 4.855186 -1.914401 -1.079009 -0.487578 -1.475608 -0.745105 4.049475 0.791594 1.168185 3.793236 5.572911 0.803991 -3.045343 -2.031181 0.382193 2.994470 3.656545 2.940225 -4.695910 -2.371511 0.353692 -0.502166 -6.160970 0.404868 0.924503 3.795415 1.561235 -4.480874 1.418494 -2.168205 4.240031 1.594667 2.173456 0.728277 -0.392406 -3.597352 4.229108 6.622794 -1.245370 3.027568 -1.698100 -2.386019 3.545491 -2.834202 2.062506 1.507425 -0.905573 0.371533 -1.998148 -0.551071 3.634892 1.572255 1.401020 2.017082 1.393399 -1.456925 -6.433730 -5.814012 1.070635 3.922028 0.020180 6.646426 -4.015936 -2.744056 -1.445502 5.397574 -1.462360 -1.766808 0.836058 -2.558588 2.700312 -4.472698 -5.023591 6.938717 6.532824 0.977297 0.088660 4.313297 2.488640 -2.668848 -2.145319 -2.282330 1.647673 1.369321 -1.471062 -0.047454 0.036282 -3.887801 -2.046608 0.801180 1.811164 2.288072 -1.872189 -1.390963 0.603758 -4.003190 -3.240853 1.612072 -3.124095 -0.761747 1.136721 -0.290847 0.310086 2.115069 -1.209611 -1.580535 0.831892 -2.511337 0.434274 1.660062 3.690887 1.258380 5.288472 3.619521 0.136501 5.047132 2.249049 -2.209184 8.214347 -1.724154 1.545424 1.224111 2.720816 0.509495 1.585138 2.184166 -2.136848 -1.458859 -4.638413 1.331486 0.201570 3.113533 -5.389644 -3.470312 -5.753908 -2.080619 2.320652 2.608223 -1.081913 7.412819 -0.717542 0.127773 -8.227623 -0.567058 3.502106 -0.294860 2.568164 1.890874 -3.107638 -6.758659 -1.339177 -2.949491 -0.516928 -1.628790 -2.433571 -2.619288 -1.979665 3.741473 -1.770308 1.484905 5.188064 -0.490240 1.378463 -1.414243 -0.065560 -1.106667 -2.280798 1.691728 0.388789 -4.205612 5.116894 -0.278073 9.750824 -1.150767 3.055719 -2.806990 1.187972 -0.274857 -2.247108 -1.025096 5.236837 3.190047 0.975278 0.231268 0.864186 -2.243259 3.379393 -PE-benchmarks/channel-assignment.cpp__main = -0.428382 0.366424 1.800386 0.341930 -2.008557 -3.716598 -1.061676 -4.462206 1.047847 0.516301 2.904888 -0.223881 1.508133 -0.537804 0.853777 1.793905 1.642092 -1.038950 0.714536 -1.440371 -1.617036 2.555778 0.354457 1.120143 0.358650 -1.113064 0.587400 0.935459 0.885170 0.982961 1.033298 -0.519927 -0.910756 0.604910 0.284070 1.789522 0.410407 0.822732 -1.547951 0.716859 -0.658952 -2.044364 1.974018 -0.491792 2.206753 0.119812 2.378917 1.045967 -1.714121 -1.167652 -1.700189 2.636871 -1.888681 0.439228 -0.164291 -1.452706 0.479390 -0.167956 -0.852552 -0.324256 -1.340160 -1.970896 -1.775416 0.491978 -1.229286 1.078980 -1.607635 -1.055239 -0.115401 0.647745 1.649491 0.605270 -0.065666 2.015552 -2.834808 -0.078899 0.536066 0.918830 0.996398 -0.481662 0.602547 -0.350315 -1.586658 -1.601730 2.450122 0.824260 1.229197 -0.237728 -2.428751 1.252005 -0.732266 -0.145472 1.168646 0.485224 -1.602200 0.023085 0.248846 -1.002718 -2.468499 -3.461110 0.639059 -0.821396 0.933731 -0.198525 0.267637 -0.752106 -2.413125 0.112280 -2.218673 -2.611949 0.198203 -1.018478 -0.366625 2.307342 -1.763824 0.268359 -1.028096 -0.288109 0.001332 0.879905 1.743202 0.953114 1.486422 2.208535 0.657378 -1.508440 -1.763694 -0.117600 2.187355 1.102822 0.982199 -0.869773 -1.701859 0.905554 -1.802800 -2.921613 -1.435089 2.076981 1.929121 0.389263 -0.357406 0.046271 -0.889442 1.725844 1.679313 0.684062 0.160929 0.013980 -1.745173 1.595468 1.982834 -0.962113 2.430517 -0.236263 0.295946 1.749816 -1.485156 0.122215 1.589573 -0.516894 -1.602664 -0.449786 -1.159811 1.137973 1.871292 0.765242 -0.360824 1.332054 -1.533926 -2.253521 -2.836077 0.448239 3.247159 0.029819 1.232904 -2.020075 -1.288115 0.818103 1.592137 -0.195958 -2.307127 0.708067 -1.579800 1.258532 -2.563906 -2.124829 3.710918 2.488445 1.711867 0.476439 1.071125 2.313359 -3.867766 -1.024002 -1.041082 1.566026 -0.601643 -4.333230 -1.619457 0.464991 -2.461917 -0.625955 -0.775170 1.452645 -0.113719 1.122686 1.974155 -0.016827 -0.775656 0.165002 1.076755 -0.610509 -1.174118 0.178364 -0.329821 0.943783 0.580390 -0.783483 0.995938 0.451150 -2.452947 0.315847 0.856035 1.358048 0.952885 4.376647 2.864821 -0.528382 2.138352 -0.787975 -1.464178 0.723246 -0.398095 1.205096 -0.353435 1.021016 0.118068 0.057318 2.507258 -0.827861 -2.647589 -1.647777 -1.054753 1.142733 1.849369 0.997734 -2.311417 -3.530590 0.235972 1.067472 2.939156 -0.723339 2.381302 -1.009641 1.049133 -3.199289 0.491363 -0.110529 -0.365410 1.152750 0.144408 -0.834087 -0.358894 -0.747748 -2.288764 -2.436517 -0.099742 -0.551808 -0.932205 -1.622730 1.396352 -1.581761 -0.974721 -0.088653 -0.087227 2.014380 1.162069 -0.406325 -1.227604 1.155011 3.018804 -0.157731 -1.527819 2.472414 0.788426 5.877689 0.508652 0.542435 -0.322350 0.145695 0.279486 -1.110959 -0.347753 2.295600 3.014613 -0.006130 -0.258875 0.266289 0.626531 0.955390 -PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = -2.298772 0.482805 7.612338 5.299020 -4.208001 -6.225302 -3.178950 -8.000950 4.559545 0.558240 5.349800 1.367670 1.748436 -1.881673 0.714382 -1.030997 0.879310 -2.158514 -0.206703 -2.277002 -0.738132 6.322694 3.904624 -6.267163 0.426760 -7.664432 4.407392 3.264914 2.779299 4.708162 0.120566 -0.744807 -1.805854 4.279067 -2.342184 0.594100 0.952081 1.257679 -2.269492 -0.650123 2.738079 3.404895 4.293997 -0.198649 5.959021 1.526628 3.672801 1.231037 -3.801444 -1.413906 -2.460883 5.743313 -4.558944 3.090489 0.274180 2.560164 0.588328 -4.939218 -1.825549 -6.518393 0.179862 1.003211 -3.306211 -0.028759 -4.078769 1.440014 0.140613 -2.325619 1.981364 -0.334598 4.856302 1.012945 0.386671 -1.605623 -4.533157 0.948243 -0.521434 3.106734 3.427622 -1.189653 -1.915168 0.142673 -2.071610 -3.297265 1.714971 0.910109 0.626950 0.229649 0.733610 -0.984322 -0.277995 -1.617358 -0.505489 3.483732 -3.469727 1.515847 -0.103497 -0.769185 -2.623749 -1.312951 0.770197 -3.454363 2.306211 3.131645 -1.169435 -0.500423 -0.358986 0.812130 -3.065019 -4.523011 1.064592 -1.042050 1.368757 4.958963 -2.531779 -0.295237 0.200228 -1.093623 -0.456920 5.219849 0.764980 1.994262 4.618185 6.598479 0.927878 -3.937590 -1.866771 1.429410 4.378484 4.472811 3.087271 -5.382095 -2.836718 0.248430 -0.057194 -7.255113 0.680476 2.454633 4.337132 1.560437 -5.753874 1.874660 -2.207708 5.722879 3.141126 2.490127 1.003786 -0.151645 -4.693332 5.122719 9.616300 -1.351546 3.595075 -2.092304 -2.832831 5.920877 -4.719160 3.213130 1.616232 -0.299275 0.590643 -3.004351 -0.762506 4.573851 2.139161 2.713491 2.348785 1.663538 -0.901157 -8.083525 -6.824695 -0.458679 4.899787 0.656178 8.562604 -4.529193 -2.934999 -1.659610 5.682355 -0.997771 -2.010673 0.700799 -2.998532 3.253026 -7.610105 -6.242654 8.808893 8.481747 1.979605 0.761245 5.690217 3.837620 -1.800768 -2.207286 -2.125565 2.281560 1.548841 -0.853918 0.382868 -0.204433 -5.137979 -3.480188 0.752982 1.765441 1.938092 -2.018383 -2.113300 1.556176 -4.775509 -3.596267 1.447889 -4.512108 -1.770684 0.667664 0.148343 0.121732 1.632758 -1.583074 -0.809232 1.806279 -2.891488 0.770760 2.406748 3.666447 1.972402 5.266692 5.101266 -0.200749 5.355192 2.589052 -2.177142 10.226772 -1.981545 1.317656 1.682429 3.096925 0.922829 1.784742 1.771387 -2.550626 -0.965099 -5.379972 2.578197 0.828602 4.165643 -6.379817 -4.774844 -5.813176 -2.197908 3.302183 3.329387 -1.313296 9.437252 -1.169753 0.908816 -10.936331 -0.421991 4.430755 -0.038852 3.012754 2.622226 -3.274778 -8.641101 -1.829181 -2.318864 0.206809 -2.372743 -3.655203 -2.892780 -2.657677 4.010236 -3.136202 1.891537 5.934184 -0.815298 2.533158 -2.001219 -0.064989 -1.877981 -2.172255 1.040272 1.298442 -5.066952 5.853743 -0.914142 11.496550 -2.531319 4.145154 -3.441646 2.947776 -1.522955 -2.482169 -0.743976 6.729156 3.867300 0.961137 0.541044 0.438931 -2.509896 3.449578 -PE-benchmarks/longest-palindrome-substring.cpp__main = 1.037489 1.706200 4.095141 1.324841 -4.046576 -4.708594 -1.461123 -7.408803 2.846072 0.941560 2.055175 0.366433 0.873540 -2.176757 -0.553697 2.780760 1.225832 -0.234068 -0.277763 -2.332349 -3.671124 2.591769 -0.634842 -0.165240 1.962519 -4.771554 3.415383 0.610330 2.648000 1.543002 2.114315 -0.561859 -1.694212 2.694072 1.844813 2.823834 0.882443 0.684771 -2.904588 1.800231 0.204806 -0.845637 2.624256 1.294935 4.043467 1.344201 1.906930 1.746016 -2.436442 0.142803 -2.288973 3.891941 -2.334581 2.134061 -0.602610 -0.132737 -0.410337 -2.269577 -0.104273 0.908759 -2.305759 -2.459924 -2.192990 0.311636 -3.145431 0.332816 -1.799773 -2.025147 -0.506448 1.635678 2.917319 1.262095 -0.517199 1.204928 -4.155272 -0.147690 1.036504 2.102044 3.531248 -1.168268 0.883266 -0.819703 -2.533298 -3.030045 3.548604 1.329676 1.324669 -0.094148 -0.708239 -1.696730 -1.623386 -1.514371 2.265069 2.031567 -3.458225 -0.724927 -2.456995 -1.103761 -2.683391 -5.173742 0.780571 -1.216509 1.904345 -1.108136 -0.683473 0.450090 0.933975 0.638229 -0.675476 -1.085793 0.467749 -1.140356 1.543882 4.961571 0.526712 -1.961373 -0.974566 -1.463108 -1.250082 1.823339 1.935055 -0.024360 4.853711 3.778803 2.868615 -1.529823 -2.319673 0.530040 0.592915 2.561815 2.194827 -3.256240 -2.132418 0.999685 -0.043272 -4.886160 -0.121013 0.099267 2.324356 -0.548909 -0.149114 -0.866149 -1.114365 1.547251 0.670345 -0.348417 1.109992 -0.397346 -2.296679 2.989877 5.474626 -0.488296 1.258037 -2.620557 0.551271 1.747960 -1.828117 0.267466 0.495828 -1.700706 -0.683080 -0.875229 -0.762612 2.392730 0.004442 -1.208926 0.957224 2.251556 -3.593234 -3.760074 -3.292739 0.606789 3.838244 -0.704181 3.744192 -3.242877 -0.677235 -1.466940 3.564263 0.667807 -0.257572 1.655354 -2.955038 2.109621 -1.179576 -3.352209 5.931301 4.988956 1.842174 -1.174875 1.721364 2.946698 -5.372973 -2.994278 -1.704751 -0.372281 1.320929 -5.131162 -3.114122 0.887615 -3.599017 -1.431427 0.457530 1.512321 2.679334 1.278589 1.258951 0.261761 -1.498804 -3.033329 2.347370 -1.283396 -0.510771 1.181379 0.570857 0.447604 2.276135 -1.180839 -0.274853 0.499658 -1.248107 1.231078 1.773284 3.160272 0.010974 4.385865 3.512513 -0.198990 3.675847 0.961176 -1.932699 3.329713 0.199060 2.035395 1.434025 0.092765 -0.345103 0.883620 2.431184 -2.038781 -1.891611 -2.984973 -0.696943 0.005040 1.444362 0.144168 -1.780237 -4.760084 -0.959812 0.481464 1.666922 -0.057304 4.157318 -0.545920 0.562076 -4.669514 -0.103499 2.261869 -0.338049 2.747927 1.345411 -2.440075 -1.470794 -1.492534 -3.046070 -3.086406 -1.087853 0.528731 -2.126077 -0.827965 2.598285 -0.719635 0.319917 3.145549 0.195080 1.931332 -2.877746 1.045470 -2.087606 0.129022 3.966917 -0.155409 -2.874339 2.524834 0.633531 7.799015 0.480904 1.104421 -1.018952 -1.372049 0.594701 -2.203721 -1.394173 3.412696 1.872761 1.575320 0.328084 0.103285 -0.100230 3.563763 -PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = -0.131087 0.608062 2.473411 1.516737 -1.414713 -2.053200 -0.979960 -2.766779 1.290721 0.008053 1.489388 0.073926 0.473245 -0.485513 -0.059949 -0.374100 0.235349 -0.373804 0.044450 -0.726023 -0.901882 1.815249 0.555157 -1.601949 0.339998 -2.609467 1.864447 1.154427 1.040313 1.454960 0.050091 -0.263689 -0.621437 1.379336 -0.604751 -0.137700 0.309551 0.375594 -0.857431 0.166840 0.868473 0.937409 1.512599 0.007927 1.342621 0.886788 0.704981 0.584684 -1.031319 -0.244166 -0.726400 1.487729 -1.124230 0.969994 -0.022893 0.567502 0.360017 -1.523415 -0.341588 -1.067530 -0.047561 0.085781 -0.909037 0.070666 -1.513254 0.217707 -0.252715 -0.978453 0.808533 -0.065157 1.326306 0.324049 -0.064686 -0.539270 -1.517949 0.398408 0.182068 1.080853 1.127941 -0.430225 -0.100021 0.293678 -1.039972 -1.128757 0.568433 0.526160 0.508427 -0.059839 0.158587 -0.840531 0.108280 -0.412981 0.200590 1.155844 -0.758411 0.370106 -1.028997 -0.297580 -1.076135 -1.182245 0.231791 -0.959332 0.905661 0.756774 -0.790381 -0.075813 0.536099 0.319247 -0.380884 -1.410395 0.120377 -0.593771 0.850741 2.071085 -0.336653 -0.602617 -0.255890 -0.638169 -0.349004 1.511951 0.262695 0.241997 1.665018 1.975529 0.421497 -1.194987 -0.857402 0.354448 0.782513 1.367550 1.100257 -1.842480 -0.845115 -0.075199 -0.058483 -2.518217 0.299562 0.040694 1.200742 -0.022414 -1.378472 0.747297 -0.974395 1.387909 0.766565 0.673712 0.470993 -0.121247 -1.291503 1.663482 2.841480 -0.385400 0.885297 -1.141356 -1.154679 1.550709 -0.885723 0.816534 0.289527 -0.253805 0.208143 -0.873242 0.105843 1.472415 0.153551 0.575088 1.119820 0.432492 -0.536817 -2.262266 -1.999113 0.399678 1.593324 0.044544 2.714188 -1.581766 -0.771893 -0.491867 2.046393 -0.230837 -0.334758 0.364368 -0.922233 1.023074 -1.954106 -2.042137 2.417756 2.337948 0.329417 -0.024180 1.441569 1.001917 -0.756035 -0.900950 -0.960862 0.600178 0.607719 -0.676489 -0.178013 -0.002988 -1.396164 -0.642412 0.437769 0.613690 1.139841 -0.766499 -0.716531 -0.090510 -1.624452 -1.644912 0.931326 -1.435502 -0.122288 0.486256 -0.120389 -0.203198 0.870297 -0.425520 -0.520288 0.365206 -0.649034 0.378490 0.693983 1.130202 0.144399 1.774667 1.418265 -0.084759 1.535501 0.976327 -0.618918 3.341289 -0.669505 0.515652 0.647394 1.045052 0.038564 0.802959 0.768882 -0.835651 -0.490084 -1.896562 0.575349 0.090503 0.917002 -1.752198 -1.058581 -2.152257 -0.874018 0.727456 1.223167 -0.070201 2.903645 -0.168522 0.166715 -2.888848 -0.227452 1.262321 -0.040726 1.273661 0.743722 -1.159748 -2.237117 -0.562589 -1.006749 -0.147088 -0.781195 -1.116676 -1.131777 -0.553710 0.973982 -0.539916 0.674439 2.015492 -0.213026 0.432166 -1.000459 0.020269 -0.633952 -0.820968 0.727965 0.148102 -1.519855 1.689296 -0.182959 3.466456 -0.460603 1.259740 -1.058039 0.438128 -0.134984 -0.998537 -0.433919 2.032356 0.831753 0.489333 0.111220 0.230966 -0.674091 1.274359 -PE-benchmarks/egg-dropping-puzzle.cpp__main = 0.037118 0.274013 1.242467 0.522374 -0.483757 -1.297791 -0.614273 -1.682036 0.838864 0.195771 0.818348 -0.067336 0.507458 -0.133409 -0.108805 0.246572 0.201052 -0.453870 0.315321 -0.436136 -0.608069 1.790885 0.440779 -0.366697 0.113666 -1.813331 0.993747 0.337291 0.809169 1.189144 0.011252 -0.068882 0.041881 0.704006 -0.370623 0.206745 0.005439 0.368943 -0.507908 0.437687 0.250563 0.331112 0.844673 0.104880 0.773830 0.744413 0.392940 0.312050 -0.261210 -0.312602 -0.543405 0.680368 -0.729888 0.425394 -0.503253 0.116325 0.199272 -0.598448 -0.358595 -0.417917 -0.271528 0.045348 -0.657024 0.217842 -1.031631 0.343012 -0.537998 -0.523910 0.020746 0.174788 0.866153 0.546661 0.085535 -0.224617 -1.396500 0.357904 0.040343 0.533759 0.553930 -0.409114 -0.374767 0.278438 -0.810799 -0.893448 0.695308 0.690198 0.256607 0.006080 0.058905 -0.543861 -0.370798 -0.072932 0.233780 0.790887 -0.257254 0.293175 -0.339953 -0.098596 -0.534878 -0.976228 0.036191 -0.609756 0.450030 0.269246 0.119306 -0.137825 0.255434 0.211571 -0.299646 -0.946013 0.200021 -0.317357 0.093044 1.296283 -0.140472 -0.125086 -0.297360 -0.272809 -0.209243 1.028505 0.262664 0.210619 1.049097 1.023457 0.153801 -0.605985 -0.458775 0.337240 0.550019 0.468647 0.723944 -1.049685 -0.686058 -0.004845 -0.044526 -1.356167 -0.200611 0.410096 0.573716 -0.552829 -0.500743 0.752412 -0.462945 0.754775 0.824262 0.035977 0.361418 -0.203063 -0.771861 1.084040 2.016871 -0.269883 0.551721 -1.046582 -0.743544 1.457882 -0.718618 0.526358 0.070435 -0.073268 -0.330195 -0.514350 0.415630 0.819197 0.035834 0.396667 0.665603 0.249346 -0.178957 -1.051319 -1.154108 0.046883 1.011097 0.028540 1.730966 -0.844043 -0.259091 -0.149400 0.889721 0.290716 -0.141554 0.244780 -0.596077 0.464763 -1.811955 -1.279689 1.671720 1.337626 0.592036 0.109535 0.680682 0.953929 -0.298428 -0.642164 -0.442904 0.597623 0.209217 -0.829747 -0.402883 0.059159 -0.891860 -0.504358 -0.064018 0.410534 0.657946 -0.137290 -0.242018 -0.518560 -1.019695 -0.880234 0.591292 -0.916697 -0.266736 0.273655 -0.039423 -0.361604 0.399776 -0.139887 0.175945 0.337511 -0.361856 0.272030 0.502066 0.432174 0.011194 0.885352 1.340135 -0.234168 0.631557 0.352376 -0.212846 1.670723 -0.348203 0.251226 0.204485 0.536851 0.003979 0.347473 0.463278 -0.338804 -0.494366 -0.988443 0.599668 0.353168 0.328212 -0.561825 -0.790275 -1.236990 -0.365121 0.341754 1.283519 0.179358 1.646917 -0.286562 0.322006 -1.742786 0.165259 0.469682 0.126780 0.741514 0.457459 -0.537723 -0.798682 -0.369196 -0.654847 -0.356927 -0.596223 -1.069387 -0.627294 -0.334721 0.301954 -0.597040 0.241004 1.128398 -0.067340 0.488317 -0.435135 -0.113369 -0.934088 -0.111442 0.644495 -0.025689 -0.590287 0.677597 -0.182948 1.857216 -0.354384 0.765364 -0.459456 0.442057 -0.166363 -0.799638 -0.160038 1.233019 0.400541 -0.053075 0.306520 -0.117986 0.155065 0.551521 -PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = -3.288770 2.985144 18.135971 11.422238 -8.621340 -12.989542 -5.963194 -16.075338 7.733437 -0.177485 10.897843 1.323060 2.449379 -3.079820 2.346226 -1.235546 0.766097 -3.505823 1.207481 -4.252134 -1.652159 11.640368 9.377200 -12.794974 0.969360 -16.507029 10.018061 8.437875 8.445929 8.998380 -0.107752 -2.801489 -2.705345 9.925947 -5.009971 -0.690197 0.030358 2.276504 -5.685439 1.654739 4.162474 8.881537 7.054329 -1.421880 10.298986 4.718714 10.640708 2.959210 -8.104010 -1.782510 -7.331827 15.693082 -10.406517 5.637072 1.420800 5.031875 0.036006 -10.724819 -4.305937 -12.469751 0.289687 3.439157 -7.472302 1.039504 -10.905440 2.616613 -2.787183 -4.739865 6.008722 3.822611 10.105223 3.373989 0.967038 -3.421261 -8.304968 3.978009 -1.182827 8.764252 7.173450 -5.562666 -1.904977 3.600466 -2.843769 -6.994474 2.851294 0.486952 2.435754 -3.158475 3.396040 -2.688511 -1.370676 -3.009871 -3.327751 7.214878 -7.726208 5.315825 -4.504555 -0.890269 -6.931229 -3.482851 -0.466983 -8.872186 5.213588 7.209094 -2.015079 -1.623210 -2.578368 1.523399 -4.869875 -11.288078 -0.715097 -1.317404 3.931757 11.758726 -6.437045 0.885112 0.968081 -0.648527 -1.994370 11.140322 2.306297 4.742765 10.446337 14.681097 0.934271 -7.244848 -3.386002 1.272316 8.218796 11.396152 8.487663 -11.748135 -7.104228 -2.317243 2.586665 -15.864481 4.778330 5.108480 6.823428 5.115423 -12.402349 2.295751 -4.887073 12.942947 6.183862 5.766500 2.927947 -1.209977 -7.557785 12.377477 21.409448 -4.296710 7.293536 -4.382960 -7.018615 13.259121 -10.312627 6.882459 4.160621 0.774410 3.037436 -7.803510 -4.154935 10.421845 5.664469 5.818021 10.060446 2.049635 1.518318 -17.940920 -11.985127 1.831914 7.737692 -2.339924 17.124188 -8.429637 -5.718591 -2.944841 11.601764 -1.702189 -3.600330 -0.563641 -5.729185 6.079168 -14.366644 -13.599821 16.305790 16.733492 0.555639 0.846903 11.502248 10.903795 -6.187163 -4.827211 -5.597709 5.772573 0.306474 -1.948193 0.080484 0.469565 -11.017085 -4.724496 2.337429 3.726513 5.755271 -4.251270 -8.794561 4.469223 -13.893072 -7.516211 3.238001 -10.254522 -3.315461 1.262798 -0.504696 1.400081 3.974866 -4.906736 -2.370005 4.685268 -7.576187 -0.027099 4.959872 9.981757 4.632181 12.651141 8.057064 3.018917 11.897761 7.857982 -5.244983 22.434514 -1.842616 2.173665 3.486815 6.666374 -0.398886 5.098447 2.496249 -5.430193 -5.769457 -12.833950 6.126339 0.632141 7.745235 -11.034843 -8.068619 -11.055661 -6.496723 10.244963 6.469257 -1.752282 20.288930 -1.046560 0.603941 -21.179762 -1.824259 7.681893 -0.520012 9.465231 6.593212 -7.410715 -15.728212 -5.331473 -2.702908 2.438342 -4.996882 -8.084863 -6.674326 -4.367130 8.704272 -5.578303 4.721531 11.678758 -0.362378 4.556254 -1.383235 -0.567646 -2.840852 -4.661989 4.441736 4.300128 -12.260640 13.586130 -3.038659 25.145455 -6.084552 8.100708 -9.430591 1.135609 0.050374 -2.255588 -1.350423 14.841872 8.023322 3.186086 0.651029 1.538190 -6.486812 7.743565 -PE-benchmarks/palindrome-partitioning.cpp__main = 0.233485 0.312123 0.919544 -0.209732 -0.392724 -0.946018 -0.388664 -1.832559 0.561417 0.275335 0.786269 -0.205981 0.472284 -0.038382 0.002575 0.575073 0.288997 -0.407035 0.419060 -0.380918 -0.338630 1.031521 -0.180252 0.589900 0.097596 -1.188056 0.354075 0.111779 0.729112 0.474820 0.258842 -0.231618 -0.277763 0.277068 0.091083 0.423969 0.413483 0.261790 -0.673584 0.421354 -0.373613 -0.213558 0.461238 -0.111130 0.741330 0.181608 0.268062 0.374818 -0.066873 -0.255845 -0.323269 0.752902 -0.424753 0.174118 0.001318 -0.455427 -0.242062 -0.150587 -0.244325 0.360681 -0.403691 -0.403074 -0.356123 0.302740 -0.538432 0.317601 -0.597494 -0.277810 -0.083689 0.100233 0.557674 0.319245 0.192049 0.539633 -1.242815 0.166410 0.120307 0.300010 0.336855 -0.326931 0.217947 0.090773 -0.547683 -0.679735 0.705247 1.035969 0.205948 -0.210440 -0.546558 0.108384 -0.320599 -0.156337 0.422557 0.448037 -0.521671 0.006660 -0.573391 -0.195870 -0.557376 -1.354103 0.129615 -0.373805 0.430250 -0.274906 0.175733 -0.163020 -0.027821 0.182061 -0.268326 -0.671284 0.175244 -0.163525 0.194649 1.198702 -0.268993 -0.071376 -0.514503 -0.255455 -0.257757 0.354164 0.417607 0.211474 0.613737 0.717168 0.364052 -0.497812 -0.695607 0.387627 0.411066 0.339680 0.377557 -0.727199 -0.409360 0.183538 -0.331900 -1.080200 -0.392257 0.201319 0.468586 -0.463130 0.216519 -0.092487 -0.354375 0.517720 0.555876 -0.058639 0.157375 -0.024991 -0.490808 0.602978 1.019707 -0.192147 0.544108 -0.568162 0.056119 0.352394 -0.449253 0.282563 0.201496 0.051716 -0.440559 -0.310705 -0.078672 0.453018 0.239745 0.368592 -0.057399 0.366008 -0.554260 -0.671280 -0.847652 0.031891 0.929474 -0.289783 0.485998 -0.597104 -0.469926 0.116635 0.839826 0.295102 -0.386940 0.435052 -0.634701 0.398462 -0.521916 -0.749435 1.014775 1.200378 0.562531 -0.109851 0.330963 0.752221 -1.320886 -0.516013 -0.272034 0.421897 -0.237678 -1.673976 -0.738008 0.127334 -0.654487 -0.226488 -0.172921 0.431754 0.337784 0.663631 0.622375 0.095114 -0.354784 -0.375520 0.750838 -0.208792 -0.294362 0.097562 0.069833 -0.003298 0.382845 -0.508904 0.294872 0.580877 -0.498454 0.367051 0.537936 0.164696 -0.111569 1.077466 0.680350 -0.020234 0.670191 -0.134159 -0.314561 0.425850 -0.055628 0.329224 0.016171 -0.049883 -0.295223 0.194917 0.459065 -0.334675 -0.911460 -0.613630 -0.270927 0.043206 0.446766 0.688026 -0.957706 -0.852778 -0.036666 0.203597 0.837740 0.226295 0.934415 -0.234315 0.454098 -0.982649 0.162987 0.084345 -0.090319 0.564818 0.117337 -0.283759 -0.128459 -0.185912 -0.750931 -1.161840 -0.244812 -0.635114 -0.381305 -0.624675 0.632153 -0.256445 -0.229360 0.219047 0.196073 0.627517 -0.110848 -0.104522 -0.720438 0.363071 0.911466 -0.222848 -0.527238 0.469127 0.134355 1.765886 -0.098592 0.222754 -0.083896 -0.012128 0.037647 -0.531352 -0.089811 0.852356 0.603753 0.182992 -0.329091 -0.243266 0.100364 0.244167 -PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = -4.785180 3.193967 25.774483 16.451305 -10.815858 -16.014314 -9.037274 -21.995083 11.359007 0.012456 15.268789 1.958620 2.084845 -2.132285 3.008869 -2.827009 -0.103350 -5.890647 1.754405 -5.244253 -0.912522 15.467201 13.972267 -19.719849 0.512919 -23.567418 13.134423 10.836399 11.112448 13.117250 -0.409169 -4.248395 -2.991267 14.112490 -7.757270 -1.777253 1.525529 2.894105 -7.750834 1.350661 6.044875 14.311473 10.121120 -1.238700 15.353910 5.784627 13.327137 3.331768 -10.854893 -0.715239 -10.246430 22.372091 -14.908647 7.770216 2.184010 8.943177 -0.943993 -16.617257 -7.242304 -19.250844 0.390202 6.927531 -9.869523 0.926397 -14.054015 3.962254 -2.751571 -5.824765 8.633883 5.459038 14.940608 4.961951 2.669429 -5.041894 -11.453647 6.084489 -2.913923 11.946021 9.642040 -8.893718 -3.239472 5.796071 -2.749391 -9.016499 3.083038 0.885942 1.815946 -4.520965 7.411839 -3.387076 -2.237179 -4.559514 -5.904482 10.902510 -9.518045 8.989340 -5.720195 -1.097606 -7.834101 -2.595353 -1.037777 -13.011088 7.558794 10.677238 -2.463184 -1.086210 -2.117079 3.583270 -6.900147 -15.357863 0.352023 -0.405867 4.631731 15.127994 -9.017547 0.918382 3.220854 -0.796281 -2.938246 15.638292 2.181550 7.463780 12.583758 20.803052 0.960604 -10.085584 -3.858690 2.046238 11.432902 16.451550 11.736995 -16.007768 -9.216811 -3.703351 5.077145 -21.750048 7.484332 6.525539 9.140716 6.903065 -18.035906 1.717686 -6.806315 19.139002 8.799662 9.503451 4.190022 -1.557508 -10.982693 17.030480 30.153224 -5.707007 10.658913 -6.043953 -8.855328 16.620411 -15.468470 11.251853 4.290205 1.909822 6.600696 -11.965530 -6.554345 14.520564 8.527454 8.250958 13.135380 2.540390 2.157436 -24.978708 -15.993556 1.092383 10.705263 -3.819010 23.548371 -10.996417 -10.003111 -4.786163 16.085314 -1.805471 -3.933625 -0.414698 -7.422761 8.568353 -21.587413 -18.841134 22.112946 23.779419 1.589644 0.538811 16.410843 14.345462 -6.739186 -7.064439 -6.736839 7.832108 1.047872 -0.416914 0.449743 -0.780459 -13.825095 -7.456992 3.882221 4.704024 7.509940 -6.675259 -12.990173 8.770651 -19.325007 -9.593204 4.642361 -16.117939 -6.197154 1.797892 -0.251463 1.434871 4.687012 -6.841966 -3.255783 8.263247 -10.099366 0.154061 7.738673 13.487765 5.772024 15.329371 11.646379 5.124395 17.061804 11.896400 -7.119924 31.829531 -3.677349 2.392879 5.424687 7.264769 -1.386751 6.420425 2.232583 -7.477126 -7.544343 -16.853880 10.166231 -0.213093 12.440309 -15.639827 -12.610478 -12.641517 -8.840179 15.079593 7.322097 -2.165829 28.434714 -0.685967 1.534325 -29.578136 -2.935836 12.727294 0.047874 12.631366 9.676706 -10.391384 -24.682877 -6.902594 -3.282982 5.446647 -7.397087 -12.761767 -9.252159 -7.289150 12.626011 -7.383175 7.510888 17.219376 -1.620247 6.384868 -3.376467 -1.677182 -3.233451 -7.428829 4.637211 6.223074 -17.608120 18.978464 -5.388175 35.716881 -9.805946 11.248250 -13.812728 2.368258 -1.270350 -0.563846 -1.046900 21.185047 10.703025 4.981156 -0.000304 1.010266 -10.435874 9.171260 -PE-benchmarks/dfa-based-division.cpp__main = 0.129450 0.710394 2.093044 0.976766 -1.286824 -1.856227 -0.940688 -2.776833 1.021016 0.177608 1.340635 -0.261370 0.489618 -0.183288 -0.132634 0.119500 0.385445 -0.427552 0.281060 -0.733682 -1.180995 1.865127 0.298012 -0.795524 0.330496 -2.330662 1.515728 0.827293 0.957377 1.103049 0.100766 -0.160710 -0.429030 1.128151 -0.512322 0.060257 0.315659 0.530665 -0.869709 0.521740 0.490819 0.519783 1.318197 -0.127239 1.117696 1.040475 0.595029 0.621296 -0.930486 -0.276181 -0.471143 1.184133 -0.850008 0.798012 -0.144468 0.118968 0.228637 -1.205999 -0.392189 -0.346453 -0.307748 -0.175399 -0.810760 0.254804 -1.370384 0.292219 -0.345599 -1.017880 0.584827 0.201609 1.136462 0.420958 -0.111682 -0.200511 -1.551819 0.465617 0.445730 0.873233 0.808549 -0.511054 0.118418 0.363493 -1.202527 -1.223331 0.739350 0.967235 0.657991 -0.182561 -0.083964 -0.677578 0.064102 -0.339344 0.389538 1.182823 -0.564223 0.225264 -1.016887 -0.402050 -1.356617 -1.640020 0.138837 -0.826231 0.974371 0.399839 -0.627386 -0.022214 0.546459 0.391793 -0.248315 -1.341529 -0.015349 -0.661625 0.839819 2.062690 -0.128932 -0.547278 -0.516122 -0.698005 -0.405160 1.159720 0.363880 0.125503 1.824580 1.672207 0.389934 -1.034727 -0.982242 0.175808 0.559033 1.004013 1.108721 -1.732149 -0.888454 -0.003669 -0.251141 -2.185115 -0.142010 -0.019397 0.973403 -0.698776 -0.737694 0.772655 -0.847105 1.190485 0.779369 0.358742 0.380728 -0.211248 -1.029374 1.446923 2.461560 -0.369170 0.797941 -1.286477 -1.019854 1.416421 -0.589119 0.714303 0.408954 -0.272547 -0.362892 -0.786948 0.323733 1.246707 0.081880 0.390225 0.884878 0.379269 -0.621513 -1.667561 -1.794063 0.455143 1.398037 -0.033747 2.458838 -1.459065 -0.758279 -0.286839 1.699286 0.100551 -0.339190 0.438931 -0.893030 0.815582 -1.587859 -1.882401 2.090611 2.027780 0.550456 -0.053508 1.269217 0.785055 -1.044863 -1.066351 -0.835596 0.726437 0.411645 -1.193945 -0.579168 0.227306 -1.287239 -0.378262 0.045465 0.702350 1.147811 -0.281719 -0.302417 -0.411088 -1.490584 -1.372685 0.934256 -1.061542 -0.133799 0.500128 -0.057652 -0.245095 0.821361 -0.438242 -0.331134 0.123862 -0.639261 0.498183 0.710322 0.886550 -0.101671 1.718630 1.533988 -0.217171 1.355579 0.555855 -0.464146 2.463659 -0.513539 0.512209 0.442865 0.796027 -0.259860 0.572466 0.979186 -0.624977 -0.742573 -1.548598 0.464131 0.140298 0.552189 -1.148547 -0.957873 -2.059163 -0.661649 0.480203 1.492293 0.158321 2.383809 -0.163078 0.370821 -2.558687 -0.007889 0.633625 -0.012321 1.158248 0.571356 -1.051637 -1.556826 -0.424614 -1.202752 -0.815718 -0.651326 -1.093485 -1.095123 -0.407715 0.636041 -0.351554 0.303399 1.775808 -0.102838 0.458432 -0.702432 -0.075855 -0.776906 -0.533026 1.245829 -0.167104 -1.132102 1.235729 -0.031706 3.333748 -0.171884 1.057759 -0.687729 0.115028 0.180017 -1.082315 -0.398758 1.760555 0.672180 0.345824 0.091032 0.025693 -0.243445 1.089169 -PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = -0.216197 0.185083 2.028097 0.856054 -0.970578 -1.987935 -0.759148 -2.821497 1.507418 0.562305 1.438209 0.312433 1.018102 -0.687250 -0.085590 0.244873 0.347614 -0.666464 0.412891 -0.740279 -0.411982 2.623507 0.755065 -0.598731 0.138726 -2.632270 1.731509 0.556113 1.443996 1.853843 0.236016 -0.163945 -0.378166 1.074366 -0.307785 0.529713 -0.160645 0.651195 -0.787837 0.430832 0.430421 0.351478 1.145669 0.142281 1.654595 0.644951 0.823881 0.395380 -0.430739 -0.713252 -0.682549 0.984306 -1.335539 0.696742 -0.544912 0.058162 -0.053794 -0.670869 -0.367431 -0.946886 -0.081328 -0.167694 -1.145774 0.391165 -1.644066 0.477931 -1.024384 -0.706523 -0.173049 -0.186392 1.248832 0.622605 0.081530 -0.389655 -2.333299 0.256563 -0.071485 0.619925 1.090118 -0.275427 -0.791144 -0.018304 -1.082489 -1.356908 0.990974 1.147044 0.079686 0.080237 -0.226605 -0.608933 -0.537959 -0.084858 0.396833 1.173668 -1.049121 0.330991 -0.466538 -0.124539 -0.484693 -1.374036 0.346307 -1.015519 0.717980 0.291489 0.037269 -0.353021 0.125981 0.122360 -0.614657 -1.344577 0.222812 -0.500371 0.495962 2.050754 -0.406677 -0.158776 -0.774796 -0.320437 -0.011608 1.476905 0.549243 0.345175 1.724525 1.552469 0.493618 -1.210712 -0.761661 0.992222 0.864974 0.868252 0.743888 -1.509789 -0.925990 0.130855 -0.114962 -2.145574 -0.297443 0.685544 0.885938 -0.565629 -0.617048 0.694670 -0.703814 1.134996 1.466499 0.118186 0.545376 0.011119 -1.215020 1.456395 3.045952 -0.262037 0.664135 -1.210303 -1.028176 2.265381 -1.282465 0.817259 0.200727 0.013785 -0.532142 -0.778803 0.401635 1.310543 -0.028357 0.870831 0.730740 0.581181 -0.211703 -1.767391 -1.896227 -0.104160 1.778725 0.492058 2.379257 -1.355934 -0.095796 -0.106710 1.332832 0.737423 -0.457026 0.449906 -0.962815 0.845584 -2.725766 -1.865470 2.476785 2.279495 0.994123 0.047779 0.966345 1.527440 -0.727097 -0.843175 -0.746684 0.872636 0.056593 -1.239892 -0.314863 0.206506 -1.650924 -0.943918 0.038594 0.574986 1.006139 -0.286358 -0.129320 -0.398805 -1.134189 -1.447194 1.005358 -1.038066 -0.485099 0.020425 0.059636 -0.243611 0.525667 -0.408658 0.379646 0.614062 -0.506790 0.422651 0.837044 0.576085 0.085047 1.468539 1.706700 -0.463779 0.679564 0.322479 -0.384606 2.655368 -0.340127 0.434451 0.436861 0.754004 0.263953 0.562856 0.598038 -0.739729 -0.586795 -1.520120 0.456191 0.616152 0.869695 -0.911008 -1.346030 -1.944284 -0.365161 0.440789 1.754845 0.199187 2.696542 -0.578343 0.604812 -2.592749 0.204522 0.857993 0.009638 1.332424 0.652507 -0.855236 -0.895971 -0.698165 -0.914059 -0.383563 -0.740164 -1.186709 -0.958768 -0.457561 0.728781 -0.940405 0.270269 1.289229 -0.216403 0.977093 -0.705819 0.067976 -1.295164 -0.000514 0.666652 0.207513 -1.214067 1.203313 -0.225460 2.781509 -0.649393 1.137849 -0.607816 0.969226 -0.616258 -1.376186 -0.322984 1.956268 0.911039 0.198699 0.181262 -0.165743 0.102413 0.830940 -PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.191178 0.374062 1.001698 0.301929 -0.492712 -1.193826 -0.483165 -1.642952 0.584977 0.209196 0.775952 -0.196412 0.471130 0.015861 -0.081973 0.338012 0.224604 -0.290411 0.321782 -0.409147 -0.794499 1.354499 0.122097 0.026624 0.139973 -1.293686 0.896635 0.304287 0.626401 0.832494 0.111933 -0.063337 -0.035228 0.526420 -0.223870 0.222551 -0.030982 0.410302 -0.415212 0.462193 0.133260 -0.041142 0.718283 0.101599 0.564060 0.697554 0.352379 0.316032 -0.214646 -0.252325 -0.445598 0.514832 -0.578211 0.311002 -0.478889 -0.139125 0.188301 -0.378098 -0.219991 -0.009023 -0.284488 -0.214021 -0.635476 0.222653 -0.875322 0.262013 -0.584535 -0.542313 -0.019925 0.199895 0.677917 0.365888 -0.076983 -0.019746 -1.263074 0.212765 0.156525 0.357417 0.462107 -0.362919 -0.125542 0.210985 -0.846341 -0.811175 0.753586 0.669997 0.351219 -0.054128 -0.177792 -0.387461 -0.278619 -0.005339 0.380141 0.705070 -0.190761 0.225188 -0.438118 -0.170953 -0.669294 -1.177510 0.126485 -0.494489 0.481362 0.059252 -0.011404 -0.133049 0.198906 0.176181 -0.197545 -0.903681 0.025097 -0.403660 0.224440 1.142374 -0.071545 -0.211775 -0.359754 -0.342193 -0.130870 0.690033 0.418709 0.065466 1.004204 0.784633 0.194428 -0.548374 -0.563175 0.206075 0.308193 0.399564 0.545536 -0.859370 -0.594183 0.058031 -0.220309 -1.218216 -0.229989 0.272849 0.450565 -0.656711 -0.202379 0.620782 -0.447224 0.430089 0.721751 0.107651 0.294834 -0.131058 -0.560734 0.770947 1.479945 -0.239244 0.477584 -0.855228 -0.557270 1.072987 -0.434086 0.316924 0.179007 -0.101403 -0.420333 -0.384193 0.293972 0.684149 0.012111 0.275606 0.564221 0.253008 -0.366693 -0.730651 -0.933425 0.167845 1.014783 0.028874 1.270667 -0.795478 -0.180751 0.063916 0.764089 0.270051 -0.200532 0.264388 -0.475619 0.409808 -1.315226 -1.039191 1.206671 0.902573 0.524946 -0.027411 0.428648 0.726290 -0.522763 -0.621383 -0.488315 0.550488 0.089383 -0.962099 -0.483848 0.076122 -0.785101 -0.202616 -0.117813 0.422690 0.571816 -0.034313 0.012142 -0.557634 -0.752820 -0.734665 0.585620 -0.623567 -0.170733 0.204263 -0.073623 -0.284137 0.327116 -0.137754 0.160039 0.188126 -0.356397 0.291402 0.457430 0.283854 -0.097957 1.067552 1.061008 -0.301294 0.438401 0.136452 -0.172207 1.162511 -0.240051 0.275914 0.152182 0.517265 -0.102600 0.293445 0.624187 -0.294149 -0.657167 -0.828785 0.227347 0.326541 0.243214 -0.119745 -0.510933 -1.222883 -0.260574 0.174524 1.292816 0.174126 1.267161 -0.176565 0.403367 -1.216713 0.175558 0.191195 -0.026469 0.656477 0.287057 -0.474170 -0.289183 -0.301946 -0.686276 -0.616152 -0.375291 -0.717029 -0.604200 -0.241657 0.036909 -0.398142 0.050550 0.709440 -0.060289 0.334235 -0.347433 -0.090987 -0.705914 0.033555 0.919837 -0.138410 -0.538000 0.546820 -0.022611 1.738270 -0.097728 0.620156 -0.283894 0.170543 -0.033847 -0.658911 -0.202184 1.005404 0.401537 0.033116 0.156822 -0.033935 0.264582 0.452337 -PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.122947 0.258727 0.887109 0.273224 -0.184674 -0.918388 -0.346919 -1.116750 0.473901 0.010743 0.613653 -0.150900 0.293923 -0.049134 -0.048870 0.035234 -0.020137 -0.254705 0.222201 -0.227661 -0.488895 0.884174 0.130893 -0.107716 0.112308 -1.193129 0.802523 0.346587 0.527199 0.846875 -0.016674 -0.165434 0.039697 0.480610 -0.138091 0.053254 0.042127 0.146065 -0.218039 0.321426 0.166866 0.185759 0.591992 0.162055 0.359975 0.560000 0.162015 0.205316 -0.064482 -0.119027 -0.487073 0.464403 -0.561691 0.180526 -0.352040 0.068426 0.236032 -0.414223 -0.153691 -0.184670 -0.162765 0.009912 -0.438174 0.117453 -0.715453 0.144158 -0.524599 -0.315064 0.117055 0.074208 0.540091 0.362013 0.010058 -0.024919 -0.827200 0.251615 0.041462 0.369624 0.425153 -0.455237 -0.123025 0.302429 -0.521982 -0.517044 0.510185 0.292537 0.280759 -0.047197 0.043616 -0.387560 -0.240670 0.029194 0.188908 0.470661 -0.008330 0.217324 -0.445229 -0.065661 -0.350337 -0.759730 0.044669 -0.421472 0.280907 0.247454 -0.036102 -0.140340 0.108924 0.136713 -0.139179 -0.711348 0.082055 -0.251774 0.150761 0.821864 -0.187587 -0.156604 -0.181283 -0.187350 -0.067294 0.659851 0.212520 0.069576 0.545162 0.655864 0.118824 -0.402489 -0.340857 0.152571 0.293307 0.406170 0.425609 -0.652815 -0.396080 -0.099494 -0.053627 -1.055658 0.065193 0.099861 0.338048 -0.181863 -0.437222 0.539221 -0.405664 0.347822 0.548812 0.155903 0.288070 -0.083727 -0.491103 0.721316 1.170763 -0.244669 0.409210 -0.693689 -0.493408 0.748643 -0.427887 0.220988 0.006790 -0.036597 0.065088 -0.332531 0.154291 0.579978 0.054026 0.322403 0.598442 0.157942 -0.094801 -0.712810 -0.647902 0.182466 0.772710 -0.143860 0.913716 -0.583332 -0.120744 -0.036495 0.749548 0.045857 -0.061954 0.096053 -0.318023 0.332729 -1.132570 -0.828392 0.942419 0.732464 0.246986 0.035375 0.215279 0.746088 -0.210621 -0.244104 -0.396026 0.350707 0.083495 -0.645224 -0.292105 -0.119456 -0.469318 -0.200100 0.072410 0.246581 0.402019 -0.245841 -0.282458 -0.323650 -0.664340 -0.635979 0.471004 -0.741249 -0.107324 0.177863 -0.151331 -0.211418 0.297762 -0.096750 0.092949 0.363248 -0.288715 0.129667 0.347294 0.338362 0.033586 0.773599 0.654481 -0.097388 0.320029 0.349762 -0.133256 1.074951 -0.231886 0.173312 0.203619 0.471708 0.038275 0.401272 0.322499 -0.282993 -0.466458 -0.771910 0.250759 0.204208 0.245536 -0.030854 -0.383366 -0.891869 -0.332798 0.294910 0.859497 0.128080 1.098212 -0.001865 0.152420 -0.788418 -0.029953 0.349557 0.012716 0.570165 0.282647 -0.348745 -0.396285 -0.303320 -0.397579 -0.157072 -0.367829 -0.585899 -0.413409 -0.274001 0.193573 -0.326764 0.250568 0.480291 0.060029 0.155309 -0.268518 -0.065228 -0.547396 -0.058615 0.507069 0.023750 -0.476868 0.525695 -0.083525 1.126513 -0.243276 0.479247 -0.437620 0.175995 -0.059626 -0.301304 -0.135273 0.821343 0.307855 0.051979 0.092794 0.031327 0.045688 0.410151 -PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.327145 0.212609 1.286652 -0.087186 -0.631433 -1.500272 -0.573411 -2.951260 1.142872 0.481000 1.236595 -0.137736 0.798411 -0.419302 -0.053957 0.903837 0.402520 -0.696057 0.560766 -0.564821 -0.459271 1.966887 -0.262690 0.758074 0.120726 -1.948786 0.657389 0.211185 1.227849 0.787209 0.451945 -0.331263 -0.366672 0.406357 0.117109 0.817309 0.423143 0.417124 -1.039142 0.412857 -0.382115 -0.398808 0.814784 -0.184829 1.311008 -0.050699 0.676378 0.479920 -0.044154 -0.434138 -0.660582 1.212155 -0.702078 0.279203 -0.128890 -0.692995 -0.281367 -0.255415 -0.424487 0.533751 -0.626150 -0.590477 -0.739340 0.401700 -0.842502 0.506860 -0.828804 -0.335257 -0.162322 0.025767 0.917831 0.526358 0.231976 0.580607 -2.123330 0.161601 0.113044 0.346323 0.566340 -0.235191 0.245455 -0.018623 -0.910527 -0.991951 1.296749 1.611853 0.180918 -0.230113 -0.890216 0.119974 -0.612860 -0.223232 0.715762 0.645529 -0.998838 -0.075799 -0.679340 -0.294406 -0.709772 -1.837637 0.321782 -0.605527 0.630766 -0.388106 0.279656 -0.159405 0.180151 0.161847 -0.504676 -1.048094 0.193598 -0.310205 0.400721 1.915914 -0.396847 -0.169330 -0.892835 -0.322644 -0.445993 0.544819 0.663654 0.363559 1.181114 1.082947 0.658477 -0.848519 -1.074495 0.843059 0.727788 0.529718 0.378855 -1.085864 -0.572972 0.294663 -0.350482 -1.755996 -0.744234 0.420041 0.764321 -0.675466 0.323735 -0.064522 -0.377501 0.885008 0.958010 -0.290908 0.277438 0.160634 -0.823395 0.972438 1.784999 -0.148921 0.696311 -1.042269 0.009709 0.771531 -0.806086 0.411861 0.300085 0.125549 -0.718358 -0.526483 0.063553 0.679384 0.116613 0.523018 -0.201306 0.700831 -0.798247 -1.093814 -1.497784 -0.003979 1.444790 -0.137280 1.037859 -0.988092 -0.633421 0.179310 1.133723 0.524822 -0.560314 0.763786 -1.179272 0.686605 -1.052234 -1.243889 1.787434 1.830758 0.981079 -0.060047 0.652342 1.182232 -1.911775 -0.695151 -0.467946 0.693600 0.015103 -2.535717 -0.862744 0.161904 -1.114897 -0.637527 -0.249223 0.578633 0.423834 0.865718 1.085542 -0.106094 -0.494232 -0.605194 1.306024 -0.374959 -0.424806 0.005756 0.123060 -0.086863 0.686002 -0.717108 0.606064 0.740239 -0.643552 0.579735 0.811824 0.184503 -0.193304 1.500160 1.389432 -0.208551 1.155774 -0.266920 -0.426565 0.719027 -0.104128 0.403477 0.058488 -0.098294 -0.217625 0.307028 0.670686 -0.576617 -1.145498 -0.937585 -0.261295 0.197466 0.737230 0.829336 -1.360386 -1.453935 -0.187275 0.254612 1.281062 0.388605 1.548835 -0.606848 0.664589 -1.782233 0.244756 0.258664 -0.012549 0.905338 0.111114 -0.436483 -0.126170 -0.332436 -1.087959 -1.681059 -0.439688 -1.017565 -0.713904 -1.123821 1.107504 -0.636429 -0.270133 0.465762 0.204891 0.991335 -0.482263 -0.049095 -1.154909 0.591420 1.094844 -0.213554 -0.828990 0.715384 0.074142 2.716926 -0.264748 0.417990 -0.204788 0.416838 -0.285984 -1.094932 -0.092337 1.297105 0.943886 0.143210 -0.449419 -0.398901 0.109711 0.478263 -PE-benchmarks/eulerian-path-and-circuit.cpp__main = 2.134066 4.430579 9.130712 1.319855 -10.694283 -13.445620 -4.157078 -17.133954 5.124995 0.124410 3.144276 -0.476322 -0.556704 -4.438107 0.196088 8.925687 3.586880 -0.898101 -1.141188 -5.747237 -7.259226 4.987336 -2.717248 0.303834 5.468847 -10.696503 6.746767 1.809572 5.555004 4.513152 7.206286 -3.238427 -5.251452 5.739735 7.192597 13.361163 3.782879 -0.743607 -9.192876 6.988472 -2.272592 -0.572570 7.136293 1.198802 11.037447 5.930555 5.686298 6.870572 -7.594082 1.722306 -7.733530 13.027050 -4.922484 5.512786 0.429865 0.842617 -2.241205 -7.185085 -2.262664 5.802503 -9.628866 -4.824137 -6.460684 0.845039 -9.296119 -0.357406 -4.637285 -2.187081 -0.300614 3.736114 6.503378 1.762367 -2.445991 4.268607 -8.978720 -1.273802 1.940111 7.723541 7.404809 -5.821665 4.565926 -0.844787 -4.541800 -5.727264 5.960222 2.306978 4.105705 -1.588873 -2.301756 -4.499753 -6.461668 -4.447788 5.219075 2.542021 -7.642374 -2.284746 -8.256689 -2.772973 -8.226028 -12.661324 2.880725 -0.252237 4.980450 -5.020942 2.308789 -1.482232 3.439660 1.703001 -0.860793 -0.122486 1.617691 -0.292978 3.177654 12.328376 2.193630 -3.798206 -3.832731 -5.413415 -4.442935 4.577252 4.608686 -0.692609 7.912341 10.582721 12.992383 -2.477029 -7.110162 -1.107238 1.704204 6.871077 5.894064 -6.228726 -4.026976 2.497844 -0.428845 -10.297146 -0.454548 -0.118048 6.171443 2.316188 1.100551 -5.898185 -2.801281 5.401257 -3.165974 -1.402795 2.960895 -1.522348 -5.179488 8.130529 13.750022 -0.448437 2.900102 -7.461866 3.582193 1.553962 -2.687162 0.004972 3.038197 -5.344460 -2.115027 -0.114831 -1.995556 3.652280 2.969465 -3.967544 1.930864 5.248530 -9.578110 -8.383462 -5.867767 2.482184 7.409420 -4.726199 6.889453 -6.780885 -2.152053 -5.752382 8.411721 0.682724 -0.811402 3.610129 -8.719665 4.938990 0.232584 -4.925249 14.916104 14.126960 4.838902 -2.920757 4.166001 8.881364 -17.019292 -5.969839 -4.740880 -1.134984 0.959667 -13.788267 -6.473551 1.502656 -8.745414 -2.323356 0.309489 4.670930 6.720697 6.964393 2.042792 1.268362 -4.839616 -6.991374 4.484161 -2.841459 -0.887215 4.752642 0.181057 1.132322 5.615955 -4.100329 -0.643109 3.093988 -3.905500 4.013493 3.755206 8.438334 -0.920703 8.126144 6.470044 2.503754 13.409962 2.956935 -6.524677 6.578337 3.617988 6.528827 2.484772 -2.097905 0.252257 1.176907 4.036851 -4.650189 -5.779388 -6.046958 -2.176510 0.336008 5.250924 2.458923 -6.812603 -11.655390 -1.941411 2.106546 3.776919 0.222918 7.594036 -0.336228 2.313477 -11.976720 0.216386 5.602176 0.855802 3.479493 1.720247 -6.054087 -3.358979 -0.969483 -8.949201 -9.904213 -2.410154 2.241334 -5.149405 -3.431772 9.000733 1.288009 -1.524810 9.426054 -0.686641 4.470448 -5.141844 1.903922 -3.826451 -3.401356 10.554948 -0.643402 -6.691544 5.055786 3.481337 19.946550 2.366750 2.181162 -1.374664 -4.220728 3.930269 -5.816465 -2.960843 7.411765 4.165231 3.107908 2.138491 -0.322172 -0.303853 6.817283 -PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = -1.530977 2.105687 10.770843 7.257732 -7.441572 -9.490416 -4.576070 -12.241189 5.114576 -0.108738 7.548267 0.264118 1.669685 -2.284025 0.924168 -0.464002 2.270690 -1.955678 0.012904 -3.767918 -3.501018 7.025291 3.645427 -7.571832 1.440426 -9.212757 5.685185 5.717507 3.902121 4.736787 0.785735 -1.510832 -3.105575 5.836156 -2.852039 0.132911 1.914578 1.435493 -5.088363 0.522272 2.693930 3.489213 7.022367 -1.375008 7.029861 2.457663 5.434390 2.876208 -6.998611 -1.013943 -3.667692 9.264599 -5.315263 4.179245 1.380604 2.123314 1.158696 -7.074656 -2.602752 -5.841817 -0.959988 0.126073 -4.218443 0.235569 -5.703217 1.445577 -0.333232 -4.482176 4.379704 0.969834 6.034298 1.390506 -0.163237 -0.810035 -5.580840 1.801407 1.329726 5.417501 4.468919 -2.042548 1.122702 0.961558 -3.434599 -4.322098 2.502263 1.124605 2.842245 -0.645386 -0.291676 -1.620973 0.865654 -2.313000 0.322617 3.919713 -4.397959 1.599036 -3.037375 -2.200266 -6.316660 -4.791995 0.734801 -3.990281 4.183857 3.303336 -3.189186 0.145745 -0.617305 1.744822 -3.520428 -6.635407 0.196260 -2.306744 2.923855 8.786249 -3.232354 -1.781387 -0.733153 -1.955984 -1.956488 5.923340 1.343374 2.265441 6.648209 9.540337 1.542601 -5.435664 -3.761625 -0.135753 5.053870 6.824450 5.452250 -6.823152 -4.358070 -0.187132 -0.883814 -10.963541 0.642848 1.379847 5.898484 2.049774 -6.484794 1.332800 -3.978641 8.246883 2.795628 3.649347 1.474055 -0.653729 -5.986367 7.407381 11.189275 -2.332893 5.495313 -3.041389 -3.806812 5.719362 -4.358692 3.683993 2.681413 -1.795146 0.771141 -3.865385 -1.687688 6.037038 3.142343 2.100981 3.306913 2.267790 -2.396511 -10.743672 -9.402631 2.042319 6.430654 -0.303218 11.061529 -6.757346 -5.599345 -2.222817 8.325470 -2.013118 -2.998754 1.379142 -4.678507 4.670948 -8.020111 -9.050650 11.607527 11.163465 1.978784 0.519196 7.653288 4.278780 -5.824807 -3.918764 -3.528549 2.974374 2.242376 -4.137637 -1.186043 0.601961 -6.635635 -2.862855 1.335720 3.231105 3.336783 -2.269196 -1.994047 1.453510 -7.306164 -4.625398 3.099900 -5.923920 -1.357072 2.154089 -0.542619 1.066743 3.674006 -2.841774 -2.367534 1.047986 -4.874537 1.118382 2.553327 6.778609 2.070895 8.977215 7.148633 0.617394 9.571089 3.687156 -4.197581 13.031048 -2.910766 2.765175 2.129373 3.908019 -0.226522 2.356396 4.223896 -3.635122 -2.878017 -7.689702 1.913974 0.609823 5.375709 -7.703091 -5.858403 -9.322042 -3.289154 4.590053 4.394060 -1.604571 12.154641 -1.256317 0.611549 -14.159205 -1.112179 4.823396 -0.022696 5.403204 3.234683 -5.448860 -11.406886 -2.359250 -5.088583 -0.828979 -2.678592 -4.261837 -4.648327 -3.190020 6.162755 -2.777931 2.147120 8.440645 -1.311766 3.209679 -2.010894 -0.380775 -1.393372 -3.537465 4.136393 1.085733 -7.124581 8.707621 -0.349618 18.347149 -1.118891 4.736592 -4.870591 0.854600 0.663645 -3.143878 -1.736874 9.083651 5.745898 2.123424 -0.020718 1.112657 -3.730645 5.517836 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.243428 0.282595 1.915070 -0.004134 -0.876321 -2.276675 -0.788747 -3.691859 1.586521 0.543014 1.625197 0.053301 1.081729 -0.626947 0.087133 1.294706 0.769239 -0.905080 0.513779 -0.929234 -0.255816 2.603703 -0.002547 0.554021 0.202369 -2.657714 0.472753 0.557665 1.665126 1.149267 0.582037 -0.425035 -0.499353 0.695904 -0.073183 0.995816 0.701985 0.341843 -1.694179 0.495722 -0.603815 -0.085150 1.287630 -0.222496 1.947944 -0.072854 1.095317 0.736134 -0.270966 -0.654633 -0.962304 2.083431 -0.898400 0.523504 -0.069876 -0.568026 -0.379399 -0.535943 -0.557380 0.212509 -0.787538 -0.371654 -0.943369 0.413000 -1.071002 0.632989 -0.874066 -0.552789 -0.208028 -0.038339 1.268817 0.635253 0.299234 0.614711 -2.765920 0.223173 0.098832 0.749323 0.870787 -0.323180 0.132388 -0.138168 -0.967524 -1.270935 1.515566 1.925211 0.242750 0.002092 -1.246096 0.053439 -0.853242 -0.400829 0.783395 0.694745 -1.505314 -0.087204 -0.492746 -0.451857 -1.051015 -2.041687 0.382075 -0.660452 0.700309 -0.581598 0.744693 -0.216415 -0.301311 0.166020 -0.956906 -1.165773 0.479704 -0.296127 0.124194 2.517680 -0.756910 -0.079683 -1.021134 -0.286321 -0.701018 1.044201 0.661166 0.551646 1.311772 1.620749 0.741698 -1.158476 -1.183225 0.898504 1.297508 0.847160 0.784354 -1.327663 -0.877230 0.406053 -0.565810 -2.367145 -0.842775 0.825391 1.215159 -0.420169 0.091903 -0.198694 -0.574023 1.550451 1.158088 -0.328743 0.389042 0.004291 -1.313739 1.419017 2.568049 -0.357607 1.247392 -1.214051 0.074447 1.078409 -1.303767 0.729004 0.398171 -0.173052 -0.862872 -0.516949 -0.044096 0.981587 0.524715 0.689941 -0.320719 0.877802 -0.929313 -1.725608 -2.248964 -0.203258 1.697906 -0.241853 1.561767 -1.239131 -1.089280 -0.142704 1.519570 0.309683 -0.851772 0.980086 -1.670295 0.946514 -1.609707 -1.661155 2.873664 2.998387 1.376103 0.052285 1.176681 1.618772 -2.417774 -0.916344 -0.279020 0.780651 0.014104 -3.295549 -1.033182 0.247159 -1.590649 -0.977399 -0.359042 0.795901 0.300595 1.268599 1.504972 0.044647 -0.853074 -0.729605 1.311117 -0.617163 -0.612060 0.174431 0.191507 -0.026612 0.879510 -1.029202 0.599052 1.160941 -1.099381 0.648691 0.879232 0.642127 0.180864 1.871353 1.905259 -0.032145 2.147408 -0.204901 -0.822052 1.215752 -0.275280 0.694824 0.056894 -0.042857 -0.203296 0.384356 0.712979 -0.772850 -1.240464 -1.288177 -0.191338 0.361346 1.143129 0.816838 -2.161046 -1.831546 -0.208297 0.494781 1.534573 0.119512 2.198153 -0.907123 0.798306 -2.863388 0.353203 0.441825 0.070599 1.033855 0.390831 -0.744330 -0.814339 -0.393063 -1.506381 -2.047268 -0.505490 -1.451622 -0.789453 -1.527780 1.822533 -1.176511 -0.278308 0.891461 0.149896 1.577287 -0.472179 -0.060629 -1.466158 0.599551 1.425665 -0.157979 -1.089249 1.018988 0.068815 3.746903 -0.340427 0.738327 -0.348201 0.599588 -0.196177 -1.459797 -0.254100 1.902487 1.441621 0.109652 -0.422297 -0.540439 0.102495 0.741308 -PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = -2.939244 2.646933 17.075330 10.750914 -8.253982 -11.958699 -6.322213 -14.305973 7.751603 -0.571022 9.452555 2.058338 1.301882 -1.403857 1.302432 -1.923930 1.251592 -3.391605 0.105444 -4.393151 -2.355932 11.863010 8.217683 -13.784453 0.635556 -16.654943 10.640558 7.324589 6.745418 10.340542 0.227159 -1.818980 -2.119160 9.203771 -5.041175 -1.136680 0.994944 2.032446 -5.512374 -0.126333 6.123276 7.978291 8.710888 -0.201241 9.753007 3.870919 8.218941 2.340370 -7.530832 -0.692759 -8.110688 13.887904 -9.353096 5.813829 -0.026871 6.200934 1.955985 -11.000090 -3.783679 -12.578575 -1.004641 3.424737 -7.384287 -0.250391 -9.566637 2.629973 -1.874797 -4.889305 4.808851 1.937278 9.371331 2.886138 1.208451 -3.908706 -9.148505 3.595470 -1.364564 8.703354 7.104934 -4.207778 -2.746198 2.771295 -3.833768 -6.565019 2.888478 0.121984 1.695662 -1.587593 3.821767 -2.808641 -2.212809 -2.263384 -2.935394 7.140163 -5.666040 5.851327 -3.074867 -1.550064 -5.540813 -2.514025 0.161400 -7.985947 4.205247 6.869614 -3.250813 -1.106568 -1.524357 1.709060 -4.347234 -9.994259 1.177155 -1.893411 1.922101 10.671073 -5.267772 -0.354614 1.709189 -1.128013 -1.577233 11.367215 0.252378 4.862877 8.004124 13.705246 0.871483 -7.355891 -2.616043 1.406936 8.082778 9.577377 7.864489 -9.615157 -6.796713 -2.361721 2.825431 -14.632188 4.500293 5.475626 7.612083 4.587521 -11.627463 2.543533 -4.903305 12.428500 5.850463 6.117958 2.721570 -1.222320 -9.000625 11.124391 20.280292 -3.779068 7.578286 -5.750773 -6.833448 12.420720 -9.107203 7.350789 2.108803 0.205309 3.489547 -7.265300 -2.485231 10.345877 4.654170 4.666417 8.685343 1.635174 1.133493 -16.611647 -12.014668 0.801955 8.515649 -1.027370 17.170321 -8.287073 -5.627571 -3.307590 11.109512 -2.468275 -2.697716 0.089669 -5.659039 6.192336 -16.459882 -13.461016 16.991813 15.566682 0.258363 1.186011 10.324677 9.597459 -3.057744 -4.774611 -4.632778 5.334121 2.510500 -0.111803 0.779465 -0.245341 -8.928486 -5.279684 3.351346 3.469289 5.065226 -5.975179 -6.706619 3.067794 -12.471552 -7.996539 3.585780 -11.364785 -4.290092 2.686061 -0.343763 0.293964 3.708493 -2.007939 -2.175890 4.827040 -6.088806 0.182892 4.034746 9.030009 3.891758 9.823865 9.976672 2.081955 11.315139 8.073184 -4.769295 22.209015 -4.400442 1.632034 3.631363 5.842474 0.466203 4.761318 3.161351 -4.857469 -3.401162 -12.432348 7.371058 0.168920 7.744357 -12.628677 -8.242835 -10.901174 -5.451771 9.002131 6.376034 -2.581959 19.946799 -1.186041 -0.343742 -20.774174 -1.555186 9.738968 0.619739 7.563985 6.437905 -6.892169 -16.468597 -4.426060 -3.439266 4.325812 -5.209229 -8.396735 -6.980968 -4.217689 7.652188 -6.896863 6.098908 12.163440 -1.477011 4.347465 -3.097379 -1.014429 -3.526991 -5.365313 3.461782 3.593022 -10.325880 12.729186 -3.438521 22.950597 -5.896140 8.185449 -8.727338 4.121594 -1.176457 -2.624600 -1.569913 14.600075 6.856974 2.176665 1.263605 1.147046 -5.765039 7.323243 -PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 0.957011 -0.104451 2.887485 0.745442 -0.572305 -2.329138 -1.200151 -5.786489 3.562358 0.751141 1.739003 0.351730 1.335851 -1.779022 -0.584503 1.864833 0.243805 -1.410057 0.832707 -0.698650 0.470316 5.753401 -0.001651 0.078453 -0.177190 -5.641874 0.749308 0.439708 3.987613 1.901972 0.361730 -0.793800 0.170069 1.096221 -0.603219 1.152053 0.559182 0.359354 -3.015643 -0.010101 -0.725389 0.692978 1.552357 -0.672114 2.968805 -1.490737 2.012336 0.441368 0.667400 -0.352270 -2.021359 3.772513 -1.110092 0.825409 -0.129299 -0.701353 -1.040730 -0.918487 -1.221428 0.752999 -1.251767 0.527234 -1.266062 0.440090 -1.773621 1.119355 -0.963226 -0.154949 -0.118093 0.260929 2.195055 1.781989 1.332264 -0.401444 -5.003700 0.962002 -0.387434 1.056513 1.113643 0.128204 0.450561 0.056010 -1.056258 -1.702730 2.563984 3.700362 -0.631036 -0.294512 -0.804976 -0.562127 -1.763217 -0.794412 0.668150 1.163484 -2.679492 0.281178 -1.539659 0.024774 -0.218403 -2.212649 -0.005791 -1.579362 0.838195 -0.721703 1.737364 0.500218 1.935358 0.223269 -0.681808 -1.766324 0.589592 0.370793 0.275699 4.418818 -0.585380 -0.136849 -1.110889 0.165710 -2.336250 1.572029 0.458501 1.466320 2.342432 2.376266 1.371665 -1.599630 -1.318700 2.760515 1.806904 1.338630 0.884766 -2.467476 -0.919651 0.053789 1.074375 -3.774289 -1.149257 1.409964 1.498487 -1.041332 0.334351 -0.557927 0.048249 3.074126 1.722165 -1.849512 0.821933 0.360512 -1.736650 2.788944 5.285062 -0.017132 0.950986 -3.105482 -0.189063 2.213831 -2.586795 1.651104 -0.493453 0.785940 -0.559832 -1.640317 0.758241 1.546141 -0.537748 0.855192 -0.441078 1.153608 -0.923162 -3.189477 -3.295000 -0.701804 1.636747 -0.517249 3.350033 -1.310723 -1.945255 -0.326204 1.847642 1.039150 -0.161484 1.901839 -3.426877 1.538083 -2.786229 -3.084082 4.558078 4.836789 1.695227 0.194240 2.443931 2.857327 -2.989985 -1.460104 -0.319371 1.137121 1.339484 -4.827809 -1.266607 0.114016 -2.171384 -2.366177 -0.017600 0.493826 0.661272 2.045563 1.868882 -0.231556 -1.860038 -1.542668 3.204458 -1.591485 -0.687360 -0.135673 0.723695 -0.806568 2.092788 -1.768058 1.205377 2.086736 -0.669074 1.179416 1.304269 0.341227 -0.428151 1.108542 3.746168 0.287932 3.993683 0.397036 -0.850252 2.678264 -0.452318 0.160930 0.258155 -1.182023 -0.695419 1.052027 -0.153620 -1.265198 -1.268765 -2.029605 0.888647 -0.102199 1.384517 0.673273 -3.214298 -1.600421 -1.246513 0.978199 1.131488 1.190900 3.766395 -2.253985 0.794809 -5.417437 0.361936 1.446371 0.806299 2.399906 0.716173 -0.904241 -1.627280 -0.718606 -1.091695 -2.590894 -1.741310 -3.928443 -1.393186 -3.209473 3.643902 -2.217897 0.367866 2.419802 0.545009 2.537910 -2.440308 0.047067 -2.951393 0.944803 0.479232 0.148546 -1.556910 0.997557 -0.951574 5.217304 -1.839954 1.066241 -1.341364 1.800325 -1.332570 -2.829912 0.239347 2.919054 1.335057 -0.092547 -0.852771 -1.443219 -0.762978 1.150632 -PE-benchmarks/union-find.cpp__main = -2.257467 -1.035416 4.717793 2.226767 -2.910335 -6.926956 -2.494890 -8.976225 4.345224 1.590907 6.551132 0.627766 3.684664 -3.460941 1.498332 2.524120 3.038173 -3.111840 0.564371 -2.625884 -0.400060 7.521512 1.993486 -0.772908 0.394750 -5.210786 0.925556 2.303237 2.297502 3.256718 1.608903 -0.515249 -1.145811 1.770332 -0.961064 4.050225 1.375754 1.363750 -3.039711 -0.844905 -0.073171 -1.053658 4.091601 -1.206658 6.434629 -1.148518 5.145385 1.075299 -3.346633 -2.944820 -3.214957 6.285835 -3.969078 1.311698 -0.226258 -1.140158 1.048810 -1.990138 -2.197577 -3.984121 -1.501326 -1.296682 -3.759272 0.342306 -2.128095 2.510923 -0.654005 -1.282601 0.265715 -0.395203 3.933343 1.479805 0.455089 1.926019 -5.744130 0.293505 0.478087 1.449053 2.348031 -0.126408 -0.383285 -1.519480 -2.205432 -2.999750 5.374374 2.173760 1.423152 1.060511 -3.897832 2.007217 -1.867441 -0.945699 1.510971 1.230125 -4.235086 -0.576209 2.977043 -1.838057 -3.140758 -3.170730 1.386330 -2.423368 1.150275 1.570686 1.130920 -0.464284 -3.942359 0.351183 -5.538948 -4.402370 1.364742 -1.841344 -0.822571 4.791418 -4.273901 0.631470 -2.124148 0.086407 -0.144983 3.267210 1.803545 2.875044 3.716648 4.929233 1.431826 -3.857766 -2.613156 1.705714 6.209031 2.541322 1.410963 -3.138665 -3.007805 1.539552 -2.857911 -6.605955 -3.428262 4.262061 4.706216 1.651162 -3.364789 1.528058 -0.814692 5.548464 4.000240 0.246477 0.178983 0.894198 -4.834445 3.999944 6.320003 -1.771136 4.761625 -1.169019 -0.459668 4.341212 -4.333996 1.316554 2.803250 -0.918181 -2.093778 -1.750650 -0.965671 3.021638 3.264787 2.669553 -2.149216 3.086139 -1.737082 -6.225205 -7.848291 -0.829759 5.310019 0.948563 5.867334 -4.023575 -3.634382 0.011865 3.955231 -1.268918 -4.186025 1.482897 -4.481385 2.954059 -7.014263 -5.555013 10.120690 7.530920 4.533582 1.940269 4.678519 4.652547 -5.621927 -0.764574 -1.091493 3.076540 1.281857 -7.200449 -1.146717 0.529804 -5.475204 -4.130332 -1.624508 2.071450 -1.649896 1.595632 3.650574 0.231870 -2.151056 0.304058 1.910357 -2.373264 -2.485796 -0.609776 0.037609 1.451467 1.790303 -2.409850 1.953841 1.554376 -4.599497 0.432419 1.782210 3.179477 3.070911 6.720036 7.517184 -1.244880 6.194557 -1.144758 -2.828648 3.388093 -1.262344 1.377431 -0.344790 1.730093 1.868458 0.395491 3.428609 -2.051832 -2.600910 -4.050078 -0.057111 2.687291 4.227872 -0.917858 -5.547891 -6.604061 -0.565068 2.352261 5.134227 -1.592586 7.058139 -3.171796 1.422532 -9.950539 0.669860 1.715035 -0.023044 1.834043 0.963699 -2.049146 -5.121997 -1.513223 -3.963982 -4.202865 -1.134564 -2.882926 -2.195561 -5.140743 5.783406 -5.036030 -0.497518 2.341848 0.441712 4.592860 1.052996 -0.279766 -3.181943 1.714210 2.349072 0.738549 -3.390542 4.784742 0.460802 11.855938 -1.254548 2.438962 -2.086138 3.819501 -1.608973 -3.555233 -0.377215 5.355888 6.504676 -0.623041 0.051298 -0.014392 -0.453006 3.226441 -PE-benchmarks/union-find.cpp__find(int*, int) = -0.689229 0.195561 2.723863 1.671123 -1.362889 -2.272394 -1.123029 -2.883930 1.686096 0.330711 1.836428 0.453661 0.809034 -0.733684 0.121083 -0.217766 0.298735 -0.773288 0.050461 -0.780344 -0.355816 2.588755 1.276250 -1.994768 0.167527 -2.967250 1.736688 1.088699 1.141906 1.943046 -0.022396 -0.190879 -0.500971 1.531328 -0.865449 0.269599 0.271773 0.622617 -0.774301 -0.056749 0.932937 1.104723 1.505951 -0.037634 2.081333 0.745940 1.095865 0.415269 -1.175311 -0.616725 -0.821426 1.741665 -1.609646 1.106479 -0.262341 0.793971 0.192011 -1.545148 -0.615392 -2.262446 0.091715 0.351176 -1.175712 0.041973 -1.561172 0.503260 -0.029904 -0.957674 0.497130 -0.146589 1.685682 0.528051 0.179870 -0.614212 -1.921413 0.390299 -0.062590 1.047291 1.241563 -0.417829 -0.832071 0.031100 -0.882463 -1.339480 0.780986 0.630161 0.283260 0.197677 0.197059 -0.505140 -0.209657 -0.403531 -0.021535 1.381438 -1.104399 0.491458 -0.117622 -0.180245 -0.815641 -0.683544 0.255831 -1.261478 0.801996 1.064836 -0.260785 -0.172421 0.017298 0.370165 -1.036049 -1.578738 0.426022 -0.550639 0.380271 1.881835 -0.700073 -0.135211 -0.048475 -0.423834 -0.108284 1.914368 0.221634 0.608153 1.782857 2.219518 0.404827 -1.463011 -0.707096 0.697744 1.507665 1.454450 1.068270 -2.003902 -1.022062 0.058370 -0.144986 -2.656912 0.093514 0.805437 1.418502 0.063794 -1.872895 0.976490 -0.848836 1.928431 1.309664 0.702857 0.438694 -0.031527 -1.701293 1.837868 3.632792 -0.469388 1.189410 -0.964903 -1.187811 2.332738 -1.597760 1.199249 0.443653 -0.172291 0.054797 -1.093754 0.042434 1.699383 0.556204 1.070452 0.833731 0.565069 -0.347090 -2.727125 -2.475491 -0.272624 1.875069 0.337717 3.337520 -1.662942 -0.932777 -0.549933 2.033568 -0.182287 -0.589148 0.278631 -1.064362 1.170561 -3.025422 -2.371433 3.260695 3.010853 0.896635 0.312111 1.982114 1.399791 -0.489045 -0.864111 -0.705327 0.805822 0.594053 -0.545377 -0.031955 0.025259 -1.884221 -1.259485 0.196538 0.588918 0.717110 -0.563779 -0.676690 0.259913 -1.673344 -1.393377 0.584629 -1.678034 -0.592994 0.239128 0.110495 -0.145062 0.620621 -0.584407 -0.172819 0.654141 -0.926281 0.386870 0.860987 1.138346 0.614243 1.775325 2.076714 -0.277369 1.665890 0.850474 -0.639758 3.663955 -0.731454 0.425813 0.646920 1.155526 0.364636 0.666797 0.689283 -0.905118 -0.241499 -2.031833 0.933497 0.488637 1.264042 -2.120728 -1.667410 -2.099973 -0.717766 0.999473 1.499738 -0.320619 3.460023 -0.444991 0.425753 -3.918036 -0.043509 1.456837 0.011281 1.157354 0.972533 -1.145307 -3.006127 -0.702729 -0.870072 -0.130432 -0.944967 -1.465191 -1.035563 -0.870959 1.193154 -1.197692 0.676014 2.203124 -0.255147 0.982165 -0.871027 0.023513 -0.981210 -0.614128 0.416217 0.384122 -1.650663 1.866700 -0.318912 4.000211 -0.928395 1.574314 -1.144946 1.222954 -0.577180 -1.132096 -0.306359 2.453027 1.222552 0.327483 0.335212 0.106884 -0.675516 1.303928 -PE-benchmarks/union-find.cpp__Union(int*, int, int) = -0.468309 0.243376 2.690802 1.615325 -1.493600 -2.632961 -1.214640 -3.376279 1.835828 0.463284 1.934939 0.325332 0.990869 -0.821835 -0.081338 0.019694 0.333667 -0.920385 0.257546 -0.903927 -0.985609 3.188864 1.124972 -1.548127 0.189038 -3.287998 2.268233 1.060726 1.370816 2.266196 0.036319 -0.183375 -0.336506 1.640084 -0.730546 0.474207 -0.002893 0.847117 -0.735344 0.272422 1.029439 0.635873 1.858198 0.036683 2.074797 0.999250 1.138935 0.480497 -1.140528 -0.704816 -0.971989 1.427852 -1.829473 1.045638 -0.721962 0.485545 0.409488 -1.427801 -0.635470 -1.786837 -0.168207 -0.011808 -1.434016 0.200897 -1.906389 0.557616 -0.504738 -1.182778 0.299258 -0.048762 1.752932 0.846473 0.053210 -0.554426 -2.455184 0.472421 0.186003 0.982950 1.350740 -0.483648 -0.857952 0.092923 -1.395305 -1.623628 1.198981 0.926412 0.480870 0.200624 0.056276 -0.733049 -0.346267 -0.174889 0.329394 1.603543 -0.928677 0.422614 -0.333579 -0.260045 -1.076204 -1.388310 0.314361 -1.333346 0.989641 0.965214 -0.397596 -0.227987 0.189642 0.297655 -1.028782 -1.875219 0.229010 -0.940811 0.614131 2.258823 -0.524928 -0.309391 -0.443031 -0.554627 -0.033271 1.942640 0.433192 0.435485 2.318913 2.260300 0.493905 -1.640877 -0.955772 0.725739 1.370175 1.353648 1.140047 -2.074827 -1.208063 0.034273 -0.201048 -2.957578 -0.178986 0.757348 1.328379 -0.522146 -1.538939 1.385537 -0.954439 1.822952 1.699045 0.512146 0.588555 -0.009616 -1.780899 2.072479 3.918753 -0.416606 1.145894 -1.547260 -1.511760 2.915103 -1.611160 1.134157 0.427368 -0.277342 -0.383557 -1.143950 0.478010 1.801113 0.171624 1.000022 1.046850 0.648552 -0.347576 -2.587230 -2.627696 -0.006344 2.328176 0.629531 3.734119 -2.001922 -0.640305 -0.290904 1.938666 0.279506 -0.552713 0.428256 -1.158528 1.262569 -3.663991 -2.731651 3.505079 2.857796 1.150484 0.391767 1.787156 1.585880 -0.512958 -1.030993 -0.935536 1.046939 0.699805 -1.074772 -0.260410 0.147394 -2.032795 -1.249255 0.090370 0.716005 1.074362 -0.781265 -0.593747 -0.506874 -1.742724 -1.725267 0.962372 -1.839136 -0.604382 0.293114 0.012669 -0.322070 0.770377 -0.341691 0.084870 0.352944 -0.815988 0.542034 0.956832 1.080405 0.363322 1.981949 2.668636 -0.708366 1.392321 0.761744 -0.417272 3.681675 -0.814221 0.522650 0.767719 1.360617 0.425243 0.754780 1.115864 -0.956536 -0.340679 -2.149596 1.006933 0.780133 1.103189 -2.025630 -1.500792 -2.697700 -0.748234 0.855538 2.113930 -0.093947 3.650089 -0.493442 0.556744 -3.928118 0.033220 1.270939 0.142184 1.529927 0.955534 -1.263478 -2.330778 -0.880278 -1.143886 -0.281098 -1.039206 -1.504065 -1.277572 -0.688389 0.823748 -1.281938 0.620439 2.228175 -0.372649 0.973464 -1.037736 0.060239 -1.363510 -0.485963 0.844422 0.261552 -1.518370 1.875781 -0.317418 4.142620 -0.790682 1.664454 -1.080838 1.369650 -0.552438 -1.524918 -0.392255 2.627462 1.110564 0.185721 0.466825 0.057131 -0.214514 1.471569 -PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.162516 0.328757 1.156417 -0.065106 -0.566912 -1.277334 -0.550197 -2.192936 0.726531 0.350507 1.025506 -0.199597 0.600843 -0.069901 -0.004689 0.595435 0.356315 -0.567701 0.476960 -0.516511 -0.573535 1.432131 -0.030501 0.509001 0.125830 -1.547206 0.676557 0.188244 0.808014 0.771849 0.289694 -0.209758 -0.287419 0.450813 0.044812 0.539334 0.354519 0.382071 -0.666540 0.530154 -0.199624 -0.215904 0.704199 -0.053410 0.939735 0.400818 0.375903 0.438849 -0.201892 -0.382195 -0.436995 0.800220 -0.667487 0.243819 -0.164279 -0.405447 -0.119728 -0.314514 -0.328555 0.215680 -0.465459 -0.475776 -0.573741 0.365953 -0.776398 0.412033 -0.746606 -0.401847 -0.095711 0.108970 0.758272 0.419066 0.134703 0.510326 -1.510841 0.207470 0.142506 0.374171 0.480452 -0.424817 0.036135 0.133762 -0.793170 -0.898518 0.878266 1.116114 0.287791 -0.200703 -0.536344 0.013764 -0.399547 -0.135113 0.498149 0.656988 -0.566034 0.034331 -0.535650 -0.263738 -0.740546 -1.550432 0.187942 -0.514977 0.550026 -0.142002 0.084728 -0.250825 -0.064198 0.174164 -0.411449 -0.919310 0.171224 -0.325667 0.272164 1.432151 -0.324830 -0.101743 -0.627751 -0.352325 -0.181289 0.592951 0.523275 0.223979 0.944411 0.957780 0.371579 -0.663473 -0.821734 0.412283 0.550485 0.418369 0.522709 -0.946666 -0.595827 0.199907 -0.386438 -1.364772 -0.465009 0.294966 0.599034 -0.577707 0.070570 0.172687 -0.468170 0.648462 0.805786 0.007608 0.221705 -0.057908 -0.698113 0.844690 1.457561 -0.242467 0.679876 -0.798010 -0.171566 0.807798 -0.634336 0.362825 0.303188 0.007170 -0.607154 -0.410878 0.030462 0.636329 0.226770 0.472749 0.122846 0.446716 -0.534313 -0.865803 -1.136312 0.077741 1.237572 -0.159802 0.916787 -0.861833 -0.423603 0.127496 1.018751 0.406007 -0.478737 0.463981 -0.704621 0.501246 -1.025786 -1.044714 1.403147 1.424107 0.721729 -0.042099 0.466753 0.957145 -1.326473 -0.623466 -0.425320 0.617434 -0.179421 -1.750929 -0.746238 0.155110 -0.875284 -0.356137 -0.230168 0.553320 0.506413 0.481517 0.525897 -0.084085 -0.550582 -0.578792 0.846221 -0.412753 -0.394744 0.140599 0.025212 -0.074827 0.422713 -0.445588 0.362744 0.538424 -0.575872 0.420091 0.677291 0.271703 -0.082144 1.323328 1.028621 -0.188063 0.690246 -0.096883 -0.299098 0.775432 -0.141496 0.401883 0.085965 0.169064 -0.207364 0.244853 0.649148 -0.401924 -0.990282 -0.815649 -0.097860 0.185898 0.532366 0.458129 -1.064010 -1.260171 -0.100256 0.277088 1.228229 0.227535 1.321639 -0.262078 0.530583 -1.348601 0.200309 0.181129 -0.063829 0.708285 0.202892 -0.411132 -0.229077 -0.296366 -0.921696 -1.161152 -0.338139 -0.758394 -0.565006 -0.634810 0.613860 -0.403827 -0.190272 0.441892 0.130600 0.688181 -0.138791 -0.125748 -0.909629 0.319836 1.071025 -0.214346 -0.644760 0.690483 0.103301 2.152045 -0.147117 0.426570 -0.149254 0.154380 -0.018729 -0.722554 -0.135080 1.124082 0.710505 0.137372 -0.211036 -0.232977 0.208189 0.387745 -PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = -0.041730 0.179756 0.952195 0.419518 -0.494673 -1.202790 -0.487182 -1.509125 0.685565 0.261658 0.790912 -0.015664 0.568342 -0.253047 -0.108984 0.156474 0.200542 -0.367659 0.228497 -0.423671 -0.650946 1.376313 0.234358 -0.204778 0.077993 -1.311634 1.055952 0.308853 0.516076 1.022747 0.122762 0.005143 -0.080095 0.587478 -0.217790 0.325398 -0.030181 0.457714 -0.233044 0.272506 0.317423 0.019090 0.745854 0.152497 0.740635 0.660878 0.281574 0.260872 -0.262569 -0.368834 -0.362266 0.294515 -0.738979 0.292023 -0.549356 -0.018796 0.281858 -0.401393 -0.183001 -0.415923 -0.143379 -0.202726 -0.665519 0.193579 -0.857371 0.285042 -0.450959 -0.544718 -0.114731 -0.004788 0.675717 0.385238 -0.044648 -0.076036 -1.177387 0.137129 0.116530 0.276019 0.587185 -0.280090 -0.379278 0.011702 -0.784184 -0.779977 0.736351 0.539402 0.294745 0.181848 -0.082764 -0.366155 -0.261105 0.021194 0.408240 0.688584 -0.145791 0.100990 -0.143722 -0.112771 -0.474349 -0.912521 0.228945 -0.479877 0.417911 0.260169 -0.089796 -0.169650 0.079842 0.094773 -0.413279 -0.796542 0.102539 -0.548044 0.260685 1.002897 -0.136676 -0.187158 -0.373832 -0.340696 0.095585 0.796498 0.344729 0.077197 0.976776 0.799921 0.162283 -0.673979 -0.525227 0.325529 0.437230 0.391801 0.446577 -0.878813 -0.565998 0.085294 -0.274924 -1.177837 -0.235945 0.244079 0.451258 -0.548968 -0.419929 0.815487 -0.438199 0.422998 0.812212 0.156428 0.259376 -0.052458 -0.702142 0.781483 1.474515 -0.166763 0.465564 -0.744769 -0.633163 1.197503 -0.538556 0.303494 0.177068 -0.215647 -0.413382 -0.332893 0.376436 0.681237 -0.034746 0.413139 0.453002 0.324463 -0.283596 -0.806846 -0.973905 0.079944 1.164738 0.257779 1.417038 -0.875917 -0.062649 0.057425 0.786915 0.264312 -0.203080 0.212458 -0.423110 0.484799 -1.537621 -1.084831 1.348193 0.885980 0.639836 0.082610 0.430169 0.712293 -0.230493 -0.438682 -0.404150 0.474751 0.182724 -0.724298 -0.282974 0.062147 -0.816854 -0.440243 -0.060707 0.402264 0.480458 -0.232916 -0.064830 -0.562500 -0.559432 -0.780060 0.464850 -0.643605 -0.201513 0.133271 -0.032274 -0.243704 0.245707 -0.063720 0.212205 0.140685 -0.246514 0.292494 0.452507 0.292340 0.036915 0.957840 1.115251 -0.496159 0.259634 0.138798 -0.068480 1.269781 -0.254409 0.306228 0.271086 0.658369 0.193679 0.241326 0.617018 -0.356669 -0.317449 -0.854986 0.215580 0.499665 0.327253 -0.415460 -0.497325 -1.259158 -0.208878 0.133543 1.236910 0.044378 1.361663 -0.183687 0.336496 -1.237705 0.147198 0.366964 -0.035730 0.588568 0.348296 -0.453383 -0.487341 -0.380714 -0.628469 -0.426316 -0.421584 -0.585650 -0.540622 -0.171540 0.052854 -0.499654 0.103776 0.739602 -0.097468 0.303295 -0.408616 0.029621 -0.716695 -0.012193 0.553705 -0.061129 -0.535932 0.624745 -0.039653 1.541532 -0.166405 0.677218 -0.285364 0.548798 -0.227209 -0.712218 -0.203654 1.045990 0.394294 -0.023424 0.278376 0.023730 0.273487 0.534345 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 1.154849 0.708459 1.729820 0.316615 -1.193173 -2.545896 -0.445193 -3.781732 1.622192 0.305223 0.978910 0.202503 0.998359 -0.598890 -0.224488 1.491124 0.960546 0.071448 0.170493 -1.073807 -0.590056 2.435321 -0.694838 0.344192 0.416640 -2.198884 0.560423 0.907841 2.098058 0.850895 0.784402 -0.385690 -0.661711 0.587208 -0.252812 0.362873 0.181890 0.182626 -2.531804 0.487999 -0.712049 -0.248014 1.548608 -0.028653 1.415042 -0.237338 1.234340 0.948528 0.095714 -0.270685 -1.130330 2.114182 -0.121790 0.832103 -0.351977 -0.715131 -0.406723 -0.208207 -0.072884 1.348126 -0.722898 -0.274567 -1.001048 0.210516 -1.321723 0.176793 -1.020210 -1.042879 -0.312255 -0.165624 0.963948 0.234968 -0.177796 -0.307396 -3.394270 -0.161140 0.158468 0.889773 0.998151 0.340246 0.663463 -0.430365 -1.297021 -1.080866 1.386622 2.030324 0.147631 0.282851 -1.582199 -0.873517 -0.680515 -0.318706 1.200298 0.417717 -1.649182 0.088073 -1.404084 -0.417104 -1.068776 -2.387121 0.611296 -0.187088 0.816363 -1.670675 0.852361 0.233195 0.744545 0.062149 -0.152185 -0.832159 0.171930 -0.211930 0.293533 3.080741 -0.001653 -0.822255 -1.127978 -0.401457 -1.367711 0.809336 0.709579 0.102063 1.370104 1.250394 0.964783 -1.122279 -1.160151 0.938828 0.403722 0.986253 0.811457 -0.881282 -0.745520 0.414432 -0.415048 -2.510396 -0.553314 0.565785 1.148203 -0.843724 0.879076 -0.642410 -0.753056 1.072656 0.646861 -0.521679 0.730105 -0.079786 -0.959058 1.048707 2.436875 -0.113197 0.791434 -1.560530 0.098544 0.643299 -0.519056 0.581757 -0.130584 -0.564453 -0.784232 -0.101975 0.315023 0.918052 -0.178925 -0.124741 0.019990 0.797827 -1.586531 -1.437149 -2.021296 0.001568 1.405966 0.036437 1.478604 -1.143211 -0.848050 -0.314556 1.031679 0.252814 -0.394959 1.394219 -1.933796 0.972326 -1.164103 -1.406317 2.415543 2.598248 1.099443 -0.475740 0.906608 1.017865 -2.343387 -1.440085 -0.312365 0.325130 0.423383 -3.421555 -1.029813 0.267464 -1.579893 -0.467442 0.113178 0.761334 0.647573 1.275814 2.041485 -0.843642 -0.869023 -1.444416 1.653299 -0.401749 0.140295 0.464522 0.154819 -0.390211 1.090202 -0.890556 0.177104 0.871172 -0.567050 0.802546 0.370409 0.502054 -0.402004 1.560008 1.659483 0.067550 2.522747 -0.108988 -1.133046 1.718787 -0.388128 0.901202 0.081551 -0.070761 -0.572549 0.519399 0.626238 -0.819646 -0.963831 -1.190084 -0.631871 0.309500 0.874179 0.858170 -1.558219 -1.812794 -0.311224 -0.239001 1.359222 0.184074 1.800763 -1.276838 0.876572 -2.506391 0.464207 0.342108 0.090075 1.243850 0.359342 -1.020624 -0.001821 -0.156721 -1.654137 -1.977461 -0.345083 -1.407373 -0.993304 -1.005461 1.239075 -0.992708 -0.267600 1.175607 -0.484456 1.435929 -1.627266 0.172067 -1.012976 0.361160 1.740973 -0.224532 -1.101421 0.484138 0.062233 3.534162 0.376868 0.848210 -0.201304 0.133429 -0.118686 -2.002204 -0.700747 1.717772 0.994846 0.275782 -0.369491 -0.525560 0.335379 0.672351 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = -0.589581 -0.393878 2.753335 2.218079 -2.138677 -3.170790 -1.245664 -4.703796 2.713412 0.700851 2.552369 0.706105 1.646868 -2.341031 -0.221464 0.084301 1.062225 -0.874258 -0.112648 -1.348383 -0.486351 3.853016 0.496459 -1.900610 0.209256 -3.468710 2.249033 1.321298 1.640759 2.252660 0.679167 -0.096577 -1.063604 1.379473 -0.665038 1.111195 0.348409 0.852388 -1.670396 -0.754405 1.021118 0.126178 2.328709 -0.473778 3.115730 -0.365813 1.736288 0.583228 -1.489227 -1.081612 -1.020538 1.842205 -1.766471 1.147114 -0.392834 -0.121172 0.403653 -1.323260 -0.648073 -1.806412 -0.064260 -0.512244 -1.711417 0.095967 -1.799992 0.851728 -0.058772 -1.339086 0.349841 -0.948214 1.795741 0.693516 0.134636 -0.553989 -3.179475 0.003631 0.352140 0.786647 1.647169 0.538442 -0.168244 -1.108252 -1.554936 -1.413155 1.904566 1.447681 0.343833 0.884102 -0.928125 -0.412195 -0.120502 -0.434290 1.093776 1.019366 -1.878323 -0.363877 -0.193546 -0.495018 -0.848131 -1.610683 0.971137 -1.138919 1.089481 0.790530 -0.769129 0.427691 0.564157 0.201135 -1.691929 -1.796145 0.288324 -1.241231 1.109282 3.278673 -0.875182 -0.915049 -1.361646 -0.535431 -0.279482 1.744210 0.392526 0.928859 2.658717 2.556866 1.024323 -2.493986 -1.512779 1.651263 1.896014 1.617342 0.755080 -2.141819 -1.184350 0.425341 -0.759705 -3.689506 -1.080123 0.560246 2.135025 -0.261323 -1.494140 1.079340 -0.862904 2.441422 1.734815 0.076463 0.426737 0.593351 -2.445870 2.157773 3.729274 -0.137345 1.299584 -1.540530 -1.131802 2.292555 -1.358119 0.830970 0.490910 -0.686603 -0.618361 -1.016862 0.623110 1.750043 -0.081305 1.051007 -0.404016 1.490518 -1.207625 -3.381148 -3.581677 -0.145745 2.870912 1.332984 4.071104 -2.517529 -1.192692 -0.304977 2.227793 0.055680 -1.018279 1.105495 -2.290346 1.829421 -3.549950 -3.263349 4.528950 3.612979 1.881570 0.518440 2.266174 1.406080 -1.608092 -0.704289 -0.817995 0.919164 1.589789 -2.452126 -0.102499 0.306878 -2.606833 -2.242156 0.369027 0.964569 0.591276 -0.461509 0.973762 -0.629740 -1.037641 -1.848282 1.844993 -1.460439 -0.353139 -0.018902 0.229629 0.176218 1.244020 -0.899892 0.323259 0.205173 -0.694632 0.850103 0.833464 1.283416 0.433087 2.268755 3.462044 -1.116470 2.436587 0.167117 -1.025954 3.782745 -0.863818 0.859013 0.751126 1.027693 0.890609 0.532821 1.483674 -1.426647 0.135583 -2.366410 -0.081233 1.068738 1.872292 -2.309022 -1.979786 -3.398148 -0.658117 0.331195 1.923874 -0.285130 4.072324 -1.569067 0.479040 -4.839445 -0.005202 1.802171 0.111929 1.712884 0.778845 -1.432826 -2.911923 -0.811928 -1.855746 -1.084187 -1.156520 -1.486875 -1.615857 -1.418362 2.220469 -1.634496 0.323089 2.473654 -0.407202 1.632626 -1.685485 0.453252 -1.314379 -0.220766 0.002457 0.446986 -1.975345 2.243099 -0.048867 5.256723 -0.416455 1.548673 -1.148838 2.357097 -1.316792 -2.670643 -0.557764 2.893418 1.980251 0.215419 0.161051 -0.083741 -0.507230 1.950786 -PE-benchmarks/trie-suffixes.cpp__main = 4.000125 6.409735 13.509079 3.419493 -14.297640 -15.631228 -4.510961 -24.863260 9.319690 2.024730 5.310323 1.940405 2.653519 -8.369904 -1.896730 10.290056 4.548298 -0.018436 -1.755955 -7.445028 -12.809250 6.739515 -3.223410 -0.784147 7.560618 -13.694056 9.874182 1.907276 8.970802 4.103386 8.102973 -2.125918 -6.474362 8.800947 7.892443 10.123646 3.471250 1.555665 -11.518635 5.688942 -0.526532 -4.481073 9.007804 3.460394 13.430041 3.085204 6.938456 6.661994 -7.722847 2.055603 -8.196840 15.026322 -7.055839 6.701355 -0.175271 -0.362807 -2.752701 -8.076904 -0.626548 5.347475 -8.924707 -9.081988 -7.731871 0.717172 -10.370620 0.054106 -5.501186 -6.636632 -1.846735 5.128868 8.456994 3.712109 -1.900523 3.757308 -13.473851 -1.389453 4.127872 7.388749 11.615043 -2.141831 5.060626 -3.237830 -7.544234 -9.118843 11.677751 3.831923 4.256700 -0.968252 -3.072700 -5.205471 -5.962567 -5.483569 7.930000 5.528820 -12.936119 -2.580387 -9.958808 -4.300089 -9.858551 -17.918443 3.424292 -2.939746 6.675565 -5.924445 -2.085864 1.853057 4.098538 1.936672 -1.315823 -2.783615 0.653872 -3.229247 4.827428 17.129660 2.320850 -6.303181 -3.315518 -5.267362 -5.342826 4.798918 6.026644 -0.282274 15.103544 12.562507 10.999662 -4.605748 -7.706408 1.408400 1.210990 8.456814 7.231952 -10.900477 -6.076915 4.102251 0.225741 -16.959521 -0.203830 -0.325994 6.504849 -0.789300 0.194179 -5.506026 -2.758961 4.213157 -0.028976 -2.101517 3.840529 -1.019621 -6.231657 9.275902 17.024509 -1.443046 3.947352 -8.379696 2.981575 4.552436 -5.571925 0.453613 0.729805 -6.022834 -1.865422 -2.036581 -2.942594 7.020446 0.104163 -5.466815 1.946750 6.486951 -13.033941 -12.645113 -9.754611 2.484352 12.144755 -3.057995 10.882214 -10.201199 -2.696199 -5.548480 11.759089 1.577094 -0.281549 6.172110 -11.003989 7.775065 -0.367747 -10.131785 18.544062 15.228559 4.811190 -3.880690 5.447240 8.004677 -20.731665 -10.151177 -6.259602 -2.348108 4.647766 -18.059487 -10.408157 2.384931 -12.453728 -2.649928 1.762557 5.070624 9.811871 6.608974 5.496268 1.785545 -4.289429 -10.314963 8.184660 -2.978175 -1.411546 4.240784 2.012347 2.050557 8.207379 -4.134193 -2.022314 0.822602 -3.939326 4.130547 5.515906 10.359899 -1.359799 14.345965 10.499443 0.053336 13.331502 2.936896 -6.907542 9.056448 1.819554 7.403258 4.809207 -0.554641 -1.869325 2.938367 8.233179 -6.756150 -7.046748 -8.607309 -4.123838 -1.000514 5.339569 1.634987 -6.652261 -14.025471 -3.434174 1.669659 3.537213 -0.532555 11.856086 -1.586623 2.368225 -15.422889 -0.345653 7.211898 -0.468520 9.127542 4.052438 -8.777167 -3.915994 -4.362236 -10.346560 -11.921385 -3.215867 3.601361 -6.881225 -2.799798 10.485483 -1.322397 -0.429657 10.526785 -0.594525 6.590910 -9.722692 4.285230 -5.652281 -0.481103 13.912729 -0.962121 -8.675859 8.421498 2.820002 26.031566 3.310170 3.080297 -2.614206 -5.820014 3.356723 -6.980502 -4.880656 10.600435 5.947633 5.300514 0.413327 -0.086974 -0.675851 11.123998 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = -0.179190 0.433119 4.558581 2.216331 -3.358600 -4.685713 -1.858988 -7.485771 3.302139 1.112951 3.770429 0.453441 1.424119 -1.923397 0.222221 1.561451 1.191283 -1.328621 0.090667 -2.212183 -1.321959 4.155712 0.692126 -1.372198 0.789483 -5.488473 2.515406 1.669911 2.507485 1.889928 1.139119 -0.648739 -1.658795 2.330392 -0.301603 1.856756 1.222599 0.854169 -2.595251 0.414810 0.602953 0.657373 2.634912 -0.046444 4.694528 0.260638 2.747836 1.276461 -2.516775 -1.097786 -1.849379 4.288448 -2.567845 2.003125 -0.144987 -0.015800 -0.233474 -2.426296 -0.912673 -1.658768 -0.941735 -0.934296 -2.132192 0.319422 -2.385446 1.238629 -0.554195 -1.709078 0.610566 0.529613 3.392799 0.940767 0.027744 0.818704 -4.193777 0.208379 0.304318 1.882203 2.627978 -1.085018 0.131041 -0.700293 -2.037325 -2.608915 2.864803 2.134891 0.864540 0.072760 -1.126434 -0.258254 -0.768690 -1.421783 1.250241 1.977469 -3.477686 -0.412342 -0.707757 -0.920355 -2.346085 -3.077215 0.766858 -1.862771 1.771269 0.448243 -0.495462 0.275334 -0.137324 0.623912 -2.202471 -2.392742 0.641929 -0.978939 1.565096 4.655476 -1.276362 -1.026624 -0.998767 -0.861816 -1.033506 2.415700 1.454766 1.136746 4.332050 4.245191 1.500318 -2.604435 -2.465438 1.280008 2.618034 2.965030 1.843480 -3.386296 -2.165437 0.605611 -0.683904 -5.070489 -0.653892 1.082617 3.341707 0.036896 -1.555112 0.078379 -1.333666 3.637321 1.977379 0.417871 0.539147 0.072167 -3.316150 3.308314 5.888316 -0.647714 2.296458 -1.933108 -0.101359 2.213889 -2.597245 1.219925 1.553997 -0.810871 -0.728593 -1.613965 -0.952927 2.639260 1.056344 0.958186 0.233272 2.470168 -2.358327 -4.760536 -4.868741 -0.197892 3.693627 -0.108421 4.645413 -3.364864 -2.204205 -0.978622 3.884422 -0.073745 -1.587999 1.436455 -3.100448 2.195872 -2.992482 -4.032089 6.507613 6.492736 2.463230 -0.130853 3.462688 3.146673 -4.275660 -1.914564 -0.991389 1.019891 1.300575 -4.452011 -1.612689 0.676794 -3.637152 -2.831828 0.084439 1.584462 0.812365 0.732936 1.332342 1.012691 -2.103214 -1.957033 2.079575 -1.873573 -0.911962 0.453957 0.524389 0.529961 1.813966 -2.011235 0.290219 1.361291 -2.122562 1.264497 1.946770 2.689500 1.172207 4.437167 4.009077 -0.228871 4.754675 0.571125 -1.955467 4.376459 -0.644195 1.476924 0.967263 0.569772 0.032676 0.774259 1.868577 -2.051782 -1.373881 -3.482527 0.122406 0.471227 2.545431 -1.076021 -3.034758 -4.812670 -1.062099 1.367905 2.255627 -0.427056 5.529669 -1.380138 0.740579 -6.674532 -0.106087 2.242777 -0.384089 2.260792 1.264194 -1.978488 -4.055234 -1.249001 -2.674826 -2.688056 -1.273869 -1.703072 -2.170211 -2.425351 3.471886 -2.009847 0.519541 3.081402 0.477119 2.469298 -1.974302 0.320461 -1.914336 0.242307 2.248280 0.397797 -3.571906 3.201458 0.073270 8.982165 -0.818957 1.819279 -1.636652 0.853027 -0.655991 -2.439326 -0.726465 4.151887 3.119398 1.074249 -0.308618 -0.089601 -1.048751 3.034521 -PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.590227 1.095375 5.995661 2.009000 -4.055364 -5.570401 -2.307490 -11.530572 5.042618 1.867363 4.757274 0.171558 2.346174 -2.925731 -0.508276 2.274863 1.770493 -2.167838 0.901976 -2.701846 -1.753586 6.352375 -0.795813 0.043434 0.753587 -8.134375 3.580160 1.589673 4.394846 1.997997 2.102037 -1.048158 -2.255100 2.826180 0.236536 2.507558 2.179854 1.353151 -4.039006 0.306524 -0.064432 0.325170 3.657269 -0.144564 5.956227 -0.534352 3.015689 1.778049 -2.120769 -1.164443 -2.123408 5.391745 -2.757303 2.243643 0.718475 -1.458176 -0.371198 -2.757278 -0.790483 0.546569 -1.869437 -1.876536 -2.387054 0.890413 -3.148006 1.438230 -1.404402 -1.793852 0.374923 0.298397 3.984618 1.585248 0.722186 1.397897 -6.775009 0.762955 0.736091 1.777987 3.516817 -0.511457 1.081600 -0.876155 -3.219632 -3.963386 4.477409 4.975140 0.825552 -0.085814 -2.342049 -0.457134 -1.283214 -2.126679 2.288193 2.862031 -4.666038 -0.899598 -2.220836 -1.435955 -3.059991 -5.741140 1.070484 -2.526045 2.575055 -0.341082 -0.751515 0.215418 0.768611 0.366010 -2.078946 -2.777280 1.021923 -1.803329 3.014497 7.318624 -1.355805 -1.859613 -2.850623 -1.437534 -1.658127 2.512111 1.979815 1.153446 5.895425 5.083058 2.712265 -3.560780 -3.709542 2.790796 2.594725 3.228368 1.906983 -5.005630 -2.273835 1.065839 -0.546112 -6.979073 -1.697472 0.716385 3.788935 -1.162578 -0.413299 -0.599122 -1.497071 4.311957 2.788020 -0.407753 0.902629 0.691581 -3.585911 4.085746 7.046218 -0.358615 2.388220 -3.519202 0.089765 2.151847 -3.227950 1.825434 1.312478 -0.497222 -1.736987 -2.233237 -0.266466 3.347984 0.146481 0.948501 -0.430218 3.182453 -3.363952 -5.654931 -6.654046 0.459195 5.119843 -0.163783 5.627910 -4.489262 -2.887781 -0.508273 5.049945 1.019298 -1.870612 2.973472 -4.628929 3.065230 -2.903789 -5.395133 7.993402 8.149425 3.100447 -0.902863 3.731806 3.638351 -7.023689 -3.169591 -1.680798 1.509124 1.376757 -7.921088 -2.547826 1.178271 -4.553211 -3.376653 0.033927 1.992794 2.397802 1.522642 3.197002 0.310599 -2.140136 -3.127907 4.501040 -1.427726 -1.363679 0.266317 0.930544 0.466259 3.424412 -2.623912 0.544382 2.003989 -2.263836 1.701496 2.780711 2.699424 -0.011015 5.887656 5.229383 -0.373421 5.976383 0.289694 -2.110090 4.797317 -0.758403 1.700780 1.200894 -0.217777 -0.315203 1.445712 2.675032 -2.938321 -2.656609 -4.418662 -0.471093 -0.049095 3.009285 -0.388256 -4.294243 -6.396085 -1.442110 1.034556 2.857093 0.548271 7.109612 -2.092673 1.082484 -8.015711 -0.007455 2.688052 -0.317848 3.686398 1.258917 -2.804033 -2.805158 -1.672640 -4.231753 -5.087396 -1.545227 -2.618169 -3.035247 -3.786016 5.297230 -2.246417 0.300451 3.736844 0.802899 3.213894 -3.160619 0.637529 -3.378606 0.887436 3.340880 -0.367439 -4.231717 3.794646 -0.078577 11.371187 -1.294123 1.769380 -1.784025 1.262792 -0.949596 -4.236298 -0.957352 5.410479 3.506443 1.425232 -1.418254 -0.788056 -1.287504 4.054925 -PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = -0.087759 0.902240 6.269595 2.489243 -4.331377 -6.178523 -2.352678 -9.546320 4.247203 1.238892 4.586305 0.783349 1.734186 -2.310244 0.300708 2.373056 1.480015 -1.710516 0.103350 -2.824871 -2.100278 5.093407 1.202383 -1.606765 1.397307 -7.204048 3.197677 1.843414 3.603419 2.863948 1.544178 -1.037035 -1.991256 3.253127 0.268093 2.462057 1.479026 0.848949 -3.615094 1.072918 0.530426 0.431487 3.538978 0.338602 5.960530 0.465099 3.568210 1.710655 -3.095528 -1.028764 -3.016171 6.085273 -3.673371 2.551695 -0.203361 0.293492 -0.650310 -3.228374 -1.275506 -1.996137 -1.697324 -1.406615 -2.861758 0.391220 -3.432388 1.443867 -1.529645 -2.168523 0.476223 1.031536 4.444378 1.598273 0.228104 1.197291 -5.624398 0.383547 0.325337 2.809615 3.601180 -1.588434 0.077182 -0.573569 -2.507010 -3.478011 3.785038 2.270079 1.046724 -0.316598 -1.202732 -0.496310 -1.556757 -1.732474 1.419533 2.570995 -4.832429 -0.099086 -1.455096 -1.250767 -3.045187 -4.520598 0.756775 -2.517189 2.221697 0.234902 -0.384265 0.256465 -0.452935 0.879583 -2.551999 -3.181875 0.904882 -0.849376 1.287276 6.083541 -1.676856 -1.098792 -0.923511 -0.909614 -1.436548 3.236892 1.860572 1.517666 5.346125 5.613897 2.157555 -3.009828 -2.758944 1.401540 3.245231 3.803848 2.779649 -4.254420 -2.922595 0.810120 -0.456804 -6.922303 -0.383665 1.725238 4.048743 0.469366 -2.076765 -0.492501 -1.696463 4.463607 2.495371 0.463908 1.045670 -0.163602 -4.098368 4.462416 8.072644 -1.170321 3.153096 -2.686895 0.031596 3.354743 -3.834049 1.651200 1.415604 -0.879843 -0.471865 -2.161843 -1.646816 3.578985 1.591832 0.931383 0.743927 2.832870 -2.879957 -6.411488 -5.919644 -0.354097 4.868260 -0.592732 5.594726 -4.176095 -2.536252 -1.532646 5.022405 0.046140 -1.836790 1.773211 -3.971372 2.837002 -4.165899 -5.215354 8.555359 8.434718 2.748748 -0.145350 4.043730 4.514872 -5.904273 -2.746854 -1.575074 1.152561 1.330389 -5.965109 -2.612702 0.668468 -4.840123 -3.150853 0.230311 1.972596 1.623453 1.150580 1.411175 1.784002 -2.984467 -2.738810 2.771141 -2.802710 -1.584193 0.802424 0.613615 0.791716 2.360054 -2.354253 0.298660 2.035455 -2.930817 1.353711 2.591387 3.792869 1.416552 5.833639 5.110383 0.094605 5.841936 1.089127 -2.726640 5.652078 -0.792826 1.951891 1.293484 0.645276 -0.247139 1.288510 2.352463 -2.607105 -2.410166 -4.391435 0.298944 0.273107 3.320707 -0.832154 -4.306172 -5.788179 -1.366145 2.172985 2.752936 -0.550656 7.132652 -1.501496 1.036947 -8.533395 -0.188801 3.068089 -0.244817 3.337256 1.884493 -2.720304 -4.783678 -1.818236 -3.328310 -2.983842 -1.668522 -1.934927 -2.674763 -2.967400 4.679519 -2.585629 0.709597 3.779274 0.427724 3.564897 -2.234515 0.378632 -2.729486 0.360765 3.541471 0.695181 -4.413243 4.403055 0.077451 11.461509 -1.000215 2.208032 -2.187040 0.377297 -0.424780 -2.625690 -1.031369 5.502265 4.045159 1.528229 -0.384859 -0.296356 -1.199140 3.796267 -PE-benchmarks/m-coloring-problem.cpp__main = 0.033107 0.270718 1.033388 -0.073344 -0.539816 -1.203348 -0.508416 -1.938483 0.596589 0.366113 1.025746 -0.190268 0.613397 -0.046572 0.030148 0.450371 0.387130 -0.542021 0.420295 -0.511563 -0.569212 1.205893 -0.004341 0.465573 0.138427 -1.307821 0.706308 0.165588 0.556114 0.767117 0.300702 -0.125889 -0.321902 0.397632 0.065673 0.549023 0.334878 0.395966 -0.462211 0.476062 -0.093088 -0.249180 0.657838 0.007865 0.870739 0.491362 0.254477 0.398476 -0.260623 -0.442980 -0.305781 0.537869 -0.660062 0.201134 -0.203190 -0.351519 -0.020421 -0.286728 -0.264911 0.048921 -0.350624 -0.516848 -0.558908 0.345221 -0.696130 0.386491 -0.679579 -0.394318 -0.117248 -0.009027 0.664538 0.310095 0.046309 0.515039 -1.281206 0.127267 0.155356 0.269521 0.458775 -0.406389 -0.083932 0.064897 -0.776916 -0.836039 0.802679 0.935430 0.314476 -0.108502 -0.521070 0.050964 -0.316476 -0.082519 0.500650 0.620483 -0.440656 -0.024952 -0.337070 -0.287034 -0.691117 -1.394847 0.248755 -0.454521 0.499900 -0.026552 -0.046499 -0.282063 -0.200449 0.161711 -0.457367 -0.836713 0.178098 -0.403780 0.270697 1.210587 -0.336860 -0.116031 -0.640582 -0.377817 0.031997 0.568149 0.495934 0.162362 0.873086 0.849415 0.307089 -0.646655 -0.768533 0.334578 0.518573 0.334560 0.442393 -0.858715 -0.565159 0.229412 -0.519183 -1.206102 -0.475341 0.220171 0.574193 -0.531236 -0.029286 0.311799 -0.482854 0.493906 0.798012 0.120518 0.169492 -0.037575 -0.686681 0.701568 1.222223 -0.244872 0.652875 -0.637410 -0.211970 0.753574 -0.516149 0.268123 0.355361 -0.056915 -0.610731 -0.327371 0.040681 0.587743 0.248266 0.498376 0.087539 0.438400 -0.477905 -0.729399 -1.059057 0.068969 1.231275 -0.034359 0.838013 -0.853528 -0.291182 0.138473 0.969864 0.356649 -0.516074 0.365558 -0.534767 0.441635 -1.015853 -0.934609 1.264105 1.211304 0.725960 -0.025288 0.360569 0.816698 -1.116138 -0.496623 -0.419301 0.592237 -0.210010 -1.473362 -0.618791 0.144813 -0.814688 -0.324648 -0.250898 0.542636 0.442580 0.304314 0.454441 -0.106036 -0.416173 -0.516750 0.678470 -0.344321 -0.385105 0.105390 -0.013543 -0.027947 0.292399 -0.347424 0.337042 0.423245 -0.539122 0.357151 0.636662 0.258591 -0.020675 1.292993 0.905999 -0.291175 0.424005 -0.166224 -0.251180 0.689539 -0.134508 0.395445 0.079497 0.286619 -0.066973 0.173922 0.692010 -0.352677 -0.873606 -0.744170 -0.145975 0.265630 0.504628 0.342033 -0.918475 -1.268896 -0.014417 0.185995 1.274115 0.143948 1.217757 -0.172529 0.504187 -1.123018 0.192593 0.159844 -0.120408 0.555183 0.169948 -0.376098 -0.210503 -0.269738 -0.915844 -1.023315 -0.254279 -0.542208 -0.527883 -0.488207 0.452848 -0.339868 -0.205848 0.339820 0.099865 0.573581 -0.002193 -0.114198 -0.788744 0.282430 0.969184 -0.201027 -0.588597 0.673169 0.163524 1.898666 -0.071090 0.425006 -0.081715 0.203265 -0.046002 -0.643358 -0.163035 1.009756 0.705631 0.125032 -0.127134 -0.151962 0.272392 0.366213 -PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.060164 0.724513 2.506367 1.366170 -1.273921 -1.861280 -0.946958 -2.726030 1.212082 -0.055373 1.387401 -0.052882 0.382752 -0.309559 -0.061480 -0.139915 0.295317 -0.310515 0.036406 -0.703304 -0.683346 1.735651 0.510373 -1.451647 0.248479 -2.548892 1.275638 1.029003 1.212630 1.135311 0.060082 -0.313686 -0.530692 1.237077 -0.733581 -0.206243 0.439094 0.298590 -1.187410 0.102429 0.495845 0.978373 1.303846 -0.152923 1.247449 0.638326 0.851979 0.554313 -0.941953 -0.140306 -0.795579 1.934856 -0.918163 0.885116 0.226438 0.471621 0.112880 -1.441447 -0.412172 -0.833947 -0.182805 0.257578 -0.750964 0.066746 -1.356144 0.299201 -0.180477 -0.927695 0.831330 0.095170 1.303516 0.366763 0.173444 -0.402090 -1.489679 0.521466 0.118903 1.157866 0.947075 -0.398208 0.229353 0.336845 -0.798037 -1.034110 0.562612 0.645985 0.461187 -0.158206 0.118008 -0.666369 0.069149 -0.515195 0.084270 0.993639 -0.912593 0.478478 -1.163419 -0.289378 -1.116019 -1.204248 0.034132 -0.951826 0.844984 0.547061 -0.525509 0.091928 0.459388 0.324946 -0.300793 -1.370804 0.118279 -0.311002 0.602835 2.121514 -0.512277 -0.466944 -0.088094 -0.485543 -0.672281 1.343858 0.198494 0.455862 1.408748 1.874599 0.411957 -1.111184 -0.740501 0.289050 0.827985 1.358929 1.224816 -1.731612 -0.856483 -0.102897 0.053036 -2.504230 0.323669 0.202729 1.184685 0.126148 -1.266580 0.362874 -0.842864 1.550834 0.573984 0.561684 0.449464 -0.241905 -1.133214 1.554735 2.685854 -0.488069 1.052453 -1.027434 -0.891164 1.230678 -0.911591 0.929970 0.227439 -0.162216 0.294731 -0.928703 -0.123073 1.423935 0.336975 0.489152 0.955088 0.329394 -0.592338 -2.355422 -1.870822 0.281282 1.241897 -0.340820 2.352299 -1.335746 -1.084240 -0.454002 1.987377 -0.411221 -0.344215 0.392015 -1.055121 0.950857 -1.525653 -1.982283 2.319030 2.502606 0.188306 -0.056910 1.540968 0.991837 -1.123770 -0.977080 -0.766821 0.547433 0.502600 -1.017240 -0.426139 0.007295 -1.311518 -0.533847 0.396334 0.618424 0.941335 -0.275040 -0.418318 0.198978 -1.667504 -1.407905 0.946704 -1.322417 -0.153480 0.492357 0.026568 -0.133578 0.880272 -0.674415 -0.573559 0.588016 -0.772496 0.357703 0.617551 1.145845 0.163286 1.742466 1.297505 0.209745 1.937186 0.922383 -0.792312 3.048331 -0.652382 0.449212 0.442299 0.802972 -0.352004 0.763370 0.584221 -0.779527 -0.765789 -1.741227 0.453174 -0.143179 0.849364 -1.297103 -1.295468 -1.700277 -0.854572 0.810716 0.924745 -0.059588 2.703675 -0.301046 0.168823 -2.960541 -0.160675 1.159056 -0.060806 1.262299 0.799763 -1.091578 -2.306803 -0.493249 -0.915955 -0.397273 -0.731864 -1.407064 -0.981166 -0.794841 1.266414 -0.558797 0.575742 1.884135 -0.045277 0.626755 -0.794739 -0.064581 -0.597120 -0.669245 0.851546 0.139760 -1.467385 1.597800 -0.194597 3.603169 -0.432294 1.105326 -1.078666 0.110439 0.076061 -0.862717 -0.371163 2.023950 0.920888 0.496296 -0.089838 0.047789 -0.797011 1.113441 -PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = -1.028157 0.998493 4.557762 3.083510 -2.971324 -4.050451 -1.965845 -5.186205 2.180729 0.203069 3.311426 0.186871 0.894952 -0.669781 0.311453 -0.782537 0.609397 -1.026537 0.024798 -1.533445 -1.763827 2.977607 1.726259 -3.234103 0.503884 -4.071613 3.342094 2.177728 1.215588 2.448471 0.212969 -0.440615 -1.311366 2.728457 -1.145894 0.123236 0.631059 0.940544 -1.067180 0.119689 1.751053 1.602717 2.900757 0.038073 3.010231 1.861698 1.792364 1.082479 -2.647218 -0.650507 -1.115993 2.858157 -2.657228 1.813678 0.202036 1.152488 0.867050 -3.114531 -0.754660 -2.962355 -0.066794 -0.131018 -2.007113 0.159011 -2.686945 0.590733 -0.234875 -1.893332 1.447052 0.030700 2.698283 0.408877 -0.333283 -0.567077 -2.310572 0.588065 0.342583 1.826078 2.158462 -1.070929 -0.556611 0.369076 -1.889400 -2.217955 1.072704 0.421725 1.114566 -0.015649 0.293969 -0.870652 0.364744 -0.932968 0.166591 2.355047 -1.354251 0.756529 -0.747074 -0.821475 -2.561982 -1.941308 0.604271 -1.913029 1.840637 1.788933 -1.649808 -0.452715 -0.147896 0.534208 -1.438358 -2.938390 0.229936 -1.301496 1.699477 3.132336 -1.178737 -0.718195 -0.272136 -1.263208 -0.005444 2.878201 0.839442 0.552234 3.207971 3.970131 0.515122 -2.372158 -1.621570 0.093904 1.891798 2.708860 2.063735 -3.434852 -1.814733 0.176069 -0.477909 -4.477277 0.454306 0.659930 2.431329 0.394468 -3.176851 1.539508 -1.746796 2.735410 1.717910 1.935567 0.591368 -0.239823 -2.537060 2.950321 4.972923 -0.867714 2.100395 -1.380427 -1.998693 3.143798 -2.098443 1.519211 1.281562 -0.588643 0.044318 -1.595397 -0.300046 2.773590 1.102987 1.235807 1.954394 0.937648 -0.938487 -4.353098 -3.868886 0.727262 3.349992 0.322597 4.960894 -3.157264 -1.528335 -0.686911 3.691505 -0.540273 -1.207050 0.402615 -1.419830 1.956541 -3.909782 -3.739641 4.592796 4.247764 0.976460 0.073234 2.830360 1.812450 -1.374192 -1.610438 -1.797287 1.416983 0.670873 -0.688052 -0.137794 -0.008019 -2.929684 -1.221457 0.429911 1.376345 1.880262 -1.747561 -1.501894 0.206177 -2.881009 -2.562794 0.956958 -2.453205 -0.714565 0.726978 -0.242514 0.124307 1.112061 -0.627446 -0.904116 0.397502 -1.740154 0.523823 1.494072 2.380512 0.760128 4.058485 2.649066 -0.399525 2.724717 1.556984 -1.135319 5.930336 -1.171829 1.151769 1.181100 2.400428 0.364605 1.171497 1.942572 -1.534302 -1.053823 -3.339978 1.062612 0.498585 2.173044 -3.730389 -2.127209 -4.387565 -1.374895 1.678692 2.520439 -0.707454 5.392490 -0.047388 0.563160 -5.566289 -0.373824 2.184606 -0.315976 1.982321 1.418296 -2.285346 -4.327154 -1.120599 -2.007143 -0.291353 -1.161863 -1.419557 -1.994475 -0.863341 1.547805 -1.109168 0.961399 3.363220 -0.552600 0.738124 -1.068954 -0.022796 -0.773773 -1.621969 1.770402 0.242406 -3.063784 3.607945 -0.150456 7.050888 -0.786515 2.439055 -1.887773 0.883735 -0.172577 -1.317448 -0.776107 3.929651 2.091874 0.777180 0.289156 0.663752 -1.154753 2.317960 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 2.949000 5.488940 11.224372 3.768153 -11.181566 -12.262610 -3.651871 -19.642660 7.590718 1.673293 4.536792 1.550777 2.256707 -6.055779 -1.656853 7.232249 3.637566 0.163636 -1.293019 -6.028792 -10.491130 5.461383 -1.509031 -1.692371 5.837956 -10.944560 8.132244 1.683160 7.164181 3.380804 5.776418 -1.462861 -4.682645 7.601273 5.333614 6.113354 2.512972 1.353800 -8.920446 4.229691 0.004315 -2.836217 7.555297 3.371971 10.230109 2.790244 5.313432 4.980921 -6.236612 1.761518 -5.922304 11.479122 -5.806115 5.606670 -0.100157 -0.032382 -1.573781 -6.725520 -0.119894 3.043277 -6.376471 -6.866595 -5.823880 0.551780 -8.404583 0.150691 -4.550273 -5.983316 -1.346956 4.441447 6.999510 3.236348 -1.375666 2.225468 -10.548170 -0.475605 3.353309 5.798528 9.468800 -1.712391 3.446676 -2.247196 -6.332119 -7.652628 9.070478 2.649606 3.320472 -0.383012 -1.667242 -4.714294 -3.884815 -4.509289 5.778815 5.043095 -9.606991 -1.236319 -7.322775 -3.537102 -7.913577 -14.255144 2.204871 -2.826584 5.399893 -4.150879 -2.196250 1.862078 2.860842 1.759351 -0.935284 -2.893484 0.771959 -2.607243 3.841487 13.395782 1.612377 -5.157148 -2.106292 -3.830019 -4.067573 4.443379 4.634213 -0.130983 12.272310 10.196964 7.128397 -3.682733 -5.353549 0.711216 0.699823 6.816772 6.441197 -9.003688 -5.365835 3.212113 0.514959 -13.555498 0.223030 0.158766 5.290284 -1.022985 -0.799568 -3.539810 -2.428738 3.371359 0.785466 -1.074272 3.114403 -1.317002 -4.991032 7.589674 13.552519 -1.597402 3.407802 -6.590271 1.569736 4.391807 -4.906414 0.761998 0.001666 -4.696389 -1.113372 -1.911093 -2.146478 6.199244 0.119194 -4.521370 2.408934 4.792295 -9.842846 -10.446437 -8.035202 2.183192 9.702820 -2.136783 9.301509 -8.152335 -2.245990 -4.409471 9.087469 1.411484 -0.075926 4.794508 -8.243497 6.049462 -1.753513 -8.702848 14.646955 11.904974 3.675296 -3.297656 4.134318 6.034362 -14.819137 -8.702660 -4.888637 -1.632713 3.519040 -13.218452 -8.497828 1.815767 -9.836597 -1.936189 1.650156 4.004414 8.525824 3.658375 3.464055 0.909610 -4.111847 -8.654663 6.225713 -2.832149 -1.278561 3.491604 1.506001 1.726475 6.363725 -2.561455 -2.086433 0.366153 -3.172849 2.667967 4.298124 8.737465 -0.898467 11.839122 8.510612 0.045812 9.952084 2.919188 -5.449549 8.613169 0.556879 5.865442 3.963896 0.266248 -1.839279 2.633601 6.890797 -5.250570 -5.529841 -7.016118 -2.504610 -0.897229 4.135617 -0.322650 -5.140696 -11.255001 -2.870326 1.437798 2.907575 -0.681863 10.036384 -1.169166 1.673485 -12.261558 -0.424252 5.807650 -0.470633 7.891991 3.877699 -7.492026 -3.423699 -3.790017 -8.212319 -8.130631 -2.682959 2.426886 -5.381523 -1.262446 7.467774 -1.341130 0.314547 8.558335 -0.676751 5.044456 -7.676225 3.168756 -4.483922 -0.620374 11.359641 -0.864825 -7.025836 6.981438 1.771970 20.469676 2.424581 2.714409 -2.649182 -5.032345 2.662634 -4.969519 -4.141634 8.871507 4.710789 4.133121 0.404939 0.054352 -0.448884 8.991496 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = -6.161381 3.322911 28.782995 14.875979 -15.723329 -25.638503 -11.482081 -32.706719 14.548471 1.547195 21.778770 2.680645 5.731895 -4.959025 5.346821 4.036029 4.462329 -9.436864 1.602287 -9.277574 -4.080181 21.983806 13.255728 -15.320556 1.954176 -27.540513 11.357355 12.786387 12.196184 13.701399 2.279084 -4.950241 -5.654136 14.917683 -6.413828 4.896047 4.838294 3.959683 -11.371293 1.862640 4.363990 8.756077 14.862717 -2.406673 22.249246 4.231119 19.128761 5.990077 -14.974901 -4.850073 -14.502479 30.039066 -17.882486 9.517402 1.918061 5.670983 0.452693 -16.991779 -8.705573 -19.523104 -4.168347 1.653352 -13.134962 0.839968 -14.051522 6.657725 -2.931706 -7.699446 7.512517 5.602011 19.151631 5.435446 2.388377 1.804965 -18.200514 4.763738 -1.363406 14.114547 11.975953 -8.788101 -2.441990 2.805113 -6.360167 -12.859142 10.120649 3.730390 4.971965 -3.418694 -1.208435 1.352221 -5.058579 -6.024169 -2.077185 11.275658 -15.701224 5.792448 -1.375760 -4.150720 -14.797347 -9.429743 1.060148 -13.507443 8.280078 8.967286 -0.269643 -3.032389 -9.479798 2.634226 -14.095004 -19.042595 2.705524 -3.200727 1.863849 19.485383 -13.321340 2.145854 1.478497 -1.839679 -3.737304 17.288520 5.692756 9.439939 16.382120 25.638751 3.537577 -13.256680 -8.609283 1.835976 19.160137 17.959357 13.095382 -18.112060 -12.636916 0.033174 -0.942275 -28.293767 2.656794 12.803492 15.990412 9.107999 -18.353088 1.812796 -7.812052 24.034003 11.623341 8.885650 3.403151 -1.409051 -16.763633 20.300430 35.131782 -7.691684 17.579524 -6.386304 -5.072472 19.501722 -19.744997 11.221672 9.442411 -0.690843 1.163660 -11.610223 -9.742586 16.578838 13.663533 9.746761 8.980940 6.980745 -3.463022 -30.407023 -25.225455 -0.449219 18.059009 -3.953785 26.396595 -16.012910 -14.248363 -4.322928 21.074649 -5.412015 -10.560478 2.192586 -12.644872 11.722433 -24.213838 -22.794405 34.512639 33.252214 6.758012 3.301892 21.381516 19.720383 -17.623627 -8.811334 -6.969489 9.931237 2.003240 -13.595870 -3.690786 0.589689 -19.784475 -11.247333 0.302608 7.801205 3.627262 -0.021626 -3.559687 10.166038 -19.067390 -7.470613 5.398227 -16.174811 -9.236981 2.805386 0.378027 3.299529 6.738347 -9.240842 -0.686520 9.765056 -16.922037 1.847258 9.600343 16.384511 10.301519 25.335672 19.605076 3.250593 26.100568 8.340653 -10.560817 29.715014 -5.076864 5.408494 4.290790 8.915829 0.024370 6.307425 7.857465 -9.454612 -11.415469 -20.506207 7.705667 2.127619 16.282268 -11.538440 -19.652252 -21.511343 -8.004541 17.029374 12.963441 -5.778504 33.306129 -4.013462 3.618177 -40.396405 -1.191285 12.389225 -0.777199 11.993292 9.402715 -11.328783 -28.244389 -7.857292 -9.114449 -4.897586 -6.989096 -13.452205 -10.312875 -14.188128 18.474055 -13.770443 4.874304 17.039659 0.070001 12.487662 -1.423436 -1.866056 -7.640015 -3.113182 11.901908 5.137893 -19.668088 23.533193 -2.660142 49.956446 -8.807835 12.722019 -13.056234 4.615967 -0.629885 -5.234449 -1.651516 25.710836 18.466120 4.030953 -0.480393 1.426926 -8.962540 13.341617 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(suffix&, suffix&) = -0.540930 -0.260254 2.048657 0.108539 -1.359361 -1.595175 -0.869087 -3.864684 2.070084 1.065713 1.885974 0.597570 1.538077 -1.336368 -0.326523 0.115004 0.963037 -1.344419 0.731895 -0.934825 0.239716 2.983010 0.002613 0.565352 0.012881 -3.095027 1.588992 -0.324724 1.771472 2.060498 0.824133 -0.388533 -1.370643 0.556471 0.793200 1.263306 0.844699 0.656951 -1.329769 0.028816 -0.025609 -0.854921 1.342891 -0.166181 2.415179 -0.804493 0.095479 0.427441 -0.424612 -1.148797 -0.394339 0.506387 -1.452691 0.519777 0.423493 -0.900078 -0.590134 0.050018 -0.428696 -0.365156 -0.422563 -1.482826 -0.529742 0.673196 -1.180021 0.859744 -1.663207 -0.226256 -0.562778 -1.275402 1.104502 0.818560 1.134488 0.926093 -3.087607 0.190829 -0.082397 0.285885 1.126785 0.596441 -0.431278 -0.689561 -1.120450 -1.443400 1.089202 2.278967 -0.465582 -0.022371 -1.310055 0.400931 -0.455522 -0.181147 0.910949 0.819044 -1.945663 -0.326957 -1.012973 -0.305997 0.232819 -2.650395 0.523547 -0.954218 0.702682 -0.011928 -0.539994 -0.503390 -0.099199 0.032489 -0.952114 -1.083953 1.005443 -0.474252 0.404067 2.754503 -0.849893 -0.369437 -1.833767 -0.313870 0.257884 0.877508 0.445368 0.843224 1.101480 1.571735 1.308378 -1.655880 -1.199791 2.127476 1.200618 0.321933 0.275637 -1.221527 -0.632320 0.713581 -0.600788 -2.325773 -1.321876 0.433427 1.372288 -0.432003 0.391864 -0.625416 -0.851849 1.384777 1.717300 -0.185855 0.408260 0.531792 -1.643579 1.331833 2.289134 0.017180 0.845100 -0.997100 -0.141674 1.534414 -1.370671 0.873504 -0.266917 0.475544 -0.929352 -0.871836 0.104662 1.087857 -0.195635 1.248771 -1.075985 1.089331 -0.778402 -2.025779 -2.411356 -0.411154 2.821373 0.874597 1.191606 -1.611819 -0.295816 0.339977 1.770496 1.496050 -1.197125 1.238718 -1.339597 1.104291 -2.520119 -1.956873 2.907956 3.230602 1.322782 0.035288 0.475482 1.626985 -2.455016 -0.851835 -0.859888 0.862980 -0.424762 -3.094698 -0.910973 0.516046 -1.579884 -1.551308 0.242010 0.705364 1.354785 0.318822 1.513091 0.628904 0.202572 -1.310541 2.401602 -0.391405 -1.218071 -0.221554 0.351423 0.418681 0.883863 -0.626509 0.917953 1.175323 -0.430258 0.629327 1.105370 0.204496 -0.391119 1.577212 1.873484 -0.615121 0.172251 -0.427223 -0.700742 1.953434 -0.639184 0.568338 0.250205 -0.346751 0.353891 0.399986 0.854486 -1.042240 -1.002683 -1.286645 -0.733259 0.050271 1.610501 -0.359359 -2.864875 -1.989955 0.534855 0.069658 1.276645 0.545752 2.832284 -1.132756 0.642158 -2.504394 0.178239 1.428431 0.103300 1.695652 0.241971 -0.525269 -0.382187 -0.686627 -1.683448 -0.844785 -0.678017 -1.113400 -0.748998 -1.266540 2.188630 -0.656543 -0.244341 0.487635 -0.099051 2.136785 -0.340264 0.000648 -2.063549 0.800104 0.086780 0.065025 -1.071875 1.807257 0.162794 2.885165 -0.639409 0.129582 -0.021707 1.516510 -1.166373 -2.069702 -0.189740 2.013181 1.521904 0.621669 -0.851538 -0.763840 -0.053356 0.575907 -PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/weighted-job-scheduling.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/weighted-job-scheduling.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(Job&, Job&) = -0.540930 -0.260254 2.048657 0.108539 -1.359361 -1.595175 -0.869087 -3.864684 2.070084 1.065713 1.885974 0.597570 1.538077 -1.336368 -0.326523 0.115004 0.963037 -1.344419 0.731895 -0.934825 0.239716 2.983010 0.002613 0.565352 0.012881 -3.095027 1.588992 -0.324724 1.771472 2.060498 0.824133 -0.388533 -1.370643 0.556471 0.793200 1.263306 0.844699 0.656951 -1.329769 0.028816 -0.025609 -0.854921 1.342891 -0.166181 2.415179 -0.804493 0.095479 0.427441 -0.424612 -1.148797 -0.394339 0.506387 -1.452691 0.519777 0.423493 -0.900078 -0.590134 0.050018 -0.428696 -0.365156 -0.422563 -1.482826 -0.529742 0.673196 -1.180021 0.859744 -1.663207 -0.226256 -0.562778 -1.275402 1.104502 0.818560 1.134488 0.926093 -3.087607 0.190829 -0.082397 0.285885 1.126785 0.596441 -0.431278 -0.689561 -1.120450 -1.443400 1.089202 2.278967 -0.465582 -0.022371 -1.310055 0.400931 -0.455522 -0.181147 0.910949 0.819044 -1.945663 -0.326957 -1.012973 -0.305997 0.232819 -2.650395 0.523547 -0.954218 0.702682 -0.011928 -0.539994 -0.503390 -0.099199 0.032489 -0.952114 -1.083953 1.005443 -0.474252 0.404067 2.754503 -0.849893 -0.369437 -1.833767 -0.313870 0.257884 0.877508 0.445368 0.843224 1.101480 1.571735 1.308378 -1.655880 -1.199791 2.127476 1.200618 0.321933 0.275637 -1.221527 -0.632320 0.713581 -0.600788 -2.325773 -1.321876 0.433427 1.372288 -0.432003 0.391864 -0.625416 -0.851849 1.384777 1.717300 -0.185855 0.408260 0.531792 -1.643579 1.331833 2.289134 0.017180 0.845100 -0.997100 -0.141674 1.534414 -1.370671 0.873504 -0.266917 0.475544 -0.929352 -0.871836 0.104662 1.087857 -0.195635 1.248771 -1.075985 1.089331 -0.778402 -2.025779 -2.411356 -0.411154 2.821373 0.874597 1.191606 -1.611819 -0.295816 0.339977 1.770496 1.496050 -1.197125 1.238718 -1.339597 1.104291 -2.520119 -1.956873 2.907956 3.230602 1.322782 0.035288 0.475482 1.626985 -2.455016 -0.851835 -0.859888 0.862980 -0.424762 -3.094698 -0.910973 0.516046 -1.579884 -1.551308 0.242010 0.705364 1.354785 0.318822 1.513091 0.628904 0.202572 -1.310541 2.401602 -0.391405 -1.218071 -0.221554 0.351423 0.418681 0.883863 -0.626509 0.917953 1.175323 -0.430258 0.629327 1.105370 0.204496 -0.391119 1.577212 1.873484 -0.615121 0.172251 -0.427223 -0.700742 1.953434 -0.639184 0.568338 0.250205 -0.346751 0.353891 0.399986 0.854486 -1.042240 -1.002683 -1.286645 -0.733259 0.050271 1.610501 -0.359359 -2.864875 -1.989955 0.534855 0.069658 1.276645 0.545752 2.832284 -1.132756 0.642158 -2.504394 0.178239 1.428431 0.103300 1.695652 0.241971 -0.525269 -0.382187 -0.686627 -1.683448 -0.844785 -0.678017 -1.113400 -0.748998 -1.266540 2.188630 -0.656543 -0.244341 0.487635 -0.099051 2.136785 -0.340264 0.000648 -2.063549 0.800104 0.086780 0.065025 -1.071875 1.807257 0.162794 2.885165 -0.639409 0.129582 -0.021707 1.516510 -1.166373 -2.069702 -0.189740 2.013181 1.521904 0.621669 -0.851538 -0.763840 -0.053356 0.575907 -PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = -2.231940 0.019152 9.664608 5.127229 -4.437287 -7.200455 -3.491531 -10.465945 6.339922 1.090311 6.725837 2.094640 2.883324 -2.911174 0.789925 0.125266 1.294405 -3.768515 0.426218 -2.738605 -0.042692 9.124684 4.685813 -6.032895 0.499058 -11.276972 5.117103 3.146905 4.945510 6.562905 0.481618 -1.077340 -1.519641 4.874507 -2.067601 1.259930 1.246535 1.388545 -3.554059 -0.493926 2.503204 3.117816 5.104949 -0.188530 7.685770 0.504113 4.877560 1.322713 -3.451856 -1.884085 -4.489897 7.879786 -5.956481 3.308077 -0.239001 2.478212 0.062479 -5.347806 -2.806529 -7.447803 -0.554095 1.147138 -3.752310 0.288756 -5.040117 2.364779 -0.920663 -2.146381 1.580794 0.057700 6.205814 2.673698 1.954439 -1.128896 -7.316983 1.686477 -0.888535 3.811770 4.226481 -1.555692 -2.586772 0.187119 -2.370624 -4.343007 3.446812 2.489501 0.166368 -0.276602 0.621133 -0.754669 -1.793723 -1.652750 -0.942726 4.158566 -5.548076 1.964291 -0.352616 -0.652823 -2.324636 -2.408763 0.366116 -4.777762 2.356637 3.696952 -0.179255 -0.443563 -0.925101 1.000010 -4.149815 -5.520529 1.572958 -0.997483 0.316976 6.795768 -3.644741 0.084540 -0.287307 -0.295399 -0.723042 6.245215 0.345905 3.415402 5.980435 8.067670 1.456052 -4.632619 -1.725433 3.060589 6.102867 5.124475 3.714710 -6.517267 -3.550873 0.336793 0.475747 -9.425574 0.347338 3.758829 5.264958 1.639958 -6.604758 1.544387 -2.292323 7.826358 5.062335 1.942074 1.624429 0.244179 -5.750825 6.936065 13.073073 -1.901060 4.675139 -3.682643 -2.682957 7.905513 -6.849140 4.250581 1.119380 0.425973 0.470065 -4.374730 -1.147304 5.760597 2.715810 3.620074 2.328703 2.205792 -0.444511 -10.333919 -8.464079 -1.729298 5.986436 0.388024 10.681810 -5.352470 -3.461699 -1.972191 6.537364 -0.351819 -2.557471 1.284244 -4.449037 3.904599 -10.503334 -8.223497 12.016861 11.204750 2.881304 1.567373 6.850081 6.160368 -3.416233 -2.705379 -2.099794 3.049999 1.844428 -3.558685 -0.522088 0.019719 -6.781352 -5.125560 0.710060 1.945410 2.621176 -1.132350 -1.383258 2.438653 -6.044915 -3.892233 3.027823 -6.161690 -3.572276 0.425714 0.508362 0.369279 2.338352 -2.173007 0.280191 3.447262 -3.862208 0.648733 3.196000 4.612716 2.253387 5.967491 7.593806 0.191078 6.217613 2.870194 -2.885186 11.317694 -2.290813 0.888458 1.746080 2.384133 0.986070 2.391466 1.811165 -3.310210 -1.900846 -6.892191 3.612855 0.737856 5.072884 -5.751397 -6.684432 -6.399410 -2.633066 4.578529 4.483375 -0.796902 12.155374 -2.137367 0.831189 -13.992707 -0.389254 5.280805 0.664605 4.319772 3.502695 -3.668721 -9.211083 -2.648460 -2.658702 -0.002393 -3.218077 -5.482019 -3.606278 -4.519650 6.339267 -4.888942 2.292906 6.859225 -0.493020 4.869340 -2.042956 -0.301156 -4.050697 -0.805056 1.115804 2.159501 -5.550882 7.265196 -1.671583 14.197406 -4.042537 4.452302 -4.507706 4.046801 -2.119290 -3.182361 -0.515100 8.695078 5.004472 1.118442 0.624416 -0.659048 -2.807594 4.482870 -PE-benchmarks/euler-circuit-directed-graph.cpp__main = 0.409026 1.162854 3.121097 0.882532 -3.406939 -4.431125 -1.649061 -6.024080 1.919818 0.319618 1.649524 -0.425535 -0.152196 -1.434686 0.077135 2.451050 0.953263 -0.704497 -0.091161 -1.946946 -1.974387 2.373816 -0.802680 0.056440 1.297426 -4.451073 2.740778 0.788999 1.826711 1.602241 2.129265 -1.096099 -1.722164 1.970812 1.787281 4.391189 1.418677 -0.009793 -2.517025 2.072968 -0.356659 0.599776 2.266010 0.320575 3.936056 2.122390 1.749669 2.107546 -2.704984 0.069772 -2.288438 3.944064 -1.848998 1.912050 0.067813 0.157563 -0.287758 -2.441382 -0.747074 1.330431 -2.829490 -1.299616 -1.962245 0.421304 -3.000600 0.273346 -1.314869 -0.543614 0.245302 1.200910 2.596750 0.628567 -0.611897 1.634565 -2.972335 -0.119393 0.398571 2.436806 2.521287 -2.380401 1.171228 -0.174573 -1.647390 -2.150178 1.969047 1.220528 1.382531 -0.364691 -0.589729 -1.403335 -1.849096 -1.596472 1.650358 1.178822 -2.163917 -0.938371 -2.297781 -0.688909 -2.503391 -3.845346 0.821739 -0.443657 1.639315 -0.792180 0.571656 -0.739494 1.045063 0.479116 -0.733581 -0.282451 0.810077 -0.376337 1.614257 4.091846 0.430842 -1.300028 -1.391103 -1.853421 -1.237117 1.875879 1.689648 -0.060961 2.902556 3.757596 4.023257 -1.151245 -2.708643 -0.019556 1.008700 2.464478 1.816803 -2.393595 -1.482047 0.595925 -0.214959 -3.256999 -0.300259 -0.053614 2.517681 0.663128 0.113155 -1.264461 -1.147704 2.351569 -0.556607 -0.181243 0.759465 -0.423261 -2.232835 3.067180 4.841318 0.000545 1.019622 -2.492320 0.909688 0.567636 -1.127502 0.178666 1.562473 -1.603369 -0.898373 -0.352045 -0.539795 1.406303 0.920573 -0.660132 0.742745 2.195821 -2.980110 -2.964912 -2.505871 0.896676 2.730406 -1.468449 2.825552 -2.540884 -0.932475 -1.567622 3.204157 0.292359 -0.552416 1.128323 -2.754241 1.614632 -0.451267 -1.987999 5.360989 5.310392 1.970816 -0.986824 1.770754 3.504332 -5.170559 -1.777871 -1.418914 0.005600 0.357445 -4.421531 -1.880470 0.665456 -2.717726 -1.667674 0.082657 1.599688 1.858177 1.746913 0.361776 0.320296 -1.710884 -2.221953 1.581674 -1.151012 -0.288327 1.395922 0.081018 0.219040 1.898697 -1.563325 0.092813 1.375086 -1.332541 1.500134 1.473409 2.745056 0.081009 2.852374 2.392734 0.646561 4.599610 1.091934 -1.929239 2.811614 0.964887 2.009113 0.880266 -0.562321 0.399568 0.383167 1.222587 -1.714001 -1.648972 -2.564627 -0.334657 0.295264 1.803111 0.293379 -2.210076 -4.543639 -0.747896 0.806462 1.562435 0.219250 3.251795 -0.245668 0.486789 -4.258090 -0.012961 2.154590 0.005774 1.110130 0.573772 -1.749437 -1.798334 -0.483718 -2.918125 -3.214346 -1.028945 0.014390 -1.807636 -1.574651 2.972025 0.176292 -0.090251 3.297000 0.346835 1.265133 -1.831219 0.450329 -1.618567 -0.993234 2.881158 -0.206695 -2.715586 1.869057 0.924375 6.939936 0.035560 0.868424 -0.765605 -0.676032 0.755352 -2.222137 -0.732141 2.764009 1.496976 1.006613 0.667849 0.101016 -0.415403 2.564403 -PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = -2.015824 3.497246 17.324552 10.729990 -11.570185 -14.594124 -7.207003 -20.255279 8.435755 0.606851 12.034804 0.291091 2.386058 -3.367315 1.193678 -0.124376 3.150961 -3.541310 0.081800 -6.210775 -5.668445 10.718320 5.378380 -10.744721 2.455747 -16.016413 9.361510 8.243251 6.442879 7.058731 1.628309 -2.415618 -4.938785 9.515055 -3.752418 0.943121 3.489340 2.226134 -7.580181 1.366615 4.259898 5.997351 10.532469 -1.099554 11.803009 4.175162 8.038848 4.407228 -10.763231 -1.589807 -5.565306 14.576253 -8.583916 6.686698 2.044281 3.495529 1.335979 -11.541521 -3.705577 -8.526083 -1.820178 -0.033554 -6.466123 0.609940 -8.909487 2.409173 -0.918425 -6.652963 6.345153 1.911267 10.097911 2.334033 -0.306669 -0.446206 -8.952959 2.904194 1.825234 8.241409 7.674862 -4.187737 1.210255 1.538639 -5.598298 -7.466160 4.573919 2.530464 4.239324 -1.174476 -0.036569 -2.762123 0.724815 -4.186127 0.762050 6.954414 -7.588710 1.973609 -4.670558 -3.593838 -9.824952 -7.834634 1.056733 -6.638999 6.671764 4.984855 -5.107258 0.210480 -0.895551 2.674196 -5.373238 -9.732228 0.698064 -3.492970 5.404190 14.001910 -4.889708 -3.175819 -1.280730 -3.311950 -2.952298 9.381171 2.622506 3.216219 11.641859 15.073866 2.762738 -8.279173 -6.134733 0.080530 7.582431 10.823690 8.554886 -11.335322 -6.993890 -0.184007 -0.886044 -17.151941 1.234334 1.719151 9.406506 2.845709 -9.658942 1.683016 -6.116169 12.664030 4.684359 5.432194 2.335454 -1.141906 -9.559755 11.663236 18.241895 -3.529690 8.368242 -5.282353 -5.228030 8.487893 -7.518091 5.791265 4.438852 -2.674814 1.095641 -6.295303 -3.017125 9.746799 4.562244 3.097762 5.308231 4.243030 -4.013389 -16.628567 -14.896459 2.849587 10.147615 -1.032636 17.074286 -10.776775 -8.334685 -3.832369 13.666195 -2.435140 -4.450816 2.397480 -7.315306 7.095196 -11.630913 -14.057133 18.519643 18.648951 3.558993 0.041897 11.865938 7.450873 -9.769008 -6.484620 -5.354947 4.344534 3.446301 -7.038639 -2.512468 1.126372 -10.305764 -5.177580 1.838175 5.048098 5.528534 -3.348811 -2.877783 3.024441 -11.170062 -7.511734 5.049484 -9.031950 -2.483463 3.218328 -0.380038 1.567470 5.892063 -4.740983 -3.451555 2.373615 -7.556510 2.009219 4.903176 10.888203 3.328432 14.296001 10.883075 1.065262 14.982919 5.754780 -6.311479 19.856036 -4.200703 4.323549 3.678953 5.368724 -0.577824 3.803487 6.273342 -5.967764 -4.735913 -12.107240 3.295913 0.383787 8.179044 -10.835620 -9.063270 -14.936862 -5.230706 7.042035 6.641274 -2.104585 19.373021 -1.530868 0.930493 -21.765523 -1.856110 8.004330 -0.412501 8.500545 5.264693 -8.529182 -17.319104 -4.014139 -8.078985 -1.979298 -4.084419 -6.247658 -7.447799 -5.256038 10.053897 -4.268654 3.731414 12.992568 -1.080989 4.960915 -3.727658 -0.366370 -2.836122 -4.913585 7.089464 1.603484 -11.642856 13.327847 -0.683942 28.790657 -2.394220 7.329349 -7.575845 0.770445 0.879257 -4.753943 -2.773063 14.346041 8.894469 3.835050 -0.386327 1.417194 -5.863249 9.256813 -PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.469178 0.211892 1.120844 0.223447 -0.466727 -1.323950 -0.403015 -2.414432 1.136678 0.321907 0.843875 -0.014578 0.680479 -0.501688 -0.169931 0.737478 0.305695 -0.315290 0.319677 -0.437749 -0.313366 1.875210 -0.249283 0.249189 0.120680 -1.733960 0.580643 0.336466 1.253739 0.737866 0.317144 -0.234797 -0.168115 0.395220 -0.172327 0.450954 0.151377 0.308790 -1.102138 0.183509 -0.263643 -0.104100 0.762834 -0.093886 1.006990 -0.109117 0.677180 0.356410 0.110584 -0.247044 -0.672400 1.143755 -0.400604 0.384638 -0.287907 -0.457415 -0.171931 -0.226212 -0.261989 0.432672 -0.417125 -0.164144 -0.669658 0.196696 -0.828075 0.303156 -0.544919 -0.409644 -0.129256 -0.021050 0.763989 0.432186 0.136100 -0.043237 -2.000409 0.124438 0.057929 0.354301 0.542421 0.030262 0.226108 -0.093662 -0.780458 -0.780660 1.118428 1.334147 0.080541 0.023483 -0.662845 -0.301637 -0.522792 -0.179968 0.605011 0.507949 -0.839640 0.062486 -0.659465 -0.149975 -0.430371 -1.340361 0.265528 -0.474624 0.477288 -0.444844 0.426960 0.098304 0.568065 0.154341 -0.227766 -0.789304 0.154097 -0.207369 0.260971 1.741410 -0.135377 -0.309581 -0.641210 -0.205046 -0.629880 0.571091 0.429427 0.264219 1.027628 0.828217 0.587304 -0.725912 -0.745396 0.832434 0.488914 0.534891 0.330582 -0.894510 -0.441262 0.176518 -0.113120 -1.602117 -0.511338 0.392726 0.643944 -0.646220 0.203329 0.042065 -0.284246 0.764262 0.715482 -0.383459 0.370291 0.136038 -0.656303 0.815432 1.747569 -0.081695 0.440859 -1.057664 -0.154149 0.707377 -0.580605 0.421139 -0.003338 0.005225 -0.404108 -0.429057 0.303713 0.656804 -0.131387 0.263629 -0.030081 0.530026 -0.737803 -1.012001 -1.306867 -0.069186 1.014285 -0.021167 1.226863 -0.760766 -0.550586 -0.016766 0.820857 0.302488 -0.212521 0.702337 -1.150571 0.616295 -1.073205 -1.132991 1.611111 1.535597 0.788554 -0.108245 0.667177 0.880806 -1.256517 -0.682868 -0.330950 0.434729 0.350240 -1.981365 -0.607345 0.076632 -0.987346 -0.571845 -0.043742 0.369134 0.344165 0.656697 0.896048 -0.435448 -0.583802 -0.730006 1.123107 -0.466152 -0.119116 0.046138 0.136727 -0.274627 0.686563 -0.592599 0.370818 0.595410 -0.368152 0.475681 0.485329 0.163188 -0.226280 1.005513 1.316180 -0.137248 1.228758 -0.055327 -0.440645 1.042420 -0.189491 0.272411 0.082370 -0.026340 -0.177824 0.361838 0.403200 -0.514500 -0.678509 -0.880229 -0.089273 0.235184 0.503236 0.430209 -0.981036 -1.131424 -0.326312 0.063088 1.000249 0.338062 1.395139 -0.710159 0.511336 -1.716007 0.225080 0.335059 0.065961 0.830076 0.195908 -0.482193 -0.270029 -0.252623 -0.820817 -1.254098 -0.468964 -1.095055 -0.650499 -0.901581 0.861432 -0.686791 -0.034808 0.740955 0.030173 0.809425 -0.892514 0.057191 -0.932204 0.363846 0.744809 -0.104747 -0.714890 0.405220 -0.077066 2.230127 -0.235901 0.529516 -0.333843 0.469197 -0.369668 -1.134098 -0.171653 1.131650 0.640724 0.081013 -0.219168 -0.326919 0.028402 0.498931 -PE-benchmarks/Iterative_QuickSort.cpp__main = 0.075494 0.370839 1.538490 0.004566 -0.739878 -1.731847 -0.561266 -2.609323 0.893483 0.400923 1.314258 -0.110982 0.850220 -0.141462 0.171980 0.775244 0.762338 -0.755976 0.558791 -0.746755 -0.344435 1.644771 -0.084733 0.363374 0.197814 -1.939408 0.806079 0.479267 0.868081 0.965856 0.541680 -0.215883 -0.438433 0.560074 0.010761 0.567532 0.659598 0.338343 -0.990116 0.546161 -0.349310 0.021102 0.982046 -0.059015 1.228643 0.457576 0.725343 0.680343 -0.287826 -0.503761 -0.715988 1.203259 -0.737933 0.380514 -0.179161 -0.427552 -0.005209 -0.541896 -0.386293 0.013561 -0.497340 -0.349812 -0.715862 0.362948 -0.915545 0.465234 -0.695328 -0.492292 -0.084229 0.199286 0.919357 0.428577 0.200211 0.505138 -1.911477 0.200435 0.067648 0.584467 0.661843 -0.592150 -0.074521 0.061864 -0.925535 -1.052774 1.016218 1.351248 0.363409 -0.132953 -0.754107 0.066198 -0.639315 -0.257299 0.442458 0.684159 -0.738431 0.010512 -0.383616 -0.342659 -0.965506 -1.584925 0.284131 -0.552129 0.568183 -0.109776 0.307169 -0.290634 -0.458012 0.185640 -0.743772 -0.900228 0.394038 -0.481568 0.177091 1.687612 -0.524860 -0.126675 -0.846527 -0.337486 -0.097065 0.887622 0.419014 0.316097 1.081274 1.284826 0.369575 -0.835106 -0.911163 0.471216 0.868180 0.619452 0.723766 -1.179637 -0.752171 0.229575 -0.634408 -1.611978 -0.443910 0.460147 0.895777 -0.524565 -0.223763 0.174281 -0.658014 1.059878 1.013817 0.164223 0.269066 0.013229 -0.919450 1.049505 1.841047 -0.365128 0.967316 -0.959550 0.063847 0.810017 -0.696820 0.455696 0.422435 -0.111390 -0.745447 -0.391546 -0.104626 0.791161 0.638671 0.602293 0.199183 0.605758 -0.558065 -1.196735 -1.531825 -0.008677 1.437450 -0.224029 1.345718 -1.106798 -0.648405 -0.096070 1.096957 0.234937 -0.730463 0.557465 -0.913215 0.606960 -1.346931 -1.240947 1.971291 1.814357 0.891249 -0.065085 0.699676 1.098177 -1.670613 -0.716618 -0.319786 0.736471 -0.313531 -2.118060 -0.680013 0.279584 -1.236911 -0.589977 -0.275242 0.715561 0.610166 0.605259 0.698416 -0.018498 -0.813505 -0.643052 0.854360 -0.497491 -0.656020 0.228099 0.009067 0.106980 0.485813 -0.545414 0.389415 0.856509 -0.891005 0.262738 0.752004 0.601231 0.109366 1.601970 1.266615 0.024005 1.127815 -0.061126 -0.591407 1.041903 -0.069014 0.511120 0.074068 0.167879 -0.072890 0.250134 0.774751 -0.516973 -1.142193 -1.134694 -0.008705 0.258665 0.848696 0.407592 -1.284748 -1.556505 -0.100509 0.404764 1.599386 0.018715 1.706440 -0.348273 0.574307 -1.823077 0.230889 0.244748 -0.006379 0.581088 0.354101 -0.626492 -0.364775 -0.253641 -1.250293 -1.424929 -0.304969 -0.860247 -0.760118 -0.839621 0.879674 -0.656142 -0.271974 0.786199 0.049026 0.961462 -0.066535 -0.139220 -0.935391 0.326985 1.269908 -0.118880 -0.860420 0.960962 0.040591 2.838522 -0.170184 0.553973 -0.234055 0.251973 0.005792 -0.868769 -0.253763 1.457915 0.947728 0.137796 -0.058109 -0.328323 0.253065 0.701593 -PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.162516 0.328757 1.156417 -0.065106 -0.566912 -1.277334 -0.550197 -2.192936 0.726531 0.350507 1.025506 -0.199597 0.600843 -0.069901 -0.004689 0.595435 0.356315 -0.567701 0.476960 -0.516511 -0.573535 1.432131 -0.030501 0.509001 0.125830 -1.547206 0.676557 0.188244 0.808014 0.771849 0.289694 -0.209758 -0.287419 0.450813 0.044812 0.539334 0.354519 0.382071 -0.666540 0.530154 -0.199624 -0.215904 0.704199 -0.053410 0.939735 0.400818 0.375903 0.438849 -0.201892 -0.382195 -0.436995 0.800220 -0.667487 0.243819 -0.164279 -0.405447 -0.119728 -0.314514 -0.328555 0.215680 -0.465459 -0.475776 -0.573741 0.365953 -0.776398 0.412033 -0.746606 -0.401847 -0.095711 0.108970 0.758272 0.419066 0.134703 0.510326 -1.510841 0.207470 0.142506 0.374171 0.480452 -0.424817 0.036135 0.133762 -0.793170 -0.898518 0.878266 1.116114 0.287791 -0.200703 -0.536344 0.013764 -0.399547 -0.135113 0.498149 0.656988 -0.566034 0.034331 -0.535650 -0.263738 -0.740546 -1.550432 0.187942 -0.514977 0.550026 -0.142002 0.084728 -0.250825 -0.064198 0.174164 -0.411449 -0.919310 0.171224 -0.325667 0.272164 1.432151 -0.324830 -0.101743 -0.627751 -0.352325 -0.181289 0.592951 0.523275 0.223979 0.944411 0.957780 0.371579 -0.663473 -0.821734 0.412283 0.550485 0.418369 0.522709 -0.946666 -0.595827 0.199907 -0.386438 -1.364772 -0.465009 0.294966 0.599034 -0.577707 0.070570 0.172687 -0.468170 0.648462 0.805786 0.007608 0.221705 -0.057908 -0.698113 0.844690 1.457561 -0.242467 0.679876 -0.798010 -0.171566 0.807798 -0.634336 0.362825 0.303188 0.007170 -0.607154 -0.410878 0.030462 0.636329 0.226770 0.472749 0.122846 0.446716 -0.534313 -0.865803 -1.136312 0.077741 1.237572 -0.159802 0.916787 -0.861833 -0.423603 0.127496 1.018751 0.406007 -0.478737 0.463981 -0.704621 0.501246 -1.025786 -1.044714 1.403147 1.424107 0.721729 -0.042099 0.466753 0.957145 -1.326473 -0.623466 -0.425320 0.617434 -0.179421 -1.750929 -0.746238 0.155110 -0.875284 -0.356137 -0.230168 0.553320 0.506413 0.481517 0.525897 -0.084085 -0.550582 -0.578792 0.846221 -0.412753 -0.394744 0.140599 0.025212 -0.074827 0.422713 -0.445588 0.362744 0.538424 -0.575872 0.420091 0.677291 0.271703 -0.082144 1.323328 1.028621 -0.188063 0.690246 -0.096883 -0.299098 0.775432 -0.141496 0.401883 0.085965 0.169064 -0.207364 0.244853 0.649148 -0.401924 -0.990282 -0.815649 -0.097860 0.185898 0.532366 0.458129 -1.064010 -1.260171 -0.100256 0.277088 1.228229 0.227535 1.321639 -0.262078 0.530583 -1.348601 0.200309 0.181129 -0.063829 0.708285 0.202892 -0.411132 -0.229077 -0.296366 -0.921696 -1.161152 -0.338139 -0.758394 -0.565006 -0.634810 0.613860 -0.403827 -0.190272 0.441892 0.130600 0.688181 -0.138791 -0.125748 -0.909629 0.319836 1.071025 -0.214346 -0.644760 0.690483 0.103301 2.152045 -0.147117 0.426570 -0.149254 0.154380 -0.018729 -0.722554 -0.135080 1.124082 0.710505 0.137372 -0.211036 -0.232977 0.208189 0.387745 -PE-benchmarks/cut-vertices.cpp__main = 3.542630 1.941898 3.780778 -0.810156 -2.269209 -5.321384 -0.981038 -8.924477 3.299325 0.449404 1.740979 0.039064 1.540074 -0.260221 -0.159087 4.578532 2.234052 -0.055987 0.632265 -2.567308 -0.676072 4.727272 -2.228505 2.133342 1.210624 -5.499556 -0.402216 1.943005 5.072474 0.774399 1.917312 -1.231938 -1.654232 0.895931 -0.150986 0.771067 1.457101 -0.651813 -6.808643 2.169935 -2.886294 0.302067 3.016701 -0.391279 3.096719 -0.778993 2.626431 2.786922 0.958983 -0.153976 -2.440979 6.016443 0.867785 1.675605 0.123952 -1.631457 -2.189540 -0.872908 -0.491423 5.300242 -2.312919 -0.119159 -1.664611 0.787530 -2.370404 0.407064 -2.385962 -1.598838 -0.403553 0.177394 2.036132 0.125599 -0.573769 -0.035181 -7.501756 -0.334229 0.098125 2.479757 1.589074 -0.211728 2.334549 -0.215539 -2.458230 -2.080668 2.457257 5.808716 0.004732 -0.371391 -3.889644 -1.769783 -1.995934 -1.381846 2.526847 0.509419 -4.368921 -0.138550 -3.962741 -1.226486 -3.040946 -5.435814 1.201599 0.217272 1.955779 -5.279518 2.944548 0.506074 2.068444 0.273640 0.216238 -1.134332 0.370354 0.833903 0.812883 7.618409 0.245541 -1.647602 -2.862904 -0.971796 -4.418864 1.448595 1.560655 0.139235 2.716208 3.027839 2.000792 -1.679399 -2.986916 1.751182 0.629570 2.185268 2.300995 -2.008514 -1.487703 0.843017 -0.631510 -4.922713 -1.174246 0.694963 2.581307 -1.991582 3.469617 -3.226490 -1.520764 2.784254 0.494651 -1.999542 1.403996 -0.753820 -1.823610 2.515538 5.342759 -0.196793 1.779539 -4.090573 1.629578 -0.236922 -1.016302 1.237473 -0.035724 -0.990177 -2.113072 0.240700 0.156043 1.296532 0.039074 -0.665452 -0.283916 1.786932 -3.642810 -2.437616 -4.134771 -0.050088 1.670639 -1.523842 1.810706 -1.780961 -2.693313 -1.566339 2.366838 0.773065 -0.823022 3.677603 -4.899312 1.659530 0.053782 -1.975885 4.638552 6.983154 2.338031 -1.527630 2.230902 2.421844 -6.996249 -3.367445 0.004393 0.671655 0.375538 -8.974830 -2.790819 0.619089 -2.865821 -0.702166 -0.273476 1.975174 1.343911 4.770655 5.460506 -0.755153 -2.390393 -2.819371 3.926570 -0.185850 0.461143 1.514049 0.348571 -1.030300 2.693646 -2.823770 0.420751 2.981252 -1.515442 2.231632 1.229710 1.031032 -1.208295 2.707823 2.455169 1.626212 7.394764 -0.440670 -2.820099 2.139669 -0.127280 2.377198 -0.224658 -2.019887 -2.611361 0.955230 0.323575 -1.480666 -3.009811 -1.881193 -1.328583 -0.495197 2.070099 4.215888 -4.239830 -3.100240 -0.794022 -0.232078 2.228034 0.873205 2.868419 -2.705274 2.171912 -5.227570 1.125923 0.031122 0.488170 2.207151 0.415383 -2.037474 0.511901 0.515089 -3.973227 -5.991197 -0.473505 -3.607533 -2.260082 -2.957798 4.040876 -1.630454 -1.202481 2.534539 -0.538392 3.434634 -3.405912 -0.058054 -2.142087 0.884037 4.767148 -0.930355 -2.294793 0.141891 0.180793 7.911931 0.993893 1.428940 0.126705 -1.203794 0.643032 -4.138785 -1.338301 3.233955 1.999858 0.661688 -1.722731 -2.083536 0.717882 0.718238 -PE-benchmarks/cut-vertices.cpp__Graph::AP() = -2.157593 0.822334 13.857201 7.141450 -7.340993 -9.617243 -5.205101 -16.452398 8.557771 1.119729 9.968862 2.262928 3.094727 -3.633150 1.292748 0.675193 1.392864 -4.681544 0.553551 -4.041597 -1.974990 10.712947 6.688762 -7.936614 1.559271 -14.687944 6.703520 4.223757 7.153107 7.424294 0.986550 -1.846313 -2.689214 7.084708 -2.160979 1.399712 1.852169 1.539405 -5.982035 0.015443 3.219671 3.492207 7.205326 -0.052521 10.993028 0.446519 6.365956 2.391433 -5.762170 -1.268185 -6.017991 12.776657 -8.213808 4.738134 1.187582 3.299559 -0.652467 -8.362269 -4.197006 -8.816565 -1.559554 0.324247 -4.913653 0.892300 -6.991772 3.310169 -1.988599 -3.034046 3.170348 1.302477 9.035265 3.431554 2.139552 -0.272823 -9.197126 2.385160 -0.223982 5.589215 6.245062 -2.690051 -1.267261 0.836375 -3.211235 -6.159101 5.406056 3.056690 0.550583 -1.567444 1.269278 -1.394761 -1.366932 -3.318543 -0.955425 5.990468 -8.794582 3.102518 -1.909447 -1.810278 -4.491606 -5.349488 0.478128 -6.696432 4.442579 4.428485 -1.375470 -0.119889 -0.286132 2.469931 -4.938901 -8.405481 1.204419 -0.655904 1.620034 10.701318 -4.801715 -0.698662 -0.264940 -0.811913 -2.321477 7.899653 1.502310 4.984705 9.115586 12.342553 1.908959 -5.621941 -2.825490 3.346505 7.520728 8.126699 5.655748 -9.563651 -5.151088 1.209941 1.356916 -13.575618 0.236180 4.043880 7.422004 2.643486 -8.440366 0.203884 -3.007872 10.511395 6.003054 2.957604 2.051879 -0.283465 -7.464801 10.191154 17.412434 -2.878999 6.477614 -4.491836 -3.570962 9.180422 -9.710604 5.360758 1.862169 0.313290 1.129009 -6.315675 -2.703962 7.860005 3.918574 3.493726 2.851628 3.348490 -2.146242 -14.321541 -11.292946 -1.169563 7.912206 -0.692031 13.697019 -7.217910 -5.747795 -3.021816 10.358613 0.061227 -3.329191 2.288479 -6.732137 5.587143 -11.915868 -11.152225 15.724214 15.659694 4.227940 1.255082 9.383097 8.643523 -7.144351 -4.856868 -3.666999 3.951987 2.936654 -5.912375 -2.418318 -0.281382 -9.325011 -5.914768 1.207643 3.207904 4.560593 -1.136110 -1.639445 4.467502 -8.896412 -4.883518 4.995809 -8.344481 -4.597713 0.907003 0.285574 1.022049 3.892994 -3.605905 -0.329089 4.007205 -5.835682 1.301906 4.812263 7.626113 2.176522 9.824050 9.858463 1.100208 9.423730 4.128865 -4.818442 14.733850 -3.070309 1.849215 2.369089 2.008035 -0.068032 3.016712 3.230674 -4.850277 -4.209406 -9.384760 3.964215 -0.025536 7.456129 -7.096813 -9.350238 -9.362186 -4.303867 6.928394 5.150582 -0.277818 16.409247 -2.500663 0.647791 -18.656086 -1.009709 7.102868 0.416918 7.173307 4.567249 -5.698374 -12.765813 -3.793323 -4.579946 -0.491806 -4.453672 -6.720716 -5.462545 -6.192038 10.281458 -5.330795 3.228966 9.379622 -0.544920 6.478648 -2.944636 -0.877215 -5.090802 -1.123854 3.072112 2.164112 -8.549648 10.543271 -1.715356 21.613680 -4.950258 5.512811 -6.815804 2.915772 -1.777503 -2.748819 -0.685758 11.849341 7.716821 2.583152 -0.223228 -0.513265 -4.969082 5.818372 -PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/program-wish-womens-day.cpp__main = -2.122245 3.842075 16.980952 12.240192 -9.525612 -9.476174 -6.389920 -15.544903 7.335891 -1.641234 8.121851 -0.933814 1.026889 -6.020010 -0.592942 -4.941244 1.108037 -3.554935 0.884965 -5.045830 -2.199283 9.560767 3.913582 -13.618755 1.486612 -19.062190 11.062614 8.383590 6.968412 8.122968 -0.179503 -2.712917 -4.664333 8.599299 -4.339483 -2.814421 3.228476 0.043183 -7.059244 1.185956 4.714899 11.007232 8.419383 -2.278615 7.342785 3.987085 6.487236 4.397505 -9.138347 0.543354 -3.925923 12.599781 -5.458705 6.065385 5.266642 3.735429 1.683460 -12.540550 -4.455231 -7.881604 -0.316705 2.128285 -4.426033 0.189748 -9.356297 1.228353 -0.052914 -4.160389 8.347909 2.003004 6.702000 3.067192 1.443006 -5.065353 -5.950994 5.068336 1.494857 8.810116 5.615619 -3.633544 2.814842 2.949207 -4.585160 -6.071102 0.648819 2.462943 2.872521 -2.279234 3.990600 -5.514183 2.126897 -4.967308 -2.551240 5.017840 -5.929177 2.112311 -8.486389 -2.095344 -7.711854 -3.975270 -0.492105 -5.961012 5.428160 7.391648 -6.632872 0.188055 3.260171 2.396330 -2.694357 -6.201312 -0.245865 -2.335183 7.292288 14.376622 -3.457370 -3.175197 -2.557879 -3.039270 -3.548853 9.513228 -2.234240 4.260333 9.752409 15.173160 2.153065 -7.010730 -3.930938 1.415248 5.924632 9.698844 8.527114 -13.600173 -5.474791 -2.047345 2.857338 -14.459714 3.208055 -1.876944 7.995581 3.269832 -11.005145 2.875886 -5.559477 14.185865 1.677476 2.287251 2.266434 -1.657469 -8.289297 13.260466 18.628222 -3.518774 5.400302 -8.313627 -7.181803 7.357795 -4.231495 5.888100 2.128561 -1.086487 3.761780 -6.296856 -0.329714 9.250644 2.859128 2.648210 7.682329 3.313048 0.495007 -16.847079 -12.748503 4.314855 4.784037 -3.320784 19.028124 -8.647055 -8.473432 -6.778868 12.516034 -2.004194 -1.234106 1.175401 -7.672649 5.794321 -7.266139 -13.134162 15.881220 17.179124 -1.015089 0.112899 11.219532 6.035174 -6.075151 -5.204894 -4.158797 3.664073 3.186039 -2.805174 -0.278433 1.091241 -9.112383 -5.005637 4.264876 3.726084 8.114467 -6.117674 -7.546435 2.673159 -13.174891 -10.426255 6.624411 -9.553446 -0.684892 3.960849 -0.783392 1.495307 8.355786 -4.235769 -4.272891 1.822809 -4.574075 0.278223 3.239768 10.371300 1.604541 8.123186 6.978848 4.487917 14.469512 8.314575 -5.723399 22.960383 -2.728759 1.627805 4.526056 3.069766 -0.355613 5.590020 2.134667 -5.632408 -1.128959 -12.612146 6.393694 -2.284346 6.137456 -15.607295 -7.187861 -11.930167 -6.761647 6.886244 2.062128 -0.054317 18.126767 -0.508216 -2.343653 -19.835093 -2.743739 7.759374 1.605287 8.021585 5.199807 -7.999798 -17.194676 -2.702462 -5.682591 1.451952 -6.763583 -7.517906 -7.642758 -3.167050 12.024802 -1.503871 5.880651 15.326935 1.094056 1.553376 -3.223808 -0.420130 -2.606216 -7.592005 1.700092 3.033145 -10.219053 11.523350 -2.857143 22.721179 -4.151376 6.419484 -9.310797 1.250194 1.070238 -5.701285 -1.646019 13.427322 3.555830 4.202247 0.159614 1.383600 -8.504219 10.428203 -PE-benchmarks/naive-algorithm.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = -0.944819 1.208069 7.431169 4.944806 -3.569800 -4.979482 -2.776386 -7.777933 4.092861 0.036480 4.426476 0.298990 0.921284 -1.306066 -0.022849 -1.415389 0.426650 -1.802569 0.128903 -1.858182 -1.016051 5.236066 2.561578 -5.546075 0.408205 -7.973326 4.478296 2.999358 3.204062 3.885851 -0.015341 -1.087106 -1.367279 4.051965 -2.067692 -0.527412 1.368712 0.707032 -2.598885 -0.345473 2.136808 3.840591 4.081888 -0.360045 4.467693 1.571342 2.865943 1.268501 -3.033482 -0.297063 -2.169581 5.293527 -3.537155 2.713592 0.909721 2.030287 0.540844 -5.105345 -1.544675 -4.117413 -0.192418 1.252923 -2.359883 0.117991 -4.106432 0.962032 -0.117363 -2.194317 2.648722 0.055741 4.157231 1.413083 0.716102 -1.700969 -3.911504 1.743910 -0.058070 3.088636 2.859230 -1.595795 -0.316203 1.042962 -2.102244 -2.833090 1.199264 1.486082 0.822902 -0.440173 1.406846 -1.706757 0.237128 -1.745783 -0.635725 3.275817 -2.380835 1.539137 -2.259278 -0.767365 -2.693439 -2.164714 0.125728 -3.224774 2.534676 2.724298 -1.876921 0.254549 1.298761 0.994152 -1.371449 -4.042798 0.599958 -0.796884 2.495856 5.407695 -1.856692 -1.137975 -0.306810 -1.149975 -1.182478 4.360859 0.120816 1.565043 4.406524 5.990730 0.984612 -3.442752 -1.756413 1.061856 2.811482 4.256661 3.332971 -5.319462 -2.321704 -0.451570 0.849068 -7.011755 1.129717 0.774779 3.604919 0.823975 -4.926238 1.377633 -2.194717 5.329109 2.398082 1.953298 1.216301 -0.183602 -3.578921 4.938997 8.366070 -1.168838 2.797926 -3.260159 -2.749935 4.215716 -3.435447 3.008136 0.682574 0.085389 1.287161 -3.185347 -0.209885 4.253995 1.261584 1.789490 2.905147 1.119257 -0.618077 -7.378461 -5.575857 0.589968 3.662238 -0.368401 7.696363 -4.084493 -3.005250 -1.681257 5.233098 -0.645670 -0.972167 0.888998 -2.964008 2.805523 -5.881387 -6.006672 7.017091 7.474917 0.892190 0.135342 4.668432 2.945852 -1.912463 -2.255276 -2.199833 1.934802 1.473203 -1.408951 -0.172118 -0.260801 -3.958760 -2.523573 1.274023 1.572414 3.203107 -2.344903 -2.544537 0.871321 -5.123420 -4.221345 2.500653 -4.384600 -1.185823 1.034491 0.039038 0.071642 2.320830 -1.460427 -1.355843 1.760117 -2.141373 0.622817 2.195809 3.638365 0.637430 4.391628 4.014472 0.605164 5.199156 3.137128 -1.972937 9.624788 -1.845022 1.016088 1.744882 2.207749 -0.106432 2.277324 1.458666 -2.419562 -1.343352 -4.992727 2.542014 -0.326642 3.247468 -5.565445 -3.836877 -5.051710 -2.703796 2.912436 2.336600 -0.233987 8.488255 -0.607057 0.374643 -9.124098 -0.942172 4.042228 0.343297 3.553272 2.487640 -3.430461 -7.109611 -1.521238 -2.332164 0.223393 -2.413678 -3.817671 -3.012903 -2.203102 3.899981 -1.695660 2.104755 5.834255 -0.412944 1.630971 -2.379628 -0.107773 -1.528921 -2.622777 1.344345 0.944557 -4.556428 5.053921 -1.110036 10.183236 -2.210833 3.292770 -3.689326 1.478943 -0.634344 -2.044631 -0.791509 6.111237 2.614610 1.190614 -0.094515 -0.124801 -2.777831 3.462261 -PE-benchmarks/kmp-algorithm.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = -1.925950 1.315447 12.022284 7.745969 -5.426709 -8.012583 -4.341172 -11.470226 6.533427 0.499463 6.980254 1.381424 1.753219 -1.463069 0.530017 -1.414844 0.682822 -3.253615 0.500893 -2.882636 -0.674426 9.278306 5.393366 -9.296902 0.294278 -12.796589 7.017514 4.722383 5.369801 7.125774 -0.114737 -1.583400 -1.590787 6.540497 -3.695218 -0.674923 1.364616 1.555155 -3.975812 -0.115773 3.394422 6.206597 6.070354 -0.399961 7.610361 2.477307 5.560673 1.733553 -4.496183 -0.771338 -4.506434 8.878333 -6.399093 4.352632 0.098681 3.864999 0.184621 -7.686952 -3.074079 -8.327350 -0.039047 2.909802 -4.383624 0.111442 -6.675297 1.902116 -0.454207 -3.386469 3.361456 1.022138 7.093304 2.598115 1.536702 -3.200292 -7.322729 2.601262 -1.081618 5.148310 4.576598 -3.028290 -2.218681 1.709440 -2.841475 -4.684363 1.877758 2.279273 0.602441 -0.961414 2.747130 -2.239000 -0.965019 -2.134353 -1.930021 5.576855 -4.310255 3.478696 -2.557063 -0.568392 -3.538807 -2.079284 -0.023965 -5.682756 3.652543 4.494522 -1.383856 0.071120 0.923252 1.591290 -3.081792 -6.648675 1.061251 -0.906552 2.285388 7.798098 -3.149196 -0.714971 0.561906 -1.081667 -1.412281 7.490061 0.148760 3.048350 6.917657 9.613644 1.181912 -5.466554 -2.133363 2.091315 5.298149 6.975319 5.368591 -8.019270 -4.079278 -1.053345 1.669072 -10.797911 2.452139 2.888046 5.355171 1.130647 -8.115295 2.024985 -3.454848 9.167474 4.832509 3.592908 2.168507 -0.293550 -5.927234 7.982393 15.091482 -2.034834 4.789398 -4.917693 -4.083783 8.456545 -6.610477 5.545159 1.117943 0.583707 1.898627 -5.429296 -1.080927 7.008434 2.824787 3.635313 5.295641 1.578283 -0.080183 -11.890508 -8.703128 -0.497873 6.026401 -0.285907 12.944836 -6.198394 -4.524405 -2.644011 7.333218 -0.564682 -1.719378 1.006683 -4.290802 4.376759 -11.595734 -9.618976 11.804498 12.034440 1.764072 0.606773 8.043367 5.648516 -2.264347 -3.838304 -2.895711 3.530405 1.808352 -1.235654 0.162838 -0.231725 -6.945593 -4.531663 1.757769 2.301429 4.440155 -3.251371 -4.565669 2.335533 -8.634989 -6.067596 3.179362 -7.741903 -3.026177 1.322263 0.309739 -0.092980 2.681076 -2.325419 -1.334585 3.621143 -3.770572 0.789261 3.663671 5.505152 1.742410 6.326597 7.238062 1.138267 7.884957 5.089881 -3.038129 15.741941 -2.700999 1.194042 2.790023 3.432698 -0.140114 3.256739 1.711312 -3.668984 -2.071975 -8.048843 5.185391 0.032848 5.590393 -8.636658 -6.359844 -6.949507 -3.873450 5.506560 4.469457 -0.813699 13.996467 -1.153429 1.208336 -15.488516 -1.035324 6.369697 0.786810 5.439186 4.505606 -5.144640 -11.515545 -2.650415 -2.645228 1.391289 -3.871681 -6.723769 -4.759086 -3.593625 5.328673 -3.901514 3.318023 9.441586 -1.339316 3.608157 -3.529326 -0.444204 -2.668393 -3.552814 1.936567 2.403537 -7.337969 8.252401 -2.501708 16.724812 -4.304597 5.752727 -5.816299 3.034897 -1.517383 -2.725422 -0.942372 10.281674 4.221451 1.823717 0.576991 -0.477406 -3.961087 5.015750 -PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.348033 0.313636 1.341275 -0.081572 -0.594860 -1.417134 -0.588519 -2.814102 1.059476 0.453996 1.183294 -0.182559 0.738896 -0.268190 -0.063547 0.857359 0.400858 -0.637897 0.552727 -0.550906 -0.492767 1.908314 -0.206369 0.702690 0.107030 -1.930022 0.624033 0.206341 1.224388 0.770247 0.382363 -0.306920 -0.295239 0.444582 0.045657 0.679565 0.396440 0.409526 -1.016556 0.455609 -0.368027 -0.318914 0.795381 -0.159574 1.189513 0.044479 0.621215 0.443793 -0.065827 -0.380611 -0.634910 1.204317 -0.666170 0.284697 -0.115367 -0.628565 -0.282880 -0.272610 -0.396486 0.516844 -0.602773 -0.501349 -0.677228 0.388375 -0.846152 0.490252 -0.840931 -0.366949 -0.126507 0.103258 0.890307 0.525815 0.245241 0.523187 -2.041397 0.246395 0.133876 0.377286 0.536724 -0.287758 0.240160 0.066596 -0.873481 -1.008577 1.207322 1.556918 0.195444 -0.253066 -0.791706 0.047092 -0.567542 -0.202759 0.619169 0.696123 -0.923985 0.027101 -0.740946 -0.290671 -0.743530 -1.827307 0.219119 -0.637971 0.617572 -0.355061 0.264861 -0.143452 0.163361 0.173768 -0.424192 -1.050689 0.172908 -0.269621 0.325535 1.857203 -0.370372 -0.160156 -0.790673 -0.305304 -0.457711 0.560478 0.609285 0.357402 1.146796 1.063518 0.591150 -0.806822 -0.973891 0.739196 0.651298 0.520315 0.471687 -1.080322 -0.604556 0.241859 -0.304239 -1.715136 -0.641819 0.421140 0.718907 -0.694407 0.286396 -0.048055 -0.396264 0.881625 0.931752 -0.239623 0.281863 0.070557 -0.773936 0.974181 1.772223 -0.211387 0.716373 -1.043229 -0.058279 0.816090 -0.797340 0.464504 0.247600 0.130407 -0.667534 -0.548570 0.055626 0.731312 0.123666 0.493044 -0.080280 0.582175 -0.716830 -1.082259 -1.431320 0.002883 1.347630 -0.195314 1.039031 -0.929119 -0.643142 0.179039 1.113602 0.500647 -0.522637 0.725220 -1.090260 0.645172 -1.070144 -1.258253 1.702527 1.798173 0.871280 -0.082733 0.649531 1.149547 -1.798898 -0.758483 -0.457345 0.702587 -0.036334 -2.395971 -0.895162 0.173792 -1.058236 -0.516596 -0.245926 0.559107 0.483935 0.805809 0.949831 -0.095904 -0.598631 -0.632223 1.251397 -0.426064 -0.427674 0.040052 0.115611 -0.115083 0.662720 -0.677957 0.498420 0.727494 -0.638867 0.539611 0.764065 0.214556 -0.188656 1.454101 1.335763 -0.150054 1.114332 -0.177969 -0.405158 0.794850 -0.152342 0.377502 0.061672 -0.068933 -0.333481 0.350086 0.643471 -0.525975 -1.174253 -0.938248 -0.180618 0.124142 0.659422 0.754313 -1.322955 -1.354835 -0.193253 0.292081 1.264462 0.377886 1.548545 -0.539976 0.640085 -1.748944 0.237759 0.231611 -0.017362 0.943851 0.177299 -0.468949 -0.168360 -0.325641 -1.023894 -1.565234 -0.417025 -1.065911 -0.695461 -1.038773 1.009944 -0.598168 -0.224114 0.496397 0.201462 0.960755 -0.404543 -0.100658 -1.136490 0.535516 1.164685 -0.217640 -0.777870 0.703044 0.048354 2.646353 -0.276900 0.442699 -0.234706 0.275864 -0.166556 -1.010907 -0.111547 1.308903 0.885629 0.172790 -0.429356 -0.389056 0.108533 0.464517 -PE-benchmarks/snake-ladder.cpp__main = -0.167431 1.220385 4.541224 3.163142 -4.247135 -6.777485 -2.169064 -7.686038 2.728399 0.419034 4.402713 0.157782 2.121066 -1.399172 0.566244 1.762591 2.134535 -0.816149 0.473649 -2.474894 -3.622829 5.323080 1.206752 -1.423542 0.665891 -3.413632 3.105129 2.819558 2.522739 2.654653 1.302347 -0.674920 -1.213014 2.504334 -0.965435 1.375421 -0.504864 1.667480 -3.021893 0.751030 0.702718 -1.580412 4.398716 -0.294427 3.539412 0.956249 4.286176 1.627934 -3.290975 -1.181082 -3.408677 4.908679 -3.373030 1.687073 -0.973729 -0.820393 1.458235 -1.733186 -1.125313 -1.480010 -1.574360 -1.781361 -3.567231 0.336310 -3.432802 1.149484 -2.164503 -2.923488 0.622101 1.173576 3.265567 1.135730 -0.535624 0.509328 -5.333500 0.276870 0.932751 2.328241 2.728140 -0.284998 0.680099 -0.282319 -3.103531 -3.007119 3.710040 0.742299 2.012367 0.114555 -2.305709 -0.418802 -0.758780 -0.213073 1.660142 1.784130 -2.547581 1.011910 -0.952266 -1.385456 -4.091374 -4.915128 0.942516 -1.985369 2.084057 0.374867 -0.567075 -0.502643 -1.858855 0.124688 -2.759009 -4.633729 -0.314963 -2.269632 0.321369 4.958802 -1.974585 -0.743929 -0.957651 -0.812660 -0.687349 2.647750 2.417120 1.134921 3.894306 4.383244 1.117066 -3.176693 -2.496753 -0.046992 2.853268 3.040859 2.429077 -2.391537 -3.064535 0.634379 -1.497733 -6.380660 -0.834862 2.756382 3.002052 0.357689 -1.856250 1.066581 -2.006894 3.321891 2.660549 1.661389 1.128752 -0.180762 -3.113899 3.549398 5.627769 -1.397513 3.511407 -1.615693 -1.662708 4.530372 -2.636511 1.180151 1.738793 -1.444439 -1.433916 -1.438577 -0.844435 3.135819 1.525854 0.694276 1.596723 1.710197 -2.247183 -5.016510 -5.318398 1.355942 5.341607 0.829083 5.220704 -4.071259 -1.987891 0.669512 3.180760 -0.535016 -2.480072 1.221417 -2.778967 2.763881 -6.028946 -5.046706 6.959703 4.368783 1.984619 0.435872 2.894441 3.364135 -4.349707 -2.697363 -2.369271 2.271658 0.839458 -4.906528 -1.653690 0.638313 -4.489169 -1.081130 0.010757 2.131098 1.184033 -0.415314 1.248424 -1.420755 -2.955187 -1.947307 2.185533 -2.687111 -1.069926 0.797587 -0.567496 0.445672 1.698860 -0.815544 0.195816 -0.068488 -3.094990 0.597069 1.027598 3.016082 1.121314 6.706563 5.668040 -1.058545 4.367105 0.595831 -2.270153 5.347185 -1.595280 1.845345 0.545275 2.974492 0.167523 1.000325 3.936055 -1.921000 -2.969930 -4.012788 -0.263092 1.906137 2.711758 -1.768564 -2.710459 -6.443067 -1.010041 1.835622 4.655707 -1.157676 5.955575 -1.710895 1.183959 -6.978692 0.385956 1.316411 -0.303347 3.342228 1.329347 -2.656797 -2.415408 -1.842503 -3.336561 -1.723513 -0.876419 -1.850372 -2.524606 -1.789312 1.713874 -2.904851 0.067866 2.682467 -1.306017 2.495683 -0.662047 -0.163285 -1.635818 0.099474 4.323991 0.277407 -3.354475 4.737624 0.239841 10.568414 0.455698 2.410767 -1.860786 0.707266 0.209431 -2.584716 -1.186003 5.024095 3.940280 0.395514 0.396737 0.964248 0.151880 2.737514 -PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = -2.477239 2.161967 13.996346 7.587120 -8.767666 -11.991055 -5.784017 -16.591767 7.617783 0.769060 9.483993 0.824470 2.223607 -3.691542 0.867562 0.180269 2.428166 -4.128292 0.359976 -4.996332 -3.103590 9.978793 4.219493 -7.578919 1.825616 -15.405260 8.240192 5.315858 5.670813 7.511329 1.993995 -2.338590 -4.157703 7.655838 -1.271772 3.267492 3.536066 1.164923 -5.472826 1.228704 3.285765 5.047610 8.286277 -0.496570 10.806230 3.457759 6.163938 3.531279 -7.878805 -1.907931 -5.513096 11.599968 -7.792781 5.320541 1.625464 3.113105 0.845794 -9.292937 -3.174749 -6.995824 -2.539818 -0.383416 -5.286443 0.711052 -7.757936 2.362788 -1.582636 -3.704604 4.025848 0.728795 8.718098 2.365518 0.800598 0.677331 -7.958012 2.315167 0.324505 6.764160 6.663086 -4.043056 -0.459575 0.908783 -4.332673 -6.383885 4.007396 2.573829 2.545648 -1.018069 0.077395 -1.961238 -1.154559 -3.668166 0.296355 5.770430 -6.781746 0.913388 -3.402159 -2.412491 -6.618056 -6.458735 0.935143 -5.375764 4.533235 4.398813 -2.838548 -1.137087 -0.992928 1.411434 -4.853161 -6.836836 2.078620 -2.188279 3.786284 10.925245 -4.216785 -1.847171 -1.753419 -2.689519 -1.623707 8.490908 2.000257 2.987599 8.953359 12.619243 3.966858 -6.513939 -5.056412 1.239354 7.017952 8.151645 6.440893 -9.718342 -5.508976 0.270636 -0.352409 -13.534853 0.872089 2.199578 8.326320 3.384281 -8.012624 0.961768 -4.619134 10.603938 4.209522 3.484710 2.019501 -0.591206 -8.389589 10.334183 16.392865 -2.540313 6.621627 -5.260367 -3.155965 7.823723 -7.513868 4.540118 3.320807 -1.314104 0.449742 -5.027646 -2.313274 7.868119 3.925268 3.408711 3.977831 4.156814 -2.796369 -14.160057 -11.973113 1.220212 8.990940 -1.303983 13.587290 -8.849189 -5.507847 -3.353262 11.382484 -1.251885 -3.900889 1.924451 -6.341449 5.739619 -10.084996 -11.031518 16.859079 16.777915 3.086448 0.395662 8.846736 8.320517 -8.284209 -4.364113 -4.414754 3.518102 2.047864 -6.599534 -1.888948 0.698277 -8.708301 -5.884125 1.275240 3.944436 4.895248 -2.030274 -2.382991 3.340821 -8.394707 -6.705222 4.490764 -7.402369 -3.306728 2.398017 0.006180 1.448475 4.743483 -3.708337 -1.480639 3.662696 -5.878714 1.606969 4.688440 8.461433 2.863373 10.535957 9.049310 0.990758 11.402413 4.770764 -4.948626 15.836195 -2.590353 3.389825 2.997489 3.588594 1.022460 3.439258 4.017075 -5.099930 -3.921527 -9.958852 3.173835 0.136073 7.228935 -8.011003 -8.812440 -12.296304 -3.990849 5.951226 5.364605 -1.456284 16.324435 -1.338251 0.705416 -18.203366 -1.379296 7.874330 0.123783 6.065739 4.166472 -6.200429 -12.901668 -3.276810 -6.147646 -2.054575 -3.796710 -5.108101 -5.560315 -5.608744 9.422245 -3.672797 2.912978 10.307383 0.102950 4.633504 -2.689846 -0.130687 -4.098598 -3.449081 4.496744 1.710396 -9.188745 10.877188 -0.484745 21.866784 -3.483354 5.557223 -5.780162 2.218500 -0.315835 -4.724584 -1.648901 11.852627 7.141873 2.704433 0.167288 0.553318 -4.434151 7.778044 -PE-benchmarks/floyd-warshall.cpp__main = 0.120944 0.280730 0.808663 -0.243909 -0.429925 -0.992088 -0.311563 -1.624222 0.439285 0.300857 0.792193 -0.143506 0.530828 -0.047247 0.055819 0.454953 0.394365 -0.324053 0.315798 -0.438942 -0.334510 0.727853 -0.220085 0.553542 0.168769 -0.890526 0.400335 0.174394 0.462440 0.478121 0.329171 -0.144145 -0.407016 0.230733 0.138955 0.431946 0.414271 0.252154 -0.537590 0.384433 -0.284347 -0.260411 0.492208 -0.004636 0.708607 0.291508 0.131024 0.398353 -0.139652 -0.346576 -0.164197 0.473899 -0.369925 0.180639 -0.055303 -0.403305 -0.135137 -0.105641 -0.105278 0.226289 -0.257111 -0.471646 -0.359498 0.266383 -0.465062 0.226539 -0.535017 -0.335119 -0.143490 -0.121679 0.426937 0.120051 0.005621 0.519584 -1.071843 -0.003264 0.165202 0.206622 0.377424 -0.262137 0.081585 -0.062653 -0.573577 -0.619613 0.611565 0.871205 0.252860 -0.027373 -0.666442 0.089821 -0.218463 -0.100002 0.507945 0.380771 -0.440997 -0.108365 -0.361086 -0.261558 -0.549541 -1.234357 0.281816 -0.228782 0.393174 -0.278362 0.054292 -0.212633 -0.217931 0.158026 -0.326572 -0.507995 0.208522 -0.293635 0.218366 1.020991 -0.251388 -0.158575 -0.609579 -0.324210 -0.021285 0.344105 0.401718 0.059900 0.536602 0.601704 0.338629 -0.516089 -0.677914 0.299286 0.350344 0.279356 0.282984 -0.593960 -0.364095 0.262298 -0.580404 -0.950555 -0.406749 0.080787 0.482628 -0.415507 0.169746 0.010796 -0.441101 0.314777 0.527770 0.081750 0.126401 0.005234 -0.510216 0.407047 0.743341 -0.182645 0.521207 -0.378999 0.047415 0.216927 -0.262740 0.161231 0.261604 -0.127828 -0.477294 -0.125837 -0.057601 0.403247 0.265485 0.366068 -0.129535 0.395229 -0.581426 -0.494974 -0.832743 0.023994 0.969880 -0.090264 0.393151 -0.629176 -0.311281 0.065850 0.802562 0.211615 -0.454898 0.381702 -0.479654 0.362039 -0.483451 -0.588612 0.902726 1.034619 0.623823 -0.139095 0.195757 0.544808 -1.142467 -0.406843 -0.244549 0.337157 -0.279759 -1.452861 -0.584970 0.133999 -0.631918 -0.168635 -0.183678 0.443123 0.267264 0.495178 0.670897 0.027580 -0.163548 -0.366020 0.547493 -0.082001 -0.237378 0.094056 0.014133 0.055155 0.256106 -0.413601 0.226681 0.462757 -0.474336 0.317563 0.463950 0.181837 -0.037143 1.086039 0.507640 -0.138776 0.444918 -0.242912 -0.320389 0.357121 -0.058704 0.402591 0.028779 0.100988 -0.099572 0.121544 0.536129 -0.313767 -0.729122 -0.551901 -0.422382 0.179128 0.460249 0.590311 -0.814185 -0.952056 0.094334 0.022411 0.921523 0.079968 0.820342 -0.147894 0.462866 -0.725086 0.166914 0.045841 -0.168247 0.370961 0.074136 -0.303312 -0.067939 -0.129046 -0.851493 -1.070633 -0.093573 -0.309485 -0.352247 -0.424815 0.456364 -0.196291 -0.273907 0.109776 0.085902 0.527486 -0.034453 -0.049265 -0.546962 0.303124 0.876445 -0.227008 -0.491543 0.423880 0.248644 1.524036 0.076080 0.259673 0.042657 0.040080 0.023475 -0.519781 -0.204343 0.738070 0.627400 0.204699 -0.236921 -0.138300 0.217108 0.251038 -PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = -2.691210 2.284860 14.056808 8.540004 -7.221599 -10.462380 -5.342833 -12.478765 5.921715 -0.808798 8.862491 1.497753 1.075188 -0.571338 2.247758 -1.570819 0.767814 -2.889326 -0.644722 -3.674168 -1.513356 7.608601 6.734311 -10.752137 1.127316 -12.442728 5.811436 6.506724 4.738577 6.537349 -0.272700 -2.289522 -3.330273 7.149887 -4.105592 -0.632431 2.049406 0.720199 -4.656789 0.015498 3.972555 6.640545 6.583660 -0.695581 8.419469 2.928090 7.005088 2.606960 -6.583323 -1.190840 -5.798870 12.877586 -7.255949 5.001618 1.752325 5.468733 0.076732 -9.324135 -3.546486 -10.025631 -0.200649 2.701486 -5.124874 -0.367076 -6.575567 2.144132 -0.222291 -3.637428 5.299001 0.955847 8.457321 0.966621 0.598098 -1.877569 -5.977489 1.894229 -1.645932 7.145593 5.066087 -3.815492 -1.468241 2.271731 -2.265398 -4.548365 1.332153 -0.194546 1.541025 -1.987948 1.903001 -1.131807 -0.377121 -2.967151 -2.310208 5.103892 -6.469239 3.918950 -2.759839 -1.343756 -5.857098 -1.970801 0.314612 -5.877864 3.931376 4.989925 -2.080218 -1.022266 -1.417959 1.485448 -4.189845 -8.476160 0.855498 0.115045 1.545189 8.209402 -5.258341 0.067768 2.497252 -1.549801 -2.294777 8.426681 1.425525 3.785321 6.263038 11.733907 1.081721 -5.579518 -2.927640 0.325730 7.327724 8.868432 6.562640 -8.460783 -4.940823 -0.648027 0.758902 -12.778013 3.936060 4.124766 7.469042 5.380221 -10.316709 0.847477 -4.329105 10.144142 3.524086 5.680618 1.844395 -1.383474 -7.225564 8.829533 16.075302 -3.359013 7.347394 -2.753672 -3.695690 8.253796 -7.919672 5.494631 3.243047 0.266700 3.227159 -5.408319 -4.461501 7.790195 5.519020 4.372736 6.140848 1.893990 -1.258370 -14.554734 -10.157080 -0.247234 6.686215 -2.097980 11.861962 -6.806744 -6.087179 -3.271834 10.749532 -3.849609 -3.615959 0.337459 -4.534016 5.007410 -9.868438 -9.608403 13.260564 14.885669 0.490872 1.001173 9.983005 7.295788 -4.997240 -3.668667 -3.943374 3.691951 1.595145 -1.102773 0.116523 -1.134082 -7.720721 -3.939542 1.887916 3.177150 2.784986 -2.540774 -4.862747 5.737292 -9.881620 -5.443235 2.068783 -8.522935 -2.775092 2.102493 -0.317933 0.480640 2.568923 -3.597302 -2.680091 4.544295 -6.318305 0.951305 4.067144 7.202479 3.977212 9.931811 5.852481 2.399640 11.124328 5.766869 -4.839314 17.233387 -3.192243 2.196671 2.361377 5.123022 -0.777723 3.736017 1.826752 -4.045780 -4.093576 -9.249302 4.391718 -0.778446 7.222746 -8.260131 -8.165242 -8.317651 -4.606749 7.695902 4.200651 -2.639214 15.345995 -0.737949 1.092576 -17.818965 -1.409324 7.387196 -0.460739 5.090572 4.612734 -5.230725 -15.636567 -2.773922 -2.796245 1.205262 -3.454856 -6.591277 -4.771822 -5.329312 7.532586 -4.471398 3.516507 9.142763 -0.762284 3.939675 -1.909308 -1.087192 -1.455825 -4.230223 3.507237 2.892444 -9.469304 10.987999 -1.568413 20.648099 -3.983079 6.667591 -6.591301 1.297994 -0.402425 -1.450275 -1.043953 11.332139 7.008451 2.662700 -0.282378 1.006621 -5.704818 5.002754 -PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = -0.473791 0.947909 5.779156 3.312730 -3.274656 -4.326733 -2.198948 -6.810817 3.182321 0.048002 3.752537 0.394969 0.905796 -1.361465 0.329253 -0.295974 0.661488 -1.121306 -0.112889 -1.641152 -0.758857 3.862593 1.328432 -3.677683 0.595209 -5.794917 2.652882 2.624887 2.575962 2.274323 0.347229 -0.900616 -1.798879 2.748593 -1.417810 0.135320 1.384915 0.503061 -2.725263 -0.324377 1.281831 2.311914 2.927114 -0.735854 3.908686 0.444289 2.603494 1.277803 -2.488648 -0.520402 -1.875356 5.124113 -2.365830 2.149489 1.071185 1.188530 -0.130383 -3.629590 -1.238384 -2.565478 -0.256047 0.478046 -1.950495 0.023047 -2.667138 0.823569 0.218679 -1.649516 2.179671 -0.129588 3.232739 0.456553 0.298510 -0.659460 -3.318997 0.736415 0.008589 2.545218 2.217886 -0.757631 0.475970 0.326385 -1.462167 -2.090098 1.314556 1.523570 0.707258 -0.524365 -0.138999 -0.648371 0.096781 -1.535785 0.061720 2.077058 -3.088483 0.676399 -1.971605 -0.782039 -2.450269 -1.938185 0.524418 -2.231048 1.970488 1.413254 -1.253514 0.151081 0.789709 0.717544 -1.412274 -3.103817 0.314325 -0.508949 1.760256 4.748227 -1.600907 -0.849550 -0.279166 -1.031844 -1.484317 2.943179 0.565743 1.367526 3.397991 4.756679 1.195161 -2.766961 -2.050756 1.108911 2.637414 3.530086 2.266648 -4.089702 -1.711455 0.004985 0.008985 -5.791215 0.541851 0.644693 3.208145 1.059721 -3.145564 0.170905 -1.667188 4.201581 1.324723 1.328505 0.691960 -0.002250 -3.007281 3.622142 6.301970 -0.889747 2.479471 -1.852880 -1.371783 2.411721 -2.529114 2.066239 1.149498 -0.122050 0.733165 -2.195251 -0.937114 3.082745 1.233986 1.519811 1.318950 1.314924 -1.505417 -5.845711 -4.853988 0.252752 2.987864 -0.558099 5.302713 -3.196690 -2.961063 -1.282288 4.806431 -1.139707 -1.328258 1.060431 -2.866542 2.442398 -2.983819 -4.348854 5.710437 6.484328 0.792928 0.060279 4.247775 2.399560 -3.337501 -1.761647 -1.666708 1.311783 1.405866 -2.357064 -0.359587 -0.068408 -3.340845 -1.964119 0.816781 1.389171 1.468680 -0.307055 -0.495302 1.587370 -3.472613 -2.674288 2.141914 -2.768071 -0.595259 0.708962 0.158093 0.157710 2.039182 -2.048283 -1.052098 1.561567 -2.124201 0.952016 1.740539 2.657240 0.804176 4.134388 2.948454 0.596736 5.246731 1.803088 -2.019257 6.628016 -1.190602 1.056499 1.083208 1.333085 -0.372678 1.559954 1.166203 -2.025857 -1.474511 -3.981010 0.880591 -0.413131 2.860397 -3.070232 -3.425314 -4.036823 -1.998845 2.248774 1.612831 -0.431079 6.378206 -0.911791 0.470144 -7.555711 -0.569244 2.961631 -0.164616 2.529110 1.510475 -2.383596 -6.056529 -0.999215 -2.039827 -1.274066 -1.591610 -2.828038 -2.373292 -2.668452 4.009812 -1.536246 1.156432 4.202157 -0.027660 1.766105 -1.928304 -0.017372 -1.016355 -1.440740 1.316917 0.630570 -3.914657 4.049198 -0.397299 9.109149 -1.350429 2.486987 -2.501263 0.920258 -0.436829 -1.953348 -0.592850 4.598224 2.803934 1.272662 -0.652812 0.115086 -2.501925 2.625664 -PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.118982 0.201851 1.593276 -0.303482 -0.853321 -1.817735 -0.791831 -3.530259 1.268245 0.658386 1.657786 -0.138329 0.994783 -0.418208 0.052451 1.030715 0.601039 -1.076035 0.722857 -0.798295 -0.508917 2.188735 -0.182219 1.054227 0.131475 -2.345514 0.788057 0.172928 1.264527 1.021191 0.604281 -0.384325 -0.612403 0.517937 0.330327 1.153191 0.726040 0.491894 -1.084891 0.611295 -0.436055 -0.522928 1.001445 -0.218227 1.751896 0.042630 0.665975 0.639699 -0.244297 -0.685236 -0.649308 1.322128 -1.035357 0.249658 -0.003278 -0.795154 -0.381469 -0.367069 -0.556334 0.445908 -0.769619 -0.902891 -0.833024 0.586899 -0.927182 0.721510 -1.096073 -0.336807 -0.234241 -0.044236 1.113767 0.606127 0.319981 1.065021 -2.356266 0.186905 0.140604 0.414237 0.708468 -0.475824 0.115954 -0.033482 -1.045235 -1.247166 1.427486 1.906776 0.238515 -0.317902 -1.107811 0.402560 -0.713505 -0.284615 0.834008 0.800469 -1.226681 -0.223833 -0.623074 -0.447914 -0.960731 -2.258981 0.416644 -0.717708 0.772702 -0.331292 0.178833 -0.410277 -0.256881 0.141726 -0.872561 -1.242061 0.322834 -0.425325 0.483433 2.199838 -0.678892 -0.069023 -1.177831 -0.444968 -0.258162 0.701964 0.819996 0.476109 1.347806 1.448097 0.702651 -1.070138 -1.361158 0.902012 1.039766 0.578075 0.530870 -1.328245 -0.769577 0.426530 -0.630060 -1.990811 -0.944065 0.465813 0.980891 -0.662104 0.334725 -0.124864 -0.547420 1.116291 1.243441 -0.183698 0.213890 0.124505 -1.143949 1.231627 2.009051 -0.234825 1.027567 -1.080383 0.107217 0.963529 -1.116631 0.476005 0.546433 0.113017 -1.043967 -0.569944 -0.109344 0.784258 0.363728 0.824995 -0.365634 0.888388 -0.835370 -1.311442 -1.836821 -0.019358 1.924247 -0.162272 1.044604 -1.274362 -0.726564 0.248722 1.515259 0.722260 -0.921282 0.873918 -1.264978 0.814809 -1.256281 -1.448233 2.199127 2.368741 1.254142 0.006067 0.729069 1.521082 -2.453186 -0.731749 -0.525153 0.925419 -0.272341 -3.047111 -1.051457 0.266065 -1.321844 -0.821961 -0.414661 0.824961 0.528562 1.008342 1.279121 0.200554 -0.460980 -0.633263 1.456986 -0.362675 -0.735017 0.015982 0.124000 0.076474 0.689600 -0.834677 0.786561 0.944254 -0.895766 0.698770 1.110600 0.309879 -0.070510 1.926244 1.544088 -0.290074 1.193546 -0.409415 -0.462518 0.671082 -0.092362 0.624466 0.094481 -0.112598 -0.192782 0.269074 0.895684 -0.677454 -1.454918 -1.074588 -0.383912 0.217568 1.059934 1.009008 -1.866744 -1.837015 -0.031433 0.429618 1.593440 0.340380 1.881644 -0.569011 0.806523 -2.051674 0.279422 0.314958 -0.063887 0.999873 0.142303 -0.483307 -0.205245 -0.417489 -1.421061 -2.007292 -0.436315 -1.012749 -0.798369 -1.310336 1.449092 -0.696719 -0.454724 0.376818 0.298916 1.265234 -0.147016 -0.128580 -1.427864 0.730983 1.357821 -0.277596 -0.974985 1.078223 0.197887 3.245937 -0.307521 0.432817 -0.098428 0.495314 -0.237738 -1.186904 -0.091976 1.600947 1.281996 0.199254 -0.593971 -0.492010 0.222851 0.526513 -PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = -0.516300 0.636073 3.113353 2.088481 -1.827651 -3.003648 -1.366026 -3.250334 1.543861 0.024445 2.168764 0.121400 0.767107 -0.567573 -0.006784 -0.630050 0.389704 -0.744870 0.032810 -1.091787 -1.547142 2.491432 1.164273 -2.095089 0.380703 -3.287852 2.752837 1.483531 1.021029 2.386198 0.085971 -0.215294 -0.605143 1.891652 -0.768839 0.050205 0.068820 0.614591 -0.614965 0.308101 1.499784 0.928655 2.244639 0.280651 1.694625 1.565668 1.008745 0.674646 -1.564335 -0.595237 -1.175043 1.585480 -1.972800 1.044919 -0.482733 0.915723 0.971128 -2.007259 -0.491966 -1.925232 -0.118594 -0.039963 -1.496442 0.133728 -2.135774 0.434363 -0.695020 -1.363351 0.859228 -0.141775 1.815724 0.591303 -0.205605 -0.574837 -1.840494 0.522760 0.200650 1.348134 1.583468 -0.750003 -0.674667 0.405206 -1.541759 -1.552039 0.921542 0.094446 0.859988 0.115924 0.331905 -1.068253 -0.001177 -0.226996 0.282811 1.537964 -0.654642 0.534129 -0.747833 -0.480177 -1.539052 -1.481205 0.340841 -1.322361 1.084083 1.435149 -1.225288 -0.367411 -0.071245 0.181457 -0.927026 -2.131133 0.101591 -1.111772 0.858289 2.360333 -0.808523 -0.624115 -0.336090 -0.785705 0.116263 2.235074 0.466696 0.320156 2.205897 2.571132 0.295230 -1.672882 -0.966046 0.123970 1.269714 1.632498 1.551987 -2.170040 -1.394811 -0.124250 -0.264790 -3.324557 0.387193 0.360199 1.552715 0.248176 -2.261359 1.629354 -1.373065 1.667117 1.416143 1.188248 0.672524 -0.268721 -1.891369 2.262735 3.732506 -0.681084 1.478268 -1.460811 -1.889626 2.807297 -1.432225 0.951588 0.541344 -0.516140 0.097288 -1.089426 0.184202 2.027881 0.323626 0.908601 1.795902 0.552602 -0.252818 -2.952650 -2.633206 0.604843 2.467157 0.393661 3.690961 -2.297884 -0.521677 -0.398580 2.545222 -0.295866 -0.652828 0.174612 -0.859115 1.291555 -3.562264 -2.851332 3.447540 2.709116 0.521146 0.307938 1.622546 1.597758 -0.431050 -0.912407 -1.389609 1.046907 0.705010 -0.523564 -0.060874 -0.063126 -1.885119 -0.912482 0.433094 0.921652 1.429655 -1.692811 -1.274990 -0.515080 -2.116367 -2.131071 0.922362 -2.195800 -0.423276 0.629891 -0.355757 -0.234969 0.814885 -0.077966 -0.462089 0.220720 -0.956943 0.287964 0.898816 1.673953 0.524051 2.570823 2.192579 -0.546833 1.388992 1.245173 -0.628698 4.417999 -1.049304 0.715006 0.855233 2.050680 0.473647 1.001137 1.322412 -1.023623 -0.631398 -2.481247 0.991897 0.578727 1.176372 -2.527579 -1.212990 -3.239546 -1.032403 1.060703 2.197063 -0.351679 3.965569 -0.090206 0.170238 -3.620309 -0.251902 1.671975 -0.031444 1.627991 1.105034 -1.501584 -2.666635 -0.988551 -1.327372 0.447450 -0.944917 -1.233083 -1.472287 -0.446400 0.840749 -1.010674 0.931260 2.370764 -0.422709 0.468575 -0.725556 -0.032416 -0.933704 -1.047873 1.033297 0.369074 -1.829357 2.568697 -0.244948 4.230751 -0.521825 1.809458 -1.403619 0.871781 -0.190104 -1.181720 -0.617938 2.804231 1.247034 0.341579 0.548146 0.460489 -0.414710 1.713375 -PE-benchmarks/bellman-ford-algorithm.cpp__main = -9.737842 -5.843880 12.323660 5.957881 -6.914705 -21.334724 -7.067787 -24.553247 13.228022 5.299612 20.993425 3.163850 12.537801 -11.779088 6.389438 9.048198 10.566417 -10.981083 1.383476 -7.916790 1.922598 23.823560 8.578913 -1.581056 0.491095 -13.460498 -1.143707 6.299564 5.719067 10.338573 5.224951 -1.306385 -2.250328 3.944832 -2.907779 14.876022 3.938229 3.628235 -8.639091 -4.148000 -1.472637 -4.607827 12.000367 -3.760918 20.877171 -5.995140 17.886180 2.153130 -10.513213 -10.709818 -11.249041 20.633170 -13.208772 2.833761 -1.003364 -3.561653 3.897469 -4.466643 -7.593211 -16.084011 -4.875176 -3.447479 -11.984064 0.527432 -4.559594 8.878348 -1.786095 -2.101953 -0.817560 -1.598844 12.068348 4.962265 2.356444 7.543482 -16.932243 0.444674 0.200484 3.645125 6.530756 0.310997 -3.207482 -6.060165 -4.719230 -8.210502 17.799916 4.309918 3.736630 4.742646 -13.646413 9.169018 -7.628608 -2.345234 3.662528 1.538014 -13.758954 -1.959626 15.435486 -5.717940 -8.120521 -6.579098 4.095848 -7.123434 1.118109 5.742173 6.891847 -2.200031 -18.111475 0.319258 -20.724253 -13.209326 5.846328 -4.836819 -7.267326 11.470351 -16.466306 4.883117 -5.663853 2.794499 1.038247 10.291903 5.390111 10.836762 8.270535 14.124365 3.540305 -11.293337 -5.982339 4.996212 22.748011 6.504389 3.202447 -6.709529 -9.569740 5.609374 -9.981358 -18.588558 -12.207330 17.546932 15.134411 8.987828 -12.106020 4.596490 -0.878606 18.129387 13.377110 0.422326 -0.125402 3.117702 -15.670826 11.529380 18.006622 -6.451481 16.598926 -0.622726 0.272675 14.275461 -15.638249 3.613526 9.323680 -2.820045 -6.688906 -4.582818 -4.583223 8.381071 13.145136 9.265904 -9.553002 9.945032 -3.535071 -19.236055 -24.763061 -4.829057 15.807697 3.473954 16.120267 -10.846196 -11.386785 0.428600 9.895212 -5.489161 -14.995579 3.452130 -13.716522 8.453558 -24.462786 -16.047890 33.485673 23.205795 15.506421 8.175679 14.346207 16.136272 -16.693524 0.008686 -1.573143 9.978859 3.105286 -22.521473 -2.671841 1.303447 -17.208172 -14.580203 -6.635273 5.817746 -9.536478 6.152630 13.208972 1.945832 -5.071053 5.358201 3.232701 -7.096250 -9.757682 -3.273129 0.102379 6.038737 3.844127 -7.224737 8.250356 5.767879 -16.293715 -0.555901 4.473059 10.295074 12.878307 20.382813 24.783967 -3.833494 19.243735 -5.279131 -9.547325 6.962631 -3.919670 3.536149 -2.900952 5.311181 8.116223 -0.146138 9.994577 -5.566078 -7.795662 -11.071527 0.078404 10.289286 14.132254 -1.426851 -18.882977 -18.939525 -0.129059 8.311858 15.973955 -6.999320 20.604059 -11.332845 4.158007 -31.333609 2.824745 4.818901 0.300335 3.382220 2.777766 -4.868685 -16.093420 -4.792671 -11.322867 -11.906544 -2.611810 -8.585509 -4.750087 -17.835032 19.571444 -18.870031 -2.219479 4.406556 1.746521 16.443666 7.461759 -1.384789 -10.363079 7.623649 5.544010 3.639828 -9.173197 15.005372 1.489028 35.039997 -4.698655 6.752724 -6.324658 14.165663 -6.168605 -9.843287 -0.287203 15.783533 22.829771 -3.944092 1.090864 -0.060186 -0.597522 9.031629 -PE-benchmarks/dfs.cpp__main = 1.330884 0.823982 1.520579 -0.279304 -0.922337 -2.240437 -0.421086 -3.526564 1.195723 0.174942 0.810934 -0.093976 0.686533 -0.028670 -0.023483 1.704264 0.912748 0.020182 0.298655 -1.033709 -0.454018 1.790405 -0.871444 0.818688 0.528264 -2.068057 0.049845 0.797926 1.813734 0.440118 0.749956 -0.433950 -0.682856 0.370968 -0.080215 0.306282 0.580999 -0.159963 -2.534242 0.926515 -1.070057 0.059453 1.206444 -0.095839 1.168667 0.006675 0.923759 1.142653 0.295525 -0.125867 -0.901823 2.169741 0.254786 0.674727 -0.092393 -0.668056 -0.705311 -0.342897 -0.176240 1.910237 -0.837237 -0.159316 -0.726737 0.332960 -1.031741 0.180963 -0.982236 -0.743283 -0.148314 0.085239 0.829360 0.021566 -0.308067 0.043365 -2.895630 -0.164612 0.094514 0.967444 0.661316 -0.212049 0.868558 -0.064718 -1.103377 -0.890767 1.028092 2.176445 0.157092 -0.101624 -1.507857 -0.716442 -0.717008 -0.496820 1.073454 0.273863 -1.495396 -0.034884 -1.523105 -0.485636 -1.256120 -2.280988 0.534336 0.062476 0.809868 -1.926958 1.053512 0.148423 0.764519 0.216527 0.046764 -0.581443 0.175210 0.196300 0.335934 2.954785 0.109345 -0.691766 -1.138350 -0.482657 -1.566022 0.662105 0.687719 0.018103 1.091359 1.230847 0.730727 -0.694883 -1.257599 0.613982 0.245599 0.868061 0.935468 -0.888581 -0.663873 0.362564 -0.458053 -1.972271 -0.492884 0.226552 1.064447 -0.894404 1.201031 -0.973879 -0.719705 0.960578 0.270382 -0.613350 0.540010 -0.319638 -0.775129 0.990482 2.068433 -0.148474 0.751671 -1.552542 0.526529 -0.055927 -0.269378 0.389528 0.066221 -0.461023 -0.846270 0.111739 0.087759 0.561657 0.114383 -0.181968 0.003590 0.734890 -1.536775 -0.949344 -1.616269 0.051715 0.863303 -0.588098 0.806070 -0.810448 -1.002440 -0.575002 1.057633 0.253371 -0.363779 1.345692 -1.815888 0.658928 -0.141394 -0.834059 1.824210 2.587474 1.000022 -0.620465 0.783669 0.970000 -2.653177 -1.310126 -0.100563 0.314201 0.075928 -3.452898 -1.156632 0.216199 -1.188522 -0.219213 -0.113969 0.854919 0.561971 1.755550 1.998225 -0.407271 -0.960516 -1.149810 1.465668 -0.129099 0.212760 0.633502 0.057156 -0.392788 0.975019 -1.069521 0.173360 1.128254 -0.644049 0.866601 0.524665 0.433218 -0.446574 1.305046 0.969279 0.528717 2.678904 -0.185100 -1.129150 0.969198 -0.041590 0.992818 -0.088547 -0.571347 -0.937808 0.345727 0.314904 -0.575214 -1.278146 -0.861541 -0.605803 -0.048035 0.814825 1.606410 -1.576427 -1.428376 -0.276402 -0.137762 1.177259 0.310998 1.194772 -0.962552 0.899462 -1.945045 0.460927 -0.007319 0.082110 0.818859 0.164602 -0.813312 0.130467 0.187218 -1.675617 -2.402831 -0.224883 -1.342570 -0.930662 -1.032373 1.347840 -0.567954 -0.496280 1.002150 -0.196613 1.245625 -1.260821 -0.052641 -0.828565 0.323370 1.975127 -0.419771 -0.980901 0.118990 0.172439 3.211995 0.480535 0.626396 0.041181 -0.498704 0.253804 -1.572246 -0.569318 1.311673 0.842795 0.271934 -0.546728 -0.687005 0.383491 0.315257 -PE-benchmarks/dfs.cpp__Graph::DFS(int) = -0.548315 0.459184 3.338126 1.956771 -1.969576 -3.327328 -1.395814 -4.152322 1.979955 0.309814 2.568559 0.343105 1.096661 -0.828362 0.231389 0.014886 0.706024 -0.865221 0.053654 -1.244894 -0.988880 3.027995 1.116420 -1.898077 0.362949 -3.428532 2.144321 1.540424 1.385011 2.162849 0.345225 -0.300549 -0.848131 1.751142 -0.841440 0.499645 0.328682 0.675341 -1.261468 0.065141 1.014501 0.792417 2.195219 0.005100 2.461236 0.865460 1.637197 0.754631 -1.540367 -0.790076 -1.346466 2.487133 -1.935297 1.214789 -0.269764 0.607741 0.478894 -1.869499 -0.674420 -1.975493 -0.203365 -0.048588 -1.707163 0.117016 -1.981062 0.651833 -0.490018 -1.279408 0.679233 -0.180111 2.075115 0.463972 -0.086457 -0.384602 -2.589064 0.301385 0.045494 1.338950 1.617625 -0.499512 -0.530227 0.001366 -1.436313 -1.669246 1.360361 0.743475 0.628325 0.157671 -0.351498 -0.564341 -0.305409 -0.481157 0.392555 1.478612 -1.532082 0.470450 -0.418945 -0.554340 -1.577343 -1.542386 0.549406 -1.402989 1.120240 0.968726 -0.558806 -0.270659 -0.251132 0.264796 -1.349438 -2.205557 0.300906 -0.860327 0.633617 2.739416 -1.082115 -0.432782 -0.435135 -0.660047 -0.227840 2.192598 0.671221 0.681058 2.312262 2.800045 0.582642 -1.893734 -1.213507 0.607403 1.795732 1.857389 1.391533 -2.296540 -1.432571 0.196996 -0.499995 -3.628636 -0.026027 0.949920 1.958537 0.289140 -2.027276 1.023451 -1.197327 2.197220 1.559302 0.964755 0.577036 -0.066369 -2.127271 2.244013 4.129064 -0.687217 1.754567 -1.265830 -1.281101 2.593074 -1.779326 1.131057 0.790503 -0.412386 -0.169157 -1.137221 -0.164572 2.061908 0.737553 1.096867 1.045699 0.906087 -0.766737 -3.330694 -3.224466 0.088555 2.608227 0.340598 3.684276 -2.293785 -1.129734 -0.451859 2.648312 -0.388521 -1.054704 0.538878 -1.496127 1.508702 -3.407794 -2.911320 4.053639 3.573552 1.065375 0.262318 2.195193 1.841325 -1.423373 -1.096715 -1.151551 1.144640 0.703628 -1.473509 -0.222508 0.017254 -2.400523 -1.300220 0.190859 1.008627 0.891164 -0.665851 -0.241937 0.020243 -1.997625 -1.749036 1.066994 -1.907758 -0.631935 0.383538 -0.092780 -0.064048 0.897989 -0.701998 -0.180545 0.692286 -1.372951 0.475853 1.056892 1.592458 0.715198 2.917651 2.555954 -0.382810 2.347545 0.812166 -1.039194 4.158739 -0.903677 0.788686 0.643626 1.572999 0.344600 0.851235 1.269900 -1.174543 -0.902335 -2.534201 0.649277 0.617573 1.691568 -1.953184 -1.960063 -3.212488 -0.903489 1.137109 2.229848 -0.473555 4.161233 -0.637181 0.561455 -4.539820 -0.029510 1.630990 -0.119729 1.524861 1.025109 -1.508028 -2.997227 -0.864744 -1.538300 -0.561355 -0.903298 -1.554802 -1.512846 -1.231199 1.604059 -1.476855 0.591330 2.341830 -0.347245 1.185177 -0.862861 -0.022054 -1.071833 -0.577380 1.190414 0.380369 -2.176002 2.567200 -0.170506 5.392970 -0.656987 1.862359 -1.333697 1.121847 -0.485003 -1.506585 -0.552079 3.051963 1.894539 0.401824 0.221855 0.232279 -0.588176 1.659490 -PE-benchmarks/tug-of-war.cpp__main = 0.049975 0.297364 1.045537 -0.099284 -0.604113 -1.323405 -0.473096 -1.984599 0.604399 0.376029 1.031430 -0.137123 0.659387 -0.078766 0.048555 0.475315 0.461684 -0.484719 0.373698 -0.574536 -0.569415 1.128463 -0.070334 0.472644 0.197004 -1.249676 0.722818 0.250859 0.541343 0.775150 0.360022 -0.122285 -0.416673 0.404478 0.092684 0.547311 0.355307 0.372435 -0.530546 0.493233 -0.110357 -0.262756 0.735169 0.053084 0.907013 0.510717 0.238865 0.462384 -0.274671 -0.472925 -0.277924 0.521218 -0.612659 0.250340 -0.220899 -0.353324 -0.012803 -0.269568 -0.189508 0.081288 -0.318879 -0.544348 -0.577116 0.329595 -0.703028 0.320971 -0.684129 -0.459157 -0.155513 -0.112943 0.627535 0.219872 -0.051725 0.490276 -1.339870 0.037797 0.187401 0.280783 0.521021 -0.360024 -0.100227 -0.019664 -0.819065 -0.838396 0.784585 0.951351 0.334703 -0.017636 -0.656228 -0.004799 -0.297411 -0.078778 0.583537 0.589722 -0.485360 -0.080693 -0.323345 -0.329426 -0.732712 -1.430686 0.340143 -0.369954 0.512950 -0.145457 -0.036712 -0.300438 -0.254308 0.150129 -0.469694 -0.756021 0.204502 -0.455777 0.295881 1.254440 -0.307225 -0.188942 -0.722827 -0.421080 0.055184 0.582892 0.507386 0.072405 0.867277 0.842317 0.346155 -0.681751 -0.804041 0.323942 0.489763 0.358045 0.428137 -0.813427 -0.550562 0.278668 -0.634941 -1.235126 -0.479502 0.174435 0.613076 -0.530084 0.023797 0.275970 -0.554896 0.445519 0.777680 0.147996 0.190731 -0.027683 -0.717521 0.648759 1.181195 -0.232965 0.656974 -0.608847 -0.180270 0.672330 -0.447823 0.241492 0.363296 -0.172375 -0.643888 -0.226009 0.051533 0.586558 0.252510 0.470225 0.050710 0.475938 -0.561479 -0.689497 -1.121403 0.069844 1.277977 0.039717 0.823940 -0.893904 -0.264959 0.076711 0.981487 0.322520 -0.546696 0.410632 -0.549573 0.464823 -0.987321 -0.883891 1.291098 1.258347 0.783021 -0.071343 0.331546 0.749732 -1.148054 -0.514296 -0.397835 0.532694 -0.221502 -1.529814 -0.593200 0.161775 -0.852716 -0.298284 -0.240925 0.564689 0.435893 0.313064 0.574419 -0.151619 -0.359345 -0.569292 0.642876 -0.285963 -0.337761 0.137093 -0.030489 -0.016374 0.295973 -0.350285 0.294554 0.420305 -0.551754 0.370603 0.603305 0.288844 -0.007718 1.331900 0.855910 -0.306606 0.464973 -0.205636 -0.304925 0.706703 -0.144571 0.475250 0.098572 0.319935 -0.011713 0.171480 0.726211 -0.381015 -0.807944 -0.753921 -0.249316 0.321820 0.545849 0.360414 -0.920489 -1.359449 0.030743 0.095902 1.312012 0.081207 1.207566 -0.175657 0.539351 -1.091039 0.204236 0.142625 -0.141756 0.514428 0.159691 -0.430685 -0.168557 -0.239499 -1.022259 -1.069945 -0.186900 -0.432764 -0.535949 -0.434950 0.438071 -0.343673 -0.234819 0.332621 0.020429 0.588150 -0.062396 -0.070491 -0.736153 0.259888 1.036003 -0.218505 -0.609065 0.645236 0.217591 1.910195 0.027555 0.463489 -0.022702 0.206589 -0.032901 -0.710984 -0.249612 1.009797 0.734153 0.159079 -0.118866 -0.128010 0.324932 0.394615 -PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = -2.129342 0.814654 12.232832 8.254428 -6.091472 -9.338820 -5.074658 -13.520337 7.772660 0.748718 8.128393 1.606385 2.469213 -2.945413 0.443148 -1.065242 1.187783 -3.364028 0.184336 -3.492885 -1.262487 10.839129 5.413050 -9.102024 0.558247 -13.324700 6.830630 4.917363 5.947512 7.525877 0.493351 -1.547717 -2.197585 6.562655 -3.640337 0.620780 1.267033 1.587809 -4.980936 -0.547551 3.669617 5.497742 7.010065 -0.382857 8.982093 1.554175 5.815053 1.879853 -5.096278 -1.400987 -4.781719 10.029493 -6.784851 4.335124 0.428123 3.606435 0.414020 -7.826772 -3.280838 -8.064450 -0.452279 2.091363 -5.204925 0.278925 -6.795704 2.370122 -1.041386 -3.296399 3.335273 0.008304 7.635433 2.385528 1.094173 -2.791193 -8.245380 2.194325 -0.915571 5.111944 5.289422 -1.966202 -1.730181 0.986363 -3.244614 -4.997876 3.254760 2.436264 0.591847 -0.292780 1.482463 -2.407741 -1.063187 -2.416961 -0.543106 5.184245 -5.626675 2.781251 -2.140542 -1.268241 -3.667794 -2.877572 0.776530 -5.625597 3.832744 4.173781 -1.612075 0.025446 0.917858 1.403553 -3.913665 -7.256752 1.233117 -1.086091 2.380873 9.544817 -3.820927 -1.145089 -0.352610 -1.294703 -2.059987 7.912920 1.134419 3.487486 7.241470 10.270045 1.712022 -6.117644 -2.935832 2.807172 6.169745 7.116933 5.171997 -8.129534 -4.488220 -0.374670 1.234361 -12.084075 1.005481 3.060760 6.212540 2.021975 -7.757840 1.839095 -3.353880 9.375132 4.821098 2.982137 2.172846 -0.274162 -7.055289 8.602641 15.507842 -2.003425 5.346237 -4.738489 -4.617690 8.748779 -7.377869 5.265504 1.437451 -0.060268 1.518879 -5.215761 -0.818093 7.129478 2.237051 3.637348 3.842949 2.558276 -1.053762 -12.548759 -10.474791 -0.065028 7.028086 0.323370 13.146339 -6.734012 -4.967606 -2.543282 8.673357 -0.580798 -2.328758 1.772077 -5.527900 5.061779 -12.039162 -10.288653 13.657626 13.448303 2.851352 0.736392 8.540410 6.527707 -3.751377 -3.810775 -3.478124 3.769349 2.975641 -2.931043 0.042390 -0.397558 -7.441126 -5.430173 1.670031 2.705716 3.613965 -3.041102 -2.878397 1.851758 -8.106174 -6.003028 4.206361 -7.687206 -2.571770 1.110479 0.126071 -0.278001 3.458935 -2.872874 -0.954801 3.318630 -4.012501 1.309164 3.773913 5.869778 2.030989 7.414154 8.587137 0.397134 9.301875 4.449852 -3.622274 16.049689 -3.239319 1.813364 2.548679 3.513793 0.437513 3.055428 2.165279 -4.109076 -2.335812 -8.308348 4.263243 0.672629 6.380936 -8.633261 -7.558124 -8.557196 -3.985925 5.238705 4.782993 -0.802688 14.895063 -2.400422 1.147632 -16.716300 -0.826660 7.255998 0.585243 6.152661 4.157271 -5.311333 -12.439384 -3.019756 -3.777364 0.765743 -4.081776 -7.109807 -5.130511 -4.793687 7.475954 -4.762078 3.358280 9.641404 -1.293971 4.225946 -3.882253 -0.348743 -3.391783 -3.177494 1.577871 2.223859 -7.991955 8.978665 -2.112298 18.158030 -4.103788 6.061582 -5.963963 4.031760 -2.385597 -4.068932 -1.054460 10.743889 5.753565 1.610678 0.117655 -0.122785 -4.167567 5.108749 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.120680 0.262093 0.797966 -0.245528 -0.454973 -1.046110 -0.337541 -1.672780 0.436804 0.281408 0.823412 -0.160489 0.525740 -0.023274 0.092223 0.494395 0.430374 -0.349124 0.333115 -0.470442 -0.345047 0.758879 -0.207895 0.564905 0.194207 -0.919650 0.382382 0.179859 0.442940 0.490037 0.349354 -0.148055 -0.429874 0.210421 0.155223 0.463689 0.440715 0.212467 -0.583734 0.436285 -0.301403 -0.248990 0.509810 -0.021430 0.731154 0.313329 0.161272 0.446824 -0.151631 -0.359564 -0.195316 0.521556 -0.364278 0.182380 -0.052421 -0.403158 -0.137286 -0.141130 -0.156477 0.260875 -0.293632 -0.489039 -0.384683 0.286537 -0.478159 0.264438 -0.564513 -0.310643 -0.117840 -0.089024 0.461155 0.109600 -0.017738 0.546325 -1.083874 -0.021132 0.137274 0.247357 0.357625 -0.315530 0.096521 -0.034065 -0.600998 -0.612015 0.611323 0.878154 0.255258 -0.071426 -0.677356 0.101270 -0.244169 -0.128117 0.517504 0.352431 -0.458881 -0.122004 -0.356226 -0.278351 -0.585493 -1.251669 0.298592 -0.206175 0.405670 -0.293604 0.080110 -0.222890 -0.204709 0.178903 -0.349733 -0.540082 0.218122 -0.245663 0.211286 1.076435 -0.258689 -0.151478 -0.639661 -0.332851 -0.061605 0.374992 0.428045 0.090088 0.543862 0.663356 0.312116 -0.491130 -0.720040 0.282836 0.387762 0.284341 0.323641 -0.609678 -0.399430 0.273253 -0.595898 -0.935687 -0.442552 0.094635 0.539359 -0.401820 0.178894 -0.004528 -0.448633 0.351411 0.512288 0.066310 0.113016 -0.025050 -0.547552 0.463517 0.788149 -0.189642 0.545737 -0.416396 0.082953 0.215085 -0.257157 0.125350 0.303187 -0.120779 -0.516624 -0.106589 -0.076750 0.371191 0.314188 0.361955 -0.123072 0.434036 -0.600417 -0.502032 -0.849885 0.038388 0.966669 -0.131656 0.387113 -0.636683 -0.332485 0.023918 0.817504 0.220880 -0.485781 0.391225 -0.519331 0.346414 -0.473420 -0.570837 0.945071 1.081461 0.654002 -0.130848 0.214102 0.602693 -1.212049 -0.400004 -0.253856 0.376884 -0.285211 -1.495189 -0.593662 0.127016 -0.644519 -0.202380 -0.203324 0.488712 0.270200 0.529967 0.676766 0.040686 -0.210829 -0.353724 0.566586 -0.088392 -0.238156 0.128827 -0.017981 0.058864 0.253900 -0.423991 0.267203 0.483576 -0.500173 0.329558 0.494377 0.205660 -0.030311 1.098575 0.523213 -0.101338 0.509793 -0.255027 -0.365293 0.349735 -0.027817 0.438667 -0.005926 0.060627 -0.108529 0.085546 0.532703 -0.297073 -0.787644 -0.545561 -0.400594 0.174599 0.504928 0.616724 -0.854479 -0.998951 0.088347 0.048123 0.967690 0.088158 0.811334 -0.173130 0.467951 -0.760005 0.179111 0.044388 -0.150287 0.337743 0.049089 -0.287506 -0.081875 -0.096032 -0.899759 -1.107999 -0.115416 -0.341049 -0.387858 -0.452129 0.504630 -0.189010 -0.306184 0.148291 0.093496 0.546691 -0.004126 -0.087855 -0.552925 0.295528 0.892980 -0.229324 -0.516507 0.440669 0.259294 1.589133 0.099780 0.250331 0.053774 0.012969 0.020456 -0.530035 -0.186985 0.729806 0.662450 0.174425 -0.222919 -0.156160 0.240075 0.221213 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = -1.046122 1.700708 9.956339 5.429706 -6.297374 -8.732042 -4.218260 -12.297655 5.221135 1.200315 6.668041 0.338730 1.181930 -1.350163 0.860971 1.705884 1.083268 -2.472214 0.791300 -3.482279 -2.974417 7.109144 3.808011 -5.021774 1.092433 -9.865941 5.815599 3.608194 4.457297 5.130256 1.677317 -1.878442 -2.185444 5.774232 -1.239838 3.017621 1.339179 1.683565 -4.055680 2.080320 1.719756 3.310695 5.414859 0.029141 8.333288 3.269200 5.295037 2.438678 -5.706882 -0.595158 -4.480957 9.109783 -6.277170 3.833661 -0.244100 2.277366 -0.469423 -6.376578 -2.780354 -5.069156 -2.186013 0.128125 -4.931225 0.795721 -6.097507 1.754220 -1.863871 -3.085607 2.026619 2.511155 6.872342 1.952715 0.016527 0.494909 -6.618680 1.420145 0.022585 4.703819 5.014971 -4.168063 -0.435738 1.028655 -2.894551 -4.941538 3.645018 1.871447 1.683170 -1.203528 0.864045 -1.504175 -1.778756 -2.296008 0.215053 4.970842 -4.670310 2.024742 -2.418060 -1.502300 -4.894605 -4.734816 0.660998 -4.266350 3.850433 2.155467 -0.610166 -0.615208 -0.600100 1.754698 -3.482903 -5.383761 0.787290 -1.213698 2.600772 7.520032 -2.380335 -1.065786 -0.208953 -1.849470 -1.455865 5.898711 2.726389 2.037336 6.934733 8.995792 2.996332 -4.507956 -3.735611 0.438537 4.459922 6.669497 4.643906 -6.444468 -4.470068 -0.093254 0.442673 -9.495641 1.081152 2.272591 4.870914 1.094555 -4.720891 -0.038344 -3.166402 7.391693 3.426648 3.111961 1.816150 -0.662579 -5.590444 7.077782 12.647177 -1.717913 4.549921 -3.402094 -2.066464 5.901639 -5.995878 3.628046 2.715808 -1.049227 0.242961 -3.922533 -2.299630 5.658219 3.181540 2.057254 3.490779 3.124027 -2.467524 -9.306443 -7.613090 0.611917 6.633936 -1.274145 9.646994 -5.934541 -4.049385 -1.955074 7.114107 0.384300 -2.175763 1.182355 -4.310363 4.141915 -8.074100 -7.745797 11.460168 11.277714 3.298297 -0.572418 6.262251 6.482750 -5.948576 -4.229530 -2.961352 2.702332 1.003252 -4.411144 -2.078463 0.503512 -6.615276 -3.634964 0.532386 2.906062 2.933172 -0.750019 -2.056937 2.578656 -6.345848 -4.086996 2.608591 -5.617432 -2.660927 1.464612 0.190490 0.681637 2.587737 -3.200488 -0.360587 2.717785 -4.418522 1.639488 3.805825 5.865120 1.743654 7.765341 7.124782 0.719853 8.262775 3.325496 -3.390884 10.943295 -1.288436 2.515972 2.311854 2.125141 -0.105946 1.729719 2.953403 -3.640363 -3.500520 -6.690538 2.398494 0.906030 5.323838 -4.129063 -5.766462 -8.140085 -2.594576 4.619431 4.428301 -0.795505 11.234750 -0.650234 1.728557 -12.646758 -0.547251 4.975473 -0.181901 4.859822 3.233571 -4.619043 -8.359291 -2.618010 -3.930225 -1.580877 -2.651602 -3.616504 -4.119681 -3.482562 5.054955 -2.590172 1.802021 7.141518 -0.676595 3.307374 -2.585482 -0.214747 -2.428283 -2.048217 4.783336 1.247086 -7.336903 7.175888 -0.621617 17.302203 -2.437375 4.392009 -4.096085 0.714107 -0.087135 -2.064884 -1.127103 8.840250 5.043019 2.279016 0.285962 0.452053 -2.659754 4.649573 -PE-benchmarks/n-queen-problem.cpp__main = 0.203706 0.282755 0.404920 0.004440 -0.117241 -0.457206 -0.118318 -0.667745 0.124807 0.074459 0.297716 -0.199849 0.226566 0.102226 -0.032608 0.152223 0.120781 0.056601 0.149317 -0.133011 -0.320368 0.327041 -0.151244 0.144994 0.096101 -0.336002 0.281421 0.128700 0.216696 0.233704 0.061239 -0.023188 -0.050398 0.125750 -0.110469 0.001510 0.067305 0.183633 -0.224972 0.190501 -0.108184 -0.069727 0.186002 0.047433 0.098252 0.349680 0.015270 0.147597 -0.003340 -0.060412 -0.086930 0.157845 -0.085320 0.128915 -0.186609 -0.185158 0.042941 -0.022456 0.012112 0.114221 -0.046117 -0.109689 -0.185407 0.075496 -0.319121 0.047605 -0.219284 -0.286708 -0.017417 0.064426 0.182986 0.057274 -0.050686 0.043582 -0.497385 0.050441 0.124976 0.104445 0.153236 -0.148718 0.118013 0.056142 -0.339113 -0.311129 0.331960 0.329023 0.214217 0.018599 -0.182947 -0.161023 -0.037651 0.004807 0.231457 0.250663 0.023343 0.110561 -0.315019 -0.058511 -0.253523 -0.629267 0.070644 -0.151689 0.191685 -0.091107 0.039378 0.011322 0.135410 0.179522 0.042781 -0.325031 0.040012 -0.157490 0.067944 0.453913 0.028099 -0.165328 -0.146089 -0.173945 -0.070520 0.187658 0.180031 -0.021160 0.271529 0.195043 0.114886 -0.200232 -0.257721 0.079059 -0.002555 0.158377 0.174917 -0.332486 -0.190582 0.054797 -0.243980 -0.490403 -0.094815 0.010758 0.164827 -0.381086 -0.010335 0.229547 -0.234318 0.014050 0.214159 0.088069 0.113959 -0.044890 -0.134693 0.144402 0.368898 -0.141009 0.179047 -0.234932 -0.142305 0.107957 0.054266 0.061700 0.027797 -0.076396 -0.090721 -0.100342 0.085921 0.268940 0.059558 0.092920 0.168424 0.083275 -0.350179 -0.205201 -0.278850 0.067373 0.392291 -0.105644 0.330316 -0.257716 -0.140975 0.053170 0.357353 -0.001118 -0.054273 0.108107 -0.165925 0.144629 -0.297554 -0.338527 0.290886 0.242313 0.210782 -0.146104 0.050885 0.175996 -0.301252 -0.279633 -0.175724 0.134218 -0.057721 -0.530625 -0.339942 0.010274 -0.282909 0.088169 -0.024051 0.168873 0.170725 0.152713 0.133642 -0.221188 -0.226815 -0.266079 0.227103 -0.147211 0.039671 0.082979 -0.023134 -0.094199 0.117068 -0.166221 -0.001408 0.157852 -0.164811 0.122384 0.138092 0.056727 -0.095339 0.545493 0.241845 -0.068747 0.132051 -0.007441 -0.155217 0.377454 -0.061329 0.124158 0.006127 0.196926 -0.137925 0.122641 0.286883 -0.110405 -0.382847 -0.353268 -0.166900 0.120889 0.044276 0.223952 -0.152789 -0.416824 -0.047552 -0.063550 0.557725 0.088060 0.388830 -0.031488 0.224001 -0.259224 0.093199 -0.023659 -0.136029 0.216442 0.083003 -0.184391 -0.069373 -0.054411 -0.338893 -0.479691 -0.104777 -0.254285 -0.199675 -0.074784 -0.087517 -0.039418 -0.043201 0.161677 0.039923 0.098307 -0.154949 -0.036985 -0.206646 0.082622 0.498878 -0.142095 -0.246794 0.086795 0.099719 0.712572 0.075349 0.210960 -0.085638 -0.113591 0.051633 -0.197310 -0.139600 0.347624 0.183158 0.112016 0.004615 0.026501 0.113136 0.143650 -PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = -0.305812 1.113434 4.002169 2.470720 -2.402826 -3.063020 -1.567060 -4.035471 1.633295 -0.241435 2.420095 -0.034860 0.425688 -0.434117 0.149549 -0.685325 0.529055 -0.484092 -0.148257 -1.215897 -1.279987 2.058778 0.999403 -2.788227 0.553736 -3.624855 2.280371 1.927343 1.296305 1.695413 0.120469 -0.455678 -1.189942 2.065112 -1.070835 -0.398647 0.777309 0.362148 -1.512919 0.112820 1.240431 1.668101 2.218142 -0.217130 1.976425 1.266071 1.333293 0.981839 -2.040628 -0.270995 -1.119610 2.924440 -1.592070 1.473513 0.578302 1.078302 0.462184 -2.671958 -0.622670 -1.797684 -0.100177 0.250826 -1.245022 0.025911 -2.060503 0.375976 -0.059589 -1.500242 1.704551 0.017415 2.041826 0.213405 -0.077570 -0.575824 -1.650855 0.643053 0.251418 1.915775 1.559319 -0.771299 0.279638 0.552478 -1.264530 -1.490123 0.529293 0.368205 0.926666 -0.315739 0.273793 -0.940309 0.462097 -0.880198 0.020061 1.526766 -1.374569 0.627607 -1.613153 -0.646208 -2.074754 -1.570029 0.223329 -1.419156 1.413233 1.289758 -1.482923 -0.017255 0.367516 0.495087 -0.659268 -2.199896 0.079657 -0.658605 1.247654 3.044734 -0.939518 -0.826561 -0.085580 -0.946710 -0.702188 2.186258 0.329778 0.591854 2.269931 3.193184 0.504364 -1.765020 -1.245781 0.024575 1.377114 2.317156 1.969221 -2.739047 -1.369862 -0.148059 -0.150427 -3.856722 0.727243 0.061207 2.065460 0.714701 -2.494718 0.703554 -1.519331 2.417666 0.728533 1.407592 0.561707 -0.383001 -1.926022 2.453332 3.950252 -0.822971 1.758355 -1.257673 -1.511343 1.832096 -1.281716 1.268479 0.749080 -0.422744 0.596585 -1.359017 -0.488805 2.236452 0.793886 0.803313 1.692065 0.572643 -0.844622 -3.784477 -3.010317 0.704090 2.047532 -0.389122 3.718192 -2.323814 -1.638573 -0.874978 3.380320 -0.964585 -0.790017 0.388686 -1.367760 1.501811 -2.207281 -2.997528 3.544972 3.808278 0.093837 -0.035801 2.507826 1.349629 -1.650576 -1.313376 -1.427375 0.880380 0.793197 -0.856918 -0.266463 -0.030401 -2.044845 -0.756498 0.693452 1.076850 1.520362 -1.054391 -1.127755 0.581387 -2.664758 -2.192337 1.151769 -2.102811 -0.208394 0.871165 -0.188662 0.034145 1.257450 -0.888991 -1.203518 0.595351 -1.370274 0.429561 0.986410 2.137259 0.509955 3.030315 1.707151 0.311968 2.950496 1.568129 -1.308152 5.005942 -1.041624 0.849039 0.805226 1.620542 -0.277161 1.148469 1.131423 -1.230748 -1.066619 -2.813608 0.731140 -0.247356 1.560444 -2.713881 -1.791491 -3.081394 -1.386475 1.434144 1.438253 -0.419452 4.314508 -0.134285 0.086622 -4.551096 -0.469404 1.962631 -0.210651 1.755067 1.193648 -1.818123 -4.051507 -0.736631 -1.539345 -0.174477 -0.979807 -1.613790 -1.660611 -1.010578 1.936388 -0.640477 0.974295 3.025215 -0.203120 0.654670 -0.943596 -0.121962 -0.434651 -1.481925 1.284126 0.320437 -2.516216 2.948243 -0.160520 5.757619 -0.498923 1.813494 -1.731222 0.062220 0.241198 -1.070770 -0.664303 3.100456 1.615206 0.899603 -0.051607 0.420441 -1.441034 1.901950 -PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.255758 0.673799 2.018429 0.488507 -1.354885 -1.796701 -0.858268 -3.057440 0.894059 0.225497 1.466141 -0.303930 0.511612 -0.215995 0.124870 0.638894 0.704427 -0.360993 0.453968 -0.797865 -0.790243 1.319704 -0.054483 -0.185829 0.384588 -1.757721 0.741334 0.844988 1.048120 0.575021 0.498602 -0.363377 -0.775967 0.816559 -0.200133 0.281390 0.764007 0.376534 -1.532842 0.640147 -0.283423 0.213745 1.148517 -0.379367 1.350906 0.409809 0.696734 0.824354 -1.011110 -0.178216 -0.547402 1.875054 -0.647398 0.630182 0.385242 -0.312347 -0.250436 -0.917870 -0.503458 0.093726 -0.500521 -0.394147 -0.651151 0.357796 -0.963737 0.314669 -0.509820 -0.814982 0.573217 0.398500 0.987031 0.265740 0.059304 0.525728 -1.601880 0.333384 0.471160 0.957479 0.770444 -0.483200 0.792261 0.237769 -0.780054 -1.038992 0.816171 1.193402 0.607973 -0.378987 -0.702107 -0.123137 -0.066051 -0.476805 0.547787 0.710438 -1.006280 0.099223 -1.196127 -0.553222 -1.355233 -1.899625 0.206911 -0.612537 0.956366 -0.141728 -0.272985 -0.001686 -0.056546 0.547939 -0.492264 -1.105212 0.114725 -0.451552 0.578709 2.304548 -0.420401 -0.466708 -0.689996 -0.516188 -0.650207 0.760575 0.532469 0.344009 1.184497 1.669160 0.540342 -0.955112 -1.178956 0.199471 0.709644 1.114237 0.989263 -1.321979 -0.800052 0.100362 -0.505890 -2.069237 -0.358222 -0.101921 0.920463 -0.314259 -0.120250 -0.366816 -0.859507 1.352617 0.451123 0.383160 0.276258 -0.123860 -0.964114 1.239703 1.765497 -0.415936 1.017304 -0.632197 -0.246453 0.294919 -0.499906 0.625111 0.500936 -0.356827 -0.301719 -0.603055 -0.389484 0.935056 0.561246 0.335888 0.108742 0.579225 -0.986002 -1.496152 -1.764077 0.524073 1.334388 -0.470100 1.461393 -1.179832 -1.344498 -0.254552 1.739046 0.056650 -0.637613 0.650933 -1.102141 0.853488 -0.711296 -1.517057 1.951787 2.215580 0.691166 -0.316248 1.164905 0.827466 -2.357877 -1.117663 -0.589751 0.574928 0.004496 -2.187210 -0.937524 0.378495 -1.182374 -0.251761 0.025506 0.789591 0.675422 0.629524 0.577250 0.391204 -1.089646 -0.627688 1.093607 -0.593024 -0.251120 0.434581 -0.029944 0.199058 0.913652 -1.021386 -0.219932 0.524738 -1.041060 0.464424 0.660411 1.037834 -0.019499 1.962851 1.245573 0.299318 1.970992 0.228005 -0.937874 1.568112 -0.289133 0.697610 0.195638 0.041821 -0.531879 0.246053 0.937422 -0.686396 -1.279083 -1.343205 -0.325628 -0.024327 0.977385 -0.046436 -1.430312 -1.681001 -0.321570 0.599087 1.044181 0.097462 1.935871 -0.303615 0.411905 -2.182999 0.008434 0.453216 -0.137521 1.153067 0.366942 -0.953255 -1.426709 -0.317224 -1.495640 -1.336553 -0.366711 -0.905768 -0.923085 -0.853819 1.442216 -0.230194 -0.056353 1.287626 -0.059678 0.898470 -0.311888 -0.176618 -0.536967 -0.124236 1.451419 -0.227226 -1.322045 1.316846 0.174606 3.887923 0.074655 0.556622 -0.509608 -0.383893 0.405770 -0.730608 -0.353651 1.612146 1.168628 0.638012 -0.452968 -0.031021 -0.468739 0.799411 -PE-benchmarks/birthday-paradox.cpp__main = 0.285363 0.185905 0.366818 -0.040722 0.021286 -0.306382 -0.058366 -0.693250 0.268266 0.019525 0.171763 -0.125892 0.171603 -0.059236 -0.033659 0.256520 0.058552 0.073804 0.149620 -0.037438 0.040317 0.408582 -0.225647 0.135832 0.067898 -0.461369 -0.005237 0.107488 0.442574 0.129061 0.028373 -0.126541 -0.026360 0.044488 -0.097779 -0.022522 0.192427 0.017668 -0.481840 0.084726 -0.325284 0.077858 0.076997 -0.081383 0.167534 -0.020512 0.080478 0.133522 0.170817 0.041204 -0.158398 0.444828 0.064136 0.149728 -0.004021 -0.223425 -0.158765 0.023093 -0.046659 0.230649 -0.082617 0.056969 -0.047533 0.033374 -0.209519 0.044575 -0.114881 -0.110803 0.023882 0.087793 0.175764 0.111486 0.125921 0.009591 -0.580612 0.086933 0.027543 0.166771 0.088661 -0.062386 0.292983 0.041528 -0.128709 -0.184028 0.292192 0.483927 0.043433 -0.030327 -0.211233 -0.117530 -0.116828 -0.110341 0.151026 0.084223 -0.155921 0.091984 -0.414315 0.035298 -0.029144 -0.489224 -0.001239 -0.109513 0.102771 -0.242507 0.325137 0.120690 0.328062 0.222183 0.099372 -0.185711 0.143661 0.103337 -0.034719 0.550458 0.039393 -0.103489 -0.096131 -0.024607 -0.362625 0.129489 0.066631 0.114196 0.069067 0.200206 0.186749 -0.110969 -0.206327 0.279128 0.067226 0.192900 0.110065 -0.298065 -0.065526 0.031249 -0.056136 -0.442130 -0.107250 0.056358 0.189137 -0.254837 0.112123 -0.106369 -0.098293 0.201687 0.064752 -0.159757 0.103104 0.009048 -0.106272 0.199789 0.410954 -0.078490 0.099333 -0.255479 0.091119 -0.151405 -0.005497 0.105818 -0.123087 0.046957 0.071812 -0.115047 0.029456 0.168096 0.071071 0.060205 -0.052818 0.107836 -0.387518 -0.291124 -0.261991 -0.047584 0.161542 -0.291729 0.197141 -0.063172 -0.361007 -0.077918 0.305191 -0.038185 0.033534 0.213460 -0.390535 0.150344 -0.053338 -0.254218 0.331640 0.466371 0.187282 -0.153496 0.147415 0.252489 -0.483123 -0.241105 -0.021439 0.018955 0.013010 -0.763325 -0.373181 -0.024065 -0.219606 -0.050622 0.049746 0.067173 0.038796 0.483246 0.298217 -0.008256 -0.222472 -0.153917 0.353750 -0.110873 0.079694 0.055818 0.052932 -0.074881 0.255237 -0.357218 0.047389 0.393622 -0.145600 0.138528 0.093442 0.015155 -0.113302 0.283708 0.202234 0.189430 0.492185 0.039858 -0.264202 0.285347 0.002190 0.066244 -0.046353 -0.176686 -0.220127 0.139142 0.010624 -0.131907 -0.336561 -0.308350 -0.175029 -0.036380 0.117038 0.403805 -0.346310 -0.113036 -0.101751 0.001457 0.185520 0.169897 0.300639 -0.203187 0.158089 -0.388982 0.060614 0.044348 -0.037785 0.223361 0.043589 -0.104944 -0.206624 0.021005 -0.227440 -0.590137 -0.194308 -0.465095 -0.110184 -0.341363 0.307826 -0.088235 -0.018899 0.207940 0.143371 0.260407 -0.322144 -0.028062 -0.259992 0.150979 0.256494 -0.102033 -0.250445 -0.046320 0.027069 0.694614 -0.074617 0.072565 -0.151359 -0.088488 -0.036062 -0.220025 -0.038093 0.276621 0.175268 0.113306 -0.143352 -0.100063 -0.099533 0.083773 -PE-benchmarks/birthday-paradox.cpp__find(double) = 0.119758 0.175080 0.758602 0.366821 -0.705625 -0.571455 -0.443892 -0.994101 0.370809 0.380524 0.607958 -0.449190 0.413902 -0.800855 -0.072243 -0.176826 -0.494041 -0.228375 0.352779 -0.485853 -0.268110 1.052654 -0.393351 -0.224123 -0.101626 -1.179639 0.301547 0.126101 0.666875 0.385457 -0.397080 -0.861923 -0.381738 0.083479 -0.185037 -0.298691 0.012927 -0.040378 -0.378041 0.638671 -0.314637 -0.156692 0.527790 0.295182 -0.123664 -0.290569 0.320109 0.499459 -0.640211 0.545439 -0.533717 0.756706 0.106585 0.256489 0.594454 -0.598408 -0.327395 -0.075303 -0.858115 0.412576 -0.386600 -0.304966 0.187955 -0.179044 -0.680831 -0.117452 -0.643392 -0.181633 -0.264301 0.204934 0.081076 0.651245 0.105455 -0.315175 -1.329981 0.214495 -0.224922 0.194435 0.049625 -0.051155 0.138513 0.036775 -0.930975 -0.892295 0.672397 0.627778 0.183577 -0.281668 -0.088593 -0.610766 -0.081443 -0.244591 -0.005545 -0.117632 -0.125031 0.300332 -0.855317 0.000944 -0.382716 -0.484925 -0.289431 0.122599 0.048075 0.074791 0.195670 -0.917892 0.155413 0.395264 -0.725625 -0.054645 -0.144559 0.243185 -0.177889 1.012757 -0.091720 -0.159787 -0.303914 -0.021478 -0.570303 0.384350 0.204134 0.212250 0.396138 1.037286 0.948234 -0.566637 -0.042652 0.459946 0.273481 0.455030 0.184372 -1.291270 -0.343017 0.714026 0.268933 -0.821696 -0.065299 0.337669 0.340858 -0.357524 0.013819 0.160920 -0.673220 0.890795 -0.316981 -0.424627 0.303754 -0.339018 -0.660534 1.261292 1.306525 -0.278149 0.297286 -1.121934 0.214541 0.141668 0.012645 0.242058 0.057868 -0.452895 -0.214760 -0.142199 0.291461 0.620958 0.507418 -0.280863 -0.115972 0.823973 -0.758691 -0.625528 -1.038186 -0.029752 0.554868 -0.669210 1.156468 -0.173003 -1.040900 -0.605663 0.506384 0.160347 -0.166590 0.445247 -0.784838 0.338993 -0.360138 -0.328039 1.298604 0.971951 0.262739 -0.272744 0.784547 0.484472 -0.635099 -0.959785 0.339814 0.300787 -0.019081 -1.227698 -0.394512 0.111295 -1.044853 -0.163479 0.111796 0.142430 0.235196 0.068893 0.352803 -0.440910 -0.259648 -0.488259 0.879292 -0.943645 0.304773 0.467390 -0.482848 -0.376182 1.190308 -0.630680 0.502794 0.231260 -0.413311 0.619687 -0.162982 0.113637 -0.086790 0.783555 1.007815 0.400166 1.121287 0.427310 -0.583468 0.658781 0.188681 -0.085754 0.321193 -0.346586 -0.325833 0.531074 0.002147 -0.227256 -0.045354 -0.242518 0.325218 0.236435 0.414929 0.349858 -0.480278 -0.925878 0.136596 0.194512 0.335516 0.225688 0.398854 -0.193654 0.376849 -0.801952 0.170758 -0.628573 0.436430 -0.011359 -0.175849 -0.323209 -0.739300 0.074898 -0.374601 -0.304842 -1.103221 -0.312925 -0.191112 -0.504960 0.345305 -0.058499 0.359851 0.277590 0.023686 0.277620 -0.126536 -0.300032 -0.719032 0.578045 0.509922 -0.031988 -0.582242 0.054903 -0.285721 1.840740 -0.181414 0.531887 -0.845846 0.026308 0.298807 -0.874157 0.329315 1.218313 0.009568 0.695650 -0.276762 -0.064225 -0.182900 0.302184 -PE-benchmarks/edit-distance.cpp__main = 2.218304 3.540578 7.142776 2.299711 -6.486863 -7.502073 -2.236668 -12.805007 4.954809 1.255312 3.109033 0.621484 1.454723 -3.260866 -1.114779 4.449269 2.121344 -0.030615 -0.438021 -3.750121 -5.974799 3.902078 -1.100723 -0.590343 3.212535 -7.427329 4.757804 1.223271 4.979577 1.788914 3.333209 -1.096416 -2.735528 4.643417 2.628435 3.143146 1.741318 0.873213 -5.781274 2.531518 -0.376525 -1.092864 4.646768 2.040931 6.273519 1.540104 3.257288 3.020748 -3.414057 0.962701 -3.352714 7.219135 -3.247860 3.546406 0.101791 -0.423329 -1.020817 -4.005547 0.080390 2.297501 -3.742327 -3.755021 -3.287724 0.501472 -5.086137 0.209596 -2.878291 -3.718853 -0.713564 2.682839 4.508983 2.011895 -0.675849 1.345346 -7.068574 0.059318 1.936184 3.456924 5.716883 -1.217478 2.238777 -1.156778 -4.068548 -4.932929 5.587939 2.672050 1.911428 -0.169495 -1.288692 -2.997873 -2.154408 -2.946740 3.526570 3.368317 -5.807017 -0.604327 -4.597397 -2.152836 -4.912920 -8.989033 1.169730 -1.921056 3.452932 -2.818960 -1.026811 1.196759 1.877907 1.091380 -0.429327 -1.962806 0.664348 -1.499985 2.789124 8.647837 0.802846 -3.298393 -1.550076 -2.284449 -2.872010 2.801403 2.964971 -0.094280 7.636487 6.214191 4.068962 -2.448245 -3.456795 0.711957 0.393346 4.328212 3.985565 -5.642844 -3.320532 1.856965 0.391482 -8.450829 0.011663 0.185951 3.468386 -1.134923 -0.066859 -2.232422 -1.670123 2.452347 0.893486 -0.699974 1.952268 -0.843663 -3.084377 4.662274 8.418668 -0.941191 2.170474 -4.320325 0.976868 2.298959 -3.144080 0.877675 0.041714 -2.627028 -0.827965 -1.375056 -1.152549 3.989312 -0.015640 -2.578413 1.492561 3.083803 -6.055776 -6.365323 -5.384312 1.352635 5.798513 -1.494529 5.698583 -4.970358 -1.846113 -2.499719 5.606749 1.055998 -0.123764 3.258189 -5.236062 3.624832 -1.159928 -5.488910 8.924904 8.012108 2.537809 -2.378689 2.672106 3.808668 -9.078360 -5.647954 -2.692371 -0.750997 1.921784 -8.775832 -5.418239 1.184958 -5.855734 -1.386461 0.926159 2.479206 5.132636 2.321403 2.594203 0.307667 -2.768966 -5.354098 4.148516 -1.665763 -0.712206 2.066872 1.042903 0.838850 4.096821 -1.911092 -1.172005 0.812245 -2.087085 1.771754 2.762688 5.170715 -0.656527 7.430261 5.163718 0.256124 6.679786 1.733475 -3.361310 5.523354 0.020120 3.505830 2.303462 -0.070111 -1.537945 1.807443 4.005342 -3.329279 -3.584515 -4.464869 -1.411671 -0.676676 2.503952 0.226199 -3.445745 -7.051448 -1.849355 0.762292 1.901369 -0.099842 6.469606 -0.969483 1.174134 -7.641051 -0.191304 3.350095 -0.417906 5.038080 2.404707 -4.635053 -1.909832 -2.278834 -5.232968 -5.441152 -1.625563 0.556774 -3.321493 -1.165753 4.634359 -1.031659 0.357445 5.102488 -0.121563 3.167066 -5.031693 1.760405 -2.999877 -0.102088 7.262375 -0.769444 -4.603362 3.949251 0.842179 12.911212 1.098640 1.749720 -1.775744 -3.066944 1.476610 -3.285558 -2.532310 5.722860 2.942871 2.572688 -0.281448 -0.234183 -0.395799 5.447148 -PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 2.091700 6.037851 15.781347 7.106227 -12.942660 -13.607033 -4.768750 -21.257475 8.680572 0.851918 6.100701 1.962140 2.146428 -5.544646 -0.885327 5.466217 4.198827 -1.326588 -0.397936 -6.410717 -8.840384 7.894832 -0.270520 -6.911018 5.466115 -16.468156 11.586499 4.320889 8.150390 5.602698 5.424350 -1.819943 -5.284054 9.640376 3.309297 3.570225 4.077674 1.346873 -9.906054 4.058034 1.581484 1.914825 8.787341 2.168742 11.102972 4.103160 7.560255 6.059734 -7.353322 1.904259 -8.275443 14.325352 -7.053014 7.205058 0.294079 1.956784 -0.825137 -10.332152 -1.684072 -0.580128 -5.516032 -3.941916 -6.177878 0.325569 -10.344271 0.744695 -2.918682 -6.457705 1.601216 6.479448 9.116692 4.008600 0.433213 0.003826 -11.908890 1.141137 1.911706 8.676523 10.170458 -3.907225 2.478240 -0.324408 -6.688400 -8.544887 7.485928 3.559689 3.369218 -2.267560 1.022296 -5.141617 -4.325006 -5.471178 2.742173 6.763486 -9.937021 0.443997 -9.286162 -2.543736 -8.750844 -12.379484 1.203439 -4.990345 6.079596 -0.476410 -2.881540 1.766434 3.492797 2.270851 -1.802049 -4.427422 1.267853 -2.997819 4.461371 15.167437 0.962427 -5.072722 -1.200317 -3.847661 -4.228750 7.393311 2.661511 1.393686 14.147540 14.009382 6.304988 -4.895698 -5.660170 1.472199 2.767893 9.542284 8.885539 -12.759172 -6.361717 1.279574 1.758536 -15.671877 3.140449 0.357237 7.034325 -0.639350 -5.225067 -2.520616 -4.148588 8.078203 1.894265 1.300976 3.522376 -1.065713 -6.436844 11.013045 19.296528 -2.191940 4.596390 -8.866832 0.898516 6.588371 -5.791270 3.017227 0.524209 -3.323426 0.113294 -4.325785 -3.241516 8.323672 2.119732 -2.482539 6.521462 4.591939 -8.116890 -14.948307 -10.008722 2.115029 10.285344 -3.486580 15.282197 -10.114246 -4.388072 -6.051415 11.007274 0.180281 -0.528007 4.329619 -8.741958 6.923840 -4.846819 -11.716645 17.755879 14.814547 1.839486 -2.989166 7.932519 7.393366 -14.776532 -9.661394 -5.345302 -0.068744 3.581744 -11.073622 -6.624533 2.396321 -11.675924 -3.852944 3.060945 4.577892 11.210103 1.965649 -0.870457 2.961004 -8.974891 -10.710015 7.097103 -6.082652 -2.915365 4.565257 1.371294 1.927050 7.197440 -3.124159 -3.222977 2.565486 -4.317800 1.787926 5.374546 10.837205 -0.222400 12.295066 9.834142 2.533825 12.764362 6.338473 -6.470442 15.426135 0.534917 5.182237 4.975070 0.793637 -2.095626 3.807979 6.327022 -6.136909 -6.076921 -10.974886 1.413578 -2.433482 5.890479 -5.300745 -5.747609 -12.163430 -4.949467 4.637057 4.126917 -1.076899 15.123828 -0.788032 0.683159 -17.700186 -1.396845 8.163712 0.382605 8.456265 5.777200 -8.779632 -8.420876 -3.962630 -7.795778 -6.348083 -4.348282 -0.995123 -7.657865 -2.577963 8.670004 -2.009598 1.892778 14.160701 -0.978264 5.537737 -8.530114 2.412239 -4.288197 -2.916528 10.163774 0.840732 -9.621591 10.643104 -0.451829 25.996254 -0.100165 4.294169 -5.221172 -4.301514 2.600543 -5.126123 -3.788248 12.175662 4.369324 4.949011 1.629781 -0.234727 -2.968376 11.492358 -PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.190496 0.241628 0.783123 0.186494 -0.545999 -1.236512 -0.373878 -1.850779 0.648583 0.291345 0.804548 -0.080408 0.570436 -0.308472 -0.080796 0.418245 0.158132 -0.269060 0.308860 -0.378862 -0.799377 1.193567 -0.184817 0.291929 0.111781 -1.025009 1.009075 0.363075 0.596122 0.686048 0.235386 -0.120488 -0.176189 0.467814 0.014971 0.435193 -0.017566 0.475977 -0.308472 0.313689 0.097345 -0.395657 0.705361 0.070759 0.724405 0.403481 0.393513 0.318811 -0.140849 -0.267952 -0.413180 0.384169 -0.652234 0.233225 -0.492146 -0.399456 0.183766 -0.176582 -0.095167 0.150259 -0.260229 -0.508923 -0.697025 0.206144 -0.755746 0.202735 -0.548107 -0.518976 -0.149084 0.094693 0.584783 0.309556 -0.156982 0.179900 -1.342964 0.003748 0.245768 0.160040 0.578021 -0.229541 -0.010637 -0.061814 -0.843137 -0.754478 0.953230 0.739349 0.352005 0.054230 -0.451532 -0.184763 -0.285626 0.032281 0.619489 0.619119 -0.256720 -0.007185 -0.378225 -0.155324 -0.611879 -1.273086 0.349280 -0.410917 0.496288 -0.076758 -0.064076 -0.179877 0.153346 0.069235 -0.358555 -0.821277 -0.056772 -0.619737 0.474520 1.072169 -0.037844 -0.265246 -0.496602 -0.386490 0.001670 0.462870 0.572982 -0.035900 1.032277 0.711147 0.335474 -0.665717 -0.774017 0.377779 0.284618 0.446812 0.211167 -0.793070 -0.441144 0.157087 -0.365673 -1.221224 -0.316536 0.164835 0.374322 -0.684330 0.021384 0.525573 -0.389049 0.259991 0.762440 0.068985 0.219953 0.122722 -0.560483 0.647620 1.167649 -0.070655 0.362825 -0.697557 -0.334625 0.818781 -0.409924 0.123130 0.273347 -0.186902 -0.511872 -0.252939 0.243431 0.560148 -0.092742 0.312742 0.266755 0.436358 -0.584613 -0.615944 -0.908311 0.221101 1.302359 0.208599 1.048965 -0.882755 -0.125982 0.262354 0.728389 0.320990 -0.256833 0.384045 -0.540561 0.560233 -1.050464 -0.938506 1.088878 0.673955 0.669300 -0.054536 0.277573 0.679271 -0.742117 -0.472166 -0.464045 0.433132 0.137921 -1.254440 -0.443489 0.080151 -0.814283 -0.263260 -0.090496 0.395286 0.391843 0.075912 0.339188 -0.573376 -0.323994 -0.660626 0.673399 -0.387560 -0.108098 0.038425 -0.049613 -0.173833 0.362573 -0.188283 0.305729 0.116470 -0.292817 0.404961 0.477405 0.127347 -0.108729 1.209725 1.005124 -0.505817 0.363476 -0.041971 -0.051577 0.767032 -0.102001 0.364411 0.285972 0.464132 0.088232 0.272328 0.773287 -0.420618 -0.521046 -0.817228 -0.181232 0.460182 0.373426 0.190599 -0.358912 -1.346250 -0.195908 0.064547 1.186438 0.113792 1.100483 -0.178713 0.451944 -0.939472 0.125315 0.117544 -0.127038 0.658003 0.136405 -0.412070 0.039953 -0.354455 -0.686248 -0.924837 -0.295255 -0.336375 -0.563842 -0.310429 0.028774 -0.411225 -0.083794 0.367995 -0.051966 0.275398 -0.569675 0.100761 -0.635085 0.225176 0.866852 -0.189310 -0.585692 0.516385 0.083727 1.724266 -0.037855 0.513018 -0.176481 0.377587 -0.174265 -0.693296 -0.198557 0.910830 0.448151 0.084196 0.004710 0.076833 0.286467 0.520364 -PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/quicksort-for-linked-list.cpp__main = 1.148471 0.615725 1.941996 0.204385 -1.023826 -2.497889 -0.466753 -3.998708 1.901254 0.427904 1.049210 0.285375 1.105903 -0.758409 -0.268179 1.540521 0.959947 -0.085813 0.169751 -1.076309 -0.204977 2.701846 -0.703644 0.337127 0.402617 -2.685320 0.426780 0.885755 2.331274 0.969627 0.792267 -0.401069 -0.654601 0.615393 -0.314240 0.444102 0.383835 0.121461 -2.696112 0.385070 -0.799620 0.061492 1.536729 -0.040628 1.678281 -0.419578 1.172664 0.909781 0.259772 -0.338126 -1.079918 2.300040 -0.063886 0.871495 -0.262645 -0.634293 -0.596747 -0.308899 -0.101620 1.284863 -0.676268 -0.024803 -0.946657 0.214876 -1.282623 0.200506 -0.898391 -0.922992 -0.354627 -0.392535 1.016777 0.272606 -0.049933 -0.389169 -3.606272 -0.095930 0.088821 0.865337 1.036707 0.386631 0.549611 -0.486418 -1.200771 -1.128214 1.440836 2.400689 -0.014398 0.378784 -1.634685 -0.905600 -0.809539 -0.416239 1.176826 0.470207 -1.883960 -0.002690 -1.336207 -0.421945 -0.889096 -2.224033 0.621984 -0.246954 0.774580 -1.714959 1.053874 0.295251 0.843160 0.091104 -0.184447 -0.670248 0.350075 -0.113323 0.285721 3.275039 -0.069162 -0.815593 -1.265538 -0.358428 -1.472044 0.927069 0.554243 0.166193 1.401846 1.286183 1.078512 -1.205117 -1.136381 1.240605 0.546512 0.993154 0.769067 -1.046584 -0.669764 0.422915 -0.365644 -2.643516 -0.651072 0.526142 1.219946 -0.870818 0.866799 -0.727457 -0.700590 1.284687 0.726988 -0.732406 0.754658 -0.005158 -1.072682 1.103033 2.711046 -0.093597 0.797407 -1.710845 0.135682 0.573983 -0.683864 0.765356 -0.230013 -0.502829 -0.733460 -0.175279 0.426861 0.991402 -0.227193 0.022003 -0.226987 0.850949 -1.524538 -1.553792 -2.273384 -0.238535 1.288900 0.000788 1.644216 -1.106776 -1.005553 -0.503117 1.185720 0.279346 -0.362480 1.522470 -2.142157 1.009401 -1.191634 -1.483178 2.669612 3.092081 1.266299 -0.475361 1.109059 1.069223 -2.405854 -1.403882 -0.157317 0.298908 0.515334 -3.632480 -0.979855 0.257181 -1.622827 -0.716495 0.062009 0.697634 0.560451 1.486785 2.251070 -0.694359 -0.886116 -1.479810 1.757306 -0.421516 0.079789 0.380356 0.282167 -0.456517 1.211099 -1.106172 0.211767 1.162164 -0.570259 0.855471 0.455664 0.478300 -0.379832 1.358385 1.733147 0.150535 2.791715 -0.138651 -1.157477 1.777511 -0.406717 0.832963 0.092090 -0.293752 -0.546279 0.583330 0.387291 -0.885371 -0.839279 -1.237842 -0.533126 0.246163 0.946644 0.941270 -1.868529 -1.689901 -0.348957 -0.259843 1.271160 0.271859 2.017909 -1.397051 0.912923 -2.824864 0.475766 0.482594 0.160165 1.235575 0.411971 -1.058739 -0.282468 -0.122178 -1.694575 -2.166334 -0.401946 -1.672486 -1.003005 -1.302408 1.691949 -1.145629 -0.198927 1.331946 -0.366718 1.627562 -1.772105 0.212442 -1.210889 0.417635 1.531930 -0.195321 -1.127788 0.369641 -0.023036 3.582235 0.131559 0.937892 -0.250732 0.390502 -0.283284 -2.193047 -0.689105 1.828976 1.049566 0.292469 -0.481127 -0.726414 0.195648 0.733229 -PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -1.473215 -0.768710 2.758977 2.405672 -2.166757 -3.777412 -1.401565 -4.452637 2.846640 0.882781 3.124846 1.006039 2.179576 -2.538030 0.125248 0.036574 1.541620 -1.313145 -0.034611 -1.543855 -0.410672 4.583717 1.356169 -2.008435 0.185584 -3.368483 2.317181 1.231943 1.359321 3.080307 0.767781 0.040308 -0.968143 1.413249 -0.637888 1.618206 0.107283 1.013000 -1.375160 -0.811831 1.213180 -0.289092 2.723742 -0.206961 3.471004 -0.222047 2.037695 0.471003 -1.918154 -1.700565 -1.404274 1.783252 -2.457456 1.140848 -0.729688 -0.029283 0.972567 -1.123273 -0.821532 -3.092247 -0.109991 -0.753521 -2.073740 0.102840 -1.940434 1.163555 -0.540103 -1.256088 -0.039470 -1.115042 2.071970 0.899556 0.273979 -0.305047 -3.425939 -0.005414 0.145056 0.794311 1.855829 0.646384 -1.076721 -1.282849 -1.685198 -1.700024 2.260578 0.826249 0.392918 1.234110 -1.237023 -0.113890 -0.475287 -0.187016 0.997740 0.976144 -1.920566 -0.207289 1.046975 -0.598111 -0.718821 -1.536507 0.999908 -1.326384 0.758148 1.371082 -0.461074 -0.079452 -0.874720 0.081853 -2.574144 -2.198046 0.820802 -1.446471 0.081496 2.912286 -1.577440 -0.436306 -1.368021 -0.230895 0.434192 2.327352 0.542665 1.278199 2.367748 2.731075 0.865086 -2.604930 -1.187822 1.592490 2.757592 1.360266 0.816897 -1.831080 -1.606642 0.712567 -1.216852 -3.749118 -1.496296 1.661829 2.528455 0.398121 -2.205776 1.614456 -0.945567 2.646058 2.406728 0.392335 0.472561 0.552047 -2.959927 2.368819 4.073159 -0.500766 1.891804 -1.132961 -1.392248 3.462865 -2.017089 0.871396 0.637708 -0.754730 -0.884821 -0.996389 0.495130 1.976469 0.534812 1.435962 -0.493609 1.617601 -0.813030 -3.720475 -4.182364 -0.407732 3.557979 1.848111 4.394609 -2.713160 -0.894729 -0.159463 2.119258 -0.018490 -1.667836 0.823074 -2.091433 1.839227 -5.382684 -3.557080 5.650036 3.806205 2.306889 0.997828 2.197048 2.109786 -1.264331 -0.564406 -0.972502 1.350885 1.262968 -2.322939 0.026621 0.333466 -3.063703 -2.667039 0.098183 1.041188 0.325730 -0.913669 0.911422 -0.763849 -1.030249 -1.442413 1.438103 -1.812574 -1.014052 -0.133057 0.025027 0.427296 0.916641 -0.472597 0.763832 0.246933 -1.248845 0.365550 0.761774 1.622071 1.125911 2.776751 4.304591 -1.447585 1.928799 -0.009936 -1.257095 4.121593 -1.192276 0.852555 0.472951 1.643988 1.676873 0.383945 1.861593 -1.365439 -0.037486 -2.544605 0.220610 1.748795 2.222152 -2.902654 -2.529676 -3.982505 -0.264821 0.585850 2.796728 -0.742410 4.631019 -1.843777 0.486280 -5.395570 0.211509 2.015384 0.170003 1.578866 0.905036 -1.390930 -3.066500 -1.093622 -2.072292 -0.385676 -1.124717 -1.481735 -1.458899 -1.512418 2.238292 -2.421640 0.340501 2.289966 -0.620580 2.192420 -0.695879 0.237592 -1.806007 0.080873 -0.073629 0.716266 -1.901329 2.889776 -0.009754 5.391384 -0.602769 1.690834 -1.206033 3.048867 -1.668634 -2.765062 -0.556040 3.220365 2.715423 -0.160929 0.704042 0.129693 -0.094100 2.000700 -PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = -0.001663 0.002533 0.879906 0.330175 -0.377924 -1.101804 -0.338577 -1.634540 0.893987 0.378577 0.806014 0.140007 0.743283 -0.572827 -0.136858 0.219333 0.341600 -0.283019 0.105022 -0.428463 -0.194663 1.385975 -0.028379 -0.124454 0.070198 -1.254375 0.766105 0.290876 0.636152 0.901694 0.280407 0.025763 -0.210514 0.388141 -0.195980 0.435435 0.086193 0.376393 -0.488725 -0.071609 0.147680 -0.030527 0.678281 0.104817 0.924077 0.130473 0.308359 0.184378 -0.076476 -0.431596 -0.300966 0.390899 -0.510615 0.285782 -0.422673 -0.164802 0.118726 -0.211129 -0.069710 -0.324652 -0.022968 -0.145865 -0.607924 0.112836 -0.653236 0.258492 -0.289417 -0.428682 -0.231321 -0.384236 0.546798 0.233050 0.004912 -0.147520 -1.373518 -0.026810 0.064466 0.094567 0.594528 0.097381 -0.273057 -0.345457 -0.648748 -0.641128 0.860591 0.787249 0.091962 0.420908 -0.438760 -0.278814 -0.293818 -0.027773 0.541519 0.469048 -0.469061 -0.077379 -0.029513 -0.134649 -0.170326 -0.753873 0.386951 -0.371543 0.300392 0.020018 0.071317 0.015179 0.159710 0.059947 -0.454853 -0.519564 0.224598 -0.467396 0.219096 1.100093 -0.198093 -0.304367 -0.578789 -0.237193 0.011428 0.643612 0.246395 0.146561 0.823231 0.607345 0.358851 -0.776182 -0.500442 0.692615 0.477637 0.350107 0.163824 -0.732508 -0.383326 0.209987 -0.386982 -1.203539 -0.435543 0.215465 0.549541 -0.464476 -0.251271 0.531462 -0.323352 0.444676 0.764138 -0.057576 0.234831 0.165228 -0.725389 0.541468 1.258687 -0.076491 0.394900 -0.626966 -0.378837 0.768006 -0.439955 0.270949 0.046583 -0.232331 -0.353488 -0.232830 0.398688 0.608648 -0.128199 0.422443 -0.090887 0.466191 -0.460473 -0.803833 -1.126372 -0.167770 1.054488 0.400592 1.216857 -0.765622 -0.177361 -0.001576 0.725789 0.173859 -0.252065 0.414995 -0.669341 0.530632 -1.293645 -0.972785 1.389643 1.060813 0.802107 0.012713 0.453520 0.553232 -0.430700 -0.309812 -0.224144 0.317586 0.330964 -1.048682 -0.183996 0.053951 -0.841246 -0.625564 -0.024800 0.307814 0.185243 0.043780 0.540454 -0.474028 -0.225996 -0.678347 0.612208 -0.400430 -0.133485 -0.060976 0.093118 -0.168655 0.321243 -0.283084 0.263936 0.304867 -0.180084 0.310771 0.351390 0.175501 0.036178 0.789071 1.071511 -0.479840 0.476066 -0.102711 -0.219677 1.053725 -0.238086 0.263875 0.191522 0.379236 0.283382 0.210914 0.454540 -0.427885 -0.134193 -0.764135 -0.116592 0.494447 0.453992 -0.172720 -0.638926 -1.086050 -0.108914 -0.122608 1.019516 0.030423 1.281586 -0.471309 0.367169 -1.252545 0.174292 0.441204 -0.061272 0.494476 0.257442 -0.423805 -0.473229 -0.271341 -0.687241 -0.672763 -0.324873 -0.579651 -0.494232 -0.453211 0.457794 -0.622122 0.033287 0.597608 -0.071905 0.518705 -0.602781 0.149334 -0.682797 0.187384 0.244837 -0.004914 -0.549376 0.436179 0.000549 1.456056 -0.164674 0.608158 -0.230152 0.804246 -0.498148 -0.944986 -0.248243 0.955381 0.565475 0.029373 0.090255 -0.097380 0.164535 0.524128 -PE-benchmarks/mergeSort_LinkedList.cpp__main = 1.289138 0.921193 1.786488 0.059515 -1.223715 -2.611531 -0.457705 -3.877618 1.446004 0.336767 0.987691 0.053926 0.947785 -0.315246 -0.216581 1.595288 0.934152 0.052646 0.237024 -1.129722 -0.849324 2.186079 -0.820437 0.642533 0.473318 -2.169548 0.622881 0.930882 2.015264 0.743547 0.813121 -0.392884 -0.699226 0.638466 -0.183368 0.353449 0.246640 0.234810 -2.433659 0.750631 -0.762054 -0.278166 1.546053 0.048867 1.325360 0.082762 1.094549 1.053114 0.107965 -0.254866 -1.012492 2.017609 -0.095930 0.793662 -0.387239 -0.740663 -0.444755 -0.260731 -0.003336 1.634975 -0.781176 -0.366056 -1.006388 0.293133 -1.342033 0.107197 -1.109873 -1.142041 -0.338388 -0.101577 0.924435 0.159087 -0.340074 -0.139889 -3.337596 -0.170560 0.272537 0.879612 1.001515 0.115590 0.675734 -0.306129 -1.411612 -1.183460 1.358863 2.150695 0.294516 0.192352 -1.627021 -0.890011 -0.664369 -0.297345 1.285428 0.564739 -1.542413 0.052413 -1.534933 -0.511360 -1.368273 -2.618141 0.647360 -0.151646 0.940286 -1.808357 0.759060 0.116029 0.653153 0.055624 -0.063466 -0.822903 0.067393 -0.332761 0.483207 3.083176 0.070764 -0.859797 -1.202331 -0.578921 -1.289955 0.756459 0.819648 -0.115934 1.504255 1.226684 0.946603 -1.102977 -1.297273 0.733555 0.235796 0.982917 0.883771 -0.955997 -0.766658 0.411661 -0.541664 -2.512953 -0.482013 0.374250 1.035542 -1.059110 1.044367 -0.606840 -0.869296 0.887767 0.649728 -0.413623 0.733304 -0.163432 -0.872424 0.967113 2.342194 -0.139768 0.821225 -1.607033 0.098286 0.548052 -0.434017 0.568350 0.013572 -0.646263 -0.937537 -0.040691 0.295324 0.926840 -0.164089 -0.137129 0.176487 0.750597 -1.625236 -1.215439 -1.943018 0.118590 1.450031 -0.066350 1.358738 -1.214338 -0.777256 -0.271549 1.131693 0.316009 -0.402223 1.385800 -1.792640 0.933085 -0.903737 -1.317612 2.189425 2.527737 1.092074 -0.585700 0.804997 0.924977 -2.459977 -1.531326 -0.342721 0.346407 0.240391 -3.495535 -1.141041 0.302972 -1.530249 -0.215818 -0.010832 0.850122 0.761268 1.327103 2.042842 -0.870536 -0.878345 -1.508665 1.571919 -0.302682 0.153528 0.540544 0.128155 -0.445221 1.042594 -0.887432 0.103672 0.842387 -0.618496 0.884166 0.479162 0.474774 -0.477303 1.742058 1.447256 0.031226 2.418388 -0.164952 -1.017799 1.507436 -0.328063 0.992101 0.132805 0.017702 -0.709898 0.536238 0.741527 -0.798053 -1.119700 -1.159433 -0.698177 0.282087 0.769636 1.162409 -1.458473 -1.916685 -0.287912 -0.277502 1.529472 0.206895 1.702906 -1.022074 0.999989 -2.252359 0.487792 0.128496 0.000242 1.204341 0.346203 -1.074123 0.252939 -0.141100 -1.770891 -2.224033 -0.213267 -1.238322 -1.030629 -0.860208 1.003986 -0.831071 -0.363607 1.048740 -0.466438 1.277441 -1.543063 0.164056 -0.959297 0.343185 2.167693 -0.377597 -1.079539 0.410616 0.148391 3.555273 0.510637 0.902834 -0.059650 -0.130253 0.135401 -1.899024 -0.776984 1.710703 0.904876 0.347689 -0.427945 -0.517959 0.488825 0.655936 -PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = -0.731993 -0.267819 1.800176 1.184091 -1.500180 -2.625542 -0.910019 -3.281008 1.831417 0.697127 2.045134 0.583987 1.575969 -1.383774 0.003998 0.245525 1.113294 -0.884345 0.264914 -1.089625 -0.594701 3.177388 0.650936 -0.581581 0.150075 -2.256882 1.743832 0.553348 1.130541 2.177867 0.661968 -0.056243 -0.751184 0.848342 -0.078446 1.139283 -0.014793 0.783849 -1.014684 -0.134418 0.566264 -0.726314 1.852669 0.047806 2.148429 -0.011345 1.131916 0.433324 -1.016024 -1.170616 -1.009956 0.928249 -1.669923 0.693842 -0.586718 -0.395312 0.545443 -0.352391 -0.450773 -1.398097 -0.301717 -0.973851 -1.376092 0.269083 -1.471116 0.788501 -1.104098 -0.844222 -0.360084 -0.686611 1.352476 0.673135 0.250661 0.108315 -2.781828 -0.025565 0.067162 0.497695 1.288031 0.425325 -0.718771 -0.747439 -1.418223 -1.378185 1.608759 0.887495 0.218749 0.609748 -1.102857 -0.100723 -0.492153 0.022556 0.895968 0.755367 -1.296974 -0.018018 0.230609 -0.403471 -0.504236 -1.855189 0.680185 -0.880114 0.589208 0.495233 -0.246761 -0.332837 -0.619059 -0.007807 -1.499558 -1.596700 0.607111 -0.972572 -0.031701 2.185895 -0.924241 -0.328016 -1.154323 -0.248580 0.350782 1.446505 0.663651 0.726303 1.517116 1.714549 0.716044 -1.669711 -0.941885 1.165934 1.562908 0.700645 0.561425 -1.093150 -1.134927 0.602434 -0.879334 -2.516576 -1.093009 1.190024 1.570566 -0.087668 -0.835114 0.814534 -0.804097 1.398728 1.774935 0.256729 0.454547 0.293559 -1.845395 1.510183 2.671446 -0.321527 1.226697 -0.891293 -0.819618 2.441035 -1.330575 0.550631 0.271118 -0.346611 -0.897905 -0.607341 0.313433 1.305166 0.218714 0.911105 -0.195084 1.065133 -0.719726 -2.211821 -2.656228 -0.155811 2.773768 1.219830 2.467254 -1.848943 -0.266976 0.198492 1.362219 0.464859 -1.187115 0.715847 -1.276777 1.177800 -3.688549 -2.272874 3.572759 2.400579 1.520197 0.441248 0.954049 1.632075 -1.240250 -0.705499 -0.882554 1.016695 0.366840 -2.076526 -0.380068 0.303306 -2.039033 -1.489705 0.048916 0.796217 0.640203 -0.451937 0.866089 -0.646300 -0.529247 -1.139261 1.318799 -1.047642 -0.819962 -0.029069 -0.039676 0.205306 0.593403 -0.163484 0.717286 0.315894 -0.797258 0.304188 0.626176 0.829097 0.406329 2.110347 2.771599 -1.017830 0.763085 -0.158604 -0.815151 2.587269 -0.792862 0.667164 0.233346 1.008433 0.915397 0.300398 1.406232 -0.896389 -0.570236 -1.636862 -0.120581 1.098853 1.430406 -1.338053 -1.831403 -2.789621 0.069664 0.237942 2.205082 -0.258758 2.985764 -1.206331 0.542265 -3.136151 0.294487 1.185018 0.057393 1.287029 0.502046 -0.853823 -1.061684 -0.791027 -1.584010 -0.408847 -0.670812 -0.962787 -0.972855 -0.868249 1.171366 -1.462980 0.019679 1.124947 -0.509815 1.603894 -0.377108 0.056421 -1.510717 0.360452 0.470676 0.288267 -1.189120 1.923989 0.087623 3.484785 -0.258478 0.946288 -0.516294 1.741646 -1.040390 -1.939799 -0.420203 2.164227 1.749636 -0.007747 0.311951 -0.006520 0.326500 1.077437 -PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = -2.168981 -0.764698 5.033266 4.263084 -3.989553 -5.813626 -2.464011 -7.453960 4.440196 1.017601 4.905798 1.362109 2.827222 -4.112392 0.195158 -0.311053 2.306186 -1.859148 -0.472116 -2.540698 -0.615838 6.254893 1.797529 -4.240518 0.502715 -5.711843 3.479023 2.628315 1.937452 3.898101 1.158105 0.013018 -2.080066 2.644659 -1.382211 2.036633 1.076672 1.280474 -2.564935 -1.539372 2.107685 0.907125 4.267677 -0.806191 5.687230 -0.220149 3.151302 1.132897 -3.640707 -2.249401 -1.649469 3.693252 -3.344950 2.143315 -0.055456 0.512214 1.313234 -3.022837 -1.276910 -4.705464 0.007520 -0.667010 -2.908111 0.030486 -2.811770 1.562955 0.534970 -2.189220 1.053370 -1.678723 3.296597 0.893403 0.177585 -0.673755 -4.351899 0.095425 0.577877 1.712545 2.976689 0.777788 -0.791901 -1.865739 -2.335334 -2.474771 2.917159 1.414977 0.928000 1.764919 -1.535428 -0.344599 0.010941 -1.113337 1.403603 1.616007 -3.265814 -0.771345 1.033308 -1.185300 -1.949883 -1.873932 1.601808 -1.940624 1.617131 2.338480 -1.504029 0.282359 -0.646170 0.309819 -3.782925 -3.037530 1.015565 -2.280015 1.327987 5.047280 -2.301799 -1.101640 -2.004139 -0.880365 0.012137 3.652099 0.487159 1.834725 4.186637 4.943020 1.327453 -4.180843 -2.295608 2.087890 4.228717 2.853907 1.689513 -3.849143 -2.328731 0.926816 -1.770108 -6.138769 -1.850104 1.416304 4.218169 0.938072 -3.966243 2.217079 -1.570837 4.725408 2.766400 0.784867 0.440637 0.736324 -4.665417 3.966485 6.325129 -0.688547 2.962364 -1.725794 -2.107694 4.175888 -2.767859 1.509697 1.487766 -1.570191 -0.975740 -1.608964 0.551556 3.137303 0.935716 2.043753 -0.767906 2.553163 -1.660497 -6.339616 -6.819783 -0.172953 4.838567 2.193703 7.401070 -4.443298 -2.439277 -1.007614 4.360959 -0.852360 -2.409021 1.391036 -3.630271 3.110695 -6.341856 -5.621159 8.692697 6.743838 3.156548 1.284307 4.507279 2.492708 -2.618642 -0.950844 -1.368159 1.693146 2.566878 -3.274991 0.315931 0.580985 -4.664320 -4.111793 0.365349 1.796620 0.625755 -1.230341 1.110720 -0.439584 -2.099419 -2.538611 2.094909 -2.622969 -0.983567 0.159406 0.195118 0.781842 1.975365 -1.426120 0.110407 0.217567 -2.006671 0.870323 1.313326 3.135213 1.792175 4.422713 5.991954 -1.674174 4.668100 0.478400 -2.136698 6.859618 -1.692145 1.593248 1.085980 2.372075 2.170357 0.681644 2.722761 -2.356533 0.321440 -4.280069 0.326002 1.984699 3.573437 -5.324277 -3.876702 -6.250225 -1.087615 1.158361 3.312781 -1.328793 7.417538 -2.487412 0.361472 -9.114228 -0.093137 3.431240 0.101263 2.289118 1.534347 -2.617618 -6.615646 -1.426827 -3.434365 -1.316252 -1.802110 -2.238040 -2.554887 -2.567930 4.507595 -3.153076 0.739635 4.728570 -0.633721 2.833359 -1.642399 0.578671 -2.006330 -0.871426 -0.220411 0.889734 -3.518720 4.689966 0.038068 9.447887 -0.843064 2.857538 -2.188021 4.163010 -1.974632 -4.213781 -0.969940 5.112243 4.076241 0.166033 0.739975 0.346356 -1.253538 3.721526 -PE-benchmarks/sudoku.cpp__main = 0.257275 0.555600 1.826880 0.191817 -1.164916 -1.543199 -0.762326 -3.030983 0.846810 0.321622 1.443911 -0.322054 0.522058 -0.294842 0.128522 0.671273 0.606310 -0.425606 0.468395 -0.708463 -0.594866 1.042357 -0.294240 0.131222 0.333686 -1.613127 0.596534 0.736882 0.934238 0.356962 0.553340 -0.364416 -0.815916 0.674083 -0.046296 0.437532 0.921645 0.366841 -1.365479 0.530568 -0.387305 0.138326 0.924855 -0.415449 1.402430 0.211256 0.543199 0.759933 -0.834131 -0.184968 -0.361242 1.720758 -0.569827 0.472677 0.480266 -0.439648 -0.383069 -0.813642 -0.441149 0.255180 -0.443386 -0.460655 -0.559071 0.377270 -0.719126 0.303105 -0.370185 -0.640997 0.497299 0.271670 0.850264 0.181648 0.063555 0.737644 -1.443563 0.241552 0.483856 0.721793 0.706109 -0.485283 0.848382 0.121705 -0.638616 -0.932915 0.867395 1.352047 0.541756 -0.360298 -0.801484 0.111741 -0.084351 -0.495636 0.622984 0.645501 -1.012418 -0.113181 -1.085823 -0.549514 -1.225382 -1.773752 0.302785 -0.549615 0.910125 -0.200693 -0.275960 -0.002602 -0.072483 0.510846 -0.535286 -0.903650 0.095509 -0.476235 0.747436 2.133746 -0.431734 -0.440146 -0.791659 -0.534792 -0.545479 0.534013 0.536858 0.294844 1.105106 1.492402 0.587028 -0.939652 -1.261379 0.330554 0.666139 1.030419 0.716426 -1.304669 -0.613838 0.140333 -0.586329 -1.890579 -0.441908 -0.307388 0.792781 -0.363950 0.050697 -0.466889 -0.733657 1.195691 0.420077 0.290883 0.153543 0.035120 -0.879193 1.032614 1.399418 -0.311491 0.906044 -0.490671 -0.017153 -0.108455 -0.437405 0.509227 0.575101 -0.310152 -0.330720 -0.529729 -0.431993 0.774064 0.515921 0.427454 -0.219163 0.650977 -1.016819 -1.263923 -1.629728 0.449660 1.273669 -0.500762 1.119901 -1.087327 -1.345490 -0.167562 1.733390 0.090874 -0.637997 0.687732 -1.076847 0.830672 -0.228994 -1.301484 1.655191 2.067311 0.768315 -0.356223 1.052642 0.701168 -2.478287 -0.900728 -0.457980 0.487146 -0.029499 -2.301152 -0.888575 0.353023 -1.040069 -0.284446 -0.057147 0.731197 0.454022 0.832166 0.813565 0.566609 -0.745036 -0.440444 1.084949 -0.330182 -0.238117 0.260257 0.043313 0.257465 0.872564 -1.149381 -0.118117 0.591884 -0.970020 0.535074 0.734441 0.837640 -0.038505 1.869597 0.989917 0.244157 1.854269 0.026453 -0.785254 1.018506 -0.117356 0.659325 0.217083 -0.160269 -0.488152 0.182617 0.858368 -0.689633 -1.207865 -1.191117 -0.560950 -0.065193 0.980549 0.376688 -1.353470 -1.496275 -0.252575 0.502309 0.864702 0.137937 1.674632 -0.219151 0.443779 -1.825279 -0.020552 0.347703 -0.223044 0.991718 0.232122 -0.816213 -1.244154 -0.262753 -1.424775 -1.652667 -0.269189 -0.692759 -0.837745 -0.980456 1.542681 -0.138976 -0.175201 0.965266 0.115562 0.806186 -0.306927 -0.093691 -0.474133 0.045827 1.309250 -0.290463 -1.265003 1.128745 0.239410 3.625653 0.034065 0.428625 -0.381592 -0.298780 0.329522 -0.629472 -0.282829 1.417433 1.144466 0.669976 -0.643097 -0.072264 -0.501405 0.735167 -PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = -0.927101 0.286259 4.562951 2.299478 -1.657516 -3.189760 -1.851038 -4.737303 2.735498 0.182960 2.228331 0.916947 0.640353 -0.991117 0.217405 0.058439 0.353412 -1.665145 0.658548 -1.077947 0.257054 4.733483 2.040107 -3.473571 0.125832 -6.318769 3.173201 1.669144 2.367068 3.365287 -0.055882 -0.589085 -0.292072 2.619154 -1.243917 0.108454 1.030124 0.513042 -1.869770 0.018389 1.295554 3.118616 2.151193 -0.449214 3.527788 0.882371 2.058449 0.829655 -1.396062 -0.286206 -2.052475 3.670466 -2.593303 1.832207 -0.225573 1.633897 0.140301 -3.161604 -1.483014 -3.422058 -0.474561 1.435424 -1.697664 0.102950 -2.800771 1.025633 -0.117949 -1.097919 0.887679 0.953241 2.887610 1.678531 0.935676 -1.138176 -3.203232 1.353831 -0.527901 2.750510 1.875968 -1.568933 -1.319111 0.807337 -1.108471 -2.155133 1.023475 1.758514 0.108209 -0.488496 1.276775 -0.796340 -1.291864 -1.145251 -0.987438 2.175976 -1.437674 1.086109 -0.482496 0.157003 -0.690245 -0.506646 -0.207234 -2.249303 1.125862 2.155535 0.358080 -0.419503 0.410575 0.959465 -1.435661 -2.195460 1.098644 -0.255722 0.680171 3.356800 -1.019329 0.461979 -0.014875 -0.161270 -0.734055 3.771742 -0.479927 1.503573 2.661358 4.520112 0.223196 -1.833754 -1.044235 1.461114 2.694615 2.499900 2.233377 -3.729069 -1.753306 -0.644979 0.915408 -3.391526 0.625735 1.697652 2.240009 0.118144 -2.960683 0.794686 -0.851557 4.169396 2.082334 0.544965 0.674539 -0.111151 -2.720144 4.121459 6.610456 -0.720225 1.574145 -2.745277 -1.472788 3.653594 -2.947649 2.274390 0.563408 0.390940 0.240835 -2.241104 0.346260 2.701537 1.340763 1.855628 1.638043 0.767155 0.347476 -4.551894 -3.432499 -0.069809 2.124562 -0.550132 6.219430 -2.239319 -2.107360 -1.497984 3.132934 0.128575 -0.419158 0.492041 -2.404598 1.796474 -4.824902 -3.931450 5.577945 5.225335 0.847999 0.292096 3.380839 3.461990 -1.001972 -1.147582 -0.625989 1.614330 0.795346 -0.893029 0.029409 0.428742 -2.589650 -2.666808 0.745654 0.890475 1.740715 -0.471771 -1.786741 0.664492 -3.728544 -2.267370 1.535558 -3.169094 -1.395000 0.658124 0.197597 0.081455 1.426193 -0.832252 0.048626 2.219098 -1.453404 0.532945 1.585855 2.306661 1.145118 1.589645 3.814537 0.821407 3.588316 2.494244 -1.101555 5.845927 -0.412163 0.404473 1.141410 0.399183 0.303077 1.151268 0.549001 -1.319287 -0.728940 -3.725382 2.951852 0.182913 2.307953 -3.499484 -2.823496 -2.978223 -1.615520 2.550990 1.766395 -0.207602 5.760698 -0.660899 -0.188255 -6.670831 -0.251241 2.672023 0.801133 1.480098 1.743905 -1.510196 -4.955702 -1.014968 -1.097167 -0.258110 -2.143028 -3.266610 -1.977676 -1.858822 2.781397 -2.213873 1.622420 4.427971 0.176775 1.700436 -1.558855 -0.199542 -2.220866 -1.327135 0.175056 0.672637 -2.687628 2.893069 -1.243599 6.384473 -2.555861 1.924926 -2.424961 2.198214 -0.939679 -1.602762 0.098033 4.123812 1.378444 0.142191 0.677123 -0.274309 -1.473358 2.160517 -PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = -1.238557 1.124800 5.837943 3.871504 -3.710499 -5.014163 -2.538172 -6.514990 3.290513 0.123941 3.808464 0.792092 1.271282 -1.478973 0.389312 -0.690279 1.051541 -1.201072 -0.191608 -1.919225 -1.376700 4.481821 1.990777 -4.412851 0.682013 -5.855670 3.522000 2.750669 2.094719 2.973868 0.444650 -0.442000 -1.885514 3.269704 -1.591973 0.177517 1.066966 0.824750 -2.217495 -0.243575 2.044063 2.592691 3.451740 -0.057618 4.016384 1.463413 2.341053 1.458109 -2.938714 -0.947563 -1.796360 4.584579 -2.775273 2.452624 0.716676 1.724801 0.834318 -3.923268 -0.989752 -3.542850 -0.123727 0.335272 -2.273513 0.050127 -3.048734 0.809008 0.103844 -1.871596 1.819127 -0.122041 3.476841 0.301289 0.010274 -1.088318 -3.317774 0.641108 -0.100825 2.657662 2.866744 -0.540226 -0.722387 0.228050 -1.936015 -2.728849 1.315880 0.890685 0.835670 0.072156 0.091850 -1.266364 -0.026012 -1.579192 0.148147 2.514937 -2.750340 0.747479 -0.944245 -0.832468 -2.638223 -1.721286 0.715826 -2.240415 1.841977 1.965540 -1.320323 -0.606330 0.053975 0.393308 -1.870478 -3.084358 0.811867 -1.159802 1.346486 4.522975 -1.467541 -0.741840 -0.176477 -1.353696 -0.804790 3.922592 0.810131 1.073395 3.607181 5.103856 0.802917 -2.718518 -1.862818 0.893113 2.870188 3.304215 2.566134 -4.504221 -2.126452 0.344563 -0.229445 -5.563392 0.534395 1.149775 3.328749 1.162687 -3.823824 1.202895 -1.906985 3.824454 1.550331 1.803691 0.741517 -0.370196 -3.365496 3.946016 6.886834 -0.962840 2.593933 -1.623273 -2.135903 3.805572 -2.986445 2.138185 1.311547 -0.655470 0.136674 -1.850534 -0.477778 3.354359 1.187514 1.524338 1.983513 1.270486 -1.357259 -5.862793 -5.396890 0.511957 3.689531 0.109913 6.381030 -3.595214 -2.300875 -1.372587 5.021249 -1.117960 -1.482751 0.864784 -2.353858 2.528791 -4.216371 -4.508182 6.576647 6.231845 0.903726 0.073586 4.252966 2.591087 -2.357979 -2.191010 -1.984796 1.461493 1.353645 -1.129811 0.126844 0.093172 -3.720128 -2.131465 0.707596 1.537223 2.000594 -1.242001 -1.218303 0.798861 -3.637870 -3.074584 1.464809 -2.871226 -0.776937 0.972573 -0.064944 -0.164378 1.859845 -1.194297 -1.257336 1.063720 -2.098854 0.623369 1.673171 2.938142 1.156400 4.486051 3.426926 0.069487 4.576334 2.083301 -1.807914 7.754249 -1.454073 1.301778 1.201847 2.358371 0.449218 1.431288 1.580809 -1.968031 -1.175959 -4.359474 1.493628 0.177678 2.796317 -4.821157 -3.305039 -4.941573 -1.909066 2.174782 2.432425 -0.933775 6.979379 -0.829206 0.268728 -7.941776 -0.291074 3.368793 -0.280106 2.288986 1.796783 -2.618677 -6.300174 -1.296318 -2.310709 -0.559681 -1.631961 -2.587310 -2.395254 -2.002142 3.338217 -1.985808 1.404705 5.046526 -0.512529 1.474571 -1.799141 0.009214 -1.371940 -1.858359 1.247805 0.422315 -3.864006 4.562884 -0.498721 8.868863 -1.433197 3.045978 -2.376874 1.479390 -0.601017 -2.363096 -0.803225 4.879977 2.658234 0.911641 0.346785 0.734763 -2.004304 2.957310 -PE-benchmarks/optimized-naive-algorithm.cpp__main = 2.147951 3.394958 6.744802 1.868986 -6.588852 -7.392616 -2.008407 -11.635968 4.357553 1.288410 2.942363 0.954675 1.708173 -3.184684 -0.976672 4.232991 2.448568 0.316652 -0.761098 -3.864770 -6.101618 3.132163 -1.345645 -0.554124 3.494509 -6.698850 4.735011 1.431818 4.197602 1.742663 3.330982 -0.566193 -3.113833 4.265413 2.566629 2.780747 1.525031 0.936214 -5.326987 2.600464 0.191100 -1.466792 4.379292 2.176250 5.700464 1.720978 2.674037 3.001359 -3.391042 0.410428 -3.004653 6.197745 -2.785374 3.403916 -0.439189 -0.158762 -0.864140 -3.568719 0.421612 2.014382 -3.062842 -3.906949 -3.135834 0.370732 -4.538049 0.043884 -2.546127 -3.944440 -0.789788 2.072709 3.966712 1.321746 -1.175898 1.200551 -6.529036 -0.523494 2.009293 3.274991 5.597103 -0.735230 1.682079 -1.518728 -4.100648 -4.665552 5.210731 2.292423 2.000151 0.080198 -1.746183 -2.944834 -1.893888 -2.456046 3.768314 3.062334 -5.933174 -1.062572 -4.243738 -2.197028 -4.760823 -8.302740 1.479945 -1.497642 3.125644 -2.709657 -1.589612 1.106345 1.349630 0.900768 -0.566754 -1.495925 0.466030 -1.959804 2.412767 8.205092 0.985914 -3.459187 -1.593335 -2.378499 -2.314695 2.625966 2.753922 -0.476910 7.575652 5.609141 3.639309 -2.395433 -3.393950 0.644496 0.322025 3.897502 3.702944 -5.208762 -3.208287 1.849506 -0.425248 -8.007778 0.100286 -0.339813 3.345949 -1.218875 0.027834 -1.761089 -1.979511 1.731317 0.753530 -0.428146 1.812695 -0.835743 -3.159443 4.029977 7.792024 -0.959784 2.099702 -3.723526 0.776653 2.204036 -2.399006 0.520470 0.239249 -3.037095 -1.051186 -0.899205 -1.210081 3.793398 -0.284709 -2.334743 1.415263 3.013852 -5.931822 -5.653744 -5.353361 1.080339 5.676142 -0.872163 5.530005 -4.998684 -1.266981 -2.593799 5.700261 0.621935 -0.345052 3.020189 -4.572107 3.381244 -0.722400 -5.016800 8.469619 7.395536 2.249475 -2.173243 2.631505 3.119342 -8.580929 -5.276001 -2.538925 -0.985041 2.165076 -7.965651 -4.874592 1.416084 -5.609433 -1.175746 0.876113 2.422890 4.572697 2.126675 2.869636 0.391030 -2.224713 -5.161010 3.641404 -1.351143 -0.394504 2.091563 0.929884 0.677275 3.698142 -1.737123 -1.415486 0.311717 -1.886391 1.751903 2.470620 4.907377 -0.297238 7.182314 4.707515 -0.197176 5.827391 1.294704 -3.202602 5.161081 -0.089180 3.468912 2.250441 0.440728 -1.257929 1.555667 4.022522 -3.089178 -2.966646 -4.383016 -1.720709 -0.484749 2.095189 0.162860 -2.723369 -6.966470 -1.503773 0.260231 2.234950 -0.498387 6.123743 -0.831495 1.009134 -6.966725 -0.095422 3.074760 -0.694253 4.453433 2.243695 -4.301044 -2.072837 -2.140803 -5.123526 -5.038255 -1.158339 1.181126 -3.314199 -0.691808 3.996895 -1.078274 0.301838 4.883043 -0.293916 2.998056 -4.743975 1.830223 -2.597348 0.069021 6.854410 -0.603757 -4.234149 3.850731 1.046756 11.936509 1.649817 1.936471 -1.196748 -2.949529 1.486847 -3.451952 -2.769875 5.187684 2.830697 2.730734 0.031598 0.115200 -0.042620 5.433839 -PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.359019 1.830913 8.368881 5.933426 -4.086980 -5.207003 -2.974847 -7.957992 4.224198 -0.824372 4.118843 0.166581 0.202710 -1.136804 -0.217126 -1.983522 0.177013 -1.306341 -0.090467 -1.898902 -1.242086 5.066484 2.643808 -6.869470 0.638225 -8.896881 4.820172 3.633510 3.931255 4.027004 -0.337065 -1.521886 -1.547768 4.545074 -2.388184 -1.697075 1.499038 0.076323 -3.571963 -0.155409 2.312115 4.888401 4.567246 -0.548065 4.006416 1.711554 3.002111 1.618223 -3.305238 0.416962 -2.725459 6.369285 -3.313928 3.183043 1.518959 2.650987 0.505255 -5.955471 -1.666919 -3.802035 -0.327194 1.860505 -2.060339 -0.049346 -4.705726 0.694540 -0.229927 -2.484510 3.736766 0.397226 4.418021 1.553628 0.913526 -2.406260 -3.784850 2.219863 -0.131984 4.214217 2.978965 -1.826809 0.583163 1.780735 -2.032359 -2.604326 0.372087 1.064947 0.916200 -0.998446 2.179028 -2.650078 0.711967 -2.087149 -1.079410 3.133693 -2.461269 2.073411 -4.084847 -0.656811 -2.950265 -2.406673 -0.349769 -3.275280 2.808838 2.771732 -2.358073 0.648759 2.422342 1.208625 -0.501917 -4.325609 0.439466 -0.194186 2.786749 6.395296 -1.666207 -1.624149 0.149638 -1.155032 -2.293368 4.741095 -0.292678 1.703042 4.262553 6.737104 0.996516 -3.338057 -1.652311 0.703218 2.488243 5.009020 4.267130 -5.597534 -2.424944 -1.013312 1.759860 -7.760682 2.158241 0.269328 3.933666 1.521281 -5.376093 0.769154 -2.643428 6.010716 1.607610 2.121986 1.589296 -0.643434 -3.596323 5.767336 9.144286 -1.310368 2.847722 -3.918110 -3.095977 4.008681 -3.253573 3.313271 0.102423 0.167460 2.428285 -3.522347 -0.441966 4.588052 1.157605 1.306873 4.048150 0.797984 -0.632317 -8.425341 -5.500266 1.232400 3.154673 -1.200481 8.097328 -4.128001 -3.535936 -2.369455 5.834716 -1.132003 -0.463003 0.927750 -3.317384 2.940226 -5.608332 -6.448879 7.163094 8.262978 -0.216651 -0.061569 5.041365 3.108883 -2.089323 -2.662979 -2.568143 1.668127 1.830019 -1.192805 -0.323222 -0.464732 -3.757153 -2.233866 2.217695 1.621801 4.132834 -2.843727 -3.601893 1.144857 -6.375471 -5.181501 3.119204 -5.256292 -0.673376 1.806880 -0.181508 -0.033024 2.987804 -1.566945 -2.248662 2.018808 -2.055820 0.580285 1.982493 4.425348 0.337995 4.231800 3.653276 1.653739 6.416874 4.419525 -2.596788 11.471070 -2.221120 1.153126 1.949019 2.142656 -0.824860 2.876130 1.015742 -2.619170 -1.526695 -5.547440 2.997107 -1.222609 3.320482 -6.479397 -3.992145 -4.995351 -3.476274 3.459855 1.452692 -0.035883 9.085341 -0.559254 -0.218480 -9.759644 -1.439306 4.796167 0.658168 4.340691 2.856899 -3.860928 -8.208399 -1.502834 -2.260493 1.259024 -2.887450 -4.593974 -3.297978 -2.132296 4.550705 -1.213592 2.808663 6.981346 -0.546452 1.493388 -3.048913 -0.260613 -1.205386 -3.662105 1.313488 1.206221 -5.058946 5.619997 -1.411103 10.819871 -2.188921 3.315110 -4.478988 0.496284 -0.084816 -1.923681 -0.924939 6.527015 2.304820 1.586340 -0.266454 -0.121133 -3.678494 3.712248 -PE-benchmarks/finite-automata-algorithm.cpp__main = 0.025191 0.183059 0.808834 0.278248 -0.572738 -1.290353 -0.385451 -1.613400 0.600971 0.338354 0.860436 -0.017545 0.682365 -0.268128 -0.075067 0.233998 0.375119 -0.248245 0.158941 -0.523371 -0.706356 1.115768 -0.041509 0.043389 0.143662 -0.965011 1.005273 0.341629 0.358062 0.854364 0.318355 0.064506 -0.266406 0.433555 -0.109068 0.432556 -0.018249 0.476841 -0.266370 0.216259 0.257705 -0.263129 0.758832 0.195747 0.743206 0.579529 0.266878 0.312055 -0.248253 -0.444962 -0.265746 0.154763 -0.607590 0.243769 -0.572464 -0.201007 0.292860 -0.242142 -0.036649 -0.177871 -0.093478 -0.419987 -0.727933 0.189245 -0.751957 0.238199 -0.472515 -0.601312 -0.218856 -0.210356 0.537967 0.149095 -0.248775 0.023839 -1.213213 -0.098545 0.184663 0.114288 0.601808 -0.136496 -0.282133 -0.219596 -0.879430 -0.726260 0.838299 0.590548 0.335279 0.308573 -0.430612 -0.281836 -0.208517 0.062038 0.644731 0.575381 -0.223300 -0.058000 -0.080794 -0.233043 -0.552333 -1.038850 0.451970 -0.323607 0.440327 0.032916 -0.186394 -0.149112 -0.017893 0.039949 -0.448793 -0.692520 0.041895 -0.669787 0.372563 1.003868 -0.131082 -0.345173 -0.593718 -0.429296 0.209246 0.616644 0.462604 -0.042800 0.981583 0.642588 0.238668 -0.745224 -0.653075 0.328673 0.325038 0.344068 0.282234 -0.723814 -0.517523 0.223253 -0.574502 -1.151031 -0.368434 0.127411 0.490173 -0.605863 -0.210254 0.738973 -0.482415 0.190441 0.785603 0.206945 0.217941 0.040376 -0.675843 0.511953 1.102695 -0.128345 0.459299 -0.599540 -0.475362 0.883525 -0.292897 0.116858 0.281054 -0.360640 -0.565928 -0.139037 0.341207 0.594487 -0.058938 0.357560 0.229639 0.442824 -0.511649 -0.601166 -0.985168 0.089869 1.260904 0.420278 1.140858 -0.926558 0.023816 0.139116 0.740588 0.223449 -0.337047 0.305479 -0.422857 0.486333 -1.261344 -0.915245 1.173801 0.711646 0.755522 -0.028535 0.269853 0.507502 -0.433325 -0.384892 -0.401490 0.425895 0.154165 -0.911678 -0.256060 0.086813 -0.839228 -0.341371 -0.109177 0.469228 0.355521 -0.165052 0.348592 -0.651976 -0.264919 -0.738512 0.474040 -0.369579 -0.114963 0.065810 -0.053405 -0.167486 0.177655 -0.088626 0.226190 0.049547 -0.238716 0.332599 0.415177 0.216361 0.004912 1.122964 0.963920 -0.630973 0.177557 -0.136991 -0.127883 0.957878 -0.196500 0.410078 0.222422 0.678859 0.245908 0.154522 0.766633 -0.367327 -0.337783 -0.752206 -0.174082 0.590272 0.377613 -0.127418 -0.372626 -1.399393 -0.063794 -0.127392 1.360267 -0.036241 1.161527 -0.213347 0.444451 -0.935124 0.198277 0.229579 -0.168938 0.453832 0.218611 -0.456937 -0.150606 -0.295391 -0.817223 -0.683737 -0.213165 -0.275022 -0.579313 -0.126579 -0.036483 -0.436584 -0.084801 0.468319 -0.166658 0.276915 -0.398704 0.094556 -0.540819 0.107073 0.696186 -0.120316 -0.550145 0.539905 0.129881 1.514890 0.109062 0.647532 -0.096478 0.515318 -0.248417 -0.791433 -0.322558 0.924867 0.520499 0.031730 0.200029 0.063095 0.428813 0.498369 -PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = -0.671446 0.924835 6.722026 3.855803 -2.745868 -5.258481 -2.702836 -7.905847 4.144512 0.657258 4.542994 0.191877 1.610577 -1.064418 -0.089723 -0.266337 0.625395 -2.284033 0.723759 -1.940200 -1.452661 6.257249 2.481079 -3.628374 0.147092 -7.825019 4.378154 2.401881 3.466880 4.431197 0.409979 -0.879908 -0.519441 3.730789 -1.760097 0.411717 0.650410 1.171474 -2.303830 0.280854 1.656048 2.645182 4.122803 0.255377 4.434979 1.692221 2.918089 1.040026 -2.206946 -0.679968 -2.731367 4.863716 -3.967725 1.927939 -0.349777 1.359977 0.731813 -4.162598 -1.598150 -3.365017 -0.726902 0.912415 -2.991805 0.503651 -4.163164 1.304267 -1.479401 -1.956754 1.322903 0.391251 4.115806 1.949433 0.660802 -1.125017 -5.064654 1.712750 -0.180761 2.436734 2.965837 -1.774298 -1.052454 1.015818 -2.453230 -3.278281 2.508805 1.975124 0.749564 -0.159422 0.857171 -1.596444 -1.021337 -1.010098 -0.031678 3.373969 -2.081603 1.639574 -1.377810 -0.851847 -2.498957 -2.760540 0.258810 -3.310897 2.260515 2.199123 -0.814196 -0.200810 0.219864 0.608553 -1.938516 -4.226058 0.586073 -1.250061 1.633198 5.306485 -2.091327 -0.753851 -0.824409 -0.861317 -0.637437 4.342990 0.808204 1.492418 4.398755 5.315932 0.837975 -3.405642 -1.681730 1.279925 2.876868 3.531544 3.009086 -4.653312 -2.665626 -0.353232 0.616623 -6.826413 0.409907 1.527696 2.879040 0.054889 -3.939572 1.812216 -1.965752 4.629490 3.447416 1.561067 1.454275 -0.174745 -3.510144 4.726725 8.345390 -1.255481 2.993181 -3.549404 -2.791278 5.150871 -4.055112 2.848769 0.615700 -0.015451 0.293971 -2.940401 0.183637 4.111257 0.974876 1.925511 2.740640 1.226827 -0.176938 -6.288798 -5.487465 0.444118 4.277882 0.021969 7.263810 -3.957369 -2.196994 -0.793771 4.397754 0.343646 -1.095484 1.011957 -2.762810 2.631800 -7.333171 -5.962067 7.217577 6.586986 1.772461 0.224513 3.739882 3.756153 -1.855379 -2.268635 -2.052720 2.486224 1.057156 -2.490188 -0.526931 -0.170484 -3.977352 -2.538890 0.526158 1.628208 2.735943 -2.034589 -1.622322 -0.251485 -4.584530 -3.670595 2.636846 -4.325451 -1.770569 0.603901 -0.063207 -0.342738 1.923938 -1.071443 -0.151707 1.873275 -2.184888 0.542303 2.326859 3.114533 0.644820 4.508383 4.989595 -0.150324 4.171360 2.345875 -1.421206 8.180162 -1.737793 0.933607 1.480270 2.257187 0.152680 1.973670 1.769025 -2.203593 -1.982041 -4.587632 2.531632 0.631532 2.968535 -3.699083 -3.700140 -5.175327 -2.187703 2.652689 3.731014 -0.010972 8.148078 -0.840983 0.884535 -8.191402 -0.336138 3.360205 0.404741 3.685045 2.418486 -3.137857 -4.882269 -1.910608 -2.458246 -0.085516 -2.123501 -3.910978 -2.962872 -2.292084 3.195751 -2.568642 1.702348 4.746527 -0.544339 1.944233 -1.794669 -0.232254 -2.448040 -1.372667 2.052638 0.821118 -3.949647 4.639776 -1.258668 9.533121 -2.227427 3.313235 -3.226540 1.985540 -0.897704 -2.146590 -0.733737 6.128922 2.744081 0.585738 0.175684 -0.350220 -1.344759 3.006739 -PE-benchmarks/subset-sum-problem.cpp__main = 0.210216 0.688931 2.249691 0.563627 -1.399620 -1.865955 -1.068930 -3.363599 1.040009 0.380686 1.651056 -0.390169 0.583162 -0.142705 -0.021043 0.507317 0.560584 -0.641647 0.594470 -0.838537 -1.131803 1.755919 0.082697 -0.189217 0.329391 -2.328549 1.310572 0.744284 1.095416 0.933944 0.447878 -0.283463 -0.668699 1.037092 -0.233481 0.390231 0.660339 0.612009 -1.213788 0.789605 0.071051 0.287697 1.257723 -0.260612 1.468370 0.798106 0.563811 0.779395 -1.012596 -0.277594 -0.514289 1.590444 -0.961267 0.594047 0.132651 -0.203414 -0.143819 -1.151235 -0.593993 0.012639 -0.520121 -0.452086 -0.842351 0.496636 -1.232193 0.441859 -0.672094 -0.874070 0.539894 0.412909 1.180143 0.450935 0.042608 0.466280 -1.766081 0.475052 0.486477 0.880533 0.877937 -0.698850 0.467394 0.410516 -1.072121 -1.321677 0.974011 1.394729 0.644064 -0.462817 -0.391756 -0.268584 -0.146194 -0.406653 0.589953 1.138400 -0.870243 0.126907 -1.252880 -0.564515 -1.451158 -2.051771 0.216473 -0.882917 1.127569 0.175966 -0.573712 -0.110922 0.163788 0.516048 -0.502080 -1.369572 0.010532 -0.688014 0.890735 2.463521 -0.361654 -0.511161 -0.816171 -0.707408 -0.444042 0.975422 0.619721 0.289085 1.707418 1.835215 0.506627 -1.118259 -1.318659 0.305755 0.687496 1.094990 1.085898 -1.727142 -0.943827 0.023319 -0.400712 -2.280878 -0.383284 -0.228583 0.854133 -0.711538 -0.251133 0.125430 -0.925983 1.333887 0.808484 0.428902 0.327174 -0.139238 -1.090637 1.478553 2.257417 -0.391273 0.996499 -1.037820 -0.661135 0.899470 -0.710500 0.746587 0.578221 -0.255859 -0.503642 -0.835540 -0.103182 1.140910 0.294984 0.529545 0.435060 0.586326 -0.790944 -1.551345 -1.897349 0.591761 1.639115 -0.316099 1.981538 -1.468053 -1.116360 -0.127994 1.964685 0.405047 -0.572714 0.630492 -1.012977 0.908352 -1.205518 -1.858192 2.099782 2.248270 0.790674 -0.263842 1.228557 0.986302 -2.105860 -1.189796 -0.811209 0.839667 0.089801 -1.996861 -0.893165 0.385856 -1.274595 -0.377099 -0.058932 0.873502 1.022845 0.252353 0.210613 0.146412 -1.271321 -0.968185 1.265814 -0.833519 -0.378004 0.404640 -0.032722 -0.022559 0.911875 -0.870216 -0.116501 0.414348 -0.905150 0.592079 0.951189 0.959522 -0.155761 2.054122 1.531113 -0.027068 1.603959 0.300855 -0.616479 1.894331 -0.335202 0.652906 0.375275 0.284260 -0.483945 0.335318 1.081315 -0.723546 -1.315820 -1.512527 0.020061 0.043774 0.891095 -0.319561 -1.355472 -2.013070 -0.452142 0.646589 1.474513 0.288675 2.351017 -0.157248 0.491464 -2.355128 0.019762 0.571420 -0.118250 1.354274 0.466230 -1.025694 -1.401376 -0.487195 -1.520645 -1.271400 -0.530680 -1.061699 -1.164928 -0.764962 1.223707 -0.238251 0.048654 1.518922 -0.026720 0.739520 -0.407820 -0.186643 -0.819293 -0.195320 1.500052 -0.264019 -1.366441 1.468242 0.053849 3.987798 -0.125134 0.795723 -0.560157 -0.141610 0.291475 -0.877723 -0.323578 1.859727 1.024940 0.592646 -0.343023 -0.074967 -0.334218 0.920362 -PE-benchmarks/partition-problem.cpp__main = 0.410604 0.755410 2.152410 0.418503 -1.215358 -1.548863 -0.932650 -3.197426 0.972793 0.317606 1.426118 -0.437584 0.456988 -0.078448 -0.059757 0.591383 0.492115 -0.480799 0.579518 -0.698513 -0.894689 1.553130 -0.094051 -0.058377 0.290802 -2.166576 0.926471 0.661654 1.236890 0.622356 0.403720 -0.352480 -0.603727 0.888130 -0.249469 0.233388 0.716240 0.501410 -1.396781 0.701881 -0.193805 0.316949 1.037573 -0.356968 1.281662 0.503219 0.542576 0.706307 -0.821371 -0.102839 -0.491289 1.758021 -0.681355 0.561902 0.335172 -0.303147 -0.353258 -0.993193 -0.542708 0.308278 -0.534245 -0.312299 -0.624820 0.441412 -1.052239 0.360621 -0.579022 -0.763746 0.571842 0.469478 1.037038 0.423802 0.179554 0.454518 -1.698979 0.529247 0.465731 0.860336 0.724538 -0.572682 0.753277 0.433372 -0.847196 -1.170431 0.878527 1.490988 0.537565 -0.544556 -0.434203 -0.222826 -0.121159 -0.454571 0.493123 0.985973 -0.942819 0.186984 -1.468284 -0.500057 -1.305210 -1.993020 0.080404 -0.823669 1.041102 -0.049056 -0.391552 0.038127 0.320927 0.546073 -0.267615 -1.193828 0.006732 -0.454317 0.780560 2.410663 -0.306420 -0.492262 -0.697011 -0.577876 -0.694010 0.736854 0.513576 0.328891 1.446616 1.623784 0.572276 -0.970043 -1.189951 0.349147 0.541318 1.056034 1.003887 -1.566514 -0.780450 -0.019475 -0.241020 -2.151760 -0.316060 -0.251138 0.740618 -0.664836 -0.026513 -0.245855 -0.795773 1.317594 0.580829 0.272933 0.322019 -0.120036 -0.858003 1.294849 1.998206 -0.371058 0.887597 -0.943448 -0.440927 0.486841 -0.591459 0.780986 0.403568 -0.129896 -0.314030 -0.840851 -0.201721 1.040145 0.269580 0.394738 0.279040 0.473822 -0.840024 -1.457312 -1.694734 0.523898 1.285287 -0.537817 1.622085 -1.189164 -1.275789 -0.134097 1.817690 0.319391 -0.452274 0.681387 -1.067261 0.830153 -0.729940 -1.673736 1.799656 2.199235 0.604594 -0.367330 1.187124 0.845623 -2.255282 -1.218612 -0.680405 0.683781 0.057003 -2.134551 -0.999260 0.372570 -1.101171 -0.225254 -0.002551 0.738279 0.912816 0.565649 0.395079 0.323504 -1.206735 -0.811272 1.320827 -0.686094 -0.294672 0.365046 0.057724 -0.004806 0.980592 -1.021330 -0.201937 0.547886 -0.867727 0.561609 0.824515 0.852049 -0.258093 1.837755 1.290401 0.226182 1.776590 0.298966 -0.686009 1.631020 -0.296626 0.531912 0.276250 -0.020277 -0.729408 0.367737 0.854064 -0.679842 -1.368270 -1.363051 -0.101851 -0.190295 0.779735 0.003618 -1.364760 -1.568178 -0.453644 0.611617 1.080947 0.379590 2.072396 -0.213727 0.452243 -2.184286 0.002849 0.478007 -0.109084 1.350059 0.417060 -0.948299 -1.304385 -0.389767 -1.358898 -1.374341 -0.474239 -1.156226 -1.022826 -0.886552 1.361510 -0.145386 0.038442 1.370954 0.066715 0.788988 -0.456705 -0.193482 -0.731636 -0.104506 1.458105 -0.279998 -1.276087 1.236726 0.030228 3.801989 -0.143901 0.612019 -0.561795 -0.377223 0.377775 -0.765369 -0.276045 1.686360 0.937540 0.670437 -0.546266 -0.171054 -0.504930 0.793775 -PE-benchmarks/boruvkas-algorithm.cpp__main = -6.060267 -3.540214 8.150754 3.873783 -4.582347 -13.931638 -4.620674 -16.142928 8.586232 3.478116 13.542913 1.953926 8.140526 -7.458053 3.950746 5.776422 6.760904 -7.009782 0.966395 -5.175248 0.852827 15.519006 5.387712 -0.975450 0.377116 -8.969082 -0.236353 4.099742 3.816543 6.881979 3.378198 -0.805470 -1.480692 2.702872 -1.896898 9.474525 2.426443 2.496593 -5.541677 -2.463990 -0.788865 -2.970039 7.883009 -2.263598 13.389902 -3.475440 11.338826 1.468606 -6.693379 -6.884893 -7.197216 13.039413 -8.551202 1.912181 -0.888192 -2.303305 2.565888 -2.938112 -4.789917 -10.124509 -3.119949 -2.308618 -7.835661 0.417719 -3.234276 5.656605 -1.365332 -1.583968 -0.581544 -1.058912 7.827929 3.213545 1.377870 4.688366 -11.205329 0.299368 0.218917 2.355692 4.353174 0.124715 -2.144164 -3.819297 -3.377740 -5.515253 11.532491 3.008489 2.487548 3.053455 -8.713792 5.566234 -4.887899 -1.435396 2.539423 1.288615 -8.737778 -1.196451 9.567767 -3.692686 -5.358797 -4.622114 2.715886 -4.666152 0.914493 3.625392 4.234009 -1.444791 -11.299434 0.232183 -13.123129 -8.630425 3.670656 -3.315103 -4.390677 7.677415 -10.351938 2.902123 -3.801965 1.566366 0.705525 6.744707 3.573476 6.763144 5.686447 9.150778 2.345854 -7.396998 -4.016608 3.279862 14.377032 4.233352 2.163329 -4.562552 -6.236264 3.584281 -6.439990 -12.213462 -7.797284 11.072571 9.690559 5.316653 -7.672517 3.215394 -0.766671 11.483349 8.763408 0.335868 0.052957 1.963892 -10.102545 7.492867 11.886387 -4.116560 10.591417 -0.742597 -0.108857 9.432360 -9.966353 2.379935 5.936290 -1.872279 -4.426320 -3.001808 -2.686222 5.571689 8.171212 5.952758 -5.809481 6.387575 -2.393721 -12.340185 -15.997374 -2.976102 10.441406 2.353949 10.696994 -7.212075 -7.131657 0.322272 6.536895 -3.302118 -9.520573 2.307574 -8.789344 5.508276 -15.970221 -10.520141 21.533019 14.907741 10.017517 5.104971 9.149174 10.359792 -10.638182 -0.231979 -1.212042 6.484119 2.027129 -14.510828 -1.804490 0.862654 -11.166021 -9.259480 -4.215247 3.828851 -5.742226 3.748448 8.372620 0.899230 -3.394718 2.991071 2.282909 -4.674325 -6.186103 -2.015940 0.037079 3.664173 2.534505 -4.554692 5.245840 3.636462 -10.328767 -0.211388 2.999113 6.551278 8.032612 13.265393 16.017848 -2.659955 12.154442 -3.321416 -6.025943 4.872522 -2.583083 2.351300 -1.713670 3.624651 5.149302 0.034692 6.594822 -3.647740 -5.073150 -7.305370 0.077779 6.669139 8.984739 -1.000296 -12.009164 -12.502236 -0.154560 5.185345 10.644887 -4.346403 13.503943 -7.189909 2.808799 -20.134280 1.852661 3.123372 0.147607 2.391387 1.854066 -3.288504 -10.148329 -3.150114 -7.446779 -7.725697 -1.747967 -5.581169 -3.269025 -11.249348 12.244414 -12.030651 -1.378104 3.030911 1.014539 10.439243 4.478062 -0.849738 -6.787037 4.807915 3.839491 2.229215 -5.986933 9.646516 0.948470 22.672766 -2.954866 4.550430 -4.046604 9.081287 -3.958777 -6.542101 -0.321469 10.337841 14.511120 -2.443825 0.763483 -0.029317 -0.210888 5.904155 -PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = -1.440419 -0.405860 3.698383 1.767392 -1.166534 -3.068335 -1.508040 -3.995826 2.586095 0.673102 3.016566 0.856392 1.339820 -1.135436 0.739272 0.457602 0.407355 -1.739332 0.195772 -0.932164 0.766555 4.034632 2.382284 -2.265218 -0.063444 -4.176128 1.009280 1.276428 1.779261 2.615042 -0.045719 -0.500202 -0.322891 1.785807 -1.224660 1.150004 0.665635 0.673671 -1.201930 -0.396659 0.558497 1.484824 1.650620 -0.347514 3.635471 0.038232 2.359337 0.277423 -1.383698 -1.143254 -1.689397 3.643860 -2.599184 1.223423 -0.179765 1.030636 -0.266973 -1.910269 -1.392269 -3.942924 -0.091654 0.912690 -1.761012 0.001781 -1.614576 1.182660 0.091338 -0.611909 0.393793 -0.031378 2.667242 0.997886 0.796267 -0.152969 -2.893124 0.584768 -0.621464 1.363110 1.435967 -0.818285 -1.435089 -0.070936 -0.434344 -1.671710 1.583254 0.976483 0.017021 0.173112 -0.117215 0.479851 -1.090297 -0.647169 -0.495233 1.557922 -2.238790 0.778057 1.095356 -0.177600 -0.767187 -0.185150 0.193404 -2.003101 0.648121 1.515004 0.975632 -0.363711 -1.249067 0.500556 -2.402859 -2.349310 0.985613 -0.092055 -0.553990 2.099755 -2.021730 0.847633 0.332142 0.139826 -0.235635 2.659716 0.350290 1.667997 1.815740 3.127407 0.521803 -1.949323 -0.698386 1.257031 3.309875 2.036080 1.200813 -2.447781 -1.444701 0.208094 -0.210988 -3.610667 -0.191754 2.406837 2.203490 1.010851 -2.906198 0.765856 -0.607458 3.486918 2.217802 0.701488 0.397506 0.142408 -2.609643 2.579621 5.301726 -0.935760 2.314936 -0.781247 -0.769803 3.226241 -3.298407 1.878927 0.933539 0.249770 0.182881 -1.707384 -0.771458 2.227510 1.862065 2.096603 0.236975 0.992821 -0.119099 -4.190171 -3.714600 -1.319999 2.367448 -0.024424 4.018022 -1.813332 -1.954335 -0.702709 2.600818 -0.586852 -1.382323 0.279185 -1.884343 1.582941 -4.514589 -3.144987 5.218647 5.020255 1.764928 0.941476 3.223185 2.855229 -1.311380 -0.660798 -0.367681 1.391833 0.493281 -1.553825 -0.113944 -0.170851 -2.834840 -2.415133 -0.281426 0.673429 -0.389866 0.402794 -0.197684 1.532755 -2.185884 -0.626735 0.438862 -2.376636 -1.579347 -0.196722 0.390956 0.181759 0.568494 -1.443875 0.549530 1.907891 -2.123305 0.346284 1.380626 1.548803 1.715966 2.511186 3.249826 0.037217 3.134107 0.741092 -1.155650 3.979883 -0.791971 0.302864 0.439471 1.013088 0.595647 0.720001 0.443811 -1.197399 -0.757491 -2.577492 1.426855 0.805776 2.342537 -1.644493 -3.376059 -2.163723 -0.792845 2.134079 1.890505 -0.734935 4.760708 -1.048100 0.840413 -6.204284 0.106915 1.904097 0.098479 1.179790 1.321649 -1.144549 -4.642228 -0.976626 -0.782255 -0.709957 -1.254292 -2.542683 -0.989016 -2.521082 2.801760 -2.636614 0.681461 2.263369 0.158567 2.296828 -0.310985 -0.190967 -1.705294 0.037050 0.350764 0.915991 -2.328139 2.628071 -0.556477 6.073506 -2.007614 2.011606 -1.741033 2.203687 -1.159049 -1.086664 0.062003 3.516373 2.640805 0.129227 0.141974 -0.220202 -1.160216 1.447002 -PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = -9.855547 -1.298608 31.773196 18.006695 -13.215463 -22.687056 -12.530731 -31.144645 20.415705 3.044211 22.500780 7.102774 7.725510 -8.770054 4.022479 -0.809951 2.708134 -12.384119 -0.271421 -8.158632 2.489484 29.312985 19.218348 -23.242840 1.243637 -35.822640 12.490564 10.949950 14.660598 20.678737 -0.677690 -3.695795 -4.355977 16.115686 -9.261824 4.536305 4.277199 3.560424 -10.507786 -2.812397 9.049460 13.897736 15.397982 -1.779209 26.361285 1.328455 16.605868 2.984628 -13.145086 -6.638660 -13.308447 28.213581 -19.512706 11.233713 0.878269 11.484883 -1.070146 -19.244671 -10.410862 -29.176671 -0.551102 7.041356 -12.310692 -0.095812 -14.688838 7.964004 0.212548 -5.848797 7.050202 -0.921437 20.943512 7.271793 5.523937 -4.610753 -20.080156 5.642648 -3.917732 12.946551 12.344388 -5.504705 -9.607426 1.304011 -4.787477 -12.729709 8.923182 5.391975 0.004541 -0.685309 3.163703 -1.176646 -4.938478 -6.129928 -5.130055 13.079889 -18.790834 6.800955 2.395407 -2.318629 -7.260047 -2.226533 0.602842 -15.835601 6.895435 13.651342 0.477330 -1.410921 -4.254636 3.851170 -14.597764 -18.297971 5.546936 -0.488080 -0.429019 19.696814 -13.661822 2.609820 2.218901 -0.271438 -3.434731 21.374387 0.745109 12.163205 17.512072 26.706580 3.953207 -14.706119 -4.506275 8.497895 22.425759 17.339020 12.165513 -20.707910 -11.393912 0.588470 2.048381 -29.924800 1.568375 13.922256 18.036685 9.216033 -24.299135 5.004701 -6.330391 27.551458 14.917416 6.607444 4.239129 -0.186649 -19.924179 22.485731 43.281818 -6.924923 16.394255 -9.226896 -9.649752 26.082618 -24.226969 15.078814 5.304241 1.824000 3.841170 -14.677302 -5.081518 18.762623 10.864481 13.215096 6.303387 6.547698 0.103817 -34.800557 -28.697352 -7.283268 16.576198 0.423545 34.482171 -15.687914 -13.666743 -8.088617 22.545190 -3.943580 -8.807227 2.558494 -14.308767 12.308852 -33.748253 -26.029830 39.777979 39.901788 9.327594 6.555168 25.781183 20.215149 -8.871677 -6.984424 -5.880561 10.049790 6.933648 -7.196561 0.328365 -1.258128 -21.204868 -17.519341 1.280725 5.510570 3.988742 -3.366959 -6.416363 11.475163 -20.666597 -10.139854 6.324806 -20.946191 -10.918179 0.911371 1.910365 0.872898 6.659539 -8.819028 -0.135233 11.669238 -14.027288 2.351792 10.275320 15.277156 10.443145 18.033461 23.881744 1.557412 23.858684 9.792099 -9.629715 37.747785 -8.208224 2.378147 5.088340 8.295686 3.235596 7.441019 3.279034 -9.952366 -4.492885 -21.351981 13.811091 2.318094 17.285486 -20.968887 -24.039199 -18.733431 -9.077764 16.895285 12.061612 -4.124303 39.746027 -6.937291 2.959207 -49.022801 -1.497424 18.148063 2.018568 12.339449 11.383234 -11.302662 -37.778048 -7.916346 -6.608687 1.513394 -10.556944 -19.255982 -10.397554 -16.506297 23.027350 -17.017197 8.545664 22.768216 -0.636035 15.794381 -4.936841 -1.649512 -11.779800 -4.468737 1.410422 7.966893 -18.742325 23.356113 -5.442946 46.453721 -14.820501 15.971528 -15.551533 14.107921 -7.369172 -8.887159 -0.696904 27.871561 18.052110 3.081631 1.416008 -1.509237 -11.785275 13.186484 -PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = -3.001989 -0.525674 8.112328 4.439476 -3.215199 -7.005865 -3.405257 -8.761331 5.503724 1.184661 6.544630 1.812362 2.723838 -2.434114 1.446214 0.612304 1.097520 -3.550742 0.218915 -2.274284 0.700223 8.634605 5.061244 -5.255080 0.025878 -8.938612 2.846504 3.060970 3.750313 5.606874 0.076951 -1.020787 -0.924226 4.098598 -2.587852 2.183440 1.064394 1.423020 -2.637526 -0.804656 1.809261 2.976708 4.190107 -0.554905 7.472712 0.328543 5.240843 0.762154 -3.473576 -2.362035 -3.906514 7.841170 -5.660685 2.725199 -0.284080 2.351643 0.045319 -4.464440 -2.818644 -8.046751 -0.381531 1.598101 -3.997383 -0.021026 -3.799839 2.393884 -0.155921 -1.605333 1.194573 -0.073586 5.756649 1.994885 1.354812 -0.590825 -6.112253 1.269692 -1.155560 3.161959 3.353165 -1.491063 -2.871856 -0.017394 -1.419939 -3.699242 3.334859 1.557309 0.309652 0.287576 -0.238002 0.528742 -2.046659 -1.361056 -0.907588 3.383561 -4.821772 1.725583 1.873252 -0.680527 -2.260445 -0.819859 0.475392 -4.274699 1.604943 3.400662 1.174562 -0.876123 -2.629989 0.729304 -4.964929 -5.323100 1.767005 -0.590328 -0.800797 4.887648 -4.296679 1.355474 0.551292 0.051812 -0.497836 5.805535 0.939742 3.342873 4.332977 6.940862 1.107158 -4.283222 -1.574442 2.245833 6.802935 4.480794 2.906912 -5.220464 -3.330764 0.395255 -0.317043 -8.126464 -0.173508 4.959553 4.864921 2.504296 -6.365910 1.783521 -1.574713 7.340906 4.594333 1.838723 1.020705 0.143914 -5.616109 5.756187 11.381188 -2.036190 5.030434 -1.927995 -2.181944 7.383764 -6.937809 3.913476 2.054126 0.283045 0.320662 -3.627946 -1.568989 4.985787 3.593722 4.049471 1.192285 2.068202 -0.215797 -9.180856 -8.202951 -2.082765 5.336593 0.277506 8.939576 -4.333657 -3.848141 -1.403986 5.733148 -1.342989 -3.054726 0.652835 -3.930497 3.498873 -9.862783 -7.025936 11.319471 10.482231 3.239725 1.949653 6.831642 5.988566 -2.847132 -1.701162 -1.412932 3.118535 1.346059 -2.986310 -0.020975 -0.290278 -6.119324 -4.867384 -0.334085 1.624492 -0.130006 -0.148536 -0.757848 2.658119 -4.997997 -1.924514 1.242728 -5.281031 -3.218376 -0.126637 0.529184 0.333771 1.478369 -2.547617 0.725016 3.398410 -4.465229 0.585925 2.795430 3.752542 3.509688 5.843870 7.114578 -0.094371 6.713079 1.907531 -2.535689 9.259144 -2.044881 0.817995 1.063078 2.771535 1.314200 1.760588 1.417509 -2.643444 -1.754650 -5.730052 3.191613 1.609326 4.935228 -4.465558 -6.795993 -5.486402 -1.969427 4.557466 4.239722 -1.683821 10.525093 -2.191300 1.472900 -13.326264 0.080487 4.337993 0.248095 2.935703 2.884645 -2.809288 -9.602053 -2.280330 -1.965594 -0.784763 -2.553771 -5.158806 -2.501327 -5.011230 5.812120 -5.527938 1.692884 5.204758 -0.070490 4.568082 -0.705230 -0.404938 -3.425294 -0.405722 1.102575 1.990377 -5.085232 6.276933 -1.228127 13.195172 -3.913369 4.444231 -3.865684 4.423932 -2.210382 -2.593219 -0.136974 7.691868 5.612530 0.310903 0.446476 -0.147570 -2.452303 3.442261 -PE-benchmarks/rabin-karp-algorithm.cpp__main = -0.049656 0.268692 1.437130 -0.321693 -0.852500 -1.738230 -0.701661 -2.894960 0.911067 0.592511 1.520223 -0.133925 0.917660 -0.196046 0.118575 0.753101 0.660714 -0.922675 0.586776 -0.817494 -0.583354 1.606705 -0.073182 0.874122 0.211095 -1.862345 0.825222 0.211282 0.801858 1.011534 0.568635 -0.246846 -0.678520 0.502615 0.315096 0.979459 0.681844 0.464486 -0.774829 0.669994 -0.269251 -0.439863 0.964045 -0.044204 1.481094 0.433190 0.370231 0.649233 -0.396935 -0.729144 -0.383048 0.853924 -0.944668 0.252858 -0.071884 -0.569666 -0.198499 -0.369913 -0.382301 0.160989 -0.561618 -0.878805 -0.732999 0.536108 -0.842071 0.565424 -0.995312 -0.442729 -0.243322 -0.195131 0.908488 0.372871 0.102616 0.991041 -1.855664 0.073562 0.195582 0.371698 0.682964 -0.519808 -0.120361 -0.053898 -1.011381 -1.144522 1.082284 1.477612 0.353119 -0.154474 -1.004566 0.301807 -0.497288 -0.187327 0.777138 0.750591 -0.904995 -0.243878 -0.383137 -0.490081 -0.987135 -1.999937 0.459927 -0.531614 0.701389 -0.213806 -0.031585 -0.506018 -0.553789 0.140215 -0.826720 -1.019676 0.346608 -0.539926 0.421119 1.777665 -0.616347 -0.109278 -1.104072 -0.528082 0.081233 0.724597 0.717620 0.243422 1.138159 1.256076 0.530832 -0.962512 -1.188726 0.554805 0.871472 0.455539 0.550461 -1.120189 -0.738672 0.436914 -0.855607 -1.666254 -0.787275 0.290200 0.891994 -0.565657 0.150796 0.093048 -0.689637 0.794634 1.111623 0.114199 0.181934 0.012550 -1.062205 0.964214 1.596665 -0.286508 0.995035 -0.781477 -0.022251 0.862544 -0.833155 0.367654 0.589169 -0.108347 -0.997304 -0.352866 -0.102842 0.722050 0.454193 0.771524 -0.210420 0.750354 -0.709152 -1.019171 -1.612951 0.025590 1.808864 -0.018979 0.900848 -1.224987 -0.461488 0.151153 1.415073 0.569381 -0.916699 0.639154 -0.848495 0.659046 -1.201750 -1.184694 1.875945 2.003610 1.139001 -0.018279 0.505441 1.185510 -1.957352 -0.623832 -0.488126 0.795177 -0.432048 -2.395598 -0.863820 0.268538 -1.163697 -0.581453 -0.410526 0.816886 0.539120 0.646779 0.991695 0.142732 -0.352905 -0.616690 0.998860 -0.279112 -0.662154 0.116467 0.023724 0.121406 0.431437 -0.594803 0.565131 0.728151 -0.848647 0.552330 0.962521 0.383701 0.037521 1.833538 1.171794 -0.361204 0.736873 -0.401695 -0.416352 0.669205 -0.131882 0.673878 0.102149 0.190681 -0.028619 0.172824 0.941255 -0.556039 -1.219881 -0.942804 -0.401457 0.323869 0.920601 0.708392 -1.579871 -1.804129 0.127469 0.271956 1.637913 0.135856 1.649268 -0.288934 0.743052 -1.588880 0.266309 0.229344 -0.152626 0.709702 0.161081 -0.495019 -0.209070 -0.344373 -1.428444 -1.614256 -0.243074 -0.597408 -0.680456 -0.838238 0.996729 -0.496741 -0.436553 0.287919 0.145844 1.002760 0.118303 -0.126478 -1.129060 0.502933 1.346751 -0.285939 -0.833346 1.010254 0.312449 2.710129 -0.070359 0.473719 0.046580 0.356936 -0.074160 -0.965829 -0.227778 1.400201 1.149874 0.217715 -0.368669 -0.316763 0.376363 0.473601 -PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = -3.068283 2.921301 19.440091 13.286433 -8.526550 -12.217306 -6.687902 -16.125433 9.001712 -0.954286 9.755750 2.006516 1.221478 -2.563131 0.754718 -4.076127 0.723673 -3.606779 0.207426 -4.554219 -1.210855 13.246945 9.486681 -16.812512 0.928000 -20.591142 12.443725 8.089913 8.624793 11.459508 -0.830403 -2.654496 -2.486598 10.545510 -6.094820 -2.597787 1.145381 1.320789 -6.697567 -0.449226 6.794054 11.800411 8.932016 -1.221340 10.455633 4.581293 8.882878 2.652977 -7.974992 -0.546648 -7.289186 14.333480 -9.994663 6.928253 1.162900 7.524136 1.142614 -13.105009 -4.390643 -13.602728 0.197355 5.397658 -6.775993 0.127982 -11.970039 2.716102 -1.731638 -5.662927 6.739962 1.715681 10.489705 4.367516 1.793148 -6.369471 -8.575658 5.006856 -1.588615 10.190710 7.181005 -5.112017 -2.648001 3.847554 -3.950103 -6.588759 1.406553 1.256398 1.532879 -2.392855 6.073620 -4.926967 -0.581890 -3.681530 -4.281620 7.559272 -6.088505 6.036869 -5.692097 -0.636014 -4.959360 -2.374374 -0.985446 -8.878862 5.436689 8.896779 -4.112655 -0.112481 1.771025 2.622792 -3.024950 -10.690213 0.708622 -0.440742 4.996773 12.988278 -5.495233 -0.757332 0.931597 -0.961308 -2.861283 13.023751 -0.841805 5.157506 10.428988 16.064872 0.885164 -7.860903 -2.541320 2.306577 7.774443 11.345236 9.790624 -12.370243 -7.082400 -3.199242 4.275888 -16.018599 5.475390 4.266833 8.660396 4.410767 -14.226279 3.146566 -5.028484 14.440229 6.193109 5.473197 3.541619 -1.428817 -8.969774 13.782494 22.963083 -3.828348 6.693644 -8.275714 -8.712706 13.676112 -9.438047 8.064595 1.891531 1.183225 4.614818 -8.957489 -0.950415 11.461783 4.256811 5.455819 10.116878 1.684799 2.046601 -19.555083 -12.175417 1.704744 6.888966 -1.610368 20.827718 -9.041945 -6.218237 -5.011180 12.418473 -1.709359 -1.889109 0.155322 -7.066734 6.363035 -17.298142 -15.410708 17.638734 18.553237 -0.351952 0.755413 11.961063 10.377703 -2.512120 -4.387987 -5.462899 5.678797 2.867498 0.605388 1.078740 0.073449 -9.768636 -6.415316 4.626297 3.686574 8.163176 -7.547842 -10.293421 2.727818 -15.557054 -10.910226 5.370757 -12.873986 -3.092363 2.683787 -0.423167 0.908317 4.863646 -2.947613 -3.414362 5.472641 -5.479190 0.614534 4.761368 10.801389 3.621335 9.162754 9.974319 3.203509 12.305987 10.384604 -5.532082 26.836752 -3.700946 1.707811 4.186568 6.030029 -0.275830 6.007000 2.173800 -5.477867 -3.439120 -13.625864 9.143744 -0.610422 7.938859 -16.167776 -8.558333 -11.773870 -7.275049 9.441361 5.593108 -1.192056 22.405145 -1.484916 -1.086236 -23.292084 -2.626412 10.883020 1.457736 8.973384 7.420493 -7.783797 -18.922832 -4.511572 -3.442258 5.217279 -6.724187 -10.473327 -7.816406 -4.010665 9.303568 -5.474043 7.045532 15.179471 -0.806321 4.335708 -4.138521 -0.711449 -3.763399 -7.624616 1.819328 4.486069 -11.898748 13.594628 -4.087194 23.867712 -6.911852 8.394540 -10.848816 3.763139 -1.472997 -4.055798 -1.656272 15.900154 6.421321 2.545276 1.416272 0.234532 -7.295361 8.120256 -PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.011716 0.308090 1.773838 -0.138585 -0.757535 -1.888130 -0.856315 -3.849221 1.392363 0.658426 1.837840 -0.295035 0.945971 -0.318063 0.094748 1.038137 0.549321 -1.223947 0.841829 -0.781304 -0.447701 2.293818 0.074167 1.003644 0.019214 -2.407196 0.646293 0.157920 1.402361 0.968802 0.549762 -0.557502 -0.440115 0.688687 0.242428 1.131725 0.859415 0.484017 -1.164665 0.544040 -0.687903 -0.341808 1.132566 -0.217337 1.923083 0.058176 0.887209 0.624837 -0.353308 -0.530953 -0.658856 1.694436 -1.237054 0.296847 0.262812 -0.873808 -0.337639 -0.549473 -0.631434 0.287674 -0.932790 -0.815277 -0.848924 0.622715 -1.046280 0.774453 -1.166579 -0.339506 -0.199392 0.178212 1.299102 0.824039 0.478401 1.187107 -2.389820 0.445778 0.169960 0.447012 0.740732 -0.693947 0.241798 0.112898 -1.004704 -1.369101 1.538304 1.908141 0.293118 -0.317185 -0.988253 0.480840 -0.690843 -0.475096 0.666706 0.934563 -1.072232 0.002806 -0.464386 -0.519142 -1.144980 -2.463617 0.267709 -0.885596 0.871448 -0.293134 0.374207 -0.405601 -0.461269 0.239961 -0.938027 -1.469958 0.461217 -0.311331 0.531510 2.171581 -0.927359 0.071798 -1.095387 -0.360239 -0.324067 0.809610 0.887595 0.607875 1.273931 1.648188 0.654302 -1.089473 -1.278489 0.728779 1.144512 0.728869 0.690546 -1.442444 -0.866510 0.474990 -0.476665 -2.125672 -0.973586 0.776134 1.050746 -0.535080 0.100508 -0.194676 -0.472916 1.375533 1.385546 -0.110548 0.228076 0.068515 -1.110108 1.372547 2.044494 -0.359492 1.216748 -1.083504 0.153811 0.971267 -1.440901 0.640280 0.538817 0.202206 -0.941321 -0.717128 -0.180702 0.906632 0.689016 0.769054 -0.346419 0.859366 -0.802012 -1.568034 -1.909710 0.084212 1.960735 -0.389366 1.048068 -1.250102 -1.015519 0.296073 1.456083 0.745603 -0.955900 0.869970 -1.381711 0.866420 -1.519800 -1.614573 2.344110 2.560127 1.392308 -0.049639 0.715978 1.676158 -2.506541 -0.863461 -0.515223 1.042566 -0.515065 -3.246083 -1.272041 0.170822 -1.415493 -0.802573 -0.481617 0.860273 0.643593 0.972967 1.164572 0.203577 -0.675476 -0.557382 1.402811 -0.454299 -0.931764 0.000686 0.139462 0.254705 0.737059 -0.854126 0.800620 1.107398 -1.155522 0.565139 1.182050 0.523925 -0.040206 2.215044 1.652311 -0.113996 1.456212 -0.285282 -0.559165 0.750945 -0.149085 0.653084 0.064607 -0.130088 -0.273662 0.347550 0.999443 -0.728461 -1.723402 -1.077497 -0.270582 0.213769 1.228598 0.969387 -2.175235 -1.885371 -0.092334 0.655960 1.532748 0.328129 1.998618 -0.534632 0.884502 -2.250967 0.245429 0.303107 -0.028167 1.138172 0.256730 -0.667222 -0.220651 -0.482701 -1.521886 -2.100954 -0.498077 -1.156829 -0.701461 -1.403820 1.599778 -0.745820 -0.436802 0.310735 0.357312 1.319414 0.019854 -0.197515 -1.486796 0.674433 1.669959 -0.371559 -1.097406 1.161316 0.158989 3.614984 -0.471887 0.391563 -0.332209 0.372134 -0.137875 -0.936091 -0.057116 1.822163 1.458462 0.114466 -0.710072 -0.561279 0.124525 0.534659 -PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = -11.850660 1.873726 50.330735 27.074313 -11.717692 -28.817063 -14.423711 -37.473658 22.946995 1.715882 29.568701 6.961491 6.306002 -5.757081 9.591408 -0.318769 -7.014833 -13.934840 5.486505 -6.917466 10.089653 36.290374 38.896141 -33.529326 -2.162581 -50.013502 20.364611 17.731572 29.799588 29.290790 -4.790705 -10.073226 0.237403 26.181908 -15.799431 1.350671 -6.471414 5.519023 -11.221188 5.202753 8.259590 30.240841 8.129718 -3.249991 32.264313 8.874630 34.222256 1.606599 -13.191237 -6.080117 -23.968482 49.332176 -34.812234 11.612979 1.173700 19.001877 -10.220891 -26.302026 -16.280952 -45.332998 3.497460 19.267861 -22.716096 4.645327 -30.646234 11.135786 -12.545715 -4.489014 11.239206 12.914064 31.212325 13.293070 7.357853 -10.813143 -23.835011 12.630539 -13.456853 22.334211 17.060801 -21.350144 -15.538954 13.193927 2.093312 -17.571076 7.461451 0.865036 -2.191385 -12.896102 17.169272 -2.615180 -12.580501 -6.243969 -18.215144 20.986340 -26.553877 21.765240 -5.301743 3.638410 -7.748352 3.421400 -4.916802 -30.564783 10.146373 21.506940 8.174966 -7.205678 -11.689186 3.440066 -15.143393 -33.778254 -2.585728 7.958860 3.884682 25.437053 -24.320756 14.751307 9.944323 6.561803 -5.353505 33.340358 7.427740 19.811197 24.532475 38.277813 -0.094032 -16.952667 -2.378792 9.561142 27.839995 31.957908 20.636833 -30.085599 -19.436951 -9.288433 16.667651 -40.054442 17.408199 25.618652 13.909178 19.810500 -36.632375 2.495452 -7.038855 38.465458 23.098812 13.205331 8.672067 -3.712552 -18.820122 34.477657 68.882463 -13.323421 19.610473 -9.015744 -18.308073 45.471441 -41.998920 23.469844 10.900211 12.393432 13.165402 -26.454374 -16.762130 29.061395 19.833681 24.568541 29.919112 3.528766 15.841885 -51.163641 -26.792600 -6.013612 14.217377 -11.039308 41.107206 -14.430189 -12.213326 -6.866783 27.396864 0.356440 -8.345931 -6.849130 -14.833423 13.373796 -46.772171 -34.364216 42.172669 50.636740 2.936182 5.314140 32.354662 42.830563 -10.139939 -7.589234 -11.198016 19.111990 -5.570959 1.019088 2.679127 -2.845551 -30.492797 -17.448915 3.790617 6.330052 7.543270 -6.333260 -30.314515 23.278029 -40.357870 -14.470706 4.003685 -31.777964 -14.565224 -4.133194 1.564929 2.366638 3.763966 -18.307173 2.183452 24.415139 -22.100301 -1.010496 17.663500 22.549208 17.813567 27.393880 17.857358 12.456071 28.517554 21.922248 -11.516576 58.888930 -0.104301 0.079485 7.790293 14.250986 -2.486359 14.594420 -6.490083 -13.622642 -17.805503 -31.885288 23.959976 2.504860 22.794271 -18.908722 -27.596932 -15.985275 -18.500460 36.430166 14.614823 -2.090721 56.448401 -3.772548 4.788805 -59.091697 -3.437493 21.248421 -1.509582 26.230324 20.412402 -14.488269 -42.446154 -17.309743 6.459729 13.209616 -16.060235 -29.742551 -14.045696 -16.999830 26.909243 -21.963077 14.686887 22.897306 3.939957 16.866281 1.324716 -3.175503 -11.951052 -6.198850 4.901535 18.726486 -35.061312 33.502198 -13.608703 61.075901 -29.254407 23.500232 -29.197359 7.119790 -6.351670 2.077606 2.284276 41.795298 24.143452 6.863624 -0.136432 -0.447372 -19.294166 12.480372 -PE-benchmarks/z-algorithm-linear-time.cpp__main = 2.147951 3.394958 6.744802 1.868986 -6.588852 -7.392616 -2.008407 -11.635968 4.357553 1.288410 2.942363 0.954675 1.708173 -3.184684 -0.976672 4.232991 2.448568 0.316652 -0.761098 -3.864770 -6.101618 3.132163 -1.345645 -0.554124 3.494509 -6.698850 4.735011 1.431818 4.197602 1.742663 3.330982 -0.566193 -3.113833 4.265413 2.566629 2.780747 1.525031 0.936214 -5.326987 2.600464 0.191100 -1.466792 4.379292 2.176250 5.700464 1.720978 2.674037 3.001359 -3.391042 0.410428 -3.004653 6.197745 -2.785374 3.403916 -0.439189 -0.158762 -0.864140 -3.568719 0.421612 2.014382 -3.062842 -3.906949 -3.135834 0.370732 -4.538049 0.043884 -2.546127 -3.944440 -0.789788 2.072709 3.966712 1.321746 -1.175898 1.200551 -6.529036 -0.523494 2.009293 3.274991 5.597103 -0.735230 1.682079 -1.518728 -4.100648 -4.665552 5.210731 2.292423 2.000151 0.080198 -1.746183 -2.944834 -1.893888 -2.456046 3.768314 3.062334 -5.933174 -1.062572 -4.243738 -2.197028 -4.760823 -8.302740 1.479945 -1.497642 3.125644 -2.709657 -1.589612 1.106345 1.349630 0.900768 -0.566754 -1.495925 0.466030 -1.959804 2.412767 8.205092 0.985914 -3.459187 -1.593335 -2.378499 -2.314695 2.625966 2.753922 -0.476910 7.575652 5.609141 3.639309 -2.395433 -3.393950 0.644496 0.322025 3.897502 3.702944 -5.208762 -3.208287 1.849506 -0.425248 -8.007778 0.100286 -0.339813 3.345949 -1.218875 0.027834 -1.761089 -1.979511 1.731317 0.753530 -0.428146 1.812695 -0.835743 -3.159443 4.029977 7.792024 -0.959784 2.099702 -3.723526 0.776653 2.204036 -2.399006 0.520470 0.239249 -3.037095 -1.051186 -0.899205 -1.210081 3.793398 -0.284709 -2.334743 1.415263 3.013852 -5.931822 -5.653744 -5.353361 1.080339 5.676142 -0.872163 5.530005 -4.998684 -1.266981 -2.593799 5.700261 0.621935 -0.345052 3.020189 -4.572107 3.381244 -0.722400 -5.016800 8.469619 7.395536 2.249475 -2.173243 2.631505 3.119342 -8.580929 -5.276001 -2.538925 -0.985041 2.165076 -7.965651 -4.874592 1.416084 -5.609433 -1.175746 0.876113 2.422890 4.572697 2.126675 2.869636 0.391030 -2.224713 -5.161010 3.641404 -1.351143 -0.394504 2.091563 0.929884 0.677275 3.698142 -1.737123 -1.415486 0.311717 -1.886391 1.751903 2.470620 4.907377 -0.297238 7.182314 4.707515 -0.197176 5.827391 1.294704 -3.202602 5.161081 -0.089180 3.468912 2.250441 0.440728 -1.257929 1.555667 4.022522 -3.089178 -2.966646 -4.383016 -1.720709 -0.484749 2.095189 0.162860 -2.723369 -6.966470 -1.503773 0.260231 2.234950 -0.498387 6.123743 -0.831495 1.009134 -6.966725 -0.095422 3.074760 -0.694253 4.453433 2.243695 -4.301044 -2.072837 -2.140803 -5.123526 -5.038255 -1.158339 1.181126 -3.314199 -0.691808 3.996895 -1.078274 0.301838 4.883043 -0.293916 2.998056 -4.743975 1.830223 -2.597348 0.069021 6.854410 -0.603757 -4.234149 3.850731 1.046756 11.936509 1.649817 1.936471 -1.196748 -2.949529 1.486847 -3.451952 -2.769875 5.187684 2.830697 2.730734 0.031598 0.115200 -0.042620 5.433839 -PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.093210 2.673925 8.385768 3.390124 -6.066728 -7.260027 -2.917775 -12.381936 4.985715 1.180989 4.334716 0.314450 1.181008 -2.468723 -0.488671 2.919991 1.406403 -1.431224 0.309254 -3.269918 -4.182929 5.279808 0.084700 -2.345941 2.089168 -9.357906 5.943455 2.214672 4.801973 3.156113 2.626760 -1.406486 -2.428034 4.936269 1.111235 2.932385 1.912163 1.255655 -4.677953 2.157698 0.692361 1.251726 4.556546 0.974686 6.684160 2.156873 3.863484 2.708030 -3.775505 0.444726 -3.946721 7.541492 -4.247053 3.464624 -0.044751 0.593868 -0.714644 -5.137783 -1.152523 -0.222597 -2.913935 -1.710340 -3.645705 0.592793 -5.436924 0.780839 -2.056033 -2.974127 0.791337 2.654086 5.253708 2.149535 0.054288 0.723848 -6.891021 0.875954 0.904950 3.865420 5.159501 -2.661641 1.155236 0.071465 -3.550781 -4.794792 4.484954 3.030841 1.714974 -1.042115 0.066483 -2.327066 -2.272438 -2.585006 1.840026 4.113482 -4.997002 0.274822 -4.439336 -1.446581 -4.475980 -6.699861 0.817048 -3.162370 3.564716 -0.164857 -1.161720 0.451441 1.721755 1.201387 -1.325564 -3.053288 0.556113 -1.640752 3.222369 8.191758 -0.221918 -2.509745 -1.247706 -2.208883 -2.080084 3.829038 2.262477 0.733478 7.540125 7.161607 3.878682 -3.310517 -3.684454 1.242089 1.844450 5.208062 3.959310 -6.413241 -3.282948 0.524085 0.758757 -8.670291 0.806985 0.311422 3.732480 -0.661622 -2.008694 -1.072015 -2.257180 4.640257 1.926365 0.770466 1.854678 -0.260581 -3.801408 5.662385 10.302941 -0.947169 2.629990 -4.662157 -0.157418 3.426483 -3.768361 2.126052 1.095579 -1.411017 -0.241604 -2.802153 -1.368903 4.608316 0.870614 -0.308654 2.740194 2.900210 -4.072641 -7.443809 -5.974527 1.048853 5.837018 -1.574565 7.710115 -5.417599 -2.623106 -2.189572 6.243397 0.818503 -0.665315 2.393373 -4.692435 3.716677 -3.510513 -6.432666 9.368431 8.884208 2.291265 -1.653818 4.324047 4.718894 -7.715249 -4.710819 -2.820319 0.775140 1.629067 -6.678651 -3.447792 1.023501 -5.853594 -2.546603 0.987501 2.431265 4.711670 0.965992 0.129616 1.256816 -4.413481 -5.092412 4.062524 -3.393777 -1.566670 1.649059 0.773505 0.495366 3.674079 -2.448090 -0.814424 1.993004 -2.582108 1.700370 3.362347 4.997873 -0.079602 6.869572 5.544726 0.666236 6.998839 2.676307 -2.896767 7.780490 -0.098384 2.515833 2.520207 0.433888 -0.959241 2.025366 3.138473 -3.489211 -3.407539 -5.754418 0.622901 -0.532807 3.351992 -1.531848 -3.721000 -7.108000 -2.484829 2.404092 2.931508 0.139881 8.573082 -0.555186 1.092375 -9.369220 -0.557036 4.125560 -0.149752 4.776821 2.670694 -4.386851 -4.366535 -2.306883 -4.282724 -3.930192 -2.213725 -1.509417 -4.061606 -2.423937 4.792731 -1.385647 1.112421 6.360124 -0.041530 2.856666 -4.411685 0.992311 -2.812675 -1.007740 5.470625 0.243034 -5.626283 5.206102 -0.198603 14.296548 -0.909231 2.689190 -2.891319 -1.146985 0.627839 -2.947236 -1.677614 6.882433 2.999161 2.584231 -0.055539 -0.246899 -1.694267 5.443034 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.391567 0.440542 0.904416 0.156804 -0.308450 -0.876734 -0.346886 -1.476779 0.517761 0.146116 0.551014 -0.243827 0.344956 0.080118 -0.120687 0.422079 0.156135 -0.129563 0.306830 -0.269123 -0.557385 1.151710 -0.054651 0.157464 0.101385 -1.131713 0.512534 0.221656 0.767875 0.520905 0.067776 -0.132353 0.029744 0.377458 -0.239858 0.065707 0.024919 0.299703 -0.598206 0.374469 -0.131596 -0.011890 0.498134 0.005243 0.377352 0.402667 0.331144 0.242943 -0.023421 -0.077570 -0.422598 0.682409 -0.298299 0.278858 -0.276368 -0.238858 -0.021138 -0.220056 -0.168706 0.286616 -0.298613 -0.074234 -0.417945 0.167429 -0.695368 0.180776 -0.491463 -0.431990 0.012024 0.256464 0.534812 0.338755 0.059964 -0.031508 -1.195972 0.266960 0.135779 0.337220 0.308709 -0.236751 0.160342 0.233841 -0.621417 -0.659929 0.658102 0.766256 0.244720 -0.135867 -0.220239 -0.341703 -0.253584 -0.053257 0.283311 0.552642 -0.263338 0.285265 -0.653522 -0.106495 -0.523346 -1.118759 -0.009583 -0.435241 0.394895 -0.165770 0.170756 0.016000 0.356045 0.206206 0.036920 -0.727937 0.021297 -0.169963 0.114265 1.089516 -0.016310 -0.192876 -0.240593 -0.212660 -0.380838 0.451465 0.312564 0.105273 0.743402 0.573202 0.260077 -0.400158 -0.434467 0.249468 0.162016 0.360609 0.463526 -0.698742 -0.430806 0.015236 -0.060617 -1.089097 -0.162764 0.250293 0.337050 -0.610009 0.022240 0.249496 -0.317015 0.413796 0.494097 -0.048317 0.289678 -0.111856 -0.328099 0.587244 1.220733 -0.219028 0.368682 -0.760856 -0.337061 0.660358 -0.315044 0.351324 0.004354 0.024560 -0.230720 -0.389504 0.195433 0.583384 -0.013292 0.140799 0.408200 0.140504 -0.415773 -0.636619 -0.730811 0.099982 0.660954 -0.192844 0.911214 -0.516589 -0.340180 0.057813 0.617094 0.184395 -0.080092 0.315283 -0.529903 0.331609 -0.839648 -0.854735 0.906546 0.853539 0.338866 -0.130899 0.387215 0.585610 -0.672185 -0.650200 -0.357511 0.394603 0.056586 -1.099789 -0.589943 0.062837 -0.611677 -0.050771 -0.061432 0.287467 0.461786 0.278983 0.196607 -0.380543 -0.688233 -0.577752 0.640633 -0.476142 -0.087401 0.164669 0.016823 -0.266384 0.395833 -0.288868 0.074603 0.321664 -0.318973 0.260932 0.330756 0.176380 -0.200290 0.851185 0.820296 -0.048043 0.611032 0.134563 -0.241737 0.899200 -0.201476 0.154919 0.053156 0.212729 -0.348063 0.325865 0.396936 -0.250445 -0.709618 -0.679309 0.105434 0.092472 0.131854 0.203434 -0.520221 -0.777990 -0.262076 0.139551 0.899251 0.265040 0.988540 -0.233044 0.364145 -1.045871 0.158645 0.097782 -0.017304 0.652263 0.237888 -0.396774 -0.192192 -0.204519 -0.524529 -0.719094 -0.318850 -0.811555 -0.462098 -0.363247 0.174712 -0.305277 0.040338 0.561471 0.033146 0.383702 -0.396318 -0.097826 -0.618256 0.124369 0.877889 -0.154390 -0.447646 0.315304 -0.046232 1.552460 -0.116495 0.436452 -0.285532 -0.065070 0.052453 -0.546557 -0.154651 0.832037 0.314138 0.110908 -0.046421 -0.130022 0.093871 0.325750 -PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = -0.538832 1.108987 3.922004 3.123821 -2.991613 -3.937483 -1.793133 -4.046384 1.745507 -0.211346 2.529466 0.026469 0.762224 -0.799843 -0.153140 -1.031620 0.814603 -0.543840 -0.114190 -1.564736 -2.534248 2.887414 1.301167 -3.156937 0.715737 -3.822441 3.733684 2.134827 1.102283 2.757229 0.127164 -0.180281 -1.067043 2.500991 -1.034154 -0.335683 0.086822 0.743681 -1.098331 0.509828 2.087456 1.160241 3.186688 0.152153 1.829678 2.256286 1.192924 1.129368 -2.594698 -0.605371 -1.209881 1.778264 -2.150960 1.622813 -0.371248 1.111720 1.500778 -2.715731 -0.508713 -2.125287 -0.176804 -0.317571 -1.709524 0.136939 -2.843381 0.334227 -0.665683 -2.184492 1.498751 -0.099287 2.105802 0.603037 -0.501455 -0.969966 -1.990474 0.686469 0.713621 1.989949 1.988486 -0.687544 -0.323389 0.501203 -2.236912 -1.927674 0.765817 -0.108936 1.431114 0.162499 0.393692 -1.759721 0.631206 -0.401835 0.498526 1.841383 -0.646639 0.530840 -1.466462 -0.776608 -2.427243 -2.266786 0.393384 -1.386583 1.611311 1.761336 -2.209042 -0.233956 0.313215 0.348374 -0.836528 -2.598506 -0.052256 -1.646046 1.451898 3.316917 -0.606538 -1.255229 -0.608182 -1.238235 -0.064446 2.727594 0.438212 0.168993 3.028436 3.397662 0.372611 -2.110872 -1.344034 -0.291278 1.227399 2.117028 2.309519 -2.743788 -1.842248 -0.168204 -0.456068 -4.176563 0.446897 -0.041281 2.100387 0.154609 -2.761451 2.082267 -1.988905 2.140592 1.305406 1.573843 0.848382 -0.516286 -2.325118 2.947939 4.405258 -0.807105 1.708441 -1.932473 -2.671317 3.371866 -1.120776 1.081616 0.666303 -1.062479 0.006329 -1.236400 0.475752 2.527077 0.195744 0.622512 2.450122 0.620198 -0.605725 -3.721248 -3.368172 1.332680 2.983920 0.672931 5.024112 -3.116904 -0.754118 -0.727779 3.209324 -0.476477 -0.748390 0.280545 -1.095774 1.650476 -4.147637 -3.714791 4.296828 3.272788 0.396414 0.290421 2.137806 1.414041 -0.619562 -1.494417 -1.957097 1.162456 1.121228 -0.490235 -0.156878 0.209853 -2.363689 -0.831694 0.787080 1.314323 2.374991 -2.508596 -1.806015 -1.093415 -2.892377 -3.039874 1.226950 -2.665629 -0.129950 1.227556 -0.582609 -0.180208 1.309697 0.101475 -1.137376 -0.450322 -1.061880 0.368749 0.817290 2.489880 0.405143 3.275162 2.809127 -0.667404 1.968687 1.761971 -1.022280 6.062316 -1.498396 1.150405 1.135601 2.737381 0.476632 1.202380 2.070933 -1.277002 -0.560507 -3.194872 1.150664 0.624981 1.288825 -4.214934 -1.223213 -4.515279 -1.356781 1.091271 2.628068 -0.483375 4.915938 -0.106497 -0.055507 -4.656797 -0.424688 2.048912 0.044892 2.208248 1.375391 -2.204287 -3.596003 -1.119706 -2.093924 0.767854 -1.189232 -1.295518 -2.028191 0.046237 0.851196 -0.777185 1.199250 3.630288 -0.849102 0.384964 -1.065765 -0.010118 -0.829246 -1.904547 1.496386 0.289437 -2.252763 3.358080 -0.128628 5.549551 -0.050567 2.198396 -1.722174 0.614221 0.225859 -1.793619 -1.034386 3.426357 1.342056 0.548998 0.883546 0.778808 -0.581310 2.443124 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = -0.286022 0.313413 1.461079 0.929347 -0.958689 -1.294346 -0.648406 -1.597607 0.655486 -0.094798 0.812157 0.024603 0.156564 -0.534961 -0.055995 -0.292125 0.045883 -0.275947 0.104048 -0.412273 -0.537377 0.920221 0.393269 -1.212207 0.281366 -1.646644 1.316034 0.802644 0.437362 0.978225 -0.100423 -0.170139 -0.424298 1.054893 -0.279620 -0.136597 0.468795 0.219156 -0.360681 0.290676 0.524930 0.851700 0.892458 -0.141756 0.954984 0.862628 0.198252 0.475289 -0.906126 -0.122366 -0.153845 0.715705 -0.740891 0.722530 0.088378 0.401326 0.221083 -1.113416 -0.282075 -0.986553 0.010028 -0.011472 -0.362185 0.049624 -0.949732 0.064733 0.149935 -0.698352 0.649357 0.142332 0.779341 0.271692 -0.040339 -0.164841 -0.557336 0.350144 0.359616 0.886512 0.690147 -0.547872 -0.018571 0.205713 -0.567668 -0.713762 0.067619 0.262456 0.517254 0.011861 0.296456 -0.527908 0.280944 -0.355735 0.082242 0.809565 -0.136770 -0.065366 -0.549735 -0.107790 -0.711633 -0.724923 0.099131 -0.526420 0.633284 0.693755 -0.526775 -0.082927 0.341592 0.402942 -0.337239 -0.708508 0.192783 -0.516516 0.705157 1.140993 -0.024754 -0.274497 -0.204129 -0.491974 -0.084359 1.053066 -0.018787 0.065356 1.027750 1.482717 0.160741 -0.713577 -0.702524 0.029160 0.499618 0.915927 0.771488 -1.435650 -0.471927 -0.098473 -0.184322 -1.347043 0.134731 -0.283529 0.702920 -0.099564 -0.934145 0.601734 -0.696259 1.021486 0.354302 0.372073 0.142541 -0.118043 -0.873000 1.325992 1.723610 -0.224797 0.463000 -0.636221 -0.698430 0.816221 -0.450679 0.481822 0.291728 -0.370381 0.128315 -0.493802 0.128260 0.867861 0.251832 0.424592 0.702058 0.250804 -0.343120 -1.363367 -1.144483 0.421277 1.028947 -0.066155 1.960278 -1.041191 -0.672789 -0.512273 1.417502 -0.124446 -0.104895 0.103484 -0.497122 0.676734 -1.025438 -1.258916 1.588618 1.539370 0.334144 0.063229 0.974636 0.605626 -0.364610 -0.472312 -0.421977 0.226354 0.317203 -0.332454 -0.206236 0.120391 -0.811772 -0.520716 0.305470 0.387419 0.800030 -0.376233 -0.794230 0.094493 -1.008581 -0.986421 0.309300 -0.883319 -0.005597 0.454709 -0.055219 0.032603 0.574401 -0.331094 -0.426582 0.114941 -0.407032 0.300504 0.434949 0.846167 0.230623 0.927588 0.841144 0.014578 1.020673 0.796239 -0.327322 2.060023 -0.217000 0.501654 0.650186 0.572335 0.169745 0.407911 0.539218 -0.521221 -0.001408 -1.301902 0.409683 0.156079 0.646525 -1.433299 -0.681966 -1.390108 -0.574723 0.592041 0.521968 -0.115159 1.755134 0.157853 0.010471 -1.809521 -0.217162 0.742405 0.005148 0.638348 0.480745 -0.762048 -1.904715 -0.344064 -0.687172 -0.256628 -0.650197 -0.490360 -0.629242 -0.118391 0.600983 -0.095847 0.468225 1.545002 -0.029078 0.110952 -0.674188 0.061702 -0.396361 -0.787596 0.295243 -0.042481 -0.956782 0.969246 0.015916 2.152215 -0.310148 0.672928 -0.652437 0.232372 0.086897 -0.486186 -0.144951 1.205402 0.348171 0.357777 0.200920 0.292384 -0.517162 1.005419 -PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = -2.433516 0.679495 11.247600 6.926032 -5.611033 -7.720537 -4.122793 -10.446359 6.084137 0.144790 7.200485 1.767987 1.870767 -2.526385 0.941384 -1.421254 0.890539 -3.217534 -0.233441 -2.933491 -0.851538 8.107909 5.570681 -8.737833 1.044472 -11.876585 6.002244 4.421731 4.609912 6.785586 -0.252449 -1.333311 -2.090454 5.877627 -2.845468 -0.073501 1.489009 0.923261 -3.687644 -0.366828 3.773040 4.772626 5.835165 -0.514528 7.522943 1.656765 4.840273 1.647048 -5.092716 -1.351385 -4.345742 8.704444 -6.163229 4.154000 0.517491 3.975091 0.337443 -7.208462 -3.036677 -8.766321 -0.052557 1.816053 -3.682008 -0.048181 -5.700343 2.009629 -0.164849 -2.942011 3.619003 0.058276 6.663531 2.255395 1.369312 -1.978753 -5.848163 2.086811 -0.470313 5.063500 4.377398 -2.295195 -1.905066 1.063648 -2.376680 -4.106216 2.093651 1.079809 0.883950 -0.802076 1.859377 -1.666318 -0.296319 -2.074155 -1.618845 4.504675 -5.358186 2.409730 -1.726400 -0.927980 -3.338157 -2.061458 0.081632 -5.057636 3.047937 4.906011 -2.027263 -0.000778 0.019267 1.678826 -3.542313 -6.289228 1.059473 -0.754905 1.358140 7.349674 -3.612844 -0.605161 0.495026 -0.802652 -1.262212 6.959515 -0.133393 3.360421 6.497540 9.406285 1.234903 -4.883329 -1.837843 1.872612 6.007096 6.421511 4.894384 -7.341190 -3.849213 -0.298497 0.799116 -10.507376 1.608505 2.635473 6.048825 2.685871 -8.417038 1.910139 -3.145813 8.735763 4.200563 3.080181 1.697283 -0.323810 -6.266988 7.895712 13.917269 -2.339163 5.029671 -3.821705 -3.933016 7.891057 -6.417179 4.541934 1.397978 0.115944 2.015694 -4.948973 -1.568072 6.528430 3.062263 3.504086 3.790691 1.870085 -0.386445 -11.805073 -8.843419 -0.876834 5.608307 -0.131551 11.993871 -5.946915 -4.276707 -3.064015 8.112183 -1.512348 -2.343430 0.751806 -4.347487 4.170296 -10.361786 -9.042900 12.213144 12.321385 1.830036 1.619502 8.007419 5.798912 -2.897858 -2.797008 -2.864726 2.947876 2.564210 -1.758878 -0.175458 -0.311863 -6.751311 -4.676755 1.580522 2.173449 3.381811 -2.767675 -3.652781 3.171072 -7.773849 -4.939171 2.815738 -7.496640 -2.795433 1.303362 0.032398 0.484114 2.766135 -2.362675 -1.383317 2.931857 -4.151693 0.714633 3.157114 6.021004 2.512720 6.482054 7.056479 0.875052 7.428818 4.400906 -3.503293 14.123830 -2.941634 1.199792 2.303224 3.328691 0.554885 3.004073 1.892962 -3.532915 -1.582257 -7.851815 4.323360 0.026776 5.366103 -8.322426 -6.550974 -7.192735 -3.649056 5.430163 3.915204 -1.071189 13.428254 -1.361118 0.210684 -15.238685 -1.265311 6.235796 0.637975 4.906990 3.966706 -4.512987 -12.411757 -2.595330 -2.770936 1.547062 -3.648880 -5.617332 -4.221848 -3.985919 6.737649 -3.972675 3.324551 8.549062 -0.651225 4.113329 -2.322096 -0.515730 -2.944148 -2.836203 1.130783 2.522747 -6.593706 8.425776 -1.600615 15.683695 -3.860714 5.157895 -5.633758 2.997808 -1.305859 -2.611206 -0.846081 9.316796 5.144851 1.867515 0.663988 0.002734 -4.257839 5.165463 -PE-benchmarks/graph-coloring.cpp__main = 0.978969 1.825388 4.607928 0.617241 -5.353825 -7.343391 -2.379896 -9.290472 2.861546 0.256978 1.913199 -0.559484 -0.432910 -2.294861 0.199784 4.979459 1.629673 -1.034303 -0.289857 -3.047743 -3.230543 3.568310 -1.364335 0.665874 2.451510 -6.497391 3.796866 0.818164 3.126268 2.908272 3.842375 -2.001867 -2.533905 2.883573 3.776833 8.178290 2.000118 -0.366428 -4.620916 3.952421 -1.357687 0.084428 3.688492 0.455874 6.356332 3.410014 3.229775 3.610190 -4.044661 0.573702 -4.432816 6.871773 -2.970932 2.873676 -0.194733 0.299732 -1.140158 -3.671018 -1.574661 3.008405 -5.444871 -2.231547 -3.604885 0.631057 -5.178988 0.174062 -2.715374 -0.634838 -0.236061 2.022988 3.856932 1.242038 -1.113916 2.696007 -5.152071 -0.533699 0.620322 4.134818 3.796289 -3.912376 2.144777 -0.306970 -2.392007 -3.081517 3.255105 1.650510 2.141667 -0.848022 -1.123426 -2.259873 -3.916632 -2.269758 2.746361 1.356015 -3.702408 -1.335144 -4.106725 -1.136761 -4.023746 -6.562622 1.474484 -0.237068 2.578904 -2.368710 1.956835 -1.188475 1.872934 0.849939 -0.845216 -0.103583 1.114522 0.007521 1.793528 6.513677 0.979713 -1.773713 -2.317296 -2.872315 -2.266757 2.672634 2.660656 -0.161447 4.083053 5.766744 7.454895 -1.474076 -4.126479 -0.323269 1.387280 3.731542 2.946571 -3.082899 -2.205569 1.096939 -0.175995 -5.198533 -0.555892 0.274241 3.592588 1.286066 0.792509 -2.930129 -1.514984 3.509947 -1.375656 -0.884720 1.564566 -0.711137 -3.159453 4.715794 7.906931 -0.001646 1.539446 -4.399254 2.030498 1.001771 -1.688256 0.077086 2.099100 -2.664134 -1.434445 -0.218686 -0.878745 1.834749 1.764230 -1.611962 0.995954 3.240548 -4.871847 -4.426925 -3.169292 1.129297 4.081185 -2.639386 3.788967 -3.649192 -1.090675 -2.837867 4.336134 0.721148 -0.590432 1.804503 -4.791367 2.519861 -0.690379 -2.644732 8.499415 8.218327 3.272436 -1.386702 2.310978 5.790162 -8.939064 -2.746506 -2.327781 -0.222329 0.280431 -7.762361 -3.329924 0.821653 -4.584445 -2.101341 -0.055028 2.561209 3.094497 3.847773 0.912791 0.481997 -2.656838 -3.493780 2.456054 -1.853479 -0.651715 2.409284 0.082901 0.412464 2.850173 -2.439967 0.489300 2.318174 -2.128466 2.460530 2.207969 4.313728 -0.288872 3.937559 3.868263 1.297717 7.430469 1.533250 -3.366876 3.516391 2.135477 3.386425 1.215672 -1.399199 0.572523 0.466904 1.768420 -2.562450 -2.987084 -3.374218 -0.780484 0.653432 2.972343 1.756353 -3.907677 -6.602425 -0.933040 1.281605 2.481935 0.459270 4.301608 -0.378657 1.328308 -6.631389 0.227202 3.123849 0.577061 1.585084 0.768195 -2.833414 -1.761511 -0.486184 -4.703132 -5.422040 -1.560070 0.530143 -2.756282 -2.409212 4.856298 0.512539 -0.790173 4.967234 0.002904 2.492945 -2.676825 0.810428 -2.558054 -1.650452 5.217658 -0.172578 -3.767626 2.486510 1.781359 10.781031 0.654189 1.153979 -0.828373 -1.462030 1.638704 -3.423809 -1.215370 4.134207 2.278631 1.374425 1.337694 -0.349601 -0.049986 3.510914 -PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = -3.512395 3.010961 22.373489 11.051979 -12.927957 -18.486841 -9.319968 -28.630240 12.830563 2.093599 16.991074 1.730255 5.267143 -5.271302 2.481018 1.932848 4.056866 -6.817773 1.283945 -7.085312 -3.663875 17.632766 6.799512 -10.499934 1.628152 -21.618467 9.094231 9.397500 10.411358 9.228389 2.637892 -3.708265 -6.252632 10.824370 -4.476908 3.797074 5.004035 3.585884 -10.399859 -0.147932 3.381966 5.682271 12.276523 -2.641092 17.531438 0.940037 12.202182 4.779261 -10.900674 -3.466835 -8.711331 21.732556 -11.909415 7.288751 3.718410 2.716803 -0.380526 -12.736391 -5.856100 -10.815065 -2.901227 -0.138141 -9.188207 1.089450 -10.057951 4.516726 -1.735348 -5.935944 6.207304 1.206068 13.534040 3.186711 1.862686 1.054124 -15.231478 3.300793 0.348257 9.163337 9.332181 -3.380566 0.567863 1.022349 -5.828238 -10.077219 8.252901 6.611755 3.146385 -2.148482 -3.081616 0.365717 -2.056404 -5.252632 0.724241 8.748391 -13.231363 2.960768 -4.092977 -4.121696 -10.990031 -9.643773 1.996987 -9.831974 7.552709 5.301327 -2.756138 -1.469562 -3.232936 2.128030 -9.141719 -13.681061 1.855373 -3.386304 4.373017 18.058068 -8.852539 -0.989145 -1.796440 -3.062017 -3.988385 11.527708 4.398738 6.307367 13.346353 19.004613 4.706999 -11.361030 -8.269410 3.941096 12.857796 13.140773 8.590657 -14.877443 -8.141088 1.064510 -1.296402 -22.981540 -0.217754 6.249920 12.042787 4.605345 -11.167735 -0.076522 -6.043340 17.324897 8.016631 5.635182 2.574782 0.246275 -12.460622 14.473957 24.742484 -4.423967 12.010264 -5.573006 -4.565586 12.110203 -13.379579 8.737386 6.121749 -0.583688 0.047505 -8.838610 -5.220517 12.355361 6.971889 6.942767 3.318499 5.794008 -5.074214 -22.380964 -20.892937 0.817483 14.484868 -1.453671 19.940421 -12.953046 -11.935599 -2.631759 17.873843 -2.762545 -7.823312 4.359832 -11.078834 10.019296 -15.415122 -17.840067 25.093294 25.746362 5.601021 1.004104 16.352196 11.996114 -16.101339 -7.766289 -6.495185 7.199222 3.154077 -12.870051 -2.831571 0.824975 -14.582171 -8.042510 0.722201 5.983500 4.245588 0.366727 0.658498 6.606016 -12.555965 -7.141250 7.896504 -10.340602 -5.620603 1.518945 0.610722 1.802252 7.383810 -7.965206 -1.641710 6.345374 -11.172908 2.949271 7.509123 10.869419 4.750288 19.322006 14.972494 1.242239 20.186074 5.015992 -7.702964 22.420633 -4.757989 4.343312 3.441832 5.232535 -0.695439 5.050367 6.790805 -7.952365 -8.563029 -15.251933 3.156242 0.399364 12.472526 -9.256820 -15.722659 -17.176111 -6.017578 10.345575 8.991069 -2.529825 25.551927 -4.098245 3.131967 -30.517363 -1.058370 10.059166 -0.755812 10.602626 5.882338 -9.306563 -20.944755 -5.383535 -9.126451 -6.358154 -5.039350 -10.530000 -8.731541 -11.977451 16.381322 -8.710398 3.078290 13.744175 -0.456366 9.393677 -3.651669 -0.767130 -6.023106 -2.573837 8.171445 2.167735 -14.955163 17.555581 -1.377324 38.617264 -5.894060 9.321796 -9.044125 4.471320 -1.406758 -7.065697 -1.884470 19.272033 13.794837 4.192067 -2.856031 0.518441 -7.985102 9.954387 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 0.408944 0.850290 3.506461 0.617695 -4.036009 -6.179029 -2.293553 -7.577964 2.446996 0.256099 1.950424 -0.606105 -0.335019 -1.656841 0.405544 4.033965 1.288375 -1.484969 0.091880 -2.577867 -2.109759 3.989002 -0.618442 0.583023 1.580126 -6.046551 3.214590 0.637585 2.471240 3.043566 2.958557 -1.659005 -1.774353 2.208530 2.797013 7.157255 1.599149 -0.409618 -3.498233 3.419009 -0.963314 0.561705 3.062099 0.135245 5.512288 3.006168 2.822396 2.946111 -3.254554 0.040570 -3.852247 5.468974 -2.784103 2.147774 -0.536779 0.318638 -0.738726 -3.081268 -1.836010 2.031092 -4.526676 -1.444800 -3.149683 0.740028 -4.355347 0.752157 -2.458443 -0.034803 -0.095477 1.758642 3.547968 1.245618 -0.785473 2.327626 -4.394664 -0.278391 0.007850 3.453008 2.825051 -3.939439 1.225001 0.038965 -1.993739 -2.476356 2.570341 1.572357 1.570846 -0.783491 -0.625591 -1.669311 -3.522460 -1.766290 2.031891 1.070237 -2.621477 -1.080597 -2.759031 -0.703865 -3.043107 -4.891315 1.153975 -0.302950 2.007304 -1.382809 2.096966 -1.318835 1.461226 0.634202 -1.297457 -0.487364 1.068697 0.287422 1.346373 5.328320 0.488707 -1.050564 -2.089589 -2.233416 -1.773075 2.691679 2.255749 0.327441 3.226884 5.130927 5.752405 -1.297840 -3.577176 -0.087647 1.792075 2.995689 2.522431 -2.527053 -2.105344 0.676396 -0.132871 -3.842204 -0.791843 0.646180 3.314961 1.072294 0.489979 -1.852238 -1.248380 3.564028 -0.658275 -0.796597 1.091325 -0.728366 -3.162032 4.550315 7.112692 0.069526 1.470420 -4.055273 1.535052 1.492477 -1.790353 0.044008 2.152891 -1.916653 -1.629975 -0.246292 -0.497084 1.329460 1.704703 -0.688470 0.931161 2.940738 -3.412881 -3.681479 -2.739112 0.772812 3.430914 -2.162069 3.421035 -3.010722 -0.911101 -2.197905 3.411951 0.953659 -0.779289 1.368442 -4.002777 1.908089 -1.686611 -2.282981 7.465351 7.190538 3.221924 -0.712595 2.115982 5.711044 -6.825171 -1.746044 -1.700042 0.522880 0.109753 -6.242165 -2.366983 0.599430 -3.653216 -2.580538 -0.313147 2.331185 2.158054 2.942964 0.306799 0.208831 -2.555868 -2.672811 2.066043 -1.977354 -0.764035 1.936036 -0.156302 0.118865 2.047636 -1.971470 1.201366 2.320021 -1.747976 2.209637 2.060658 3.376266 0.090606 2.763214 3.675433 1.008484 6.204263 1.261487 -2.579663 3.095912 1.840872 2.794974 0.829748 -1.292609 0.772439 0.122175 1.116384 -1.945082 -2.418224 -2.836562 0.065209 0.906971 2.791206 1.304286 -3.541575 -5.718993 -0.742218 1.439115 2.683826 0.528460 3.819344 -0.593127 1.091372 -5.833937 0.314958 2.662966 0.703556 1.028249 0.546087 -1.911081 -1.735497 -0.283635 -3.748586 -4.211864 -1.655822 -0.452737 -2.417223 -2.378853 4.054299 0.088208 -0.682653 4.253585 0.223465 2.142093 -1.809187 0.226899 -2.552124 -1.319774 3.632664 0.044717 -3.161581 2.110275 1.239153 8.832943 0.005690 1.064993 -0.767434 -0.385424 0.848012 -3.009862 -0.561358 3.550987 2.005192 0.575246 1.394485 -0.478553 0.240414 2.526642 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = -0.949401 0.593110 6.284370 1.964041 -3.552556 -5.851466 -2.642927 -10.501739 4.934604 1.729599 5.365351 0.934808 2.852864 -2.296421 0.319151 1.489229 1.687403 -2.760930 0.933460 -2.415236 -0.618374 6.922127 1.071625 -0.834108 0.187202 -7.310302 2.888093 1.726475 4.004482 3.238190 1.575294 -1.078763 -2.234982 2.815802 -0.377123 2.508455 1.766716 1.551397 -3.395359 -0.218775 0.196217 0.327624 3.736022 -0.368889 6.320006 -0.617256 3.269224 1.461959 -1.978923 -1.821737 -2.296499 5.671578 -3.728488 1.936864 0.920685 -0.617188 -0.555482 -2.553478 -1.343796 -1.884052 -1.286637 -1.287704 -2.924248 0.839263 -3.073927 1.761937 -1.654437 -1.376527 0.083118 -0.676016 4.084507 1.217527 1.022353 1.107780 -6.775170 0.558938 -0.142904 1.728985 3.225109 -0.161507 -0.489149 -0.753091 -2.475233 -3.824564 3.725260 4.152673 0.193520 -0.013888 -2.415971 0.557224 -1.525098 -1.572184 1.382806 2.882540 -4.756967 0.214459 -0.778399 -1.255120 -2.618462 -4.486234 1.302686 -2.893535 2.230794 0.280048 0.067814 -1.020457 -0.999963 0.060294 -3.112850 -3.804179 1.331793 -1.303625 1.424592 6.180387 -2.646105 -0.261747 -2.046283 -1.110288 -0.791946 3.271744 2.010729 1.820273 4.265790 5.288231 2.179517 -3.881513 -3.090889 2.909320 3.899008 3.083083 1.718964 -4.637974 -2.291292 1.355154 -0.941495 -6.993622 -1.513803 2.499656 3.720140 0.130054 -1.631618 -0.390211 -1.546943 4.546474 3.530930 0.644733 0.817315 0.598735 -3.939641 3.982564 7.488128 -0.794721 3.388221 -2.185679 -0.552501 3.958889 -4.675837 2.576169 1.517867 0.135549 -1.628882 -2.276473 -0.798872 3.539463 1.365744 2.480010 -0.498266 2.461372 -2.308956 -6.235445 -6.887770 -0.442439 5.766024 0.395385 5.254784 -4.160242 -2.838271 0.047884 5.147587 0.681958 -2.798442 2.417129 -3.976272 3.261006 -5.043920 -5.240810 8.081093 8.271410 3.052404 -0.024500 3.982707 4.180106 -5.911573 -2.637604 -1.821660 2.372713 0.288890 -6.281659 -1.453813 0.469639 -4.914166 -3.161333 -0.314810 1.971766 1.567336 1.295941 2.572788 1.325017 -2.194583 -2.526662 3.484023 -1.909234 -2.293221 -0.202294 0.684256 0.381524 2.288598 -2.369907 0.857464 2.651050 -2.945758 1.412155 2.842632 2.004342 0.751825 6.082277 4.989877 -0.597650 5.094791 0.151101 -1.925715 5.519397 -1.187591 1.571115 0.880433 0.875819 0.202485 1.423644 2.288651 -2.669701 -2.964542 -4.224298 -0.147506 0.533762 4.068711 -1.063614 -5.866262 -5.658482 -0.936932 2.020237 3.507153 -0.251574 7.644270 -2.083964 1.839283 -8.877018 0.393788 2.868050 -0.357859 3.275475 1.382005 -2.483774 -3.777378 -1.725642 -3.506220 -3.880674 -1.428578 -3.218613 -2.451398 -4.196643 5.221059 -3.176423 0.002063 2.939077 0.019692 3.763605 -1.589239 0.113098 -3.374145 0.755680 2.674694 0.010339 -4.162795 4.675726 -0.167182 11.131348 -1.989887 2.496989 -1.675621 2.646826 -1.537282 -3.622273 -0.575034 5.959726 4.381546 0.961555 -1.413016 -0.622723 -1.212386 2.630389 -PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/ugly-numbers.cpp__main = 0.391567 0.440542 0.904416 0.156804 -0.308450 -0.876734 -0.346886 -1.476779 0.517761 0.146116 0.551014 -0.243827 0.344956 0.080118 -0.120687 0.422079 0.156135 -0.129563 0.306830 -0.269123 -0.557385 1.151710 -0.054651 0.157464 0.101385 -1.131713 0.512534 0.221656 0.767875 0.520905 0.067776 -0.132353 0.029744 0.377458 -0.239858 0.065707 0.024919 0.299703 -0.598206 0.374469 -0.131596 -0.011890 0.498134 0.005243 0.377352 0.402667 0.331144 0.242943 -0.023421 -0.077570 -0.422598 0.682409 -0.298299 0.278858 -0.276368 -0.238858 -0.021138 -0.220056 -0.168706 0.286616 -0.298613 -0.074234 -0.417945 0.167429 -0.695368 0.180776 -0.491463 -0.431990 0.012024 0.256464 0.534812 0.338755 0.059964 -0.031508 -1.195972 0.266960 0.135779 0.337220 0.308709 -0.236751 0.160342 0.233841 -0.621417 -0.659929 0.658102 0.766256 0.244720 -0.135867 -0.220239 -0.341703 -0.253584 -0.053257 0.283311 0.552642 -0.263338 0.285265 -0.653522 -0.106495 -0.523346 -1.118759 -0.009583 -0.435241 0.394895 -0.165770 0.170756 0.016000 0.356045 0.206206 0.036920 -0.727937 0.021297 -0.169963 0.114265 1.089516 -0.016310 -0.192876 -0.240593 -0.212660 -0.380838 0.451465 0.312564 0.105273 0.743402 0.573202 0.260077 -0.400158 -0.434467 0.249468 0.162016 0.360609 0.463526 -0.698742 -0.430806 0.015236 -0.060617 -1.089097 -0.162764 0.250293 0.337050 -0.610009 0.022240 0.249496 -0.317015 0.413796 0.494097 -0.048317 0.289678 -0.111856 -0.328099 0.587244 1.220733 -0.219028 0.368682 -0.760856 -0.337061 0.660358 -0.315044 0.351324 0.004354 0.024560 -0.230720 -0.389504 0.195433 0.583384 -0.013292 0.140799 0.408200 0.140504 -0.415773 -0.636619 -0.730811 0.099982 0.660954 -0.192844 0.911214 -0.516589 -0.340180 0.057813 0.617094 0.184395 -0.080092 0.315283 -0.529903 0.331609 -0.839648 -0.854735 0.906546 0.853539 0.338866 -0.130899 0.387215 0.585610 -0.672185 -0.650200 -0.357511 0.394603 0.056586 -1.099789 -0.589943 0.062837 -0.611677 -0.050771 -0.061432 0.287467 0.461786 0.278983 0.196607 -0.380543 -0.688233 -0.577752 0.640633 -0.476142 -0.087401 0.164669 0.016823 -0.266384 0.395833 -0.288868 0.074603 0.321664 -0.318973 0.260932 0.330756 0.176380 -0.200290 0.851185 0.820296 -0.048043 0.611032 0.134563 -0.241737 0.899200 -0.201476 0.154919 0.053156 0.212729 -0.348063 0.325865 0.396936 -0.250445 -0.709618 -0.679309 0.105434 0.092472 0.131854 0.203434 -0.520221 -0.777990 -0.262076 0.139551 0.899251 0.265040 0.988540 -0.233044 0.364145 -1.045871 0.158645 0.097782 -0.017304 0.652263 0.237888 -0.396774 -0.192192 -0.204519 -0.524529 -0.719094 -0.318850 -0.811555 -0.462098 -0.363247 0.174712 -0.305277 0.040338 0.561471 0.033146 0.383702 -0.396318 -0.097826 -0.618256 0.124369 0.877889 -0.154390 -0.447646 0.315304 -0.046232 1.552460 -0.116495 0.436452 -0.285532 -0.065070 0.052453 -0.546557 -0.154651 0.832037 0.314138 0.110908 -0.046421 -0.130022 0.093871 0.325750 -PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.484400 0.380004 1.572680 1.093071 -1.008861 -1.445761 -0.642863 -1.925181 0.886724 -0.213092 0.762310 0.013115 0.270984 -0.119864 -0.108378 0.524940 0.133976 -0.087890 0.350883 -0.449718 -0.765192 1.847462 0.893705 -0.932461 0.155748 -1.816449 1.092665 0.725481 1.405791 1.335020 -0.012849 -0.432114 0.161311 0.873367 -0.595814 -0.309799 -0.479921 0.297720 -1.352687 0.690545 0.144199 0.169248 1.150985 -0.272794 0.764640 0.461240 0.908747 0.443377 -0.628482 0.241583 -1.299934 1.624738 -0.873728 0.705768 -0.530169 0.239381 0.049391 -0.559970 -0.672669 -0.584122 -0.516057 0.253403 -0.584569 0.347131 -1.466573 0.288452 -0.804366 -0.878303 0.365102 0.896443 1.068962 0.920472 0.310863 -0.391619 -1.690609 0.585488 0.130480 1.166197 0.616991 -0.528892 0.334187 0.456020 -0.672286 -0.788073 0.628704 0.482638 0.252479 -0.348408 0.315263 -0.877462 -0.136195 0.001908 -0.048340 0.657372 -0.459752 0.864418 -1.161464 0.138635 -0.615577 -1.273243 -0.290624 -0.677554 0.658123 0.139300 0.246556 0.203787 0.518031 0.561168 -0.114510 -1.272133 -0.133740 -0.071705 -0.160260 1.810325 -0.037348 -0.303962 0.025001 0.064460 -0.834352 0.991256 0.153316 0.577880 1.016918 1.435430 0.193687 -0.555659 -0.341504 0.202830 0.489655 1.093888 1.166516 -0.628240 -0.905227 -0.240834 0.431927 -1.775096 0.069053 0.516738 0.535842 -0.315038 -0.381541 0.020377 -0.670218 1.484043 0.590887 0.356583 0.638568 -0.331425 -0.645942 1.658670 2.491286 -0.412488 0.616075 -1.022507 -0.863123 1.537620 -0.699793 0.768132 -0.290097 -0.271330 -0.002704 -0.809691 0.060777 0.971614 0.231317 0.114789 1.049810 0.121771 -0.321815 -1.545942 -0.942592 0.224930 0.785387 -0.137676 2.116887 -0.785265 -0.736491 -0.303724 0.718539 0.374774 -0.000319 0.270167 -0.991977 0.628638 -2.345058 -1.664206 1.944629 1.460799 0.607841 0.139775 0.929128 1.283512 -0.536936 -1.145426 -0.498725 0.597421 0.373174 -1.230027 -0.760163 0.210990 -1.068699 -0.327034 0.433201 0.449521 0.880261 -0.048491 -0.398960 -0.474344 -1.654127 -0.755016 0.812964 -1.599204 -0.246834 0.553481 -0.138269 -0.229859 0.630253 -0.349424 0.051732 0.260244 -0.521537 0.231004 0.213179 1.031420 -0.137145 0.820742 1.813185 0.339747 1.301527 0.888810 -0.756816 2.319312 -0.540830 0.292191 0.273274 0.205241 -0.435020 0.369753 0.588748 -0.589941 -0.523131 -1.325259 0.692126 0.370343 0.529432 -0.823586 -0.799391 -1.061570 -0.680687 0.866144 0.984383 0.388369 1.912442 -0.504681 -0.005625 -2.204744 0.022208 0.501858 0.313010 1.366999 0.654274 -0.816796 -1.068624 -0.535860 -0.606348 0.359108 -0.826612 -1.452542 -0.822293 -0.243271 0.509973 -0.594563 0.528174 1.586294 -0.568241 0.811157 -0.790496 -0.261184 -0.784629 -0.287278 0.729290 0.256407 -0.840306 1.009020 -0.311227 2.792961 -0.223262 0.626338 -1.052756 -0.088902 0.144000 -0.544949 -0.193981 1.588375 0.488282 0.269114 0.386182 -0.083544 -0.202638 0.537345 -PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.359356 0.548811 1.440746 -0.008709 -0.503032 -1.408034 -0.606194 -3.025914 1.003722 0.408466 1.265433 -0.437425 0.601390 0.013594 -0.029571 0.904906 0.331241 -0.680562 0.678819 -0.514593 -0.566922 1.772998 -0.045396 0.791277 -0.005142 -1.761133 0.407719 0.161468 1.299592 0.536163 0.328941 -0.484429 -0.114279 0.565874 -0.021389 0.572947 0.496520 0.413595 -1.073908 0.465347 -0.691828 -0.244047 0.847707 -0.157261 1.173281 0.131375 0.805951 0.443583 -0.161235 -0.147303 -0.606038 1.528502 -0.779190 0.284928 0.174084 -0.772786 -0.260059 -0.382167 -0.417828 0.571234 -0.800772 -0.475316 -0.640808 0.433910 -0.923702 0.496285 -0.948504 -0.416807 -0.086571 0.427926 0.993109 0.693441 0.361116 0.717230 -1.959349 0.498986 0.211652 0.398591 0.501743 -0.539451 0.500381 0.267760 -0.827831 -1.097510 1.260354 1.507391 0.313502 -0.327388 -0.674808 0.145025 -0.482679 -0.365968 0.458985 0.810042 -0.680229 0.297109 -0.716853 -0.372940 -1.036393 -2.139898 0.031315 -0.756017 0.741830 -0.421479 0.409616 -0.134230 -0.054440 0.260129 -0.368789 -1.268520 0.209588 -0.152211 0.396686 1.748237 -0.565917 -0.032970 -0.647149 -0.251871 -0.541426 0.527751 0.725121 0.418018 1.019665 1.157026 0.514645 -0.754099 -0.890753 0.410719 0.597465 0.644199 0.651706 -1.105286 -0.688413 0.273470 -0.159153 -1.764934 -0.593723 0.673932 0.687211 -0.618682 0.180099 -0.193898 -0.333073 0.995360 0.973388 -0.105523 0.288095 -0.041930 -0.591310 0.989358 1.585499 -0.349346 0.888766 -0.975252 0.040750 0.681089 -0.992160 0.581160 0.257793 0.208400 -0.576913 -0.654758 -0.088193 0.803778 0.453272 0.337979 0.018471 0.475604 -0.731984 -1.198337 -1.318232 0.191529 1.311461 -0.512444 0.820635 -0.846733 -0.901410 0.314674 0.984021 0.504144 -0.531369 0.690172 -1.102156 0.640083 -1.078926 -1.314842 1.578597 1.777997 0.884605 -0.211485 0.519478 1.192597 -1.909921 -0.944694 -0.459086 0.784520 -0.380183 -2.584021 -1.206068 0.091918 -1.061288 -0.277128 -0.318525 0.608032 0.627566 0.816612 0.841576 -0.098109 -0.779723 -0.521127 1.152490 -0.421692 -0.574089 0.061474 0.122326 0.070334 0.661353 -0.673085 0.441773 0.822908 -0.890085 0.405735 0.796652 0.388190 -0.227866 1.795429 1.265734 0.057507 1.295487 -0.075128 -0.478652 0.699438 -0.178261 0.415852 0.003600 -0.069495 -0.564887 0.415058 0.788832 -0.529132 -1.556139 -0.852364 -0.173216 0.052924 0.719802 0.894038 -1.497303 -1.314308 -0.225197 0.483873 1.162683 0.370240 1.465864 -0.408303 0.736431 -1.695570 0.212842 0.075528 -0.040816 1.068258 0.266005 -0.632071 0.028562 -0.365936 -1.095392 -1.705659 -0.390712 -1.107868 -0.559272 -1.015803 0.968726 -0.511390 -0.270145 0.282536 0.256415 0.916374 -0.163970 -0.188136 -1.076752 0.487452 1.669758 -0.374645 -0.847765 0.723604 0.058262 2.933127 -0.306951 0.332917 -0.399388 -0.101368 0.103142 -0.630499 -0.096290 1.439589 0.985631 0.129534 -0.592446 -0.431995 0.062332 0.395583 -PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = -3.851960 2.187236 19.850780 11.632438 -7.263349 -12.276998 -6.102273 -16.674339 9.004343 0.414344 11.614307 2.201666 2.491243 -1.970472 2.898238 -1.261850 -0.273243 -4.876998 1.580438 -3.719285 1.254412 13.103148 11.031931 -14.105318 0.077534 -19.115158 9.720345 7.989930 9.537218 10.260859 -0.523168 -3.262860 -1.987433 10.321821 -5.846644 -0.771208 0.455001 2.235145 -5.532968 0.866005 4.046614 11.030847 6.202240 -1.108816 11.917596 3.852591 11.726420 2.204341 -6.597394 -1.574298 -8.558342 17.588989 -11.562944 5.848505 1.143862 6.447334 -1.538350 -11.630886 -5.347136 -15.092347 0.802563 5.799093 -7.956211 0.801929 -11.078701 3.419607 -2.437743 -3.578254 5.620328 4.167444 11.627101 3.883758 2.458251 -4.310730 -9.944234 4.334782 -3.487685 8.835289 7.155910 -6.795892 -3.979024 4.140545 -1.779352 -7.164336 2.794614 1.573027 0.565892 -3.911858 5.115164 -1.771450 -3.146165 -3.357743 -5.348976 8.388306 -8.834393 7.080008 -3.638329 0.062073 -5.228842 -1.100920 -0.865322 -10.530546 4.962490 7.959759 0.059448 -1.619146 -2.325027 1.851564 -5.475753 -11.906728 0.199063 0.495710 2.887418 11.083040 -7.441369 2.221977 2.604646 0.199915 -2.034552 12.262915 1.831667 6.200054 10.226622 15.487763 0.832128 -7.490883 -2.539702 3.008116 9.587943 12.350215 8.393031 -12.772749 -7.024841 -2.708119 4.166702 -16.389152 6.139814 7.112529 7.171409 5.427616 -14.054532 1.531849 -4.411962 14.732614 7.756218 6.347632 3.168522 -0.784248 -8.027111 12.842305 24.762026 -4.467848 7.877179 -4.888123 -6.016722 14.381522 -12.852716 8.639332 3.760215 2.954535 4.339125 -9.348476 -5.373125 11.288173 7.023705 7.560014 10.662282 1.984515 2.573222 -19.723513 -12.156894 -0.840216 7.674833 -3.205482 17.892472 -7.931698 -6.491828 -3.382972 11.640229 -1.408654 -3.521116 -0.673905 -6.034903 6.181600 -16.550016 -14.011114 17.087457 18.818723 0.886266 0.865065 12.884098 12.544456 -5.310864 -4.781794 -4.871441 6.497478 -0.259648 -0.671476 0.852978 -0.513882 -11.718200 -6.316430 2.321269 3.260994 5.237892 -3.582945 -9.752619 7.282711 -15.046279 -7.383876 3.182520 -11.740552 -5.238836 0.348736 0.314954 1.032223 3.032872 -5.730653 -1.364042 7.820749 -8.035721 -0.118060 6.343612 9.278231 5.113572 11.760548 8.184788 4.196380 12.481751 8.576565 -5.216294 23.977911 -1.573982 1.065158 3.631383 5.641049 -0.872205 5.519912 0.463910 -5.648385 -6.277006 -13.231832 8.186395 -0.152916 9.225690 -10.368827 -9.820978 -8.934790 -6.875070 11.916143 6.361004 -1.639069 22.054741 -1.170764 1.658633 -23.452499 -1.737808 9.057851 -0.245338 9.128961 7.472546 -7.110599 -17.368969 -5.337981 -0.980518 2.994732 -5.701210 -10.393911 -6.810822 -6.381425 9.557752 -6.951530 5.239227 12.049421 -0.115825 5.753511 -2.050415 -1.022584 -3.400962 -4.169259 3.306120 5.521286 -13.456771 13.934275 -4.522863 26.523967 -8.846984 8.946592 -10.418672 2.558969 -1.749962 -1.095100 -0.432304 16.279979 8.390834 3.362503 0.212209 0.203978 -7.537802 6.973523 -PE-benchmarks/aho-corasick-algorithm.cpp__main = 2.302878 5.120701 12.946735 4.582918 -13.357805 -15.732324 -4.618942 -23.366507 8.020328 1.538882 7.753882 1.613863 3.342327 -7.012305 -0.506664 7.877882 4.870063 -0.807988 -0.938984 -7.439110 -10.363309 6.906840 -1.447819 -2.158213 5.482881 -11.820068 7.843768 4.833536 7.424480 3.171278 5.772359 -1.976151 -6.349573 8.173612 3.707909 5.625996 3.784913 1.955222 -10.303501 3.885299 -0.073664 -2.976653 9.256268 1.013515 12.308519 1.902123 7.808299 6.138099 -8.386704 -0.048920 -6.275857 14.131035 -6.661689 6.022124 0.718872 -1.187943 -1.291422 -7.344508 -1.013152 1.533611 -5.949433 -7.475557 -6.578270 0.698441 -8.141758 1.061666 -3.330625 -7.654625 0.496085 4.078596 8.000755 2.610993 -1.788313 3.882412 -11.763080 -0.651442 4.313010 7.201121 9.581442 -1.937162 4.731176 -2.906974 -6.995593 -8.062036 9.442251 4.059365 4.843768 -0.268553 -4.648939 -2.513918 -2.479344 -4.655200 6.467920 5.019423 -11.029068 -2.420105 -6.706364 -4.352684 -10.920042 -15.325010 3.096806 -3.175769 6.536915 -3.548295 -2.953291 1.437910 0.037844 1.551985 -4.085700 -5.279187 0.076803 -4.383062 5.055720 15.358346 -0.782196 -4.684820 -3.238313 -4.166087 -4.266379 4.978371 5.261137 0.726231 13.490919 12.718726 6.139586 -6.272482 -8.067296 0.337420 3.653822 8.831177 7.091491 -10.144829 -6.335325 3.181425 -2.344697 -16.233324 -0.718212 0.653136 7.435211 -0.160886 -1.469352 -3.247625 -4.022278 6.689257 2.051557 0.240430 2.336452 -0.935400 -7.195833 9.302498 14.341830 -2.231343 6.220922 -5.691952 1.673700 4.385756 -5.602823 1.361143 2.970825 -5.821479 -2.549990 -2.205504 -3.711712 7.075131 2.219422 -2.285632 1.549851 6.024174 -10.736588 -12.814242 -11.539759 2.888686 11.978483 -1.739795 11.081547 -10.419860 -5.448467 -3.632788 11.489254 -0.408939 -2.981069 5.389932 -9.661013 7.611323 -2.220599 -10.682836 17.454055 15.278890 4.930500 -2.035583 7.180984 6.820544 -18.049356 -8.399681 -4.387191 -0.214899 3.672993 -16.745152 -8.442659 2.644191 -11.408019 -3.152088 1.199566 5.459040 6.438384 4.842495 5.765280 2.060390 -4.755467 -7.844171 6.477181 -3.085450 -1.305603 3.660237 1.351367 2.876417 6.937073 -4.624813 -2.085571 0.534318 -5.770554 3.712322 4.662586 9.814754 1.261395 15.454000 10.152845 -0.273629 14.261371 2.211530 -6.538750 9.344564 -0.105382 7.301372 4.298214 1.665503 -1.874212 2.599852 8.750713 -6.256372 -6.025164 -9.162609 -3.871994 0.197246 6.536292 -0.380812 -7.155826 -14.410728 -3.222021 3.044868 4.309249 -2.348120 12.469379 -2.005997 2.229011 -16.119919 -0.445132 5.048592 -1.190539 8.178183 3.850874 -8.076384 -6.980366 -4.091695 -9.931777 -10.955621 -2.456643 1.279596 -6.288215 -3.407080 9.460941 -3.036569 -0.355819 8.779112 -0.503237 6.293752 -6.978534 2.873564 -4.029800 -0.352094 12.597937 -0.871207 -9.084972 9.460870 2.472266 26.749101 2.880035 3.653439 -3.034668 -3.935117 3.181397 -6.094507 -4.068899 11.053756 7.672502 4.486954 -0.886255 0.813139 -1.294512 10.279418 -PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = -4.606802 4.516197 27.921812 15.956522 -15.969178 -22.747070 -10.833099 -28.392337 13.228210 0.139426 17.406725 3.435957 2.505064 -1.533927 4.186296 1.000519 1.823705 -6.805036 -0.094297 -8.160701 -4.076620 18.875612 13.307255 -19.027488 2.562719 -26.653461 13.151993 11.771809 11.642968 13.734087 0.780406 -5.035331 -6.339610 14.718675 -6.656052 2.553543 3.044939 2.844923 -10.242260 2.262448 6.643600 11.587265 13.329958 -0.857556 19.844532 6.258189 16.075180 6.036234 -13.368394 -2.509240 -12.991044 25.941842 -15.918290 11.015020 1.090481 9.388542 -1.763669 -17.596681 -7.757970 -18.450455 -2.287336 4.104260 -12.166465 -0.061571 -14.874748 4.924481 -1.926769 -7.588685 8.040975 4.243792 18.529360 3.334099 1.048933 -3.023247 -16.280224 3.002289 -3.553400 14.268989 11.134090 -8.870136 -3.837958 3.649309 -5.703021 -11.240992 4.807949 2.677461 2.444864 -4.266595 3.357239 -2.529122 -3.356457 -6.367671 -3.558302 11.918422 -14.591669 7.909674 -5.556361 -2.172409 -11.970503 -6.520753 0.893495 -12.308259 8.682125 7.873260 -1.140734 -2.329717 -1.655398 3.161279 -8.846901 -17.019923 1.777408 0.274154 3.149296 17.632411 -8.649774 0.450248 4.232338 -3.355933 -5.021658 17.178366 4.531899 7.462930 15.618203 24.209422 4.364813 -11.390102 -7.276303 1.912352 14.561919 18.335875 13.056719 -17.273158 -10.745546 -0.600838 2.490461 -25.529633 6.723934 10.261882 15.231251 7.160620 -17.390506 0.239776 -8.131799 21.375547 8.675907 9.868707 4.190213 -2.526625 -15.018901 18.672567 36.816988 -5.689229 13.784808 -7.801026 -5.884789 18.894151 -17.264226 11.788323 7.082989 0.545598 3.255496 -11.232042 -8.596994 15.864942 10.860652 8.240427 12.411650 5.337054 -4.337846 -28.788141 -20.954545 -1.992464 15.238817 -3.609272 25.464775 -14.304783 -11.103047 -6.393931 19.651240 -4.484829 -6.784990 1.909423 -10.423315 10.815360 -21.607465 -19.813487 29.392787 31.715438 4.103600 1.251197 20.409006 17.234150 -12.193459 -9.803035 -8.047404 7.690385 2.884121 -4.927602 -1.565837 -1.179537 -17.815714 -9.607326 2.767845 6.723973 6.556512 -2.301658 -8.521087 10.460936 -19.753717 -11.320946 4.798853 -16.881444 -6.689906 4.273411 0.412057 0.770917 4.739535 -7.279410 -2.856685 9.518823 -12.469492 3.348108 9.478245 13.673525 7.495364 19.867797 14.798746 3.868289 22.679865 10.822295 -9.493135 33.971971 -4.799449 4.996105 5.662239 8.247417 -1.596458 6.660535 4.395569 -8.674541 -8.259775 -18.463466 9.416501 -0.467384 14.868340 -14.462316 -16.769354 -17.940015 -8.358835 15.158602 10.299865 -4.157012 31.165130 -2.471815 4.066325 -37.961882 -1.547508 14.213064 -0.516375 10.596116 9.301440 -10.606838 -28.416902 -5.879208 -5.931520 -0.433100 -7.486338 -13.344363 -10.442607 -10.854062 13.609311 -9.487819 5.808032 19.293854 -2.037120 10.141971 -6.199047 -1.763585 -5.408971 -6.865382 9.593688 5.765587 -19.575754 20.721177 -2.976988 44.569470 -8.495874 13.396676 -11.844068 3.024002 -1.542363 -4.620755 -1.954209 23.473744 13.683678 5.356928 0.206813 0.929882 -9.477326 10.488328 -PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = -0.055824 0.089684 0.783645 0.195769 -0.406876 -1.148153 -0.334357 -1.473930 0.624686 0.307904 0.827838 0.027287 0.657897 -0.374328 0.000659 0.301399 0.360407 -0.284085 0.130538 -0.442036 -0.343812 1.042654 0.011481 0.026614 0.090789 -0.917912 0.619382 0.323977 0.403881 0.724988 0.275275 0.002416 -0.219298 0.364291 -0.139357 0.461566 0.144630 0.370605 -0.366899 0.069020 0.051124 -0.142442 0.623208 0.077895 0.819818 0.307543 0.338825 0.254960 -0.219879 -0.424771 -0.279396 0.420834 -0.548428 0.216337 -0.373890 -0.195997 0.169355 -0.204904 -0.086119 -0.334381 -0.092750 -0.255505 -0.590587 0.133012 -0.564699 0.255033 -0.286030 -0.461639 -0.192375 -0.199663 0.514174 0.184777 -0.069870 0.127351 -1.096402 -0.044219 0.133837 0.138658 0.529205 -0.103829 -0.196682 -0.261996 -0.598190 -0.611367 0.806787 0.574719 0.267600 0.336274 -0.475714 -0.089818 -0.247840 -0.022071 0.510759 0.416226 -0.327403 -0.082497 0.081917 -0.188887 -0.418678 -0.811164 0.358357 -0.305408 0.307231 0.035097 0.064101 -0.099923 -0.208047 0.068015 -0.554549 -0.567031 0.170448 -0.505455 0.160092 0.880986 -0.295277 -0.174081 -0.466597 -0.262122 0.106774 0.569526 0.339290 0.108503 0.703251 0.612383 0.243862 -0.684237 -0.534491 0.367162 0.516948 0.355510 0.229699 -0.645405 -0.435593 0.223065 -0.539203 -1.072960 -0.380182 0.257695 0.510592 -0.338433 -0.290455 0.525392 -0.355475 0.373267 0.685706 0.113470 0.156482 0.073116 -0.664519 0.482111 0.990948 -0.168254 0.533935 -0.400647 -0.265791 0.644245 -0.402806 0.172869 0.251446 -0.313678 -0.408502 -0.146099 0.179095 0.530743 0.145462 0.409565 -0.034263 0.429885 -0.468512 -0.697237 -0.984173 -0.059520 1.055855 0.238067 0.967465 -0.742910 -0.217119 0.065467 0.716443 0.037939 -0.367982 0.281214 -0.513614 0.476161 -1.076715 -0.837725 1.240497 0.889139 0.752097 0.041821 0.378563 0.547177 -0.551263 -0.268175 -0.202123 0.329232 0.121173 -1.041253 -0.280325 0.064952 -0.790450 -0.436304 -0.130878 0.381014 0.073449 0.124050 0.481093 -0.348609 -0.208243 -0.460077 0.365249 -0.321814 -0.171000 0.003789 0.028736 -0.044801 0.200650 -0.269098 0.237225 0.248405 -0.366679 0.262307 0.347540 0.261589 0.170143 1.012133 0.906848 -0.430886 0.451737 -0.144754 -0.226352 0.748831 -0.165845 0.342825 0.141365 0.483343 0.237523 0.128951 0.586496 -0.364517 -0.302935 -0.697308 -0.210887 0.522886 0.442318 0.031498 -0.580558 -1.098211 -0.040853 -0.006307 1.054123 -0.107498 1.072090 -0.287558 0.377377 -1.043724 0.174078 0.237965 -0.145826 0.356093 0.227221 -0.380989 -0.417716 -0.260162 -0.703776 -0.769604 -0.209366 -0.363250 -0.397880 -0.368083 0.308832 -0.541321 -0.083434 0.382553 -0.025205 0.430958 -0.268517 0.090068 -0.536649 0.198563 0.522966 -0.069090 -0.520033 0.490250 0.117627 1.507494 -0.021488 0.535089 -0.159895 0.540799 -0.240758 -0.666666 -0.237611 0.878148 0.632025 0.015898 0.101562 0.011281 0.237609 0.471457 -PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/shortest-common-supersequence.cpp__main = 0.170467 0.340413 1.875946 -0.115487 -0.587615 -1.877355 -0.848869 -4.535071 1.713124 0.642077 1.943419 -0.426211 0.893785 -0.410474 0.111480 1.368438 0.498328 -1.329986 0.993634 -0.726215 -0.089313 2.541629 0.023108 1.217837 -0.138865 -2.568634 0.130294 0.093711 1.891296 0.650474 0.598038 -0.870670 -0.312847 0.682024 0.238228 1.203948 1.137995 0.334248 -1.693612 0.358075 -1.312474 -0.247007 1.143870 -0.419890 2.229502 -0.495431 1.315824 0.647738 -0.198920 -0.259178 -0.821138 2.514776 -1.236415 0.303195 0.743710 -1.224712 -0.601432 -0.582513 -0.774564 0.626434 -1.250252 -0.721463 -0.796100 0.658967 -1.037204 0.888088 -1.221635 -0.172379 -0.177469 0.461878 1.490311 1.080001 0.810109 1.412146 -2.728862 0.665637 0.109681 0.498065 0.699078 -0.763355 0.783823 0.155876 -0.819824 -1.365968 1.805051 2.283525 0.165190 -0.420850 -1.104703 0.712472 -0.810878 -0.809869 0.585761 0.842057 -1.261207 0.152901 -0.564868 -0.536063 -1.196344 -2.782459 0.127029 -0.987427 0.951080 -0.644164 0.893831 -0.226806 -0.372762 0.333565 -0.952067 -1.622309 0.603747 0.074891 0.581807 2.446732 -1.180253 0.215614 -1.082893 -0.151774 -0.826597 0.701700 0.989254 0.922402 1.080047 1.848089 0.767765 -1.083487 -1.315959 0.852847 1.287068 0.945647 0.736494 -1.514373 -0.849314 0.558215 -0.170974 -2.318742 -1.124110 1.139008 1.172810 -0.376158 0.253179 -0.794676 -0.219512 1.811766 1.371255 -0.383877 0.217187 0.114519 -1.022159 1.532794 2.051523 -0.375692 1.354514 -1.162818 0.623750 0.552213 -1.794065 0.776646 0.432885 0.432373 -0.812119 -0.857476 -0.374471 0.873745 0.978890 0.629547 -0.695234 0.964189 -1.023648 -1.908731 -1.977735 0.099826 1.848494 -0.855786 0.733101 -1.063828 -1.601830 0.347452 1.343589 0.787062 -0.963937 1.127637 -1.901857 0.979857 -1.288806 -1.694285 2.492558 2.985301 1.571730 -0.183794 0.780394 1.944099 -3.149721 -1.008153 -0.358329 1.071612 -0.668659 -4.117030 -1.661966 0.058980 -1.497667 -0.914176 -0.498247 0.873565 0.574104 1.530094 1.582691 0.408097 -0.775199 -0.355217 1.698114 -0.363037 -1.056006 -0.088029 0.273287 0.472121 0.980299 -1.189913 0.968300 1.543705 -1.398082 0.564503 1.259668 0.608920 -0.129582 2.395929 1.749627 0.302617 2.256633 -0.270146 -0.814503 0.497796 -0.062708 0.687804 -0.063979 -0.658259 -0.582856 0.412867 0.894973 -0.845495 -2.140985 -0.994229 -0.415887 0.013779 1.530404 1.508491 -2.715478 -1.673899 -0.198073 0.885603 1.114881 0.453666 1.936412 -0.800444 0.990931 -2.550429 0.228246 0.277262 0.055545 1.349668 0.255557 -0.745606 -0.105530 -0.454360 -1.596487 -2.670627 -0.617138 -1.536732 -0.578705 -1.919115 2.251409 -0.847045 -0.553132 0.142981 0.560639 1.613981 -0.073151 -0.236972 -1.603988 0.861702 1.901699 -0.481337 -1.286391 1.090997 0.098525 4.205286 -0.677036 0.137337 -0.563789 0.199920 -0.133004 -0.804875 0.085852 1.982866 1.720843 0.048389 -1.140769 -0.830650 -0.137463 0.433991 -PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/boyer-moore-algorithm.cpp__main = 2.147951 3.394958 6.744802 1.868986 -6.588852 -7.392616 -2.008407 -11.635968 4.357553 1.288410 2.942363 0.954675 1.708173 -3.184684 -0.976672 4.232991 2.448568 0.316652 -0.761098 -3.864770 -6.101618 3.132163 -1.345645 -0.554124 3.494509 -6.698850 4.735011 1.431818 4.197602 1.742663 3.330982 -0.566193 -3.113833 4.265413 2.566629 2.780747 1.525031 0.936214 -5.326987 2.600464 0.191100 -1.466792 4.379292 2.176250 5.700464 1.720978 2.674037 3.001359 -3.391042 0.410428 -3.004653 6.197745 -2.785374 3.403916 -0.439189 -0.158762 -0.864140 -3.568719 0.421612 2.014382 -3.062842 -3.906949 -3.135834 0.370732 -4.538049 0.043884 -2.546127 -3.944440 -0.789788 2.072709 3.966712 1.321746 -1.175898 1.200551 -6.529036 -0.523494 2.009293 3.274991 5.597103 -0.735230 1.682079 -1.518728 -4.100648 -4.665552 5.210731 2.292423 2.000151 0.080198 -1.746183 -2.944834 -1.893888 -2.456046 3.768314 3.062334 -5.933174 -1.062572 -4.243738 -2.197028 -4.760823 -8.302740 1.479945 -1.497642 3.125644 -2.709657 -1.589612 1.106345 1.349630 0.900768 -0.566754 -1.495925 0.466030 -1.959804 2.412767 8.205092 0.985914 -3.459187 -1.593335 -2.378499 -2.314695 2.625966 2.753922 -0.476910 7.575652 5.609141 3.639309 -2.395433 -3.393950 0.644496 0.322025 3.897502 3.702944 -5.208762 -3.208287 1.849506 -0.425248 -8.007778 0.100286 -0.339813 3.345949 -1.218875 0.027834 -1.761089 -1.979511 1.731317 0.753530 -0.428146 1.812695 -0.835743 -3.159443 4.029977 7.792024 -0.959784 2.099702 -3.723526 0.776653 2.204036 -2.399006 0.520470 0.239249 -3.037095 -1.051186 -0.899205 -1.210081 3.793398 -0.284709 -2.334743 1.415263 3.013852 -5.931822 -5.653744 -5.353361 1.080339 5.676142 -0.872163 5.530005 -4.998684 -1.266981 -2.593799 5.700261 0.621935 -0.345052 3.020189 -4.572107 3.381244 -0.722400 -5.016800 8.469619 7.395536 2.249475 -2.173243 2.631505 3.119342 -8.580929 -5.276001 -2.538925 -0.985041 2.165076 -7.965651 -4.874592 1.416084 -5.609433 -1.175746 0.876113 2.422890 4.572697 2.126675 2.869636 0.391030 -2.224713 -5.161010 3.641404 -1.351143 -0.394504 2.091563 0.929884 0.677275 3.698142 -1.737123 -1.415486 0.311717 -1.886391 1.751903 2.470620 4.907377 -0.297238 7.182314 4.707515 -0.197176 5.827391 1.294704 -3.202602 5.161081 -0.089180 3.468912 2.250441 0.440728 -1.257929 1.555667 4.022522 -3.089178 -2.966646 -4.383016 -1.720709 -0.484749 2.095189 0.162860 -2.723369 -6.966470 -1.503773 0.260231 2.234950 -0.498387 6.123743 -0.831495 1.009134 -6.966725 -0.095422 3.074760 -0.694253 4.453433 2.243695 -4.301044 -2.072837 -2.140803 -5.123526 -5.038255 -1.158339 1.181126 -3.314199 -0.691808 3.996895 -1.078274 0.301838 4.883043 -0.293916 2.998056 -4.743975 1.830223 -2.597348 0.069021 6.854410 -0.603757 -4.234149 3.850731 1.046756 11.936509 1.649817 1.936471 -1.196748 -2.949529 1.486847 -3.451952 -2.769875 5.187684 2.830697 2.730734 0.031598 0.115200 -0.042620 5.433839 -PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = -0.291908 1.939992 13.027328 7.480327 -5.514462 -8.689524 -4.497885 -14.049962 7.455092 0.001472 6.953864 0.796491 0.999655 -1.912525 -0.062069 -0.304009 0.192601 -3.745098 0.896441 -3.320440 -1.117608 9.875319 4.041103 -8.069854 0.760289 -16.540123 7.768424 4.606048 7.219763 7.088562 0.338892 -2.470605 -1.563093 7.143329 -2.541765 -0.574978 2.487474 0.364447 -5.293331 0.963248 2.715072 7.203530 6.340848 0.123829 7.974851 2.292280 5.845208 2.375572 -3.807207 -0.024479 -6.058328 10.961329 -6.395992 4.549975 0.622670 3.575798 -0.085685 -8.817940 -3.194425 -5.661855 -1.577531 2.706128 -3.981730 0.351836 -7.461437 2.172879 -1.706877 -2.784660 3.940470 2.389411 8.214294 3.620232 2.162011 -2.144155 -8.384089 3.446822 -1.465949 6.535450 5.265245 -4.645225 -0.873715 2.657072 -3.367097 -5.157596 2.687782 3.407417 0.708385 -2.071893 3.262425 -3.176987 -1.994806 -3.207423 -1.646782 5.705463 -5.167197 2.780193 -4.889130 -0.526476 -3.897297 -3.932983 -0.658562 -6.029476 3.888771 3.972255 -1.154904 0.409291 2.331578 1.463480 -2.350403 -6.570914 1.453233 -0.115037 3.304044 10.022499 -3.062633 -1.417726 0.024812 -1.066529 -3.077541 7.973845 0.406875 3.316199 7.992669 10.981524 1.688573 -5.007561 -2.996081 2.387004 5.049598 7.765943 6.423746 -9.307465 -4.452542 -1.577354 3.142808 -11.957639 3.116632 2.164416 6.211489 1.669420 -7.387148 0.708441 -3.574032 10.121514 4.465858 2.301729 2.559432 -0.729476 -6.277022 9.983686 16.924599 -2.101871 4.847607 -7.291703 -2.737794 7.491265 -7.338956 5.297823 0.721039 1.029793 2.540315 -5.922119 -1.677403 7.364522 2.439265 2.891217 6.496322 2.418985 -0.585866 -13.070107 -8.912533 0.331009 5.959432 -2.574075 12.832730 -6.601595 -4.975490 -3.487297 8.635928 -0.281753 -1.097851 1.773888 -5.696735 4.423829 -10.014903 -10.162150 13.227641 14.318271 1.210914 -0.066568 7.956727 7.989048 -4.746973 -4.204695 -3.035573 3.211249 2.198981 -4.327101 -1.392274 -0.281941 -6.701028 -5.624366 2.431045 2.572846 5.750005 -2.373376 -4.411252 2.890970 -9.726066 -7.270339 5.211653 -8.442963 -2.945523 2.102554 0.406179 -0.140773 4.220281 -2.945473 -1.066003 5.313617 -3.823070 1.054345 4.517392 6.634857 1.513812 6.631628 7.250636 2.750962 10.226131 6.359080 -3.690755 15.988805 -2.112577 1.568855 3.199903 1.813012 -1.103826 4.214715 0.969888 -4.266188 -3.479296 -9.041047 5.742520 -1.542904 5.736966 -6.492267 -6.813106 -7.793136 -5.207464 6.311748 3.467344 0.178654 14.818708 -1.213847 0.331058 -15.796223 -1.602809 7.451360 1.119978 6.387571 4.765762 -5.256535 -10.889305 -3.022681 -3.043190 0.239605 -4.698747 -7.724936 -5.462563 -4.972226 7.580554 -3.758669 4.128439 10.157945 0.309564 3.766424 -4.912917 -0.458262 -3.983029 -3.221237 2.727036 2.455206 -8.285721 8.532139 -2.931488 17.859000 -5.077915 4.955909 -6.753538 1.451588 -1.155155 -2.944732 -0.620532 10.865682 4.023567 2.218708 -0.184098 -1.144477 -4.595893 6.298565 -PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = -0.570698 1.097480 4.527740 3.457361 -3.118111 -3.972749 -1.737495 -4.486499 2.030058 -0.278367 2.772526 0.498682 0.629244 -0.570275 0.284878 -0.893121 0.598959 -0.309888 -0.333791 -1.463909 -1.588072 2.723067 1.637140 -3.833325 0.595654 -3.782036 3.132039 2.380985 1.535142 2.436057 0.145092 -0.495139 -1.427784 2.505323 -1.321438 -0.517571 0.163088 0.594287 -1.650950 0.004689 1.837987 1.567703 2.784611 0.019341 2.410218 1.415214 2.020919 1.062117 -2.418211 -0.396103 -1.734408 3.259757 -2.243472 1.941260 0.103804 1.444824 0.693066 -2.822435 -0.674781 -2.782397 0.079346 0.200288 -1.900120 -0.132703 -2.721988 0.424350 -0.385963 -1.941101 1.654570 0.032941 2.567712 0.172277 -0.265904 -1.204624 -2.425242 0.373338 -0.061492 2.276721 2.075968 -0.596955 -0.264344 0.365303 -1.629185 -1.750935 0.606534 -0.135985 0.829571 -0.194909 0.384750 -1.252456 0.378488 -0.743962 -0.031528 1.815422 -1.746013 1.177403 -1.589388 -0.520853 -2.105149 -1.600714 0.462357 -1.721135 1.594160 1.467234 -1.546211 -0.175367 0.346881 0.426777 -0.950394 -2.866004 0.046724 -0.753089 1.090112 3.281407 -0.997882 -0.887160 0.283181 -0.967714 -0.586517 2.774698 0.652421 0.725318 2.649742 3.766812 0.561324 -2.164541 -1.261073 0.168737 1.654526 2.869152 2.175587 -2.822351 -1.734997 -0.072825 -0.066851 -4.532093 1.125635 0.807383 2.485661 0.985007 -3.067631 0.895710 -1.856772 2.682836 1.151061 1.994484 0.839969 -0.394798 -2.377869 2.841759 5.104615 -0.875423 1.994616 -1.272913 -1.897540 3.028016 -1.769455 1.489679 0.769615 -0.480462 0.719743 -1.527836 -0.681532 2.732287 0.909663 0.930843 2.412814 0.713558 -1.042200 -4.620888 -3.472670 0.583664 2.912614 0.193442 4.581404 -2.820994 -1.406426 -0.861338 3.488173 -0.991216 -0.978567 0.371617 -1.441680 1.879560 -3.715202 -3.522053 4.340192 4.119847 0.152816 0.013417 2.829033 1.839836 -1.295841 -1.688470 -1.857298 1.076082 0.953373 -0.291262 0.017457 -0.139157 -2.760977 -0.987822 1.065101 1.204875 1.798008 -1.729174 -1.583037 0.457639 -3.084397 -2.780843 1.170448 -2.727308 -0.338777 0.948988 -0.306929 -0.046610 1.107502 -0.615258 -1.208264 0.554719 -1.482849 0.434051 1.017264 2.368081 0.709886 3.589683 2.292069 0.083442 2.995259 1.947580 -1.587305 6.620599 -1.341125 1.035447 1.039510 2.343996 0.000291 1.319603 1.396955 -1.489235 -1.005851 -3.368477 0.965753 0.127269 2.093985 -3.763406 -1.902890 -3.770347 -1.494042 1.693110 1.972897 -0.787877 5.239228 -0.393509 0.290528 -5.514739 -0.427189 2.526648 -0.253512 2.146811 1.486407 -2.114094 -4.466366 -1.024659 -1.496435 0.652039 -1.184756 -1.733761 -1.972531 -0.819546 1.503712 -1.129901 1.213582 3.499144 -0.871788 0.908321 -1.475408 -0.079096 -0.393645 -1.737905 1.354038 0.704772 -3.137679 3.698431 -0.319833 6.752049 -0.562005 2.360269 -2.032746 0.476358 -0.202887 -1.314937 -0.838242 3.786986 1.944197 1.001948 0.320573 0.735060 -1.421372 2.054139 -PE-benchmarks/rat-in-a-maze.cpp__main = 0.104076 0.254084 0.796514 -0.217969 -0.365629 -0.872031 -0.346883 -1.578106 0.431475 0.290941 0.786508 -0.196651 0.484838 -0.015054 0.037412 0.430009 0.319811 -0.381355 0.362395 -0.375970 -0.334308 0.805283 -0.154091 0.546472 0.110193 -0.948671 0.383825 0.089123 0.477212 0.470089 0.269851 -0.147749 -0.312245 0.223887 0.111943 0.433658 0.393842 0.275684 -0.469255 0.367262 -0.267077 -0.246835 0.414878 -0.049856 0.672333 0.272153 0.146636 0.334445 -0.125605 -0.316631 -0.192054 0.490551 -0.417329 0.131433 -0.037594 -0.401500 -0.142755 -0.122800 -0.180681 0.193922 -0.288856 -0.444146 -0.341290 0.282009 -0.458163 0.292058 -0.530467 -0.270280 -0.105226 -0.017763 0.463940 0.210274 0.103655 0.544347 -1.013179 0.086206 0.133157 0.195360 0.315178 -0.308503 0.097879 0.021908 -0.531429 -0.617255 0.629660 0.855285 0.232632 -0.118239 -0.531285 0.145583 -0.237528 -0.103743 0.425057 0.411532 -0.396293 -0.052624 -0.374810 -0.219165 -0.507946 -1.198518 0.190428 -0.313349 0.380125 -0.159456 0.044506 -0.194258 -0.164072 0.169608 -0.314245 -0.588686 0.182119 -0.241639 0.193182 0.977138 -0.281023 -0.085664 -0.527334 -0.280947 -0.044471 0.329362 0.390266 0.149857 0.542411 0.608803 0.299563 -0.480993 -0.642406 0.309922 0.379154 0.255871 0.297241 -0.639248 -0.378693 0.213043 -0.464645 -0.921531 -0.402589 0.126523 0.443744 -0.416659 0.116664 0.046626 -0.369059 0.363164 0.548103 0.054272 0.105162 -0.004658 -0.479377 0.459856 0.784369 -0.194552 0.517107 -0.407562 0.015715 0.298171 -0.331066 0.187862 0.253669 -0.012369 -0.444137 -0.227199 -0.068454 0.404431 0.261241 0.394220 -0.092706 0.357691 -0.497852 -0.534876 -0.770397 0.023119 0.923178 -0.164340 0.407224 -0.588800 -0.337504 0.127612 0.790940 0.245744 -0.424276 0.336629 -0.464847 0.338851 -0.511983 -0.639330 0.875733 0.987576 0.566762 -0.093040 0.224779 0.611775 -1.110550 -0.389169 -0.266014 0.396700 -0.268267 -1.396408 -0.610561 0.117037 -0.593891 -0.195000 -0.193652 0.421070 0.273951 0.486429 0.550919 0.073162 -0.220375 -0.313478 0.583087 -0.140359 -0.284722 0.062353 0.031079 0.043582 0.252532 -0.410739 0.269170 0.465698 -0.461704 0.304112 0.497308 0.151584 -0.050100 1.047131 0.557729 -0.123345 0.403950 -0.203500 -0.266644 0.339957 -0.048641 0.322786 0.009703 0.067672 -0.154831 0.123985 0.501927 -0.285429 -0.794784 -0.542151 -0.319041 0.122938 0.419028 0.571930 -0.812171 -0.861504 0.049174 0.112504 0.883626 0.142709 0.830533 -0.144765 0.427702 -0.757065 0.155271 0.063060 -0.146898 0.411716 0.084393 -0.248725 -0.109885 -0.159285 -0.745079 -1.024003 -0.160952 -0.418929 -0.344182 -0.478072 0.471141 -0.192486 -0.244936 0.116974 0.165339 0.512917 0.025750 -0.092972 -0.599553 0.325666 0.809625 -0.209529 -0.471075 0.451813 0.194577 1.512507 -0.022565 0.221190 -0.016356 0.036756 0.010374 -0.452155 -0.117766 0.738029 0.598878 0.170652 -0.245188 -0.162251 0.164567 0.222635 -PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = -0.305812 1.113434 4.002169 2.470720 -2.402826 -3.063020 -1.567060 -4.035471 1.633295 -0.241435 2.420095 -0.034860 0.425688 -0.434117 0.149549 -0.685325 0.529055 -0.484092 -0.148257 -1.215897 -1.279987 2.058778 0.999403 -2.788227 0.553736 -3.624855 2.280371 1.927343 1.296305 1.695413 0.120469 -0.455678 -1.189942 2.065112 -1.070835 -0.398647 0.777309 0.362148 -1.512919 0.112820 1.240431 1.668101 2.218142 -0.217130 1.976425 1.266071 1.333293 0.981839 -2.040628 -0.270995 -1.119610 2.924440 -1.592070 1.473513 0.578302 1.078302 0.462184 -2.671958 -0.622670 -1.797684 -0.100177 0.250826 -1.245022 0.025911 -2.060503 0.375976 -0.059589 -1.500242 1.704551 0.017415 2.041826 0.213405 -0.077570 -0.575824 -1.650855 0.643053 0.251418 1.915775 1.559319 -0.771299 0.279638 0.552478 -1.264530 -1.490123 0.529293 0.368205 0.926666 -0.315739 0.273793 -0.940309 0.462097 -0.880198 0.020061 1.526766 -1.374569 0.627607 -1.613153 -0.646208 -2.074754 -1.570029 0.223329 -1.419156 1.413233 1.289758 -1.482923 -0.017255 0.367516 0.495087 -0.659268 -2.199896 0.079657 -0.658605 1.247654 3.044734 -0.939518 -0.826561 -0.085580 -0.946710 -0.702188 2.186258 0.329778 0.591854 2.269931 3.193184 0.504364 -1.765020 -1.245781 0.024575 1.377114 2.317156 1.969221 -2.739047 -1.369862 -0.148059 -0.150427 -3.856722 0.727243 0.061207 2.065460 0.714701 -2.494718 0.703554 -1.519331 2.417666 0.728533 1.407592 0.561707 -0.383001 -1.926022 2.453332 3.950252 -0.822971 1.758355 -1.257673 -1.511343 1.832096 -1.281716 1.268479 0.749080 -0.422744 0.596585 -1.359017 -0.488805 2.236452 0.793886 0.803313 1.692065 0.572643 -0.844622 -3.784477 -3.010317 0.704090 2.047532 -0.389122 3.718192 -2.323814 -1.638573 -0.874978 3.380320 -0.964585 -0.790017 0.388686 -1.367760 1.501811 -2.207281 -2.997528 3.544972 3.808278 0.093837 -0.035801 2.507826 1.349629 -1.650576 -1.313376 -1.427375 0.880380 0.793197 -0.856918 -0.266463 -0.030401 -2.044845 -0.756498 0.693452 1.076850 1.520362 -1.054391 -1.127755 0.581387 -2.664758 -2.192337 1.151769 -2.102811 -0.208394 0.871165 -0.188662 0.034145 1.257450 -0.888991 -1.203518 0.595351 -1.370274 0.429561 0.986410 2.137259 0.509955 3.030315 1.707151 0.311968 2.950496 1.568129 -1.308152 5.005942 -1.041624 0.849039 0.805226 1.620542 -0.277161 1.148469 1.131423 -1.230748 -1.066619 -2.813608 0.731140 -0.247356 1.560444 -2.713881 -1.791491 -3.081394 -1.386475 1.434144 1.438253 -0.419452 4.314508 -0.134285 0.086622 -4.551096 -0.469404 1.962631 -0.210651 1.755067 1.193648 -1.818123 -4.051507 -0.736631 -1.539345 -0.174477 -0.979807 -1.613790 -1.660611 -1.010578 1.936388 -0.640477 0.974295 3.025215 -0.203120 0.654670 -0.943596 -0.121962 -0.434651 -1.481925 1.284126 0.320437 -2.516216 2.948243 -0.160520 5.757619 -0.498923 1.813494 -1.731222 0.062220 0.241198 -1.070770 -0.664303 3.100456 1.615206 0.899603 -0.051607 0.420441 -1.441034 1.901950 -PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = -0.658667 0.457785 3.904592 2.433554 -2.648176 -3.022778 -1.590241 -3.972210 1.549076 0.062561 2.595296 0.024479 0.304547 -0.536674 0.317939 -0.500308 0.222057 -0.867236 0.063655 -1.152328 -1.107636 2.189744 1.583846 -3.058171 0.588769 -3.586734 2.555544 2.000855 1.064257 2.076326 -0.365756 -0.589766 -1.103105 2.180168 -1.010934 -0.082964 0.771182 0.625015 -1.107524 0.603059 1.332498 1.524314 2.162997 -0.889887 2.600094 1.507564 1.524919 0.959311 -2.599068 -0.419712 -0.627974 2.195466 -2.050937 1.723810 -0.003365 1.041560 -0.142744 -2.648110 -1.183596 -2.770285 0.120405 0.153652 -1.314762 0.103054 -2.175641 0.475325 0.409908 -1.884219 1.814107 0.189831 2.109064 0.644515 -0.213762 -0.452800 -1.582761 0.624132 0.728176 1.903997 1.140395 -1.465873 0.025206 0.517818 -1.287559 -1.364323 0.158697 0.665988 1.092163 -0.555980 0.519691 -0.434473 0.800578 -0.583322 -0.186947 1.835067 -1.126116 0.428771 -1.376401 -0.485338 -2.123025 -1.449067 0.210922 -1.500195 1.812620 1.552750 -1.578041 0.297712 0.680219 1.198538 -0.985740 -2.444743 -0.249319 -0.720052 1.741436 2.725061 -0.578026 -0.615312 -0.184182 -0.919198 -0.395373 1.983712 0.012606 0.585706 2.967385 3.497844 0.544590 -2.087839 -1.573234 -0.056913 1.618851 2.556909 1.918053 -2.753763 -1.368215 -0.367166 -0.465978 -3.700596 0.389343 -0.171230 2.068827 -0.277141 -2.461850 1.080166 -1.629636 3.149504 1.272240 1.303208 0.381317 -0.099937 -2.262236 2.721870 4.428960 -0.647222 1.541641 -1.561077 -1.576223 2.254053 -1.076899 1.375947 1.124533 -0.389248 0.341326 -1.697017 -0.305125 2.141109 1.116811 1.238062 1.396643 0.731486 -0.637349 -3.706012 -2.903307 0.244877 2.194656 0.082517 4.504404 -2.590288 -1.871570 -1.136122 2.937369 -0.315837 -0.784547 0.176799 -1.414578 1.547261 -3.042724 -3.306536 3.608991 4.214511 0.987122 0.541310 3.003811 1.173784 -1.203837 -1.027354 -1.076017 1.062612 0.800412 -0.768714 -0.411520 0.226704 -2.333323 -1.121760 0.443184 1.104478 1.365246 -0.958549 -1.648408 0.903373 -2.808839 -2.004294 0.824336 -2.460474 -0.363835 0.836815 -0.082309 0.371218 0.966136 -1.144405 -0.753161 0.231379 -1.428914 0.941386 1.266264 2.058764 0.574203 2.525168 2.327066 -0.040813 2.722314 1.375124 -1.064877 4.853550 -0.828448 0.933098 1.197702 1.360615 -0.153216 0.861609 1.421807 -1.220537 -0.217227 -2.735953 1.068697 0.249296 1.794785 -3.123767 -1.859505 -3.146120 -1.138578 1.653065 1.678871 -0.294722 4.347824 0.112627 0.586330 -5.186289 -0.619288 1.401543 0.164301 1.759468 1.117763 -1.824068 -4.816507 -0.578811 -1.506479 -0.298180 -1.302023 -1.374676 -1.767798 -0.534695 1.350399 -0.338843 0.723784 3.185631 -0.359357 0.977575 -1.034217 -0.095746 -0.357899 -1.660990 1.251811 0.512994 -2.461010 2.625279 0.025167 6.347564 -0.465575 1.859529 -1.597758 0.471033 0.243499 -0.963959 -0.507209 3.124858 1.529566 0.984404 0.108119 0.121371 -1.310370 1.933225 -PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.157935 0.601310 2.208962 0.637572 -1.563010 -2.180257 -1.022483 -3.531489 1.126996 0.342762 1.760268 -0.247841 0.713973 -0.373089 0.112639 0.687031 0.812324 -0.554603 0.490737 -0.977309 -0.988404 1.768296 0.039477 -0.234486 0.391799 -2.115861 1.086028 0.911549 1.116438 0.887293 0.607592 -0.323288 -0.848014 0.956882 -0.204804 0.513640 0.724238 0.515059 -1.542446 0.670366 -0.100372 0.129542 1.405068 -0.336217 1.666519 0.525966 0.845467 0.898864 -1.132533 -0.362013 -0.666298 1.905667 -0.929411 0.663877 0.202609 -0.319296 -0.130360 -1.054037 -0.591139 -0.051209 -0.558334 -0.544243 -0.925903 0.432560 -1.183255 0.461676 -0.648908 -0.927626 0.504455 0.329395 1.200132 0.351536 -0.002403 0.541608 -1.936478 0.294692 0.471016 0.977137 0.953707 -0.526968 0.607803 0.156474 -1.042849 -1.241580 1.078267 1.319678 0.659589 -0.301459 -0.763818 -0.149937 -0.173869 -0.464117 0.717760 0.874007 -1.116191 0.035994 -1.083447 -0.627689 -1.501816 -2.095153 0.360268 -0.729476 1.080410 -0.027885 -0.377855 -0.077844 -0.099657 0.494382 -0.743468 -1.345346 0.107265 -0.657717 0.714887 2.585321 -0.518460 -0.516626 -0.887729 -0.626553 -0.542077 0.983140 0.681192 0.393262 1.546058 1.927308 0.569444 -1.197580 -1.379942 0.321370 0.906554 1.197832 1.070379 -1.548145 -0.988488 0.165440 -0.621018 -2.377605 -0.510852 -0.013802 1.092060 -0.420380 -0.242177 -0.101850 -0.951301 1.483322 0.739271 0.421139 0.310936 -0.101314 -1.237937 1.478118 2.175313 -0.419056 1.167646 -0.847481 -0.411063 0.722404 -0.704859 0.648065 0.644388 -0.437694 -0.542409 -0.663459 -0.276842 1.082394 0.524227 0.480227 0.160995 0.759634 -1.034445 -1.717615 -2.094634 0.542080 1.743738 -0.264873 1.870682 -1.497819 -1.285815 -0.201664 1.932323 0.190631 -0.779131 0.731843 -1.243042 1.004932 -1.202442 -1.821887 2.400920 2.450146 0.950095 -0.230312 1.298073 1.055645 -2.442747 -1.158036 -0.718020 0.770401 0.113458 -2.370675 -0.912724 0.404791 -1.447821 -0.496586 -0.031867 0.951536 0.772631 0.483660 0.627671 0.205155 -1.160752 -0.831486 1.244419 -0.736583 -0.352498 0.427531 -0.052663 0.158483 0.941056 -0.986353 -0.064628 0.482465 -1.084615 0.568803 0.830846 1.114436 0.027564 2.238400 1.639442 0.044639 2.005698 0.176877 -0.919787 1.846049 -0.336244 0.818705 0.276896 0.245948 -0.372070 0.245216 1.158483 -0.792341 -1.318642 -1.534629 -0.266655 0.180005 1.145782 -0.218105 -1.559370 -2.150457 -0.355264 0.625069 1.449587 0.070777 2.322811 -0.405598 0.507091 -2.554398 0.061251 0.587717 -0.134322 1.275529 0.427351 -1.054331 -1.495267 -0.436327 -1.705730 -1.433943 -0.465516 -0.986641 -1.126677 -0.920003 1.499254 -0.423233 -0.078806 1.463805 -0.119454 0.990092 -0.388501 -0.151996 -0.733330 -0.104537 1.524931 -0.208755 -1.475968 1.565763 0.167979 4.315866 0.054039 0.750995 -0.538975 -0.084656 0.247685 -0.998984 -0.393163 1.896615 1.340563 0.565709 -0.352394 -0.033631 -0.325687 0.947657 -PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.049975 0.297364 1.045537 -0.099284 -0.604113 -1.323405 -0.473096 -1.984599 0.604399 0.376029 1.031430 -0.137123 0.659387 -0.078766 0.048555 0.475315 0.461684 -0.484719 0.373698 -0.574536 -0.569415 1.128463 -0.070334 0.472644 0.197004 -1.249676 0.722818 0.250859 0.541343 0.775150 0.360022 -0.122285 -0.416673 0.404478 0.092684 0.547311 0.355307 0.372435 -0.530546 0.493233 -0.110357 -0.262756 0.735169 0.053084 0.907013 0.510717 0.238865 0.462384 -0.274671 -0.472925 -0.277924 0.521218 -0.612659 0.250340 -0.220899 -0.353324 -0.012803 -0.269568 -0.189508 0.081288 -0.318879 -0.544348 -0.577116 0.329595 -0.703028 0.320971 -0.684129 -0.459157 -0.155513 -0.112943 0.627535 0.219872 -0.051725 0.490276 -1.339870 0.037797 0.187401 0.280783 0.521021 -0.360024 -0.100227 -0.019664 -0.819065 -0.838396 0.784585 0.951351 0.334703 -0.017636 -0.656228 -0.004799 -0.297411 -0.078778 0.583537 0.589722 -0.485360 -0.080693 -0.323345 -0.329426 -0.732712 -1.430686 0.340143 -0.369954 0.512950 -0.145457 -0.036712 -0.300438 -0.254308 0.150129 -0.469694 -0.756021 0.204502 -0.455777 0.295881 1.254440 -0.307225 -0.188942 -0.722827 -0.421080 0.055184 0.582892 0.507386 0.072405 0.867277 0.842317 0.346155 -0.681751 -0.804041 0.323942 0.489763 0.358045 0.428137 -0.813427 -0.550562 0.278668 -0.634941 -1.235126 -0.479502 0.174435 0.613076 -0.530084 0.023797 0.275970 -0.554896 0.445519 0.777680 0.147996 0.190731 -0.027683 -0.717521 0.648759 1.181195 -0.232965 0.656974 -0.608847 -0.180270 0.672330 -0.447823 0.241492 0.363296 -0.172375 -0.643888 -0.226009 0.051533 0.586558 0.252510 0.470225 0.050710 0.475938 -0.561479 -0.689497 -1.121403 0.069844 1.277977 0.039717 0.823940 -0.893904 -0.264959 0.076711 0.981487 0.322520 -0.546696 0.410632 -0.549573 0.464823 -0.987321 -0.883891 1.291098 1.258347 0.783021 -0.071343 0.331546 0.749732 -1.148054 -0.514296 -0.397835 0.532694 -0.221502 -1.529814 -0.593200 0.161775 -0.852716 -0.298284 -0.240925 0.564689 0.435893 0.313064 0.574419 -0.151619 -0.359345 -0.569292 0.642876 -0.285963 -0.337761 0.137093 -0.030489 -0.016374 0.295973 -0.350285 0.294554 0.420305 -0.551754 0.370603 0.603305 0.288844 -0.007718 1.331900 0.855910 -0.306606 0.464973 -0.205636 -0.304925 0.706703 -0.144571 0.475250 0.098572 0.319935 -0.011713 0.171480 0.726211 -0.381015 -0.807944 -0.753921 -0.249316 0.321820 0.545849 0.360414 -0.920489 -1.359449 0.030743 0.095902 1.312012 0.081207 1.207566 -0.175657 0.539351 -1.091039 0.204236 0.142625 -0.141756 0.514428 0.159691 -0.430685 -0.168557 -0.239499 -1.022259 -1.069945 -0.186900 -0.432764 -0.535949 -0.434950 0.438071 -0.343673 -0.234819 0.332621 0.020429 0.588150 -0.062396 -0.070491 -0.736153 0.259888 1.036003 -0.218505 -0.609065 0.645236 0.217591 1.910195 0.027555 0.463489 -0.022702 0.206589 -0.032901 -0.710984 -0.249612 1.009797 0.734153 0.159079 -0.118866 -0.128010 0.324932 0.394615 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 1.066773 0.167617 2.102962 -0.402251 -0.748525 -2.395117 -0.818904 -5.714772 2.405741 0.678649 2.034940 -0.259032 1.199810 -1.091644 0.059006 2.550874 0.614270 -1.276878 1.061553 -0.723661 0.020926 3.908792 -0.746869 1.826238 0.112616 -3.573570 -0.299751 0.361026 3.007728 0.509282 0.824147 -1.033920 -0.381048 0.310132 0.166454 1.651297 0.994605 0.304415 -2.884720 0.423288 -1.685765 -0.723448 1.115585 -0.956928 2.527598 -1.554978 2.167994 0.795398 0.342601 -0.414006 -1.813233 3.861046 -0.756243 0.442821 0.419415 -1.688465 -1.139046 -0.262281 -1.137781 1.804567 -1.653285 -0.649084 -1.142836 0.575202 -1.028210 0.982128 -1.162836 -0.033214 -0.082104 0.517491 1.733234 1.157881 0.888812 1.264179 -4.203490 0.446874 -0.008388 0.807584 0.592838 -0.109809 1.448923 0.031254 -1.012261 -1.389438 2.691458 3.392340 0.007300 -0.849031 -2.111990 0.768276 -1.541362 -0.783402 1.041925 0.538708 -2.666213 -0.104494 -1.384681 -0.458553 -1.158593 -3.088936 0.265945 -1.046686 0.908887 -1.404999 1.621446 0.126184 0.539516 0.334323 -0.850613 -1.800212 0.367681 0.277219 0.259280 3.756826 -1.010243 0.088569 -1.354921 0.026036 -2.003947 0.464639 1.147273 1.208256 1.693955 1.871252 1.503672 -1.183370 -1.854874 1.823531 1.736825 1.117159 0.466198 -1.635847 -0.747091 0.492954 -0.029917 -3.243631 -1.573432 1.398233 1.478724 -0.623333 1.126231 -1.417341 -0.005930 2.367515 1.253495 -1.385565 0.459806 0.506141 -1.180503 1.784453 3.246855 -0.229474 1.292651 -1.867999 0.979461 0.535242 -1.773287 0.879243 0.440820 0.721905 -0.965033 -1.136365 -0.394301 0.890041 0.531847 0.630538 -1.154028 1.365592 -1.643635 -2.249023 -2.799569 -0.272970 1.697109 -1.065059 1.238659 -1.132715 -2.142103 0.184359 1.672744 0.569961 -0.997055 1.713375 -3.060407 1.227196 -0.843674 -2.005711 3.425808 3.938069 1.669436 -0.031087 1.722951 2.443022 -4.737192 -1.243033 -0.443951 1.124484 0.294479 -5.935160 -1.870873 0.210514 -1.964082 -1.365027 -0.558570 0.766282 -0.041353 3.048543 2.998072 0.439513 -1.019841 -0.194662 2.741936 -0.456476 -0.759711 -0.181797 0.475295 0.007651 1.745639 -2.067638 1.353257 1.936379 -1.586106 1.015135 1.302978 0.280099 -0.306871 2.427695 2.701937 0.515886 3.846517 -0.626448 -1.267351 0.309052 0.038794 0.404648 -0.362189 -1.346413 -0.928125 0.575304 0.580214 -1.058665 -2.496466 -1.408136 -0.522487 -0.136604 1.474332 2.738126 -3.054017 -1.758430 -0.632906 0.877372 1.282830 0.917617 2.323971 -1.795820 1.134993 -3.919910 0.445516 0.243305 0.275335 1.645166 -0.061663 -0.538268 -0.284144 -0.389535 -1.647189 -3.911793 -0.844167 -2.565185 -1.053061 -3.318366 3.389405 -1.579905 -0.610531 0.639890 0.792196 2.444761 -1.022885 -0.156446 -2.141449 1.612418 1.923195 -0.272635 -1.506096 0.923472 -0.065064 5.559689 -0.817189 0.252790 -0.628397 0.503034 -0.521811 -1.936304 0.230346 2.100211 2.047462 0.124045 -1.473920 -1.148313 -0.491410 0.671188 -PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = -0.248123 0.564092 2.576479 1.753069 -2.106525 -2.104232 -1.064497 -2.701682 0.819867 -0.117607 1.631940 -0.244713 0.092629 -0.430314 0.064421 -0.544299 0.290410 -0.299829 0.015902 -0.857120 -1.243613 1.072969 0.662065 -2.116895 0.609604 -2.191987 2.035092 1.537468 0.515954 1.231049 -0.234098 -0.361587 -0.951995 1.500294 -0.595923 -0.314207 0.652556 0.390743 -0.835445 0.579878 0.968147 0.952443 1.665322 -0.714337 1.430538 1.349656 0.702127 0.863401 -2.053634 -0.159804 -0.101561 1.066982 -1.102236 1.271453 0.103095 0.526759 0.138961 -1.859131 -0.631701 -1.427925 0.092950 -0.186629 -0.697417 0.091504 -1.550376 0.107719 0.372586 -1.594510 1.525819 0.099455 1.176129 0.343444 -0.378345 -0.307806 -0.751896 0.443772 0.957199 1.376166 0.751009 -0.963123 0.514804 0.379479 -1.134382 -0.879022 -0.087907 0.404186 1.108884 -0.346186 0.271301 -0.597285 1.033563 -0.416128 0.131602 1.169397 -0.394967 0.038293 -1.451498 -0.464380 -1.761680 -1.454764 0.178590 -0.763998 1.418359 1.010589 -1.641729 0.368915 0.836213 0.967843 -0.346550 -1.533485 -0.318394 -0.789577 1.641155 2.085094 -0.027979 -0.867270 -0.437105 -0.886837 -0.311257 1.177649 -0.099226 0.088900 2.156358 2.365217 0.405050 -1.418382 -1.284646 -0.339232 0.683764 1.719272 1.431104 -1.914591 -0.888629 -0.290498 -0.557278 -2.496087 0.182656 -0.807065 1.402325 -0.491050 -1.501064 0.898787 -1.343899 1.940149 0.539132 0.897087 0.238502 -0.111571 -1.444640 1.837756 2.512709 -0.385696 0.848818 -1.192002 -1.261055 1.092361 -0.027248 0.687084 0.734748 -0.598086 0.190026 -0.992367 0.067714 1.373906 0.522764 0.522970 1.013643 0.475688 -0.691466 -2.299078 -1.880806 0.683342 1.459228 0.099384 3.150605 -1.932092 -1.284361 -0.878389 2.094520 -0.260068 -0.404869 0.162268 -0.914000 1.047216 -1.604420 -2.265811 2.178756 2.558397 0.543728 0.237006 1.856132 0.307231 -0.891108 -0.782288 -0.879809 0.552707 0.664845 -0.618597 -0.432067 0.313076 -1.433485 -0.441141 0.460372 0.851287 1.317626 -0.902947 -1.218027 0.184474 -1.915452 -1.633767 0.688321 -1.537671 0.150962 0.849841 -0.206035 0.331797 0.895072 -0.681359 -0.861159 -0.323574 -0.806713 0.694600 0.683532 1.582911 0.117508 1.782672 1.433470 -0.081765 1.787611 1.002008 -0.780863 3.366836 -0.604242 0.830848 0.908055 1.010121 -0.146587 0.589241 1.319854 -0.831434 -0.006351 -1.923670 0.445215 0.128468 0.996183 -2.468542 -0.881905 -2.500709 -0.803755 0.813979 1.122741 -0.112064 2.762096 0.250737 0.214242 -3.148052 -0.559094 0.792271 0.107264 1.286406 0.654857 -1.420983 -3.224397 -0.280996 -1.406178 -0.296158 -0.866214 -0.598280 -1.321087 0.097480 0.691583 0.297395 0.474282 2.406272 -0.311165 0.342288 -0.830488 -0.001018 -0.009882 -1.468974 1.043041 0.117136 -1.587413 1.708150 0.250635 4.248067 0.174135 1.134932 -1.014903 -0.071293 0.536003 -0.800926 -0.551070 1.935548 0.805212 0.800489 0.129970 0.246408 -0.861347 1.548624 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.149619 0.295150 0.962404 0.283740 -0.493231 -1.221338 -0.464422 -1.730560 0.637905 0.261478 0.852668 -0.162789 0.541660 -0.091143 -0.060237 0.343607 0.254280 -0.313928 0.317893 -0.414974 -0.752344 1.376706 0.058169 0.084115 0.153037 -1.264435 0.922630 0.317648 0.597647 0.835864 0.161176 -0.056233 -0.082456 0.487085 -0.171347 0.315604 -0.015897 0.419035 -0.391287 0.397454 0.146560 -0.121016 0.733883 0.098534 0.646594 0.602776 0.368598 0.303371 -0.204967 -0.301212 -0.435115 0.480187 -0.591050 0.300764 -0.490069 -0.201283 0.203826 -0.340771 -0.204447 -0.017200 -0.256141 -0.282126 -0.677022 0.215339 -0.838716 0.268424 -0.570736 -0.504356 -0.045346 0.110228 0.666332 0.325788 -0.115697 0.010732 -1.311963 0.146478 0.166195 0.280716 0.483441 -0.306252 -0.135307 0.122475 -0.869231 -0.803040 0.840510 0.710789 0.335070 -0.009193 -0.293482 -0.328914 -0.294730 0.001185 0.446204 0.682337 -0.246822 0.147826 -0.352605 -0.196090 -0.627889 -1.170197 0.210500 -0.486699 0.471516 0.058831 -0.026141 -0.135207 0.184056 0.170359 -0.267364 -0.892580 0.039338 -0.450226 0.267064 1.146129 -0.090003 -0.241484 -0.452031 -0.345588 -0.073874 0.661169 0.448494 0.064041 1.035015 0.771806 0.242898 -0.591628 -0.615845 0.295738 0.345860 0.391933 0.435989 -0.853448 -0.561322 0.106318 -0.299892 -1.234303 -0.322295 0.261753 0.490541 -0.657352 -0.181118 0.630998 -0.428052 0.413253 0.770966 0.082539 0.269495 -0.038558 -0.603955 0.740144 1.433649 -0.210632 0.457303 -0.830648 -0.516568 1.023278 -0.421270 0.259826 0.215484 -0.104274 -0.453376 -0.360110 0.305605 0.666534 -0.004067 0.314201 0.433994 0.332390 -0.412050 -0.710831 -1.009059 0.143251 1.089283 0.119077 1.262377 -0.829321 -0.172267 0.082289 0.771678 0.279564 -0.255907 0.305291 -0.520227 0.439031 -1.321599 -1.028694 1.243058 0.896609 0.616242 -0.022837 0.419594 0.724497 -0.577262 -0.556494 -0.499350 0.562136 0.130591 -1.039196 -0.434008 0.071235 -0.822318 -0.271825 -0.139068 0.415155 0.500151 -0.029002 0.132929 -0.571942 -0.652787 -0.697096 0.627516 -0.572998 -0.173063 0.132849 -0.081976 -0.252590 0.339613 -0.161010 0.222792 0.181164 -0.362206 0.301334 0.473975 0.250105 -0.083018 1.106125 1.099696 -0.366340 0.423335 0.049782 -0.175038 1.083680 -0.216780 0.278526 0.154228 0.490544 -0.005363 0.279935 0.663039 -0.319672 -0.625167 -0.837749 0.147114 0.380646 0.308999 -0.078051 -0.505405 -1.304712 -0.237257 0.125459 1.338552 0.166904 1.276938 -0.218861 0.425681 -1.206344 0.171632 0.196184 -0.043919 0.627851 0.227577 -0.463187 -0.246760 -0.293238 -0.731317 -0.699003 -0.352901 -0.642971 -0.631935 -0.311579 0.096291 -0.434572 0.019275 0.647739 -0.053320 0.355755 -0.377285 -0.061253 -0.710497 0.097568 0.864573 -0.131729 -0.564383 0.543965 0.008752 1.761069 -0.103714 0.616080 -0.265211 0.288837 -0.137423 -0.718143 -0.203654 0.982125 0.478499 0.034680 0.128962 -0.018239 0.267216 0.479826 -PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = -1.227939 1.320849 8.044204 5.256996 -4.454567 -5.826644 -2.950414 -7.102282 3.337219 -0.246576 4.645404 0.578141 0.793576 -0.539183 0.846898 -0.764375 0.846399 -1.825417 0.454407 -2.070359 -1.315949 5.112464 3.413964 -6.436408 0.596192 -7.660922 4.867078 3.848505 2.851954 4.343679 -0.065298 -1.100896 -1.418843 4.385976 -2.335267 -0.865258 1.121832 0.959781 -2.740736 0.694441 2.239432 3.848825 4.151336 -0.738995 4.421148 2.424342 4.004475 1.756016 -3.936008 -0.372704 -3.363028 6.167079 -4.189349 3.016032 0.057728 2.517290 0.488023 -5.306583 -2.270859 -5.551496 -0.174208 1.541352 -2.832915 0.033221 -4.440794 1.125994 -0.109361 -2.741528 3.023086 1.748439 4.606011 1.569195 0.749350 -1.586079 -4.073215 1.692035 -0.276868 4.231695 2.880811 -2.680957 -0.750007 1.596535 -1.967559 -2.956267 0.782214 0.680151 1.295607 -1.306739 1.763576 -1.209327 -0.289267 -1.330378 -1.444399 3.401482 -2.469928 2.292759 -2.332112 -0.437095 -3.388209 -1.743559 -0.201310 -3.516920 2.582548 3.333083 -1.426797 -0.080750 -0.069130 1.363318 -2.222269 -4.679572 0.317261 -0.983916 1.349304 5.081436 -1.961150 -0.472674 0.729032 -0.870350 -0.910590 4.845734 0.083467 1.937904 4.547832 6.863061 0.452178 -3.380765 -1.783347 0.268874 3.619598 5.012217 4.167290 -5.264603 -3.017355 -1.022218 0.537410 -7.036610 2.118487 1.559701 3.656232 1.020492 -5.672880 1.352666 -2.856681 6.315757 2.623363 3.131939 1.286940 -0.462907 -3.912744 5.620421 9.652343 -1.676361 3.538795 -2.861258 -2.512640 5.231550 -3.565675 3.276282 1.373736 -0.053275 1.271156 -3.453861 -1.538978 4.508726 2.736108 2.238858 4.279125 0.944734 -0.254060 -7.933481 -5.476922 0.407249 4.072897 -0.777254 8.688031 -4.396647 -3.402226 -1.921380 5.082626 -1.095572 -1.467823 0.223266 -2.471547 2.869898 -7.036119 -6.345012 7.714636 7.424550 0.529299 0.540216 5.562912 3.634716 -2.285347 -2.673673 -2.120213 2.344205 0.922498 -0.763756 -0.152827 0.231163 -4.646944 -2.362549 1.296210 1.869134 3.060368 -2.051902 -3.722188 1.958589 -6.327330 -3.647982 1.693546 -5.315201 -1.862710 1.550932 -0.230674 0.407767 1.787387 -1.570864 -1.352387 1.936659 -3.114765 0.331547 2.204885 4.392430 1.507805 4.932319 4.629773 1.255861 5.612885 3.739960 -2.454334 10.428582 -1.560198 1.113178 1.833162 2.609100 -0.345899 1.944371 1.800823 -2.316427 -1.870295 -5.804243 3.291122 -0.070500 3.690534 -5.910746 -3.617233 -5.020942 -2.611823 4.228584 3.233109 -0.987259 9.036801 -0.226606 0.441562 -10.134261 -0.906035 3.739165 0.431794 3.436849 2.950372 -3.455970 -8.192149 -1.657995 -1.975931 0.960470 -2.443265 -3.903329 -3.346324 -1.932097 3.038626 -2.079194 2.012518 6.669915 -1.002455 2.177478 -1.621327 -0.553501 -1.046555 -2.738490 2.078180 1.630979 -5.032574 6.167508 -1.347607 12.160227 -2.092728 3.585200 -3.865158 0.805859 0.118072 -1.194101 -0.708847 6.706483 2.842612 1.502741 0.779605 0.284751 -2.708135 3.698913 -PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.220588 0.278516 0.725530 0.139115 -0.319043 -0.890022 -0.302889 -1.370183 0.472791 0.186306 0.613430 -0.169173 0.413101 -0.059625 -0.052973 0.323244 0.186961 -0.153262 0.259993 -0.279380 -0.517439 0.976096 -0.091582 0.165014 0.124802 -0.905285 0.600148 0.241184 0.518744 0.538835 0.130325 -0.078093 -0.072799 0.313340 -0.125077 0.200239 0.043067 0.298753 -0.398331 0.288654 -0.027429 -0.118671 0.490922 0.040814 0.448188 0.383567 0.260756 0.239340 -0.069948 -0.174863 -0.321388 0.432868 -0.348317 0.231063 -0.324472 -0.251263 0.081492 -0.176843 -0.120218 0.127801 -0.194373 -0.209424 -0.459403 0.152127 -0.600749 0.173991 -0.421624 -0.380318 -0.033323 0.101492 0.465734 0.225967 -0.058351 0.040040 -1.043937 0.105417 0.143996 0.206555 0.339843 -0.208365 0.046505 0.079486 -0.623744 -0.584257 0.667491 0.630643 0.253227 -0.018930 -0.303696 -0.234294 -0.215782 -0.020039 0.370611 0.473386 -0.202459 0.120154 -0.390346 -0.128221 -0.444718 -0.973868 0.152173 -0.345527 0.351740 -0.074074 0.064864 -0.047403 0.220433 0.178256 -0.124242 -0.644554 0.043358 -0.288084 0.189549 0.912680 -0.034166 -0.211117 -0.338783 -0.248718 -0.150342 0.422383 0.342826 0.051536 0.704340 0.531193 0.235372 -0.425967 -0.489718 0.271082 0.206442 0.313244 0.290837 -0.633981 -0.374855 0.089948 -0.245355 -0.949731 -0.249543 0.168106 0.360093 -0.542775 -0.035168 0.365824 -0.314257 0.282511 0.521057 0.016293 0.205165 -0.005641 -0.396650 0.498432 0.995795 -0.160312 0.321535 -0.600800 -0.288883 0.567875 -0.236187 0.179565 0.113792 -0.059728 -0.286781 -0.259938 0.196470 0.483222 0.008908 0.210044 0.253749 0.251681 -0.431997 -0.516308 -0.720399 0.097401 0.781185 -0.010904 0.831588 -0.564592 -0.218590 0.071428 0.592754 0.168659 -0.164109 0.276362 -0.450307 0.336247 -0.817729 -0.733415 0.854686 0.672880 0.457044 -0.090589 0.283804 0.519574 -0.571674 -0.449041 -0.346064 0.366598 0.072334 -0.962243 -0.425778 0.043460 -0.601521 -0.142176 -0.081822 0.293589 0.331522 0.153112 0.229407 -0.392743 -0.456989 -0.493824 0.532133 -0.369036 -0.072680 0.089811 -0.037354 -0.181060 0.299745 -0.224325 0.154920 0.223616 -0.284788 0.248295 0.334620 0.143098 -0.112443 0.860263 0.751426 -0.198510 0.403280 0.012506 -0.190502 0.734098 -0.130912 0.205867 0.084435 0.271597 -0.093221 0.229999 0.472956 -0.252423 -0.546345 -0.635730 -0.025952 0.237955 0.223399 0.151846 -0.399100 -0.897320 -0.173666 0.051968 0.948063 0.165664 0.889713 -0.191098 0.349196 -0.840391 0.134310 0.099399 -0.070409 0.484385 0.142022 -0.335815 -0.146142 -0.182785 -0.560552 -0.699690 -0.259574 -0.519692 -0.448234 -0.301444 0.114584 -0.287190 -0.019812 0.424894 0.012153 0.295091 -0.349342 -0.040027 -0.521306 0.140804 0.705015 -0.140231 -0.446862 0.322609 0.039806 1.374910 -0.055189 0.412264 -0.199853 0.122328 -0.081047 -0.526940 -0.158384 0.710399 0.371746 0.080299 0.010907 -0.028529 0.159391 0.336248 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.289582 0.213889 0.964809 -0.225698 -0.430746 -1.071593 -0.401733 -2.259521 0.796463 0.366732 0.929757 -0.147911 0.607951 -0.269410 -0.010305 0.732567 0.334690 -0.477413 0.451879 -0.419743 -0.260072 1.309883 -0.329122 0.733648 0.089149 -1.373695 0.363170 0.136041 0.925110 0.487778 0.364817 -0.281624 -0.340899 0.246055 0.154186 0.605678 0.458466 0.279561 -0.847651 0.325734 -0.451151 -0.343475 0.529608 -0.178658 0.979409 -0.099052 0.426768 0.388820 0.012986 -0.302667 -0.430456 0.942103 -0.460615 0.177439 0.013304 -0.628793 -0.318108 -0.102797 -0.279312 0.511207 -0.465113 -0.495732 -0.459523 0.317174 -0.550173 0.382624 -0.635778 -0.229197 -0.134410 0.029216 0.632216 0.353306 0.222986 0.593565 -1.572446 0.110080 0.110224 0.249161 0.402928 -0.218153 0.317899 -0.042238 -0.607432 -0.722257 0.956767 1.300369 0.138257 -0.190801 -0.769687 0.190573 -0.434680 -0.197289 0.564815 0.430650 -0.762682 -0.088320 -0.601023 -0.219391 -0.523137 -1.493400 0.238533 -0.414876 0.464487 -0.395848 0.264710 -0.116893 0.078977 0.159537 -0.372413 -0.730380 0.184748 -0.179035 0.280680 1.443163 -0.313933 -0.118320 -0.683338 -0.241097 -0.360679 0.321472 0.504094 0.292586 0.746249 0.793725 0.510447 -0.623715 -0.850346 0.646493 0.518638 0.401892 0.263393 -0.802017 -0.395000 0.251915 -0.354857 -1.275112 -0.563539 0.256400 0.571525 -0.511954 0.353676 -0.207116 -0.298884 0.636434 0.659588 -0.216147 0.158357 0.117189 -0.591960 0.674460 1.155727 -0.130962 0.553738 -0.677904 0.176883 0.317912 -0.546217 0.269582 0.218869 0.093536 -0.523957 -0.342914 -0.064104 0.465455 0.175020 0.419539 -0.284749 0.533263 -0.707644 -0.787245 -1.056614 -0.020953 1.085263 -0.233557 0.536906 -0.678550 -0.576358 0.163419 0.902748 0.364493 -0.459481 0.616466 -0.896137 0.517803 -0.537982 -0.852151 1.225908 1.399751 0.738964 -0.114749 0.419385 0.880380 -1.638300 -0.514759 -0.281576 0.467399 -0.120051 -2.104374 -0.772607 0.131527 -0.790065 -0.409144 -0.187814 0.451198 0.256706 0.856741 0.958322 0.085401 -0.271622 -0.382593 1.005619 -0.165565 -0.310241 -0.006429 0.114408 0.010223 0.514269 -0.653475 0.448111 0.678861 -0.521455 0.464003 0.612029 0.108014 -0.145174 1.178744 0.879934 -0.067646 0.901592 -0.250631 -0.366555 0.358998 -0.019184 0.353179 0.021111 -0.202291 -0.263735 0.217794 0.490557 -0.435182 -0.964159 -0.683685 -0.404837 0.072827 0.599582 0.890927 -1.101058 -0.984942 -0.064569 0.180072 0.877050 0.284492 1.052717 -0.427970 0.526337 -1.187880 0.180028 0.131456 -0.079508 0.661133 0.055358 -0.291600 -0.064114 -0.202161 -0.844110 -1.463668 -0.286813 -0.724826 -0.470161 -0.896913 0.908728 -0.396269 -0.292077 0.198675 0.238974 0.789960 -0.299772 -0.051367 -0.845766 0.531174 0.887515 -0.218665 -0.633182 0.491848 0.134083 2.059844 -0.161082 0.218771 -0.102351 0.178459 -0.140104 -0.740856 -0.068541 0.938816 0.759523 0.186238 -0.462222 -0.313547 0.063596 0.303950 -PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.191926 0.233211 0.880250 -0.227920 -0.393243 -0.973530 -0.369921 -1.920167 0.614345 0.327617 0.862985 -0.172358 0.542814 -0.145386 0.024311 0.580667 0.318673 -0.430553 0.415170 -0.386745 -0.296475 1.053728 -0.244180 0.647391 0.110659 -1.158804 0.380070 0.125141 0.700358 0.478191 0.308085 -0.224514 -0.324990 0.237733 0.143605 0.517022 0.428568 0.270523 -0.649659 0.356614 -0.360312 -0.293432 0.476838 -0.114195 0.823863 0.086831 0.284281 0.362158 -0.057194 -0.304732 -0.312786 0.718256 -0.437592 0.163880 -0.009862 -0.517585 -0.226537 -0.113260 -0.228781 0.352504 -0.375344 -0.471178 -0.397668 0.295427 -0.501825 0.324011 -0.583696 -0.239853 -0.109110 0.010567 0.546089 0.279145 0.153336 0.570112 -1.291704 0.100123 0.129978 0.223309 0.358189 -0.270263 0.208182 0.002263 -0.570573 -0.671600 0.792171 1.076760 0.189799 -0.165505 -0.662248 0.166932 -0.336710 -0.149813 0.488620 0.425304 -0.577731 -0.070703 -0.487878 -0.221007 -0.515970 -1.346789 0.213630 -0.366015 0.420404 -0.275327 0.160996 -0.165178 -0.042671 0.176240 -0.338145 -0.660183 0.189484 -0.210091 0.237272 1.202456 -0.287452 -0.101085 -0.606780 -0.258850 -0.200761 0.325301 0.447393 0.210048 0.644547 0.704340 0.412522 -0.541066 -0.748276 0.477290 0.448733 0.332048 0.268009 -0.721277 -0.376499 0.231825 -0.411483 -1.096287 -0.484563 0.190223 0.508562 -0.463771 0.237780 -0.082270 -0.335203 0.500884 0.605091 -0.083751 0.132037 0.067508 -0.534030 0.572175 0.973411 -0.163535 0.523827 -0.543582 0.096821 0.302686 -0.436437 0.225465 0.237972 0.048845 -0.473602 -0.286622 -0.067039 0.435403 0.223566 0.407187 -0.187625 0.445389 -0.599616 -0.651459 -0.923286 0.007296 1.003974 -0.199580 0.477708 -0.630947 -0.461442 0.135009 0.847415 0.304616 -0.442315 0.475955 -0.679309 0.427685 -0.528288 -0.738938 1.051162 1.194414 0.653826 -0.105277 0.321909 0.750428 -1.375385 -0.451124 -0.283068 0.433544 -0.196470 -1.751074 -0.688168 0.122447 -0.691705 -0.295697 -0.194176 0.424219 0.266119 0.668941 0.743161 0.080806 -0.254751 -0.337951 0.792734 -0.158223 -0.296691 0.026147 0.061480 0.028250 0.395342 -0.532159 0.357625 0.573914 -0.504263 0.376983 0.554481 0.130948 -0.096630 1.116039 0.719039 -0.085280 0.655124 -0.220829 -0.317393 0.347019 -0.032356 0.331837 0.018218 -0.076605 -0.197985 0.181407 0.497918 -0.360198 -0.879459 -0.622594 -0.351159 0.097312 0.512551 0.729720 -0.952178 -0.934608 -0.013348 0.154532 0.883476 0.219073 0.944192 -0.276611 0.476412 -0.972280 0.159060 0.089334 -0.107769 0.536192 0.057857 -0.272777 -0.086037 -0.177204 -0.795972 -1.244690 -0.222422 -0.561057 -0.409040 -0.694597 0.691535 -0.292876 -0.260634 0.157346 0.203042 0.649037 -0.140700 -0.074788 -0.725022 0.427084 0.856203 -0.216166 -0.553622 0.466271 0.165718 1.788685 -0.104578 0.218678 -0.065214 0.106166 -0.065929 -0.590583 -0.091281 0.829077 0.680714 0.184555 -0.356951 -0.227570 0.102998 0.271656 -PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = -0.576941 0.885532 4.780409 3.398161 -2.168699 -3.722352 -1.773207 -4.733223 2.738227 0.002130 2.641442 0.022099 0.988036 -1.083864 -0.283418 -0.607631 0.638052 -1.330251 0.594101 -1.360717 -1.152000 4.791402 1.968031 -3.475132 0.103612 -5.884070 4.014703 1.840209 2.490794 3.695593 0.169381 -0.342210 -0.091015 2.846264 -1.399070 -0.396729 0.145217 0.744459 -1.640575 0.408029 1.464254 2.336930 3.033080 0.050613 2.418838 1.902381 2.180160 0.876166 -1.715740 -0.366213 -2.168158 3.002141 -2.602794 1.593635 -0.425234 0.844612 1.278993 -3.015366 -0.985258 -2.721289 -0.554856 0.653501 -2.030941 0.359494 -3.593682 0.845043 -1.154187 -1.605429 1.164254 0.771034 2.678534 1.685286 0.682891 -1.525594 -3.420373 1.707812 0.030136 2.200142 2.149313 -1.271240 -0.690772 0.978136 -1.995062 -2.404350 1.319715 0.802391 0.765663 -0.099865 1.298182 -1.784068 -0.682738 -0.656670 -0.379050 2.346815 -0.692813 1.396361 -1.325991 -0.404862 -1.793963 -1.953982 -0.117400 -2.322392 1.366406 2.008687 -0.880887 -0.068907 0.401272 0.305542 -0.921110 -3.005620 0.491500 -1.182762 1.109230 3.952360 -1.043871 -0.608343 -0.683754 -0.417037 -0.411434 3.546612 -0.031702 1.190770 3.092776 3.835935 0.205744 -2.236284 -0.818601 0.694746 1.823568 2.240302 2.624370 -3.474881 -2.203674 -0.694611 0.919174 -4.464881 0.554546 1.143561 2.018343 -0.074124 -3.183970 2.143872 -1.527466 3.495523 2.243954 0.841014 1.083653 -0.385940 -2.440406 3.811093 6.307844 -0.952010 1.736389 -3.098331 -2.607223 4.451672 -2.223878 1.929465 0.022001 -0.050363 0.256561 -2.064218 0.710656 3.013169 0.551402 0.995135 3.153384 0.534266 0.592767 -4.733145 -3.606652 0.818794 2.716029 -0.041493 5.959636 -2.787405 -0.975953 -0.838792 2.637584 0.228612 -0.356801 0.267317 -1.856409 1.649998 -5.855201 -4.552313 5.378316 4.101460 0.540334 0.406421 2.343972 2.747674 -0.341676 -1.747468 -1.556926 1.789347 0.694141 -1.059679 -0.217803 0.152899 -2.853763 -1.794700 0.826955 1.152325 2.926456 -2.266332 -2.301329 -1.136075 -3.964893 -3.314813 1.691232 -3.307950 -1.128885 0.987398 -0.145232 -0.185956 1.561809 -0.093575 -0.234118 0.879077 -1.173387 -0.191650 1.174753 2.629744 0.282643 2.657386 3.538653 0.138272 2.594203 2.316629 -1.069563 6.993871 -1.223402 0.543914 1.134575 1.925384 0.459248 1.574706 1.252402 -1.446834 -0.904156 -3.752376 2.487565 0.433282 1.563741 -4.255123 -2.097537 -3.895577 -1.765174 1.952605 2.715169 -0.002881 6.016349 -0.622893 -0.175018 -5.837171 -0.326312 2.485231 0.598686 2.903525 2.037730 -2.439962 -3.288988 -1.442706 -1.631069 0.953245 -2.051125 -2.923039 -2.257162 -0.519764 1.757713 -1.725765 1.636457 4.255150 -0.413466 1.026202 -1.206450 -0.161486 -1.916049 -1.563892 1.092509 0.727230 -2.481667 3.328688 -1.215270 6.024934 -1.554636 2.312809 -2.567621 1.327803 -0.309165 -1.732527 -0.614284 4.356447 1.226687 0.076263 1.003070 -0.091911 -0.759997 2.762639 -PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.058865 0.279967 1.705029 0.118857 -0.850108 -2.011299 -0.827774 -3.152490 1.252765 0.524777 1.561866 -0.088672 0.953127 -0.352181 0.042173 0.880430 0.608226 -0.912868 0.548235 -0.824506 -0.647317 2.344123 0.179304 0.425363 0.169345 -2.370990 0.903758 0.395455 1.196908 1.251205 0.442561 -0.255405 -0.372898 0.717089 -0.063531 0.888640 0.449254 0.500951 -1.036983 0.586106 -0.165827 -0.162723 1.177030 -0.072205 1.589611 0.418786 0.790544 0.599382 -0.393790 -0.660184 -0.761698 1.366294 -1.045666 0.407416 -0.293276 -0.408890 -0.081385 -0.583843 -0.533076 -0.030469 -0.646721 -0.503203 -0.959653 0.450136 -1.118083 0.636932 -0.923659 -0.565172 -0.155528 0.037011 1.185777 0.617606 0.164443 0.547948 -2.262258 0.261015 0.133271 0.577953 0.777255 -0.485854 -0.149436 0.048634 -1.096633 -1.271091 1.341189 1.502505 0.350342 -0.088900 -0.805790 -0.014537 -0.673340 -0.222321 0.676171 0.881945 -0.994996 -0.000535 -0.384029 -0.416117 -1.033439 -1.896677 0.328048 -0.740942 0.713356 -0.111718 0.253199 -0.327856 -0.260327 0.161760 -0.844095 -1.289615 0.311679 -0.486097 0.262369 2.075656 -0.617539 -0.091769 -0.902983 -0.407307 -0.269636 1.037590 0.678492 0.414487 1.426008 1.479244 0.512387 -1.050679 -1.084252 0.646514 1.061864 0.657806 0.765654 -1.335299 -0.914960 0.309474 -0.539154 -2.056683 -0.729730 0.639296 1.005682 -0.590855 -0.141182 0.339640 -0.606213 1.177114 1.238126 -0.051605 0.332978 -0.054504 -1.192095 1.328410 2.353504 -0.357512 1.083852 -1.169861 -0.312297 1.412017 -1.129203 0.592141 0.474490 -0.101800 -0.886817 -0.573013 0.102001 0.968568 0.371393 0.712391 0.082069 0.720040 -0.641875 -1.441977 -1.911498 -0.021733 1.749337 -0.045164 1.637716 -1.290869 -0.657020 0.039626 1.417831 0.461136 -0.760410 0.679215 -1.165047 0.785264 -1.830916 -1.618521 2.443760 2.305052 1.181699 0.104278 0.918926 1.456142 -1.756586 -0.805100 -0.513180 0.911753 -0.033950 -2.433182 -0.847012 0.215280 -1.404452 -0.793855 -0.367204 0.779809 0.543560 0.599968 0.823240 -0.187102 -0.858835 -0.800179 1.107973 -0.713883 -0.622637 0.167096 0.052833 -0.104595 0.624035 -0.623566 0.557164 0.751111 -0.890353 0.549235 0.913980 0.542240 0.103041 1.808581 1.778944 -0.321774 1.285277 -0.128581 -0.494279 1.293645 -0.285730 0.577891 0.128451 0.324170 -0.074906 0.330296 0.875476 -0.615843 -1.168687 -1.213318 0.056080 0.428084 0.888868 0.340349 -1.645057 -1.912337 -0.197527 0.458926 1.775885 0.164340 2.100275 -0.566025 0.710149 -2.375145 0.304399 0.406228 0.012260 0.958363 0.371073 -0.660292 -0.634012 -0.456974 -1.328670 -1.511288 -0.506901 -1.174917 -0.838336 -1.044758 1.126786 -0.903668 -0.188505 0.842085 0.099125 1.128813 -0.235027 -0.130493 -1.342938 0.409026 1.323573 -0.162261 -0.946210 1.081401 0.058082 3.203179 -0.303606 0.766241 -0.309822 0.566273 -0.184016 -1.208967 -0.210549 1.727827 1.166117 0.054699 -0.160794 -0.347887 0.268998 0.683137 -PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = -0.482822 -0.202709 2.208677 -0.045179 -1.006704 -3.305329 -1.142206 -5.027514 1.988618 1.113903 3.150143 -0.052815 1.911530 -1.209528 0.557145 1.846953 1.204886 -1.740902 0.635803 -1.282472 -0.521719 3.459541 0.238851 1.106833 0.119045 -2.805858 0.506489 0.818160 1.297997 1.357265 0.974825 -0.301275 -0.465342 0.766944 -0.121852 2.325652 0.869358 0.896509 -1.252340 0.116587 -0.479103 -0.841574 1.678778 -0.370713 3.113444 -0.209920 2.058323 0.635571 -0.875986 -1.430191 -1.321270 2.725790 -1.868710 0.248297 -0.403074 -1.009140 0.107993 -0.722181 -0.895669 -0.707384 -0.962801 -0.906765 -1.887693 0.492410 -0.988589 1.221459 -0.722306 -0.586538 -0.385937 -0.131784 1.809561 0.744310 0.067698 1.540929 -3.213242 0.063744 0.336985 0.307624 1.145351 -0.558493 -0.162557 -0.619402 -1.310945 -1.742561 3.050450 2.052341 0.754054 0.358730 -2.141240 1.116580 -1.301904 -0.352088 1.219012 0.966642 -1.909496 -0.520191 1.095725 -0.949358 -1.801943 -2.250866 0.880809 -1.160503 0.785894 0.105933 0.765294 -0.462118 -1.796909 0.044840 -2.505493 -2.024675 0.437769 -1.131323 0.142471 2.496179 -1.870080 0.288200 -1.445263 -0.323637 0.035239 1.263108 1.288220 0.965083 2.143322 2.082078 0.815046 -1.906277 -1.770022 0.983458 2.580432 1.056712 0.475727 -1.793652 -1.350733 0.794029 -1.580699 -3.225152 -1.756668 1.607254 1.781456 -0.170614 -0.710297 0.730938 -0.406198 2.055093 2.221362 -0.089456 0.087780 0.465450 -2.077547 1.640653 2.868892 -0.715527 2.210476 -0.931962 0.088353 1.708827 -2.104604 0.556652 1.549076 -0.407783 -1.580279 -0.722107 -0.328812 1.344714 1.289112 1.469539 -1.092848 1.568319 -1.065062 -2.277203 -3.488408 -0.400054 2.830558 0.148281 2.239597 -2.002953 -1.510753 0.421273 2.079839 -0.064605 -1.901477 0.964060 -2.094234 1.394255 -2.609334 -2.427588 4.243498 3.425278 2.520143 0.604974 1.797827 2.295240 -3.257039 -0.442939 -0.401491 1.545322 0.210541 -4.412471 -0.994466 0.255214 -2.485481 -1.681750 -1.199260 1.154406 -0.774203 1.474161 2.385827 -0.018971 -0.620054 0.034771 1.154660 -0.697327 -1.228532 -0.442428 0.170702 0.383070 0.775173 -1.397022 1.303342 1.086351 -2.094664 0.668865 1.360100 0.934716 1.084926 3.502336 3.206640 -0.884264 2.606659 -1.016701 -0.814380 0.484670 -0.218117 0.789270 -0.037467 0.632672 0.524823 0.218362 1.723720 -1.016083 -1.739005 -1.758458 -0.469243 1.289896 1.786275 1.350961 -2.554234 -3.154455 -0.166233 0.852627 2.911813 -0.396523 3.025688 -1.137519 1.211265 -3.923111 0.521492 0.253256 -0.265568 0.854320 0.325810 -0.857121 -1.232061 -0.746642 -2.058393 -3.331689 -0.342641 -1.247164 -1.105901 -2.566758 2.414513 -2.234201 -0.661957 0.399870 0.555745 1.970344 0.348385 -0.027174 -1.826756 1.371472 1.969438 -0.103492 -1.520466 1.754628 0.349494 5.552971 -0.545185 1.197758 -0.532878 1.617503 -0.576526 -1.660157 -0.190033 2.549551 2.858606 -0.229548 -0.389343 -0.292712 0.333939 1.334181 -PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = -0.285376 1.650564 8.811439 4.282871 -6.347860 -8.696100 -3.633990 -11.929182 5.338242 0.867185 5.655255 0.649906 1.350089 -2.801434 0.098199 2.135539 1.480432 -2.156245 -0.061735 -3.684722 -3.807204 6.670264 1.796443 -3.358989 1.844773 -9.932530 6.441064 2.795351 4.579108 5.109988 2.284845 -1.609373 -2.493724 5.119636 0.915759 4.274519 1.247988 1.132561 -3.965112 2.018204 1.893733 1.141277 5.549061 1.046178 7.500821 2.380600 4.373018 2.455620 -5.021949 -0.761260 -4.807925 7.789467 -5.761383 3.354669 -0.465889 1.772577 0.207249 -5.545730 -1.736651 -2.416953 -2.905525 -1.459513 -4.712983 0.547888 -5.955797 1.302530 -2.843364 -2.442422 1.102185 1.188504 5.776874 2.055332 -0.350103 1.010729 -6.869917 0.563027 0.365438 4.296477 5.358882 -2.931622 -0.195494 0.017836 -3.607600 -4.708698 4.378905 1.497891 1.930114 -0.563870 -0.249506 -2.091201 -2.370246 -1.695376 1.666717 3.858931 -5.291598 0.294431 -3.079629 -1.649601 -4.324796 -6.014429 1.159791 -3.487913 3.201704 1.178753 -1.466570 -0.728929 -0.042603 0.772707 -2.737855 -4.104171 0.609079 -1.748537 2.305922 7.912116 -1.705197 -1.957928 -1.504649 -2.163507 -1.101848 5.030720 2.478061 1.309100 6.985842 7.830972 4.174393 -4.137524 -3.693615 0.891066 3.584338 5.414551 4.014304 -5.482180 -3.819401 0.392169 0.244083 -9.510426 0.534020 1.405333 4.780892 1.807617 -3.436700 -0.375992 -2.855984 5.607864 2.673540 1.748522 1.849365 -0.375761 -5.291033 6.395749 11.359295 -1.368574 3.855555 -4.323928 -1.429869 5.394423 -5.039814 2.261106 1.761338 -1.665748 -0.104779 -2.891686 -1.582954 5.139708 1.291488 0.824201 2.901804 3.130770 -2.915250 -8.396634 -7.280291 0.854174 6.965307 -0.564639 8.189198 -6.079806 -2.165862 -1.911841 6.861901 0.235196 -1.809883 1.665012 -4.531055 3.999374 -6.635711 -7.145703 11.266366 10.181751 2.775925 -0.264234 4.728752 6.388000 -6.856295 -3.437932 -3.387131 1.761495 1.714682 -5.789694 -2.299009 0.560324 -6.236408 -3.485081 0.868882 2.713985 3.479954 -0.710993 -0.536361 1.245952 -4.770455 -4.937066 3.677340 -4.828092 -2.002436 1.529052 -0.053672 0.390468 3.255395 -2.035522 -0.282028 2.163186 -3.341367 1.591892 3.184926 5.506252 1.294359 7.398591 6.743977 0.047644 6.951080 2.790381 -3.125238 9.160684 -1.064340 2.688010 2.299100 1.907138 0.580088 2.185104 3.248376 -3.595459 -3.049494 -6.362878 1.126021 0.690690 4.393706 -2.694488 -4.778655 -8.603708 -2.426283 3.336094 4.299431 -0.492218 10.124659 -0.930930 1.064861 -10.826251 -0.564613 5.279796 -0.033399 4.748613 2.676074 -4.211294 -6.004239 -2.731461 -4.285328 -1.790115 -2.301698 -1.911424 -4.220663 -3.110791 5.473222 -2.607758 1.666563 6.044640 -0.249894 3.398592 -2.931827 0.545055 -3.205790 -1.373732 4.578753 1.119635 -5.972139 6.516802 0.084625 14.585464 -1.498852 3.553547 -3.382209 0.713290 -0.084305 -3.450804 -1.588107 7.745249 4.555217 2.028797 0.443175 0.290529 -1.811321 5.340645 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.114882 0.214071 0.692174 -0.278312 -0.251259 -0.712754 -0.215584 -1.283387 0.401114 0.218972 0.574154 -0.085351 0.420433 -0.090364 0.049668 0.388870 0.315270 -0.245117 0.254667 -0.316843 -0.006391 0.545436 -0.210495 0.437781 0.127381 -0.791198 0.126409 0.114432 0.474922 0.359417 0.247979 -0.168777 -0.358805 0.145782 0.111849 0.308678 0.491445 0.111193 -0.590982 0.263380 -0.399684 -0.071938 0.312442 -0.060715 0.615086 0.095728 0.043464 0.332331 -0.027915 -0.250364 -0.099374 0.509349 -0.203030 0.168134 0.098112 -0.325560 -0.251985 -0.051888 -0.090350 0.166842 -0.188863 -0.269259 -0.152653 0.200765 -0.305250 0.172606 -0.362638 -0.201880 -0.111133 -0.142969 0.320457 0.110616 0.144226 0.446457 -0.870529 0.028246 0.084913 0.220632 0.279739 -0.187348 0.138783 -0.071915 -0.310319 -0.441966 0.409407 0.801161 0.123711 -0.007007 -0.558308 0.106240 -0.185604 -0.155022 0.359172 0.214729 -0.429880 -0.102043 -0.349744 -0.157511 -0.299163 -0.937386 0.178342 -0.145243 0.257732 -0.306269 0.210652 -0.127217 -0.153290 0.183617 -0.234500 -0.281135 0.300004 -0.088342 0.075153 0.864496 -0.230015 -0.084863 -0.465135 -0.192648 -0.136940 0.274555 0.218027 0.119971 0.228374 0.480503 0.310788 -0.379232 -0.499587 0.340213 0.331838 0.235209 0.227036 -0.469651 -0.223566 0.214491 -0.437975 -0.734959 -0.319307 0.055763 0.413755 -0.248989 0.166514 -0.188562 -0.335166 0.346379 0.329116 -0.020334 0.095363 0.002148 -0.408475 0.321881 0.573950 -0.147644 0.422507 -0.244828 0.181963 -0.046029 -0.219923 0.185687 0.105626 -0.069215 -0.265630 -0.090743 -0.105907 0.287460 0.290322 0.322442 -0.259088 0.312689 -0.507505 -0.460785 -0.654425 -0.082337 0.659939 -0.220411 0.192512 -0.388730 -0.396774 -0.051669 0.686453 0.111042 -0.333611 0.342969 -0.469963 0.286733 -0.227945 -0.413581 0.746879 1.028417 0.498170 -0.138374 0.185984 0.453704 -1.024712 -0.309780 -0.068557 0.165187 -0.278099 -1.309731 -0.536257 0.097742 -0.464501 -0.189858 -0.099534 0.315479 0.141700 0.625804 0.640294 0.226315 -0.101188 -0.235532 0.454946 -0.024605 -0.184997 0.085714 0.075854 0.087950 0.252568 -0.477983 0.166762 0.579902 -0.399648 0.254838 0.346914 0.148989 -0.011993 0.749077 0.298933 0.062616 0.521441 -0.172225 -0.356173 0.261645 -0.026912 0.317589 -0.014863 -0.108166 -0.134141 0.098621 0.265592 -0.268846 -0.568900 -0.429711 -0.409287 0.049750 0.417149 0.599168 -0.847552 -0.551717 0.105651 0.032535 0.526385 0.081345 0.622996 -0.175128 0.345701 -0.622170 0.124442 0.088301 -0.118112 0.270013 0.073782 -0.207717 -0.222071 -0.052217 -0.665014 -0.941708 -0.110711 -0.362385 -0.180093 -0.461211 0.607179 -0.148359 -0.217767 0.096410 0.147850 0.543863 -0.050362 -0.039230 -0.471857 0.273861 0.579215 -0.179149 -0.400166 0.267912 0.199530 1.197350 -0.003723 0.128461 0.020234 0.009328 0.013593 -0.398942 -0.138000 0.580151 0.520150 0.207223 -0.280126 -0.190614 0.054525 0.157052 -PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = -0.615073 0.016048 1.799235 1.419305 -1.283167 -1.845917 -0.845599 -2.253885 1.295142 0.349206 1.464860 0.304762 0.883245 -1.046256 -0.134036 -0.481939 0.563584 -0.488120 -0.100319 -0.799262 -0.588510 1.871342 0.554778 -1.538006 0.227081 -2.046225 1.790169 0.838155 0.484426 1.585727 0.239566 0.132432 -0.651488 1.069262 -0.523559 0.365778 0.254074 0.590336 -0.455878 -0.249250 1.021257 0.539569 1.398524 0.014584 1.568329 0.687360 0.457536 0.391018 -1.108429 -0.693341 -0.224773 0.498940 -1.110746 0.771632 -0.323050 0.384246 0.579571 -1.112713 -0.230498 -1.588376 0.225077 -0.178200 -0.913750 0.076032 -1.193171 0.356483 0.084875 -0.956599 0.325923 -0.629428 1.014101 0.260025 -0.110378 -0.495466 -1.294558 0.089964 0.290002 0.518094 1.077595 0.034606 -0.556564 -0.414829 -1.028140 -0.987653 0.729793 0.463029 0.423440 0.628034 -0.083552 -0.582132 0.186526 -0.234342 0.510733 0.910252 -0.560454 -0.157750 0.023843 -0.313902 -0.622902 -0.740952 0.537070 -0.685992 0.669860 0.946540 -0.866987 0.014063 0.186133 0.202423 -0.873089 -0.966547 0.283342 -0.989301 0.750626 1.609480 -0.368799 -0.601433 -0.676350 -0.591191 0.279460 1.377700 0.104665 0.242096 1.590990 1.543689 0.347265 -1.377493 -0.765681 0.605262 0.942343 0.875950 0.662139 -1.534615 -0.763605 0.190540 -0.593714 -1.981659 -0.362784 -0.011331 1.160071 -0.236555 -1.385429 1.269384 -0.779941 1.117451 0.982782 0.484610 0.250016 0.121315 -1.446639 1.255944 2.181702 -0.193976 0.736251 -0.797192 -1.170540 1.573868 -0.633240 0.530953 0.354100 -0.597309 -0.286577 -0.545900 0.553826 1.181723 -0.020512 0.706055 0.293526 0.657477 -0.477620 -1.832353 -2.011826 0.093811 1.715650 0.830846 2.748565 -1.601476 -0.408006 -0.359458 1.604619 -0.066567 -0.483620 0.318389 -0.795280 0.956052 -2.267655 -1.896501 2.493807 1.877191 0.930704 0.239788 1.227303 0.584782 -0.197361 -0.443337 -0.623029 0.511922 0.777212 -0.457220 0.138631 0.169996 -1.408663 -1.092433 0.227144 0.598828 0.703869 -0.916695 -0.246026 -0.496323 -0.806156 -1.350496 0.608076 -1.004105 -0.163319 0.196451 0.001194 -0.026957 0.545190 -0.215973 -0.179782 -0.084271 -0.340536 0.358966 0.521921 0.910230 0.322702 1.363525 1.712988 -0.773569 0.816238 0.368603 -0.407613 2.743590 -0.610094 0.533475 0.585399 1.144298 0.718648 0.336896 0.966105 -0.742391 0.263189 -1.537429 0.267588 0.691218 0.866428 -2.106425 -0.880432 -2.180834 -0.398196 0.150287 1.399368 -0.275826 2.561457 -0.414784 0.159369 -2.574146 -0.052222 1.162466 -0.059200 0.809462 0.619246 -0.966947 -2.098908 -0.509126 -1.140533 -0.162508 -0.668966 -0.639134 -0.947863 -0.267368 0.766042 -0.682411 0.411455 1.785049 -0.299165 0.486466 -0.780148 0.227787 -0.662161 -0.593436 0.005333 0.151868 -1.121037 1.409039 0.001802 2.674608 -0.228227 1.166583 -0.669267 1.274831 -0.575273 -1.356394 -0.462220 1.709825 0.877249 0.176582 0.469111 0.219712 -0.224738 1.267776 -PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.133864 0.308526 1.327700 -0.440878 -0.603942 -1.301081 -0.600701 -2.682671 0.836041 0.519515 1.289600 -0.234484 0.745496 -0.099595 0.061454 0.812223 0.517691 -0.819129 0.618420 -0.614498 -0.346038 1.481345 -0.183936 0.997891 0.113931 -1.758518 0.424611 0.043380 0.958103 0.691914 0.465156 -0.319467 -0.518776 0.346807 0.272096 0.824327 0.717317 0.377418 -0.889487 0.565098 -0.516837 -0.397035 0.666565 -0.185780 1.258112 0.118948 0.364608 0.512236 -0.191663 -0.524444 -0.387905 1.038153 -0.712159 0.171507 0.148346 -0.667594 -0.415556 -0.229030 -0.406419 0.424262 -0.607487 -0.711517 -0.497260 0.496510 -0.655218 0.549706 -0.897691 -0.267567 -0.173109 -0.034647 0.802386 0.435961 0.337596 1.004041 -1.729898 0.217227 0.142791 0.340239 0.467319 -0.440005 0.181818 0.053519 -0.744308 -0.990918 1.004895 1.557951 0.226392 -0.327079 -0.911855 0.403328 -0.491318 -0.238986 0.597420 0.628924 -0.932868 -0.128060 -0.612266 -0.383230 -0.799591 -1.905347 0.232471 -0.556933 0.601873 -0.319923 0.140788 -0.338594 -0.342791 0.181822 -0.579927 -0.924624 0.316405 -0.254232 0.285760 1.680954 -0.590747 -0.017468 -0.902666 -0.355287 -0.191922 0.471286 0.600024 0.373185 0.883165 1.051743 0.557416 -0.779199 -1.024510 0.608833 0.754106 0.393098 0.482707 -1.004849 -0.589893 0.344864 -0.580156 -1.508112 -0.715889 0.313381 0.739595 -0.520108 0.322332 -0.242409 -0.487385 0.826728 0.904301 -0.069247 0.155539 0.021860 -0.798731 0.833320 1.378481 -0.278199 0.882033 -0.715669 0.166258 0.531160 -0.782439 0.428685 0.406580 0.133075 -0.774535 -0.459538 -0.212233 0.622469 0.424546 0.664869 -0.329611 0.600312 -0.674657 -0.965041 -1.347990 -0.043149 1.408334 -0.314773 0.555469 -0.905723 -0.647141 0.206812 1.256456 0.517855 -0.765637 0.644975 -0.887972 0.557659 -0.754705 -1.050955 1.548827 1.907532 0.895860 -0.075712 0.493031 1.111797 -2.074859 -0.634976 -0.378788 0.698834 -0.453355 -2.476836 -0.995505 0.238290 -0.952246 -0.455972 -0.364119 0.659610 0.435777 0.951326 1.056183 0.365406 -0.345147 -0.407236 1.089466 -0.190045 -0.626166 0.045169 0.131116 0.127586 0.496580 -0.743055 0.522184 0.864629 -0.798591 0.508409 0.869204 0.245975 -0.077769 1.578264 0.981171 -0.092523 0.868535 -0.364172 -0.432137 0.388730 -0.083243 0.473079 -0.015952 -0.147172 -0.329341 0.207685 0.679803 -0.483996 -1.337992 -0.783577 -0.420028 0.033610 0.768020 1.013190 -1.587144 -1.268684 0.080808 0.327077 1.206452 0.289512 1.380838 -0.342284 0.668666 -1.450018 0.237753 0.153150 -0.122112 0.746242 0.122168 -0.363036 -0.154025 -0.277184 -1.160283 -1.670568 -0.254012 -0.801379 -0.530288 -1.013085 1.149308 -0.400070 -0.417794 0.147149 0.318715 1.037658 0.129621 -0.177025 -1.093993 0.616288 1.237984 -0.284439 -0.722524 0.806672 0.234761 2.512790 -0.187771 0.251532 -0.014072 0.117998 -0.000961 -0.785849 -0.093668 1.226794 1.033951 0.261460 -0.580180 -0.436802 0.153111 0.318611 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = -0.021437 0.227092 2.936172 1.476290 -1.391238 -2.502482 -1.130520 -4.324272 2.284348 0.311532 2.113544 0.250202 0.986462 -1.310041 -0.046626 0.380454 0.504553 -0.832185 0.155449 -0.892069 -0.186790 3.146582 0.368686 -1.252841 0.201287 -3.654239 1.289556 1.153126 1.988665 1.517832 0.382722 -0.494337 -0.694694 1.270689 -0.664153 0.581313 0.700169 0.376445 -1.843649 -0.310893 0.290876 0.806828 1.675345 -0.416615 2.405786 -0.313315 1.548507 0.587959 -0.813155 -0.482975 -1.278607 2.859001 -1.276462 0.983922 0.267683 0.073983 -0.097229 -1.495846 -0.717434 -0.887542 -0.406064 0.137953 -1.199578 0.115203 -1.494325 0.650298 -0.211574 -0.731512 0.676533 -0.241187 1.789349 0.659096 0.447015 -0.247464 -2.749723 0.450689 -0.004593 1.110372 1.260338 -0.060916 0.297537 -0.116113 -0.965113 -1.295133 1.520916 1.564255 0.212472 0.011405 -0.583387 -0.339383 -0.453615 -0.729307 0.457339 1.003604 -1.883755 0.156275 -0.914257 -0.377919 -0.949647 -1.482467 0.366189 -1.244666 0.915087 0.414607 -0.059009 0.203361 0.582816 0.292991 -0.948040 -1.678886 0.378532 -0.359332 0.701334 3.060157 -0.940699 -0.458639 -0.658608 -0.347642 -0.994732 1.566447 0.388835 0.932435 1.913939 2.374334 0.919563 -1.664700 -1.204881 1.288579 1.640762 1.635568 0.954141 -2.168707 -0.924715 0.142860 -0.021013 -3.402083 -0.378263 0.655725 1.743452 0.182007 -1.214289 0.152926 -0.650611 2.346164 1.127127 -0.002003 0.491110 0.245153 -1.750913 2.050741 3.644564 -0.380109 1.308620 -1.457211 -0.620018 1.479794 -1.596338 1.099332 0.329055 -0.007800 0.049055 -1.197533 -0.042775 1.630369 0.322152 0.883633 0.107963 0.975639 -0.949681 -3.129886 -2.970969 -0.078919 1.855604 -0.132800 2.983959 -1.721956 -1.608284 -0.467090 2.396901 -0.267255 -0.701456 0.951085 -2.103695 1.435377 -2.141908 -2.614792 3.674134 3.713946 0.994071 0.138740 2.167733 1.691214 -2.144922 -0.920541 -0.753727 0.811848 0.986970 -2.525606 -0.476409 0.009610 -1.987090 -1.524513 0.274713 0.699215 0.562390 0.373679 0.650709 0.279298 -1.582981 -1.384032 1.737746 -1.432498 -0.410084 0.130036 0.229431 -0.059272 1.375287 -1.255135 0.037398 1.101718 -1.057539 0.621372 0.953675 1.158565 0.295617 2.135450 2.365624 0.057142 2.990088 0.587534 -1.079174 3.166968 -0.644425 0.485338 0.433121 0.381578 -0.026136 0.851746 0.641097 -1.192754 -0.872300 -2.158746 0.296226 0.095981 1.524929 -0.928210 -2.186921 -2.280360 -1.004481 0.928289 1.181781 0.066889 3.551258 -1.100549 0.389639 -4.316642 -0.081888 1.553940 0.081742 1.587127 0.730448 -1.180778 -2.679110 -0.644039 -1.304328 -1.338567 -1.033549 -2.017159 -1.284467 -1.979898 2.611740 -1.358656 0.490553 2.111748 0.156535 1.431944 -1.321069 0.093026 -1.271278 -0.123105 0.574289 0.278325 -1.920892 1.887921 -0.287555 4.940823 -0.906282 1.251192 -1.320127 1.130703 -0.688944 -1.711706 -0.253084 2.594382 1.678715 0.391739 -0.416144 -0.261232 -1.042961 1.468248 -PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = -1.215509 1.006090 5.727052 3.908403 -3.513182 -4.616106 -2.340921 -6.003781 2.642985 0.288087 3.962932 0.304669 1.032756 -0.727314 0.463662 -0.804149 0.814939 -1.316805 0.238245 -1.759109 -1.659659 3.724545 2.302217 -4.305128 0.478222 -5.050689 3.984911 2.696324 1.658530 3.094795 0.317823 -0.547051 -1.368560 3.296755 -1.582590 -0.051336 0.741888 1.184972 -1.570427 0.199079 1.956861 2.241233 3.359025 -0.143997 3.687655 2.020896 2.503406 1.231483 -3.215773 -0.597819 -1.734033 3.839535 -3.294941 2.145161 0.092854 1.503494 0.792803 -3.822268 -1.250835 -4.010095 -0.008155 0.337789 -2.445061 0.180093 -3.258756 0.812435 -0.220165 -2.228882 1.842645 0.576938 3.321291 0.762303 -0.022860 -0.881433 -2.975755 0.914341 0.214868 2.394757 2.530555 -1.509427 -0.670629 0.614068 -1.948392 -2.564108 1.218190 0.564737 1.167142 -0.273183 0.739520 -0.934779 0.139514 -1.023830 -0.224338 2.814122 -1.681613 1.270752 -1.029890 -0.797236 -2.769921 -1.871636 0.476706 -2.540864 2.165938 2.391886 -1.695454 -0.272533 -0.276085 0.870463 -1.882954 -3.523739 0.253926 -1.446432 1.691751 3.795717 -1.498479 -0.746065 -0.115038 -1.161465 -0.062016 3.508000 0.708387 1.025820 3.753232 4.884050 0.506560 -2.878846 -1.717942 0.256610 2.440407 3.482693 2.623670 -4.040069 -2.257362 -0.164010 -0.264963 -5.347591 0.797578 0.873313 2.716863 0.433292 -3.987649 1.542190 -2.114058 3.855044 2.201948 2.487304 0.808282 -0.179020 -3.024875 3.700170 6.357423 -1.112976 2.573654 -1.673835 -2.283318 3.784021 -2.589975 2.125461 1.362614 -0.529814 0.360388 -2.245898 -0.659337 3.395901 1.586752 1.603837 2.499489 1.041556 -0.750859 -5.416757 -4.521453 0.677420 3.800965 0.219390 6.306269 -3.648609 -2.170132 -0.937248 4.116839 -0.524042 -1.346123 0.383087 -1.714829 2.337012 -5.193278 -4.711483 5.639916 5.085424 1.115201 0.091756 3.685170 2.277363 -1.681822 -2.027771 -1.931347 1.804619 0.767307 -0.659784 -0.075167 0.146618 -3.581922 -1.651695 0.668065 1.569610 2.216701 -2.018918 -2.098302 0.678135 -3.826983 -2.791747 1.225708 -3.308500 -1.194126 0.812626 -0.216942 0.291207 1.276373 -0.972174 -0.986710 0.761856 -2.187874 0.418375 1.765293 3.070782 0.975516 4.491809 3.514789 -0.065295 3.497197 2.110816 -1.542292 7.373681 -1.306763 1.140458 1.432011 2.484234 0.264352 1.256568 2.104916 -1.846953 -1.325728 -4.143373 1.643494 0.533200 2.794742 -4.557886 -2.547025 -4.709211 -1.657107 2.398645 2.938873 -0.808284 6.690399 -0.133641 0.607953 -6.957178 -0.503021 2.733991 -0.169852 2.548815 1.937539 -2.788435 -5.538120 -1.392141 -2.164961 0.143730 -1.503773 -2.094534 -2.538223 -1.160585 2.008760 -1.451615 1.272237 4.444801 -0.848354 1.200004 -1.232424 -0.160843 -0.792360 -1.917649 1.829466 0.674868 -3.836018 4.535722 -0.549368 8.947851 -1.185904 2.861093 -2.537916 1.032621 -0.237280 -1.251028 -0.805760 4.929774 2.489920 1.077155 0.450538 0.607410 -1.631325 2.790823 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.120944 0.280730 0.808663 -0.243909 -0.429925 -0.992088 -0.311563 -1.624222 0.439285 0.300857 0.792193 -0.143506 0.530828 -0.047247 0.055819 0.454953 0.394365 -0.324053 0.315798 -0.438942 -0.334510 0.727853 -0.220085 0.553542 0.168769 -0.890526 0.400335 0.174394 0.462440 0.478121 0.329171 -0.144145 -0.407016 0.230733 0.138955 0.431946 0.414271 0.252154 -0.537590 0.384433 -0.284347 -0.260411 0.492208 -0.004636 0.708607 0.291508 0.131024 0.398353 -0.139652 -0.346576 -0.164197 0.473899 -0.369925 0.180639 -0.055303 -0.403305 -0.135137 -0.105641 -0.105278 0.226289 -0.257111 -0.471646 -0.359498 0.266383 -0.465062 0.226539 -0.535017 -0.335119 -0.143490 -0.121679 0.426937 0.120051 0.005621 0.519584 -1.071843 -0.003264 0.165202 0.206622 0.377424 -0.262137 0.081585 -0.062653 -0.573577 -0.619613 0.611565 0.871205 0.252860 -0.027373 -0.666442 0.089821 -0.218463 -0.100002 0.507945 0.380771 -0.440997 -0.108365 -0.361086 -0.261558 -0.549541 -1.234357 0.281816 -0.228782 0.393174 -0.278362 0.054292 -0.212633 -0.217931 0.158026 -0.326572 -0.507995 0.208522 -0.293635 0.218366 1.020991 -0.251388 -0.158575 -0.609579 -0.324210 -0.021285 0.344105 0.401718 0.059900 0.536602 0.601704 0.338629 -0.516089 -0.677914 0.299286 0.350344 0.279356 0.282984 -0.593960 -0.364095 0.262298 -0.580404 -0.950555 -0.406749 0.080787 0.482628 -0.415507 0.169746 0.010796 -0.441101 0.314777 0.527770 0.081750 0.126401 0.005234 -0.510216 0.407047 0.743341 -0.182645 0.521207 -0.378999 0.047415 0.216927 -0.262740 0.161231 0.261604 -0.127828 -0.477294 -0.125837 -0.057601 0.403247 0.265485 0.366068 -0.129535 0.395229 -0.581426 -0.494974 -0.832743 0.023994 0.969880 -0.090264 0.393151 -0.629176 -0.311281 0.065850 0.802562 0.211615 -0.454898 0.381702 -0.479654 0.362039 -0.483451 -0.588612 0.902726 1.034619 0.623823 -0.139095 0.195757 0.544808 -1.142467 -0.406843 -0.244549 0.337157 -0.279759 -1.452861 -0.584970 0.133999 -0.631918 -0.168635 -0.183678 0.443123 0.267264 0.495178 0.670897 0.027580 -0.163548 -0.366020 0.547493 -0.082001 -0.237378 0.094056 0.014133 0.055155 0.256106 -0.413601 0.226681 0.462757 -0.474336 0.317563 0.463950 0.181837 -0.037143 1.086039 0.507640 -0.138776 0.444918 -0.242912 -0.320389 0.357121 -0.058704 0.402591 0.028779 0.100988 -0.099572 0.121544 0.536129 -0.313767 -0.729122 -0.551901 -0.422382 0.179128 0.460249 0.590311 -0.814185 -0.952056 0.094334 0.022411 0.921523 0.079968 0.820342 -0.147894 0.462866 -0.725086 0.166914 0.045841 -0.168247 0.370961 0.074136 -0.303312 -0.067939 -0.129046 -0.851493 -1.070633 -0.093573 -0.309485 -0.352247 -0.424815 0.456364 -0.196291 -0.273907 0.109776 0.085902 0.527486 -0.034453 -0.049265 -0.546962 0.303124 0.876445 -0.227008 -0.491543 0.423880 0.248644 1.524036 0.076080 0.259673 0.042657 0.040080 0.023475 -0.519781 -0.204343 0.738070 0.627400 0.204699 -0.236921 -0.138300 0.217108 0.251038 -PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = -2.752325 1.315810 10.908756 10.183440 -8.421922 -10.991822 -4.833263 -10.884171 6.372704 -0.365047 7.216900 1.924137 2.632791 -3.957579 0.019256 -2.714225 2.680613 -1.698311 -1.060555 -4.328082 -4.304284 9.952600 5.301173 -11.017860 1.499929 -10.774847 9.022105 5.984150 3.938686 8.337362 0.332790 -0.567205 -2.982635 6.728166 -3.559072 -0.405807 -0.255149 1.768124 -4.216102 -0.411617 5.806050 3.566288 8.889273 -0.168786 6.857874 3.500985 5.301592 2.474796 -7.450131 -2.150763 -4.382759 6.665988 -6.434834 5.092362 -0.844999 3.682787 3.454321 -7.167635 -2.099393 -8.757425 -0.029992 0.198275 -5.113498 -0.291867 -7.573832 1.494619 -0.957663 -5.510119 3.776736 -0.921726 6.471428 1.899849 -0.390492 -3.889773 -6.689259 1.494116 0.753778 5.742465 5.614568 -0.310735 -1.813650 0.007161 -5.013692 -4.723935 2.145137 -0.767713 2.467412 1.228885 0.851901 -4.127808 1.136982 -1.316429 0.484906 4.222276 -3.848409 1.917315 -2.162292 -1.592384 -4.899240 -3.963827 1.106829 -4.113461 3.676855 5.069311 -4.462186 -0.029351 0.387606 0.823286 -3.703356 -7.119503 0.667453 -3.331331 2.208653 8.979341 -2.680649 -2.591809 -0.846652 -1.980610 -0.736282 8.076394 0.591503 2.125129 7.615155 9.830234 1.324682 -6.335413 -2.671781 0.694211 5.304509 6.325318 5.932556 -6.744703 -5.085589 -0.155848 -0.582136 -11.749575 0.909772 2.338885 6.882437 2.282580 -8.683457 4.576417 -4.686830 7.987318 4.001008 3.834451 2.368871 -0.853961 -7.380807 8.488074 13.789036 -2.088490 5.103126 -4.549040 -6.714149 10.482660 -4.668333 3.783153 1.334278 -2.464850 0.679255 -3.797912 0.699717 7.109535 1.263416 2.179564 5.275457 2.197946 -1.396513 -12.221675 -10.442107 1.723501 7.992880 2.901505 14.746440 -8.130684 -2.886713 -2.610678 7.896998 -1.778740 -2.600154 0.994614 -4.285042 5.010207 -13.723246 -10.721794 14.157007 10.998063 1.802524 1.725868 7.513511 4.739167 -1.329559 -3.765855 -4.553580 3.116597 3.984915 -0.965857 0.578059 0.468035 -7.611487 -4.391991 2.593892 3.112864 5.028395 -6.383722 -4.138494 -1.717222 -7.894466 -7.586953 3.208192 -7.915393 -1.090812 2.671433 -0.985503 0.058649 3.426111 -0.223161 -2.440285 -0.453807 -3.219240 0.695314 1.716160 7.105202 2.290742 7.853213 9.400802 -1.458456 7.144090 4.841358 -3.905686 18.125120 -4.534095 2.754200 2.794181 6.823559 2.156309 2.988988 4.589500 -3.820702 -0.202358 -8.788231 3.759711 2.158688 5.018539 -13.368811 -5.106298 -11.416436 -3.509881 3.645050 6.054184 -2.164756 14.553371 -2.340058 -0.208094 -15.993544 -1.000400 6.989049 0.760946 6.022869 4.164203 -5.887991 -12.178743 -3.129765 -4.885493 3.526707 -3.770149 -4.753629 -5.197381 -1.253513 4.299255 -4.108955 3.611776 10.701928 -2.990829 3.173350 -3.450204 0.113093 -2.485123 -4.889257 1.681793 2.229349 -6.682156 9.842825 -1.017460 16.295831 -1.207232 6.202525 -5.397671 3.904598 -1.228518 -5.702708 -2.434504 10.049343 4.975324 1.130776 2.656383 1.676825 -2.576851 6.578136 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.289582 0.213889 0.964809 -0.225698 -0.430746 -1.071593 -0.401733 -2.259521 0.796463 0.366732 0.929757 -0.147911 0.607951 -0.269410 -0.010305 0.732567 0.334690 -0.477413 0.451879 -0.419743 -0.260072 1.309883 -0.329122 0.733648 0.089149 -1.373695 0.363170 0.136041 0.925110 0.487778 0.364817 -0.281624 -0.340899 0.246055 0.154186 0.605678 0.458466 0.279561 -0.847651 0.325734 -0.451151 -0.343475 0.529608 -0.178658 0.979409 -0.099052 0.426768 0.388820 0.012986 -0.302667 -0.430456 0.942103 -0.460615 0.177439 0.013304 -0.628793 -0.318108 -0.102797 -0.279312 0.511207 -0.465113 -0.495732 -0.459523 0.317174 -0.550173 0.382624 -0.635778 -0.229197 -0.134410 0.029216 0.632216 0.353306 0.222986 0.593565 -1.572446 0.110080 0.110224 0.249161 0.402928 -0.218153 0.317899 -0.042238 -0.607432 -0.722257 0.956767 1.300369 0.138257 -0.190801 -0.769687 0.190573 -0.434680 -0.197289 0.564815 0.430650 -0.762682 -0.088320 -0.601023 -0.219391 -0.523137 -1.493400 0.238533 -0.414876 0.464487 -0.395848 0.264710 -0.116893 0.078977 0.159537 -0.372413 -0.730380 0.184748 -0.179035 0.280680 1.443163 -0.313933 -0.118320 -0.683338 -0.241097 -0.360679 0.321472 0.504094 0.292586 0.746249 0.793725 0.510447 -0.623715 -0.850346 0.646493 0.518638 0.401892 0.263393 -0.802017 -0.395000 0.251915 -0.354857 -1.275112 -0.563539 0.256400 0.571525 -0.511954 0.353676 -0.207116 -0.298884 0.636434 0.659588 -0.216147 0.158357 0.117189 -0.591960 0.674460 1.155727 -0.130962 0.553738 -0.677904 0.176883 0.317912 -0.546217 0.269582 0.218869 0.093536 -0.523957 -0.342914 -0.064104 0.465455 0.175020 0.419539 -0.284749 0.533263 -0.707644 -0.787245 -1.056614 -0.020953 1.085263 -0.233557 0.536906 -0.678550 -0.576358 0.163419 0.902748 0.364493 -0.459481 0.616466 -0.896137 0.517803 -0.537982 -0.852151 1.225908 1.399751 0.738964 -0.114749 0.419385 0.880380 -1.638300 -0.514759 -0.281576 0.467399 -0.120051 -2.104374 -0.772607 0.131527 -0.790065 -0.409144 -0.187814 0.451198 0.256706 0.856741 0.958322 0.085401 -0.271622 -0.382593 1.005619 -0.165565 -0.310241 -0.006429 0.114408 0.010223 0.514269 -0.653475 0.448111 0.678861 -0.521455 0.464003 0.612029 0.108014 -0.145174 1.178744 0.879934 -0.067646 0.901592 -0.250631 -0.366555 0.358998 -0.019184 0.353179 0.021111 -0.202291 -0.263735 0.217794 0.490557 -0.435182 -0.964159 -0.683685 -0.404837 0.072827 0.599582 0.890927 -1.101058 -0.984942 -0.064569 0.180072 0.877050 0.284492 1.052717 -0.427970 0.526337 -1.187880 0.180028 0.131456 -0.079508 0.661133 0.055358 -0.291600 -0.064114 -0.202161 -0.844110 -1.463668 -0.286813 -0.724826 -0.470161 -0.896913 0.908728 -0.396269 -0.292077 0.198675 0.238974 0.789960 -0.299772 -0.051367 -0.845766 0.531174 0.887515 -0.218665 -0.633182 0.491848 0.134083 2.059844 -0.161082 0.218771 -0.102351 0.178459 -0.140104 -0.740856 -0.068541 0.938816 0.759523 0.186238 -0.462222 -0.313547 0.063596 0.303950 -PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = -5.734182 -1.564931 30.368997 19.190040 -8.148302 -22.206646 -11.977103 -27.522634 20.910147 -0.716558 18.271904 5.654351 5.678630 -7.571238 1.233122 -2.653531 0.179089 -12.959727 1.247300 -7.017669 2.838686 32.672941 17.262798 -23.024658 -0.479637 -42.740279 16.164809 10.586528 18.230591 25.977610 -1.331229 -5.122620 0.215018 15.958112 -8.898461 1.298187 2.273683 -0.104255 -11.005094 -0.893140 9.279329 17.570426 16.682264 0.151876 20.453106 2.428302 16.122270 2.776888 -6.599831 -4.070656 -19.490627 27.282770 -19.544071 7.992238 -2.420389 12.792160 1.848126 -20.071121 -11.104065 -23.272968 -2.838817 11.188444 -12.448653 0.148465 -17.992822 8.251920 -5.918692 -3.303345 7.488775 0.982332 20.870263 11.433697 7.898413 -8.195216 -22.016857 8.611495 -8.064945 15.437945 11.789483 -8.804230 -9.731862 6.173904 -5.369934 -10.433119 7.656474 3.980710 -1.417666 -2.345599 8.866527 -6.416666 -9.248870 -4.091955 -6.304302 10.684933 -13.036377 8.802799 -3.873202 0.318863 -3.392414 -1.306804 -1.754249 -15.633800 4.928782 14.412246 2.067771 -1.118424 0.363033 1.066026 -11.263811 -18.729221 5.263908 1.674753 -1.292594 21.878070 -13.373670 1.895419 1.813211 1.750216 -5.675187 23.848546 -1.118444 12.681511 13.879290 25.906004 1.837998 -13.135824 -2.646074 8.936391 20.004012 16.150201 14.662868 -18.920342 -11.755505 -4.655744 8.510685 -29.853484 6.112704 12.587787 15.535888 10.678165 -24.196101 6.633790 -6.778370 27.094675 14.907790 4.232872 7.098456 -1.696224 -19.049201 26.422640 45.950640 -6.465880 15.159035 -17.526351 -11.060962 28.611065 -24.348512 14.164114 -0.190401 4.192632 7.543008 -14.811322 -2.239177 17.932888 6.848771 12.343530 14.389381 4.848688 6.153520 -34.816731 -23.900117 -3.988347 14.711142 -2.907656 33.380020 -14.403522 -9.748634 -7.840594 19.429455 -2.248723 -4.291201 1.995044 -14.085539 10.689905 -38.753745 -26.626644 38.519961 36.079675 4.053078 6.973392 20.499988 25.084317 -3.573750 -4.214015 -6.462533 10.860331 7.489247 -6.680614 1.944435 -3.751177 -16.654642 -18.706200 4.971309 4.994342 7.739720 -8.544012 -12.284760 5.840695 -24.258664 -15.229171 11.260395 -26.233307 -9.957887 3.043092 -0.239588 -2.414770 7.674703 -5.023569 2.138145 15.170482 -9.668193 0.643432 9.696767 14.898972 8.334894 11.587956 23.360541 4.218015 22.547513 15.155216 -8.017093 41.518196 -8.079050 1.353122 5.644793 8.035081 2.760919 10.180356 -1.382604 -9.175052 -5.737484 -21.443040 18.924316 0.728967 15.530437 -18.297062 -21.037837 -16.466661 -12.247565 18.210391 11.497141 -1.243355 39.377627 -7.083643 -0.036804 -43.595160 -2.669679 21.340871 5.727953 14.774521 12.640125 -9.803333 -30.910788 -8.767976 -3.407784 9.356538 -13.444378 -24.860363 -11.441559 -16.140431 21.944655 -17.342722 11.628357 23.765723 -0.294996 12.893785 -7.042184 -2.510943 -13.793775 -6.178134 -2.337404 10.546802 -17.141999 23.174135 -9.754753 37.544449 -16.514917 14.678403 -18.198740 14.214454 -8.395752 -8.693758 0.519055 27.943403 12.759253 -0.123934 2.897596 -3.787869 -9.586361 12.136109 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = -0.506818 0.808688 6.852261 3.833723 -2.810388 -5.481419 -2.726049 -8.664170 4.560853 0.787751 4.754083 0.253738 1.808144 -1.413819 -0.138992 0.042065 0.671599 -2.412390 0.807564 -1.988510 -1.338398 6.792005 2.248890 -3.379301 0.141988 -8.226599 4.358985 2.424822 3.886715 4.446557 0.572230 -1.001413 -0.598694 3.686333 -1.687800 0.689692 0.719034 1.206526 -2.676431 0.163557 1.473557 2.462278 4.233389 0.123958 4.806251 1.240705 3.218563 1.081097 -2.049208 -0.731911 -2.954953 5.275651 -4.002316 1.963323 -0.314388 1.072429 0.570175 -4.103498 -1.694082 -3.046946 -0.887593 0.797713 -3.157403 0.539398 -4.229267 1.399094 -1.561599 -1.890163 1.256292 0.308048 4.275365 2.056725 0.758075 -1.054735 -5.677143 1.666881 -0.210223 2.408886 3.051725 -1.584672 -0.843135 0.863432 -2.570587 -3.371713 2.927288 2.470862 0.642690 -0.188832 0.503300 -1.490235 -1.234650 -1.098217 0.185934 3.362510 -2.514407 1.529444 -1.521499 -0.882515 -2.468183 -3.047745 0.392650 -3.401447 2.341256 1.953020 -0.619269 -0.109390 0.464213 0.596235 -2.031743 -4.354842 0.608448 -1.234600 1.761755 5.790248 -2.163344 -0.821438 -1.089493 -0.831637 -0.902141 4.294858 0.948582 1.631998 4.635458 5.441099 1.124873 -3.590688 -1.934492 1.710701 3.054172 3.642893 2.865232 -4.792509 -2.642772 -0.258476 0.652579 -7.217637 0.130683 1.652770 3.044326 -0.042869 -3.686406 1.575007 -1.875082 4.866036 3.599640 1.262551 1.510007 0.043797 -3.635426 4.854473 8.672828 -1.161935 3.009616 -3.793663 -2.610003 5.114605 -4.226862 2.897806 0.612598 0.102927 0.182767 -3.056006 0.216727 4.154311 0.864719 1.975780 2.416488 1.480941 -0.440872 -6.516809 -5.848937 0.362398 4.485101 0.044491 7.384882 -4.083628 -2.406812 -0.741958 4.512726 0.462461 -1.177061 1.311762 -3.237461 2.817159 -7.359619 -6.161241 7.601864 6.993637 2.031811 0.206565 3.925471 3.981240 -2.440680 -2.340320 -2.095346 2.562390 1.251680 -3.274976 -0.643437 -0.163690 -4.216965 -2.820280 0.507103 1.653520 2.653363 -1.650387 -1.062677 -0.273494 -4.528180 -3.696997 3.096649 -4.287656 -1.800631 0.469058 0.034641 -0.354774 2.187228 -1.342962 0.091613 2.075090 -2.252567 0.701947 2.461391 3.027332 0.533660 4.685215 5.350407 -0.170812 4.636889 2.175838 -1.548673 8.123757 -1.700425 0.935201 1.452793 1.989829 0.142420 2.035844 1.790563 -2.378286 -2.137257 -4.709568 2.368198 0.643100 3.173399 -3.327876 -3.996516 -5.369091 -2.274722 2.630214 3.783848 0.150099 8.375274 -1.185752 1.018541 -8.625033 -0.291690 3.437739 0.456020 3.882099 2.326708 -3.163209 -4.779362 -1.946677 -2.624509 -0.605424 -2.225050 -4.170149 -3.111770 -2.781096 3.689395 -2.801244 1.622488 4.770397 -0.470048 2.247388 -2.138141 -0.155601 -2.693320 -1.101083 2.076456 0.821910 -4.133877 4.664677 -1.287827 10.098002 -2.345058 3.304655 -3.282074 2.247998 -1.164959 -2.518968 -0.690993 6.301944 2.977461 0.591576 -0.062698 -0.516144 -1.443237 3.097258 -PE-benchmarks/find-two-non-repeating-element.cpp__main = -0.200659 -0.396940 2.229200 0.335093 -0.967796 -2.039837 -0.978552 -4.502639 2.572323 1.013200 2.079961 0.498920 1.611700 -1.586496 -0.229132 0.815465 0.853671 -1.435213 0.662323 -0.922118 0.409329 3.917908 0.060637 0.356766 0.000539 -3.805563 1.119118 0.085824 2.229511 1.974877 0.742126 -0.404395 -0.782750 0.658967 0.188440 1.462905 0.782472 0.530050 -1.786206 -0.124341 -0.219190 -0.266851 1.436149 -0.322021 2.763901 -1.004318 0.940468 0.415991 -0.126143 -1.039722 -0.967128 1.735289 -1.335761 0.566609 0.082497 -0.768168 -0.563832 -0.392695 -0.741808 -0.268711 -0.624287 -0.680800 -0.989360 0.526819 -1.245828 1.017857 -1.160756 -0.154679 -0.405692 -0.841809 1.508544 0.986990 0.957912 0.477364 -3.618259 0.301283 -0.187947 0.424938 1.100707 0.366190 -0.260780 -0.579847 -1.097038 -1.467575 1.843390 2.628674 -0.416762 0.102773 -1.309993 0.201362 -0.996936 -0.409271 0.895499 0.847613 -2.185858 -0.278284 -0.567592 -0.319310 -0.027710 -2.142832 0.525637 -1.110966 0.661439 -0.122148 0.381336 -0.126693 0.301020 0.113200 -1.190845 -1.311325 0.880835 -0.279054 0.283310 3.153076 -0.944988 -0.240815 -1.647599 -0.135622 -0.494053 1.210659 0.490423 1.087266 1.594640 1.839851 1.220873 -1.675356 -1.267837 2.264291 1.676013 0.677906 0.373606 -1.656965 -0.781636 0.568627 -0.325267 -2.795066 -1.456788 0.878602 1.570479 -0.507833 0.078505 -0.280813 -0.452306 1.996898 1.797143 -0.737711 0.436962 0.542187 -1.827281 1.762903 3.252888 -0.077125 1.032212 -1.598540 -0.122964 1.694278 -1.776506 0.977009 -0.055245 0.408725 -0.890398 -1.007395 0.336082 1.206367 -0.085414 1.210352 -1.059919 1.267262 -0.823498 -2.371662 -2.925089 -0.626138 2.361916 0.479359 2.077722 -1.539548 -0.946993 0.013276 1.802575 1.052765 -1.008426 1.389227 -2.127533 1.235533 -2.678538 -2.293479 3.679708 3.754572 1.747568 0.211956 1.313752 2.038568 -2.548229 -0.789827 -0.557105 1.040943 0.354152 -3.643651 -0.814727 0.302958 -1.892988 -2.007101 -0.079342 0.676433 0.654729 0.937997 1.813031 0.228088 -0.473891 -1.116790 2.390896 -0.777916 -1.017748 -0.303742 0.415699 0.036944 1.182949 -1.091390 1.118841 1.439026 -0.696429 0.759587 1.175381 0.342219 -0.096757 1.545819 2.664804 -0.425648 1.689500 -0.356688 -0.803947 1.948801 -0.495059 0.441970 0.157446 -0.491375 0.261499 0.490655 0.580818 -1.072405 -0.997384 -1.538581 -0.161674 0.282217 1.630324 0.074981 -2.893656 -2.048082 -0.094839 0.352453 1.516436 0.561388 3.135972 -1.574281 0.740699 -3.623426 0.295645 1.341667 0.281431 1.588673 0.346368 -0.651290 -1.043257 -0.615266 -1.582137 -1.690162 -0.950482 -1.969306 -1.031603 -2.111812 2.779696 -1.439397 -0.103030 1.133273 0.197770 2.230648 -0.893028 0.023871 -2.253624 0.914145 0.178986 0.137651 -1.281886 1.466941 -0.150254 3.821099 -1.015845 0.623584 -0.497870 1.859447 -1.347929 -2.327008 -0.056165 2.270234 1.734486 0.197221 -0.688652 -0.909354 -0.214112 0.861859 -PE-benchmarks/permutations-of-a-given-string.cpp__main = 1.152436 2.042414 4.540292 1.757068 -4.019762 -4.863849 -1.398902 -7.758617 3.012749 0.999415 2.309124 0.355091 1.155174 -1.758619 -0.601304 2.493982 1.500361 -0.255219 -0.045488 -2.500377 -3.732215 2.801274 -0.413199 -0.552055 1.870564 -5.034891 3.655791 0.894816 2.821711 1.584641 2.000689 -0.464339 -1.560034 2.955768 1.301779 1.654133 0.910777 0.782653 -3.108872 1.685116 0.197165 -0.445206 2.977487 1.538817 3.783907 1.477564 2.065720 1.806282 -2.229334 0.182106 -2.179208 3.845611 -2.290166 2.273120 -0.619464 -0.220488 -0.079503 -2.465996 0.077026 0.660770 -1.979758 -2.214308 -2.129300 0.364879 -3.320421 0.366546 -1.918189 -2.496038 -0.474687 1.860572 3.050472 1.381734 -0.399941 0.720324 -4.565615 0.140084 1.008883 2.119410 3.651491 -1.153085 0.653132 -0.634121 -2.930058 -3.317157 3.537914 1.619403 1.302332 0.014126 -0.579529 -1.940393 -1.366307 -1.609350 2.029498 2.391942 -3.202205 -0.275598 -2.345852 -1.211692 -2.957923 -5.359814 0.636309 -1.453365 2.054494 -1.054472 -0.828344 0.647778 0.689766 0.679741 -0.633452 -1.459142 0.578068 -1.338129 1.661895 5.159010 0.364907 -2.120719 -1.014994 -1.327826 -1.187483 2.158003 1.805489 -0.022622 5.148443 3.926820 2.012343 -1.672883 -2.085231 0.458035 0.465091 2.671374 2.615186 -3.581285 -2.411580 0.957052 -0.002882 -5.129437 0.094257 0.310082 2.406785 -1.046289 -0.530596 -0.510243 -1.381739 1.683451 1.260567 0.019022 1.241322 -0.522760 -2.231444 3.058912 5.633857 -0.708959 1.486538 -2.861615 0.329711 2.031287 -1.927185 0.570119 0.224418 -1.603251 -0.732180 -1.020775 -0.649827 2.741402 0.123006 -1.248147 1.537934 2.098263 -3.366170 -3.984161 -3.592571 0.734072 3.951233 -0.586084 4.255345 -3.435283 -0.825626 -1.457729 3.334986 0.758582 -0.292958 1.770351 -2.845711 2.082947 -1.918341 -3.741126 5.911202 4.867045 1.756682 -1.396160 1.668011 2.634818 -4.872412 -3.481834 -1.626133 -0.110037 1.083685 -4.968022 -3.160962 0.941901 -3.762778 -1.303713 0.550523 1.629122 3.278022 0.647556 1.128930 -0.154113 -2.009368 -3.405648 2.416354 -1.423746 -0.725175 1.289883 0.532010 0.504213 2.256320 -0.861993 -0.472697 0.554670 -1.378066 0.855706 1.812551 3.378731 -0.072736 4.786777 3.625434 -0.070179 3.547891 1.157092 -2.017904 4.056076 -0.165659 2.032565 1.453067 0.421243 -0.620597 1.067638 2.704277 -2.040047 -2.112804 -3.194334 -0.322244 -0.082262 1.486055 -0.409599 -1.717652 -4.915302 -1.067388 0.484130 2.058969 -0.170780 4.572706 -0.570709 0.614112 -4.779302 -0.092686 2.126440 -0.328537 3.011037 1.698838 -2.831237 -1.184407 -1.571798 -3.283919 -2.790868 -1.058885 0.137706 -2.299055 -0.458052 2.132368 -0.955643 0.468045 3.370206 -0.063776 1.931853 -2.942400 0.929039 -2.024762 0.086962 4.418319 -0.233309 -3.017874 2.723785 0.283804 8.082415 0.477865 1.298826 -1.237969 -1.577788 0.631973 -2.093702 -1.617118 3.809754 1.833291 1.520468 0.327116 -0.040829 0.082170 3.716721 -PE-benchmarks/permutations-of-a-given-string.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(char&, char&) = -0.222781 -0.119694 1.555195 1.160486 -0.873651 -1.969836 -0.706187 -2.615710 1.687661 0.531547 1.378988 0.411511 1.186373 -1.119635 -0.248632 0.202125 0.574424 -0.541172 0.138050 -0.708962 -0.500949 2.930094 0.463227 -0.780621 0.061569 -2.273996 1.538413 0.542205 1.225630 1.810284 0.324261 0.035531 -0.169785 0.836459 -0.481234 0.637669 -0.262029 0.671609 -0.821926 -0.206385 0.606121 -0.082405 1.423585 0.144879 1.552034 0.123042 0.915578 0.189335 -0.431925 -0.714207 -0.877368 0.830294 -1.146669 0.620969 -0.807404 -0.085668 0.462310 -0.471919 -0.302616 -0.981604 -0.133739 -0.191144 -1.182932 0.111295 -1.339018 0.517744 -0.616905 -0.751920 -0.255337 -0.440308 1.130381 0.647627 0.125903 -0.585108 -2.430132 0.135970 0.027871 0.356418 1.048365 0.343909 -0.634994 -0.457839 -1.171476 -1.139895 1.435169 0.919027 0.102492 0.619936 -0.475433 -0.627147 -0.512228 0.027424 0.655516 0.844158 -0.863661 0.158328 0.029162 -0.169773 -0.260882 -1.146057 0.447033 -0.838535 0.471506 0.392018 0.022925 0.024293 0.274641 0.023493 -0.844559 -1.221358 0.330615 -0.757618 0.115915 1.868931 -0.401189 -0.415260 -0.737941 -0.203223 -0.040402 1.306158 0.377105 0.459468 1.547814 1.242292 0.544818 -1.318088 -0.603637 1.107882 1.000643 0.646880 0.459174 -1.157418 -0.836304 0.251993 -0.280971 -2.173428 -0.668338 0.827148 1.040256 -0.504749 -0.760546 1.042331 -0.489995 1.093421 1.426812 -0.067491 0.510759 0.226809 -1.338035 1.272117 2.641557 -0.179826 0.708474 -1.216635 -1.013561 2.146634 -1.065788 0.619543 -0.034147 -0.258567 -0.509109 -0.638490 0.732031 1.204023 -0.285790 0.610751 0.200736 0.692729 -0.466460 -1.748669 -2.090998 -0.200311 1.849547 0.933013 2.602777 -1.382888 -0.218542 0.020797 1.022318 0.349109 -0.438789 0.606843 -1.157710 0.948848 -3.080179 -2.005888 2.815544 1.832739 1.166799 0.276760 0.990707 1.194655 -0.383125 -0.662837 -0.623059 0.741214 0.792996 -1.360407 -0.155391 0.117626 -1.585166 -1.218967 0.091769 0.448818 0.543258 -0.450848 0.434036 -1.016862 -0.775153 -1.239550 1.109608 -1.114256 -0.374810 -0.050132 0.066085 -0.309010 0.625509 -0.155372 0.443494 0.237949 -0.325842 0.337540 0.460554 0.512661 0.142066 1.268203 2.404373 -0.846303 0.838910 0.137115 -0.418803 2.461766 -0.666991 0.308381 0.332758 0.859072 0.602121 0.452254 0.836813 -0.714634 -0.142842 -1.433649 0.353682 0.886789 0.790030 -1.209800 -1.090888 -2.020046 -0.344331 0.084705 1.756699 0.011422 2.551448 -1.009247 0.426916 -2.731594 0.246985 1.003913 0.141955 1.145019 0.564626 -0.801546 -1.019564 -0.644617 -0.979530 -0.335797 -0.739179 -1.234851 -0.927283 -0.709708 0.735874 -1.324128 0.328154 1.395124 -0.368396 1.014837 -0.997410 0.162301 -1.291094 0.132119 0.222382 0.237208 -0.919358 1.129657 -0.234092 2.633297 -0.464795 1.103862 -0.671228 1.560642 -0.960453 -1.720704 -0.346814 1.803605 0.978785 -0.101943 0.413813 -0.077720 0.176701 1.011373 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.174093 0.308694 1.581302 0.122050 -0.816285 -1.764096 -0.686955 -3.090723 1.106834 0.497594 1.460948 -0.179768 0.909869 -0.245076 0.044686 0.815425 0.632221 -0.906682 0.719440 -0.718798 -0.625298 2.145947 -0.162856 0.508149 0.122235 -2.292599 1.199528 0.374876 1.072512 1.095070 0.553902 -0.237237 -0.356541 0.611749 0.073236 0.721033 0.501388 0.510366 -0.909308 0.564136 -0.186234 -0.203154 1.038948 -0.101991 1.332931 0.392127 0.843189 0.624627 -0.201879 -0.493283 -0.871455 1.161521 -0.951508 0.323992 -0.328496 -0.606917 0.025881 -0.559330 -0.511150 0.246571 -0.622549 -0.557502 -0.912234 0.456997 -1.102984 0.618356 -0.902315 -0.452935 -0.086214 0.340265 1.090720 0.628125 0.254401 0.511046 -2.247823 0.272107 0.059399 0.492749 0.700800 -0.612364 -0.026608 0.140019 -1.167506 -1.208588 1.333544 1.597234 0.325083 -0.321804 -0.659643 0.066853 -0.754534 -0.219814 0.551187 0.895822 -0.779453 0.043868 -0.614256 -0.305530 -0.970288 -1.881408 0.303112 -0.783006 0.709676 0.003192 0.139593 -0.276424 -0.052331 0.154606 -0.723398 -1.235959 0.223907 -0.577878 0.446171 1.952320 -0.444882 -0.188653 -0.960938 -0.400868 -0.141808 0.869293 0.606869 0.404206 1.501051 1.417628 0.449074 -0.952682 -1.122199 0.725000 0.841925 0.645963 0.666602 -1.430781 -0.824710 0.191958 -0.441337 -1.833921 -0.570792 0.470106 0.877045 -0.838729 -0.103940 0.334028 -0.583709 1.095361 1.259837 0.038546 0.292518 0.125961 -0.968321 1.275786 2.180176 -0.268872 0.870318 -1.320024 -0.081667 1.178592 -0.847187 0.444670 0.444852 0.110458 -0.899566 -0.619618 0.048756 0.869219 0.350583 0.662413 0.312804 0.711441 -0.588448 -1.301259 -1.613904 0.100527 1.732256 -0.130532 1.610546 -1.295891 -0.569914 0.150479 1.162358 0.565016 -0.691472 0.676943 -1.056084 0.714779 -1.603833 -1.524346 2.066308 1.738534 0.954185 -0.044273 0.734001 1.334103 -1.800089 -0.794600 -0.568014 0.972126 -0.136949 -2.316959 -0.740329 0.271274 -1.345249 -0.734024 -0.271203 0.756574 0.826473 0.494740 0.639247 -0.233412 -0.887384 -0.827382 1.286632 -0.626758 -0.705666 0.119407 0.006651 -0.022389 0.611001 -0.503829 0.616953 0.764789 -0.758921 0.410193 0.959022 0.434841 -0.112075 1.733517 1.623401 -0.192291 1.009793 -0.061740 -0.412707 1.150816 -0.036834 0.445921 0.159925 0.139257 -0.119153 0.326270 0.918518 -0.584704 -1.324491 -1.262460 0.099238 0.250808 0.862020 0.411307 -1.206528 -1.811070 -0.254703 0.462017 1.827695 0.270745 1.939271 -0.441739 0.634709 -1.981250 0.227809 0.319669 0.030933 0.879953 0.302808 -0.604153 -0.116755 -0.385386 -1.219752 -1.547593 -0.496632 -1.053207 -0.996101 -0.977756 0.838706 -0.690477 -0.260756 0.859852 0.107823 0.930954 -0.313977 -0.144058 -1.179128 0.446057 1.277019 -0.134797 -0.959048 1.088988 -0.062271 3.113294 -0.328384 0.579560 -0.318809 0.432654 -0.206700 -1.056913 -0.138247 1.593782 0.911678 0.100111 -0.118912 -0.373043 0.279194 0.757030 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.501055 -0.097013 1.277908 1.185184 -0.831729 -1.760136 -0.648704 -1.683962 1.188243 0.376313 1.142307 0.385954 0.979295 -0.822201 -0.160345 -0.190760 0.507610 -0.435877 0.024400 -0.657370 -0.622101 2.215819 0.727028 -1.071154 0.089769 -1.699771 1.617199 0.515060 0.601070 1.812687 0.185258 0.181274 -0.158055 0.845805 -0.482500 0.427322 -0.324910 0.630428 -0.296902 -0.094568 0.858726 0.072110 1.286812 0.304125 1.177368 0.657550 0.547610 0.181919 -0.636023 -0.716583 -0.580496 0.224148 -1.148644 0.559653 -0.880771 0.249010 0.707038 -0.534775 -0.200719 -1.433350 0.072232 -0.152785 -1.027701 0.077661 -1.234388 0.400415 -0.475419 -0.804267 -0.209144 -0.431740 0.932328 0.487503 -0.039904 -0.604401 -1.634298 0.077582 0.040816 0.351745 0.963957 0.138320 -0.941031 -0.357089 -1.051009 -0.974808 0.941586 0.257821 0.241013 0.698481 -0.092390 -0.677139 -0.260236 0.128892 0.473986 0.785455 -0.326735 0.169173 0.337105 -0.129374 -0.256405 -0.730744 0.400267 -0.654044 0.370187 0.711606 -0.247273 -0.136765 -0.066699 0.024087 -0.825444 -1.024290 0.328088 -0.841687 0.035858 1.231354 -0.332875 -0.327640 -0.493558 -0.273754 0.374231 1.354867 0.248091 0.259333 1.244237 1.083684 0.215462 -1.103065 -0.375401 0.617511 0.849423 0.493960 0.535707 -0.956934 -0.823210 0.189065 -0.404269 -1.647882 -0.403124 0.637887 0.860447 -0.329700 -1.084286 1.373444 -0.597854 0.743677 1.237862 0.303354 0.420523 0.034111 -1.224301 1.077881 2.169564 -0.226445 0.653729 -0.848807 -1.183492 2.134195 -0.821282 0.467024 0.049234 -0.443422 -0.418539 -0.431952 0.694284 1.061549 -0.131135 0.580308 0.505424 0.489540 -0.192684 -1.423985 -1.648487 -0.088024 1.684458 0.986280 2.419411 -1.281959 0.110765 -0.056516 0.880042 0.207149 -0.372940 0.214985 -0.579252 0.732959 -3.013642 -1.685580 2.366475 1.271639 0.942472 0.337710 0.716539 0.906051 0.325512 -0.460313 -0.575022 0.613484 0.578366 -0.392845 0.067995 0.089603 -1.310738 -0.978277 0.115406 0.440137 0.576975 -0.937286 -0.201866 -0.999132 -0.703079 -1.159403 0.501843 -1.094290 -0.325415 0.100689 -0.069514 -0.248626 0.265498 0.193181 0.239981 -0.045656 -0.231349 0.158258 0.330394 0.598383 0.301834 1.072043 1.943659 -0.903316 0.202780 0.258744 -0.259712 2.432639 -0.650721 0.344952 0.369198 1.216067 0.791296 0.294405 0.845328 -0.528557 0.133114 -1.249751 0.477818 0.979424 0.599445 -1.654076 -0.702472 -1.878050 -0.204837 0.062214 1.702349 -0.214105 2.211090 -0.592401 0.262663 -2.131080 0.190810 0.928190 0.072256 0.791669 0.603016 -0.714819 -1.110640 -0.600704 -0.826234 0.270327 -0.620849 -0.773576 -0.731600 -0.103762 0.141747 -1.032617 0.378916 1.313366 -0.474689 0.605975 -0.598782 0.124668 -0.950802 -0.191401 0.081892 0.242150 -0.719692 1.110815 -0.151671 1.891836 -0.270121 1.079670 -0.543051 1.378418 -0.738712 -1.288175 -0.382114 1.526375 0.716099 -0.155070 0.741292 0.156399 0.326184 0.896215 -PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::enable_if<__and_ >, std::is_move_constructible, std::is_move_assignable >::value, void>::type std::swap(int&, int&) = -0.222781 -0.119694 1.555195 1.160486 -0.873651 -1.969836 -0.706187 -2.615710 1.687661 0.531547 1.378988 0.411511 1.186373 -1.119635 -0.248632 0.202125 0.574424 -0.541172 0.138050 -0.708962 -0.500949 2.930094 0.463227 -0.780621 0.061569 -2.273996 1.538413 0.542205 1.225630 1.810284 0.324261 0.035531 -0.169785 0.836459 -0.481234 0.637669 -0.262029 0.671609 -0.821926 -0.206385 0.606121 -0.082405 1.423585 0.144879 1.552034 0.123042 0.915578 0.189335 -0.431925 -0.714207 -0.877368 0.830294 -1.146669 0.620969 -0.807404 -0.085668 0.462310 -0.471919 -0.302616 -0.981604 -0.133739 -0.191144 -1.182932 0.111295 -1.339018 0.517744 -0.616905 -0.751920 -0.255337 -0.440308 1.130381 0.647627 0.125903 -0.585108 -2.430132 0.135970 0.027871 0.356418 1.048365 0.343909 -0.634994 -0.457839 -1.171476 -1.139895 1.435169 0.919027 0.102492 0.619936 -0.475433 -0.627147 -0.512228 0.027424 0.655516 0.844158 -0.863661 0.158328 0.029162 -0.169773 -0.260882 -1.146057 0.447033 -0.838535 0.471506 0.392018 0.022925 0.024293 0.274641 0.023493 -0.844559 -1.221358 0.330615 -0.757618 0.115915 1.868931 -0.401189 -0.415260 -0.737941 -0.203223 -0.040402 1.306158 0.377105 0.459468 1.547814 1.242292 0.544818 -1.318088 -0.603637 1.107882 1.000643 0.646880 0.459174 -1.157418 -0.836304 0.251993 -0.280971 -2.173428 -0.668338 0.827148 1.040256 -0.504749 -0.760546 1.042331 -0.489995 1.093421 1.426812 -0.067491 0.510759 0.226809 -1.338035 1.272117 2.641557 -0.179826 0.708474 -1.216635 -1.013561 2.146634 -1.065788 0.619543 -0.034147 -0.258567 -0.509109 -0.638490 0.732031 1.204023 -0.285790 0.610751 0.200736 0.692729 -0.466460 -1.748669 -2.090998 -0.200311 1.849547 0.933013 2.602777 -1.382888 -0.218542 0.020797 1.022318 0.349109 -0.438789 0.606843 -1.157710 0.948848 -3.080179 -2.005888 2.815544 1.832739 1.166799 0.276760 0.990707 1.194655 -0.383125 -0.662837 -0.623059 0.741214 0.792996 -1.360407 -0.155391 0.117626 -1.585166 -1.218967 0.091769 0.448818 0.543258 -0.450848 0.434036 -1.016862 -0.775153 -1.239550 1.109608 -1.114256 -0.374810 -0.050132 0.066085 -0.309010 0.625509 -0.155372 0.443494 0.237949 -0.325842 0.337540 0.460554 0.512661 0.142066 1.268203 2.404373 -0.846303 0.838910 0.137115 -0.418803 2.461766 -0.666991 0.308381 0.332758 0.859072 0.602121 0.452254 0.836813 -0.714634 -0.142842 -1.433649 0.353682 0.886789 0.790030 -1.209800 -1.090888 -2.020046 -0.344331 0.084705 1.756699 0.011422 2.551448 -1.009247 0.426916 -2.731594 0.246985 1.003913 0.141955 1.145019 0.564626 -0.801546 -1.019564 -0.644617 -0.979530 -0.335797 -0.739179 -1.234851 -0.927283 -0.709708 0.735874 -1.324128 0.328154 1.395124 -0.368396 1.014837 -0.997410 0.162301 -1.291094 0.132119 0.222382 0.237208 -0.919358 1.129657 -0.234092 2.633297 -0.464795 1.103862 -0.671228 1.560642 -0.960453 -1.720704 -0.346814 1.803605 0.978785 -0.101943 0.413813 -0.077720 0.176701 1.011373 -PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.213379 0.398067 0.753130 0.000813 -0.510218 -0.882896 -0.274676 -1.398427 0.346544 0.231549 0.631987 -0.170644 0.448463 0.058548 -0.067570 0.256297 0.340985 -0.106147 0.288606 -0.369690 -0.599363 0.730801 -0.199288 0.367542 0.160639 -0.708276 0.644959 0.143582 0.466869 0.505991 0.246308 -0.093511 -0.322689 0.253014 0.062787 0.178580 0.107707 0.339595 -0.449994 0.372764 -0.091719 -0.386763 0.520399 0.068485 0.394506 0.395973 0.091229 0.306563 -0.168291 -0.233125 -0.193675 0.225328 -0.332638 0.233819 -0.181098 -0.391567 0.009797 -0.009777 -0.016949 0.273923 -0.201821 -0.511433 -0.356865 0.218011 -0.595814 0.141918 -0.649434 -0.458658 -0.107664 -0.049013 0.360990 0.134437 -0.025830 0.248594 -1.051125 0.043169 0.200650 0.194712 0.359551 -0.104444 0.105949 0.005991 -0.690379 -0.622704 0.524217 0.662692 0.264939 -0.063352 -0.496339 -0.145320 -0.078508 0.026671 0.459965 0.446451 -0.270923 0.099701 -0.607342 -0.199108 -0.492949 -1.322465 0.188691 -0.279419 0.411095 -0.213133 -0.165472 -0.141500 0.043714 0.149395 -0.057422 -0.608481 0.076643 -0.337669 0.212654 0.957961 -0.057164 -0.293305 -0.486701 -0.323080 -0.005721 0.289061 0.393818 -0.011493 0.589381 0.469848 0.328395 -0.472470 -0.541921 0.230032 0.072871 0.234448 0.306929 -0.486002 -0.374505 0.188745 -0.421311 -0.932076 -0.273003 0.076192 0.375437 -0.540992 0.179407 0.128309 -0.477582 0.134736 0.501574 0.171825 0.219744 -0.025536 -0.355536 0.339568 0.710831 -0.169659 0.360887 -0.437459 -0.208076 0.438474 -0.094133 0.164197 0.081522 -0.074904 -0.380015 -0.198079 0.067388 0.476324 0.025908 0.191257 0.178936 0.239342 -0.546989 -0.446103 -0.667002 0.154887 0.960163 0.070845 0.492087 -0.622806 -0.101610 0.184681 0.626993 0.281741 -0.310210 0.321784 -0.314556 0.321716 -0.696463 -0.653310 0.690131 0.658396 0.379868 -0.198970 0.055972 0.404855 -0.816742 -0.560737 -0.440940 0.337666 -0.210153 -1.089543 -0.564137 0.142184 -0.582493 0.043675 -0.023837 0.370193 0.532726 0.129925 0.390564 -0.260379 -0.254907 -0.556760 0.618410 -0.186851 -0.142469 0.132090 -0.039880 -0.039998 0.246562 -0.173258 0.090418 0.203957 -0.294416 0.242654 0.322464 0.130058 -0.221059 1.025121 0.537515 -0.221647 0.114060 -0.099957 -0.271735 0.681276 -0.188263 0.304165 0.053624 0.280150 -0.167359 0.203542 0.615025 -0.268317 -0.702244 -0.565592 -0.332894 0.149398 0.264327 0.221862 -0.508809 -0.951507 0.053127 -0.072926 0.955244 0.152744 0.817273 -0.131696 0.401104 -0.577484 0.148912 0.070569 -0.155368 0.548539 0.103137 -0.347070 0.138613 -0.179343 -0.731269 -0.649511 -0.113789 -0.299027 -0.401572 -0.128747 0.030636 -0.078936 -0.149401 0.182782 -0.090303 0.383206 -0.156798 -0.062566 -0.473005 0.182756 0.885390 -0.195863 -0.429644 0.440173 0.188471 1.321167 0.155565 0.267749 -0.013590 -0.081387 0.036291 -0.530706 -0.255772 0.696852 0.429150 0.247113 -0.123509 -0.036998 0.248796 0.242440 -PE-benchmarks/cutting-a-rod.cpp__main = 0.291936 0.411870 1.296010 -0.065606 -0.556838 -1.291559 -0.575451 -2.387140 0.824429 0.362598 1.039806 -0.240629 0.603229 -0.037162 -0.050667 0.699864 0.355165 -0.567519 0.519908 -0.512081 -0.571325 1.629952 -0.057498 0.558942 0.115476 -1.744383 0.614938 0.182079 1.028390 0.757290 0.276388 -0.256914 -0.232103 0.475595 -0.017446 0.497855 0.351457 0.391754 -0.842489 0.551230 -0.290490 -0.188997 0.727010 -0.092046 0.951433 0.325140 0.462510 0.429792 -0.145686 -0.333789 -0.527722 1.015115 -0.630308 0.281376 -0.127353 -0.455199 -0.206834 -0.320400 -0.361499 0.366318 -0.541351 -0.408691 -0.573828 0.373941 -0.834410 0.425229 -0.802646 -0.415562 -0.075785 0.174275 0.815765 0.491754 0.214304 0.469256 -1.711766 0.302725 0.143959 0.428135 0.470651 -0.396535 0.140208 0.199607 -0.813733 -0.966055 0.955802 1.292518 0.263135 -0.272705 -0.568577 -0.035097 -0.453461 -0.161807 0.476911 0.713511 -0.682973 0.122080 -0.713314 -0.267149 -0.777769 -1.688010 0.110201 -0.596901 0.583335 -0.234119 0.175883 -0.189580 0.056563 0.196292 -0.320106 -0.991592 0.163404 -0.254112 0.239503 1.612742 -0.325432 -0.113212 -0.621838 -0.319662 -0.354789 0.593170 0.522799 0.276290 1.014283 0.986961 0.444755 -0.680919 -0.819152 0.480331 0.543726 0.458102 0.585850 -1.005505 -0.618916 0.173483 -0.281282 -1.520225 -0.470537 0.366059 0.615968 -0.645583 0.149239 0.066574 -0.451756 0.762911 0.828040 -0.082114 0.280881 -0.071623 -0.672784 0.902699 1.636204 -0.272571 0.706742 -0.933486 -0.179042 0.850573 -0.700376 0.477486 0.230227 0.088587 -0.584136 -0.516360 0.041058 0.718875 0.188391 0.442098 0.147071 0.414921 -0.563445 -0.966294 -1.222358 0.055728 1.191841 -0.251540 0.988123 -0.847673 -0.536710 0.132255 1.050680 0.431256 -0.450095 0.543805 -0.828824 0.525831 -1.054078 -1.155537 1.491393 1.598801 0.694847 -0.077835 0.561109 1.021389 -1.481483 -0.759736 -0.447802 0.657085 -0.153961 -1.965573 -0.860562 0.169599 -0.922658 -0.333940 -0.231034 0.539664 0.565013 0.612699 0.613884 -0.086192 -0.681793 -0.625150 0.996617 -0.469291 -0.411794 0.144042 0.071036 -0.128604 0.531297 -0.533386 0.345180 0.629510 -0.615866 0.442660 0.689972 0.271237 -0.155051 1.352823 1.136180 -0.102642 0.882931 -0.061496 -0.353164 0.861702 -0.188787 0.353548 0.056733 0.083475 -0.364968 0.327209 0.611980 -0.425468 -1.121554 -0.868192 -0.046707 0.094521 0.506606 0.551411 -1.179602 -1.222671 -0.165349 0.315606 1.225153 0.319689 1.430243 -0.346320 0.567846 -1.543713 0.220718 0.184501 -0.028173 0.847536 0.239278 -0.461108 -0.232704 -0.309392 -0.930715 -1.263405 -0.375025 -0.976199 -0.606605 -0.766535 0.733370 -0.458344 -0.161396 0.516769 0.158561 0.798312 -0.215619 -0.153813 -1.011162 0.367413 1.188636 -0.221823 -0.671927 0.680322 0.048626 2.352395 -0.214409 0.446682 -0.216251 0.085277 0.011195 -0.801402 -0.132817 1.222442 0.729858 0.169544 -0.296224 -0.318775 0.145302 0.404735 -PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = -0.904571 1.281209 7.333676 4.381159 -3.626391 -6.020251 -2.841024 -7.430420 3.656194 0.176158 4.787411 0.437279 1.566828 -0.928484 0.366519 -0.525807 1.000445 -2.009286 0.491852 -2.166010 -2.011563 5.786111 2.609036 -4.545536 0.488080 -7.705146 5.017143 3.255517 3.015841 4.656145 0.478997 -0.777550 -1.016727 3.995448 -1.883811 -0.024898 0.555210 1.169058 -2.257515 0.491094 2.328500 2.654413 4.414963 0.218768 4.077423 2.241038 3.356476 1.388938 -2.958048 -0.862464 -3.531155 5.375406 -4.202549 2.189457 -0.540295 1.905608 1.286395 -4.526848 -1.622794 -4.157909 -0.529092 0.869560 -3.220748 0.244506 -4.328731 1.185177 -1.320729 -2.333548 1.956968 0.788028 4.274696 1.569393 0.453541 -1.204699 -4.742519 1.511426 -0.264792 3.234740 3.266348 -1.906844 -1.175878 1.208684 -2.542827 -3.304912 2.187899 0.940667 1.253317 -0.505411 0.830708 -1.589880 -0.984466 -0.829726 -0.314453 3.278196 -2.342804 1.820329 -1.727906 -0.820343 -3.087658 -2.487732 0.257613 -3.389534 2.163477 2.919945 -1.400419 -0.561904 -0.616318 0.464368 -2.306586 -4.547255 0.399288 -1.699076 1.124862 5.257448 -2.282699 -0.756185 -0.237153 -0.965688 -0.366519 4.742889 0.764719 1.515730 4.476894 5.842743 0.665712 -3.452886 -1.755039 0.747910 3.320337 4.011371 3.457174 -4.778932 -2.988277 -0.613667 0.222927 -7.244773 1.291907 1.621757 3.238273 0.938292 -4.879083 2.056359 -2.579502 4.848543 3.181161 2.547690 1.512616 -0.316210 -3.819645 5.067942 8.848574 -1.631725 3.519786 -3.112842 -2.975257 5.614643 -3.861001 2.766644 1.077877 -0.309272 0.597815 -2.947786 -0.670454 4.463494 1.553494 2.142381 3.795073 1.124479 -0.146588 -6.960072 -5.774323 0.702505 4.685495 -0.097911 7.888432 -4.447011 -2.193106 -0.978451 5.068708 -0.703251 -1.551198 0.577588 -2.352365 2.799842 -7.478324 -6.206930 7.750212 6.496100 0.861407 0.442398 4.287568 3.975475 -2.153127 -2.344563 -2.488624 2.518553 1.138469 -1.759749 -0.122838 0.009209 -4.326109 -2.296806 0.871903 1.794856 2.769595 -2.454610 -2.377050 0.293175 -5.204077 -3.750202 2.284005 -4.866136 -1.803065 1.033395 -0.407497 -0.207729 1.888519 -0.947099 -0.746066 1.725380 -2.711972 0.211024 2.130571 3.785755 1.303078 5.317712 4.952583 0.115171 4.418351 2.912540 -1.832767 9.234715 -1.856309 1.011076 1.576256 3.159909 0.305104 2.127767 2.100759 -2.281257 -2.234857 -5.472991 2.690739 0.539600 3.108354 -4.495757 -3.255510 -5.726223 -2.409532 3.266762 4.175812 -0.715890 8.812588 -0.546381 0.444811 -8.730117 -0.518571 3.677735 0.186983 3.583974 2.651027 -3.229412 -5.888550 -2.081442 -2.340416 0.663055 -1.985857 -3.636655 -3.278728 -2.228660 2.972027 -2.767293 1.963651 5.376836 -0.799055 1.883959 -1.404682 -0.349092 -1.959097 -1.724096 2.242241 1.278151 -4.373843 5.825632 -1.257017 10.501545 -1.996118 3.648694 -3.472165 1.586392 -0.434389 -1.951127 -0.919622 6.462253 2.999911 0.949178 0.705203 0.386362 -1.646825 3.604269 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.986734 0.592363 2.228873 -0.340593 -0.781478 -2.338202 -1.068792 -4.887637 1.765541 0.280358 1.754316 -0.515884 0.724147 -0.184782 0.240902 2.466829 0.645716 -1.190681 1.064941 -0.829749 -0.299066 3.454411 -0.121987 1.396510 0.089478 -3.441021 -0.547483 0.392640 2.681320 0.517784 0.496910 -0.967035 -0.130979 0.555237 -0.099617 1.124771 1.043476 0.087281 -2.798184 1.005805 -1.674134 -0.158170 1.066429 -0.920950 2.025091 -0.666212 2.029283 0.971842 -0.015838 -0.208989 -1.817615 4.005158 -0.791865 0.420048 0.500316 -1.158654 -1.069357 -0.641717 -1.312923 1.516604 -1.776779 -0.290885 -0.910539 0.638382 -1.127334 1.098929 -1.259496 -0.192889 0.198599 1.275982 1.813293 1.236344 0.919244 1.318334 -3.449135 0.796409 -0.064674 1.358224 0.412508 -0.895436 1.362889 0.653506 -0.801778 -1.380138 1.998896 2.742649 0.241778 -1.142744 -1.344964 0.574593 -1.393102 -0.841265 0.516459 0.592428 -2.100909 0.320034 -1.480868 -0.413121 -1.645237 -2.957771 -0.230467 -0.995886 0.902083 -1.147484 1.677119 -0.031396 0.105070 0.410401 -0.784301 -1.938924 0.309636 0.619241 -0.189827 3.442603 -1.031508 0.426988 -0.699777 0.036093 -2.121233 0.809818 1.005645 1.306733 1.350967 2.208964 0.813825 -0.807539 -1.535900 0.868723 1.693261 1.166587 1.333214 -1.663627 -1.162678 0.223435 0.144838 -2.797284 -0.982705 1.515396 1.402085 -0.380395 0.718706 -1.295444 -0.197227 2.530945 0.928699 -0.977933 0.372519 -0.288073 -1.138311 2.174241 3.319808 -0.583435 1.671279 -1.802207 0.830361 0.866522 -1.871099 0.968177 0.532282 0.568752 -0.907097 -1.050335 -0.705015 0.891575 1.071445 0.506029 -0.293673 0.902717 -1.219577 -2.299537 -2.273440 -0.055835 1.273874 -1.721391 1.145462 -0.909269 -2.242823 -0.015724 1.667164 0.368869 -0.928964 1.312140 -2.586496 0.959025 -0.838162 -1.924533 3.210743 3.886253 1.179689 0.059613 1.759812 2.634294 -4.318926 -1.426489 -0.287672 1.225714 -0.170746 -5.153056 -2.097756 0.234132 -1.676669 -0.927580 -0.597398 0.993049 0.229337 2.877211 1.966418 0.726785 -1.742362 -0.202964 2.133284 -0.794676 -0.828578 0.351637 0.295944 -0.011993 1.424823 -1.810371 0.985486 1.920160 -1.739675 0.871821 1.218404 0.716910 -0.022078 2.298344 2.345920 0.985264 3.888340 -0.070897 -1.272096 0.617598 0.013298 0.619289 -0.407315 -1.117184 -1.455934 0.480572 0.458477 -0.729261 -2.785264 -1.333672 0.029860 -0.399392 1.292659 2.363126 -3.060164 -1.404778 -0.654698 1.418040 1.222868 0.657025 2.133231 -1.343683 0.925389 -3.817645 0.442925 0.104035 0.316361 1.543171 0.296382 -0.551406 -0.800471 -0.321111 -1.428561 -3.310676 -0.896742 -2.773381 -0.891927 -2.750955 2.946702 -1.314957 -0.554673 0.963155 0.804037 2.230083 -0.272666 -0.547699 -1.964843 1.117842 2.338987 -0.312186 -1.332393 1.117702 -0.119894 5.409665 -0.675412 0.287260 -0.685843 -0.402718 0.314420 -1.243985 0.270880 2.159370 1.786098 0.011593 -1.112935 -1.065283 -0.320006 0.433406 -PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = -8.605814 -0.103217 35.984715 17.592008 -9.892159 -35.750179 -15.869460 -36.935329 19.180224 -4.576061 32.505094 -1.172128 7.852403 -8.640778 7.957554 2.299805 6.324988 -18.478819 1.450818 -11.990051 -3.105020 30.799705 18.826748 -15.431917 1.878862 -42.541645 7.819403 17.007618 16.184950 24.986571 1.536259 -9.250834 -0.444001 15.844672 -7.422060 8.581146 8.678191 -3.918839 -15.296442 0.553976 4.220567 11.343121 24.751964 -3.093936 23.554048 1.943396 25.439162 6.087376 -16.538760 -7.645817 -28.744068 45.059808 -26.102931 3.679829 3.180129 9.192588 8.817589 -24.701826 -15.253513 -24.147328 -10.835995 6.228344 -16.553409 0.759430 -17.014116 12.426140 -11.015197 -3.532595 14.178208 2.661289 24.937686 13.675235 7.186398 8.048460 -18.440914 11.582367 -3.847483 20.634135 12.415001 -15.749681 -0.008511 9.175448 -5.549583 -10.516210 17.512545 -3.829589 9.369302 -3.780707 -1.785270 2.602166 -10.178172 -5.140789 -3.668939 4.344666 -15.325391 6.094917 0.647955 -7.868926 -17.826856 -11.017025 -2.234097 -16.409258 4.702122 18.908999 0.573572 -3.651753 -21.534912 0.414817 -22.907400 -29.097479 5.195880 -0.743881 -6.164508 26.329405 -30.818836 4.999828 -0.629369 3.805578 -6.228543 25.575392 3.484970 18.444398 10.269913 33.057778 1.056789 -16.017943 -6.550572 -1.872262 33.234511 20.059732 20.374975 -16.732389 -18.408016 -3.848239 -0.683752 -41.760579 1.857679 18.111413 24.262440 28.583041 -33.725488 7.282993 -9.058096 34.917317 16.102657 8.233738 5.876444 -3.794390 -25.776556 32.456441 41.148879 -15.751194 31.893166 -13.586303 -8.910612 25.223525 -29.535201 10.054006 8.909049 -0.360971 9.096059 -14.773787 -12.798396 20.276437 21.372060 14.800920 10.614176 8.774690 5.906017 -44.347294 -33.567877 2.794575 19.804075 -11.974487 27.559546 -19.057036 -19.371835 -5.726662 29.400738 -15.262118 -16.193958 -0.078835 -19.192655 13.070680 -40.515609 -32.692632 51.765966 44.843221 5.601645 13.265587 22.505485 35.550342 -21.754616 1.890161 -9.315450 16.255594 5.344551 -27.062248 -4.637104 -5.798537 -19.380988 -18.172648 0.326945 10.689999 -2.159285 -5.922488 -5.137870 9.252629 -28.288828 -5.813792 11.390604 -30.872647 -13.257938 4.794579 -5.511754 5.914771 11.043883 -9.638842 3.360467 17.918843 -26.130869 -3.290616 9.937028 28.294262 19.737096 32.489717 29.168242 7.120584 37.638345 12.952512 -16.550827 33.579914 -11.269914 5.541793 0.507602 14.467183 4.041977 11.668022 7.695084 -10.794048 -20.135805 -26.011290 13.120055 3.381002 21.671285 -5.738841 -29.812431 -29.277577 -13.749424 27.374432 18.291848 -7.539951 44.067266 -7.433763 -2.708169 -49.308729 -4.842919 19.615516 4.128969 16.233276 12.357521 -11.698485 -37.376804 -11.477922 -12.526522 2.470729 -10.471948 -24.436860 -11.434470 -28.090705 37.798689 -23.821475 9.647276 15.338765 6.488624 17.535002 11.998070 -6.411358 -14.446139 -2.096352 10.319874 11.612501 -20.698342 35.749814 -4.293236 55.836857 -12.669908 13.441024 -23.996924 8.696212 0.091343 -3.838143 -0.413339 33.541587 30.800991 -2.648928 -0.740953 -0.497105 -10.893430 16.956470 -PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.120944 0.280730 0.808663 -0.243909 -0.429925 -0.992088 -0.311563 -1.624222 0.439285 0.300857 0.792193 -0.143506 0.530828 -0.047247 0.055819 0.454953 0.394365 -0.324053 0.315798 -0.438942 -0.334510 0.727853 -0.220085 0.553542 0.168769 -0.890526 0.400335 0.174394 0.462440 0.478121 0.329171 -0.144145 -0.407016 0.230733 0.138955 0.431946 0.414271 0.252154 -0.537590 0.384433 -0.284347 -0.260411 0.492208 -0.004636 0.708607 0.291508 0.131024 0.398353 -0.139652 -0.346576 -0.164197 0.473899 -0.369925 0.180639 -0.055303 -0.403305 -0.135137 -0.105641 -0.105278 0.226289 -0.257111 -0.471646 -0.359498 0.266383 -0.465062 0.226539 -0.535017 -0.335119 -0.143490 -0.121679 0.426937 0.120051 0.005621 0.519584 -1.071843 -0.003264 0.165202 0.206622 0.377424 -0.262137 0.081585 -0.062653 -0.573577 -0.619613 0.611565 0.871205 0.252860 -0.027373 -0.666442 0.089821 -0.218463 -0.100002 0.507945 0.380771 -0.440997 -0.108365 -0.361086 -0.261558 -0.549541 -1.234357 0.281816 -0.228782 0.393174 -0.278362 0.054292 -0.212633 -0.217931 0.158026 -0.326572 -0.507995 0.208522 -0.293635 0.218366 1.020991 -0.251388 -0.158575 -0.609579 -0.324210 -0.021285 0.344105 0.401718 0.059900 0.536602 0.601704 0.338629 -0.516089 -0.677914 0.299286 0.350344 0.279356 0.282984 -0.593960 -0.364095 0.262298 -0.580404 -0.950555 -0.406749 0.080787 0.482628 -0.415507 0.169746 0.010796 -0.441101 0.314777 0.527770 0.081750 0.126401 0.005234 -0.510216 0.407047 0.743341 -0.182645 0.521207 -0.378999 0.047415 0.216927 -0.262740 0.161231 0.261604 -0.127828 -0.477294 -0.125837 -0.057601 0.403247 0.265485 0.366068 -0.129535 0.395229 -0.581426 -0.494974 -0.832743 0.023994 0.969880 -0.090264 0.393151 -0.629176 -0.311281 0.065850 0.802562 0.211615 -0.454898 0.381702 -0.479654 0.362039 -0.483451 -0.588612 0.902726 1.034619 0.623823 -0.139095 0.195757 0.544808 -1.142467 -0.406843 -0.244549 0.337157 -0.279759 -1.452861 -0.584970 0.133999 -0.631918 -0.168635 -0.183678 0.443123 0.267264 0.495178 0.670897 0.027580 -0.163548 -0.366020 0.547493 -0.082001 -0.237378 0.094056 0.014133 0.055155 0.256106 -0.413601 0.226681 0.462757 -0.474336 0.317563 0.463950 0.181837 -0.037143 1.086039 0.507640 -0.138776 0.444918 -0.242912 -0.320389 0.357121 -0.058704 0.402591 0.028779 0.100988 -0.099572 0.121544 0.536129 -0.313767 -0.729122 -0.551901 -0.422382 0.179128 0.460249 0.590311 -0.814185 -0.952056 0.094334 0.022411 0.921523 0.079968 0.820342 -0.147894 0.462866 -0.725086 0.166914 0.045841 -0.168247 0.370961 0.074136 -0.303312 -0.067939 -0.129046 -0.851493 -1.070633 -0.093573 -0.309485 -0.352247 -0.424815 0.456364 -0.196291 -0.273907 0.109776 0.085902 0.527486 -0.034453 -0.049265 -0.546962 0.303124 0.876445 -0.227008 -0.491543 0.423880 0.248644 1.524036 0.076080 0.259673 0.042657 0.040080 0.023475 -0.519781 -0.204343 0.738070 0.627400 0.204699 -0.236921 -0.138300 0.217108 0.251038 -PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = -0.171495 1.184785 4.133892 2.480676 -2.416281 -3.105407 -1.604965 -4.258446 1.746839 -0.241972 2.422273 -0.059964 0.424184 -0.426258 0.098384 -0.559958 0.521651 -0.495673 -0.106483 -1.227267 -1.281759 2.274663 0.975397 -2.748873 0.531272 -3.845514 2.228115 1.923029 1.533246 1.691241 0.117561 -0.511363 -1.146624 2.101332 -1.122935 -0.421585 0.783184 0.367142 -1.711853 0.140287 1.142929 1.696470 2.248133 -0.267147 2.018779 1.182679 1.439731 0.996972 -1.982274 -0.221316 -1.229050 3.161133 -1.578573 1.504189 0.613938 1.028901 0.365084 -2.688333 -0.672179 -1.638924 -0.197181 0.306144 -1.255220 0.044436 -2.131986 0.408675 -0.120550 -1.520750 1.714575 0.104225 2.119428 0.306879 0.016413 -0.599872 -1.867244 0.728802 0.237432 1.994034 1.566122 -0.759437 0.391415 0.607405 -1.281795 -1.553288 0.606896 0.547816 0.896642 -0.386856 0.261802 -0.982193 0.394211 -0.920546 0.014508 1.569067 -1.497484 0.701355 -1.801314 -0.634537 -2.117651 -1.715779 0.154902 -1.488443 1.456852 1.183650 -1.378120 0.038589 0.496146 0.500710 -0.595821 -2.276686 0.066259 -0.584015 1.231716 3.253505 -0.943831 -0.826058 -0.074763 -0.919804 -0.897395 2.198885 0.342997 0.659992 2.340313 3.258881 0.565680 -1.793440 -1.269191 0.098370 1.389854 2.375760 2.053257 -2.811798 -1.407089 -0.175370 -0.029745 -4.015817 0.731144 0.135389 2.085421 0.656992 -2.408066 0.582967 -1.502551 2.551083 0.742301 1.309089 0.617124 -0.411268 -1.920712 2.548880 4.153879 -0.836043 1.796884 -1.404862 -1.495401 1.885951 -1.376034 1.376417 0.684810 -0.358255 0.599438 -1.451946 -0.487856 2.301558 0.758513 0.774865 1.720729 0.560991 -0.890525 -3.912526 -3.082187 0.691256 2.028061 -0.497081 3.787604 -2.323614 -1.756826 -0.867580 3.420156 -0.926779 -0.756591 0.478402 -1.515971 1.544551 -2.223088 -3.114794 3.658275 4.001275 0.077317 -0.060692 2.608269 1.447623 -1.832289 -1.445773 -1.432352 0.911309 0.823533 -1.102341 -0.390765 -0.016173 -2.099103 -0.767519 0.706828 1.087279 1.580787 -0.897555 -1.036574 0.589785 -2.788816 -2.256622 1.312460 -2.160035 -0.222529 0.892305 -0.135109 -0.017530 1.364958 -0.981921 -1.198433 0.696848 -1.395963 0.479390 1.013252 2.142434 0.441760 3.057128 1.822034 0.396018 3.177606 1.614256 -1.358351 5.094482 -1.070319 0.834236 0.791033 1.528265 -0.437457 1.214595 1.089733 -1.267251 -1.190606 -2.865943 0.769994 -0.332340 1.558187 -2.607483 -1.926491 -3.046897 -1.456290 1.490705 1.410634 -0.337055 4.418184 -0.230938 0.119059 -4.761636 -0.446752 1.982883 -0.169968 1.901476 1.240331 -1.858015 -4.063570 -0.759977 -1.545403 -0.293668 -1.041640 -1.841606 -1.698104 -1.142638 2.075048 -0.701218 0.988649 3.114168 -0.174658 0.769437 -1.046619 -0.139151 -0.543498 -1.438097 1.386219 0.312108 -2.556388 2.957379 -0.219356 5.981974 -0.557829 1.825634 -1.792631 0.004667 0.270860 -1.155715 -0.651066 3.216145 1.625806 0.915748 -0.132907 0.326706 -1.493495 1.912847 -PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = -2.117180 2.369831 12.797320 8.275606 -7.947931 -9.896123 -5.069236 -12.160167 4.922874 -1.026808 8.034652 0.883279 0.497520 -1.022306 1.782891 -1.416873 0.999485 -2.120066 -0.418648 -3.648090 -2.559639 6.148032 5.376334 -10.213290 1.529934 -10.828609 6.153721 6.566141 3.960139 5.438291 -0.049453 -2.119017 -3.709984 6.883048 -3.416262 -0.957272 2.275879 0.786184 -4.730399 0.721308 3.689354 5.858270 6.474599 -1.363662 7.691521 3.208878 6.166360 3.016805 -7.326411 -0.651056 -4.636800 11.421560 -6.291580 4.971209 2.022681 4.448008 0.082756 -8.955167 -3.360973 -8.375766 -0.333086 1.534652 -4.450955 -0.204291 -6.264109 1.617347 0.200397 -4.182885 5.777532 1.521942 7.400427 0.737354 -0.030350 -1.378756 -4.856195 1.794712 -0.224586 7.126390 4.599603 -3.736351 0.211103 2.086731 -2.555866 -4.132016 0.731037 -0.064099 2.310710 -2.120039 1.626325 -1.364045 0.798043 -2.899051 -1.543695 4.745290 -5.415995 2.801608 -3.817874 -1.562555 -6.355857 -3.033588 0.434729 -5.014687 4.462775 4.492074 -3.229730 -0.396255 -0.353853 2.019713 -3.511259 -7.684802 0.172847 -0.669642 2.865233 8.346774 -3.879828 -0.810821 1.459960 -2.034117 -2.311736 7.240368 1.224698 3.007693 6.549653 11.424754 1.114797 -5.355205 -3.754266 -0.449807 5.903539 8.596370 6.391871 -8.197249 -4.543112 -0.808348 0.172914 -11.740538 3.223918 2.054621 6.782368 4.086193 -8.661998 0.514895 -4.544761 9.589995 2.510172 5.233526 1.449834 -1.248145 -6.582401 8.641070 14.006244 -2.874386 6.305993 -2.692363 -3.515092 6.485638 -5.865708 4.634566 3.351183 -0.613610 2.688200 -4.857567 -3.907038 6.976808 4.775217 3.347747 5.631991 1.898042 -1.946261 -13.008086 -9.206747 1.172734 6.350051 -1.827663 11.498830 -6.844408 -6.270468 -3.257217 10.168107 -3.188810 -3.126501 0.527650 -4.322042 4.865769 -7.800486 -9.076395 11.843220 13.345511 0.554435 0.598633 9.305958 5.820942 -5.595509 -3.777912 -3.834051 3.139932 1.796190 -1.578334 -0.422079 -0.349307 -6.998890 -3.201573 2.124161 3.289548 3.430550 -2.408878 -4.665932 4.963494 -9.155481 -5.289301 2.303659 -7.506466 -1.800802 2.528554 -0.494814 0.976393 2.972929 -3.564686 -3.143541 2.874149 -5.618770 1.302228 3.544154 7.230795 3.135425 9.285045 5.507707 2.248809 10.827997 5.516029 -4.703964 15.826600 -2.588296 2.752888 2.762585 4.312052 -1.023889 3.100756 2.680121 -3.853401 -3.478575 -8.778782 3.348339 -0.730746 6.764060 -8.495324 -6.849882 -8.566314 -4.382946 6.895765 3.465270 -2.250861 13.783164 -0.252113 0.777526 -16.062591 -1.627207 6.371974 -0.386353 5.084686 3.957217 -5.380104 -14.807971 -2.395113 -3.535855 0.498907 -3.281131 -5.146842 -4.984457 -3.948906 6.760098 -2.741619 3.073512 9.362523 -1.018639 3.077746 -2.328372 -0.878439 -0.619165 -4.794082 3.705001 2.161423 -9.017682 10.167464 -0.865066 20.116456 -2.566514 5.644235 -5.928543 0.130775 0.539991 -1.453041 -1.087678 10.176522 6.113128 3.072349 -0.354104 1.377094 -5.501690 5.268602 -PE-benchmarks/find-k-closest-elements-given-value.cpp__main = -0.015065 0.371338 1.393551 0.078935 -0.969490 -1.961066 -0.743597 -2.710090 0.806444 0.523361 1.504316 -0.197386 0.895797 -0.055182 0.065645 0.581482 0.626102 -0.736856 0.501388 -0.847979 -1.137707 1.727003 0.075921 0.513188 0.279345 -1.722716 1.310250 0.390019 0.598013 1.196841 0.482158 -0.077747 -0.485969 0.653018 0.081654 0.801815 0.232391 0.613834 -0.493181 0.749013 0.170442 -0.447864 1.166697 0.158487 1.210214 0.936617 0.449391 0.616672 -0.527415 -0.701980 -0.472033 0.556915 -1.019464 0.333416 -0.538468 -0.381016 0.225305 -0.504993 -0.314265 0.013026 -0.467156 -0.828133 -1.014171 0.468503 -1.107356 0.488287 -1.020368 -0.704196 -0.187067 -0.066588 0.951722 0.323902 -0.259355 0.547467 -1.815225 0.038413 0.275926 0.361302 0.752404 -0.559396 -0.331769 0.046881 -1.341521 -1.231026 1.159641 1.105015 0.546895 -0.050292 -0.759605 -0.110113 -0.422071 -0.016590 0.812682 0.950545 -0.549781 -0.066163 -0.294517 -0.509739 -1.184237 -1.932642 0.510332 -0.583360 0.774415 0.007733 -0.271168 -0.478787 -0.348715 0.127078 -0.716468 -1.246951 0.113799 -0.799226 0.513069 1.672105 -0.388086 -0.289473 -0.995560 -0.653832 0.227147 0.906673 0.809908 0.039932 1.509810 1.234956 0.368265 -0.971790 -1.129557 0.299447 0.666396 0.483374 0.649565 -1.165061 -0.895225 0.348322 -0.839654 -1.727860 -0.657597 0.300030 0.840763 -0.804335 -0.114347 0.732839 -0.778392 0.562977 1.218503 0.308606 0.279407 -0.072656 -1.045234 1.003872 1.810844 -0.321784 0.903707 -0.991565 -0.524734 1.389769 -0.672930 0.279358 0.641758 -0.272010 -1.041811 -0.351652 0.199399 0.869629 0.239050 0.615951 0.363740 0.658590 -0.624949 -0.921738 -1.596953 0.229222 1.894410 0.279149 1.452349 -1.402832 -0.143745 0.184125 1.283991 0.538630 -0.775222 0.483056 -0.649023 0.635101 -1.741680 -1.345313 1.856490 1.511699 1.082962 -0.000189 0.486281 1.074701 -1.306188 -0.715393 -0.731767 0.920064 -0.167630 -1.771061 -0.654488 0.222316 -1.247232 -0.423582 -0.392138 0.836694 0.731555 0.017719 0.511477 -0.523000 -0.641144 -0.896903 0.840352 -0.550517 -0.490913 0.205857 -0.152889 -0.118845 0.338276 -0.227783 0.442606 0.271117 -0.716779 0.492365 0.874910 0.440610 0.000000 1.920992 1.420675 -0.657107 0.440943 -0.245104 -0.276129 1.148068 -0.246786 0.650949 0.194656 0.727856 0.106235 0.226340 1.185118 -0.484838 -1.076250 -1.074960 -0.078450 0.591625 0.696889 0.134868 -1.013573 -2.190627 -0.047159 0.172125 2.120722 0.085165 1.787632 -0.188804 0.735543 -1.577367 0.290128 0.196223 -0.156420 0.742233 0.233078 -0.645749 -0.122011 -0.410276 -1.403636 -1.216864 -0.274010 -0.518925 -0.909609 -0.422345 0.293096 -0.535347 -0.268009 0.588090 -0.103196 0.642039 -0.059267 -0.121047 -1.003430 0.242117 1.501059 -0.259020 -0.830446 1.030954 0.240976 2.655588 0.070683 0.793846 -0.060078 0.390294 -0.080905 -1.028152 -0.352546 1.435310 0.965681 0.095798 0.049395 -0.074337 0.606824 0.617266 -PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = -2.386614 0.055020 9.260040 6.270159 -3.871199 -6.299783 -3.643884 -7.565376 5.540854 0.068807 5.228203 1.505521 1.376216 -2.428275 0.254588 -1.615471 0.300618 -2.999299 -0.022575 -2.161504 0.116974 8.405519 5.278470 -8.317176 0.290543 -11.204042 5.490537 3.641448 4.185188 7.092807 -0.783613 -0.967992 -0.798354 5.222229 -3.078596 -0.201957 1.034749 0.785080 -2.779014 -0.179735 3.422052 5.461925 5.006699 -0.620561 6.200737 2.002515 3.824804 1.057848 -3.839417 -1.229387 -3.567252 6.478776 -5.194049 3.482583 -0.322374 3.735951 0.594770 -6.150685 -2.745187 -8.250716 0.021708 2.656895 -3.212690 -0.094589 -5.229145 1.704412 0.060427 -2.389157 2.802684 -0.107691 5.479658 2.572430 1.539128 -2.844009 -5.216182 2.448331 -0.699003 4.434001 3.489459 -2.136136 -2.501578 1.253664 -1.865684 -3.386359 1.067904 0.965713 0.449304 -0.116250 2.602425 -2.050124 -0.820879 -1.373708 -1.670345 3.910398 -3.133458 2.169082 -1.073999 -0.315392 -1.958766 -0.515546 -0.217679 -4.273541 2.127241 4.473807 -1.100933 0.084799 0.580451 1.225560 -2.844519 -4.996086 1.435111 -0.676771 0.892783 6.116247 -2.630227 -0.155426 0.431368 -0.386646 -1.095709 6.696828 -0.932692 2.870176 4.861387 7.616206 0.745559 -4.320417 -1.152494 1.877853 5.242623 4.847085 4.309174 -6.067756 -3.309586 -1.173784 1.469149 -8.340803 1.400407 2.379998 4.601200 1.700743 -7.170222 2.859790 -2.591201 7.948721 3.719652 1.787252 1.591270 -0.450790 -5.719182 7.071717 12.722194 -1.669751 3.789443 -4.253053 -4.237794 7.920819 -5.403767 4.419259 0.445638 0.178100 1.895973 -4.227596 0.036068 5.473809 1.976536 3.286177 3.851353 1.187674 1.089027 -9.837627 -7.413305 -0.869028 4.336111 0.143353 11.137169 -4.711597 -3.241887 -2.920562 6.074607 -0.825681 -1.094385 0.248480 -3.611607 3.336064 -10.636381 -8.035745 10.882963 10.560456 1.552719 1.918517 6.725915 5.077346 -0.178990 -2.003634 -1.850130 2.597191 2.371501 -0.454087 0.552767 -0.289325 -5.172112 -4.738089 1.487966 1.500101 2.808586 -3.058535 -4.243707 1.569287 -6.923959 -4.806992 1.993686 -6.972497 -2.243864 1.426646 0.255251 -0.294749 2.343760 -1.555665 -0.694710 2.624978 -2.688696 0.530307 2.432392 4.662138 2.131786 3.492521 6.515941 0.560411 6.291056 4.298638 -2.256110 13.158876 -2.746170 0.740881 2.282566 2.939938 1.095043 2.623885 0.712946 -2.761045 0.169939 -6.596079 5.098234 0.513176 4.058601 -8.415615 -5.720718 -5.522666 -3.096194 4.560631 3.146961 -0.769782 11.627133 -1.323856 0.002601 -13.321432 -0.970796 5.710508 1.311456 4.252701 3.719141 -3.736642 -11.142853 -2.227013 -1.801596 2.476431 -3.915041 -5.890454 -3.379035 -2.734413 5.232534 -3.847799 3.437816 8.186611 -0.622469 3.177237 -2.475372 -0.326159 -3.118780 -3.169153 -0.321347 2.371396 -4.964329 6.368543 -2.103405 11.717251 -3.929563 4.763503 -4.846338 3.949714 -1.584895 -2.798157 -0.526979 7.997052 3.231841 0.717464 1.254698 -0.377878 -3.224791 4.423463 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.999111 0.719244 2.455985 -0.261433 -1.150929 -2.902610 -1.251301 -5.580999 1.876406 0.435878 2.144636 -0.583510 0.935087 -0.178589 0.227943 2.600188 0.738233 -1.349344 1.183604 -1.051825 -0.951301 3.816637 -0.152522 1.610159 0.144573 -3.652760 0.050191 0.535924 2.707381 0.762566 0.641409 -0.950572 -0.225377 0.773850 -0.020274 1.371353 0.885387 0.385312 -2.673636 1.229077 -1.442073 -0.540166 1.431907 -0.814636 2.246886 -0.311339 2.208978 1.104846 -0.224806 -0.376044 -1.956631 3.934057 -1.175906 0.448445 0.192592 -1.318464 -0.845712 -0.735634 -1.322279 1.617030 -1.915697 -0.704278 -1.313788 0.762206 -1.456118 1.181243 -1.585746 -0.477658 0.109844 1.338598 2.028275 1.301947 0.674187 1.474205 -3.868443 0.736206 0.109530 1.340155 0.659157 -1.038331 1.249550 0.646464 -1.296565 -1.737973 2.401507 2.880071 0.495650 -1.159625 -1.533360 0.541967 -1.462270 -0.729010 0.823183 0.932835 -2.113696 0.292564 -1.529328 -0.577716 -2.122250 -3.552406 -0.023368 -1.164102 1.177288 -1.099760 1.378654 -0.221979 -0.021944 0.328666 -0.990708 -2.370873 0.118016 0.167241 0.137805 3.741122 -1.054323 0.298224 -0.951666 -0.225560 -1.889389 0.942615 1.374518 1.165707 1.961617 2.468898 0.887332 -1.105584 -1.906209 0.812978 1.731525 1.293972 1.421627 -1.925640 -1.415979 0.305015 -0.096936 -3.246560 -1.105926 1.555299 1.491008 -0.705712 0.737209 -0.914403 -0.403294 2.471217 1.327007 -0.781514 0.441019 -0.258236 -1.341218 2.373215 3.670477 -0.613929 1.844282 -2.058276 0.573608 1.405723 -2.014462 0.935187 0.823444 0.427144 -1.310534 -1.117795 -0.610070 1.121246 0.989952 0.602417 -0.029945 1.069103 -1.375703 -2.396771 -2.604145 0.173219 1.948992 -1.453409 1.560217 -1.405118 -2.069949 0.245511 1.901397 0.584857 -1.131960 1.398685 -2.611851 1.160289 -1.340844 -2.291651 3.530889 3.889923 1.423468 0.068849 1.772838 2.834820 -4.540178 -1.618026 -0.613885 1.515473 -0.163484 -5.459910 -2.199612 0.309438 -2.012126 -0.905075 -0.724445 1.227088 0.482763 2.627190 2.005221 0.340266 -1.822998 -0.491917 2.316641 -0.914975 -0.925151 0.365315 0.197545 -0.074397 1.455833 -1.681583 1.108070 1.689145 -1.859971 1.025647 1.449999 0.772360 -0.067772 2.960572 2.762824 0.562731 3.743975 -0.166200 -1.149476 0.815559 -0.040868 0.807992 -0.249626 -0.690480 -1.360627 0.550990 0.997282 -0.861499 -3.032592 -1.603328 -0.021156 -0.124460 1.387679 2.341813 -2.983079 -2.187335 -0.692092 1.424654 1.924166 0.637513 2.532210 -1.269286 1.143766 -4.019030 0.502977 0.038484 0.219056 1.792136 0.318696 -0.743461 -0.493218 -0.521384 -1.750089 -3.566742 -0.887596 -2.634396 -1.196148 -2.665724 2.638308 -1.427547 -0.647974 0.978567 0.675321 2.182593 -0.330946 -0.512662 -2.128440 1.173791 2.901141 -0.411428 -1.519181 1.440322 -0.037862 6.050970 -0.548241 0.540479 -0.652658 -0.293884 0.334553 -1.475758 0.146528 2.499439 1.951072 0.016987 -1.039239 -0.938010 -0.019122 0.655744 -PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = -5.095014 4.275603 29.525250 19.416493 -17.130023 -22.757016 -10.618258 -27.769395 12.614694 -0.525141 18.701991 2.994750 3.201335 -2.806809 3.951787 -2.629422 1.913927 -5.755781 0.369997 -8.183794 -4.717170 18.426825 14.696351 -22.330565 2.319932 -26.254947 16.713578 13.891208 11.750136 15.346267 -0.298059 -4.739477 -6.713599 15.638395 -7.894188 -1.115248 1.041503 3.440521 -9.769348 2.258312 8.743778 11.861302 14.025077 -2.639523 17.868603 7.250720 16.887572 5.617585 -14.746496 -2.955971 -12.051439 24.170793 -16.850026 10.735208 1.235310 9.076901 -0.391415 -18.047142 -7.824479 -20.497891 0.043067 3.714167 -12.444765 0.610851 -17.115635 4.647722 -3.292671 -9.486882 10.463850 3.809200 17.416437 3.997326 0.540854 -5.343139 -14.925047 4.324521 -1.966018 14.761735 10.843696 -8.523844 -3.033250 4.647297 -6.773390 -10.535207 3.285558 0.891064 3.788517 -5.288632 4.421192 -3.375583 -0.469766 -4.569152 -4.379198 11.897955 -13.270217 8.543926 -8.255487 -2.212384 -12.564340 -7.061014 0.712500 -13.359345 9.937608 10.534265 -5.849702 -1.513085 -1.349848 3.489530 -8.124312 -19.565396 -1.041775 -1.529815 6.499176 19.266886 -9.371828 -0.549621 2.357704 -2.884728 -3.629272 17.202331 3.629071 7.550218 17.553074 25.012096 2.573849 -13.139257 -7.177880 1.495972 13.576073 19.125901 14.087018 -17.975068 -11.525513 -2.530788 2.117371 -27.244992 7.460580 8.015829 14.262329 7.121048 -19.736542 3.088585 -9.679852 21.777572 9.990661 11.152315 4.615760 -1.953799 -14.529382 19.703453 35.553554 -6.336983 13.215776 -8.235537 -9.987321 21.214912 -15.283792 11.148948 7.006505 0.899321 4.525020 -12.515486 -7.449638 16.873320 9.647988 9.129661 15.180705 4.324643 -1.142806 -30.163451 -20.482984 1.051282 15.349244 -1.713806 27.933682 -15.817286 -10.240927 -5.501551 19.648601 -3.467453 -7.119699 0.502273 -9.748849 10.660973 -24.628517 -22.325325 27.247979 29.300351 2.059949 2.153152 19.980448 15.805293 -10.193522 -8.523236 -9.574887 9.354271 2.405340 -3.031186 -0.204408 -0.209026 -18.262106 -8.116932 4.390952 7.211670 9.345077 -7.460325 -12.298874 8.634061 -21.867023 -13.654706 6.211078 -18.025017 -5.633182 3.722355 -0.920831 1.936581 5.467446 -7.014089 -4.068050 6.881486 -11.998859 2.352818 8.733359 15.245685 6.572811 20.858964 14.447709 3.390206 20.081295 11.893802 -9.468522 37.964239 -5.228737 4.860004 6.080404 11.135143 -1.461402 7.773189 5.802552 -8.922659 -8.232895 -20.194379 9.319906 0.344325 14.644763 -19.319136 -14.638993 -19.733390 -9.474904 15.656173 11.486298 -3.801218 33.217798 -1.981287 3.014556 -37.023834 -2.991129 13.575221 -0.270474 14.076941 9.895526 -12.029800 -28.222652 -6.935458 -6.146863 3.825625 -8.084309 -12.830527 -11.944977 -7.338481 12.381189 -8.194648 6.676999 19.625339 -3.011691 8.576073 -4.623334 -1.599670 -3.363866 -8.799352 8.353319 6.968247 -20.295720 23.079845 -3.582829 44.254720 -7.421280 13.814752 -13.837168 2.623607 -0.794501 -4.739330 -2.686937 24.556178 13.717409 5.938244 0.532964 1.695143 -9.973309 11.476959 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 1.335475 0.912697 1.946539 0.126099 -0.993329 -2.338642 -0.436005 -3.690279 1.600631 0.287960 0.819689 0.103886 0.872878 -0.344191 -0.293269 1.547278 0.871794 0.075896 0.201892 -1.007309 -0.419247 2.391258 -0.679339 0.386564 0.410666 -2.485012 0.304023 0.852434 2.307982 0.769318 0.665984 -0.430734 -0.536310 0.638692 -0.387508 0.149012 0.316259 0.106430 -2.680967 0.605383 -0.893935 0.116970 1.428744 -0.021569 1.291121 -0.150400 1.079054 0.926614 0.250100 -0.152766 -1.046811 2.303267 0.076909 0.870781 -0.211068 -0.580772 -0.631023 -0.301138 -0.059955 1.505598 -0.743398 0.059114 -0.795659 0.220356 -1.296130 0.094611 -0.959280 -1.019500 -0.267380 -0.122807 0.933326 0.276444 -0.049403 -0.392878 -3.375210 0.043826 0.149913 0.985071 0.908462 0.242274 0.696398 -0.218840 -1.155454 -1.119543 1.207050 2.262875 0.095433 0.191019 -1.449730 -1.012315 -0.702357 -0.386955 1.023500 0.518146 -1.673044 0.208943 -1.631255 -0.401251 -1.075702 -2.340101 0.404070 -0.229133 0.805670 -1.800052 1.031858 0.290309 0.851331 0.130713 0.114323 -0.679176 0.237572 -0.019319 0.207509 3.143252 0.044440 -0.779967 -1.027695 -0.372835 -1.578510 0.831781 0.529640 0.059720 1.286892 1.174891 0.980311 -1.012998 -1.008383 0.898454 0.292774 0.968969 0.962994 -0.956571 -0.687579 0.309071 -0.233777 -2.518569 -0.401270 0.485238 1.037270 -0.929932 0.949436 -0.813497 -0.753076 1.156053 0.539065 -0.618077 0.801695 -0.209617 -0.814157 1.011390 2.563213 -0.182701 0.786327 -1.678892 0.084340 0.508870 -0.547360 0.832143 -0.290441 -0.474833 -0.638347 -0.198134 0.339258 0.995082 -0.182653 -0.155899 0.110767 0.594317 -1.459304 -1.406161 -1.969877 -0.101021 1.040490 -0.254696 1.452146 -0.961550 -0.995710 -0.475232 1.093373 0.226910 -0.231499 1.398487 -1.921731 0.874816 -0.943248 -1.374371 2.303552 2.875646 0.950432 -0.571166 1.003771 0.935734 -2.329740 -1.590350 -0.182969 0.252110 0.322297 -3.437950 -1.153048 0.276915 -1.450363 -0.312031 0.077748 0.678402 0.732135 1.491402 1.989678 -0.678429 -1.077436 -1.481638 1.615248 -0.436493 0.133446 0.538576 0.259871 -0.511832 1.162241 -1.030312 -0.009125 1.101217 -0.589775 0.793954 0.369176 0.502042 -0.481923 1.342651 1.470608 0.333912 2.710619 0.015130 -1.134117 1.752712 -0.437942 0.791646 0.050381 -0.235283 -0.865994 0.634110 0.359061 -0.773302 -1.023944 -1.150680 -0.444729 0.062999 0.689778 1.020695 -1.717160 -1.457126 -0.373215 -0.197819 1.169420 0.311610 1.808762 -1.183241 0.890274 -2.577119 0.473274 0.295656 0.141732 1.271313 0.470876 -1.075223 -0.144623 -0.097320 -1.580882 -2.032167 -0.330782 -1.686827 -0.916098 -1.059984 1.365332 -0.927662 -0.170065 1.292535 -0.382828 1.476522 -1.619880 0.118319 -1.080462 0.299174 1.866174 -0.275013 -1.012476 0.282403 -0.030019 3.435379 0.243949 0.882884 -0.236307 -0.114572 0.091835 -1.927049 -0.712996 1.748985 0.830959 0.359121 -0.482775 -0.702881 0.209912 0.623991 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = -0.769839 -0.171084 2.264612 1.776838 -1.802038 -2.856437 -1.091248 -3.547369 1.986153 0.654429 2.208930 0.561558 1.510374 -1.669864 -0.119993 -0.174788 1.029038 -0.759924 -0.132324 -1.257491 -0.778713 2.944036 0.592421 -1.594273 0.258598 -2.655329 2.223813 1.110571 0.847999 2.125653 0.631020 0.166783 -0.923687 1.268652 -0.569603 0.944400 0.197025 0.867273 -0.881154 -0.456117 1.172988 0.138003 2.054610 0.020027 2.431475 0.451501 1.079123 0.539844 -1.387735 -1.137459 -0.626365 0.958498 -1.606125 0.921549 -0.600211 0.146863 0.767031 -1.191763 -0.329475 -1.859513 0.096305 -0.531231 -1.546025 0.129722 -1.576242 0.640226 -0.162048 -1.260895 0.097475 -0.955683 1.438742 0.364987 -0.197290 -0.458416 -2.352671 -0.106463 0.326134 0.543784 1.546248 0.314281 -0.721457 -0.910945 -1.527791 -1.384215 1.525079 0.846231 0.494456 1.004544 -0.707303 -0.529259 -0.073067 -0.232181 1.005920 1.055092 -1.169936 -0.329813 0.329616 -0.540991 -0.902084 -1.269853 0.961076 -0.883304 0.869001 0.910042 -0.869605 -0.006097 -0.085076 0.051804 -1.543090 -1.429832 0.350651 -1.421826 0.850311 2.381212 -0.746173 -0.772345 -1.186631 -0.687422 0.359739 1.743397 0.439281 0.456902 2.241602 2.033284 0.626526 -2.051490 -1.186043 1.043152 1.510833 1.145402 0.705180 -1.822090 -1.128925 0.470440 -1.007527 -2.889389 -0.846173 0.418298 1.708123 -0.257925 -1.547321 1.517649 -0.939864 1.549822 1.590551 0.475540 0.360253 0.320607 -2.086733 1.627268 2.952653 -0.234473 1.189400 -1.078811 -1.294231 2.247234 -1.075235 0.602960 0.596216 -0.872503 -0.758479 -0.614322 0.667570 1.547417 -0.006795 0.956709 0.001628 1.161010 -0.853503 -2.503276 -3.000806 -0.009661 2.646791 1.370565 3.519028 -2.267132 -0.518746 -0.222947 1.966867 -0.003709 -0.957391 0.679298 -1.394800 1.415899 -3.302455 -2.604007 3.728589 2.626861 1.614839 0.393577 1.615200 1.043653 -0.780500 -0.579517 -0.804894 0.831044 1.093386 -1.394068 0.120368 0.265534 -2.172134 -1.677498 0.139457 0.910923 0.627198 -0.913172 0.491567 -0.859307 -0.787704 -1.650869 1.044898 -1.179461 -0.363278 0.071046 0.036255 0.040345 0.730761 -0.352276 0.146488 -0.061486 -0.603096 0.545845 0.712245 1.140461 0.525208 2.144644 2.724204 -1.266061 1.328566 0.086049 -0.666568 3.272346 -0.797413 0.820387 0.653744 1.487751 1.083305 0.363156 1.493390 -1.084440 0.162450 -1.994254 0.027797 1.200383 1.400922 -2.262647 -1.381535 -3.205348 -0.385477 0.097086 2.176932 -0.475636 3.438817 -0.962886 0.423358 -3.633536 0.108023 1.457272 -0.093503 1.129404 0.729399 -1.265298 -2.263705 -0.747021 -1.727666 -0.630243 -0.761116 -0.833854 -1.333083 -0.700908 1.239807 -1.352121 0.283885 2.024572 -0.490183 1.023292 -1.032650 0.365591 -1.054060 -0.333850 0.215033 0.251743 -1.538523 1.958016 0.064777 3.955039 -0.181992 1.551225 -0.765680 2.011447 -1.001967 -2.142853 -0.650790 2.404490 1.586207 0.087990 0.529441 0.199797 -0.013065 1.670143 -PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.735340 -0.297835 1.579153 1.223739 -1.260820 -2.425164 -0.823663 -2.842604 1.650331 0.641370 1.897683 0.513610 1.469555 -1.320953 0.008708 0.168092 0.936177 -0.775462 0.169439 -0.943545 -0.633288 2.925019 0.677200 -0.699729 0.101487 -1.954811 1.672174 0.592965 0.887386 2.012368 0.537907 0.042623 -0.504247 0.826341 -0.240863 1.053738 -0.158814 0.808535 -0.690126 -0.247479 0.682193 -0.609172 1.680435 0.099628 1.923150 0.116321 1.113270 0.291909 -0.950830 -1.081126 -0.936914 0.777660 -1.595148 0.599701 -0.748524 -0.266795 0.697584 -0.383333 -0.385442 -1.532940 -0.177740 -0.757101 -1.386293 0.172032 -1.341139 0.710222 -0.816832 -0.829987 -0.327846 -0.584538 1.246734 0.615856 0.110560 -0.050309 -2.417372 -0.031934 0.099707 0.352683 1.199200 0.359654 -0.778842 -0.716614 -1.302795 -1.251854 1.618902 0.616923 0.294778 0.715386 -0.886686 -0.144295 -0.458448 0.083827 0.806674 0.753962 -0.995941 0.000160 0.506731 -0.350127 -0.479237 -1.441648 0.648837 -0.858530 0.492744 0.660409 -0.224088 -0.255175 -0.605227 -0.024149 -1.468266 -1.508023 0.469397 -1.045657 -0.026118 1.782897 -0.853049 -0.280848 -0.928074 -0.222365 0.441958 1.383765 0.607229 0.626377 1.500233 1.499293 0.556888 -1.559289 -0.793886 0.990484 1.468570 0.663737 0.444704 -1.048225 -1.056198 0.505339 -0.828938 -2.305367 -0.966459 1.135766 1.372097 -0.107966 -1.030772 1.130454 -0.659236 1.209807 1.701656 0.290497 0.393185 0.307573 -1.688958 1.343713 2.454096 -0.320880 1.119025 -0.785541 -0.923933 2.375315 -1.230576 0.459560 0.331787 -0.413766 -0.780944 -0.563946 0.399420 1.245626 0.178825 0.860508 -0.082505 0.952799 -0.577847 -1.998050 -2.429253 -0.151386 2.519047 1.214881 2.512160 -1.716791 -0.199645 0.226432 1.193747 0.273307 -1.021582 0.531381 -1.098159 1.091645 -3.555177 -2.150897 3.287017 1.943856 1.446586 0.485146 0.940390 1.436436 -0.772932 -0.528297 -0.784022 0.945490 0.523064 -1.618408 -0.195893 0.214637 -1.894266 -1.390244 -0.015796 0.676952 0.400830 -0.594563 0.633900 -0.818952 -0.516235 -0.991364 1.000946 -1.059008 -0.689425 -0.104610 -0.052538 0.114600 0.469652 -0.081675 0.644858 0.131826 -0.716504 0.234649 0.528413 0.764790 0.500067 1.955144 2.669062 -1.103761 0.639678 -0.124658 -0.617945 2.386310 -0.728606 0.536084 0.264195 1.174724 0.988356 0.278417 1.352052 -0.800092 -0.352540 -1.553068 0.010531 1.204251 1.208777 -1.371232 -1.401723 -2.608383 -0.036346 0.211481 2.156533 -0.333010 2.763674 -1.053652 0.477242 -2.885887 0.269048 1.049784 0.008638 1.089098 0.507312 -0.802547 -1.101603 -0.775938 -1.329849 -0.330585 -0.622817 -0.833580 -0.907501 -0.750575 0.854132 -1.478676 0.102016 1.078693 -0.449130 1.283412 -0.389678 0.110557 -1.313500 0.297176 0.364859 0.296493 -1.072683 1.709789 0.037337 3.137780 -0.282591 1.030053 -0.577037 1.767304 -1.012148 -1.716988 -0.387732 1.981183 1.575845 -0.115095 0.469280 0.127154 0.330456 1.102457 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.431628 0.182286 1.107462 0.245549 -0.403546 -1.208030 -0.451228 -2.379015 1.130444 0.309570 0.847066 -0.047221 0.630564 -0.481452 -0.165051 0.712285 0.229491 -0.363812 0.368062 -0.376068 -0.311036 1.944692 -0.190060 0.237712 0.059227 -1.786297 0.588642 0.288534 1.267819 0.735534 0.239783 -0.243666 -0.069973 0.415662 -0.176870 0.439764 0.142034 0.309878 -1.015672 0.177367 -0.234655 -0.084134 0.705250 -0.139554 0.989053 -0.142939 0.688667 0.293145 0.115162 -0.200079 -0.704590 1.165379 -0.469542 0.335816 -0.265868 -0.457513 -0.177739 -0.245141 -0.324546 0.391342 -0.436087 -0.141634 -0.645631 0.204427 -0.810476 0.370826 -0.549684 -0.332355 -0.078986 0.123381 0.798124 0.518050 0.217479 -0.009060 -1.937412 0.217363 0.042083 0.347987 0.503370 -0.058713 0.243339 -0.009372 -0.719846 -0.781736 1.132071 1.308363 0.056662 -0.065600 -0.527908 -0.248547 -0.541808 -0.182612 0.510331 0.546553 -0.784583 0.115299 -0.670200 -0.102278 -0.393336 -1.304886 0.172420 -0.562378 0.458014 -0.316647 0.427713 0.100467 0.605773 0.162348 -0.250199 -0.871803 0.122190 -0.154797 0.237352 1.683574 -0.144364 -0.231449 -0.542162 -0.155008 -0.647576 0.567726 0.421210 0.355900 1.031383 0.882243 0.520694 -0.691746 -0.717735 0.838527 0.517571 0.538446 0.345298 -0.957446 -0.462159 0.119666 -0.003111 -1.551537 -0.481210 0.432170 0.607531 -0.645549 0.155354 0.071578 -0.213526 0.832536 0.744290 -0.407952 0.321176 0.121950 -0.655987 0.924294 1.786221 -0.094947 0.436675 -1.087731 -0.165253 0.794920 -0.679515 0.423355 -0.006494 0.105341 -0.372611 -0.506446 0.275753 0.658343 -0.127874 0.305425 0.008630 0.493326 -0.645444 -1.056440 -1.244900 -0.057009 0.996950 -0.096779 1.241256 -0.717724 -0.597360 0.047363 0.813659 0.346067 -0.190903 0.678200 -1.137011 0.615922 -1.107660 -1.186859 1.586394 1.488113 0.735640 -0.061377 0.696162 0.989498 -1.221549 -0.654211 -0.336386 0.500452 0.356632 -1.925188 -0.628636 0.062478 -0.943097 -0.600171 -0.050077 0.344361 0.344522 0.639368 0.744615 -0.369926 -0.648193 -0.682608 1.163326 -0.536940 -0.164247 0.009082 0.130802 -0.275976 0.693932 -0.584208 0.411682 0.602737 -0.353399 0.472409 0.515421 0.142817 -0.208212 0.959960 1.366351 -0.110676 1.204836 0.020320 -0.362176 1.021870 -0.164066 0.224017 0.104225 -0.088982 -0.234490 0.382403 0.374943 -0.486745 -0.726329 -0.899041 0.011473 0.171420 0.503489 0.401313 -0.966005 -1.052375 -0.374879 0.194160 0.948679 0.374294 1.410096 -0.687762 0.463115 -1.734801 0.189820 0.348127 0.085970 0.894568 0.209428 -0.434147 -0.326688 -0.280961 -0.692212 -1.210076 -0.538265 -1.177168 -0.647250 -0.954590 0.879534 -0.690597 -0.004392 0.744283 0.115922 0.790265 -0.844213 0.008169 -0.990312 0.384325 0.676798 -0.090515 -0.698682 0.445432 -0.131106 2.223854 -0.361417 0.493118 -0.404634 0.463412 -0.369568 -1.042025 -0.080065 1.136095 0.616428 0.058278 -0.233947 -0.320546 -0.023999 0.488814 -PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = -0.718051 1.160695 4.805387 3.648539 -3.207096 -4.666333 -2.149491 -4.840458 2.215085 -0.135606 3.155957 -0.022056 1.027004 -1.020024 -0.179034 -1.166548 0.785023 -0.934504 0.062148 -1.826250 -2.814821 3.900521 1.943875 -3.570542 0.735759 -5.074359 4.593252 2.397666 1.627677 3.653843 0.085308 -0.232983 -0.947372 3.045705 -1.244508 -0.199117 -0.199244 0.912503 -1.119556 0.796872 2.497637 1.581398 3.615625 0.253308 2.265934 2.809147 1.615244 1.180873 -2.853111 -0.886448 -1.607065 2.188699 -2.892711 1.709543 -0.630571 1.382869 1.694798 -3.259196 -0.752441 -2.688375 -0.207997 -0.178736 -2.261876 0.359081 -3.674673 0.586182 -1.255928 -2.364778 1.648120 -0.031951 2.639655 1.017797 -0.523207 -1.216473 -2.494924 1.030027 0.649851 2.311925 2.375917 -1.116906 -0.745903 0.828117 -2.608128 -2.412119 1.103040 -0.068024 1.586949 0.046133 0.732858 -2.147869 0.404420 -0.359369 0.429083 2.321677 -0.839125 0.751918 -1.617111 -0.849207 -2.708843 -2.569368 0.352259 -1.945587 1.855813 2.332216 -2.421974 -0.422939 0.189802 0.290164 -1.058917 -3.339728 -0.195955 -1.837393 1.765591 4.046762 -1.004014 -1.201580 -0.886441 -1.255881 0.041660 3.497319 0.609545 0.367095 3.833888 4.070885 0.320452 -2.521626 -1.469557 -0.174476 1.599760 2.470918 2.806802 -3.391340 -2.361270 -0.387097 -0.235278 -5.043201 0.530544 0.175791 2.330902 0.247842 -3.430537 2.725111 -2.223010 2.637022 1.958320 1.665806 1.099684 -0.648916 -2.766222 3.752264 5.724667 -1.063237 2.019461 -2.575787 -3.492419 4.655275 -1.772738 1.357412 0.832257 -0.977136 -0.028181 -1.689694 0.677447 3.132909 0.166383 1.026360 3.228719 0.714829 -0.089857 -4.509949 -3.981326 1.542461 3.432518 0.729276 6.103490 -3.641037 -0.563932 -0.762577 3.748519 -0.206563 -0.856138 0.151049 -1.315685 1.849010 -5.483371 -4.596300 5.228288 4.017283 0.526484 0.486254 2.466015 2.261537 -0.540407 -1.554001 -2.398207 1.703528 1.147579 -0.557805 -0.099973 0.213615 -2.898900 -1.182088 0.791817 1.546729 2.877774 -3.157950 -2.514404 -1.414670 -3.704742 -3.677659 1.531764 -3.372337 -0.317633 1.225392 -0.716988 -0.281147 1.478682 0.088287 -1.009154 -0.332386 -1.277913 0.337277 1.166414 2.977329 0.592513 3.823159 3.429657 -0.816193 2.060093 2.130656 -1.042923 7.279092 -1.608453 1.208743 1.320839 3.326640 0.646255 1.544286 2.212439 -1.496698 -0.866879 -3.842273 1.736810 0.884567 1.464640 -4.793471 -1.501861 -5.361245 -1.750571 1.534699 3.404992 -0.349544 6.124837 -0.156238 -0.064776 -5.555758 -0.474039 2.429090 0.115226 2.876086 1.756598 -2.563604 -3.948704 -1.555465 -2.251080 1.176016 -1.548350 -1.819670 -2.486820 0.011507 1.149665 -1.150906 1.532003 4.149388 -0.771409 0.500684 -0.939607 -0.055426 -1.324070 -2.088313 1.660574 0.566417 -2.709832 4.007281 -0.365133 6.322265 -0.449654 2.723254 -2.237082 0.899213 0.118710 -2.106432 -1.108263 4.234625 1.667437 0.473069 1.107958 0.766566 -0.557051 2.857593 -PE-benchmarks/vertex-cover-problem.cpp__main = 1.233359 0.852623 1.441368 -0.280717 -0.872310 -2.115363 -0.376285 -3.162932 1.014845 0.145550 0.728553 -0.109932 0.623940 0.083368 -0.007069 1.532642 0.878727 0.079578 0.253288 -0.984961 -0.485152 1.518736 -0.792597 0.726750 0.537055 -1.838604 0.075721 0.784294 1.598732 0.424573 0.683132 -0.374885 -0.655518 0.372802 -0.098930 0.201754 0.537879 -0.149158 -2.313178 0.931469 -0.970690 0.103785 1.144872 -0.022978 1.001847 0.181647 0.766148 1.091755 0.231335 -0.121438 -0.768592 1.922066 0.274984 0.660298 -0.116999 -0.556921 -0.612666 -0.335615 -0.100110 1.734241 -0.729208 -0.126066 -0.652289 0.301136 -0.976845 0.103401 -0.915405 -0.766178 -0.135840 0.050262 0.726124 -0.047370 -0.366038 0.006542 -2.608873 -0.165635 0.128232 0.921225 0.626476 -0.237463 0.751373 -0.034512 -1.052808 -0.843910 0.863618 1.949363 0.207435 -0.054302 -1.394960 -0.745808 -0.606185 -0.435286 0.992479 0.282687 -1.301503 -0.010447 -1.412390 -0.478855 -1.230978 -2.125721 0.501046 0.100032 0.759537 -1.798816 0.936889 0.105266 0.636260 0.222791 0.092612 -0.495203 0.175146 0.141257 0.296067 2.686356 0.139477 -0.678079 -1.046752 -0.496090 -1.385944 0.650490 0.617855 -0.079529 0.986027 1.110637 0.646058 -0.624713 -1.134466 0.453004 0.156985 0.795724 0.919755 -0.799983 -0.627704 0.336996 -0.506933 -1.800881 -0.396006 0.153451 0.973118 -0.853065 1.080562 -0.841371 -0.752258 0.806711 0.223626 -0.473234 0.520382 -0.354177 -0.698530 0.859962 1.863713 -0.177548 0.709495 -1.399521 0.428699 -0.070233 -0.162389 0.363351 0.064532 -0.509239 -0.776251 0.158407 0.094398 0.547632 0.138578 -0.192263 0.097483 0.627613 -1.419251 -0.810030 -1.474370 0.072768 0.783619 -0.533425 0.749891 -0.759091 -0.876923 -0.582447 0.994830 0.188861 -0.331171 1.200419 -1.579222 0.576623 -0.136716 -0.729734 1.628291 2.358716 0.899795 -0.615116 0.677021 0.811106 -2.355471 -1.249910 -0.097402 0.260483 0.002235 -3.078433 -1.067847 0.210611 -1.083861 -0.088894 -0.110509 0.805146 0.569916 1.550356 1.780130 -0.418419 -0.920004 -1.111316 1.243238 -0.118562 0.226699 0.648693 0.020285 -0.376617 0.857195 -0.943011 0.062613 1.012898 -0.613938 0.773584 0.451904 0.444240 -0.401446 1.236073 0.800596 0.492364 2.399999 -0.149240 -1.057536 0.960912 -0.070206 0.953438 -0.074087 -0.425480 -0.867580 0.327338 0.323977 -0.508576 -1.164185 -0.803620 -0.563018 -0.021285 0.705454 1.431996 -1.407400 -1.354594 -0.222189 -0.176159 1.160601 0.241484 1.090750 -0.798575 0.846995 -1.711985 0.433861 -0.048714 0.044870 0.710527 0.179625 -0.802392 0.115512 0.195668 -1.603346 -2.165170 -0.149570 -1.163019 -0.851736 -0.816400 1.106515 -0.468201 -0.448699 0.941564 -0.236342 1.095100 -1.116913 -0.056767 -0.704839 0.223078 1.935547 -0.416114 -0.888858 0.085018 0.198749 2.908287 0.525190 0.630974 0.072760 -0.557442 0.329488 -1.416846 -0.600737 1.206066 0.746461 0.285388 -0.448457 -0.592098 0.411409 0.297876 -PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = -2.290227 2.251412 13.652036 7.419368 -7.730092 -10.816465 -5.776257 -17.048182 7.553543 1.191300 10.137461 0.525097 2.842983 -2.784168 1.198302 0.188442 2.330428 -3.889498 0.908378 -4.247049 -2.675023 9.883919 4.381365 -7.191113 0.946065 -12.692222 6.215764 5.713487 5.803517 5.608335 1.567927 -2.124301 -3.575217 7.066464 -2.983325 1.579519 3.166942 2.236992 -5.941303 -0.028198 2.254994 4.452982 7.737171 -1.097861 10.271583 1.667084 6.548165 2.944606 -6.993047 -1.497357 -4.409468 12.396813 -7.217608 4.489029 2.575063 1.972978 0.364459 -8.442033 -3.271369 -6.833825 -1.517107 0.219581 -5.370708 0.812272 -6.451415 2.415678 -1.048694 -3.887913 4.014364 0.970947 8.043904 1.956608 0.904243 0.172439 -8.319023 2.451944 0.565906 5.402249 5.912274 -2.520529 0.428940 1.035269 -3.650746 -6.232135 4.532841 3.529327 2.158852 -0.933571 -0.772065 -0.682054 -0.567211 -3.461952 0.328954 5.735294 -6.578577 2.121142 -2.492715 -2.694634 -6.765355 -5.857195 1.102044 -5.943393 4.935967 3.650046 -2.341673 -0.724717 -1.605365 1.682722 -5.027852 -8.070591 1.270356 -2.362162 3.497448 10.741718 -5.005119 -1.146676 -1.235514 -2.191777 -2.040476 7.320314 2.525942 3.375149 7.948082 11.592482 2.372469 -6.762920 -4.728842 1.710282 6.895653 8.043615 5.584988 -9.314183 -4.979411 0.496452 -0.483962 -13.501870 0.078521 2.864154 6.829010 2.387315 -7.251218 0.491661 -3.895824 10.060961 4.675306 4.004688 1.625142 -0.144217 -7.214547 8.738296 14.245690 -2.673232 6.916269 -3.350550 -3.525654 6.850695 -7.689247 5.341838 3.361453 -0.777058 0.423759 -5.287195 -2.537273 7.564868 4.036000 3.673623 2.586938 3.213381 -2.831350 -13.117354 -12.188237 1.442233 8.583105 -0.886915 12.397065 -7.818202 -7.161889 -1.790234 10.695238 -1.255348 -4.105288 2.422775 -6.129929 5.940232 -9.576106 -10.836931 14.444967 14.689471 3.432187 -0.062374 9.222925 6.489622 -8.531613 -5.018594 -4.078917 4.241054 1.645016 -6.479497 -1.621197 0.397227 -8.378054 -4.387083 0.717871 3.691288 3.601551 -1.232368 -0.875547 3.185519 -7.898964 -4.797033 4.450851 -6.325843 -3.191246 1.178406 0.118442 1.144258 4.442823 -4.288703 -1.619223 3.328539 -6.377218 1.409522 4.472488 7.104203 2.393519 11.555166 8.609612 0.816782 11.552130 3.632664 -4.474436 14.348109 -3.016154 2.821971 2.391575 3.430111 -0.318825 2.952265 4.395954 -4.762760 -4.964326 -9.107709 2.196258 0.331542 7.407150 -6.969649 -8.934853 -10.563025 -3.743845 5.989145 5.298053 -1.373623 15.375557 -1.775308 1.646987 -17.404520 -0.880468 6.286010 -0.492586 6.611406 3.841395 -6.271082 -12.636120 -3.293405 -5.963764 -2.948412 -3.114590 -5.972667 -5.338448 -6.047941 9.242281 -4.372247 2.249445 8.911160 -0.644454 4.643973 -2.296512 -0.478417 -3.130752 -2.602988 4.997726 0.877802 -9.170772 10.510341 -0.936762 22.786205 -3.388593 5.670119 -5.790532 2.204351 -0.541660 -3.600816 -1.410439 11.656744 7.764530 2.570843 -1.447623 0.568985 -4.860356 6.073809 -PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.034392 0.333383 1.146532 -0.039850 -0.719598 -1.487270 -0.595283 -2.286517 0.652398 0.442653 1.225758 -0.224158 0.715287 -0.046630 0.034426 0.516430 0.424811 -0.622521 0.487660 -0.611490 -0.894614 1.383150 -0.022181 0.579728 0.176963 -1.411311 1.011717 0.249788 0.568341 0.888766 0.363703 -0.127485 -0.367519 0.509700 0.115885 0.669668 0.258248 0.537881 -0.391143 0.597814 0.021744 -0.438456 0.845173 0.061084 0.979629 0.669079 0.341903 0.465503 -0.365992 -0.521591 -0.376819 0.504248 -0.850703 0.224776 -0.354769 -0.433863 0.095295 -0.334147 -0.268373 0.099074 -0.418442 -0.724784 -0.757794 0.402969 -0.858179 0.414318 -0.843277 -0.526817 -0.150918 0.027122 0.770040 0.340252 -0.086205 0.594131 -1.489751 0.099145 0.250746 0.261535 0.581235 -0.484772 -0.140309 0.073803 -1.025453 -1.016800 1.002942 1.003074 0.445766 -0.127927 -0.627030 0.033504 -0.351666 -0.025688 0.647696 0.794900 -0.445293 -0.038918 -0.361262 -0.371060 -0.930052 -1.692995 0.351455 -0.540532 0.635600 -0.000365 -0.189343 -0.386957 -0.264080 0.132511 -0.555387 -1.053336 0.088340 -0.629535 0.434855 1.352152 -0.338241 -0.179506 -0.767971 -0.506471 0.149733 0.634431 0.680583 0.080676 1.178628 0.982459 0.351360 -0.784389 -0.955588 0.305788 0.537542 0.401419 0.474292 -0.990366 -0.681462 0.269549 -0.641802 -1.428707 -0.538451 0.238884 0.619581 -0.693359 -0.017424 0.500294 -0.587119 0.465127 0.998412 0.215914 0.204019 -0.011414 -0.786496 0.806072 1.400920 -0.260897 0.727780 -0.766294 -0.339824 1.017819 -0.585625 0.248372 0.502645 -0.119458 -0.802005 -0.362667 0.087393 0.703037 0.212955 0.546879 0.220505 0.521505 -0.552836 -0.768414 -1.234190 0.189710 1.568588 0.099000 1.051033 -1.098724 -0.209256 0.258583 1.087553 0.464140 -0.618008 0.408238 -0.546262 0.541625 -1.270500 -1.111366 1.424519 1.213890 0.848813 -0.022053 0.366910 0.921312 -1.227724 -0.591551 -0.591681 0.738611 -0.208690 -1.627471 -0.666302 0.180631 -0.982143 -0.307021 -0.317866 0.647742 0.570084 0.176661 0.462384 -0.297771 -0.465243 -0.651143 0.768530 -0.409731 -0.432601 0.110414 -0.074006 -0.057802 0.319846 -0.283082 0.397319 0.309373 -0.611953 0.426990 0.752273 0.287465 -0.042515 1.627208 1.114658 -0.492225 0.354176 -0.207639 -0.190663 0.786061 -0.160035 0.483651 0.161152 0.490676 -0.008022 0.219648 0.963088 -0.418689 -0.997258 -0.888674 -0.160702 0.402525 0.555384 0.329668 -0.875496 -1.671559 -0.038765 0.197546 1.627902 0.139665 1.419813 -0.125573 0.612769 -1.223517 0.214030 0.119144 -0.163626 0.679433 0.169087 -0.474739 -0.055914 -0.366356 -1.077985 -1.152202 -0.248246 -0.461895 -0.681862 -0.452696 0.300251 -0.394661 -0.244627 0.347047 0.036393 0.547434 -0.035022 -0.099299 -0.872905 0.309069 1.257894 -0.252717 -0.683483 0.828919 0.205927 2.221828 -0.020258 0.550313 -0.070982 0.256240 -0.037000 -0.753322 -0.223339 1.170445 0.789631 0.133839 -0.093531 -0.077997 0.411750 0.485745 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = -0.020994 0.313998 1.282410 0.045342 -0.778300 -1.654721 -0.634629 -2.344976 0.769513 0.451201 1.270668 -0.130740 0.787946 -0.110285 0.041291 0.495678 0.529002 -0.645384 0.431599 -0.710129 -0.804319 1.529073 0.079416 0.391745 0.225238 -1.608826 1.045300 0.327324 0.620245 1.072179 0.390874 -0.100425 -0.426329 0.578222 0.046414 0.662676 0.296343 0.492716 -0.523502 0.602034 0.063633 -0.265102 0.978130 0.110805 1.105419 0.729926 0.346707 0.526415 -0.409689 -0.599275 -0.391650 0.568536 -0.855392 0.320041 -0.386495 -0.303344 0.109531 -0.433496 -0.273737 -0.063713 -0.380647 -0.617050 -0.794734 0.392808 -0.940995 0.415404 -0.833241 -0.583194 -0.167535 -0.104206 0.828133 0.319693 -0.109071 0.460969 -1.607896 0.078857 0.209601 0.354944 0.664619 -0.457910 -0.282038 0.023325 -1.064552 -1.057179 0.957604 1.031496 0.416546 -0.007899 -0.646014 -0.099418 -0.376359 -0.057553 0.659129 0.798673 -0.529723 -0.053022 -0.285604 -0.397295 -0.915883 -1.627015 0.398470 -0.511125 0.632725 -0.012553 -0.127717 -0.388242 -0.290685 0.142232 -0.612816 -1.004047 0.200481 -0.617919 0.373396 1.487889 -0.363062 -0.219310 -0.836075 -0.517949 0.131652 0.821679 0.613054 0.084910 1.197952 1.082929 0.353682 -0.847413 -0.930167 0.348598 0.629181 0.436734 0.573289 -1.032893 -0.737028 0.295037 -0.689479 -1.519698 -0.552254 0.268082 0.743525 -0.644660 -0.122153 0.541143 -0.668691 0.576261 1.027589 0.214242 0.255062 -0.060600 -0.924826 0.890471 1.619049 -0.283285 0.792742 -0.838695 -0.407955 1.127733 -0.632905 0.321754 0.464988 -0.216921 -0.810483 -0.326182 0.160668 0.769870 0.239535 0.574381 0.230955 0.556646 -0.541532 -0.884020 -1.410064 0.115694 1.586075 0.169698 1.254729 -1.158632 -0.218636 0.087572 1.160412 0.433425 -0.638494 0.439561 -0.619493 0.567607 -1.491190 -1.179170 1.679470 1.482076 0.942219 -0.003591 0.467336 0.954655 -1.153642 -0.621749 -0.551121 0.728231 -0.163245 -1.606767 -0.601430 0.189550 -1.073514 -0.427932 -0.298171 0.686255 0.604523 0.130950 0.477941 -0.330818 -0.555143 -0.772564 0.738259 -0.489925 -0.438143 0.180130 -0.075110 -0.087904 0.335841 -0.286970 0.362426 0.377853 -0.629172 0.423642 0.742660 0.395851 0.021708 1.577762 1.204181 -0.474435 0.485028 -0.168360 -0.289461 1.056285 -0.230438 0.547909 0.168366 0.538882 0.076145 0.221416 0.916294 -0.448264 -0.886766 -0.955940 -0.076250 0.464512 0.631449 0.130518 -1.026793 -1.766841 -0.032848 0.169392 1.702501 0.082447 1.594790 -0.203421 0.615835 -1.456991 0.241558 0.239409 -0.115266 0.657894 0.245246 -0.558057 -0.269175 -0.349953 -1.193024 -1.069257 -0.280227 -0.556043 -0.719650 -0.445085 0.419778 -0.491055 -0.195731 0.555466 -0.045045 0.648814 -0.090339 -0.091717 -0.925344 0.216653 1.195562 -0.210003 -0.726586 0.866592 0.186537 2.296354 -0.020970 0.667305 -0.088060 0.373098 -0.089277 -0.902186 -0.294882 1.281523 0.840906 0.113459 -0.000812 -0.117721 0.432757 0.538193 -PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = -2.128445 0.155930 10.484237 6.057707 -3.391479 -7.215263 -3.816975 -9.827448 6.593158 0.659923 6.556730 1.695914 2.412603 -2.202782 0.557495 -0.827257 0.558626 -3.992816 0.567322 -2.341497 0.512736 10.116625 5.012099 -7.294692 -0.034367 -13.051026 5.801536 3.715898 5.338293 7.602020 -0.157422 -1.304663 -0.560935 5.383292 -3.111590 0.465353 1.092772 1.114500 -3.105320 -0.555109 3.070011 5.281957 5.247365 -0.083858 7.045041 1.291354 5.168925 0.936823 -2.801864 -1.582710 -5.232774 8.227473 -6.202923 3.143971 -0.704029 3.533545 0.533279 -6.343702 -3.044106 -7.950404 -0.278887 3.075515 -4.144879 0.027406 -5.649063 2.316292 -0.900449 -1.861751 2.277779 0.263154 6.570880 3.038613 2.159986 -2.555784 -7.379597 2.511382 -1.794244 4.281834 4.066574 -2.480735 -3.237260 1.407792 -2.236585 -4.189270 2.852714 2.246818 0.022180 -0.527136 2.033767 -1.544187 -2.422766 -1.422181 -1.818111 4.534094 -4.400030 2.758259 -0.948261 -0.205229 -1.951942 -0.962220 -0.161339 -5.427491 2.117212 4.703004 0.018281 -0.408279 -0.226672 0.705984 -3.744208 -5.957568 1.613070 -0.667802 0.392396 6.750877 -3.873376 0.243904 0.352309 -0.128637 -0.941707 7.262455 -0.144983 3.462679 5.693588 8.190798 1.090092 -4.833695 -1.364854 3.028358 6.168830 5.434722 4.243762 -6.962937 -3.650753 -1.006191 1.589112 -9.894002 1.680608 3.786386 4.978736 1.935156 -7.809019 2.590649 -2.471849 8.462741 5.282081 2.191773 2.041007 0.084821 -5.905422 7.560697 14.475503 -2.065112 4.758197 -4.934814 -3.590396 8.856082 -7.210243 4.918097 0.695276 1.123630 1.660647 -4.994425 -0.724038 6.323149 2.439737 4.263958 4.191939 1.622998 1.075385 -10.972214 -8.445893 -1.511056 5.492504 -0.224176 11.694120 -5.298000 -3.511924 -2.152100 6.612216 -0.792388 -1.879192 0.804390 -4.195616 3.793246 -11.972039 -8.874288 12.102231 11.349161 1.811643 1.627238 7.211690 6.709112 -1.692112 -2.245240 -2.284381 3.580664 2.042949 -2.046109 0.573114 -0.547537 -6.236927 -5.401403 1.086381 1.643264 2.730650 -2.460663 -3.404208 1.990536 -7.450778 -4.821996 3.167550 -7.570041 -3.434363 0.544269 0.317965 -0.496592 2.424881 -2.006295 0.076726 4.335759 -3.563816 0.328683 3.371822 4.520840 2.468196 5.097113 7.567877 0.705255 6.802564 4.209766 -2.394345 13.334930 -2.519656 0.329561 2.062930 3.066017 0.865667 3.231795 0.735910 -3.193721 -1.872864 -7.424935 5.399741 0.438435 4.898826 -6.463308 -6.345670 -5.953073 -3.544752 5.284577 4.655874 -0.674279 13.145839 -1.803969 0.745533 -14.476557 -0.692495 6.163935 1.096155 4.553141 4.042297 -3.762835 -10.114337 -2.744379 -1.693811 1.370591 -3.725010 -7.095070 -3.982275 -4.894374 6.031381 -5.289007 3.265104 7.817808 -0.308238 4.071932 -2.449279 -0.481701 -3.995475 -1.825306 0.438001 2.822704 -5.896417 7.453314 -2.726610 13.752765 -5.120542 5.248106 -5.450463 4.551691 -2.465075 -3.073857 -0.331050 9.313170 4.297914 0.738876 0.829523 -0.826294 -3.199199 4.632937 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.573713 0.289772 2.126857 0.552601 -2.349456 -4.434945 -1.336197 -5.379858 1.456544 0.634614 3.449981 -0.196344 1.840799 -0.931418 1.040745 2.180211 1.910574 -1.338403 0.779160 -1.757912 -1.666364 3.345762 0.470852 1.170624 0.351939 -1.571862 0.507933 1.142745 1.208508 1.187061 1.156502 -0.701186 -1.053389 0.665349 0.229290 2.193576 0.476829 0.852469 -2.029838 0.750300 -0.852791 -2.266943 2.405497 -0.621710 2.723864 -0.126675 3.043412 1.238887 -2.016067 -1.356364 -2.164767 3.499301 -2.178639 0.541577 -0.116758 -1.680364 0.499032 -0.270518 -1.183390 -0.465296 -1.640477 -2.193170 -2.111423 0.514992 -1.436562 1.311929 -1.830138 -1.170585 -0.180811 0.758913 2.003564 0.818214 -0.006362 2.222284 -3.513981 -0.082614 0.462704 1.132078 1.177538 -0.461401 0.711710 -0.498793 -1.851817 -1.897932 3.044857 1.048377 1.319166 -0.236669 -2.854779 1.445854 -1.014829 -0.264126 1.324303 0.424992 -2.098662 0.049861 0.443738 -1.172337 -2.853431 -3.796576 0.694853 -0.914526 1.011391 -0.229754 0.582179 -0.915289 -2.821702 0.141998 -2.824392 -3.036228 0.281337 -1.045601 -0.543431 2.875449 -2.197237 0.391067 -1.197222 -0.209930 -0.221385 1.112911 2.005840 1.303327 1.757037 2.777482 0.865621 -1.813804 -2.013122 0.012561 2.820728 1.391806 1.160360 -1.095314 -2.015237 1.143454 -1.974293 -3.497115 -1.755952 2.637785 2.413911 0.609962 -0.490118 0.000758 -0.971454 2.330723 1.955714 0.582688 0.207907 0.001237 -2.212777 2.076402 2.639346 -1.146049 2.943640 -0.453999 0.462877 2.142554 -1.919821 0.157384 1.830101 -0.639788 -1.897972 -0.525476 -1.305644 1.349828 2.291163 0.870339 -0.599671 1.733415 -1.816020 -2.867799 -3.597998 0.384434 3.667331 -0.023932 1.661567 -2.310528 -1.783272 0.746352 1.855999 -0.284201 -2.717163 0.930230 -2.166390 1.534865 -3.121259 -2.596007 4.774734 3.242400 2.124583 0.663706 1.560012 2.823555 -4.602701 -1.217831 -1.050293 1.876737 -0.521313 -5.262173 -1.841232 0.525533 -3.053289 -1.009115 -0.924308 1.683530 -0.362201 1.458422 2.513827 0.028508 -1.037228 0.272923 1.370411 -0.861326 -1.360018 0.204540 -0.419195 1.046479 0.882592 -1.046505 1.290390 0.647128 -2.972263 0.385992 0.934512 1.638217 1.246058 5.065300 3.686935 -0.501493 3.003889 -0.882437 -1.835159 0.957397 -0.474825 1.362608 -0.433695 1.026438 0.202566 0.085931 2.784376 -0.972272 -2.973425 -1.960635 -1.056805 1.403596 2.324556 1.121488 -2.915102 -4.142074 0.244270 1.351331 3.351594 -0.899661 2.892483 -1.439095 1.210545 -4.207393 0.614092 -0.085874 -0.281296 1.275137 0.156142 -0.974640 -0.713070 -0.816485 -2.689998 -2.909569 -0.274502 -0.857056 -1.069913 -2.169487 2.046805 -2.121062 -1.076986 0.041284 -0.084084 2.551699 1.299533 -0.482760 -1.565422 1.440590 3.389046 -0.069772 -1.883538 2.922031 0.792026 7.157299 0.481689 0.665187 -0.534525 0.362365 0.207069 -1.518355 -0.310390 2.824624 3.639804 -0.071973 -0.326441 0.234159 0.600084 1.161945 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.510491 0.240281 1.070095 0.980389 -1.066095 -1.198464 -0.899868 -1.484259 0.631561 -0.040220 0.679609 -0.023525 0.318901 -1.101902 -0.156521 -0.619567 0.039202 -0.565318 0.003987 -0.714663 -0.601779 0.619448 -0.057022 -0.862067 0.141028 -1.490387 1.343469 0.812853 0.168796 0.940714 -0.138285 -0.355250 -0.806239 0.649260 -0.178789 -0.019934 0.246592 0.107249 -0.195024 0.350188 0.466708 0.679548 0.978697 0.302603 0.575608 0.700407 0.213821 0.639380 -1.003454 -0.054499 -0.032506 0.517058 -0.345165 0.520241 0.362767 0.271268 0.379110 -0.941591 -0.505562 -0.815531 0.067352 -0.515617 -0.369427 -0.091858 -0.766242 -0.148451 -0.189143 -0.621075 0.081120 -0.077854 0.414717 0.115315 -0.228430 -0.349006 -0.451236 0.065264 -0.052681 0.583872 0.925172 -0.145840 -0.127378 -0.229579 -0.882309 -0.995903 0.352371 0.284098 0.448094 0.264658 0.213404 -0.801757 0.114130 -0.555032 0.224397 0.399099 -0.153425 -0.071183 -0.246428 -0.070480 -0.726408 -0.421407 0.231509 -0.036266 0.331599 0.718901 -0.427463 -0.906721 0.082671 0.263082 -0.815460 -0.047552 0.197993 -0.548586 0.630070 1.158396 -0.105344 -0.300787 -0.405891 -0.552341 0.050748 0.861231 0.120033 0.019595 0.814305 1.673809 0.466174 -0.708515 -0.580717 0.172976 0.610834 0.823357 0.507300 -1.512033 -0.352832 0.560498 -0.290260 -0.968488 0.079836 -0.270717 0.759934 0.112703 -0.609700 0.541093 -0.899919 0.724764 0.119946 0.248196 0.217937 -0.401246 -1.044342 1.342909 1.538144 -0.224206 0.556542 -0.730556 -0.455053 0.723884 -0.404694 0.100301 0.407194 -0.824259 -0.204086 0.128464 0.286525 0.787148 0.344524 0.218398 0.284766 0.790547 -0.628082 -1.195526 -1.443025 0.549856 1.058210 -0.069071 1.975622 -1.044953 -0.956858 -0.920985 1.515346 0.033342 -0.186309 0.250463 -0.603154 0.685240 -0.432578 -0.969899 1.856836 1.250851 0.346326 -0.165636 0.945054 0.257044 -0.157163 -0.710709 -0.096141 0.191778 0.207013 -0.215511 -0.144044 0.169506 -1.111666 -0.596010 0.286728 0.444176 0.482720 -0.648888 -0.267126 0.088990 -0.712364 -0.960953 0.432548 -0.768187 0.190748 0.508017 -0.462473 -0.181526 1.042574 -0.148749 -0.196401 -0.037113 -0.438015 0.227143 0.107119 0.599611 0.489937 1.166828 1.023571 0.041457 1.098666 0.644020 -0.321766 2.023915 -0.094640 0.411503 0.720709 0.452140 0.383105 0.405894 0.471775 -0.431864 0.367242 -1.051384 0.335719 0.396791 0.836111 -1.465720 -0.665248 -1.588361 -0.281500 0.267974 0.440958 -0.298984 1.344136 0.159548 0.006384 -1.452550 0.013164 0.395937 0.127382 -0.060298 0.157852 -0.552431 -1.617863 -0.105480 -0.806259 -0.339039 -0.754273 0.071665 -0.338860 -0.119051 0.791129 -0.217957 0.488449 1.319498 -0.141159 -0.074945 -0.407419 0.048273 -0.530606 -0.379333 0.387732 -0.012048 -1.084038 0.895713 -0.076947 2.099763 -0.118087 0.597687 -0.613838 0.371863 -0.083543 -0.958135 -0.012872 1.278858 0.112048 0.533863 0.154389 0.613969 -0.505688 0.971561 -PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = -3.924332 2.260847 16.003534 10.355898 -7.690618 -11.420963 -6.477298 -14.615639 7.630866 0.288946 9.701200 1.282159 2.739122 -4.222688 1.517454 -2.499151 0.034568 -4.097338 0.686106 -4.532143 -1.939282 11.408712 8.307349 -11.575113 0.558277 -16.140136 9.327722 7.236830 7.214193 9.174754 -0.944987 -2.845954 -3.047676 8.600214 -4.696200 -0.285401 -0.350043 2.058697 -4.398623 1.981412 4.510267 8.416746 6.880760 -0.239358 9.480413 4.506050 8.152533 2.797546 -7.887554 -2.038196 -5.627549 13.475642 -9.212778 4.947594 1.406684 4.779277 -0.046226 -9.846193 -4.624112 -11.675024 0.575888 2.444826 -6.690611 0.748996 -9.503450 2.136366 -2.729850 -4.140240 4.233332 2.209224 8.674940 3.186256 0.316113 -3.867667 -7.710768 3.257092 -1.304931 7.122893 6.915194 -4.194611 -2.673030 2.372734 -3.501782 -7.187282 2.922346 1.244706 1.777513 -1.842090 3.355334 -3.341937 -1.393854 -2.934614 -2.510877 6.205712 -7.265935 4.404756 -3.218713 -1.229425 -6.201238 -2.377203 -0.394710 -7.198049 4.546822 7.026787 -2.246448 -2.873754 -2.091786 1.531939 -5.675645 -8.814008 -0.538076 -1.382451 3.694977 10.978427 -5.776038 0.403817 0.240381 -1.043150 -1.468639 10.131782 2.045284 4.380132 9.660560 13.891224 1.632400 -7.035429 -2.923518 2.079472 7.777050 10.025235 7.286106 -11.318600 -6.331768 -0.953233 2.136062 -13.862578 3.541754 3.952419 6.445764 4.065199 -10.983067 3.015856 -4.787462 11.814572 5.206510 4.270868 2.752679 -1.646464 -7.987330 11.917110 20.256735 -3.664222 6.641281 -4.948330 -6.776653 12.819707 -9.501488 5.800948 3.521916 -0.334487 1.908120 -6.413269 -2.318744 9.562295 4.462842 5.232978 7.786905 3.035182 0.838334 -15.506533 -12.067198 1.431594 7.088339 -1.279506 16.782110 -7.756111 -5.848115 -3.972849 11.069729 -0.673811 -3.342500 -0.041353 -5.488052 5.757555 -13.331823 -12.408044 15.944381 15.826244 1.485141 0.878908 11.192457 9.078693 -4.510893 -4.606142 -4.188426 5.234201 0.778340 -1.239741 0.288369 0.599225 -10.261945 -5.157026 1.919504 3.336025 4.507854 -4.920424 -6.952359 4.132859 -11.947408 -7.252206 3.342995 -10.070919 -2.639818 1.307827 -1.009536 0.390987 4.634717 -4.016869 -1.567210 3.377457 -6.437725 0.741202 4.259913 8.286539 4.415516 10.962681 8.536417 1.992618 10.665973 6.950650 -4.207415 20.913250 -2.166017 1.840656 4.098468 5.747809 0.707484 4.554268 2.190517 -4.736830 -3.273014 -11.425236 6.204387 1.407958 7.206112 -11.049643 -7.606481 -10.792190 -5.222025 8.365839 5.964215 -1.518416 18.255732 -1.110408 1.102700 -19.896916 -1.103977 6.581872 0.028528 7.255802 5.490717 -6.621372 -15.093922 -4.360287 -3.131564 2.259175 -5.404030 -7.113230 -5.769738 -3.739822 8.325210 -5.443434 4.760496 10.772861 -0.528197 3.975913 -1.506562 -0.586849 -3.548850 -4.063384 3.344647 4.058620 -11.045431 11.970224 -2.874236 22.235096 -5.236023 7.594206 -8.320532 2.387939 -0.871040 -3.682188 -0.923112 13.971337 6.637504 3.332262 0.693404 1.464333 -5.837665 6.945183 -PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = -0.193568 0.253967 2.387031 -0.252630 -1.486766 -2.913752 -1.285104 -4.865428 1.730081 0.998453 2.554261 -0.093514 1.498187 -0.500387 0.139451 1.223511 1.010399 -1.728823 0.952363 -1.364638 -1.030701 3.142322 0.138530 1.200060 0.260146 -3.408206 1.555691 0.335534 1.444930 1.851564 0.895682 -0.384796 -0.975589 0.956563 0.455548 1.730993 0.920352 0.806139 -1.203016 1.033475 -0.171004 -0.671704 1.731613 -0.090516 2.607533 0.608198 0.859766 0.990805 -0.719057 -1.235997 -0.833297 1.505114 -1.785166 0.408336 -0.230896 -0.797255 -0.231097 -0.787650 -0.794083 0.109392 -1.017662 -1.383219 -1.385974 0.890793 -1.505395 1.057356 -1.656802 -0.663720 -0.380475 -0.241198 1.676765 0.799674 0.211915 1.456642 -3.188253 0.201405 0.228407 0.636787 1.176840 -0.823255 -0.394400 -0.046654 -1.731530 -1.938871 1.890618 2.387773 0.483678 -0.297134 -1.439915 0.442816 -0.953031 -0.300906 1.198118 1.334707 -1.598308 -0.369336 -0.480592 -0.784857 -1.615067 -3.108457 0.721268 -1.024478 1.173463 -0.136867 -0.104753 -0.838922 -0.804376 0.097805 -1.504257 -1.849581 0.475938 -0.917302 0.744795 3.008496 -1.063625 -0.107584 -1.788370 -0.811070 0.100300 1.340047 1.195892 0.521987 2.172092 2.240445 0.828487 -1.657246 -1.927734 1.004183 1.601924 0.780254 0.958474 -1.946624 -1.318217 0.647989 -1.128721 -2.845349 -1.319529 0.659437 1.494772 -0.878567 0.101791 0.315627 -1.015649 1.540783 1.999883 0.080498 0.328117 0.036629 -1.879429 1.865378 3.070159 -0.408118 1.634542 -1.548126 -0.239540 1.978791 -1.698432 0.698456 0.999322 -0.088721 -1.734263 -0.736360 -0.036012 1.254216 0.581380 1.293488 -0.208183 1.274061 -0.924958 -1.873677 -2.815146 0.044786 3.037235 0.148311 1.898533 -2.133130 -0.680288 0.275727 2.261841 1.097930 -1.487465 1.066047 -1.504083 1.148953 -2.433612 -2.189268 3.412283 3.401665 1.898515 0.160816 1.048390 2.161086 -3.040740 -1.011911 -0.883497 1.482588 -0.449662 -3.768588 -1.235339 0.439931 -2.014635 -1.237366 -0.688258 1.339193 0.970192 0.804066 1.431177 0.083281 -0.754932 -1.115275 1.758494 -0.687525 -1.200863 0.149339 0.041622 0.098102 0.765563 -0.834006 1.061940 1.056039 -1.317569 0.927156 1.657995 0.669639 0.093066 2.889605 2.345114 -0.733827 1.295349 -0.553004 -0.546014 1.342851 -0.277755 1.039166 0.248205 0.373635 0.064442 0.310428 1.529104 -0.940543 -1.874161 -1.596817 -0.261144 0.586817 1.553584 0.757784 -2.600741 -3.113929 0.045794 0.620533 2.738367 0.258402 2.973945 -0.609097 1.149647 -3.034227 0.423993 0.551752 -0.082254 1.316849 0.331082 -0.832921 -0.428896 -0.695111 -2.224298 -2.376171 -0.550294 -1.172380 -1.253485 -1.464112 1.735993 -1.047966 -0.591555 0.730236 0.176244 1.679620 0.084044 -0.201495 -2.021093 0.763596 2.007927 -0.338867 -1.372230 1.843562 0.313565 4.553540 -0.321828 0.891674 -0.051993 0.912593 -0.302346 -1.753352 -0.273743 2.443799 1.857908 0.186795 -0.487635 -0.570914 0.604042 0.872035 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = -0.191594 0.301960 1.910878 -0.032442 -1.200876 -2.400863 -1.024727 -3.615714 1.241295 0.742855 1.998697 -0.121159 1.174778 -0.259083 0.104047 0.793826 0.795351 -1.244006 0.702577 -1.088682 -1.053163 2.407924 0.226320 0.712324 0.267564 -2.580645 1.470186 0.364212 0.959662 1.605592 0.630338 -0.203125 -0.697833 0.850104 0.222556 1.210189 0.563917 0.705049 -0.760741 0.887594 0.078728 -0.444554 1.449966 0.071236 1.877906 0.871608 0.585913 0.777295 -0.666972 -0.981843 -0.610502 0.948561 -1.430134 0.392259 -0.403076 -0.469706 0.046169 -0.697768 -0.550760 -0.129013 -0.685154 -1.024209 -1.168236 0.662533 -1.318004 0.754290 -1.293536 -0.690804 -0.267366 -0.177658 1.309685 0.572514 -0.012076 0.932425 -2.391717 0.155682 0.239980 0.520020 0.970158 -0.715581 -0.483983 0.032080 -1.502355 -1.582088 1.428323 1.637903 0.516805 -0.135000 -0.984137 0.112568 -0.655184 -0.144879 0.928323 1.168492 -0.993721 -0.188535 -0.307655 -0.625818 -1.353477 -2.392596 0.576581 -0.813957 0.940940 0.052002 -0.213595 -0.681627 -0.626543 0.124421 -1.112964 -1.515729 0.338567 -0.864210 0.576149 2.244563 -0.728021 -0.170013 -1.330568 -0.721821 0.234169 1.202170 0.928956 0.268432 1.799508 1.737301 0.545885 -1.293835 -1.440979 0.604117 1.150309 0.612917 0.840765 -1.559122 -1.111606 0.469653 -0.964682 -2.235397 -0.932780 0.477495 1.152891 -0.794810 -0.141103 0.623394 -0.917227 1.056118 1.611442 0.246692 0.310594 -0.053284 -1.476815 1.447638 2.472373 -0.387148 1.266570 -1.241174 -0.477621 1.773351 -1.203319 0.528177 0.792553 -0.197440 -1.330493 -0.553211 0.115427 1.088672 0.428243 0.979837 0.150070 0.911771 -0.669258 -1.408217 -2.190271 0.117290 2.425059 0.240983 1.762426 -1.754443 -0.368843 0.172875 1.772923 0.791191 -1.100295 0.697013 -0.988335 0.864613 -2.209489 -1.775252 2.652689 2.451066 1.457397 0.117225 0.777020 1.595357 -1.968527 -0.838739 -0.794699 1.186251 -0.315534 -2.549504 -0.880279 0.324088 -1.605293 -0.840750 -0.525019 1.060018 0.876378 0.282551 0.798740 -0.215666 -0.744501 -1.023234 1.189626 -0.687035 -0.862919 0.202541 -0.065519 -0.021652 0.511172 -0.468172 0.700876 0.643246 -1.003483 0.658409 1.241231 0.597716 0.096371 2.325262 1.868335 -0.696862 0.776983 -0.327143 -0.385424 1.368369 -0.303617 0.819196 0.241736 0.628576 0.147098 0.272697 1.321421 -0.690536 -1.377525 -1.346842 -0.055324 0.609253 1.091801 0.248599 -1.792479 -2.618914 0.000287 0.418938 2.418891 0.138335 2.423717 -0.344461 0.896021 -2.320785 0.340953 0.422912 -0.099645 0.996634 0.332191 -0.749763 -0.410306 -0.565280 -1.769975 -1.612881 -0.429729 -0.843966 -1.047858 -0.858508 0.960143 -0.791505 -0.358378 0.733609 0.014897 1.124088 0.062417 -0.168930 -1.507442 0.416461 1.665868 -0.268934 -1.068389 1.452967 0.250341 3.482447 -0.167409 0.881351 -0.084137 0.689954 -0.186912 -1.348234 -0.318317 1.943654 1.363379 0.126476 -0.132560 -0.296185 0.592013 0.760756 -PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = -2.109723 0.315474 11.349335 6.581537 -4.321778 -8.290215 -4.290666 -11.494839 7.043861 0.647229 7.268727 1.643394 2.474175 -2.579264 0.527554 -0.638590 0.607207 -4.295754 0.739065 -2.742283 -0.207202 10.853535 5.051709 -7.648980 0.153042 -14.113057 6.764847 4.271468 5.745789 8.040418 -0.046951 -1.528365 -0.928598 6.045189 -3.052378 0.643416 1.296592 1.323622 -3.449767 -0.188656 3.361723 5.326769 5.961532 -0.342662 7.845692 1.638785 5.698843 1.345716 -3.478298 -1.638049 -5.554740 8.914484 -6.827356 3.521845 -0.673038 3.458381 0.553970 -7.044617 -3.372170 -8.011756 -0.573439 2.638631 -4.625613 0.158064 -6.331493 2.472916 -1.052576 -2.354903 2.720735 0.571692 7.176725 3.257157 1.978779 -2.350318 -8.037797 2.644983 -1.451683 4.864160 4.480371 -2.930119 -2.922734 1.524599 -2.837956 -4.694494 3.168629 2.644370 0.439289 -0.804906 1.957179 -1.646114 -2.324505 -1.622679 -1.551152 5.097076 -4.740662 2.583397 -1.543736 -0.411644 -2.807303 -1.920739 0.031997 -5.810899 2.774627 4.908416 -0.483894 -0.454139 0.075497 0.860496 -4.069818 -6.721016 1.380631 -1.097418 1.218823 7.771757 -3.909486 0.021338 -0.023926 -0.528289 -1.102529 7.687851 0.163698 3.523637 6.797370 9.331261 1.310458 -5.438605 -2.221420 2.999962 6.461256 6.156745 4.718430 -7.900212 -4.048313 -1.050344 1.452770 -10.981326 1.609505 3.612061 5.471365 1.721480 -7.980175 2.730019 -2.898862 9.237410 5.638628 2.339213 2.094547 0.102348 -6.489476 8.572723 15.647321 -2.132388 5.117033 -5.580799 -3.836966 9.447244 -7.570632 5.099977 1.169624 0.936573 1.406475 -5.371418 -0.795459 6.836201 2.536703 4.465818 4.628227 1.972835 0.682002 -11.847034 -9.240766 -1.035016 6.439790 -0.217557 12.842862 -6.201202 -3.987530 -2.219715 7.479218 -0.610365 -2.126983 1.068990 -4.741158 4.346350 -12.453391 -9.780229 13.134197 12.352953 2.138953 1.690734 7.876166 7.279535 -2.584340 -2.610328 -2.709254 3.945134 2.289986 -2.867914 0.279271 -0.392978 -6.896386 -5.735363 1.187090 2.067099 3.309403 -2.534222 -3.575243 2.013509 -8.058177 -5.462226 3.724110 -8.051626 -3.489072 0.790311 0.254961 -0.388336 2.876248 -2.283550 0.025329 4.236133 -3.900301 0.745926 3.831481 5.014747 2.490928 6.018543 8.334923 0.588293 7.702101 4.537048 -2.568587 14.269840 -2.506295 0.805860 2.553674 3.299558 0.791311 3.473357 1.367423 -3.601634 -2.181947 -8.227346 5.486840 0.527378 5.499774 -6.939516 -6.749203 -7.210621 -3.980545 5.778827 5.130283 -0.668247 14.225441 -1.760487 0.932294 -15.705452 -0.825220 6.438355 1.117546 5.163155 4.193617 -4.273684 -10.815338 -3.015072 -2.275039 0.783868 -4.088860 -7.272010 -4.641031 -5.116754 6.451276 -5.327371 3.334656 8.587565 -0.357490 4.199916 -2.959704 -0.444443 -4.237301 -2.167063 1.062166 2.763517 -6.643536 8.218189 -2.640676 15.696723 -5.150381 5.583648 -5.777636 4.569199 -2.340329 -3.477279 -0.351577 10.151196 4.676310 0.992128 0.714702 -0.702796 -3.405248 5.295026 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.021313 0.252058 1.200256 -0.466319 -0.678312 -1.406914 -0.540128 -2.534583 0.745952 0.517339 1.280985 -0.140308 0.789100 -0.164527 0.125840 0.732738 0.593395 -0.762009 0.528876 -0.681900 -0.348450 1.206095 -0.222932 0.955021 0.182861 -1.503195 0.502740 0.134817 0.722956 0.714506 0.537783 -0.268706 -0.668863 0.328871 0.361367 0.864094 0.740808 0.344205 -0.781874 0.561194 -0.443240 -0.437518 0.721084 -0.101924 1.282688 0.213981 0.262390 0.585202 -0.261916 -0.602794 -0.269321 0.806606 -0.701934 0.183157 0.093712 -0.619646 -0.320832 -0.205985 -0.298071 0.305990 -0.499850 -0.806103 -0.515381 0.472895 -0.604104 0.470992 -0.846200 -0.318691 -0.231299 -0.203868 0.707890 0.273050 0.159962 1.020349 -1.587637 0.032502 0.173383 0.297537 0.539367 -0.421921 0.061451 -0.096887 -0.765894 -0.925739 0.909265 1.397467 0.271276 -0.164212 -1.014780 0.396427 -0.418340 -0.208552 0.701545 0.541640 -0.860632 -0.271550 -0.420878 -0.422212 -0.803964 -1.803608 0.401600 -0.390442 0.581613 -0.346711 0.059420 -0.418214 -0.517412 0.148112 -0.683597 -0.771650 0.350628 -0.377784 0.343604 1.544216 -0.560510 -0.078911 -0.990824 -0.431212 0.004764 0.485810 0.611952 0.230917 0.807484 1.015463 0.523306 -0.796850 -1.062599 0.530150 0.732054 0.376850 0.405309 -0.900723 -0.552205 0.420544 -0.801070 -1.381683 -0.714522 0.196552 0.761545 -0.451080 0.296745 -0.172125 -0.575842 0.663892 0.861714 0.047952 0.117603 0.045466 -0.854900 0.722502 1.158811 -0.236188 0.859267 -0.551629 0.205434 0.407141 -0.648072 0.287393 0.487477 -0.063801 -0.830710 -0.252694 -0.211977 0.538739 0.467168 0.667368 -0.390664 0.669646 -0.729099 -0.824648 -1.324291 -0.020260 1.500766 -0.148959 0.470060 -0.960259 -0.507811 0.140291 1.236149 0.458476 -0.824901 0.610225 -0.778575 0.556262 -0.697880 -0.889414 1.487573 1.779881 0.979803 -0.086031 0.369651 0.980586 -1.951765 -0.516379 -0.334840 0.599640 -0.490306 -2.318644 -0.855590 0.240762 -0.942900 -0.451804 -0.353280 0.695320 0.370491 0.828893 1.088173 0.321930 -0.157108 -0.413419 0.903477 -0.075150 -0.561772 0.073429 0.068346 0.192936 0.391570 -0.658119 0.497259 0.770603 -0.771229 0.499291 0.823166 0.276694 0.008095 1.587677 0.823523 -0.193375 0.716818 -0.438971 -0.431816 0.319624 -0.046015 0.601220 0.032355 -0.028266 -0.116477 0.122888 0.751173 -0.488790 -1.141059 -0.740784 -0.574523 0.181177 0.835001 0.938289 -1.473567 -1.396736 0.191060 0.198465 1.247424 0.134616 1.262044 -0.261171 0.666567 -1.222927 0.228987 0.132559 -0.179116 0.566235 0.075526 -0.367647 -0.108452 -0.233919 -1.257679 -1.614944 -0.149747 -0.474129 -0.496755 -0.828103 1.015022 -0.349359 -0.475641 0.065073 0.211317 0.942096 0.146246 -0.105252 -0.939868 0.546169 1.187192 -0.294441 -0.715824 0.788898 0.343503 2.323970 -0.021834 0.269903 0.111938 0.190427 -0.017783 -0.774626 -0.182508 1.128475 1.043121 0.263335 -0.486724 -0.327052 0.268539 0.330023 -PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = -1.662111 1.223204 11.827565 6.342481 -4.858595 -9.141040 -4.460893 -13.897323 7.484175 0.508983 8.022359 1.133056 2.709182 -2.371806 0.860283 0.211097 1.499727 -4.363609 1.068400 -3.231706 -0.317451 10.801177 4.237994 -6.295701 0.172648 -13.894556 5.544326 4.226535 6.486542 6.767109 0.960079 -2.187370 -1.759966 5.770384 -2.571936 1.048702 2.351915 0.950738 -5.255220 -0.422010 1.727570 4.734357 6.446066 -0.449121 8.323678 0.631587 6.551074 2.118672 -3.506425 -1.365835 -6.080645 11.213415 -6.586791 3.496867 1.171160 2.213931 0.487480 -7.063363 -3.290633 -6.083365 -1.718627 1.724014 -4.639363 0.493140 -6.263328 2.729255 -1.958312 -2.062238 2.750346 0.911161 7.611145 3.071061 2.438886 -0.960446 -8.927581 2.674114 -1.640220 5.134437 4.820429 -2.605762 -1.214379 1.509894 -3.003659 -5.054126 4.038690 3.368332 0.517631 -1.184072 0.495855 -0.922790 -2.541856 -2.713611 -1.008084 4.529893 -5.766964 2.747889 -2.177462 -1.088081 -3.930453 -3.922541 0.185203 -5.638574 3.077504 3.539739 0.071281 -0.786316 -0.805456 0.618535 -4.191888 -7.179236 1.954976 -0.573879 1.263096 9.132810 -4.945499 -0.028016 -0.523942 -0.619483 -2.173952 7.407472 1.231711 4.024399 6.055142 9.918204 1.746326 -5.344642 -2.817829 2.914192 6.805437 6.484629 5.087298 -7.962703 -4.325914 -0.184806 1.328941 -11.727409 1.078121 4.467068 6.282408 2.821822 -7.281563 0.762518 -2.826802 9.488001 5.107329 2.412900 2.092773 -0.095745 -6.314716 8.536278 14.814925 -2.379060 6.050913 -5.069578 -2.402907 7.875388 -8.049704 4.983205 1.416068 1.106794 1.055383 -5.096563 -1.908714 6.672385 3.542627 3.820326 3.763328 2.531295 -0.753926 -12.595951 -9.935030 -0.249898 6.919648 -1.514202 11.016177 -6.199984 -5.120902 -1.811747 8.073879 -0.992887 -3.043890 1.947660 -5.817307 4.648150 -10.792888 -9.575129 13.560991 13.257297 2.110053 0.805949 7.531991 7.831779 -5.860079 -3.506214 -3.109205 4.099823 1.285169 -5.712505 -0.876766 -0.488618 -7.277069 -5.320583 1.086022 2.726986 3.571589 -1.117280 -1.569441 2.523561 -7.913743 -5.043385 4.698233 -6.994414 -3.795929 0.968092 0.215112 0.327992 3.590995 -2.897896 0.057721 5.213645 -5.007128 0.511066 4.065835 5.562128 2.178710 8.189506 7.888109 1.623331 9.589773 4.079614 -3.811394 13.494908 -2.475630 1.422570 1.672325 2.573840 0.005686 3.466082 1.870120 -3.962739 -4.556908 -8.117771 4.015384 -0.233556 6.368082 -5.165827 -8.314077 -7.816270 -3.850628 5.944696 4.804137 -0.715176 13.993777 -2.436479 1.080684 -15.832688 -0.637984 6.447915 0.714490 5.494721 3.900359 -4.533100 -9.603784 -2.925546 -3.573799 -1.124240 -3.708296 -7.529062 -4.466295 -6.421201 8.326278 -5.333697 2.532618 7.764892 -0.033149 4.897348 -2.307892 -0.697856 -4.302942 -1.514230 2.748462 2.033179 -7.381188 8.988337 -2.246388 17.754162 -4.693596 4.814321 -5.762876 3.282430 -1.839056 -3.482101 -0.503049 10.541951 5.984853 1.032997 -0.539788 -0.911958 -3.718386 4.965719 -PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.218613 0.230523 1.201683 -0.081072 -0.604934 -1.402910 -0.563266 -2.619898 0.961578 0.441904 1.168994 -0.141527 0.736510 -0.300928 -0.017569 0.752930 0.402009 -0.638079 0.509779 -0.555337 -0.494977 1.710493 -0.179372 0.652749 0.117383 -1.732845 0.685652 0.212506 1.004012 0.784807 0.395669 -0.259764 -0.350556 0.419799 0.107916 0.721043 0.399502 0.399843 -0.840607 0.434534 -0.277161 -0.345820 0.772569 -0.120938 1.177815 0.120157 0.534609 0.452851 -0.122033 -0.429017 -0.544183 0.989422 -0.703348 0.247140 -0.152292 -0.578812 -0.195774 -0.266725 -0.363541 0.366206 -0.526880 -0.568434 -0.677141 0.380386 -0.788140 0.477057 -0.784890 -0.353234 -0.146432 0.037952 0.832814 0.453127 0.165640 0.564257 -1.840473 0.151140 0.132423 0.323322 0.546525 -0.316040 0.136088 0.000751 -0.852919 -0.941040 1.129786 1.380514 0.220100 -0.181064 -0.759473 0.095954 -0.513628 -0.176065 0.640407 0.639600 -0.807045 -0.060648 -0.563282 -0.287260 -0.706308 -1.689729 0.296860 -0.556047 0.584263 -0.262943 0.173705 -0.204697 0.042600 0.151640 -0.515535 -0.978406 0.180728 -0.341177 0.358195 1.676612 -0.369770 -0.148688 -0.796586 -0.337966 -0.284211 0.560259 0.609762 0.305091 1.076924 1.034337 0.517974 -0.789377 -0.976472 0.671148 0.658056 0.480581 0.408545 -1.021483 -0.581466 0.268284 -0.409394 -1.559683 -0.636291 0.350048 0.701974 -0.626531 0.207726 0.058057 -0.412679 0.767176 0.909497 -0.149901 0.222687 0.084272 -0.799265 0.916172 1.593581 -0.181282 0.689506 -0.907753 -0.050802 0.773315 -0.731299 0.349843 0.320561 0.048990 -0.690551 -0.443087 0.045031 0.648766 0.162045 0.523695 -0.104504 0.613971 -0.687697 -0.981768 -1.345274 0.024897 1.393361 -0.103576 0.967695 -0.943279 -0.530035 0.174280 1.081672 0.475398 -0.551279 0.645396 -0.966056 0.620587 -1.041852 -1.147430 1.614280 1.623479 0.898162 -0.046997 0.555174 1.085303 -1.643888 -0.622213 -0.434862 0.662936 -0.061794 -2.181327 -0.780837 0.159302 -1.010863 -0.538792 -0.245060 0.572764 0.425335 0.674626 0.861844 -0.093797 -0.467420 -0.585864 1.101002 -0.369527 -0.410624 0.036609 0.069787 -0.061306 0.554136 -0.590159 0.515983 0.636408 -0.598873 0.517042 0.751384 0.215021 -0.115749 1.424606 1.228205 -0.235476 0.921647 -0.213356 -0.351091 0.708580 -0.105051 0.425838 0.090904 0.016656 -0.175877 0.267730 0.680640 -0.502431 -1.042981 -0.885704 -0.231771 0.215519 0.685182 0.661031 -1.207362 -1.392335 -0.128160 0.253563 1.267539 0.285732 1.439941 -0.455734 0.602822 -1.553833 0.217350 0.228240 -0.053018 0.804600 0.140913 -0.418973 -0.164732 -0.312615 -1.014875 -1.462980 -0.380140 -0.848105 -0.653862 -0.907048 0.890435 -0.543651 -0.252990 0.421520 0.173500 0.850624 -0.327715 -0.072593 -1.034957 0.487938 1.047074 -0.210163 -0.750703 0.713204 0.103029 2.446003 -0.209607 0.422587 -0.167709 0.344968 -0.196480 -0.932058 -0.113810 1.210543 0.866276 0.140618 -0.344168 -0.303258 0.171420 0.447527 diff --git a/vocabulary/seedEmbeddingVocab-300-llvm12.txt b/vocabulary/seedEmbeddingVocab-300-llvm12.txt deleted file mode 100644 index b6751689..00000000 --- a/vocabulary/seedEmbeddingVocab-300-llvm12.txt +++ /dev/null @@ -1,66 +0,0 @@ -add:[0.0759996771812439, -0.0016627582954242826, 0.07442528754472733, -0.007408945821225643, 0.10896540433168411, -0.06926096975803375, -0.0074475896544754505, -0.014705067500472069, 0.03122480772435665, -0.0892632007598877, 0.12492947280406952, -0.08245614171028137, -0.021173547953367233, 0.04029868543148041, 0.03650418296456337, -0.16174276173114777, -0.04884082078933716, -0.05562591180205345, -0.04713907837867737, -0.010665896348655224, 0.005590616259723902, -0.08848738670349121, -0.034930840134620667, 0.060852471739053726, -0.019458221271634102, -0.14928212761878967, 0.02574903890490532, 0.08372844755649567, 0.014466236345469952, 0.09402911365032196, 0.012487641535699368, -0.08770237863063812, 0.03660747408866882, -0.014764268882572651, 0.02047029323875904, -0.023448092862963676, 0.01940414123237133, -0.14187143743038177, -0.0068122693337500095, -0.0335628017783165, 0.04171185567975044, 0.050027936697006226, 0.10698618739843369, 0.09315002709627151, -0.12236954271793365, -0.019417300820350647, -0.017334841191768646, -0.006046733353286982, 0.10749274492263794, 0.007188573945313692, -0.16950595378875732, 0.10134036839008331, -0.014582608826458454, -0.127143993973732, 0.0020537504460662603, 0.07543746381998062, 0.09684142470359802, -0.08384925872087479, 0.01485672127455473, 0.09653226286172867, 0.028594939038157463, 0.06822454184293747, -0.05130089446902275, -0.0400860495865345, 0.018295688554644585, 0.01470943819731474, -0.17606700956821442, 0.0720520094037056, 0.0739477127790451, -0.1253492832183838, -0.02473495714366436, 0.02451372519135475, -0.002381994156166911, 0.03635796159505844, 0.028312094509601593, 0.04364868625998497, -0.08159942179918289, -0.0024039477575570345, 0.023144284263253212, -0.11703530699014664, 0.037542931735515594, 0.09714342653751373, -0.030200866982340813, 0.042407575994729996, 0.04607926681637764, -0.11203673481941223, -0.009882261976599693, -0.04282509908080101, 0.036538250744342804, -0.06662271171808243, -0.0674143135547638, 0.040051158517599106, 0.03397921845316887, -0.0998431146144867, 0.01556339766830206, 0.053388964384794235, -0.14558731019496918, -0.05483372136950493, -0.01786970905959606, 0.02847333252429962, -0.031570032238960266, -0.018449824303388596, -0.041212763637304306, 0.06449005752801895, -0.09157629311084747, -0.037210240960121155, -0.06379052251577377, -0.09858578443527222, 0.00671870494261384, -0.09056076407432556, -0.03249221295118332, 0.07944191247224808, 0.0075348904356360435, 0.1007087230682373, -0.16331057250499725, -0.06732544302940369, -0.011213927529752254, 0.060849349945783615, -0.007136228960007429, -0.010446596890687943, -0.0015428338665515184, 0.011390876956284046, -0.10010340064764023, 0.010383686050772667, -0.015261001884937286, -0.01165524497628212, 0.018173547461628914, -0.005048132035881281, 0.0301558468490839, 0.07925811409950256, 0.025204334408044815, 0.08738882094621658, -0.009298965334892273, -0.054633259773254395, 0.02534976787865162, -0.15942175686359406, 0.12022589892148972, -0.09608625620603561, 0.07996544241905212, 0.22464942932128906, -0.1573609709739685, 0.047952692955732346, -0.055384133011102676, -0.05193585157394409, 0.04793661832809448, 0.06479097902774811, 0.1220877468585968, 0.0030815608333796263, -0.018350733444094658, 0.012380165047943592, -0.031720153987407684, -0.04412580654025078, 0.097161665558815, -0.11322663724422455, -0.027429860085248947, -0.05149301886558533, -0.028743432834744453, -0.08253628760576248, -0.029225748032331467, 0.030568644404411316, 0.17833462357521057, -0.023647230118513107, -0.05258991941809654, 0.015742966905236244, 0.003240429563447833, 0.05373207479715347, 0.0885850191116333, 0.00010768033098429441, 0.10091906040906906, -0.0988505557179451, 0.00453983573243022, 0.02745245024561882, -0.02877792716026306, -0.10259988903999329, -0.18846659362316132, 0.007374911569058895, 0.051580533385276794, -0.0037205067928880453, 0.12995854020118713, -0.1130317822098732, -0.02916729636490345, -0.06461556255817413, -0.016323931515216827, -0.046741995960474014, -0.044728729873895645, -0.03459124267101288, -0.022889437153935432, 0.024563485756516457, -0.12664231657981873, 0.030156351625919342, -0.08922173827886581, 0.10482770949602127, -0.004176008980721235, 0.17687667906284332, -0.07559838145971298, 0.05499199777841568, 0.04389083385467529, -0.06306025385856628, 0.08209189772605896, -0.15287354588508606, 0.11642184853553772, 0.026003830134868622, 0.022946162149310112, 0.037879668176174164, -0.04163464531302452, -0.1913461834192276, -0.04189277067780495, -0.010835095308721066, -0.06586896628141403, -0.10333601385354996, 0.12114904820919037, -0.14944399893283844, 0.055026616901159286, -0.02962113358080387, -0.12218458205461502, -0.026053793728351593, 0.05283458158373833, 0.02444240264594555, -0.00561888562515378, 0.15143074095249176, 0.010295660234987736, -0.021100273355841637, -0.012812905944883823, 0.09365364164113998, 0.020237749442458153, 0.09540536254644394, -0.10704456269741058, 0.012992685660719872, 0.008348623290657997, 0.035749562084674835, -0.037913233041763306, 0.04442084580659866, -0.09069701284170151, -0.02251330018043518, -0.0296010859310627, 0.08560642600059509, 0.02469581738114357, 0.10683751106262207, -0.035120341926813126, 0.001111173303797841, -0.10361146926879883, -0.020298315212130547, -0.020684827119112015, -0.08600146323442459, 0.024922886863350868, 0.20498701930046082, 0.025922700762748718, -0.05424131825566292, -0.04821597784757614, 0.017458278685808182, 0.08914559334516525, 0.04498659819364548, 0.09766317158937454, 0.011433292180299759, -0.07473661750555038, 0.16616804897785187, -0.12748664617538452, 0.10020317882299423, 0.02436850778758526, 0.0566619448363781, 0.015153016895055771, -0.008185673505067825, 0.09017759561538696, -0.004185604862868786, -0.020623942837119102, 0.17393144965171814, 0.036491505801677704, -0.05631287395954132, -0.041224539279937744, -0.11085347831249237, 0.17046360671520233, -0.023480746895074844, 0.04485384374856949, -0.16106879711151123, 0.06696613132953644, -0.04867664724588394, 0.08059467375278473, -0.05142909660935402, 0.007657627575099468, -0.012102454900741577, -0.018806427717208862, 0.09006935358047485, -0.036811403930187225, 0.1472730189561844, -0.05765421688556671, -0.0871230959892273, 0.005440428387373686, 0.03390226885676384, -0.12676796317100525, -0.007909485138952732, -0.03380459547042847, 0.04967496916651726, -0.052959054708480835, 0.03639596700668335, 0.09863527119159698, -0.013770828023552895, -0.07257743924856186, -0.027827899903059006, 0.001048331381753087, -0.04313931241631508], -alloca:[-0.00673713069409132, 0.03414588049054146, 0.06507065147161484, -0.16319631040096283, 0.04105277359485626, -0.030216379091143608, -0.07323981821537018, -0.12413632869720459, 0.022973742336034775, 0.09407404810190201, 0.1163596585392952, -0.0912487655878067, 0.024805327877402306, 0.09018310159444809, 0.024286767467856407, -0.0310902688652277, -0.059671495109796524, -0.172758549451828, 0.05935359001159668, -0.010851852595806122, -0.08311405777931213, 0.02629067189991474, 0.0030817913357168436, 0.18328377604484558, -0.03112909384071827, -0.18299345672130585, 0.09063293784856796, -0.0008437578799203038, -0.05701397359371185, 0.03136269375681877, -0.015363148413598537, -0.011520525440573692, 0.031776685267686844, 0.06813441216945648, 0.019342496991157532, 0.10184215009212494, 0.08307702094316483, 0.06193152815103531, 0.14403636753559113, 0.10262329876422882, 0.03700561821460724, 0.06559149920940399, 0.028764525428414345, 0.060185156762599945, 0.02676408365368843, 0.18810780346393585, -0.12404299527406693, 0.02731705829501152, 0.04213179275393486, -0.07114332169294357, 0.10092219710350037, -0.10144536942243576, -0.03824080899357796, -0.059132806956768036, -0.045699961483478546, 0.02760063111782074, 0.0035313006956130266, -0.08971873670816422, 0.0019116665935143828, 0.05995066463947296, 0.036048952490091324, -0.013450609520077705, -0.04250362515449524, 0.043678779155015945, 0.03683627396821976, 0.017605822533369064, -0.018595712259411812, 0.0006275242194533348, -0.04910002648830414, -0.028631964698433876, -0.010033373720943928, 0.03677818551659584, -0.04263831302523613, 0.11132097989320755, 0.001428603078238666, 0.052600156515836716, 0.04492678493261337, -0.09713297337293625, 0.023421671241521835, -0.17973275482654572, -0.13118700683116913, 0.08051758259534836, -0.10844443738460541, -0.15417887270450592, 0.054170940071344376, 0.16283471882343292, 0.027738438919186592, -0.04068924859166145, 0.03805777430534363, 0.0035902687814086676, -0.061548709869384766, -0.0011289174435660243, 0.06888285279273987, 0.155100017786026, 0.05122998356819153, -0.03793040290474892, 0.02291872911155224, -0.06013154610991478, -0.15197721123695374, -0.02751178666949272, -0.011193465441465378, -0.05385909602046013, 0.0598105862736702, 0.04447013512253761, -0.053668536245822906, -0.13751143217086792, -0.06650722771883011, -0.039874523878097534, -0.04316304251551628, -0.024227077141404152, -0.015160422772169113, -0.07889848947525024, 0.14078420400619507, 0.03766224533319473, 0.01191309280693531, 0.016642127186059952, -0.060092221945524216, -0.08210711926221848, 0.1055399626493454, -0.011669560335576534, 0.04686997830867767, -0.1159958764910698, 0.1645432859659195, 0.03508777543902397, -0.011785640381276608, -0.02415955625474453, -0.10088619589805603, 0.008692365139722824, 0.015477093867957592, 0.012921585701406002, 0.0029475530609488487, -0.13817214965820312, -0.012338648550212383, 0.02639789506793022, -0.07476930320262909, -0.02733483351767063, -0.02700676955282688, -0.13012100756168365, -0.021677974611520767, -0.18926484882831573, -0.015429843217134476, 0.1841074824333191, -0.03357015922665596, -0.07515286654233932, 0.14335431158542633, 0.026931704953312874, 0.04598042741417885, 0.005182082299143076, -0.0003424037422519177, -0.011303592473268509, 0.06916563957929611, 0.025635555386543274, 0.010934551246464252, -0.11029479652643204, -0.061460234224796295, 0.08827465772628784, -0.0666545107960701, 0.018107961863279343, 0.13151507079601288, -0.006649360992014408, -0.14595556259155273, -0.03838721290230751, 0.0861346423625946, 0.013943319208920002, -0.0174917820841074, 0.11845418065786362, 0.013529278337955475, -0.0012050089426338673, 0.04970679432153702, 0.08071767538785934, -0.06120513007044792, -0.027970775961875916, 0.04919450357556343, -0.01176325511187315, 0.042281314730644226, -0.05914779007434845, 0.04168811812996864, 0.014407048933207989, 0.14304055273532867, 0.09916067868471146, -0.02826474793255329, -0.04399310424923897, 0.05133708193898201, -0.036256685853004456, 0.017725402489304543, -0.03719894960522652, -0.02402748167514801, 0.05882829800248146, 0.0819038674235344, 0.0059141735546290874, 0.042269542813301086, -0.01988517865538597, 0.003271243069320917, 0.010838991031050682, -0.0151915168389678, 0.09685361385345459, -0.040587376803159714, -0.020628690719604492, 0.02361554652452469, 1.045795033860486e-05, 0.025613941252231598, 0.028148436918854713, -0.18067333102226257, 0.06116611510515213, 0.03636428341269493, -0.021116754040122032, -0.04224301129579544, -0.023116113618016243, -0.01726450026035309, -0.06813136488199234, -0.03304757922887802, 0.01474133599549532, -0.01615021750330925, -0.049122631549835205, -0.018704723566770554, -0.08404338359832764, 0.017708949744701385, -0.00123649335000664, 0.016683831810951233, 0.029977573081851006, 0.012272963300347328, 0.10472548007965088, 0.11635204404592514, -0.035856835544109344, -0.03349655121564865, 0.10443831235170364, -0.015876606106758118, -0.14398278295993805, -0.10673092305660248, -0.08366099745035172, 0.15530864894390106, -0.09948950260877609, -0.0019657183438539505, -0.00038004276575520635, 0.04326767846941948, 0.06248975172638893, 0.020709866657853127, 0.0063531529158353806, 0.0800028070807457, 0.022932128980755806, -0.015837861225008965, 0.0011614329414442182, 0.05894772335886955, -0.006948940921574831, -0.06275101006031036, 0.10484302043914795, 0.0069777206517755985, -0.10283627361059189, 0.03126738592982292, -0.03273032605648041, 0.22260043025016785, 0.08106007426977158, 0.0915026068687439, 0.11880870163440704, 0.07678554952144623, 0.043008774518966675, -0.03240034356713295, -0.08386606723070145, -0.00982365570962429, -0.02603180706501007, 0.005456290207803249, -0.03182479739189148, 0.06358097493648529, 0.001743544708006084, -0.08363927155733109, -0.17145732045173645, 0.0387955978512764, 0.015565674751996994, -0.03675517439842224, 0.004581581801176071, -0.030149048194289207, 0.026016056537628174, -0.06560228765010834, -0.03766496106982231, 0.07418569177389145, -0.07177663594484329, 0.046861469745635986, -0.013975399546325207, -0.09962381422519684, 0.001609037397429347, 0.1362975686788559, -0.09495361149311066, 0.02889414317905903, 0.011409048922359943, -0.022480148822069168, 0.025852154940366745, -0.038891471922397614, 0.10898679494857788, 0.05054686591029167, 0.058487340807914734, 0.023331226781010628, -0.03405960276722908, -0.03342103958129883, 0.039938587695360184, -0.0315856896340847, -0.012127506546676159, -0.016395406797528267, -0.04211916774511337, 0.10066690295934677, -0.007565753068774939], -and:[-0.0076258680783212185, -0.01617896556854248, 0.07679091393947601, -0.06987231224775314, -0.048604488372802734, -0.09391063451766968, -0.017755648121237755, -0.03532205522060394, 0.026267895475029945, -0.00011956129310419783, 0.05756527557969093, 0.0007163888076320291, 0.027832061052322388, 0.04014655947685242, 0.026576749980449677, -0.04729035869240761, -0.007200069725513458, -0.06571202725172043, -0.016237350180745125, -0.009428337216377258, -0.1502285897731781, 0.009911350905895233, -0.08100535720586777, 0.02145499363541603, 0.015402778051793575, -0.04006442427635193, 0.03758006915450096, 0.11180422455072403, -0.004611573647707701, -0.015091096982359886, -0.001534719718620181, 0.13797354698181152, 0.03457801789045334, -0.04363325238227844, 0.1726033091545105, -0.04525270685553551, -0.007508129347115755, 0.09991372376680374, -0.05355155095458031, 0.05030734837055206, 0.05420195683836937, 0.12690357863903046, -0.01762513630092144, 0.07677259296178818, 0.016143135726451874, 0.006254206877201796, -0.04430653154850006, -0.02323436550796032, 0.025321034714579582, -0.0008893391350284219, 0.011616447009146214, -0.0320013090968132, -0.012756631709635258, -0.01243968028575182, -0.012319962494075298, -0.09466597437858582, -0.06539425253868103, -0.09501323848962784, 0.11940199881792068, -0.014987731352448463, -0.07230845093727112, 0.12489330023527145, 0.02805810421705246, 0.0006976665463298559, 0.06223030015826225, 0.01595137268304825, 0.10236848890781403, -0.0006471792003139853, 0.18649056553840637, 0.07680458575487137, -0.007484068162739277, -0.007298956625163555, -0.005057158414274454, 0.21592004597187042, -0.13931326568126678, 0.04865022748708725, 0.02674741856753826, -0.01127235870808363, 0.1290922313928604, -0.19021224975585938, 0.015237739309668541, 0.006877734791487455, -0.026774143800139427, -0.07171420007944107, -0.01787666231393814, -0.11723403632640839, -0.01935444213449955, -0.04062938317656517, 0.038352057337760925, -0.1385137289762497, 0.1312093734741211, -0.15604744851589203, -0.11461655050516129, 0.024880439043045044, 0.03180177882313728, 0.19762569665908813, -0.1523093730211258, -0.07048793882131577, 0.0896105170249939, -0.03697434440255165, 0.00018946814816445112, -0.11302293837070465, 0.024865683168172836, 0.04228133708238602, 0.0905236303806305, -0.09088696539402008, -0.055884283035993576, -0.03979147598147392, 0.06534667313098907, -0.05882910266518593, 0.06143772602081299, 0.07537800073623657, -0.10626785457134247, 0.1854737102985382, 0.005894102621823549, -0.07255077362060547, -0.011125563643872738, 0.06358708441257477, -0.030389918014407158, 0.01483556255698204, -0.04870833829045296, 0.018035130575299263, -0.028382357209920883, 0.06164989992976189, -0.05208109691739082, -0.14588899910449982, -0.01719844900071621, -0.06511697173118591, 0.010629856027662754, 0.10245858132839203, 0.15949882566928864, 0.11921975016593933, -0.009470932185649872, -0.06288062781095505, 0.015443980693817139, 0.00435155862942338, -0.014672409743070602, 0.0007739526918157935, 0.05557962879538536, -0.0678301528096199, 0.03088335692882538, -0.06420178711414337, -0.0038196733221411705, 0.011245695874094963, 0.06909061223268509, -0.10871444642543793, 0.05582258850336075, 0.004821042064577341, 0.09132422506809235, 0.03052147664129734, 0.022238319739699364, -0.1482028067111969, 0.006432495079934597, 0.09032657742500305, -0.01914740726351738, -0.07826053351163864, -0.01822795532643795, -0.009242520667612553, 0.12999239563941956, 0.05388081818819046, -0.04236472398042679, -0.03314286097884178, -0.02492048777639866, 0.016760531812906265, -0.0028795041143894196, 0.1552300900220871, -0.008187519386410713, 0.01678572967648506, -0.1361752450466156, -0.0830828994512558, 0.012365208007395267, -0.13221322000026703, -0.0005992560181766748, -0.019347500056028366, 0.12833671271800995, -0.05487630516290665, -0.12810289859771729, 0.1473643183708191, -0.07117636501789093, -0.22623951733112335, -0.008183718658983707, -0.10014894604682922, -0.09768804907798767, -0.024970155209302902, -0.022527720779180527, -0.0411221981048584, 0.13068555295467377, -0.009387999773025513, -0.006830764003098011, 0.18926484882831573, -0.017325861379504204, -0.11571139842271805, -0.05199957638978958, -0.0007550754817202687, -0.03310350328683853, 0.03344123438000679, -0.040709011256694794, -0.06062843278050423, 0.06449452042579651, 0.010442301630973816, 0.02895813249051571, 0.01278514415025711, -0.06822223216295242, 0.04614385962486267, -0.0005693004932254553, -0.026530075818300247, -0.04695389047265053, -0.037224188446998596, -0.06908570975065231, -0.09502950310707092, 0.04471577703952789, -0.14821788668632507, -0.06646035611629486, -0.13493987917900085, -0.03539596125483513, 0.1682925820350647, -0.01887623593211174, 0.10714937001466751, -0.10083065181970596, -0.0215657539665699, 0.01080317236483097, -0.0069364081136882305, -0.02761460468173027, -0.11178594827651978, -0.02124514803290367, -0.039723943918943405, 0.15968114137649536, 0.019821060821413994, -0.0658341646194458, 0.015674764290452003, -0.04139535129070282, -0.030101673677563667, -0.08688189834356308, -0.04678204655647278, -0.05637475103139877, 0.05518154427409172, 0.02267545461654663, -0.002148014260455966, 0.18064822256565094, 0.013028010725975037, -0.10289722681045532, -0.08416005223989487, -0.014663300476968288, 0.006603407207876444, 0.05475525185465813, -0.006764199119061232, -0.08290638029575348, -0.042524777352809906, -0.015379643067717552, 0.04965050518512726, 0.021904293447732925, 0.009742945432662964, 0.09907864034175873, -0.0033691187854856253, 0.12995891273021698, 0.0008353065350092947, -0.043644703924655914, 0.058703020215034485, 0.08059800416231155, -0.01725572906434536, 0.015567325986921787, -0.04248957335948944, -0.14911791682243347, -0.0554291233420372, -0.1633061319589615, -0.09812705963850021, -0.02604743465781212, -0.02668866701424122, 0.09931772947311401, 0.04423639550805092, 0.025474656373262405, 0.08395475894212723, -0.05761677026748657, -0.09185896813869476, -0.02233075723052025, -0.06696314364671707, 0.005262398160994053, -0.10038987547159195, 0.0773627832531929, 0.04813934862613678, 0.08276845514774323, 0.015153205022215843, -0.003640079405158758, -0.010895736515522003, -0.04816669598221779, -0.015469308942556381, -0.022531624883413315, 0.030268853530287743, -0.036225270479917526, -0.08294333517551422, 0.035375285893678665, 0.18616458773612976, -0.0488462895154953, 0.09749701619148254, 0.06513107568025589, 0.09795518964529037, -0.021972952410578728, -0.021134119480848312, 0.0002818372449837625, 0.13429045677185059], -ashr:[-0.035075221210718155, 0.0438520647585392, 0.07706084847450256, 0.13149331510066986, 0.06428927928209305, -0.055653974413871765, 0.08137337118387222, -0.0502646267414093, -0.04941897839307785, 0.021734824404120445, 0.05442875623703003, 0.012900113128125668, -0.15615375339984894, 0.19411133229732513, -0.10654697567224503, -0.03778599947690964, 0.014666201546788216, 0.11367343366146088, -0.0028346518520265818, 0.0013036079471930861, 0.17571087181568146, 0.09016545861959457, 0.00936760101467371, -0.03361751139163971, 0.1141522154211998, -0.029873857274651527, 0.03559465706348419, 0.07109658420085907, -0.03887655958533287, 0.020077046006917953, 0.12402400374412537, 0.12273404747247696, 0.015929900109767914, 0.05799958482384682, -0.026422351598739624, -0.03164716064929962, 0.1656554937362671, 0.04264189302921295, -0.0501399002969265, 0.10686902701854706, 0.10164158791303635, 0.04185838624835014, -0.003454524325206876, 0.06231456995010376, 0.046213388442993164, 0.03449296951293945, 0.011315412819385529, 0.051922593265771866, 0.13997575640678406, 0.17492268979549408, 0.12520729005336761, -0.06383799016475677, -0.012036235071718693, -0.003232640912756324, 0.09629286825656891, 0.004519681446254253, -0.07991038262844086, -0.09519682824611664, -0.09013509005308151, 0.11398977786302567, 0.07753698527812958, 0.06818722933530807, 0.07142118364572525, -0.0746939554810524, 0.0114371282979846, -1.073546263796743e-05, -0.018792491406202316, 0.1462194174528122, -0.0039655896835029125, -0.11953230202198029, 0.013827974908053875, -0.0013553367462009192, -0.01574692875146866, 0.05353935435414314, -0.025149084627628326, 0.04646286740899086, 0.08474013209342957, 0.0051480671390891075, 0.033174265176057816, -0.0914953351020813, -0.04154358059167862, 0.006708554923534393, -0.040068369358778, -0.07248467206954956, -0.05260653421282768, 0.11662851274013519, -0.025555122643709183, -0.05171997472643852, 0.035700805485248566, -0.06483292579650879, 0.0442996509373188, -0.011223876848816872, -0.0436643585562706, 0.05319620296359062, 0.13631416857242584, 0.1307630091905594, -0.05544513091444969, -0.042529668658971786, 0.11187034100294113, 0.037820424884557724, -0.03180794045329094, 0.12653756141662598, -0.06490300595760345, -0.0583270899951458, -0.04046668857336044, -0.005165218375623226, 0.17079196870326996, -0.07616060227155685, 0.03294721990823746, -0.095315121114254, -0.01409121509641409, 0.06440012902021408, 0.07088135182857513, 0.1655787080526352, 0.024489492177963257, -0.016007598489522934, 0.12315694987773895, 0.07460438460111618, 0.03443950414657593, -0.0030102638993412256, 0.08893373608589172, 0.01140464935451746, 0.00984487496316433, 0.05904948338866234, -0.06486786901950836, -0.017527416348457336, -0.0577978752553463, -0.095064178109169, 0.009960215538740158, 0.09767796844244003, 0.014828396961092949, 0.04569946974515915, -0.006415103562176228, 0.016511743888258934, 0.059332720935344696, -0.05916095897555351, -0.007502489723265171, -0.02656901255249977, 0.07593661546707153, -0.041399724781513214, -0.029976019635796547, -0.030841344967484474, -0.1418316811323166, 0.0039572822861373425, 0.07014701515436172, -0.008356698788702488, 0.05303718522191048, 0.07278623431921005, 0.07161982357501984, 0.1187792494893074, 0.06796298176050186, -0.00455594202503562, 0.0012979706516489387, 0.027301551774144173, -0.042859334498643875, 0.1295224130153656, 0.0019044628133997321, -0.1448558270931244, 0.010636987164616585, 0.04119032621383667, -0.015698719769716263, -0.013376908376812935, -0.10225559026002884, 0.031177131459116936, -0.06961424648761749, 0.17377960681915283, 0.11912098526954651, 0.021144963800907135, 0.0423714816570282, -0.07253985852003098, -0.02585608698427677, 0.06938477605581284, 0.03860887512564659, 0.07457775622606277, -0.10867246985435486, 0.08176039904356003, 0.001872592605650425, -0.02334498055279255, 0.10401399433612823, 0.027674958109855652, -0.023851465433835983, -0.025926614180207253, -0.16459517180919647, 0.006499248091131449, -0.038697145879268646, -0.15020951628684998, -0.06695753335952759, 0.01713084615767002, -0.021984903141856194, -0.07688215374946594, -0.11724179238080978, -0.10067162662744522, 0.056996725499629974, 0.03806184604763985, -0.01244546938687563, 0.08885326236486435, -0.04797106236219406, -0.057189106941223145, -0.0644366592168808, 0.028727920725941658, 0.03109607845544815, -0.027271803468465805, 0.002257340820506215, -0.08344095200300217, 0.09349019080400467, -0.037782974541187286, 0.03701319172978401, 0.04146333411335945, -0.09671659767627716, 0.02402481809258461, 0.01592547446489334, 0.04191784933209419, 0.04199812188744545, -0.02716555818915367, 0.031068887561559677, -0.1355760395526886, -0.09820999950170517, 0.05155429616570473, 0.007580941077321768, -0.007022578734904528, -0.0031936538871377707, -0.007171613164246082, -0.04756946116685867, 0.04989948868751526, -0.043539565056562424, 0.1326141357421875, -0.02620311826467514, 0.09584777802228928, -0.013704318553209305, 0.02347561903297901, -0.03542435169219971, 0.03633998706936836, -0.019588086754083633, -0.17254412174224854, 0.005271029192954302, 0.0374053455889225, 0.03433294594287872, -0.0024600932374596596, 0.04321086034178734, -0.0054472521878778934, -0.016255943104624748, -0.08775884658098221, -0.011469594202935696, 0.07007072865962982, 0.08406583219766617, 0.006938090082257986, 0.0693548172712326, 0.04775434359908104, 0.016003010794520378, 0.024173427373170853, 0.052042294293642044, -0.02540949545800686, 0.07197711616754532, -0.0023125866428017616, -0.11274747550487518, 0.023154420778155327, 0.0009430563077330589, 0.04684705287218094, -0.009824012406170368, 0.0389992780983448, -0.1411181539297104, -0.0656920075416565, -0.07553131878376007, 0.0690087303519249, -0.08020833879709244, 0.018858706578612328, -0.010417104698717594, -0.011473354883491993, 0.049293890595436096, 0.09104499965906143, 0.06570867449045181, -0.0801796242594719, 0.0489068403840065, 0.009914104826748371, -0.10387818515300751, -0.08691643923521042, 0.007552617695182562, -0.021174408495426178, -0.10822954773902893, -0.0038429272826761007, -0.0684550404548645, -0.12613730132579803, 0.0025250250473618507, -0.009680764749646187, -0.11373438686132431, 0.19703085720539093, -0.035834383219480515, -0.00995754823088646, -0.03999786078929901, -0.13824543356895447, -0.07584657520055771, 0.03229072317481041, -0.04821839928627014, -0.11269316077232361, 0.1112714409828186, 0.011743676848709583, 0.1017250344157219, -0.00013286432658787817, 0.03315325081348419, 0.03580037131905556], -atomicrmw:[0.10442263633012772, 0.04772340506315231, 0.04369841888546944, -0.17462009191513062, -0.12061833590269089, -0.04723631963133812, -0.06689843535423279, -0.047201428562402725, -0.07685278356075287, -0.022160591557621956, -0.01658562943339348, -0.053581856191158295, 0.12959054112434387, 0.09211456775665283, -0.024329153820872307, -0.005598049145191908, 0.07086896151304245, 0.033809222280979156, -0.06306859850883484, -0.010096723213791847, 0.010319619439542294, 0.09215521067380905, -0.009048298932611942, -0.015907365828752518, -0.027744432911276817, -0.08713512867689133, 0.0003509089583531022, 0.030853796750307083, 0.04918573424220085, 0.16110293567180634, -0.11472591757774353, -0.019095884636044502, 0.010665183886885643, 0.15562881529331207, -0.05126931518316269, -0.009104274213314056, -0.005951347295194864, -0.01401128713041544, -0.01087553333491087, -0.010669577866792679, 0.019701601937413216, 0.07837241888046265, 0.1478394716978073, -0.16991493105888367, -0.05465218797326088, -0.057209692895412445, -0.009011327289044857, -0.10789019614458084, 0.0793030709028244, 0.02600988931953907, -0.052708473056554794, 0.023001527413725853, 0.04636247083544731, 0.03327193856239319, 0.16382096707820892, -0.01935531571507454, -0.10555005073547363, -0.018390409648418427, -0.01702026277780533, 0.03962993621826172, 0.029056239873170853, -0.03499424830079079, -0.07186096161603928, -0.049351226538419724, -0.00536228297278285, 0.007386563345789909, -0.026205502450466156, -0.10006564110517502, 0.005848870612680912, -0.138798326253891, -0.0007664089207537472, 0.03378644585609436, 0.04269604757428169, -0.15463408827781677, 0.07367095351219177, 0.007361340802162886, -0.06469494104385376, -0.13704510033130646, 0.007954278029501438, 0.02974056638777256, 0.12860839068889618, 0.13806188106536865, 0.1189575269818306, -0.058982472866773605, 0.045282457023859024, -0.08285674452781677, -0.05660533905029297, -0.053183555603027344, -0.0416143499314785, -0.07941826432943344, -0.010424656793475151, 0.004021558910608292, -0.07615146785974503, 0.01693877950310707, 0.08272941410541534, 0.01402993593364954, -0.01757453754544258, -0.17423115670681, 0.0678330734372139, 0.09174331277608871, -0.0763229951262474, -0.031350161880254745, 0.11286599934101105, 0.07791092991828918, -0.06965690106153488, -0.038976024836301804, 0.009685306809842587, 0.0038111847825348377, -0.03816423937678337, -0.13795284926891327, -0.05174965783953667, 0.0523197166621685, -0.09669427573680878, 0.09183050692081451, 0.044766779989004135, -0.10122612118721008, -0.06109826639294624, -0.02237858809530735, -0.13760657608509064, -0.11822745203971863, -0.11740399152040482, 0.017566420137882233, -0.06030137464404106, 0.053694628179073334, 0.04699098318815231, -0.0952477678656578, 0.010398955084383488, -0.11168032139539719, -0.09183826297521591, 0.13146251440048218, 0.03019009903073311, -0.1388084441423416, -0.009608342312276363, -0.04686899483203888, 0.031620774418115616, -0.02503705583512783, 0.1009955108165741, 0.007444039452821016, 0.07304806262254715, 0.07632507383823395, -0.035789791494607925, -0.06619187444448471, -0.052669256925582886, 0.007651451043784618, 0.09886782616376877, 0.00340255000628531, -0.12140832096338272, 0.016694361343979836, -0.0015502000460401177, -0.052208926528692245, 0.055440131574869156, -0.03071926347911358, 0.09545418620109558, -0.06778454035520554, 0.05335940048098564, 0.009394796565175056, -0.07524771988391876, -0.09940286725759506, 0.08482445776462555, -0.01108536683022976, 0.026402289047837257, -0.013341667130589485, 0.022349953651428223, 0.010014384984970093, 0.028211276978254318, 0.1209908202290535, 0.08962450176477432, -0.05222763121128082, 0.11776235699653625, -0.06176614761352539, 0.08462600409984589, -0.05488916113972664, 0.03304867446422577, -0.16008688509464264, 0.058123938739299774, -0.032632067799568176, -0.08566811680793762, -0.004602519329637289, -0.06460689753293991, -0.07049722969532013, 0.07589039206504822, -0.06378518790006638, 0.05880201607942581, 0.1697101891040802, 0.030380843207240105, -0.09593125432729721, 0.007987627759575844, -0.00437450036406517, -0.06353498250246048, 0.07801616936922073, -0.017083115875720978, 0.0594489686191082, -0.039616554975509644, -0.058267850428819656, -0.03143657371401787, -0.09692656993865967, 0.06085110455751419, -0.07902970165014267, 0.03174394741654396, 0.12205255031585693, 0.1275692731142044, 0.004287464544177055, -0.03253709897398949, 0.048975616693496704, 0.04265120252966881, 0.05491742119193077, 0.12296311557292938, -0.11082730442285538, -0.11064749211072922, -0.13746440410614014, -0.048345208168029785, 0.041814468801021576, -0.06372866779565811, -0.022502999752759933, -0.16659016907215118, 0.06006472557783127, 0.058438364416360855, 0.036046143621206284, -0.1771923005580902, 0.2066979855298996, -0.03841373696923256, 0.09078211337327957, 0.10980342328548431, -0.037803102284669876, -0.042692553251981735, -0.0038937353529036045, 0.044689446687698364, -0.08768627792596817, -0.16444408893585205, -0.012310218997299671, -0.06467977911233902, 0.021633343771100044, -0.0007687025354243815, 0.050431881099939346, -0.03317883238196373, 0.04766412824392319, 0.09841527044773102, -0.1154511496424675, -0.026590824127197266, 0.004127953667193651, -0.13471661508083344, -0.039752498269081116, -0.013901050202548504, -0.1095132827758789, 0.015212389640510082, 0.02738994173705578, 0.004023879766464233, -0.0564601756632328, -0.0213138647377491, 0.04606027156114578, -0.0578625425696373, -0.05260096490383148, 0.07795655727386475, -0.1618468016386032, -0.07043547183275223, -0.02589261904358864, -0.007873842492699623, 0.12924247980117798, 0.018878035247325897, 0.1005563959479332, -0.10364343971014023, -0.048913147300481796, -0.010076946578919888, -0.14611715078353882, -0.0012961550382897258, -0.23259016871452332, -0.05195042863488197, -0.044277746230363846, -0.14982932806015015, 0.06965886801481247, 0.09040885418653488, -0.04772140458226204, -0.052188027650117874, 0.011842012405395508, 0.07180646806955338, -0.02727058343589306, -0.17394888401031494, -0.021526794880628586, -0.016691088676452637, 0.035977303981781006, 0.022092493250966072, -0.045563556253910065, -0.012487711384892464, 0.07664503157138824, 0.11933108419179916, -0.039039794355630875, 0.04906646907329559, -0.11199894547462463, 0.04371233284473419, 0.0028386914636939764, 0.04303811863064766, -0.08029476553201675, -0.09408888965845108, -0.12036599218845367, 0.03648124262690544, 0.0606747530400753, -0.12689842283725739, 0.04466443508863449, -0.003073196392506361, -0.010875722393393517], -bitcast:[-0.12138903886079788, 0.005011428613215685, 0.0657801404595375, -0.040101077407598495, -0.12281247973442078, 0.0350215807557106, -0.04636086896061897, -0.003071256447583437, 0.037135522812604904, 0.037981051951646805, 0.05670630931854248, 0.037853486835956573, 0.0220009945333004, -0.005780520848929882, 0.017890945076942444, -0.18934038281440735, 0.05050457641482353, -0.09975863993167877, 0.056285496801137924, -0.010774845257401466, 0.05095451697707176, 0.010673523880541325, 0.07760167121887207, 0.04871496558189392, -0.03318941220641136, -0.058539118617773056, 0.08264244347810745, -0.08276040107011795, 0.016012042760849, 0.10991497337818146, -0.00393838994204998, -0.07468653470277786, -0.13904143869876862, 0.01837082952260971, 0.13756150007247925, 0.0045091998763382435, 0.08647537976503372, 0.008767596445977688, -0.017504695802927017, 0.03569924831390381, -0.0020109086763113737, -0.08412202447652817, 0.07075405865907669, 0.0022680950351059437, 0.002855752594769001, -0.03140106797218323, -0.15985067188739777, 0.028904907405376434, -0.07953301072120667, -0.07539698481559753, 0.07547855377197266, -0.148252472281456, -0.053745485842227936, 0.02319968491792679, 0.15196019411087036, -0.03441653028130531, -0.040075335651636124, 0.08021064102649689, 0.008384987711906433, -0.06472126394510269, 0.04398147761821747, -0.17259079217910767, 0.1077621802687645, 0.028136122971773148, 0.02137605845928192, 0.01490222942084074, -0.1777523308992386, 0.01624130830168724, -0.0389566645026207, -0.11265049129724503, -0.051525454968214035, 0.07143747061491013, 0.1653158962726593, 0.14353708922863007, -0.02457314357161522, 0.06447172164916992, -0.00444937264546752, 0.006374485790729523, 0.031577467918395996, 0.0480167381465435, -0.0653730183839798, 0.010090349242091179, -0.03887152671813965, -0.10117164999246597, -0.15236926078796387, 0.03266149014234543, -0.07923563569784164, -0.08260305970907211, -0.020878711715340614, 0.05290091782808304, 0.059292618185281754, 0.006856083404272795, -0.002537056338042021, 0.006507534068077803, -0.0668940320611, 0.03971273452043533, -0.15908493101596832, -0.0034580181818455458, 0.050492897629737854, -0.16389711201190948, -0.08884212374687195, -0.025957632809877396, 0.007790788542479277, 0.0388217456638813, -0.13676640391349792, -0.15609604120254517, -0.12961047887802124, -0.02622578851878643, -0.002405153587460518, -0.015618246048688889, 0.12704680860042572, 0.042928580194711685, -0.05032133311033249, 0.07415854930877686, -0.02864825911819935, 0.017304683104157448, -0.04225336015224457, 0.02731974795460701, 0.10095777362585068, -0.05130999535322189, -0.02744545042514801, 0.011528818868100643, -0.11399920284748077, 0.05910103768110275, 0.0691557452082634, -0.012531304731965065, 0.003110698191449046, 0.0853283703327179, 0.03101101890206337, -0.023369936272501945, 0.027936510741710663, 0.06210968270897865, 0.0035423049703240395, 0.07617677003145218, -0.03592848405241966, 0.01345819141715765, -0.026030924171209335, -0.021267473697662354, 0.07308649271726608, 0.040853675454854965, 0.031017867848277092, -0.12176927924156189, -0.1043873131275177, 0.0021034074015915394, 0.06828559935092926, 0.07948634773492813, 0.08005042374134064, 0.006853001657873392, -0.016104621812701225, -0.00016441081243101507, -0.036382757127285004, 0.028168650344014168, 0.006056298967450857, 0.059862490743398666, 0.004410838708281517, 0.09348733723163605, -0.041915442794561386, 0.05349507927894592, -0.06588461995124817, 0.07897444069385529, -0.031228935346007347, -0.05560389533638954, -0.04757073149085045, 0.00027105375193059444, 0.025599218904972076, 0.07689590752124786, -0.07870682328939438, -0.02590208500623703, 0.0145345414057374, -0.07976239919662476, -0.035399097949266434, -0.02887869067490101, 0.13488100469112396, 0.0638202428817749, -0.148416206240654, -0.01544085331261158, 0.056199800223112106, 0.026891309767961502, 0.07987020909786224, 0.15007922053337097, -0.10868798941373825, -0.023533549159765244, 0.07126369327306747, -0.02518194355070591, -0.11573846638202667, -0.03553015738725662, 0.027569038793444633, 0.14212727546691895, -0.06498303264379501, 0.008234133943915367, -0.06950242072343826, 0.011232021264731884, -0.10124856978654861, -0.0672709196805954, -0.0882648453116417, 0.03225237503647804, -0.18565736711025238, -0.030360624194145203, -0.04966674745082855, 0.06051240861415863, 0.02642490342259407, 0.023867493495345116, 0.023043695837259293, 0.03294370323419571, 0.20052675902843475, -0.08582372218370438, -0.04587245360016823, 0.1670517921447754, 0.06625036150217056, -0.08197534084320068, 0.09653591364622116, 0.025561215355992317, -0.09076450765132904, -0.001012194436043501, -0.02353838086128235, 0.08797120302915573, 0.046326860785484314, 0.06462275981903076, -0.018551530316472054, 0.06301750987768173, 0.023470858111977577, 0.006493683904409409, -0.007689328398555517, 0.022366587072610855, -0.0730121061205864, 0.05839855596423149, -0.0480952262878418, -0.026255324482917786, -0.23268821835517883, -0.01780308596789837, -0.03764607757329941, 0.13030722737312317, -0.11783479154109955, 0.013355002738535404, -0.014560756273567677, -0.03456564247608185, 0.029183175414800644, 0.0024052849039435387, 0.07011058926582336, -0.0015612217830494046, -0.04053599014878273, 0.011117292568087578, -0.07063493877649307, -0.11808646470308304, 0.05342041328549385, -0.16479401290416718, -0.20966589450836182, -0.019843876361846924, 0.18410508334636688, -0.01903996616601944, 0.0018044882453978062, 0.06467613577842712, 0.11248242110013962, -0.007641572505235672, -0.024291185662150383, 0.026858074590563774, -0.06957095116376877, 0.08111228048801422, 0.03926561772823334, 0.11248623579740524, 0.001414769096300006, -0.0009342004195787013, 0.0465690903365612, -0.01538862381130457, -0.09511072188615799, 0.18779048323631287, 0.011268037371337414, 0.026393713429570198, 0.07159841060638428, 0.07319649308919907, 0.08716252446174622, 0.10884729027748108, -0.05094330012798309, -0.07904687523841858, -0.049212418496608734, 0.148336723446846, 0.14410126209259033, -0.05783521384000778, -0.11718049645423889, -0.01157120056450367, -0.039770860224962234, -0.013331769965589046, 0.03163537010550499, 0.2024085819721222, 0.010052962228655815, -0.03775632753968239, 0.0014479137025773525, -0.09925603866577148, 0.05862172693014145, 0.005947052501142025, -0.014360119588673115, -0.06418053060770035, -0.034638598561286926, 0.03668540343642235, 0.03612775728106499, 0.08963111788034439, -0.073591448366642, -0.04050755500793457, 8.105543383862823e-05, -0.08508603274822235], -br:[-0.05737967789173126, 0.06626128405332565, 0.07728912681341171, 0.11733917146921158, -0.12302500754594803, 0.012445813044905663, -0.08742617815732956, -0.09374766051769257, 0.030912009999155998, -0.0228287223726511, 0.10035628080368042, -0.06602630019187927, -0.024479296058416367, -0.042538486421108246, 0.031710997223854065, -0.18844425678253174, 0.0438079871237278, -0.006549856159836054, -0.048020608723163605, -0.009497292339801788, -0.047945912927389145, -0.057019349187612534, -0.03185499459505081, -0.1287950575351715, -0.011978430673480034, -0.02530687116086483, 0.025615358725190163, 0.06562568992376328, -0.10258234292268753, -0.13278944790363312, 0.019388556480407715, 0.008611494675278664, -0.10162083804607391, 0.04019328951835632, -0.05059973523020744, -0.027124829590320587, 0.12579233944416046, 0.00464268121868372, -0.014328625053167343, -0.11781616508960724, 0.08241955935955048, 0.11551253497600555, 0.03659312427043915, -0.03195139765739441, -0.01967090554535389, 0.01188619527965784, -0.04653780907392502, 0.041670121252536774, -0.12056167423725128, -0.005689351819455624, 0.09086916595697403, 0.06429735571146011, 0.07674857974052429, 0.024715669453144073, 0.20133796334266663, 0.03250465169548988, 0.0876372829079628, -0.14309751987457275, 0.024672266095876694, -0.002270383294671774, 0.08052356541156769, -0.029657309874892235, 0.026800110936164856, -0.034544289112091064, 0.08792553842067719, 0.007494911085814238, 0.14719168841838837, -0.000582359847612679, 0.13708417117595673, -0.022554658353328705, -0.02238360606133938, -0.0722411647439003, 0.008769826963543892, 0.015866734087467194, 0.14948514103889465, 0.038138121366500854, 0.0351870134472847, -0.01803431287407875, 0.032945189625024796, 0.0435621477663517, 0.09952378273010254, 0.005576170515269041, -0.04246608540415764, -0.06953936815261841, -0.022807631641626358, -0.01676095463335514, 0.021193552762269974, -0.028308149427175522, 0.03505439683794975, -0.007068433798849583, 0.10816658288240433, -0.13065862655639648, 0.029718395322561264, 0.01789986900985241, -0.03826092556118965, -0.024951905012130737, -0.05982542783021927, -0.06428825855255127, -0.13127875328063965, 0.04237135872244835, -0.02964627742767334, -0.023182304576039314, 0.034211721271276474, 0.12216842919588089, -0.19366131722927094, -0.03421802073717117, 0.0351516418159008, -0.03114587441086769, -0.003956351429224014, -0.01216222159564495, 0.013557207770645618, -0.02074548974633217, 0.12118370831012726, 0.09392466396093369, -0.004045151174068451, -0.06612244993448257, 0.02758176252245903, -0.06116358935832977, -0.027512982487678528, -0.03891429677605629, 0.0037486122455447912, -0.0038214607629925013, 0.05612190067768097, 0.09810692816972733, -0.004450470674782991, -0.0030326785054057837, -0.06639813631772995, 0.005731203127652407, 0.028647370636463165, 0.07861027866601944, 0.025670966133475304, -0.1486697793006897, 0.0024178356397897005, 0.062206465750932693, -0.03230655565857887, -0.026308171451091766, -0.004660341888666153, -0.12948088347911835, 0.11054744571447372, 0.05792222544550896, -0.14703601598739624, 0.04968278855085373, -0.005793621297925711, -0.0005388769204728305, -0.08820109814405441, 0.07861334085464478, -0.0007983125397004187, 0.005660608410835266, 0.011955266818404198, -0.0071610682643949986, -0.06757548451423645, 0.023388691246509552, 0.0059950887225568295, 0.061967767775058746, -0.030842836946249008, -0.09147082269191742, 0.04811609536409378, -0.022938884794712067, 0.10128474980592728, -0.02009698934853077, -0.005222655367106199, -0.035148803144693375, -0.010294917039573193, 0.0018995767459273338, 0.006487853825092316, -0.003577808616682887, -0.05078408122062683, 0.008067648857831955, -0.09659075736999512, -0.1066083014011383, -0.10565647482872009, 0.0718170553445816, -0.03305673599243164, -0.04272766038775444, 0.03887036070227623, -0.03168163821101189, -0.11303285509347916, -0.03033200278878212, 0.2094290554523468, -0.11499689519405365, -0.05711798369884491, -0.027183260768651962, -0.022390784695744514, 0.002893072087317705, 0.24383996427059174, -0.046973105520009995, 0.004221140872687101, 0.03687738999724388, -0.09780820459127426, -0.043424688279628754, 0.14678195118904114, -0.1289098560810089, -0.11836161464452744, -0.03381022438406944, -0.0830535739660263, 0.01926661655306816, 0.0833539366722107, 0.09135475009679794, 0.0789286270737648, 0.00840279646217823, 0.01840399205684662, 0.024025719612836838, -0.025238322094082832, 0.054908107966184616, 0.051669176667928696, -0.06392960995435715, -0.044497616589069366, 0.059562500566244125, -0.03609262406826019, -0.04748939722776413, 0.017978493124246597, 0.0733058750629425, 0.08827544003725052, -0.014446440152823925, -0.025838090106844902, 0.013025441206991673, 0.11622267216444016, -0.029864853248000145, -0.16231201589107513, -0.059076398611068726, 0.016526779159903526, 0.02324666641652584, -0.012527015060186386, 0.07886228710412979, -0.023161806166172028, 0.1569107621908188, -0.06044699251651764, -0.02047055959701538, 0.10314133763313293, 0.0017165037570521235, -0.02935430407524109, 0.10579805076122284, -0.04528014361858368, -0.0008679099846631289, -0.01904948242008686, 0.03919342905282974, 0.00039417954394593835, -0.012689122930169106, 0.08430608361959457, 0.002991601126268506, -0.020313242450356483, -0.051224417984485626, -0.0432790145277977, -0.13505089282989502, -0.005454034544527531, -0.23609650135040283, 0.014177418313920498, -0.08883286267518997, -0.02594536915421486, -0.02941104769706726, -0.013259953819215298, 0.007376458495855331, 0.09809903800487518, -0.006158578209578991, -0.09077821671962738, -0.07450046390295029, -0.08367480337619781, 0.07540100812911987, -0.05041757598519325, -0.016909582540392876, -0.008120936341583729, -0.056564029306173325, -0.20631258189678192, 0.037131164222955704, -0.08916550874710083, -0.0738765075802803, 0.014136919751763344, 0.004595306236296892, -0.03867592662572861, -0.04391453415155411, 0.1632920801639557, 0.08625666797161102, -0.01635873317718506, 0.13411317765712738, 0.058914557099342346, -0.0804242342710495, 0.007141259033232927, -0.01612749882042408, 0.055157121270895004, -0.11448598653078079, -0.04831912741065025, -0.0735398679971695, -0.06994666904211044, 0.1598924994468689, -0.007735610939562321, 0.1631036251783371, 0.019893774762749672, 0.029789822176098824, -0.046047963201999664, -0.02809545211493969, 0.01009384635835886, -0.06432230770587921, -0.03520050272345543, 0.002991318702697754, 0.04251488670706749, 0.03785604238510132, -0.031111471354961395, 0.06923335045576096, -0.13223089277744293, 0.049564313143491745], -call:[0.10303764790296555, 0.04782925918698311, 0.07247087359428406, -0.029217438772320747, -0.00022510153939947486, -0.050514984875917435, -0.02973325364291668, -0.19639736413955688, 0.12533392012119293, 0.026823746040463448, 0.05413331463932991, -0.016709163784980774, 0.028592003509402275, -0.01125031616538763, 0.021978596225380898, 0.053716566413640976, 0.038580313324928284, 0.0050215148366987705, 0.0067423018626868725, -0.011198769323527813, 0.039649851620197296, 0.16308879852294922, -0.06039778143167496, 0.0823979303240776, -0.029651306569576263, -0.12954449653625488, -0.07595275342464447, 0.06542877107858658, 0.15831248462200165, -0.0378539003431797, -0.0049195257015526295, -0.059429336339235306, 0.03045196458697319, 0.016178559511899948, -0.03389202430844307, -0.014105502516031265, 0.026704484596848488, -0.0344395712018013, -0.18091148138046265, -0.007813607342541218, -0.08988755196332932, 0.014921141788363457, 0.08121253550052643, -0.018172262236475945, 0.0066106063313782215, -0.12052267789840698, 0.06124366447329521, 0.017111139371991158, 0.0701839029788971, 0.02104930579662323, -0.06125711649656296, 0.1740492582321167, 0.0904480516910553, 0.020367726683616638, 0.03791213408112526, -0.0658218264579773, -0.05819880962371826, 0.027413368225097656, 0.015825478360056877, 0.17706137895584106, 0.009872907772660255, 0.04235759377479553, -0.009911483153700829, -0.034676045179367065, 0.03793547302484512, 0.009067664854228497, -0.05065244436264038, -0.0012354246573522687, -0.01138952374458313, 0.027773255482316017, -0.018321579322218895, 0.035253360867500305, 0.030326901003718376, -0.027275539934635162, -0.20091380178928375, 0.056044142693281174, 0.015011318027973175, -0.007900465279817581, 0.018553121015429497, 0.016695039346814156, 0.08710088580846786, 0.006372293457388878, -0.04669107496738434, -0.08811274915933609, 0.07901231199502945, 0.17750728130340576, -0.06257164478302002, -0.026610033586621284, -0.09284753352403641, -0.061834920197725296, -0.06314662843942642, -0.03112974390387535, 0.0455070324242115, 0.0073384977877140045, -0.12646344304084778, 0.06335795670747757, -0.1393481194972992, -0.025812648236751556, -0.06244777515530586, -0.08688272535800934, -0.06581079214811325, -0.028696779161691666, 0.007781879510730505, -0.13177724182605743, 0.11340469866991043, 0.005730049684643745, 0.0688333809375763, -0.0278145931661129, 0.021662946790456772, -0.032860979437828064, 0.005552921909838915, 0.08946789801120758, -0.03526768833398819, 0.19269995391368866, 0.03844837471842766, -0.035060856491327286, 0.0007708660559728742, 0.05591338127851486, -0.15500761568546295, -0.057382483035326004, 0.012411415576934814, 0.010021274909377098, 0.042775221168994904, 0.05205032601952553, 0.0496792234480381, -0.012394119054079056, -0.02513098157942295, 0.10336471349000931, 0.00781079800799489, 0.08209879696369171, 0.020649032667279243, -0.013279645703732967, -0.010583875700831413, 0.03303070366382599, 0.019437802955508232, -0.09520068764686584, -0.022312656044960022, 0.029873676598072052, 0.07608415931463242, -0.08323585987091064, 0.08863379061222076, -0.08341345191001892, 0.010642360895872116, 0.06849402189254761, 0.04267383739352226, -0.08715398609638214, 0.08067433536052704, 0.009170343168079853, 0.007107336539775133, 0.03403467684984207, 0.09932307153940201, 0.0158727765083313, 0.0075017549097537994, -0.11980876326560974, 0.053821250796318054, 0.0076923309825360775, -0.04775188863277435, 0.029571054503321648, -0.03428663685917854, 0.018102319911122322, -0.03614046797156334, -0.02919953316450119, 0.028137901797890663, 0.020934907719492912, -0.030035948380827904, -0.015496927313506603, -0.07092195749282837, -0.005540092941373587, -0.07351797819137573, -0.06913545727729797, -0.11084987968206406, -0.06080552935600281, -0.038794614374637604, -0.03890608623623848, -0.005149404518306255, 0.042799703776836395, -0.11645692586898804, -0.015918591991066933, 0.028067972511053085, 0.021319756284356117, -0.02153945155441761, 0.08392174541950226, -0.14507640898227692, 0.009059959091246128, 0.011430216953158379, -0.0705188438296318, 0.07186669111251831, 0.1624954491853714, 0.013849368318915367, -0.03402689844369888, 0.10138626396656036, 0.02892134338617325, -0.1564711332321167, -0.09195970743894577, 0.013853511773049831, 0.04651283100247383, 0.04742314666509628, -0.22826209664344788, -0.04425802081823349, 0.00863908976316452, -0.018912935629487038, 0.0263308584690094, -0.05938221886754036, 0.014461302198469639, -0.0016798452707007527, 0.12251917272806168, 0.14213727414608002, -0.02264820784330368, -0.08012611418962479, -0.06656227260828018, 0.13257411122322083, -0.002135480521246791, 0.05306685343384743, -0.04124723747372627, -0.010837982408702374, -0.05197222903370857, 0.13849003612995148, -0.0703643411397934, -0.02200746163725853, 0.09397324919700623, 0.008831258863210678, 0.07505540549755096, -0.039993301033973694, 0.002591789001598954, -0.053220972418785095, 0.042940329760313034, 0.08343761414289474, 0.023675132542848587, 0.1992531567811966, -0.022836750373244286, -0.04232660308480263, 0.03294290229678154, -0.05777720734477043, -0.0006297550862655044, -0.022762052714824677, -0.1108236089348793, -0.10069828480482101, 0.05604815483093262, 0.007580872625112534, 0.005070047918707132, -0.05040162801742554, -0.02838215045630932, -0.024563124403357506, -0.09197964519262314, 0.01278182677924633, 0.09430427104234695, -0.08336187899112701, 0.0019336033146828413, 0.010578370653092861, -0.026520024985074997, 0.05549332872033119, 0.06984447687864304, 0.0883791595697403, -0.11938080936670303, 0.03364894539117813, -0.1257621794939041, -0.03237640857696533, -0.03321050480008125, 0.04278315603733063, 0.1052105650305748, 0.009743893519043922, -0.060733016580343246, 0.037785496562719345, 0.0466599315404892, -0.05493348091840744, -0.14182211458683014, 0.012705545872449875, -0.14817455410957336, -0.03243473917245865, -0.11609364300966263, 0.1452261060476303, -0.06203577294945717, -0.048337068408727646, 0.024489615112543106, 0.011359252035617828, 0.11786223202943802, -0.09740929305553436, -0.03347493335604668, -0.09207309037446976, 0.047243621200323105, 0.09401758760213852, -0.03429175913333893, -0.004838538356125355, 0.00497747678309679, -0.05508868768811226, 0.17215196788311005, -0.022016922011971474, 0.041844435036182404, -0.036212146282196045, -0.013676469214260578, -0.006205437239259481, -0.1347997635602951, -0.047410495579242706, 0.05523346737027168, 0.05154629051685333, 0.019890695810317993, -0.08136116713285446, -0.06384290009737015, 0.0006217851769179106, -0.019466426223516464], -cmpxchg:[0.005532461684197187, -0.12646307051181793, 0.0948920026421547, -0.06271747499704361, -0.13159668445587158, -0.16445991396903992, -0.0005538091063499451, 0.05483882129192352, -0.09808825701475143, -0.11569954454898834, -0.05567152053117752, -0.022209933027625084, -0.09405107796192169, -0.09621234983205795, 0.0575963631272316, 0.01912037655711174, -0.029279692098498344, 0.029276203364133835, -0.017759067937731743, 0.12646828591823578, -0.030661441385746002, 0.08429226279258728, 0.006511756684631109, 0.11493691802024841, 0.029183583334088326, -0.10920237004756927, -0.11551012843847275, -0.05972700193524361, 0.1299717277288437, 0.056451719254255295, -0.08324474096298218, 0.09926550090312958, -0.08980726450681686, 0.06636647135019302, -0.06161394715309143, 0.007695057429373264, 0.08270701766014099, -0.10287245362997055, 0.02679046243429184, -0.10973681509494781, 0.05718458443880081, -0.02805183455348015, -0.0370996929705143, 0.026826536282896996, 0.15133315324783325, -0.1232144683599472, 0.0024402188137173653, 0.01379306335002184, -0.00600955355912447, -0.013549593277275562, -0.045449696481227875, 0.18648318946361542, 0.10815891623497009, 0.03299221023917198, 0.09442762285470963, 0.09028226882219315, -0.0767815038561821, -0.0023150891065597534, -0.0078105684369802475, 0.07005150616168976, 0.0033925187308341265, -0.07423444092273712, -0.05398505926132202, -0.03008824959397316, 0.058874644339084625, -0.05986583232879639, 0.03560657426714897, 0.057958293706178665, 0.10607926547527313, -0.161955326795578, -0.0007829243550077081, -0.0883849635720253, 0.03653793781995773, 0.0820237472653389, 0.1296987384557724, -0.029596062377095222, 0.0017684552585706115, 0.03641943633556366, 0.1338147521018982, -0.02042395807802677, 0.03258233517408371, -0.017014553770422935, -0.06067412719130516, 0.025444500148296356, -0.04528898000717163, -0.029118608683347702, -0.13598544895648956, 0.07081059366464615, 0.035537898540496826, -0.039303891360759735, 0.02598648890852928, -0.039227526634931564, 0.10875534266233444, -0.06697805970907211, -0.07736754417419434, 0.030522409826517105, -0.0005109963240101933, -0.10285614430904388, 0.0797910988330841, 0.04067735746502876, 0.011186649091541767, -0.007513238117098808, -0.017093652859330177, -0.04612008109688759, -0.08421645313501358, -0.057405948638916016, 0.07544685900211334, -0.1595975011587143, -0.06000000610947609, 0.08070171624422073, 0.006822123192250729, -0.04209153726696968, 0.047686100006103516, 0.08478766679763794, -0.041993606835603714, -0.06253454089164734, -0.01217599119991064, -0.04013977199792862, -0.014909505844116211, -0.0226912721991539, -0.04684586450457573, -0.01211322471499443, 0.06787936389446259, -0.0030095726251602173, -0.003533603623509407, 0.07260565459728241, 0.07508311420679092, -0.07579837739467621, 0.06111367791891098, -0.06001170724630356, -0.1102629080414772, -0.0840890184044838, 0.07111117988824844, 0.06573855131864548, 0.04438130557537079, -0.07456611841917038, 0.09904244542121887, -0.02983364835381508, 0.015289154835045338, 0.007461425382643938, -0.03674394264817238, 0.12730328738689423, 0.02646334283053875, -0.004170226398855448, -0.06595205515623093, -0.009140332229435444, 0.07644706219434738, -0.13513191044330597, 0.014125514775514603, 0.01003149151802063, 0.01307377777993679, 0.007913274690508842, 0.10291008651256561, -0.03370632603764534, 0.008820230141282082, 0.04864852502942085, -0.0013791293604299426, -0.09561698883771896, 0.0679081529378891, 0.03977283462882042, -0.14413492381572723, 0.05067402496933937, 0.01017516478896141, -0.02460384927690029, -0.14934392273426056, 0.06001745164394379, -0.047287311404943466, 0.021280745044350624, 0.08857424557209015, -0.06939426809549332, -0.12867939472198486, -0.15602916479110718, 0.07871720939874649, 0.018508311361074448, -0.06926076859235764, 0.06715640425682068, 0.007390066981315613, -0.1379675567150116, -0.012006972916424274, -0.0008958489052020013, -0.07715283334255219, 0.0337098054587841, -0.0571356825530529, -0.1332695037126541, 0.03088400699198246, -0.06391855329275131, -0.0538761131465435, 0.047929681837558746, 0.10279626399278641, -0.08216237276792526, 0.08268102258443832, -0.07186101377010345, 0.04528253152966499, -0.06192496046423912, -0.0998939648270607, 0.03375812619924545, 0.06223350390791893, 0.07009793072938919, 0.054431650787591934, -0.12401308864355087, 0.01761399582028389, -0.013875865377485752, -0.12315629422664642, 0.023155374452471733, -0.05773165822029114, 0.02043524943292141, -0.016223657876253128, 0.004234701860696077, -0.09368559718132019, 0.056096527725458145, 0.10606518387794495, 0.06597655266523361, 0.040137313306331635, -0.034900031983852386, -0.022230081260204315, 0.02206203155219555, -0.0834764838218689, 0.010286089964210987, -0.08298160880804062, 0.07452606409788132, -0.07595783472061157, 0.06738012284040451, -0.046781133860349655, 0.023260941728949547, 0.07709421217441559, 0.046314019709825516, -0.0049847946502268314, -0.12843483686447144, 0.10968872159719467, -0.057638898491859436, 0.10495232045650482, 0.031562689691782, -0.000546000839676708, 0.05192358046770096, -0.01222192868590355, -0.16251015663146973, -0.11375930160284042, -0.1291564404964447, 0.030952857807278633, 0.00913025438785553, -0.04641775041818619, -0.023391656577587128, -0.0328591987490654, 0.14519985020160675, -0.028856927528977394, 0.003892372827976942, -0.10096728056669235, -0.01331953052431345, -0.035745613276958466, 0.07273921370506287, 0.019089050590991974, 0.07377562671899796, 0.11686277389526367, -0.01720215193927288, -0.10004040598869324, 0.03520526364445686, -0.06915855407714844, 0.12379194796085358, -0.039049312472343445, 0.05009769648313522, 0.07395754754543304, 0.16248343884944916, 0.03042321838438511, -0.06484922766685486, -0.042047787457704544, 0.019556870684027672, -0.1165538877248764, 0.09725109487771988, -0.029258085414767265, 0.06569415330886841, 0.043284397572278976, -0.03076959028840065, 0.014310883358120918, -0.08514288067817688, -0.030983826145529747, -0.010588307864964008, -0.027230825275182724, 0.004070415161550045, -0.08899212628602982, 0.10718054324388504, 0.09277074784040451, -0.04314379021525383, -0.0811188742518425, 0.057007744908332825, -0.10758231580257416, -0.0039725457318127155, 0.11416345089673996, -0.029147854074835777, -0.0481756217777729, 0.14240948855876923, 0.07830387353897095, -0.08987999707460403, -0.04230114817619324, -0.031195348128676414, 0.03511456027626991, 0.043251439929008484, -0.12617073953151703, -0.006240527145564556, -0.00193393777590245, 0.09414058178663254], -constant:[-0.0006598231848329306, -0.04659263417124748, -0.02674289233982563, -0.004045642912387848, -0.06262098252773285, -0.1350538283586502, -0.06494303792715073, -0.12139475345611572, -0.006200788076967001, -0.048621874302625656, 0.07804694026708603, -0.04245661199092865, -0.012721024453639984, 0.059932757169008255, 0.09100978076457977, 0.09860589355230331, 0.0900224968791008, -0.06267797201871872, 0.04329216107726097, -0.07875144481658936, -0.026341522112488747, 0.07756564021110535, 0.030476173385977745, 0.02840528078377247, 0.06359466910362244, -0.07281117886304855, -0.044882677495479584, 0.013660145923495293, -0.04875116050243378, 0.0297903623431921, 0.05045890063047409, -0.009776528924703598, -0.05714336410164833, -0.05078016221523285, 0.04066969454288483, 0.07935775816440582, 0.06611105054616928, -0.09921688586473465, -0.11535828560590744, 0.129628524184227, -0.0426410511136055, 0.028552230447530746, 0.04400554671883583, -0.04198643937706947, 0.05636672303080559, 0.05455242097377777, 0.07561850547790527, 0.12117552012205124, -0.029948152601718903, -0.032470475882291794, -0.07779798656702042, 0.11914119124412537, 0.014119213446974754, 0.004352386575192213, 0.007203475572168827, 0.00036595790879800916, -0.005372075829654932, -0.08872271329164505, -0.12799736857414246, 0.08646705746650696, -0.09130287170410156, -0.04348217695951462, -0.06296280026435852, 0.05038512125611305, -0.03274188190698624, 0.0947476401925087, -0.07373961061239243, 0.0611901618540287, 0.0641268640756607, 0.08163823187351227, 0.08554469048976898, -0.02612602524459362, -0.05839772894978523, 0.0668516457080841, -0.03007659502327442, -0.04467080533504486, -0.06982019543647766, 0.10183703899383545, -0.04949859529733658, -0.13348259031772614, 0.03734173998236656, 0.07146990299224854, -0.06855171173810959, 0.018995340913534164, -0.000605945591814816, 0.017370671033859253, 0.0059949373826384544, -0.11013093590736389, -0.027285316959023476, 0.028623759746551514, -0.06426627933979034, -0.07028763741254807, 0.023897575214505196, -0.07085135579109192, -0.044710543006658554, -0.03409793600440025, 0.012148845009505749, -0.041983846575021744, -0.08987778425216675, -0.04328140988945961, 0.04194053262472153, 0.056517601013183594, 0.03123977780342102, -0.03810665383934975, 0.06454400718212128, -0.025641953572630882, 0.03305355831980705, 0.05219219997525215, -0.05790252238512039, -0.08021672815084457, 0.024000760167837143, 0.11992890387773514, -0.01769883558154106, 0.13860975205898285, -0.018252292647957802, 0.017742304131388664, -0.0752037763595581, -0.0216037780046463, -0.10080000013113022, 0.0772172212600708, 0.06581652164459229, 0.07547014206647873, 0.018148794770240784, 0.15413036942481995, -0.06628093123435974, 0.06239699199795723, -0.10531488806009293, -0.04112524166703224, 0.09354373812675476, 0.01246250793337822, 0.10164224356412888, -0.039293091744184494, -0.08833784610033035, 0.027386700734496117, -0.03873367980122566, 0.03716905415058136, -0.08950842916965485, 0.03462021052837372, 0.14182817935943604, 0.03421623259782791, 0.022868867963552475, -0.03830987587571144, -0.01883152313530445, 0.09158270061016083, -0.03870423510670662, -0.038599297404289246, -0.03346233442425728, -0.07570890337228775, -0.09333846718072891, 0.14117427170276642, 0.112021803855896, -0.01749337837100029, 0.06132593750953674, -0.09349175542593002, 0.08884453773498535, -0.004602984990924597, 0.013957018032670021, -0.08970179408788681, 0.10395767539739609, 0.017623038962483406, -0.09832511097192764, 0.04812033101916313, -0.04787134751677513, -0.08013935387134552, 0.12175638973712921, -0.010282885283231735, 0.01615593396127224, 0.09701693803071976, -0.04747748747467995, -0.017644887790083885, -0.04285406321287155, 0.03598377853631973, -0.008025062270462513, -0.10348121076822281, -0.015094486065208912, -0.018769575282931328, -0.05300914868712425, -0.10482979565858841, 0.03735421225428581, 0.023164018988609314, -0.077207550406456, 0.023805851116776466, -0.0991934984922409, -0.03906434401869774, 0.02507736161351204, 0.0444377139210701, 0.10586261749267578, 0.11710503697395325, 0.0754467323422432, 0.02061770297586918, 0.04586239531636238, 0.14471140503883362, -0.17395621538162231, 0.017097268253564835, -0.023268122225999832, 0.09931579232215881, -0.013629463501274586, -0.10582184046506882, -0.021729566156864166, -0.017459673807024956, -0.03150227293372154, -0.08436132222414017, -0.04911380261182785, 0.11397290229797363, 0.007339281029999256, 0.08697261661291122, 0.014672581106424332, 0.03276556730270386, -0.11820454895496368, 0.0307397972792387, 0.04773195460438728, -0.015976155176758766, -0.0019450793042778969, 0.08692756295204163, -0.08028499782085419, 0.009274288080632687, -0.005514069925993681, -0.025975294411182404, 0.10130397975444794, 0.052045583724975586, -0.06459210067987442, 0.029987862333655357, 0.07606746256351471, 0.059558045119047165, 0.017079321667551994, 0.03134113922715187, 0.038933128118515015, 0.09359711408615112, 0.16218595206737518, -0.030289817601442337, -0.11225982755422592, -0.01846541464328766, 0.07721585035324097, 0.09018866717815399, -0.0867610052227974, -0.10090245306491852, -0.022391999140381813, -0.08999315649271011, -0.008563611656427383, 0.04173487424850464, -0.1463041752576828, 0.015851391479372978, 0.05446905270218849, -0.011324094608426094, 0.11169540882110596, 0.0660322830080986, -0.10073407739400864, -0.11723607778549194, -0.014967148192226887, 0.06428015977144241, 0.11541851609945297, 0.020475799217820168, -0.022519269958138466, -0.0630905032157898, 0.012713364325463772, -0.08729863166809082, 0.030493050813674927, -0.003632632549852133, 0.04489973187446594, -0.08304641395807266, -0.0626167580485344, 0.03951619192957878, -0.03483936935663223, 0.08253346383571625, -0.1206643208861351, -0.09341436624526978, -0.054609041661024094, -0.07891160249710083, -0.0890272781252861, -0.06828589737415314, 0.12066534906625748, 0.018203815445303917, -0.08069317042827606, 0.09628839045763016, 0.018984004855155945, 0.048012491315603256, 0.07581734657287598, -0.09647637605667114, -0.014907559379935265, -0.018989548087120056, 0.04133834317326546, -0.0057907323352992535, -0.06241053715348244, 0.04197373613715172, 0.02662389911711216, 0.16274331510066986, 0.05925067514181137, -0.02335451915860176, 0.027793990448117256, -0.06777684390544891, -0.007547539193183184, -0.02563444897532463, 0.043394796550273895, -0.020660821348428726, 0.08762261271476746, -0.07568492740392685, 0.03500332683324814, -0.04465078189969063, 0.057418521493673325, -0.07456139475107193], -extractelement:[0.0011421394301578403, 0.06038704887032509, -0.14562106132507324, 0.08838178962469101, -0.18583324551582336, -0.007710285950452089, 0.04082059860229492, -0.11530430614948273, 0.031142372637987137, -0.08922305703163147, 0.0486714243888855, 0.03495676442980766, -0.061914440244436264, -0.023027712479233742, -0.019866282120347023, -0.1945367008447647, -0.03925222158432007, 0.011252413503825665, 0.0016971895238384604, 0.13281525671482086, 0.025447120890021324, -0.05502736568450928, -0.1684180349111557, -0.016217907890677452, 0.001757324207574129, -0.036208752542734146, -0.05485038831830025, 0.07795725017786026, -0.009466730989515781, 0.0813649445772171, -0.04866737499833107, 0.05407160148024559, 0.0315374955534935, -0.025666171684861183, 0.044941339641809464, -0.03595159947872162, -0.03502571955323219, 0.040924716740846634, -0.07443426549434662, 0.006688152905553579, 0.013792329467833042, 0.06082744523882866, 0.14218784868717194, 0.027495548129081726, -0.10631278157234192, -0.04706323891878128, -0.03769971430301666, 0.0416952446103096, 0.07273879647254944, -0.046942807734012604, 0.029407592490315437, -0.17523492872714996, 0.0989595577120781, 0.042488690465688705, -0.010808623395860195, -0.003636399284005165, -0.0016155854100361466, 0.09855352342128754, -0.046642981469631195, 0.02443760819733143, -0.014173447154462337, 0.0207210760563612, 0.05829084292054176, -0.004601492080837488, -0.05033748969435692, 0.018128296360373497, -0.0034788851626217365, 0.005899288225919008, 0.1431824266910553, 0.050606634467840195, -0.06914324313402176, -0.03725802153348923, 0.005109712947160006, -0.06081678345799446, 0.035565607249736786, 0.03349630907177925, 0.15809790790081024, -0.02462281845510006, -0.026973489671945572, 0.13485018908977509, -0.014251180924475193, 0.006293227430433035, -0.03301887959241867, 0.03766639903187752, 0.07518574595451355, -0.05901503562927246, 0.1437210887670517, 0.06493307650089264, 0.010816155932843685, -0.09412959963083267, -0.0008429918671026826, -0.02251448854804039, -0.026032596826553345, -0.02233334816992283, -0.043002936989068985, -0.15910403430461884, 0.014591521583497524, 0.008142415434122086, -0.03368598595261574, -0.001952612423337996, -0.005188068840652704, -0.01645384356379509, 0.026804305613040924, 0.03573032096028328, 0.005087650381028652, -0.07737866789102554, 0.0012727909488603473, -0.026660131290555, -0.12351378053426743, -0.09866197407245636, -0.02529686503112316, 0.06178760901093483, -0.0815439522266388, 0.005695170257240534, -0.0015338858356699347, 0.021142777055501938, 0.04138454049825668, -0.033992063254117966, -0.13760598003864288, 0.08443473279476166, 0.033572372049093246, -0.14703980088233948, -0.02355780079960823, -0.05987907201051712, -0.008552266284823418, -0.007461917586624622, 0.007428291253745556, 0.08890365064144135, 0.010580308735370636, -0.04766475036740303, 0.024854272603988647, 0.0849170982837677, -0.02331746183335781, -0.02734205685555935, -0.03763752058148384, -0.11459463089704514, -0.014682569541037083, 0.06453509628772736, 0.0642373189330101, -0.016714822500944138, -0.015268911607563496, -0.034588705748319626, -0.0706520602107048, 0.0419282391667366, -0.15612304210662842, -0.03074813261628151, 0.03028225712478161, 0.027087517082691193, -0.017351044341921806, 0.08865159749984741, -0.1050531193614006, -0.012279348447918892, 0.0010953951859846711, -0.033194649964571, 0.00820526946336031, 0.08430972695350647, -0.05232048034667969, 0.043461039662361145, 0.05134773254394531, 0.00028927141102030873, -0.13574570417404175, -0.01100932527333498, 0.02747693844139576, -0.07686842978000641, -0.016372116282582283, -0.0006166285602375865, -0.06009557470679283, 9.957799920812249e-05, 0.060166239738464355, 0.03306183964014053, 0.016741670668125153, -0.031027713790535927, 0.15216773748397827, -0.0032177993562072515, 0.09057441353797913, 0.021591469645500183, -0.1380280703306198, -0.02506755292415619, 0.06700807064771652, -0.010641193017363548, 0.0382610559463501, -0.06798163801431656, -0.09585273265838623, -0.028407754376530647, -0.0005395496846176684, -0.07320424169301987, 0.11904852837324142, 0.021788520738482475, -0.005690344609320164, 0.13926087319850922, 0.005804557353258133, 0.04891148582100868, 0.022899294272065163, 0.0023644380271434784, 0.035230476409196854, 0.06590095907449722, -0.05544934794306755, -0.04303912818431854, -0.04167445749044418, -0.017171332612633705, 0.029636366292834282, 0.06827495247125626, -0.009013407863676548, 0.024386906996369362, 0.10100612044334412, 0.012956858612596989, -0.003623977303504944, 0.012657434679567814, 0.019740082323551178, -0.03621082380414009, -0.005076090805232525, -0.06224793195724487, 0.03454756736755371, -0.021199950948357582, 0.00858707819133997, 0.11593906581401825, -0.1615210473537445, 0.07630287855863571, 0.027186594903469086, -0.0067739831283688545, -0.002262305933982134, 0.08186852931976318, -0.01934586837887764, 0.0666504055261612, 0.13537396490573883, 0.0735521912574768, -0.10094481706619263, 0.05395426228642464, 0.18245801329612732, -0.08459210395812988, -0.03338973969221115, 0.02194049209356308, -0.04001104459166527, -0.010240969248116016, -0.0006217728368937969, -0.02924582175910473, -0.09058047086000443, 0.06640345603227615, 0.052088454365730286, -0.1655055582523346, -0.0287236999720335, 0.07183703035116196, -0.06172532960772514, 0.005815748590976, 0.0029910465236753225, -0.04697541147470474, -0.059053365141153336, 0.005248815752565861, -0.04418469965457916, -0.04711504280567169, -0.0049918340519070625, -0.060050129890441895, -0.06592201441526413, -0.10827743262052536, -0.08523190021514893, -0.14942292869091034, -0.026747779920697212, -0.09804561734199524, 0.14972200989723206, -0.05575042590498924, 0.031176473945379257, -0.024372898042201996, -0.018785836175084114, -0.03479406610131264, -0.04237276688218117, 0.032944463193416595, 0.011374643072485924, -0.026617923751473427, 0.05035625770688057, 0.033122528344392776, 0.15601575374603271, 0.014050108380615711, 0.0505659393966198, -0.14735929667949677, 0.1427675038576126, 0.03136465698480606, -0.10675986856222153, -0.06165304407477379, -0.04343004897236824, 0.08613228052854538, -0.04079166054725647, -0.1217183843255043, -0.003130716271698475, 0.19576802849769592, -0.04435470700263977, 0.07084174454212189, -0.019076794385910034, 0.08446460962295532, -0.0034383523743599653, -0.11609263718128204, -0.06288288533687592, 0.04423094913363457, -0.05787418782711029, 0.0402677096426487, 0.013031898997724056, 0.048048101365566254, -0.03407174348831177, 0.12232424318790436, -0.002783902222290635, -0.024036075919866562], -extractvalue:[0.0005106907919980586, -0.020480267703533173, 0.059371866285800934, -0.09307555854320526, -0.028466500341892242, 0.06105192005634308, 0.0425574854016304, -0.011877435259521008, 0.06666126847267151, 0.022940203547477722, 0.04131333902478218, 0.11924992501735687, 0.021433766931295395, -0.14762558043003082, 0.0625535398721695, 0.011300601996481419, 0.006910217460244894, -0.032307423651218414, -0.06966596841812134, -0.015138296410441399, -0.14021754264831543, -0.1656152456998825, 0.0368758887052536, -0.026683228090405464, 0.1470440924167633, 0.04022136703133583, -0.007637083996087313, -0.075157031416893, 0.01678960770368576, -0.029277486726641655, 0.008979701437056065, 0.11119382828474045, 0.014448797330260277, 0.05978778004646301, 0.13239574432373047, -0.010827045887708664, 0.04625924676656723, -0.03199946507811546, -0.04551418125629425, 0.011211952194571495, 0.00824443344026804, -0.12963555753231049, -0.03188484162092209, 0.19662027060985565, 0.06785576790571213, -0.0655105784535408, -0.10868553072214127, 0.03596288338303566, 0.02981262281537056, 0.03213811665773392, 0.009814424440264702, 0.04009794071316719, 0.013367083854973316, -0.0027428024914115667, -0.03166751191020012, 0.024587275460362434, -0.07377481460571289, -0.1065359115600586, -0.01711934618651867, -0.03815937042236328, 0.04003852978348732, -0.09509342163801193, 0.026103273034095764, -0.08991331607103348, 0.04781842604279518, 0.00858081690967083, -0.02320241741836071, 0.009708551689982414, -0.029298029839992523, 0.04687212035059929, -0.003930243197828531, 0.087389275431633, 0.049510084092617035, 0.04427330568432808, 0.010433514602482319, -0.03499146178364754, 0.11963914334774017, -0.062469687312841415, 0.10256876796483994, 0.003249041736125946, -0.043479595333337784, -0.008242406882345676, 0.028576849028468132, -0.0730268731713295, 0.1712825745344162, -0.08888714015483856, -0.01253610011190176, 0.006750497035682201, 0.10006299614906311, -0.049250997602939606, -0.02953927405178547, -0.06922736763954163, 0.025949304923415184, 0.01867426559329033, -0.22058795392513275, 0.01471862941980362, 0.018753541633486748, -0.09461367130279541, 0.011274171993136406, -0.1039733737707138, -0.00791533850133419, -0.041186727583408356, 0.01036357693374157, 0.021201251074671745, -0.002962064230814576, 0.08329010009765625, 0.025137675926089287, 0.0991605594754219, 0.02924671582877636, 0.0017176398541778326, -0.03502810373902321, 0.03398394584655762, -0.06194882467389107, 0.06847762316465378, 0.023803774267435074, -0.01323623862117529, 0.07257401943206787, 0.054469119757413864, -0.0020894063636660576, -0.036336496472358704, -0.05809978023171425, 0.05788715183734894, 0.16731210052967072, 0.0939052626490593, -0.07361695170402527, 0.10259917378425598, 0.150129035115242, 0.0007810703245922923, -0.004510089755058289, 0.04155762121081352, 0.02767224609851837, -0.16842103004455566, -0.006550639867782593, 0.15638497471809387, 0.031308576464653015, -0.065361887216568, -0.010766088962554932, -0.059092044830322266, 0.07825074344873428, -0.03268823027610779, -0.16443996131420135, -0.006452873814851046, 0.07879035174846649, -0.1327989399433136, 0.09989189356565475, -0.12939919531345367, 0.05348772928118706, 0.004460169468075037, 0.021835925057530403, 0.020290978252887726, 0.078814797103405, 0.0005613011308014393, 0.014739799313247204, -0.0312691293656826, 0.030731189996004105, -0.00013890861009713262, -0.11571906507015228, -0.10268867760896683, -0.05056419223546982, -0.02024444378912449, 0.09343461692333221, -0.024816660210490227, -0.0593603141605854, -0.00510429497808218, 0.008465364575386047, -0.16871652007102966, -0.08465737849473953, 0.014426913112401962, -0.08583872765302658, -0.07672470062971115, 0.027808114886283875, -0.1581503450870514, 0.005189770832657814, -0.06645091623067856, 0.03951288014650345, 0.0417247898876667, 0.04101195186376572, -0.11915866285562515, 0.09494229406118393, 0.04688037559390068, 0.0724702849984169, -0.018351253122091293, 0.013219992630183697, -0.003748902352526784, 0.12020333856344223, -0.025208164006471634, 0.022404510527849197, 0.029730578884482384, 0.008155516348779202, 0.000571891141589731, 0.005105876829475164, -0.004610239993780851, -0.13411633670330048, -0.029484394937753677, 0.028094517067074776, -0.1263980269432068, 0.15539832413196564, 0.021224839612841606, -0.18032044172286987, -0.07184874266386032, -0.0889885425567627, 0.02429918199777603, -0.04632984846830368, 0.015244168229401112, 0.13817144930362701, 0.03105963207781315, -0.04203464463353157, 0.16362333297729492, -0.08199696242809296, -0.05386465787887573, 0.05344879999756813, -0.020552849397063255, -0.03144477680325508, -0.021168101578950882, -0.02194220758974552, 0.05658203363418579, 0.034168414771556854, 0.056077100336551666, -0.05931030586361885, -0.02972337044775486, 0.014556911773979664, -0.007512438111007214, -0.011847375892102718, 0.15991540253162384, -0.07085839658975601, 0.10534347593784332, 0.031252019107341766, -0.019823353737592697, -0.16910842061042786, -0.0497107207775116, -0.03410869091749191, -0.112981878221035, -0.0017863907851278782, 0.0008242803160101175, -0.011724666692316532, -0.08011753857135773, 0.005089659709483385, -0.019121482968330383, 0.0413425974547863, 0.04984027519822121, -0.03413989022374153, -0.009420239366590977, -0.03221507743000984, -0.11067956686019897, -0.0074120331555604935, 0.05693846940994263, 0.0208771750330925, 0.029489200562238693, 0.04643554240465164, -0.0032199013512581587, 0.008021076209843159, 0.02046806737780571, 0.05004929006099701, -0.011199737899005413, -0.05274554342031479, -0.013389267958700657, -0.07844097912311554, -0.0017163706943392754, 0.039926983416080475, 0.08268249034881592, 0.0826997458934784, -0.05920412391424179, -0.025555023923516273, -0.006433434318751097, -0.053439076989889145, 0.015484086237847805, -0.0075744884088635445, 0.13007132709026337, -0.02728991024196148, 0.04280565679073334, 0.14316889643669128, 0.03691589832305908, -0.015707390382885933, 0.07038167119026184, 0.05015763267874718, 0.1203484833240509, -0.013222157023847103, -0.0320163294672966, -0.09678903222084045, 0.11832726746797562, 0.08478695899248123, -0.016801292076706886, 0.047295838594436646, 0.06466012448072433, -0.022133637219667435, 0.027673490345478058, -0.00639365753158927, -0.007264241110533476, -0.02062581665813923, -0.13133558630943298, 0.038374822586774826, 0.14624139666557312, -0.041751012206077576, -0.003368520177900791, 0.05420266091823578, 0.042685654014348984, 0.032993052154779434, -0.03775482252240181, -0.0011008247965946794, 0.0628596767783165], -fadd:[-0.04108371585607529, 0.06402942538261414, 0.04277590289711952, -0.0722363144159317, 0.16303041577339172, 0.01118965819478035, -0.042079776525497437, -0.0333750881254673, 0.04393402859568596, -0.14615637063980103, 0.002362070372328162, -0.0044507188722491264, 0.024773497134447098, -0.02274126000702381, -0.0032335766591131687, -0.24268631637096405, -0.04805520921945572, 0.022501680999994278, -0.025692161172628403, -0.011927278712391853, -0.13301828503608704, 0.09568557888269424, 0.024677369743585587, 0.0005031030159443617, -0.013545103371143341, -0.10555505752563477, -0.09431476891040802, 0.07256334275007248, -0.012987998314201832, 0.10113546252250671, -0.11069355905056, -0.10319507867097855, 0.023929066956043243, -0.005566970445215702, -0.04990633949637413, -0.1441744565963745, -0.04335726797580719, -0.038406852632761, 0.014096662402153015, 0.1169833391904831, 0.04127619042992592, 0.13851511478424072, 0.007841501384973526, 0.0942210853099823, 0.024428840726614, 0.0317532904446125, -0.2013855129480362, 0.040027908980846405, -0.0767609253525734, -0.12157171219587326, -0.007707234472036362, 0.1881827414035797, -0.048050396144390106, -0.03593531250953674, 0.04259106144309044, -0.08528342843055725, 0.01535859890282154, -0.0061312573961913586, -0.01614791341125965, 0.05071339011192322, 0.09881392866373062, 0.03275006636977196, -0.06940089166164398, -0.05846162140369415, 0.14488644897937775, 0.01523724477738142, -0.008556550368666649, 0.1356588453054428, 0.006081295665353537, 0.04686349630355835, -0.04934202879667282, 0.02513212524354458, -0.08276578783988953, -0.04313928633928299, -0.07839919626712799, 0.03902900218963623, 0.16509178280830383, -0.05044320598244667, 0.03425797447562218, 0.003846501000225544, 0.08785942941904068, -0.00167379982303828, -0.029562799260020256, -0.059585314244031906, -0.05728188529610634, 0.11122512817382812, -0.013579917140305042, 0.07256127148866653, -0.06747260689735413, -0.0248841792345047, -0.06884879618883133, -0.04575754702091217, -0.004238610155880451, -0.11259142309427261, -0.1629565805196762, -0.002018950181081891, -0.057985834777355194, -0.16564802825450897, -0.15326081216335297, -0.11270631849765778, -0.11928211152553558, -0.016152244061231613, 0.03967728838324547, 0.042394377291202545, -0.0917501449584961, -0.03951602429151535, -0.09334316849708557, -0.02892284281551838, -0.13014060258865356, 0.11831089109182358, -0.05366216599941254, 0.03492777794599533, -0.08650995045900345, 0.038214024156332016, -0.07186815142631531, -0.08344534039497375, 0.007318749558180571, 0.05739375948905945, 0.0010296932887285948, -0.08210445940494537, 0.0048087481409311295, 0.14621852338314056, -0.06367567181587219, 0.026406584307551384, -0.02502363920211792, -0.004249351564794779, 0.01936703361570835, 0.13844074308872223, 0.015308879315853119, 0.08020903915166855, 0.02755752019584179, 0.01578514277935028, -0.06961735337972641, -0.02657241001725197, -0.07220516353845596, 0.014225954189896584, -0.043066252022981644, -0.05765676870942116, 0.08304592221975327, 0.014864081516861916, -0.1380726397037506, 0.032036732882261276, 0.05136197805404663, 0.16070593893527985, -0.16255885362625122, -0.1057877391576767, 0.052115004509687424, 0.006902467459440231, -0.012157738208770752, 0.12321045994758606, 0.0773179829120636, 0.013364182785153389, 0.019044863060116768, -0.017620140686631203, 0.0018637820612639189, 0.045010194182395935, 0.009306998923420906, -0.09287304431200027, -0.03213952109217644, 0.0012302491813898087, 0.03955545276403427, -0.06959401071071625, -0.02320457622408867, 0.009540108032524586, -0.03580813109874725, 0.022563647478818893, -0.0468197725713253, 0.02100653201341629, -0.07457908242940903, 0.1657429039478302, 0.008792110718786716, 0.07799707353115082, -0.05464889854192734, 0.022785376757383347, 0.011005409061908722, 0.06779710948467255, -0.1162615641951561, -0.058482576161623, -0.03943205252289772, -0.04853328689932823, -0.18831875920295715, -0.028467267751693726, 0.001770836766809225, 0.01910213939845562, -0.04022993519902229, -0.009541083127260208, -0.05999412015080452, 0.02373191900551319, -0.012254519388079643, -0.0001109776712837629, 0.09309905767440796, 0.03600182384252548, -0.18753692507743835, 0.09921623021364212, 0.03708053007721901, 0.03207312896847725, -0.06568026542663574, -0.0819208025932312, -0.010596320033073425, 0.05594710633158684, 0.12136179208755493, 0.02808302827179432, -0.026724567636847496, -0.004675624892115593, -0.05028454214334488, -0.13569732010364532, 0.112427718937397, 0.17354276776313782, 0.0015834205551072955, -0.04600554704666138, 0.0350850448012352, -0.17135247588157654, -0.014791501685976982, -0.04575182870030403, -0.02593674138188362, 0.10732003301382065, 0.07582670450210571, 0.07024769484996796, 0.014369167387485504, -0.13169151544570923, 0.010945318266749382, 0.08095008134841919, -0.009096069261431694, 0.0368012934923172, 0.006011434365063906, 0.019891835749149323, -0.024528518319129944, 0.029727818444371223, 0.005481333937495947, 0.02290785126388073, -0.041925691068172455, 0.015767434611916542, -0.0865611732006073, -0.0009151783888228238, 0.1498689353466034, -0.053967688232660294, 0.13097308576107025, -0.0024327761493623257, 0.12458835542201996, -0.00558322761207819, 0.01836724765598774, -0.1320750117301941, -0.014006134122610092, -0.03842949494719505, -0.032723989337682724, 0.03209979087114334, 0.11060454696416855, -0.06113399192690849, -0.015274899080395699, -0.05141798034310341, 0.0763319581747055, 0.0840245857834816, -0.016179820522665977, -0.05015670508146286, 0.13323158025741577, -0.10202942043542862, -0.0030275622848421335, -0.12101014703512192, -0.0030990310478955507, -0.0793674886226654, 0.014962228946387768, -0.09029684960842133, 0.11996612697839737, 0.029906371608376503, -0.09582670032978058, -0.05447554588317871, -0.03800076246261597, -0.1687319278717041, -0.08856412023305893, -0.0072459387592971325, 0.008913151919841766, -0.05391388386487961, -0.005984681658446789, -0.06630602478981018, 0.06704605370759964, 0.032599013298749924, -0.024223994463682175, -0.09986042231321335, -0.019539175555109978, -0.08702118694782257, -0.015553072094917297, 0.11654870212078094, 0.031479381024837494, 0.07559946924448013, 0.03006852976977825, -0.049974460154771805, 0.1243635043501854, -0.04933219403028488, 0.011773880571126938, -0.003133186837658286, -0.10844017565250397, -0.02724151872098446, -0.036486972123384476, 0.047443490475416183, 0.03622021526098251, 0.09825121611356735, 0.051400404423475266, -0.04403454810380936, 0.001077336142770946, -0.012685148976743221], -fcmp:[0.1043253168463707, -0.10554063320159912, 0.060090333223342896, 0.00275606126524508, 0.014138888567686081, -0.0009329808526672423, -0.06458677351474762, -0.01167600229382515, 0.030072156339883804, -0.1837574988603592, 0.030666030943393707, -0.015963857993483543, -0.12018772214651108, 0.0312676839530468, -0.10999089479446411, -0.04622718691825867, 0.1091204360127449, -0.1899614781141281, 0.056580401957035065, -0.010404317639768124, -0.0849914625287056, -0.17185968160629272, 0.012078973464667797, 0.14957056939601898, 0.039848510175943375, -0.01609043963253498, 0.027701476588845253, 0.18701611459255219, -0.00180473318323493, 0.15062662959098816, 0.02524992823600769, -0.05770064517855644, 0.049022428691387177, -0.03667984530329704, -0.03222481161355972, -0.014043095521628857, -0.0798138976097107, 0.00669932970777154, -0.004309495445340872, 0.04261980950832367, 0.004846017342060804, 0.019376704469323158, 0.01459233183413744, -0.004971698857843876, -0.026958901435136795, -0.05625419318675995, 0.1943693906068802, 0.03239716216921806, -0.07463263720273972, -0.006459577940404415, -0.009081092663109303, -0.1891728937625885, 0.09180622547864914, -0.059494517743587494, -0.009886407293379307, 0.03860301896929741, 0.04991946741938591, -0.0005126793985255063, -0.15012067556381226, -0.039003416895866394, 0.10475082695484161, -0.01528675202280283, -0.19649848341941833, -0.07240814715623856, 0.07896064966917038, 0.018383480608463287, -0.08449841290712357, 0.023087365552783012, 0.009924433194100857, 0.04843554645776749, -0.02346867509186268, -0.01650112122297287, -0.0027534549590200186, -0.02264128439128399, 0.06560037285089493, 0.044852498918771744, 0.04410463199019432, -0.014050375670194626, 0.08653076738119125, -0.0696847066283226, 0.06925641745328903, -0.013597501441836357, 0.0276805330067873, -0.05444635823369026, -0.06914263218641281, 0.09545785188674927, 0.1110609918832779, 0.020444080233573914, -0.018130861222743988, -0.09122814238071442, -0.02110486477613449, -0.12659023702144623, -0.04077594727277756, -0.015639275312423706, 0.018702790141105652, 0.03639339283108711, -0.06274237483739853, 0.1283046007156372, -0.02951783873140812, -0.1918800324201584, 0.07705474644899368, -0.07230924814939499, -0.03032832406461239, 0.03867454454302788, 0.0019459669711068273, -0.042862799018621445, 0.08756952732801437, -0.032925184816122055, 0.018146872520446777, 0.15564899146556854, -0.03742332383990288, 0.06530693918466568, -0.10260026156902313, 0.08682696521282196, 0.0254196859896183, 0.0008656533318571746, -0.002052637981250882, 0.057737283408641815, -0.001158243860118091, -0.11325503140687943, -0.07680816948413849, 0.015564970672130585, -0.024382980540394783, 0.06366002559661865, -0.042602866888046265, -0.0004821955517400056, 0.003680056193843484, 0.0299681406468153, 0.10645674169063568, 0.030259160324931145, 0.022731848061084747, 0.0763133242726326, -0.013655029237270355, 0.05472944304347038, -0.10479316860437393, -0.06480232626199722, -0.021163152530789375, 0.0059309243224561214, 0.06229424104094505, 0.06258664280176163, 0.09626331925392151, -0.16258113086223602, -0.04837969318032265, 0.0435090996325016, 0.04721274971961975, 0.03548024967312813, 0.14129120111465454, -0.09866243600845337, 0.006880982778966427, 0.022784188389778137, 0.025869298726320267, 0.021750086918473244, 0.059808846563100815, -0.008366952650249004, -0.11088033020496368, 0.06535965949296951, -0.0820743516087532, 0.08339056372642517, 0.18656644225120544, -0.01956232264637947, 0.09284395724534988, 0.06709036976099014, -0.102279432117939, 0.01324555091559887, 0.013051087036728859, 0.08877500146627426, -0.08013045787811279, 0.005134129896759987, 0.041608717292547226, -0.07938190549612045, 0.028367996215820312, 0.11042783409357071, 0.11515659838914871, -0.0519876591861248, 0.13353848457336426, -0.14277444779872894, -0.14469431340694427, -0.06862198561429977, 0.10357746481895447, 0.08834660053253174, -0.059932541102170944, -0.0630289763212204, -0.013956161215901375, -0.014090810902416706, 0.14660021662712097, -0.019968366250395775, 0.005969707388430834, 0.014941028319299221, -0.0244237519800663, -0.07148427516222, -0.016045672819018364, 0.017704064026474953, 0.07318256050348282, -0.010088031180202961, -0.004628789145499468, 0.041588470339775085, -0.03696470707654953, -0.014784006401896477, -0.12041463702917099, 0.01332505326718092, -0.03580572083592415, 0.028308896347880363, -0.04965575411915779, 0.08014721423387527, 0.035167645663022995, -0.13781674206256866, -0.04321688041090965, 0.08700282126665115, -0.062381308525800705, -0.0944666862487793, 0.002388847293332219, -0.007233421318233013, -0.03235090896487236, -0.026556599885225296, -0.02359754778444767, 0.06461317837238312, 0.07282734662294388, 0.057289984077215195, 0.05086876079440117, -0.03610563650727272, 0.020392799749970436, -0.012343653477728367, -0.012359041720628738, 0.052009932696819305, 0.13800109922885895, 0.038111284375190735, 0.07621464878320694, 0.02989964373409748, 0.024049336090683937, -0.10581635683774948, -0.036447033286094666, 0.08852281421422958, 0.001481228624470532, -0.043080247938632965, -0.03282226249575615, -0.031338296830654144, -0.1584654450416565, -0.00232476438395679, 0.05187887325882912, -0.07655158638954163, 0.013072452507913113, 0.09123847633600235, -0.03139415755867958, -0.0799788311123848, 0.014981587417423725, -0.048733677715063095, -0.12505526840686798, 0.0450001060962677, -0.11076027154922485, -0.056782983243465424, 0.023399220779538155, 0.13186390697956085, 0.012196547351777554, 0.09640279412269592, 0.0027365710120648146, 0.08064550906419754, -0.02216680906713009, -0.0893738865852356, 0.13165950775146484, -0.015913018956780434, 0.01465526595711708, 0.054260797798633575, 0.048949550837278366, 0.003202449530363083, 0.0687519833445549, -0.043499480932950974, 0.02064438723027706, -0.02022186852991581, -0.01918455958366394, -0.11349543929100037, 0.06842143833637238, 0.008174153044819832, -0.04520440101623535, 0.13886944949626923, 0.011648350395262241, 0.01575046218931675, 0.06949472427368164, -0.0879361554980278, -0.0718483179807663, 0.051112402230501175, 0.13470375537872314, 0.04411529377102852, 0.017232000827789307, -0.023533273488283157, -0.013609263114631176, 0.20780834555625916, -0.017969392240047455, 0.06558654457330704, -0.01110091619193554, 0.0650128498673439, -0.11454305797815323, -0.03903775289654732, -0.02854156494140625, 0.047273214906454086, -0.08490528911352158, 0.025656137615442276, 0.04821740835905075, 0.07241712510585785, -0.00038576143560931087, 0.013902815990149975], -fdiv:[0.048721328377723694, -0.11282550543546677, 0.057109881192445755, 0.011463196948170662, 0.017288580536842346, -0.09170431643724442, 0.09251734614372253, 0.09839780628681183, 0.03185560554265976, 0.03715742751955986, 0.11678335815668106, -0.012596908025443554, -0.038026805967092514, -0.017171122133731842, 0.04121249541640282, -0.10249611735343933, 0.07373940199613571, 0.02285570651292801, 0.11000494658946991, -0.012319747358560562, -0.10988590866327286, -0.05060829222202301, 0.008338273502886295, -0.1715034395456314, -0.023614266887307167, -0.08470013737678528, 0.08108875155448914, 0.08228038251399994, -0.03519380837678909, 0.022339656949043274, -0.0010194402420893312, -0.04992078244686127, 0.032587312161922455, 0.020236670970916748, 0.05246904864907265, -0.10742776095867157, -0.1422223597764969, -0.06420900672674179, 0.044828008860349655, 0.04457772523164749, 0.06598611176013947, -0.0267842598259449, 0.07360292226076126, 0.0993957668542862, -0.024313144385814667, -0.15972143411636353, 0.0229373499751091, 0.03804761543869972, -0.08115563541650772, 0.07025548070669174, -0.11650332063436508, -0.20219627022743225, 0.10688721388578415, 0.04806312546133995, 0.1442229002714157, 0.031339459121227264, 0.03623661398887634, -0.04952123761177063, -0.03429194539785385, 0.013327217660844326, -0.0272675771266222, -0.020246922969818115, 0.03746658191084862, -0.04291627183556557, -0.10459908843040466, 0.014975905418395996, -0.062403373420238495, 0.019969815388321877, 0.05585528537631035, -0.03182683140039444, -0.13446298241615295, 0.04897554963827133, 0.03371778130531311, -0.14609286189079285, -0.1269008070230484, 0.045409612357616425, 0.034260429441928864, 0.006396246142685413, -0.16843539476394653, -0.10634520649909973, -0.06859073042869568, 0.0066298567689955235, -0.16460521519184113, -0.057986482977867126, 0.09945868700742722, 0.1015077605843544, 0.002139081247150898, -0.08343904465436935, -0.11113972961902618, -0.07069208472967148, 0.017307966947555542, -0.0934910997748375, -0.0504162460565567, -0.006697419565171003, 0.05456244945526123, -0.03784656152129173, -0.11528165638446808, 0.04930219426751137, 0.014089982025325298, 0.13477545976638794, -0.027984732761979103, -0.017378542572259903, -0.027769016101956367, 0.041323576122522354, -0.021230390295386314, -0.088127501308918, -0.021219542250037193, -0.01699107326567173, -0.05804584175348282, 0.040152423083782196, -0.03770403563976288, 0.09115549176931381, -0.16435588896274567, -0.018551580607891083, 0.04361630976200104, -0.05208563804626465, -0.017490338534116745, 0.08248124271631241, 0.003651865292340517, -0.026407819241285324, -0.06441231817007065, 0.01408396940678358, 0.014407274313271046, 0.027763720601797104, 0.04878785088658333, -0.012907812371850014, 0.05296443775296211, 0.014208510518074036, -0.053493186831474304, -0.03693878650665283, -0.04443223029375076, -0.09725027531385422, -0.06254790723323822, -0.0006010507931932807, 0.02107655070722103, -0.00922721903771162, -0.01483109313994646, -0.03316951170563698, -0.023405082523822784, 0.05614018067717552, -0.01474843081086874, -0.07810033857822418, -0.07926534116268158, -0.026990456506609917, -0.14448131620883942, 0.016010545194149017, 0.05858824774622917, 0.005183608271181583, -0.019032156094908714, 0.1239018440246582, -0.16988466680049896, 0.028125885874032974, 0.0016774662071838975, -0.05135275050997734, 0.0682775005698204, 0.0011326756794005632, 0.09748447686433792, 0.09086993336677551, 0.17859335243701935, 0.010127780959010124, 0.09154552221298218, -0.05362857133150101, -0.11454819142818451, 0.014623098075389862, 0.1139427199959755, 0.04362305626273155, -0.08923093229532242, 0.01890912465751171, -0.06368289887905121, -0.10625289380550385, -0.08027292788028717, -0.008539291098713875, 0.11811139434576035, -0.07786218076944351, -0.0872972309589386, 0.006777673959732056, -0.1497747302055359, -0.0556819923222065, -0.0033788292203098536, -0.009707309305667877, -0.07908864319324493, -0.07002260535955429, 0.008241494186222553, -0.011478036642074585, 0.10642991960048676, 0.00822179950773716, 0.009543363936245441, -0.007709962781518698, 0.03505043312907219, -0.05205148458480835, -0.016246426850557327, 0.06374306231737137, -0.02876640297472477, -0.011898105032742023, -0.021314868703484535, 0.06134530529379845, 0.05852760747075081, -0.133400097489357, 0.07494653761386871, -0.0830097645521164, -0.11687173694372177, 0.028478490188717842, -0.11200763285160065, -0.004443577956408262, 0.18018047511577606, -0.029113968834280968, -0.016359353438019753, -0.17186354100704193, 0.048446472734212875, -0.05768329277634621, 0.014469985850155354, -0.11627072840929031, -0.04169192165136337, -0.022731715813279152, -0.023616643622517586, 0.07128400355577469, 0.07187482714653015, -0.042564794421195984, 0.008649802766740322, -0.023625433444976807, 0.0109491515904665, 0.149302676320076, -0.11659888178110123, 0.026985716074705124, 0.01655636541545391, 0.09280078113079071, -0.047232091426849365, -0.05386200174689293, -0.06386597454547882, -0.07545193284749985, -0.10413385927677155, -0.07534164935350418, -0.02017625980079174, 0.0011595918331295252, -0.0395011343061924, -0.08012121915817261, 0.036062631756067276, -0.001441675703972578, 0.009281150065362453, -0.0057294731959700584, 0.051076605916023254, 0.004795050714164972, -0.01363391987979412, -0.0602404847741127, -0.01483192015439272, 0.03132110834121704, 0.007580218371003866, -0.04575483873486519, -0.04883941635489464, -0.051332805305719376, 0.03232894465327263, 0.15103749930858612, -0.03027386963367462, -0.03873930871486664, 0.12959986925125122, 0.01203214656561613, -0.008565211668610573, -0.11195645481348038, 0.03160877898335457, -0.09264981746673584, -0.004064253997057676, -0.05206381902098656, -0.13112466037273407, 0.0252522099763155, -0.04586612805724144, 0.009402280673384666, -0.14279653131961823, -0.15640376508235931, -0.009974252432584763, -0.02279031276702881, -0.012261640280485153, 0.01927938684821129, 0.04526801034808159, 0.009106067009270191, 0.14320075511932373, 0.14503611624240875, 0.008975816890597343, -0.13534556329250336, -0.05124835669994354, 0.0412379652261734, -0.15066345036029816, -0.07019947469234467, -0.1406146138906479, -0.07361201196908951, -0.09981948882341385, 0.15295135974884033, -0.023420972749590874, 0.07220032066106796, -0.1621095985174179, -0.01676936447620392, 0.1494331955909729, 0.012722831219434738, 0.015416349284350872, 0.0509391650557518, 0.04021897539496422, 0.04817463457584381, 0.04160579293966293, -0.08813602477312088, 0.0006404705345630646, -0.029126791283488274], -fence:[0.11064867675304413, 0.003101019887253642, 0.10246282070875168, 0.08052869886159897, -0.026976872235536575, -0.11380928754806519, -0.051078926771879196, -0.03284139558672905, 0.002635806333273649, -0.11696336418390274, -0.1482529491186142, -0.06435712426900864, 0.059019219130277634, -0.02706681378185749, 0.009507972747087479, 0.06643711030483246, -0.0017479700036346912, -0.07550819963216782, -0.03171878308057785, 0.06359928101301193, 0.02479727379977703, 0.08879509568214417, -0.005951361730694771, -0.01961253210902214, 0.06170079857110977, 0.0808807983994484, -0.05463825538754463, 0.05350891128182411, 0.09341581910848618, 0.025606250390410423, 0.12237580865621567, -0.10841894149780273, -0.1115354374051094, 0.061045389622449875, -0.06678731739521027, -0.003200191305950284, -0.08327843993902206, -0.02734181098639965, -0.04421692714095116, 0.03259674087166786, -0.036262426525354385, -0.025097612291574478, 0.02055152878165245, -0.10375578701496124, -0.06088205799460411, -0.07672154158353806, -0.060821015387773514, 0.14653746783733368, -0.0004963107639923692, 0.011581982485949993, 0.0592559315264225, -0.006512656807899475, 0.06353207677602768, 0.0431998111307621, 0.09077517688274384, -0.06545528024435043, -0.024332238361239433, -0.024955520406365395, 0.0068158977665007114, -0.03560981526970863, 0.05385609343647957, 0.028976181522011757, 0.10263465344905853, -0.07086493819952011, 0.12224788963794708, -0.04558248817920685, 0.04151707887649536, -0.00532785477116704, -0.07363691180944443, 0.0015604106010869145, -0.03639252483844757, -0.13278479874134064, -0.007753358688205481, 0.05221320316195488, -0.010913840495049953, 0.07591019570827484, 0.022165635600686073, -0.0023344256915152073, -0.04444695636630058, 0.0054489620961248875, 0.05311920866370201, 0.0062720878049731255, -0.04055619612336159, -0.08532468974590302, -0.07189320027828217, 0.09369117021560669, 0.007808917202055454, -0.10521415621042252, -0.07314803451299667, -0.0597563236951828, 0.010037876665592194, 0.028629660606384277, 0.09088107943534851, 0.027742650359869003, -0.025207724422216415, 0.10847556591033936, -0.07995090633630753, -0.0004829384561162442, -0.017550038173794746, -0.08874303847551346, -0.07407964766025543, -0.024366186931729317, -0.023354504257440567, 0.08892776072025299, -0.11567694693803787, -0.017512120306491852, -0.03465033322572708, 0.16544345021247864, 0.011253438889980316, -0.056295085698366165, 0.11882493644952774, -0.14166943728923798, 0.03848220035433769, -0.02328607067465782, -0.10627780854701996, 0.035244520753622055, 0.08197665959596634, -0.04532410204410553, -0.04536621272563934, 0.10750789940357208, 0.007181945722550154, -0.15575191378593445, 0.03813625127077103, 0.05039951577782631, 0.0034589357674121857, 0.02611677348613739, -0.07221931964159012, -0.017207663506269455, 0.1597769558429718, -0.02836935967206955, 0.09006871283054352, 0.12507103383541107, 0.06523631513118744, -0.11066029220819473, -0.15653763711452484, 0.04483768343925476, 0.009860467165708542, -0.0169722530990839, 0.08217784762382507, -0.07554938644170761, 0.05141989141702652, 0.04613916948437691, 0.07489126920700073, 0.05119381099939346, 0.047065235674381256, -0.000949820620007813, -0.13160701096057892, 0.07074085623025894, -0.06489194184541702, -0.02496555633842945, -0.0691293329000473, 0.031905192881822586, 0.017011864110827446, -0.024000054225325584, 0.13607172667980194, -0.1319172978401184, 0.057753659784793854, 0.08969049155712128, 0.007238232064992189, -0.13219444453716278, 0.11210153251886368, -0.026402706280350685, -0.011770717799663544, 0.06088129058480263, 0.003481694497168064, 0.04293626546859741, 0.005336454603821039, -0.028293738141655922, -0.11031052470207214, -0.11295219510793686, 0.0006546707008965313, -0.012982508167624474, 0.0741734504699707, 0.12424889206886292, 0.043035805225372314, 0.06127525866031647, 0.08534058928489685, -0.0036486200988292694, 0.04853374883532524, -0.010745961219072342, -0.07191847264766693, -0.06014420837163925, -0.1300223469734192, -0.0018562303157523274, 0.04519455507397652, -0.12933282554149628, -0.013431875966489315, 0.11772164702415466, -0.008094966411590576, 0.08781004697084427, -0.0620039701461792, -0.09220261126756668, -0.08554669469594955, -0.07242126762866974, -0.121893972158432, -0.058870453387498856, -0.016122909262776375, 0.014125409536063671, 0.03033500537276268, -0.020064830780029297, -0.061821501702070236, -0.09380049258470535, -0.06823426485061646, -0.07835479825735092, 0.00942309107631445, 0.08515246212482452, 0.13429690897464752, 0.044210076332092285, -0.10227980464696884, 0.12960833311080933, -0.029605358839035034, 0.09506126493215561, 0.04957360774278641, -0.08940248191356659, 0.09742310643196106, 0.015466510318219662, 0.0667075663805008, 0.05179540812969208, -0.09589158743619919, 0.05671894922852516, -0.15454818308353424, 0.06197139993309975, 0.08301868289709091, -0.05273599922657013, 0.05250437930226326, 0.10411243140697479, -0.029175249859690666, -0.038259316235780716, -0.023754937574267387, -0.04088107496500015, 0.031436752527952194, -0.013940191827714443, -0.01406821794807911, -0.000465500372229144, -0.013340020552277565, 0.012876537628471851, -0.11305362731218338, 0.1370072066783905, 0.0747009888291359, 0.07424229383468628, -0.09634126722812653, -0.02197321690618992, -0.1898500621318817, 0.10172614455223083, -0.017406821250915527, -0.0019788106437772512, 0.07165638357400894, 0.053719572722911835, 0.11822368949651718, -0.04468214511871338, 0.023196270689368248, -0.03751443699002266, 0.153167724609375, 0.047313105314970016, -0.0001908397243823856, 0.02284160628914833, -0.13844922184944153, 0.043027423322200775, -0.00186029146425426, 0.046507079154253006, 0.011825250461697578, 0.014231358654797077, -0.06636318564414978, -0.07169053703546524, -0.17128509283065796, -0.053663864731788635, 0.01618509367108345, -0.1200873926281929, -0.03931078687310219, -0.016483455896377563, 0.024245500564575195, 0.08959171175956726, -0.04037625342607498, 0.041270915418863297, 0.029129013419151306, 0.07994405180215836, -0.06081986427307129, -0.019758598878979683, 0.00205509876832366, 0.09241621941328049, -0.05107241868972778, -0.0955730527639389, 0.023291705176234245, 0.0016581843374297023, 0.056160613894462585, -0.04072073847055435, 0.12003688514232635, -0.02080800198018551, 0.09210367500782013, -0.0068099298514425755, 0.09711209684610367, -0.07532406598329544, 0.12252795696258545, -0.04269006475806236, 0.03334904462099075, -0.07429005205631256, -0.0205073319375515, 0.06137964501976967, -0.13583548367023468, -0.018294095993041992], -floatTy:[-0.08806392550468445, 0.0657023936510086, 0.00041028630221262574, 0.087724968791008, -0.03180067241191864, 0.16187258064746857, -0.08329485356807709, 0.07759569585323334, -0.10558706521987915, 0.10033037513494492, -0.07828880846500397, -0.08110333979129791, 0.05097072944045067, -0.10228420794010162, -0.10493951290845871, -0.07078132778406143, -0.10364220291376114, -0.018519142642617226, -0.024525607004761696, -0.10513966530561447, -0.03920287638902664, -0.033984988927841187, -0.09537437558174133, -0.03180356323719025, -0.06594067811965942, -0.029195448383688927, 0.03098873235285282, -0.15648838877677917, -0.007733945269137621, -0.015568254515528679, -0.10633545368909836, -0.019491055980324745, -0.0906248390674591, -0.10918845236301422, -0.04248955473303795, -0.05974747985601425, -0.1203242763876915, 0.03553478419780731, 0.10286708921194077, 0.05381127446889877, 0.01153732743114233, -0.06385371834039688, -0.057290930300951004, 0.08719014376401901, -0.13226383924484253, 0.022911926731467247, -0.021183041855692863, -0.053566619753837585, -0.10419045388698578, 0.09676823019981384, 0.04704417660832405, 0.01679558865725994, 0.006188183557242155, -0.035841066390275955, 0.0774536207318306, -0.035859402269124985, -0.07275926321744919, 0.01845231093466282, -0.11754728108644485, -0.044154372066259384, -0.08847876638174057, -0.11434002220630646, 0.10809461772441864, 0.022314291447401047, -0.11141815036535263, -0.05828205123543739, -0.09402870386838913, -0.06706700474023819, -0.12558679282665253, -0.03182336688041687, -0.04024435579776764, 0.02359926886856556, -0.0015971868997439742, -0.11207912862300873, 0.04568847268819809, -0.018527766689658165, -0.12927529215812683, -0.03383241221308708, -0.032541945576667786, 0.12545588612556458, -0.00839211605489254, -0.07532074302434921, -0.06446404755115509, -0.03521640971302986, 0.09881949424743652, -0.024527989327907562, 0.004799119662493467, 0.012168987654149532, 0.11709276586771011, -0.03493824228644371, 0.043454430997371674, 0.0423898920416832, -0.09567943215370178, -0.032340314239263535, 0.030101511627435684, 0.06911235302686691, 0.021646613255143166, -0.00962788611650467, 0.025904929265379906, 0.10506880283355713, -0.04865410551428795, 0.0821036770939827, -0.0350378081202507, 0.1161908358335495, -0.08656045794487, -0.1164121925830841, -0.02931167744100094, 0.0907318964600563, -0.09098775684833527, 0.08058621734380722, -0.09830300509929657, -0.05247920751571655, 0.043062083423137665, -0.0737844854593277, -0.10480350255966187, -0.005174808669835329, -0.044399090111255646, -0.053343266248703, 0.05134112387895584, 0.015561149455606937, -0.008021185174584389, 0.08398610353469849, 0.03050045669078827, 0.033722613006830215, 0.14723047614097595, -0.08765101432800293, 0.12029065191745758, -0.05162550508975983, -0.058694176375865936, -0.06522093713283539, -0.004437422379851341, -0.11998233944177628, -0.00043861079029738903, 0.07865855097770691, 0.10630982369184494, 0.04553842172026634, 0.05561692267656326, 0.014030981808900833, -0.09147495776414871, 0.00019682910351548344, 0.039652470499277115, 0.033594343811273575, -0.07990005612373352, 0.03178134188055992, -0.07570178806781769, -0.028634145855903625, -0.08980754762887955, -0.11555245518684387, -0.07780095934867859, 0.060320671647787094, 0.029128875583410263, -0.12737703323364258, 0.08035645633935928, -0.10112171620130539, 0.0026008712593466043, 0.016538938507437706, 0.055881865322589874, -0.028657663613557816, -0.1033717542886734, -0.0729619637131691, -0.03233484551310539, 0.04124639555811882, 0.060031428933143616, 0.12463931739330292, 0.02794165536761284, -0.09593183547258377, 0.01756136119365692, 0.12463901937007904, 0.0029590418562293053, 0.0030312773305922747, -0.062371980398893356, 0.014816947281360626, -0.06501170992851257, -0.03156328946352005, 0.11434731632471085, 0.0021850799676030874, -0.11102563142776489, -0.07714954763650894, -0.02451370097696781, 0.05293741822242737, 0.05986979231238365, 0.07465431094169617, 0.011979828588664532, 0.04569593444466591, 0.017463721334934235, -0.03963475674390793, 0.07302797585725784, -0.06853683292865753, -0.0408736951649189, -0.03029877319931984, 0.027998102828860283, -0.12571842968463898, 0.12575146555900574, -0.13409383594989777, 0.11578070372343063, 0.0017182157607749104, -0.057458821684122086, 0.10303350538015366, -0.07244887948036194, 0.04384031146764755, -0.14525295794010162, -0.008869316428899765, 0.10999483615159988, -0.0531599260866642, -0.060017459094524384, -0.10482127219438553, 0.07777778059244156, 0.04900993034243584, 0.006151734385639429, 0.049580566585063934, 0.09740786254405975, -0.12097284197807312, -0.029435448348522186, 0.0720057263970375, -0.05711318925023079, -0.06876478344202042, 0.07627763599157333, -0.010826139710843563, 0.04029766470193863, -0.08339584618806839, -0.08816972374916077, -0.07139331847429276, -0.05870233103632927, -0.10014369338750839, 0.04135524109005928, 0.016780555248260498, 0.11434261500835419, 0.07901675254106522, -0.01170229259878397, 0.09995969384908676, 0.02148747444152832, 0.07248987257480621, 0.031064750626683235, -0.09473519027233124, 0.08907681703567505, -0.006604828871786594, -0.04439350217580795, 0.07889862358570099, -0.0878249779343605, 0.03378501534461975, 0.05945851281285286, 0.007485019043087959, 0.10142035782337189, 0.10460926592350006, 0.02936098724603653, -0.03381149843335152, 0.03332559019327164, 0.006905711721628904, 0.05920572206377983, 0.0328298918902874, -0.1198810487985611, -0.1051940992474556, -0.09091898053884506, 0.05513819307088852, 0.03441274166107178, -0.02578500658273697, 0.13964149355888367, -0.08770300447940826, -0.011048616841435432, -0.1290968507528305, -0.04128745198249817, 0.03418131172657013, -0.07450848817825317, 0.01597357541322708, 0.04416158050298691, 0.10430745780467987, -0.11961173266172409, 0.11154529452323914, 0.07016502320766449, 0.07173937559127808, -0.053631849586963654, -0.0017011866439133883, 0.15076977014541626, -0.09288843721151352, -0.02195833995938301, -0.05747148394584656, 0.15456125140190125, 0.009105321951210499, 0.005097446963191032, 0.12414515018463135, 0.051284950226545334, 0.09106229245662689, -0.0856601819396019, -0.041907668113708496, -0.019409680739045143, 0.00025422655744478106, 0.018640004098415375, -0.0611187219619751, -0.07370266318321228, -0.10453537851572037, 0.09800899773836136, -0.027220865711569786, 0.1226854920387268, 0.13072063028812408, -0.08166192471981049, 0.14657044410705566, -0.0793328583240509, 0.03470340371131897, -0.10024742037057877, 0.056814346462488174], -fmul:[0.03842838853597641, -0.008642374537885189, 0.052650969475507736, 0.04957503452897072, -0.1562940925359726, -0.05742567032575607, -0.028768906369805336, 0.1070980355143547, 0.033212121576070786, 0.01233522780239582, 0.1113043874502182, 0.05563724413514137, -0.03204578533768654, -0.03931573033332825, 0.04457284137606621, -0.19855652749538422, -0.06226516142487526, 0.05023185536265373, -0.0027863350696861744, -0.01189678255468607, 0.18436668813228607, 0.021616818383336067, -0.007966987788677216, -0.02758421003818512, -0.02372928336262703, 0.018069090321660042, -0.19195504486560822, 0.06799671798944473, 0.1375226080417633, -0.02550908550620079, 0.008799332194030285, -0.11637360602617264, 0.030005238950252533, -0.008457380346953869, -0.08333243429660797, 0.005759339779615402, 0.0906856507062912, 0.09040533751249313, -0.038803793489933014, -0.10158443450927734, 0.0844360813498497, -0.018330043181777, 0.13205371797084808, 0.12765030562877655, -0.005781674757599831, -0.060459889471530914, 0.11749154329299927, 0.04645658656954765, -0.13458450138568878, 0.07332546263933182, 0.009626868180930614, 0.010436405427753925, -0.04223049432039261, -0.02000398002564907, 0.09915440529584885, -0.10611357539892197, -0.03071795217692852, -0.11424767971038818, -0.07382044196128845, -0.016720904037356377, 0.08605015277862549, -0.008904481306672096, -0.06344691663980484, -0.07580780982971191, 0.03341151028871536, 0.018176032230257988, -0.010199409909546375, 0.018453756347298622, 0.0530158206820488, -0.024401584640145302, -0.018275853246450424, 0.041721440851688385, 0.041851285845041275, 0.08256348222494125, 0.0610785149037838, 0.04574121534824371, -0.013320413418114185, -0.01818891428411007, -0.008143311366438866, 0.1394549012184143, -0.04280029609799385, 0.006228316575288773, 0.03427407890558243, -0.05980081111192703, -0.11887414008378983, -0.06752301752567291, 0.07713568955659866, -0.059889230877161026, 0.03706241399049759, -0.0844278335571289, 0.05212496221065521, 0.0018918318673968315, 0.06115296483039856, -0.11351306736469269, 0.10794529318809509, 0.04826650768518448, -0.05706929415464401, -0.10296397656202316, -0.015522727742791176, -0.0554741732776165, -0.0676540806889534, -0.017996152862906456, 0.03740698844194412, 0.040699925273656845, -0.003664611838757992, -0.008830474689602852, -0.06976465880870819, -0.029720716178417206, -0.12260519713163376, 0.025361983105540276, 0.027374783530831337, 0.13854587078094482, -0.054652806371450424, 0.041434504091739655, 0.0420682430267334, -0.03066042810678482, -0.09121312201023102, 0.06158548593521118, -0.004124120809137821, -0.04299846291542053, -0.05849939584732056, -0.07501440495252609, 0.0012492680689319968, -0.005848413333296776, -0.005242445506155491, -0.007211999036371708, -0.00041927400161512196, 0.03511674702167511, 0.011151714250445366, 0.07776744663715363, 0.02139110118150711, -0.09606065601110458, -0.07618215680122375, 0.0528678223490715, 0.026602400466799736, -0.17293433845043182, -0.01610550284385681, 0.21855172514915466, 0.07736268639564514, 0.047570496797561646, -0.008216900750994682, 0.004422109108418226, -0.051259711384773254, -0.04564007371664047, -0.03032924048602581, -0.008619253523647785, 0.04642420634627342, 0.00507623516023159, -0.05665106326341629, 0.02051730826497078, 0.04812712222337723, 0.09422092884778976, -0.030677225440740585, 0.05259515345096588, -0.0012054562103003263, -0.1560308188199997, 0.03179021179676056, 0.12259858101606369, 0.02359773777425289, -0.05852019414305687, -0.06386160105466843, -0.015945054590702057, 0.11998849362134933, 0.01505898404866457, 0.05734660103917122, -0.06868324428796768, -0.05109356716275215, 0.02046363428235054, 0.04854907840490341, 0.09561768174171448, 0.0077322726137936115, -0.03819670528173447, 0.06961119920015335, -0.07706574350595474, 0.14544396102428436, 0.05156417191028595, -0.036685362458229065, 0.08107731491327286, -0.00358096812851727, 0.020491786301136017, -0.055561065673828125, -0.0706007182598114, -0.07808709889650345, -0.013887571170926094, -0.02252105250954628, -0.014763880521059036, 0.006886249408125877, 0.028109705075621605, -0.061288200318813324, 0.019561059772968292, 0.20528241991996765, 0.054623864591121674, -0.01140940748155117, -0.014430834911763668, -0.015340311452746391, 0.05760880187153816, 0.013225634582340717, -0.11118706315755844, 0.062271200120449066, 0.052322905510663986, -0.06213219836354256, 0.02741837687790394, -0.0013543692184612155, -0.009921888820827007, -0.022781023755669594, -0.17014004290103912, -0.04230255261063576, -0.16760937869548798, 0.11627678573131561, -0.05613096058368683, -0.045893847942352295, 0.021219545975327492, 0.18451513350009918, -0.039451077580451965, -0.021407373249530792, 0.09192724525928497, 0.0676555335521698, 0.040463510900735855, 0.09724284708499908, -0.000496220076456666, 0.01110227219760418, 0.09732159972190857, -0.012543526478111744, 0.02411980926990509, -0.019948717206716537, -0.03435492515563965, -0.036483872681856155, 0.05137680470943451, 0.06511552631855011, -0.10327650606632233, -0.02856922335922718, -0.06583768874406815, 0.08468899875879288, -0.0014150312636047602, -0.011658192612230778, -0.06339852511882782, 0.034896351397037506, 0.008269359357655048, 0.04362212494015694, -0.11752105504274368, 0.04303005337715149, 0.0899142324924469, -0.013094675727188587, -0.07871527969837189, -0.005088040139526129, -0.07186762988567352, 0.0029714051634073257, -0.09402763843536377, 0.05597023293375969, 0.07801897078752518, 0.11622212082147598, 0.0848330706357956, 0.06124965101480484, -0.0913257896900177, -0.0139852249994874, 0.1586422473192215, -0.02003799006342888, -0.08786579966545105, 0.0879962369799614, -0.046595536172389984, -0.004069991409778595, -0.08986330777406693, -0.14885200560092926, 0.01966480165719986, 0.014244768768548965, 0.20206722617149353, -0.19107811152935028, 0.06501081585884094, -0.03215009346604347, -0.14420609176158905, -0.033330287784338, 0.15102575719356537, -0.05320121720433235, 0.044755302369594574, -0.0005024187848903239, -0.08796297758817673, 0.12776997685432434, -0.067125603556633, -0.02821255847811699, -0.00029889054712839425, 0.015680067241191864, 0.08862688392400742, 0.09926076978445053, -0.07233335077762604, -0.012756816111505032, -0.0030147151555866003, -0.03445180132985115, 0.17140735685825348, -0.010757970623672009, 0.06790491193532944, -0.02696341834962368, -0.024161236360669136, -0.0509612150490284, 0.051986463367938995, 0.03597242757678032, 0.11906126141548157, 0.049893010407686234, 0.02835005708038807, 0.1641315072774887, -0.035501446574926376], -fneg:[-0.0393419973552227, -0.09300300478935242, -0.07341884821653366, 0.02808721549808979, 0.04498705267906189, -0.20024266839027405, 0.04585452005267143, 0.12111537903547287, 0.025054067373275757, -0.1504417210817337, 0.021504400297999382, -0.032027266919612885, 0.03454295173287392, 0.004987030755728483, 0.11855526268482208, -0.18585754930973053, 0.0040133954025805, 0.03298172727227211, -0.0071739512495696545, -0.011243554763495922, 0.0549459271132946, -0.12594076991081238, -0.03238316625356674, 0.195298969745636, -0.02593822591006756, -0.015823844820261, -0.04975500330328941, 0.057272255420684814, -0.06961706280708313, 0.10531241446733475, 0.036239415407180786, 0.0027161675971001387, 0.03570181876420975, 0.01614849455654621, -0.12771444022655487, 0.07952102273702621, -0.08669809252023697, 0.03149443119764328, 0.10021339356899261, 0.045250315219163895, 0.08070813119411469, -0.07359226047992706, 0.04775805026292801, 0.11066918075084686, -0.013596383854746819, -0.0960199311375618, -0.037246935069561005, 0.06211986020207405, -0.07779353111982346, 0.003904842073097825, -0.16840152442455292, 0.03970063850283623, -0.016477296128869057, -0.0002869710442610085, -0.16045419871807098, 0.16386835277080536, 0.05099623650312424, 0.03462797403335571, -0.04609441012144089, 0.08653783053159714, 0.04350791871547699, 0.06204478442668915, 0.03979416564106941, -0.11589500308036804, -0.04912998154759407, 0.014556906186044216, -0.07079533487558365, 0.005449756979942322, 0.0010397000005468726, 0.0033515486866235733, -0.038412902504205704, 0.03705652058124542, 0.028910210356116295, -0.1213657557964325, -0.14074628055095673, 0.054898228496313095, -0.04649693891406059, 0.01074381172657013, 0.009087636135518551, -0.06966540962457657, 0.08689195662736893, 0.010898781009018421, -0.025560755282640457, -0.08879398554563522, 0.07635550200939178, -0.1454782336950302, 0.10004662722349167, -0.05931151658296585, -0.08107972145080566, 0.013093868270516396, 0.00752798980101943, 0.0717223733663559, 0.003869274165481329, 0.024498170241713524, 0.11871103197336197, 0.028360579162836075, -0.08314050734043121, 0.16108658909797668, 0.10323849320411682, 0.029509972780942917, -0.04315994307398796, -0.01827995851635933, -0.04935485124588013, 0.06729244440793991, -0.004575034137815237, -0.09559126943349838, 0.039007704704999924, -0.03682318702340126, -0.1267806440591812, 0.05363275110721588, 0.025520004332065582, 0.06400090456008911, -0.07726413756608963, 0.04115437716245651, -0.030097754672169685, -0.07769395411014557, 0.0026900600641965866, -0.06897065043449402, 0.07607883960008621, -0.051414214074611664, -0.10517339408397675, 0.004938350524753332, -0.022901413962244987, -0.09458835422992706, -0.0003489537339191884, 0.006795460823923349, 0.07632166147232056, 0.08145902305841446, 0.04271945729851723, 0.09503695368766785, 0.02269865572452545, 0.1517070084810257, 0.06844937056303024, 0.12715306878089905, -0.009880339726805687, -0.01631358452141285, -0.03022727556526661, -0.06307775527238846, 0.07654149830341339, -0.1445545256137848, 0.1343350112438202, -0.05353870987892151, -0.010164882056415081, 0.20043975114822388, -0.08570540696382523, 0.05033724009990692, 0.0787014588713646, 0.04354161396622658, -0.013706324622035027, 0.01191241480410099, -0.117559053003788, 0.005155833438038826, 0.001554454443976283, -0.025359686464071274, 0.13456527888774872, 0.07923472672700882, -0.03365086391568184, 0.05453973636031151, -0.1262494921684265, -0.07114002108573914, -0.12266579270362854, -0.016016464680433273, -0.012735724449157715, 0.009591232985258102, -0.10149405896663666, -0.07523662596940994, -0.08443208783864975, -0.02930155023932457, 0.023696767166256905, -0.07849909365177155, -0.06427905708551407, -0.04752181097865105, 0.04224591702222824, 0.04977039992809296, 0.13891634345054626, -0.09353306889533997, -0.144102081656456, -0.013470779173076153, -0.07329371571540833, 0.10929347574710846, -0.06026246026158333, -0.02878662198781967, 0.030928900465369225, 0.0434303879737854, 0.03153325989842415, 0.08297784626483917, -0.10335249453783035, 0.02595069631934166, -0.029122035950422287, 0.05731097236275673, 0.09009644389152527, 0.039043862372636795, -0.03321022912859917, -0.008947540074586868, 0.047855161130428314, -0.05431554466485977, 0.00895645096898079, -0.055971622467041016, 0.03010910004377365, -0.09762411564588547, -0.040239304304122925, 0.028440847992897034, 0.10177645087242126, 0.09209530800580978, -0.07425052672624588, -0.04941205307841301, -0.04452275484800339, 0.04871908202767372, -0.009320216253399849, -0.04699383303523064, 0.1489511877298355, 0.12668190896511078, 0.13547024130821228, -0.03961532562971115, -0.024622298777103424, 0.1138649731874466, 0.07856524735689163, -0.17068199813365936, -0.05744638666510582, -0.1639212965965271, 0.03245304152369499, -0.016535397619009018, -0.012506040744483471, 0.02175266295671463, -0.03252322971820831, 0.14261743426322937, 0.05745984613895416, 0.028576046228408813, 0.0864778384566307, 0.0034049442037940025, 0.08659840375185013, 0.10523895919322968, 0.08493273705244064, -0.07027632743120193, 0.01951034925878048, -0.08407789468765259, -0.009857019409537315, -0.002732852939516306, -0.10338473320007324, -0.005757918581366539, 0.13367214798927307, -0.04595301300287247, -0.05084970220923424, -0.04070829227566719, -0.0034655635245144367, -0.14946629106998444, -0.1497015655040741, -0.09858964383602142, 0.055676281452178955, -0.10115446150302887, 0.04976249486207962, -0.020888345316052437, 0.030146436765789986, 0.005456134676933289, -0.0006526906508952379, 0.025217330083251, -0.025599461048841476, -0.09338544309139252, 0.15549130737781525, -0.03323996439576149, 0.013063819147646427, -0.10068110376596451, 0.07013752311468124, -0.0184828732162714, -0.05924229696393013, 0.012518944218754768, -0.009640003554522991, 0.004200840834528208, 0.12821488082408905, -0.07983917742967606, -0.056060418486595154, 0.013250168412923813, -0.0012024870375171304, -0.13790835440158844, 0.043147046118974686, 0.011778204701840878, 0.09537564218044281, -0.06161367520689964, 0.11354614049196243, 0.00841162446886301, -0.03563510254025459, 0.12425346672534943, -0.015593229793012142, 0.06267401576042175, 0.05396000295877457, 0.05889793112874031, -0.020254068076610565, 0.08348625153303146, -0.025432797148823738, -0.007559378631412983, 0.1132846251130104, -0.04672487452626228, -0.03239254653453827, 0.05604458227753639, -0.1128382757306099, 0.11732671409845352, 0.0751037448644638, -0.05961296334862709, -0.0002662552578840405, 0.004309247247874737], -fpext:[0.012262098491191864, 0.047673653811216354, -0.0833655297756195, 0.11458821594715118, -0.08235515654087067, 0.027895208448171616, -0.032775308936834335, -0.03264462202787399, 0.04105183482170105, 0.05993344634771347, 0.10972002148628235, -0.08010102063417435, 0.019225813448429108, -0.05079411715269089, -0.0589432530105114, -0.17188149690628052, -0.01915397308766842, -0.026506315916776657, 0.10179268568754196, -0.011111403815448284, 0.08260849863290787, -0.0018656631000339985, -0.09300816059112549, 0.18202899396419525, -0.024496136233210564, -0.018741091713309288, 0.05009082332253456, 0.020646439865231514, -0.018279073759913445, 0.07665187865495682, 0.017247403040528297, -0.08052372932434082, 0.03725243732333183, 0.006940279621630907, 0.08928137272596359, 0.08612051606178284, -0.03909258916974068, -0.037218570709228516, -0.052419427782297134, 0.010409143753349781, -0.017695320770144463, 0.015467427670955658, 0.09686706215143204, -0.015135877765715122, -0.09049568325281143, -0.1047150194644928, 0.0976334735751152, 0.04786748066544533, -0.05472869053483009, 0.05883468687534332, 0.13553915917873383, 0.0468464195728302, -0.11119434237480164, 0.03168414160609245, 0.0745481476187706, 0.028441138565540314, 0.15733613073825836, -0.005830204579979181, -0.06315194815397263, 0.022793693467974663, -0.012480846606194973, 0.005519778933376074, -0.14752542972564697, -0.11505356431007385, 0.024149298667907715, 0.01651064120233059, -0.15957233309745789, 0.09911784529685974, 0.004239656031131744, 0.05811699107289314, -0.11231373250484467, 0.031137969344854355, 0.08778037875890732, -0.030240802094340324, -0.004741338547319174, 0.048711128532886505, 0.05509289354085922, 0.027833079919219017, -0.12500296533107758, 0.10286916047334671, 0.0546439029276371, 0.005888927262276411, -0.143474742770195, 0.07895953208208084, 0.054684221744537354, 0.0013467568205669522, -0.110707588493824, 0.07031727582216263, -0.11147084832191467, -0.05453983321785927, 0.08040669560432434, 0.013957321643829346, -0.0354011245071888, -0.013916578143835068, -0.15875035524368286, 0.06829916685819626, -0.05597458779811859, 0.05581849068403244, -0.1070907711982727, 0.008780434727668762, -0.046950843185186386, 0.03795015439391136, 0.13388817012310028, -0.023346321657299995, -0.020582376047968864, -0.08373371511697769, 0.07006297260522842, -0.0025029797106981277, -0.09588973224163055, 0.13979466259479523, -0.03969612717628479, -0.019066445529460907, -0.03392167389392853, -0.11248268932104111, 0.03160644322633743, 0.08618561178445816, 0.05917973071336746, -0.1303512006998062, 0.016792558133602142, 0.0018321857787668705, -0.07085246592760086, 0.0029055282939225435, 0.1675732433795929, 0.10466640442609787, 0.0033766787964850664, 0.03564804792404175, -0.04931677505373955, -0.07565637677907944, 0.008588932454586029, 0.07362065464258194, -0.057413071393966675, -0.02444303035736084, -0.023073852062225342, 0.039276592433452606, -0.11632411181926727, -0.07026037573814392, -0.02708509750664234, -0.089345782995224, 0.13891702890396118, 0.06876572966575623, -0.2519432306289673, 0.0843474268913269, 0.06057307496666908, -0.037520669400691986, 0.023828983306884766, -0.05236152932047844, 0.05717770382761955, -0.034741584211587906, -0.01625620201230049, 0.07827335596084595, 0.14690107107162476, -0.11354587972164154, 0.002155461348593235, 0.08393651992082596, -0.034551091492176056, -0.039219312369823456, -0.04042249172925949, 0.08514604717493057, 0.07557278126478195, -0.021404104307293892, 0.05595562234520912, -0.014472775161266327, 0.06799814850091934, 0.021602001041173935, 0.00570256169885397, 0.01664368249475956, 0.08913947641849518, 0.15461111068725586, -0.0737110897898674, -0.04985105246305466, -0.1230209618806839, -0.047591857612133026, -0.011262893676757812, 0.022357115522027016, 0.10058958828449249, -0.001833459478802979, -0.08262362331151962, -0.01897297240793705, -0.12520688772201538, 0.059005532413721085, 0.10694145411252975, -0.06703245639801025, -0.018401414155960083, 0.04322749748826027, 0.057439081370830536, -0.028733991086483, -0.05534505844116211, 0.1596512347459793, -0.06369908899068832, 0.056587543338537216, 0.062430329620838165, 0.12782400846481323, -0.05482209473848343, -0.035537902265787125, 0.011080923490226269, 0.031171608716249466, 0.07512397319078445, -0.0475325770676136, -0.09905855357646942, -0.05751678720116615, -0.10722971707582474, 0.09290319681167603, -0.05730534344911575, 0.03921487554907799, -0.14856155216693878, -0.015173936262726784, 0.0013897813623771071, 0.06093538552522659, -0.008539988659322262, -0.06070656329393387, 0.15393494069576263, -0.03503724932670593, -0.0457017756998539, -0.03652378171682358, -0.0026840479113161564, 0.0545915924012661, 0.057328276336193085, 0.08035619556903839, 0.027036011219024658, 0.03511970862746239, 0.032916951924562454, -0.07667667418718338, -0.017494138330221176, 0.04463168606162071, -0.05471830442547798, -0.041267622262239456, 0.02293471060693264, 0.03442688658833504, 0.06236659735441208, -0.12788788974285126, -0.037240542471408844, 0.027332933619618416, -0.1310928612947464, 3.669998477562331e-05, -0.05536658316850662, -0.003959182649850845, 0.01962820626795292, 0.06412728875875473, -0.12400335818529129, -0.12786422669887543, 0.03386703506112099, -0.027536330744624138, 0.1608656495809555, 0.051329731941223145, 0.02486276626586914, -0.0953301414847374, -0.16462698578834534, -0.05923386663198471, 0.042358871549367905, -0.09456604719161987, -0.011145038530230522, 0.09349437057971954, -0.05376015976071358, -0.019523954018950462, 0.1687685251235962, -0.0007614720379933715, 0.03492562472820282, -0.06316500902175903, 0.06688140332698822, -0.03180569037795067, 0.0003344856668263674, -0.06871119886636734, 0.04612598195672035, -0.005935453809797764, -0.06384678184986115, -0.038206569850444794, -0.011858697049319744, -0.043632060289382935, -0.013280650600790977, -0.038093749433755875, -0.013435062021017075, 0.026061393320560455, -0.014750950038433075, -0.04919202998280525, 0.016556303948163986, -0.09714551270008087, 0.08991532772779465, -0.03005153313279152, 0.01537293754518032, -0.13009728491306305, -0.01686840131878853, 0.06595516204833984, 0.004381538834422827, 0.12737736105918884, 0.021835962310433388, 0.11925414204597473, -0.0044757649302482605, 0.0037708000745624304, 0.009120379574596882, 0.0694512128829956, -0.1296370029449463, -0.08364741504192352, -0.14624035358428955, 0.05998864024877548, -0.07060475647449493, 0.1646362543106079, 0.04684846103191376, 0.09907882660627365, -0.00023515599605161697, -0.03181746229529381], -fptosi:[-0.01604224555194378, -0.14684459567070007, 0.0896402969956398, -0.06204644590616226, -0.08944275975227356, 0.007486729416996241, -0.027845362201333046, 0.013761352747678757, 0.03327088803052902, 0.06856060773134232, 0.1388646364212036, -0.03659677505493164, 0.12244229763746262, 0.04063834622502327, 0.007239472586661577, -0.047712381929159164, -0.028164759278297424, -0.16358435153961182, 0.0307729821652174, 0.05431418493390083, 0.06730616837739944, 0.15411974489688873, 0.08567120879888535, -0.019683321937918663, 0.11947601288557053, -0.00904571358114481, -0.02554129809141159, -0.04100193455815315, -0.08614689856767654, -0.0039766449481248856, -0.006423337385058403, -0.0999547690153122, -0.06298036873340607, 0.14071646332740784, 0.002723314333707094, -0.15783287584781647, 0.13282087445259094, -0.018126022070646286, 0.03672878071665764, 0.0471738800406456, -0.0661451444029808, -0.035699017345905304, -0.12658962607383728, -0.09309235960245132, -0.03652210906147957, -0.07622234523296356, 0.11441461741924286, 0.0551622249186039, -0.15232515335083008, 0.055427435785532, -0.07165685296058655, 0.04078592360019684, -0.030166683718562126, -0.009965878911316395, 0.15586557984352112, -0.08529061079025269, 0.02651897817850113, 0.0009233345626853406, 0.036428146064281464, 0.06945213675498962, -0.011586707085371017, 0.10381868481636047, 0.10707646608352661, -0.07141469419002533, 0.09123484045267105, 0.014890363439917564, 0.10045970976352692, 0.09241931140422821, 0.0070327771827578545, -0.0037910514511168003, -0.006274864077568054, 0.05032489448785782, 0.06369201838970184, 0.05507276952266693, -0.08202428370714188, 0.02986883372068405, 0.02807854488492012, -0.07356888800859451, 0.033187735825777054, -0.0572502501308918, -0.028441915288567543, 0.1029193177819252, -0.05973431095480919, -0.06877636909484863, -0.059784673154354095, 0.0025217935908585787, 0.06598374247550964, 0.08862869441509247, 0.03765540570020676, -0.03424825519323349, 0.04531586542725563, 0.0431104376912117, -0.05264372378587723, 0.022207997739315033, 0.10547792911529541, 0.004094876814633608, -0.07528215646743774, 0.11032511293888092, 0.06037382781505585, -0.0595865361392498, 0.05140653997659683, -0.017260419204831123, -0.04935513436794281, -0.05837607383728027, 0.004774634726345539, -0.058860935270786285, 0.07849082350730896, -0.026519760489463806, 0.062466077506542206, -0.08557606488466263, -0.10547813773155212, 0.05465438589453697, -0.10271025449037552, 0.08382944017648697, -0.05821998417377472, 0.030604472383856773, 0.12780460715293884, 0.0628991350531578, -0.11818978935480118, -0.018013766035437584, 0.11530901491641998, 0.01601509563624859, -0.1346186399459839, 0.06929248571395874, -0.0038197238463908434, -0.133092999458313, 0.046951089054346085, 0.12266983091831207, 0.13185478746891022, 0.0946667343378067, 0.026539139449596405, -0.11534933000802994, -0.015093348920345306, 0.07426061481237411, -0.07209619134664536, -0.007489863783121109, -0.04044421762228012, 0.1149262860417366, -0.05563719570636749, -0.015927176922559738, -0.18107661604881287, 0.03181585296988487, 0.05541589856147766, 0.19969095289707184, -0.12785550951957703, -0.11734035611152649, 0.05124731734395027, 0.005561946891248226, 0.06405018270015717, 0.056520067155361176, 0.12074921280145645, 0.007349089253693819, -0.12479130178689957, -0.012094711884856224, -0.04034307971596718, 0.05442449450492859, 0.02733702026307583, 0.009462502785027027, 0.0406067855656147, -0.10520479828119278, 0.0813138484954834, -0.08343248814344406, 0.056388139724731445, 0.021273929625749588, 0.04725445434451103, -0.0510275699198246, -0.022707408294081688, -0.002390818437561393, -0.18935555219650269, 0.0011453055776655674, 0.03145043924450874, -0.01557073276489973, 0.04031151160597801, -0.00029531100881285965, 0.013348912820219994, 0.04505382478237152, 0.07592041790485382, -0.003172312630340457, 0.06477819383144379, -0.13394783437252045, -0.10713952034711838, 0.004646201618015766, -0.006565726827830076, -0.05258583649992943, -0.013755268417298794, 0.11746399104595184, 0.06575509905815125, -0.06864576041698456, -0.04437777400016785, -0.10554248839616776, 0.04944278299808502, 0.0700094923377037, -0.0697871521115303, -0.02110908553004265, 0.09192031621932983, 0.03730488941073418, 0.03534067049622536, 0.018220430240035057, 0.08877187967300415, 0.11303376406431198, 0.05481431633234024, 0.02559291571378708, -0.03482082858681679, 0.03908524289727211, -0.06656117737293243, 0.05495700240135193, -0.04399937763810158, -0.02307095378637314, -0.012293738313019276, -0.02684010937809944, -0.04373731464147568, -0.04753581061959267, -0.0031890750396996737, 0.11839687079191208, -0.02583375759422779, -0.05810382589697838, 0.052836980670690536, -0.05455942079424858, 0.03843042626976967, -0.03189477324485779, 0.10242532193660736, 0.08499033004045486, -0.020694991573691368, 0.025229502469301224, -0.04950236156582832, 0.06765933334827423, 0.06147787347435951, 0.01639079488813877, 0.12162362784147263, 0.05287954956293106, -0.10574442148208618, -0.09921390563249588, 0.07950222492218018, -0.06623350083827972, -0.0065165734849870205, 0.01902317814528942, -0.12027551233768463, 0.03346265107393265, 0.05958259478211403, 0.0045831091701984406, 0.008592018857598305, 0.13809621334075928, 0.05772165581583977, -0.0461491122841835, -0.050057120621204376, 0.025702567771077156, 0.01749136485159397, -0.0807163417339325, -0.030024737119674683, -0.06704485416412354, 0.03856266662478447, 0.07264494895935059, 0.07835476845502853, -0.003293135669082403, 0.021589532494544983, 0.020059965550899506, -0.010563978925347328, -0.061582278460264206, 0.011232650838792324, 0.07379966974258423, 0.006372824311256409, 0.028516490012407303, -0.019201690331101418, -0.09252095222473145, 0.019073043018579483, 0.03760632872581482, 0.01998612843453884, 0.0015232539735734463, -0.10174201428890228, -0.05948460474610329, -0.07054899632930756, 0.010525297373533249, -0.02951124683022499, 0.07678863406181335, -0.09422894567251205, 0.04717819765210152, -0.08594147861003876, -0.01865561120212078, -0.021354559808969498, 0.013368492014706135, -0.05151941254734993, -0.12664279341697693, 0.05607212707400322, 0.121421679854393, -0.010773390531539917, 0.07454942166805267, -0.019827716052532196, 0.07022645324468613, -0.13926728069782257, 0.11335830390453339, -0.026843328028917313, -0.07295111566781998, 0.07270719856023788, 0.11092305183410645, 0.03406556323170662, -0.021858735010027885, 0.014928361400961876, -0.08935939520597458, -0.0019911082927137613, -0.014416421763598919], -fptoui:[-0.07150053977966309, -0.012590078637003899, 0.07771897315979004, -0.1048836037516594, -0.01160380244255066, -0.05797469615936279, 0.10618135333061218, 0.01182009931653738, 0.12529189884662628, 0.07164270430803299, 0.012883534654974937, -0.014264932833611965, 0.05988886579871178, -0.11803767830133438, 0.007085403427481651, 0.0028405310586094856, 0.021260492503643036, 0.06411214917898178, -0.03202696517109871, -0.07532249391078949, 0.10059748589992523, 0.08839210867881775, -0.04878057911992073, -0.04994513839483261, -0.025606922805309296, -0.0409773513674736, -0.004885379690676928, 0.026265179738402367, 0.03192393481731415, 0.13293956220149994, -0.00477208336815238, -0.09478867053985596, 0.029647836461663246, 0.15287068486213684, -0.09136176854372025, -0.05331199988722801, -0.03001987934112549, 0.008854496292769909, -0.0738414004445076, -0.004410669673234224, -0.02591952495276928, -0.142019584774971, 0.07935044914484024, 0.09240704029798508, 0.07439745962619781, -0.05242374166846275, 0.09166547656059265, -0.007751207333058119, -0.17289908230304718, -0.06316426396369934, 0.030607789754867554, 0.03516717627644539, 0.15714937448501587, 0.003972659353166819, -0.08599492162466049, 0.013547300361096859, -0.08983473479747772, -0.028295164927840233, -0.09727972000837326, -0.0025859277229756117, 0.056730613112449646, 0.0681963711977005, 0.017321638762950897, -0.04264788702130318, 0.11726690828800201, 0.014794652350246906, -0.03328215703368187, 0.009651905857026577, -0.04514193907380104, 0.07377880811691284, 0.014380506239831448, 0.029453087598085403, -0.12515568733215332, 0.030486343428492546, 0.026711169630289078, -0.044716306030750275, -0.053591977804899216, -0.026323771104216576, 0.042611509561538696, -0.12503868341445923, 0.1508975327014923, -0.0488223135471344, -0.022242777049541473, -0.06415476649999619, -0.07697183638811111, -0.057573866099119186, 0.08206294476985931, -0.037324458360672, 0.05988805741071701, -0.02445111982524395, 0.022196494042873383, -0.012864903546869755, 0.12527766823768616, 0.016498468816280365, 0.0020491769537329674, -0.07021540403366089, -0.15448303520679474, 0.04945599287748337, 0.0766868069767952, -0.024134499952197075, -0.007575873751193285, -0.000811224163044244, 0.04299148917198181, 0.015864860266447067, -0.046146851032972336, -0.033764880150556564, -0.012786706909537315, -0.048849981278181076, 0.02629760466516018, 0.13258510828018188, -0.047126006335020065, -0.039392631500959396, -0.017697203904390335, 0.014357581734657288, 0.03161827102303505, -0.12150213867425919, 0.018718447536230087, -0.12889674305915833, -0.07677368074655533, -0.11043181270360947, -0.16647183895111084, 0.06281183660030365, 0.08087144792079926, 0.08143969625234604, -0.003781647188588977, -0.0039610168896615505, 0.017815839499235153, 0.03166685625910759, -0.14192204177379608, 0.09532799571752548, 0.028441518545150757, 0.00032949267188087106, -0.007152999751269817, 0.02798842079937458, 0.044726237654685974, -0.0010706842876970768, -0.11442212760448456, 0.05669140815734863, 0.01402424369007349, 0.048660676926374435, -0.06369251012802124, -0.078162781894207, 0.15523459017276764, 0.1213672012090683, -0.1129254475235939, -0.09500271081924438, 0.08109681308269501, 0.005288525018841028, 0.08270252496004105, 0.05650393292307854, -0.11500333994626999, 0.00494017917662859, 0.0013344335602596402, 0.032718636095523834, -0.09616761654615402, -0.06744632124900818, -0.005581090226769447, 0.07713895291090012, 0.034472208470106125, 0.02308547869324684, 0.07248595356941223, -0.09416873008012772, 0.10917078703641891, 0.027455167844891548, 0.011657138355076313, -0.12951982021331787, -0.02984066680073738, -0.07015995681285858, 0.050306424498558044, -0.09680237621068954, 0.03303351253271103, 0.09552129358053207, -0.0303655918687582, 0.03954778239130974, -0.12395414710044861, 0.04580574482679367, 0.013746875338256359, -0.07762378454208374, 0.06384500861167908, -0.09647926688194275, -0.11070907115936279, -4.24974896304775e-05, -0.12840819358825684, 0.027370821684598923, -0.02035326324403286, -0.07045845687389374, -0.05506208911538124, 0.09445372968912125, 0.13442553579807281, 0.061170544475317, -0.05253332853317261, -0.13593602180480957, 0.03941876441240311, -0.05164463073015213, -0.04793944209814072, 0.015914473682641983, 0.0020676092244684696, -0.10695240646600723, -0.07835543900728226, -0.08232241123914719, 0.09070630371570587, 0.022709250450134277, -0.12041335552930832, 0.061101026833057404, 0.03456515818834305, 0.0908421203494072, -0.041381847113370895, -0.1042243167757988, -0.10134261846542358, 0.1321512758731842, 0.11441855877637863, -0.0205985177308321, 0.0778091698884964, -0.044638488441705704, -0.12417393177747726, 0.060787640511989594, 0.04225193336606026, 0.0432550348341465, 0.02980544976890087, -0.024696825072169304, 0.021017661318182945, 0.07489679753780365, 0.0235331691801548, 0.06013694405555725, -0.056313950568437576, 0.05402645096182823, -0.03252655640244484, 0.016747506335377693, -0.015598696656525135, 0.03602350503206253, -0.03366057202219963, -0.11878040432929993, -0.04905034601688385, 0.0005883537814952433, 0.09683413803577423, -0.012373526580631733, 0.02594256028532982, -0.0023794739972800016, -0.050622690469026566, 0.05202494561672211, -0.030791860073804855, -0.06412101536989212, 0.009142095223069191, -0.1498127430677414, -0.029545821249485016, 0.011357675306499004, -0.10045766830444336, 0.11550965905189514, -0.1435776948928833, 0.13292796909809113, 0.05600638687610626, 0.06687942147254944, 0.11640429496765137, 0.14424531161785126, -0.08131296932697296, -0.040588825941085815, 0.0335678793489933, -0.13931259512901306, -0.07637111097574234, -0.0055202338844537735, 0.008601842448115349, -0.12144014239311218, -0.01946411468088627, 0.06202004849910736, -0.006806289777159691, -0.0414382703602314, -0.019377822056412697, -0.012148884125053883, 0.02800161764025688, -0.17147687077522278, -0.029092688113451004, -0.0575082004070282, -0.03170745074748993, 0.019026806578040123, 0.05284148454666138, -0.05927412584424019, -0.03678489476442337, -0.09989981353282928, -0.08367417007684708, -0.03381959721446037, -0.07054269313812256, -0.17159706354141235, -0.004930476658046246, -0.031027067452669144, -0.07830526679754257, -0.07574953138828278, -0.005849083419889212, 0.11736840009689331, 0.02694684825837612, -0.004356917925179005, 0.06444322317838669, -0.01897774077951908, -0.06406723707914352, 0.14762407541275024, 0.051435913890600204, -0.020191892981529236, 0.03360971435904503, 0.028893159702420235, -0.038499608635902405, 0.0023792763240635395], -fptrunc:[-0.14778868854045868, 0.06058468297123909, 0.05693555250763893, -0.050263650715351105, 0.03938232362270355, -0.11665739119052887, -0.16432838141918182, -0.04288196563720703, 0.03370073437690735, 0.01413868647068739, -0.08620525151491165, 0.03712230175733566, 0.04986590892076492, -0.031922437250614166, 0.1058877632021904, 0.031710878014564514, -0.03690606728196144, -0.04291186109185219, 0.042655326426029205, -0.010873137041926384, -0.20008809864521027, 0.1757659614086151, -0.03611268848180771, -0.019595762714743614, -0.029413381591439247, -0.040659401565790176, -0.04807345196604729, 0.048861391842365265, 0.02374270185828209, 0.03726827725768089, 0.0708000510931015, -0.004668242763727903, -0.07633800059556961, -0.06420715898275375, -0.05796355754137039, 0.12794333696365356, -0.03827473521232605, 0.001816089148633182, -0.007798639126121998, -0.06303521990776062, -0.037271223962306976, 0.07330424338579178, 0.10625193268060684, 0.10483333468437195, -0.115229532122612, -0.07031434774398804, -0.014258943498134613, -0.03046063333749771, -0.033632081001996994, 0.052098482847213745, 0.11448953300714493, -0.05771152302622795, 0.02653840184211731, -0.035597387701272964, -0.08444194495677948, 0.05685528367757797, 0.09185483306646347, -0.04352964088320732, -0.028101840987801552, 0.1557365208864212, 0.003298759227618575, -0.08842476457357407, -0.10664989799261093, -0.08658716082572937, 0.12765389680862427, -0.004875779151916504, 0.018865862861275673, 0.06581442803144455, 0.0411049947142601, 0.06228717043995857, -0.02771206945180893, 0.05980242043733597, 0.06821013242006302, -0.00850002747029066, 0.0007257394609041512, -0.10005790740251541, 0.05991750955581665, -0.0023928906302899122, 0.03455726429820061, -0.08594895899295807, -0.04779469594359398, -0.011546474881470203, -0.03466431051492691, -0.08337073028087616, -0.09793512523174286, -0.0036889270413666964, -0.022246534004807472, 0.04004649817943573, -0.04126453027129173, -0.12235800921916962, -0.037963420152664185, 0.03376058116555214, -0.11902365833520889, -0.025297947227954865, -0.008251728489995003, -0.07973358035087585, -0.051817718893289566, -0.04115372896194458, 0.0758105143904686, 0.11719854921102524, 0.019875138998031616, -0.13628296554088593, 0.039609771221876144, 0.008102371357381344, 0.07197175920009613, 0.0029241677839308977, -0.09536822885274887, 6.798411050112918e-05, 0.10558410733938217, 0.06403331458568573, -0.013735000044107437, 0.01508768554776907, 0.011226500384509563, 0.11277114599943161, 0.030302053317427635, -0.010428204201161861, 0.07409501820802689, -0.1363944560289383, 0.010484200902283192, -0.09859386831521988, -0.09973908960819244, 0.004942672792822123, -0.13693483173847198, 0.0629458874464035, 0.08614926785230637, 0.10399917513132095, -0.00015711496234871447, 0.05173740163445473, 0.11476524919271469, 0.04992076754570007, -0.044825442135334015, -0.0008909584721550345, -0.04647374153137207, 0.13589100539684296, 0.1190725564956665, -0.06583457440137863, 0.08256036788225174, 0.0012503043981269002, 0.07661531120538712, 0.07182370871305466, -0.016444725915789604, -0.02174067497253418, -0.032025258988142014, 0.005197446793317795, 0.000803573289886117, -0.06470390409231186, 0.05512773245573044, 0.04694512113928795, -0.14173516631126404, 0.1256224811077118, -0.08645991235971451, 0.08620856702327728, 0.0010404661297798157, -0.007233678828924894, -0.08953340351581573, -0.019084347411990166, -0.026702141389250755, 0.08636843413114548, -0.004416747018694878, 0.028782960027456284, -0.044084932655096054, -0.04248078167438507, 0.07910630851984024, 0.01051137875765562, 0.07210466265678406, -0.016429314389824867, -0.11620611697435379, 0.048401590436697006, -0.021728500723838806, -0.09479190409183502, 0.02887430600821972, -0.07862275838851929, -0.1464749574661255, -0.12251856923103333, -0.032649483531713486, 0.0521002896130085, -0.061884939670562744, -0.03106522560119629, 0.05047325789928436, -0.16738402843475342, -0.08121711760759354, 0.0783713161945343, -0.10820720344781876, -0.011211316101253033, -0.04049605876207352, 0.054417021572589874, 0.042048774659633636, 0.16942380368709564, 0.07088865339756012, 0.07442861795425415, 0.10849441587924957, 0.05917457118630409, -0.1311866194009781, 0.07031376659870148, 0.01768810674548149, -0.10971767455339432, -0.015604784712195396, -0.0025061422493308783, -0.04158073663711548, -0.05351940542459488, 0.05981690064072609, 0.026587331667542458, -0.030786076560616493, -0.04307692125439644, 0.04531831294298172, -0.02621406689286232, -0.04247823357582092, -0.01081705093383789, -0.04916948080062866, -0.07012727111577988, -0.07954926788806915, -0.04749789461493492, 0.05019201710820198, -0.037635836750268936, -0.012848584912717342, -0.08245378732681274, 0.09033936262130737, 0.05562588572502136, -0.03263334184885025, 0.005698989611119032, 0.01460450328886509, 0.01670004054903984, -0.026992162689566612, 0.016766121610999107, 0.009699410758912563, 0.14052322506904602, -0.03291887417435646, 0.04546071216464043, -0.03628179430961609, -0.07044729590415955, -0.12115239351987839, 0.04472563415765762, -0.02391044981777668, 0.000478123314678669, -0.006423002574592829, 0.00018538044241722673, 0.03559769690036774, 0.00472561689093709, 0.12757177650928497, -0.0470101535320282, -0.04933607950806618, 0.011260075494647026, -0.024508582428097725, -0.019222121685743332, -0.01719732955098152, 0.014723348431289196, 0.07296933978796005, -0.10681058466434479, 0.16118887066841125, -0.07955922186374664, -0.08053872734308243, 0.05048350244760513, 0.03720102831721306, -0.0412675216794014, -0.052020199596881866, 0.02349078841507435, 0.15759193897247314, -0.12407901883125305, 0.030060168355703354, -0.0065714032389223576, -0.06971362978219986, 0.07444528490304947, 0.008511891588568687, -0.11032409965991974, -0.10690339654684067, 0.10424630343914032, -0.010647421702742577, -0.18212753534317017, 0.02627386525273323, -0.09493879228830338, 0.015876060351729393, -0.008924748748540878, -0.08203565329313278, -0.03170294687151909, 0.12616096436977386, -0.028446219861507416, 0.12604904174804688, -0.07391650974750519, 0.0191621333360672, 0.04222080111503601, 0.051586151123046875, 0.05839075893163681, 0.024073710665106773, -0.022725475952029228, -0.11797057837247849, 0.17042577266693115, -0.015019604004919529, -0.0009015989489853382, 0.022163400426506996, 0.17738281190395355, 0.004637787584215403, -0.00961301103234291, 0.1154584139585495, 0.06071033701300621, -0.07974716275930405, 0.08307063579559326, -0.03378356620669365, 0.0003668746503535658, 0.0006797838141210377, 0.04038245230913162], -freeze:[-0.11007754504680634, 0.1028006300330162, 0.031109625473618507, -0.10159748047590256, -0.054181572049856186, 0.04016578197479248, 0.04038441553711891, 0.09891561418771744, 0.02098744362592697, -0.07791052013635635, 0.015960298478603363, 0.004916871432214975, 0.01478537917137146, -0.020660942420363426, -0.1408628225326538, -0.05046490579843521, 0.08619682490825653, -0.03929977864027023, 0.03703654929995537, -0.011264579370617867, -0.16331006586551666, -0.03083192929625511, 0.13436393439769745, -0.007521460298448801, 0.15604856610298157, -0.044061724096536636, 0.04419438913464546, -0.11169406771659851, -0.005143685266375542, 0.1421172171831131, 0.16252590715885162, -0.04201666638255119, -0.09851610660552979, -0.12034735828638077, 0.05605163425207138, 0.07142945379018784, 0.11179306358098984, 0.025531550869345665, -0.10700634121894836, -0.020188890397548676, -0.03243037313222885, 0.02290370874106884, -0.0983634740114212, -0.053811024874448776, 0.02664484828710556, 0.015344432555139065, 0.06501569598913193, 0.07853443175554276, -0.07973959296941757, 0.1166824996471405, -0.11228194087743759, 0.03514545038342476, -0.015514680184423923, 0.15098321437835693, 0.09499762952327728, 0.10114555805921555, 0.0482926219701767, -0.002684828359633684, -0.0025253279600292444, 0.08999734371900558, -0.05388563871383667, -0.08632782846689224, -0.0647982805967331, 0.06408148258924484, -0.028326261788606644, 0.10125114768743515, 0.08901979774236679, -0.02341180108487606, 0.042094167321920395, 0.08798445761203766, 0.03242965787649155, 0.035780128091573715, -0.1289072483778, 0.13269223272800446, -0.11347135156393051, -0.13935281336307526, -0.043607648462057114, -0.018857913091778755, -0.10130435228347778, -0.14217334985733032, 0.03752235323190689, 0.0066124689765274525, 0.09223105013370514, -0.10630138218402863, -0.1190236359834671, -0.009353737346827984, 0.0008510575862601399, -0.00937208067625761, 0.01597362756729126, -0.11693857610225677, 0.025575490668416023, -0.013252029195427895, -0.0003714199410751462, 0.008794804103672504, 0.012394360266625881, 0.01679121144115925, 0.0685075968503952, 0.07959286123514175, 0.05279384180903435, -0.16561731696128845, 0.0801280289888382, -0.08307414501905441, 0.04484176263213158, -0.057259537279605865, 0.012331394478678703, 0.06577374786138535, 0.016888843849301338, -0.12220657616853714, -0.0066522094421088696, -0.026162471622228622, 0.06170085445046425, 0.05932752043008804, 0.019398730248212814, -0.06751207262277603, 0.15571485459804535, -0.018544554710388184, -0.03129099681973457, 0.08612488210201263, -0.11843255907297134, -0.07514410465955734, -0.08765769004821777, -0.07135066390037537, 0.03618641570210457, 0.05224037915468216, 0.11586634069681168, -0.01824478805065155, -0.08030204474925995, -0.06099972873926163, 0.03458653390407562, 0.0513104610145092, -0.10983558744192123, -0.029102064669132233, -0.05242583155632019, -0.047115713357925415, -0.1461091786623001, -0.025576304644346237, -0.09197574853897095, -0.0021262262016534805, -0.05791173875331879, -0.02677256241440773, 0.0208065714687109, 0.09639113396406174, 0.1385803520679474, 0.022567790001630783, -0.0901680439710617, -0.023766759783029556, -0.012645081616938114, 0.13543598353862762, 0.031156687065958977, -0.05342460796236992, 0.07732931524515152, -0.01101121585816145, -0.09164432436227798, -0.16377301514148712, -0.07511422783136368, 0.08817297220230103, 0.04007040336728096, 0.036283016204833984, -0.06793433427810669, -0.021035976707935333, -0.13599109649658203, -0.06359110027551651, 0.05997799336910248, 0.13867735862731934, 0.014435001648962498, 0.013799878768622875, 0.032252538949251175, 0.07366578280925751, 0.0534677654504776, 0.010769719257950783, 0.10366242378950119, 0.11058378219604492, -0.05318605899810791, -0.005853292532265186, 0.03485561162233353, 0.0816192775964737, 0.034797459840774536, -0.007512615527957678, -0.04169505462050438, 0.04185797646641731, 0.0641283467411995, 0.036312997341156006, 0.13893252611160278, 0.14425934851169586, -0.003875201568007469, 0.00030695967143401504, -0.0015846634050831199, 0.05868888273835182, -0.04873422905802727, -0.04598330706357956, -0.002911627059802413, 0.09836160391569138, -0.0849679559469223, 0.06286455690860748, -0.04573751613497734, 0.06591380387544632, 0.018948523327708244, -0.03910120204091072, 0.04917823523283005, -0.11827266961336136, 0.03230664134025574, -0.10813518613576889, -0.08148082345724106, 0.011737512424588203, -0.14415310323238373, 0.13237717747688293, 0.025894638150930405, -0.01578947901725769, 0.013249852694571018, -0.12546087801456451, 0.08864951133728027, -0.04048449546098709, 0.16174671053886414, -0.07927266508340836, -0.050708334892988205, 0.07011603564023972, 0.03666025772690773, 0.04569847881793976, -0.0785919725894928, 0.07314595580101013, 0.008399010635912418, -0.007973668165504932, -0.05534426122903824, 0.13260889053344727, 0.013484908267855644, -0.07046812027692795, -0.03232366591691971, -0.10972099006175995, 0.01612834632396698, -0.01381110493093729, 0.10902315378189087, 0.06167944148182869, -0.014315024018287659, 0.12595100700855255, -0.002411996014416218, 0.12064994126558304, 0.021369852125644684, 0.006504399236291647, -0.030179399996995926, 0.1167360469698906, -0.13594527542591095, -0.043652862310409546, 0.06370080262422562, 0.0856626033782959, 0.03748724237084389, 0.02534904144704342, 0.05355819687247276, -0.06865835934877396, 0.14805005490779877, 0.15632352232933044, -0.07325248420238495, 0.045142095535993576, 0.03436790034174919, -0.005323749966919422, 0.026653854176402092, 0.007501286920160055, 0.0047323815524578094, -0.16259150207042694, -0.13280664384365082, 0.15150576829910278, 0.05593420937657356, -0.10700270533561707, -0.05560676008462906, 0.08995363116264343, -0.0009781699627637863, 0.021489746868610382, 0.0060187652707099915, -0.015601666644215584, 0.10205817967653275, -0.19406984746456146, 0.005722656846046448, 0.043668340891599655, 0.06229671463370323, 0.033107805997133255, -0.04702386632561684, -0.030538009479641914, 0.08474699407815933, 0.02431803196668625, -0.12366829067468643, 0.0961863175034523, -0.05729089304804802, -0.03567793592810631, 0.08569230884313583, 0.049920279532670975, 0.1300135850906372, -0.06530413031578064, 0.10123147070407867, 0.04514257609844208, 0.09258415549993515, -0.023288629949092865, -0.03594109043478966, -0.03679599612951279, 0.09904911369085312, -0.14503037929534912, -0.03359471261501312, -0.009209781885147095, 0.020512087270617485, 0.0030989160295575857, -0.026465920731425285, 0.09555323421955109], -fsub:[0.0425780713558197, 0.06720270216464996, 0.05191358923912048, 0.04147787764668465, -0.08313911408185959, 0.012332244776189327, 0.07651136815547943, -0.06422596424818039, -0.06223160773515701, -0.05658622086048126, 0.08560917526483536, -0.13088048994541168, -0.032668959349393845, -0.09291284531354904, 0.008174441754817963, 0.01931689865887165, -0.10594530403614044, 0.13115356862545013, 0.010156303644180298, -0.022196287289261818, -0.1225646361708641, 0.05654826760292053, -0.0021888110786676407, -0.10334249585866928, -0.07719375938177109, 0.023459522053599358, 0.0006850388599559665, 0.029497774317860603, -0.04175589606165886, 0.04726943373680115, -0.010826146230101585, -0.07418573647737503, 0.030363937839865685, -0.019705502316355705, -0.06929073482751846, -0.023154573515057564, 0.05269476771354675, -0.06248096749186516, -0.005903281737118959, 0.04072146117687225, -0.06791364401578903, -0.027172347530722618, 0.04959413781762123, -0.046247418969869614, -0.05470975115895271, -0.13720285892486572, -0.1856439709663391, 0.041330061852931976, -0.0617760568857193, 0.018931042402982712, -0.04887966066598892, 0.009895293042063713, 0.1401440054178238, 0.02236771397292614, 0.0216099601238966, -0.06368618458509445, -0.03493204712867737, 0.20543037354946136, -0.17863376438617706, 0.07856184244155884, 0.06275160610675812, 0.09100744128227234, 0.03538757935166359, -0.08611662685871124, 0.049828313291072845, 0.002599346451461315, 0.0033127490896731615, 0.0721098780632019, 0.007065089885145426, 0.06862051784992218, 0.013142664916813374, 0.06857268512248993, -0.04698467627167702, -0.012638122774660587, -0.2114008367061615, 0.04274451360106468, 0.11812614649534225, -0.012566640973091125, -0.04183058440685272, -0.08403518050909042, 0.06123075261712074, -0.026944424957036972, -0.01645668037235737, -0.055036477744579315, -0.04764983430504799, -0.062993124127388, -0.03122597560286522, -0.05112888291478157, -0.11018981784582138, 0.011484851129353046, 0.051022861152887344, -0.09671741724014282, -0.018527263775467873, -0.0640515610575676, -0.15892143547534943, -0.045814886689186096, -0.05596853792667389, -0.029220763593912125, -0.11973823606967926, -0.1049463078379631, -0.07801435142755508, -0.016642630100250244, -0.0521203875541687, 0.07205066084861755, -0.10699714720249176, -0.09235293418169022, -0.11780595779418945, -0.03700246661901474, -0.1542433500289917, 0.1303584724664688, 0.07028175890445709, -0.001029247767291963, -0.11920944601297379, 0.025524890050292015, 0.023874904960393906, -0.013359984382987022, -0.005840466823428869, 0.00262918951921165, 0.005399682093411684, 0.11754803359508514, -0.05871053785085678, -0.004150212276726961, 0.03574742004275322, 0.027227524667978287, 0.11847761273384094, -0.0007623606943525374, 0.04555555433034897, 0.033528152853250504, 0.01079222746193409, -0.05029250681400299, -0.04454320669174194, -0.03190292790532112, -0.0158564243465662, 0.15918181836605072, -0.017995841801166534, -0.04934645816683769, -0.021967703476548195, -0.14220847189426422, 0.15033139288425446, -0.06000913307070732, -0.08312364667654037, 0.12645575404167175, -0.06892938166856766, 0.19390010833740234, -0.02142287790775299, 0.08020392060279846, 0.09002447128295898, 0.004548752214759588, -0.021076999604701996, 0.12080781161785126, 0.07053902000188828, -0.05420093238353729, 0.07237039506435394, -0.040894050151109695, 0.020137639716267586, -0.08068785816431046, -0.0063285608775913715, 0.06925804167985916, 0.09373656660318375, 0.0003973271232098341, -0.026771340519189835, -0.02737179398536682, -0.11994746327400208, 0.015854157507419586, 0.01766457036137581, 0.005348832346498966, -0.06718943268060684, 0.0175921693444252, 0.03458677977323532, -0.07237120717763901, -0.07642535120248795, -0.07150358706712723, 0.04084966331720352, -0.06430128216743469, 0.11207205057144165, -0.010983887128531933, -0.020561806857585907, -0.02167491614818573, -0.031831033527851105, -0.053054578602313995, -0.070890411734581, 0.011962627060711384, 0.04099339619278908, -0.027015380561351776, -0.0954791009426117, 0.16216044127941132, 0.01258412841707468, 0.24484257400035858, 0.025832733139395714, 0.02474769577383995, -0.011060782708227634, 0.05302956700325012, -0.10298091173171997, -0.044948454946279526, 0.03249531611800194, -0.05742071568965912, -0.05944128334522247, -0.053429074585437775, 0.0028145925607532263, -0.08255515992641449, 0.028056258335709572, 0.028104107826948166, -0.010730939917266369, 0.05016609653830528, 0.1463305503129959, -0.02469894289970398, -0.04207078367471695, -0.07823299616575241, 0.15062473714351654, -0.07519415020942688, 0.06293488293886185, -0.04481532424688339, 0.057815905660390854, -0.019529014825820923, -0.017495717853307724, -0.029474643990397453, 0.05374943092465401, -0.1661749929189682, 0.007410603575408459, 0.008037572726607323, 0.012809802778065205, 0.10297433286905289, -0.012103968299925327, 0.17909681797027588, -0.03544894978404045, -0.019949093461036682, 0.013028771616518497, -0.03568815439939499, -0.006068549584597349, 0.06609130650758743, -0.10023922473192215, 0.023990994319319725, -0.030757352709770203, -0.0034075374715030193, -0.01325142290443182, 0.05144898593425751, -0.1106981411576271, -0.0012906151823699474, -0.036863990128040314, -0.002775538247078657, -0.032401323318481445, 0.08590023219585419, -0.07571126520633698, 0.02753569185733795, 0.0034071486443281174, 0.13907106220722198, -0.02292809635400772, -0.0015495031839236617, 0.12430991232395172, -0.051779456436634064, -0.0178108811378479, -0.01940292865037918, -0.11097093671560287, 0.09940213710069656, -0.10307222604751587, 0.024483857676386833, -0.1619836390018463, -0.09587860852479935, 0.12311709672212601, 0.08478574454784393, -0.017190048471093178, -0.06199868395924568, 0.06224071606993675, 0.026922987774014473, 0.05078645795583725, -0.029740283265709877, 0.017002291977405548, 0.013559972867369652, -0.026602009311318398, -0.01732136681675911, 0.027956485748291016, 0.046021249145269394, -0.0015063573373481631, -0.07287377864122391, -0.00029952102340757847, -0.06582525372505188, 0.014340809546411037, -0.048917729407548904, -0.02178819105029106, 0.05320372059941292, -0.017788542434573174, -0.015045221894979477, 0.13874121010303497, -0.012677573598921299, 0.006609512027353048, 0.19115474820137024, -0.021344974637031555, 0.17024503648281097, -0.03414040431380272, 0.08826499432325363, -0.009287395514547825, -0.08603768050670624, -0.029772620648145676, 0.0507470928132534, -0.07468211650848389, 0.03178880736231804, -0.0239974707365036, 0.04469043016433716, 0.00015270436415448785, 0.017310312017798424], -function:[0.07887019962072372, -0.05176377668976784, -0.037298429757356644, 0.010597195476293564, -0.06262542307376862, -0.13731013238430023, 0.045081209391355515, -0.10389908403158188, 0.07410850375890732, -0.06324410438537598, -0.0564650259912014, -0.023639129474759102, -0.03562470152974129, -0.09614457190036774, -0.03479529917240143, 0.09972959011793137, -0.10879762470722198, -0.1144004836678505, 0.06551582366228104, 0.038566794246435165, -0.023391153663396835, 0.0915084257721901, 0.02307724580168724, 0.04240468144416809, 0.06371323764324188, -0.12266500294208527, -0.010007909499108791, -0.051847632974386215, 0.07825381308794022, 0.01601848565042019, 0.04970810189843178, -0.11459335684776306, -0.061030689626932144, -0.05163264274597168, 0.04385741427540779, 0.13074946403503418, 0.013403525575995445, 0.017768919467926025, -0.11763393878936768, 0.07797831296920776, -0.10375918447971344, -0.00740966247394681, -0.016881417483091354, -0.0540459007024765, 0.04151822626590729, 0.036567479372024536, 0.09556464850902557, 0.12298519909381866, 0.049233775585889816, -0.02956576459109783, -0.08720743656158447, 0.10342181473970413, 0.0030606011860072613, 0.05812392756342888, -0.005269132554531097, -0.013114295899868011, -0.020083045586943626, -0.04821104183793068, -0.13489994406700134, 0.08481308072805405, -0.15306277573108673, -0.0462832897901535, -0.05227300897240639, 0.05051086097955704, -0.09742570668458939, -0.046532586216926575, 0.01624402590095997, 0.0026433379389345646, -0.002458280185237527, -0.04664548113942146, 0.0949956625699997, 0.09928041696548462, 0.05533487722277641, 0.04959845170378685, -0.08789881318807602, -0.04500812292098999, -0.07531795650720596, 0.10721616446971893, -0.041603934019804, 0.061593152582645416, 0.036772407591342926, 0.07104305922985077, -0.0872623398900032, 0.020591311156749725, 0.012177523225545883, 0.054684702306985855, 0.034958574920892715, -0.11433526873588562, -0.015307287685573101, 0.036780983209609985, -0.07617298513650894, -0.06672073155641556, 0.07422284036874771, -0.06819523870944977, -0.06408477574586868, -0.0576779879629612, -0.06704878062009811, 0.03159957751631737, -0.009859434328973293, -0.04735083505511284, 0.04666920006275177, 0.060087330639362335, 0.06365299224853516, -0.09316366910934448, 0.07942140847444534, -0.04196806252002716, 0.11885837465524673, 0.05202621966600418, 0.08615715801715851, -0.019994381815195084, 0.060140460729599, 0.014742863364517689, 0.07920291274785995, 0.13388139009475708, -0.021527577191591263, 0.042821258306503296, -0.07393956929445267, -0.04094080626964569, -0.11785287410020828, 0.0039815171621739864, 0.05443611741065979, -0.04122253879904747, 0.014986719004809856, -0.021297920495271683, 0.15359075367450714, 0.0626610517501831, -0.10972002893686295, 0.042271099984645844, 0.09662425518035889, -0.009181879460811615, -0.020898768678307533, 0.012236485257744789, 0.06429397314786911, 0.027014847844839096, 0.08906356245279312, -0.10565480589866638, -0.09768697619438171, 0.03453049808740616, 0.012054646387696266, 0.04707566648721695, 0.040477652102708817, -0.061042457818984985, -0.0038761277683079243, 0.006253885105252266, -0.07235375791788101, -0.08695851266384125, 0.1233610138297081, 0.06064801290631294, 0.06890735030174255, -0.04239852353930473, 0.17043638229370117, 0.08410938829183578, -0.057221394032239914, -0.059535056352615356, 0.019336679950356483, -0.02965131588280201, 0.03357880562543869, 0.05589120090007782, 0.036589786410331726, 0.07469852268695831, 0.011917203664779663, -0.0727512463927269, 0.029697705060243607, -0.0843716487288475, 0.03059880994260311, -0.05412496626377106, 0.023802880197763443, 0.09565006196498871, -0.09645217657089233, -0.019090302288532257, -0.025029798969626427, 0.04276856407523155, -0.018000472337007523, -0.07974463701248169, 0.045211318880319595, -0.055851928889751434, 0.03191462531685829, -0.10370662063360214, 0.023129384964704514, 0.010515965521335602, 0.0645708218216896, -0.06114678829908371, -0.10198108106851578, -0.02972177043557167, 0.058984849601984024, 0.05155402794480324, 0.11731751263141632, 0.1012302041053772, 0.04070555046200752, 0.03633371740579605, 0.028892796486616135, 0.0036372272297739983, -0.1583748757839203, -0.02714887261390686, -0.08535990118980408, -0.059562165290117264, 0.026767494156956673, -0.15934644639492035, -0.03722257912158966, -0.03369680047035217, -0.06279365718364716, -0.09252481907606125, 0.018581310287117958, 0.014878835529088974, 0.048687294125556946, 0.14472869038581848, 0.058651745319366455, -0.031933221966028214, -0.01393927913159132, 0.03693140298128128, 0.012170535512268543, 0.006114508956670761, 0.01141270436346531, 0.09710608422756195, 0.040365781635046005, -0.027143370360136032, 0.05931400507688522, -0.05382167175412178, 0.11121518909931183, 0.0464763343334198, -0.06590588390827179, 0.014660227112472057, 0.08526438474655151, -0.0097210593521595, -0.12149567902088165, 0.05083879828453064, 0.03827880322933197, 0.03959957882761955, 0.11042305082082748, -0.0651078000664711, -0.11221630871295929, 0.0036936698015779257, 0.03173089772462845, -0.05085068568587303, -0.10134813189506531, 0.020241132006049156, 0.10655178129673004, -0.06659294664859772, -0.03557746112346649, -0.06080164015293121, -0.052657485008239746, 0.04709567129611969, 0.059277165681123734, 0.06412892043590546, -0.05740034952759743, 0.10106584429740906, -0.11775659024715424, -0.0713396891951561, -0.0630878135561943, -0.03223755955696106, -0.02296588197350502, 0.1384894996881485, -0.022796662524342537, -0.06082934886217117, 0.0350809283554554, -0.1411409080028534, 0.043406691402196884, 0.02591577172279358, 0.08617846667766571, -0.08522387593984604, -0.08500999957323074, 0.056990399956703186, 0.041015464812517166, -0.025915032252669334, -0.10992632061243057, -0.08018738776445389, -0.10052623599767685, -0.07850643247365952, 0.025927066802978516, -0.07395783811807632, 0.09513473510742188, 0.02196231298148632, -0.0011131720384582877, 0.08494465798139572, -0.020199844613671303, 0.022119678556919098, -0.10836005210876465, 0.05476751923561096, -0.03260524943470955, -0.021794119849801064, 0.0046977391466498375, -0.008718744851648808, -0.0586559921503067, -0.020508410409092903, -0.007066773250699043, 0.11884620040655136, 0.04875114560127258, -0.06330335140228271, 0.028234640136361122, 0.05564606189727783, -0.07795310020446777, -0.09348918497562408, 0.04853452369570732, -0.029240736737847328, -0.04975949227809906, -0.07558423280715942, 0.019542526453733444, -0.08801771700382233, -0.059408001601696014, -0.038251858204603195], -getelementptr:[-0.04876760393381119, 0.027639644220471382, 0.06923075765371323, -0.06613243371248245, 0.000944702245760709, -0.11820069700479507, -0.03345301374793053, -0.08368083089590073, 0.03680907562375069, 0.02358938939869404, 0.1337781548500061, -0.03478793427348137, 0.04091329500079155, -0.00640461640432477, 0.10812394320964813, 0.05646345019340515, 0.04092799872159958, -0.08500159531831741, 0.006031252909451723, -0.011301431804895401, 0.03428056836128235, 0.03708912059664726, 0.06945569813251495, 0.08734048902988434, -0.03171177953481674, -0.0003363603027537465, -0.1546805202960968, 0.0855894461274147, 0.008863412775099277, -0.05048017203807831, -0.013291673734784126, -0.06926874816417694, 0.03248128294944763, 0.03481154888868332, -0.03685960918664932, 0.07833462208509445, 0.08090734481811523, 0.009955179877579212, -0.05349530652165413, -0.007057863287627697, -0.10915262997150421, -0.008551044389605522, 0.06758669018745422, -0.029274992644786835, 0.04888512194156647, -0.022156087681651115, 0.10208504647016525, 0.023928651586174965, -0.06537433713674545, -0.05518238618969917, -0.042655687779188156, 0.1994779258966446, -0.020156007260084152, -0.004243271891027689, 0.056121908128261566, -0.029693245887756348, 0.013778737746179104, -0.0019511315040290356, -0.015987083315849304, -0.07091577351093292, -0.001342326053418219, 0.01667923294007778, -0.025529049336910248, -0.0364772267639637, 0.08732081949710846, 0.012469323351979256, 0.02861182577908039, -0.023959483951330185, -0.015186164528131485, 0.03695599362254143, 0.00023791154671926051, 0.052077073603868484, 0.03810467571020126, 0.13948318362236023, -0.03170265257358551, 0.05933062359690666, 0.0476909764111042, 0.00197758711874485, 0.017078926786780357, -0.05494221672415733, 0.013226276263594627, 0.006731722503900528, 0.007704105693846941, -0.09551800787448883, 0.08768691122531891, 0.018783990293741226, 0.05086467042565346, 0.006064517889171839, -0.11600740253925323, 0.09873130172491074, -0.05371223762631416, -0.025682738050818443, 0.009862742386758327, -0.0048105898313224316, -0.06658199429512024, 0.031438689678907394, 0.09882832318544388, -0.05752040445804596, -0.1616760492324829, -0.018543517217040062, -0.07059235125780106, -0.03182500600814819, -0.017162572592496872, -0.00617063557729125, 0.12044915556907654, -0.08744848519563675, -0.2825804352760315, -0.025175420567393303, -0.1409807652235031, -0.05649823322892189, 0.04900911822915077, -0.0005537235410884023, -0.11183109134435654, 0.012841454707086086, -0.12500455975532532, 0.0965418815612793, 0.06516174226999283, 0.06414751708507538, -0.007023360580205917, -0.03336034715175629, 0.027507450431585312, 0.011202333495020866, -0.029154008254408836, 0.05509163811802864, 0.016902893781661987, -0.016537170857191086, -0.009675946086645126, -0.04585026577115059, 0.16843675076961517, 0.08238691836595535, 0.02506496012210846, 0.017954088747501373, -0.03429218381643295, 0.059599608182907104, -0.10323156416416168, -0.08610829710960388, -0.034732986241579056, 0.12207640707492828, 0.07948584109544754, 0.07859823852777481, -0.0927264392375946, 0.008187936618924141, -0.0013149180449545383, 0.08607197552919388, 0.07171733677387238, 0.03539859130978584, 0.05153938755393028, 0.008035288192331791, -0.012949272990226746, -0.012101667933166027, 0.01131867803633213, -0.05425656586885452, 0.13887833058834076, 0.07431340962648392, 0.0582992359995842, 0.022212328389286995, -0.1150510311126709, 0.03940512239933014, 0.10640344023704529, -0.04375336691737175, -0.03813966363668442, -0.02668418176472187, -0.0827367827296257, 0.024640429764986038, 0.18284863233566284, 0.0612187534570694, -0.10217805206775665, -0.003942344803363085, -0.022838864475488663, -0.09145700931549072, -0.13710540533065796, -0.06507766991853714, 0.009072836488485336, -0.068466916680336, -0.026963505893945694, 0.012228654697537422, -0.14514628052711487, 0.0024047873448580503, 0.06976176798343658, -0.11346763372421265, -0.12345683574676514, -0.04921911284327507, -0.05326236039400101, 0.004100590478628874, -0.03048562817275524, -0.059835921972990036, 0.14701133966445923, 0.15598192811012268, 0.05435316264629364, 0.059068772941827774, 0.1250850111246109, 0.035284437239170074, -0.15283514559268951, -0.013646700419485569, 0.040822409093379974, 0.04746787250041962, -0.050691984593868256, -0.18915009498596191, -0.04587218537926674, 0.010446752421557903, -0.05233471095561981, 0.031217258423566818, -0.1438102424144745, 0.031179461628198624, -0.13867895305156708, 0.1304009109735489, 0.10206922888755798, 0.07495403289794922, -0.0409330315887928, 0.10933931916952133, -0.09337015450000763, -0.000693612324539572, -0.03621460869908333, -0.04261830821633339, -0.0114878686144948, 0.05076142027974129, 0.057984836399555206, -0.07583905756473541, -0.016908125951886177, 0.0800372064113617, -0.16258570551872253, 0.004662861581891775, -0.032141491770744324, 0.09538600593805313, 0.11240145564079285, 0.20758481323719025, 0.08137032389640808, -0.007433779537677765, 0.17451412975788116, -0.06770740449428558, -0.05197352543473244, -0.08590501546859741, -0.06258707493543625, 0.0011018706718459725, -0.050947051495313644, 0.046042367815971375, 0.014332321472465992, 0.005463583394885063, 0.09541613608598709, 0.0044774338603019714, -0.06506209820508957, -0.028126467019319534, -0.03212243691086769, 0.015981541946530342, 0.023239953443408012, 0.10327798873186111, -0.13185927271842957, -0.04071221873164177, 0.05907624214887619, 0.057640187442302704, 0.09869412332773209, -0.054362937808036804, 0.08277953416109085, -0.026956524699926376, 0.03346184268593788, -0.14787505567073822, -0.03024602308869362, -0.08661414682865143, 0.0007832659757696092, -0.009798858314752579, 0.027026928961277008, -0.047977007925510406, -0.09038035571575165, -0.001992211677134037, -0.07471981644630432, -0.1519264578819275, 0.0639023408293724, -0.029662221670150757, 0.06506291031837463, -0.12035393714904785, 0.1365775316953659, -0.11678415536880493, -0.0702727809548378, -0.0774320513010025, 0.0475967600941658, 0.11406245082616806, 0.1447267234325409, -0.030293399468064308, -0.05311616137623787, 0.05959543213248253, 0.16386844217777252, -0.02986312098801136, 0.0012018121778964996, 0.09251323342323303, 0.0025064717046916485, 0.23550914227962494, -0.009973187930881977, 0.04456010460853577, -0.03439309075474739, 0.006499884650111198, 0.07116811722517014, -0.00026718174922280014, -0.03954477235674858, 0.0723077654838562, 0.15528413653373718, -0.016153622418642044, -0.030554497614502907, 0.006024300120770931, -0.0015366527950391173, 0.016482209786772728], -icmp:[0.05559718981385231, -0.09633740037679672, 0.0791926309466362, 0.038032691925764084, -0.07207866758108139, -0.010896642692387104, 0.0013190075987949967, -0.04590089991688728, 0.0013156624045222998, 0.02290593460202217, 0.11019660532474518, -0.0726218968629837, -0.059688761830329895, 0.0264094527810812, 0.03317597508430481, -0.04957008361816406, -0.05344774201512337, -0.037090882658958435, -0.020183583721518517, -0.010441457852721214, 0.04521218687295914, -0.038200270384550095, 0.08000757545232773, -0.07538824528455734, -0.017440393567085266, -0.02983800135552883, -0.003938617650419474, 0.09170988202095032, 0.015362518839538097, 0.04876326397061348, -0.11108412593603134, -0.09727460891008377, 0.019049838185310364, 0.001330448896624148, -0.05358872190117836, -0.012461109086871147, 0.0038179291877895594, 0.004600360989570618, -0.05524621531367302, 0.051167797297239304, -0.006957428064197302, -0.035442475229501724, 0.060250602662563324, -0.18308302760124207, 0.037841349840164185, -0.024409813806414604, 0.09459475427865982, -0.011783304624259472, -0.11865705251693726, 0.0012459949357435107, 0.047329723834991455, -0.04934624955058098, -0.019041484221816063, 0.025370430201292038, -0.09097696095705032, -0.01444820873439312, -0.16555248200893402, -0.007922311313450336, -0.111550472676754, -0.1034824401140213, 0.10199450701475143, 0.033086907118558884, -0.02041452005505562, -0.037953514605760574, -0.0007630172767676413, 0.018690653145313263, 0.06269101053476334, -0.15681752562522888, 0.1051592007279396, -0.04524165764451027, -0.04353414475917816, 0.11098095029592514, -0.00968932919204235, -0.0001050695136655122, -0.014122841879725456, 0.04234924167394638, 0.12568596005439758, 0.001902933930978179, -0.12968222796916962, -0.1544177383184433, 0.10899808257818222, 0.0070737795904278755, -0.03674372658133507, 0.057364195585250854, -0.08728431910276413, 0.07269662618637085, 0.03759922459721565, -0.08930527418851852, 0.0392729677259922, 0.06718889623880386, 0.1320086568593979, 0.0897788256406784, -0.014182064682245255, -0.00014157341502141207, -0.001093461294658482, 0.03535875305533409, -0.1874038726091385, -0.01348540373146534, -0.08596645295619965, -0.0265989787876606, -0.07063808292150497, -0.03098074533045292, 0.11977999657392502, 0.01254309806972742, -0.123098224401474, 0.17035919427871704, 0.13242873549461365, 0.13607923686504364, 0.006655167788267136, -0.12672759592533112, -0.1613856554031372, 0.07048511505126953, 0.14630718529224396, 0.07939154654741287, 0.017726441845297813, -0.060919228941202164, -0.010936832055449486, 0.06005975976586342, -0.033302873373031616, -0.1665419042110443, -0.11680415272712708, 0.01861850544810295, 0.14481563866138458, 0.04992348328232765, 0.05614791810512543, -0.13675524294376373, -0.06568268686532974, -0.024057067930698395, 0.017975440248847008, 0.16242128610610962, 0.04246605560183525, 0.0927719920873642, -0.007022317964583635, -0.08330260962247849, -0.07260492444038391, -0.13390520215034485, -0.00883711501955986, -0.1433658003807068, 0.08440013974905014, -0.1789133995771408, -0.03875226899981499, 0.034499503672122955, -0.07720702141523361, 0.19616475701332092, 0.12205574661493301, 0.013651365414261818, 0.07223323732614517, 0.0707329586148262, -0.03848286345601082, -0.005600989796221256, 0.05799669027328491, 0.016711222007870674, 0.013114468194544315, -0.14803452789783478, -0.021930228918790817, -0.006020672153681517, 0.13666775822639465, 0.023709416389465332, 0.0426325723528862, 0.010035599581897259, 0.060534123331308365, -0.1433945745229721, 0.006943068467080593, 0.013130483217537403, 0.06252593547105789, 0.07678442448377609, -0.07086557149887085, 0.003916697110980749, 0.015589057467877865, -0.1019575223326683, 0.021928882226347923, -0.13230107724666595, -0.05995612218976021, 0.05643264949321747, 0.06684780865907669, -0.046203047037124634, -0.12302517145872116, -0.05987352132797241, -0.05172853171825409, 0.05377050116658211, -0.015180819667875767, -0.06402952969074249, -0.08432134240865707, -0.01570563204586506, -0.1450042873620987, -0.1549978256225586, -0.04425946995615959, 0.17235516011714935, 0.10557281225919724, 0.1265096217393875, 0.14757181704044342, -0.12098705768585205, 0.014434747397899628, 0.0874767079949379, 0.055306147783994675, 0.05520572513341904, 0.06616383790969849, -0.10158214718103409, -0.050619933754205704, 0.010862045921385288, -0.019532930105924606, 0.009578326717019081, -0.029928063973784447, 0.04595872387290001, -0.0502764917910099, -0.02580091543495655, -0.04647497832775116, 0.08039256185293198, -0.10173183679580688, -0.060069937258958817, 0.045723363757133484, -0.14667485654354095, 0.05971353128552437, -0.026198148727416992, -0.0020734427962452173, 0.08870988339185715, 0.004191385116428137, -0.11877330392599106, 0.01042830292135477, -0.03162769228219986, 0.00917355902493, 0.15962547063827515, -0.009390398859977722, 0.053774502128362656, -0.040988583117723465, -0.04111188277602196, 0.09731628745794296, -0.06856755912303925, 0.060062579810619354, -0.05992445722222328, -0.04180220514535904, 0.042912475764751434, -0.06391538679599762, -0.0020896526984870434, 0.050349339842796326, -0.033585432916879654, -0.09172821044921875, -0.0011912774061784148, 0.08792765438556671, 0.0008257149020209908, 0.14476414024829865, 0.02733418345451355, -0.023184962570667267, 0.0019474439322948456, 0.03410593047738075, 0.005334614310413599, -0.015065249055624008, 0.011345772072672844, 0.05929987505078316, -0.008071408607065678, 0.0745885968208313, 0.07964414358139038, 0.07197940349578857, -0.003969797398895025, 0.10986414551734924, -0.13518238067626953, -0.12391027063131332, -0.11915718019008636, 0.10362089425325394, 0.10456209629774094, 0.01611008308827877, -0.06669409573078156, -0.17609575390815735, 0.07706709206104279, -0.04125776141881943, 0.021651823073625565, -0.02687934599816799, -0.03373555839061737, -0.06240339204668999, 0.07071352750062943, -0.032087747007608414, 0.11039918661117554, -0.07568147033452988, -0.03484088554978371, -0.0343763493001461, 0.11874261498451233, -0.02213669754564762, -0.024022966623306274, 0.08983641862869263, -0.07025111466646194, 0.05715618282556534, 0.09854685515165329, -0.01667538844048977, 0.0004110021109227091, 0.02159256488084793, 0.23875482380390167, 0.11169826239347458, 0.033391550183296204, -0.051800042390823364, -0.0030326256528496742, 0.0423208512365818, -0.008387028239667416, -0.05374254658818245, 0.055746711790561676, 0.058270033448934555, 0.07900577783584595, -0.06490639597177505, -0.14065071940422058, -0.004341161344200373, -0.030737878754734993], -insertelement:[-0.006665557622909546, -0.10347424447536469, -0.11845177412033081, -0.08120184391736984, 0.06394683569669724, -0.0763629600405693, -0.10112784057855606, -0.0558415949344635, 0.044150736182928085, -0.09009969234466553, 0.08691641688346863, -0.02328730747103691, 0.04910602420568466, -0.023899439722299576, -0.08828560262918472, -0.16303956508636475, 0.023551471531391144, 0.02060193009674549, -0.007034673821181059, -0.009597759693861008, 0.04467598721385002, 0.18783043324947357, -0.007507278583943844, 0.017415637150406837, -0.024042431265115738, -0.03393743187189102, 0.10466622561216354, 0.0813848003745079, -0.02159719169139862, 0.03371550515294075, -0.016684038564562798, 0.05719063803553581, 0.03784854710102081, 0.020427681505680084, -0.027976611629128456, -0.020321443676948547, 0.010280167683959007, -0.07155607640743256, -0.015465750358998775, 0.05730491504073143, -0.06715337932109833, 0.06356597691774368, 0.1078907698392868, 0.09689803421497345, -0.0029333126731216908, -0.12071853876113892, 0.027136769145727158, 0.07110745459794998, 0.029363039880990982, 0.0759366974234581, -0.03193067014217377, 0.009744849987328053, 0.001975381514057517, 0.11471840739250183, -0.02925744280219078, -0.12229292094707489, 0.04506007209420204, -0.006533820182085037, 0.0027278801426291466, -0.08110342174768448, -0.010241436772048473, 0.013295983895659447, -0.020493226125836372, -0.06379121541976929, 0.1289958357810974, 0.16577479243278503, -0.06094319000840187, -0.005412862170487642, 0.08713187277317047, 0.017679497599601746, -0.06435112655162811, 0.06999583542346954, 0.020327391102910042, 0.05277420952916145, -0.07288771122694016, 0.06943143159151077, -0.11460886895656586, 0.005560765974223614, -0.024665463715791702, 0.10778650641441345, -0.09948188066482544, 0.005430132150650024, 0.02839251421391964, 0.05296406149864197, -0.1395784169435501, -0.10134553909301758, -0.0872853547334671, -0.030045514926314354, -0.128400057554245, -0.10586723685264587, 0.08714494109153748, -0.1083017885684967, 0.06933751702308655, -0.002719291253015399, -0.03007693961262703, 0.07431114464998245, 0.001437056460417807, -0.07398570328950882, -0.08432713896036148, 0.03594575077295303, -0.07158923149108887, -0.03480425104498863, 0.13179723918437958, 0.03998715430498123, 0.030918661504983902, -0.08463378995656967, -0.10823731124401093, -0.01767790876328945, -0.0488007627427578, -0.07020924985408783, -0.004082598723471165, -0.04643378406763077, -0.034995272755622864, -0.00943674799054861, -0.02601262554526329, -0.03177744522690773, 0.060664936900138855, -0.09780248999595642, 0.009704085998237133, 0.07664617151021957, -0.03807191178202629, 0.13370653986930847, 0.02337293140590191, 0.04630139842629433, 0.0006423806771636009, -0.004173549823462963, 0.07119851559400558, 0.01910790614783764, 6.980471880524419e-06, 0.14447735249996185, 0.15328799188137054, -0.1253775954246521, -0.08760024607181549, 0.14029602706432343, -0.05667832866311073, -0.15208454430103302, -0.005209654103964567, -0.010373405180871487, 0.07284129410982132, 0.021240418776869774, 0.14902207255363464, 0.18385089933872223, -0.07136370241641998, -0.07376308739185333, -0.04034608229994774, -0.08442553132772446, 0.09150305390357971, 0.005209316965192556, -0.09730351716279984, 0.0625280886888504, -0.10924036055803299, 0.02594778686761856, -0.00015079033619258553, 0.0005285429651848972, -0.021295586600899696, 0.04708201438188553, -0.000836583785712719, 0.08314386755228043, 0.09424088150262833, 0.05761807784438133, 0.027346011251211166, -0.043439991772174835, -0.09264934808015823, 0.026183072477579117, 0.08330892026424408, 0.10985488444566727, -0.10957080870866776, -0.002731170505285263, 0.15205606818199158, -0.19222359359264374, -0.0016380669549107552, 0.050550270825624466, -0.03147772699594498, 0.13775800168514252, 0.062223754823207855, 0.02085123397409916, -0.147684708237648, 0.009316232055425644, 0.011119484901428223, -0.008616811595857143, -0.10429257154464722, -0.06343015283346176, -0.01768382079899311, 0.027311651036143303, 0.006835078354924917, 0.08386284112930298, 0.010093859396874905, -0.17623893916606903, 0.04185185953974724, 0.06325110048055649, -0.011985191144049168, -0.04380503669381142, -0.11643211543560028, -0.005573451519012451, -0.036816153675317764, 0.044964615255594254, -0.02805066481232643, -0.08573255687952042, 0.012989223934710026, -0.13679997622966766, 0.10860832780599594, 0.029340442270040512, 0.06969668716192245, 0.03241967782378197, 0.0489790104329586, -0.016640059649944305, -0.06976108998060226, -0.0663708746433258, -0.03914997726678848, -0.09913469851016998, 0.18493381142616272, 0.02494504116475582, 0.05531313270330429, -0.046352751553058624, -0.023230094462633133, -0.08461187034845352, 0.10400813817977905, -0.030825773254036903, 0.00975472666323185, 0.04195034131407738, 0.026015466079115868, 0.08798050880432129, -0.026725104078650475, 0.135345458984375, 0.10232588648796082, 0.04613017663359642, -0.03343146666884422, 0.023290203884243965, 0.1023164615035057, 0.013658554293215275, -0.030027952045202255, -0.08689212799072266, 0.03530397266149521, -0.07427246868610382, -0.11010689288377762, -0.04645607993006706, -0.12173470854759216, 0.016324631869792938, -0.028233345597982407, 0.018642699345946312, 0.07885211706161499, 0.05256883427500725, -0.019541321322321892, -0.07911955565214157, 0.013952100649476051, -0.06611015647649765, -0.009913469664752483, -0.06019725650548935, -0.04126674309372902, -0.022419434040784836, 0.013460434041917324, -0.03782109543681145, -0.03287377208471298, -0.11494053900241852, 0.07892362773418427, 0.002963776234537363, -0.04316497594118118, -0.09909737855195999, -0.016965767368674278, 0.07623964548110962, -0.09062700718641281, 0.008308326825499535, 0.043444640934467316, -0.03443802520632744, 0.039546795189380646, 0.05628495663404465, 0.0005267525557428598, -0.04344424605369568, -0.08142340183258057, -0.030136309564113617, -0.07969193160533905, -0.12056350708007812, -0.11005400121212006, -0.0005380798829719424, 0.06873801350593567, 0.007395109627395868, -0.06736637651920319, -0.0474603995680809, 0.17956845462322235, 0.05061045661568642, -0.022814031690359116, -0.04030097648501396, -0.13342688977718353, 0.04360409080982208, -0.06578010320663452, -0.10172382742166519, -0.004917687736451626, -0.05612240731716156, -0.013888124376535416, 0.0915379747748375, -0.039288993924856186, 0.08439494669437408, -0.0534973070025444, 0.03256475180387497, -0.061437301337718964, 0.06630796939134598, 0.0874239057302475, 0.09350061416625977, -0.0033640265464782715, -0.0077423700131475925], -insertvalue:[0.009407899342477322, -0.07346203923225403, -0.0779925286769867, 0.07466345280408859, -0.054969001561403275, -0.022404126822948456, 0.04254618287086487, -0.12064875662326813, 0.03165597468614578, 0.06733033061027527, 0.07294908910989761, -0.0852862298488617, -0.059173546731472015, 0.03341194614768028, -0.0019903555512428284, -0.041544534265995026, 0.007435998879373074, 0.020923437550663948, -0.015443351119756699, -0.015234848484396935, 0.052176814526319504, -0.014726965688169003, -0.06631061434745789, 0.12320706248283386, -0.1177305281162262, -0.09627439081668854, 0.04185379296541214, 0.008862365037202835, 0.02424883469939232, -0.11687443405389786, -0.01750396192073822, -0.0017105049919337034, 0.01379292830824852, -0.020950764417648315, -0.09826311469078064, -0.1254110336303711, -0.008238674141466618, 0.09359712898731232, 0.014527476392686367, 0.01817227154970169, 0.014483404345810413, 0.05672122538089752, -0.06856859475374222, 0.048858728259801865, 0.03647204115986824, -0.04231385141611099, 0.016126181930303574, -0.06113689765334129, -0.11199744045734406, -0.14108464121818542, 0.014841783791780472, -0.036209531128406525, 0.06807825714349747, 0.15881668031215668, -0.04367881640791893, -0.1880296766757965, 0.04410383105278015, 0.14964021742343903, 0.08981753885746002, 0.011195827275514603, 0.057342298328876495, 0.071236751973629, 0.13117146492004395, -0.03663072735071182, 0.06980059295892715, 0.015253925696015358, 0.008341462351381779, -0.011135360226035118, 0.059167444705963135, 0.08854340016841888, 0.11733562499284744, 0.04197128117084503, 0.09912572801113129, 0.12102072685956955, 0.014956713654100895, 0.03514876589179039, -0.07349308580160141, -0.02452174387872219, 0.031935591250658035, -0.06537770479917526, -0.019457396119832993, 0.005474237259477377, -0.01501747127622366, -0.07209483534097672, -0.04659043252468109, 0.08347567170858383, 0.000866705842781812, 0.0868474692106247, -0.07284408807754517, -0.023583121597766876, 0.06318849325180054, -0.05806589871644974, 0.011674812994897366, -0.0008739391341805458, 0.018792232498526573, -0.03969849646091461, -0.02804388292133808, 0.06344588100910187, 0.0016404566122218966, 0.027714116498827934, -0.0772358626127243, -0.016154281795024872, -0.024604540318250656, 0.09630525857210159, 0.006029834505170584, 0.021571019664406776, -0.014091202057898045, -0.04325345158576965, 0.037280742079019547, 0.01937481388449669, 0.06297418475151062, -0.04352542757987976, 0.15260985493659973, 0.0015442406293004751, -0.04747429117560387, -0.08477995544672012, 0.06674127280712128, 0.07053833454847336, -0.014954973012208939, -0.0512632355093956, 0.024950316175818443, 0.011197274550795555, 0.05202598124742508, -0.023398077115416527, -0.01962851919233799, -0.00393035588786006, 0.015127633698284626, -0.07654653489589691, -0.027686292305588722, 0.08387750387191772, 0.023507021367549896, 0.14121565222740173, -0.09828063100576401, -0.00841088593006134, 0.011111080646514893, 0.06666465848684311, 0.021137703210115433, 0.05330060422420502, 0.18623848259449005, 0.024692628532648087, 0.19400092959403992, 0.030322838574647903, -0.06260959059000015, 0.12653015553951263, 0.06649299710988998, -0.028208890929818153, 0.05346342548727989, 0.005245476961135864, -0.032190244644880295, 0.009738829918205738, 0.02766403555870056, 0.10922488570213318, -0.0002887111622840166, 0.07564467936754227, 0.06006278470158577, -0.14341485500335693, 0.035831332206726074, -0.02170608378946781, 0.09154914319515228, -0.05173720791935921, -0.021483419463038445, -0.02818416617810726, -0.12686216831207275, 0.011627216823399067, -0.05146658793091774, 0.002372241113334894, 0.014571147039532661, 0.11488452553749084, -0.021771186962723732, 0.009563237428665161, -0.04995790123939514, -0.06370503455400467, -0.03093775548040867, 0.07303579151630402, -0.08059324324131012, 0.08649955689907074, -0.08113732933998108, 0.09411105513572693, -0.03798067942261696, -0.03740137442946434, -0.1005433201789856, -0.05759663134813309, 0.13317161798477173, -0.10767065733671188, -0.021635882556438446, -0.01893705688416958, 0.0902441069483757, 0.19605110585689545, 0.025069234892725945, -0.12008590251207352, 0.04255766421556473, 0.1109267845749855, 0.062028441578149796, -0.029849644750356674, 0.08771444857120514, -0.05168113857507706, -0.02354905568063259, -0.12465380877256393, -0.036526523530483246, 0.08468399196863174, 0.0889589712023735, -0.1452755630016327, -0.010159545578062534, 0.019878653809428215, -0.09764602035284042, -0.022709837183356285, 0.03870570287108421, -0.043040476739406586, -0.018809478729963303, 0.027703549712896347, 0.021978259086608887, 0.03570390120148659, 0.10649954527616501, -0.0058598886243999004, -0.03181695193052292, -0.02659110724925995, -0.0006002745358273387, 0.008958550170063972, 0.009031752124428749, 0.12485795468091965, 0.025208327919244766, 0.025399714708328247, -0.04927487298846245, 0.13683345913887024, 0.09988514333963394, 0.09545936435461044, -0.030532866716384888, 0.013678967952728271, 0.05909136310219765, 0.0029750766698271036, -0.025236692279577255, 0.034002117812633514, -0.035277243703603745, 0.0009089926024898887, -0.03219124302268028, -0.03333466872572899, -0.009093550965189934, -0.006760736927390099, -0.059716109186410904, -0.007116728462278843, 0.13524118065834045, -0.07852348685264587, 0.03776490315794945, -0.03619148209691048, -0.0821731686592102, -0.023669717833399773, 0.14518029987812042, -0.1269746869802475, 0.10055293142795563, -0.05682247504591942, 0.03759380057454109, 0.018268289044499397, 0.09411536157131195, -0.1069704219698906, -0.11446751654148102, 0.0018769543385133147, -0.04922030121088028, 0.029041405767202377, -0.10698862373828888, 0.002838568761944771, 0.024455994367599487, 0.05829109251499176, 0.034908510744571686, -0.00992479920387268, -0.014475895091891289, 0.0915459468960762, 0.0913582444190979, -0.13086985051631927, -0.02455517277121544, -0.038538966327905655, -0.10977277159690857, -0.0666772797703743, 0.14711885154247284, -0.010873964056372643, 0.1501256376504898, 0.02532111667096615, -0.13497444987297058, -0.06338639557361603, -0.04250149801373482, 0.1467265784740448, 0.033526260405778885, 0.014738406054675579, -0.10479451715946198, 0.026279358193278313, -0.03576894477009773, 0.0715901330113411, -0.07523904740810394, -0.0801464319229126, -0.06751689314842224, -0.0829528346657753, -0.06464964151382446, -0.08434668928384781, -0.05117492005228996, 0.0360540896654129, 0.03526593744754791, 0.06574533879756927, -0.06406562030315399, 0.027160171419382095, -0.002335888799279928, 0.10344687104225159], -integerTy:[0.021215301007032394, 0.09127353131771088, 0.14916282892227173, 0.05319754034280777, 0.04564866051077843, 0.1275048851966858, -0.009072612971067429, 0.0459463931620121, -0.08451446145772934, -0.004166357684880495, -0.057081613689661026, -0.039188992232084274, -0.03816342353820801, 0.12643542885780334, -0.1219957172870636, 0.06153284013271332, -0.03594258800148964, 0.03608131781220436, 0.04620455205440521, 0.015831219032406807, -0.06552354991436005, 0.032860495150089264, 0.05757062882184982, -0.08187583833932877, 0.013109930790960789, -0.08619914203882217, 0.03267071396112442, -0.1224493533372879, 0.09282563626766205, 0.04018159210681915, -0.036656636744737625, 0.0703832134604454, 0.07414062321186066, 0.03786059841513634, -0.07427644729614258, -0.10704560577869415, -0.06489575654268265, 0.08113732188940048, 0.05697895213961601, 0.026587001979351044, 0.039547380059957504, 0.0269347932189703, -0.1100497841835022, -0.01930890418589115, -0.006433724891394377, 0.07506267726421356, 0.012499289587140083, -0.10153096914291382, -0.047649286687374115, 0.06653902679681778, -0.024055784568190575, 0.040323562920093536, -0.10776326805353165, 0.01112839113920927, 0.0001342854229733348, 0.0373840406537056, -0.04978106915950775, -0.04731368646025658, -0.04358043521642685, -0.08677178621292114, -0.11030593514442444, 0.06796866655349731, 0.04055803641676903, 0.06512512266635895, -0.15292444825172424, 0.02686842903494835, -0.01727364771068096, -0.026015818119049072, 0.06361398100852966, 0.09372187405824661, 0.11363164335489273, 0.03515715152025223, 0.07641353458166122, -0.04742753505706787, 0.035137780010700226, 0.0964256078004837, 0.0030107395723462105, 0.08084248751401901, -0.04006701335310936, -0.001463589840568602, 0.019233979284763336, 0.09052746742963791, 0.08716223388910294, 0.032915785908699036, -0.007824612781405449, -0.02408014051616192, 0.061848096549510956, -0.045050181448459625, 0.12735223770141602, 0.01123477891087532, 0.04893463850021362, 0.035560913383960724, -0.16317899525165558, 0.12564702332019806, 0.04468189924955368, 0.07185333967208862, -0.049811605364084244, 0.03216399624943733, 0.054394494742155075, -0.08244993537664413, -0.0425284318625927, -0.13048900663852692, 0.02559281885623932, 0.11658475548028946, -0.07626745849847794, 0.12781673669815063, 0.05631302669644356, 0.07907413691282272, 0.10489709675312042, -0.07084531337022781, -0.05080195888876915, -0.041722360998392105, -0.026466121897101402, -0.07777176052331924, -0.06949016451835632, 0.030055373907089233, 0.03985951468348503, -0.030125601217150688, 0.010156361386179924, 0.11360995471477509, -0.04755077883601189, 0.1010688915848732, 0.04819904640316963, -0.03721965476870537, -0.014443312771618366, -0.03516674414277077, 0.09931273758411407, -0.08754190802574158, -0.06778834015130997, -0.08105789870023727, 0.09334433823823929, -0.09601261466741562, -0.05072952061891556, -0.12971709668636322, 0.13580968976020813, -0.07824236899614334, 0.07264463603496552, 0.06862494349479675, -0.12312286347150803, 0.011890053749084473, -0.03611939772963524, -0.020981257781386375, 0.0130948880687356, 0.08940759301185608, -0.011896646581590176, 0.029647933319211006, -0.09234262257814407, -0.07002954930067062, 0.00888113770633936, 0.06490778177976608, 0.09046431630849838, -0.12559814751148224, 0.06161753833293915, -0.007520890794694424, -0.13032974302768707, 0.08202599734067917, -0.050009001046419144, 0.14782308042049408, -0.09198453277349472, 0.09674972295761108, 0.11354920268058777, -0.12346594780683517, -0.04696366935968399, 0.15697060525417328, -0.028925051912665367, -0.008657731115818024, 0.18077223002910614, -0.09077142924070358, 0.12735143303871155, -0.05507483333349228, 0.05962038412690163, 0.06047695502638817, -0.006671779789030552, -0.0737651064991951, 0.13488584756851196, -0.034938596189022064, -0.006065584719181061, 0.08283617347478867, -0.0015289882430806756, 0.0036524364259094, 0.07453504949808121, 0.016262806951999664, 0.08253848552703857, 0.04293949156999588, -0.10303843021392822, -0.1012297049164772, -0.014167762361466885, -0.016094891354441643, -0.0977451354265213, -0.017950644716620445, -0.025615962222218513, 0.06919058412313461, 0.06627196818590164, -0.07776100933551788, -0.0385277196764946, 0.0101016815751791, -0.0546342208981514, 0.09097551554441452, -0.12524352967739105, 0.025179853662848473, -0.03180436044931412, 0.02874078042805195, 0.10960058867931366, -0.062187619507312775, 0.10108403116464615, -0.0405656136572361, -0.13176092505455017, 0.053855277597904205, -0.09659465402364731, 0.02563459239900112, 0.030774854123592377, -0.11124943196773529, -0.14479927718639374, 0.05053890496492386, 0.09717869758605957, 0.007248501759022474, -0.08353716135025024, -0.013338875956833363, -0.035598721355199814, -0.024365385994315147, -0.07128895074129105, -0.11083664000034332, 0.07124216109514236, -0.0022269603796303272, 0.009225532412528992, -0.04722604155540466, 0.03293086215853691, 0.10765227675437927, -0.05730477720499039, 0.14249074459075928, 0.021406974643468857, 0.10517717152833939, 0.008279247209429741, -0.07507111132144928, 0.02759903110563755, 0.04237229377031326, -0.1564323902130127, 0.07925210148096085, -0.07526732236146927, -0.032908469438552856, -0.14067809283733368, -0.06716054677963257, 0.12772230803966522, -0.024446308612823486, -0.05412326008081436, -0.042470116168260574, -0.017357800155878067, 0.09966843575239182, -0.126107320189476, 0.14297184348106384, -0.10795272886753082, -0.01077599823474884, 0.0495670922100544, 0.09460945427417755, -0.006803436670452356, -0.08224201202392578, 0.08820846676826477, 0.06279721111059189, -0.04872671142220497, 0.10217177867889404, 0.08728793263435364, -0.0012834148947149515, -0.09923138469457626, -0.10900580883026123, 0.13580061495304108, 0.11121142655611038, -0.05897173285484314, -0.10785926133394241, -0.028700048103928566, -0.0016802109312266111, -0.08948654681444168, 0.006252768449485302, 0.15487104654312134, 0.06679701060056686, 0.04128422960639, -0.024309543892741203, 0.08450639247894287, -0.011088171973824501, -0.005878543481230736, 0.009385587647557259, 0.04530802741646767, 0.05711652338504791, -0.02119479700922966, -0.022072238847613335, 0.003654555417597294, 0.008856466971337795, -0.11005135625600815, -0.018144113942980766, -0.07286244630813599, -0.13311341404914856, 0.10343943536281586, 0.14929847419261932, 0.07993417978286743, 0.09794905036687851, -0.04448295757174492, 0.05479606240987778, -0.01547093503177166, -0.008703586645424366, -0.10325472801923752, 0.08821378648281097], -inttoptr:[-0.07221058011054993, 0.01116836816072464, -0.16498583555221558, -0.02464294619858265, 0.017231469973921776, 0.018468299880623817, -0.04291212558746338, -0.058747585862874985, 0.02460402436554432, 0.018846897408366203, 0.15402382612228394, 0.0794508308172226, -0.10781833529472351, -0.0390494242310524, 0.008554292842745781, 0.07366938889026642, 0.0749172493815422, -0.10863829404115677, 0.04969295486807823, -0.010306356474757195, 0.08425433933734894, 0.006171574350446463, -0.14299225807189941, -0.03936014696955681, -0.0054762111976742744, -0.0045563457533717155, -0.049405746161937714, 0.0032288816291838884, 0.04607708379626274, 0.04656321555376053, 0.11429275572299957, 0.0021455446258187294, -0.120150625705719, -0.1268395334482193, 0.11093086749315262, -0.14782223105430603, -0.12445216625928879, -0.0024144158232957125, -0.08787612617015839, -0.080701544880867, -0.06065389886498451, -0.03721082955598831, -0.06653027981519699, 0.008997798897325993, 0.07382790744304657, 0.056782618165016174, 0.08363950997591019, 0.017605185508728027, -0.02138367109000683, -0.07855705171823502, -0.0433414988219738, 0.06379798799753189, 0.013029706664383411, 0.0013762861490249634, 0.1012718454003334, -0.02820354700088501, 0.08094305545091629, -0.05490407720208168, -0.028779903426766396, -0.14461439847946167, 0.038904957473278046, -0.01641540788114071, -0.018109945580363274, 0.032968778163194656, 0.07604002207517624, -0.14769791066646576, 0.05253339186310768, -0.08423221856355667, 0.05588390305638313, -0.12318335473537445, -0.08904548734426498, 0.04834819957613945, -0.0016667244490236044, 0.05066297948360443, -0.15550397336483002, 0.007690508849918842, -0.02420770190656185, 0.05836108326911926, 0.02013123780488968, -0.04539979249238968, 0.0861128568649292, 0.001607410842552781, 0.11773204058408737, 0.08059194684028625, 0.1051238551735878, 0.13296200335025787, -0.05358480289578438, -0.022944632917642593, -0.021954437717795372, -0.058487504720687866, -0.12871013581752777, -0.05542934313416481, -0.15189197659492493, -0.005365961696952581, 0.07706789672374725, -0.04118221253156662, 0.04116662219166756, 0.05688272416591644, 0.08175543695688248, -0.06947412341833115, -0.10620487481355667, -0.08306671679019928, 0.039319124072790146, 0.04036381468176842, -0.005111558362841606, -0.048782870173454285, -0.022343499585986137, -0.034415628761053085, -0.14295880496501923, -0.1593845933675766, 0.04061627760529518, 0.06719742715358734, 0.0116822374984622, 0.07599274069070816, -0.13744287192821503, -0.04191434383392334, 0.020071163773536682, -0.06540603935718536, -0.0327756330370903, -0.023599812760949135, -0.055864669382572174, 0.01159830391407013, 0.0476098470389843, -0.1210179477930069, 0.07793497294187546, -0.027906138449907303, -0.04365673288702965, 0.056260090321302414, 0.008861314505338669, 0.08204299211502075, 0.02496374398469925, 0.07364556193351746, 0.004416211973875761, -0.1329369992017746, -0.09382037818431854, -0.10427743941545486, -0.005568357650190592, 0.020275196060538292, 0.07157181948423386, -0.04576433077454567, -0.07476486265659332, -0.016907677054405212, -0.04576794430613518, 0.020257525146007538, 0.14334310591220856, 0.07349792122840881, 0.05504347383975983, 0.12517544627189636, -0.007675576023757458, 0.029107218608260155, -0.011125324293971062, 0.001382645103149116, 0.0018071432132273912, -0.023152746260166168, 0.03030799888074398, -0.010939587838947773, 0.040049634873867035, -0.06974008679389954, -0.01757246069610119, -0.020994048565626144, 0.010661520063877106, -0.018069028854370117, -0.02996150404214859, 0.003515849355608225, 0.03869723156094551, 0.0402645543217659, -0.07769171893596649, 0.016738738864660263, -0.152107834815979, 0.0678200051188469, -0.0699278861284256, -0.06169270724058151, 0.0831809937953949, -0.05009264498949051, 0.135080486536026, -0.0026773065328598022, -0.05275760218501091, 0.0030790267046540976, -0.05432688444852829, 0.10437813401222229, 0.0004981167148798704, -0.012671221978962421, -0.0753668025135994, -0.031818781048059464, -0.036909494549036026, -0.07786787301301956, 0.005763914901763201, 0.06971723586320877, -0.10252688825130463, 0.09273287653923035, -0.09790924936532974, -0.04319055750966072, 0.001052078790962696, -0.03119649551808834, 0.042425546795129776, 0.028520457446575165, 0.10607008635997772, -0.0336870439350605, 0.06428331136703491, -0.07654153555631638, 0.03786344453692436, 0.02617233619093895, -0.08588041365146637, 0.03684113547205925, 0.003549432847648859, -0.039323821663856506, -0.10297813266515732, 0.09353408962488174, -0.12740051746368408, -0.11515142023563385, -0.04531869292259216, -0.0011853673495352268, -0.051094427704811096, -0.0006406383472494781, -0.1435295194387436, 0.008865700103342533, 0.06669895350933075, 0.1398889571428299, 0.010077934712171555, 0.11243441700935364, 0.1499013602733612, 0.07717867940664291, -0.029509538784623146, -0.0055201612412929535, -0.0045192912220954895, 0.014766438864171505, 0.02911338582634926, -0.10620561242103577, -0.010426556691527367, 0.04489622265100479, -0.03604700788855553, -0.08040396869182587, 0.06162784621119499, -0.001503557083196938, -0.08589953929185867, 0.13550680875778198, 0.019745858386158943, 0.11969252675771713, -0.06787135452032089, -0.0051337555050849915, -0.05068472400307655, -0.06866845488548279, -0.016247499734163284, -0.04281904175877571, 0.02243734896183014, 0.056555598974227905, 0.06408927589654922, -0.04660923406481743, -0.004575262777507305, -0.03322340175509453, 0.12975308299064636, 0.06555096060037613, 0.09291344881057739, -0.006123736035078764, -0.09800823777914047, 0.03598728030920029, -0.04600933566689491, 0.09241243451833725, 0.11568838357925415, 0.1279708445072174, -0.03706150874495506, -0.04696732386946678, 0.02437230385839939, -0.007608802057802677, -0.03635052219033241, -0.06738448143005371, -0.010290340520441532, 0.07121071219444275, 0.05741778388619423, 0.004413348622620106, -0.0012331585166975856, -0.018848225474357605, -0.07957541197538376, -0.0341484434902668, 0.043268825858831406, -0.09123653918504715, 0.1676916927099228, -0.029720062389969826, -0.03680861368775368, -0.05586889758706093, -0.13975945115089417, -0.05403338745236397, -0.13055434823036194, 0.04113221541047096, -0.022639550268650055, 0.02952280081808567, -0.02068822830915451, 0.07546686381101608, 0.16798053681850433, -0.018965449184179306, 0.02315753884613514, -0.17744269967079163, -0.07080208510160446, 0.05307547375559807, 0.03447094187140465, 0.017262348905205727, -0.16283777356147766, -0.04105693846940994, -0.001110151526518166, -0.03440697491168976], -invoke:[-0.018461601808667183, 0.04032830893993378, 0.06860287487506866, -0.04143659397959709, -0.04981113225221634, -0.05268612504005432, -0.08906088024377823, -0.09263374656438828, 0.026034830138087273, 0.021664313971996307, 0.0320756770670414, -0.11472608149051666, -0.07553742080926895, -0.005327693186700344, 0.03111472725868225, 0.0532107949256897, 0.034035757184028625, -0.04755596071481705, -0.045242153108119965, -0.011105616576969624, 0.007148467004299164, 0.08255203813314438, -0.043159592896699905, 0.07080788165330887, -0.0286745373159647, -0.10360979288816452, 0.015489734709262848, -0.05496787279844284, 0.01395369227975607, 0.05477926880121231, 0.10639150440692902, -0.0672573447227478, 0.029435832053422928, 0.026492895558476448, 0.10905498266220093, 0.4068961441516876, 0.04602402076125145, -0.010904921218752861, -0.05107666924595833, 0.04170782491564751, -0.060591861605644226, 0.01433184277266264, 0.05182158574461937, -0.017815351486206055, 0.09792819619178772, 0.10584704577922821, 0.052833396941423416, 0.01647132635116577, -0.12510740756988525, 0.04452863335609436, -0.11968988925218582, 0.16870158910751343, -0.028555823490023613, 0.004248904064297676, 0.03870788961648941, 0.027197688817977905, -0.03689419850707054, -0.0681188553571701, -0.05116017162799835, 0.12290000915527344, -0.14487852156162262, 0.020381135866045952, -0.09785249084234238, -0.03375084325671196, -0.06603652238845825, 0.010041381232440472, -0.0486183762550354, 0.10008542984724045, -0.023427411913871765, 0.025056572631001472, -0.005014010705053806, 0.04140092059969902, 0.01829727180302143, 0.0905255526304245, -0.03451159968972206, 0.05453582480549812, 0.014579092152416706, 0.008028489537537098, 0.023978274315595627, -0.1490667462348938, 0.08600170910358429, 0.005493936128914356, 0.008999884128570557, -0.08519602566957474, 0.07011178135871887, 0.007917969487607479, 0.02190551534295082, -0.03217660263180733, 0.036304771900177, -0.05399951711297035, -0.16879680752754211, -0.02978219836950302, 0.028799274936318398, 0.015275206416845322, -0.028079062700271606, 0.03318735584616661, -0.13372516632080078, -0.025976795703172684, -0.08566722273826599, -0.07714958488941193, -0.05528039112687111, -0.02971949428319931, 0.013862318359315395, -0.0005304515361785889, 0.10674780607223511, -0.08047699928283691, 0.06249943748116493, -0.027192391455173492, 0.009534655138850212, 0.057503826916217804, 0.016709698364138603, 0.08666921406984329, -0.03411150723695755, 0.0707208514213562, 0.03751922398805618, -0.011739461682736874, -0.00921675842255354, -0.04631148651242256, -0.01867358759045601, -0.05025991052389145, 0.02169572003185749, 0.009397503919899464, -0.0020870757289230824, 0.0721658393740654, 0.3660067617893219, -0.011204386129975319, -0.03871411457657814, -0.011814913712441921, 0.013929774053394794, 0.07961117476224899, 0.022393785417079926, 0.008434202522039413, -0.009873215109109879, 0.03348986431956291, 0.008821044117212296, -0.04105079174041748, -0.027366379275918007, 0.0025949785485863686, 0.07577389478683472, 0.07064683735370636, -0.01779332384467125, -0.06376118957996368, 0.03869081661105156, 0.07400745153427124, -0.07839219272136688, -0.028955282643437386, 0.07916348427534103, 0.007380955386906862, 0.006815033033490181, 0.03029528632760048, 0.11224550753831863, 0.018771572038531303, 0.007194222416728735, -0.1208752691745758, 0.052440572530031204, 0.017541920766234398, -0.008743596263229847, -0.004656224977225065, 0.07379623502492905, -0.038761433213949203, -0.031117213889956474, -0.040470968931913376, 0.02667422406375408, 0.01696675829589367, 0.05884326621890068, -0.027484482154250145, -0.06169869378209114, -0.004189137369394302, -0.07049970328807831, -0.0832856073975563, 0.017297258600592613, -0.05178068205714226, -0.02782238833606243, -0.09897174686193466, -0.010684307664632797, 0.022997427731752396, -0.020238323137164116, -0.018032269552350044, 0.06321679800748825, 0.0029607454780489206, -0.021533461287617683, -0.03393254056572914, -0.09986425936222076, 7.250264752656221e-05, 0.011663480661809444, -0.04253757745027542, 0.13286766409873962, 0.1536056101322174, 0.045451339334249496, -0.019823584705591202, 0.07254724949598312, 0.11922365427017212, -0.2025837004184723, -0.0007359727169387043, -0.07508404552936554, 0.0442461222410202, -0.01635810174047947, -0.11680405586957932, -0.014326075091958046, -0.0019539177883416414, -0.0460115522146225, 0.02430906891822815, -0.10405323654413223, 0.04344959184527397, 0.028338516131043434, 0.11485501378774643, -0.04112696275115013, 0.007680324837565422, -0.061107803136110306, -0.05878891050815582, 0.03041894920170307, -0.039447586983442307, -0.010557297617197037, -0.037783194333314896, -0.011509349569678307, -0.013713281601667404, 0.0726141557097435, -0.0659545436501503, -0.017886651679873466, 0.08322726935148239, 0.008779468014836311, 0.08735425770282745, -0.025228580459952354, 0.07487042248249054, -0.04983452707529068, 0.0030953397508710623, 0.0777987390756607, -0.004677060525864363, 0.14022624492645264, 0.0018651708960533142, -0.04234585911035538, -0.0002131760847987607, 0.0665874257683754, 0.00013811512326356024, -0.021367885172367096, -0.07988438755273819, 0.023516375571489334, 0.003328871913254261, 0.018957016989588737, 0.004648125730454922, -0.07693525403738022, -0.007839247584342957, -0.024373073130846024, -0.03204340487718582, 0.013474533334374428, 0.05578302592039108, -0.08106108754873276, -0.04988177865743637, 0.0522182360291481, -0.007485454436391592, 0.108721062541008, 0.07530239224433899, 0.07479756325483322, -0.0028491320554167032, 0.04155544936656952, -0.11605328321456909, -0.02793586440384388, 0.06787944585084915, 0.04485335573554039, -0.008819363079965115, 0.008587827906012535, -0.0688098669052124, -0.007079131901264191, 0.06049018353223801, -0.06844872981309891, -0.13767097890377045, 0.012565300799906254, 0.0008271945989690721, -0.03669055178761482, -0.10978663712739944, 0.15605846047401428, 0.08725114911794662, -0.09094780683517456, 0.07483361661434174, 0.03238067775964737, 0.05078032612800598, 0.06486348062753677, -0.027067093178629875, -0.07498243451118469, -0.08855541795492172, 0.08384545147418976, -0.0011840218212455511, 0.0014412783784791827, 0.04003705829381943, 0.040819596499204636, 0.18232552707195282, -0.018047967925667763, 0.037101879715919495, -0.03522784635424614, -0.0002735369489528239, 0.06144602224230766, -0.1023259237408638, -0.03033573552966118, 0.06261954456567764, 0.04885898530483246, 0.019098656252026558, 0.06305043399333954, -0.037903785705566406, 0.0032532510813325644, 0.005220288876444101], -label:[-0.06275095790624619, -0.05140979588031769, -0.042339056730270386, -0.011669100262224674, -0.1263052076101303, -0.08745747804641724, -0.008208157494664192, -0.02362142503261566, 0.07147800177335739, 0.007714335341006517, -0.06176690012216568, -0.027986876666545868, -0.047965288162231445, 0.08656883984804153, -0.014521261677145958, 0.11390229314565659, -0.033342406153678894, -0.09892357885837555, -0.09870054572820663, -0.08519656211137772, -0.06179192289710045, -0.00639535766094923, -0.008607454597949982, 0.03410692885518074, 0.07161574065685272, 0.0794970691204071, 0.10051251202821732, -0.01393136940896511, -0.0677964985370636, 0.016162680462002754, 0.06980357319116592, -0.13497041165828705, 0.11443124711513519, 0.081186443567276, 0.0538831390440464, 0.11852478235960007, 0.053694020956754684, -0.08114822208881378, -0.08279112726449966, 0.14982201159000397, -0.007509633433073759, -0.00869376678019762, 0.02131611481308937, -0.061618171632289886, 0.09049820899963379, 0.19984488189220428, 0.027706677094101906, 0.02420688048005104, -0.0645996481180191, -0.027213474735617638, -0.07462804019451141, 0.11512022465467453, -0.1288633942604065, 0.03476680815219879, 0.019143229350447655, 0.08544663339853287, -0.06275958567857742, -0.16228444874286652, -0.07982209324836731, 0.041145503520965576, -0.03691016882658005, 0.07209178060293198, 0.03448756784200668, 0.05749727040529251, -0.08454055339097977, -0.05140434950590134, -0.05281868577003479, 0.06732749938964844, -0.08415386080741882, -0.0562061108648777, -0.07212698459625244, -0.04900014400482178, -0.05496922507882118, 0.045235879719257355, 0.0843101441860199, 0.08203405141830444, 0.04496907815337181, 0.09155315905809402, 0.09074524790048599, -0.08210238069295883, 0.058763373643159866, -0.05867573991417885, 0.09376808255910873, 0.02290039137005806, -0.10239385068416595, -0.05400421842932701, -0.014995968900620937, 0.04877842217683792, 0.12345212697982788, 0.042328909039497375, -0.041735824197530746, 0.017943406477570534, -0.013111704029142857, 0.07788258790969849, -0.05241464078426361, -0.07428695261478424, 0.00515307392925024, 0.02098040096461773, -0.14579343795776367, -0.03996741771697998, 0.05681087076663971, 0.06309882551431656, 0.07775251567363739, 0.08046676963567734, 0.06912785023450851, -0.05956583097577095, 0.07124313712120056, 0.06575818359851837, 0.08634422719478607, -0.028988655656576157, -0.0691981315612793, 0.01658633165061474, 0.08218526840209961, 0.06836751848459244, -0.02429167740046978, -0.09168804436922073, 0.07070405036211014, 0.09146962314844131, -0.12361373752355576, 0.12775033712387085, 0.0944824069738388, -0.06284191459417343, -0.008705129846930504, -0.012030771933495998, 0.14990389347076416, -0.0077445912174880505, 0.01880338042974472, 0.026766415685415268, 0.10690855979919434, -0.014343458227813244, 0.11150507628917694, -0.05436387658119202, 0.0736929178237915, 0.015861395746469498, -0.08898559957742691, 0.12310660630464554, -0.10012347251176834, 0.022038305178284645, 0.16373156011104584, 0.041168201714754105, -0.07258832454681396, -0.0566365085542202, -0.0042544882744550705, 0.04513166472315788, -0.09407293796539307, 0.028764015063643456, 0.03478866070508957, -0.08140839636325836, -0.09941413253545761, -0.08076589554548264, 0.0932760089635849, 0.0956377238035202, -0.06457985937595367, -0.09784365445375443, 0.07279693335294724, -0.05196759104728699, 0.11108623445034027, -0.10585557669401169, 0.045855846256017685, 0.03518655151128769, -0.11363017559051514, -0.09296014159917831, 0.06108977273106575, -0.09805721044540405, 0.0872994139790535, -0.03653273731470108, 0.013873854652047157, 0.10888088494539261, -0.08383077383041382, -0.03008239157497883, -0.020950855687260628, 0.05719445273280144, -0.0313926637172699, -0.13451236486434937, -0.02634020522236824, -0.116181880235672, -0.06503469496965408, -0.11357909440994263, 0.05491723492741585, 0.05417807772755623, 0.019971879199147224, 0.06250321865081787, -0.07004571706056595, 0.08888592571020126, -0.010792872868478298, 0.05449126660823822, 0.11211714893579483, 0.05235673114657402, 0.12176790833473206, 0.019638214260339737, -0.023563513532280922, -0.02176140435039997, -0.23630651831626892, 0.03038482740521431, -0.031032530590891838, 0.10359001159667969, 0.02854609675705433, 0.04109304025769234, 0.029117753729224205, -0.056954216212034225, -0.03597463294863701, -0.09912200272083282, 0.058028191328048706, 0.13245314359664917, 0.0070788683369755745, 0.13143913447856903, -0.1352786272764206, -0.03430992737412453, 0.012947960756719112, 0.04521302133798599, -0.006648866459727287, -0.016409505158662796, 0.03663860261440277, 0.10539143532514572, 0.009999272413551807, -0.05637082830071449, 0.14315220713615417, -0.054320380091667175, -0.049281541258096695, 0.04609321430325508, -0.07950934767723083, -0.07242585718631744, 0.09023094922304153, 0.05012062191963196, 0.008899414911866188, 0.06190690025687218, 0.06693144887685776, -0.06319082528352737, 0.19730959832668304, -0.029448723420500755, 0.03241940960288048, 0.07362102717161179, 0.053244564682245255, 0.09202347695827484, -0.1142510399222374, -0.024986686185002327, 0.11771205067634583, -0.1200314611196518, 0.04897241294384003, -0.06813414394855499, -0.11437395215034485, -0.032658517360687256, -0.08467425405979156, -0.06384329497814178, 0.11383715271949768, 0.009824859909713268, -0.10966766625642776, -0.07099110633134842, 0.09309259057044983, -0.037952814251184464, 0.01281008031219244, 0.15975144505500793, -0.014875402674078941, 0.06011010706424713, -0.008572455495595932, -0.08358310908079147, 0.05307496339082718, 0.1824405938386917, 0.10075058788061142, -0.09783772379159927, 0.0701349601149559, 0.04007934778928757, -0.05086294189095497, 0.1254883110523224, -0.002684523118659854, -0.06865423917770386, -0.10225839167833328, -0.06490742415189743, 0.024116534739732742, -0.07553433626890182, 0.133848637342453, -0.04553157463669777, -0.07364117354154587, 0.15200094878673553, 0.07504343241453171, 0.06700435280799866, 0.06813913583755493, -0.10538753867149353, -0.021066896617412567, -0.07482375204563141, -0.0033499817363917828, 0.002073718002066016, 0.06371861696243286, 0.05823934078216553, 0.05311761051416397, 0.13381411135196686, 0.008976426906883717, -0.06999268382787704, 0.03172352537512779, 0.050675369799137115, -0.032947786152362823, -0.005289149004966021, -0.09809347242116928, -0.12136918306350708, -0.04612882435321808, -0.05721328407526016, 0.04251234233379364, -0.0268271341919899, -0.0366567000746727, -0.08600987493991852], -landingpad:[-0.03631952777504921, 0.046567488461732864, 0.076438769698143, 0.0758393332362175, -0.07388358563184738, -0.0642225369811058, -0.13154764473438263, -0.16155773401260376, 0.13257868587970734, 0.0353974774479866, -0.015552547760307789, -0.014381938613951206, 0.0623568557202816, -0.06593342870473862, -0.10025681555271149, 0.05763106793165207, 0.07332811504602432, 0.04535135254263878, -0.05251206085085869, -0.016446368768811226, -0.0878765732049942, 0.02984681911766529, 0.04690919071435928, -0.039119355380535126, 0.04836374521255493, -0.17127647995948792, 0.010447545908391476, -0.10558229684829712, -0.1304745227098465, 0.10324467718601227, 0.11499421298503876, -0.0858980119228363, 0.00995639804750681, 0.06278936564922333, 0.14008690416812897, 0.12153641879558563, 0.08041483163833618, 0.020874327048659325, -0.047297392040491104, 0.05032534897327423, 0.0021157236769795418, -0.01659846492111683, -0.018858883529901505, -0.06583954393863678, 0.10615811496973038, -0.00018399403779767454, 0.06313720345497131, -0.06994789838790894, -0.057035159319639206, 0.08226846903562546, -0.05393904820084572, 0.050776366144418716, -0.09504412114620209, 0.0003859453718177974, 0.010083633475005627, 0.12120562791824341, -0.052932560443878174, -0.031054653227329254, 0.01591257005929947, -0.1115569919347763, -0.037392038851976395, -0.10135205090045929, -0.09786870330572128, 0.06259499490261078, -0.024360228329896927, 0.01067332737147808, 0.010985912755131721, -0.10397881269454956, -0.14801836013793945, 0.1373687982559204, 0.014180868864059448, 0.13168136775493622, 0.03149627149105072, 0.024212799966335297, 0.04989772289991379, 0.03457382321357727, -0.11997485905885696, 0.016044817864894867, 0.02693103812634945, -0.052646562457084656, -0.015197031199932098, -0.07503291964530945, -0.09031999856233597, -0.0925382748246193, 0.08387164771556854, -0.03404451161623001, -0.07723229378461838, -0.05338021740317345, 0.037161871790885925, 0.10977643728256226, -0.1515853852033615, -0.05938519537448883, 0.1149783730506897, 0.010359086096286774, 0.0158267579972744, -0.13276875019073486, -0.05694638565182686, 0.025502830743789673, -0.023530956357717514, 0.09786482155323029, -0.06286746263504028, -0.02046225219964981, -0.06819204986095428, -0.05003282427787781, -0.1553373783826828, 0.14030851423740387, -0.056927066296339035, -0.035534922033548355, -0.007328525185585022, 0.06843847036361694, 0.1398330181837082, 0.08933507651090622, -0.04565991461277008, 0.07644212245941162, 0.044846974313259125, -0.022496532648801804, 0.10058452934026718, 0.056598592549562454, -0.01690295897424221, -0.02049480564892292, 0.04253362491726875, 0.017900831997394562, 0.05313979461789131, -0.008794288150966167, -0.0038451917935162783, -0.0039064777083694935, -0.11525053530931473, 0.053058475255966187, 0.0016186631983146071, -0.02927236258983612, 0.15646876394748688, 0.008095360361039639, -0.15160666406154633, -0.0482754148542881, 0.009334557689726353, -0.10779833793640137, 0.0033587042707949877, -0.030831310898065567, -0.06078113988041878, -0.016250353306531906, 0.0060347747057676315, -0.041405800729990005, 0.052560992538928986, 0.010792379267513752, -0.11416265368461609, 0.014580529183149338, 0.05512179434299469, -0.012221777811646461, -0.005878979340195656, 0.02127169445157051, 0.039573829621076584, -0.06894569844007492, 0.004820977337658405, 0.01927749440073967, 0.18253329396247864, 0.12325877696275711, 0.06690599769353867, -0.05506683140993118, -0.1552351713180542, -0.04027140513062477, -0.033689361065626144, -0.012167045846581459, -0.0924917608499527, 0.01036972925066948, 0.006427525542676449, 0.09207265079021454, -0.04195170849561691, 0.004275650251656771, -0.07343300431966782, -0.1479208618402481, -0.013298334553837776, -0.055675264447927475, 0.0299310851842165, -0.03766820952296257, -0.07671438157558441, -0.03171725571155548, -0.07195296883583069, -0.14363346993923187, 0.056139905005693436, 0.01180733647197485, -0.0035625207237899303, -0.0576196126639843, -0.15586285293102264, -0.010953058488667011, 0.03313163295388222, -0.140858992934227, 0.1678561568260193, -0.004696178715676069, -0.006797491572797298, -0.04285333678126335, 0.018096869811415672, -0.03516316041350365, -0.09581787884235382, -0.04900094121694565, -0.09734062105417252, 0.0359138660132885, -0.0012953641125932336, -0.133927121758461, -0.02460087649524212, 0.08303983509540558, 0.015117251314222813, -0.04844488203525543, -0.026346279308199883, 0.03534398227930069, -0.05980311334133148, 0.10708659142255783, 0.07199601083993912, 0.0996197983622551, 0.1586409956216812, -0.05766087397933006, -0.06241871789097786, 0.0433632917702198, 0.0423174686729908, -0.01926552504301071, 0.1169767826795578, 0.06051279604434967, 0.07672394067049026, -0.07328855991363525, 0.00700067775323987, -0.018973132595419884, 0.08834705501794815, -0.02833819016814232, 0.14573147892951965, 0.04715181887149811, 0.10343243926763535, 0.029065631330013275, 0.08811528980731964, -0.013812024146318436, 0.13436472415924072, -0.0076430849730968475, -0.012187186628580093, 0.0010630486067384481, 0.07924997061491013, 0.08045674860477448, 0.07517291605472565, -0.031587835401296616, -0.10312151163816452, -0.00388058228418231, 0.14823772013187408, -0.005132400896400213, 0.007720771245658398, 0.10610195249319077, -0.01270995568484068, -0.07918200641870499, 0.013404452241957188, 0.010773047804832458, -0.036006659269332886, 0.16658926010131836, 0.012063649483025074, -0.00868754368275404, -0.0952567532658577, -0.046387601643800735, -0.014869087375700474, -0.004951213486492634, 0.06191660091280937, -0.04679020494222641, -0.04836731031537056, 0.15816351771354675, -0.023113949224352837, -0.032220158725976944, 0.015006131492555141, -0.045937951654195786, -0.09652668237686157, -0.03162941336631775, -0.02254549413919449, -0.15009526908397675, -0.01986059918999672, 0.13298027217388153, -0.037621449679136276, 0.04952242225408554, 0.09513182938098907, -0.02894670143723488, -0.0751679316163063, 0.007463325746357441, 0.05902661010622978, -0.02526347152888775, -0.07529260963201523, 0.1401335746049881, 0.004358706530183554, -0.09329935163259506, 0.013887439854443073, 0.05927339568734169, -0.024002857506275177, 0.08268290013074875, 0.021302256733179092, 0.047680579125881195, 0.1553431898355484, -0.05107225850224495, -0.001422469737008214, -0.13222308456897736, -0.09692177921533585, -0.13811558485031128, -0.10476851463317871, 0.002485662465915084, 0.051707923412323, 0.00758054293692112, -0.0476846769452095, -0.0761793926358223, 0.12032465636730194, 0.04871697351336479], -load:[-0.08762809634208679, -0.07058756798505783, 0.06236639991402626, 0.07488751411437988, 0.01882268488407135, -0.05597316846251488, -0.044489238411188126, 0.017733963206410408, 0.13715742528438568, 0.023068590089678764, 0.06427840143442154, 0.05243098363280296, 0.05218465253710747, -0.08178559690713882, 0.0364404134452343, -0.11712191998958588, 0.03585898503661156, -0.07390867173671722, -0.04005064070224762, -0.012032228522002697, 0.13250944018363953, 0.17334485054016113, 0.1297193467617035, -0.14920976758003235, -0.017464904114603996, -0.17451521754264832, 0.00035164065775461495, 0.048905011266469955, 0.013447131961584091, 0.13894322514533997, -0.03431039676070213, -0.001252124784514308, 0.022317880764603615, 0.041464611887931824, -0.07763685286045074, 0.013830927200615406, 0.027954716235399246, -0.03767082095146179, -0.046457018703222275, -0.05856328457593918, 0.054548587650060654, 0.16628988087177277, 0.09467075765132904, 0.03393380343914032, 0.05080266669392586, 0.0007645422010682523, -0.020789537578821182, -0.0006556676817126572, -0.0019827859941869974, -0.07578729838132858, 0.003612227737903595, 0.015151330269873142, 0.022646745666861534, 0.046503160148859024, -0.014235520735383034, 0.11320725828409195, 0.04257674515247345, -0.06461703032255173, -0.016812238842248917, -0.17718206346035004, 0.10057587921619415, 0.12171372771263123, -0.01630740985274315, -0.04771045222878456, 0.02056439220905304, 0.014718051068484783, 0.04289127513766289, 0.01602436602115631, -0.013082843273878098, -0.11210590600967407, 0.0010619889944791794, 0.03652452677488327, 0.03425854817032814, -0.11507813632488251, -0.05557100847363472, 0.0394088551402092, -0.04529314488172531, -0.002935800002887845, 0.0344669483602047, 0.024344518780708313, -0.15022461116313934, -0.014557799324393272, -0.03011859580874443, -0.06265130639076233, -0.02327842079102993, 0.017860550433397293, -0.07620175182819366, 0.0728282555937767, 0.037713389843702316, -0.09547935426235199, -0.04139937087893486, -0.025676263496279716, -0.010328339412808418, 0.0001026043901219964, -0.04714907333254814, 0.02653273195028305, 0.09490577131509781, -0.006609637755900621, 0.05221771076321602, 0.15987280011177063, -0.040810663253068924, -0.013856599107384682, -0.04527910426259041, 0.07003703713417053, 0.0634165108203888, -0.036289844661951065, -0.015381545759737492, -0.012167568318545818, -0.058074504137039185, 0.02457139827311039, 0.11191770434379578, 0.05745435133576393, -0.0865916907787323, 0.0748666450381279, -0.012350150384008884, 0.0025597033090889454, 0.004348783288151026, 0.05692513287067413, -0.004478916060179472, 0.08784843981266022, -0.08206556737422943, 0.012736513279378414, -0.0031067337840795517, 0.058837104588747025, -0.004405837971717119, -0.011848296970129013, 0.05832567438483238, 0.09969591349363327, 0.11613665521144867, 0.030995119363069534, 0.02535790577530861, -0.0180385522544384, -0.012995198369026184, 0.03650040552020073, -0.0076029798947274685, -0.026637855917215347, -0.037492796778678894, 0.030607933178544044, 0.11522874981164932, 0.024591287598013878, -0.15230794250965118, 0.1093052476644516, -0.012677050195634365, 0.0775320827960968, 0.07168515026569366, -0.02747267112135887, 0.08642502129077911, 0.00563078885897994, -0.07324334979057312, 0.038979627192020416, 0.16653503477573395, 0.014970068819820881, 0.006125404965132475, -0.0667932778596878, -0.0758528783917427, 0.13998618721961975, -0.06511475145816803, 0.05076491832733154, -0.029081905260682106, -0.016975704580545425, 0.007734435610473156, -0.025321582332253456, 0.10512518882751465, 0.022998038679361343, 0.009441155008971691, 0.05983595922589302, -0.050777189433574677, 0.0034417188726365566, 0.057467926293611526, -0.09688322991132736, -0.1489422470331192, -0.1215052604675293, -0.05053385719656944, 0.07042114436626434, 0.15526865422725677, 0.015651684254407883, -0.016822438687086105, -0.13234122097492218, 0.04662331938743591, -0.015602578409016132, -0.016472648829221725, -0.03653485327959061, -0.0558474138379097, -0.029017705470323563, -0.21520477533340454, -0.0703522190451622, 0.1888127624988556, 0.18746507167816162, 0.059766050428152084, 0.05852377042174339, 0.12699852883815765, 0.0030217370949685574, 0.1343565136194229, 0.019063502550125122, 0.02550647407770157, 0.03297097608447075, 0.08210401237010956, 0.08361239731311798, 0.11622700095176697, -0.01687905751168728, -0.02425541914999485, -0.11155685782432556, -0.049498699605464935, 0.0006752738263458014, -0.01271035522222519, -0.07722558081150055, -0.04466819763183594, -0.031449563801288605, -0.08194277435541153, -0.06991882622241974, -0.029906954616308212, -0.07904518395662308, 0.016987022012472153, -0.022339100018143654, -0.024419404566287994, -0.049254804849624634, 0.056368790566921234, 0.01596957817673683, -0.017513515427708626, 0.06278222799301147, 0.029670577496290207, 0.005362080410122871, -0.04125121980905533, 0.06169537082314491, 0.03852437436580658, -0.06832746416330338, 0.10803541541099548, -0.03795326128602028, 0.05167495831847191, 0.0027629851829260588, -0.03717203065752983, 0.20189397037029266, -0.09851889312267303, -0.02958177775144577, -0.023348432034254074, 0.020572423934936523, 0.11429321765899658, -0.0011877651559188962, -0.03712693601846695, 0.01982899196445942, 0.13714417815208435, -0.02731330320239067, 0.12533877789974213, 0.013890971429646015, 0.0160635057836771, -0.22261828184127808, -0.10104915499687195, -0.028113462030887604, 0.031526774168014526, -0.04044511169195175, 0.0921378880739212, 0.01657247543334961, 0.16981534659862518, -0.09699507802724838, -0.026411401107907295, -0.19144348800182343, -0.03655989468097687, 0.08993063122034073, 0.08006405830383301, -0.02241792529821396, 0.04499797895550728, -0.046077482402324677, -0.19018732011318207, 0.03447982296347618, -0.05535203590989113, 0.10958980023860931, -0.034005265682935715, -0.12386982142925262, -0.0016731253126636147, -0.030814584344625473, 0.13576345145702362, -0.0931328609585762, 0.031091611832380295, 0.14888572692871094, -0.026941023766994476, 0.08472713083028793, -0.026334313675761223, -0.022163011133670807, -0.09179611504077911, -0.06701897084712982, -0.1445547640323639, 0.033644307404756546, 0.013449852354824543, 0.04895099624991417, -0.076447993516922, 0.002014606026932597, -0.06456752121448517, 0.10022301226854324, -0.050806544721126556, 0.18209396302700043, -0.11532723158597946, -0.14466434717178345, -0.044585585594177246, 0.04886603727936745, 0.03622198849916458, -0.050661589950323105, 0.08129879832267761, -0.042457349598407745, -0.00181526446249336, 0.0009429664351046085], -lshr:[0.07912877947092056, -0.01501992903649807, 0.025066470727324486, 0.06766840070486069, -0.0962383821606636, -0.03911439701914787, 0.08024733513593674, 0.1548433154821396, 0.029885077849030495, 0.05638769641518593, 0.030125712975859642, 0.05566734820604324, -0.08873410522937775, 0.05203244090080261, 0.03528258576989174, -0.04610708728432655, 0.05038750171661377, 0.0227127093821764, -0.06482235342264175, -0.01037361565977335, 0.07197937369346619, 0.060457564890384674, 0.03555670380592346, 0.062255822122097015, -0.02327246218919754, -0.015173729509115219, 0.04254630580544472, 0.08808773010969162, 0.08074938505887985, -0.00666264072060585, -0.011230445466935635, -0.03232133015990257, 0.016818253323435783, -0.0723438560962677, -0.03508993610739708, -0.0641007050871849, 0.016780167818069458, 0.003755703568458557, -0.05051857605576515, 0.045696042478084564, -0.110071562230587, 0.13237103819847107, 0.0035072837490588427, -0.11099410057067871, -0.029974251985549927, 0.05619635805487633, 0.12069094926118851, -0.002796097192913294, 0.0028163378592580557, 0.035200074315071106, 0.09130220860242844, 0.025843193754553795, -0.01622205600142479, 0.13611721992492676, -0.05012638494372368, 0.02031492441892624, -0.03354454040527344, -0.005783942993730307, -0.09285495430231094, -0.07203124463558197, 0.021973000839352608, -0.13547451794147491, 0.08289722353219986, 0.0001349868398392573, 0.03951394185423851, 0.013978200033307076, 0.04436663165688515, -0.0008870678720995784, -0.023053070530295372, 0.05098041146993637, -0.03840753808617592, 0.03175131604075432, 0.031254298985004425, 0.03191140666604042, 0.06502801924943924, -0.023695429787039757, 0.005386325530707836, -0.012211397290229797, 0.03420581668615341, -0.07671498507261276, -0.015558822080492973, 0.005990372505038977, -0.08755771815776825, 0.15102939307689667, 0.058186259120702744, 0.02748517133295536, 0.022620471194386482, 0.04503445327281952, 0.036342330276966095, -0.036682065576314926, -0.0073587317019701, -0.030576489865779877, 0.07853931933641434, 0.017984772101044655, 0.09403135627508163, 0.004348072689026594, -0.05562475323677063, -0.005610780790448189, -0.16813579201698303, 0.03644171729683876, -0.038445908576250076, -0.08041473478078842, -0.06309160590171814, 0.04274355247616768, 0.005538703873753548, 0.01668831706047058, -0.1844738870859146, -0.1264917403459549, 0.018868230283260345, -0.0628524124622345, -0.1185062900185585, -0.05400077998638153, -0.03716779127717018, 0.07362779974937439, -0.01779620535671711, -0.0713566243648529, -0.00971089955419302, 0.05778370052576065, 0.11961358040571213, -0.02154485695064068, 0.10864973813295364, 0.016734901815652847, -0.005225712433457375, 0.06511487811803818, -0.01521497592329979, -0.0030842272099107504, 0.0684969574213028, -0.10104916244745255, 0.008730444125831127, 0.08819453418254852, 0.02666448801755905, -0.06692838668823242, -0.00672087911516428, -0.02994394488632679, -0.008291564881801605, -0.0645868107676506, 0.13207019865512848, -0.13042894005775452, 0.08693934231996536, -0.2115354686975479, 0.11263318359851837, 0.046409107744693756, 0.03603599965572357, 0.17502079904079437, 0.0565066859126091, 0.021541472524404526, 0.14255380630493164, 0.004360480699688196, 0.08155093342065811, 0.017351338639855385, 0.19422826170921326, -0.01844784803688526, 0.009567322209477425, 0.11147613078355789, -0.027233166620135307, 0.00609612325206399, -0.06233157590031624, -0.030527515336871147, -0.10294745117425919, -0.018783817067742348, -0.00020346460223663598, -0.03714662417769432, 0.153131365776062, -0.1321585774421692, 0.11654642224311829, 0.07084114849567413, 0.08459847420454025, -0.0428457073867321, -0.013500182889401913, -0.07997538894414902, -0.024976281449198723, -0.061101559549570084, -0.10439076274633408, -0.03909166529774666, -0.07689400017261505, -0.10687234252691269, -0.1285753697156906, -0.01276431418955326, 0.03461943939328194, -0.0016069349367171526, -0.05767630785703659, 0.13086751103401184, 0.03617493808269501, -0.013830666430294514, -0.10585542023181915, 0.08186179399490356, 0.006054430268704891, -0.009712891653180122, -0.0063119507394731045, -0.045719217509031296, 0.1256897747516632, 0.14251074194908142, 0.01503525860607624, -0.11548558622598648, -0.0588669516146183, 0.05292321369051933, -0.05730155110359192, -0.022362440824508667, 0.030987761914730072, -0.07716210931539536, 0.018009649589657784, 0.021448692306876183, -0.06966833025217056, 0.028241315856575966, 0.04322238266468048, 0.083907850086689, -0.04377775639295578, 0.01598268561065197, -0.03663475811481476, -0.054929107427597046, 0.09850148856639862, 0.040332481265068054, -0.010992874391376972, -0.018533995375037193, -0.035351257771253586, 0.019243061542510986, -0.04883250594139099, 0.047935277223587036, -0.016418464481830597, -0.04875729978084564, -0.16487956047058105, -0.027273936197161674, -0.012106315232813358, 0.13485611975193024, -0.07081955671310425, -0.04587879031896591, -0.010338599793612957, -0.0011965255253016949, -0.05293424054980278, 0.0005458681262098253, -0.03690267354249954, 0.0013327705673873425, 0.1241859495639801, 0.07005269825458527, -0.03372325375676155, -0.04736622795462608, 0.012391109019517899, -0.003117436310276389, 0.0695430114865303, 0.02798483520746231, -0.10704395174980164, -0.13023288547992706, -0.013382629491388798, 0.07003825157880783, 0.03124454990029335, 0.02560342289507389, -0.04915785416960716, 0.15284302830696106, -0.0713009461760521, 0.0005549417110159993, 0.05777175724506378, 0.02214205637574196, 0.09127727150917053, 0.0924711748957634, 0.077586330473423, 0.02585497498512268, -0.06431900709867477, -0.1103820726275444, -0.028219075873494148, -0.06557217985391617, 0.014785160310566425, -0.05116065964102745, 0.13474133610725403, 0.11021260172128677, -0.05614431947469711, 0.046820901334285736, 0.03400484472513199, -0.09199275821447372, 0.004431627690792084, -0.11741966009140015, 0.15575850009918213, 0.17834679782390594, -0.021550504490733147, 0.08403268456459045, -0.13807256519794464, 0.12290880084037781, 0.0675143450498581, -0.01936960220336914, -0.03558926284313202, -0.10522706806659698, 0.07979986071586609, -0.06886286288499832, 0.022866105660796165, -0.13418492674827576, 0.013897854834794998, 0.13712961971759796, 0.040557682514190674, -0.0190508384257555, -0.1384114772081375, -0.09150117635726929, 0.023080240935087204, -0.09656402468681335, 0.13450784981250763, -0.03961877524852753, 0.04351966083049774, -0.025142019614577293, -0.028774462640285492, 0.014393716119229794, 0.006821808870881796, 0.053359683603048325], -mul:[-0.04778195545077324, -0.0038403309881687164, 0.07770010828971863, 0.08208289742469788, -0.011442635208368301, -0.03629098832607269, 0.043546441942453384, -0.046343617141246796, 0.031661082059144974, 0.04595211520791054, 0.07941413670778275, -0.04422330483794212, 0.06838966906070709, -0.17488190531730652, 0.07308577746152878, -0.04939504340291023, -0.002833288162946701, 0.047604989260435104, 0.04357726499438286, -0.010591652244329453, 0.15578660368919373, 0.04412771016359329, 0.17162948846817017, -0.03659042716026306, -0.023959871381521225, -0.015427840873599052, 0.053638990968465805, 0.08092082291841507, 0.12924546003341675, -0.021828245371580124, -0.0027579080779105425, -0.021918941289186478, -0.004078280180692673, 0.0412573516368866, -0.0449773333966732, 0.03360540419816971, -0.15516655147075653, 0.02760683372616768, -0.051411889493465424, 0.06134866923093796, -0.06817035377025604, 0.15865318477153778, -0.1410529762506485, -0.0756501778960228, 0.02135305665433407, 0.060584768652915955, 0.17633768916130066, 0.0067665353417396545, -0.031682103872299194, -0.10067448765039444, 0.10072380304336548, 0.0638815313577652, -0.013432438485324383, -0.01699899509549141, 0.07675035297870636, -0.06023237109184265, -0.0998542308807373, 0.03080769069492817, 0.025424497202038765, -0.0771038606762886, 0.18497513234615326, 0.038156889379024506, -0.09892220795154572, 0.07874733209609985, -0.13155335187911987, 0.014274021610617638, -0.1245655044913292, -0.0011653680121526122, 0.005314269103109837, 0.04799964278936386, -0.06551156938076019, 0.028840182349085808, -0.0628531277179718, -0.09968483448028564, 0.055344436317682266, 0.050952374935150146, 0.01227619033306837, -0.025370744988322258, 0.03159927576780319, -0.058109037578105927, -0.000169264996657148, 0.005956094712018967, 0.02929188683629036, -0.07863524556159973, -0.01402033120393753, 0.00796536449342966, -0.017992345616221428, -0.0579255037009716, 0.037605468183755875, -0.06896446645259857, 0.013197517022490501, -0.03136121854186058, -0.019573146477341652, -0.008899838663637638, -0.13477490842342377, 0.028607409447431564, -0.05654361471533775, 0.017984073609113693, -0.023901497945189476, 0.054424162954092026, -0.04537270590662956, -0.07644584774971008, 0.029472095891833305, 0.030061129480600357, 0.031627390533685684, -0.05750872194766998, -0.0800761878490448, -0.04381943866610527, 0.026767417788505554, -0.0670265257358551, -0.14807382225990295, 0.06900247186422348, 0.20494306087493896, 0.16519293189048767, -0.05487221106886864, 0.08428774774074554, -0.1306762546300888, 0.10918505489826202, 0.005335052963346243, 0.010846580378711224, 0.07203207165002823, 0.016191618517041206, 0.1753024160861969, 0.044911038130521774, -0.03679816797375679, -0.014528307132422924, -0.004436711315065622, 0.07845138013362885, -0.009390778839588165, 0.11585357785224915, 0.026995806023478508, -0.08229396492242813, -0.07090769708156586, -0.025978343561291695, 0.04894093796610832, 0.01572692207992077, -0.009169752709567547, -0.005688506178557873, -0.03019707277417183, 0.018273627385497093, -0.056357622146606445, 0.04909861460328102, 0.04406147450208664, 0.01117208506911993, 0.07004985213279724, -0.07803690433502197, 0.059318505227565765, 0.00514658447355032, 0.1033543273806572, 0.020156214013695717, 0.07547597587108612, -0.004900787491351366, -0.12104137986898422, 0.04092900827527046, -0.14599189162254333, 0.14796432852745056, -0.010250498540699482, -0.04619721695780754, 0.13466401398181915, 0.037382010370492935, -0.05938688665628433, -0.04997868090867996, 0.0349113829433918, 0.01598392054438591, 0.0070114461705088615, 0.08223472535610199, 0.08800343424081802, 0.00517480680719018, 0.16535110771656036, -0.0722138062119484, 0.0125477509573102, 0.054616667330265045, -0.18344277143478394, -0.012810848653316498, 0.01948871649801731, 0.07042502611875534, 0.10893124341964722, -0.013194078579545021, -0.020529890432953835, 0.12867988646030426, -0.0222720205783844, -0.1418502926826477, -0.0626102015376091, -0.0722636729478836, 0.06140434369444847, -0.04031499847769737, -0.07105536013841629, 0.05485362187027931, -0.006971313152462244, -0.032386645674705505, 0.04314174875617027, 0.0938490703701973, -0.061479806900024414, 0.05890926346182823, -0.04568687826395035, 0.09266635030508041, -0.14257128536701202, 0.035369209945201874, 0.07797691226005554, 0.08875710517168045, -0.11847815662622452, 0.029092520475387573, -0.06474615633487701, 0.04194294288754463, 0.05766379460692406, -0.02506386861205101, -0.17231488227844238, -0.045968811959028244, -0.12780697643756866, -0.07909321039915085, -0.04528455808758736, 0.1276954710483551, 0.1414756029844284, -0.15460404753684998, -0.023689689114689827, 0.09192162752151489, 0.03690739721059799, -0.14458094537258148, 0.00476752920076251, -0.01587037183344364, 0.011730173602700233, -0.0161508247256279, -0.02269306220114231, 0.10388369113206863, 0.034443631768226624, 0.09841879457235336, -0.14915108680725098, 0.013257714919745922, -0.04214971512556076, -0.04455425590276718, -0.04175768047571182, 0.11550840735435486, 0.17019915580749512, -0.001494690659455955, -0.037172093987464905, 0.043969035148620605, 0.02806655317544937, 0.0013208903837949038, -0.04718857631087303, 0.002760568168014288, -0.029719261452555656, -0.03461715206503868, -0.06081240996718407, 0.05856779217720032, -0.046333715319633484, -0.06640903651714325, 0.065989650785923, -0.04145825654268265, -0.010955789126455784, -0.0038042685482650995, 0.07902088016271591, 0.09624326974153519, 0.09242580831050873, -0.0720822736620903, -0.02539473958313465, 0.024680180475115776, -0.043596845120191574, -0.11842704564332962, -0.05772513523697853, 0.14955775439739227, 0.03740958124399185, -0.0651383325457573, 0.11839206516742706, -0.044964469969272614, 0.02893868274986744, 0.010640053078532219, -0.006386422552168369, 0.023714445531368256, -0.028298694640398026, 0.16003459692001343, 0.10098583251237869, 0.0477994866669178, -0.0589565709233284, -0.048777926713228226, 0.10316703468561172, 0.0002730292617343366, 0.14310535788536072, 0.040278058499097824, 0.01696201227605343, -0.013033267110586166, -0.03498760983347893, 0.06525100767612457, -0.11837614327669144, 0.007940985262393951, -0.0321318581700325, -0.006312153302133083, -0.02300429716706276, 0.04534497857093811, -0.07895812392234802, -0.07365252077579498, 0.005497181788086891, -0.07564183324575424, -0.05214422941207886, 0.015254843980073929, 0.0871962308883667, 0.009854836389422417, 0.013708026148378849, 0.011365637183189392, 0.000543296046089381, -0.003535410389304161], -or:[-0.03492547571659088, 0.1515323966741562, 0.03342213109135628, -0.05015275254845619, 0.011403837241232395, -0.07539495080709457, -0.0003723168047145009, -0.04621754214167595, 0.030034424737095833, -0.1130797490477562, 0.04753304645419121, -0.1420169323682785, 0.041723351925611496, -0.010233907029032707, 0.004840063396841288, -0.04598189517855644, 0.07664421945810318, -0.13883660733699799, 0.09864763915538788, -0.006994425319135189, -0.10483327507972717, 0.00030531466472893953, -0.03391498699784279, 0.08222541213035583, 0.10055235773324966, 0.08009777218103409, 0.023296115919947624, 0.078458771109581, 0.018232999369502068, -0.07440448552370071, -0.0220944806933403, -0.11036765575408936, 0.03364009037613869, -0.02696186676621437, -0.014854727312922478, 0.07950007170438766, 0.037091583013534546, 0.0030251597054302692, -0.011275342665612698, -0.04334918409585953, -0.10583212226629257, 0.042290713638067245, 0.11143884062767029, 0.0841180756688118, 0.013579939492046833, 0.0034103039652109146, -0.0026911140885204077, 0.15351207554340363, -0.10355839133262634, 0.03129306063055992, -0.1129603162407875, -0.10911232978105545, -0.024819104000926018, -0.03940571844577789, -0.020850488916039467, -0.027208417654037476, -0.07138864696025848, -0.018570832908153534, 0.012753834016621113, -0.017619529739022255, 0.0931076928973198, 0.09413907676935196, -0.09785329550504684, -0.013367295265197754, 0.03888719901442528, 0.017514076083898544, -0.004897596314549446, -0.04259895905852318, -0.006739984266459942, 0.00810466893017292, -0.01600506715476513, 0.016636254265904427, 0.014416990801692009, 0.015544744208455086, 0.06683148443698883, -0.04197287932038307, -0.018183337524533272, -0.08068108558654785, 0.0313657782971859, -0.09307608008384705, 0.11659029871225357, 0.003871746128425002, 0.07087384909391403, -0.127094104886055, 0.05649332329630852, 0.10243670642375946, -0.02447376772761345, 0.09004270285367966, 0.036189887672662735, -0.07070241868495941, 0.022029418498277664, -0.19458234310150146, 0.046278923749923706, 0.01071343757212162, -9.31793765630573e-05, 0.08253896981477737, -0.08291850984096527, -0.00783052109181881, -0.06306774169206619, -0.023851104080677032, -0.10001397132873535, -0.048765260726213455, -0.05197400599718094, 0.1303754597902298, 0.1870141625404358, 0.011107075028121471, -0.06721703708171844, -0.037568844854831696, 0.007877477444708347, -0.07673227041959763, -0.0355086550116539, 0.05972796306014061, 0.012828485108911991, 0.03498166427016258, -0.04997596517205238, -0.03571873903274536, -0.007363701239228249, 0.0715886801481247, -0.005279380828142166, 0.1105390191078186, -0.0942535325884819, 0.020500296726822853, 0.02135293371975422, -0.038744404911994934, -0.03768552467226982, -0.0036565710324794054, -0.014248359948396683, -0.025150921195745468, 0.010487058199942112, 0.14599043130874634, 0.025622142478823662, 0.012485215440392494, -0.007356960792094469, -0.052845198661088943, 0.14638908207416534, -0.006230938248336315, 0.01728653535246849, -0.06883001327514648, 0.08696019649505615, -0.10784590989351273, -0.08143359422683716, -0.0902714729309082, 0.05264207720756531, 0.08577774465084076, 0.09416504949331284, 0.07600484043359756, 0.049786318093538284, 0.004848015960305929, -0.006074436940252781, 0.00882605742663145, 0.19890645146369934, 0.004090453032404184, 0.01581624150276184, -0.09372271597385406, -0.052961315959692, -0.10489846020936966, -0.03494242578744888, 0.14495794475078583, 0.0033801556564867496, -0.03515753522515297, -0.08415257185697556, -0.039642367511987686, -0.03629644215106964, 0.023154377937316895, 0.10434459149837494, 0.07896970957517624, 0.016939612105488777, 0.008169777691364288, -0.08003976941108704, -0.06778567284345627, -0.15716932713985443, -0.07267934828996658, -0.0813080444931984, -0.030644690617918968, -0.08924104273319244, 0.15376709401607513, -0.04462326690554619, -0.014378921128809452, -0.038092490285634995, -0.17584408819675446, 0.08051814138889313, -0.08743937313556671, 0.013322889804840088, 0.1395677626132965, 0.06322001665830612, -0.025883177295327187, 0.10298579931259155, 0.008766383863985538, -0.024355774745345116, -0.04011475667357445, 0.036085646599531174, 0.08216090500354767, -0.03418520838022232, -0.07909130305051804, -0.13277454674243927, -0.0410926379263401, 0.016893494874238968, 0.1576979160308838, 0.13677464425563812, -0.07880520820617676, 0.030661363154649734, 0.01928931474685669, -0.03269409388303757, 0.035487253218889236, -0.030782176181674004, -0.023370053619146347, -0.15507915616035461, -0.10463324934244156, -0.07265432178974152, 0.030860567465424538, -0.05843166634440422, -0.0723971351981163, 0.09912623465061188, 0.0666310265660286, -0.03506483510136604, 0.11696954071521759, -0.1259402483701706, 0.10990789532661438, -0.0017977725947275758, 0.003868239698931575, 0.009894074872136116, 0.0009218163904733956, -0.011399350129067898, 0.08433577418327332, 0.14240974187850952, 0.10714154690504074, -0.03789278119802475, -0.09700203686952591, -0.057286664843559265, 0.0038041076622903347, -0.03534187003970146, 0.03562043979763985, -0.05090784654021263, 0.0002675322466529906, 0.1901145577430725, 0.013687539845705032, 0.02923557721078396, -0.0026269147638231516, 0.08935973048210144, -0.01015527080744505, 0.09979017078876495, 0.006877326872199774, -0.013568386435508728, -0.0782599225640297, 0.03788469731807709, 0.06939219683408737, 0.07389749586582184, -0.03001628816127777, 0.009313053451478481, 0.028620483353734016, 0.10182830691337585, 0.08187010884284973, 0.0483098030090332, -0.01808018423616886, -0.0769311785697937, 0.0029843433294445276, -0.06313981115818024, 0.02022659406065941, -0.08864963799715042, -0.02948254719376564, 0.038404349237680435, -0.06930091232061386, -0.023014241829514503, 0.025820013135671616, 0.04834633320569992, 0.012875469401478767, -0.009403112344443798, -0.0793716087937355, -0.02873174659907818, -0.07786838710308075, -0.01885622926056385, 0.08006822317838669, -0.047129206359386444, 0.027368340641260147, 0.06222360208630562, 0.13606047630310059, 0.014444789849221706, -0.024957505986094475, -0.1525105983018875, -0.005741197150200605, 0.07311731576919556, 0.1320420503616333, -0.12699024379253387, -0.009956000372767448, 0.06262165307998657, 0.15892446041107178, -0.016828503459692, -0.025205140933394432, 0.03820224478840828, -0.040495868772268295, -0.03595592826604843, 0.055768128484487534, -0.034156590700149536, -0.04193243756890297, 0.06336642801761627, 0.02125638723373413, -0.09003157168626785, 0.05604572221636772, 0.0004533605824690312, 0.037992313504219055], -phi:[-0.0064817070960998535, -0.08481617271900177, -0.06918902695178986, 0.015208172611892223, -0.07914786040782928, -0.177373468875885, -0.027414899319410324, -0.1754523664712906, 0.041541069746017456, -0.09457063674926758, 0.006458190269768238, 0.04099709168076515, -0.07933709025382996, -0.18186713755130768, 0.02357897162437439, 0.06470822542905807, -0.07852700352668762, -0.05669473111629486, 0.044833358377218246, -0.009110279381275177, 0.008102995343506336, 0.05892113223671913, -0.005123142618685961, -0.006677425000816584, -0.00976794958114624, -0.11627288907766342, 0.09374773502349854, 0.09596459567546844, 0.04369747266173363, 0.06965801119804382, 0.006876726634800434, -0.10338186472654343, -0.0034271436743438244, 0.11054518073797226, 0.11951426416635513, 0.036966968327760696, 0.05205782130360603, -0.0722372755408287, -0.04491523653268814, 0.09828682988882065, -0.04837641492486, 0.03246492147445679, 0.06527746468782425, -0.03405138850212097, 0.10449226200580597, -0.019241420552134514, 0.08696921914815903, 0.08023526519536972, -0.021099748089909554, 0.034190088510513306, -0.11305661499500275, 0.14896513521671295, -0.056303396821022034, 0.02146725542843342, 0.03191499412059784, -0.031106319278478622, -0.029082302004098892, -0.06031057983636856, -0.07844576239585876, 0.026215940713882446, -0.05258767679333687, -0.09470754861831665, -0.03438448905944824, -0.03565187007188797, -0.02556210197508335, 0.016699396073818207, -0.050664372742176056, 0.02208659239113331, 0.023429155349731445, 0.1619798243045807, 0.030786961317062378, 0.0649915263056755, -0.0003698147484101355, 0.11791614443063736, -0.05096821486949921, 0.02433985099196434, 0.0022782946471124887, 0.16363880038261414, 0.04135676473379135, -0.1531679779291153, 0.07244659960269928, 0.0061867148615419865, -0.03348523750901222, -0.046019215136766434, -0.02709220163524151, -0.008748111315071583, -0.0011509263422340155, -0.061930470168590546, 0.03445164114236832, -0.013608550652861595, -0.07121891528367996, -0.04919790104031563, 0.04772917181253433, 0.006207121070474386, -0.001791299437172711, -0.09548595547676086, -0.056481145322322845, 0.04157581552863121, -0.046849239617586136, -0.072999007999897, -0.01615220680832863, -0.006270270328968763, 0.04327961057424545, -0.017078643664717674, 0.11266389489173889, -0.08869440108537674, 0.020306559279561043, -0.028540870174765587, -0.106962651014328, -0.0476553700864315, 0.01730501838028431, 0.041026804596185684, 0.05503172427415848, 0.08589249104261398, 0.04331384226679802, 0.0829409807920456, -0.018432406708598137, 0.034309398382902145, -0.041202276945114136, 0.023095039650797844, 0.04569678753614426, 0.016085149720311165, 0.015164816752076149, 0.23923704028129578, -0.016600774601101875, 0.004967717453837395, -0.174435555934906, -0.0015901013975962996, 0.047994744032621384, 0.15474833548069, 0.02763204462826252, -0.10162495076656342, -0.0028288220055401325, 0.005442138761281967, 0.013211119920015335, -0.006190448999404907, 0.0012462955201044679, -0.009394492954015732, 0.061013463884592056, 0.07499239593744278, 0.0673614963889122, -0.09493544697761536, -0.024700647220015526, 0.11705247312784195, 0.016750384122133255, -0.07839832454919815, 0.026399584487080574, 0.0028514154255390167, -0.03811851516366005, 0.2556108832359314, 0.1452876180410385, 0.039472874253988266, -0.004573574755340815, -0.07345409691333771, 0.14628161489963531, 0.03168432414531708, -0.12075462937355042, -0.052115362137556076, 0.07740186899900436, -0.041658248752355576, -0.0206130538135767, 0.0033775032497942448, -0.06927399337291718, -0.028040826320648193, 0.07091813534498215, 0.02659386396408081, 0.06386080384254456, 0.04517306387424469, -0.061537761241197586, -0.08711187541484833, 0.01840602606534958, 0.07925240695476532, 0.11310628801584244, -0.07000350952148438, 0.01765443943440914, -0.025241006165742874, -0.09357335418462753, -0.038408249616622925, 0.06711142510175705, 0.06597676128149033, -0.00419902428984642, -0.009984724223613739, -0.1015998125076294, 0.043178267776966095, 0.04632215201854706, -0.008976539596915245, 0.14367790520191193, 0.1233827993273735, 0.04463585466146469, 0.034963782876729965, 0.04905169457197189, 0.23033757507801056, -0.15395578742027283, 0.03687901049852371, 0.03658405318856239, 0.011370954103767872, 0.007000274956226349, -0.1749497503042221, -0.03154853358864784, -0.0066581303253769875, -0.005582151934504509, -0.12390730530023575, 0.018625175580382347, 0.0465223453938961, 0.029845671728253365, 0.12082190066576004, -0.04612641781568527, 0.08842365443706512, -0.023966465145349503, -0.04849785193800926, 0.031049158424139023, -0.039101384580135345, 0.040359482169151306, 0.015738826245069504, -0.03524256497621536, 0.047329019755125046, 0.07656230032444, -0.036189787089824677, 0.05434141308069229, 0.06691751629114151, 0.010491325519979, 0.09718676656484604, 0.007509580813348293, 0.05616813525557518, 0.06487695872783661, 0.0013778959400951862, 0.05331118032336235, 0.046695832163095474, 0.2066556215286255, 0.09080738574266434, -0.028692053630948067, -0.007708290126174688, 0.12704873085021973, 0.13067509233951569, 0.12980930507183075, -0.1066988930106163, 0.04551967605948448, -0.007333939429372549, 0.015393630601465702, -0.015653906390070915, 0.0094119468703866, -0.0735199898481369, -0.0014783937949687243, 0.008116942830383778, 0.1843530833721161, 0.045072220265865326, -0.07364416122436523, -0.09376128762960434, -0.05430956184864044, 0.14125239849090576, -0.07860083132982254, -0.003988258074969053, 0.04326494038105011, -0.001510400092229247, -0.0007728903437964618, -0.05403149873018265, -0.05455333739519119, 0.03209180012345314, 0.053733859211206436, -0.00023361727653536946, -0.013885521329939365, -0.016724448651075363, -0.02564622089266777, -0.02223745733499527, -0.01922307163476944, -0.11375677585601807, -0.08437101542949677, 0.018809640780091286, -0.03481661528348923, -0.04477318748831749, 0.1325806826353073, -0.0019209393067285419, -0.018164033070206642, 0.04684549197554588, 0.020953966304659843, 0.0007253162912093103, -0.15243010222911835, -0.008575443178415298, -0.07081997394561768, -0.064053975045681, -0.031675562262535095, -0.017280612140893936, -0.10981374979019165, 0.07343108206987381, -0.009576380252838135, 0.1560649573802948, -0.03894274681806564, -0.0618014931678772, -0.04430460184812546, 0.003191255498677492, -0.035575609654188156, 0.004185974597930908, 0.10649074614048004, 0.03177763149142265, 0.017311086878180504, 0.006169923581182957, -0.017545895650982857, 0.050172463059425354, -0.0067969923838973045, 0.03289242461323738], -pointer:[0.02449140138924122, -0.05880920588970184, -0.03934865817427635, 0.05227357894182205, -0.11764631420373917, -0.14081411063671112, -0.06325627863407135, -0.14385497570037842, 0.07822941243648529, -0.06314461678266525, -0.06060948967933655, 0.07963986694812775, -0.019446516409516335, -0.12439710646867752, -0.025936366990208626, 0.10469173640012741, -0.03127022087574005, -0.05881313234567642, -0.005873407237231731, -0.0790015235543251, -0.019908156245946884, 0.09032101184129715, 0.014954645186662674, -0.05293598026037216, -0.060551367700099945, -0.11741413921117783, 0.046810854226350784, 0.009258962236344814, 0.08282452076673508, 0.0519399531185627, 0.051989201456308365, -0.04264421388506889, -0.05999511107802391, 0.057187121361494064, 0.05079171061515808, 0.09270196408033371, 0.0446886345744133, -0.023443005979061127, -0.11492202430963516, 0.03195848688483238, -0.033183708786964417, 0.007311748806387186, 0.035898663103580475, -0.05690677836537361, 0.1532871127128601, -0.03856838867068291, 0.0991567000746727, 0.1209494099020958, 0.010736900381743908, 0.006365986540913582, -0.09356696903705597, 0.10899174213409424, -0.1184064969420433, -0.034399691969156265, -0.006451837252825499, 0.0017577107064425945, -0.0499713197350502, -0.052446626126766205, -0.08282501250505447, 0.04060559347271919, -0.10555864870548248, -0.058837890625, -0.05055566132068634, 0.052679553627967834, -0.06735625863075256, 0.09751701354980469, -0.024603091180324554, -0.0339646190404892, -0.0495116226375103, 0.10752716660499573, 0.10054651647806168, 0.10393156856298447, 0.07190999388694763, 0.0851086899638176, -0.07732032239437103, -0.04752897471189499, -0.07719330489635468, 0.1214718148112297, 0.08301783353090286, -0.08209788799285889, 0.03852330520749092, -0.05458668991923332, 0.016485298052430153, 0.021861884742975235, 0.00033957799314521253, 0.016032999381422997, -0.026843484491109848, 0.004427620209753513, 0.10120657086372375, 0.03488849103450775, -0.06986162066459656, -0.06826949864625931, 0.07842501997947693, -0.07111072540283203, -0.029877696186304092, -0.07000791281461716, -0.05248482525348663, 0.0754087045788765, -0.028373772278428078, -0.040865037590265274, 0.04657132923603058, 0.06318345665931702, 0.05155143886804581, -0.06995455175638199, 0.06823885440826416, -0.02700270526111126, 0.03934125974774361, -0.08252168446779251, -0.13947878777980804, -0.022538168355822563, -0.027892068028450012, 0.015169897116720676, 0.08360999822616577, 0.14090600609779358, -0.018552066758275032, 0.059858813881874084, 0.024517672136425972, -0.028783507645130157, -0.10853414982557297, 0.06204070523381233, 0.06848080456256866, 0.07913096249103546, 0.002549730706959963, 0.18257801234722137, -0.05930063873529434, -0.05487658083438873, -0.1299540251493454, 0.028730852529406548, 0.09749189764261246, 0.0943540558218956, 0.10447385907173157, -0.06955801695585251, -0.07068159431219101, -0.004430633969604969, 0.0776357352733612, -0.018210772424936295, 0.04714635759592056, 0.01544930413365364, 0.015134441666305065, 0.050834715366363525, 0.03991182893514633, -0.0723724216222763, 0.0018296352354809642, 0.09484504163265228, -0.04243045300245285, -0.04390658065676689, -0.01879112422466278, -0.07275989651679993, -0.10009640455245972, 0.18769827485084534, 0.12492495030164719, 0.08516320586204529, 0.05831543356180191, -0.058564312756061554, 0.11708948016166687, 0.05539868772029877, -0.14138968288898468, -0.03361396864056587, 0.04345228895545006, -0.08463595807552338, -0.10082130879163742, 0.06276888400316238, -0.04823186621069908, -0.08719557523727417, 0.01502931211143732, 0.011017813347280025, 0.022194597870111465, 0.10071919113397598, -0.08384786546230316, -0.1377883106470108, 0.07087960094213486, 0.04589443653821945, 0.13129961490631104, -0.08110351115465164, -0.00961988978087902, -0.06980074942111969, -0.025731071829795837, 0.013198486529290676, 0.03953329473733902, 0.06278525292873383, 0.023916304111480713, 0.0494619682431221, -0.1200396716594696, 0.0907721221446991, 0.06242689490318298, -0.03221692144870758, 0.12528331577777863, 0.0915178433060646, 0.051810767501592636, 0.05422230809926987, 0.030431365594267845, 0.1687506139278412, -0.1335131824016571, 0.01936226338148117, 0.08752389252185822, -0.04360926151275635, 0.024379579350352287, -0.15389785170555115, -0.049889467656612396, -0.001308295875787735, -0.03442217782139778, -0.16608740389347076, 0.07120872288942337, 0.12042488902807236, 0.009129965677857399, 0.12826767563819885, 0.015967903658747673, 0.052526555955410004, 0.03576759248971939, -0.0896296426653862, 0.05147995799779892, -0.003433943958953023, 0.014574918895959854, 0.08848673105239868, 0.03864215686917305, 0.01050665695220232, -0.00538391899317503, -0.025656135752797127, 0.11323952674865723, 0.05205768346786499, 0.07152751833200455, 0.13629624247550964, 0.07080543786287308, 0.0282022375613451, 0.023560475558042526, -0.013407682068645954, 0.036620400846004486, -0.0068551041185855865, 0.1721222847700119, 0.0537014938890934, 0.01934039406478405, 0.011349314823746681, 0.09298020601272583, 0.16766270995140076, 0.07519615441560745, -0.033440038561820984, -0.01345712412148714, -0.08114667981863022, -0.02261217124760151, -0.06479236483573914, 0.03642944246530533, 0.001040804316289723, -0.06149972602725029, 0.031966518610715866, 0.11751537024974823, 0.0655774250626564, -0.09704159200191498, -0.015013654716312885, -0.023611990734934807, 0.09021654725074768, -0.12271393090486526, -0.04878426715731621, -0.024635838344693184, -0.06205238774418831, -0.024133840575814247, -0.07714662700891495, 0.011211688630282879, 0.08440528810024261, 0.02513890713453293, 0.03578752279281616, 0.0514875203371048, 0.05042671412229538, -0.04218140244483948, -0.051597919315099716, 0.014803529717028141, -0.08468564599752426, -0.12473804503679276, -0.05005240440368652, 0.020534172654151917, -0.0016720907296985388, 0.09575153142213821, -0.031116396188735962, -0.07261037081480026, 0.07038123160600662, 0.002504137344658375, 0.02317633293569088, -0.13097929954528809, 0.05438411608338356, -0.03656719997525215, -0.018751177936792374, -0.07758893072605133, -0.0042575947009027, -0.06502528488636017, 0.09648256003856659, -0.02080703154206276, 0.12002474069595337, 0.04193340614438057, -0.03985569626092911, 0.02794148400425911, 0.0577557347714901, -0.001305404701270163, -0.03048301301896572, 0.054865509271621704, 0.08664645254611969, -0.04376440867781639, -0.08013192564249039, 0.01944103091955185, -0.039684198796749115, 0.0521298423409462, -0.03046349063515663], -pointerTy:[-0.06190390884876251, -0.06655042618513107, 0.07057496905326843, 0.016821283847093582, 0.04461117088794708, 0.07247963547706604, 0.028414612635970116, -0.12926900386810303, 0.02134212851524353, 0.10039752721786499, 0.09635081142187119, 0.028056561946868896, 0.10289653390645981, -0.08757202327251434, -0.07852289825677872, 0.07272159308195114, 0.023409036919474602, -0.010953865945339203, 0.03842504695057869, 0.004176408983767033, 0.01878764107823372, 0.07727372646331787, -0.07028437405824661, 0.03310546651482582, 0.03923738747835159, -0.027695609256625175, 0.08466022461652756, -0.09572549909353256, 0.035317376255989075, 0.04692244902253151, 0.06182875484228134, 0.08459146320819855, -0.020313739776611328, -0.04080986604094505, 0.030768737196922302, 0.07906171679496765, -0.03472531959414482, 0.09860307723283768, 0.1048295721411705, -0.10289201885461807, 0.06614914536476135, -0.1328134536743164, -0.07884998619556427, -0.025438381358981133, 0.15863385796546936, -0.11449280381202698, 0.04493608698248863, -0.12685193121433258, -0.02829100377857685, -0.031234925612807274, -0.0030902533326298, -0.02896679751574993, -0.13344068825244904, -0.00934760645031929, -0.022224178537726402, -0.08693232387304306, -0.01873256079852581, 0.027340425178408623, -0.012492208741605282, -0.10312594473361969, -0.053611475974321365, -0.06823968142271042, -0.042532987892627716, 0.0504983589053154, -0.07971146702766418, 0.0396898090839386, 0.010323993861675262, 0.04989761859178543, 0.01277148723602295, -0.08561130613088608, 0.09046167880296707, -0.045042332261800766, -0.0010140461381524801, 0.013529783114790916, -0.06264074891805649, -0.0361483097076416, 0.022351685911417007, -0.07255923748016357, 0.002600021893158555, 0.11187120527029037, -0.00029527273727580905, -0.08649354428052902, 0.04138186201453209, 0.04918595403432846, 0.16602405905723572, 0.05750220641493797, 0.029549917206168175, 0.044819846749305725, -0.10402663052082062, 0.12833012640476227, 0.016712483018636703, 0.04860983043909073, -0.031053151935338974, 0.0801808163523674, -0.06743904948234558, -0.0828716978430748, 0.12121432274580002, -0.0181103702634573, 0.1372046023607254, -0.06782364845275879, 0.12550218403339386, -0.11490872502326965, 0.005900577642023563, 0.11574265360832214, -0.10574112087488174, 0.12350038439035416, 0.02661299705505371, 0.06743086129426956, -0.03474089875817299, -0.04864378646016121, -0.02232072874903679, -0.1348552703857422, 0.058781273663043976, -0.07026338577270508, -0.10640713572502136, -0.02936374768614769, -0.14469511806964874, -0.03691622614860535, 0.12414808571338654, 0.055883318185806274, 0.01201994065195322, 0.09821782261133194, 0.1098196879029274, -0.06287456303834915, 0.08249617367982864, -0.12167453020811081, -0.006025709677487612, 0.09178320318460464, 0.007545378990471363, -0.0963202714920044, -0.12575002014636993, -0.08416781574487686, 0.01499314233660698, -0.03314310684800148, -0.023356568068265915, -0.11041640490293503, -0.11196815222501755, 0.04643436148762703, -0.04317113012075424, 0.010607949458062649, 0.006403112784028053, -0.0005491068004630506, 0.05144016817212105, 0.055735182017087936, 0.08653262257575989, -0.020576154813170433, -0.14301952719688416, 0.11496957391500473, -0.07756175100803375, 0.0033014470245689154, -0.0021284425165504217, -0.06837491691112518, 0.02105579897761345, 0.04163847863674164, -0.04892566800117493, -0.017391152679920197, -0.02437599189579487, 0.03362641856074333, -0.01903090439736843, 0.0910072773694992, 0.047462910413742065, -0.07529985159635544, -0.023697927594184875, 0.12174009531736374, -0.06128270924091339, 0.06853209435939789, -0.07968053221702576, 0.0679914727807045, 0.036638546735048294, -0.015433471649885178, -0.09164755046367645, 0.01128820888698101, 0.14232829213142395, 0.10664025694131851, 0.11830596625804901, -0.10262445360422134, 0.010901864618062973, 0.1195826381444931, 0.01364969927817583, 0.022680232301354408, -0.036215268075466156, 0.09806874394416809, -0.006677771918475628, 0.10138583928346634, -0.11578361690044403, -0.08023583143949509, 0.058606065809726715, -0.028023893013596535, 0.08484616875648499, -0.008801830001175404, -0.04372372478246689, 0.06560488790273666, -0.0427267849445343, 0.05201760679483414, -0.060597214847803116, 0.03339611366391182, 0.027781160548329353, -0.06321939080953598, -0.025562811642885208, 0.015406102873384953, -0.10623975843191147, -0.10967625677585602, 0.06709049642086029, -0.07725720852613449, -0.04224517196416855, -0.029944907873868942, 0.10981204360723495, 0.025239262729883194, 0.10347174108028412, 0.1007724478840828, 0.11456804722547531, -0.010111729614436626, -0.14945870637893677, -0.0922895297408104, 0.08047229051589966, 0.07034298777580261, -0.058544766157865524, -0.05984930694103241, 0.0899084061384201, -0.03829009085893631, -0.08290653675794601, -0.09097249060869217, 0.1043320968747139, -0.06972391158342361, 0.03910386934876442, 0.029919898137450218, 0.11030782014131546, -0.022439217194914818, -0.087438203394413, -0.03084954433143139, 0.015743438154459, -0.052485380321741104, 0.054823167622089386, -0.06984630972146988, 0.03169197216629982, -0.011070110835134983, 0.03804197534918785, 0.05223211273550987, 0.002437734976410866, -0.08395428955554962, -0.07667665928602219, -0.08508919179439545, -0.032742127776145935, 0.08376453816890717, 0.07744693756103516, 0.040918249636888504, -0.006301367189735174, -0.06399025768041611, -0.07947296649217606, 0.04484223574399948, -0.016481267288327217, -0.025219567120075226, 0.06912028789520264, 0.010017236694693565, 0.03782523795962334, -0.06150371953845024, 0.0803556740283966, 0.07277414202690125, -0.08362706005573273, 0.04492008313536644, -0.0316721610724926, 0.020681682974100113, -0.014386885799467564, -0.09158983826637268, 0.045718494802713394, -0.05448925867676735, -0.014191662892699242, 0.04025572910904884, -0.08417002856731415, -0.14152425527572632, 0.029277902096509933, -0.06660773605108261, 0.09232208132743835, -0.05660424754023552, 0.05522165447473526, 0.018731841817498207, 0.024802064523100853, 0.048378314822912216, -0.015046142041683197, 0.13741102814674377, -0.06521861255168915, 0.07047960162162781, -0.07396101951599121, -0.02778305858373642, 0.06638000905513763, 0.05445513874292374, -0.12202249467372894, -0.026297060772776604, -0.0354975089430809, 0.10347528755664825, -0.10371292382478714, 0.03083583153784275, 0.07699441909790039, 0.05139107629656792, 0.10944051295518875, 0.05792298540472984, -0.07119055837392807, 0.022687498480081558, -0.09798792004585266, 0.1431913524866104], -ptrtoint:[-0.08763039857149124, 0.1525183618068695, 0.07661665230989456, 0.1522718071937561, 0.016913795843720436, 0.01865188032388687, -0.0304622370749712, -0.0898457020521164, 0.022352034226059914, -0.03177293762564659, 0.09223463386297226, -0.1656714677810669, -0.01857933960855007, 0.15481260418891907, -0.08707058429718018, -0.15672513842582703, 0.045641615986824036, 0.03276222571730614, 0.031353238970041275, 0.0368424654006958, 0.11978862434625626, -0.021805357187986374, -0.010525230318307877, 0.01031660009175539, 0.08267905563116074, 0.06954916566610336, -0.05771413818001747, 0.09721105545759201, 0.01064222864806652, -0.15815290808677673, -0.03804972767829895, 0.1395915448665619, 0.046779047697782516, 0.009465057402849197, 0.022793112322688103, -0.02207965962588787, -0.09726075828075409, 0.06483670324087143, -0.04593096300959587, -0.00215012370608747, -0.021255968138575554, -0.16899211704730988, -0.02930450439453125, 0.16026613116264343, 0.01522380206733942, 0.07162419706583023, 0.01026368048042059, -0.0629403218626976, -0.04000115767121315, 0.02016294188797474, -0.21753625571727753, 0.044451478868722916, -0.03365097939968109, -0.1525515615940094, -0.166767880320549, -0.06996574997901917, 0.03929426521062851, 0.014802279882133007, -0.016769401729106903, -0.042108215391635895, 0.07261279970407486, 0.017888663336634636, 0.06751003861427307, 0.0028502505738288164, 0.0012129901442676783, 0.15553566813468933, 0.04073634371161461, 0.05171767249703407, -0.0990467518568039, -0.015606583096086979, 0.04315657913684845, 0.13012146949768066, 0.021177884191274643, 0.1677819937467575, -0.024989698082208633, 0.06565621495246887, 0.001071056118234992, 0.0017430525040253997, 0.03414446488022804, -0.013370196335017681, 0.027666809037327766, 0.17503972351551056, -0.02981225959956646, -0.0689300149679184, 0.08969477564096451, 0.08454527705907822, 0.1024269238114357, 0.019862351939082146, 0.03748525679111481, -0.11093685030937195, -0.02021598257124424, -0.05358349159359932, -0.054104242473840714, 0.04921774938702583, -0.16928547620773315, 0.10700066387653351, -0.06768125295639038, -0.00955746229737997, -0.09206315129995346, 0.08962889015674591, -0.055696725845336914, 0.00949509721249342, 0.03864218667149544, 0.052704501897096634, -0.0595003142952919, 0.01412168238312006, -0.04931959882378578, -0.0329095721244812, 0.023778030648827553, -0.07728971540927887, -0.06708081066608429, -0.08407877385616302, 0.013045093975961208, 0.07942144572734833, -0.07629816234111786, 0.00902162492275238, -0.011071605607867241, 0.05391775071620941, -0.028844129294157028, -0.019845420494675636, -0.08460433781147003, 0.015903107821941376, -0.11227817088365555, 0.05127718299627304, -0.003266147570684552, 0.12107444554567337, -0.001758179976604879, 0.08479169756174088, -0.07019896060228348, 0.09428586810827255, 0.025644980370998383, 0.08027628064155579, -0.004775423556566238, -0.07098899036645889, -0.00929982028901577, 0.050991225987672806, -0.09513229876756668, -0.011324373073875904, 0.11226701736450195, 0.0167109165340662, -0.16647370159626007, 0.012280416674911976, -0.028490768745541573, -0.03112485446035862, 0.05187731236219406, 0.05623229965567589, 0.09676465392112732, 0.1319725066423416, 0.017766054719686508, -0.006821735762059689, 0.05564688891172409, 0.0278745349496603, 0.007175566162914038, 0.09051695466041565, 0.1331799179315567, 0.02386099472641945, -0.11595796048641205, 0.027729062363505363, 0.08366178721189499, -0.021240945905447006, -0.035096991807222366, -0.025913679972290993, -0.13331708312034607, -0.08742175251245499, 0.04506886377930641, -0.08575475960969925, 0.024310696870088577, 0.003335189074277878, -0.0317937508225441, -0.09127707779407501, -0.10255603492259979, -0.12148109823465347, 0.04197417572140694, -0.022170064970850945, -0.07160232961177826, -0.04966243728995323, -0.010464353486895561, -0.005378831177949905, 0.11920647323131561, 0.07779569178819656, -0.010392685420811176, -0.028514660894870758, 0.015835683792829514, -0.011315444484353065, 0.0659683346748352, -0.08303999900817871, -0.16675269603729248, 0.034869495779275894, -0.06639266014099121, 0.08122023195028305, 0.07527882605791092, -0.046874795109033585, -0.054752741008996964, -0.0806845873594284, 0.016701534390449524, 0.09819009155035019, -0.13095404207706451, 0.08892212063074112, -0.06743083894252777, -0.0656123086810112, 0.07953660935163498, -0.10410195589065552, -0.07911244034767151, 0.037549637258052826, -0.07326134294271469, 0.10728279501199722, 0.16289407014846802, -0.026201941072940826, 0.08737379312515259, -0.051391590386629105, -0.17547883093357086, -0.04187455773353577, -0.04753757640719414, -0.010127267800271511, -0.11840186268091202, 0.008344131521880627, 0.017735568806529045, -0.11296174675226212, -0.013631313107907772, 0.06208423152565956, 0.0059189763851463795, 0.06842697411775589, -0.06048526614904404, -0.12218686938285828, -0.08750128746032715, -0.015848100185394287, 0.1736782193183899, -0.041498877108097076, -0.06406822055578232, 0.0035703883040696383, -0.044077735394239426, 0.0906606912612915, 0.10949651896953583, 0.1424897015094757, -0.0712004154920578, -0.11639036983251572, 0.014983683824539185, -0.0019919457845389843, 0.03041379526257515, -0.0035049268044531345, -0.07490537315607071, -0.027400309219956398, -0.013446352444589138, -0.03523905947804451, 0.04726788401603699, -0.029376324266195297, 0.0034390678629279137, -0.019538071006536484, 0.07007458806037903, 0.12787604331970215, -0.06781405210494995, 0.05231025069952011, 0.06527342647314072, -0.0023544759023934603, -0.0813344419002533, -0.052996646612882614, -0.03966683894395828, 0.12536685168743134, -0.04999445378780365, 0.0015975789865478873, -0.006110700778663158, -0.04772977530956268, -0.019785499200224876, 0.05737156793475151, -0.05546002835035324, 0.039815377444028854, -0.02857104316353798, -0.12360043823719025, -0.043011683970689774, 0.019695181399583817, 0.038509219884872437, 0.027451977133750916, -0.06914915889501572, -0.019635513424873352, 0.08657105267047882, -0.03156181424856186, 0.0274555254727602, -0.02071455493569374, 0.04358102008700371, -0.10441865772008896, 0.06946826726198196, 0.01531942468136549, -0.032675616443157196, 0.09243949502706528, -0.08160708099603653, -0.027277709916234016, -0.027971865609288216, -0.043309345841407776, -0.007240535691380501, 0.0009644171805121005, 0.021911269053816795, -0.09416043758392334, 0.020128782838582993, 0.1822516769170761, -0.006424832623451948, -0.007934113033115864, -0.07194621115922928, -0.1036335676908493, 0.04125358164310455, -0.08054223656654358], -resume:[0.10167833417654037, 0.08597695082426071, 0.0701998621225357, 0.11816379427909851, -0.01770617999136448, 0.06381332874298096, -0.076327845454216, 0.14862461388111115, 0.03337980806827545, 0.019891396164894104, 0.05816078558564186, 0.1082427054643631, -0.11191070824861526, 0.0197997335344553, 0.03450564667582512, -0.036511607468128204, -0.07687709480524063, 0.05528286471962929, -0.001988641917705536, -0.1007416769862175, -0.015221595764160156, 0.02060089446604252, -0.011579922400414944, -0.028790801763534546, -0.010157584212720394, -0.05453433468937874, 0.06262890994548798, 0.10710065066814423, 0.014001026749610901, -0.043456435203552246, 0.036562949419021606, -0.056548405438661575, 0.019497612491250038, 0.029706111177802086, -0.07715471088886261, 0.1709693968296051, -0.06782972812652588, -0.09027953445911407, -0.04185592010617256, 0.024490369483828545, -0.02197679877281189, 0.1513330042362213, -0.08124366402626038, 0.12948890030384064, 0.05464653670787811, -0.02146647311747074, -0.06455542892217636, 0.03361872583627701, 0.0016358827706426382, 0.09576748311519623, -0.009761904366314411, -0.09714169800281525, 0.07177528738975525, -0.08438970893621445, -0.12669780850410461, 0.15013761818408966, 0.13540247082710266, -0.07173293828964233, 0.06569410860538483, -0.022168027237057686, 0.05434603616595268, 0.03139454498887062, 0.05603652447462082, 0.00012803473509848118, -0.050890203565359116, 0.01434202492237091, -0.097379669547081, 0.011713840998709202, 0.012961513362824917, 0.04493214190006256, -0.031259823590517044, 0.03972794488072395, -0.037045374512672424, 0.008061898872256279, -0.11676889657974243, 0.03807255998253822, 0.009055735543370247, -0.03462933376431465, 0.03570549562573433, -0.22409746050834656, -0.024494778364896774, 0.005859432741999626, -0.04162999615073204, -0.10396362096071243, 0.11385035514831543, -0.02378099225461483, 0.0005836095660924911, 0.042154017835855484, 0.036495912820100784, -0.032895367592573166, 0.10922446101903915, 0.0029147746972739697, 0.08655234426259995, -5.450067692436278e-05, -0.021134672686457634, -0.084620401263237, 0.03829793259501457, 0.005268519744277, 0.09718257188796997, -0.034098587930202484, -0.0971568375825882, -0.028492899611592293, -0.0659845694899559, -0.07764056324958801, 0.022929634898900986, 0.014215389266610146, -0.2089243084192276, -0.04005736857652664, 0.024601690471172333, 0.1328718215227127, 0.04341926798224449, 0.06318628787994385, 0.003717743093147874, 0.0806817039847374, 0.025686252862215042, -0.06826721131801605, -0.012850247323513031, 0.0389753058552742, -0.01456473395228386, -0.011387992650270462, 0.13251742720603943, 0.00974835455417633, 0.10809391736984253, -0.025801267474889755, -0.041193705052137375, -0.004976422525942326, -0.06320707499980927, 0.06239238753914833, 0.020579960197210312, 0.08165629953145981, 0.016858745366334915, 0.05496324971318245, -0.0026588845066726208, -0.0689595565199852, -0.009971183724701405, 0.024278193712234497, -0.009443319402635098, -0.061030514538288116, 0.15600836277008057, -0.007680386304855347, -0.1393524557352066, -0.18088001012802124, -0.07341811060905457, 0.006939037702977657, 0.04529576748609543, 0.1778244525194168, 0.033012755215168, 0.006520232651382685, -0.018921276554465294, -0.009750793687999249, -0.0958094671368599, 0.013285735622048378, 0.005617951042950153, -0.021171478554606438, 0.11803455650806427, -0.04043620452284813, 0.04351447895169258, -0.03525928780436516, 0.07345490157604218, -0.04207804426550865, -0.04071975126862526, -0.007209256291389465, -0.03755143657326698, 0.0005793953314423561, 0.018276318907737732, -0.10807491838932037, 0.08308076113462448, 0.1384715437889099, -0.17319278419017792, -0.09035665541887283, -0.05555567517876625, -0.06322348862886429, 0.027542149648070335, -0.19087862968444824, 0.032611459493637085, -0.1609872728586197, 0.0806085616350174, -0.027954060584306717, 0.022721633315086365, 0.1694226861000061, 0.045679863542318344, -0.020134277641773224, -0.08030970394611359, 0.0021118447184562683, 0.10336701571941376, -0.04042143002152443, -0.023565100505948067, 0.17186339199543, 0.09226077795028687, -0.15396946668624878, -0.019294315949082375, 0.16342899203300476, -0.15581081807613373, -0.09070634096860886, 0.06776121258735657, 0.030994899570941925, 0.07349050790071487, 0.10018231719732285, -0.16021756827831268, 0.11517110466957092, 0.07287851721048355, -0.1466139554977417, 0.02257760986685753, 0.01066658552736044, -0.06814850866794586, -0.22576995193958282, -0.04507046937942505, 0.05469433590769768, -0.0365227609872818, -0.049570683389902115, -0.03459271043539047, -0.05513476952910423, 0.050264496356248856, -0.016348274424672127, 0.12329517304897308, 0.03476107493042946, 0.09663255512714386, -0.11952756345272064, 0.008056284859776497, 0.008958217687904835, 0.012700690887868404, 0.018349654972553253, -0.07268297672271729, 0.026990393176674843, -0.022587334737181664, 0.004013195168226957, 0.08094944059848785, 0.08291535824537277, 0.15471680462360382, -0.044668957591056824, -0.03512038663029671, 0.156999409198761, -0.19537457823753357, -0.0002343857631785795, -0.044341687113046646, -0.05952858179807663, 0.004578776191920042, -0.0024989317171275616, 0.07878851890563965, -0.01563354954123497, -0.012947634793817997, -0.08053448796272278, -0.0568087138235569, 0.013070572167634964, 0.03161464259028435, 0.11858800798654556, 0.06026797741651535, -0.08702544122934341, 0.043802376836538315, -0.033797577023506165, -0.0860178992152214, 0.037975117564201355, 0.07731490582227707, -0.09490876644849777, -0.024753877893090248, 0.0934511199593544, -0.08425427228212357, 0.012738666497170925, -0.012360815890133381, -0.015500332228839397, 0.0007801639731042087, -0.017951391637325287, 0.04297725111246109, -0.002240673638880253, -0.061323776841163635, 0.026271197944879532, 0.023125598207116127, 0.04669452831149101, -0.026812000200152397, 0.009263552725315094, -0.010364360176026821, 0.11067715287208557, -0.040350835770368576, -0.016436398029327393, 0.058080751448869705, -0.062892384827137, -0.0601431168615818, -0.0422656275331974, -0.06815659254789352, -0.05846415087580681, 0.07437244802713394, 0.05029424652457237, -0.09738834947347641, -0.048313915729522705, -0.07092466205358505, -0.02310609258711338, -0.0591094084084034, 0.02221590094268322, 0.0038780372124165297, -0.07765490561723709, -0.0666399747133255, -0.05651318281888962, -0.05186671018600464, 0.043462928384542465, 0.03540599346160889, 0.052244383841753006, -0.016923585906624794, 0.014383356086909771, -0.0007530965376645327, 0.080533966422081], -ret:[0.040882013738155365, 0.07001879811286926, 0.0674571841955185, -0.029312636703252792, 0.10534608364105225, -0.08033227920532227, -0.01488032378256321, -0.08528518676757812, 0.024426056072115898, -0.017626188695430756, 0.07262450456619263, -0.1257210224866867, 0.0894208550453186, -0.016639091074466705, 0.03160633519291878, -0.09372023493051529, -0.031750380992889404, 0.07254721969366074, 0.06007387861609459, 0.05546441301703453, 0.04377460852265358, -0.0077103967778384686, -0.08354372531175613, 0.007477517239749432, -0.012783437967300415, -0.03998053818941116, 0.045244697481393814, 0.04812387377023697, -0.013089175336062908, 0.09547846019268036, -0.057731177657842636, -0.037505730986595154, 0.011625947430729866, 0.0003961971087846905, -0.07332396507263184, -0.040916088968515396, 0.1463385671377182, 0.03579508140683174, -0.03949806094169617, -0.008018766529858112, -0.12663167715072632, 0.08623678982257843, -0.047682423144578934, 0.002821482950821519, -0.05129683390259743, 0.1617812216281891, -0.16465841233730316, 0.05325431376695633, 0.0960519090294838, -0.009436316788196564, 0.06835000216960907, -0.04893934354186058, 0.04805155098438263, 0.023212498053908348, -0.053919654339551926, -0.07462076842784882, 0.03154532238841057, 0.06142474338412285, 0.0319712795317173, -0.10213771462440491, 0.13969312608242035, 0.02782433293759823, 0.0320458710193634, -0.02512362226843834, -0.01138743944466114, 0.013611926697194576, 0.03707040473818779, -0.07414506375789642, -0.011353139765560627, 0.018557604402303696, -0.01790871098637581, 0.0530211441218853, 0.07982523739337921, 0.046630244702100754, -0.0480366013944149, 0.036886513233184814, 0.023646971210837364, -0.007559178397059441, 0.033038340508937836, -0.12114828824996948, 0.07034874707460403, 0.00603799382224679, -0.04301479831337929, -0.08384576439857483, 0.07439377903938293, 0.07521933317184448, 0.057373035699129105, 0.06465400755405426, 0.03435895964503288, -0.05132139101624489, 0.018443018198013306, -0.03098464198410511, 0.0978444293141365, 0.01020506676286459, 0.18270309269428253, 0.05576854944229126, -0.11726114153862, 0.08365475386381149, 0.06645188480615616, -0.10899849236011505, -0.03360040858387947, -0.016853321343660355, -0.009159146808087826, 0.041337572038173676, 0.12002095580101013, -0.004911291413009167, 0.09838077425956726, 0.14459295570850372, 0.01496877521276474, -0.05511404573917389, 0.1335119903087616, 0.025120360776782036, -0.051019638776779175, 0.08413936197757721, 0.058835845440626144, -0.025811996310949326, 0.06979911029338837, -0.012399229221045971, -0.0207801666110754, 0.03089689090847969, -0.004022448323667049, 0.010928584262728691, -0.12849169969558716, 0.0395435094833374, -0.004717981442809105, -0.005730356089770794, -0.07506165653467178, 0.11456886678934097, 0.029693076387047768, 0.08904755860567093, 0.0030832653865218163, -0.13876110315322876, 0.0014718848979100585, 0.04353984445333481, -0.15110570192337036, -0.058643318712711334, -0.016106368973851204, -0.08085855841636658, 0.07333202660083771, -0.16063328087329865, -0.13183386623859406, 0.19028350710868835, -0.07553762942552567, -0.08343111723661423, 0.02727217972278595, 0.04112457484006882, 0.055370088666677475, 0.006003303453326225, -0.013214148581027985, -0.006652597803622484, -0.005743548274040222, -0.021512921899557114, 0.006307826843112707, 0.028610752895474434, 0.01541540864855051, -0.1566224992275238, 0.11701007187366486, -0.05784538760781288, -0.03795576095581055, -0.03563922643661499, 0.0939725935459137, -0.009018020704388618, 0.04922433942556381, 0.009333685971796513, 0.10864034295082092, 0.11448198556900024, -0.04214334487915039, 0.020974626764655113, -0.21773096919059753, -0.07935629040002823, 0.02662147395312786, -0.055255595594644547, 0.08632049709558487, -0.16055195033550262, 0.007989807054400444, 0.030168646946549416, -0.1259489357471466, -0.02779693901538849, 0.1909862458705902, -0.09926877915859222, 0.047167785465717316, -0.068417027592659, -0.038654960691928864, 0.007892108522355556, 0.004214250948280096, -0.06166528910398483, 0.00571050588041544, -0.0009995102882385254, 0.08873192220926285, -0.05874096602201462, -0.020585983991622925, 0.024077359586954117, 0.005084081552922726, 0.006834035273641348, 0.025202710181474686, -0.04277436062693596, -0.03998600319027901, -0.14072297513484955, -0.1355283558368683, -0.06653262674808502, -0.007887212559580803, 0.02088778093457222, 0.00600813515484333, 0.041132908314466476, -0.05876244977116585, 0.14629563689231873, -0.041978299617767334, -0.008243425749242306, -0.018133724108338356, -0.05565693974494934, -0.005179970990866423, -0.0328146256506443, 0.13454684615135193, -0.003163718618452549, -0.022823546081781387, -0.02467832714319229, 0.04424280673265457, -0.12807905673980713, -0.003736482933163643, 0.18862493336200714, 0.011067289859056473, 0.07305926084518433, -0.009103409945964813, -0.016705717891454697, -0.018266798928380013, 0.1574731022119522, -0.04858417436480522, -0.009890584275126457, -0.02886454574763775, 0.0020829765126109123, -0.07144017517566681, 0.12964823842048645, 0.008234021253883839, 0.027183901518583298, -0.02380642481148243, 0.03903837874531746, 0.012545379810035229, -0.0018221730133518577, 0.05865909904241562, -0.005493928212672472, -0.05741366371512413, -0.1383737176656723, -0.17637275159358978, 0.041184816509485245, -0.009562889114022255, 0.1291740983724594, -0.039724353700876236, 0.010180971585214138, 0.04974524304270744, -0.08619290590286255, 0.1586594432592392, 0.06131678447127342, 0.07279191166162491, -0.006038950756192207, 0.03526744246482849, 0.06540477275848389, -0.03152751922607422, 0.0019763438031077385, -0.08481818437576294, -0.017479192465543747, 0.02539808861911297, 0.008506427519023418, -0.2052396833896637, 0.04320107400417328, -0.08074818551540375, -0.23880518972873688, -0.11200187355279922, -0.1291120946407318, 0.05429979786276817, -0.018215876072645187, -0.020824097096920013, 0.06007025018334389, -0.04826345667243004, 0.02797619253396988, 0.12890750169754028, -0.007464662194252014, -0.09124220907688141, -0.01775267906486988, -0.07667858898639679, 0.02742861397564411, -0.013703501783311367, -0.09668093919754028, -0.08470167219638824, -0.028437621891498566, 0.044060226529836655, 0.13703075051307678, 0.007369306869804859, 0.034895770251750946, -0.0692044124007225, 0.0015485684853047132, -0.051483649760484695, 0.0004817789886146784, -0.037590011954307556, 0.046462103724479675, 0.032748617231845856, 0.03605998679995537, 0.039064932614564896, 0.04931517690420151, 0.0010436244774609804, -0.02492319978773594], -sdiv:[-0.0069632804952561855, 0.017140809446573257, 0.11697803437709808, -0.01904359832406044, -0.07491503655910492, -0.00879561435431242, -0.002853559795767069, -0.03367287665605545, 0.01506572961807251, -0.029706113040447235, 0.08506462723016739, -0.120924212038517, -0.12429102510213852, 0.010319432243704796, 0.046899694949388504, 0.004462646320462227, -0.04372851550579071, 0.015513374470174313, -0.014325226657092571, -0.012952868826687336, 0.05530896410346031, -0.01395961083471775, 0.048333123326301575, -0.07110845297574997, -0.08171219378709793, -0.0371379554271698, 0.1087605357170105, 0.0616627000272274, -0.017502961680293083, 0.08619392663240433, 0.08670810610055923, 0.044754672795534134, 0.03344513103365898, 0.010184659622609615, -0.033210210502147675, -0.010945157147943974, 0.02895771898329258, 0.005230221431702375, -0.05341951176524162, 0.02072783373296261, 0.007911697961390018, 0.03405606374144554, 0.031176818534731865, -0.07113612443208694, 0.03751324117183685, 0.050154510885477066, 0.09388155490159988, 0.003905913094058633, -0.0134855005890131, 0.07864124327898026, -0.10816007107496262, 0.19823460280895233, 0.09997326880693436, 0.013403747230768204, 0.0270736962556839, -0.18608872592449188, 0.042786553502082825, -0.028500542044639587, 0.0323248915374279, -0.11556713283061981, -0.07351817935705185, -0.1367899775505066, -0.18617691099643707, -0.03155939653515816, -0.009916616603732109, 0.037995174527168274, -0.04347406327724457, 0.009040020406246185, 0.009854139760136604, 0.017503436654806137, -0.09458313137292862, -0.11195887625217438, -0.02227700874209404, 0.018116990104317665, -0.12836994230747223, 0.10511517524719238, 0.07277166098356247, -0.010536249727010727, 0.03462119773030281, -0.08783178776502609, 0.18929296731948853, 0.006933450233191252, -0.04172104597091675, -0.0754028782248497, 0.02790691889822483, -0.0824819877743721, -0.02645268477499485, -0.038813620805740356, 0.04690295830368996, 0.10839497298002243, -0.16407622396945953, 0.003443890018388629, 0.03165257349610329, 0.06855031102895737, 0.08030204474925995, 0.1745004653930664, -0.015544627793133259, -0.16841274499893188, -0.169609934091568, 0.01505003310739994, 0.10163719952106476, -0.06315602362155914, -0.02640991099178791, -0.13939744234085083, -0.12014803290367126, 0.02032524347305298, -0.05593477189540863, -0.04400981590151787, 0.06329086422920227, -0.14992186427116394, 0.032351382076740265, -0.03364059329032898, 0.07112587243318558, 0.17727647721767426, 0.02820313349366188, -0.017227083444595337, -0.011897353455424309, 0.058457739651203156, -0.03289613872766495, -0.03531797230243683, -0.0546293631196022, 0.14993049204349518, -0.14057645201683044, -0.007425994146615267, -0.015219299122691154, -0.08523678779602051, -0.05678406357765198, 0.03067704848945141, 0.04972846433520317, 0.004206622019410133, -0.06336335092782974, 0.052366822957992554, -0.09681082516908646, -0.08516420423984528, 0.1182340607047081, -0.009478633292019367, -0.027413902804255486, 0.0706128478050232, 0.07553596794605255, -0.027633406221866608, 0.1127903163433075, 0.10234566032886505, -0.013822540640830994, 0.11675263196229935, -0.011809676885604858, -0.07453209161758423, -0.03440944477915764, 0.007756794337183237, -0.1352332979440689, -0.08715105801820755, 0.09899524599313736, 0.0038782756309956312, 0.0013064120430499315, -0.050244010984897614, -0.02307967282831669, -0.005326997023075819, 0.16706246137619019, 0.024211084470152855, 0.02471199445426464, 0.04927033558487892, 0.08144047856330872, -0.02651192992925644, -0.0407785102725029, 0.02942012809216976, 0.12175502628087997, -0.03297601640224457, 0.12425374984741211, -0.004217598587274551, 0.11545325070619583, -0.07819010317325592, -0.06682582199573517, -0.04672974720597267, 0.0005256754229776561, -0.10927718132734299, -0.18262651562690735, 0.09322286397218704, 0.026635240763425827, -0.031691066920757294, 0.029714880511164665, -0.02492404356598854, 0.026697030290961266, -0.13202112913131714, -0.11529259383678436, -0.031066540628671646, -0.020314782857894897, -0.04475117847323418, 0.050828903913497925, 0.05285866931080818, -0.04622577503323555, 0.06257321685552597, -0.060724835842847824, 0.04549963399767876, 0.05627308785915375, -0.036683160811662674, 0.042129237204790115, 0.0913568064570427, -0.02379881776869297, -0.016412174329161644, 0.035193026065826416, -0.08381775766611099, 0.0310503076761961, 0.028277119621634483, 0.0021391501650214195, 0.05640126019716263, -0.06901318579912186, -0.042207762598991394, 0.07216312736272812, 0.01664734072983265, -0.03417174890637398, -0.07793213427066803, -0.1135626882314682, 0.040994152426719666, -0.04718790575861931, 0.07902804017066956, 0.06746000796556473, 0.016888942569494247, 0.03909166902303696, -0.006463146302849054, 0.13318245112895966, 0.04531864449381828, 0.01129218190908432, -0.033397845923900604, -0.03854745253920555, 0.00777275487780571, -0.09534038603305817, 0.015535831451416016, -0.17566947638988495, 0.020706728100776672, 0.17245493829250336, -0.08045066148042679, -0.0362272672355175, 0.10600479692220688, -0.07955387979745865, -0.03926666080951691, 0.04008889198303223, -0.0907680094242096, 0.08240818232297897, 0.011343410238623619, 0.002238499466329813, -0.005234752781689167, 0.15316462516784668, -0.10541316121816635, -0.010878738015890121, -0.08710246533155441, 0.03523552045226097, -0.06370790302753448, -0.12312794476747513, -0.05981907993555069, 0.06921324133872986, 0.05810018628835678, 0.024723824113607407, -0.01992877386510372, 0.12363342195749283, -0.0031839385628700256, -0.08836554735898972, 0.001031149411574006, -0.04840909317135811, 0.018816782161593437, -0.01574607379734516, 0.13147884607315063, 0.020551074296236038, -0.11930913478136063, 0.012589597143232822, 0.032727647572755814, -0.07206432521343231, 0.03932243213057518, -0.1180737242102623, 0.014071810059249401, -0.11004235595464706, 0.17639097571372986, 0.12332189083099365, -0.08412564545869827, 0.06452677398920059, -0.09512074291706085, 0.06337243318557739, -0.06549941748380661, -0.016674615442752838, -0.04845255985856056, -0.01970675028860569, -0.05157879367470741, 0.10321987420320511, -0.012478252872824669, -0.0442965142428875, -0.032102685421705246, -0.08993054181337357, 0.12518133223056793, -0.02330983243882656, 0.11526355892419815, -0.03250016272068024, 0.09156641364097595, 0.011543490923941135, 0.127711683511734, -0.04188893735408783, 0.06923557817935944, 0.05119040980935097, -0.021582327783107758, -0.0666712298989296, -0.004626925103366375, 0.0003956738510169089, 0.061828017234802246], -select:[0.1185653805732727, 0.0169205479323864, 0.04409025236964226, -0.06629522144794464, -0.09878844767808914, 0.07405173033475876, 0.017830846831202507, -0.16235795617103577, 0.021480919793248177, -0.11027156561613083, 0.11684100329875946, 0.03244737908244133, 0.03909048065543175, 0.03934507071971893, 0.031032608821988106, 0.008649511262774467, -0.06637334823608398, -0.049302298575639725, -0.0635007843375206, -0.01177100371569395, 0.03946240618824959, -0.14205406606197357, 0.1911800056695938, 0.08412221819162369, -0.04232305288314819, -0.15045686066150665, 0.06319015473127365, 0.04467526450753212, 0.027181554585695267, 0.031138882040977478, 0.06456879526376724, -0.11586540192365646, 0.03080633282661438, -0.013551956973969936, -0.01641574501991272, -0.060085710138082504, -0.14451734721660614, -0.03257440775632858, -0.060721419751644135, -0.05010024830698967, 0.08799416571855545, -0.12898267805576324, 0.056484002619981766, -0.053891826421022415, 0.023813989013433456, -0.07835736125707626, -0.04545988515019417, 0.016752732917666435, 0.03895914927124977, 0.10186304152011871, -0.18198975920677185, 0.1874692589044571, -0.014980400912463665, 0.017668189480900764, 0.04630153998732567, 0.13155780732631683, 0.07496272027492523, 0.037537094205617905, 0.015775421634316444, -0.07080931961536407, -0.026164941489696503, 0.01821077987551689, 0.1473168283700943, 0.16890138387680054, -0.022790685296058655, 0.017117099836468697, -0.0013458158355206251, 0.004608358256518841, -0.020311810076236725, -0.002845881972461939, 0.007665020879358053, 0.04876111075282097, 0.07159392535686493, 0.12890611588954926, 0.06337001174688339, 0.03276541084051132, -0.011678438633680344, -0.015775956213474274, 0.03466821834445, -0.08484289050102234, 0.06581456959247589, -0.07901356369256973, -0.029243655502796173, -0.06399215012788773, 0.0893038660287857, 0.08891709893941879, -0.10119536519050598, -0.03879450634121895, 0.03940552845597267, -0.07231530547142029, 0.1397062987089157, -0.03255923464894295, -0.06668858230113983, 0.029663091525435448, -0.12199272215366364, 0.05587320029735565, -0.00644144881516695, 0.08371932059526443, -0.08250825852155685, 0.015526903793215752, -0.05932989344000816, 0.02141837775707245, 0.00990655180066824, 0.03963635116815567, -0.030441612005233765, -0.08411083370447159, -0.06096853315830231, -0.0438729003071785, 0.008630605414509773, 0.0349259227514267, -0.0922471284866333, 0.03024894930422306, 0.008411318063735962, 0.04230472072958946, -0.02948007360100746, -0.0726899653673172, -0.01478679571300745, 0.05746755003929138, -0.005416444037109613, -0.08942531049251556, -0.06024188920855522, 0.07073751837015152, 0.09666790068149567, 0.06621654331684113, -0.0011744069634005427, 0.08725007623434067, 0.03312516584992409, 0.08601418137550354, 0.008133234456181526, 0.14789366722106934, 0.019165486097335815, 0.10843779891729355, -0.01259043999016285, 0.15796823799610138, 0.018704654648900032, -0.04864796623587608, -0.03500838577747345, -0.05197066813707352, 0.05513371527194977, 0.10165710002183914, -0.03325691074132919, -0.09882049262523651, -0.011848817579448223, 0.09984681755304337, -0.0026496853679418564, 0.2206055074930191, 0.0697726309299469, 0.007062943186610937, 0.15169645845890045, 0.1131361573934555, 0.0291635449975729, -0.030916735529899597, 0.001210548565723002, 0.08433205634355545, -0.00853022001683712, 0.002530076075345278, -0.03266835957765579, -0.0006607718532904983, -0.00841996818780899, -0.13760314881801605, -0.19853803515434265, -0.03471572697162628, -0.030830135568976402, 0.01595490425825119, 0.07706757634878159, 0.07440933585166931, -0.019743982702493668, -0.026099462062120438, -0.06345022469758987, -0.07130881398916245, 0.09937641024589539, -0.1449318379163742, -0.18605226278305054, 0.04033477231860161, 0.05199376121163368, 0.019041122868657112, 0.009010732173919678, -0.033960338681936264, 0.09514763951301575, 0.02213907055556774, -0.09985969215631485, -0.03180301934480667, -0.14036396145820618, -0.03839027136564255, 0.031862080097198486, 0.0005435993662104011, 0.017730144783854485, -0.006475947331637144, 0.19939272105693817, 0.07266556471586227, 0.041232746094465256, 0.08888554573059082, 0.05642930045723915, -0.05098886042833328, 0.014060639776289463, 0.07320478558540344, 0.03708937019109726, -0.17425650358200073, 0.01795472390949726, 0.02601960115134716, -0.03677188977599144, 0.030206264927983284, -0.02568199299275875, 0.06558825820684433, 0.03876081481575966, 0.05559146776795387, 0.17911942303180695, -0.06176874786615372, -0.034721214324235916, 0.09672519564628601, -0.09521526098251343, -0.10646821558475494, -0.05075583979487419, -0.04546116292476654, -0.02310643158853054, -0.015062597580254078, 0.013345792889595032, -0.016824910417199135, 0.003976784646511078, -0.004365942906588316, 0.009576451033353806, 0.02678493782877922, -0.027360837906599045, 0.14556534588336945, -0.06369679421186447, 0.02536214515566826, -0.032715391367673874, 0.03424004465341568, -0.05733208358287811, -0.017887597903609276, -0.04487873241305351, -0.12587755918502808, -0.05088779330253601, -0.04539243131875992, -0.01132870838046074, -0.08016447722911835, 0.001774040050804615, 0.00364039302803576, 0.12258704751729965, -0.11880289763212204, 0.13780060410499573, -0.08407430350780487, -0.01562872715294361, 0.02237827517092228, -0.01989097334444523, 0.04103049263358116, 0.07403069734573364, 0.0019369329093024135, -0.1282518208026886, 0.06668820977210999, 0.07913266867399216, 0.17173831164836884, 0.09413912892341614, -0.0024224978405982256, -0.21777044236660004, 0.025258682668209076, -0.049429573118686676, -0.09238123148679733, -0.06466582417488098, -0.09503472596406937, 0.002719809301197529, -0.05159452557563782, 0.18666191399097443, -0.019629159942269325, -0.036595094949007034, 0.01955811120569706, 0.049702245742082596, 0.01794407330453396, -0.05727265775203705, -0.038763318210840225, 0.1509224772453308, -0.03233003616333008, 0.026568613946437836, -0.07409109175205231, -0.04960746690630913, -0.022486504167318344, -0.03397764265537262, -0.03195104002952576, -0.08261003345251083, 0.05717134475708008, -0.07626239955425262, -0.012128341011703014, 0.06536509841680527, 0.04918680340051651, 0.023433882743120193, -0.002885238965973258, -0.021009085699915886, 0.00866000261157751, -0.17789876461029053, 0.006474281195551157, 0.01629842072725296, 0.009449231438338757, -0.04655814915895462, 0.05972890928387642, 0.04590889438986778, 0.06736285984516144, 0.07530270516872406, -0.029732197523117065, -0.002058655023574829, -0.03992006555199623], -sext:[0.020033715292811394, 0.018026070669293404, 0.07855893671512604, 0.039657074958086014, -0.06055062636733055, -0.06922679394483566, -0.0062093352898955345, -0.0684565007686615, 0.02654094249010086, 0.015751898288726807, 0.07412540167570114, 0.06929205358028412, -0.026735540479421616, 0.16965055465698242, 0.11715488880872726, -0.0508856438100338, -0.06695766746997833, 0.030658984556794167, -0.04468200355768204, -0.003082322422415018, 0.06156592071056366, -0.05813072249293327, 0.09277891367673874, -0.08251207321882248, -0.034859415143728256, 0.03614671900868416, 0.019172269850969315, 0.06736226379871368, -0.006241328082978725, -0.0065825521014630795, 0.0004134726186748594, -0.05515657365322113, -0.07135738432407379, 0.017090708017349243, -0.048011597245931625, -0.029148632660508156, -0.06728112697601318, 0.005129521246999502, -0.012141026556491852, -0.011204971931874752, 0.04027272388339043, 0.047766488045454025, -0.02834184840321541, 0.07243167608976364, 0.033085450530052185, 0.002940134145319462, 0.09838363528251648, 0.0205039381980896, 0.0776963084936142, 0.003450491465628147, -0.07360179722309113, 0.1133604645729065, -0.01476855669170618, 0.04466262832283974, -0.04337787255644798, 0.10804042220115662, -0.11754953116178513, -0.015971574932336807, -0.00018561781325843185, -0.07880376279354095, 0.12850052118301392, 0.058015063405036926, -0.12004870921373367, -0.0536576583981514, 0.011658222414553165, 0.008698275312781334, -0.04086479917168617, -0.001355443149805069, -0.03902721405029297, -0.00032615524833090603, 0.05216265097260475, -0.1134374588727951, -0.06065825745463371, -0.08463652431964874, -0.1146717518568039, -0.10943319648504257, -0.17377813160419464, -0.010584407486021519, 0.032588932663202286, -0.06484615802764893, -0.12239114940166473, 0.004636459518224001, -0.02404853142797947, -0.04017319902777672, -0.05775195732712746, -0.012793909758329391, -0.13647325336933136, -0.0955849438905716, 0.04942355677485466, 0.01773463562130928, -0.07527134567499161, -0.010387042537331581, -0.032722409814596176, 0.06094728037714958, -0.14948463439941406, 0.1832461804151535, -0.05520269274711609, 0.03457808122038841, -0.011937013827264309, 0.12758885324001312, 0.034140363335609436, -0.05265963077545166, 0.03916212543845177, -0.08536511659622192, 0.06908305734395981, -0.08816277980804443, 0.030971938744187355, -0.03274700790643692, 0.004411350470036268, -0.09825591742992401, -0.03517944738268852, 0.16162967681884766, -0.006935003213584423, -0.004288902506232262, 0.014566371217370033, 0.03175951540470123, 0.1786905974149704, 0.002156964037567377, -0.01760384999215603, -0.01930277608335018, 0.11468863487243652, -0.008046659640967846, 0.015114827081561089, 0.06087901070713997, 0.0012232162989675999, -6.040000153006986e-05, -0.026925137266516685, 0.07528004795312881, 0.007358987350016832, 0.16608870029449463, -0.024672847241163254, 0.010568629950284958, -0.0046350047923624516, 0.052082743495702744, 0.026765793561935425, -0.033388927578926086, 0.1726875603199005, 0.1097552552819252, 0.07549704611301422, 0.00963212177157402, -0.04294545575976372, -0.09424334019422531, -0.038218334317207336, -0.052644774317741394, 0.05885133147239685, 0.16746607422828674, 0.08333965390920639, 0.004929135553538799, 0.019189465790987015, -0.08546119928359985, 0.17213454842567444, 0.036355745047330856, 0.009866015054285526, 0.05649105831980705, 0.08970620483160019, 0.06625617295503616, -0.0858425721526146, 0.0301912073045969, 0.07878173887729645, 0.0957234799861908, 0.03627828508615494, -0.03275948017835617, -0.15865527093410492, 0.017276685684919357, 0.08945967257022858, 0.07810350507497787, 0.10937848687171936, 0.006702454760670662, -0.09066929668188095, -0.07722315192222595, 0.026547135785222054, -0.1709575355052948, 0.038648467510938644, -0.003604715457186103, -0.1068008691072464, 0.029590154066681862, 0.029782524332404137, -0.009273016825318336, 0.0405280664563179, -0.0016958294436335564, -0.04927285388112068, -0.040585462003946304, 0.021357476711273193, -0.01718616671860218, 0.0032628336921334267, 0.07011102139949799, -0.10132080316543579, 0.06009569391608238, -0.03297651186585426, -0.07644113898277283, 0.08597685396671295, 0.03213445469737053, -0.004029184579849243, -0.05688933655619621, -0.040703751146793365, 0.0488937571644783, -0.05586053058505058, 0.18686755001544952, 0.10912012308835983, -0.0933503732085228, -0.057851530611515045, 0.04951806738972664, -0.017589079216122627, 0.038837265223264694, -0.03819217532873154, 0.015550591982901096, -0.043249402195215225, 0.19214095175266266, -0.0505724772810936, -0.07921607792377472, -0.04796567186713219, -0.015308776870369911, 0.01086688507348299, -0.06504904478788376, -0.014764901250600815, -0.06570445746183395, -0.095760278403759, -0.034335918724536896, -0.003842209465801716, 0.15225574374198914, 0.010524623095989227, 0.0898258313536644, 0.05988677591085434, -0.07997645437717438, -0.013509303331375122, 0.10685249418020248, -0.1492287814617157, 0.004378648474812508, -0.0017028006259351969, -0.02074459195137024, -0.031834740191698074, 0.15459097921848297, 0.007803171407431364, 0.0006743688136339188, -0.0032142987474799156, 0.03278075158596039, -0.06821220368146896, -0.0014870004961267114, -0.057413313537836075, 0.008745229803025723, -0.06602456420660019, 0.010135866701602936, -0.0137624591588974, -0.07187838107347488, 0.1106695756316185, 0.07730024307966232, -0.014831410720944405, 0.05731530115008354, 0.0392754040658474, 0.020108280703425407, 0.09661947190761566, -0.016443336382508278, 0.07192619889974594, -0.006841590162366629, 0.14301852881908417, -0.03509197756648064, -0.015780070796608925, 0.035777363926172256, -0.06093265488743782, -0.0387662909924984, 0.011562222614884377, 0.0033648209646344185, 0.011363659054040909, 0.050767164677381516, 0.07587404549121857, 0.03507780283689499, 0.04504593089222908, -0.02243100479245186, -0.03801800310611725, -0.017076978459954262, -0.09535855054855347, -0.015674656257033348, -0.06484124064445496, -0.06919245421886444, -0.08579256385564804, 0.024006078019738197, -0.11236486583948135, -0.03736361116170883, 0.09827230870723724, -0.011327195912599564, 0.0639956146478653, 0.051375992596149445, -0.15738104283809662, 0.07900076359510422, -0.05959624797105789, 0.1674407720565796, -0.01845213584601879, 0.12486807256937027, 0.009104765951633453, -0.013983618468046188, -0.1164717972278595, 0.05517507344484329, -0.02767210081219673, 0.05317550152540207, 0.05670969560742378, 0.07479028403759003, -0.0469275638461113, -0.006474577821791172, 0.00030212817364372313, -0.17220178246498108], -shl:[0.03193112462759018, 0.04642524942755699, 0.07153864949941635, -0.10182713717222214, -0.08469662815332413, -0.15634708106517792, -0.0020505916327238083, -0.03873351216316223, -0.036907363682985306, 0.04579540714621544, 0.08858761191368103, -0.07594222575426102, -0.14685304462909698, 0.03271060809493065, 0.06396442651748657, -0.04856868460774422, -0.03286076709628105, -0.013504608534276485, -0.00564582971855998, -0.03246430307626724, 0.07010601460933685, 0.011904221028089523, 0.09398204833269119, -0.032865967601537704, -0.05218454822897911, -0.12817609310150146, 0.03524921089410782, 0.08019543439149857, 0.1363711953163147, 0.04146003723144531, 0.1324079930782318, -0.0498775914311409, 0.031407181173563004, 0.00107371446210891, -0.018806468695402145, -0.022055955603718758, -0.010981345549225807, -0.008544744923710823, -0.04950810968875885, 0.040519751608371735, -0.040705591440200806, 0.09626971930265427, 0.02939952164888382, -0.018828460946679115, 0.0259788129478693, -0.02240254357457161, 0.13906319439411163, -0.015602399595081806, 0.0018701046938076615, 0.02101796306669712, 0.08480072021484375, 0.03530064970254898, -0.03930934891104698, -0.0776093378663063, 0.1524096131324768, -0.13106775283813477, 0.025103427469730377, -0.028310272842645645, 0.030180374160408974, 0.009090524166822433, 0.09972766041755676, -0.008173616603016853, -0.13148380815982819, -0.053918469697237015, -0.007143172901123762, 0.01346301194280386, 0.043185293674468994, 0.0020009626168757677, 0.16253764927387238, -0.001425084425136447, -0.03439409285783768, 0.03195706382393837, -0.014039646834135056, 0.018838029354810715, -0.012749209068715572, 0.037959352135658264, 0.020969664677977562, -0.011412998661398888, 0.028029995039105415, -0.07241866737604141, 0.04984445869922638, 0.006093651056289673, 0.05207381397485733, -0.06621231883764267, -0.05079194903373718, 0.008557494729757309, -0.07490351796150208, -0.05341985821723938, 0.07306995987892151, -0.05602104589343071, 0.09748879075050354, -0.04849819466471672, -0.042557306587696075, 0.020609095692634583, 0.08704590052366257, 0.1459592580795288, -0.025943730026483536, -0.12439855933189392, -0.03884100541472435, -0.04143330454826355, -0.03657295182347298, -0.01762152835726738, 0.02279508113861084, 0.05497470498085022, -0.22763824462890625, -0.0074707805179059505, -0.04600534588098526, -0.027567289769649506, -0.019140928983688354, -0.1655832827091217, -0.019792575389146805, 0.019727157428860664, -0.12305410206317902, -0.03096875175833702, -0.05197346583008766, 0.09637822955846786, -0.010344991460442543, 0.07389724254608154, -0.006095250602811575, -0.06957477331161499, 0.07591605186462402, 0.07389528304338455, -0.16180658340454102, 0.03976026549935341, -0.13051417469978333, -0.006969640497118235, -0.024609331041574478, -0.013992641121149063, 0.015188626013696194, 0.12479008734226227, -0.01783759705722332, 0.08784159272909164, -0.010442049242556095, 0.12818165123462677, 0.036044877022504807, -0.023902054876089096, 0.09471655637025833, 0.02455003373324871, 0.1577526032924652, -0.04443637281656265, -0.003309367224574089, -0.01110130175948143, -0.0722426176071167, 0.06082351133227348, 0.06071702390909195, 0.07249743491411209, 0.055573273450136185, 0.004580010659992695, -0.01564033515751362, -0.0001628464087843895, 0.18430016934871674, -0.016435515135526657, 0.02568812295794487, 0.04790696129202843, -0.07033104449510574, 0.07236962765455246, 0.04831121861934662, -0.02241281233727932, -0.005482940003275871, 0.03301959112286568, 0.012194886803627014, -0.06271271407604218, -0.07385342568159103, 0.0998191088438034, 0.11888322979211807, 0.04360159859061241, 0.08083309978246689, -5.799540667794645e-05, 0.042141616344451904, -0.07473642379045486, 0.008841833099722862, -0.03548622131347656, 0.048501044511795044, -0.14510972797870636, 0.0326564684510231, -0.11046591401100159, 0.1737918257713318, -0.026031967252492905, -0.03389497101306915, 0.06916903704404831, 0.00920006912201643, 0.08266259729862213, 0.035114578902721405, 0.0020850831642746925, 0.004350330680608749, -0.1351197510957718, 0.16042207181453705, 0.12601983547210693, 0.12142062932252884, -0.044311460107564926, -0.11933121830224991, 0.05627494305372238, -0.0012269328581169248, -0.006019241642206907, -0.157920703291893, 0.07351981103420258, 0.09335306286811829, 0.0007750203367322683, -0.15509136021137238, -0.1762520968914032, -0.11042945832014084, -0.12189776450395584, 0.026829246431589127, -0.0445907786488533, 0.026015345007181168, -0.07408551871776581, -0.04004793241620064, -0.09495381265878677, -0.03791715204715729, -0.05407264083623886, 0.03854300081729889, -0.03781137987971306, 0.024087557569146156, -0.027432458475232124, -0.05911552160978317, 0.11231972277164459, 0.011113976128399372, 0.03777920827269554, -0.012701577506959438, 0.05036305636167526, 0.008959962986409664, -0.12444715201854706, -0.021326422691345215, -0.04683772101998329, 0.09608978778123856, 0.08977801352739334, -0.024851853027939796, 0.02254721336066723, -0.01940244436264038, 0.10814857482910156, -0.04020342603325844, 0.14698654413223267, 0.05196457728743553, -0.005640754010528326, -0.010764754377305508, -0.07520289719104767, 0.08048352599143982, -0.0026085611898452044, 0.08127658814191818, -0.0033653401769697666, 0.021281057968735695, 0.08624685555696487, -0.01235576905310154, -0.07776372879743576, 0.025711489841341972, 0.06203532963991165, 0.08144059777259827, 0.015228256583213806, 0.11657056212425232, -0.053294066339731216, 0.062104541808366776, 0.0784393772482872, 0.07662160694599152, -0.0044676694087684155, -0.013949081301689148, -0.0069405753165483475, -0.034530289471149445, 0.007549607194960117, 0.09117873013019562, -0.03760617598891258, 0.014227618463337421, 0.015629151836037636, 0.04648085683584213, 0.0327780619263649, 0.01808309741318226, 0.04857884719967842, 0.12181855738162994, -0.02652500942349434, -0.05905524641275406, -0.0631493479013443, 0.10448931157588959, 0.08807297050952911, -0.037056684494018555, -0.00018847058527171612, -0.01217119675129652, 0.03884848952293396, 0.004319379571825266, -0.09778209775686264, 0.02647416666150093, -0.03447330370545387, 0.1074335053563118, -0.0516921766102314, 0.025741972029209137, 0.09183332324028015, 0.028685707598924637, -0.027936065569519997, -0.03792901709675789, 0.05269749090075493, -0.0169606301933527, -0.043364956974983215, 0.025086423382163048, 0.07824955135583878, -0.09738709777593613, -0.022680098190903664, 0.10111788660287857, -0.009012370370328426, -0.008959970436990261, -0.08281069993972778, 0.0026744171045720577, -0.03209010511636734], -shufflevector:[-0.03045872412621975, 0.007889697328209877, -0.08210146427154541, 0.048985350877046585, 0.13852490484714508, 0.08477894216775894, 0.019450653344392776, 0.046036139130592346, 0.05820276588201523, 0.004365121480077505, 0.13647359609603882, -0.05917831510305405, 0.018766295164823532, -0.03379128500819206, 0.014544702135026455, -0.039123281836509705, -0.02897081896662712, 0.008239636197686195, -0.012829355895519257, -0.010201544500887394, 0.16125956177711487, 0.0884212777018547, 0.04858831688761711, 0.056387584656476974, -0.017188450321555138, 0.10664933919906616, -0.08696407079696655, 0.08231358975172043, 0.01602994091808796, -0.02747025154531002, -0.04622812196612358, -0.09950350224971771, 0.04718976840376854, 0.028240924701094627, 0.047048185020685196, -0.022265763953328133, 0.13858748972415924, -0.0015103985788300633, -0.0458950512111187, -0.09827140718698502, 0.07890015840530396, -0.0332409106194973, 0.17935989797115326, 0.012787751853466034, -0.04300859570503235, -0.021173685789108276, 0.01100511197000742, 0.05436752364039421, -0.09212686121463776, -0.006427420303225517, -0.015130603685975075, 0.09395069628953934, -0.0542927123606205, 0.11345238983631134, 0.10607464611530304, 0.09920335561037064, 0.12516720592975616, -0.039425916969776154, -0.06948878616094589, 0.059551019221544266, 0.02590957283973694, -0.12737369537353516, -0.053230028599500656, -0.044306911528110504, 0.056818194687366486, 0.018975572660565376, 0.08496614545583725, 0.0021139481104910374, 0.0743972510099411, 0.053752556443214417, -0.03094681166112423, -0.018663547933101654, 0.03115212544798851, 0.09388702362775803, -0.08585887402296066, 0.035503923892974854, 0.1343322992324829, 0.011268958449363708, -0.044603727757930756, -0.0747203379869461, -0.007900620810687542, 0.005559627432376146, 0.10596219450235367, -0.04907993599772453, 0.0067186723463237286, 0.042443398386240005, 0.021970536559820175, -0.03885962441563606, -0.11063835024833679, -0.0803537666797638, -0.06822533160448074, -0.10666918009519577, -0.10841283202171326, -0.053952787071466446, 0.01836470328271389, 0.052803222090005875, -0.03142214193940163, -0.03822927176952362, 0.08269764482975006, -0.053459037095308304, -0.04380371794104576, -0.011117097921669483, -0.05761072784662247, 0.02769085392355919, -0.11717293411493301, -0.08790662884712219, -0.09174975752830505, 0.005465677473694086, -0.03461978957056999, -0.07949832081794739, -0.022262919694185257, -0.00789706502109766, -0.13570719957351685, 0.07608199864625931, -0.10317795723676682, 0.057246383279561996, 0.048398733139038086, 0.07590266317129135, 0.0069601526483893394, 0.05550191178917885, -0.16936305165290833, 0.009594970382750034, -0.012523187324404716, 0.026254964992403984, -0.017370980232954025, -0.0036062411963939667, 0.011519480496644974, 0.013658151961863041, -0.03899627551436424, -0.13731005787849426, -0.076443150639534, 0.10980836302042007, -0.05901041254401207, 0.032082363963127136, -0.11805156618356705, -0.1464070975780487, 0.16597385704517365, -0.04425198212265968, 0.08004180341959, -0.025370825082063675, 0.183695986866951, 0.008472663350403309, -0.10097810626029968, -0.04695873335003853, 0.0649891048669815, -0.16944044828414917, 0.01966291107237339, 0.003005881793797016, -0.05404505506157875, 0.058034420013427734, 0.13587406277656555, -0.08787457644939423, -0.12045876681804657, 0.013326612301170826, -0.02092643640935421, 0.004300425294786692, -0.06533367186784744, 0.05382357910275459, 0.03383171558380127, 0.0389857292175293, 0.02903105318546295, -0.03865015506744385, -0.0793413296341896, 0.05143052339553833, 0.05665313079953194, 0.0593295581638813, -0.05818568542599678, -0.01815839670598507, 0.06470164656639099, -0.04645336791872978, -0.1308877170085907, 0.05232894793152809, 0.04196767881512642, -0.003225133288651705, -0.060142386704683304, -0.03506031259894371, -0.1271364986896515, 0.04593255743384361, -0.03465462476015091, 0.002342782448977232, -0.07345506548881531, -0.07829583436250687, 0.08142730593681335, 0.028173960745334625, 0.006845802068710327, 0.16471704840660095, 0.043198470026254654, 0.11614188551902771, -0.10893771797418594, -0.058149419724941254, 0.003997202962636948, 0.025070859119296074, -0.12908732891082764, 0.07929885387420654, 0.01930823177099228, 0.06101342663168907, -0.06074552610516548, -0.11031486093997955, 0.038497693836688995, 0.16410745680332184, -0.08227607607841492, -0.10676538944244385, 0.05930553749203682, 0.0378560945391655, 0.12033366411924362, -0.060936152935028076, -0.03619668632745743, -0.12470437586307526, 0.039540845900774, -0.07881041616201401, 0.045773062855005264, -0.06465853750705719, 0.09733068197965622, 0.0059899743646383286, -0.04531397297978401, 0.15790794789791107, -0.16090364754199982, -0.013542631641030312, 0.02851092256605625, -0.08888004720211029, 0.02639913745224476, -0.0853535383939743, -0.015474455431103706, 0.13378874957561493, 0.10556859523057938, 0.023999370634555817, 0.07976413518190384, 0.017446158453822136, -0.08222978562116623, 0.08987908810377121, -0.027744121849536896, 0.02264426276087761, 0.12046094238758087, 0.07155483216047287, -0.010406900197267532, -0.030722569674253464, 0.02389124594628811, -0.005963778588920832, 0.0011989177437499166, 0.004950229544192553, -0.05761271342635155, 0.15080901980400085, -0.008926060982048512, 0.10477820038795471, 0.06582817435264587, -0.002744975732639432, -0.016877012327313423, -0.013719212263822556, -0.09292782098054886, -0.09906162321567535, 0.06776701658964157, 0.028756780549883842, -0.03206760436296463, -0.0720980241894722, 0.06593900918960571, -0.09678281098604202, 0.013144636526703835, -0.10773138701915741, -0.12137669324874878, -0.04855445772409439, 0.05135374888777733, 0.1415574848651886, -0.04084790125489235, 0.044069018214941025, -0.07450225949287415, 0.13066931068897247, -0.17315888404846191, -0.07142919301986694, 0.0018311558524146676, 0.14096595346927643, -0.026514703407883644, -0.09029003977775574, -0.030919266864657402, 0.060614053159952164, -0.04362821578979492, 0.013239633291959763, -0.0728849321603775, -0.0734366700053215, 0.036166612058877945, -0.011087754741311073, -0.023731084540486336, 0.030150294303894043, -0.06404820829629898, 0.059888627380132675, 0.023202957585453987, 0.06181362271308899, 0.01420061569660902, 0.07059012353420258, -0.03544054180383682, -0.08462736010551453, -0.0712989866733551, -0.0025572231970727444, -0.055205222219228745, 0.04164310544729233, 0.09191779047250748, -0.03144363313913345, -0.11340934783220291, -0.10721861571073532, -0.004792853258550167, -0.0297345332801342], -sitofp:[0.03878334164619446, 0.04166623204946518, -0.0747402012348175, 0.09711211919784546, 0.06549214571714401, 0.06312831491231918, 0.11159328371286392, -0.05312256142497063, -0.09050951153039932, 0.018868600949645042, -0.1039726510643959, 0.0022236185614019632, 0.11270121484994888, 0.0027205604128539562, 0.04774938523769379, -0.13112467527389526, -0.05132775381207466, -0.09608618170022964, 0.13878443837165833, -0.0807480663061142, 0.039620496332645416, 0.005919533781707287, 0.03946966677904129, 0.031201034784317017, -0.025346018373966217, 0.02155395969748497, -0.018665727227926254, 0.08334486186504364, -0.009723661467432976, 0.029466668143868446, -0.00012405843881424516, -0.06810753792524338, -0.07113014906644821, 0.07604128122329712, -0.018103288486599922, 0.04089156910777092, -0.10697399079799652, 0.00735080661252141, -0.048974331468343735, 0.024679483845829964, 0.042568594217300415, -0.12304673343896866, 0.02309594303369522, 0.1167231872677803, -0.00962371937930584, 0.03575759008526802, 0.06648506969213486, 0.04586613178253174, 0.021005818620324135, 0.10202455520629883, -0.04793010279536247, -0.048709020018577576, -0.003432241268455982, 0.02979579009115696, 0.14517199993133545, -0.05362392216920853, -0.04022953286767006, -0.023806460201740265, 0.030004465952515602, -0.06662497669458389, 0.07111263275146484, 0.012525863014161587, -0.0728837102651596, -0.014375068247318268, 0.05249117314815521, 0.019644340500235558, -3.615686728153378e-05, 0.08764778822660446, 0.010955051518976688, 0.11467009037733078, -0.14119850099086761, 0.09902217239141464, -0.016126712784171104, -0.08719930797815323, -0.18940068781375885, -0.01827523298561573, 0.09213976562023163, -0.010600234381854534, -0.18060772120952606, -0.053987350314855576, 0.004868058953434229, 0.006376273930072784, -0.06289680302143097, -0.11665468662977219, 0.032943885773420334, -0.061915092170238495, -0.08146028965711594, -0.05890391767024994, 0.039112649857997894, -0.07344122231006622, 0.1920730173587799, 0.06263081729412079, 0.066795215010643, -0.11234314739704132, -0.1180383637547493, 0.03203550726175308, -0.08697951585054398, -0.0723041519522667, -0.06412645429372787, 0.017106378450989723, 0.03226042911410332, -0.021344205364584923, 0.02445199154317379, -0.06029396131634712, 0.14514127373695374, 0.0950973704457283, -0.07661890983581543, -0.03520959988236427, -0.12754197418689728, -0.07693058997392654, -0.059298355132341385, 0.06921656429767609, -0.0835721343755722, 0.021255847066640854, -0.037342850118875504, -0.021404607221484184, -0.010679229162633419, -0.08299129456281662, 0.10049878060817719, -0.033642616122961044, -0.016037333756685257, 0.014620724134147167, -0.20970070362091064, 0.12746275961399078, -0.09477842599153519, -0.018347399309277534, 0.0390029102563858, -0.0110551118850708, 0.03062376007437706, 0.07363548129796982, 0.026991916820406914, 0.005556408781558275, -0.011341743171215057, -0.027054298669099808, -0.01191149652004242, -0.06954474002122879, -0.017758769914507866, 0.11389143019914627, -0.04490821808576584, -0.05231133848428726, -0.024682844057679176, -0.037632524967193604, 0.05570382624864578, 0.17031727731227875, 0.04466487839818001, -0.021260343492031097, 0.11420678347349167, 0.005704072304069996, 0.0052549755200743675, -0.10575565695762634, 0.09081192314624786, -0.13251979649066925, 0.08562686294317245, -0.06932519376277924, -0.04547291249036789, 0.0420275442302227, 0.012959922663867474, 0.06436856836080551, -0.005560680758208036, -0.03836530074477196, 0.14347708225250244, -0.00638219527900219, -0.0879288837313652, 0.003989289049059153, 0.0328657329082489, -0.03718429058790207, -0.09151294082403183, 0.019228357821702957, 0.0902252346277237, -0.00040605064714327455, -0.0863364189863205, -0.037838164716959, 0.08069661259651184, 0.05162118002772331, 0.08291596174240112, 0.03443140164017677, -0.13145017623901367, -0.015777425840497017, 0.008665071800351143, 0.0712369903922081, 0.027415571734309196, 0.010164733976125717, -0.11645376682281494, -0.02978675812482834, 0.16293352842330933, -0.00845043919980526, 0.14872321486473083, -0.01122119091451168, 0.1035960242152214, -0.16719754040241241, -0.10373512655496597, 0.09332047402858734, -0.07776446640491486, -0.13060715794563293, -0.03269944339990616, 0.05644147843122482, -0.01643180288374424, -0.012307321652770042, 0.0799187645316124, -0.03826992213726044, -0.1940564215183258, 0.029208475723862648, -0.011501060798764229, -0.010633056983351707, -0.12178013473749161, -0.0011978436959907413, -0.04510714113712311, -0.08031148463487625, 0.0017681113677099347, -0.06815296411514282, 0.1224147230386734, -0.0525532029569149, 0.0833776593208313, -0.08320258557796478, -0.013900955207645893, 0.12770117819309235, 0.025447573512792587, -0.0737122893333435, -0.019102556630969048, -0.13268186151981354, 0.013684511184692383, 0.10554317384958267, -0.02402375638484955, -0.014200246892869473, -0.03578116372227669, -0.12055561691522598, -0.031604260206222534, -0.026126835495233536, 0.17001862823963165, -0.08727552741765976, -0.03923492506146431, 0.05105355381965637, -0.023664619773626328, -0.18232488632202148, -0.0029996936209499836, -0.08896233141422272, 0.03513531759381294, 0.005521875806152821, 0.13308130204677582, -0.005079054739326239, 0.11015965044498444, -0.06531686335802078, -0.03301238268613815, -0.13466888666152954, -0.025876600295305252, -0.0969524085521698, 0.07767416536808014, -0.10598861426115036, 0.04659704491496086, -0.03514406457543373, -0.01998666487634182, 0.0023594892118126154, 0.10461710393428802, -0.008988087065517902, -6.372221832862124e-05, -0.06899939477443695, -0.03474802523851395, 0.054399386048316956, -0.04912671074271202, 0.0947672575712204, 0.033139072358608246, 0.0353657528758049, 0.14132742583751678, 0.10569757223129272, -0.07524490356445312, 0.04605097323656082, 0.06680984050035477, 0.017584476619958878, -0.11734820902347565, -0.01657167077064514, 0.1612347513437271, 0.10278351604938507, -0.08044641464948654, -0.07482992857694626, 0.12504842877388, -0.06740924715995789, -0.012719492428004742, -0.021122347563505173, -0.03839639946818352, -0.04913032054901123, -0.030324628576636314, -0.042153093963861465, 0.02788361720740795, 0.04066978394985199, -0.03009599819779396, 0.031107256188988686, -0.021770820021629333, 0.12323251366615295, -0.0954400971531868, 0.11310811340808868, -0.004353732336312532, -0.13872459530830383, -0.027303440496325493, 0.0591798759996891, -0.018850304186344147, -0.09308551996946335, 0.01593206450343132, 0.18231217563152313, -0.0006956328870728612, -0.005534563213586807], -srem:[0.05409252643585205, 0.10513044148683548, 0.08105257153511047, -0.15112359821796417, 0.02396804466843605, 0.003957141190767288, -0.028597870841622353, -0.09689705818891525, -0.08411715179681778, 0.011667893268167973, -0.0654672384262085, 0.06417194753885269, -0.1439845860004425, 0.19180692732334137, 0.05774620175361633, -0.005163239780813456, 0.016574442386627197, 0.10965845733880997, -0.01683548279106617, -0.035352423787117004, -0.0019196312641724944, -0.05056178569793701, 0.023938199505209923, -0.036183733493089676, -0.02474355883896351, -0.02730279229581356, 0.14127354323863983, 0.042101338505744934, -0.008436135947704315, -0.012812460772693157, 0.017754942178726196, -0.048363298177719116, 0.0179918073117733, -0.0032287659123539925, -0.061999958008527756, -0.01225937157869339, -0.007709530647844076, 0.04156048968434334, -0.1553264558315277, -0.14514140784740448, 0.12040918320417404, 0.09767917543649673, -0.02085229940712452, -0.051989443600177765, 0.07184915989637375, -0.06643781810998917, 0.030766678974032402, -0.02564237266778946, -0.028458602726459503, 0.12074974179267883, -0.033760860562324524, 0.0986977145075798, -0.011813530698418617, 0.04770435020327568, -0.05482460558414459, 0.12250002473592758, -0.02388167195022106, -0.039793651551008224, 0.05079733580350876, -0.05179242044687271, -0.005613239016383886, 0.09222778677940369, -0.13085457682609558, -0.07108239829540253, -0.040143366903066635, 0.01551353931427002, -0.0756654143333435, -0.16699804365634918, -0.11988374590873718, 0.017713496461510658, -0.07275235652923584, 0.054837848991155624, -0.0945931151509285, -0.043933551758527756, 0.001257928553968668, 0.033426497131586075, 0.02505333721637726, 0.1659567654132843, 0.03571001812815666, -0.0651363953948021, -0.013302011415362358, 0.006198447663336992, -0.0456145778298378, -0.07392984628677368, 0.053910840302705765, 0.11528375744819641, -0.027064017951488495, -0.06752626597881317, 0.041264861822128296, 0.03863218054175377, -0.10462090373039246, -0.03340906277298927, -0.05405634641647339, -0.0036967324558645487, 0.0421525239944458, 0.19767630100250244, -0.017520783469080925, -0.01143417228013277, 0.08398847281932831, 0.07728105783462524, -0.04791250824928284, -0.0391218326985836, 0.03153884410858154, 0.04356821998953819, -0.04676773026585579, -0.08689849078655243, -0.039657119661569595, 0.1323918253183365, 0.09831596165895462, -0.018633410334587097, -0.011954117566347122, 0.09858710318803787, 0.13172586262226105, 0.08075831830501556, -0.018569715321063995, 0.1004936695098877, 0.07044047117233276, 0.07899436354637146, -0.0345601812005043, 0.06875822693109512, -0.08988434076309204, 0.01758153922855854, -0.018907366320490837, 0.16241991519927979, -0.032535456120967865, -0.013545355759561062, -0.025462938472628593, 0.06256238371133804, 0.014169170521199703, 0.11344487220048904, 0.031520288437604904, 0.09892478585243225, -0.08422501385211945, -0.07777077704668045, 0.05127095431089401, 0.16812148690223694, 0.08925335109233856, 0.17486536502838135, 0.08568680286407471, -0.04674531891942024, 0.03593169525265694, -0.15211062133312225, 0.11420097202062607, 0.007414602674543858, 0.07120439410209656, 0.05994037911295891, 0.059293460100889206, 0.01011710800230503, -0.019379308447241783, -0.018498001620173454, -0.09917387366294861, -0.007672980893403292, -0.052434854209423065, -0.10588076710700989, -0.08663547784090042, -0.04358943924307823, 0.036509543657302856, 0.049141597002744675, 0.1253620684146881, 0.03227299824357033, -0.005333755165338516, -0.11880205571651459, 0.14645035564899445, 0.08897118270397186, 0.10590879619121552, 0.08058196306228638, -0.16635917127132416, -0.027325691655278206, 0.029027707874774933, 0.030265701934695244, 0.10313106328248978, 0.07513240724802017, -0.14780792593955994, -0.04150580242276192, 0.11367355287075043, 0.08412553369998932, -0.09763606637716293, -0.023194769397377968, 0.11501748114824295, 0.021729115396738052, 0.02462359145283699, -0.04082416743040085, -0.17868176102638245, 0.01903684251010418, -0.02354373037815094, -0.06853542476892471, -0.07386189699172974, 0.030336257070302963, -0.11197338253259659, -0.16012385487556458, 0.011764890514314175, 0.16442711651325226, -0.013592236675322056, 0.09603514522314072, 0.036003079265356064, 0.11494109034538269, 0.004907695110887289, 0.11877290904521942, 0.04364621639251709, 0.11998476833105087, 0.11670320481061935, 0.07436879724264145, 0.09048563987016678, 0.05698070675134659, -0.05968024954199791, -0.02745632454752922, 0.059412695467472076, -0.0775466114282608, -0.09934397041797638, -0.06031767278909683, 0.09795274585485458, -0.03198757767677307, 0.059563957154750824, -0.04592103138566017, -0.025413554161787033, 0.13114215433597565, 0.03504263237118721, 0.05608181655406952, -0.02983284927904606, 0.1915241926908493, 0.005054603796452284, 0.1583133339881897, -0.0402529276907444, 0.12484247237443924, 0.09591837972402573, -0.01946183294057846, 0.12882620096206665, 0.02007347159087658, 0.06792526692152023, 0.11200866848230362, -0.05476996302604675, -0.022652005776762962, 0.03418227657675743, -0.03611847758293152, -0.01936260052025318, -0.12019623070955276, -0.07135221362113953, 0.0008339820196852088, 0.16146205365657806, 0.043107498437166214, -0.06656605750322342, -0.09932924807071686, 0.0679590106010437, -0.0120125412940979, 0.038926832377910614, -0.020465143024921417, 0.059714507311582565, -0.14121398329734802, 0.07968004792928696, -0.007248532492667437, 0.06001489236950874, -0.020474432036280632, 0.09273618459701538, -0.003572028363123536, -0.1531050056219101, 0.02932334505021572, -0.0504072941839695, 0.015094761736690998, 0.03588102385401726, -0.1280672401189804, 0.008843322284519672, 0.06323115527629852, -0.03511318936944008, 0.04134964942932129, -0.06859384477138519, -0.054363004863262177, 0.021455921232700348, -0.0165481586009264, -0.08679837733507156, 0.034936919808387756, 0.01528969407081604, -0.11546492576599121, 0.09335155040025711, -0.10295899212360382, 0.08823908120393753, 0.018724383786320686, 0.0027810235042124987, -0.01975299045443535, -0.054773200303316116, -0.08935239166021347, 0.1145893931388855, -0.06379653513431549, -0.066757433116436, -0.006580891087651253, -0.03348856046795845, 0.08690887689590454, -0.052957549691200256, -0.02047841250896454, -0.10357934236526489, 0.1598225235939026, -0.04334491863846779, -0.03512255474925041, -0.05897504463791847, 0.08566340059041977, 0.08017808198928833, -0.026270216330885887, -0.040114037692546844, 0.031020434573292732, 0.00020505009160842746, -0.13699127733707428], -store:[0.011640486307442188, 0.023904232308268547, -0.05203228443861008, 0.179693341255188, -0.15197411179542542, -0.14686867594718933, -0.029101379215717316, -0.05159321427345276, 0.025808367878198624, -0.03814343735575676, 0.05726311355829239, -0.013430027291178703, 0.016210900619626045, -0.03339841589331627, 0.03249996155500412, -0.05527852103114128, 0.04072452336549759, 0.06079002097249031, -0.010083012282848358, -0.010977859608829021, -0.2069168984889984, 0.1293986588716507, 0.044497083872556686, -0.05098200589418411, -0.025560421869158745, 0.13507495820522308, 0.11670880764722824, 0.07730645686388016, -0.0018325078999623656, 0.01345226913690567, -0.00593227194622159, -0.032499659806489944, 0.02272607572376728, 0.020320184528827667, -0.023920508101582527, -0.013154124841094017, -0.1662515103816986, 0.05706523731350899, -0.03408564254641533, -0.018832147121429443, 0.06644600629806519, -0.20043213665485382, 0.14333927631378174, 0.0012239374918863177, -0.09882090240716934, -0.006074969191104174, 0.14841870963573456, 0.016328053548932076, -0.09201893210411072, -0.001060257200151682, -0.13019725680351257, 0.007514166180044413, -0.0374220535159111, 0.02667987160384655, -0.08055202662944794, -0.07926394790410995, 0.15209922194480896, 0.07477197051048279, 0.003557731630280614, 0.01937032677233219, 0.0035501071251928806, -0.1321398764848709, -0.1098492443561554, -0.050936728715896606, -0.04686402156949043, 0.011164792813360691, -0.11134298890829086, -0.09865185618400574, 0.0010654893703758717, 0.09562182426452637, -0.0028576620388776064, 0.05748625472187996, -0.026655705645680428, -0.040244411677122116, -0.10283220559358597, 0.0025959648191928864, 0.03400321677327156, 0.0026905881240963936, 0.0339469313621521, 0.0731864795088768, 0.058171939104795456, -0.0063818106427788734, -0.1528140753507614, -0.07413165271282196, 0.0871560275554657, -0.1355762928724289, 0.03845500946044922, -0.027260735630989075, -0.0320245698094368, -0.05245679244399071, 0.01648065820336342, 0.05209158733487129, 0.06887484341859818, -0.018648672848939896, 0.017595309764146805, 0.12050025165081024, -0.0780489519238472, -0.006837719120085239, -0.11097944527864456, -0.13299718499183655, -0.044297970831394196, -0.026791518554091454, 0.024029085412621498, 0.015412400476634502, -0.06093918904662132, -0.039531346410512924, -0.006827347446233034, -0.05175980553030968, -0.020603040233254433, -0.18698562681674957, -0.0701856017112732, -0.0371149517595768, -0.04855480045080185, 0.06537255644798279, 0.03603871911764145, -0.036857377737760544, 0.07548847794532776, 0.04172760993242264, -0.01819707825779915, -0.061564572155475616, 0.10311132669448853, 0.00022383614850696176, 0.06271467357873917, 0.0450911670923233, 0.004906109068542719, -0.01316390372812748, -0.0204596109688282, -0.030399715527892113, 0.0050447783432900906, 0.07257390767335892, 0.02190863899886608, 0.08829452097415924, -0.07544859498739243, 0.04351583868265152, -0.008160930126905441, -0.07613340020179749, -0.010238503105938435, 0.12641330063343048, 0.07505614310503006, -0.013507666997611523, -0.03669179603457451, 0.09164366126060486, -0.02542395517230034, -0.036234766244888306, 0.062282413244247437, 0.06735925376415253, 0.09864246100187302, 0.010377897880971432, 0.021136147901415825, 0.021164609119296074, 0.027291318401694298, 0.014408553019165993, 0.006134836934506893, -0.020388714969158173, -0.07411590218544006, 0.21436943113803864, 0.015399354510009289, -0.06405385583639145, 0.021761883050203323, -0.020505571737885475, -0.053562335669994354, -0.03048752434551716, 0.015444211661815643, 0.013167640194296837, -0.018193302676081657, -0.07470408827066422, 0.09140600264072418, -0.0013540323125198483, -0.0862879529595375, -0.08493898808956146, -0.03578780218958855, 0.07397160679101944, 0.12316600978374481, 0.10901029407978058, 0.05379728972911835, -0.05067244544625282, 0.04151296243071556, 0.10295693576335907, -0.06746292859315872, 0.000552044773939997, -0.05546041950583458, -0.03892716020345688, -0.020466268062591553, 0.013683270663022995, -0.2148686796426773, -0.10914851725101471, 0.06326122581958771, -0.1427561491727829, -0.04740331694483757, 0.03370470181107521, 0.006764422170817852, 0.018922964110970497, -0.0045972648076713085, -0.08806777745485306, -0.14090092480182648, 0.0819060429930687, 0.06442151963710785, -0.006818253546953201, -0.003846490290015936, 0.006237006280571222, -0.06649646908044815, 0.07413927465677261, 0.0036136689595878124, 0.04447371885180473, 0.06170554831624031, -0.14344598352909088, -0.04522046074271202, -0.19319546222686768, -0.06523358076810837, -0.06738795340061188, 0.05912806838750839, -0.06273818761110306, 0.06141729652881622, -0.005832137539982796, -0.09051055461168289, -0.004931831732392311, 0.05657784268260002, 0.1205957680940628, -0.004599845502525568, -0.14408409595489502, 0.014300087466835976, 0.006199028342962265, -0.0983334556221962, 0.04496316984295845, -0.04031962528824806, 0.19241374731063843, 0.1801559329032898, -0.12065278738737106, -0.03768731653690338, -0.0020582068245857954, -0.043318673968315125, 0.15657201409339905, -0.1007961854338646, 0.008428274653851986, -0.028681522235274315, 0.14474624395370483, 0.029443001374602318, 0.005495732184499502, 0.20069476962089539, 0.015180905349552631, -0.05013308674097061, -0.044025033712387085, -0.025679273530840874, 0.04861380159854889, -0.015212766826152802, -0.17083314061164856, 0.09993500262498856, -0.1748918741941452, 0.025755461305379868, -0.024962324649095535, 0.17523333430290222, -0.00013147939171176404, 0.07062559574842453, -0.10311224311590195, -0.010553989559412003, -0.05568236485123634, -0.03549211099743843, -0.024588320404291153, 0.024226969107985497, 0.12024964392185211, -0.007904013618826866, -0.04477487504482269, 0.1277862787246704, -0.031207608059048653, -0.041880641132593155, 0.11510494351387024, -0.005663365125656128, 0.0032668747007846832, -0.039394065737724304, 0.07780855894088745, -0.14320120215415955, -0.041023753583431244, -0.03836303576827049, 0.000541713263373822, -0.11304406821727753, 0.019778728485107422, -0.029535021632909775, -0.030698318034410477, -0.004332698415964842, -0.01185636781156063, 0.1030503511428833, 0.003943668212741613, -0.01425663661211729, 0.16133388876914978, -0.023977525532245636, 0.16854675114154816, 0.10399982333183289, 0.023275749757885933, -0.049662962555885315, -0.0006814703810960054, -0.023133274167776108, -0.09287038445472717, -0.05314026027917862, 0.034204818308353424, 0.05153890699148178, -0.034502409398555756, 0.0767747014760971, 0.0892874076962471, 0.0766039788722992, -0.006636636797338724], -structTy:[0.10642710328102112, 0.041161686182022095, -0.01340507436543703, 0.042843978852033615, -0.02099793590605259, 0.03143142908811569, 0.060524821281433105, 0.021436791867017746, -0.061096761375665665, 0.12408847361803055, -0.062097255140542984, -0.11609306186437607, -0.017733696848154068, 0.11350353807210922, -0.08068107813596725, 0.1302090734243393, -0.007308823987841606, 0.01048583909869194, 0.01673460192978382, -0.0810256227850914, 0.030527263879776, 0.04194078966975212, 0.07818032056093216, 0.045770976692438126, 0.038023535162210464, -0.15542608499526978, -0.02620173990726471, -0.1299193799495697, 0.0749962329864502, -0.12481120228767395, -0.02814231440424919, -0.03520088642835617, -0.06700913608074188, -0.007677411660552025, 0.03311917558312416, -0.005918552167713642, -0.002050227951258421, -0.06934380531311035, 0.06388378888368607, 0.011988512240350246, 0.06607750803232193, 0.08242354542016983, 0.052619196474552155, 0.08798106759786606, -0.13134022057056427, 0.10940124094486237, 0.07496985793113708, -0.03694594278931618, -0.06790228933095932, -0.03809549659490585, 0.032172881066799164, 0.006753848399966955, -0.06479685753583908, 0.049901705235242844, 0.0035145108122378588, 0.05919415131211281, -0.03998175263404846, 0.03054397739470005, 0.06650915741920471, 0.017568567767739296, -0.03174452856183052, -0.11386996507644653, -0.0017464878037571907, 0.044630710035562515, 0.07169772684574127, 0.0896749272942543, -0.023223306983709335, -0.05559253320097923, -0.1106344535946846, 0.07412408292293549, 0.09567675739526749, -0.08914270997047424, -0.11461209505796432, 0.044662609696388245, 0.02405768819153309, 0.02243138663470745, -0.03724837675690651, 0.09950204938650131, 0.07873232662677765, 0.021373115479946136, -0.004556233994662762, -0.10020601749420166, -0.09772983938455582, 0.03529663011431694, -0.01237465813755989, -0.02732986956834793, 0.003603362711146474, -0.08836845308542252, 0.13363179564476013, -0.12844489514827728, -0.04877607896924019, -0.02425740472972393, -0.041952215135097504, 0.07914420962333679, -0.09437292814254761, 0.057572364807128906, 0.10297857224941254, -0.0005288392421789467, 0.030115995556116104, -0.013973948545753956, -0.09046637266874313, -0.023014694452285767, 0.031110692769289017, -0.027205051854252815, -0.09715084731578827, 0.023142719641327858, 0.047205809503793716, 0.037500325590372086, -0.12183422595262527, 0.0394783578813076, 0.064637191593647, 0.06953079998493195, -0.0725008100271225, -0.06409391015768051, 0.08115901052951813, -0.10774804651737213, 0.023203464224934578, -0.01838039979338646, -0.03574782982468605, 0.03906381130218506, 0.0768977478146553, -0.09802858531475067, 0.11142144352197647, -0.025358211249113083, 0.0548546127974987, 0.05017907917499542, -0.012809764593839645, 0.07803186029195786, -0.01662556827068329, -0.021793346852064133, -0.033292148262262344, 0.04297890141606331, -0.016400326043367386, -0.03736575320363045, 0.09428873658180237, 0.12501578032970428, 0.08889345079660416, 0.030055604875087738, -0.039633579552173615, -0.03378206863999367, 0.04451163858175278, 0.03178549185395241, -0.009419521316885948, -0.032690517604351044, -0.049699343740940094, 0.023773126304149628, -0.06972404569387436, -0.13895779848098755, -0.10183585435152054, -0.06910374760627747, 0.07266873866319656, -0.11269284784793854, -0.09105347841978073, -0.07082052528858185, 0.03054584562778473, -0.027234181761741638, -0.06800173968076706, 0.0874076634645462, 0.007456607185304165, 0.06273205578327179, 0.056865084916353226, -0.06958867609500885, 0.027349278330802917, 0.09310101717710495, -0.024876493960618973, -0.061363376677036285, 0.06522078812122345, 0.10209035128355026, 0.014584222808480263, 0.09862010926008224, -0.04419608414173126, 0.11388769745826721, -0.09196937084197998, 0.01372138224542141, 0.006454155780375004, -0.05002804845571518, 0.13256078958511353, -0.10862375795841217, -0.027421357110142708, -0.033839788287878036, 0.057275719940662384, 0.08420883864164352, -0.05164741352200508, -0.06708694249391556, -0.05027926713228226, 0.056585248559713364, 0.1125684604048729, 0.07167648524045944, 0.022014660760760307, 0.04763144999742508, 0.017162436619400978, -0.0057498980313539505, 0.11740700155496597, -0.07243872433900833, 0.025841642171144485, -0.059178125113248825, -0.001556122675538063, -0.014908376149833202, -0.030743399634957314, 0.0602986142039299, -0.01677285134792328, -0.09329801797866821, 0.08882001787424088, -0.07050088047981262, 0.0004344736225903034, -0.030868755653500557, 0.08840125799179077, 0.043941106647253036, 0.11146131157875061, 0.0804813951253891, -0.029701469466090202, -0.009323690086603165, -0.11870481073856354, 0.04038257524371147, 0.07252972573041916, 0.03884755074977875, -0.03254953399300575, -0.012522543780505657, 0.057966917753219604, -0.01038387417793274, -0.06447628140449524, 0.004827809985727072, 0.07905695587396622, 0.004645861219614744, 0.1397053599357605, -0.06959860026836395, 0.03800615668296814, -0.03304551541805267, 0.006108657922595739, 0.09045007079839706, -0.10555997490882874, 0.06355956196784973, -0.008359120227396488, -0.08454326540231705, 0.04769941046833992, -0.03476811572909355, -0.040964383631944656, -0.04996597394347191, -0.06999099999666214, -0.08570963144302368, -0.0231141559779644, 0.03830745816230774, 0.09511583298444748, -0.01564190909266472, -0.14152322709560394, -0.0445575974881649, -0.007225382141768932, -0.07836253196001053, -0.09947925806045532, -0.08636703342199326, -0.08955962210893631, 0.01753128133714199, -0.04082169383764267, 0.08560669422149658, -0.07657046616077423, 0.05212558060884476, 0.07048328220844269, 0.07495494931936264, -0.03341758996248245, 0.05743503198027611, 0.03535866737365723, 0.048842448741197586, -0.08159478008747101, -0.10477017611265182, 0.0748768150806427, 0.10030772536993027, -0.10008910298347473, 0.03225249797105789, 0.13804252445697784, 0.07958361506462097, -0.01179553009569645, -0.0772463008761406, 0.13219347596168518, -0.09608453512191772, 0.05001940205693245, 0.07688722014427185, 0.03926413506269455, 0.09857166558504105, 0.02050870656967163, 0.09331335127353668, -0.08154097944498062, 0.044108401983976364, -0.06470473855733871, -0.07672778517007828, 0.004554807674139738, 0.039537813514471054, 0.028041599318385124, -0.02440454624593258, -0.014986258000135422, -0.002864009002223611, 0.034518804401159286, 0.06233788654208183, 0.06783253699541092, -0.09175366163253784, -0.05088222771883011, 0.07485700398683548, 0.12076763808727264, 0.034511663019657135, -0.09272388368844986, 0.044446926563978195], -sub:[0.021013090386986732, 0.047849785536527634, 0.08755435794591904, 0.03523468226194382, -0.02129947766661644, -0.008001679554581642, 0.07223397493362427, -0.05338545888662338, 0.008482362143695354, 0.01711846888065338, 0.05245544761419296, -0.023820890113711357, 0.08001910895109177, 0.03136755898594856, 0.07778427749872208, -0.04777243733406067, 0.16826635599136353, -0.08680717647075653, 0.09644954651594162, -0.010704917833209038, 0.1504322588443756, -0.022966541349887848, -0.17205595970153809, -0.03819955140352249, -0.06524260342121124, -0.10965562611818314, 0.17050492763519287, 0.11469601839780807, -0.05227348208427429, -0.027675634250044823, 0.13362646102905273, -0.0024308909196406603, -0.0017077201046049595, 0.0026260449085384607, 0.001221289625391364, -0.10684482753276825, 0.15308736264705658, 0.008249010890722275, -0.0526956208050251, -0.07096754014492035, -0.07674583792686462, 0.11521663516759872, 0.0444711372256279, -0.0010663534048944712, -0.08926090598106384, 0.0005617929855361581, 0.14925289154052734, 0.08480046689510345, 0.0905982181429863, 0.03069497086107731, -0.1486237645149231, 0.0313064381480217, 0.06372910737991333, -0.012162825092673302, -0.016832733526825905, -0.09239665418863297, 0.12856745719909668, -0.058119844645261765, 0.023743988946080208, 0.02616548351943493, 0.07560490071773529, 0.08128912001848221, -0.00793391838669777, -0.041525598615407944, 0.021467048674821854, 0.002689603017643094, 0.07588476687669754, -0.00010847077646758407, 0.0032692633103579283, 0.1828741580247879, -0.04985732585191727, 0.05255075916647911, 0.1368471086025238, -0.04626444727182388, -0.13161584734916687, 0.055109087377786636, -0.0699358731508255, -0.012281686067581177, 0.0356362946331501, -0.11402305960655212, -0.013728526420891285, 0.008489372208714485, -0.0862717255949974, -0.07350584864616394, 0.036909133195877075, 0.14059384167194366, -0.013522133231163025, -0.0628148689866066, 0.040135592222213745, 0.043768059462308884, -0.14553356170654297, -0.042391087859869, -0.09583466500043869, 0.01858363300561905, 0.06996118277311325, 0.06902096420526505, -0.05824825167655945, 0.03868556395173073, -0.06552281230688095, 0.07302220910787582, -0.05520094186067581, -0.05198033154010773, -0.026161475107073784, 0.09952252358198166, 0.04278405010700226, -0.012967846356332302, -0.10755296051502228, -0.05638046935200691, -0.07649895548820496, 0.06378904730081558, 0.05647585168480873, -0.1051938384771347, 0.013369135558605194, 0.012908600270748138, 0.006429409608244896, -0.04550769180059433, -0.042967285960912704, 0.05908656865358353, 0.11925530433654785, -0.029619408771395683, -0.12523433566093445, 0.0124075161293149, 0.06114925071597099, 0.05696681886911392, -0.045866355299949646, -0.016620246693491936, 0.0026613958179950714, 0.0855061337351799, 0.021754922345280647, 0.09703221917152405, 0.029295947402715683, -0.11090633273124695, -0.002635571639984846, -0.03659769892692566, -0.04187965765595436, 0.03416159376502037, 0.13130328059196472, -0.022363103926181793, 0.0445718951523304, -0.1284903883934021, -0.1700083315372467, 0.05513697490096092, -0.0541531965136528, 0.09496817737817764, 0.12785577774047852, 0.1372232437133789, 0.06825956702232361, 0.13197050988674164, 0.08788570016622543, -0.018594728782773018, 0.026989594101905823, 0.017050325870513916, 0.0012329717865213752, -0.12785576283931732, 0.2019844502210617, -0.08966700732707977, 0.11248486489057541, -0.01022917777299881, 0.01491041574627161, 0.050994113087654114, -0.06058909371495247, -0.04329674318432808, -0.05161074921488762, 0.007231621537357569, 0.15339654684066772, 0.040183331817388535, 0.1335713118314743, 0.003371891565620899, 0.04512375593185425, -0.08201718330383301, 0.012747513130307198, -0.036458589136600494, 0.011576795019209385, -0.06117686256766319, 0.1412951946258545, -0.05440228432416916, -0.047796580940485, -0.015774298459291458, -0.12146655470132828, -0.04393083229660988, -0.05869107320904732, -0.023742908611893654, -5.727318784920499e-05, -0.03130687400698662, -0.022496823221445084, -0.0559585765004158, 0.002656439784914255, -0.16727368533611298, -0.09677029401063919, -0.07237934321165085, 0.03176015615463257, -0.09105615317821503, -0.0855448991060257, -0.03844642639160156, 0.04974709078669548, 0.07460867613554001, -0.10089750587940216, -0.02969304844737053, 0.12319659441709518, 0.08252111077308655, -0.0787477046251297, -0.025741731747984886, -0.01140508521348238, 0.04749313369393349, 0.175623819231987, -0.03264528140425682, -0.04638264328241348, -0.014003750868141651, -0.11823635548353195, -0.06560144573450089, 0.04870784655213356, 0.019953684881329536, -0.12597809731960297, -0.03434763103723526, -0.020190883427858353, 0.09831704944372177, 0.038165830075740814, 0.04530888423323631, -0.010242720134556293, 0.14851607382297516, -0.01008712686598301, -0.12957604229450226, -0.011551770381629467, 0.08216459304094315, -0.04392204433679581, 0.07060323655605316, 0.00714789517223835, 0.10068710893392563, -0.0072609721682965755, 0.031996726989746094, -0.045160140842199326, 0.05009819194674492, 0.09735055267810822, -0.07235630601644516, -0.0005287868552841246, -0.05189380794763565, 0.03613404929637909, 0.00016965679242275655, 0.09002525359392166, -0.002520729787647724, -0.08113762736320496, -0.12835271656513214, 0.06303302198648453, -0.09590224176645279, 0.043627478182315826, -0.034702181816101074, 0.16664601862430573, 0.011489291675388813, 0.02211221680045128, 0.003234227653592825, 0.19574415683746338, -0.020217018201947212, 0.09612366557121277, 0.012586689554154873, -0.04024016112089157, 0.029618537053465843, -0.06822771579027176, -0.03633402660489082, 0.047967568039894104, -0.09267281740903854, 0.07148195803165436, -0.07782986760139465, 0.2186579406261444, 0.06245439872145653, -0.053951870650053024, -0.08489472419023514, 0.05019153654575348, -0.007958793081343174, -0.10894633829593658, -0.017875531688332558, -0.05930999293923378, -0.006632446311414242, -0.09323389083147049, 0.13045358657836914, -0.030712174251675606, 0.012782762758433819, 0.002674791030585766, -0.01174349244683981, 0.06596094369888306, 0.010680022649466991, 0.03144925832748413, 0.045611895620822906, -0.03927033767104149, 0.14049749076366425, -0.14533650875091553, 0.18258075416088104, -0.021805206313729286, -0.01785249449312687, -0.05429602041840553, 0.00617590406909585, -0.00015481958689633757, -0.0037955227307975292, -0.0512106753885746, 0.07216536998748779, -0.06843248754739761, 0.011794431135058403, 0.10353736579418182, -0.07058262825012207, 0.04035139083862305, 0.14100784063339233], -switch:[-0.0382537879049778, -0.028698496520519257, 0.0644916519522667, -0.05120275914669037, -0.1125209853053093, -0.1235233023762703, 0.029386667534708977, -0.12834741175174713, 0.09682481735944748, -0.06808605790138245, 0.03622766211628914, -0.045079492032527924, -0.040060583502054214, 0.12096451967954636, 0.08012484014034271, 0.06926727294921875, 0.036180395632982254, -0.0745268315076828, -0.06418745964765549, -0.009044731967151165, -0.045302100479602814, -0.043388012796640396, 0.011573347263038158, 0.0805298313498497, -0.019815994426608086, 0.04716721549630165, 0.020051317289471626, 0.07372307777404785, -0.03942904621362686, 0.02289324626326561, 0.1297481209039688, -0.0913657695055008, 0.03811993449926376, 0.020008385181427002, 0.12505868077278137, 0.02895188145339489, 0.03755978122353554, -0.160603329539299, -0.00649598753079772, 0.1739005595445633, -0.014997060410678387, 0.022044017910957336, 0.06278359889984131, -0.051922913640737534, 0.01062297448515892, 0.11064407229423523, 0.0228416845202446, -0.040808938443660736, -0.03607901930809021, -0.05348438769578934, -0.10352417826652527, 0.15309877693653107, -0.03344035521149635, 0.05002875253558159, 0.058523476123809814, 0.04320501536130905, -0.04149441421031952, -0.12914322316646576, 0.007292098365724087, 0.02153448387980461, 0.06409262865781784, 0.06390684843063354, -0.060391925275325775, -0.010153294540941715, -0.008288651704788208, 0.011603840626776218, -0.0661456510424614, 0.008970651775598526, -0.023673711344599724, 0.024104006588459015, -0.022434012964367867, 0.03613835200667381, -0.037185728549957275, 0.0705830529332161, -0.03498171269893646, 0.05474459379911423, -0.023595094680786133, 0.010053873993456364, 0.025408679619431496, -0.13628417253494263, 0.06976751238107681, 0.011342658661305904, -0.0320008210837841, -0.08846767246723175, -0.05503688007593155, -0.031127585098147392, 0.009944726713001728, -0.015331302769482136, 0.036685533821582794, 0.029188312590122223, -0.031335219740867615, 0.053661756217479706, 0.05963652953505516, 0.01745225489139557, -0.10114680230617523, -0.06899476796388626, 0.026904206722974777, -0.07161718606948853, -0.11711173504590988, -0.0715005174279213, -0.050210095942020416, -0.02258673869073391, 0.08350427448749542, 0.1022525206208229, 0.046904556453228, 0.0035486475098878145, 0.07570106536149979, 0.1332007497549057, -0.0003674389736261219, -0.12728554010391235, -0.07135912030935287, 0.03288048505783081, -0.019598964601755142, 0.10639701038599014, -0.0996752381324768, -0.012395615689456463, -0.0036869882605969906, 0.04243869706988335, -0.02861565165221691, 0.1545248031616211, 0.10666399449110031, 0.006112401373684406, -0.030523119494318962, 0.07489563524723053, 0.010722015053033829, 0.1302451640367508, -0.05266987159848213, -0.08848441392183304, 0.0366385243833065, 0.07657207548618317, 0.024934474378824234, 0.0287750493735075, -0.0006043273606337607, 0.04946482926607132, -0.029424428939819336, 0.037260476499795914, -0.1559215486049652, 0.044144779443740845, 0.08282430469989777, 0.0760425329208374, -0.017415320500731468, -0.08343210071325302, -0.008195795118808746, 0.07941429316997528, 0.021782992407679558, 0.070122130215168, -0.10950663685798645, -0.14314645528793335, 0.002391223330050707, 0.005172032862901688, 0.11155550181865692, 0.025268137454986572, 0.012073296122252941, -0.08934177458286285, 0.10081765055656433, -0.07493657618761063, 0.04800459370017052, -0.01445593498647213, 0.08163858205080032, 0.09853406250476837, -0.03383513540029526, -0.021416615694761276, 0.04955439642071724, -0.0038759117014706135, 0.055866409093141556, -0.0518711656332016, 0.06647241115570068, 0.025420958176255226, -0.09523595869541168, -0.10032486915588379, -0.09490770101547241, -0.03876880556344986, 0.004773785825818777, -0.14402617514133453, -0.0457649789750576, -0.11136924475431442, -0.14970749616622925, -0.016318194568157196, 0.07968951761722565, 0.03629260137677193, -0.05835640802979469, -0.03656337037682533, -0.08750613778829575, 0.0032870201393961906, -0.029299845919013023, -0.05694286525249481, 0.14226192235946655, 0.08978516608476639, 0.09980892390012741, 0.0449894443154335, -0.004272161982953548, -0.03327073156833649, -0.2489367574453354, 0.017258185893297195, -0.10310716181993484, 0.03861545771360397, 0.036894313991069794, 0.02291683852672577, 0.04683001711964607, -0.04890647158026695, -0.004143795929849148, -0.13841605186462402, -0.002953218063339591, 0.04460988566279411, 0.02760872058570385, 0.12943564355373383, -0.04648253694176674, 0.07258592545986176, -0.049686793237924576, -0.044955525547266006, 0.014972834847867489, -0.05496121942996979, 0.09280704706907272, 0.17519010603427887, -0.07682278752326965, -0.012813215143978596, 0.09794361889362335, -0.08972211182117462, -0.1212865337729454, 0.06925851851701736, -0.004929245449602604, -0.004861113149672747, 0.0023142138961702585, 0.036307089030742645, 0.016039619222283363, 0.0743720754981041, 0.0963812842965126, -0.005570827517658472, 0.21416302025318146, 0.013327354565262794, -0.05007343739271164, 0.05139675736427307, 0.035338155925273895, 0.14906103909015656, -0.039566077291965485, -0.06839025765657425, 0.03987519443035126, -0.18893805146217346, 0.13839855790138245, 0.008053864352405071, -0.10293751209974289, -0.07425155490636826, -0.031494658440351486, -0.0167655311524868, 0.19231471419334412, -0.014689439907670021, -0.1348859816789627, 0.002252386650070548, 0.0364764928817749, 0.0337945818901062, 0.1385757327079773, 0.06945895403623581, 0.05595049634575844, -0.005553101655095816, 0.024060063064098358, -0.11014268547296524, -0.019275575876235962, 0.09584078937768936, 0.09035192430019379, -0.014498572796583176, -0.0020204177126288414, -0.03490368649363518, -0.060396503657102585, 0.12800879776477814, -0.11916821449995041, -0.09843160212039948, -0.011752963066101074, -0.1277874857187271, -0.048007186502218246, -0.06635533273220062, 0.1505756378173828, 0.042812447994947433, -0.011289690621197224, 0.1537802517414093, 0.0778963565826416, 0.10247600078582764, 0.05030476674437523, -0.02718842774629593, 0.004939287900924683, -0.10574685037136078, 0.12271895259618759, 0.003977450076490641, 0.00783400796353817, 0.15667447447776794, 0.06304086744785309, 0.13724356889724731, 0.07262974977493286, -0.006145637948065996, -0.008259642869234085, -0.010340966284275055, -0.09590387344360352, 0.009960716590285301, -0.019196737557649612, -0.06346945464611053, 0.053176891058683395, 0.04871711507439613, 0.017576608806848526, -0.0014999457634985447, 0.00561901181936264, -0.1756175011396408], -trunc:[-0.06976643949747086, 0.023268062621355057, -0.01509721390902996, 0.18207761645317078, 0.08899790793657303, 0.010510144755244255, -0.0012163071660324931, -0.19399289786815643, 0.1402689516544342, 0.020479397848248482, 0.09258245676755905, -0.10578469187021255, -0.0269181951880455, 0.03050289861857891, 0.0053090364672243595, -0.16968967020511627, -0.027887746691703796, -0.05825784429907799, 0.028293108567595482, 0.015367407351732254, 0.10282891243696213, -0.0010865565855056047, 0.12757374346256256, -0.06987689435482025, -0.12611158192157745, 0.07686535269021988, -0.05579046532511711, -0.03482024371623993, 0.0159766748547554, -0.06585516035556793, 0.0015368687454611063, -0.11597004532814026, 0.0947636142373085, 0.07431221008300781, -0.047377560287714005, -0.035124871879816055, 0.0766100361943245, -0.04134898632764816, -0.04939483106136322, -0.16595952212810516, -0.15564782917499542, 0.1472105234861374, 0.1320447325706482, 0.08038490265607834, 0.06417912989854813, -0.03396417573094368, 0.061548199504613876, -0.011975638568401337, 0.009246641770005226, 0.127207413315773, 0.11627139896154404, 0.05736476555466652, -0.03475736454129219, 0.015416826121509075, 0.20183897018432617, -0.07736591249704361, 0.08532046526670456, -0.09257108718156815, 0.03833569213747978, -0.03383912146091461, 0.00239982339553535, 0.040153805166482925, -0.009066849015653133, -0.007322102785110474, -0.029375290498137474, 0.008967764675617218, -0.054964836686849594, 0.009082198143005371, -0.049430765211582184, 0.013071173802018166, 0.022094029933214188, 0.10490874201059341, 0.06675771623849869, -0.02200973965227604, -0.004480005241930485, 0.12314368784427643, -0.009653197601437569, -0.12319444119930267, 0.03540268540382385, -0.07443967461585999, 0.06933371722698212, 0.006950825918465853, -0.04264829307794571, -0.06450048089027405, 0.035108692944049835, 0.0010402693878859282, -0.06598976254463196, 0.10389884561300278, 0.12023400515317917, -0.046779096126556396, 0.07066339999437332, -0.16180777549743652, -0.02486981637775898, 0.03901899605989456, 0.19021663069725037, 0.1590951830148697, 0.128082275390625, -0.060723431408405304, -0.0459274984896183, -0.07531929761171341, -0.05942968651652336, -0.034540049731731415, 0.07105526328086853, -0.0459517203271389, 0.08543454110622406, 0.018648428842425346, 2.7592506739892997e-05, 0.02023845724761486, 0.01725546270608902, -0.0728953555226326, 0.12232737988233566, 0.12523657083511353, 0.15510441362857819, -0.01663362607359886, -0.08300578594207764, -0.016894694417715073, -0.011566780507564545, 0.057855892926454544, -0.012720116414129734, -0.01239638589322567, 0.046234339475631714, 0.01744304783642292, -0.09843643754720688, 0.06605610996484756, -0.043899912387132645, -0.00331438728608191, 0.07367712259292603, -0.03943699970841408, -0.05295431613922119, 0.096563920378685, 0.028379572555422783, 0.0021200883202254772, -0.007361265365034342, 0.11748747527599335, 0.10443776845932007, 0.021204885095357895, -0.062391865998506546, 0.11146846413612366, 0.0753638744354248, 0.007217628415673971, -0.13635197281837463, -0.012306269258260727, 0.07068286091089249, 0.02316947653889656, 0.1020164042711258, 0.04463787004351616, 0.06808856129646301, 0.0052797249518334866, 0.09006012231111526, -0.03526705130934715, -0.1521671563386917, 0.027732620015740395, -0.0005230668466538191, -0.024394208565354347, 0.05192955955862999, -0.09631641954183578, -0.114263616502285, 0.02145988680422306, -0.06702174246311188, 0.03347638621926308, 0.04545331001281738, -0.02550300396978855, 0.09025268256664276, -0.010168423876166344, 0.11925959587097168, -0.11208409070968628, -0.07589714974164963, 0.006351258140057325, -0.040647465735673904, -0.08982007950544357, 0.023938607424497604, 0.05776091292500496, -0.015842312946915627, -0.029196487739682198, -0.12016303092241287, 0.06773321330547333, -0.0988037958741188, 0.01982475444674492, -0.1529795229434967, 0.10542168468236923, 0.021923186257481575, 0.006832820829004049, -0.08288530260324478, -0.021357925608754158, -0.14675889909267426, -0.028485307469964027, -0.06051141023635864, -0.0115324342623353, 0.1418902426958084, -0.11710721999406815, -0.13321241736412048, -0.0632455125451088, 0.12524443864822388, -0.054832085967063904, 0.014372220262885094, 0.051180336624383926, -0.13517975807189941, -0.015343782491981983, -0.03883286938071251, -0.11951518803834915, 0.00946602039039135, 0.017236631363630295, -0.037632331252098083, 0.04301398992538452, 0.144343301653862, -0.18333746492862701, -0.048342328518629074, -0.15944558382034302, -0.032625485211610794, -0.0697266086935997, -0.01524506974965334, 0.04593021422624588, -0.02433537133038044, -0.06873881816864014, -0.024575086310505867, 0.10877464711666107, 0.028501451015472412, 0.08539462089538574, 0.005069723352789879, 0.06969979405403137, 0.0091592688113451, -0.05967637896537781, -0.010438221506774426, 0.09310009330511093, -0.10819078236818314, 0.11512915790081024, -0.02934260107576847, 0.019017798826098442, 0.034758057445287704, 0.00898054800927639, -0.04818900302052498, 0.06957630068063736, -0.061272695660591125, 0.04206806421279907, -0.03049558214843273, -0.03516870364546776, 0.025890864431858063, 0.002149379113689065, 0.08766519278287888, -0.005435648839920759, -0.04810304939746857, 0.12749463319778442, -0.011684770695865154, -0.003573660971596837, 0.1172197088599205, -0.1330306977033615, -0.1180582046508789, -0.03232197090983391, 0.04117198660969734, -0.05618756636977196, -0.03798297047615051, 0.04641490429639816, -0.011281253769993782, -0.03486166521906853, 0.060859497636556625, 0.0783693939447403, -0.06818171590566635, 0.010625627823174, 0.042891811579465866, 0.04914938285946846, 0.040113214403390884, -0.15227310359477997, 0.19419479370117188, 0.03584335371851921, -0.13818369805812836, 0.0030276463367044926, -0.011717244051396847, -0.0140369338914752, 0.07761144638061523, 0.07129310816526413, 0.03475885093212128, 0.06422891467809677, -0.05298227816820145, -0.10094287246465683, -0.03882618620991707, -0.04484189674258232, -0.010378964245319366, -0.019536687061190605, 0.02712063491344452, -0.10888895392417908, 0.09519887715578079, -0.11007675528526306, -0.05796438828110695, -0.012096697464585304, -0.047610990703105927, 0.03408161550760269, -0.021947991102933884, -0.041846852749586105, -0.1198214441537857, -0.0003484992776066065, -0.06845535337924957, 0.09541182219982147, -0.04364480823278427, 0.05781574174761772, 0.05959156155586243, -0.10068202018737793, -0.07187081128358841, -0.08310011029243469, 0.018465103581547737, -0.10290686786174774], -udiv:[-0.060310281813144684, -0.06804894655942917, 0.07916548103094101, 0.04570513218641281, 0.019321603700518608, 0.1358848363161087, 0.06805789470672607, -0.03595949709415436, 0.05229923501610756, 0.08681374043226242, 0.10118338465690613, -0.04696454852819443, 0.03960892930626869, -0.03619849309325218, 0.011006954126060009, -0.0511041134595871, 0.18523404002189636, 0.022941796109080315, -0.010041583329439163, -0.008590265177190304, 0.009628836996853352, 0.09663190692663193, 0.009370861575007439, -0.03837453946471214, -0.04047985002398491, 0.006021453998982906, 0.028099410235881805, 0.08339168131351471, 0.1389719545841217, 0.09290477633476257, -0.11571008712053299, 0.0369529128074646, -0.11113329976797104, -0.06725727021694183, -0.016984200105071068, -0.04656992107629776, 0.13578036427497864, 0.0471176952123642, -0.11458128690719604, -0.1093023344874382, 0.11634756624698639, 0.10117154568433762, 0.006759162526577711, -0.07720053941011429, 0.11070478707551956, 0.061520956456661224, -0.04150513559579849, -0.004872614052146673, -0.0470673032104969, 0.06453727930784225, -0.032327279448509216, 0.053007446229457855, -0.003432106226682663, -0.0023268761578947306, 0.09122969210147858, -0.09485194087028503, 0.08676674962043762, -0.026753444224596024, -0.10769037157297134, 0.07482385635375977, -0.011554266326129436, 0.0827474519610405, 0.02641144022345543, -0.007775819394737482, 0.03498174622654915, 0.01664581336081028, -0.06916474550962448, -0.011161642149090767, -0.009125023148953915, 0.025333041325211525, 0.013936121016740799, 0.03457504138350487, 0.035302139818668365, -0.0686989575624466, -0.0007113192114047706, 0.15312272310256958, 0.13535337150096893, -0.010852798819541931, 0.13691076636314392, -0.06178528070449829, 0.03663632273674011, 0.09570309519767761, -0.10590367019176483, -0.07499412447214127, 0.0418776199221611, -0.08826304227113724, -0.019938301295042038, -0.027404682710766792, 0.03418781980872154, 0.06718382239341736, 0.05066957697272301, -0.03337780013680458, -0.14590418338775635, 0.03207732364535332, 0.024810640141367912, 0.10571351647377014, -0.0875660628080368, -0.023290861397981644, -0.1470232456922531, -0.08179385960102081, 0.01860862411558628, 0.16298259794712067, -0.025706075131893158, 0.04270242154598236, -0.10000471025705338, -0.017051657661795616, 0.00771581195294857, -0.030606260523200035, -0.035745106637477875, -0.02493089810013771, -7.020514021860436e-05, -0.06727948784828186, -0.014211688190698624, -0.08211317658424377, 0.02775910310447216, 0.02934851683676243, -0.02026255801320076, -0.04539869725704193, -0.10447389632463455, 0.04692887142300606, 0.18383726477622986, 0.017347469925880432, -0.021125875413417816, 0.0628901943564415, 0.07320643961429596, -0.007634890731424093, -0.1355750411748886, 0.025818858295679092, 0.0232236348092556, 0.14486873149871826, 0.028828687965869904, 0.07559244334697723, -0.013223069719970226, 0.14515239000320435, -0.12444864958524704, -0.005808009300380945, 0.08813004940748215, 0.1506344974040985, 0.07480055093765259, 0.031813740730285645, 0.14402727782726288, 0.01201165746897459, -0.06795322895050049, 0.01569792628288269, 0.0078015015460550785, -0.010828007012605667, 0.07435214519500732, -0.045616358518600464, 0.10707342624664307, 0.012367837131023407, 0.08319675177335739, 0.022587137296795845, -0.0791449323296547, -0.16563355922698975, -0.02213873341679573, 0.04231417551636696, -0.08355670422315598, 0.0016210733447223902, 0.023367688059806824, -0.0006171397981233895, -0.023432640358805656, -0.15921294689178467, 0.021418960765004158, -0.014568603597581387, 0.0739230141043663, -0.0597662515938282, 0.06509504467248917, 0.07199757546186447, 0.18504540622234344, -0.07207712531089783, -0.012076230719685555, -0.07779399305582047, -0.12933360040187836, 0.094686359167099, 0.1295851767063141, 0.11127383261919022, -0.029481735080480576, -0.027090614661574364, -0.08263275772333145, -0.004702249076217413, 0.14312288165092468, -0.07147730886936188, -0.016944363713264465, -0.06826497614383698, -0.15065212547779083, -0.04406246170401573, 0.17550072073936462, -0.0819956362247467, -0.005034784320741892, -0.14217737317085266, 0.012342681176960468, -0.11916687339544296, 0.18194197118282318, 0.09504599869251251, -0.06682562828063965, 0.07318642735481262, 0.011758984066545963, -0.14500372111797333, 0.03944002464413643, -0.11906776577234268, -0.023947682231664658, 0.029375547543168068, -0.111931212246418, 0.056273967027664185, -0.044353559613227844, 0.09617361426353455, -0.04769781231880188, -0.09618376940488815, -0.049483392387628555, -0.1329653114080429, 0.16908204555511475, -0.04074461758136749, 0.06674341857433319, -0.02556711621582508, -0.026525212451815605, -0.022633519023656845, -0.018788203597068787, -0.038719307631254196, 0.0012286993442103267, -0.02986784651875496, 0.009035306051373482, -0.019152846187353134, 0.024023914709687233, -0.00363223091699183, -0.036621566861867905, -0.08063694834709167, -0.0009354292997159064, 0.017265360802412033, 0.061021238565444946, 0.013804460875689983, -0.039569657295942307, 0.030338775366544724, 0.03276240825653076, 0.02519531361758709, 0.10825984179973602, -0.05156557261943817, 0.012318912893533707, -0.002510581398382783, 0.04268185794353485, 0.07022064179182053, -0.043668411672115326, 0.0077334255911409855, -0.16652102768421173, 0.012252078391611576, 0.03462044894695282, 0.04768906906247139, -0.1927996128797531, 0.013460426591336727, -0.01495602261275053, 0.1287844330072403, 0.0711754560470581, -0.0006691048038192093, 0.06774226576089859, -0.0039227684028446674, 0.08829323202371597, 0.03235187381505966, -0.0394013337790966, 0.057841554284095764, -0.026594173163175583, -0.014348136261105537, 0.06482113152742386, -0.13355329632759094, 0.036409083753824234, 0.0007056436152197421, 0.030959483236074448, 0.009988153353333473, 0.12279599905014038, -0.030936334282159805, -0.03770505636930466, -0.1506938487291336, -0.028445228934288025, -0.043721266090869904, 0.020512565970420837, -0.08996590226888657, 0.06640586256980896, 0.0920194461941719, 0.0496673546731472, 0.15493273735046387, -0.04715331271290779, 0.055628616362810135, -0.037967268377542496, 0.0708247572183609, -0.05279436334967613, -0.07207431644201279, 0.07734888046979904, 0.224856898188591, 0.08218690752983093, 0.06705106794834137, -0.10938107222318649, -0.019526908174157143, 0.03722288832068443, 0.04046129062771797, 0.10695682466030121, -0.12158472836017609, 0.13762937486171722, -0.050370339304208755, 0.04352732002735138, 0.011958736926317215, 0.017256559804081917, -0.006871696561574936], -uitofp:[-0.08574112504720688, -0.04529960826039314, 0.06514552235603333, -0.05637472867965698, 0.0235583558678627, 0.06783989071846008, -0.1201934888958931, 0.007041762117296457, 0.09255166351795197, 0.015388019382953644, -0.033752888441085815, -0.048187773674726486, 0.012765631079673767, 0.0023750197142362595, 0.05538991466164589, -0.1651819348335266, -0.06054238975048065, -0.1131066158413887, 0.10364354401826859, -0.13537178933620453, 0.002049381146207452, 0.00849233753979206, -0.11337421834468842, 0.07721168547868729, -0.08020632714033127, -0.20190633833408356, 0.10180076211690903, 0.0846753641963005, -0.007680834271013737, 0.016403459012508392, 0.06469084322452545, -0.05338938534259796, 0.05547482520341873, 0.0008564805029891431, -0.015257710590958595, -0.06287986785173416, -0.050230734050273895, -0.05722317099571228, -0.04425361752510071, -0.009305584244430065, 0.0017210074001923203, 0.09023331105709076, 0.11144090443849564, 0.030816899612545967, -0.07974745333194733, -0.08438926190137863, 0.07231402397155762, 0.020326945930719376, -0.07965364307165146, 0.00019291054923087358, -0.03742902725934982, -0.17129799723625183, 0.08902174234390259, 0.018388332799077034, 0.024451764300465584, -0.08605329692363739, 0.12605535984039307, 0.173294797539711, 0.03254450857639313, 0.05574137717485428, 0.06071784347295761, -0.006231331266462803, -0.1288388967514038, -0.12598878145217896, -0.10854807496070862, -0.029221558943390846, -0.031174389645457268, 0.02012871950864792, 0.0050656720995903015, 0.04991267994046211, -0.09189088642597198, 0.05517926067113876, 0.13878272473812103, 0.04418287053704262, -0.10972175747156143, 0.12115374207496643, -0.009238582104444504, -0.00876331515610218, 0.03404375910758972, -0.06727377325296402, -0.10816151648759842, 0.0070389085449278355, 0.06447643041610718, 0.035523273050785065, -0.040374383330345154, 0.06447247415781021, -0.06402464210987091, -0.038858138024806976, 0.03420710191130638, -0.06776469200849533, -0.020093340426683426, -0.04070030152797699, 0.06545086205005646, -0.0971575677394867, -0.057588279247283936, 0.03133385628461838, 0.10500206053256989, -0.020878225564956665, -0.04774898663163185, -0.15256665647029877, -0.12351158261299133, -0.016080066561698914, 0.03065437451004982, 0.07265730202198029, -0.06962279230356216, -0.010880040936172009, -0.06506107747554779, -0.024842480197548866, -0.06974178552627563, 0.025744618847966194, -0.00192781921941787, 0.06828717142343521, -0.07258538901805878, -0.006927309557795525, -0.12119093537330627, 0.1414552927017212, -0.01144117396324873, -0.06428088247776031, -0.045395683497190475, -0.017803113907575607, -0.02968040481209755, 0.010906112380325794, -0.19363608956336975, 0.07430967688560486, -0.1574258953332901, -0.012928291223943233, -0.06464336812496185, 0.05483433976769447, 0.030315177515149117, 0.07850457727909088, 0.027161134406924248, 0.01340804249048233, -0.007078952621668577, 0.15297476947307587, -0.05959460139274597, -0.06035100296139717, -0.03411834314465523, 0.15539582073688507, 0.07221510261297226, -0.046100884675979614, -0.015456262044608593, -0.02986014448106289, 0.12561927735805511, 0.002617878606542945, -0.002359527163207531, -0.07116993516683578, 0.1102479100227356, 0.006276874337345362, -0.03930819034576416, 0.0008004946284927428, 0.07364680618047714, 0.027982717379927635, -0.012339006178081036, 0.05248513072729111, 0.15604378283023834, -0.05423747003078461, 0.024336760863661766, -0.09067143499851227, 0.04812530428171158, -0.008665913715958595, -0.04797402024269104, -0.08569788187742233, 0.08451022207736969, -0.004394566174596548, -0.14122161269187927, 0.04181281104683876, -0.08910191804170609, 0.02592960000038147, -0.007874621078372002, -0.10561034828424454, -0.026849640533328056, -0.0280789602547884, 0.04347343370318413, 0.03020244464278221, -0.15867669880390167, 0.00867909099906683, -0.12267283350229263, -0.03231742978096008, 0.18917319178581238, -0.011877152137458324, 0.06847882270812988, -0.09823556989431381, -0.002944674575701356, 0.004188236314803362, -0.09950453042984009, -0.03565964847803116, -0.14232797920703888, -0.009303527884185314, -0.053332433104515076, 0.18563994765281677, 0.07321490347385406, -0.04723459482192993, 0.09489719569683075, -0.035986077040433884, 0.054780468344688416, 0.034102343022823334, -0.04043487831950188, 0.08665021508932114, -0.011202334426343441, -0.09483367949724197, -0.006203336641192436, 0.028941480442881584, 0.02916244976222515, 0.10625797510147095, -0.08572564274072647, 0.04634598642587662, -0.04565345123410225, -0.017822444438934326, 0.041704438626766205, 0.042433131486177444, 0.0936257466673851, -0.07062194496393204, 0.059981901198625565, -0.015596931800246239, 0.016806498169898987, -0.1476597934961319, -0.04743878170847893, -0.04718427732586861, -0.021617909893393517, -0.11195351928472519, -0.0008203365723602474, 0.09127363562583923, -0.007683946751058102, 0.11218129843473434, -0.029264554381370544, -0.029146311804652214, 0.07235481590032578, -0.028543861582875252, 0.07213563472032547, -0.005743773654103279, -0.05900635942816734, 0.01644500158727169, -0.13139329850673676, 0.04272294044494629, -0.015318998135626316, -0.1657690554857254, 0.049210596829652786, 0.0038307427894324064, 0.03673429414629936, -0.006411066744476557, 0.01599780283868313, -0.15312600135803223, -0.05730438977479935, -0.03989334776997566, -0.037249285727739334, -0.05170472711324692, -0.15266084671020508, -0.020915456116199493, 0.00998113676905632, -0.009446094743907452, 0.1527305245399475, -0.0055807530879974365, -0.03326725587248802, 0.06870785355567932, 0.02883092127740383, 0.028492270037531853, 0.08119215071201324, -0.12606647610664368, 0.03909631073474884, 0.1200161725282669, -0.07161235809326172, -0.07620199769735336, -0.1344948709011078, 0.07657333463430405, -0.06251122057437897, 0.05290643498301506, 0.10724904388189316, 0.0025245484430342913, -0.020458081737160683, -0.14509932696819305, 0.12504906952381134, 0.09297650307416916, -0.06316790729761124, -0.08017615228891373, -0.12523332238197327, 0.08311785012483597, 0.06909900158643723, 0.06107737869024277, -0.014518313109874725, -0.008026323281228542, -0.018694495782256126, 0.03633807972073555, -0.03645188733935356, -0.02976430021226406, 0.11359285563230515, 0.008302830159664154, -0.018648946657776833, 0.03565855324268341, -0.05586596950888634, 0.052767835557460785, 0.021295322105288506, 0.02462499402463436, -0.02825387939810753, 0.04886818304657936, 0.03942299634218216, 0.08422289043664932, 0.0094798244535923, -0.0045962887816131115, 0.002643096726387739, 0.06018553301692009], -unreachable:[0.10244559496641159, 0.014947706833481789, 0.06628773361444473, 0.1079106479883194, -0.0529322475194931, -0.02068597450852394, -0.026620259508490562, -0.0530204214155674, 0.13712354004383087, -0.11572252959012985, 0.019108297303318977, -0.09390625357627869, -0.07727168500423431, -0.02678360603749752, 0.005805198103189468, 0.0194692425429821, 0.032325293868780136, 0.11086059361696243, 0.03878263011574745, -0.011751925572752953, 0.1386835277080536, 0.09817032516002655, 0.01912711001932621, -0.18455655872821808, -0.020838923752307892, -0.03560153767466545, 0.07521305978298187, 0.009694350883364677, 0.0992293581366539, -0.01756906695663929, -0.12901560962200165, -0.05213453993201256, 0.05079739913344383, 0.037065282464027405, 0.13408003747463226, 0.08693289011716843, 0.13397473096847534, -0.000500129594001919, -0.027669109404087067, 0.014264754951000214, -0.09048744291067123, -0.02722778543829918, -0.0656457468867302, 0.0886981412768364, -0.014875548891723156, -0.07161076366901398, -0.06012095510959625, 0.02529210038483143, -0.09746754914522171, 0.01290419977158308, 0.11514674127101898, -0.03523819521069527, -0.009369157254695892, 0.034480441361665726, 0.09939854592084885, 0.1364719271659851, 0.06784658879041672, -0.13167212903499603, 0.04449911788105965, 0.04622482508420944, 0.048667192459106445, 0.028017954900860786, -0.10157040506601334, 0.012935328297317028, -0.013475890271365643, 0.017144935205578804, 0.03853924572467804, 0.14961378276348114, -0.04232698678970337, -0.005589112639427185, -0.13179771602153778, 0.019750740379095078, -0.0476512610912323, 0.12312371283769608, -0.05264294147491455, -0.15182991325855255, 0.017152780666947365, 0.001180832157842815, 0.024235503748059273, -0.1257685422897339, -0.004002920817583799, -0.0799788311123848, -0.12699611485004425, -0.10253924131393433, 0.05029403045773506, 0.010005510412156582, 0.051972512155771255, 0.05149092152714729, 0.03592352941632271, 0.003287440398707986, 0.07333172112703323, 0.10358117520809174, -0.007265691179782152, 0.08536142855882645, -0.06378687918186188, -0.07688231021165848, 0.02672240510582924, -0.00044208113104104996, 0.030492480844259262, -0.14584040641784668, -0.028009748086333275, -0.06487186253070831, -0.04974064603447914, -0.07967016845941544, -0.04319499805569649, -0.09281858801841736, -0.0004558210785035044, 0.1341506540775299, 0.03930234909057617, 0.06338684260845184, -0.06467050313949585, 0.014420048333704472, -0.03492821753025055, -0.02116457000374794, 0.14932997524738312, -0.0613107830286026, -0.13853564858436584, -0.09218044579029083, 0.07775197923183441, 0.021353181451559067, -0.07707209885120392, 0.020881280303001404, 0.05953202024102211, 0.052008479833602905, -0.025012213736772537, -0.02030142955482006, -0.08157221227884293, -0.054845646023750305, 0.02156665362417698, 0.08384095877408981, 0.02037549763917923, 0.0070588490925729275, 0.0006606414099223912, 0.021094417199492455, 0.047228459268808365, -0.007754224352538586, -0.04087665304541588, -0.08867373317480087, 0.080703005194664, 0.1297389268875122, -0.02276570349931717, -0.2384466975927353, -0.074300616979599, 0.04713866859674454, 0.017844047397375107, 0.16459250450134277, -0.11307636648416519, 0.004053582902997732, 0.02774524874985218, -0.09540743380784988, -0.019198060035705566, 0.013540270738303661, -0.0005300965858623385, -0.018747175112366676, 0.09521427750587463, -0.1904422491788864, -0.04579798877239227, -0.06098628789186478, -0.13121798634529114, -0.061232686042785645, -0.047393590211868286, 0.025204526260495186, -0.010276387445628643, 0.016051504760980606, -0.14600001275539398, -0.1264752745628357, -0.04224345460534096, -0.049665454775094986, -0.03900307044386864, 0.060899727046489716, -0.07080403715372086, -0.045487113296985626, 0.10210083425045013, -0.025960948318243027, -0.05804826319217682, -0.017573926597833633, -0.09642919152975082, -0.004318647086620331, -0.11833599209785461, 0.0011756854364648461, 0.053849320858716965, -0.11437612771987915, -0.06515726447105408, 0.018926547840237617, 0.10355788469314575, -0.07158513367176056, -0.007003177888691425, -0.08482663333415985, 0.07129550725221634, 0.05487535893917084, -0.03728748485445976, -0.04076718911528587, -0.08442573249340057, 0.03352852910757065, 0.07005234807729721, 0.036220479756593704, -0.05193355679512024, 0.08272528648376465, -0.03066229075193405, 0.009377739392220974, -0.06745442003011703, 0.03337851166725159, -0.030251702293753624, 0.08041802793741226, -0.08772161602973938, -0.06009596586227417, 0.05345279350876808, 0.042566075921058655, -0.05187731236219406, -0.05054990202188492, 0.003964813891798258, 0.05318748205900192, 0.0450596883893013, -0.020910674706101418, -0.14613886177539825, -0.010091369040310383, 0.10311615467071533, 0.05752486363053322, -0.04324054345488548, 0.06727425754070282, 0.011563887819647789, -0.007006512954831123, -0.09795428812503815, -0.02281027100980282, -0.03971439227461815, 0.11610709875822067, 0.15927469730377197, 0.11372389644384384, -0.04282771423459053, -0.005933588836342096, -0.03515167534351349, -0.10620905458927155, -0.03028370440006256, 0.06368716061115265, -0.06710556894540787, -0.13328339159488678, 0.038392167538404465, -0.008127718232572079, 0.1517745703458786, 0.047777365893125534, 0.04339619353413582, -0.08858609199523926, -0.16398625075817108, -0.0014530561165884137, 0.10204566270112991, 0.06672444194555283, 0.022367097437381744, 0.056896716356277466, -0.030062714591622353, 0.07189849764108658, 0.16964289546012878, 0.0556330643594265, 0.01043877936899662, -0.04731861129403114, 0.09583772718906403, -0.04794803634285927, -0.021062616258859634, 0.11958771198987961, -0.04623142629861832, -0.04093479737639427, -0.01882956176996231, -0.031226664781570435, -0.10738535970449448, 0.048973266035318375, -0.00538122933357954, -0.04437970370054245, -0.0433054193854332, 0.048689477145671844, -0.07210055738687515, 0.05431287735700607, -0.0038573043420910835, -0.010789776220917702, -0.006833008024841547, -0.0035969100426882505, 0.1783231496810913, 0.08136267960071564, 0.013865808956325054, -0.005385809578001499, 0.0224156491458416, -0.002351044677197933, 0.03901272639632225, -0.1367974579334259, -0.01722770184278488, -0.16343848407268524, 0.13412705063819885, 0.0749463215470314, -0.07101187855005264, 0.018186794593930244, -0.02295457199215889, -0.011510858312249184, 0.022500941529870033, -0.06813453137874603, -0.04344213008880615, 0.028700338676571846, 0.09726490825414658, -0.03695569559931755, -0.0007964940741658211, -0.012261804193258286, -0.1475585699081421, 0.048037104308605194], -urem:[0.03583209216594696, 0.09239302575588226, 0.07476868480443954, -0.0007250585476867855, 0.0123835364356637, -0.06297478079795837, 0.043877847492694855, -0.09207373112440109, 0.02308100275695324, 0.07056757062673569, 0.03554743528366089, 0.013946409337222576, 0.0157429538667202, 0.045188579708337784, 0.037899199873209, -0.05004168301820755, -0.051117073744535446, -0.051062874495983124, 0.053740691393613815, -0.167183056473732, 0.038017287850379944, 0.06458434462547302, 0.029903113842010498, -0.07991255074739456, -0.03805390000343323, -0.032303810119628906, 0.006552307866513729, 0.1213102787733078, 0.01801903173327446, -0.16462813317775726, -0.07786823809146881, -0.047359026968479156, -0.039414696395397186, 0.03205951303243637, 0.09191939234733582, 0.07689890265464783, -0.0067328885197639465, -0.17083874344825745, -0.048588886857032776, -0.10192553699016571, -0.009930000640451908, 0.10088848322629929, 0.004709727130830288, 0.0962318554520607, -0.08796428143978119, 0.08376426249742508, 0.12277283519506454, 0.00528681231662631, 0.13891516625881195, -0.003216932760551572, -0.05746933072805405, 0.039932653307914734, -0.03383402153849602, 0.04792921617627144, -0.011360838077962399, -0.03135393187403679, 0.03917201980948448, 0.0559176430106163, -0.12499070167541504, -0.15367235243320465, -0.05424061790108681, 0.03076249361038208, -0.050630539655685425, -0.009982185438275337, -0.0011197698768228292, 0.01476365327835083, 0.039637189358472824, -0.0017445228295400739, 0.1549583524465561, 0.02380741760134697, 0.01963716186583042, 0.04957658797502518, -0.09742698073387146, -0.059475045651197433, 0.08334323763847351, 0.17026963829994202, 0.029980026185512543, -0.01180823054164648, 0.12611453235149384, -0.1400163471698761, -0.04353475943207741, 0.005721678026020527, -0.027359819039702415, 0.07442326843738556, 0.06559907644987106, -0.10786900669336319, 0.004248673561960459, -0.011600702069699764, 0.03795024752616882, -0.05035797506570816, -0.08701446652412415, 0.12628427147865295, 0.13939246535301208, 0.0007260222919285297, 0.03218585252761841, 0.09918256103992462, -0.056846506893634796, 0.03629795461893082, 0.0015565986977890134, 0.09340804070234299, -0.1169007271528244, -0.04582419618964195, -0.025534288957715034, 0.04009231552481651, -0.02163073606789112, -0.03380288928747177, -0.11412671208381653, 0.08563706278800964, -0.008687620051205158, 0.023823097348213196, -0.0161483995616436, 0.0378582626581192, -0.032339803874492645, -0.07318919897079468, -0.10218946635723114, -0.09831877052783966, -0.01109306886792183, 0.06006871908903122, -0.08229591697454453, -0.14810645580291748, -0.05730542913079262, 0.01607193425297737, -0.018996939063072205, 0.053708516061306, 0.08127986639738083, -0.007589205168187618, -0.12293552607297897, -0.10329850763082504, 0.01455740351229906, 0.08797584474086761, 0.026356501504778862, -0.14368543028831482, -0.008389108814299107, -0.06721381098031998, -0.012143501080572605, 0.013108273036777973, -0.1594223976135254, -0.06526977568864822, -0.08201102167367935, -0.02827700972557068, -0.05198579654097557, -0.07691635191440582, -0.011738516390323639, 0.006352520547807217, 0.1272057145833969, 0.0868750661611557, 0.09690205752849579, 0.005413598380982876, 0.03469002991914749, 0.11882223933935165, 0.0034051677212119102, 0.0006096957949921489, 0.00285330624319613, -0.1186145693063736, -0.04169900342822075, 0.07872854173183441, 0.04224027693271637, -0.0058496794663369656, -0.04101817309856415, -0.024070119485259056, -0.019925599917769432, -0.04719766601920128, -0.16745494306087494, 0.016269363462924957, 0.01802489347755909, 0.08045680075883865, 0.036664944142103195, -0.005575600545853376, 0.048089008778333664, -0.08002862334251404, -0.03733532875776291, 0.04081379994750023, 0.05264902114868164, -0.014007344841957092, 0.05570027604699135, 0.044916894286870956, 0.12327008694410324, -0.014031905680894852, -0.0373966246843338, 0.0036406521685421467, 0.0017809218261390924, 0.08230210840702057, 0.06061217561364174, -0.05831441283226013, -0.0966033786535263, -0.058667197823524475, 0.02998911216855049, 0.02445773407816887, 0.09140373021364212, -0.04934566095471382, -0.09465698897838593, -0.060651473701000214, -0.04618380591273308, -0.07461684197187424, 0.10638312250375748, 0.04981215298175812, -0.032417647540569305, -0.07336301356554031, -0.059070784598588943, 0.07201312482357025, -0.04020785167813301, 0.028184346854686737, 0.048408471047878265, 0.05787649005651474, 0.023486332967877388, -0.02367505058646202, -0.04243608936667442, -0.0398954376578331, -0.08153113722801208, 0.06886953860521317, 0.08376367390155792, 0.054803650826215744, 0.020424198359251022, -0.051199790090322495, -0.10679222643375397, -0.02630164660513401, 0.039412692189216614, -0.20907007157802582, -0.015354703180491924, 0.18613335490226746, 0.033703677356243134, -0.0050795418210327625, -0.05383641645312309, 0.14260098338127136, -0.0601627379655838, 0.0032766736112535, 0.06047503650188446, 0.017566632479429245, 0.06559669971466064, -0.08718333393335342, -0.042937710881233215, 0.03521037474274635, 0.04346441477537155, 0.07412489503622055, 0.0908883810043335, -0.03168860450387001, -0.17048604786396027, -0.0006586568779312074, 0.03206009790301323, -0.00510779395699501, -0.060680508613586426, 0.05782083421945572, -0.020600451156497, -0.14724057912826538, -0.014405679889023304, -0.08931625634431839, -0.20166906714439392, -0.1697668880224228, 0.04540488123893738, 0.06667698174715042, 0.12356849759817123, 0.02615382894873619, 0.1084730327129364, -0.05155957117676735, -0.06607984751462936, -0.0014116221573203802, -0.04649267718195915, 0.05046937242150307, 0.035577721893787384, -0.018262431025505066, 0.015091972425580025, -0.07145219296216965, 0.044271763414144516, 0.04821670800447464, -0.05845816805958748, -0.08424634486436844, 0.07348241657018661, -0.12264124304056168, -0.012904508039355278, -0.07371436059474945, 0.06014363095164299, 0.004285105504095554, -0.06817007064819336, -0.16637836396694183, -0.034227047115564346, -0.009199947118759155, 0.012564430944621563, 0.06583461165428162, -0.04035067930817604, -0.0495564229786396, 0.07506735622882843, 0.04139992222189903, -0.05811212584376335, 0.06706643849611282, 0.07021565735340118, -0.07785245031118393, -0.01724192686378956, 0.07548701018095016, -0.02170681022107601, -0.01397605799138546, -0.0851566344499588, 0.053499624133110046, -0.03533529117703438, -0.058422528207302094, 0.09659498184919357, -0.005811172537505627, 0.11682410538196564, -0.0849931389093399, -0.07961716502904892, 0.15688280761241913], -variable:[-0.02453988790512085, -0.06656034290790558, -0.04346664622426033, -0.008590851910412312, -0.06820153445005417, -0.1579950451850891, -0.01938498578965664, -0.15738971531391144, 0.08198603987693787, -0.07534622400999069, -0.012086151167750359, 0.07886902987957001, -0.05524856969714165, -0.1559375524520874, 0.0816444531083107, 0.09848391264677048, -0.11704951524734497, -0.07049548625946045, 0.07446078211069107, 0.03211083635687828, -0.012754139490425587, 0.05176675692200661, -0.01077308226376772, 0.020370833575725555, 0.04933342710137367, -0.09362269192934036, 0.11253295838832855, 0.13484983146190643, 0.07479612529277802, 0.04451652988791466, -0.0404992550611496, -0.14091582596302032, -0.04417291656136513, 0.08480464667081833, 0.1562008559703827, 0.06624408811330795, 0.0688294991850853, -0.09444336593151093, -0.026980064809322357, 0.1331242024898529, -0.04516778513789177, 0.024537742137908936, 0.0818454846739769, -0.05628626421093941, 0.13320663571357727, -0.03576512262225151, 0.07494499534368515, 0.12620165944099426, 0.0018895185785368085, 0.05553261935710907, -0.10887256264686584, 0.12828323245048523, -0.10460974276065826, 0.060043394565582275, 0.016383841633796692, -0.02263020910322666, -0.01103395689278841, -0.05705922469496727, -0.07067088782787323, 0.03999730572104454, -0.08915495127439499, -0.07122941315174103, -0.023172341287136078, 0.011033712886273861, -0.043926797807216644, -0.03578023239970207, -0.030328838154673576, 0.06488940864801407, 0.05756816267967224, 0.1559295803308487, 0.0806560069322586, 0.07748575508594513, -0.02794133499264717, 0.09667333960533142, -0.06623335182666779, -0.02773149497807026, 0.005678479094058275, 0.13195566833019257, 0.07437320798635483, -0.15145142376422882, 0.04145306348800659, 0.06969017535448074, 0.005057644098997116, 0.0034223750699311495, -0.010080358013510704, 0.005366477183997631, 0.016701146960258484, -0.1054241731762886, -0.01641044393181801, 0.023420996963977814, -0.07592633366584778, -0.061233941465616226, 0.015261534601449966, -0.028977451846003532, -0.012314324267208576, -0.07232160121202469, -0.05210152640938759, 0.05812203884124756, -0.0326620414853096, -0.049169380217790604, 0.0380684994161129, 0.04415426403284073, 0.032530784606933594, -0.04670686647295952, 0.13212209939956665, -0.12303000688552856, 0.03810355067253113, 0.03414817526936531, -0.08764385432004929, -0.029035281389951706, 0.032618507742881775, 0.017621207982301712, 0.08702350407838821, 0.06396162509918213, 0.08171055465936661, 0.0689263567328453, 0.010074051097035408, -0.007069084327667952, -0.09039582312107086, 0.060873519629240036, 0.07061050087213516, -0.03260333091020584, 0.00471867062151432, 0.2133433073759079, 0.01586991176009178, 0.058009594678878784, -0.1489565074443817, 0.01955448091030121, 0.09585871547460556, 0.12602217495441437, -0.01860429346561432, -0.07600533962249756, 0.03279399871826172, -0.010969004593789577, 0.06031292676925659, 0.0021280120126903057, 0.032150764018297195, 0.0030671837739646435, 0.024406010285019875, 0.05618838965892792, 0.06601642817258835, -0.0926256775856018, -0.010483162477612495, 0.10569042712450027, -0.02997736446559429, -0.07203661650419235, -0.016016900539398193, 0.03966573625802994, -0.08370857685804367, 0.23786519467830658, 0.15855543315410614, 0.07738427817821503, -0.05764233320951462, -0.06705202162265778, 0.12231386452913284, 0.0018426848109811544, -0.11934298276901245, -0.06618332117795944, 0.060486555099487305, -0.002021227963268757, 0.0036197600420564413, 0.047112271189689636, -0.05583922937512398, -0.08260098844766617, 0.06938344240188599, 0.0140986992046237, 0.03321676328778267, 0.09984393417835236, -0.05252878740429878, -0.04177689924836159, -0.02692757360637188, 0.10803307592868805, 0.1288347840309143, -0.08742424100637436, 0.04680974408984184, -0.042523253709077835, -0.07084202021360397, -0.09187238663434982, 0.04525180160999298, 0.05776013061404228, 0.01955508068203926, 0.04353408142924309, -0.10821399092674255, 0.08435585349798203, 0.029371151700615883, 0.03580671176314354, 0.1286935955286026, 0.09902648627758026, 0.06144453585147858, 0.04039971902966499, 0.028701841831207275, 0.21226249635219574, -0.14311319589614868, 0.027770215645432472, -0.005208722315728664, -0.02866405062377453, 0.0012699702056124806, -0.16072264313697815, -0.015722952783107758, -0.019654978066682816, -0.031689662486314774, -0.1023358702659607, 0.03677205741405487, 0.0012786791194230318, 0.01703636348247528, 0.10183215141296387, -0.09862473607063293, 0.06776747852563858, -0.05175565928220749, 0.011214478872716427, 0.03529798611998558, -0.056041229516267776, 0.02247997559607029, 0.07034129649400711, -0.07399223744869232, 0.02397831715643406, 0.11403188854455948, -0.026176486164331436, 0.10308903455734253, 0.06840717792510986, -0.05530611798167229, 0.06555387377738953, 0.06893549114465714, 0.039688482880592346, 0.033631715923547745, 0.01761033944785595, 0.03869316354393959, 0.09530624747276306, 0.19565396010875702, 0.1160670593380928, 0.01140266377478838, -0.013232872821390629, 0.10853756219148636, 0.10620462894439697, 0.10330528020858765, -0.1263890266418457, 0.09952036291360855, 0.024024559184908867, -0.00585521524772048, -0.06371819227933884, 0.03654913976788521, -0.09571809321641922, 0.04630415141582489, 0.026261581107974052, 0.1499720811843872, 0.04848896339535713, -0.0526735819876194, -0.12885800004005432, -0.08012218773365021, 0.17265355587005615, -0.09133697301149368, 0.0059438832104206085, 0.0010316175175830722, 0.03551323711872101, -0.030201740562915802, -0.07521385699510574, -0.0746813639998436, 0.005166125949472189, 0.07948018610477448, 0.033464498817920685, -0.06869424879550934, 0.02428654581308365, -0.0325530543923378, -0.016410060226917267, 0.0010281261056661606, -0.09322962909936905, -0.11013493686914444, 0.05815288424491882, 0.001846442581154406, -0.07271379232406616, 0.11175832897424698, -0.016097964718937874, 0.006109781563282013, 0.06559450179338455, 0.011362124234437943, -0.0008330908603966236, -0.16787061095237732, 0.028196530416607857, -0.06019090861082077, -0.032110538333654404, -0.001261808560229838, -0.024951888248324394, -0.07995545864105225, 0.040884990245103836, -0.006931837182492018, 0.14512595534324646, -0.0856078639626503, -0.05288049951195717, -0.030657649040222168, 0.04334399476647377, -0.011948244646191597, 0.028741905465722084, 0.07359244674444199, -0.006812955252826214, -0.028627848252654076, -0.01902829483151436, -0.013013217598199844, 0.06360211968421936, -0.05871032550930977, 0.053174421191215515], -vectorTy:[-0.014048718847334385, -0.030395813286304474, 0.008650505915284157, 0.10259705781936646, 0.05613671615719795, 0.003021178301423788, -0.05727677792310715, -0.04384119436144829, 0.04350573942065239, 0.09601304680109024, -0.12543313205242157, -0.04129047691822052, 0.13420484960079193, 0.09167887270450592, -0.1066485270857811, 0.09550855308771133, 0.019939448684453964, 0.026211334392428398, 0.03366896137595177, -0.08416089415550232, -0.03352110832929611, -0.05135995149612427, 0.03447738662362099, -0.06816837936639786, -0.07344842702150345, -0.02509739063680172, -0.10050613433122635, -0.009490882977843285, -0.019772885367274284, -0.09250779449939728, 0.10366039723157883, 0.01901361346244812, -0.06720440834760666, -0.08642514795064926, -0.13326074182987213, -0.045940760523080826, -0.06562519818544388, 0.03713347762823105, 0.08122630417346954, 0.08381764590740204, 0.02375660464167595, -0.004064507316797972, 0.07008294761180878, 0.06506723910570145, 0.02182823233306408, 0.09162989258766174, 0.02159111574292183, -0.050571367144584656, -0.042564671486616135, 0.058237574994564056, 0.08475926518440247, 0.056524503976106644, -0.12411240488290787, -0.028227277100086212, 0.060668010264635086, -0.09578338265419006, -0.12004867941141129, 0.09915430843830109, -0.038018085062503815, -0.07044275104999542, -0.02260345220565796, 0.060118503868579865, 0.015990521758794785, 0.032134030014276505, -0.10076713562011719, -0.0715441107749939, -0.11077922582626343, -0.08258187770843506, -0.007475971709936857, -0.02969144843518734, 0.0210758987814188, -0.059890780597925186, -0.06419473141431808, -0.08641387522220612, 0.018314989283680916, -0.01953040435910225, -0.07722579687833786, 0.09727377444505692, 0.08330721408128738, 0.008367965929210186, -0.0076548876240849495, -0.07769230753183365, 0.021003656089305878, 0.10815013200044632, 0.07798980176448822, 0.05858365818858147, 0.05396297946572304, 0.004927088040858507, -0.015368055552244186, -0.03774356469511986, -0.001962027046829462, -0.058809228241443634, -0.13484309613704681, 0.08014599978923798, -0.05199781060218811, 0.04460197687149048, 0.036097314208745956, -0.012374850921332836, 0.033434733748435974, -0.0073793670162558556, 0.018784811720252037, -0.07549547404050827, 0.05553920194506645, 0.11448077857494354, -0.013219695538282394, 0.09978871792554855, -0.011026433669030666, -0.013074440881609917, 0.07910913228988647, -0.07266222685575485, -0.10310570150613785, 0.031016159802675247, -0.10149796307086945, -0.11409462243318558, 0.10274659097194672, -0.050333574414253235, -0.1250752955675125, -0.03143376484513283, 0.03172833472490311, 0.0759841576218605, -0.07981899380683899, 0.09511447697877884, -0.019163010641932487, -0.027916042134165764, -0.025437040254473686, 0.02395343966782093, 0.16221752762794495, -0.05175129696726799, 0.045196112245321274, 0.009452000260353088, 0.08844754844903946, -0.10265751928091049, 0.04246371239423752, -0.018765516579151154, 0.10908802598714828, -0.10674990713596344, 0.05470534786581993, -0.002743207383900881, -0.0498063825070858, -0.03135174140334129, 0.05149424821138382, 0.05871250480413437, -0.005229594185948372, 0.01757829077541828, 0.035226333886384964, -0.06065583974123001, -0.06317564100027084, -0.1019928976893425, -0.11223147064447403, -0.05462619289755821, 0.048103295266628265, -0.10942769050598145, -0.05126092582941055, 0.0033814101479947567, -0.07673220336437225, -0.015349109657108784, 0.025936264544725418, 0.11338341236114502, -0.12428271025419235, 0.11930175870656967, 0.1106410101056099, 0.0889565646648407, -0.1379529982805252, -0.10339412093162537, -0.06412279605865479, -0.05049016326665878, 0.022930020466446877, 0.07841547578573227, 0.1015813946723938, -0.11066456139087677, 0.018098773434758186, -0.11231018602848053, 0.06571763008832932, -0.022310469299554825, 0.1314469575881958, -0.09604495763778687, 0.10716242343187332, 0.07430680841207504, -0.08241965621709824, 0.0041636149398982525, -0.07040009647607803, 0.08760367333889008, 0.04624659940600395, 0.05006404593586922, -0.07697992771863937, 0.022652199491858482, 0.007578632794320583, -0.0915905013680458, -0.07638831436634064, -0.03990558907389641, 0.02212030068039894, 0.10833617299795151, -0.01577058434486389, -0.12529456615447998, -0.02489805780351162, -0.007666775956749916, -0.01788940839469433, 0.0750424712896347, -0.07064133137464523, 0.06257634609937668, -0.11795301735401154, 0.0793391615152359, 0.10197354853153229, -0.0849423035979271, 0.057994160801172256, -0.13535426557064056, 0.03022344596683979, 0.05242205783724785, -0.07123161852359772, -0.0432097390294075, -0.010699192993342876, -0.08902353048324585, 0.03655404597520828, 0.008919655345380306, 0.08488161861896515, 0.1569298505783081, -0.08983945101499557, -0.032350923866033554, 0.058847587555646896, -0.08171890676021576, -0.08655491471290588, 0.06918691098690033, 0.08100325614213943, -0.08402858674526215, 0.005789956543594599, -0.052012715488672256, 0.03891647234559059, 0.09164094179868698, -0.05085810273885727, 0.10376758873462677, -0.04716170206665993, 0.01893414370715618, -0.028767388314008713, 0.04991374537348747, 0.10167749971151352, 0.010933170095086098, 0.05021701008081436, 0.07644294202327728, -0.01763748750090599, -0.09648842364549637, 0.003116301028057933, -0.049802910536527634, 0.08858442306518555, 0.09930035471916199, 0.03568603843450546, -0.03707762435078621, -0.01504618488252163, 0.09792052209377289, 0.005257163196802139, -0.002160930074751377, -0.05741735175251961, -0.01534438319504261, 0.056859105825424194, 0.09050843119621277, 0.05847446620464325, 0.08712431788444519, 0.09228109568357468, -0.07364930212497711, -0.031372807919979095, -0.027978351339697838, 0.0304624754935503, 0.0028471327386796474, -0.0335320346057415, -0.06704050302505493, 0.12953488528728485, 0.09649952501058578, -0.08458411693572998, 0.11837535351514816, 0.0485377162694931, 0.06142520532011986, 0.017968975007534027, 0.04343567043542862, 0.08220737427473068, -0.008255659602582455, 0.053018249571323395, -0.11217036098241806, 0.0697055533528328, 0.052338432520627975, 0.10815539211034775, -0.003722919151186943, 0.08531568944454193, 0.16309671103954315, -0.050039950758218765, -0.046846989542245865, -0.05653141438961029, 0.042960043996572495, -0.10254617035388947, 0.04404870793223381, -0.07235812395811081, 0.08540208637714386, 0.10171714425086975, 0.019577788189053535, 0.08512072265148163, 0.12643548846244812, -0.05359508842229843, 0.16023209691047668, 0.06351713091135025, 0.03997206315398216, -0.09715991467237473, 0.05846457928419113], -voidTy:[0.05495122820138931, 0.1445654332637787, 0.1734601855278015, 0.0013171049067750573, -0.0829436406493187, -0.11260881274938583, 0.061566561460494995, -0.04628436639904976, -0.06889575719833374, 0.015665946528315544, -0.04571215808391571, 0.0671001747250557, 0.053816843777894974, 0.062047798186540604, -0.08518029004335403, 0.11142052710056305, 0.11316493898630142, 0.1506863683462143, -0.04698844999074936, -0.11011315882205963, -0.06592857092618942, -0.12199889123439789, -0.07441668212413788, -0.0677349790930748, 0.13026253879070282, 0.030091552063822746, 0.06569083780050278, 0.04809406399726868, 0.06328286230564117, 0.05624654144048691, 0.08198386430740356, 0.0775928720831871, -0.11540104448795319, 0.051552534103393555, -0.020252754911780357, -0.11046943813562393, -0.024038445204496384, 0.034075766801834106, -0.0796910896897316, 0.060930196195840836, 0.005009027197957039, -0.00021713681053370237, 0.04461071267724037, 0.07113079726696014, 0.06611429154872894, 0.1137726902961731, -0.01872369460761547, 0.026285376399755478, -0.07574383914470673, 0.006649055518209934, 0.031659021973609924, 0.007020098157227039, -0.012956858612596989, 0.10954088717699051, -0.035282328724861145, 0.03377392515540123, -0.03454520180821419, -0.012995201162993908, 0.10722541064023972, -0.022039173170924187, -0.04681713879108429, 0.012968388386070728, 0.004142622463405132, 0.0338730625808239, -0.16672146320343018, -0.10416986048221588, -0.026373183354735374, -0.15569360554218292, -0.012914729304611683, -0.11410973221063614, 0.039625849574804306, -0.14528913795948029, -0.11965371668338776, -0.09695236384868622, -0.08219008892774582, -0.08251453191041946, 0.06710129231214523, 0.10336599498987198, 0.08442549407482147, 0.09126783162355423, -0.013355161994695663, -0.07859446108341217, 0.0028657536022365093, 0.028201134875416756, -0.04401281476020813, 0.007760943844914436, 0.10230319201946259, 0.13668055832386017, -0.14296315610408783, -0.1002904549241066, 0.08706401288509369, 0.04304385557770729, 0.0025955059099942446, 0.06412630528211594, -0.044724948704242706, -0.039629869163036346, -0.02236296981573105, -0.05262173339724541, -0.02879662811756134, -0.15412771701812744, 0.14024752378463745, 0.03864586725831032, 0.05169157683849335, -0.12122610211372375, -0.056693870574235916, 0.09106674045324326, -0.051405053585767746, 0.05590912699699402, 0.08024309575557709, 0.09053755551576614, 0.0020044923294335604, -0.14571543037891388, 0.02390097640454769, 0.009932865388691425, -0.010220605880022049, -0.11576692014932632, -0.12463078647851944, -0.11665152758359909, 0.05652974545955658, 0.14309589564800262, -0.024646729230880737, -0.07884523272514343, 0.03658183291554451, -0.051416754722595215, 0.06368812173604965, -0.10535883903503418, 0.02829754538834095, -0.10881321132183075, -0.1254090517759323, -0.03408726677298546, 0.06483059376478195, -0.005437212996184826, -0.02153434231877327, -0.031206395477056503, -0.09570793807506561, -0.13628984987735748, 0.06432382017374039, -0.022847138345241547, -0.04535551369190216, 0.01419487502425909, 0.07004538923501968, -0.09263980388641357, -0.13098810613155365, -0.007366306148469448, -0.05256203934550285, 0.08460391312837601, -0.04986352100968361, -0.050246406346559525, -0.05279826000332832, -0.04071054607629776, 0.008408560417592525, -0.101784847676754, 0.06981678307056427, 0.049605533480644226, -0.06692931056022644, -0.08046236634254456, 0.08664330095052719, 0.09456119686365128, -0.076113261282444, -0.13416917622089386, 0.04723486676812172, 0.0792575255036354, -0.02525917999446392, 0.1546020209789276, -0.020436834543943405, -0.06496086716651917, 0.10711488872766495, -0.015694890171289444, -0.03979772329330444, 0.02472858689725399, -0.06507217884063721, 0.06222797557711601, 0.08673176914453506, 0.07438741624355316, 0.10673914849758148, -0.11569078266620636, 0.04638058319687843, -0.04068820923566818, 0.021716052666306496, -0.06460639089345932, 0.013291257433593273, 0.10640975832939148, 0.05292503163218498, 0.08931615203619003, -0.04597315192222595, 0.00020687862706836313, 0.0398181676864624, 0.07799212634563446, 0.016377894207835197, -0.1100606843829155, -0.08366160839796066, -0.06474233418703079, 0.002439676085487008, -0.11310812830924988, 0.004403233993798494, -0.1089845672249794, -0.07761707901954651, -0.02192862704396248, -0.07406100630760193, 0.05910439044237137, -0.10785980522632599, 0.08146998286247253, 0.1295478194952011, -0.01808277517557144, 0.08771054446697235, -0.023066222667694092, 0.10819380730390549, -0.03731030225753784, 0.017060989513993263, -0.07944853603839874, -0.04041271284222603, 0.005466140806674957, -0.05011098459362984, 0.1139451414346695, 0.06328649818897247, 0.030394012108445168, -0.07638866454362869, -0.01906232349574566, -0.12057614326477051, -0.030246157199144363, -0.0965537279844284, -0.08393426984548569, 0.004528137389570475, 0.0582786425948143, 0.03514014557003975, 0.030589640140533447, -0.0672469213604927, 0.07679032534360886, 0.024631317704916, 0.06366688758134842, -0.08608395606279373, 0.13950514793395996, -0.011847087182104588, 0.08453889191150665, 0.06575044989585876, 0.10900504887104034, -0.04591388627886772, 0.07436825335025787, -0.006863647140562534, -0.08958504348993301, -0.009355418384075165, -0.08666150271892548, -0.07895949482917786, 0.08793499320745468, 0.028319131582975388, -0.005707971751689911, -0.021386239677667618, -0.08143672347068787, -0.03578856587409973, -0.03721557930111885, -0.03216015174984932, -0.1362583488225937, 0.02918529510498047, 0.08835239708423615, 0.06352457404136658, -0.018283531069755554, 0.1114935353398323, 0.0283596683293581, -0.09142336994409561, 0.020662374794483185, 0.06677506119012833, -0.11045732349157333, -0.015339725650846958, -0.04852781444787979, -0.07702814042568207, 0.017950698733329773, 0.07578696310520172, 0.1110297292470932, -0.044831424951553345, 0.10483494400978088, -0.11904050409793854, -0.0013586751883849502, 0.09692854434251785, 0.052399490028619766, -0.11758923530578613, 0.004829282406717539, -0.0359005369246006, 0.07632653415203094, 0.09930358827114105, -0.03569871559739113, 0.17894674837589264, 0.02215895801782608, -0.06213083863258362, -0.07793949544429779, 0.11178840696811676, 0.03191465511918068, 0.0872381180524826, 0.058822352439165115, 0.04516344517469406, -0.12646430730819702, 0.1296410858631134, 0.014046408236026764, -0.09321939200162888, 0.09803076833486557, 0.012561873532831669, 0.12288950383663177, 0.0010642039123922586, 0.03919977694749832, 0.00182604999281466, 0.14501911401748657], -xor:[0.07867764681577682, 0.07275454699993134, 0.06590491533279419, 0.0287830401211977, -0.015141203999519348, -0.025042029097676277, 0.04444046691060066, 0.07819197326898575, 0.022486142814159393, 0.021267103031277657, -0.018172523006796837, -0.03602023795247078, 0.03756839409470558, 0.020984072238206863, 0.0038843038491904736, -0.047116026282310486, 0.0563526451587677, 0.14376991987228394, 0.15444514155387878, -0.010282723233103752, 0.010904669761657715, -0.01834064908325672, 0.08959127217531204, -0.004180278163403273, -0.04049374908208847, -0.035483866930007935, -0.09270521998405457, 0.006761298049241304, 0.013484695926308632, 0.10118073225021362, 0.08155595511198044, -0.06703008711338043, 0.015449723228812218, 0.03063393384218216, -0.040168799459934235, -0.043962668627500534, -0.01659562811255455, -0.11516450345516205, -0.01538383774459362, 0.0639328882098198, 0.004263277631253004, 0.09654135257005692, 0.040741801261901855, -0.16542525589466095, -0.02222973108291626, 0.1239636242389679, 0.01133844442665577, 0.0024598075542598963, 0.019703922793269157, 0.005599727388471365, -0.1059950515627861, 0.01921752095222473, 0.07730253785848618, -0.03539901226758957, -0.06265582144260406, 0.09333999454975128, -0.057287782430648804, -0.041451144963502884, -0.009108278900384903, -0.0391528457403183, -0.02433517575263977, 0.029447581619024277, -0.06841098517179489, 0.07270434498786926, 0.012847617268562317, 0.011889400891959667, 0.03851599246263504, -0.05672585219144821, 0.005791862960904837, 0.040094491094350815, -0.0004062108346261084, -0.09859171509742737, 0.03255093842744827, 0.08508714288473129, 0.12558583915233612, 0.04022660478949547, 0.032136060297489166, -0.024844994768500328, 0.024761080741882324, -0.11377711594104767, 0.056813132017850876, 0.018563440069556236, 0.023648478090763092, -0.004264671355485916, 0.07291284948587418, 0.009869033470749855, -0.12275943905115128, -0.12214171886444092, 0.028307979926466942, -0.037450507283210754, 0.0801132470369339, -0.04095598682761192, -0.1498689353466034, 0.13169819116592407, -0.05023714154958725, 0.1471242904663086, -0.15836070477962494, -0.10827485471963882, -0.08844107389450073, -0.0277558546513319, -0.0920581966638565, 0.12977953255176544, -0.11339491605758667, 0.013540048152208328, 0.00684068538248539, -0.000680077588185668, -0.11987613886594772, -0.005871566478163004, -0.03127255663275719, 0.10468442738056183, 0.021374991163611412, 0.06572747230529785, 0.09436030685901642, -0.09531600028276443, 0.057281892746686935, -0.07879768311977386, -0.011791707016527653, 0.0611206516623497, -0.04454660788178444, 0.0660693347454071, 0.030188508331775665, 0.003146014641970396, 0.06878514587879181, 0.06038497015833855, -0.0005251908442005515, -0.004519720561802387, -0.058664482086896896, -0.12866155803203583, 0.018052315339446068, 0.09097889065742493, 0.0036203013733029366, -0.08506199717521667, -0.16824837028980255, -0.038707248866558075, 0.015162191353738308, -0.001976093975827098, 0.15028166770935059, -0.1348685324192047, 0.07627081125974655, -0.07888811081647873, -0.11835917085409164, -0.04980478063225746, -0.07942970097064972, 0.0837440937757492, 0.08736516535282135, 0.08792836219072342, 0.1146637424826622, 0.00510535528883338, -0.018240997567772865, 0.07659104466438293, 0.09037173539400101, 0.011928259395062923, 0.0013676142552867532, -0.0004726000188384205, -0.04931361973285675, 0.012244314886629581, -0.11450368911027908, -0.0854281559586525, -0.05975547805428505, 0.04688667878508568, -0.05031730607151985, -0.014026551507413387, -0.017019128426909447, 0.015959912911057472, 0.04931670427322388, 0.10005365312099457, -0.021257424727082253, 0.17311008274555206, 0.05925014615058899, -0.07971318811178207, 0.061474695801734924, -0.04195505380630493, -0.07589971274137497, -0.16666167974472046, 0.08397863060235977, -0.018143637105822563, -0.03577492758631706, -0.01461580116301775, -0.02900126203894615, 0.10268635302782059, -0.05521881952881813, -0.11913501471281052, -0.052539657801389694, -0.0007946870173327625, 0.04765872657299042, -0.04868970066308975, 0.17818623781204224, 0.09047499299049377, -0.17032551765441895, -0.037710968405008316, -0.12694431841373444, -0.024791717529296875, 0.09474754333496094, -0.005223602056503296, 0.004978451412171125, 0.03497090935707092, 0.05140029639005661, -0.01266169361770153, -0.004727544728666544, 0.01589028164744377, -0.0030415409710258245, 0.029304848983883858, -0.09009406715631485, 0.036404263228178024, -0.1114414855837822, -0.11483759433031082, -0.007911890745162964, 0.15898656845092773, -0.05323626846075058, -0.09615379571914673, -0.010014344938099384, -0.006009632255882025, -0.08029819279909134, 0.0203370563685894, -0.02334643341600895, 0.17599111795425415, 0.05567103996872902, -0.14866691827774048, -0.0028882762417197227, -0.07334110140800476, 0.009977576322853565, -0.013577420264482498, -0.012031424790620804, 0.09801656007766724, -0.08672372251749039, -0.08402731269598007, 0.23828470706939697, -0.005346435587853193, -0.0019405325874686241, -0.014290484599769115, -0.05484694242477417, 0.016545895487070084, -0.0956411212682724, 0.0022889168467372656, -0.0473390594124794, 0.0259399376809597, 0.09454931318759918, 0.0024536740966141224, 0.017169855535030365, -0.005382336210459471, 0.010255460627377033, 0.05675913020968437, -0.013274628669023514, -0.07442906498908997, 0.03153308480978012, -0.044929273426532745, -0.015181220136582851, -0.0013801588211208582, -0.01305830292403698, -0.02114740014076233, -0.01853201538324356, -0.042192090302705765, 0.09146681427955627, -0.005008120555430651, -0.002719383453950286, -0.10754621028900146, -0.1120866909623146, 0.0455641932785511, 0.05124268680810928, 0.02351720631122589, 0.012362861074507236, -0.04166286438703537, 0.2353426218032837, 0.08973076939582825, 0.09870228916406631, 0.014452343806624413, 0.04616355895996094, -0.025493890047073364, 0.12820987403392792, -0.11090962588787079, -0.04725927487015724, 0.18479794263839722, -0.04719456657767296, 0.044694166630506516, 0.07589466124773026, -0.10866351425647736, 0.09789414703845978, -0.02385358326137066, 0.10489629209041595, 0.014577782712876797, -0.010606164112687111, 0.04051733389496803, -0.035180967301130295, 0.06071438640356064, -0.003414937760680914, -0.03399054706096649, -0.034394942224025726, 0.07681398838758469, 0.05881161987781525, 0.004450719337910414, 0.06330809742212296, 0.002385036088526249, -0.05418342351913452, 0.04180595651268959, 0.04268514737486839, 0.03082391619682312, 0.03690306097269058, 0.06364089995622635, -0.0022314386442303658, 0.02071194164454937], -zext:[0.026830358430743217, -0.04918903857469559, 0.061772167682647705, 0.0400475338101387, -0.030779028311371803, 0.016655953601002693, -0.10536210983991623, -0.023540180176496506, 0.0314830020070076, 0.08193232864141464, 0.0974133163690567, -0.04876340925693512, 0.014670547097921371, 0.00769240316003561, 0.04735802114009857, 0.014488977380096912, 0.05502818152308464, -0.009940305724740028, 0.10834893584251404, -0.009572499431669712, -0.037976738065481186, -0.01094376016408205, 0.06389801949262619, -0.041547659784555435, -0.02925710566341877, 0.07219618558883667, 0.033612318336963654, 0.08105853945016861, -0.0038114809431135654, 0.03491315618157387, 0.13534758985042572, 0.015841679647564888, 0.03426884114742279, 0.047606054693460464, -0.0654536709189415, 0.029691368341445923, -0.017150266095995903, 0.08705785125494003, -0.13912150263786316, 0.12180742621421814, -0.030445214360952377, 0.10471690446138382, 0.04666035994887352, 0.05258571356534958, 0.04518657550215721, 0.036508165299892426, -0.07082369178533554, 0.0345810167491436, -0.08870944380760193, 0.06043615564703941, -0.05129026249051094, 0.13404469192028046, -0.02584228850901127, -0.09802974760532379, -0.054458796977996826, 0.05742553249001503, -0.030769484117627144, -0.06618109345436096, -0.10101847350597382, -0.051965612918138504, 0.06632336229085922, 0.1037096455693245, -0.1071522980928421, 0.051280662417411804, 0.052908364683389664, 0.014891724102199078, -0.11170501261949539, 0.00033876768429763615, -0.004956747870892286, 0.19529761373996735, -0.03261110559105873, 0.03933492302894592, 0.0029237493872642517, 0.02529255859553814, -0.03151458874344826, 0.05356726050376892, 0.007997522130608559, -0.008462769910693169, 0.11201228201389313, -0.09127716720104218, 0.0373099222779274, 0.08447752147912979, 0.06412430107593536, -0.0730811133980751, 0.08689095824956894, -0.0010298986453562975, -0.033268921077251434, -0.03793998062610626, 0.11417146772146225, -0.08645794540643692, -0.1318860799074173, 0.03719191253185272, 0.0829835832118988, 0.0037097397726029158, 0.025070054456591606, 0.11185001581907272, -0.05648089200258255, -0.05281046777963638, 0.04122914746403694, 0.12152700126171112, -0.023705672472715378, -0.04872195050120354, 0.043318361043930054, 0.04104698821902275, 0.0216970257461071, -0.00749478954821825, -0.13369056582450867, 0.0871618464589119, -0.11425143480300903, 0.023693092167377472, -0.01870609261095524, -0.06787896901369095, -0.06313759833574295, 0.18638072907924652, 0.008153201080858707, -0.06293138116598129, -0.007759043015539646, 0.056218329817056656, 0.0055114817805588245, -0.0024028257466852665, 0.06974120438098907, 0.018538931384682655, -0.06359490752220154, 0.05438856780529022, -0.06346713751554489, -0.0037359935231506824, -0.024460768327116966, 0.03740675747394562, 0.003097777720540762, 0.11954556405544281, 0.02592855505645275, 0.06821171939373016, -0.06319306045770645, -0.08475115150213242, 0.032227903604507446, 0.013079333119094372, -0.016415348276495934, -0.20452933013439178, -0.17784970998764038, -0.06384986639022827, 0.06471351534128189, -0.09663663804531097, -0.06647683680057526, 0.0032147045712918043, 0.01602138951420784, 0.1416691094636917, 0.10893391072750092, 0.005081387236714363, 0.0015216560568660498, 0.006171118468046188, -0.012643949128687382, 0.016620662063360214, 0.0017888146685436368, 0.13163168728351593, -0.09718918800354004, -0.09977602958679199, -0.017315465956926346, 0.04836529493331909, 0.003903633914887905, -0.12931233644485474, 0.05330636724829674, -0.04429928958415985, -0.05835241824388504, -0.03639107942581177, -0.013458373956382275, 0.006272794678807259, -0.05801227316260338, 0.01753106154501438, 0.04838220775127411, 0.13045544922351837, -0.026594193652272224, 0.10719925165176392, -0.004379391670227051, -0.018779588863253593, 0.03294425085186958, 0.06281284987926483, -0.12659569084644318, -0.013471178710460663, 0.05779712647199631, 0.16086125373840332, 0.04843374341726303, -0.039434850215911865, 0.049037810415029526, -0.001719557330943644, -0.11483433097600937, -0.055951472371816635, 0.005391941871494055, -0.11869654804468155, 0.09847481548786163, -0.13040123879909515, 0.04514779895544052, -0.02177789807319641, -0.11484049260616302, -0.10184529423713684, 0.009056069888174534, 0.050670184195041656, 0.036665089428424835, 0.059911906719207764, 0.058987293392419815, 0.0659138560295105, 0.0779886469244957, 0.02678188495337963, -0.01747661642730236, 0.04248686879873276, -0.0719151422381401, -0.05072343349456787, -0.04513312876224518, 0.05645323172211647, -0.03412279859185219, 0.15463444590568542, 0.04179977625608444, -0.05932706966996193, 9.630752902012318e-05, -0.053851012140512466, -0.07453808188438416, -0.03578163683414459, 0.0513126514852047, -0.10810709744691849, -0.0031986874528229237, 0.002972715999931097, 0.010480164550244808, -0.008168740198016167, -0.021297328174114227, 0.14054687321186066, -0.03008231520652771, 0.0024386721197515726, 0.13708432018756866, 0.018828293308615685, 0.050197772681713104, -0.0021042372100055218, -0.03629416599869728, 0.0256081260740757, -0.015584961511194706, 0.000639893754851073, 0.007670039311051369, -0.12950128316879272, -0.0032409578561782837, -0.18797411024570465, 0.03723081946372986, 0.0077298786491155624, -0.06644124537706375, -0.007340278010815382, -0.016717879101634026, 0.06666752696037292, 0.06698121875524521, 0.028402166441082954, 0.05516820028424263, 0.07571161538362503, 0.07898719608783722, 0.028564708307385445, 0.09131844341754913, 0.07966592162847519, 0.082121841609478, -0.005444211419671774, -0.040353454649448395, 0.14603447914123535, -0.03751537576317787, 0.055398475378751755, 0.007542855571955442, 0.14556655287742615, 0.04685746133327484, -0.08099056035280228, -0.09631150215864182, -0.06050700321793556, -0.11073040217161179, 0.20065374672412872, 0.035462718456983566, -0.044947318732738495, -0.08875977993011475, 0.018414149060845375, 0.14149567484855652, 0.015991132706403732, 0.01878506876528263, 0.15436558425426483, -0.14500758051872253, 0.006901893299072981, 0.01827646791934967, -0.06801729649305344, 0.06519967317581177, -0.015545058995485306, -0.06530504673719406, 0.012971640564501286, -0.11465279012918472, 0.14870336651802063, -0.1262914091348648, 0.23374567925930023, 0.028107900172472, 0.02847326174378395, -0.057844310998916626, -0.0332755483686924, -0.01773873344063759, 0.12260084599256516, -0.03421588987112045, 0.050820812582969666, 0.05373633652925491, 0.09101437032222748, 0.011988863348960876, 0.056917838752269745, -0.03725222125649452, -0.09445210546255112]